diff options
author | Johan Berntsson | 2008-07-08 03:02:11 +0000 |
---|---|---|
committer | Johan Berntsson | 2008-07-08 03:02:11 +0000 |
commit | a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752 (patch) | |
tree | 920460cb6108ee9ecb2504f39a0cbf2e86ea2477 /OpenSim/Region/ScriptEngine | |
parent | llscript compiler patch from Mike: adds LSL jumps and implicit variable initi... (diff) | |
download | opensim-SC_OLD-a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752.zip opensim-SC_OLD-a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752.tar.gz opensim-SC_OLD-a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752.tar.bz2 opensim-SC_OLD-a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752.tar.xz |
another patch from Mike: the llscript compiler is now available in XEngine as well. Thanks Mike
Diffstat (limited to '')
7 files changed, 29513 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs index 5d66d5c..f78c801 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System;using Tools; | 28 | using System;using Tools; |
29 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { | ||
29 | //%+STRING_CONSTANT+3 | 30 | //%+STRING_CONSTANT+3 |
30 | public class STRING_CONSTANT : TOKEN{ | 31 | public class STRING_CONSTANT : TOKEN{ |
31 | public override string yyname { get { return "STRING_CONSTANT"; }} | 32 | public override string yyname { get { return "STRING_CONSTANT"; }} |
@@ -18710,3 +18711,4 @@ public LSLTokens(YyLexer tks):base(tks){} | |||
18710 | public string str; | 18711 | public string str; |
18711 | 18712 | ||
18712 | } | 18713 | } |
18714 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs index 61118b2..3c63610 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System;using Tools; | 28 | using System;using Tools; |
29 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { | ||
29 | //%+LSLProgramRoot+95 | 30 | //%+LSLProgramRoot+95 |
30 | public class LSLProgramRoot : SYMBOL{ | 31 | public class LSLProgramRoot : SYMBOL{ |
31 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | 32 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax |
@@ -9799,3 +9800,4 @@ public LSLSyntax | |||
9799 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | 9800 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} |
9800 | 9801 | ||
9801 | } | 9802 | } |
9803 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs new file mode 100644 index 0000000..78c636e --- /dev/null +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs | |||
@@ -0,0 +1,803 @@ | |||
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.Shared.CodeTools | ||
34 | { | ||
35 | public class CSCodeGenerator | ||
36 | { | ||
37 | private SYMBOL m_astRoot = null; | ||
38 | private int m_braceCount; // for indentation | ||
39 | |||
40 | /// <summary> | ||
41 | /// Pass the new CodeGenerator a string containing the LSL source. | ||
42 | /// </summary> | ||
43 | /// <param name="script">String containing LSL source.</param> | ||
44 | public CSCodeGenerator(string script) | ||
45 | { | ||
46 | Parser p = new LSLSyntax(); | ||
47 | // Obviously this needs to be in a try/except block. | ||
48 | LSL2CSCodeTransformer codeTransformer = new LSL2CSCodeTransformer(p.Parse(script)); | ||
49 | m_astRoot = codeTransformer.Transform(); | ||
50 | } | ||
51 | |||
52 | /// <summary> | ||
53 | /// Pass the new CodeGenerator an abstract syntax tree. | ||
54 | /// </summary> | ||
55 | /// <param name="astRoot">The root node of the AST.</param> | ||
56 | public CSCodeGenerator(SYMBOL astRoot) | ||
57 | { | ||
58 | m_braceCount = 0; | ||
59 | m_astRoot = astRoot; | ||
60 | } | ||
61 | |||
62 | /// <summary> | ||
63 | /// Generate the code from the AST we have. | ||
64 | /// </summary> | ||
65 | /// <returns>String containing the generated C# code.</returns> | ||
66 | public string Generate() | ||
67 | { | ||
68 | string retstr = String.Empty; | ||
69 | |||
70 | // standard preamble | ||
71 | //retstr = "using OpenSim.Region.ScriptEngine.Common;\n"; | ||
72 | //retstr += "using System.Collections.Generic;\n\n"; | ||
73 | //retstr += "namespace SecondLife\n"; | ||
74 | //retstr += "{\n"; | ||
75 | //retstr += " public class Script : OpenSim.Region.ScriptEngine.Common\n"; | ||
76 | //retstr += " {\n"; | ||
77 | |||
78 | // here's the payload | ||
79 | m_braceCount += 2; | ||
80 | retstr += "\n"; | ||
81 | foreach (SYMBOL s in m_astRoot.kids) | ||
82 | retstr += GenerateNode(s); | ||
83 | |||
84 | // close braces! | ||
85 | //retstr += " }\n"; | ||
86 | //retstr += "}\n"; | ||
87 | m_braceCount -= 2; | ||
88 | |||
89 | return retstr; | ||
90 | } | ||
91 | |||
92 | /// <summary> | ||
93 | /// Recursively called to generate each type of node. Will generate this | ||
94 | /// node, then all it's children. | ||
95 | /// </summary> | ||
96 | /// <param name="s">The current node to generate code for.</param> | ||
97 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
98 | private string GenerateNode(SYMBOL s) | ||
99 | { | ||
100 | string retstr = String.Empty; | ||
101 | |||
102 | // make sure to put type lower in the inheritance hierarchy first | ||
103 | // ie: since IdentArgument and ExpressionArgument inherit from | ||
104 | // Argument, put IdentArgument and ExpressionArgument before Argument | ||
105 | if (s is GlobalFunctionDefinition) | ||
106 | retstr += GenerateGlobalFunctionDefinition((GlobalFunctionDefinition) s); | ||
107 | else if (s is GlobalVariableDeclaration) | ||
108 | retstr += GenerateGlobalVariableDeclaration((GlobalVariableDeclaration) s); | ||
109 | else if (s is State) | ||
110 | retstr += GenerateState((State) s); | ||
111 | else if (s is CompoundStatement) | ||
112 | retstr += GenerateCompoundStatement((CompoundStatement) s); | ||
113 | else if (s is Declaration) | ||
114 | retstr += GenerateDeclaration((Declaration) s); | ||
115 | else if (s is Statement) | ||
116 | retstr += GenerateStatement((Statement) s); | ||
117 | else if (s is ReturnStatement) | ||
118 | retstr += GenerateReturnStatement((ReturnStatement) s); | ||
119 | else if (s is JumpLabel) | ||
120 | retstr += GenerateJumpLabel((JumpLabel) s); | ||
121 | else if (s is JumpStatement) | ||
122 | retstr += GenerateJumpStatement((JumpStatement) s); | ||
123 | else if (s is StateChange) | ||
124 | retstr += GenerateStateChange((StateChange) s); | ||
125 | else if (s is IfStatement) | ||
126 | retstr += GenerateIfStatement((IfStatement) s); | ||
127 | else if (s is WhileStatement) | ||
128 | retstr += GenerateWhileStatement((WhileStatement) s); | ||
129 | else if (s is DoWhileStatement) | ||
130 | retstr += GenerateDoWhileStatement((DoWhileStatement) s); | ||
131 | else if (s is ForLoop) | ||
132 | retstr += GenerateForLoop((ForLoop) s); | ||
133 | else if (s is ArgumentList) | ||
134 | retstr += GenerateArgumentList((ArgumentList) s); | ||
135 | else if (s is Assignment) | ||
136 | retstr += GenerateAssignment((Assignment) s); | ||
137 | else if (s is BinaryExpression) | ||
138 | retstr += GenerateBinaryExpression((BinaryExpression) s); | ||
139 | else if (s is ParenthesisExpression) | ||
140 | retstr += GenerateParenthesisExpression((ParenthesisExpression) s); | ||
141 | else if (s is UnaryExpression) | ||
142 | retstr += GenerateUnaryExpression((UnaryExpression) s); | ||
143 | else if (s is IncrementDecrementExpression) | ||
144 | retstr += GenerateIncrementDecrementExpression((IncrementDecrementExpression) s); | ||
145 | else if (s is TypecastExpression) | ||
146 | retstr += GenerateTypecastExpression((TypecastExpression) s); | ||
147 | else if (s is FunctionCall) | ||
148 | retstr += GenerateFunctionCall((FunctionCall) s); | ||
149 | else if (s is VectorConstant) | ||
150 | retstr += GenerateVectorConstant((VectorConstant) s); | ||
151 | else if (s is RotationConstant) | ||
152 | retstr += GenerateRotationConstant((RotationConstant) s); | ||
153 | else if (s is ListConstant) | ||
154 | retstr += GenerateListConstant((ListConstant) s); | ||
155 | else if (s is Constant) | ||
156 | retstr += GenerateConstant((Constant) s); | ||
157 | else if (s is IdentDotExpression) | ||
158 | retstr += ((IdentDotExpression) s).Name + "." + ((IdentDotExpression) s).Member; | ||
159 | else if (s is IdentExpression) | ||
160 | retstr += ((IdentExpression) s).Name; | ||
161 | else if (s is IDENT) | ||
162 | retstr += ((TOKEN) s).yytext; | ||
163 | else | ||
164 | { | ||
165 | foreach (SYMBOL kid in s.kids) | ||
166 | retstr += GenerateNode(kid); | ||
167 | } | ||
168 | |||
169 | return retstr; | ||
170 | } | ||
171 | |||
172 | /// <summary> | ||
173 | /// Generates the code for a GlobalFunctionDefinition node. | ||
174 | /// </summary> | ||
175 | /// <param name="gf">The GlobalFunctionDefinition node.</param> | ||
176 | /// <returns>String containing C# code for GlobalFunctionDefinition gf.</returns> | ||
177 | private string GenerateGlobalFunctionDefinition(GlobalFunctionDefinition gf) | ||
178 | { | ||
179 | string retstr = String.Empty; | ||
180 | |||
181 | // we need to separate the argument declaration list from other kids | ||
182 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
183 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
184 | |||
185 | foreach (SYMBOL kid in gf.kids) | ||
186 | if (kid is ArgumentDeclarationList) | ||
187 | argumentDeclarationListKids.Add(kid); | ||
188 | else | ||
189 | remainingKids.Add(kid); | ||
190 | |||
191 | retstr += WriteIndented(String.Format("{0} {1}(", gf.ReturnType, gf.Name)); | ||
192 | |||
193 | // print the state arguments, if any | ||
194 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
195 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
196 | |||
197 | retstr += ")\n"; | ||
198 | |||
199 | foreach (SYMBOL kid in remainingKids) | ||
200 | retstr += GenerateNode(kid); | ||
201 | |||
202 | return retstr; | ||
203 | } | ||
204 | |||
205 | /// <summary> | ||
206 | /// Generates the code for a GlobalVariableDeclaration node. | ||
207 | /// </summary> | ||
208 | /// <param name="gv">The GlobalVariableDeclaration node.</param> | ||
209 | /// <returns>String containing C# code for GlobalVariableDeclaration gv.</returns> | ||
210 | private string GenerateGlobalVariableDeclaration(GlobalVariableDeclaration gv) | ||
211 | { | ||
212 | string retstr = String.Empty; | ||
213 | |||
214 | foreach (SYMBOL s in gv.kids) | ||
215 | { | ||
216 | retstr += Indent(); | ||
217 | retstr += GenerateNode(s); | ||
218 | retstr += ";\n"; | ||
219 | } | ||
220 | |||
221 | return retstr; | ||
222 | } | ||
223 | |||
224 | /// <summary> | ||
225 | /// Generates the code for a State node. | ||
226 | /// </summary> | ||
227 | /// <param name="s">The State node.</param> | ||
228 | /// <returns>String containing C# code for State s.</returns> | ||
229 | private string GenerateState(State s) | ||
230 | { | ||
231 | string retstr = String.Empty; | ||
232 | |||
233 | foreach (SYMBOL kid in s.kids) | ||
234 | if (kid is StateEvent) | ||
235 | retstr += GenerateStateEvent((StateEvent) kid, s.Name); | ||
236 | else | ||
237 | retstr += String.Format("ERROR: State '{0}' contains a '{1}\n", s.Name, kid.GetType()); | ||
238 | |||
239 | return retstr; | ||
240 | } | ||
241 | |||
242 | /// <summary> | ||
243 | /// Generates the code for a StateEvent node. | ||
244 | /// </summary> | ||
245 | /// <param name="se">The StateEvent node.</param> | ||
246 | /// <param name="parentStateName">The name of the parent state.</param> | ||
247 | /// <returns>String containing C# code for StateEvent se.</returns> | ||
248 | private string GenerateStateEvent(StateEvent se, string parentStateName) | ||
249 | { | ||
250 | string retstr = String.Empty; | ||
251 | |||
252 | // we need to separate the argument declaration list from other kids | ||
253 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
254 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
255 | |||
256 | foreach (SYMBOL kid in se.kids) | ||
257 | if (kid is ArgumentDeclarationList) | ||
258 | argumentDeclarationListKids.Add(kid); | ||
259 | else | ||
260 | remainingKids.Add(kid); | ||
261 | |||
262 | // "state" (function) declaration | ||
263 | retstr += WriteIndented(String.Format("public void {0}_event_{1}(", parentStateName, se.Name)); | ||
264 | |||
265 | // print the state arguments, if any | ||
266 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
267 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
268 | |||
269 | retstr += ")\n"; | ||
270 | |||
271 | foreach (SYMBOL kid in remainingKids) | ||
272 | retstr += GenerateNode(kid); | ||
273 | |||
274 | return retstr; | ||
275 | } | ||
276 | |||
277 | /// <summary> | ||
278 | /// Generates the code for an ArgumentDeclarationList node. | ||
279 | /// </summary> | ||
280 | /// <param name="adl">The ArgumentDeclarationList node.</param> | ||
281 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
282 | private string GenerateArgumentDeclarationList(ArgumentDeclarationList adl) | ||
283 | { | ||
284 | string retstr = String.Empty; | ||
285 | |||
286 | int comma = adl.kids.Count - 1; // tells us whether to print a comma | ||
287 | |||
288 | foreach (Declaration d in adl.kids) | ||
289 | { | ||
290 | retstr += String.Format("{0} {1}", d.Datatype, d.Id); | ||
291 | if (0 < comma--) | ||
292 | retstr += ", "; | ||
293 | } | ||
294 | |||
295 | return retstr; | ||
296 | } | ||
297 | |||
298 | /// <summary> | ||
299 | /// Generates the code for an ArgumentList node. | ||
300 | /// </summary> | ||
301 | /// <param name="al">The ArgumentList node.</param> | ||
302 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
303 | private string GenerateArgumentList(ArgumentList al) | ||
304 | { | ||
305 | string retstr = String.Empty; | ||
306 | |||
307 | int comma = al.kids.Count - 1; // tells us whether to print a comma | ||
308 | |||
309 | foreach (SYMBOL s in al.kids) | ||
310 | { | ||
311 | retstr += GenerateNode(s); | ||
312 | if (0 < comma--) | ||
313 | retstr += ", "; | ||
314 | } | ||
315 | |||
316 | return retstr; | ||
317 | } | ||
318 | |||
319 | /// <summary> | ||
320 | /// Generates the code for a CompoundStatement node. | ||
321 | /// </summary> | ||
322 | /// <param name="cs">The CompoundStatement node.</param> | ||
323 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
324 | private string GenerateCompoundStatement(CompoundStatement cs) | ||
325 | { | ||
326 | string retstr = String.Empty; | ||
327 | |||
328 | // opening brace | ||
329 | retstr += WriteIndentedLine("{"); | ||
330 | m_braceCount++; | ||
331 | |||
332 | foreach (SYMBOL kid in cs.kids) | ||
333 | retstr += GenerateNode(kid); | ||
334 | |||
335 | // closing brace | ||
336 | m_braceCount--; | ||
337 | retstr += WriteIndentedLine("}"); | ||
338 | |||
339 | return retstr; | ||
340 | } | ||
341 | |||
342 | /// <summary> | ||
343 | /// Generates the code for a Declaration node. | ||
344 | /// </summary> | ||
345 | /// <param name="d">The Declaration node.</param> | ||
346 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
347 | private string GenerateDeclaration(Declaration d) | ||
348 | { | ||
349 | return String.Format("{0} {1}", d.Datatype, d.Id); | ||
350 | } | ||
351 | |||
352 | /// <summary> | ||
353 | /// Generates the code for a Statement node. | ||
354 | /// </summary> | ||
355 | /// <param name="s">The Statement node.</param> | ||
356 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
357 | private string GenerateStatement(Statement s) | ||
358 | { | ||
359 | string retstr = String.Empty; | ||
360 | |||
361 | // Jump label prints its own colon, we don't need a semicolon. | ||
362 | bool printSemicolon = !(s.kids.Top is JumpLabel); | ||
363 | |||
364 | retstr += Indent(); | ||
365 | |||
366 | foreach (SYMBOL kid in s.kids) | ||
367 | retstr += GenerateNode(kid); | ||
368 | |||
369 | if (printSemicolon) | ||
370 | retstr += ";\n"; | ||
371 | |||
372 | return retstr; | ||
373 | } | ||
374 | |||
375 | /// <summary> | ||
376 | /// Generates the code for an Assignment node. | ||
377 | /// </summary> | ||
378 | /// <param name="a">The Assignment node.</param> | ||
379 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
380 | private string GenerateAssignment(Assignment a) | ||
381 | { | ||
382 | string retstr = String.Empty; | ||
383 | |||
384 | retstr += GenerateNode((SYMBOL) a.kids.Pop()); | ||
385 | retstr +=String.Format(" {0} ", a.AssignmentType); | ||
386 | foreach (SYMBOL kid in a.kids) | ||
387 | retstr += GenerateNode(kid); | ||
388 | |||
389 | return retstr; | ||
390 | } | ||
391 | |||
392 | /// <summary> | ||
393 | /// Generates the code for a ReturnStatement node. | ||
394 | /// </summary> | ||
395 | /// <param name="rs">The ReturnStatement node.</param> | ||
396 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
397 | private string GenerateReturnStatement(ReturnStatement rs) | ||
398 | { | ||
399 | string retstr = String.Empty; | ||
400 | |||
401 | retstr += "return "; | ||
402 | |||
403 | foreach (SYMBOL kid in rs.kids) | ||
404 | retstr += GenerateNode(kid); | ||
405 | |||
406 | return retstr; | ||
407 | } | ||
408 | |||
409 | /// <summary> | ||
410 | /// Generates the code for a JumpLabel node. | ||
411 | /// </summary> | ||
412 | /// <param name="jl">The JumpLabel node.</param> | ||
413 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
414 | private string GenerateJumpLabel(JumpLabel jl) | ||
415 | { | ||
416 | return String.Format("{0}:\n", jl.LabelName); | ||
417 | } | ||
418 | |||
419 | /// <summary> | ||
420 | /// Generates the code for a JumpStatement node. | ||
421 | /// </summary> | ||
422 | /// <param name="js">The JumpStatement node.</param> | ||
423 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
424 | private string GenerateJumpStatement(JumpStatement js) | ||
425 | { | ||
426 | return String.Format("goto {0}", js.TargetName); | ||
427 | } | ||
428 | |||
429 | /// <summary> | ||
430 | /// Generates the code for a IfStatement node. | ||
431 | /// </summary> | ||
432 | /// <param name="ifs">The IfStatement node.</param> | ||
433 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
434 | private string GenerateIfStatement(IfStatement ifs) | ||
435 | { | ||
436 | string retstr = String.Empty; | ||
437 | |||
438 | retstr += WriteIndented("if ("); | ||
439 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
440 | retstr += ")\n"; | ||
441 | |||
442 | // CompoundStatement handles indentation itself but we need to do it | ||
443 | // otherwise. | ||
444 | bool indentHere = ifs.kids.Top is Statement; | ||
445 | if (indentHere) m_braceCount++; | ||
446 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
447 | if (indentHere) m_braceCount--; | ||
448 | |||
449 | if (0 < ifs.kids.Count) // do it again for an else | ||
450 | { | ||
451 | retstr += WriteIndentedLine("else"); | ||
452 | |||
453 | indentHere = ifs.kids.Top is Statement; | ||
454 | if (indentHere) m_braceCount++; | ||
455 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
456 | if (indentHere) m_braceCount--; | ||
457 | } | ||
458 | |||
459 | return retstr; | ||
460 | } | ||
461 | |||
462 | /// <summary> | ||
463 | /// Generates the code for a StateChange node. | ||
464 | /// </summary> | ||
465 | /// <param name="sc">The StateChange node.</param> | ||
466 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
467 | private string GenerateStateChange(StateChange sc) | ||
468 | { | ||
469 | return String.Format("state(\"{0}\")", sc.NewState); | ||
470 | } | ||
471 | |||
472 | /// <summary> | ||
473 | /// Generates the code for a WhileStatement node. | ||
474 | /// </summary> | ||
475 | /// <param name="ws">The WhileStatement node.</param> | ||
476 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
477 | private string GenerateWhileStatement(WhileStatement ws) | ||
478 | { | ||
479 | string retstr = String.Empty; | ||
480 | |||
481 | retstr += WriteIndented("while ("); | ||
482 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
483 | retstr += ")\n"; | ||
484 | |||
485 | // CompoundStatement handles indentation itself but we need to do it | ||
486 | // otherwise. | ||
487 | bool indentHere = ws.kids.Top is Statement; | ||
488 | if (indentHere) m_braceCount++; | ||
489 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
490 | if (indentHere) m_braceCount--; | ||
491 | |||
492 | return retstr; | ||
493 | } | ||
494 | |||
495 | /// <summary> | ||
496 | /// Generates the code for a DoWhileStatement node. | ||
497 | /// </summary> | ||
498 | /// <param name="dws">The DoWhileStatement node.</param> | ||
499 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
500 | private string GenerateDoWhileStatement(DoWhileStatement dws) | ||
501 | { | ||
502 | string retstr = String.Empty; | ||
503 | |||
504 | retstr += WriteIndentedLine("do"); | ||
505 | |||
506 | // CompoundStatement handles indentation itself but we need to do it | ||
507 | // otherwise. | ||
508 | bool indentHere = dws.kids.Top is Statement; | ||
509 | if (indentHere) m_braceCount++; | ||
510 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
511 | if (indentHere) m_braceCount--; | ||
512 | |||
513 | retstr += WriteIndented("while ("); | ||
514 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
515 | retstr += ");\n"; | ||
516 | |||
517 | return retstr; | ||
518 | } | ||
519 | |||
520 | /// <summary> | ||
521 | /// Generates the code for a ForLoop node. | ||
522 | /// </summary> | ||
523 | /// <param name="fl">The ForLoop node.</param> | ||
524 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
525 | private string GenerateForLoop(ForLoop fl) | ||
526 | { | ||
527 | string retstr = String.Empty; | ||
528 | |||
529 | retstr += WriteIndented("for ("); | ||
530 | |||
531 | // for ( x = 0 ; x < 10 ; x++ ) | ||
532 | // ^^^^^^^ | ||
533 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
534 | retstr += "; "; | ||
535 | // for ( x = 0 ; x < 10 ; x++ ) | ||
536 | // ^^^^^^^^ | ||
537 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
538 | retstr += "; "; | ||
539 | // for ( x = 0 ; x < 10 ; x++ ) | ||
540 | // ^^^^^ | ||
541 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
542 | retstr += ")\n"; | ||
543 | |||
544 | // CompoundStatement handles indentation itself but we need to do it | ||
545 | // otherwise. | ||
546 | bool indentHere = fl.kids.Top is Statement; | ||
547 | if (indentHere) m_braceCount++; | ||
548 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
549 | if (indentHere) m_braceCount--; | ||
550 | |||
551 | return retstr; | ||
552 | } | ||
553 | |||
554 | /// <summary> | ||
555 | /// Generates the code for a ForLoopStatement node. | ||
556 | /// </summary> | ||
557 | /// <param name="fls">The ForLoopStatement node.</param> | ||
558 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
559 | private string GenerateForLoopStatement(ForLoopStatement fls) | ||
560 | { | ||
561 | string retstr = String.Empty; | ||
562 | |||
563 | int comma = fls.kids.Count - 1; // tells us whether to print a comma | ||
564 | |||
565 | foreach (SYMBOL s in fls.kids) | ||
566 | { | ||
567 | retstr += GenerateNode(s); | ||
568 | if (0 < comma--) | ||
569 | retstr += ", "; | ||
570 | } | ||
571 | |||
572 | return retstr; | ||
573 | } | ||
574 | |||
575 | /// <summary> | ||
576 | /// Generates the code for a BinaryExpression node. | ||
577 | /// </summary> | ||
578 | /// <param name="be">The BinaryExpression node.</param> | ||
579 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
580 | private string GenerateBinaryExpression(BinaryExpression be) | ||
581 | { | ||
582 | string retstr = String.Empty; | ||
583 | |||
584 | retstr += GenerateNode((SYMBOL) be.kids.Pop()); | ||
585 | retstr += String.Format(" {0} ", be.ExpressionSymbol); | ||
586 | foreach (SYMBOL kid in be.kids) | ||
587 | retstr += GenerateNode(kid); | ||
588 | |||
589 | return retstr; | ||
590 | } | ||
591 | |||
592 | /// <summary> | ||
593 | /// Generates the code for a UnaryExpression node. | ||
594 | /// </summary> | ||
595 | /// <param name="ue">The UnaryExpression node.</param> | ||
596 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
597 | private string GenerateUnaryExpression(UnaryExpression ue) | ||
598 | { | ||
599 | string retstr = String.Empty; | ||
600 | |||
601 | retstr += ue.UnarySymbol; | ||
602 | retstr += GenerateNode((SYMBOL) ue.kids.Pop()); | ||
603 | |||
604 | return retstr; | ||
605 | } | ||
606 | |||
607 | /// <summary> | ||
608 | /// Generates the code for a ParenthesisExpression node. | ||
609 | /// </summary> | ||
610 | /// <param name="pe">The ParenthesisExpression node.</param> | ||
611 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
612 | private string GenerateParenthesisExpression(ParenthesisExpression pe) | ||
613 | { | ||
614 | string retstr = String.Empty; | ||
615 | |||
616 | retstr += "("; | ||
617 | foreach (SYMBOL kid in pe.kids) | ||
618 | retstr += GenerateNode(kid); | ||
619 | retstr += ")"; | ||
620 | |||
621 | return retstr; | ||
622 | } | ||
623 | |||
624 | /// <summary> | ||
625 | /// Generates the code for a IncrementDecrementExpression node. | ||
626 | /// </summary> | ||
627 | /// <param name="ide">The IncrementDecrementExpression node.</param> | ||
628 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
629 | private string GenerateIncrementDecrementExpression(IncrementDecrementExpression ide) | ||
630 | { | ||
631 | string retstr = String.Empty; | ||
632 | |||
633 | if (0 < ide.kids.Count) | ||
634 | { | ||
635 | IdentDotExpression dot = (IdentDotExpression) ide.kids.Top; | ||
636 | retstr += String.Format("{0}", ide.PostOperation ? dot.Name + "." + dot.Member + ide.Operation : ide.Operation + dot.Name + "." + dot.Member); | ||
637 | } | ||
638 | else | ||
639 | retstr += String.Format("{0}", ide.PostOperation ? ide.Name + ide.Operation : ide.Operation + ide.Name); | ||
640 | |||
641 | return retstr; | ||
642 | } | ||
643 | |||
644 | /// <summary> | ||
645 | /// Generates the code for a TypecastExpression node. | ||
646 | /// </summary> | ||
647 | /// <param name="te">The TypecastExpression node.</param> | ||
648 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
649 | private string GenerateTypecastExpression(TypecastExpression te) | ||
650 | { | ||
651 | string retstr = String.Empty; | ||
652 | |||
653 | // we wrap all typecasted statements in parentheses | ||
654 | retstr += String.Format("({0}) (", te.TypecastType); | ||
655 | retstr += GenerateNode((SYMBOL) te.kids.Pop()); | ||
656 | retstr += ")"; | ||
657 | |||
658 | return retstr; | ||
659 | } | ||
660 | |||
661 | /// <summary> | ||
662 | /// Generates the code for a FunctionCall node. | ||
663 | /// </summary> | ||
664 | /// <param name="fc">The FunctionCall node.</param> | ||
665 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
666 | private string GenerateFunctionCall(FunctionCall fc) | ||
667 | { | ||
668 | string retstr = String.Empty; | ||
669 | |||
670 | retstr += String.Format("{0}(", fc.Id); | ||
671 | |||
672 | foreach (SYMBOL kid in fc.kids) | ||
673 | retstr += GenerateNode(kid); | ||
674 | |||
675 | retstr += ")"; | ||
676 | |||
677 | return retstr; | ||
678 | } | ||
679 | |||
680 | /// <summary> | ||
681 | /// Generates the code for a Constant node. | ||
682 | /// </summary> | ||
683 | /// <param name="c">The Constant node.</param> | ||
684 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
685 | private string GenerateConstant(Constant c) | ||
686 | { | ||
687 | string retstr = String.Empty; | ||
688 | |||
689 | // Supprt LSL's weird acceptance of floats with no trailing digits | ||
690 | // after the period. Turn float x = 10.; into float x = 10.0; | ||
691 | if ("LSL_Types.LSLFloat" == c.Type) | ||
692 | { | ||
693 | int dotIndex = c.Value.IndexOf('.') + 1; | ||
694 | if (0 < dotIndex && (dotIndex == c.Value.Length || !Char.IsDigit(c.Value[dotIndex]))) | ||
695 | c.Value = c.Value.Insert(dotIndex, "0"); | ||
696 | } | ||
697 | |||
698 | // need to quote strings | ||
699 | if ("LSL_Types.LSLString" == c.Type) | ||
700 | retstr += "\""; | ||
701 | retstr += c.Value; | ||
702 | if ("LSL_Types.LSLString" == c.Type) | ||
703 | retstr += "\""; | ||
704 | |||
705 | return retstr; | ||
706 | } | ||
707 | |||
708 | /// <summary> | ||
709 | /// Generates the code for a VectorConstant node. | ||
710 | /// </summary> | ||
711 | /// <param name="vc">The VectorConstant node.</param> | ||
712 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
713 | private string GenerateVectorConstant(VectorConstant vc) | ||
714 | { | ||
715 | string retstr = String.Empty; | ||
716 | |||
717 | retstr += String.Format("new {0}(", vc.Type); | ||
718 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
719 | retstr += ", "; | ||
720 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
721 | retstr += ", "; | ||
722 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
723 | retstr += ")"; | ||
724 | |||
725 | return retstr; | ||
726 | } | ||
727 | |||
728 | /// <summary> | ||
729 | /// Generates the code for a RotationConstant node. | ||
730 | /// </summary> | ||
731 | /// <param name="rc">The RotationConstant node.</param> | ||
732 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
733 | private string GenerateRotationConstant(RotationConstant rc) | ||
734 | { | ||
735 | string retstr = String.Empty; | ||
736 | |||
737 | retstr += String.Format("new {0}(", rc.Type); | ||
738 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
739 | retstr += ", "; | ||
740 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
741 | retstr += ", "; | ||
742 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
743 | retstr += ", "; | ||
744 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
745 | retstr += ")"; | ||
746 | |||
747 | return retstr; | ||
748 | } | ||
749 | |||
750 | /// <summary> | ||
751 | /// Generates the code for a ListConstant node. | ||
752 | /// </summary> | ||
753 | /// <param name="lc">The ListConstant node.</param> | ||
754 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
755 | private string GenerateListConstant(ListConstant lc) | ||
756 | { | ||
757 | string retstr = String.Empty; | ||
758 | |||
759 | retstr += String.Format("new {0}(", lc.Type); | ||
760 | |||
761 | foreach (SYMBOL kid in lc.kids) | ||
762 | retstr += GenerateNode(kid); | ||
763 | |||
764 | retstr += ")"; | ||
765 | |||
766 | return retstr; | ||
767 | } | ||
768 | |||
769 | /// <summary> | ||
770 | /// Prints text correctly indented, followed by a newline. | ||
771 | /// </summary> | ||
772 | /// <param name="s">String of text to print.</param> | ||
773 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
774 | private string WriteIndentedLine(string s) | ||
775 | { | ||
776 | return WriteIndented(s) + "\n"; | ||
777 | } | ||
778 | |||
779 | /// <summary> | ||
780 | /// Prints text correctly indented. | ||
781 | /// </summary> | ||
782 | /// <param name="s">String of text to print.</param> | ||
783 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
784 | private string WriteIndented(string s) | ||
785 | { | ||
786 | return Indent() + s; | ||
787 | } | ||
788 | |||
789 | /// <summary> | ||
790 | /// Prints correct indentation. | ||
791 | /// </summary> | ||
792 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
793 | private string Indent() | ||
794 | { | ||
795 | string retstr = String.Empty; | ||
796 | |||
797 | for (int i = 0; i < m_braceCount; i++) | ||
798 | retstr += " "; | ||
799 | |||
800 | return retstr; | ||
801 | } | ||
802 | } | ||
803 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Compiler.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Compiler.cs index d54d2f5..124f1e6 100644 --- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Compiler.cs | |||
@@ -73,6 +73,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools | |||
73 | private string ScriptEnginesPath = "ScriptEngines"; | 73 | private string ScriptEnginesPath = "ScriptEngines"; |
74 | 74 | ||
75 | private static LSL2CSConverter LSL_Converter = new LSL2CSConverter(); | 75 | private static LSL2CSConverter LSL_Converter = new LSL2CSConverter(); |
76 | //private static CSCodeGenerator LSL_Converter; | ||
76 | private static CSharpCodeProvider CScodeProvider = new CSharpCodeProvider(); | 77 | private static CSharpCodeProvider CScodeProvider = new CSharpCodeProvider(); |
77 | private static VBCodeProvider VBcodeProvider = new VBCodeProvider(); | 78 | private static VBCodeProvider VBcodeProvider = new VBCodeProvider(); |
78 | private static JScriptCodeProvider JScodeProvider = new JScriptCodeProvider(); | 79 | private static JScriptCodeProvider JScodeProvider = new JScriptCodeProvider(); |
@@ -324,6 +325,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools | |||
324 | { | 325 | { |
325 | // Its LSL, convert it to C# | 326 | // Its LSL, convert it to C# |
326 | compileScript = LSL_Converter.Convert(Script); | 327 | compileScript = LSL_Converter.Convert(Script); |
328 | //LSL_Converter = new CSCodeGenerator(Script); | ||
329 | //compileScript = LSL_Converter.Generate(); | ||
327 | l = enumCompileType.cs; | 330 | l = enumCompileType.cs; |
328 | } | 331 | } |
329 | 332 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/LSL2CSCodeTransformer.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/LSL2CSCodeTransformer.cs new file mode 100644 index 0000000..a7ca18c --- /dev/null +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/LSL2CSCodeTransformer.cs | |||
@@ -0,0 +1,186 @@ | |||
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.Shared.CodeTools | ||
33 | { | ||
34 | public class LSL2CSCodeTransformer | ||
35 | { | ||
36 | private SYMBOL m_astRoot = null; | ||
37 | private static Dictionary<string, string> m_datatypeLSL2OpenSim = new Dictionary<string, string>(); | ||
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 | try | ||
49 | { | ||
50 | m_datatypeLSL2OpenSim.Add("integer", "LSL_Types.LSLInteger"); | ||
51 | m_datatypeLSL2OpenSim.Add("float", "LSL_Types.LSLFloat"); | ||
52 | //m_datatypeLSL2OpenSim.Add("key", "LSL_Types.key"); // key doesn't seem to be used | ||
53 | m_datatypeLSL2OpenSim.Add("key", "LSL_Types.LSLString"); | ||
54 | m_datatypeLSL2OpenSim.Add("string", "LSL_Types.LSLString"); | ||
55 | m_datatypeLSL2OpenSim.Add("vector", "LSL_Types.Vector3"); | ||
56 | m_datatypeLSL2OpenSim.Add("rotation", "LSL_Types.Quaternion"); | ||
57 | m_datatypeLSL2OpenSim.Add("list", "LSL_Types.list"); | ||
58 | } | ||
59 | catch | ||
60 | { | ||
61 | // temporary workaround since we are adding to a static datatype | ||
62 | } | ||
63 | } | ||
64 | |||
65 | /// <summary> | ||
66 | /// Transform the code in the AST we have. | ||
67 | /// </summary> | ||
68 | /// <returns>The root node of the transformed AST</returns> | ||
69 | public SYMBOL Transform() | ||
70 | { | ||
71 | foreach (SYMBOL s in m_astRoot.kids) | ||
72 | TransformNode(s); | ||
73 | |||
74 | return m_astRoot; | ||
75 | } | ||
76 | |||
77 | /// <summary> | ||
78 | /// Recursively called to transform each type of node. Will transform this | ||
79 | /// node, then all it's children. | ||
80 | /// </summary> | ||
81 | /// <param name="s">The current node to transform.</param> | ||
82 | private void TransformNode(SYMBOL s) | ||
83 | { | ||
84 | // make sure to put type lower in the inheritance hierarchy first | ||
85 | // ie: since IdentConstant and StringConstant inherit from Constant, | ||
86 | // put IdentConstant and StringConstant before Constant | ||
87 | if (s is Declaration) | ||
88 | ((Declaration) s).Datatype = m_datatypeLSL2OpenSim[((Declaration) s).Datatype]; | ||
89 | else if (s is Constant) | ||
90 | ((Constant) s).Type = m_datatypeLSL2OpenSim[((Constant) s).Type]; | ||
91 | else if (s is TypecastExpression) | ||
92 | ((TypecastExpression) s).TypecastType = m_datatypeLSL2OpenSim[((TypecastExpression) s).TypecastType]; | ||
93 | else if (s is GlobalFunctionDefinition && "void" != ((GlobalFunctionDefinition) s).ReturnType) // we don't need to translate "void" | ||
94 | ((GlobalFunctionDefinition) s).ReturnType = m_datatypeLSL2OpenSim[((GlobalFunctionDefinition) s).ReturnType]; | ||
95 | |||
96 | for (int i = 0; i < s.kids.Count; i++) | ||
97 | { | ||
98 | if (!(s is Assignment || s is ArgumentDeclarationList) && s.kids[i] is Declaration) | ||
99 | AddImplicitInitialization(s, i); | ||
100 | |||
101 | TransformNode((SYMBOL) s.kids[i]); | ||
102 | } | ||
103 | } | ||
104 | |||
105 | /// <summary> | ||
106 | /// Replaces an instance of the node at s.kids[didx] with an assignment | ||
107 | /// node. The assignment node has the Declaration node on the left hand | ||
108 | /// side and a default initializer on the right hand side. | ||
109 | /// </summary> | ||
110 | /// <param name="s"> | ||
111 | /// The node containing the Declaration node that needs replacing. | ||
112 | /// </param> | ||
113 | /// <param name="didx">Index of the Declaration node to replace.</param> | ||
114 | private void AddImplicitInitialization(SYMBOL s, int didx) | ||
115 | { | ||
116 | // We take the kids for a while to play with them. | ||
117 | int sKidSize = s.kids.Count; | ||
118 | object [] sKids = new object[sKidSize]; | ||
119 | for (int i = 0; i < sKidSize; i++) | ||
120 | sKids[i] = s.kids.Pop(); | ||
121 | |||
122 | // The child to be changed. | ||
123 | Declaration currentDeclaration = (Declaration) sKids[didx]; | ||
124 | |||
125 | // We need an assignment node. | ||
126 | Assignment newAssignment = new Assignment(currentDeclaration.yyps, | ||
127 | currentDeclaration, | ||
128 | GetZeroConstant(currentDeclaration.yyps, currentDeclaration.Datatype), | ||
129 | "="); | ||
130 | sKids[didx] = newAssignment; | ||
131 | |||
132 | // Put the kids back where they belong. | ||
133 | for (int i = 0; i < sKidSize; i++) | ||
134 | s.kids.Add(sKids[i]); | ||
135 | } | ||
136 | |||
137 | /// <summary> | ||
138 | /// Generates the node structure required to generate a default | ||
139 | /// initialization. | ||
140 | /// </summary> | ||
141 | /// <param name="p"> | ||
142 | /// Tools.Parser instance to use when instantiating nodes. | ||
143 | /// </param> | ||
144 | /// <param name="constantType">String describing the datatype.</param> | ||
145 | /// <returns> | ||
146 | /// A SYMBOL node conaining the appropriate structure for intializing a | ||
147 | /// constantType. | ||
148 | /// </returns> | ||
149 | private SYMBOL GetZeroConstant(Parser p, string constantType) | ||
150 | { | ||
151 | switch (constantType) | ||
152 | { | ||
153 | case "integer": | ||
154 | return new Constant(p, constantType, "0"); | ||
155 | case "float": | ||
156 | return new Constant(p, constantType, "0.0"); | ||
157 | case "string": | ||
158 | case "key": | ||
159 | return new Constant(p, constantType, ""); | ||
160 | case "list": | ||
161 | ArgumentList al = new ArgumentList(p); | ||
162 | return new ListConstant(p, al); | ||
163 | case "vector": | ||
164 | Constant vca = new Constant(p, "float", "0.0"); | ||
165 | Constant vcb = new Constant(p, "float", "0.0"); | ||
166 | Constant vcc = new Constant(p, "float", "0.0"); | ||
167 | ConstantExpression vcea = new ConstantExpression(p, vca); | ||
168 | ConstantExpression vceb = new ConstantExpression(p, vcb); | ||
169 | ConstantExpression vcec = new ConstantExpression(p, vcc); | ||
170 | return new VectorConstant(p, vcea, vceb, vcec); | ||
171 | case "rotation": | ||
172 | Constant rca = new Constant(p, "float", "0.0"); | ||
173 | Constant rcb = new Constant(p, "float", "0.0"); | ||
174 | Constant rcc = new Constant(p, "float", "0.0"); | ||
175 | Constant rcd = new Constant(p, "float", "0.0"); | ||
176 | ConstantExpression rcea = new ConstantExpression(p, rca); | ||
177 | ConstantExpression rceb = new ConstantExpression(p, rcb); | ||
178 | ConstantExpression rcec = new ConstantExpression(p, rcc); | ||
179 | ConstantExpression rced = new ConstantExpression(p, rcd); | ||
180 | return new RotationConstant(p, rcea, rceb, rcec, rced); | ||
181 | default: | ||
182 | return null; // this will probably break stuff | ||
183 | } | ||
184 | } | ||
185 | } | ||
186 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.lexer.cs new file mode 100644 index 0000000..97ef88b --- /dev/null +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.lexer.cs | |||
@@ -0,0 +1,18714 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.Shared.CodeTools { | ||
30 | //%+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,1092, | ||
600 | 161,5,91,3,9, | ||
601 | 0,162,12,1,39807, | ||
602 | 163,5,0,164,11, | ||
603 | 1,1069,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,42720,167,5,1, | ||
609 | 3,61,0,168,12, | ||
610 | 1,42835,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,42961, | ||
628 | 175,5,0,176,11, | ||
629 | 1,951,0,165,1, | ||
630 | -1,3,37,0,177, | ||
631 | 12,1,41031,178,5, | ||
632 | 1,3,61,0,179, | ||
633 | 12,1,41146,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,41272, | ||
648 | 186,5,1,3,38, | ||
649 | 0,187,12,1,41372, | ||
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,40544, | ||
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,40908, | ||
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,41513,202,5,1, | ||
677 | 3,61,0,203,12, | ||
678 | 1,41628,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,44409,210,5,2, | ||
691 | 3,61,0,211,12, | ||
692 | 1,44524,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,44646,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,41754, | ||
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,39939, | ||
718 | 226,5,17,3,45, | ||
719 | 0,227,12,1,40026, | ||
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,46,0,231, | ||
727 | 12,1,39479,232,5, | ||
728 | 14,3,48,0,233, | ||
729 | 12,1,39541,234,5, | ||
730 | 14,3,48,0,233, | ||
731 | 3,49,0,233,3, | ||
732 | 50,0,233,3,51, | ||
733 | 0,233,3,52,0, | ||
734 | 233,3,53,0,233, | ||
735 | 3,54,0,233,3, | ||
736 | 55,0,233,3,56, | ||
737 | 0,233,3,57,0, | ||
738 | 233,3,101,0,235, | ||
739 | 12,1,38959,236,5, | ||
740 | 12,3,43,0,237, | ||
741 | 12,1,1664,238,5, | ||
742 | 10,3,48,0,239, | ||
743 | 12,1,1726,240,5, | ||
744 | 12,3,48,0,239, | ||
745 | 3,49,0,239,3, | ||
746 | 50,0,239,3,51, | ||
747 | 0,239,3,52,0, | ||
748 | 239,3,53,0,239, | ||
749 | 3,54,0,239,3, | ||
750 | 55,0,239,3,56, | ||
751 | 0,239,3,57,0, | ||
752 | 239,3,102,0,241, | ||
753 | 12,1,1732,242,5, | ||
754 | 0,243,11,1,882, | ||
755 | 0,244,4,28,70, | ||
756 | 0,76,0,79,0, | ||
757 | 65,0,84,0,95, | ||
758 | 0,67,0,79,0, | ||
759 | 78,0,83,0,84, | ||
760 | 0,65,0,78,0, | ||
761 | 84,0,1,-1,3, | ||
762 | 70,0,241,245,11, | ||
763 | 1,882,0,244,1, | ||
764 | -1,3,49,0,239, | ||
765 | 3,50,0,239,3, | ||
766 | 51,0,239,3,52, | ||
767 | 0,239,3,53,0, | ||
768 | 239,3,54,0,239, | ||
769 | 3,55,0,239,3, | ||
770 | 56,0,239,3,57, | ||
771 | 0,239,0,165,1, | ||
772 | -1,3,45,0,237, | ||
773 | 3,48,0,239,3, | ||
774 | 49,0,239,3,50, | ||
775 | 0,239,3,51,0, | ||
776 | 239,3,52,0,239, | ||
777 | 3,53,0,239,3, | ||
778 | 54,0,239,3,55, | ||
779 | 0,239,3,56,0, | ||
780 | 239,3,57,0,239, | ||
781 | 0,165,1,-1,3, | ||
782 | 102,0,241,3,69, | ||
783 | 0,235,3,70,0, | ||
784 | 241,246,11,1,882, | ||
785 | 0,244,1,-1,3, | ||
786 | 49,0,233,3,50, | ||
787 | 0,233,3,51,0, | ||
788 | 233,3,52,0,233, | ||
789 | 3,53,0,233,3, | ||
790 | 54,0,233,3,55, | ||
791 | 0,233,3,56,0, | ||
792 | 233,3,57,0,233, | ||
793 | 3,101,0,235,3, | ||
794 | 102,0,241,3,69, | ||
795 | 0,235,3,70,0, | ||
796 | 241,247,11,1,882, | ||
797 | 0,244,1,-1,3, | ||
798 | 48,0,248,12,1, | ||
799 | 38954,249,5,17,3, | ||
800 | 120,0,250,12,1, | ||
801 | 39098,251,5,22,3, | ||
802 | 102,0,252,12,1, | ||
803 | 39099,253,5,22,3, | ||
804 | 102,0,252,3,48, | ||
805 | 0,252,3,49,0, | ||
806 | 252,3,50,0,252, | ||
807 | 3,51,0,252,3, | ||
808 | 52,0,252,3,53, | ||
809 | 0,252,3,54,0, | ||
810 | 252,3,55,0,252, | ||
811 | 3,56,0,252,3, | ||
812 | 57,0,252,3,97, | ||
813 | 0,252,3,98,0, | ||
814 | 252,3,99,0,252, | ||
815 | 3,100,0,252,3, | ||
816 | 101,0,252,3,65, | ||
817 | 0,252,3,66,0, | ||
818 | 252,3,67,0,252, | ||
819 | 3,68,0,252,3, | ||
820 | 69,0,252,3,70, | ||
821 | 0,252,254,11,1, | ||
822 | 855,0,255,4,40, | ||
823 | 72,0,69,0,88, | ||
824 | 0,95,0,73,0, | ||
825 | 78,0,84,0,69, | ||
826 | 0,71,0,69,0, | ||
827 | 82,0,95,0,67, | ||
828 | 0,79,0,78,0, | ||
829 | 83,0,84,0,65, | ||
830 | 0,78,0,84,0, | ||
831 | 1,-1,3,48,0, | ||
832 | 252,3,49,0,252, | ||
833 | 3,50,0,252,3, | ||
834 | 51,0,252,3,52, | ||
835 | 0,252,3,53,0, | ||
836 | 252,3,54,0,252, | ||
837 | 3,55,0,252,3, | ||
838 | 56,0,252,3,57, | ||
839 | 0,252,3,97,0, | ||
840 | 252,3,98,0,252, | ||
841 | 3,99,0,252,3, | ||
842 | 100,0,252,3,101, | ||
843 | 0,252,3,65,0, | ||
844 | 252,3,66,0,252, | ||
845 | 3,67,0,252,3, | ||
846 | 68,0,252,3,69, | ||
847 | 0,252,3,70,0, | ||
848 | 252,0,165,1,-1, | ||
849 | 3,48,0,256,12, | ||
850 | 1,39376,257,5,15, | ||
851 | 3,46,0,231,3, | ||
852 | 48,0,256,3,49, | ||
853 | 0,256,3,50,0, | ||
854 | 256,3,51,0,256, | ||
855 | 3,52,0,256,3, | ||
856 | 53,0,256,3,54, | ||
857 | 0,256,3,55,0, | ||
858 | 256,3,56,0,256, | ||
859 | 3,57,0,256,3, | ||
860 | 101,0,235,3,102, | ||
861 | 0,241,3,69,0, | ||
862 | 235,3,70,0,241, | ||
863 | 258,11,1,841,0, | ||
864 | 259,4,32,73,0, | ||
865 | 78,0,84,0,69, | ||
866 | 0,71,0,69,0, | ||
867 | 82,0,95,0,67, | ||
868 | 0,79,0,78,0, | ||
869 | 83,0,84,0,65, | ||
870 | 0,78,0,84,0, | ||
871 | 1,-1,3,49,0, | ||
872 | 256,3,50,0,256, | ||
873 | 3,88,0,250,3, | ||
874 | 52,0,256,3,53, | ||
875 | 0,256,3,51,0, | ||
876 | 256,3,55,0,256, | ||
877 | 3,56,0,256,3, | ||
878 | 54,0,256,3,46, | ||
879 | 0,231,3,57,0, | ||
880 | 256,3,101,0,235, | ||
881 | 3,102,0,241,3, | ||
882 | 69,0,235,3,70, | ||
883 | 0,241,260,11,1, | ||
884 | 841,0,259,1,-1, | ||
885 | 3,49,0,256,3, | ||
886 | 50,0,256,3,51, | ||
887 | 0,256,3,52,0, | ||
888 | 256,3,53,0,256, | ||
889 | 3,54,0,256,3, | ||
890 | 55,0,256,3,56, | ||
891 | 0,256,3,57,0, | ||
892 | 256,3,61,0,261, | ||
893 | 12,1,40174,262,5, | ||
894 | 0,263,11,1,22, | ||
895 | 0,264,4,24,77, | ||
896 | 0,73,0,78,0, | ||
897 | 85,0,83,0,95, | ||
898 | 0,69,0,81,0, | ||
899 | 85,0,65,0,76, | ||
900 | 0,83,0,1,-1, | ||
901 | 3,101,0,235,3, | ||
902 | 102,0,241,3,69, | ||
903 | 0,235,3,70,0, | ||
904 | 241,265,11,1,86, | ||
905 | 0,266,4,10,77, | ||
906 | 0,73,0,78,0, | ||
907 | 85,0,83,0,1, | ||
908 | -1,3,46,0,267, | ||
909 | 12,1,41875,268,5, | ||
910 | 14,3,48,0,233, | ||
911 | 3,49,0,233,3, | ||
912 | 50,0,233,3,51, | ||
913 | 0,233,3,52,0, | ||
914 | 233,3,53,0,233, | ||
915 | 3,54,0,233,3, | ||
916 | 55,0,233,3,56, | ||
917 | 0,233,3,57,0, | ||
918 | 233,3,101,0,235, | ||
919 | 3,102,0,241,3, | ||
920 | 69,0,235,3,70, | ||
921 | 0,241,269,11,1, | ||
922 | 111,0,270,4,12, | ||
923 | 80,0,69,0,82, | ||
924 | 0,73,0,79,0, | ||
925 | 68,0,1,-1,3, | ||
926 | 47,0,271,12,1, | ||
927 | 41996,272,5,2,3, | ||
928 | 47,0,273,12,1, | ||
929 | 42100,274,5,118,3, | ||
930 | 1,0,275,12,1, | ||
931 | 42101,276,5,118,3, | ||
932 | 1,0,275,3,9, | ||
933 | 0,275,3,96,33, | ||
934 | 275,3,13,0,275, | ||
935 | 3,0,3,275,3, | ||
936 | 32,0,275,3,33, | ||
937 | 0,275,3,34,0, | ||
938 | 275,3,35,0,275, | ||
939 | 3,36,0,275,3, | ||
940 | 37,0,275,3,38, | ||
941 | 0,275,3,40,0, | ||
942 | 275,3,41,0,275, | ||
943 | 3,42,0,275,3, | ||
944 | 43,0,275,3,44, | ||
945 | 0,275,3,45,0, | ||
946 | 275,3,46,0,275, | ||
947 | 3,47,0,275,3, | ||
948 | 3,9,275,3,49, | ||
949 | 0,275,3,50,0, | ||
950 | 275,3,48,0,275, | ||
951 | 3,52,0,275,3, | ||
952 | 53,0,275,3,51, | ||
953 | 0,275,3,55,0, | ||
954 | 275,3,56,0,275, | ||
955 | 3,54,0,275,3, | ||
956 | 59,0,275,3,57, | ||
957 | 0,275,3,61,0, | ||
958 | 275,3,62,0,275, | ||
959 | 3,60,0,275,3, | ||
960 | 64,0,275,3,65, | ||
961 | 0,275,3,66,0, | ||
962 | 275,3,67,0,275, | ||
963 | 3,68,0,275,3, | ||
964 | 69,0,275,3,70, | ||
965 | 0,275,3,71,0, | ||
966 | 275,3,72,0,275, | ||
967 | 3,73,0,275,3, | ||
968 | 74,0,275,3,75, | ||
969 | 0,275,3,76,0, | ||
970 | 275,3,77,0,275, | ||
971 | 3,78,0,275,3, | ||
972 | 79,0,275,3,80, | ||
973 | 0,275,3,81,0, | ||
974 | 275,3,82,0,275, | ||
975 | 3,83,0,275,3, | ||
976 | 84,0,275,3,85, | ||
977 | 0,275,3,86,0, | ||
978 | 275,3,87,0,275, | ||
979 | 3,88,0,275,3, | ||
980 | 89,0,275,3,90, | ||
981 | 0,275,3,91,0, | ||
982 | 275,3,92,0,275, | ||
983 | 3,93,0,275,3, | ||
984 | 94,0,275,3,95, | ||
985 | 0,275,3,96,0, | ||
986 | 275,3,97,0,275, | ||
987 | 3,98,0,275,3, | ||
988 | 99,0,275,3,100, | ||
989 | 0,275,3,101,0, | ||
990 | 275,3,102,0,275, | ||
991 | 3,103,0,275,3, | ||
992 | 104,0,275,3,105, | ||
993 | 0,275,3,106,0, | ||
994 | 275,3,107,0,275, | ||
995 | 3,15,7,275,3, | ||
996 | 109,0,275,3,110, | ||
997 | 0,275,3,111,0, | ||
998 | 275,3,112,0,275, | ||
999 | 3,113,0,275,3, | ||
1000 | 114,0,275,3,115, | ||
1001 | 0,275,3,116,0, | ||
1002 | 275,3,117,0,275, | ||
1003 | 3,118,0,275,3, | ||
1004 | 119,0,275,3,120, | ||
1005 | 0,275,3,121,0, | ||
1006 | 275,3,122,0,275, | ||
1007 | 3,108,0,275,3, | ||
1008 | 124,0,275,3,125, | ||
1009 | 0,275,3,96,6, | ||
1010 | 275,3,123,0,275, | ||
1011 | 3,126,0,275,3, | ||
1012 | 58,15,275,3,59, | ||
1013 | 15,275,3,136,4, | ||
1014 | 275,3,160,0,275, | ||
1015 | 3,170,0,275,3, | ||
1016 | 171,0,275,3,172, | ||
1017 | 0,275,3,173,0, | ||
1018 | 275,3,178,0,275, | ||
1019 | 3,176,2,275,3, | ||
1020 | 187,0,275,3,187, | ||
1021 | 1,275,3,192,0, | ||
1022 | 275,3,41,32,275, | ||
1023 | 3,197,1,275,3, | ||
1024 | 0,224,275,3,40, | ||
1025 | 32,275,3,63,32, | ||
1026 | 275,277,11,1,1073, | ||
1027 | 0,165,1,-1,3, | ||
1028 | 9,0,275,3,96, | ||
1029 | 33,275,3,13,0, | ||
1030 | 275,3,0,3,275, | ||
1031 | 3,32,0,275,3, | ||
1032 | 33,0,275,3,34, | ||
1033 | 0,275,3,35,0, | ||
1034 | 275,3,36,0,275, | ||
1035 | 3,37,0,275,3, | ||
1036 | 38,0,275,3,40, | ||
1037 | 0,275,3,41,0, | ||
1038 | 275,3,42,0,275, | ||
1039 | 3,43,0,275,3, | ||
1040 | 44,0,275,3,45, | ||
1041 | 0,275,3,46,0, | ||
1042 | 275,3,47,0,275, | ||
1043 | 3,3,9,275,3, | ||
1044 | 49,0,275,3,50, | ||
1045 | 0,275,3,48,0, | ||
1046 | 275,3,52,0,275, | ||
1047 | 3,53,0,275,3, | ||
1048 | 51,0,275,3,55, | ||
1049 | 0,275,3,56,0, | ||
1050 | 275,3,54,0,275, | ||
1051 | 3,59,0,275,3, | ||
1052 | 57,0,275,3,61, | ||
1053 | 0,275,3,62,0, | ||
1054 | 275,3,60,0,275, | ||
1055 | 3,64,0,275,3, | ||
1056 | 65,0,275,3,66, | ||
1057 | 0,275,3,67,0, | ||
1058 | 275,3,68,0,275, | ||
1059 | 3,69,0,275,3, | ||
1060 | 70,0,275,3,71, | ||
1061 | 0,275,3,72,0, | ||
1062 | 275,3,73,0,275, | ||
1063 | 3,74,0,275,3, | ||
1064 | 75,0,275,3,76, | ||
1065 | 0,275,3,77,0, | ||
1066 | 275,3,78,0,275, | ||
1067 | 3,79,0,275,3, | ||
1068 | 80,0,275,3,81, | ||
1069 | 0,275,3,82,0, | ||
1070 | 275,3,83,0,275, | ||
1071 | 3,84,0,275,3, | ||
1072 | 85,0,275,3,86, | ||
1073 | 0,275,3,87,0, | ||
1074 | 275,3,88,0,275, | ||
1075 | 3,89,0,275,3, | ||
1076 | 90,0,275,3,91, | ||
1077 | 0,275,3,92,0, | ||
1078 | 275,3,93,0,275, | ||
1079 | 3,94,0,275,3, | ||
1080 | 95,0,275,3,96, | ||
1081 | 0,275,3,97,0, | ||
1082 | 275,3,98,0,275, | ||
1083 | 3,99,0,275,3, | ||
1084 | 100,0,275,3,101, | ||
1085 | 0,275,3,102,0, | ||
1086 | 275,3,103,0,275, | ||
1087 | 3,104,0,275,3, | ||
1088 | 105,0,275,3,106, | ||
1089 | 0,275,3,107,0, | ||
1090 | 275,3,15,7,275, | ||
1091 | 3,109,0,275,3, | ||
1092 | 110,0,275,3,111, | ||
1093 | 0,275,3,112,0, | ||
1094 | 275,3,113,0,275, | ||
1095 | 3,114,0,275,3, | ||
1096 | 115,0,275,3,116, | ||
1097 | 0,275,3,117,0, | ||
1098 | 275,3,118,0,275, | ||
1099 | 3,119,0,275,3, | ||
1100 | 120,0,275,3,121, | ||
1101 | 0,275,3,122,0, | ||
1102 | 275,3,108,0,275, | ||
1103 | 3,124,0,275,3, | ||
1104 | 125,0,275,3,96, | ||
1105 | 6,275,3,123,0, | ||
1106 | 275,3,126,0,275, | ||
1107 | 3,58,15,275,3, | ||
1108 | 59,15,275,3,136, | ||
1109 | 4,275,3,160,0, | ||
1110 | 275,3,170,0,275, | ||
1111 | 3,171,0,275,3, | ||
1112 | 172,0,275,3,173, | ||
1113 | 0,275,3,178,0, | ||
1114 | 275,3,176,2,275, | ||
1115 | 3,187,0,275,3, | ||
1116 | 187,1,275,3,192, | ||
1117 | 0,275,3,41,32, | ||
1118 | 275,3,197,1,275, | ||
1119 | 3,0,224,275,3, | ||
1120 | 40,32,275,3,63, | ||
1121 | 32,275,278,11,1, | ||
1122 | 1073,0,165,1,-1, | ||
1123 | 3,61,0,279,12, | ||
1124 | 1,42351,280,5,0, | ||
1125 | 281,11,1,34,0, | ||
1126 | 282,4,24,83,0, | ||
1127 | 76,0,65,0,83, | ||
1128 | 0,72,0,95,0, | ||
1129 | 69,0,81,0,85, | ||
1130 | 0,65,0,76,0, | ||
1131 | 83,0,1,-1,283, | ||
1132 | 11,1,96,0,284, | ||
1133 | 4,10,83,0,76, | ||
1134 | 0,65,0,83,0, | ||
1135 | 72,0,1,-1,3, | ||
1136 | 48,0,248,3,49, | ||
1137 | 0,256,3,50,0, | ||
1138 | 256,3,51,0,256, | ||
1139 | 3,52,0,256,3, | ||
1140 | 53,0,256,3,54, | ||
1141 | 0,256,3,55,0, | ||
1142 | 256,3,56,0,256, | ||
1143 | 3,57,0,256,3, | ||
1144 | 59,0,285,12,1, | ||
1145 | 42478,286,5,0,287, | ||
1146 | 11,1,46,0,288, | ||
1147 | 4,18,83,0,69, | ||
1148 | 0,77,0,73,0, | ||
1149 | 67,0,79,0,76, | ||
1150 | 0,79,0,78,0, | ||
1151 | 1,-1,3,60,0, | ||
1152 | 289,12,1,43446,290, | ||
1153 | 5,2,3,60,0, | ||
1154 | 291,12,1,43560,292, | ||
1155 | 5,0,293,11,1, | ||
1156 | 197,0,294,4,20, | ||
1157 | 76,0,69,0,70, | ||
1158 | 0,84,0,95,0, | ||
1159 | 83,0,72,0,73, | ||
1160 | 0,70,0,84,0, | ||
1161 | 1,-1,3,61,0, | ||
1162 | 295,12,1,43681,296, | ||
1163 | 5,0,297,11,1, | ||
1164 | 148,0,298,4,22, | ||
1165 | 76,0,69,0,83, | ||
1166 | 0,83,0,95,0, | ||
1167 | 69,0,81,0,85, | ||
1168 | 0,65,0,76,0, | ||
1169 | 83,0,1,-1,299, | ||
1170 | 11,1,116,0,300, | ||
1171 | 4,20,76,0,69, | ||
1172 | 0,70,0,84,0, | ||
1173 | 95,0,65,0,78, | ||
1174 | 0,71,0,76,0, | ||
1175 | 69,0,1,-1,3, | ||
1176 | 61,0,301,12,1, | ||
1177 | 43807,302,5,1,3, | ||
1178 | 61,0,303,12,1, | ||
1179 | 43922,304,5,0,305, | ||
1180 | 11,1,136,0,306, | ||
1181 | 4,26,69,0,81, | ||
1182 | 0,85,0,65,0, | ||
1183 | 76,0,83,0,95, | ||
1184 | 0,69,0,81,0, | ||
1185 | 85,0,65,0,76, | ||
1186 | 0,83,0,1,-1, | ||
1187 | 307,11,1,66,0, | ||
1188 | 308,4,12,69,0, | ||
1189 | 81,0,85,0,65, | ||
1190 | 0,76,0,83,0, | ||
1191 | 1,-1,3,62,0, | ||
1192 | 309,12,1,44048,310, | ||
1193 | 5,2,3,61,0, | ||
1194 | 311,12,1,44163,312, | ||
1195 | 5,0,313,11,1, | ||
1196 | 154,0,314,4,28, | ||
1197 | 71,0,82,0,69, | ||
1198 | 0,65,0,84,0, | ||
1199 | 69,0,82,0,95, | ||
1200 | 0,69,0,81,0, | ||
1201 | 85,0,65,0,76, | ||
1202 | 0,83,0,1,-1, | ||
1203 | 3,62,0,315,12, | ||
1204 | 1,44284,316,5,0, | ||
1205 | 317,11,1,203,0, | ||
1206 | 318,4,22,82,0, | ||
1207 | 73,0,71,0,72, | ||
1208 | 0,84,0,95,0, | ||
1209 | 83,0,72,0,73, | ||
1210 | 0,70,0,84,0, | ||
1211 | 1,-1,319,11,1, | ||
1212 | 121,0,320,4,22, | ||
1213 | 82,0,73,0,71, | ||
1214 | 0,72,0,84,0, | ||
1215 | 95,0,65,0,78, | ||
1216 | 0,71,0,76,0, | ||
1217 | 69,0,1,-1,3, | ||
1218 | 64,0,321,12,1, | ||
1219 | 42599,322,5,0,323, | ||
1220 | 11,1,106,0,324, | ||
1221 | 4,4,65,0,84, | ||
1222 | 0,1,-1,3,65, | ||
1223 | 0,325,12,1,1093, | ||
1224 | 326,5,63,3,109, | ||
1225 | 0,327,12,1,1094, | ||
1226 | 328,5,63,3,109, | ||
1227 | 0,327,3,110,0, | ||
1228 | 327,3,111,0,327, | ||
1229 | 3,112,0,327,3, | ||
1230 | 113,0,327,3,114, | ||
1231 | 0,327,3,115,0, | ||
1232 | 327,3,116,0,327, | ||
1233 | 3,117,0,327,3, | ||
1234 | 118,0,327,3,119, | ||
1235 | 0,327,3,120,0, | ||
1236 | 327,3,121,0,327, | ||
1237 | 3,122,0,327,3, | ||
1238 | 48,0,327,3,49, | ||
1239 | 0,327,3,50,0, | ||
1240 | 327,3,51,0,327, | ||
1241 | 3,52,0,327,3, | ||
1242 | 53,0,327,3,54, | ||
1243 | 0,327,3,55,0, | ||
1244 | 327,3,56,0,327, | ||
1245 | 3,57,0,327,3, | ||
1246 | 65,0,327,3,66, | ||
1247 | 0,327,3,67,0, | ||
1248 | 327,3,68,0,327, | ||
1249 | 3,69,0,327,3, | ||
1250 | 70,0,327,3,71, | ||
1251 | 0,327,3,72,0, | ||
1252 | 327,3,73,0,327, | ||
1253 | 3,74,0,327,3, | ||
1254 | 75,0,327,3,76, | ||
1255 | 0,327,3,77,0, | ||
1256 | 327,3,78,0,327, | ||
1257 | 3,79,0,327,3, | ||
1258 | 80,0,327,3,81, | ||
1259 | 0,327,3,82,0, | ||
1260 | 327,3,83,0,327, | ||
1261 | 3,84,0,327,3, | ||
1262 | 85,0,327,3,86, | ||
1263 | 0,327,3,87,0, | ||
1264 | 327,3,88,0,327, | ||
1265 | 3,89,0,327,3, | ||
1266 | 90,0,327,3,95, | ||
1267 | 0,327,3,97,0, | ||
1268 | 327,3,98,0,327, | ||
1269 | 3,99,0,327,3, | ||
1270 | 100,0,327,3,101, | ||
1271 | 0,327,3,102,0, | ||
1272 | 327,3,103,0,327, | ||
1273 | 3,104,0,327,3, | ||
1274 | 105,0,327,3,106, | ||
1275 | 0,327,3,107,0, | ||
1276 | 327,3,108,0,327, | ||
1277 | 329,11,1,829,0, | ||
1278 | 330,4,10,73,0, | ||
1279 | 68,0,69,0,78, | ||
1280 | 0,84,0,1,-1, | ||
1281 | 3,110,0,327,3, | ||
1282 | 111,0,327,3,112, | ||
1283 | 0,327,3,113,0, | ||
1284 | 327,3,114,0,327, | ||
1285 | 3,115,0,327,3, | ||
1286 | 116,0,327,3,117, | ||
1287 | 0,327,3,118,0, | ||
1288 | 327,3,119,0,327, | ||
1289 | 3,120,0,327,3, | ||
1290 | 121,0,327,3,122, | ||
1291 | 0,327,3,48,0, | ||
1292 | 327,3,49,0,327, | ||
1293 | 3,50,0,327,3, | ||
1294 | 51,0,327,3,52, | ||
1295 | 0,327,3,53,0, | ||
1296 | 327,3,54,0,327, | ||
1297 | 3,55,0,327,3, | ||
1298 | 56,0,327,3,57, | ||
1299 | 0,327,3,65,0, | ||
1300 | 327,3,66,0,327, | ||
1301 | 3,67,0,327,3, | ||
1302 | 68,0,327,3,69, | ||
1303 | 0,327,3,70,0, | ||
1304 | 327,3,71,0,327, | ||
1305 | 3,72,0,327,3, | ||
1306 | 73,0,327,3,74, | ||
1307 | 0,327,3,75,0, | ||
1308 | 327,3,76,0,327, | ||
1309 | 3,77,0,327,3, | ||
1310 | 78,0,327,3,79, | ||
1311 | 0,327,3,80,0, | ||
1312 | 327,3,81,0,327, | ||
1313 | 3,82,0,327,3, | ||
1314 | 83,0,327,3,84, | ||
1315 | 0,327,3,85,0, | ||
1316 | 327,3,86,0,327, | ||
1317 | 3,87,0,327,3, | ||
1318 | 88,0,327,3,89, | ||
1319 | 0,327,3,90,0, | ||
1320 | 327,3,95,0,327, | ||
1321 | 3,97,0,327,3, | ||
1322 | 98,0,327,3,99, | ||
1323 | 0,327,3,100,0, | ||
1324 | 327,3,101,0,327, | ||
1325 | 3,102,0,327,3, | ||
1326 | 103,0,327,3,104, | ||
1327 | 0,327,3,105,0, | ||
1328 | 327,3,106,0,327, | ||
1329 | 3,107,0,327,3, | ||
1330 | 108,0,327,331,11, | ||
1331 | 1,829,0,330,1, | ||
1332 | -1,3,66,0,325, | ||
1333 | 3,67,0,325,3, | ||
1334 | 68,0,325,3,69, | ||
1335 | 0,332,12,1,1337, | ||
1336 | 333,5,65,3,109, | ||
1337 | 0,327,3,110,0, | ||
1338 | 327,3,111,0,327, | ||
1339 | 3,112,0,327,3, | ||
1340 | 113,0,327,3,114, | ||
1341 | 0,327,3,115,0, | ||
1342 | 327,3,116,0,327, | ||
1343 | 3,117,0,327,3, | ||
1344 | 118,0,327,3,119, | ||
1345 | 0,327,3,120,0, | ||
1346 | 327,3,121,0,327, | ||
1347 | 3,122,0,327,3, | ||
1348 | 43,0,237,3,45, | ||
1349 | 0,237,3,48,0, | ||
1350 | 334,12,1,1399,335, | ||
1351 | 5,63,3,109,0, | ||
1352 | 327,3,110,0,327, | ||
1353 | 3,111,0,327,3, | ||
1354 | 112,0,327,3,113, | ||
1355 | 0,327,3,114,0, | ||
1356 | 327,3,115,0,327, | ||
1357 | 3,116,0,327,3, | ||
1358 | 117,0,327,3,118, | ||
1359 | 0,327,3,119,0, | ||
1360 | 327,3,120,0,327, | ||
1361 | 3,121,0,327,3, | ||
1362 | 122,0,327,3,48, | ||
1363 | 0,334,3,49,0, | ||
1364 | 334,3,50,0,334, | ||
1365 | 3,51,0,334,3, | ||
1366 | 52,0,334,3,53, | ||
1367 | 0,334,3,54,0, | ||
1368 | 334,3,55,0,334, | ||
1369 | 3,56,0,334,3, | ||
1370 | 57,0,334,3,65, | ||
1371 | 0,327,3,66,0, | ||
1372 | 327,3,67,0,327, | ||
1373 | 3,68,0,327,3, | ||
1374 | 69,0,327,3,70, | ||
1375 | 0,336,12,1,1405, | ||
1376 | 337,5,63,3,109, | ||
1377 | 0,327,3,110,0, | ||
1378 | 327,3,111,0,327, | ||
1379 | 3,112,0,327,3, | ||
1380 | 113,0,327,3,114, | ||
1381 | 0,327,3,115,0, | ||
1382 | 327,3,116,0,327, | ||
1383 | 3,117,0,327,3, | ||
1384 | 118,0,327,3,119, | ||
1385 | 0,327,3,120,0, | ||
1386 | 327,3,121,0,327, | ||
1387 | 3,122,0,327,3, | ||
1388 | 48,0,327,3,49, | ||
1389 | 0,327,3,50,0, | ||
1390 | 327,3,51,0,327, | ||
1391 | 3,52,0,327,3, | ||
1392 | 53,0,327,3,54, | ||
1393 | 0,327,3,55,0, | ||
1394 | 327,3,56,0,327, | ||
1395 | 3,57,0,327,3, | ||
1396 | 65,0,327,3,66, | ||
1397 | 0,327,3,67,0, | ||
1398 | 327,3,68,0,327, | ||
1399 | 3,69,0,327,3, | ||
1400 | 70,0,327,3,71, | ||
1401 | 0,327,3,72,0, | ||
1402 | 327,3,73,0,327, | ||
1403 | 3,74,0,327,3, | ||
1404 | 75,0,327,3,76, | ||
1405 | 0,327,3,77,0, | ||
1406 | 327,3,78,0,327, | ||
1407 | 3,79,0,327,3, | ||
1408 | 80,0,327,3,81, | ||
1409 | 0,327,3,82,0, | ||
1410 | 327,3,83,0,327, | ||
1411 | 3,84,0,327,3, | ||
1412 | 85,0,327,3,86, | ||
1413 | 0,327,3,87,0, | ||
1414 | 327,3,88,0,327, | ||
1415 | 3,89,0,327,3, | ||
1416 | 90,0,327,3,95, | ||
1417 | 0,327,3,97,0, | ||
1418 | 327,3,98,0,327, | ||
1419 | 3,99,0,327,3, | ||
1420 | 100,0,327,3,101, | ||
1421 | 0,327,3,102,0, | ||
1422 | 327,3,103,0,327, | ||
1423 | 3,104,0,327,3, | ||
1424 | 105,0,327,3,106, | ||
1425 | 0,327,3,107,0, | ||
1426 | 327,3,108,0,327, | ||
1427 | 338,11,1,829,0, | ||
1428 | 330,1,-1,3,71, | ||
1429 | 0,327,3,72,0, | ||
1430 | 327,3,73,0,327, | ||
1431 | 3,74,0,327,3, | ||
1432 | 75,0,327,3,76, | ||
1433 | 0,327,3,77,0, | ||
1434 | 327,3,78,0,327, | ||
1435 | 3,79,0,327,3, | ||
1436 | 80,0,327,3,81, | ||
1437 | 0,327,3,82,0, | ||
1438 | 327,3,83,0,327, | ||
1439 | 3,84,0,327,3, | ||
1440 | 85,0,327,3,86, | ||
1441 | 0,327,3,87,0, | ||
1442 | 327,3,88,0,327, | ||
1443 | 3,89,0,327,3, | ||
1444 | 90,0,327,3,95, | ||
1445 | 0,327,3,97,0, | ||
1446 | 327,3,98,0,327, | ||
1447 | 3,99,0,327,3, | ||
1448 | 100,0,327,3,101, | ||
1449 | 0,327,3,102,0, | ||
1450 | 336,3,103,0,327, | ||
1451 | 3,104,0,327,3, | ||
1452 | 105,0,327,3,106, | ||
1453 | 0,327,3,107,0, | ||
1454 | 327,3,108,0,327, | ||
1455 | 339,11,1,829,0, | ||
1456 | 330,1,-1,3,49, | ||
1457 | 0,334,3,50,0, | ||
1458 | 334,3,51,0,334, | ||
1459 | 3,52,0,334,3, | ||
1460 | 53,0,334,3,54, | ||
1461 | 0,334,3,55,0, | ||
1462 | 334,3,56,0,334, | ||
1463 | 3,57,0,334,3, | ||
1464 | 65,0,327,3,66, | ||
1465 | 0,327,3,67,0, | ||
1466 | 327,3,68,0,327, | ||
1467 | 3,69,0,327,3, | ||
1468 | 70,0,327,3,71, | ||
1469 | 0,327,3,72,0, | ||
1470 | 327,3,73,0,327, | ||
1471 | 3,74,0,327,3, | ||
1472 | 75,0,327,3,76, | ||
1473 | 0,327,3,77,0, | ||
1474 | 327,3,78,0,327, | ||
1475 | 3,79,0,327,3, | ||
1476 | 80,0,327,3,81, | ||
1477 | 0,327,3,82,0, | ||
1478 | 327,3,83,0,327, | ||
1479 | 3,84,0,327,3, | ||
1480 | 85,0,327,3,86, | ||
1481 | 0,327,3,87,0, | ||
1482 | 327,3,88,0,327, | ||
1483 | 3,89,0,327,3, | ||
1484 | 90,0,327,3,95, | ||
1485 | 0,327,3,97,0, | ||
1486 | 327,3,98,0,327, | ||
1487 | 3,99,0,327,3, | ||
1488 | 100,0,327,3,101, | ||
1489 | 0,327,3,102,0, | ||
1490 | 327,3,103,0,327, | ||
1491 | 3,104,0,327,3, | ||
1492 | 105,0,327,3,106, | ||
1493 | 0,327,3,107,0, | ||
1494 | 327,3,108,0,327, | ||
1495 | 340,11,1,829,0, | ||
1496 | 330,1,-1,3,70, | ||
1497 | 0,341,12,1,2058, | ||
1498 | 342,5,63,3,109, | ||
1499 | 0,327,3,110,0, | ||
1500 | 327,3,111,0,327, | ||
1501 | 3,112,0,327,3, | ||
1502 | 113,0,327,3,114, | ||
1503 | 0,327,3,115,0, | ||
1504 | 327,3,116,0,327, | ||
1505 | 3,117,0,327,3, | ||
1506 | 118,0,327,3,119, | ||
1507 | 0,327,3,120,0, | ||
1508 | 327,3,121,0,327, | ||
1509 | 3,122,0,327,3, | ||
1510 | 48,0,327,3,49, | ||
1511 | 0,327,3,50,0, | ||
1512 | 327,3,51,0,327, | ||
1513 | 3,52,0,327,3, | ||
1514 | 53,0,327,3,54, | ||
1515 | 0,327,3,55,0, | ||
1516 | 327,3,56,0,327, | ||
1517 | 3,57,0,327,3, | ||
1518 | 65,0,327,3,66, | ||
1519 | 0,327,3,67,0, | ||
1520 | 327,3,68,0,327, | ||
1521 | 3,69,0,327,3, | ||
1522 | 70,0,327,3,71, | ||
1523 | 0,327,3,72,0, | ||
1524 | 327,3,73,0,327, | ||
1525 | 3,74,0,327,3, | ||
1526 | 75,0,327,3,76, | ||
1527 | 0,327,3,77,0, | ||
1528 | 327,3,78,0,327, | ||
1529 | 3,79,0,327,3, | ||
1530 | 80,0,327,3,81, | ||
1531 | 0,327,3,82,0, | ||
1532 | 327,3,83,0,327, | ||
1533 | 3,84,0,327,3, | ||
1534 | 85,0,327,3,86, | ||
1535 | 0,327,3,87,0, | ||
1536 | 327,3,88,0,327, | ||
1537 | 3,89,0,327,3, | ||
1538 | 90,0,327,3,95, | ||
1539 | 0,327,3,97,0, | ||
1540 | 327,3,98,0,327, | ||
1541 | 3,99,0,327,3, | ||
1542 | 100,0,327,3,101, | ||
1543 | 0,327,3,102,0, | ||
1544 | 327,3,103,0,327, | ||
1545 | 3,104,0,327,3, | ||
1546 | 105,0,327,3,106, | ||
1547 | 0,327,3,107,0, | ||
1548 | 327,3,108,0,327, | ||
1549 | 343,11,1,829,0, | ||
1550 | 330,1,-1,3,71, | ||
1551 | 0,325,3,72,0, | ||
1552 | 325,3,73,0,325, | ||
1553 | 3,74,0,325,3, | ||
1554 | 75,0,325,3,76, | ||
1555 | 0,325,3,77,0, | ||
1556 | 325,3,78,0,325, | ||
1557 | 3,79,0,325,3, | ||
1558 | 80,0,325,3,81, | ||
1559 | 0,325,3,82,0, | ||
1560 | 325,3,83,0,325, | ||
1561 | 3,84,0,325,3, | ||
1562 | 85,0,325,3,86, | ||
1563 | 0,325,3,87,0, | ||
1564 | 325,3,88,0,325, | ||
1565 | 3,89,0,325,3, | ||
1566 | 90,0,325,3,91, | ||
1567 | 0,344,12,1,40422, | ||
1568 | 345,5,0,346,11, | ||
1569 | 1,126,0,347,4, | ||
1570 | 24,76,0,69,0, | ||
1571 | 70,0,84,0,95, | ||
1572 | 0,66,0,82,0, | ||
1573 | 65,0,67,0,75, | ||
1574 | 0,69,0,84,0, | ||
1575 | 1,-1,3,93,0, | ||
1576 | 348,12,1,40787,349, | ||
1577 | 5,0,350,11,1, | ||
1578 | 131,0,351,4,26, | ||
1579 | 82,0,73,0,71, | ||
1580 | 0,72,0,84,0, | ||
1581 | 95,0,66,0,82, | ||
1582 | 0,65,0,67,0, | ||
1583 | 75,0,69,0,84, | ||
1584 | 0,1,-1,3,94, | ||
1585 | 0,352,12,1,44771, | ||
1586 | 353,5,0,354,11, | ||
1587 | 1,170,0,355,4, | ||
1588 | 10,67,0,65,0, | ||
1589 | 82,0,69,0,84, | ||
1590 | 0,1,-1,3,95, | ||
1591 | 0,325,3,97,0, | ||
1592 | 356,12,1,20935,357, | ||
1593 | 5,63,3,109,0, | ||
1594 | 327,3,110,0,327, | ||
1595 | 3,111,0,327,3, | ||
1596 | 112,0,327,3,113, | ||
1597 | 0,327,3,114,0, | ||
1598 | 327,3,115,0,327, | ||
1599 | 3,116,0,358,12, | ||
1600 | 1,20970,359,5,63, | ||
1601 | 3,109,0,327,3, | ||
1602 | 110,0,327,3,111, | ||
1603 | 0,327,3,112,0, | ||
1604 | 327,3,113,0,327, | ||
1605 | 3,114,0,327,3, | ||
1606 | 115,0,327,3,116, | ||
1607 | 0,360,12,1,21005, | ||
1608 | 361,5,63,3,109, | ||
1609 | 0,327,3,110,0, | ||
1610 | 327,3,111,0,327, | ||
1611 | 3,112,0,327,3, | ||
1612 | 113,0,327,3,114, | ||
1613 | 0,327,3,115,0, | ||
1614 | 327,3,116,0,327, | ||
1615 | 3,117,0,327,3, | ||
1616 | 118,0,327,3,119, | ||
1617 | 0,327,3,120,0, | ||
1618 | 327,3,121,0,327, | ||
1619 | 3,122,0,327,3, | ||
1620 | 48,0,327,3,49, | ||
1621 | 0,327,3,50,0, | ||
1622 | 327,3,51,0,327, | ||
1623 | 3,52,0,327,3, | ||
1624 | 53,0,327,3,54, | ||
1625 | 0,327,3,55,0, | ||
1626 | 327,3,56,0,327, | ||
1627 | 3,57,0,327,3, | ||
1628 | 65,0,327,3,66, | ||
1629 | 0,327,3,67,0, | ||
1630 | 327,3,68,0,327, | ||
1631 | 3,69,0,327,3, | ||
1632 | 70,0,327,3,71, | ||
1633 | 0,327,3,72,0, | ||
1634 | 327,3,73,0,327, | ||
1635 | 3,74,0,327,3, | ||
1636 | 75,0,327,3,76, | ||
1637 | 0,327,3,77,0, | ||
1638 | 327,3,78,0,327, | ||
1639 | 3,79,0,327,3, | ||
1640 | 80,0,327,3,81, | ||
1641 | 0,327,3,82,0, | ||
1642 | 327,3,83,0,327, | ||
1643 | 3,84,0,327,3, | ||
1644 | 85,0,327,3,86, | ||
1645 | 0,327,3,87,0, | ||
1646 | 327,3,88,0,327, | ||
1647 | 3,89,0,327,3, | ||
1648 | 90,0,327,3,95, | ||
1649 | 0,327,3,97,0, | ||
1650 | 362,12,1,21048,363, | ||
1651 | 5,63,3,109,0, | ||
1652 | 327,3,110,0,327, | ||
1653 | 3,111,0,327,3, | ||
1654 | 112,0,327,3,113, | ||
1655 | 0,327,3,114,0, | ||
1656 | 327,3,115,0,327, | ||
1657 | 3,116,0,327,3, | ||
1658 | 117,0,327,3,118, | ||
1659 | 0,327,3,119,0, | ||
1660 | 327,3,120,0,327, | ||
1661 | 3,121,0,327,3, | ||
1662 | 122,0,327,3,48, | ||
1663 | 0,327,3,49,0, | ||
1664 | 327,3,50,0,327, | ||
1665 | 3,51,0,327,3, | ||
1666 | 52,0,327,3,53, | ||
1667 | 0,327,3,54,0, | ||
1668 | 327,3,55,0,327, | ||
1669 | 3,56,0,327,3, | ||
1670 | 57,0,327,3,65, | ||
1671 | 0,327,3,66,0, | ||
1672 | 327,3,67,0,327, | ||
1673 | 3,68,0,327,3, | ||
1674 | 69,0,327,3,70, | ||
1675 | 0,327,3,71,0, | ||
1676 | 327,3,72,0,327, | ||
1677 | 3,73,0,327,3, | ||
1678 | 74,0,327,3,75, | ||
1679 | 0,327,3,76,0, | ||
1680 | 327,3,77,0,327, | ||
1681 | 3,78,0,327,3, | ||
1682 | 79,0,327,3,80, | ||
1683 | 0,327,3,81,0, | ||
1684 | 327,3,82,0,327, | ||
1685 | 3,83,0,327,3, | ||
1686 | 84,0,327,3,85, | ||
1687 | 0,327,3,86,0, | ||
1688 | 327,3,87,0,327, | ||
1689 | 3,88,0,327,3, | ||
1690 | 89,0,327,3,90, | ||
1691 | 0,327,3,95,0, | ||
1692 | 327,3,97,0,327, | ||
1693 | 3,98,0,327,3, | ||
1694 | 99,0,364,12,1, | ||
1695 | 21093,365,5,63,3, | ||
1696 | 109,0,327,3,110, | ||
1697 | 0,327,3,111,0, | ||
1698 | 327,3,112,0,327, | ||
1699 | 3,113,0,327,3, | ||
1700 | 114,0,327,3,115, | ||
1701 | 0,327,3,116,0, | ||
1702 | 327,3,117,0,327, | ||
1703 | 3,118,0,327,3, | ||
1704 | 119,0,327,3,120, | ||
1705 | 0,327,3,121,0, | ||
1706 | 327,3,122,0,327, | ||
1707 | 3,48,0,327,3, | ||
1708 | 49,0,327,3,50, | ||
1709 | 0,327,3,51,0, | ||
1710 | 327,3,52,0,327, | ||
1711 | 3,53,0,327,3, | ||
1712 | 54,0,327,3,55, | ||
1713 | 0,327,3,56,0, | ||
1714 | 327,3,57,0,327, | ||
1715 | 3,65,0,327,3, | ||
1716 | 66,0,327,3,67, | ||
1717 | 0,327,3,68,0, | ||
1718 | 327,3,69,0,327, | ||
1719 | 3,70,0,327,3, | ||
1720 | 71,0,327,3,72, | ||
1721 | 0,327,3,73,0, | ||
1722 | 327,3,74,0,327, | ||
1723 | 3,75,0,327,3, | ||
1724 | 76,0,327,3,77, | ||
1725 | 0,327,3,78,0, | ||
1726 | 327,3,79,0,327, | ||
1727 | 3,80,0,327,3, | ||
1728 | 81,0,327,3,82, | ||
1729 | 0,327,3,83,0, | ||
1730 | 327,3,84,0,327, | ||
1731 | 3,85,0,327,3, | ||
1732 | 86,0,327,3,87, | ||
1733 | 0,327,3,88,0, | ||
1734 | 327,3,89,0,327, | ||
1735 | 3,90,0,327,3, | ||
1736 | 95,0,327,3,97, | ||
1737 | 0,327,3,98,0, | ||
1738 | 327,3,99,0,327, | ||
1739 | 3,100,0,327,3, | ||
1740 | 101,0,327,3,102, | ||
1741 | 0,327,3,103,0, | ||
1742 | 327,3,104,0,366, | ||
1743 | 12,1,21143,367,5, | ||
1744 | 63,3,109,0,327, | ||
1745 | 3,110,0,327,3, | ||
1746 | 111,0,327,3,112, | ||
1747 | 0,327,3,113,0, | ||
1748 | 327,3,114,0,327, | ||
1749 | 3,115,0,327,3, | ||
1750 | 116,0,327,3,117, | ||
1751 | 0,327,3,118,0, | ||
1752 | 327,3,119,0,327, | ||
1753 | 3,120,0,327,3, | ||
1754 | 121,0,327,3,122, | ||
1755 | 0,327,3,48,0, | ||
1756 | 327,3,49,0,327, | ||
1757 | 3,50,0,327,3, | ||
1758 | 51,0,327,3,52, | ||
1759 | 0,327,3,53,0, | ||
1760 | 327,3,54,0,327, | ||
1761 | 3,55,0,327,3, | ||
1762 | 56,0,327,3,57, | ||
1763 | 0,327,3,65,0, | ||
1764 | 327,3,66,0,327, | ||
1765 | 3,67,0,327,3, | ||
1766 | 68,0,327,3,69, | ||
1767 | 0,327,3,70,0, | ||
1768 | 327,3,71,0,327, | ||
1769 | 3,72,0,327,3, | ||
1770 | 73,0,327,3,74, | ||
1771 | 0,327,3,75,0, | ||
1772 | 327,3,76,0,327, | ||
1773 | 3,77,0,327,3, | ||
1774 | 78,0,327,3,79, | ||
1775 | 0,327,3,80,0, | ||
1776 | 327,3,81,0,327, | ||
1777 | 3,82,0,327,3, | ||
1778 | 83,0,327,3,84, | ||
1779 | 0,327,3,85,0, | ||
1780 | 327,3,86,0,327, | ||
1781 | 3,87,0,327,3, | ||
1782 | 88,0,327,3,89, | ||
1783 | 0,327,3,90,0, | ||
1784 | 327,3,95,0,327, | ||
1785 | 3,97,0,327,3, | ||
1786 | 98,0,327,3,99, | ||
1787 | 0,327,3,100,0, | ||
1788 | 327,3,101,0,327, | ||
1789 | 3,102,0,327,3, | ||
1790 | 103,0,327,3,104, | ||
1791 | 0,327,3,105,0, | ||
1792 | 327,3,106,0,327, | ||
1793 | 3,107,0,327,3, | ||
1794 | 108,0,327,368,11, | ||
1795 | 1,380,0,369,4, | ||
1796 | 24,65,0,84,0, | ||
1797 | 84,0,65,0,67, | ||
1798 | 0,72,0,95,0, | ||
1799 | 69,0,86,0,69, | ||
1800 | 0,78,0,84,0, | ||
1801 | 1,-1,3,105,0, | ||
1802 | 327,3,106,0,327, | ||
1803 | 3,107,0,327,3, | ||
1804 | 108,0,327,370,11, | ||
1805 | 1,829,0,330,1, | ||
1806 | -1,3,100,0,327, | ||
1807 | 3,101,0,327,3, | ||
1808 | 102,0,327,3,103, | ||
1809 | 0,327,3,104,0, | ||
1810 | 327,3,105,0,327, | ||
1811 | 3,106,0,327,3, | ||
1812 | 107,0,327,3,108, | ||
1813 | 0,327,371,11,1, | ||
1814 | 829,0,330,1,-1, | ||
1815 | 3,98,0,327,3, | ||
1816 | 99,0,327,3,100, | ||
1817 | 0,327,3,101,0, | ||
1818 | 327,3,102,0,327, | ||
1819 | 3,103,0,327,3, | ||
1820 | 104,0,327,3,105, | ||
1821 | 0,327,3,106,0, | ||
1822 | 327,3,107,0,327, | ||
1823 | 3,108,0,327,372, | ||
1824 | 11,1,829,0,330, | ||
1825 | 1,-1,3,117,0, | ||
1826 | 327,3,118,0,327, | ||
1827 | 3,119,0,327,3, | ||
1828 | 120,0,327,3,121, | ||
1829 | 0,327,3,122,0, | ||
1830 | 327,3,48,0,327, | ||
1831 | 3,49,0,327,3, | ||
1832 | 50,0,327,3,51, | ||
1833 | 0,327,3,52,0, | ||
1834 | 327,3,53,0,327, | ||
1835 | 3,54,0,327,3, | ||
1836 | 55,0,327,3,56, | ||
1837 | 0,327,3,57,0, | ||
1838 | 327,3,65,0,327, | ||
1839 | 3,66,0,327,3, | ||
1840 | 67,0,327,3,68, | ||
1841 | 0,327,3,69,0, | ||
1842 | 327,3,70,0,327, | ||
1843 | 3,71,0,327,3, | ||
1844 | 72,0,327,3,73, | ||
1845 | 0,327,3,74,0, | ||
1846 | 327,3,75,0,327, | ||
1847 | 3,76,0,327,3, | ||
1848 | 77,0,327,3,78, | ||
1849 | 0,327,3,79,0, | ||
1850 | 327,3,80,0,327, | ||
1851 | 3,81,0,327,3, | ||
1852 | 82,0,327,3,83, | ||
1853 | 0,327,3,84,0, | ||
1854 | 327,3,85,0,327, | ||
1855 | 3,86,0,327,3, | ||
1856 | 87,0,327,3,88, | ||
1857 | 0,327,3,89,0, | ||
1858 | 327,3,90,0,327, | ||
1859 | 3,95,0,373,12, | ||
1860 | 1,21536,374,5,63, | ||
1861 | 3,109,0,327,3, | ||
1862 | 110,0,327,3,111, | ||
1863 | 0,327,3,112,0, | ||
1864 | 327,3,113,0,327, | ||
1865 | 3,114,0,375,12, | ||
1866 | 1,21569,376,5,63, | ||
1867 | 3,109,0,327,3, | ||
1868 | 110,0,327,3,111, | ||
1869 | 0,377,12,1,21599, | ||
1870 | 378,5,63,3,109, | ||
1871 | 0,327,3,110,0, | ||
1872 | 327,3,111,0,327, | ||
1873 | 3,112,0,327,3, | ||
1874 | 113,0,327,3,114, | ||
1875 | 0,327,3,115,0, | ||
1876 | 327,3,116,0,379, | ||
1877 | 12,1,21634,380,5, | ||
1878 | 63,3,109,0,327, | ||
1879 | 3,110,0,327,3, | ||
1880 | 111,0,327,3,112, | ||
1881 | 0,327,3,113,0, | ||
1882 | 327,3,114,0,327, | ||
1883 | 3,115,0,327,3, | ||
1884 | 116,0,327,3,117, | ||
1885 | 0,327,3,118,0, | ||
1886 | 327,3,119,0,327, | ||
1887 | 3,120,0,327,3, | ||
1888 | 121,0,327,3,122, | ||
1889 | 0,327,3,48,0, | ||
1890 | 327,3,49,0,327, | ||
1891 | 3,50,0,327,3, | ||
1892 | 51,0,327,3,52, | ||
1893 | 0,327,3,53,0, | ||
1894 | 327,3,54,0,327, | ||
1895 | 3,55,0,327,3, | ||
1896 | 56,0,327,3,57, | ||
1897 | 0,327,3,65,0, | ||
1898 | 327,3,66,0,327, | ||
1899 | 3,67,0,327,3, | ||
1900 | 68,0,327,3,69, | ||
1901 | 0,327,3,70,0, | ||
1902 | 327,3,71,0,327, | ||
1903 | 3,72,0,327,3, | ||
1904 | 73,0,327,3,74, | ||
1905 | 0,327,3,75,0, | ||
1906 | 327,3,76,0,327, | ||
1907 | 3,77,0,327,3, | ||
1908 | 78,0,327,3,79, | ||
1909 | 0,327,3,80,0, | ||
1910 | 327,3,81,0,327, | ||
1911 | 3,82,0,327,3, | ||
1912 | 83,0,327,3,84, | ||
1913 | 0,327,3,85,0, | ||
1914 | 327,3,86,0,327, | ||
1915 | 3,87,0,327,3, | ||
1916 | 88,0,327,3,89, | ||
1917 | 0,327,3,90,0, | ||
1918 | 327,3,95,0,381, | ||
1919 | 12,1,21720,382,5, | ||
1920 | 63,3,109,0,327, | ||
1921 | 3,110,0,327,3, | ||
1922 | 111,0,327,3,112, | ||
1923 | 0,327,3,113,0, | ||
1924 | 327,3,114,0,327, | ||
1925 | 3,115,0,327,3, | ||
1926 | 116,0,383,12,1, | ||
1927 | 21755,384,5,63,3, | ||
1928 | 109,0,327,3,110, | ||
1929 | 0,327,3,111,0, | ||
1930 | 327,3,112,0,327, | ||
1931 | 3,113,0,327,3, | ||
1932 | 114,0,327,3,115, | ||
1933 | 0,327,3,116,0, | ||
1934 | 327,3,117,0,327, | ||
1935 | 3,118,0,327,3, | ||
1936 | 119,0,327,3,120, | ||
1937 | 0,327,3,121,0, | ||
1938 | 327,3,122,0,327, | ||
1939 | 3,48,0,327,3, | ||
1940 | 49,0,327,3,50, | ||
1941 | 0,327,3,51,0, | ||
1942 | 327,3,52,0,327, | ||
1943 | 3,53,0,327,3, | ||
1944 | 54,0,327,3,55, | ||
1945 | 0,327,3,56,0, | ||
1946 | 327,3,57,0,327, | ||
1947 | 3,65,0,327,3, | ||
1948 | 66,0,327,3,67, | ||
1949 | 0,327,3,68,0, | ||
1950 | 327,3,69,0,327, | ||
1951 | 3,70,0,327,3, | ||
1952 | 71,0,327,3,72, | ||
1953 | 0,327,3,73,0, | ||
1954 | 327,3,74,0,327, | ||
1955 | 3,75,0,327,3, | ||
1956 | 76,0,327,3,77, | ||
1957 | 0,327,3,78,0, | ||
1958 | 327,3,79,0,327, | ||
1959 | 3,80,0,327,3, | ||
1960 | 81,0,327,3,82, | ||
1961 | 0,327,3,83,0, | ||
1962 | 327,3,84,0,327, | ||
1963 | 3,85,0,327,3, | ||
1964 | 86,0,327,3,87, | ||
1965 | 0,327,3,88,0, | ||
1966 | 327,3,89,0,327, | ||
1967 | 3,90,0,327,3, | ||
1968 | 95,0,327,3,97, | ||
1969 | 0,385,12,1,21798, | ||
1970 | 386,5,63,3,109, | ||
1971 | 0,327,3,110,0, | ||
1972 | 327,3,111,0,327, | ||
1973 | 3,112,0,327,3, | ||
1974 | 113,0,327,3,114, | ||
1975 | 0,387,12,1,21831, | ||
1976 | 388,5,63,3,109, | ||
1977 | 0,327,3,110,0, | ||
1978 | 327,3,111,0,327, | ||
1979 | 3,112,0,327,3, | ||
1980 | 113,0,327,3,114, | ||
1981 | 0,327,3,115,0, | ||
1982 | 327,3,116,0,327, | ||
1983 | 3,117,0,327,3, | ||
1984 | 118,0,327,3,119, | ||
1985 | 0,327,3,120,0, | ||
1986 | 327,3,121,0,327, | ||
1987 | 3,122,0,327,3, | ||
1988 | 48,0,327,3,49, | ||
1989 | 0,327,3,50,0, | ||
1990 | 327,3,51,0,327, | ||
1991 | 3,52,0,327,3, | ||
1992 | 53,0,327,3,54, | ||
1993 | 0,327,3,55,0, | ||
1994 | 327,3,56,0,327, | ||
1995 | 3,57,0,327,3, | ||
1996 | 65,0,327,3,66, | ||
1997 | 0,327,3,67,0, | ||
1998 | 327,3,68,0,327, | ||
1999 | 3,69,0,327,3, | ||
2000 | 70,0,327,3,71, | ||
2001 | 0,327,3,72,0, | ||
2002 | 327,3,73,0,327, | ||
2003 | 3,74,0,327,3, | ||
2004 | 75,0,327,3,76, | ||
2005 | 0,327,3,77,0, | ||
2006 | 327,3,78,0,327, | ||
2007 | 3,79,0,327,3, | ||
2008 | 80,0,327,3,81, | ||
2009 | 0,327,3,82,0, | ||
2010 | 327,3,83,0,327, | ||
2011 | 3,84,0,327,3, | ||
2012 | 85,0,327,3,86, | ||
2013 | 0,327,3,87,0, | ||
2014 | 327,3,88,0,327, | ||
2015 | 3,89,0,327,3, | ||
2016 | 90,0,327,3,95, | ||
2017 | 0,327,3,97,0, | ||
2018 | 327,3,98,0,327, | ||
2019 | 3,99,0,327,3, | ||
2020 | 100,0,327,3,101, | ||
2021 | 0,327,3,102,0, | ||
2022 | 327,3,103,0,389, | ||
2023 | 12,1,21880,390,5, | ||
2024 | 63,3,109,0,327, | ||
2025 | 3,110,0,327,3, | ||
2026 | 111,0,327,3,112, | ||
2027 | 0,327,3,113,0, | ||
2028 | 327,3,114,0,327, | ||
2029 | 3,115,0,327,3, | ||
2030 | 116,0,327,3,117, | ||
2031 | 0,327,3,118,0, | ||
2032 | 327,3,119,0,327, | ||
2033 | 3,120,0,327,3, | ||
2034 | 121,0,327,3,122, | ||
2035 | 0,327,3,48,0, | ||
2036 | 327,3,49,0,327, | ||
2037 | 3,50,0,327,3, | ||
2038 | 51,0,327,3,52, | ||
2039 | 0,327,3,53,0, | ||
2040 | 327,3,54,0,327, | ||
2041 | 3,55,0,327,3, | ||
2042 | 56,0,327,3,57, | ||
2043 | 0,327,3,65,0, | ||
2044 | 327,3,66,0,327, | ||
2045 | 3,67,0,327,3, | ||
2046 | 68,0,327,3,69, | ||
2047 | 0,327,3,70,0, | ||
2048 | 327,3,71,0,327, | ||
2049 | 3,72,0,327,3, | ||
2050 | 73,0,327,3,74, | ||
2051 | 0,327,3,75,0, | ||
2052 | 327,3,76,0,327, | ||
2053 | 3,77,0,327,3, | ||
2054 | 78,0,327,3,79, | ||
2055 | 0,327,3,80,0, | ||
2056 | 327,3,81,0,327, | ||
2057 | 3,82,0,327,3, | ||
2058 | 83,0,327,3,84, | ||
2059 | 0,327,3,85,0, | ||
2060 | 327,3,86,0,327, | ||
2061 | 3,87,0,327,3, | ||
2062 | 88,0,327,3,89, | ||
2063 | 0,327,3,90,0, | ||
2064 | 327,3,95,0,327, | ||
2065 | 3,97,0,327,3, | ||
2066 | 98,0,327,3,99, | ||
2067 | 0,327,3,100,0, | ||
2068 | 327,3,101,0,391, | ||
2069 | 12,1,21927,392,5, | ||
2070 | 63,3,109,0,327, | ||
2071 | 3,110,0,327,3, | ||
2072 | 111,0,327,3,112, | ||
2073 | 0,327,3,113,0, | ||
2074 | 327,3,114,0,327, | ||
2075 | 3,115,0,327,3, | ||
2076 | 116,0,393,12,1, | ||
2077 | 21962,394,5,63,3, | ||
2078 | 109,0,327,3,110, | ||
2079 | 0,327,3,111,0, | ||
2080 | 327,3,112,0,327, | ||
2081 | 3,113,0,327,3, | ||
2082 | 114,0,327,3,115, | ||
2083 | 0,327,3,116,0, | ||
2084 | 327,3,117,0,327, | ||
2085 | 3,118,0,327,3, | ||
2086 | 119,0,327,3,120, | ||
2087 | 0,327,3,121,0, | ||
2088 | 327,3,122,0,327, | ||
2089 | 3,48,0,327,3, | ||
2090 | 49,0,327,3,50, | ||
2091 | 0,327,3,51,0, | ||
2092 | 327,3,52,0,327, | ||
2093 | 3,53,0,327,3, | ||
2094 | 54,0,327,3,55, | ||
2095 | 0,327,3,56,0, | ||
2096 | 327,3,57,0,327, | ||
2097 | 3,65,0,327,3, | ||
2098 | 66,0,327,3,67, | ||
2099 | 0,327,3,68,0, | ||
2100 | 327,3,69,0,327, | ||
2101 | 3,70,0,327,3, | ||
2102 | 71,0,327,3,72, | ||
2103 | 0,327,3,73,0, | ||
2104 | 327,3,74,0,327, | ||
2105 | 3,75,0,327,3, | ||
2106 | 76,0,327,3,77, | ||
2107 | 0,327,3,78,0, | ||
2108 | 327,3,79,0,327, | ||
2109 | 3,80,0,327,3, | ||
2110 | 81,0,327,3,82, | ||
2111 | 0,327,3,83,0, | ||
2112 | 327,3,84,0,327, | ||
2113 | 3,85,0,327,3, | ||
2114 | 86,0,327,3,87, | ||
2115 | 0,327,3,88,0, | ||
2116 | 327,3,89,0,327, | ||
2117 | 3,90,0,327,3, | ||
2118 | 95,0,327,3,97, | ||
2119 | 0,327,3,98,0, | ||
2120 | 327,3,99,0,327, | ||
2121 | 3,100,0,327,3, | ||
2122 | 101,0,327,3,102, | ||
2123 | 0,327,3,103,0, | ||
2124 | 327,3,104,0,327, | ||
2125 | 3,105,0,327,3, | ||
2126 | 106,0,327,3,107, | ||
2127 | 0,327,3,108,0, | ||
2128 | 327,395,11,1,350, | ||
2129 | 0,396,4,38,65, | ||
2130 | 0,84,0,95,0, | ||
2131 | 82,0,79,0,84, | ||
2132 | 0,95,0,84,0, | ||
2133 | 65,0,82,0,71, | ||
2134 | 0,69,0,84,0, | ||
2135 | 95,0,69,0,86, | ||
2136 | 0,69,0,78,0, | ||
2137 | 84,0,1,-1,3, | ||
2138 | 117,0,327,3,118, | ||
2139 | 0,327,3,119,0, | ||
2140 | 327,3,120,0,327, | ||
2141 | 3,121,0,327,3, | ||
2142 | 122,0,327,3,48, | ||
2143 | 0,327,3,49,0, | ||
2144 | 327,3,50,0,327, | ||
2145 | 3,51,0,327,3, | ||
2146 | 52,0,327,3,53, | ||
2147 | 0,327,3,54,0, | ||
2148 | 327,3,55,0,327, | ||
2149 | 3,56,0,327,3, | ||
2150 | 57,0,327,3,65, | ||
2151 | 0,327,3,66,0, | ||
2152 | 327,3,67,0,327, | ||
2153 | 3,68,0,327,3, | ||
2154 | 69,0,327,3,70, | ||
2155 | 0,327,3,71,0, | ||
2156 | 327,3,72,0,327, | ||
2157 | 3,73,0,327,3, | ||
2158 | 74,0,327,3,75, | ||
2159 | 0,327,3,76,0, | ||
2160 | 327,3,77,0,327, | ||
2161 | 3,78,0,327,3, | ||
2162 | 79,0,327,3,80, | ||
2163 | 0,327,3,81,0, | ||
2164 | 327,3,82,0,327, | ||
2165 | 3,83,0,327,3, | ||
2166 | 84,0,327,3,85, | ||
2167 | 0,327,3,86,0, | ||
2168 | 327,3,87,0,327, | ||
2169 | 3,88,0,327,3, | ||
2170 | 89,0,327,3,90, | ||
2171 | 0,327,3,95,0, | ||
2172 | 327,3,97,0,327, | ||
2173 | 3,98,0,327,3, | ||
2174 | 99,0,327,3,100, | ||
2175 | 0,327,3,101,0, | ||
2176 | 327,3,102,0,327, | ||
2177 | 3,103,0,327,3, | ||
2178 | 104,0,327,3,105, | ||
2179 | 0,327,3,106,0, | ||
2180 | 327,3,107,0,327, | ||
2181 | 3,108,0,327,397, | ||
2182 | 11,1,829,0,330, | ||
2183 | 1,-1,3,102,0, | ||
2184 | 327,3,103,0,327, | ||
2185 | 3,104,0,327,3, | ||
2186 | 105,0,327,3,106, | ||
2187 | 0,327,3,107,0, | ||
2188 | 327,3,108,0,327, | ||
2189 | 398,11,1,829,0, | ||
2190 | 330,1,-1,3,104, | ||
2191 | 0,327,3,105,0, | ||
2192 | 327,3,106,0,327, | ||
2193 | 3,107,0,327,3, | ||
2194 | 108,0,327,399,11, | ||
2195 | 1,829,0,330,1, | ||
2196 | -1,3,115,0,327, | ||
2197 | 3,116,0,327,3, | ||
2198 | 117,0,327,3,118, | ||
2199 | 0,327,3,119,0, | ||
2200 | 327,3,120,0,327, | ||
2201 | 3,121,0,327,3, | ||
2202 | 122,0,327,3,48, | ||
2203 | 0,327,3,49,0, | ||
2204 | 327,3,50,0,327, | ||
2205 | 3,51,0,327,3, | ||
2206 | 52,0,327,3,53, | ||
2207 | 0,327,3,54,0, | ||
2208 | 327,3,55,0,327, | ||
2209 | 3,56,0,327,3, | ||
2210 | 57,0,327,3,65, | ||
2211 | 0,327,3,66,0, | ||
2212 | 327,3,67,0,327, | ||
2213 | 3,68,0,327,3, | ||
2214 | 69,0,327,3,70, | ||
2215 | 0,327,3,71,0, | ||
2216 | 327,3,72,0,327, | ||
2217 | 3,73,0,327,3, | ||
2218 | 74,0,327,3,75, | ||
2219 | 0,327,3,76,0, | ||
2220 | 327,3,77,0,327, | ||
2221 | 3,78,0,327,3, | ||
2222 | 79,0,327,3,80, | ||
2223 | 0,327,3,81,0, | ||
2224 | 327,3,82,0,327, | ||
2225 | 3,83,0,327,3, | ||
2226 | 84,0,327,3,85, | ||
2227 | 0,327,3,86,0, | ||
2228 | 327,3,87,0,327, | ||
2229 | 3,88,0,327,3, | ||
2230 | 89,0,327,3,90, | ||
2231 | 0,327,3,95,0, | ||
2232 | 327,3,97,0,327, | ||
2233 | 3,98,0,327,3, | ||
2234 | 99,0,327,3,100, | ||
2235 | 0,327,3,101,0, | ||
2236 | 327,3,102,0,327, | ||
2237 | 3,103,0,327,3, | ||
2238 | 104,0,327,3,105, | ||
2239 | 0,327,3,106,0, | ||
2240 | 327,3,107,0,327, | ||
2241 | 3,108,0,327,400, | ||
2242 | 11,1,829,0,330, | ||
2243 | 1,-1,3,98,0, | ||
2244 | 327,3,99,0,327, | ||
2245 | 3,100,0,327,3, | ||
2246 | 101,0,327,3,102, | ||
2247 | 0,327,3,103,0, | ||
2248 | 327,3,104,0,327, | ||
2249 | 3,105,0,327,3, | ||
2250 | 106,0,327,3,107, | ||
2251 | 0,327,3,108,0, | ||
2252 | 327,401,11,1,829, | ||
2253 | 0,330,1,-1,3, | ||
2254 | 117,0,327,3,118, | ||
2255 | 0,327,3,119,0, | ||
2256 | 327,3,120,0,327, | ||
2257 | 3,121,0,327,3, | ||
2258 | 122,0,327,3,48, | ||
2259 | 0,327,3,49,0, | ||
2260 | 327,3,50,0,327, | ||
2261 | 3,51,0,327,3, | ||
2262 | 52,0,327,3,53, | ||
2263 | 0,327,3,54,0, | ||
2264 | 327,3,55,0,327, | ||
2265 | 3,56,0,327,3, | ||
2266 | 57,0,327,3,65, | ||
2267 | 0,327,3,66,0, | ||
2268 | 327,3,67,0,327, | ||
2269 | 3,68,0,327,3, | ||
2270 | 69,0,327,3,70, | ||
2271 | 0,327,3,71,0, | ||
2272 | 327,3,72,0,327, | ||
2273 | 3,73,0,327,3, | ||
2274 | 74,0,327,3,75, | ||
2275 | 0,327,3,76,0, | ||
2276 | 327,3,77,0,327, | ||
2277 | 3,78,0,327,3, | ||
2278 | 79,0,327,3,80, | ||
2279 | 0,327,3,81,0, | ||
2280 | 327,3,82,0,327, | ||
2281 | 3,83,0,327,3, | ||
2282 | 84,0,327,3,85, | ||
2283 | 0,327,3,86,0, | ||
2284 | 327,3,87,0,327, | ||
2285 | 3,88,0,327,3, | ||
2286 | 89,0,327,3,90, | ||
2287 | 0,327,3,95,0, | ||
2288 | 327,3,97,0,327, | ||
2289 | 3,98,0,327,3, | ||
2290 | 99,0,327,3,100, | ||
2291 | 0,327,3,101,0, | ||
2292 | 327,3,102,0,327, | ||
2293 | 3,103,0,327,3, | ||
2294 | 104,0,327,3,105, | ||
2295 | 0,327,3,106,0, | ||
2296 | 327,3,107,0,327, | ||
2297 | 3,108,0,327,402, | ||
2298 | 11,1,829,0,330, | ||
2299 | 1,-1,3,97,0, | ||
2300 | 327,3,98,0,327, | ||
2301 | 3,99,0,327,3, | ||
2302 | 100,0,327,3,101, | ||
2303 | 0,327,3,102,0, | ||
2304 | 327,3,103,0,327, | ||
2305 | 3,104,0,327,3, | ||
2306 | 105,0,327,3,106, | ||
2307 | 0,327,3,107,0, | ||
2308 | 327,3,108,0,327, | ||
2309 | 403,11,1,829,0, | ||
2310 | 330,1,-1,3,117, | ||
2311 | 0,327,3,118,0, | ||
2312 | 327,3,119,0,327, | ||
2313 | 3,120,0,327,3, | ||
2314 | 121,0,327,3,122, | ||
2315 | 0,327,3,48,0, | ||
2316 | 327,3,49,0,327, | ||
2317 | 3,50,0,327,3, | ||
2318 | 51,0,327,3,52, | ||
2319 | 0,327,3,53,0, | ||
2320 | 327,3,54,0,327, | ||
2321 | 3,55,0,327,3, | ||
2322 | 56,0,327,3,57, | ||
2323 | 0,327,3,65,0, | ||
2324 | 327,3,66,0,327, | ||
2325 | 3,67,0,327,3, | ||
2326 | 68,0,327,3,69, | ||
2327 | 0,327,3,70,0, | ||
2328 | 327,3,71,0,327, | ||
2329 | 3,72,0,327,3, | ||
2330 | 73,0,327,3,74, | ||
2331 | 0,327,3,75,0, | ||
2332 | 327,3,76,0,327, | ||
2333 | 3,77,0,327,3, | ||
2334 | 78,0,327,3,79, | ||
2335 | 0,327,3,80,0, | ||
2336 | 327,3,81,0,327, | ||
2337 | 3,82,0,327,3, | ||
2338 | 83,0,327,3,84, | ||
2339 | 0,327,3,85,0, | ||
2340 | 327,3,86,0,327, | ||
2341 | 3,87,0,327,3, | ||
2342 | 88,0,327,3,89, | ||
2343 | 0,327,3,90,0, | ||
2344 | 327,3,95,0,327, | ||
2345 | 3,97,0,327,3, | ||
2346 | 98,0,327,3,99, | ||
2347 | 0,327,3,100,0, | ||
2348 | 327,3,101,0,327, | ||
2349 | 3,102,0,327,3, | ||
2350 | 103,0,327,3,104, | ||
2351 | 0,327,3,105,0, | ||
2352 | 327,3,106,0,327, | ||
2353 | 3,107,0,327,3, | ||
2354 | 108,0,327,404,11, | ||
2355 | 1,829,0,330,1, | ||
2356 | -1,3,112,0,327, | ||
2357 | 3,113,0,327,3, | ||
2358 | 114,0,327,3,115, | ||
2359 | 0,327,3,116,0, | ||
2360 | 327,3,117,0,327, | ||
2361 | 3,118,0,327,3, | ||
2362 | 119,0,327,3,120, | ||
2363 | 0,327,3,121,0, | ||
2364 | 327,3,122,0,327, | ||
2365 | 3,48,0,327,3, | ||
2366 | 49,0,327,3,50, | ||
2367 | 0,327,3,51,0, | ||
2368 | 327,3,52,0,327, | ||
2369 | 3,53,0,327,3, | ||
2370 | 54,0,327,3,55, | ||
2371 | 0,327,3,56,0, | ||
2372 | 327,3,57,0,327, | ||
2373 | 3,65,0,327,3, | ||
2374 | 66,0,327,3,67, | ||
2375 | 0,327,3,68,0, | ||
2376 | 327,3,69,0,327, | ||
2377 | 3,70,0,327,3, | ||
2378 | 71,0,327,3,72, | ||
2379 | 0,327,3,73,0, | ||
2380 | 327,3,74,0,327, | ||
2381 | 3,75,0,327,3, | ||
2382 | 76,0,327,3,77, | ||
2383 | 0,327,3,78,0, | ||
2384 | 327,3,79,0,327, | ||
2385 | 3,80,0,327,3, | ||
2386 | 81,0,327,3,82, | ||
2387 | 0,327,3,83,0, | ||
2388 | 327,3,84,0,327, | ||
2389 | 3,85,0,327,3, | ||
2390 | 86,0,327,3,87, | ||
2391 | 0,327,3,88,0, | ||
2392 | 327,3,89,0,327, | ||
2393 | 3,90,0,327,3, | ||
2394 | 95,0,327,3,97, | ||
2395 | 0,327,3,98,0, | ||
2396 | 327,3,99,0,327, | ||
2397 | 3,100,0,327,3, | ||
2398 | 101,0,327,3,102, | ||
2399 | 0,327,3,103,0, | ||
2400 | 327,3,104,0,327, | ||
2401 | 3,105,0,327,3, | ||
2402 | 106,0,327,3,107, | ||
2403 | 0,327,3,108,0, | ||
2404 | 327,405,11,1,829, | ||
2405 | 0,330,1,-1,3, | ||
2406 | 115,0,327,3,116, | ||
2407 | 0,406,12,1,22771, | ||
2408 | 407,5,63,3,109, | ||
2409 | 0,327,3,110,0, | ||
2410 | 327,3,111,0,327, | ||
2411 | 3,112,0,327,3, | ||
2412 | 113,0,327,3,114, | ||
2413 | 0,327,3,115,0, | ||
2414 | 327,3,116,0,327, | ||
2415 | 3,117,0,327,3, | ||
2416 | 118,0,327,3,119, | ||
2417 | 0,327,3,120,0, | ||
2418 | 327,3,121,0,327, | ||
2419 | 3,122,0,327,3, | ||
2420 | 48,0,327,3,49, | ||
2421 | 0,327,3,50,0, | ||
2422 | 327,3,51,0,327, | ||
2423 | 3,52,0,327,3, | ||
2424 | 53,0,327,3,54, | ||
2425 | 0,327,3,55,0, | ||
2426 | 327,3,56,0,327, | ||
2427 | 3,57,0,327,3, | ||
2428 | 65,0,327,3,66, | ||
2429 | 0,327,3,67,0, | ||
2430 | 327,3,68,0,327, | ||
2431 | 3,69,0,327,3, | ||
2432 | 70,0,327,3,71, | ||
2433 | 0,327,3,72,0, | ||
2434 | 327,3,73,0,327, | ||
2435 | 3,74,0,327,3, | ||
2436 | 75,0,327,3,76, | ||
2437 | 0,327,3,77,0, | ||
2438 | 327,3,78,0,327, | ||
2439 | 3,79,0,327,3, | ||
2440 | 80,0,327,3,81, | ||
2441 | 0,327,3,82,0, | ||
2442 | 327,3,83,0,327, | ||
2443 | 3,84,0,327,3, | ||
2444 | 85,0,327,3,86, | ||
2445 | 0,327,3,87,0, | ||
2446 | 327,3,88,0,327, | ||
2447 | 3,89,0,327,3, | ||
2448 | 90,0,327,3,95, | ||
2449 | 0,327,3,97,0, | ||
2450 | 408,12,1,22814,409, | ||
2451 | 5,63,3,109,0, | ||
2452 | 327,3,110,0,327, | ||
2453 | 3,111,0,327,3, | ||
2454 | 112,0,327,3,113, | ||
2455 | 0,327,3,114,0, | ||
2456 | 410,12,1,22847,411, | ||
2457 | 5,63,3,109,0, | ||
2458 | 327,3,110,0,327, | ||
2459 | 3,111,0,327,3, | ||
2460 | 112,0,327,3,113, | ||
2461 | 0,327,3,114,0, | ||
2462 | 327,3,115,0,327, | ||
2463 | 3,116,0,327,3, | ||
2464 | 117,0,327,3,118, | ||
2465 | 0,327,3,119,0, | ||
2466 | 327,3,120,0,327, | ||
2467 | 3,121,0,327,3, | ||
2468 | 122,0,327,3,48, | ||
2469 | 0,327,3,49,0, | ||
2470 | 327,3,50,0,327, | ||
2471 | 3,51,0,327,3, | ||
2472 | 52,0,327,3,53, | ||
2473 | 0,327,3,54,0, | ||
2474 | 327,3,55,0,327, | ||
2475 | 3,56,0,327,3, | ||
2476 | 57,0,327,3,65, | ||
2477 | 0,327,3,66,0, | ||
2478 | 327,3,67,0,327, | ||
2479 | 3,68,0,327,3, | ||
2480 | 69,0,327,3,70, | ||
2481 | 0,327,3,71,0, | ||
2482 | 327,3,72,0,327, | ||
2483 | 3,73,0,327,3, | ||
2484 | 74,0,327,3,75, | ||
2485 | 0,327,3,76,0, | ||
2486 | 327,3,77,0,327, | ||
2487 | 3,78,0,327,3, | ||
2488 | 79,0,327,3,80, | ||
2489 | 0,327,3,81,0, | ||
2490 | 327,3,82,0,327, | ||
2491 | 3,83,0,327,3, | ||
2492 | 84,0,327,3,85, | ||
2493 | 0,327,3,86,0, | ||
2494 | 327,3,87,0,327, | ||
2495 | 3,88,0,327,3, | ||
2496 | 89,0,327,3,90, | ||
2497 | 0,327,3,95,0, | ||
2498 | 327,3,97,0,327, | ||
2499 | 3,98,0,327,3, | ||
2500 | 99,0,327,3,100, | ||
2501 | 0,327,3,101,0, | ||
2502 | 327,3,102,0,327, | ||
2503 | 3,103,0,412,12, | ||
2504 | 1,22896,413,5,63, | ||
2505 | 3,109,0,327,3, | ||
2506 | 110,0,327,3,111, | ||
2507 | 0,327,3,112,0, | ||
2508 | 327,3,113,0,327, | ||
2509 | 3,114,0,327,3, | ||
2510 | 115,0,327,3,116, | ||
2511 | 0,327,3,117,0, | ||
2512 | 327,3,118,0,327, | ||
2513 | 3,119,0,327,3, | ||
2514 | 120,0,327,3,121, | ||
2515 | 0,327,3,122,0, | ||
2516 | 327,3,48,0,327, | ||
2517 | 3,49,0,327,3, | ||
2518 | 50,0,327,3,51, | ||
2519 | 0,327,3,52,0, | ||
2520 | 327,3,53,0,327, | ||
2521 | 3,54,0,327,3, | ||
2522 | 55,0,327,3,56, | ||
2523 | 0,327,3,57,0, | ||
2524 | 327,3,65,0,327, | ||
2525 | 3,66,0,327,3, | ||
2526 | 67,0,327,3,68, | ||
2527 | 0,327,3,69,0, | ||
2528 | 327,3,70,0,327, | ||
2529 | 3,71,0,327,3, | ||
2530 | 72,0,327,3,73, | ||
2531 | 0,327,3,74,0, | ||
2532 | 327,3,75,0,327, | ||
2533 | 3,76,0,327,3, | ||
2534 | 77,0,327,3,78, | ||
2535 | 0,327,3,79,0, | ||
2536 | 327,3,80,0,327, | ||
2537 | 3,81,0,327,3, | ||
2538 | 82,0,327,3,83, | ||
2539 | 0,327,3,84,0, | ||
2540 | 327,3,85,0,327, | ||
2541 | 3,86,0,327,3, | ||
2542 | 87,0,327,3,88, | ||
2543 | 0,327,3,89,0, | ||
2544 | 327,3,90,0,327, | ||
2545 | 3,95,0,327,3, | ||
2546 | 97,0,327,3,98, | ||
2547 | 0,327,3,99,0, | ||
2548 | 327,3,100,0,327, | ||
2549 | 3,101,0,414,12, | ||
2550 | 1,22943,415,5,63, | ||
2551 | 3,109,0,327,3, | ||
2552 | 110,0,327,3,111, | ||
2553 | 0,327,3,112,0, | ||
2554 | 327,3,113,0,327, | ||
2555 | 3,114,0,327,3, | ||
2556 | 115,0,327,3,116, | ||
2557 | 0,416,12,1,22978, | ||
2558 | 417,5,63,3,109, | ||
2559 | 0,327,3,110,0, | ||
2560 | 327,3,111,0,327, | ||
2561 | 3,112,0,327,3, | ||
2562 | 113,0,327,3,114, | ||
2563 | 0,327,3,115,0, | ||
2564 | 327,3,116,0,327, | ||
2565 | 3,117,0,327,3, | ||
2566 | 118,0,327,3,119, | ||
2567 | 0,327,3,120,0, | ||
2568 | 327,3,121,0,327, | ||
2569 | 3,122,0,327,3, | ||
2570 | 48,0,327,3,49, | ||
2571 | 0,327,3,50,0, | ||
2572 | 327,3,51,0,327, | ||
2573 | 3,52,0,327,3, | ||
2574 | 53,0,327,3,54, | ||
2575 | 0,327,3,55,0, | ||
2576 | 327,3,56,0,327, | ||
2577 | 3,57,0,327,3, | ||
2578 | 65,0,327,3,66, | ||
2579 | 0,327,3,67,0, | ||
2580 | 327,3,68,0,327, | ||
2581 | 3,69,0,327,3, | ||
2582 | 70,0,327,3,71, | ||
2583 | 0,327,3,72,0, | ||
2584 | 327,3,73,0,327, | ||
2585 | 3,74,0,327,3, | ||
2586 | 75,0,327,3,76, | ||
2587 | 0,327,3,77,0, | ||
2588 | 327,3,78,0,327, | ||
2589 | 3,79,0,327,3, | ||
2590 | 80,0,327,3,81, | ||
2591 | 0,327,3,82,0, | ||
2592 | 327,3,83,0,327, | ||
2593 | 3,84,0,327,3, | ||
2594 | 85,0,327,3,86, | ||
2595 | 0,327,3,87,0, | ||
2596 | 327,3,88,0,327, | ||
2597 | 3,89,0,327,3, | ||
2598 | 90,0,327,3,95, | ||
2599 | 0,327,3,97,0, | ||
2600 | 327,3,98,0,327, | ||
2601 | 3,99,0,327,3, | ||
2602 | 100,0,327,3,101, | ||
2603 | 0,327,3,102,0, | ||
2604 | 327,3,103,0,327, | ||
2605 | 3,104,0,327,3, | ||
2606 | 105,0,327,3,106, | ||
2607 | 0,327,3,107,0, | ||
2608 | 327,3,108,0,327, | ||
2609 | 418,11,1,367,0, | ||
2610 | 419,4,30,65,0, | ||
2611 | 84,0,95,0,84, | ||
2612 | 0,65,0,82,0, | ||
2613 | 71,0,69,0,84, | ||
2614 | 0,95,0,69,0, | ||
2615 | 86,0,69,0,78, | ||
2616 | 0,84,0,1,-1, | ||
2617 | 3,117,0,327,3, | ||
2618 | 118,0,327,3,119, | ||
2619 | 0,327,3,120,0, | ||
2620 | 327,3,121,0,327, | ||
2621 | 3,122,0,327,3, | ||
2622 | 48,0,327,3,49, | ||
2623 | 0,327,3,50,0, | ||
2624 | 327,3,51,0,327, | ||
2625 | 3,52,0,327,3, | ||
2626 | 53,0,327,3,54, | ||
2627 | 0,327,3,55,0, | ||
2628 | 327,3,56,0,327, | ||
2629 | 3,57,0,327,3, | ||
2630 | 65,0,327,3,66, | ||
2631 | 0,327,3,67,0, | ||
2632 | 327,3,68,0,327, | ||
2633 | 3,69,0,327,3, | ||
2634 | 70,0,327,3,71, | ||
2635 | 0,327,3,72,0, | ||
2636 | 327,3,73,0,327, | ||
2637 | 3,74,0,327,3, | ||
2638 | 75,0,327,3,76, | ||
2639 | 0,327,3,77,0, | ||
2640 | 327,3,78,0,327, | ||
2641 | 3,79,0,327,3, | ||
2642 | 80,0,327,3,81, | ||
2643 | 0,327,3,82,0, | ||
2644 | 327,3,83,0,327, | ||
2645 | 3,84,0,327,3, | ||
2646 | 85,0,327,3,86, | ||
2647 | 0,327,3,87,0, | ||
2648 | 327,3,88,0,327, | ||
2649 | 3,89,0,327,3, | ||
2650 | 90,0,327,3,95, | ||
2651 | 0,327,3,97,0, | ||
2652 | 327,3,98,0,327, | ||
2653 | 3,99,0,327,3, | ||
2654 | 100,0,327,3,101, | ||
2655 | 0,327,3,102,0, | ||
2656 | 327,3,103,0,327, | ||
2657 | 3,104,0,327,3, | ||
2658 | 105,0,327,3,106, | ||
2659 | 0,327,3,107,0, | ||
2660 | 327,3,108,0,327, | ||
2661 | 420,11,1,829,0, | ||
2662 | 330,1,-1,3,102, | ||
2663 | 0,327,3,103,0, | ||
2664 | 327,3,104,0,327, | ||
2665 | 3,105,0,327,3, | ||
2666 | 106,0,327,3,107, | ||
2667 | 0,327,3,108,0, | ||
2668 | 327,421,11,1,829, | ||
2669 | 0,330,1,-1,3, | ||
2670 | 104,0,327,3,105, | ||
2671 | 0,327,3,106,0, | ||
2672 | 327,3,107,0,327, | ||
2673 | 3,108,0,327,422, | ||
2674 | 11,1,829,0,330, | ||
2675 | 1,-1,3,115,0, | ||
2676 | 327,3,116,0,327, | ||
2677 | 3,117,0,327,3, | ||
2678 | 118,0,327,3,119, | ||
2679 | 0,327,3,120,0, | ||
2680 | 327,3,121,0,327, | ||
2681 | 3,122,0,327,3, | ||
2682 | 48,0,327,3,49, | ||
2683 | 0,327,3,50,0, | ||
2684 | 327,3,51,0,327, | ||
2685 | 3,52,0,327,3, | ||
2686 | 53,0,327,3,54, | ||
2687 | 0,327,3,55,0, | ||
2688 | 327,3,56,0,327, | ||
2689 | 3,57,0,327,3, | ||
2690 | 65,0,327,3,66, | ||
2691 | 0,327,3,67,0, | ||
2692 | 327,3,68,0,327, | ||
2693 | 3,69,0,327,3, | ||
2694 | 70,0,327,3,71, | ||
2695 | 0,327,3,72,0, | ||
2696 | 327,3,73,0,327, | ||
2697 | 3,74,0,327,3, | ||
2698 | 75,0,327,3,76, | ||
2699 | 0,327,3,77,0, | ||
2700 | 327,3,78,0,327, | ||
2701 | 3,79,0,327,3, | ||
2702 | 80,0,327,3,81, | ||
2703 | 0,327,3,82,0, | ||
2704 | 327,3,83,0,327, | ||
2705 | 3,84,0,327,3, | ||
2706 | 85,0,327,3,86, | ||
2707 | 0,327,3,87,0, | ||
2708 | 327,3,88,0,327, | ||
2709 | 3,89,0,327,3, | ||
2710 | 90,0,327,3,95, | ||
2711 | 0,327,3,97,0, | ||
2712 | 327,3,98,0,327, | ||
2713 | 3,99,0,327,3, | ||
2714 | 100,0,327,3,101, | ||
2715 | 0,327,3,102,0, | ||
2716 | 327,3,103,0,327, | ||
2717 | 3,104,0,327,3, | ||
2718 | 105,0,327,3,106, | ||
2719 | 0,327,3,107,0, | ||
2720 | 327,3,108,0,327, | ||
2721 | 423,11,1,829,0, | ||
2722 | 330,1,-1,3,98, | ||
2723 | 0,327,3,99,0, | ||
2724 | 327,3,100,0,327, | ||
2725 | 3,101,0,327,3, | ||
2726 | 102,0,327,3,103, | ||
2727 | 0,327,3,104,0, | ||
2728 | 327,3,105,0,327, | ||
2729 | 3,106,0,327,3, | ||
2730 | 107,0,327,3,108, | ||
2731 | 0,327,424,11,1, | ||
2732 | 829,0,330,1,-1, | ||
2733 | 3,117,0,327,3, | ||
2734 | 118,0,327,3,119, | ||
2735 | 0,327,3,120,0, | ||
2736 | 327,3,121,0,327, | ||
2737 | 3,122,0,327,3, | ||
2738 | 48,0,327,3,49, | ||
2739 | 0,327,3,50,0, | ||
2740 | 327,3,51,0,327, | ||
2741 | 3,52,0,327,3, | ||
2742 | 53,0,327,3,54, | ||
2743 | 0,327,3,55,0, | ||
2744 | 327,3,56,0,327, | ||
2745 | 3,57,0,327,3, | ||
2746 | 65,0,327,3,66, | ||
2747 | 0,327,3,67,0, | ||
2748 | 327,3,68,0,327, | ||
2749 | 3,69,0,327,3, | ||
2750 | 70,0,327,3,71, | ||
2751 | 0,327,3,72,0, | ||
2752 | 327,3,73,0,327, | ||
2753 | 3,74,0,327,3, | ||
2754 | 75,0,327,3,76, | ||
2755 | 0,327,3,77,0, | ||
2756 | 327,3,78,0,327, | ||
2757 | 3,79,0,327,3, | ||
2758 | 80,0,327,3,81, | ||
2759 | 0,327,3,82,0, | ||
2760 | 327,3,83,0,327, | ||
2761 | 3,84,0,327,3, | ||
2762 | 85,0,327,3,86, | ||
2763 | 0,327,3,87,0, | ||
2764 | 327,3,88,0,327, | ||
2765 | 3,89,0,327,3, | ||
2766 | 90,0,327,3,95, | ||
2767 | 0,327,3,97,0, | ||
2768 | 327,3,98,0,327, | ||
2769 | 3,99,0,327,3, | ||
2770 | 100,0,327,3,101, | ||
2771 | 0,327,3,102,0, | ||
2772 | 327,3,103,0,327, | ||
2773 | 3,104,0,327,3, | ||
2774 | 105,0,327,3,106, | ||
2775 | 0,327,3,107,0, | ||
2776 | 327,3,108,0,327, | ||
2777 | 425,11,1,829,0, | ||
2778 | 330,1,-1,3,97, | ||
2779 | 0,327,3,98,0, | ||
2780 | 327,3,99,0,327, | ||
2781 | 3,100,0,327,3, | ||
2782 | 101,0,327,3,102, | ||
2783 | 0,327,3,103,0, | ||
2784 | 327,3,104,0,327, | ||
2785 | 3,105,0,327,3, | ||
2786 | 106,0,327,3,107, | ||
2787 | 0,327,3,108,0, | ||
2788 | 327,426,11,1,829, | ||
2789 | 0,330,1,-1,3, | ||
2790 | 117,0,327,3,118, | ||
2791 | 0,327,3,119,0, | ||
2792 | 327,3,120,0,327, | ||
2793 | 3,121,0,327,3, | ||
2794 | 122,0,327,3,48, | ||
2795 | 0,327,3,49,0, | ||
2796 | 327,3,50,0,327, | ||
2797 | 3,51,0,327,3, | ||
2798 | 52,0,327,3,53, | ||
2799 | 0,327,3,54,0, | ||
2800 | 327,3,55,0,327, | ||
2801 | 3,56,0,327,3, | ||
2802 | 57,0,327,3,65, | ||
2803 | 0,327,3,66,0, | ||
2804 | 327,3,67,0,327, | ||
2805 | 3,68,0,327,3, | ||
2806 | 69,0,327,3,70, | ||
2807 | 0,327,3,71,0, | ||
2808 | 327,3,72,0,327, | ||
2809 | 3,73,0,327,3, | ||
2810 | 74,0,327,3,75, | ||
2811 | 0,327,3,76,0, | ||
2812 | 327,3,77,0,327, | ||
2813 | 3,78,0,327,3, | ||
2814 | 79,0,327,3,80, | ||
2815 | 0,327,3,81,0, | ||
2816 | 327,3,82,0,327, | ||
2817 | 3,83,0,327,3, | ||
2818 | 84,0,327,3,85, | ||
2819 | 0,327,3,86,0, | ||
2820 | 327,3,87,0,327, | ||
2821 | 3,88,0,327,3, | ||
2822 | 89,0,327,3,90, | ||
2823 | 0,327,3,95,0, | ||
2824 | 327,3,97,0,327, | ||
2825 | 3,98,0,327,3, | ||
2826 | 99,0,327,3,100, | ||
2827 | 0,327,3,101,0, | ||
2828 | 327,3,102,0,327, | ||
2829 | 3,103,0,327,3, | ||
2830 | 104,0,327,3,105, | ||
2831 | 0,327,3,106,0, | ||
2832 | 327,3,107,0,327, | ||
2833 | 3,108,0,327,427, | ||
2834 | 11,1,829,0,330, | ||
2835 | 1,-1,3,98,0, | ||
2836 | 325,3,99,0,428, | ||
2837 | 12,1,23697,429,5, | ||
2838 | 63,3,109,0,327, | ||
2839 | 3,110,0,327,3, | ||
2840 | 111,0,430,12,1, | ||
2841 | 23727,431,5,63,3, | ||
2842 | 109,0,327,3,110, | ||
2843 | 0,432,12,1,23756, | ||
2844 | 433,5,63,3,109, | ||
2845 | 0,327,3,110,0, | ||
2846 | 327,3,111,0,327, | ||
2847 | 3,112,0,327,3, | ||
2848 | 113,0,327,3,114, | ||
2849 | 0,327,3,115,0, | ||
2850 | 327,3,116,0,434, | ||
2851 | 12,1,23791,435,5, | ||
2852 | 63,3,109,0,327, | ||
2853 | 3,110,0,327,3, | ||
2854 | 111,0,327,3,112, | ||
2855 | 0,327,3,113,0, | ||
2856 | 327,3,114,0,436, | ||
2857 | 12,1,23824,437,5, | ||
2858 | 63,3,109,0,327, | ||
2859 | 3,110,0,327,3, | ||
2860 | 111,0,438,12,1, | ||
2861 | 23854,439,5,63,3, | ||
2862 | 109,0,327,3,110, | ||
2863 | 0,327,3,111,0, | ||
2864 | 327,3,112,0,327, | ||
2865 | 3,113,0,327,3, | ||
2866 | 114,0,327,3,115, | ||
2867 | 0,327,3,116,0, | ||
2868 | 327,3,117,0,327, | ||
2869 | 3,118,0,327,3, | ||
2870 | 119,0,327,3,120, | ||
2871 | 0,327,3,121,0, | ||
2872 | 327,3,122,0,327, | ||
2873 | 3,48,0,327,3, | ||
2874 | 49,0,327,3,50, | ||
2875 | 0,327,3,51,0, | ||
2876 | 327,3,52,0,327, | ||
2877 | 3,53,0,327,3, | ||
2878 | 54,0,327,3,55, | ||
2879 | 0,327,3,56,0, | ||
2880 | 327,3,57,0,327, | ||
2881 | 3,65,0,327,3, | ||
2882 | 66,0,327,3,67, | ||
2883 | 0,327,3,68,0, | ||
2884 | 327,3,69,0,327, | ||
2885 | 3,70,0,327,3, | ||
2886 | 71,0,327,3,72, | ||
2887 | 0,327,3,73,0, | ||
2888 | 327,3,74,0,327, | ||
2889 | 3,75,0,327,3, | ||
2890 | 76,0,327,3,77, | ||
2891 | 0,327,3,78,0, | ||
2892 | 327,3,79,0,327, | ||
2893 | 3,80,0,327,3, | ||
2894 | 81,0,327,3,82, | ||
2895 | 0,327,3,83,0, | ||
2896 | 327,3,84,0,327, | ||
2897 | 3,85,0,327,3, | ||
2898 | 86,0,327,3,87, | ||
2899 | 0,327,3,88,0, | ||
2900 | 327,3,89,0,327, | ||
2901 | 3,90,0,327,3, | ||
2902 | 95,0,327,3,97, | ||
2903 | 0,327,3,98,0, | ||
2904 | 327,3,99,0,327, | ||
2905 | 3,100,0,327,3, | ||
2906 | 101,0,327,3,102, | ||
2907 | 0,327,3,103,0, | ||
2908 | 327,3,104,0,327, | ||
2909 | 3,105,0,327,3, | ||
2910 | 106,0,327,3,107, | ||
2911 | 0,327,3,108,0, | ||
2912 | 440,12,1,23908,441, | ||
2913 | 5,63,3,109,0, | ||
2914 | 327,3,110,0,327, | ||
2915 | 3,111,0,327,3, | ||
2916 | 112,0,327,3,113, | ||
2917 | 0,327,3,114,0, | ||
2918 | 327,3,115,0,327, | ||
2919 | 3,116,0,327,3, | ||
2920 | 117,0,327,3,118, | ||
2921 | 0,327,3,119,0, | ||
2922 | 327,3,120,0,327, | ||
2923 | 3,121,0,327,3, | ||
2924 | 122,0,327,3,48, | ||
2925 | 0,327,3,49,0, | ||
2926 | 327,3,50,0,327, | ||
2927 | 3,51,0,327,3, | ||
2928 | 52,0,327,3,53, | ||
2929 | 0,327,3,54,0, | ||
2930 | 327,3,55,0,327, | ||
2931 | 3,56,0,327,3, | ||
2932 | 57,0,327,3,65, | ||
2933 | 0,327,3,66,0, | ||
2934 | 327,3,67,0,327, | ||
2935 | 3,68,0,327,3, | ||
2936 | 69,0,327,3,70, | ||
2937 | 0,327,3,71,0, | ||
2938 | 327,3,72,0,327, | ||
2939 | 3,73,0,327,3, | ||
2940 | 74,0,327,3,75, | ||
2941 | 0,327,3,76,0, | ||
2942 | 327,3,77,0,327, | ||
2943 | 3,78,0,327,3, | ||
2944 | 79,0,327,3,80, | ||
2945 | 0,327,3,81,0, | ||
2946 | 327,3,82,0,327, | ||
2947 | 3,83,0,327,3, | ||
2948 | 84,0,327,3,85, | ||
2949 | 0,327,3,86,0, | ||
2950 | 327,3,87,0,327, | ||
2951 | 3,88,0,327,3, | ||
2952 | 89,0,327,3,90, | ||
2953 | 0,327,3,95,0, | ||
2954 | 327,3,97,0,327, | ||
2955 | 3,98,0,327,3, | ||
2956 | 99,0,327,3,100, | ||
2957 | 0,327,3,101,0, | ||
2958 | 327,3,102,0,327, | ||
2959 | 3,103,0,327,3, | ||
2960 | 104,0,327,3,105, | ||
2961 | 0,327,3,106,0, | ||
2962 | 327,3,107,0,327, | ||
2963 | 3,108,0,327,442, | ||
2964 | 11,1,450,0,443, | ||
2965 | 4,26,67,0,79, | ||
2966 | 0,78,0,84,0, | ||
2967 | 82,0,79,0,76, | ||
2968 | 0,95,0,69,0, | ||
2969 | 86,0,69,0,78, | ||
2970 | 0,84,0,1,-1, | ||
2971 | 444,11,1,829,0, | ||
2972 | 330,1,-1,3,112, | ||
2973 | 0,327,3,113,0, | ||
2974 | 327,3,114,0,327, | ||
2975 | 3,115,0,327,3, | ||
2976 | 116,0,327,3,117, | ||
2977 | 0,327,3,118,0, | ||
2978 | 327,3,119,0,327, | ||
2979 | 3,120,0,327,3, | ||
2980 | 121,0,327,3,122, | ||
2981 | 0,327,3,48,0, | ||
2982 | 327,3,49,0,327, | ||
2983 | 3,50,0,327,3, | ||
2984 | 51,0,327,3,52, | ||
2985 | 0,327,3,53,0, | ||
2986 | 327,3,54,0,327, | ||
2987 | 3,55,0,327,3, | ||
2988 | 56,0,327,3,57, | ||
2989 | 0,327,3,65,0, | ||
2990 | 327,3,66,0,327, | ||
2991 | 3,67,0,327,3, | ||
2992 | 68,0,327,3,69, | ||
2993 | 0,327,3,70,0, | ||
2994 | 327,3,71,0,327, | ||
2995 | 3,72,0,327,3, | ||
2996 | 73,0,327,3,74, | ||
2997 | 0,327,3,75,0, | ||
2998 | 327,3,76,0,327, | ||
2999 | 3,77,0,327,3, | ||
3000 | 78,0,327,3,79, | ||
3001 | 0,327,3,80,0, | ||
3002 | 327,3,81,0,327, | ||
3003 | 3,82,0,327,3, | ||
3004 | 83,0,327,3,84, | ||
3005 | 0,327,3,85,0, | ||
3006 | 327,3,86,0,327, | ||
3007 | 3,87,0,327,3, | ||
3008 | 88,0,327,3,89, | ||
3009 | 0,327,3,90,0, | ||
3010 | 327,3,95,0,327, | ||
3011 | 3,97,0,327,3, | ||
3012 | 98,0,327,3,99, | ||
3013 | 0,327,3,100,0, | ||
3014 | 327,3,101,0,327, | ||
3015 | 3,102,0,327,3, | ||
3016 | 103,0,327,3,104, | ||
3017 | 0,327,3,105,0, | ||
3018 | 327,3,106,0,327, | ||
3019 | 3,107,0,327,3, | ||
3020 | 108,0,327,445,11, | ||
3021 | 1,829,0,330,1, | ||
3022 | -1,3,115,0,327, | ||
3023 | 3,116,0,327,3, | ||
3024 | 117,0,327,3,118, | ||
3025 | 0,327,3,119,0, | ||
3026 | 327,3,120,0,327, | ||
3027 | 3,121,0,327,3, | ||
3028 | 122,0,327,3,48, | ||
3029 | 0,327,3,49,0, | ||
3030 | 327,3,50,0,327, | ||
3031 | 3,51,0,327,3, | ||
3032 | 52,0,327,3,53, | ||
3033 | 0,327,3,54,0, | ||
3034 | 327,3,55,0,327, | ||
3035 | 3,56,0,327,3, | ||
3036 | 57,0,327,3,65, | ||
3037 | 0,327,3,66,0, | ||
3038 | 327,3,67,0,327, | ||
3039 | 3,68,0,327,3, | ||
3040 | 69,0,327,3,70, | ||
3041 | 0,327,3,71,0, | ||
3042 | 327,3,72,0,327, | ||
3043 | 3,73,0,327,3, | ||
3044 | 74,0,327,3,75, | ||
3045 | 0,327,3,76,0, | ||
3046 | 327,3,77,0,327, | ||
3047 | 3,78,0,327,3, | ||
3048 | 79,0,327,3,80, | ||
3049 | 0,327,3,81,0, | ||
3050 | 327,3,82,0,327, | ||
3051 | 3,83,0,327,3, | ||
3052 | 84,0,327,3,85, | ||
3053 | 0,327,3,86,0, | ||
3054 | 327,3,87,0,327, | ||
3055 | 3,88,0,327,3, | ||
3056 | 89,0,327,3,90, | ||
3057 | 0,327,3,95,0, | ||
3058 | 327,3,97,0,327, | ||
3059 | 3,98,0,327,3, | ||
3060 | 99,0,327,3,100, | ||
3061 | 0,327,3,101,0, | ||
3062 | 327,3,102,0,327, | ||
3063 | 3,103,0,327,3, | ||
3064 | 104,0,327,3,105, | ||
3065 | 0,327,3,106,0, | ||
3066 | 327,3,107,0,327, | ||
3067 | 3,108,0,327,446, | ||
3068 | 11,1,829,0,330, | ||
3069 | 1,-1,3,117,0, | ||
3070 | 327,3,118,0,327, | ||
3071 | 3,119,0,327,3, | ||
3072 | 120,0,327,3,121, | ||
3073 | 0,327,3,122,0, | ||
3074 | 327,3,48,0,327, | ||
3075 | 3,49,0,327,3, | ||
3076 | 50,0,327,3,51, | ||
3077 | 0,327,3,52,0, | ||
3078 | 327,3,53,0,327, | ||
3079 | 3,54,0,327,3, | ||
3080 | 55,0,327,3,56, | ||
3081 | 0,327,3,57,0, | ||
3082 | 327,3,65,0,327, | ||
3083 | 3,66,0,327,3, | ||
3084 | 67,0,327,3,68, | ||
3085 | 0,327,3,69,0, | ||
3086 | 327,3,70,0,327, | ||
3087 | 3,71,0,327,3, | ||
3088 | 72,0,327,3,73, | ||
3089 | 0,327,3,74,0, | ||
3090 | 327,3,75,0,327, | ||
3091 | 3,76,0,327,3, | ||
3092 | 77,0,327,3,78, | ||
3093 | 0,327,3,79,0, | ||
3094 | 327,3,80,0,327, | ||
3095 | 3,81,0,327,3, | ||
3096 | 82,0,327,3,83, | ||
3097 | 0,327,3,84,0, | ||
3098 | 327,3,85,0,327, | ||
3099 | 3,86,0,327,3, | ||
3100 | 87,0,327,3,88, | ||
3101 | 0,327,3,89,0, | ||
3102 | 327,3,90,0,327, | ||
3103 | 3,95,0,327,3, | ||
3104 | 97,0,327,3,98, | ||
3105 | 0,327,3,99,0, | ||
3106 | 327,3,100,0,327, | ||
3107 | 3,101,0,327,3, | ||
3108 | 102,0,327,3,103, | ||
3109 | 0,327,3,104,0, | ||
3110 | 327,3,105,0,327, | ||
3111 | 3,106,0,327,3, | ||
3112 | 107,0,327,3,108, | ||
3113 | 0,327,447,11,1, | ||
3114 | 829,0,330,1,-1, | ||
3115 | 3,111,0,327,3, | ||
3116 | 112,0,327,3,113, | ||
3117 | 0,327,3,114,0, | ||
3118 | 327,3,115,0,327, | ||
3119 | 3,116,0,327,3, | ||
3120 | 117,0,327,3,118, | ||
3121 | 0,327,3,119,0, | ||
3122 | 327,3,120,0,327, | ||
3123 | 3,121,0,327,3, | ||
3124 | 122,0,327,3,48, | ||
3125 | 0,327,3,49,0, | ||
3126 | 327,3,50,0,327, | ||
3127 | 3,51,0,327,3, | ||
3128 | 52,0,327,3,53, | ||
3129 | 0,327,3,54,0, | ||
3130 | 327,3,55,0,327, | ||
3131 | 3,56,0,327,3, | ||
3132 | 57,0,327,3,65, | ||
3133 | 0,327,3,66,0, | ||
3134 | 327,3,67,0,327, | ||
3135 | 3,68,0,327,3, | ||
3136 | 69,0,327,3,70, | ||
3137 | 0,327,3,71,0, | ||
3138 | 327,3,72,0,327, | ||
3139 | 3,73,0,327,3, | ||
3140 | 74,0,327,3,75, | ||
3141 | 0,327,3,76,0, | ||
3142 | 327,3,77,0,327, | ||
3143 | 3,78,0,327,3, | ||
3144 | 79,0,327,3,80, | ||
3145 | 0,327,3,81,0, | ||
3146 | 327,3,82,0,327, | ||
3147 | 3,83,0,327,3, | ||
3148 | 84,0,327,3,85, | ||
3149 | 0,327,3,86,0, | ||
3150 | 327,3,87,0,327, | ||
3151 | 3,88,0,327,3, | ||
3152 | 89,0,327,3,90, | ||
3153 | 0,327,3,95,0, | ||
3154 | 327,3,97,0,327, | ||
3155 | 3,98,0,327,3, | ||
3156 | 99,0,327,3,100, | ||
3157 | 0,327,3,101,0, | ||
3158 | 327,3,102,0,327, | ||
3159 | 3,103,0,327,3, | ||
3160 | 104,0,327,3,105, | ||
3161 | 0,327,3,106,0, | ||
3162 | 327,3,107,0,327, | ||
3163 | 3,108,0,448,12, | ||
3164 | 1,24381,449,5,63, | ||
3165 | 3,109,0,327,3, | ||
3166 | 110,0,327,3,111, | ||
3167 | 0,327,3,112,0, | ||
3168 | 327,3,113,0,327, | ||
3169 | 3,114,0,327,3, | ||
3170 | 115,0,327,3,116, | ||
3171 | 0,327,3,117,0, | ||
3172 | 327,3,118,0,327, | ||
3173 | 3,119,0,327,3, | ||
3174 | 120,0,327,3,121, | ||
3175 | 0,327,3,122,0, | ||
3176 | 327,3,48,0,327, | ||
3177 | 3,49,0,327,3, | ||
3178 | 50,0,327,3,51, | ||
3179 | 0,327,3,52,0, | ||
3180 | 327,3,53,0,327, | ||
3181 | 3,54,0,327,3, | ||
3182 | 55,0,327,3,56, | ||
3183 | 0,327,3,57,0, | ||
3184 | 327,3,65,0,327, | ||
3185 | 3,66,0,327,3, | ||
3186 | 67,0,327,3,68, | ||
3187 | 0,327,3,69,0, | ||
3188 | 327,3,70,0,327, | ||
3189 | 3,71,0,327,3, | ||
3190 | 72,0,327,3,73, | ||
3191 | 0,327,3,74,0, | ||
3192 | 327,3,75,0,327, | ||
3193 | 3,76,0,327,3, | ||
3194 | 77,0,327,3,78, | ||
3195 | 0,327,3,79,0, | ||
3196 | 327,3,80,0,327, | ||
3197 | 3,81,0,327,3, | ||
3198 | 82,0,327,3,83, | ||
3199 | 0,327,3,84,0, | ||
3200 | 327,3,85,0,327, | ||
3201 | 3,86,0,327,3, | ||
3202 | 87,0,327,3,88, | ||
3203 | 0,327,3,89,0, | ||
3204 | 327,3,90,0,327, | ||
3205 | 3,95,0,327,3, | ||
3206 | 97,0,327,3,98, | ||
3207 | 0,327,3,99,0, | ||
3208 | 327,3,100,0,327, | ||
3209 | 3,101,0,327,3, | ||
3210 | 102,0,327,3,103, | ||
3211 | 0,327,3,104,0, | ||
3212 | 327,3,105,0,327, | ||
3213 | 3,106,0,327,3, | ||
3214 | 107,0,327,3,108, | ||
3215 | 0,450,12,1,24435, | ||
3216 | 451,5,63,3,109, | ||
3217 | 0,327,3,110,0, | ||
3218 | 327,3,111,0,327, | ||
3219 | 3,112,0,327,3, | ||
3220 | 113,0,327,3,114, | ||
3221 | 0,327,3,115,0, | ||
3222 | 327,3,116,0,327, | ||
3223 | 3,117,0,327,3, | ||
3224 | 118,0,327,3,119, | ||
3225 | 0,327,3,120,0, | ||
3226 | 327,3,121,0,327, | ||
3227 | 3,122,0,327,3, | ||
3228 | 48,0,327,3,49, | ||
3229 | 0,327,3,50,0, | ||
3230 | 327,3,51,0,327, | ||
3231 | 3,52,0,327,3, | ||
3232 | 53,0,327,3,54, | ||
3233 | 0,327,3,55,0, | ||
3234 | 327,3,56,0,327, | ||
3235 | 3,57,0,327,3, | ||
3236 | 65,0,327,3,66, | ||
3237 | 0,327,3,67,0, | ||
3238 | 327,3,68,0,327, | ||
3239 | 3,69,0,327,3, | ||
3240 | 70,0,327,3,71, | ||
3241 | 0,327,3,72,0, | ||
3242 | 327,3,73,0,327, | ||
3243 | 3,74,0,327,3, | ||
3244 | 75,0,327,3,76, | ||
3245 | 0,327,3,77,0, | ||
3246 | 327,3,78,0,327, | ||
3247 | 3,79,0,327,3, | ||
3248 | 80,0,327,3,81, | ||
3249 | 0,327,3,82,0, | ||
3250 | 327,3,83,0,327, | ||
3251 | 3,84,0,327,3, | ||
3252 | 85,0,327,3,86, | ||
3253 | 0,327,3,87,0, | ||
3254 | 327,3,88,0,327, | ||
3255 | 3,89,0,327,3, | ||
3256 | 90,0,327,3,95, | ||
3257 | 0,327,3,97,0, | ||
3258 | 327,3,98,0,327, | ||
3259 | 3,99,0,327,3, | ||
3260 | 100,0,327,3,101, | ||
3261 | 0,327,3,102,0, | ||
3262 | 327,3,103,0,327, | ||
3263 | 3,104,0,327,3, | ||
3264 | 105,0,452,12,1, | ||
3265 | 24486,453,5,63,3, | ||
3266 | 109,0,327,3,110, | ||
3267 | 0,327,3,111,0, | ||
3268 | 327,3,112,0,327, | ||
3269 | 3,113,0,327,3, | ||
3270 | 114,0,327,3,115, | ||
3271 | 0,454,12,1,24520, | ||
3272 | 455,5,63,3,109, | ||
3273 | 0,327,3,110,0, | ||
3274 | 327,3,111,0,327, | ||
3275 | 3,112,0,327,3, | ||
3276 | 113,0,327,3,114, | ||
3277 | 0,327,3,115,0, | ||
3278 | 327,3,116,0,327, | ||
3279 | 3,117,0,327,3, | ||
3280 | 118,0,327,3,119, | ||
3281 | 0,327,3,120,0, | ||
3282 | 327,3,121,0,327, | ||
3283 | 3,122,0,327,3, | ||
3284 | 48,0,327,3,49, | ||
3285 | 0,327,3,50,0, | ||
3286 | 327,3,51,0,327, | ||
3287 | 3,52,0,327,3, | ||
3288 | 53,0,327,3,54, | ||
3289 | 0,327,3,55,0, | ||
3290 | 327,3,56,0,327, | ||
3291 | 3,57,0,327,3, | ||
3292 | 65,0,327,3,66, | ||
3293 | 0,327,3,67,0, | ||
3294 | 327,3,68,0,327, | ||
3295 | 3,69,0,327,3, | ||
3296 | 70,0,327,3,71, | ||
3297 | 0,327,3,72,0, | ||
3298 | 327,3,73,0,327, | ||
3299 | 3,74,0,327,3, | ||
3300 | 75,0,327,3,76, | ||
3301 | 0,327,3,77,0, | ||
3302 | 327,3,78,0,327, | ||
3303 | 3,79,0,327,3, | ||
3304 | 80,0,327,3,81, | ||
3305 | 0,327,3,82,0, | ||
3306 | 327,3,83,0,327, | ||
3307 | 3,84,0,327,3, | ||
3308 | 85,0,327,3,86, | ||
3309 | 0,327,3,87,0, | ||
3310 | 327,3,88,0,327, | ||
3311 | 3,89,0,327,3, | ||
3312 | 90,0,327,3,95, | ||
3313 | 0,327,3,97,0, | ||
3314 | 327,3,98,0,327, | ||
3315 | 3,99,0,327,3, | ||
3316 | 100,0,327,3,101, | ||
3317 | 0,327,3,102,0, | ||
3318 | 327,3,103,0,327, | ||
3319 | 3,104,0,327,3, | ||
3320 | 105,0,456,12,1, | ||
3321 | 24571,457,5,63,3, | ||
3322 | 109,0,327,3,110, | ||
3323 | 0,327,3,111,0, | ||
3324 | 458,12,1,24601,459, | ||
3325 | 5,63,3,109,0, | ||
3326 | 327,3,110,0,460, | ||
3327 | 12,1,24630,461,5, | ||
3328 | 63,3,109,0,327, | ||
3329 | 3,110,0,327,3, | ||
3330 | 111,0,327,3,112, | ||
3331 | 0,327,3,113,0, | ||
3332 | 327,3,114,0,327, | ||
3333 | 3,115,0,327,3, | ||
3334 | 116,0,327,3,117, | ||
3335 | 0,327,3,118,0, | ||
3336 | 327,3,119,0,327, | ||
3337 | 3,120,0,327,3, | ||
3338 | 121,0,327,3,122, | ||
3339 | 0,327,3,48,0, | ||
3340 | 327,3,49,0,327, | ||
3341 | 3,50,0,327,3, | ||
3342 | 51,0,327,3,52, | ||
3343 | 0,327,3,53,0, | ||
3344 | 327,3,54,0,327, | ||
3345 | 3,55,0,327,3, | ||
3346 | 56,0,327,3,57, | ||
3347 | 0,327,3,65,0, | ||
3348 | 327,3,66,0,327, | ||
3349 | 3,67,0,327,3, | ||
3350 | 68,0,327,3,69, | ||
3351 | 0,327,3,70,0, | ||
3352 | 327,3,71,0,327, | ||
3353 | 3,72,0,327,3, | ||
3354 | 73,0,327,3,74, | ||
3355 | 0,327,3,75,0, | ||
3356 | 327,3,76,0,327, | ||
3357 | 3,77,0,327,3, | ||
3358 | 78,0,327,3,79, | ||
3359 | 0,327,3,80,0, | ||
3360 | 327,3,81,0,327, | ||
3361 | 3,82,0,327,3, | ||
3362 | 83,0,327,3,84, | ||
3363 | 0,327,3,85,0, | ||
3364 | 327,3,86,0,327, | ||
3365 | 3,87,0,327,3, | ||
3366 | 88,0,327,3,89, | ||
3367 | 0,327,3,90,0, | ||
3368 | 327,3,95,0,462, | ||
3369 | 12,1,24716,463,5, | ||
3370 | 63,3,109,0,327, | ||
3371 | 3,110,0,327,3, | ||
3372 | 111,0,327,3,112, | ||
3373 | 0,327,3,113,0, | ||
3374 | 327,3,114,0,327, | ||
3375 | 3,115,0,464,12, | ||
3376 | 1,24750,465,5,63, | ||
3377 | 3,109,0,327,3, | ||
3378 | 110,0,327,3,111, | ||
3379 | 0,327,3,112,0, | ||
3380 | 327,3,113,0,327, | ||
3381 | 3,114,0,327,3, | ||
3382 | 115,0,327,3,116, | ||
3383 | 0,466,12,1,24785, | ||
3384 | 467,5,63,3,109, | ||
3385 | 0,327,3,110,0, | ||
3386 | 327,3,111,0,327, | ||
3387 | 3,112,0,327,3, | ||
3388 | 113,0,327,3,114, | ||
3389 | 0,327,3,115,0, | ||
3390 | 327,3,116,0,327, | ||
3391 | 3,117,0,327,3, | ||
3392 | 118,0,327,3,119, | ||
3393 | 0,327,3,120,0, | ||
3394 | 327,3,121,0,327, | ||
3395 | 3,122,0,327,3, | ||
3396 | 48,0,327,3,49, | ||
3397 | 0,327,3,50,0, | ||
3398 | 327,3,51,0,327, | ||
3399 | 3,52,0,327,3, | ||
3400 | 53,0,327,3,54, | ||
3401 | 0,327,3,55,0, | ||
3402 | 327,3,56,0,327, | ||
3403 | 3,57,0,327,3, | ||
3404 | 65,0,327,3,66, | ||
3405 | 0,327,3,67,0, | ||
3406 | 327,3,68,0,327, | ||
3407 | 3,69,0,327,3, | ||
3408 | 70,0,327,3,71, | ||
3409 | 0,327,3,72,0, | ||
3410 | 327,3,73,0,327, | ||
3411 | 3,74,0,327,3, | ||
3412 | 75,0,327,3,76, | ||
3413 | 0,327,3,77,0, | ||
3414 | 327,3,78,0,327, | ||
3415 | 3,79,0,327,3, | ||
3416 | 80,0,327,3,81, | ||
3417 | 0,327,3,82,0, | ||
3418 | 327,3,83,0,327, | ||
3419 | 3,84,0,327,3, | ||
3420 | 85,0,327,3,86, | ||
3421 | 0,327,3,87,0, | ||
3422 | 327,3,88,0,327, | ||
3423 | 3,89,0,327,3, | ||
3424 | 90,0,327,3,95, | ||
3425 | 0,327,3,97,0, | ||
3426 | 468,12,1,24828,469, | ||
3427 | 5,63,3,109,0, | ||
3428 | 327,3,110,0,327, | ||
3429 | 3,111,0,327,3, | ||
3430 | 112,0,327,3,113, | ||
3431 | 0,327,3,114,0, | ||
3432 | 470,12,1,24861,471, | ||
3433 | 5,63,3,109,0, | ||
3434 | 327,3,110,0,327, | ||
3435 | 3,111,0,327,3, | ||
3436 | 112,0,327,3,113, | ||
3437 | 0,327,3,114,0, | ||
3438 | 327,3,115,0,327, | ||
3439 | 3,116,0,472,12, | ||
3440 | 1,24896,473,5,63, | ||
3441 | 3,109,0,327,3, | ||
3442 | 110,0,327,3,111, | ||
3443 | 0,327,3,112,0, | ||
3444 | 327,3,113,0,327, | ||
3445 | 3,114,0,327,3, | ||
3446 | 115,0,327,3,116, | ||
3447 | 0,327,3,117,0, | ||
3448 | 327,3,118,0,327, | ||
3449 | 3,119,0,327,3, | ||
3450 | 120,0,327,3,121, | ||
3451 | 0,327,3,122,0, | ||
3452 | 327,3,48,0,327, | ||
3453 | 3,49,0,327,3, | ||
3454 | 50,0,327,3,51, | ||
3455 | 0,327,3,52,0, | ||
3456 | 327,3,53,0,327, | ||
3457 | 3,54,0,327,3, | ||
3458 | 55,0,327,3,56, | ||
3459 | 0,327,3,57,0, | ||
3460 | 327,3,65,0,327, | ||
3461 | 3,66,0,327,3, | ||
3462 | 67,0,327,3,68, | ||
3463 | 0,327,3,69,0, | ||
3464 | 327,3,70,0,327, | ||
3465 | 3,71,0,327,3, | ||
3466 | 72,0,327,3,73, | ||
3467 | 0,327,3,74,0, | ||
3468 | 327,3,75,0,327, | ||
3469 | 3,76,0,327,3, | ||
3470 | 77,0,327,3,78, | ||
3471 | 0,327,3,79,0, | ||
3472 | 327,3,80,0,327, | ||
3473 | 3,81,0,327,3, | ||
3474 | 82,0,327,3,83, | ||
3475 | 0,327,3,84,0, | ||
3476 | 327,3,85,0,327, | ||
3477 | 3,86,0,327,3, | ||
3478 | 87,0,327,3,88, | ||
3479 | 0,327,3,89,0, | ||
3480 | 327,3,90,0,327, | ||
3481 | 3,95,0,327,3, | ||
3482 | 97,0,327,3,98, | ||
3483 | 0,327,3,99,0, | ||
3484 | 327,3,100,0,327, | ||
3485 | 3,101,0,327,3, | ||
3486 | 102,0,327,3,103, | ||
3487 | 0,327,3,104,0, | ||
3488 | 327,3,105,0,327, | ||
3489 | 3,106,0,327,3, | ||
3490 | 107,0,327,3,108, | ||
3491 | 0,327,474,11,1, | ||
3492 | 431,0,475,4,42, | ||
3493 | 67,0,79,0,76, | ||
3494 | 0,76,0,73,0, | ||
3495 | 83,0,73,0,79, | ||
3496 | 0,78,0,95,0, | ||
3497 | 83,0,84,0,65, | ||
3498 | 0,82,0,84,0, | ||
3499 | 95,0,69,0,86, | ||
3500 | 0,69,0,78,0, | ||
3501 | 84,0,1,-1,3, | ||
3502 | 117,0,327,3,118, | ||
3503 | 0,327,3,119,0, | ||
3504 | 327,3,120,0,327, | ||
3505 | 3,121,0,327,3, | ||
3506 | 122,0,327,3,48, | ||
3507 | 0,327,3,49,0, | ||
3508 | 327,3,50,0,327, | ||
3509 | 3,51,0,327,3, | ||
3510 | 52,0,327,3,53, | ||
3511 | 0,327,3,54,0, | ||
3512 | 327,3,55,0,327, | ||
3513 | 3,56,0,327,3, | ||
3514 | 57,0,327,3,65, | ||
3515 | 0,327,3,66,0, | ||
3516 | 327,3,67,0,327, | ||
3517 | 3,68,0,327,3, | ||
3518 | 69,0,327,3,70, | ||
3519 | 0,327,3,71,0, | ||
3520 | 327,3,72,0,327, | ||
3521 | 3,73,0,327,3, | ||
3522 | 74,0,327,3,75, | ||
3523 | 0,327,3,76,0, | ||
3524 | 327,3,77,0,327, | ||
3525 | 3,78,0,327,3, | ||
3526 | 79,0,327,3,80, | ||
3527 | 0,327,3,81,0, | ||
3528 | 327,3,82,0,327, | ||
3529 | 3,83,0,327,3, | ||
3530 | 84,0,327,3,85, | ||
3531 | 0,327,3,86,0, | ||
3532 | 327,3,87,0,327, | ||
3533 | 3,88,0,327,3, | ||
3534 | 89,0,327,3,90, | ||
3535 | 0,327,3,95,0, | ||
3536 | 327,3,97,0,327, | ||
3537 | 3,98,0,327,3, | ||
3538 | 99,0,327,3,100, | ||
3539 | 0,327,3,101,0, | ||
3540 | 327,3,102,0,327, | ||
3541 | 3,103,0,327,3, | ||
3542 | 104,0,327,3,105, | ||
3543 | 0,327,3,106,0, | ||
3544 | 327,3,107,0,327, | ||
3545 | 3,108,0,327,476, | ||
3546 | 11,1,829,0,330, | ||
3547 | 1,-1,3,115,0, | ||
3548 | 327,3,116,0,327, | ||
3549 | 3,117,0,327,3, | ||
3550 | 118,0,327,3,119, | ||
3551 | 0,327,3,120,0, | ||
3552 | 327,3,121,0,327, | ||
3553 | 3,122,0,327,3, | ||
3554 | 48,0,327,3,49, | ||
3555 | 0,327,3,50,0, | ||
3556 | 327,3,51,0,327, | ||
3557 | 3,52,0,327,3, | ||
3558 | 53,0,327,3,54, | ||
3559 | 0,327,3,55,0, | ||
3560 | 327,3,56,0,327, | ||
3561 | 3,57,0,327,3, | ||
3562 | 65,0,327,3,66, | ||
3563 | 0,327,3,67,0, | ||
3564 | 327,3,68,0,327, | ||
3565 | 3,69,0,327,3, | ||
3566 | 70,0,327,3,71, | ||
3567 | 0,327,3,72,0, | ||
3568 | 327,3,73,0,327, | ||
3569 | 3,74,0,327,3, | ||
3570 | 75,0,327,3,76, | ||
3571 | 0,327,3,77,0, | ||
3572 | 327,3,78,0,327, | ||
3573 | 3,79,0,327,3, | ||
3574 | 80,0,327,3,81, | ||
3575 | 0,327,3,82,0, | ||
3576 | 327,3,83,0,327, | ||
3577 | 3,84,0,327,3, | ||
3578 | 85,0,327,3,86, | ||
3579 | 0,327,3,87,0, | ||
3580 | 327,3,88,0,327, | ||
3581 | 3,89,0,327,3, | ||
3582 | 90,0,327,3,95, | ||
3583 | 0,327,3,97,0, | ||
3584 | 327,3,98,0,327, | ||
3585 | 3,99,0,327,3, | ||
3586 | 100,0,327,3,101, | ||
3587 | 0,327,3,102,0, | ||
3588 | 327,3,103,0,327, | ||
3589 | 3,104,0,327,3, | ||
3590 | 105,0,327,3,106, | ||
3591 | 0,327,3,107,0, | ||
3592 | 327,3,108,0,327, | ||
3593 | 477,11,1,829,0, | ||
3594 | 330,1,-1,3,98, | ||
3595 | 0,327,3,99,0, | ||
3596 | 327,3,100,0,327, | ||
3597 | 3,101,0,327,3, | ||
3598 | 102,0,327,3,103, | ||
3599 | 0,327,3,104,0, | ||
3600 | 327,3,105,0,327, | ||
3601 | 3,106,0,327,3, | ||
3602 | 107,0,327,3,108, | ||
3603 | 0,327,478,11,1, | ||
3604 | 829,0,330,1,-1, | ||
3605 | 3,117,0,327,3, | ||
3606 | 118,0,327,3,119, | ||
3607 | 0,327,3,120,0, | ||
3608 | 327,3,121,0,327, | ||
3609 | 3,122,0,327,3, | ||
3610 | 48,0,327,3,49, | ||
3611 | 0,327,3,50,0, | ||
3612 | 327,3,51,0,327, | ||
3613 | 3,52,0,327,3, | ||
3614 | 53,0,327,3,54, | ||
3615 | 0,327,3,55,0, | ||
3616 | 327,3,56,0,327, | ||
3617 | 3,57,0,327,3, | ||
3618 | 65,0,327,3,66, | ||
3619 | 0,327,3,67,0, | ||
3620 | 327,3,68,0,327, | ||
3621 | 3,69,0,327,3, | ||
3622 | 70,0,327,3,71, | ||
3623 | 0,327,3,72,0, | ||
3624 | 327,3,73,0,327, | ||
3625 | 3,74,0,327,3, | ||
3626 | 75,0,327,3,76, | ||
3627 | 0,327,3,77,0, | ||
3628 | 327,3,78,0,327, | ||
3629 | 3,79,0,327,3, | ||
3630 | 80,0,327,3,81, | ||
3631 | 0,327,3,82,0, | ||
3632 | 327,3,83,0,327, | ||
3633 | 3,84,0,327,3, | ||
3634 | 85,0,327,3,86, | ||
3635 | 0,327,3,87,0, | ||
3636 | 327,3,88,0,327, | ||
3637 | 3,89,0,327,3, | ||
3638 | 90,0,327,3,95, | ||
3639 | 0,327,3,97,0, | ||
3640 | 327,3,98,0,327, | ||
3641 | 3,99,0,327,3, | ||
3642 | 100,0,327,3,101, | ||
3643 | 0,327,3,102,0, | ||
3644 | 327,3,103,0,327, | ||
3645 | 3,104,0,327,3, | ||
3646 | 105,0,327,3,106, | ||
3647 | 0,327,3,107,0, | ||
3648 | 327,3,108,0,327, | ||
3649 | 479,11,1,829,0, | ||
3650 | 330,1,-1,3,116, | ||
3651 | 0,327,3,117,0, | ||
3652 | 327,3,118,0,327, | ||
3653 | 3,119,0,327,3, | ||
3654 | 120,0,327,3,121, | ||
3655 | 0,327,3,122,0, | ||
3656 | 327,3,48,0,327, | ||
3657 | 3,49,0,327,3, | ||
3658 | 50,0,327,3,51, | ||
3659 | 0,327,3,52,0, | ||
3660 | 327,3,53,0,327, | ||
3661 | 3,54,0,327,3, | ||
3662 | 55,0,327,3,56, | ||
3663 | 0,327,3,57,0, | ||
3664 | 327,3,65,0,327, | ||
3665 | 3,66,0,327,3, | ||
3666 | 67,0,327,3,68, | ||
3667 | 0,327,3,69,0, | ||
3668 | 327,3,70,0,327, | ||
3669 | 3,71,0,327,3, | ||
3670 | 72,0,327,3,73, | ||
3671 | 0,327,3,74,0, | ||
3672 | 327,3,75,0,327, | ||
3673 | 3,76,0,327,3, | ||
3674 | 77,0,327,3,78, | ||
3675 | 0,327,3,79,0, | ||
3676 | 327,3,80,0,327, | ||
3677 | 3,81,0,327,3, | ||
3678 | 82,0,327,3,83, | ||
3679 | 0,327,3,84,0, | ||
3680 | 327,3,85,0,327, | ||
3681 | 3,86,0,327,3, | ||
3682 | 87,0,327,3,88, | ||
3683 | 0,327,3,89,0, | ||
3684 | 327,3,90,0,327, | ||
3685 | 3,95,0,327,3, | ||
3686 | 97,0,327,3,98, | ||
3687 | 0,327,3,99,0, | ||
3688 | 327,3,100,0,327, | ||
3689 | 3,101,0,480,12, | ||
3690 | 1,25363,481,5,63, | ||
3691 | 3,109,0,327,3, | ||
3692 | 110,0,482,12,1, | ||
3693 | 25392,483,5,63,3, | ||
3694 | 109,0,327,3,110, | ||
3695 | 0,327,3,111,0, | ||
3696 | 327,3,112,0,327, | ||
3697 | 3,113,0,327,3, | ||
3698 | 114,0,327,3,115, | ||
3699 | 0,327,3,116,0, | ||
3700 | 327,3,117,0,327, | ||
3701 | 3,118,0,327,3, | ||
3702 | 119,0,327,3,120, | ||
3703 | 0,327,3,121,0, | ||
3704 | 327,3,122,0,327, | ||
3705 | 3,48,0,327,3, | ||
3706 | 49,0,327,3,50, | ||
3707 | 0,327,3,51,0, | ||
3708 | 327,3,52,0,327, | ||
3709 | 3,53,0,327,3, | ||
3710 | 54,0,327,3,55, | ||
3711 | 0,327,3,56,0, | ||
3712 | 327,3,57,0,327, | ||
3713 | 3,65,0,327,3, | ||
3714 | 66,0,327,3,67, | ||
3715 | 0,327,3,68,0, | ||
3716 | 327,3,69,0,327, | ||
3717 | 3,70,0,327,3, | ||
3718 | 71,0,327,3,72, | ||
3719 | 0,327,3,73,0, | ||
3720 | 327,3,74,0,327, | ||
3721 | 3,75,0,327,3, | ||
3722 | 76,0,327,3,77, | ||
3723 | 0,327,3,78,0, | ||
3724 | 327,3,79,0,327, | ||
3725 | 3,80,0,327,3, | ||
3726 | 81,0,327,3,82, | ||
3727 | 0,327,3,83,0, | ||
3728 | 327,3,84,0,327, | ||
3729 | 3,85,0,327,3, | ||
3730 | 86,0,327,3,87, | ||
3731 | 0,327,3,88,0, | ||
3732 | 327,3,89,0,327, | ||
3733 | 3,90,0,327,3, | ||
3734 | 95,0,327,3,97, | ||
3735 | 0,327,3,98,0, | ||
3736 | 327,3,99,0,327, | ||
3737 | 3,100,0,484,12, | ||
3738 | 1,25438,485,5,63, | ||
3739 | 3,109,0,327,3, | ||
3740 | 110,0,327,3,111, | ||
3741 | 0,327,3,112,0, | ||
3742 | 327,3,113,0,327, | ||
3743 | 3,114,0,327,3, | ||
3744 | 115,0,327,3,116, | ||
3745 | 0,327,3,117,0, | ||
3746 | 327,3,118,0,327, | ||
3747 | 3,119,0,327,3, | ||
3748 | 120,0,327,3,121, | ||
3749 | 0,327,3,122,0, | ||
3750 | 327,3,48,0,327, | ||
3751 | 3,49,0,327,3, | ||
3752 | 50,0,327,3,51, | ||
3753 | 0,327,3,52,0, | ||
3754 | 327,3,53,0,327, | ||
3755 | 3,54,0,327,3, | ||
3756 | 55,0,327,3,56, | ||
3757 | 0,327,3,57,0, | ||
3758 | 327,3,65,0,327, | ||
3759 | 3,66,0,327,3, | ||
3760 | 67,0,327,3,68, | ||
3761 | 0,327,3,69,0, | ||
3762 | 327,3,70,0,327, | ||
3763 | 3,71,0,327,3, | ||
3764 | 72,0,327,3,73, | ||
3765 | 0,327,3,74,0, | ||
3766 | 327,3,75,0,327, | ||
3767 | 3,76,0,327,3, | ||
3768 | 77,0,327,3,78, | ||
3769 | 0,327,3,79,0, | ||
3770 | 327,3,80,0,327, | ||
3771 | 3,81,0,327,3, | ||
3772 | 82,0,327,3,83, | ||
3773 | 0,327,3,84,0, | ||
3774 | 327,3,85,0,327, | ||
3775 | 3,86,0,327,3, | ||
3776 | 87,0,327,3,88, | ||
3777 | 0,327,3,89,0, | ||
3778 | 327,3,90,0,327, | ||
3779 | 3,95,0,327,3, | ||
3780 | 97,0,327,3,98, | ||
3781 | 0,327,3,99,0, | ||
3782 | 327,3,100,0,327, | ||
3783 | 3,101,0,327,3, | ||
3784 | 102,0,327,3,103, | ||
3785 | 0,327,3,104,0, | ||
3786 | 327,3,105,0,327, | ||
3787 | 3,106,0,327,3, | ||
3788 | 107,0,327,3,108, | ||
3789 | 0,327,486,11,1, | ||
3790 | 414,0,487,4,38, | ||
3791 | 67,0,79,0,76, | ||
3792 | 0,76,0,73,0, | ||
3793 | 83,0,73,0,79, | ||
3794 | 0,78,0,95,0, | ||
3795 | 69,0,78,0,68, | ||
3796 | 0,95,0,69,0, | ||
3797 | 86,0,69,0,78, | ||
3798 | 0,84,0,1,-1, | ||
3799 | 3,101,0,327,3, | ||
3800 | 102,0,327,3,103, | ||
3801 | 0,327,3,104,0, | ||
3802 | 327,3,105,0,327, | ||
3803 | 3,106,0,327,3, | ||
3804 | 107,0,327,3,108, | ||
3805 | 0,327,488,11,1, | ||
3806 | 829,0,330,1,-1, | ||
3807 | 3,111,0,327,3, | ||
3808 | 112,0,327,3,113, | ||
3809 | 0,327,3,114,0, | ||
3810 | 327,3,115,0,327, | ||
3811 | 3,116,0,327,3, | ||
3812 | 117,0,327,3,118, | ||
3813 | 0,327,3,119,0, | ||
3814 | 327,3,120,0,327, | ||
3815 | 3,121,0,327,3, | ||
3816 | 122,0,327,3,48, | ||
3817 | 0,327,3,49,0, | ||
3818 | 327,3,50,0,327, | ||
3819 | 3,51,0,327,3, | ||
3820 | 52,0,327,3,53, | ||
3821 | 0,327,3,54,0, | ||
3822 | 327,3,55,0,327, | ||
3823 | 3,56,0,327,3, | ||
3824 | 57,0,327,3,65, | ||
3825 | 0,327,3,66,0, | ||
3826 | 327,3,67,0,327, | ||
3827 | 3,68,0,327,3, | ||
3828 | 69,0,327,3,70, | ||
3829 | 0,327,3,71,0, | ||
3830 | 327,3,72,0,327, | ||
3831 | 3,73,0,327,3, | ||
3832 | 74,0,327,3,75, | ||
3833 | 0,327,3,76,0, | ||
3834 | 327,3,77,0,327, | ||
3835 | 3,78,0,327,3, | ||
3836 | 79,0,327,3,80, | ||
3837 | 0,327,3,81,0, | ||
3838 | 327,3,82,0,327, | ||
3839 | 3,83,0,327,3, | ||
3840 | 84,0,327,3,85, | ||
3841 | 0,327,3,86,0, | ||
3842 | 327,3,87,0,327, | ||
3843 | 3,88,0,327,3, | ||
3844 | 89,0,327,3,90, | ||
3845 | 0,327,3,95,0, | ||
3846 | 327,3,97,0,327, | ||
3847 | 3,98,0,327,3, | ||
3848 | 99,0,327,3,100, | ||
3849 | 0,327,3,101,0, | ||
3850 | 327,3,102,0,327, | ||
3851 | 3,103,0,327,3, | ||
3852 | 104,0,327,3,105, | ||
3853 | 0,327,3,106,0, | ||
3854 | 327,3,107,0,327, | ||
3855 | 3,108,0,327,489, | ||
3856 | 11,1,829,0,330, | ||
3857 | 1,-1,3,102,0, | ||
3858 | 327,3,103,0,327, | ||
3859 | 3,104,0,327,3, | ||
3860 | 105,0,327,3,106, | ||
3861 | 0,327,3,107,0, | ||
3862 | 327,3,108,0,327, | ||
3863 | 490,11,1,829,0, | ||
3864 | 330,1,-1,3,97, | ||
3865 | 0,327,3,98,0, | ||
3866 | 327,3,99,0,327, | ||
3867 | 3,100,0,327,3, | ||
3868 | 101,0,327,3,102, | ||
3869 | 0,327,3,103,0, | ||
3870 | 327,3,104,0,327, | ||
3871 | 3,105,0,327,3, | ||
3872 | 106,0,327,3,107, | ||
3873 | 0,327,3,108,0, | ||
3874 | 327,491,11,1,401, | ||
3875 | 0,492,4,30,67, | ||
3876 | 0,79,0,76,0, | ||
3877 | 76,0,73,0,83, | ||
3878 | 0,73,0,79,0, | ||
3879 | 78,0,95,0,69, | ||
3880 | 0,86,0,69,0, | ||
3881 | 78,0,84,0,1, | ||
3882 | -1,3,111,0,327, | ||
3883 | 3,112,0,327,3, | ||
3884 | 113,0,327,3,114, | ||
3885 | 0,327,3,115,0, | ||
3886 | 327,3,116,0,327, | ||
3887 | 3,117,0,327,3, | ||
3888 | 118,0,327,3,119, | ||
3889 | 0,327,3,120,0, | ||
3890 | 327,3,121,0,327, | ||
3891 | 3,122,0,327,3, | ||
3892 | 48,0,327,3,49, | ||
3893 | 0,327,3,50,0, | ||
3894 | 327,3,51,0,327, | ||
3895 | 3,52,0,327,3, | ||
3896 | 53,0,327,3,54, | ||
3897 | 0,327,3,55,0, | ||
3898 | 327,3,56,0,327, | ||
3899 | 3,57,0,327,3, | ||
3900 | 65,0,327,3,66, | ||
3901 | 0,327,3,67,0, | ||
3902 | 327,3,68,0,327, | ||
3903 | 3,69,0,327,3, | ||
3904 | 70,0,327,3,71, | ||
3905 | 0,327,3,72,0, | ||
3906 | 327,3,73,0,327, | ||
3907 | 3,74,0,327,3, | ||
3908 | 75,0,327,3,76, | ||
3909 | 0,327,3,77,0, | ||
3910 | 327,3,78,0,327, | ||
3911 | 3,79,0,327,3, | ||
3912 | 80,0,327,3,81, | ||
3913 | 0,327,3,82,0, | ||
3914 | 327,3,83,0,327, | ||
3915 | 3,84,0,327,3, | ||
3916 | 85,0,327,3,86, | ||
3917 | 0,327,3,87,0, | ||
3918 | 327,3,88,0,327, | ||
3919 | 3,89,0,327,3, | ||
3920 | 90,0,327,3,95, | ||
3921 | 0,327,3,97,0, | ||
3922 | 327,3,98,0,327, | ||
3923 | 3,99,0,327,3, | ||
3924 | 100,0,327,3,101, | ||
3925 | 0,327,3,102,0, | ||
3926 | 327,3,103,0,327, | ||
3927 | 3,104,0,327,3, | ||
3928 | 105,0,327,3,106, | ||
3929 | 0,327,3,107,0, | ||
3930 | 327,3,108,0,327, | ||
3931 | 493,11,1,829,0, | ||
3932 | 330,1,-1,3,112, | ||
3933 | 0,327,3,113,0, | ||
3934 | 327,3,114,0,327, | ||
3935 | 3,115,0,327,3, | ||
3936 | 116,0,327,3,117, | ||
3937 | 0,327,3,118,0, | ||
3938 | 327,3,119,0,327, | ||
3939 | 3,120,0,327,3, | ||
3940 | 121,0,327,3,122, | ||
3941 | 0,327,3,48,0, | ||
3942 | 327,3,49,0,327, | ||
3943 | 3,50,0,327,3, | ||
3944 | 51,0,327,3,52, | ||
3945 | 0,327,3,53,0, | ||
3946 | 327,3,54,0,327, | ||
3947 | 3,55,0,327,3, | ||
3948 | 56,0,327,3,57, | ||
3949 | 0,327,3,65,0, | ||
3950 | 327,3,66,0,327, | ||
3951 | 3,67,0,327,3, | ||
3952 | 68,0,327,3,69, | ||
3953 | 0,327,3,70,0, | ||
3954 | 327,3,71,0,327, | ||
3955 | 3,72,0,327,3, | ||
3956 | 73,0,327,3,74, | ||
3957 | 0,327,3,75,0, | ||
3958 | 327,3,76,0,327, | ||
3959 | 3,77,0,327,3, | ||
3960 | 78,0,327,3,79, | ||
3961 | 0,327,3,80,0, | ||
3962 | 327,3,81,0,327, | ||
3963 | 3,82,0,327,3, | ||
3964 | 83,0,327,3,84, | ||
3965 | 0,327,3,85,0, | ||
3966 | 327,3,86,0,327, | ||
3967 | 3,87,0,327,3, | ||
3968 | 88,0,327,3,89, | ||
3969 | 0,327,3,90,0, | ||
3970 | 327,3,95,0,327, | ||
3971 | 3,97,0,327,3, | ||
3972 | 98,0,327,3,99, | ||
3973 | 0,327,3,100,0, | ||
3974 | 327,3,101,0,327, | ||
3975 | 3,102,0,327,3, | ||
3976 | 103,0,327,3,104, | ||
3977 | 0,327,3,105,0, | ||
3978 | 327,3,106,0,327, | ||
3979 | 3,107,0,327,3, | ||
3980 | 108,0,327,494,11, | ||
3981 | 1,829,0,330,1, | ||
3982 | -1,3,106,0,327, | ||
3983 | 3,107,0,327,3, | ||
3984 | 108,0,327,495,11, | ||
3985 | 1,829,0,330,1, | ||
3986 | -1,3,116,0,327, | ||
3987 | 3,117,0,327,3, | ||
3988 | 118,0,327,3,119, | ||
3989 | 0,327,3,120,0, | ||
3990 | 327,3,121,0,327, | ||
3991 | 3,122,0,327,3, | ||
3992 | 48,0,327,3,49, | ||
3993 | 0,327,3,50,0, | ||
3994 | 327,3,51,0,327, | ||
3995 | 3,52,0,327,3, | ||
3996 | 53,0,327,3,54, | ||
3997 | 0,327,3,55,0, | ||
3998 | 327,3,56,0,327, | ||
3999 | 3,57,0,327,3, | ||
4000 | 65,0,327,3,66, | ||
4001 | 0,327,3,67,0, | ||
4002 | 327,3,68,0,327, | ||
4003 | 3,69,0,327,3, | ||
4004 | 70,0,327,3,71, | ||
4005 | 0,327,3,72,0, | ||
4006 | 327,3,73,0,327, | ||
4007 | 3,74,0,327,3, | ||
4008 | 75,0,327,3,76, | ||
4009 | 0,327,3,77,0, | ||
4010 | 327,3,78,0,327, | ||
4011 | 3,79,0,327,3, | ||
4012 | 80,0,327,3,81, | ||
4013 | 0,327,3,82,0, | ||
4014 | 327,3,83,0,327, | ||
4015 | 3,84,0,327,3, | ||
4016 | 85,0,327,3,86, | ||
4017 | 0,327,3,87,0, | ||
4018 | 327,3,88,0,327, | ||
4019 | 3,89,0,327,3, | ||
4020 | 90,0,327,3,95, | ||
4021 | 0,327,3,97,0, | ||
4022 | 327,3,98,0,327, | ||
4023 | 3,99,0,327,3, | ||
4024 | 100,0,327,3,101, | ||
4025 | 0,327,3,102,0, | ||
4026 | 327,3,103,0,327, | ||
4027 | 3,104,0,327,3, | ||
4028 | 105,0,327,3,106, | ||
4029 | 0,327,3,107,0, | ||
4030 | 327,3,108,0,327, | ||
4031 | 496,11,1,829,0, | ||
4032 | 330,1,-1,3,106, | ||
4033 | 0,327,3,107,0, | ||
4034 | 327,3,108,0,327, | ||
4035 | 497,11,1,829,0, | ||
4036 | 330,1,-1,498,11, | ||
4037 | 1,829,0,330,1, | ||
4038 | -1,499,11,1,829, | ||
4039 | 0,330,1,-1,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,500,12,1, | ||
4085 | 26387,501,5,63,3, | ||
4086 | 109,0,327,3,110, | ||
4087 | 0,327,3,111,0, | ||
4088 | 327,3,112,0,327, | ||
4089 | 3,113,0,327,3, | ||
4090 | 114,0,327,3,115, | ||
4091 | 0,327,3,116,0, | ||
4092 | 327,3,117,0,327, | ||
4093 | 3,118,0,327,3, | ||
4094 | 119,0,327,3,120, | ||
4095 | 0,327,3,121,0, | ||
4096 | 327,3,122,0,327, | ||
4097 | 3,48,0,327,3, | ||
4098 | 49,0,327,3,50, | ||
4099 | 0,327,3,51,0, | ||
4100 | 327,3,52,0,327, | ||
4101 | 3,53,0,327,3, | ||
4102 | 54,0,327,3,55, | ||
4103 | 0,327,3,56,0, | ||
4104 | 327,3,57,0,327, | ||
4105 | 3,65,0,327,3, | ||
4106 | 66,0,327,3,67, | ||
4107 | 0,327,3,68,0, | ||
4108 | 327,3,69,0,327, | ||
4109 | 3,70,0,327,3, | ||
4110 | 71,0,327,3,72, | ||
4111 | 0,327,3,73,0, | ||
4112 | 327,3,74,0,327, | ||
4113 | 3,75,0,327,3, | ||
4114 | 76,0,327,3,77, | ||
4115 | 0,327,3,78,0, | ||
4116 | 327,3,79,0,327, | ||
4117 | 3,80,0,327,3, | ||
4118 | 81,0,327,3,82, | ||
4119 | 0,327,3,83,0, | ||
4120 | 327,3,84,0,327, | ||
4121 | 3,85,0,327,3, | ||
4122 | 86,0,327,3,87, | ||
4123 | 0,327,3,88,0, | ||
4124 | 327,3,89,0,327, | ||
4125 | 3,90,0,327,3, | ||
4126 | 95,0,327,3,97, | ||
4127 | 0,502,12,1,26430, | ||
4128 | 503,5,63,3,109, | ||
4129 | 0,327,3,110,0, | ||
4130 | 504,12,1,26459,505, | ||
4131 | 5,63,3,109,0, | ||
4132 | 327,3,110,0,327, | ||
4133 | 3,111,0,327,3, | ||
4134 | 112,0,327,3,113, | ||
4135 | 0,327,3,114,0, | ||
4136 | 327,3,115,0,327, | ||
4137 | 3,116,0,327,3, | ||
4138 | 117,0,327,3,118, | ||
4139 | 0,327,3,119,0, | ||
4140 | 327,3,120,0,327, | ||
4141 | 3,121,0,327,3, | ||
4142 | 122,0,327,3,48, | ||
4143 | 0,327,3,49,0, | ||
4144 | 327,3,50,0,327, | ||
4145 | 3,51,0,327,3, | ||
4146 | 52,0,327,3,53, | ||
4147 | 0,327,3,54,0, | ||
4148 | 327,3,55,0,327, | ||
4149 | 3,56,0,327,3, | ||
4150 | 57,0,327,3,65, | ||
4151 | 0,327,3,66,0, | ||
4152 | 327,3,67,0,327, | ||
4153 | 3,68,0,327,3, | ||
4154 | 69,0,327,3,70, | ||
4155 | 0,327,3,71,0, | ||
4156 | 327,3,72,0,327, | ||
4157 | 3,73,0,327,3, | ||
4158 | 74,0,327,3,75, | ||
4159 | 0,327,3,76,0, | ||
4160 | 327,3,77,0,327, | ||
4161 | 3,78,0,327,3, | ||
4162 | 79,0,327,3,80, | ||
4163 | 0,327,3,81,0, | ||
4164 | 327,3,82,0,327, | ||
4165 | 3,83,0,327,3, | ||
4166 | 84,0,327,3,85, | ||
4167 | 0,327,3,86,0, | ||
4168 | 327,3,87,0,327, | ||
4169 | 3,88,0,327,3, | ||
4170 | 89,0,327,3,90, | ||
4171 | 0,327,3,95,0, | ||
4172 | 327,3,97,0,327, | ||
4173 | 3,98,0,327,3, | ||
4174 | 99,0,327,3,100, | ||
4175 | 0,327,3,101,0, | ||
4176 | 327,3,102,0,327, | ||
4177 | 3,103,0,506,12, | ||
4178 | 1,26508,507,5,63, | ||
4179 | 3,109,0,327,3, | ||
4180 | 110,0,327,3,111, | ||
4181 | 0,327,3,112,0, | ||
4182 | 327,3,113,0,327, | ||
4183 | 3,114,0,327,3, | ||
4184 | 115,0,327,3,116, | ||
4185 | 0,327,3,117,0, | ||
4186 | 327,3,118,0,327, | ||
4187 | 3,119,0,327,3, | ||
4188 | 120,0,327,3,121, | ||
4189 | 0,327,3,122,0, | ||
4190 | 327,3,48,0,327, | ||
4191 | 3,49,0,327,3, | ||
4192 | 50,0,327,3,51, | ||
4193 | 0,327,3,52,0, | ||
4194 | 327,3,53,0,327, | ||
4195 | 3,54,0,327,3, | ||
4196 | 55,0,327,3,56, | ||
4197 | 0,327,3,57,0, | ||
4198 | 327,3,65,0,327, | ||
4199 | 3,66,0,327,3, | ||
4200 | 67,0,327,3,68, | ||
4201 | 0,327,3,69,0, | ||
4202 | 327,3,70,0,327, | ||
4203 | 3,71,0,327,3, | ||
4204 | 72,0,327,3,73, | ||
4205 | 0,327,3,74,0, | ||
4206 | 327,3,75,0,327, | ||
4207 | 3,76,0,327,3, | ||
4208 | 77,0,327,3,78, | ||
4209 | 0,327,3,79,0, | ||
4210 | 327,3,80,0,327, | ||
4211 | 3,81,0,327,3, | ||
4212 | 82,0,327,3,83, | ||
4213 | 0,327,3,84,0, | ||
4214 | 327,3,85,0,327, | ||
4215 | 3,86,0,327,3, | ||
4216 | 87,0,327,3,88, | ||
4217 | 0,327,3,89,0, | ||
4218 | 327,3,90,0,327, | ||
4219 | 3,95,0,327,3, | ||
4220 | 97,0,327,3,98, | ||
4221 | 0,327,3,99,0, | ||
4222 | 327,3,100,0,327, | ||
4223 | 3,101,0,508,12, | ||
4224 | 1,26555,509,5,63, | ||
4225 | 3,109,0,327,3, | ||
4226 | 110,0,327,3,111, | ||
4227 | 0,327,3,112,0, | ||
4228 | 327,3,113,0,327, | ||
4229 | 3,114,0,327,3, | ||
4230 | 115,0,327,3,116, | ||
4231 | 0,327,3,117,0, | ||
4232 | 327,3,118,0,327, | ||
4233 | 3,119,0,327,3, | ||
4234 | 120,0,327,3,121, | ||
4235 | 0,327,3,122,0, | ||
4236 | 327,3,48,0,327, | ||
4237 | 3,49,0,327,3, | ||
4238 | 50,0,327,3,51, | ||
4239 | 0,327,3,52,0, | ||
4240 | 327,3,53,0,327, | ||
4241 | 3,54,0,327,3, | ||
4242 | 55,0,327,3,56, | ||
4243 | 0,327,3,57,0, | ||
4244 | 327,3,65,0,327, | ||
4245 | 3,66,0,327,3, | ||
4246 | 67,0,327,3,68, | ||
4247 | 0,327,3,69,0, | ||
4248 | 327,3,70,0,327, | ||
4249 | 3,71,0,327,3, | ||
4250 | 72,0,327,3,73, | ||
4251 | 0,327,3,74,0, | ||
4252 | 327,3,75,0,327, | ||
4253 | 3,76,0,327,3, | ||
4254 | 77,0,327,3,78, | ||
4255 | 0,327,3,79,0, | ||
4256 | 327,3,80,0,327, | ||
4257 | 3,81,0,327,3, | ||
4258 | 82,0,327,3,83, | ||
4259 | 0,327,3,84,0, | ||
4260 | 327,3,85,0,327, | ||
4261 | 3,86,0,327,3, | ||
4262 | 87,0,327,3,88, | ||
4263 | 0,327,3,89,0, | ||
4264 | 327,3,90,0,327, | ||
4265 | 3,95,0,327,3, | ||
4266 | 97,0,327,3,98, | ||
4267 | 0,327,3,99,0, | ||
4268 | 327,3,100,0,510, | ||
4269 | 12,1,26601,511,5, | ||
4270 | 63,3,109,0,327, | ||
4271 | 3,110,0,327,3, | ||
4272 | 111,0,327,3,112, | ||
4273 | 0,327,3,113,0, | ||
4274 | 327,3,114,0,327, | ||
4275 | 3,115,0,327,3, | ||
4276 | 116,0,327,3,117, | ||
4277 | 0,327,3,118,0, | ||
4278 | 327,3,119,0,327, | ||
4279 | 3,120,0,327,3, | ||
4280 | 121,0,327,3,122, | ||
4281 | 0,327,3,48,0, | ||
4282 | 327,3,49,0,327, | ||
4283 | 3,50,0,327,3, | ||
4284 | 51,0,327,3,52, | ||
4285 | 0,327,3,53,0, | ||
4286 | 327,3,54,0,327, | ||
4287 | 3,55,0,327,3, | ||
4288 | 56,0,327,3,57, | ||
4289 | 0,327,3,65,0, | ||
4290 | 327,3,66,0,327, | ||
4291 | 3,67,0,327,3, | ||
4292 | 68,0,327,3,69, | ||
4293 | 0,327,3,70,0, | ||
4294 | 327,3,71,0,327, | ||
4295 | 3,72,0,327,3, | ||
4296 | 73,0,327,3,74, | ||
4297 | 0,327,3,75,0, | ||
4298 | 327,3,76,0,327, | ||
4299 | 3,77,0,327,3, | ||
4300 | 78,0,327,3,79, | ||
4301 | 0,327,3,80,0, | ||
4302 | 327,3,81,0,327, | ||
4303 | 3,82,0,327,3, | ||
4304 | 83,0,327,3,84, | ||
4305 | 0,327,3,85,0, | ||
4306 | 327,3,86,0,327, | ||
4307 | 3,87,0,327,3, | ||
4308 | 88,0,327,3,89, | ||
4309 | 0,327,3,90,0, | ||
4310 | 327,3,95,0,327, | ||
4311 | 3,97,0,327,3, | ||
4312 | 98,0,327,3,99, | ||
4313 | 0,327,3,100,0, | ||
4314 | 327,3,101,0,327, | ||
4315 | 3,102,0,327,3, | ||
4316 | 103,0,327,3,104, | ||
4317 | 0,327,3,105,0, | ||
4318 | 327,3,106,0,327, | ||
4319 | 3,107,0,327,3, | ||
4320 | 108,0,327,512,11, | ||
4321 | 1,390,0,513,4, | ||
4322 | 26,67,0,72,0, | ||
4323 | 65,0,78,0,71, | ||
4324 | 0,69,0,68,0, | ||
4325 | 95,0,69,0,86, | ||
4326 | 0,69,0,78,0, | ||
4327 | 84,0,1,-1,3, | ||
4328 | 101,0,327,3,102, | ||
4329 | 0,327,3,103,0, | ||
4330 | 327,3,104,0,327, | ||
4331 | 3,105,0,327,3, | ||
4332 | 106,0,327,3,107, | ||
4333 | 0,327,3,108,0, | ||
4334 | 327,514,11,1,829, | ||
4335 | 0,330,1,-1,3, | ||
4336 | 102,0,327,3,103, | ||
4337 | 0,327,3,104,0, | ||
4338 | 327,3,105,0,327, | ||
4339 | 3,106,0,327,3, | ||
4340 | 107,0,327,3,108, | ||
4341 | 0,327,515,11,1, | ||
4342 | 829,0,330,1,-1, | ||
4343 | 3,104,0,327,3, | ||
4344 | 105,0,327,3,106, | ||
4345 | 0,327,3,107,0, | ||
4346 | 327,3,108,0,327, | ||
4347 | 516,11,1,829,0, | ||
4348 | 330,1,-1,3,111, | ||
4349 | 0,327,3,112,0, | ||
4350 | 327,3,113,0,327, | ||
4351 | 3,114,0,327,3, | ||
4352 | 115,0,327,3,116, | ||
4353 | 0,327,3,117,0, | ||
4354 | 327,3,118,0,327, | ||
4355 | 3,119,0,327,3, | ||
4356 | 120,0,327,3,121, | ||
4357 | 0,327,3,122,0, | ||
4358 | 327,3,48,0,327, | ||
4359 | 3,49,0,327,3, | ||
4360 | 50,0,327,3,51, | ||
4361 | 0,327,3,52,0, | ||
4362 | 327,3,53,0,327, | ||
4363 | 3,54,0,327,3, | ||
4364 | 55,0,327,3,56, | ||
4365 | 0,327,3,57,0, | ||
4366 | 327,3,65,0,327, | ||
4367 | 3,66,0,327,3, | ||
4368 | 67,0,327,3,68, | ||
4369 | 0,327,3,69,0, | ||
4370 | 327,3,70,0,327, | ||
4371 | 3,71,0,327,3, | ||
4372 | 72,0,327,3,73, | ||
4373 | 0,327,3,74,0, | ||
4374 | 327,3,75,0,327, | ||
4375 | 3,76,0,327,3, | ||
4376 | 77,0,327,3,78, | ||
4377 | 0,327,3,79,0, | ||
4378 | 327,3,80,0,327, | ||
4379 | 3,81,0,327,3, | ||
4380 | 82,0,327,3,83, | ||
4381 | 0,327,3,84,0, | ||
4382 | 327,3,85,0,327, | ||
4383 | 3,86,0,327,3, | ||
4384 | 87,0,327,3,88, | ||
4385 | 0,327,3,89,0, | ||
4386 | 327,3,90,0,327, | ||
4387 | 3,95,0,327,3, | ||
4388 | 97,0,327,3,98, | ||
4389 | 0,327,3,99,0, | ||
4390 | 327,3,100,0,327, | ||
4391 | 3,101,0,327,3, | ||
4392 | 102,0,327,3,103, | ||
4393 | 0,327,3,104,0, | ||
4394 | 327,3,105,0,327, | ||
4395 | 3,106,0,327,3, | ||
4396 | 107,0,327,3,108, | ||
4397 | 0,327,517,11,1, | ||
4398 | 829,0,330,1,-1, | ||
4399 | 3,98,0,327,3, | ||
4400 | 99,0,327,3,100, | ||
4401 | 0,327,3,101,0, | ||
4402 | 327,3,102,0,327, | ||
4403 | 3,103,0,327,3, | ||
4404 | 104,0,327,3,105, | ||
4405 | 0,327,3,106,0, | ||
4406 | 327,3,107,0,327, | ||
4407 | 3,108,0,327,518, | ||
4408 | 11,1,829,0,330, | ||
4409 | 1,-1,3,105,0, | ||
4410 | 327,3,106,0,327, | ||
4411 | 3,107,0,327,3, | ||
4412 | 108,0,327,519,11, | ||
4413 | 1,829,0,330,1, | ||
4414 | -1,3,100,0,520, | ||
4415 | 12,1,27178,521,5, | ||
4416 | 63,3,109,0,327, | ||
4417 | 3,110,0,327,3, | ||
4418 | 111,0,522,12,1, | ||
4419 | 27208,523,5,63,3, | ||
4420 | 109,0,327,3,110, | ||
4421 | 0,327,3,111,0, | ||
4422 | 327,3,112,0,327, | ||
4423 | 3,113,0,327,3, | ||
4424 | 114,0,327,3,115, | ||
4425 | 0,327,3,116,0, | ||
4426 | 327,3,117,0,327, | ||
4427 | 3,118,0,327,3, | ||
4428 | 119,0,327,3,120, | ||
4429 | 0,327,3,121,0, | ||
4430 | 327,3,122,0,327, | ||
4431 | 3,48,0,327,3, | ||
4432 | 49,0,327,3,50, | ||
4433 | 0,327,3,51,0, | ||
4434 | 327,3,52,0,327, | ||
4435 | 3,53,0,327,3, | ||
4436 | 54,0,327,3,55, | ||
4437 | 0,327,3,56,0, | ||
4438 | 327,3,57,0,327, | ||
4439 | 3,65,0,327,3, | ||
4440 | 66,0,327,3,67, | ||
4441 | 0,327,3,68,0, | ||
4442 | 327,3,69,0,327, | ||
4443 | 3,70,0,327,3, | ||
4444 | 71,0,327,3,72, | ||
4445 | 0,327,3,73,0, | ||
4446 | 327,3,74,0,327, | ||
4447 | 3,75,0,327,3, | ||
4448 | 76,0,327,3,77, | ||
4449 | 0,327,3,78,0, | ||
4450 | 327,3,79,0,327, | ||
4451 | 3,80,0,327,3, | ||
4452 | 81,0,327,3,82, | ||
4453 | 0,327,3,83,0, | ||
4454 | 327,3,84,0,327, | ||
4455 | 3,85,0,327,3, | ||
4456 | 86,0,327,3,87, | ||
4457 | 0,327,3,88,0, | ||
4458 | 327,3,89,0,327, | ||
4459 | 3,90,0,327,3, | ||
4460 | 95,0,327,3,97, | ||
4461 | 0,327,3,98,0, | ||
4462 | 327,3,99,0,327, | ||
4463 | 3,100,0,327,3, | ||
4464 | 101,0,327,3,102, | ||
4465 | 0,327,3,103,0, | ||
4466 | 327,3,104,0,327, | ||
4467 | 3,105,0,327,3, | ||
4468 | 106,0,327,3,107, | ||
4469 | 0,327,3,108,0, | ||
4470 | 327,524,11,1,223, | ||
4471 | 0,525,4,4,68, | ||
4472 | 0,79,0,1,-1, | ||
4473 | 3,112,0,327,3, | ||
4474 | 113,0,327,3,114, | ||
4475 | 0,327,3,115,0, | ||
4476 | 327,3,116,0,327, | ||
4477 | 3,117,0,327,3, | ||
4478 | 118,0,327,3,119, | ||
4479 | 0,327,3,120,0, | ||
4480 | 327,3,121,0,327, | ||
4481 | 3,122,0,327,3, | ||
4482 | 48,0,327,3,49, | ||
4483 | 0,327,3,50,0, | ||
4484 | 327,3,51,0,327, | ||
4485 | 3,52,0,327,3, | ||
4486 | 53,0,327,3,54, | ||
4487 | 0,327,3,55,0, | ||
4488 | 327,3,56,0,327, | ||
4489 | 3,57,0,327,3, | ||
4490 | 65,0,327,3,66, | ||
4491 | 0,327,3,67,0, | ||
4492 | 327,3,68,0,327, | ||
4493 | 3,69,0,327,3, | ||
4494 | 70,0,327,3,71, | ||
4495 | 0,327,3,72,0, | ||
4496 | 327,3,73,0,327, | ||
4497 | 3,74,0,327,3, | ||
4498 | 75,0,327,3,76, | ||
4499 | 0,327,3,77,0, | ||
4500 | 327,3,78,0,327, | ||
4501 | 3,79,0,327,3, | ||
4502 | 80,0,327,3,81, | ||
4503 | 0,327,3,82,0, | ||
4504 | 327,3,83,0,327, | ||
4505 | 3,84,0,327,3, | ||
4506 | 85,0,327,3,86, | ||
4507 | 0,327,3,87,0, | ||
4508 | 327,3,88,0,327, | ||
4509 | 3,89,0,327,3, | ||
4510 | 90,0,327,3,95, | ||
4511 | 0,327,3,97,0, | ||
4512 | 526,12,1,27341,527, | ||
4513 | 5,63,3,109,0, | ||
4514 | 327,3,110,0,327, | ||
4515 | 3,111,0,327,3, | ||
4516 | 112,0,327,3,113, | ||
4517 | 0,327,3,114,0, | ||
4518 | 327,3,115,0,327, | ||
4519 | 3,116,0,528,12, | ||
4520 | 1,27376,529,5,63, | ||
4521 | 3,109,0,327,3, | ||
4522 | 110,0,327,3,111, | ||
4523 | 0,327,3,112,0, | ||
4524 | 327,3,113,0,327, | ||
4525 | 3,114,0,327,3, | ||
4526 | 115,0,327,3,116, | ||
4527 | 0,327,3,117,0, | ||
4528 | 327,3,118,0,327, | ||
4529 | 3,119,0,327,3, | ||
4530 | 120,0,327,3,121, | ||
4531 | 0,327,3,122,0, | ||
4532 | 327,3,48,0,327, | ||
4533 | 3,49,0,327,3, | ||
4534 | 50,0,327,3,51, | ||
4535 | 0,327,3,52,0, | ||
4536 | 327,3,53,0,327, | ||
4537 | 3,54,0,327,3, | ||
4538 | 55,0,327,3,56, | ||
4539 | 0,327,3,57,0, | ||
4540 | 327,3,65,0,327, | ||
4541 | 3,66,0,327,3, | ||
4542 | 67,0,327,3,68, | ||
4543 | 0,327,3,69,0, | ||
4544 | 327,3,70,0,327, | ||
4545 | 3,71,0,327,3, | ||
4546 | 72,0,327,3,73, | ||
4547 | 0,327,3,74,0, | ||
4548 | 327,3,75,0,327, | ||
4549 | 3,76,0,327,3, | ||
4550 | 77,0,327,3,78, | ||
4551 | 0,327,3,79,0, | ||
4552 | 327,3,80,0,327, | ||
4553 | 3,81,0,327,3, | ||
4554 | 82,0,327,3,83, | ||
4555 | 0,327,3,84,0, | ||
4556 | 327,3,85,0,327, | ||
4557 | 3,86,0,327,3, | ||
4558 | 87,0,327,3,88, | ||
4559 | 0,327,3,89,0, | ||
4560 | 327,3,90,0,327, | ||
4561 | 3,95,0,327,3, | ||
4562 | 97,0,530,12,1, | ||
4563 | 27419,531,5,63,3, | ||
4564 | 109,0,327,3,110, | ||
4565 | 0,327,3,111,0, | ||
4566 | 327,3,112,0,327, | ||
4567 | 3,113,0,327,3, | ||
4568 | 114,0,327,3,115, | ||
4569 | 0,532,12,1,27453, | ||
4570 | 533,5,63,3,109, | ||
4571 | 0,327,3,110,0, | ||
4572 | 327,3,111,0,327, | ||
4573 | 3,112,0,327,3, | ||
4574 | 113,0,327,3,114, | ||
4575 | 0,327,3,115,0, | ||
4576 | 327,3,116,0,327, | ||
4577 | 3,117,0,327,3, | ||
4578 | 118,0,327,3,119, | ||
4579 | 0,327,3,120,0, | ||
4580 | 327,3,121,0,327, | ||
4581 | 3,122,0,327,3, | ||
4582 | 48,0,327,3,49, | ||
4583 | 0,327,3,50,0, | ||
4584 | 327,3,51,0,327, | ||
4585 | 3,52,0,327,3, | ||
4586 | 53,0,327,3,54, | ||
4587 | 0,327,3,55,0, | ||
4588 | 327,3,56,0,327, | ||
4589 | 3,57,0,327,3, | ||
4590 | 65,0,327,3,66, | ||
4591 | 0,327,3,67,0, | ||
4592 | 327,3,68,0,327, | ||
4593 | 3,69,0,327,3, | ||
4594 | 70,0,327,3,71, | ||
4595 | 0,327,3,72,0, | ||
4596 | 327,3,73,0,327, | ||
4597 | 3,74,0,327,3, | ||
4598 | 75,0,327,3,76, | ||
4599 | 0,327,3,77,0, | ||
4600 | 327,3,78,0,327, | ||
4601 | 3,79,0,327,3, | ||
4602 | 80,0,327,3,81, | ||
4603 | 0,327,3,82,0, | ||
4604 | 327,3,83,0,327, | ||
4605 | 3,84,0,327,3, | ||
4606 | 85,0,327,3,86, | ||
4607 | 0,327,3,87,0, | ||
4608 | 327,3,88,0,327, | ||
4609 | 3,89,0,327,3, | ||
4610 | 90,0,327,3,95, | ||
4611 | 0,327,3,97,0, | ||
4612 | 327,3,98,0,327, | ||
4613 | 3,99,0,327,3, | ||
4614 | 100,0,327,3,101, | ||
4615 | 0,534,12,1,27500, | ||
4616 | 535,5,63,3,109, | ||
4617 | 0,327,3,110,0, | ||
4618 | 327,3,111,0,327, | ||
4619 | 3,112,0,327,3, | ||
4620 | 113,0,327,3,114, | ||
4621 | 0,536,12,1,27533, | ||
4622 | 537,5,63,3,109, | ||
4623 | 0,327,3,110,0, | ||
4624 | 327,3,111,0,327, | ||
4625 | 3,112,0,327,3, | ||
4626 | 113,0,327,3,114, | ||
4627 | 0,327,3,115,0, | ||
4628 | 327,3,116,0,327, | ||
4629 | 3,117,0,327,3, | ||
4630 | 118,0,538,12,1, | ||
4631 | 27570,539,5,63,3, | ||
4632 | 109,0,327,3,110, | ||
4633 | 0,327,3,111,0, | ||
4634 | 327,3,112,0,327, | ||
4635 | 3,113,0,327,3, | ||
4636 | 114,0,327,3,115, | ||
4637 | 0,327,3,116,0, | ||
4638 | 327,3,117,0,327, | ||
4639 | 3,118,0,327,3, | ||
4640 | 119,0,327,3,120, | ||
4641 | 0,327,3,121,0, | ||
4642 | 327,3,122,0,327, | ||
4643 | 3,48,0,327,3, | ||
4644 | 49,0,327,3,50, | ||
4645 | 0,327,3,51,0, | ||
4646 | 327,3,52,0,327, | ||
4647 | 3,53,0,327,3, | ||
4648 | 54,0,327,3,55, | ||
4649 | 0,327,3,56,0, | ||
4650 | 327,3,57,0,327, | ||
4651 | 3,65,0,327,3, | ||
4652 | 66,0,327,3,67, | ||
4653 | 0,327,3,68,0, | ||
4654 | 327,3,69,0,327, | ||
4655 | 3,70,0,327,3, | ||
4656 | 71,0,327,3,72, | ||
4657 | 0,327,3,73,0, | ||
4658 | 327,3,74,0,327, | ||
4659 | 3,75,0,327,3, | ||
4660 | 76,0,327,3,77, | ||
4661 | 0,327,3,78,0, | ||
4662 | 327,3,79,0,327, | ||
4663 | 3,80,0,327,3, | ||
4664 | 81,0,327,3,82, | ||
4665 | 0,327,3,83,0, | ||
4666 | 327,3,84,0,327, | ||
4667 | 3,85,0,327,3, | ||
4668 | 86,0,327,3,87, | ||
4669 | 0,327,3,88,0, | ||
4670 | 327,3,89,0,327, | ||
4671 | 3,90,0,327,3, | ||
4672 | 95,0,327,3,97, | ||
4673 | 0,327,3,98,0, | ||
4674 | 327,3,99,0,327, | ||
4675 | 3,100,0,327,3, | ||
4676 | 101,0,540,12,1, | ||
4677 | 27617,541,5,63,3, | ||
4678 | 109,0,327,3,110, | ||
4679 | 0,327,3,111,0, | ||
4680 | 327,3,112,0,327, | ||
4681 | 3,113,0,327,3, | ||
4682 | 114,0,542,12,1, | ||
4683 | 27650,543,5,63,3, | ||
4684 | 109,0,327,3,110, | ||
4685 | 0,327,3,111,0, | ||
4686 | 327,3,112,0,327, | ||
4687 | 3,113,0,327,3, | ||
4688 | 114,0,327,3,115, | ||
4689 | 0,327,3,116,0, | ||
4690 | 327,3,117,0,327, | ||
4691 | 3,118,0,327,3, | ||
4692 | 119,0,327,3,120, | ||
4693 | 0,327,3,121,0, | ||
4694 | 327,3,122,0,327, | ||
4695 | 3,48,0,327,3, | ||
4696 | 49,0,327,3,50, | ||
4697 | 0,327,3,51,0, | ||
4698 | 327,3,52,0,327, | ||
4699 | 3,53,0,327,3, | ||
4700 | 54,0,327,3,55, | ||
4701 | 0,327,3,56,0, | ||
4702 | 327,3,57,0,327, | ||
4703 | 3,65,0,327,3, | ||
4704 | 66,0,327,3,67, | ||
4705 | 0,327,3,68,0, | ||
4706 | 327,3,69,0,327, | ||
4707 | 3,70,0,327,3, | ||
4708 | 71,0,327,3,72, | ||
4709 | 0,327,3,73,0, | ||
4710 | 327,3,74,0,327, | ||
4711 | 3,75,0,327,3, | ||
4712 | 76,0,327,3,77, | ||
4713 | 0,327,3,78,0, | ||
4714 | 327,3,79,0,327, | ||
4715 | 3,80,0,327,3, | ||
4716 | 81,0,327,3,82, | ||
4717 | 0,327,3,83,0, | ||
4718 | 327,3,84,0,327, | ||
4719 | 3,85,0,327,3, | ||
4720 | 86,0,327,3,87, | ||
4721 | 0,327,3,88,0, | ||
4722 | 327,3,89,0,327, | ||
4723 | 3,90,0,327,3, | ||
4724 | 95,0,327,3,97, | ||
4725 | 0,327,3,98,0, | ||
4726 | 327,3,99,0,327, | ||
4727 | 3,100,0,327,3, | ||
4728 | 101,0,327,3,102, | ||
4729 | 0,327,3,103,0, | ||
4730 | 327,3,104,0,327, | ||
4731 | 3,105,0,327,3, | ||
4732 | 106,0,327,3,107, | ||
4733 | 0,327,3,108,0, | ||
4734 | 327,544,11,1,461, | ||
4735 | 0,545,4,32,68, | ||
4736 | 0,65,0,84,0, | ||
4737 | 65,0,83,0,69, | ||
4738 | 0,82,0,86,0, | ||
4739 | 69,0,82,0,95, | ||
4740 | 0,69,0,86,0, | ||
4741 | 69,0,78,0,84, | ||
4742 | 0,1,-1,3,115, | ||
4743 | 0,327,3,116,0, | ||
4744 | 327,3,117,0,327, | ||
4745 | 3,118,0,327,3, | ||
4746 | 119,0,327,3,120, | ||
4747 | 0,327,3,121,0, | ||
4748 | 327,3,122,0,327, | ||
4749 | 3,48,0,327,3, | ||
4750 | 49,0,327,3,50, | ||
4751 | 0,327,3,51,0, | ||
4752 | 327,3,52,0,327, | ||
4753 | 3,53,0,327,3, | ||
4754 | 54,0,327,3,55, | ||
4755 | 0,327,3,56,0, | ||
4756 | 327,3,57,0,327, | ||
4757 | 3,65,0,327,3, | ||
4758 | 66,0,327,3,67, | ||
4759 | 0,327,3,68,0, | ||
4760 | 327,3,69,0,327, | ||
4761 | 3,70,0,327,3, | ||
4762 | 71,0,327,3,72, | ||
4763 | 0,327,3,73,0, | ||
4764 | 327,3,74,0,327, | ||
4765 | 3,75,0,327,3, | ||
4766 | 76,0,327,3,77, | ||
4767 | 0,327,3,78,0, | ||
4768 | 327,3,79,0,327, | ||
4769 | 3,80,0,327,3, | ||
4770 | 81,0,327,3,82, | ||
4771 | 0,327,3,83,0, | ||
4772 | 327,3,84,0,327, | ||
4773 | 3,85,0,327,3, | ||
4774 | 86,0,327,3,87, | ||
4775 | 0,327,3,88,0, | ||
4776 | 327,3,89,0,327, | ||
4777 | 3,90,0,327,3, | ||
4778 | 95,0,327,3,97, | ||
4779 | 0,327,3,98,0, | ||
4780 | 327,3,99,0,327, | ||
4781 | 3,100,0,327,3, | ||
4782 | 101,0,327,3,102, | ||
4783 | 0,327,3,103,0, | ||
4784 | 327,3,104,0,327, | ||
4785 | 3,105,0,327,3, | ||
4786 | 106,0,327,3,107, | ||
4787 | 0,327,3,108,0, | ||
4788 | 327,546,11,1,829, | ||
4789 | 0,330,1,-1,3, | ||
4790 | 102,0,327,3,103, | ||
4791 | 0,327,3,104,0, | ||
4792 | 327,3,105,0,327, | ||
4793 | 3,106,0,327,3, | ||
4794 | 107,0,327,3,108, | ||
4795 | 0,327,547,11,1, | ||
4796 | 829,0,330,1,-1, | ||
4797 | 3,119,0,327,3, | ||
4798 | 120,0,327,3,121, | ||
4799 | 0,327,3,122,0, | ||
4800 | 327,3,48,0,327, | ||
4801 | 3,49,0,327,3, | ||
4802 | 50,0,327,3,51, | ||
4803 | 0,327,3,52,0, | ||
4804 | 327,3,53,0,327, | ||
4805 | 3,54,0,327,3, | ||
4806 | 55,0,327,3,56, | ||
4807 | 0,327,3,57,0, | ||
4808 | 327,3,65,0,327, | ||
4809 | 3,66,0,327,3, | ||
4810 | 67,0,327,3,68, | ||
4811 | 0,327,3,69,0, | ||
4812 | 327,3,70,0,327, | ||
4813 | 3,71,0,327,3, | ||
4814 | 72,0,327,3,73, | ||
4815 | 0,327,3,74,0, | ||
4816 | 327,3,75,0,327, | ||
4817 | 3,76,0,327,3, | ||
4818 | 77,0,327,3,78, | ||
4819 | 0,327,3,79,0, | ||
4820 | 327,3,80,0,327, | ||
4821 | 3,81,0,327,3, | ||
4822 | 82,0,327,3,83, | ||
4823 | 0,327,3,84,0, | ||
4824 | 327,3,85,0,327, | ||
4825 | 3,86,0,327,3, | ||
4826 | 87,0,327,3,88, | ||
4827 | 0,327,3,89,0, | ||
4828 | 327,3,90,0,327, | ||
4829 | 3,95,0,327,3, | ||
4830 | 97,0,327,3,98, | ||
4831 | 0,327,3,99,0, | ||
4832 | 327,3,100,0,327, | ||
4833 | 3,101,0,327,3, | ||
4834 | 102,0,327,3,103, | ||
4835 | 0,327,3,104,0, | ||
4836 | 327,3,105,0,327, | ||
4837 | 3,106,0,327,3, | ||
4838 | 107,0,327,3,108, | ||
4839 | 0,327,548,11,1, | ||
4840 | 829,0,330,1,-1, | ||
4841 | 3,115,0,327,3, | ||
4842 | 116,0,327,3,117, | ||
4843 | 0,327,3,118,0, | ||
4844 | 327,3,119,0,327, | ||
4845 | 3,120,0,327,3, | ||
4846 | 121,0,327,3,122, | ||
4847 | 0,327,3,48,0, | ||
4848 | 327,3,49,0,327, | ||
4849 | 3,50,0,327,3, | ||
4850 | 51,0,327,3,52, | ||
4851 | 0,327,3,53,0, | ||
4852 | 327,3,54,0,327, | ||
4853 | 3,55,0,327,3, | ||
4854 | 56,0,327,3,57, | ||
4855 | 0,327,3,65,0, | ||
4856 | 327,3,66,0,327, | ||
4857 | 3,67,0,327,3, | ||
4858 | 68,0,327,3,69, | ||
4859 | 0,327,3,70,0, | ||
4860 | 327,3,71,0,327, | ||
4861 | 3,72,0,327,3, | ||
4862 | 73,0,327,3,74, | ||
4863 | 0,327,3,75,0, | ||
4864 | 327,3,76,0,327, | ||
4865 | 3,77,0,327,3, | ||
4866 | 78,0,327,3,79, | ||
4867 | 0,327,3,80,0, | ||
4868 | 327,3,81,0,327, | ||
4869 | 3,82,0,327,3, | ||
4870 | 83,0,327,3,84, | ||
4871 | 0,327,3,85,0, | ||
4872 | 327,3,86,0,327, | ||
4873 | 3,87,0,327,3, | ||
4874 | 88,0,327,3,89, | ||
4875 | 0,327,3,90,0, | ||
4876 | 327,3,95,0,327, | ||
4877 | 3,97,0,327,3, | ||
4878 | 98,0,327,3,99, | ||
4879 | 0,327,3,100,0, | ||
4880 | 327,3,101,0,327, | ||
4881 | 3,102,0,327,3, | ||
4882 | 103,0,327,3,104, | ||
4883 | 0,327,3,105,0, | ||
4884 | 327,3,106,0,327, | ||
4885 | 3,107,0,327,3, | ||
4886 | 108,0,327,549,11, | ||
4887 | 1,829,0,330,1, | ||
4888 | -1,3,102,0,327, | ||
4889 | 3,103,0,327,3, | ||
4890 | 104,0,327,3,105, | ||
4891 | 0,327,3,106,0, | ||
4892 | 327,3,107,0,327, | ||
4893 | 3,108,0,327,550, | ||
4894 | 11,1,829,0,330, | ||
4895 | 1,-1,3,116,0, | ||
4896 | 327,3,117,0,327, | ||
4897 | 3,118,0,327,3, | ||
4898 | 119,0,327,3,120, | ||
4899 | 0,327,3,121,0, | ||
4900 | 327,3,122,0,327, | ||
4901 | 3,48,0,327,3, | ||
4902 | 49,0,327,3,50, | ||
4903 | 0,327,3,51,0, | ||
4904 | 327,3,52,0,327, | ||
4905 | 3,53,0,327,3, | ||
4906 | 54,0,327,3,55, | ||
4907 | 0,327,3,56,0, | ||
4908 | 327,3,57,0,327, | ||
4909 | 3,65,0,327,3, | ||
4910 | 66,0,327,3,67, | ||
4911 | 0,327,3,68,0, | ||
4912 | 327,3,69,0,327, | ||
4913 | 3,70,0,327,3, | ||
4914 | 71,0,327,3,72, | ||
4915 | 0,327,3,73,0, | ||
4916 | 327,3,74,0,327, | ||
4917 | 3,75,0,327,3, | ||
4918 | 76,0,327,3,77, | ||
4919 | 0,327,3,78,0, | ||
4920 | 327,3,79,0,327, | ||
4921 | 3,80,0,327,3, | ||
4922 | 81,0,327,3,82, | ||
4923 | 0,327,3,83,0, | ||
4924 | 327,3,84,0,327, | ||
4925 | 3,85,0,327,3, | ||
4926 | 86,0,327,3,87, | ||
4927 | 0,327,3,88,0, | ||
4928 | 327,3,89,0,327, | ||
4929 | 3,90,0,327,3, | ||
4930 | 95,0,327,3,97, | ||
4931 | 0,327,3,98,0, | ||
4932 | 327,3,99,0,327, | ||
4933 | 3,100,0,327,3, | ||
4934 | 101,0,327,3,102, | ||
4935 | 0,327,3,103,0, | ||
4936 | 327,3,104,0,327, | ||
4937 | 3,105,0,327,3, | ||
4938 | 106,0,327,3,107, | ||
4939 | 0,327,3,108,0, | ||
4940 | 327,551,11,1,829, | ||
4941 | 0,330,1,-1,3, | ||
4942 | 98,0,327,3,99, | ||
4943 | 0,327,3,100,0, | ||
4944 | 327,3,101,0,327, | ||
4945 | 3,102,0,327,3, | ||
4946 | 103,0,327,3,104, | ||
4947 | 0,327,3,105,0, | ||
4948 | 327,3,106,0,327, | ||
4949 | 3,107,0,327,3, | ||
4950 | 108,0,327,552,11, | ||
4951 | 1,829,0,330,1, | ||
4952 | -1,3,117,0,327, | ||
4953 | 3,118,0,327,3, | ||
4954 | 119,0,327,3,120, | ||
4955 | 0,327,3,121,0, | ||
4956 | 327,3,122,0,327, | ||
4957 | 3,48,0,327,3, | ||
4958 | 49,0,327,3,50, | ||
4959 | 0,327,3,51,0, | ||
4960 | 327,3,52,0,327, | ||
4961 | 3,53,0,327,3, | ||
4962 | 54,0,327,3,55, | ||
4963 | 0,327,3,56,0, | ||
4964 | 327,3,57,0,327, | ||
4965 | 3,65,0,327,3, | ||
4966 | 66,0,327,3,67, | ||
4967 | 0,327,3,68,0, | ||
4968 | 327,3,69,0,327, | ||
4969 | 3,70,0,327,3, | ||
4970 | 71,0,327,3,72, | ||
4971 | 0,327,3,73,0, | ||
4972 | 327,3,74,0,327, | ||
4973 | 3,75,0,327,3, | ||
4974 | 76,0,327,3,77, | ||
4975 | 0,327,3,78,0, | ||
4976 | 327,3,79,0,327, | ||
4977 | 3,80,0,327,3, | ||
4978 | 81,0,327,3,82, | ||
4979 | 0,327,3,83,0, | ||
4980 | 327,3,84,0,327, | ||
4981 | 3,85,0,327,3, | ||
4982 | 86,0,327,3,87, | ||
4983 | 0,327,3,88,0, | ||
4984 | 327,3,89,0,327, | ||
4985 | 3,90,0,327,3, | ||
4986 | 95,0,327,3,97, | ||
4987 | 0,327,3,98,0, | ||
4988 | 327,3,99,0,327, | ||
4989 | 3,100,0,327,3, | ||
4990 | 101,0,327,3,102, | ||
4991 | 0,327,3,103,0, | ||
4992 | 327,3,104,0,327, | ||
4993 | 3,105,0,327,3, | ||
4994 | 106,0,327,3,107, | ||
4995 | 0,327,3,108,0, | ||
4996 | 327,553,11,1,829, | ||
4997 | 0,330,1,-1,3, | ||
4998 | 98,0,327,3,99, | ||
4999 | 0,327,3,100,0, | ||
5000 | 327,3,101,0,554, | ||
5001 | 12,1,28425,555,5, | ||
5002 | 63,3,109,0,327, | ||
5003 | 3,110,0,327,3, | ||
5004 | 111,0,327,3,112, | ||
5005 | 0,327,3,113,0, | ||
5006 | 327,3,114,0,327, | ||
5007 | 3,115,0,327,3, | ||
5008 | 116,0,327,3,117, | ||
5009 | 0,327,3,118,0, | ||
5010 | 327,3,119,0,327, | ||
5011 | 3,120,0,327,3, | ||
5012 | 121,0,327,3,122, | ||
5013 | 0,327,3,48,0, | ||
5014 | 327,3,49,0,327, | ||
5015 | 3,50,0,327,3, | ||
5016 | 51,0,327,3,52, | ||
5017 | 0,327,3,53,0, | ||
5018 | 327,3,54,0,327, | ||
5019 | 3,55,0,327,3, | ||
5020 | 56,0,327,3,57, | ||
5021 | 0,327,3,65,0, | ||
5022 | 327,3,66,0,327, | ||
5023 | 3,67,0,327,3, | ||
5024 | 68,0,327,3,69, | ||
5025 | 0,327,3,70,0, | ||
5026 | 327,3,71,0,327, | ||
5027 | 3,72,0,327,3, | ||
5028 | 73,0,327,3,74, | ||
5029 | 0,327,3,75,0, | ||
5030 | 327,3,76,0,327, | ||
5031 | 3,77,0,327,3, | ||
5032 | 78,0,327,3,79, | ||
5033 | 0,327,3,80,0, | ||
5034 | 327,3,81,0,327, | ||
5035 | 3,82,0,327,3, | ||
5036 | 83,0,327,3,84, | ||
5037 | 0,327,3,85,0, | ||
5038 | 327,3,86,0,327, | ||
5039 | 3,87,0,327,3, | ||
5040 | 88,0,327,3,89, | ||
5041 | 0,327,3,90,0, | ||
5042 | 327,3,95,0,327, | ||
5043 | 3,97,0,327,3, | ||
5044 | 98,0,327,3,99, | ||
5045 | 0,327,3,100,0, | ||
5046 | 327,3,101,0,327, | ||
5047 | 3,102,0,556,12, | ||
5048 | 1,28473,557,5,63, | ||
5049 | 3,109,0,327,3, | ||
5050 | 110,0,327,3,111, | ||
5051 | 0,327,3,112,0, | ||
5052 | 327,3,113,0,327, | ||
5053 | 3,114,0,327,3, | ||
5054 | 115,0,327,3,116, | ||
5055 | 0,327,3,117,0, | ||
5056 | 327,3,118,0,327, | ||
5057 | 3,119,0,327,3, | ||
5058 | 120,0,327,3,121, | ||
5059 | 0,327,3,122,0, | ||
5060 | 327,3,48,0,327, | ||
5061 | 3,49,0,327,3, | ||
5062 | 50,0,327,3,51, | ||
5063 | 0,327,3,52,0, | ||
5064 | 327,3,53,0,327, | ||
5065 | 3,54,0,327,3, | ||
5066 | 55,0,327,3,56, | ||
5067 | 0,327,3,57,0, | ||
5068 | 327,3,65,0,327, | ||
5069 | 3,66,0,327,3, | ||
5070 | 67,0,327,3,68, | ||
5071 | 0,327,3,69,0, | ||
5072 | 327,3,70,0,327, | ||
5073 | 3,71,0,327,3, | ||
5074 | 72,0,327,3,73, | ||
5075 | 0,327,3,74,0, | ||
5076 | 327,3,75,0,327, | ||
5077 | 3,76,0,327,3, | ||
5078 | 77,0,327,3,78, | ||
5079 | 0,327,3,79,0, | ||
5080 | 327,3,80,0,327, | ||
5081 | 3,81,0,327,3, | ||
5082 | 82,0,327,3,83, | ||
5083 | 0,327,3,84,0, | ||
5084 | 327,3,85,0,327, | ||
5085 | 3,86,0,327,3, | ||
5086 | 87,0,327,3,88, | ||
5087 | 0,327,3,89,0, | ||
5088 | 327,3,90,0,327, | ||
5089 | 3,95,0,327,3, | ||
5090 | 97,0,558,12,1, | ||
5091 | 28516,559,5,63,3, | ||
5092 | 109,0,327,3,110, | ||
5093 | 0,327,3,111,0, | ||
5094 | 327,3,112,0,327, | ||
5095 | 3,113,0,327,3, | ||
5096 | 114,0,327,3,115, | ||
5097 | 0,327,3,116,0, | ||
5098 | 327,3,117,0,560, | ||
5099 | 12,1,28552,561,5, | ||
5100 | 63,3,109,0,327, | ||
5101 | 3,110,0,327,3, | ||
5102 | 111,0,327,3,112, | ||
5103 | 0,327,3,113,0, | ||
5104 | 327,3,114,0,327, | ||
5105 | 3,115,0,327,3, | ||
5106 | 116,0,327,3,117, | ||
5107 | 0,327,3,118,0, | ||
5108 | 327,3,119,0,327, | ||
5109 | 3,120,0,327,3, | ||
5110 | 121,0,327,3,122, | ||
5111 | 0,327,3,48,0, | ||
5112 | 327,3,49,0,327, | ||
5113 | 3,50,0,327,3, | ||
5114 | 51,0,327,3,52, | ||
5115 | 0,327,3,53,0, | ||
5116 | 327,3,54,0,327, | ||
5117 | 3,55,0,327,3, | ||
5118 | 56,0,327,3,57, | ||
5119 | 0,327,3,65,0, | ||
5120 | 327,3,66,0,327, | ||
5121 | 3,67,0,327,3, | ||
5122 | 68,0,327,3,69, | ||
5123 | 0,327,3,70,0, | ||
5124 | 327,3,71,0,327, | ||
5125 | 3,72,0,327,3, | ||
5126 | 73,0,327,3,74, | ||
5127 | 0,327,3,75,0, | ||
5128 | 327,3,76,0,327, | ||
5129 | 3,77,0,327,3, | ||
5130 | 78,0,327,3,79, | ||
5131 | 0,327,3,80,0, | ||
5132 | 327,3,81,0,327, | ||
5133 | 3,82,0,327,3, | ||
5134 | 83,0,327,3,84, | ||
5135 | 0,327,3,85,0, | ||
5136 | 327,3,86,0,327, | ||
5137 | 3,87,0,327,3, | ||
5138 | 88,0,327,3,89, | ||
5139 | 0,327,3,90,0, | ||
5140 | 327,3,95,0,327, | ||
5141 | 3,97,0,327,3, | ||
5142 | 98,0,327,3,99, | ||
5143 | 0,327,3,100,0, | ||
5144 | 327,3,101,0,327, | ||
5145 | 3,102,0,327,3, | ||
5146 | 103,0,327,3,104, | ||
5147 | 0,327,3,105,0, | ||
5148 | 327,3,106,0,327, | ||
5149 | 3,107,0,327,3, | ||
5150 | 108,0,562,12,1, | ||
5151 | 28606,563,5,63,3, | ||
5152 | 109,0,327,3,110, | ||
5153 | 0,327,3,111,0, | ||
5154 | 327,3,112,0,327, | ||
5155 | 3,113,0,327,3, | ||
5156 | 114,0,327,3,115, | ||
5157 | 0,327,3,116,0, | ||
5158 | 564,12,1,28641,565, | ||
5159 | 5,63,3,109,0, | ||
5160 | 327,3,110,0,327, | ||
5161 | 3,111,0,327,3, | ||
5162 | 112,0,327,3,113, | ||
5163 | 0,327,3,114,0, | ||
5164 | 327,3,115,0,327, | ||
5165 | 3,116,0,327,3, | ||
5166 | 117,0,327,3,118, | ||
5167 | 0,327,3,119,0, | ||
5168 | 327,3,120,0,327, | ||
5169 | 3,121,0,327,3, | ||
5170 | 122,0,327,3,48, | ||
5171 | 0,327,3,49,0, | ||
5172 | 327,3,50,0,327, | ||
5173 | 3,51,0,327,3, | ||
5174 | 52,0,327,3,53, | ||
5175 | 0,327,3,54,0, | ||
5176 | 327,3,55,0,327, | ||
5177 | 3,56,0,327,3, | ||
5178 | 57,0,327,3,65, | ||
5179 | 0,327,3,66,0, | ||
5180 | 327,3,67,0,327, | ||
5181 | 3,68,0,327,3, | ||
5182 | 69,0,327,3,70, | ||
5183 | 0,327,3,71,0, | ||
5184 | 327,3,72,0,327, | ||
5185 | 3,73,0,327,3, | ||
5186 | 74,0,327,3,75, | ||
5187 | 0,327,3,76,0, | ||
5188 | 327,3,77,0,327, | ||
5189 | 3,78,0,327,3, | ||
5190 | 79,0,327,3,80, | ||
5191 | 0,327,3,81,0, | ||
5192 | 327,3,82,0,327, | ||
5193 | 3,83,0,327,3, | ||
5194 | 84,0,327,3,85, | ||
5195 | 0,327,3,86,0, | ||
5196 | 327,3,87,0,327, | ||
5197 | 3,88,0,327,3, | ||
5198 | 89,0,327,3,90, | ||
5199 | 0,327,3,95,0, | ||
5200 | 327,3,97,0,327, | ||
5201 | 3,98,0,327,3, | ||
5202 | 99,0,327,3,100, | ||
5203 | 0,327,3,101,0, | ||
5204 | 327,3,102,0,327, | ||
5205 | 3,103,0,327,3, | ||
5206 | 104,0,327,3,105, | ||
5207 | 0,327,3,106,0, | ||
5208 | 327,3,107,0,327, | ||
5209 | 3,108,0,327,566, | ||
5210 | 11,1,245,0,567, | ||
5211 | 4,26,68,0,69, | ||
5212 | 0,70,0,65,0, | ||
5213 | 85,0,76,0,84, | ||
5214 | 0,95,0,83,0, | ||
5215 | 84,0,65,0,84, | ||
5216 | 0,69,0,1,-1, | ||
5217 | 3,117,0,327,3, | ||
5218 | 118,0,327,3,119, | ||
5219 | 0,327,3,120,0, | ||
5220 | 327,3,121,0,327, | ||
5221 | 3,122,0,327,3, | ||
5222 | 48,0,327,3,49, | ||
5223 | 0,327,3,50,0, | ||
5224 | 327,3,51,0,327, | ||
5225 | 3,52,0,327,3, | ||
5226 | 53,0,327,3,54, | ||
5227 | 0,327,3,55,0, | ||
5228 | 327,3,56,0,327, | ||
5229 | 3,57,0,327,3, | ||
5230 | 65,0,327,3,66, | ||
5231 | 0,327,3,67,0, | ||
5232 | 327,3,68,0,327, | ||
5233 | 3,69,0,327,3, | ||
5234 | 70,0,327,3,71, | ||
5235 | 0,327,3,72,0, | ||
5236 | 327,3,73,0,327, | ||
5237 | 3,74,0,327,3, | ||
5238 | 75,0,327,3,76, | ||
5239 | 0,327,3,77,0, | ||
5240 | 327,3,78,0,327, | ||
5241 | 3,79,0,327,3, | ||
5242 | 80,0,327,3,81, | ||
5243 | 0,327,3,82,0, | ||
5244 | 327,3,83,0,327, | ||
5245 | 3,84,0,327,3, | ||
5246 | 85,0,327,3,86, | ||
5247 | 0,327,3,87,0, | ||
5248 | 327,3,88,0,327, | ||
5249 | 3,89,0,327,3, | ||
5250 | 90,0,327,3,95, | ||
5251 | 0,327,3,97,0, | ||
5252 | 327,3,98,0,327, | ||
5253 | 3,99,0,327,3, | ||
5254 | 100,0,327,3,101, | ||
5255 | 0,327,3,102,0, | ||
5256 | 327,3,103,0,327, | ||
5257 | 3,104,0,327,3, | ||
5258 | 105,0,327,3,106, | ||
5259 | 0,327,3,107,0, | ||
5260 | 327,3,108,0,327, | ||
5261 | 568,11,1,829,0, | ||
5262 | 330,1,-1,569,11, | ||
5263 | 1,829,0,330,1, | ||
5264 | -1,3,118,0,327, | ||
5265 | 3,119,0,327,3, | ||
5266 | 120,0,327,3,121, | ||
5267 | 0,327,3,122,0, | ||
5268 | 327,3,48,0,327, | ||
5269 | 3,49,0,327,3, | ||
5270 | 50,0,327,3,51, | ||
5271 | 0,327,3,52,0, | ||
5272 | 327,3,53,0,327, | ||
5273 | 3,54,0,327,3, | ||
5274 | 55,0,327,3,56, | ||
5275 | 0,327,3,57,0, | ||
5276 | 327,3,65,0,327, | ||
5277 | 3,66,0,327,3, | ||
5278 | 67,0,327,3,68, | ||
5279 | 0,327,3,69,0, | ||
5280 | 327,3,70,0,327, | ||
5281 | 3,71,0,327,3, | ||
5282 | 72,0,327,3,73, | ||
5283 | 0,327,3,74,0, | ||
5284 | 327,3,75,0,327, | ||
5285 | 3,76,0,327,3, | ||
5286 | 77,0,327,3,78, | ||
5287 | 0,327,3,79,0, | ||
5288 | 327,3,80,0,327, | ||
5289 | 3,81,0,327,3, | ||
5290 | 82,0,327,3,83, | ||
5291 | 0,327,3,84,0, | ||
5292 | 327,3,85,0,327, | ||
5293 | 3,86,0,327,3, | ||
5294 | 87,0,327,3,88, | ||
5295 | 0,327,3,89,0, | ||
5296 | 327,3,90,0,327, | ||
5297 | 3,95,0,327,3, | ||
5298 | 97,0,327,3,98, | ||
5299 | 0,327,3,99,0, | ||
5300 | 327,3,100,0,327, | ||
5301 | 3,101,0,327,3, | ||
5302 | 102,0,327,3,103, | ||
5303 | 0,327,3,104,0, | ||
5304 | 327,3,105,0,327, | ||
5305 | 3,106,0,327,3, | ||
5306 | 107,0,327,3,108, | ||
5307 | 0,327,570,11,1, | ||
5308 | 829,0,330,1,-1, | ||
5309 | 3,98,0,327,3, | ||
5310 | 99,0,327,3,100, | ||
5311 | 0,327,3,101,0, | ||
5312 | 327,3,102,0,327, | ||
5313 | 3,103,0,327,3, | ||
5314 | 104,0,327,3,105, | ||
5315 | 0,327,3,106,0, | ||
5316 | 327,3,107,0,327, | ||
5317 | 3,108,0,327,571, | ||
5318 | 11,1,829,0,330, | ||
5319 | 1,-1,3,103,0, | ||
5320 | 327,3,104,0,327, | ||
5321 | 3,105,0,327,3, | ||
5322 | 106,0,327,3,107, | ||
5323 | 0,327,3,108,0, | ||
5324 | 327,572,11,1,829, | ||
5325 | 0,330,1,-1,3, | ||
5326 | 102,0,327,3,103, | ||
5327 | 0,327,3,104,0, | ||
5328 | 327,3,105,0,327, | ||
5329 | 3,106,0,327,3, | ||
5330 | 107,0,327,3,108, | ||
5331 | 0,327,573,11,1, | ||
5332 | 829,0,330,1,-1, | ||
5333 | 3,101,0,574,12, | ||
5334 | 1,29219,575,5,65, | ||
5335 | 3,109,0,576,12, | ||
5336 | 1,29247,577,5,63, | ||
5337 | 3,109,0,327,3, | ||
5338 | 110,0,327,3,111, | ||
5339 | 0,327,3,112,0, | ||
5340 | 327,3,113,0,327, | ||
5341 | 3,114,0,327,3, | ||
5342 | 115,0,327,3,116, | ||
5343 | 0,327,3,117,0, | ||
5344 | 327,3,118,0,327, | ||
5345 | 3,119,0,327,3, | ||
5346 | 120,0,327,3,121, | ||
5347 | 0,327,3,122,0, | ||
5348 | 327,3,48,0,327, | ||
5349 | 3,49,0,327,3, | ||
5350 | 50,0,327,3,51, | ||
5351 | 0,327,3,52,0, | ||
5352 | 327,3,53,0,327, | ||
5353 | 3,54,0,327,3, | ||
5354 | 55,0,327,3,56, | ||
5355 | 0,327,3,57,0, | ||
5356 | 327,3,65,0,327, | ||
5357 | 3,66,0,327,3, | ||
5358 | 67,0,327,3,68, | ||
5359 | 0,327,3,69,0, | ||
5360 | 327,3,70,0,327, | ||
5361 | 3,71,0,327,3, | ||
5362 | 72,0,327,3,73, | ||
5363 | 0,327,3,74,0, | ||
5364 | 327,3,75,0,327, | ||
5365 | 3,76,0,327,3, | ||
5366 | 77,0,327,3,78, | ||
5367 | 0,327,3,79,0, | ||
5368 | 327,3,80,0,327, | ||
5369 | 3,81,0,327,3, | ||
5370 | 82,0,327,3,83, | ||
5371 | 0,327,3,84,0, | ||
5372 | 327,3,85,0,327, | ||
5373 | 3,86,0,327,3, | ||
5374 | 87,0,327,3,88, | ||
5375 | 0,327,3,89,0, | ||
5376 | 327,3,90,0,327, | ||
5377 | 3,95,0,327,3, | ||
5378 | 97,0,578,12,1, | ||
5379 | 29290,579,5,63,3, | ||
5380 | 109,0,327,3,110, | ||
5381 | 0,327,3,111,0, | ||
5382 | 327,3,112,0,327, | ||
5383 | 3,113,0,327,3, | ||
5384 | 114,0,327,3,115, | ||
5385 | 0,327,3,116,0, | ||
5386 | 327,3,117,0,327, | ||
5387 | 3,118,0,327,3, | ||
5388 | 119,0,327,3,120, | ||
5389 | 0,327,3,121,0, | ||
5390 | 327,3,122,0,327, | ||
5391 | 3,48,0,327,3, | ||
5392 | 49,0,327,3,50, | ||
5393 | 0,327,3,51,0, | ||
5394 | 327,3,52,0,327, | ||
5395 | 3,53,0,327,3, | ||
5396 | 54,0,327,3,55, | ||
5397 | 0,327,3,56,0, | ||
5398 | 327,3,57,0,327, | ||
5399 | 3,65,0,327,3, | ||
5400 | 66,0,327,3,67, | ||
5401 | 0,327,3,68,0, | ||
5402 | 327,3,69,0,327, | ||
5403 | 3,70,0,327,3, | ||
5404 | 71,0,327,3,72, | ||
5405 | 0,327,3,73,0, | ||
5406 | 327,3,74,0,327, | ||
5407 | 3,75,0,327,3, | ||
5408 | 76,0,327,3,77, | ||
5409 | 0,327,3,78,0, | ||
5410 | 327,3,79,0,327, | ||
5411 | 3,80,0,327,3, | ||
5412 | 81,0,327,3,82, | ||
5413 | 0,327,3,83,0, | ||
5414 | 327,3,84,0,327, | ||
5415 | 3,85,0,327,3, | ||
5416 | 86,0,327,3,87, | ||
5417 | 0,327,3,88,0, | ||
5418 | 327,3,89,0,327, | ||
5419 | 3,90,0,327,3, | ||
5420 | 95,0,327,3,97, | ||
5421 | 0,327,3,98,0, | ||
5422 | 327,3,99,0,327, | ||
5423 | 3,100,0,327,3, | ||
5424 | 101,0,327,3,102, | ||
5425 | 0,327,3,103,0, | ||
5426 | 327,3,104,0,327, | ||
5427 | 3,105,0,580,12, | ||
5428 | 1,29341,581,5,63, | ||
5429 | 3,109,0,327,3, | ||
5430 | 110,0,327,3,111, | ||
5431 | 0,327,3,112,0, | ||
5432 | 327,3,113,0,327, | ||
5433 | 3,114,0,327,3, | ||
5434 | 115,0,327,3,116, | ||
5435 | 0,327,3,117,0, | ||
5436 | 327,3,118,0,327, | ||
5437 | 3,119,0,327,3, | ||
5438 | 120,0,327,3,121, | ||
5439 | 0,327,3,122,0, | ||
5440 | 327,3,48,0,327, | ||
5441 | 3,49,0,327,3, | ||
5442 | 50,0,327,3,51, | ||
5443 | 0,327,3,52,0, | ||
5444 | 327,3,53,0,327, | ||
5445 | 3,54,0,327,3, | ||
5446 | 55,0,327,3,56, | ||
5447 | 0,327,3,57,0, | ||
5448 | 327,3,65,0,327, | ||
5449 | 3,66,0,327,3, | ||
5450 | 67,0,327,3,68, | ||
5451 | 0,327,3,69,0, | ||
5452 | 327,3,70,0,327, | ||
5453 | 3,71,0,327,3, | ||
5454 | 72,0,327,3,73, | ||
5455 | 0,327,3,74,0, | ||
5456 | 327,3,75,0,327, | ||
5457 | 3,76,0,327,3, | ||
5458 | 77,0,327,3,78, | ||
5459 | 0,327,3,79,0, | ||
5460 | 327,3,80,0,327, | ||
5461 | 3,81,0,327,3, | ||
5462 | 82,0,327,3,83, | ||
5463 | 0,327,3,84,0, | ||
5464 | 327,3,85,0,327, | ||
5465 | 3,86,0,327,3, | ||
5466 | 87,0,327,3,88, | ||
5467 | 0,327,3,89,0, | ||
5468 | 327,3,90,0,327, | ||
5469 | 3,95,0,327,3, | ||
5470 | 97,0,327,3,98, | ||
5471 | 0,327,3,99,0, | ||
5472 | 327,3,100,0,327, | ||
5473 | 3,101,0,327,3, | ||
5474 | 102,0,327,3,103, | ||
5475 | 0,327,3,104,0, | ||
5476 | 327,3,105,0,327, | ||
5477 | 3,106,0,327,3, | ||
5478 | 107,0,327,3,108, | ||
5479 | 0,582,12,1,29395, | ||
5480 | 583,5,63,3,109, | ||
5481 | 0,327,3,110,0, | ||
5482 | 327,3,111,0,327, | ||
5483 | 3,112,0,327,3, | ||
5484 | 113,0,327,3,114, | ||
5485 | 0,327,3,115,0, | ||
5486 | 327,3,116,0,327, | ||
5487 | 3,117,0,327,3, | ||
5488 | 118,0,327,3,119, | ||
5489 | 0,327,3,120,0, | ||
5490 | 327,3,121,0,327, | ||
5491 | 3,122,0,327,3, | ||
5492 | 48,0,327,3,49, | ||
5493 | 0,327,3,50,0, | ||
5494 | 327,3,51,0,327, | ||
5495 | 3,52,0,327,3, | ||
5496 | 53,0,327,3,54, | ||
5497 | 0,327,3,55,0, | ||
5498 | 327,3,56,0,327, | ||
5499 | 3,57,0,327,3, | ||
5500 | 65,0,327,3,66, | ||
5501 | 0,327,3,67,0, | ||
5502 | 327,3,68,0,327, | ||
5503 | 3,69,0,327,3, | ||
5504 | 70,0,327,3,71, | ||
5505 | 0,327,3,72,0, | ||
5506 | 327,3,73,0,327, | ||
5507 | 3,74,0,327,3, | ||
5508 | 75,0,327,3,76, | ||
5509 | 0,327,3,77,0, | ||
5510 | 327,3,78,0,327, | ||
5511 | 3,79,0,327,3, | ||
5512 | 80,0,327,3,81, | ||
5513 | 0,327,3,82,0, | ||
5514 | 327,3,83,0,327, | ||
5515 | 3,84,0,327,3, | ||
5516 | 85,0,327,3,86, | ||
5517 | 0,327,3,87,0, | ||
5518 | 327,3,88,0,327, | ||
5519 | 3,89,0,327,3, | ||
5520 | 90,0,327,3,95, | ||
5521 | 0,327,3,97,0, | ||
5522 | 327,3,98,0,327, | ||
5523 | 3,99,0,327,3, | ||
5524 | 100,0,327,3,101, | ||
5525 | 0,327,3,102,0, | ||
5526 | 327,3,103,0,327, | ||
5527 | 3,104,0,327,3, | ||
5528 | 105,0,327,3,106, | ||
5529 | 0,327,3,107,0, | ||
5530 | 327,3,108,0,327, | ||
5531 | 584,11,1,475,0, | ||
5532 | 585,4,22,69,0, | ||
5533 | 77,0,65,0,73, | ||
5534 | 0,76,0,95,0, | ||
5535 | 69,0,86,0,69, | ||
5536 | 0,78,0,84,0, | ||
5537 | 1,-1,586,11,1, | ||
5538 | 829,0,330,1,-1, | ||
5539 | 3,106,0,327,3, | ||
5540 | 107,0,327,3,108, | ||
5541 | 0,327,587,11,1, | ||
5542 | 829,0,330,1,-1, | ||
5543 | 3,98,0,327,3, | ||
5544 | 99,0,327,3,100, | ||
5545 | 0,327,3,101,0, | ||
5546 | 327,3,102,0,327, | ||
5547 | 3,103,0,327,3, | ||
5548 | 104,0,327,3,105, | ||
5549 | 0,327,3,106,0, | ||
5550 | 327,3,107,0,327, | ||
5551 | 3,108,0,327,588, | ||
5552 | 11,1,829,0,330, | ||
5553 | 1,-1,3,110,0, | ||
5554 | 327,3,111,0,327, | ||
5555 | 3,112,0,327,3, | ||
5556 | 113,0,327,3,114, | ||
5557 | 0,327,3,115,0, | ||
5558 | 327,3,116,0,327, | ||
5559 | 3,117,0,327,3, | ||
5560 | 118,0,327,3,119, | ||
5561 | 0,327,3,120,0, | ||
5562 | 327,3,121,0,327, | ||
5563 | 3,122,0,327,3, | ||
5564 | 43,0,237,3,45, | ||
5565 | 0,237,3,48,0, | ||
5566 | 334,3,49,0,334, | ||
5567 | 3,50,0,334,3, | ||
5568 | 51,0,334,3,52, | ||
5569 | 0,334,3,53,0, | ||
5570 | 334,3,54,0,334, | ||
5571 | 3,55,0,334,3, | ||
5572 | 56,0,334,3,57, | ||
5573 | 0,334,3,65,0, | ||
5574 | 327,3,66,0,327, | ||
5575 | 3,67,0,327,3, | ||
5576 | 68,0,327,3,69, | ||
5577 | 0,327,3,70,0, | ||
5578 | 327,3,71,0,327, | ||
5579 | 3,72,0,327,3, | ||
5580 | 73,0,327,3,74, | ||
5581 | 0,327,3,75,0, | ||
5582 | 327,3,76,0,327, | ||
5583 | 3,77,0,327,3, | ||
5584 | 78,0,327,3,79, | ||
5585 | 0,327,3,80,0, | ||
5586 | 327,3,81,0,327, | ||
5587 | 3,82,0,327,3, | ||
5588 | 83,0,327,3,84, | ||
5589 | 0,327,3,85,0, | ||
5590 | 327,3,86,0,327, | ||
5591 | 3,87,0,327,3, | ||
5592 | 88,0,327,3,89, | ||
5593 | 0,327,3,90,0, | ||
5594 | 327,3,95,0,327, | ||
5595 | 3,97,0,327,3, | ||
5596 | 98,0,327,3,99, | ||
5597 | 0,327,3,100,0, | ||
5598 | 327,3,101,0,327, | ||
5599 | 3,102,0,327,3, | ||
5600 | 103,0,327,3,104, | ||
5601 | 0,327,3,105,0, | ||
5602 | 327,3,106,0,327, | ||
5603 | 3,107,0,327,3, | ||
5604 | 108,0,589,12,1, | ||
5605 | 29753,590,5,63,3, | ||
5606 | 109,0,327,3,110, | ||
5607 | 0,327,3,111,0, | ||
5608 | 327,3,112,0,327, | ||
5609 | 3,113,0,327,3, | ||
5610 | 114,0,327,3,115, | ||
5611 | 0,591,12,1,29787, | ||
5612 | 592,5,63,3,109, | ||
5613 | 0,327,3,110,0, | ||
5614 | 327,3,111,0,327, | ||
5615 | 3,112,0,327,3, | ||
5616 | 113,0,327,3,114, | ||
5617 | 0,327,3,115,0, | ||
5618 | 327,3,116,0,327, | ||
5619 | 3,117,0,327,3, | ||
5620 | 118,0,327,3,119, | ||
5621 | 0,327,3,120,0, | ||
5622 | 327,3,121,0,327, | ||
5623 | 3,122,0,327,3, | ||
5624 | 48,0,327,3,49, | ||
5625 | 0,327,3,50,0, | ||
5626 | 327,3,51,0,327, | ||
5627 | 3,52,0,327,3, | ||
5628 | 53,0,327,3,54, | ||
5629 | 0,327,3,55,0, | ||
5630 | 327,3,56,0,327, | ||
5631 | 3,57,0,327,3, | ||
5632 | 65,0,327,3,66, | ||
5633 | 0,327,3,67,0, | ||
5634 | 327,3,68,0,327, | ||
5635 | 3,69,0,327,3, | ||
5636 | 70,0,327,3,71, | ||
5637 | 0,327,3,72,0, | ||
5638 | 327,3,73,0,327, | ||
5639 | 3,74,0,327,3, | ||
5640 | 75,0,327,3,76, | ||
5641 | 0,327,3,77,0, | ||
5642 | 327,3,78,0,327, | ||
5643 | 3,79,0,327,3, | ||
5644 | 80,0,327,3,81, | ||
5645 | 0,327,3,82,0, | ||
5646 | 327,3,83,0,327, | ||
5647 | 3,84,0,327,3, | ||
5648 | 85,0,327,3,86, | ||
5649 | 0,327,3,87,0, | ||
5650 | 327,3,88,0,327, | ||
5651 | 3,89,0,327,3, | ||
5652 | 90,0,327,3,95, | ||
5653 | 0,327,3,97,0, | ||
5654 | 327,3,98,0,327, | ||
5655 | 3,99,0,327,3, | ||
5656 | 100,0,327,3,101, | ||
5657 | 0,593,12,1,29834, | ||
5658 | 594,5,63,3,109, | ||
5659 | 0,327,3,110,0, | ||
5660 | 327,3,111,0,327, | ||
5661 | 3,112,0,327,3, | ||
5662 | 113,0,327,3,114, | ||
5663 | 0,327,3,115,0, | ||
5664 | 327,3,116,0,327, | ||
5665 | 3,117,0,327,3, | ||
5666 | 118,0,327,3,119, | ||
5667 | 0,327,3,120,0, | ||
5668 | 327,3,121,0,327, | ||
5669 | 3,122,0,327,3, | ||
5670 | 48,0,327,3,49, | ||
5671 | 0,327,3,50,0, | ||
5672 | 327,3,51,0,327, | ||
5673 | 3,52,0,327,3, | ||
5674 | 53,0,327,3,54, | ||
5675 | 0,327,3,55,0, | ||
5676 | 327,3,56,0,327, | ||
5677 | 3,57,0,327,3, | ||
5678 | 65,0,327,3,66, | ||
5679 | 0,327,3,67,0, | ||
5680 | 327,3,68,0,327, | ||
5681 | 3,69,0,327,3, | ||
5682 | 70,0,327,3,71, | ||
5683 | 0,327,3,72,0, | ||
5684 | 327,3,73,0,327, | ||
5685 | 3,74,0,327,3, | ||
5686 | 75,0,327,3,76, | ||
5687 | 0,327,3,77,0, | ||
5688 | 327,3,78,0,327, | ||
5689 | 3,79,0,327,3, | ||
5690 | 80,0,327,3,81, | ||
5691 | 0,327,3,82,0, | ||
5692 | 327,3,83,0,327, | ||
5693 | 3,84,0,327,3, | ||
5694 | 85,0,327,3,86, | ||
5695 | 0,327,3,87,0, | ||
5696 | 327,3,88,0,327, | ||
5697 | 3,89,0,327,3, | ||
5698 | 90,0,327,3,95, | ||
5699 | 0,327,3,97,0, | ||
5700 | 327,3,98,0,327, | ||
5701 | 3,99,0,327,3, | ||
5702 | 100,0,327,3,101, | ||
5703 | 0,327,3,102,0, | ||
5704 | 327,3,103,0,327, | ||
5705 | 3,104,0,327,3, | ||
5706 | 105,0,327,3,106, | ||
5707 | 0,327,3,107,0, | ||
5708 | 327,3,108,0,327, | ||
5709 | 595,11,1,215,0, | ||
5710 | 596,4,8,69,0, | ||
5711 | 76,0,83,0,69, | ||
5712 | 0,1,-1,3,102, | ||
5713 | 0,327,3,103,0, | ||
5714 | 327,3,104,0,327, | ||
5715 | 3,105,0,327,3, | ||
5716 | 106,0,327,3,107, | ||
5717 | 0,327,3,108,0, | ||
5718 | 327,597,11,1,829, | ||
5719 | 0,330,1,-1,3, | ||
5720 | 116,0,327,3,117, | ||
5721 | 0,327,3,118,0, | ||
5722 | 327,3,119,0,327, | ||
5723 | 3,120,0,327,3, | ||
5724 | 121,0,327,3,122, | ||
5725 | 0,327,3,48,0, | ||
5726 | 327,3,49,0,327, | ||
5727 | 3,50,0,327,3, | ||
5728 | 51,0,327,3,52, | ||
5729 | 0,327,3,53,0, | ||
5730 | 327,3,54,0,327, | ||
5731 | 3,55,0,327,3, | ||
5732 | 56,0,327,3,57, | ||
5733 | 0,327,3,65,0, | ||
5734 | 327,3,66,0,327, | ||
5735 | 3,67,0,327,3, | ||
5736 | 68,0,327,3,69, | ||
5737 | 0,327,3,70,0, | ||
5738 | 327,3,71,0,327, | ||
5739 | 3,72,0,327,3, | ||
5740 | 73,0,327,3,74, | ||
5741 | 0,327,3,75,0, | ||
5742 | 327,3,76,0,327, | ||
5743 | 3,77,0,327,3, | ||
5744 | 78,0,327,3,79, | ||
5745 | 0,327,3,80,0, | ||
5746 | 327,3,81,0,327, | ||
5747 | 3,82,0,327,3, | ||
5748 | 83,0,327,3,84, | ||
5749 | 0,327,3,85,0, | ||
5750 | 327,3,86,0,327, | ||
5751 | 3,87,0,327,3, | ||
5752 | 88,0,327,3,89, | ||
5753 | 0,327,3,90,0, | ||
5754 | 327,3,95,0,327, | ||
5755 | 3,97,0,327,3, | ||
5756 | 98,0,327,3,99, | ||
5757 | 0,327,3,100,0, | ||
5758 | 327,3,101,0,327, | ||
5759 | 3,102,0,327,3, | ||
5760 | 103,0,327,3,104, | ||
5761 | 0,327,3,105,0, | ||
5762 | 327,3,106,0,327, | ||
5763 | 3,107,0,327,3, | ||
5764 | 108,0,327,598,11, | ||
5765 | 1,829,0,330,1, | ||
5766 | -1,599,11,1,829, | ||
5767 | 0,330,1,-1,3, | ||
5768 | 102,0,600,12,1, | ||
5769 | 30180,601,5,63,3, | ||
5770 | 109,0,327,3,110, | ||
5771 | 0,327,3,111,0, | ||
5772 | 602,12,1,30210,603, | ||
5773 | 5,63,3,109,0, | ||
5774 | 327,3,110,0,327, | ||
5775 | 3,111,0,327,3, | ||
5776 | 112,0,327,3,113, | ||
5777 | 0,327,3,114,0, | ||
5778 | 604,12,1,30243,605, | ||
5779 | 5,63,3,109,0, | ||
5780 | 327,3,110,0,327, | ||
5781 | 3,111,0,327,3, | ||
5782 | 112,0,327,3,113, | ||
5783 | 0,327,3,114,0, | ||
5784 | 327,3,115,0,327, | ||
5785 | 3,116,0,327,3, | ||
5786 | 117,0,327,3,118, | ||
5787 | 0,327,3,119,0, | ||
5788 | 327,3,120,0,327, | ||
5789 | 3,121,0,327,3, | ||
5790 | 122,0,327,3,48, | ||
5791 | 0,327,3,49,0, | ||
5792 | 327,3,50,0,327, | ||
5793 | 3,51,0,327,3, | ||
5794 | 52,0,327,3,53, | ||
5795 | 0,327,3,54,0, | ||
5796 | 327,3,55,0,327, | ||
5797 | 3,56,0,327,3, | ||
5798 | 57,0,327,3,65, | ||
5799 | 0,327,3,66,0, | ||
5800 | 327,3,67,0,327, | ||
5801 | 3,68,0,327,3, | ||
5802 | 69,0,327,3,70, | ||
5803 | 0,327,3,71,0, | ||
5804 | 327,3,72,0,327, | ||
5805 | 3,73,0,327,3, | ||
5806 | 74,0,327,3,75, | ||
5807 | 0,327,3,76,0, | ||
5808 | 327,3,77,0,327, | ||
5809 | 3,78,0,327,3, | ||
5810 | 79,0,327,3,80, | ||
5811 | 0,327,3,81,0, | ||
5812 | 327,3,82,0,327, | ||
5813 | 3,83,0,327,3, | ||
5814 | 84,0,327,3,85, | ||
5815 | 0,327,3,86,0, | ||
5816 | 327,3,87,0,327, | ||
5817 | 3,88,0,327,3, | ||
5818 | 89,0,327,3,90, | ||
5819 | 0,327,3,95,0, | ||
5820 | 327,3,97,0,327, | ||
5821 | 3,98,0,327,3, | ||
5822 | 99,0,327,3,100, | ||
5823 | 0,327,3,101,0, | ||
5824 | 327,3,102,0,327, | ||
5825 | 3,103,0,327,3, | ||
5826 | 104,0,327,3,105, | ||
5827 | 0,327,3,106,0, | ||
5828 | 327,3,107,0,327, | ||
5829 | 3,108,0,327,606, | ||
5830 | 11,1,238,0,607, | ||
5831 | 4,6,70,0,79, | ||
5832 | 0,82,0,1,-1, | ||
5833 | 3,115,0,327,3, | ||
5834 | 116,0,327,3,117, | ||
5835 | 0,327,3,118,0, | ||
5836 | 327,3,119,0,327, | ||
5837 | 3,120,0,327,3, | ||
5838 | 121,0,327,3,122, | ||
5839 | 0,327,3,48,0, | ||
5840 | 327,3,49,0,327, | ||
5841 | 3,50,0,327,3, | ||
5842 | 51,0,327,3,52, | ||
5843 | 0,327,3,53,0, | ||
5844 | 327,3,54,0,327, | ||
5845 | 3,55,0,327,3, | ||
5846 | 56,0,327,3,57, | ||
5847 | 0,327,3,65,0, | ||
5848 | 327,3,66,0,327, | ||
5849 | 3,67,0,327,3, | ||
5850 | 68,0,327,3,69, | ||
5851 | 0,327,3,70,0, | ||
5852 | 327,3,71,0,327, | ||
5853 | 3,72,0,327,3, | ||
5854 | 73,0,327,3,74, | ||
5855 | 0,327,3,75,0, | ||
5856 | 327,3,76,0,327, | ||
5857 | 3,77,0,327,3, | ||
5858 | 78,0,327,3,79, | ||
5859 | 0,327,3,80,0, | ||
5860 | 327,3,81,0,327, | ||
5861 | 3,82,0,327,3, | ||
5862 | 83,0,327,3,84, | ||
5863 | 0,327,3,85,0, | ||
5864 | 327,3,86,0,327, | ||
5865 | 3,87,0,327,3, | ||
5866 | 88,0,327,3,89, | ||
5867 | 0,327,3,90,0, | ||
5868 | 327,3,95,0,327, | ||
5869 | 3,97,0,327,3, | ||
5870 | 98,0,327,3,99, | ||
5871 | 0,327,3,100,0, | ||
5872 | 327,3,101,0,327, | ||
5873 | 3,102,0,327,3, | ||
5874 | 103,0,327,3,104, | ||
5875 | 0,327,3,105,0, | ||
5876 | 327,3,106,0,327, | ||
5877 | 3,107,0,327,3, | ||
5878 | 108,0,327,608,11, | ||
5879 | 1,829,0,330,1, | ||
5880 | -1,3,112,0,327, | ||
5881 | 3,113,0,327,3, | ||
5882 | 114,0,327,3,115, | ||
5883 | 0,327,3,116,0, | ||
5884 | 327,3,117,0,327, | ||
5885 | 3,118,0,327,3, | ||
5886 | 119,0,327,3,120, | ||
5887 | 0,327,3,121,0, | ||
5888 | 327,3,122,0,327, | ||
5889 | 3,48,0,327,3, | ||
5890 | 49,0,327,3,50, | ||
5891 | 0,327,3,51,0, | ||
5892 | 327,3,52,0,327, | ||
5893 | 3,53,0,327,3, | ||
5894 | 54,0,327,3,55, | ||
5895 | 0,327,3,56,0, | ||
5896 | 327,3,57,0,327, | ||
5897 | 3,65,0,327,3, | ||
5898 | 66,0,327,3,67, | ||
5899 | 0,327,3,68,0, | ||
5900 | 327,3,69,0,327, | ||
5901 | 3,70,0,327,3, | ||
5902 | 71,0,327,3,72, | ||
5903 | 0,327,3,73,0, | ||
5904 | 327,3,74,0,327, | ||
5905 | 3,75,0,327,3, | ||
5906 | 76,0,327,3,77, | ||
5907 | 0,327,3,78,0, | ||
5908 | 327,3,79,0,327, | ||
5909 | 3,80,0,327,3, | ||
5910 | 81,0,327,3,82, | ||
5911 | 0,327,3,83,0, | ||
5912 | 327,3,84,0,327, | ||
5913 | 3,85,0,327,3, | ||
5914 | 86,0,327,3,87, | ||
5915 | 0,327,3,88,0, | ||
5916 | 327,3,89,0,327, | ||
5917 | 3,90,0,327,3, | ||
5918 | 95,0,327,3,97, | ||
5919 | 0,327,3,98,0, | ||
5920 | 327,3,99,0,327, | ||
5921 | 3,100,0,327,3, | ||
5922 | 101,0,327,3,102, | ||
5923 | 0,327,3,103,0, | ||
5924 | 327,3,104,0,327, | ||
5925 | 3,105,0,327,3, | ||
5926 | 106,0,327,3,107, | ||
5927 | 0,327,3,108,0, | ||
5928 | 609,12,1,30474,610, | ||
5929 | 5,63,3,109,0, | ||
5930 | 327,3,110,0,327, | ||
5931 | 3,111,0,611,12, | ||
5932 | 1,30504,612,5,63, | ||
5933 | 3,109,0,327,3, | ||
5934 | 110,0,327,3,111, | ||
5935 | 0,327,3,112,0, | ||
5936 | 327,3,113,0,327, | ||
5937 | 3,114,0,327,3, | ||
5938 | 115,0,327,3,116, | ||
5939 | 0,327,3,117,0, | ||
5940 | 327,3,118,0,327, | ||
5941 | 3,119,0,327,3, | ||
5942 | 120,0,327,3,121, | ||
5943 | 0,327,3,122,0, | ||
5944 | 327,3,48,0,327, | ||
5945 | 3,49,0,327,3, | ||
5946 | 50,0,327,3,51, | ||
5947 | 0,327,3,52,0, | ||
5948 | 327,3,53,0,327, | ||
5949 | 3,54,0,327,3, | ||
5950 | 55,0,327,3,56, | ||
5951 | 0,327,3,57,0, | ||
5952 | 327,3,65,0,327, | ||
5953 | 3,66,0,327,3, | ||
5954 | 67,0,327,3,68, | ||
5955 | 0,327,3,69,0, | ||
5956 | 327,3,70,0,327, | ||
5957 | 3,71,0,327,3, | ||
5958 | 72,0,327,3,73, | ||
5959 | 0,327,3,74,0, | ||
5960 | 327,3,75,0,327, | ||
5961 | 3,76,0,327,3, | ||
5962 | 77,0,327,3,78, | ||
5963 | 0,327,3,79,0, | ||
5964 | 327,3,80,0,327, | ||
5965 | 3,81,0,327,3, | ||
5966 | 82,0,327,3,83, | ||
5967 | 0,327,3,84,0, | ||
5968 | 327,3,85,0,327, | ||
5969 | 3,86,0,327,3, | ||
5970 | 87,0,327,3,88, | ||
5971 | 0,327,3,89,0, | ||
5972 | 327,3,90,0,327, | ||
5973 | 3,95,0,327,3, | ||
5974 | 97,0,613,12,1, | ||
5975 | 30547,614,5,63,3, | ||
5976 | 109,0,327,3,110, | ||
5977 | 0,327,3,111,0, | ||
5978 | 327,3,112,0,327, | ||
5979 | 3,113,0,327,3, | ||
5980 | 114,0,327,3,115, | ||
5981 | 0,327,3,116,0, | ||
5982 | 615,12,1,30582,616, | ||
5983 | 5,63,3,109,0, | ||
5984 | 327,3,110,0,327, | ||
5985 | 3,111,0,327,3, | ||
5986 | 112,0,327,3,113, | ||
5987 | 0,327,3,114,0, | ||
5988 | 327,3,115,0,327, | ||
5989 | 3,116,0,327,3, | ||
5990 | 117,0,327,3,118, | ||
5991 | 0,327,3,119,0, | ||
5992 | 327,3,120,0,327, | ||
5993 | 3,121,0,327,3, | ||
5994 | 122,0,327,3,48, | ||
5995 | 0,327,3,49,0, | ||
5996 | 327,3,50,0,327, | ||
5997 | 3,51,0,327,3, | ||
5998 | 52,0,327,3,53, | ||
5999 | 0,327,3,54,0, | ||
6000 | 327,3,55,0,327, | ||
6001 | 3,56,0,327,3, | ||
6002 | 57,0,327,3,65, | ||
6003 | 0,327,3,66,0, | ||
6004 | 327,3,67,0,327, | ||
6005 | 3,68,0,327,3, | ||
6006 | 69,0,327,3,70, | ||
6007 | 0,327,3,71,0, | ||
6008 | 327,3,72,0,327, | ||
6009 | 3,73,0,327,3, | ||
6010 | 74,0,327,3,75, | ||
6011 | 0,327,3,76,0, | ||
6012 | 327,3,77,0,327, | ||
6013 | 3,78,0,327,3, | ||
6014 | 79,0,327,3,80, | ||
6015 | 0,327,3,81,0, | ||
6016 | 327,3,82,0,327, | ||
6017 | 3,83,0,327,3, | ||
6018 | 84,0,327,3,85, | ||
6019 | 0,327,3,86,0, | ||
6020 | 327,3,87,0,327, | ||
6021 | 3,88,0,327,3, | ||
6022 | 89,0,327,3,90, | ||
6023 | 0,327,3,95,0, | ||
6024 | 327,3,97,0,327, | ||
6025 | 3,98,0,327,3, | ||
6026 | 99,0,327,3,100, | ||
6027 | 0,327,3,101,0, | ||
6028 | 327,3,102,0,327, | ||
6029 | 3,103,0,327,3, | ||
6030 | 104,0,327,3,105, | ||
6031 | 0,327,3,106,0, | ||
6032 | 327,3,107,0,327, | ||
6033 | 3,108,0,327,617, | ||
6034 | 11,1,294,0,618, | ||
6035 | 4,20,70,0,76, | ||
6036 | 0,79,0,65,0, | ||
6037 | 84,0,95,0,84, | ||
6038 | 0,89,0,80,0, | ||
6039 | 69,0,1,-1,3, | ||
6040 | 117,0,327,3,118, | ||
6041 | 0,327,3,119,0, | ||
6042 | 327,3,120,0,327, | ||
6043 | 3,121,0,327,3, | ||
6044 | 122,0,327,3,48, | ||
6045 | 0,327,3,49,0, | ||
6046 | 327,3,50,0,327, | ||
6047 | 3,51,0,327,3, | ||
6048 | 52,0,327,3,53, | ||
6049 | 0,327,3,54,0, | ||
6050 | 327,3,55,0,327, | ||
6051 | 3,56,0,327,3, | ||
6052 | 57,0,327,3,65, | ||
6053 | 0,327,3,66,0, | ||
6054 | 327,3,67,0,327, | ||
6055 | 3,68,0,327,3, | ||
6056 | 69,0,327,3,70, | ||
6057 | 0,327,3,71,0, | ||
6058 | 327,3,72,0,327, | ||
6059 | 3,73,0,327,3, | ||
6060 | 74,0,327,3,75, | ||
6061 | 0,327,3,76,0, | ||
6062 | 327,3,77,0,327, | ||
6063 | 3,78,0,327,3, | ||
6064 | 79,0,327,3,80, | ||
6065 | 0,327,3,81,0, | ||
6066 | 327,3,82,0,327, | ||
6067 | 3,83,0,327,3, | ||
6068 | 84,0,327,3,85, | ||
6069 | 0,327,3,86,0, | ||
6070 | 327,3,87,0,327, | ||
6071 | 3,88,0,327,3, | ||
6072 | 89,0,327,3,90, | ||
6073 | 0,327,3,95,0, | ||
6074 | 327,3,97,0,327, | ||
6075 | 3,98,0,327,3, | ||
6076 | 99,0,327,3,100, | ||
6077 | 0,327,3,101,0, | ||
6078 | 327,3,102,0,327, | ||
6079 | 3,103,0,327,3, | ||
6080 | 104,0,327,3,105, | ||
6081 | 0,327,3,106,0, | ||
6082 | 327,3,107,0,327, | ||
6083 | 3,108,0,327,619, | ||
6084 | 11,1,829,0,330, | ||
6085 | 1,-1,3,98,0, | ||
6086 | 327,3,99,0,327, | ||
6087 | 3,100,0,327,3, | ||
6088 | 101,0,327,3,102, | ||
6089 | 0,327,3,103,0, | ||
6090 | 327,3,104,0,327, | ||
6091 | 3,105,0,327,3, | ||
6092 | 106,0,327,3,107, | ||
6093 | 0,327,3,108,0, | ||
6094 | 327,620,11,1,829, | ||
6095 | 0,330,1,-1,3, | ||
6096 | 112,0,327,3,113, | ||
6097 | 0,327,3,114,0, | ||
6098 | 327,3,115,0,327, | ||
6099 | 3,116,0,327,3, | ||
6100 | 117,0,327,3,118, | ||
6101 | 0,327,3,119,0, | ||
6102 | 327,3,120,0,327, | ||
6103 | 3,121,0,327,3, | ||
6104 | 122,0,327,3,48, | ||
6105 | 0,327,3,49,0, | ||
6106 | 327,3,50,0,327, | ||
6107 | 3,51,0,327,3, | ||
6108 | 52,0,327,3,53, | ||
6109 | 0,327,3,54,0, | ||
6110 | 327,3,55,0,327, | ||
6111 | 3,56,0,327,3, | ||
6112 | 57,0,327,3,65, | ||
6113 | 0,327,3,66,0, | ||
6114 | 327,3,67,0,327, | ||
6115 | 3,68,0,327,3, | ||
6116 | 69,0,327,3,70, | ||
6117 | 0,327,3,71,0, | ||
6118 | 327,3,72,0,327, | ||
6119 | 3,73,0,327,3, | ||
6120 | 74,0,327,3,75, | ||
6121 | 0,327,3,76,0, | ||
6122 | 327,3,77,0,327, | ||
6123 | 3,78,0,327,3, | ||
6124 | 79,0,327,3,80, | ||
6125 | 0,327,3,81,0, | ||
6126 | 327,3,82,0,327, | ||
6127 | 3,83,0,327,3, | ||
6128 | 84,0,327,3,85, | ||
6129 | 0,327,3,86,0, | ||
6130 | 327,3,87,0,327, | ||
6131 | 3,88,0,327,3, | ||
6132 | 89,0,327,3,90, | ||
6133 | 0,327,3,95,0, | ||
6134 | 327,3,97,0,327, | ||
6135 | 3,98,0,327,3, | ||
6136 | 99,0,327,3,100, | ||
6137 | 0,327,3,101,0, | ||
6138 | 327,3,102,0,327, | ||
6139 | 3,103,0,327,3, | ||
6140 | 104,0,327,3,105, | ||
6141 | 0,327,3,106,0, | ||
6142 | 327,3,107,0,327, | ||
6143 | 3,108,0,327,621, | ||
6144 | 11,1,829,0,330, | ||
6145 | 1,-1,622,11,1, | ||
6146 | 829,0,330,1,-1, | ||
6147 | 3,103,0,325,3, | ||
6148 | 104,0,623,12,1, | ||
6149 | 31022,624,5,63,3, | ||
6150 | 109,0,327,3,110, | ||
6151 | 0,327,3,111,0, | ||
6152 | 327,3,112,0,327, | ||
6153 | 3,113,0,327,3, | ||
6154 | 114,0,327,3,115, | ||
6155 | 0,327,3,116,0, | ||
6156 | 625,12,1,31057,626, | ||
6157 | 5,63,3,109,0, | ||
6158 | 327,3,110,0,327, | ||
6159 | 3,111,0,327,3, | ||
6160 | 112,0,327,3,113, | ||
6161 | 0,327,3,114,0, | ||
6162 | 327,3,115,0,327, | ||
6163 | 3,116,0,627,12, | ||
6164 | 1,31092,628,5,63, | ||
6165 | 3,109,0,327,3, | ||
6166 | 110,0,327,3,111, | ||
6167 | 0,327,3,112,0, | ||
6168 | 629,12,1,31123,630, | ||
6169 | 5,63,3,109,0, | ||
6170 | 327,3,110,0,327, | ||
6171 | 3,111,0,327,3, | ||
6172 | 112,0,327,3,113, | ||
6173 | 0,327,3,114,0, | ||
6174 | 327,3,115,0,327, | ||
6175 | 3,116,0,327,3, | ||
6176 | 117,0,327,3,118, | ||
6177 | 0,327,3,119,0, | ||
6178 | 327,3,120,0,327, | ||
6179 | 3,121,0,327,3, | ||
6180 | 122,0,327,3,48, | ||
6181 | 0,327,3,49,0, | ||
6182 | 327,3,50,0,327, | ||
6183 | 3,51,0,327,3, | ||
6184 | 52,0,327,3,53, | ||
6185 | 0,327,3,54,0, | ||
6186 | 327,3,55,0,327, | ||
6187 | 3,56,0,327,3, | ||
6188 | 57,0,327,3,65, | ||
6189 | 0,327,3,66,0, | ||
6190 | 327,3,67,0,327, | ||
6191 | 3,68,0,327,3, | ||
6192 | 69,0,327,3,70, | ||
6193 | 0,327,3,71,0, | ||
6194 | 327,3,72,0,327, | ||
6195 | 3,73,0,327,3, | ||
6196 | 74,0,327,3,75, | ||
6197 | 0,327,3,76,0, | ||
6198 | 327,3,77,0,327, | ||
6199 | 3,78,0,327,3, | ||
6200 | 79,0,327,3,80, | ||
6201 | 0,327,3,81,0, | ||
6202 | 327,3,82,0,327, | ||
6203 | 3,83,0,327,3, | ||
6204 | 84,0,327,3,85, | ||
6205 | 0,327,3,86,0, | ||
6206 | 327,3,87,0,327, | ||
6207 | 3,88,0,327,3, | ||
6208 | 89,0,327,3,90, | ||
6209 | 0,327,3,95,0, | ||
6210 | 631,12,1,31209,632, | ||
6211 | 5,63,3,109,0, | ||
6212 | 327,3,110,0,327, | ||
6213 | 3,111,0,327,3, | ||
6214 | 112,0,327,3,113, | ||
6215 | 0,327,3,114,0, | ||
6216 | 633,12,1,31242,634, | ||
6217 | 5,63,3,109,0, | ||
6218 | 327,3,110,0,327, | ||
6219 | 3,111,0,327,3, | ||
6220 | 112,0,327,3,113, | ||
6221 | 0,327,3,114,0, | ||
6222 | 327,3,115,0,327, | ||
6223 | 3,116,0,327,3, | ||
6224 | 117,0,327,3,118, | ||
6225 | 0,327,3,119,0, | ||
6226 | 327,3,120,0,327, | ||
6227 | 3,121,0,327,3, | ||
6228 | 122,0,327,3,48, | ||
6229 | 0,327,3,49,0, | ||
6230 | 327,3,50,0,327, | ||
6231 | 3,51,0,327,3, | ||
6232 | 52,0,327,3,53, | ||
6233 | 0,327,3,54,0, | ||
6234 | 327,3,55,0,327, | ||
6235 | 3,56,0,327,3, | ||
6236 | 57,0,327,3,65, | ||
6237 | 0,327,3,66,0, | ||
6238 | 327,3,67,0,327, | ||
6239 | 3,68,0,327,3, | ||
6240 | 69,0,327,3,70, | ||
6241 | 0,327,3,71,0, | ||
6242 | 327,3,72,0,327, | ||
6243 | 3,73,0,327,3, | ||
6244 | 74,0,327,3,75, | ||
6245 | 0,327,3,76,0, | ||
6246 | 327,3,77,0,327, | ||
6247 | 3,78,0,327,3, | ||
6248 | 79,0,327,3,80, | ||
6249 | 0,327,3,81,0, | ||
6250 | 327,3,82,0,327, | ||
6251 | 3,83,0,327,3, | ||
6252 | 84,0,327,3,85, | ||
6253 | 0,327,3,86,0, | ||
6254 | 327,3,87,0,327, | ||
6255 | 3,88,0,327,3, | ||
6256 | 89,0,327,3,90, | ||
6257 | 0,327,3,95,0, | ||
6258 | 327,3,97,0,327, | ||
6259 | 3,98,0,327,3, | ||
6260 | 99,0,327,3,100, | ||
6261 | 0,327,3,101,0, | ||
6262 | 635,12,1,31289,636, | ||
6263 | 5,63,3,109,0, | ||
6264 | 327,3,110,0,327, | ||
6265 | 3,111,0,327,3, | ||
6266 | 112,0,327,3,113, | ||
6267 | 0,327,3,114,0, | ||
6268 | 327,3,115,0,637, | ||
6269 | 12,1,31323,638,5, | ||
6270 | 63,3,109,0,327, | ||
6271 | 3,110,0,327,3, | ||
6272 | 111,0,327,3,112, | ||
6273 | 0,639,12,1,31354, | ||
6274 | 640,5,63,3,109, | ||
6275 | 0,327,3,110,0, | ||
6276 | 327,3,111,0,641, | ||
6277 | 12,1,31384,642,5, | ||
6278 | 63,3,109,0,327, | ||
6279 | 3,110,0,643,12, | ||
6280 | 1,31413,644,5,63, | ||
6281 | 3,109,0,327,3, | ||
6282 | 110,0,327,3,111, | ||
6283 | 0,327,3,112,0, | ||
6284 | 327,3,113,0,327, | ||
6285 | 3,114,0,327,3, | ||
6286 | 115,0,645,12,1, | ||
6287 | 31447,646,5,63,3, | ||
6288 | 109,0,327,3,110, | ||
6289 | 0,327,3,111,0, | ||
6290 | 327,3,112,0,327, | ||
6291 | 3,113,0,327,3, | ||
6292 | 114,0,327,3,115, | ||
6293 | 0,327,3,116,0, | ||
6294 | 327,3,117,0,327, | ||
6295 | 3,118,0,327,3, | ||
6296 | 119,0,327,3,120, | ||
6297 | 0,327,3,121,0, | ||
6298 | 327,3,122,0,327, | ||
6299 | 3,48,0,327,3, | ||
6300 | 49,0,327,3,50, | ||
6301 | 0,327,3,51,0, | ||
6302 | 327,3,52,0,327, | ||
6303 | 3,53,0,327,3, | ||
6304 | 54,0,327,3,55, | ||
6305 | 0,327,3,56,0, | ||
6306 | 327,3,57,0,327, | ||
6307 | 3,65,0,327,3, | ||
6308 | 66,0,327,3,67, | ||
6309 | 0,327,3,68,0, | ||
6310 | 327,3,69,0,327, | ||
6311 | 3,70,0,327,3, | ||
6312 | 71,0,327,3,72, | ||
6313 | 0,327,3,73,0, | ||
6314 | 327,3,74,0,327, | ||
6315 | 3,75,0,327,3, | ||
6316 | 76,0,327,3,77, | ||
6317 | 0,327,3,78,0, | ||
6318 | 327,3,79,0,327, | ||
6319 | 3,80,0,327,3, | ||
6320 | 81,0,327,3,82, | ||
6321 | 0,327,3,83,0, | ||
6322 | 327,3,84,0,327, | ||
6323 | 3,85,0,327,3, | ||
6324 | 86,0,327,3,87, | ||
6325 | 0,327,3,88,0, | ||
6326 | 327,3,89,0,327, | ||
6327 | 3,90,0,327,3, | ||
6328 | 95,0,327,3,97, | ||
6329 | 0,327,3,98,0, | ||
6330 | 327,3,99,0,327, | ||
6331 | 3,100,0,327,3, | ||
6332 | 101,0,647,12,1, | ||
6333 | 31494,648,5,63,3, | ||
6334 | 109,0,327,3,110, | ||
6335 | 0,327,3,111,0, | ||
6336 | 327,3,112,0,327, | ||
6337 | 3,113,0,327,3, | ||
6338 | 114,0,327,3,115, | ||
6339 | 0,327,3,116,0, | ||
6340 | 327,3,117,0,327, | ||
6341 | 3,118,0,327,3, | ||
6342 | 119,0,327,3,120, | ||
6343 | 0,327,3,121,0, | ||
6344 | 327,3,122,0,327, | ||
6345 | 3,48,0,327,3, | ||
6346 | 49,0,327,3,50, | ||
6347 | 0,327,3,51,0, | ||
6348 | 327,3,52,0,327, | ||
6349 | 3,53,0,327,3, | ||
6350 | 54,0,327,3,55, | ||
6351 | 0,327,3,56,0, | ||
6352 | 327,3,57,0,327, | ||
6353 | 3,65,0,327,3, | ||
6354 | 66,0,327,3,67, | ||
6355 | 0,327,3,68,0, | ||
6356 | 327,3,69,0,327, | ||
6357 | 3,70,0,327,3, | ||
6358 | 71,0,327,3,72, | ||
6359 | 0,327,3,73,0, | ||
6360 | 327,3,74,0,327, | ||
6361 | 3,75,0,327,3, | ||
6362 | 76,0,327,3,77, | ||
6363 | 0,327,3,78,0, | ||
6364 | 327,3,79,0,327, | ||
6365 | 3,80,0,327,3, | ||
6366 | 81,0,327,3,82, | ||
6367 | 0,327,3,83,0, | ||
6368 | 327,3,84,0,327, | ||
6369 | 3,85,0,327,3, | ||
6370 | 86,0,327,3,87, | ||
6371 | 0,327,3,88,0, | ||
6372 | 327,3,89,0,327, | ||
6373 | 3,90,0,327,3, | ||
6374 | 95,0,327,3,97, | ||
6375 | 0,327,3,98,0, | ||
6376 | 327,3,99,0,327, | ||
6377 | 3,100,0,327,3, | ||
6378 | 101,0,327,3,102, | ||
6379 | 0,327,3,103,0, | ||
6380 | 327,3,104,0,327, | ||
6381 | 3,105,0,327,3, | ||
6382 | 106,0,327,3,107, | ||
6383 | 0,327,3,108,0, | ||
6384 | 327,649,11,1,484, | ||
6385 | 0,650,4,38,72, | ||
6386 | 0,84,0,84,0, | ||
6387 | 80,0,95,0,82, | ||
6388 | 0,69,0,83,0, | ||
6389 | 80,0,79,0,78, | ||
6390 | 0,83,0,69,0, | ||
6391 | 95,0,69,0,86, | ||
6392 | 0,69,0,78,0, | ||
6393 | 84,0,1,-1,3, | ||
6394 | 102,0,327,3,103, | ||
6395 | 0,327,3,104,0, | ||
6396 | 327,3,105,0,327, | ||
6397 | 3,106,0,327,3, | ||
6398 | 107,0,327,3,108, | ||
6399 | 0,327,651,11,1, | ||
6400 | 829,0,330,1,-1, | ||
6401 | 3,116,0,327,3, | ||
6402 | 117,0,327,3,118, | ||
6403 | 0,327,3,119,0, | ||
6404 | 327,3,120,0,327, | ||
6405 | 3,121,0,327,3, | ||
6406 | 122,0,327,3,48, | ||
6407 | 0,327,3,49,0, | ||
6408 | 327,3,50,0,327, | ||
6409 | 3,51,0,327,3, | ||
6410 | 52,0,327,3,53, | ||
6411 | 0,327,3,54,0, | ||
6412 | 327,3,55,0,327, | ||
6413 | 3,56,0,327,3, | ||
6414 | 57,0,327,3,65, | ||
6415 | 0,327,3,66,0, | ||
6416 | 327,3,67,0,327, | ||
6417 | 3,68,0,327,3, | ||
6418 | 69,0,327,3,70, | ||
6419 | 0,327,3,71,0, | ||
6420 | 327,3,72,0,327, | ||
6421 | 3,73,0,327,3, | ||
6422 | 74,0,327,3,75, | ||
6423 | 0,327,3,76,0, | ||
6424 | 327,3,77,0,327, | ||
6425 | 3,78,0,327,3, | ||
6426 | 79,0,327,3,80, | ||
6427 | 0,327,3,81,0, | ||
6428 | 327,3,82,0,327, | ||
6429 | 3,83,0,327,3, | ||
6430 | 84,0,327,3,85, | ||
6431 | 0,327,3,86,0, | ||
6432 | 327,3,87,0,327, | ||
6433 | 3,88,0,327,3, | ||
6434 | 89,0,327,3,90, | ||
6435 | 0,327,3,95,0, | ||
6436 | 327,3,97,0,327, | ||
6437 | 3,98,0,327,3, | ||
6438 | 99,0,327,3,100, | ||
6439 | 0,327,3,101,0, | ||
6440 | 327,3,102,0,327, | ||
6441 | 3,103,0,327,3, | ||
6442 | 104,0,327,3,105, | ||
6443 | 0,327,3,106,0, | ||
6444 | 327,3,107,0,327, | ||
6445 | 3,108,0,327,652, | ||
6446 | 11,1,829,0,330, | ||
6447 | 1,-1,3,111,0, | ||
6448 | 327,3,112,0,327, | ||
6449 | 3,113,0,327,3, | ||
6450 | 114,0,327,3,115, | ||
6451 | 0,327,3,116,0, | ||
6452 | 327,3,117,0,327, | ||
6453 | 3,118,0,327,3, | ||
6454 | 119,0,327,3,120, | ||
6455 | 0,327,3,121,0, | ||
6456 | 327,3,122,0,327, | ||
6457 | 3,48,0,327,3, | ||
6458 | 49,0,327,3,50, | ||
6459 | 0,327,3,51,0, | ||
6460 | 327,3,52,0,327, | ||
6461 | 3,53,0,327,3, | ||
6462 | 54,0,327,3,55, | ||
6463 | 0,327,3,56,0, | ||
6464 | 327,3,57,0,327, | ||
6465 | 3,65,0,327,3, | ||
6466 | 66,0,327,3,67, | ||
6467 | 0,327,3,68,0, | ||
6468 | 327,3,69,0,327, | ||
6469 | 3,70,0,327,3, | ||
6470 | 71,0,327,3,72, | ||
6471 | 0,327,3,73,0, | ||
6472 | 327,3,74,0,327, | ||
6473 | 3,75,0,327,3, | ||
6474 | 76,0,327,3,77, | ||
6475 | 0,327,3,78,0, | ||
6476 | 327,3,79,0,327, | ||
6477 | 3,80,0,327,3, | ||
6478 | 81,0,327,3,82, | ||
6479 | 0,327,3,83,0, | ||
6480 | 327,3,84,0,327, | ||
6481 | 3,85,0,327,3, | ||
6482 | 86,0,327,3,87, | ||
6483 | 0,327,3,88,0, | ||
6484 | 327,3,89,0,327, | ||
6485 | 3,90,0,327,3, | ||
6486 | 95,0,327,3,97, | ||
6487 | 0,327,3,98,0, | ||
6488 | 327,3,99,0,327, | ||
6489 | 3,100,0,327,3, | ||
6490 | 101,0,327,3,102, | ||
6491 | 0,327,3,103,0, | ||
6492 | 327,3,104,0,327, | ||
6493 | 3,105,0,327,3, | ||
6494 | 106,0,327,3,107, | ||
6495 | 0,327,3,108,0, | ||
6496 | 327,653,11,1,829, | ||
6497 | 0,330,1,-1,3, | ||
6498 | 112,0,327,3,113, | ||
6499 | 0,327,3,114,0, | ||
6500 | 327,3,115,0,327, | ||
6501 | 3,116,0,327,3, | ||
6502 | 117,0,327,3,118, | ||
6503 | 0,327,3,119,0, | ||
6504 | 327,3,120,0,327, | ||
6505 | 3,121,0,327,3, | ||
6506 | 122,0,327,3,48, | ||
6507 | 0,327,3,49,0, | ||
6508 | 327,3,50,0,327, | ||
6509 | 3,51,0,327,3, | ||
6510 | 52,0,327,3,53, | ||
6511 | 0,327,3,54,0, | ||
6512 | 327,3,55,0,327, | ||
6513 | 3,56,0,327,3, | ||
6514 | 57,0,327,3,65, | ||
6515 | 0,327,3,66,0, | ||
6516 | 327,3,67,0,327, | ||
6517 | 3,68,0,327,3, | ||
6518 | 69,0,327,3,70, | ||
6519 | 0,327,3,71,0, | ||
6520 | 327,3,72,0,327, | ||
6521 | 3,73,0,327,3, | ||
6522 | 74,0,327,3,75, | ||
6523 | 0,327,3,76,0, | ||
6524 | 327,3,77,0,327, | ||
6525 | 3,78,0,327,3, | ||
6526 | 79,0,327,3,80, | ||
6527 | 0,327,3,81,0, | ||
6528 | 327,3,82,0,327, | ||
6529 | 3,83,0,327,3, | ||
6530 | 84,0,327,3,85, | ||
6531 | 0,327,3,86,0, | ||
6532 | 327,3,87,0,327, | ||
6533 | 3,88,0,327,3, | ||
6534 | 89,0,327,3,90, | ||
6535 | 0,327,3,95,0, | ||
6536 | 327,3,97,0,327, | ||
6537 | 3,98,0,327,3, | ||
6538 | 99,0,327,3,100, | ||
6539 | 0,327,3,101,0, | ||
6540 | 327,3,102,0,327, | ||
6541 | 3,103,0,327,3, | ||
6542 | 104,0,327,3,105, | ||
6543 | 0,327,3,106,0, | ||
6544 | 327,3,107,0,327, | ||
6545 | 3,108,0,327,654, | ||
6546 | 11,1,829,0,330, | ||
6547 | 1,-1,3,113,0, | ||
6548 | 327,3,114,0,327, | ||
6549 | 3,115,0,327,3, | ||
6550 | 116,0,327,3,117, | ||
6551 | 0,327,3,118,0, | ||
6552 | 327,3,119,0,327, | ||
6553 | 3,120,0,327,3, | ||
6554 | 121,0,327,3,122, | ||
6555 | 0,327,3,48,0, | ||
6556 | 327,3,49,0,327, | ||
6557 | 3,50,0,327,3, | ||
6558 | 51,0,327,3,52, | ||
6559 | 0,327,3,53,0, | ||
6560 | 327,3,54,0,327, | ||
6561 | 3,55,0,327,3, | ||
6562 | 56,0,327,3,57, | ||
6563 | 0,327,3,65,0, | ||
6564 | 327,3,66,0,327, | ||
6565 | 3,67,0,327,3, | ||
6566 | 68,0,327,3,69, | ||
6567 | 0,327,3,70,0, | ||
6568 | 327,3,71,0,327, | ||
6569 | 3,72,0,327,3, | ||
6570 | 73,0,327,3,74, | ||
6571 | 0,327,3,75,0, | ||
6572 | 327,3,76,0,327, | ||
6573 | 3,77,0,327,3, | ||
6574 | 78,0,327,3,79, | ||
6575 | 0,327,3,80,0, | ||
6576 | 327,3,81,0,327, | ||
6577 | 3,82,0,327,3, | ||
6578 | 83,0,327,3,84, | ||
6579 | 0,327,3,85,0, | ||
6580 | 327,3,86,0,327, | ||
6581 | 3,87,0,327,3, | ||
6582 | 88,0,327,3,89, | ||
6583 | 0,327,3,90,0, | ||
6584 | 327,3,95,0,327, | ||
6585 | 3,97,0,327,3, | ||
6586 | 98,0,327,3,99, | ||
6587 | 0,327,3,100,0, | ||
6588 | 327,3,101,0,327, | ||
6589 | 3,102,0,327,3, | ||
6590 | 103,0,327,3,104, | ||
6591 | 0,327,3,105,0, | ||
6592 | 327,3,106,0,327, | ||
6593 | 3,107,0,327,3, | ||
6594 | 108,0,327,655,11, | ||
6595 | 1,829,0,330,1, | ||
6596 | -1,3,116,0,327, | ||
6597 | 3,117,0,327,3, | ||
6598 | 118,0,327,3,119, | ||
6599 | 0,327,3,120,0, | ||
6600 | 327,3,121,0,327, | ||
6601 | 3,122,0,327,3, | ||
6602 | 48,0,327,3,49, | ||
6603 | 0,327,3,50,0, | ||
6604 | 327,3,51,0,327, | ||
6605 | 3,52,0,327,3, | ||
6606 | 53,0,327,3,54, | ||
6607 | 0,327,3,55,0, | ||
6608 | 327,3,56,0,327, | ||
6609 | 3,57,0,327,3, | ||
6610 | 65,0,327,3,66, | ||
6611 | 0,327,3,67,0, | ||
6612 | 327,3,68,0,327, | ||
6613 | 3,69,0,327,3, | ||
6614 | 70,0,327,3,71, | ||
6615 | 0,327,3,72,0, | ||
6616 | 327,3,73,0,327, | ||
6617 | 3,74,0,327,3, | ||
6618 | 75,0,327,3,76, | ||
6619 | 0,327,3,77,0, | ||
6620 | 327,3,78,0,327, | ||
6621 | 3,79,0,327,3, | ||
6622 | 80,0,327,3,81, | ||
6623 | 0,327,3,82,0, | ||
6624 | 327,3,83,0,327, | ||
6625 | 3,84,0,327,3, | ||
6626 | 85,0,327,3,86, | ||
6627 | 0,327,3,87,0, | ||
6628 | 327,3,88,0,327, | ||
6629 | 3,89,0,327,3, | ||
6630 | 90,0,327,3,95, | ||
6631 | 0,327,3,97,0, | ||
6632 | 327,3,98,0,327, | ||
6633 | 3,99,0,327,3, | ||
6634 | 100,0,327,3,101, | ||
6635 | 0,327,3,102,0, | ||
6636 | 327,3,103,0,327, | ||
6637 | 3,104,0,327,3, | ||
6638 | 105,0,327,3,106, | ||
6639 | 0,327,3,107,0, | ||
6640 | 327,3,108,0,327, | ||
6641 | 656,11,1,829,0, | ||
6642 | 330,1,-1,3,102, | ||
6643 | 0,327,3,103,0, | ||
6644 | 327,3,104,0,327, | ||
6645 | 3,105,0,327,3, | ||
6646 | 106,0,327,3,107, | ||
6647 | 0,327,3,108,0, | ||
6648 | 327,657,11,1,829, | ||
6649 | 0,330,1,-1,3, | ||
6650 | 115,0,327,3,116, | ||
6651 | 0,327,3,117,0, | ||
6652 | 327,3,118,0,327, | ||
6653 | 3,119,0,327,3, | ||
6654 | 120,0,327,3,121, | ||
6655 | 0,327,3,122,0, | ||
6656 | 327,3,48,0,327, | ||
6657 | 3,49,0,327,3, | ||
6658 | 50,0,327,3,51, | ||
6659 | 0,327,3,52,0, | ||
6660 | 327,3,53,0,327, | ||
6661 | 3,54,0,327,3, | ||
6662 | 55,0,327,3,56, | ||
6663 | 0,327,3,57,0, | ||
6664 | 327,3,65,0,327, | ||
6665 | 3,66,0,327,3, | ||
6666 | 67,0,327,3,68, | ||
6667 | 0,327,3,69,0, | ||
6668 | 327,3,70,0,327, | ||
6669 | 3,71,0,327,3, | ||
6670 | 72,0,327,3,73, | ||
6671 | 0,327,3,74,0, | ||
6672 | 327,3,75,0,327, | ||
6673 | 3,76,0,327,3, | ||
6674 | 77,0,327,3,78, | ||
6675 | 0,327,3,79,0, | ||
6676 | 327,3,80,0,327, | ||
6677 | 3,81,0,327,3, | ||
6678 | 82,0,327,3,83, | ||
6679 | 0,327,3,84,0, | ||
6680 | 327,3,85,0,327, | ||
6681 | 3,86,0,327,3, | ||
6682 | 87,0,327,3,88, | ||
6683 | 0,327,3,89,0, | ||
6684 | 327,3,90,0,327, | ||
6685 | 3,95,0,327,3, | ||
6686 | 97,0,327,3,98, | ||
6687 | 0,327,3,99,0, | ||
6688 | 327,3,100,0,327, | ||
6689 | 3,101,0,327,3, | ||
6690 | 102,0,327,3,103, | ||
6691 | 0,327,3,104,0, | ||
6692 | 327,3,105,0,327, | ||
6693 | 3,106,0,327,3, | ||
6694 | 107,0,327,3,108, | ||
6695 | 0,327,658,11,1, | ||
6696 | 829,0,330,1,-1, | ||
6697 | 3,97,0,327,3, | ||
6698 | 98,0,327,3,99, | ||
6699 | 0,327,3,100,0, | ||
6700 | 327,3,101,0,327, | ||
6701 | 3,102,0,327,3, | ||
6702 | 103,0,327,3,104, | ||
6703 | 0,327,3,105,0, | ||
6704 | 327,3,106,0,327, | ||
6705 | 3,107,0,327,3, | ||
6706 | 108,0,327,659,11, | ||
6707 | 1,829,0,330,1, | ||
6708 | -1,3,113,0,327, | ||
6709 | 3,114,0,327,3, | ||
6710 | 115,0,327,3,116, | ||
6711 | 0,327,3,117,0, | ||
6712 | 327,3,118,0,327, | ||
6713 | 3,119,0,327,3, | ||
6714 | 120,0,327,3,121, | ||
6715 | 0,327,3,122,0, | ||
6716 | 327,3,48,0,327, | ||
6717 | 3,49,0,327,3, | ||
6718 | 50,0,327,3,51, | ||
6719 | 0,327,3,52,0, | ||
6720 | 327,3,53,0,327, | ||
6721 | 3,54,0,327,3, | ||
6722 | 55,0,327,3,56, | ||
6723 | 0,327,3,57,0, | ||
6724 | 327,3,65,0,327, | ||
6725 | 3,66,0,327,3, | ||
6726 | 67,0,327,3,68, | ||
6727 | 0,327,3,69,0, | ||
6728 | 327,3,70,0,327, | ||
6729 | 3,71,0,327,3, | ||
6730 | 72,0,327,3,73, | ||
6731 | 0,327,3,74,0, | ||
6732 | 327,3,75,0,327, | ||
6733 | 3,76,0,327,3, | ||
6734 | 77,0,327,3,78, | ||
6735 | 0,327,3,79,0, | ||
6736 | 327,3,80,0,327, | ||
6737 | 3,81,0,327,3, | ||
6738 | 82,0,327,3,83, | ||
6739 | 0,327,3,84,0, | ||
6740 | 327,3,85,0,327, | ||
6741 | 3,86,0,327,3, | ||
6742 | 87,0,327,3,88, | ||
6743 | 0,327,3,89,0, | ||
6744 | 327,3,90,0,327, | ||
6745 | 3,95,0,327,3, | ||
6746 | 97,0,327,3,98, | ||
6747 | 0,327,3,99,0, | ||
6748 | 327,3,100,0,327, | ||
6749 | 3,101,0,327,3, | ||
6750 | 102,0,327,3,103, | ||
6751 | 0,327,3,104,0, | ||
6752 | 327,3,105,0,327, | ||
6753 | 3,106,0,327,3, | ||
6754 | 107,0,327,3,108, | ||
6755 | 0,327,660,11,1, | ||
6756 | 829,0,330,1,-1, | ||
6757 | 3,117,0,327,3, | ||
6758 | 118,0,327,3,119, | ||
6759 | 0,327,3,120,0, | ||
6760 | 327,3,121,0,327, | ||
6761 | 3,122,0,327,3, | ||
6762 | 48,0,327,3,49, | ||
6763 | 0,327,3,50,0, | ||
6764 | 327,3,51,0,327, | ||
6765 | 3,52,0,327,3, | ||
6766 | 53,0,327,3,54, | ||
6767 | 0,327,3,55,0, | ||
6768 | 327,3,56,0,327, | ||
6769 | 3,57,0,327,3, | ||
6770 | 65,0,327,3,66, | ||
6771 | 0,327,3,67,0, | ||
6772 | 327,3,68,0,327, | ||
6773 | 3,69,0,327,3, | ||
6774 | 70,0,327,3,71, | ||
6775 | 0,327,3,72,0, | ||
6776 | 327,3,73,0,327, | ||
6777 | 3,74,0,327,3, | ||
6778 | 75,0,327,3,76, | ||
6779 | 0,327,3,77,0, | ||
6780 | 327,3,78,0,327, | ||
6781 | 3,79,0,327,3, | ||
6782 | 80,0,327,3,81, | ||
6783 | 0,327,3,82,0, | ||
6784 | 327,3,83,0,327, | ||
6785 | 3,84,0,327,3, | ||
6786 | 85,0,327,3,86, | ||
6787 | 0,327,3,87,0, | ||
6788 | 327,3,88,0,327, | ||
6789 | 3,89,0,327,3, | ||
6790 | 90,0,327,3,95, | ||
6791 | 0,327,3,97,0, | ||
6792 | 327,3,98,0,327, | ||
6793 | 3,99,0,327,3, | ||
6794 | 100,0,327,3,101, | ||
6795 | 0,327,3,102,0, | ||
6796 | 327,3,103,0,327, | ||
6797 | 3,104,0,327,3, | ||
6798 | 105,0,327,3,106, | ||
6799 | 0,327,3,107,0, | ||
6800 | 327,3,108,0,327, | ||
6801 | 661,11,1,829,0, | ||
6802 | 330,1,-1,3,117, | ||
6803 | 0,327,3,118,0, | ||
6804 | 327,3,119,0,327, | ||
6805 | 3,120,0,327,3, | ||
6806 | 121,0,327,3,122, | ||
6807 | 0,327,3,48,0, | ||
6808 | 327,3,49,0,327, | ||
6809 | 3,50,0,327,3, | ||
6810 | 51,0,327,3,52, | ||
6811 | 0,327,3,53,0, | ||
6812 | 327,3,54,0,327, | ||
6813 | 3,55,0,327,3, | ||
6814 | 56,0,327,3,57, | ||
6815 | 0,327,3,65,0, | ||
6816 | 327,3,66,0,327, | ||
6817 | 3,67,0,327,3, | ||
6818 | 68,0,327,3,69, | ||
6819 | 0,327,3,70,0, | ||
6820 | 327,3,71,0,327, | ||
6821 | 3,72,0,327,3, | ||
6822 | 73,0,327,3,74, | ||
6823 | 0,327,3,75,0, | ||
6824 | 327,3,76,0,327, | ||
6825 | 3,77,0,327,3, | ||
6826 | 78,0,327,3,79, | ||
6827 | 0,327,3,80,0, | ||
6828 | 327,3,81,0,327, | ||
6829 | 3,82,0,327,3, | ||
6830 | 83,0,327,3,84, | ||
6831 | 0,327,3,85,0, | ||
6832 | 327,3,86,0,327, | ||
6833 | 3,87,0,327,3, | ||
6834 | 88,0,327,3,89, | ||
6835 | 0,327,3,90,0, | ||
6836 | 327,3,95,0,327, | ||
6837 | 3,97,0,327,3, | ||
6838 | 98,0,327,3,99, | ||
6839 | 0,327,3,100,0, | ||
6840 | 327,3,101,0,327, | ||
6841 | 3,102,0,327,3, | ||
6842 | 103,0,327,3,104, | ||
6843 | 0,327,3,105,0, | ||
6844 | 327,3,106,0,327, | ||
6845 | 3,107,0,327,3, | ||
6846 | 108,0,327,662,11, | ||
6847 | 1,829,0,330,1, | ||
6848 | -1,3,105,0,663, | ||
6849 | 12,1,32583,664,5, | ||
6850 | 63,3,109,0,327, | ||
6851 | 3,110,0,665,12, | ||
6852 | 1,32612,666,5,63, | ||
6853 | 3,109,0,327,3, | ||
6854 | 110,0,327,3,111, | ||
6855 | 0,327,3,112,0, | ||
6856 | 327,3,113,0,327, | ||
6857 | 3,114,0,327,3, | ||
6858 | 115,0,327,3,116, | ||
6859 | 0,667,12,1,32647, | ||
6860 | 668,5,63,3,109, | ||
6861 | 0,327,3,110,0, | ||
6862 | 327,3,111,0,327, | ||
6863 | 3,112,0,327,3, | ||
6864 | 113,0,327,3,114, | ||
6865 | 0,327,3,115,0, | ||
6866 | 327,3,116,0,327, | ||
6867 | 3,117,0,327,3, | ||
6868 | 118,0,327,3,119, | ||
6869 | 0,327,3,120,0, | ||
6870 | 327,3,121,0,327, | ||
6871 | 3,122,0,327,3, | ||
6872 | 48,0,327,3,49, | ||
6873 | 0,327,3,50,0, | ||
6874 | 327,3,51,0,327, | ||
6875 | 3,52,0,327,3, | ||
6876 | 53,0,327,3,54, | ||
6877 | 0,327,3,55,0, | ||
6878 | 327,3,56,0,327, | ||
6879 | 3,57,0,327,3, | ||
6880 | 65,0,327,3,66, | ||
6881 | 0,327,3,67,0, | ||
6882 | 327,3,68,0,327, | ||
6883 | 3,69,0,327,3, | ||
6884 | 70,0,327,3,71, | ||
6885 | 0,327,3,72,0, | ||
6886 | 327,3,73,0,327, | ||
6887 | 3,74,0,327,3, | ||
6888 | 75,0,327,3,76, | ||
6889 | 0,327,3,77,0, | ||
6890 | 327,3,78,0,327, | ||
6891 | 3,79,0,327,3, | ||
6892 | 80,0,327,3,81, | ||
6893 | 0,327,3,82,0, | ||
6894 | 327,3,83,0,327, | ||
6895 | 3,84,0,327,3, | ||
6896 | 85,0,327,3,86, | ||
6897 | 0,327,3,87,0, | ||
6898 | 327,3,88,0,327, | ||
6899 | 3,89,0,327,3, | ||
6900 | 90,0,327,3,95, | ||
6901 | 0,327,3,97,0, | ||
6902 | 327,3,98,0,327, | ||
6903 | 3,99,0,327,3, | ||
6904 | 100,0,327,3,101, | ||
6905 | 0,669,12,1,32694, | ||
6906 | 670,5,63,3,109, | ||
6907 | 0,327,3,110,0, | ||
6908 | 327,3,111,0,327, | ||
6909 | 3,112,0,327,3, | ||
6910 | 113,0,327,3,114, | ||
6911 | 0,327,3,115,0, | ||
6912 | 327,3,116,0,327, | ||
6913 | 3,117,0,327,3, | ||
6914 | 118,0,327,3,119, | ||
6915 | 0,327,3,120,0, | ||
6916 | 327,3,121,0,327, | ||
6917 | 3,122,0,327,3, | ||
6918 | 48,0,327,3,49, | ||
6919 | 0,327,3,50,0, | ||
6920 | 327,3,51,0,327, | ||
6921 | 3,52,0,327,3, | ||
6922 | 53,0,327,3,54, | ||
6923 | 0,327,3,55,0, | ||
6924 | 327,3,56,0,327, | ||
6925 | 3,57,0,327,3, | ||
6926 | 65,0,327,3,66, | ||
6927 | 0,327,3,67,0, | ||
6928 | 327,3,68,0,327, | ||
6929 | 3,69,0,327,3, | ||
6930 | 70,0,327,3,71, | ||
6931 | 0,327,3,72,0, | ||
6932 | 327,3,73,0,327, | ||
6933 | 3,74,0,327,3, | ||
6934 | 75,0,327,3,76, | ||
6935 | 0,327,3,77,0, | ||
6936 | 327,3,78,0,327, | ||
6937 | 3,79,0,327,3, | ||
6938 | 80,0,327,3,81, | ||
6939 | 0,327,3,82,0, | ||
6940 | 327,3,83,0,327, | ||
6941 | 3,84,0,327,3, | ||
6942 | 85,0,327,3,86, | ||
6943 | 0,327,3,87,0, | ||
6944 | 327,3,88,0,327, | ||
6945 | 3,89,0,327,3, | ||
6946 | 90,0,327,3,95, | ||
6947 | 0,327,3,97,0, | ||
6948 | 327,3,98,0,327, | ||
6949 | 3,99,0,327,3, | ||
6950 | 100,0,327,3,101, | ||
6951 | 0,327,3,102,0, | ||
6952 | 327,3,103,0,671, | ||
6953 | 12,1,32743,672,5, | ||
6954 | 63,3,109,0,327, | ||
6955 | 3,110,0,327,3, | ||
6956 | 111,0,327,3,112, | ||
6957 | 0,327,3,113,0, | ||
6958 | 327,3,114,0,327, | ||
6959 | 3,115,0,327,3, | ||
6960 | 116,0,327,3,117, | ||
6961 | 0,327,3,118,0, | ||
6962 | 327,3,119,0,327, | ||
6963 | 3,120,0,327,3, | ||
6964 | 121,0,327,3,122, | ||
6965 | 0,327,3,48,0, | ||
6966 | 327,3,49,0,327, | ||
6967 | 3,50,0,327,3, | ||
6968 | 51,0,327,3,52, | ||
6969 | 0,327,3,53,0, | ||
6970 | 327,3,54,0,327, | ||
6971 | 3,55,0,327,3, | ||
6972 | 56,0,327,3,57, | ||
6973 | 0,327,3,65,0, | ||
6974 | 327,3,66,0,327, | ||
6975 | 3,67,0,327,3, | ||
6976 | 68,0,327,3,69, | ||
6977 | 0,327,3,70,0, | ||
6978 | 327,3,71,0,327, | ||
6979 | 3,72,0,327,3, | ||
6980 | 73,0,327,3,74, | ||
6981 | 0,327,3,75,0, | ||
6982 | 327,3,76,0,327, | ||
6983 | 3,77,0,327,3, | ||
6984 | 78,0,327,3,79, | ||
6985 | 0,327,3,80,0, | ||
6986 | 327,3,81,0,327, | ||
6987 | 3,82,0,327,3, | ||
6988 | 83,0,327,3,84, | ||
6989 | 0,327,3,85,0, | ||
6990 | 327,3,86,0,327, | ||
6991 | 3,87,0,327,3, | ||
6992 | 88,0,327,3,89, | ||
6993 | 0,327,3,90,0, | ||
6994 | 327,3,95,0,327, | ||
6995 | 3,97,0,327,3, | ||
6996 | 98,0,327,3,99, | ||
6997 | 0,327,3,100,0, | ||
6998 | 327,3,101,0,673, | ||
6999 | 12,1,32790,674,5, | ||
7000 | 63,3,109,0,327, | ||
7001 | 3,110,0,327,3, | ||
7002 | 111,0,327,3,112, | ||
7003 | 0,327,3,113,0, | ||
7004 | 327,3,114,0,675, | ||
7005 | 12,1,32823,676,5, | ||
7006 | 63,3,109,0,327, | ||
7007 | 3,110,0,327,3, | ||
7008 | 111,0,327,3,112, | ||
7009 | 0,327,3,113,0, | ||
7010 | 327,3,114,0,327, | ||
7011 | 3,115,0,327,3, | ||
7012 | 116,0,327,3,117, | ||
7013 | 0,327,3,118,0, | ||
7014 | 327,3,119,0,327, | ||
7015 | 3,120,0,327,3, | ||
7016 | 121,0,327,3,122, | ||
7017 | 0,327,3,48,0, | ||
7018 | 327,3,49,0,327, | ||
7019 | 3,50,0,327,3, | ||
7020 | 51,0,327,3,52, | ||
7021 | 0,327,3,53,0, | ||
7022 | 327,3,54,0,327, | ||
7023 | 3,55,0,327,3, | ||
7024 | 56,0,327,3,57, | ||
7025 | 0,327,3,65,0, | ||
7026 | 327,3,66,0,327, | ||
7027 | 3,67,0,327,3, | ||
7028 | 68,0,327,3,69, | ||
7029 | 0,327,3,70,0, | ||
7030 | 327,3,71,0,327, | ||
7031 | 3,72,0,327,3, | ||
7032 | 73,0,327,3,74, | ||
7033 | 0,327,3,75,0, | ||
7034 | 327,3,76,0,327, | ||
7035 | 3,77,0,327,3, | ||
7036 | 78,0,327,3,79, | ||
7037 | 0,327,3,80,0, | ||
7038 | 327,3,81,0,327, | ||
7039 | 3,82,0,327,3, | ||
7040 | 83,0,327,3,84, | ||
7041 | 0,327,3,85,0, | ||
7042 | 327,3,86,0,327, | ||
7043 | 3,87,0,327,3, | ||
7044 | 88,0,327,3,89, | ||
7045 | 0,327,3,90,0, | ||
7046 | 327,3,95,0,327, | ||
7047 | 3,97,0,327,3, | ||
7048 | 98,0,327,3,99, | ||
7049 | 0,327,3,100,0, | ||
7050 | 327,3,101,0,327, | ||
7051 | 3,102,0,327,3, | ||
7052 | 103,0,327,3,104, | ||
7053 | 0,327,3,105,0, | ||
7054 | 327,3,106,0,327, | ||
7055 | 3,107,0,327,3, | ||
7056 | 108,0,327,677,11, | ||
7057 | 1,283,0,678,4, | ||
7058 | 24,73,0,78,0, | ||
7059 | 84,0,69,0,71, | ||
7060 | 0,69,0,82,0, | ||
7061 | 95,0,84,0,89, | ||
7062 | 0,80,0,69,0, | ||
7063 | 1,-1,3,115,0, | ||
7064 | 327,3,116,0,327, | ||
7065 | 3,117,0,327,3, | ||
7066 | 118,0,327,3,119, | ||
7067 | 0,327,3,120,0, | ||
7068 | 327,3,121,0,327, | ||
7069 | 3,122,0,327,3, | ||
7070 | 48,0,327,3,49, | ||
7071 | 0,327,3,50,0, | ||
7072 | 327,3,51,0,327, | ||
7073 | 3,52,0,327,3, | ||
7074 | 53,0,327,3,54, | ||
7075 | 0,327,3,55,0, | ||
7076 | 327,3,56,0,327, | ||
7077 | 3,57,0,327,3, | ||
7078 | 65,0,327,3,66, | ||
7079 | 0,327,3,67,0, | ||
7080 | 327,3,68,0,327, | ||
7081 | 3,69,0,327,3, | ||
7082 | 70,0,327,3,71, | ||
7083 | 0,327,3,72,0, | ||
7084 | 327,3,73,0,327, | ||
7085 | 3,74,0,327,3, | ||
7086 | 75,0,327,3,76, | ||
7087 | 0,327,3,77,0, | ||
7088 | 327,3,78,0,327, | ||
7089 | 3,79,0,327,3, | ||
7090 | 80,0,327,3,81, | ||
7091 | 0,327,3,82,0, | ||
7092 | 327,3,83,0,327, | ||
7093 | 3,84,0,327,3, | ||
7094 | 85,0,327,3,86, | ||
7095 | 0,327,3,87,0, | ||
7096 | 327,3,88,0,327, | ||
7097 | 3,89,0,327,3, | ||
7098 | 90,0,327,3,95, | ||
7099 | 0,327,3,97,0, | ||
7100 | 327,3,98,0,327, | ||
7101 | 3,99,0,327,3, | ||
7102 | 100,0,327,3,101, | ||
7103 | 0,327,3,102,0, | ||
7104 | 327,3,103,0,327, | ||
7105 | 3,104,0,327,3, | ||
7106 | 105,0,327,3,106, | ||
7107 | 0,327,3,107,0, | ||
7108 | 327,3,108,0,327, | ||
7109 | 679,11,1,829,0, | ||
7110 | 330,1,-1,3,102, | ||
7111 | 0,327,3,103,0, | ||
7112 | 327,3,104,0,327, | ||
7113 | 3,105,0,327,3, | ||
7114 | 106,0,327,3,107, | ||
7115 | 0,327,3,108,0, | ||
7116 | 327,680,11,1,829, | ||
7117 | 0,330,1,-1,3, | ||
7118 | 104,0,327,3,105, | ||
7119 | 0,327,3,106,0, | ||
7120 | 327,3,107,0,327, | ||
7121 | 3,108,0,327,681, | ||
7122 | 11,1,829,0,330, | ||
7123 | 1,-1,3,102,0, | ||
7124 | 327,3,103,0,327, | ||
7125 | 3,104,0,327,3, | ||
7126 | 105,0,327,3,106, | ||
7127 | 0,327,3,107,0, | ||
7128 | 327,3,108,0,327, | ||
7129 | 682,11,1,829,0, | ||
7130 | 330,1,-1,3,117, | ||
7131 | 0,327,3,118,0, | ||
7132 | 327,3,119,0,327, | ||
7133 | 3,120,0,327,3, | ||
7134 | 121,0,327,3,122, | ||
7135 | 0,327,3,48,0, | ||
7136 | 327,3,49,0,327, | ||
7137 | 3,50,0,327,3, | ||
7138 | 51,0,327,3,52, | ||
7139 | 0,327,3,53,0, | ||
7140 | 327,3,54,0,327, | ||
7141 | 3,55,0,327,3, | ||
7142 | 56,0,327,3,57, | ||
7143 | 0,327,3,65,0, | ||
7144 | 327,3,66,0,327, | ||
7145 | 3,67,0,327,3, | ||
7146 | 68,0,327,3,69, | ||
7147 | 0,327,3,70,0, | ||
7148 | 327,3,71,0,327, | ||
7149 | 3,72,0,327,3, | ||
7150 | 73,0,327,3,74, | ||
7151 | 0,327,3,75,0, | ||
7152 | 327,3,76,0,327, | ||
7153 | 3,77,0,327,3, | ||
7154 | 78,0,327,3,79, | ||
7155 | 0,327,3,80,0, | ||
7156 | 327,3,81,0,327, | ||
7157 | 3,82,0,327,3, | ||
7158 | 83,0,327,3,84, | ||
7159 | 0,327,3,85,0, | ||
7160 | 327,3,86,0,327, | ||
7161 | 3,87,0,327,3, | ||
7162 | 88,0,327,3,89, | ||
7163 | 0,327,3,90,0, | ||
7164 | 327,3,95,0,327, | ||
7165 | 3,97,0,327,3, | ||
7166 | 98,0,327,3,99, | ||
7167 | 0,327,3,100,0, | ||
7168 | 327,3,101,0,327, | ||
7169 | 3,102,0,327,3, | ||
7170 | 103,0,327,3,104, | ||
7171 | 0,327,3,105,0, | ||
7172 | 327,3,106,0,327, | ||
7173 | 3,107,0,327,3, | ||
7174 | 108,0,327,683,11, | ||
7175 | 1,829,0,330,1, | ||
7176 | -1,3,111,0,327, | ||
7177 | 3,112,0,327,3, | ||
7178 | 113,0,327,3,114, | ||
7179 | 0,327,3,115,0, | ||
7180 | 327,3,116,0,327, | ||
7181 | 3,117,0,327,3, | ||
7182 | 118,0,327,3,119, | ||
7183 | 0,327,3,120,0, | ||
7184 | 327,3,121,0,327, | ||
7185 | 3,122,0,327,3, | ||
7186 | 48,0,327,3,49, | ||
7187 | 0,327,3,50,0, | ||
7188 | 327,3,51,0,327, | ||
7189 | 3,52,0,327,3, | ||
7190 | 53,0,327,3,54, | ||
7191 | 0,327,3,55,0, | ||
7192 | 327,3,56,0,327, | ||
7193 | 3,57,0,327,3, | ||
7194 | 65,0,327,3,66, | ||
7195 | 0,327,3,67,0, | ||
7196 | 327,3,68,0,327, | ||
7197 | 3,69,0,327,3, | ||
7198 | 70,0,327,3,71, | ||
7199 | 0,327,3,72,0, | ||
7200 | 327,3,73,0,327, | ||
7201 | 3,74,0,327,3, | ||
7202 | 75,0,327,3,76, | ||
7203 | 0,327,3,77,0, | ||
7204 | 327,3,78,0,327, | ||
7205 | 3,79,0,327,3, | ||
7206 | 80,0,327,3,81, | ||
7207 | 0,327,3,82,0, | ||
7208 | 327,3,83,0,327, | ||
7209 | 3,84,0,327,3, | ||
7210 | 85,0,327,3,86, | ||
7211 | 0,327,3,87,0, | ||
7212 | 327,3,88,0,327, | ||
7213 | 3,89,0,327,3, | ||
7214 | 90,0,327,3,95, | ||
7215 | 0,327,3,97,0, | ||
7216 | 327,3,98,0,327, | ||
7217 | 3,99,0,327,3, | ||
7218 | 100,0,327,3,101, | ||
7219 | 0,327,3,102,0, | ||
7220 | 684,12,1,33351,685, | ||
7221 | 5,63,3,109,0, | ||
7222 | 327,3,110,0,327, | ||
7223 | 3,111,0,327,3, | ||
7224 | 112,0,327,3,113, | ||
7225 | 0,327,3,114,0, | ||
7226 | 327,3,115,0,327, | ||
7227 | 3,116,0,327,3, | ||
7228 | 117,0,327,3,118, | ||
7229 | 0,327,3,119,0, | ||
7230 | 327,3,120,0,327, | ||
7231 | 3,121,0,327,3, | ||
7232 | 122,0,327,3,48, | ||
7233 | 0,327,3,49,0, | ||
7234 | 327,3,50,0,327, | ||
7235 | 3,51,0,327,3, | ||
7236 | 52,0,327,3,53, | ||
7237 | 0,327,3,54,0, | ||
7238 | 327,3,55,0,327, | ||
7239 | 3,56,0,327,3, | ||
7240 | 57,0,327,3,65, | ||
7241 | 0,327,3,66,0, | ||
7242 | 327,3,67,0,327, | ||
7243 | 3,68,0,327,3, | ||
7244 | 69,0,327,3,70, | ||
7245 | 0,327,3,71,0, | ||
7246 | 327,3,72,0,327, | ||
7247 | 3,73,0,327,3, | ||
7248 | 74,0,327,3,75, | ||
7249 | 0,327,3,76,0, | ||
7250 | 327,3,77,0,327, | ||
7251 | 3,78,0,327,3, | ||
7252 | 79,0,327,3,80, | ||
7253 | 0,327,3,81,0, | ||
7254 | 327,3,82,0,327, | ||
7255 | 3,83,0,327,3, | ||
7256 | 84,0,327,3,85, | ||
7257 | 0,327,3,86,0, | ||
7258 | 327,3,87,0,327, | ||
7259 | 3,88,0,327,3, | ||
7260 | 89,0,327,3,90, | ||
7261 | 0,327,3,95,0, | ||
7262 | 327,3,97,0,327, | ||
7263 | 3,98,0,327,3, | ||
7264 | 99,0,327,3,100, | ||
7265 | 0,327,3,101,0, | ||
7266 | 327,3,102,0,327, | ||
7267 | 3,103,0,327,3, | ||
7268 | 104,0,327,3,105, | ||
7269 | 0,327,3,106,0, | ||
7270 | 327,3,107,0,327, | ||
7271 | 3,108,0,327,686, | ||
7272 | 11,1,209,0,687, | ||
7273 | 4,4,73,0,70, | ||
7274 | 0,1,-1,3,103, | ||
7275 | 0,327,3,104,0, | ||
7276 | 327,3,105,0,327, | ||
7277 | 3,106,0,327,3, | ||
7278 | 107,0,327,3,108, | ||
7279 | 0,327,688,11,1, | ||
7280 | 829,0,330,1,-1, | ||
7281 | 3,106,0,689,12, | ||
7282 | 1,33544,690,5,63, | ||
7283 | 3,109,0,327,3, | ||
7284 | 110,0,327,3,111, | ||
7285 | 0,327,3,112,0, | ||
7286 | 327,3,113,0,327, | ||
7287 | 3,114,0,327,3, | ||
7288 | 115,0,327,3,116, | ||
7289 | 0,327,3,117,0, | ||
7290 | 691,12,1,33580,692, | ||
7291 | 5,63,3,109,0, | ||
7292 | 693,12,1,33608,694, | ||
7293 | 5,63,3,109,0, | ||
7294 | 327,3,110,0,327, | ||
7295 | 3,111,0,327,3, | ||
7296 | 112,0,695,12,1, | ||
7297 | 33639,696,5,63,3, | ||
7298 | 109,0,327,3,110, | ||
7299 | 0,327,3,111,0, | ||
7300 | 327,3,112,0,327, | ||
7301 | 3,113,0,327,3, | ||
7302 | 114,0,327,3,115, | ||
7303 | 0,327,3,116,0, | ||
7304 | 327,3,117,0,327, | ||
7305 | 3,118,0,327,3, | ||
7306 | 119,0,327,3,120, | ||
7307 | 0,327,3,121,0, | ||
7308 | 327,3,122,0,327, | ||
7309 | 3,48,0,327,3, | ||
7310 | 49,0,327,3,50, | ||
7311 | 0,327,3,51,0, | ||
7312 | 327,3,52,0,327, | ||
7313 | 3,53,0,327,3, | ||
7314 | 54,0,327,3,55, | ||
7315 | 0,327,3,56,0, | ||
7316 | 327,3,57,0,327, | ||
7317 | 3,65,0,327,3, | ||
7318 | 66,0,327,3,67, | ||
7319 | 0,327,3,68,0, | ||
7320 | 327,3,69,0,327, | ||
7321 | 3,70,0,327,3, | ||
7322 | 71,0,327,3,72, | ||
7323 | 0,327,3,73,0, | ||
7324 | 327,3,74,0,327, | ||
7325 | 3,75,0,327,3, | ||
7326 | 76,0,327,3,77, | ||
7327 | 0,327,3,78,0, | ||
7328 | 327,3,79,0,327, | ||
7329 | 3,80,0,327,3, | ||
7330 | 81,0,327,3,82, | ||
7331 | 0,327,3,83,0, | ||
7332 | 327,3,84,0,327, | ||
7333 | 3,85,0,327,3, | ||
7334 | 86,0,327,3,87, | ||
7335 | 0,327,3,88,0, | ||
7336 | 327,3,89,0,327, | ||
7337 | 3,90,0,327,3, | ||
7338 | 95,0,327,3,97, | ||
7339 | 0,327,3,98,0, | ||
7340 | 327,3,99,0,327, | ||
7341 | 3,100,0,327,3, | ||
7342 | 101,0,327,3,102, | ||
7343 | 0,327,3,103,0, | ||
7344 | 327,3,104,0,327, | ||
7345 | 3,105,0,327,3, | ||
7346 | 106,0,327,3,107, | ||
7347 | 0,327,3,108,0, | ||
7348 | 327,697,11,1,265, | ||
7349 | 0,698,4,8,74, | ||
7350 | 0,85,0,77,0, | ||
7351 | 80,0,1,-1,3, | ||
7352 | 113,0,327,3,114, | ||
7353 | 0,327,3,115,0, | ||
7354 | 327,3,116,0,327, | ||
7355 | 3,117,0,327,3, | ||
7356 | 118,0,327,3,119, | ||
7357 | 0,327,3,120,0, | ||
7358 | 327,3,121,0,327, | ||
7359 | 3,122,0,327,3, | ||
7360 | 48,0,327,3,49, | ||
7361 | 0,327,3,50,0, | ||
7362 | 327,3,51,0,327, | ||
7363 | 3,52,0,327,3, | ||
7364 | 53,0,327,3,54, | ||
7365 | 0,327,3,55,0, | ||
7366 | 327,3,56,0,327, | ||
7367 | 3,57,0,327,3, | ||
7368 | 65,0,327,3,66, | ||
7369 | 0,327,3,67,0, | ||
7370 | 327,3,68,0,327, | ||
7371 | 3,69,0,327,3, | ||
7372 | 70,0,327,3,71, | ||
7373 | 0,327,3,72,0, | ||
7374 | 327,3,73,0,327, | ||
7375 | 3,74,0,327,3, | ||
7376 | 75,0,327,3,76, | ||
7377 | 0,327,3,77,0, | ||
7378 | 327,3,78,0,327, | ||
7379 | 3,79,0,327,3, | ||
7380 | 80,0,327,3,81, | ||
7381 | 0,327,3,82,0, | ||
7382 | 327,3,83,0,327, | ||
7383 | 3,84,0,327,3, | ||
7384 | 85,0,327,3,86, | ||
7385 | 0,327,3,87,0, | ||
7386 | 327,3,88,0,327, | ||
7387 | 3,89,0,327,3, | ||
7388 | 90,0,327,3,95, | ||
7389 | 0,327,3,97,0, | ||
7390 | 327,3,98,0,327, | ||
7391 | 3,99,0,327,3, | ||
7392 | 100,0,327,3,101, | ||
7393 | 0,327,3,102,0, | ||
7394 | 327,3,103,0,327, | ||
7395 | 3,104,0,327,3, | ||
7396 | 105,0,327,3,106, | ||
7397 | 0,327,3,107,0, | ||
7398 | 327,3,108,0,327, | ||
7399 | 699,11,1,829,0, | ||
7400 | 330,1,-1,3,110, | ||
7401 | 0,327,3,111,0, | ||
7402 | 327,3,112,0,327, | ||
7403 | 3,113,0,327,3, | ||
7404 | 114,0,327,3,115, | ||
7405 | 0,327,3,116,0, | ||
7406 | 327,3,117,0,327, | ||
7407 | 3,118,0,327,3, | ||
7408 | 119,0,327,3,120, | ||
7409 | 0,327,3,121,0, | ||
7410 | 327,3,122,0,327, | ||
7411 | 3,48,0,327,3, | ||
7412 | 49,0,327,3,50, | ||
7413 | 0,327,3,51,0, | ||
7414 | 327,3,52,0,327, | ||
7415 | 3,53,0,327,3, | ||
7416 | 54,0,327,3,55, | ||
7417 | 0,327,3,56,0, | ||
7418 | 327,3,57,0,327, | ||
7419 | 3,65,0,327,3, | ||
7420 | 66,0,327,3,67, | ||
7421 | 0,327,3,68,0, | ||
7422 | 327,3,69,0,327, | ||
7423 | 3,70,0,327,3, | ||
7424 | 71,0,327,3,72, | ||
7425 | 0,327,3,73,0, | ||
7426 | 327,3,74,0,327, | ||
7427 | 3,75,0,327,3, | ||
7428 | 76,0,327,3,77, | ||
7429 | 0,327,3,78,0, | ||
7430 | 327,3,79,0,327, | ||
7431 | 3,80,0,327,3, | ||
7432 | 81,0,327,3,82, | ||
7433 | 0,327,3,83,0, | ||
7434 | 327,3,84,0,327, | ||
7435 | 3,85,0,327,3, | ||
7436 | 86,0,327,3,87, | ||
7437 | 0,327,3,88,0, | ||
7438 | 327,3,89,0,327, | ||
7439 | 3,90,0,327,3, | ||
7440 | 95,0,327,3,97, | ||
7441 | 0,327,3,98,0, | ||
7442 | 327,3,99,0,327, | ||
7443 | 3,100,0,327,3, | ||
7444 | 101,0,327,3,102, | ||
7445 | 0,327,3,103,0, | ||
7446 | 327,3,104,0,327, | ||
7447 | 3,105,0,327,3, | ||
7448 | 106,0,327,3,107, | ||
7449 | 0,327,3,108,0, | ||
7450 | 327,700,11,1,829, | ||
7451 | 0,330,1,-1,3, | ||
7452 | 118,0,327,3,119, | ||
7453 | 0,327,3,120,0, | ||
7454 | 327,3,121,0,327, | ||
7455 | 3,122,0,327,3, | ||
7456 | 48,0,327,3,49, | ||
7457 | 0,327,3,50,0, | ||
7458 | 327,3,51,0,327, | ||
7459 | 3,52,0,327,3, | ||
7460 | 53,0,327,3,54, | ||
7461 | 0,327,3,55,0, | ||
7462 | 327,3,56,0,327, | ||
7463 | 3,57,0,327,3, | ||
7464 | 65,0,327,3,66, | ||
7465 | 0,327,3,67,0, | ||
7466 | 327,3,68,0,327, | ||
7467 | 3,69,0,327,3, | ||
7468 | 70,0,327,3,71, | ||
7469 | 0,327,3,72,0, | ||
7470 | 327,3,73,0,327, | ||
7471 | 3,74,0,327,3, | ||
7472 | 75,0,327,3,76, | ||
7473 | 0,327,3,77,0, | ||
7474 | 327,3,78,0,327, | ||
7475 | 3,79,0,327,3, | ||
7476 | 80,0,327,3,81, | ||
7477 | 0,327,3,82,0, | ||
7478 | 327,3,83,0,327, | ||
7479 | 3,84,0,327,3, | ||
7480 | 85,0,327,3,86, | ||
7481 | 0,327,3,87,0, | ||
7482 | 327,3,88,0,327, | ||
7483 | 3,89,0,327,3, | ||
7484 | 90,0,327,3,95, | ||
7485 | 0,327,3,97,0, | ||
7486 | 327,3,98,0,327, | ||
7487 | 3,99,0,327,3, | ||
7488 | 100,0,327,3,101, | ||
7489 | 0,327,3,102,0, | ||
7490 | 327,3,103,0,327, | ||
7491 | 3,104,0,327,3, | ||
7492 | 105,0,327,3,106, | ||
7493 | 0,327,3,107,0, | ||
7494 | 327,3,108,0,327, | ||
7495 | 701,11,1,829,0, | ||
7496 | 330,1,-1,3,107, | ||
7497 | 0,702,12,1,34025, | ||
7498 | 703,5,63,3,109, | ||
7499 | 0,327,3,110,0, | ||
7500 | 327,3,111,0,327, | ||
7501 | 3,112,0,327,3, | ||
7502 | 113,0,327,3,114, | ||
7503 | 0,327,3,115,0, | ||
7504 | 327,3,116,0,327, | ||
7505 | 3,117,0,327,3, | ||
7506 | 118,0,327,3,119, | ||
7507 | 0,327,3,120,0, | ||
7508 | 327,3,121,0,327, | ||
7509 | 3,122,0,327,3, | ||
7510 | 48,0,327,3,49, | ||
7511 | 0,327,3,50,0, | ||
7512 | 327,3,51,0,327, | ||
7513 | 3,52,0,327,3, | ||
7514 | 53,0,327,3,54, | ||
7515 | 0,327,3,55,0, | ||
7516 | 327,3,56,0,327, | ||
7517 | 3,57,0,327,3, | ||
7518 | 65,0,327,3,66, | ||
7519 | 0,327,3,67,0, | ||
7520 | 327,3,68,0,327, | ||
7521 | 3,69,0,327,3, | ||
7522 | 70,0,327,3,71, | ||
7523 | 0,327,3,72,0, | ||
7524 | 327,3,73,0,327, | ||
7525 | 3,74,0,327,3, | ||
7526 | 75,0,327,3,76, | ||
7527 | 0,327,3,77,0, | ||
7528 | 327,3,78,0,327, | ||
7529 | 3,79,0,327,3, | ||
7530 | 80,0,327,3,81, | ||
7531 | 0,327,3,82,0, | ||
7532 | 327,3,83,0,327, | ||
7533 | 3,84,0,327,3, | ||
7534 | 85,0,327,3,86, | ||
7535 | 0,327,3,87,0, | ||
7536 | 327,3,88,0,327, | ||
7537 | 3,89,0,327,3, | ||
7538 | 90,0,327,3,95, | ||
7539 | 0,327,3,97,0, | ||
7540 | 327,3,98,0,327, | ||
7541 | 3,99,0,327,3, | ||
7542 | 100,0,327,3,101, | ||
7543 | 0,704,12,1,34072, | ||
7544 | 705,5,63,3,109, | ||
7545 | 0,327,3,110,0, | ||
7546 | 327,3,111,0,327, | ||
7547 | 3,112,0,327,3, | ||
7548 | 113,0,327,3,114, | ||
7549 | 0,327,3,115,0, | ||
7550 | 327,3,116,0,327, | ||
7551 | 3,117,0,327,3, | ||
7552 | 118,0,327,3,119, | ||
7553 | 0,327,3,120,0, | ||
7554 | 327,3,121,0,706, | ||
7555 | 12,1,34112,707,5, | ||
7556 | 63,3,109,0,327, | ||
7557 | 3,110,0,327,3, | ||
7558 | 111,0,327,3,112, | ||
7559 | 0,327,3,113,0, | ||
7560 | 327,3,114,0,327, | ||
7561 | 3,115,0,327,3, | ||
7562 | 116,0,327,3,117, | ||
7563 | 0,327,3,118,0, | ||
7564 | 327,3,119,0,327, | ||
7565 | 3,120,0,327,3, | ||
7566 | 121,0,327,3,122, | ||
7567 | 0,327,3,48,0, | ||
7568 | 327,3,49,0,327, | ||
7569 | 3,50,0,327,3, | ||
7570 | 51,0,327,3,52, | ||
7571 | 0,327,3,53,0, | ||
7572 | 327,3,54,0,327, | ||
7573 | 3,55,0,327,3, | ||
7574 | 56,0,327,3,57, | ||
7575 | 0,327,3,65,0, | ||
7576 | 327,3,66,0,327, | ||
7577 | 3,67,0,327,3, | ||
7578 | 68,0,327,3,69, | ||
7579 | 0,327,3,70,0, | ||
7580 | 327,3,71,0,327, | ||
7581 | 3,72,0,327,3, | ||
7582 | 73,0,327,3,74, | ||
7583 | 0,327,3,75,0, | ||
7584 | 327,3,76,0,327, | ||
7585 | 3,77,0,327,3, | ||
7586 | 78,0,327,3,79, | ||
7587 | 0,327,3,80,0, | ||
7588 | 327,3,81,0,327, | ||
7589 | 3,82,0,327,3, | ||
7590 | 83,0,327,3,84, | ||
7591 | 0,327,3,85,0, | ||
7592 | 327,3,86,0,327, | ||
7593 | 3,87,0,327,3, | ||
7594 | 88,0,327,3,89, | ||
7595 | 0,327,3,90,0, | ||
7596 | 327,3,95,0,327, | ||
7597 | 3,97,0,327,3, | ||
7598 | 98,0,327,3,99, | ||
7599 | 0,327,3,100,0, | ||
7600 | 327,3,101,0,327, | ||
7601 | 3,102,0,327,3, | ||
7602 | 103,0,327,3,104, | ||
7603 | 0,327,3,105,0, | ||
7604 | 327,3,106,0,327, | ||
7605 | 3,107,0,327,3, | ||
7606 | 108,0,327,708,11, | ||
7607 | 1,313,0,709,4, | ||
7608 | 16,75,0,69,0, | ||
7609 | 89,0,95,0,84, | ||
7610 | 0,89,0,80,0, | ||
7611 | 69,0,1,-1,3, | ||
7612 | 122,0,327,3,48, | ||
7613 | 0,327,3,49,0, | ||
7614 | 327,3,50,0,327, | ||
7615 | 3,51,0,327,3, | ||
7616 | 52,0,327,3,53, | ||
7617 | 0,327,3,54,0, | ||
7618 | 327,3,55,0,327, | ||
7619 | 3,56,0,327,3, | ||
7620 | 57,0,327,3,65, | ||
7621 | 0,327,3,66,0, | ||
7622 | 327,3,67,0,327, | ||
7623 | 3,68,0,327,3, | ||
7624 | 69,0,327,3,70, | ||
7625 | 0,327,3,71,0, | ||
7626 | 327,3,72,0,327, | ||
7627 | 3,73,0,327,3, | ||
7628 | 74,0,327,3,75, | ||
7629 | 0,327,3,76,0, | ||
7630 | 327,3,77,0,327, | ||
7631 | 3,78,0,327,3, | ||
7632 | 79,0,327,3,80, | ||
7633 | 0,327,3,81,0, | ||
7634 | 327,3,82,0,327, | ||
7635 | 3,83,0,327,3, | ||
7636 | 84,0,327,3,85, | ||
7637 | 0,327,3,86,0, | ||
7638 | 327,3,87,0,327, | ||
7639 | 3,88,0,327,3, | ||
7640 | 89,0,327,3,90, | ||
7641 | 0,327,3,95,0, | ||
7642 | 327,3,97,0,327, | ||
7643 | 3,98,0,327,3, | ||
7644 | 99,0,327,3,100, | ||
7645 | 0,327,3,101,0, | ||
7646 | 327,3,102,0,327, | ||
7647 | 3,103,0,327,3, | ||
7648 | 104,0,327,3,105, | ||
7649 | 0,327,3,106,0, | ||
7650 | 327,3,107,0,327, | ||
7651 | 3,108,0,327,710, | ||
7652 | 11,1,829,0,330, | ||
7653 | 1,-1,3,102,0, | ||
7654 | 327,3,103,0,327, | ||
7655 | 3,104,0,327,3, | ||
7656 | 105,0,327,3,106, | ||
7657 | 0,327,3,107,0, | ||
7658 | 327,3,108,0,327, | ||
7659 | 711,11,1,829,0, | ||
7660 | 330,1,-1,3,108, | ||
7661 | 0,712,12,1,34386, | ||
7662 | 713,5,63,3,109, | ||
7663 | 0,327,3,110,0, | ||
7664 | 327,3,111,0,327, | ||
7665 | 3,112,0,327,3, | ||
7666 | 113,0,327,3,114, | ||
7667 | 0,327,3,115,0, | ||
7668 | 327,3,116,0,327, | ||
7669 | 3,117,0,327,3, | ||
7670 | 118,0,327,3,119, | ||
7671 | 0,327,3,120,0, | ||
7672 | 327,3,121,0,327, | ||
7673 | 3,122,0,327,3, | ||
7674 | 48,0,327,3,49, | ||
7675 | 0,327,3,50,0, | ||
7676 | 327,3,51,0,327, | ||
7677 | 3,52,0,327,3, | ||
7678 | 53,0,327,3,54, | ||
7679 | 0,327,3,55,0, | ||
7680 | 327,3,56,0,327, | ||
7681 | 3,57,0,327,3, | ||
7682 | 65,0,327,3,66, | ||
7683 | 0,327,3,67,0, | ||
7684 | 327,3,68,0,327, | ||
7685 | 3,69,0,327,3, | ||
7686 | 70,0,327,3,71, | ||
7687 | 0,327,3,72,0, | ||
7688 | 327,3,73,0,327, | ||
7689 | 3,74,0,327,3, | ||
7690 | 75,0,327,3,76, | ||
7691 | 0,327,3,77,0, | ||
7692 | 327,3,78,0,327, | ||
7693 | 3,79,0,327,3, | ||
7694 | 80,0,327,3,81, | ||
7695 | 0,327,3,82,0, | ||
7696 | 327,3,83,0,327, | ||
7697 | 3,84,0,327,3, | ||
7698 | 85,0,327,3,86, | ||
7699 | 0,327,3,87,0, | ||
7700 | 327,3,88,0,327, | ||
7701 | 3,89,0,327,3, | ||
7702 | 90,0,327,3,95, | ||
7703 | 0,327,3,97,0, | ||
7704 | 714,12,1,34429,715, | ||
7705 | 5,63,3,109,0, | ||
7706 | 327,3,110,0,716, | ||
7707 | 12,1,34458,717,5, | ||
7708 | 63,3,109,0,327, | ||
7709 | 3,110,0,327,3, | ||
7710 | 111,0,327,3,112, | ||
7711 | 0,327,3,113,0, | ||
7712 | 327,3,114,0,327, | ||
7713 | 3,115,0,327,3, | ||
7714 | 116,0,327,3,117, | ||
7715 | 0,327,3,118,0, | ||
7716 | 327,3,119,0,327, | ||
7717 | 3,120,0,327,3, | ||
7718 | 121,0,327,3,122, | ||
7719 | 0,327,3,48,0, | ||
7720 | 327,3,49,0,327, | ||
7721 | 3,50,0,327,3, | ||
7722 | 51,0,327,3,52, | ||
7723 | 0,327,3,53,0, | ||
7724 | 327,3,54,0,327, | ||
7725 | 3,55,0,327,3, | ||
7726 | 56,0,327,3,57, | ||
7727 | 0,327,3,65,0, | ||
7728 | 327,3,66,0,327, | ||
7729 | 3,67,0,327,3, | ||
7730 | 68,0,327,3,69, | ||
7731 | 0,327,3,70,0, | ||
7732 | 327,3,71,0,327, | ||
7733 | 3,72,0,327,3, | ||
7734 | 73,0,327,3,74, | ||
7735 | 0,327,3,75,0, | ||
7736 | 327,3,76,0,327, | ||
7737 | 3,77,0,327,3, | ||
7738 | 78,0,327,3,79, | ||
7739 | 0,327,3,80,0, | ||
7740 | 327,3,81,0,327, | ||
7741 | 3,82,0,327,3, | ||
7742 | 83,0,327,3,84, | ||
7743 | 0,327,3,85,0, | ||
7744 | 327,3,86,0,327, | ||
7745 | 3,87,0,327,3, | ||
7746 | 88,0,327,3,89, | ||
7747 | 0,327,3,90,0, | ||
7748 | 327,3,95,0,327, | ||
7749 | 3,97,0,327,3, | ||
7750 | 98,0,327,3,99, | ||
7751 | 0,327,3,100,0, | ||
7752 | 718,12,1,34504,719, | ||
7753 | 5,63,3,109,0, | ||
7754 | 327,3,110,0,327, | ||
7755 | 3,111,0,327,3, | ||
7756 | 112,0,327,3,113, | ||
7757 | 0,327,3,114,0, | ||
7758 | 327,3,115,0,327, | ||
7759 | 3,116,0,327,3, | ||
7760 | 117,0,327,3,118, | ||
7761 | 0,327,3,119,0, | ||
7762 | 327,3,120,0,327, | ||
7763 | 3,121,0,327,3, | ||
7764 | 122,0,327,3,48, | ||
7765 | 0,327,3,49,0, | ||
7766 | 327,3,50,0,327, | ||
7767 | 3,51,0,327,3, | ||
7768 | 52,0,327,3,53, | ||
7769 | 0,327,3,54,0, | ||
7770 | 327,3,55,0,327, | ||
7771 | 3,56,0,327,3, | ||
7772 | 57,0,327,3,65, | ||
7773 | 0,327,3,66,0, | ||
7774 | 327,3,67,0,327, | ||
7775 | 3,68,0,327,3, | ||
7776 | 69,0,327,3,70, | ||
7777 | 0,327,3,71,0, | ||
7778 | 327,3,72,0,327, | ||
7779 | 3,73,0,327,3, | ||
7780 | 74,0,327,3,75, | ||
7781 | 0,327,3,76,0, | ||
7782 | 327,3,77,0,327, | ||
7783 | 3,78,0,327,3, | ||
7784 | 79,0,327,3,80, | ||
7785 | 0,327,3,81,0, | ||
7786 | 327,3,82,0,327, | ||
7787 | 3,83,0,327,3, | ||
7788 | 84,0,327,3,85, | ||
7789 | 0,327,3,86,0, | ||
7790 | 327,3,87,0,327, | ||
7791 | 3,88,0,327,3, | ||
7792 | 89,0,327,3,90, | ||
7793 | 0,327,3,95,0, | ||
7794 | 720,12,1,34590,721, | ||
7795 | 5,63,3,109,0, | ||
7796 | 327,3,110,0,327, | ||
7797 | 3,111,0,327,3, | ||
7798 | 112,0,327,3,113, | ||
7799 | 0,327,3,114,0, | ||
7800 | 327,3,115,0,327, | ||
7801 | 3,116,0,327,3, | ||
7802 | 117,0,327,3,118, | ||
7803 | 0,327,3,119,0, | ||
7804 | 327,3,120,0,327, | ||
7805 | 3,121,0,327,3, | ||
7806 | 122,0,327,3,48, | ||
7807 | 0,327,3,49,0, | ||
7808 | 327,3,50,0,327, | ||
7809 | 3,51,0,327,3, | ||
7810 | 52,0,327,3,53, | ||
7811 | 0,327,3,54,0, | ||
7812 | 327,3,55,0,327, | ||
7813 | 3,56,0,327,3, | ||
7814 | 57,0,327,3,65, | ||
7815 | 0,327,3,66,0, | ||
7816 | 327,3,67,0,327, | ||
7817 | 3,68,0,327,3, | ||
7818 | 69,0,327,3,70, | ||
7819 | 0,327,3,71,0, | ||
7820 | 327,3,72,0,327, | ||
7821 | 3,73,0,327,3, | ||
7822 | 74,0,327,3,75, | ||
7823 | 0,327,3,76,0, | ||
7824 | 327,3,77,0,327, | ||
7825 | 3,78,0,327,3, | ||
7826 | 79,0,327,3,80, | ||
7827 | 0,327,3,81,0, | ||
7828 | 327,3,82,0,327, | ||
7829 | 3,83,0,327,3, | ||
7830 | 84,0,327,3,85, | ||
7831 | 0,327,3,86,0, | ||
7832 | 327,3,87,0,327, | ||
7833 | 3,88,0,327,3, | ||
7834 | 89,0,327,3,90, | ||
7835 | 0,327,3,95,0, | ||
7836 | 327,3,97,0,327, | ||
7837 | 3,98,0,327,3, | ||
7838 | 99,0,722,12,1, | ||
7839 | 34635,723,5,63,3, | ||
7840 | 109,0,327,3,110, | ||
7841 | 0,327,3,111,0, | ||
7842 | 724,12,1,34665,725, | ||
7843 | 5,63,3,109,0, | ||
7844 | 327,3,110,0,327, | ||
7845 | 3,111,0,327,3, | ||
7846 | 112,0,327,3,113, | ||
7847 | 0,327,3,114,0, | ||
7848 | 327,3,115,0,327, | ||
7849 | 3,116,0,327,3, | ||
7850 | 117,0,327,3,118, | ||
7851 | 0,327,3,119,0, | ||
7852 | 327,3,120,0,327, | ||
7853 | 3,121,0,327,3, | ||
7854 | 122,0,327,3,48, | ||
7855 | 0,327,3,49,0, | ||
7856 | 327,3,50,0,327, | ||
7857 | 3,51,0,327,3, | ||
7858 | 52,0,327,3,53, | ||
7859 | 0,327,3,54,0, | ||
7860 | 327,3,55,0,327, | ||
7861 | 3,56,0,327,3, | ||
7862 | 57,0,327,3,65, | ||
7863 | 0,327,3,66,0, | ||
7864 | 327,3,67,0,327, | ||
7865 | 3,68,0,327,3, | ||
7866 | 69,0,327,3,70, | ||
7867 | 0,327,3,71,0, | ||
7868 | 327,3,72,0,327, | ||
7869 | 3,73,0,327,3, | ||
7870 | 74,0,327,3,75, | ||
7871 | 0,327,3,76,0, | ||
7872 | 327,3,77,0,327, | ||
7873 | 3,78,0,327,3, | ||
7874 | 79,0,327,3,80, | ||
7875 | 0,327,3,81,0, | ||
7876 | 327,3,82,0,327, | ||
7877 | 3,83,0,327,3, | ||
7878 | 84,0,327,3,85, | ||
7879 | 0,327,3,86,0, | ||
7880 | 327,3,87,0,327, | ||
7881 | 3,88,0,327,3, | ||
7882 | 89,0,327,3,90, | ||
7883 | 0,327,3,95,0, | ||
7884 | 327,3,97,0,327, | ||
7885 | 3,98,0,327,3, | ||
7886 | 99,0,327,3,100, | ||
7887 | 0,327,3,101,0, | ||
7888 | 327,3,102,0,327, | ||
7889 | 3,103,0,327,3, | ||
7890 | 104,0,327,3,105, | ||
7891 | 0,327,3,106,0, | ||
7892 | 327,3,107,0,327, | ||
7893 | 3,108,0,726,12, | ||
7894 | 1,34719,727,5,63, | ||
7895 | 3,109,0,327,3, | ||
7896 | 110,0,327,3,111, | ||
7897 | 0,327,3,112,0, | ||
7898 | 327,3,113,0,327, | ||
7899 | 3,114,0,327,3, | ||
7900 | 115,0,327,3,116, | ||
7901 | 0,327,3,117,0, | ||
7902 | 327,3,118,0,327, | ||
7903 | 3,119,0,327,3, | ||
7904 | 120,0,327,3,121, | ||
7905 | 0,327,3,122,0, | ||
7906 | 327,3,48,0,327, | ||
7907 | 3,49,0,327,3, | ||
7908 | 50,0,327,3,51, | ||
7909 | 0,327,3,52,0, | ||
7910 | 327,3,53,0,327, | ||
7911 | 3,54,0,327,3, | ||
7912 | 55,0,327,3,56, | ||
7913 | 0,327,3,57,0, | ||
7914 | 327,3,65,0,327, | ||
7915 | 3,66,0,327,3, | ||
7916 | 67,0,327,3,68, | ||
7917 | 0,327,3,69,0, | ||
7918 | 327,3,70,0,327, | ||
7919 | 3,71,0,327,3, | ||
7920 | 72,0,327,3,73, | ||
7921 | 0,327,3,74,0, | ||
7922 | 327,3,75,0,327, | ||
7923 | 3,76,0,327,3, | ||
7924 | 77,0,327,3,78, | ||
7925 | 0,327,3,79,0, | ||
7926 | 327,3,80,0,327, | ||
7927 | 3,81,0,327,3, | ||
7928 | 82,0,327,3,83, | ||
7929 | 0,327,3,84,0, | ||
7930 | 327,3,85,0,327, | ||
7931 | 3,86,0,327,3, | ||
7932 | 87,0,327,3,88, | ||
7933 | 0,327,3,89,0, | ||
7934 | 327,3,90,0,327, | ||
7935 | 3,95,0,327,3, | ||
7936 | 97,0,327,3,98, | ||
7937 | 0,327,3,99,0, | ||
7938 | 327,3,100,0,327, | ||
7939 | 3,101,0,327,3, | ||
7940 | 102,0,327,3,103, | ||
7941 | 0,327,3,104,0, | ||
7942 | 327,3,105,0,327, | ||
7943 | 3,106,0,327,3, | ||
7944 | 107,0,327,3,108, | ||
7945 | 0,728,12,1,34773, | ||
7946 | 729,5,63,3,109, | ||
7947 | 0,327,3,110,0, | ||
7948 | 327,3,111,0,327, | ||
7949 | 3,112,0,327,3, | ||
7950 | 113,0,327,3,114, | ||
7951 | 0,327,3,115,0, | ||
7952 | 327,3,116,0,327, | ||
7953 | 3,117,0,327,3, | ||
7954 | 118,0,327,3,119, | ||
7955 | 0,327,3,120,0, | ||
7956 | 327,3,121,0,327, | ||
7957 | 3,122,0,327,3, | ||
7958 | 48,0,327,3,49, | ||
7959 | 0,327,3,50,0, | ||
7960 | 327,3,51,0,327, | ||
7961 | 3,52,0,327,3, | ||
7962 | 53,0,327,3,54, | ||
7963 | 0,327,3,55,0, | ||
7964 | 327,3,56,0,327, | ||
7965 | 3,57,0,327,3, | ||
7966 | 65,0,327,3,66, | ||
7967 | 0,327,3,67,0, | ||
7968 | 327,3,68,0,327, | ||
7969 | 3,69,0,327,3, | ||
7970 | 70,0,327,3,71, | ||
7971 | 0,327,3,72,0, | ||
7972 | 327,3,73,0,327, | ||
7973 | 3,74,0,327,3, | ||
7974 | 75,0,327,3,76, | ||
7975 | 0,327,3,77,0, | ||
7976 | 327,3,78,0,327, | ||
7977 | 3,79,0,327,3, | ||
7978 | 80,0,327,3,81, | ||
7979 | 0,327,3,82,0, | ||
7980 | 327,3,83,0,327, | ||
7981 | 3,84,0,327,3, | ||
7982 | 85,0,327,3,86, | ||
7983 | 0,327,3,87,0, | ||
7984 | 327,3,88,0,327, | ||
7985 | 3,89,0,327,3, | ||
7986 | 90,0,327,3,95, | ||
7987 | 0,327,3,97,0, | ||
7988 | 327,3,98,0,327, | ||
7989 | 3,99,0,327,3, | ||
7990 | 100,0,327,3,101, | ||
7991 | 0,327,3,102,0, | ||
7992 | 327,3,103,0,327, | ||
7993 | 3,104,0,327,3, | ||
7994 | 105,0,730,12,1, | ||
7995 | 34824,731,5,63,3, | ||
7996 | 109,0,327,3,110, | ||
7997 | 0,327,3,111,0, | ||
7998 | 327,3,112,0,327, | ||
7999 | 3,113,0,327,3, | ||
8000 | 114,0,327,3,115, | ||
8001 | 0,732,12,1,34858, | ||
8002 | 733,5,63,3,109, | ||
8003 | 0,327,3,110,0, | ||
8004 | 327,3,111,0,327, | ||
8005 | 3,112,0,327,3, | ||
8006 | 113,0,327,3,114, | ||
8007 | 0,327,3,115,0, | ||
8008 | 327,3,116,0,327, | ||
8009 | 3,117,0,327,3, | ||
8010 | 118,0,327,3,119, | ||
8011 | 0,327,3,120,0, | ||
8012 | 327,3,121,0,327, | ||
8013 | 3,122,0,327,3, | ||
8014 | 48,0,327,3,49, | ||
8015 | 0,327,3,50,0, | ||
8016 | 327,3,51,0,327, | ||
8017 | 3,52,0,327,3, | ||
8018 | 53,0,327,3,54, | ||
8019 | 0,327,3,55,0, | ||
8020 | 327,3,56,0,327, | ||
8021 | 3,57,0,327,3, | ||
8022 | 65,0,327,3,66, | ||
8023 | 0,327,3,67,0, | ||
8024 | 327,3,68,0,327, | ||
8025 | 3,69,0,327,3, | ||
8026 | 70,0,327,3,71, | ||
8027 | 0,327,3,72,0, | ||
8028 | 327,3,73,0,327, | ||
8029 | 3,74,0,327,3, | ||
8030 | 75,0,327,3,76, | ||
8031 | 0,327,3,77,0, | ||
8032 | 327,3,78,0,327, | ||
8033 | 3,79,0,327,3, | ||
8034 | 80,0,327,3,81, | ||
8035 | 0,327,3,82,0, | ||
8036 | 327,3,83,0,327, | ||
8037 | 3,84,0,327,3, | ||
8038 | 85,0,327,3,86, | ||
8039 | 0,327,3,87,0, | ||
8040 | 327,3,88,0,327, | ||
8041 | 3,89,0,327,3, | ||
8042 | 90,0,327,3,95, | ||
8043 | 0,327,3,97,0, | ||
8044 | 327,3,98,0,327, | ||
8045 | 3,99,0,327,3, | ||
8046 | 100,0,327,3,101, | ||
8047 | 0,327,3,102,0, | ||
8048 | 327,3,103,0,327, | ||
8049 | 3,104,0,327,3, | ||
8050 | 105,0,734,12,1, | ||
8051 | 34909,735,5,63,3, | ||
8052 | 109,0,327,3,110, | ||
8053 | 0,327,3,111,0, | ||
8054 | 736,12,1,34939,737, | ||
8055 | 5,63,3,109,0, | ||
8056 | 327,3,110,0,738, | ||
8057 | 12,1,34968,739,5, | ||
8058 | 63,3,109,0,327, | ||
8059 | 3,110,0,327,3, | ||
8060 | 111,0,327,3,112, | ||
8061 | 0,327,3,113,0, | ||
8062 | 327,3,114,0,327, | ||
8063 | 3,115,0,327,3, | ||
8064 | 116,0,327,3,117, | ||
8065 | 0,327,3,118,0, | ||
8066 | 327,3,119,0,327, | ||
8067 | 3,120,0,327,3, | ||
8068 | 121,0,327,3,122, | ||
8069 | 0,327,3,48,0, | ||
8070 | 327,3,49,0,327, | ||
8071 | 3,50,0,327,3, | ||
8072 | 51,0,327,3,52, | ||
8073 | 0,327,3,53,0, | ||
8074 | 327,3,54,0,327, | ||
8075 | 3,55,0,327,3, | ||
8076 | 56,0,327,3,57, | ||
8077 | 0,327,3,65,0, | ||
8078 | 327,3,66,0,327, | ||
8079 | 3,67,0,327,3, | ||
8080 | 68,0,327,3,69, | ||
8081 | 0,327,3,70,0, | ||
8082 | 327,3,71,0,327, | ||
8083 | 3,72,0,327,3, | ||
8084 | 73,0,327,3,74, | ||
8085 | 0,327,3,75,0, | ||
8086 | 327,3,76,0,327, | ||
8087 | 3,77,0,327,3, | ||
8088 | 78,0,327,3,79, | ||
8089 | 0,327,3,80,0, | ||
8090 | 327,3,81,0,327, | ||
8091 | 3,82,0,327,3, | ||
8092 | 83,0,327,3,84, | ||
8093 | 0,327,3,85,0, | ||
8094 | 327,3,86,0,327, | ||
8095 | 3,87,0,327,3, | ||
8096 | 88,0,327,3,89, | ||
8097 | 0,327,3,90,0, | ||
8098 | 327,3,95,0,740, | ||
8099 | 12,1,35054,741,5, | ||
8100 | 63,3,109,0,327, | ||
8101 | 3,110,0,327,3, | ||
8102 | 111,0,327,3,112, | ||
8103 | 0,327,3,113,0, | ||
8104 | 327,3,114,0,327, | ||
8105 | 3,115,0,742,12, | ||
8106 | 1,35088,743,5,63, | ||
8107 | 3,109,0,327,3, | ||
8108 | 110,0,327,3,111, | ||
8109 | 0,327,3,112,0, | ||
8110 | 327,3,113,0,327, | ||
8111 | 3,114,0,327,3, | ||
8112 | 115,0,327,3,116, | ||
8113 | 0,744,12,1,35123, | ||
8114 | 745,5,63,3,109, | ||
8115 | 0,327,3,110,0, | ||
8116 | 327,3,111,0,327, | ||
8117 | 3,112,0,327,3, | ||
8118 | 113,0,327,3,114, | ||
8119 | 0,327,3,115,0, | ||
8120 | 327,3,116,0,327, | ||
8121 | 3,117,0,327,3, | ||
8122 | 118,0,327,3,119, | ||
8123 | 0,327,3,120,0, | ||
8124 | 327,3,121,0,327, | ||
8125 | 3,122,0,327,3, | ||
8126 | 48,0,327,3,49, | ||
8127 | 0,327,3,50,0, | ||
8128 | 327,3,51,0,327, | ||
8129 | 3,52,0,327,3, | ||
8130 | 53,0,327,3,54, | ||
8131 | 0,327,3,55,0, | ||
8132 | 327,3,56,0,327, | ||
8133 | 3,57,0,327,3, | ||
8134 | 65,0,327,3,66, | ||
8135 | 0,327,3,67,0, | ||
8136 | 327,3,68,0,327, | ||
8137 | 3,69,0,327,3, | ||
8138 | 70,0,327,3,71, | ||
8139 | 0,327,3,72,0, | ||
8140 | 327,3,73,0,327, | ||
8141 | 3,74,0,327,3, | ||
8142 | 75,0,327,3,76, | ||
8143 | 0,327,3,77,0, | ||
8144 | 327,3,78,0,327, | ||
8145 | 3,79,0,327,3, | ||
8146 | 80,0,327,3,81, | ||
8147 | 0,327,3,82,0, | ||
8148 | 327,3,83,0,327, | ||
8149 | 3,84,0,327,3, | ||
8150 | 85,0,327,3,86, | ||
8151 | 0,327,3,87,0, | ||
8152 | 327,3,88,0,327, | ||
8153 | 3,89,0,327,3, | ||
8154 | 90,0,327,3,95, | ||
8155 | 0,327,3,97,0, | ||
8156 | 746,12,1,35166,747, | ||
8157 | 5,63,3,109,0, | ||
8158 | 327,3,110,0,327, | ||
8159 | 3,111,0,327,3, | ||
8160 | 112,0,327,3,113, | ||
8161 | 0,327,3,114,0, | ||
8162 | 748,12,1,35199,749, | ||
8163 | 5,63,3,109,0, | ||
8164 | 327,3,110,0,327, | ||
8165 | 3,111,0,327,3, | ||
8166 | 112,0,327,3,113, | ||
8167 | 0,327,3,114,0, | ||
8168 | 327,3,115,0,327, | ||
8169 | 3,116,0,750,12, | ||
8170 | 1,35234,751,5,63, | ||
8171 | 3,109,0,327,3, | ||
8172 | 110,0,327,3,111, | ||
8173 | 0,327,3,112,0, | ||
8174 | 327,3,113,0,327, | ||
8175 | 3,114,0,327,3, | ||
8176 | 115,0,327,3,116, | ||
8177 | 0,327,3,117,0, | ||
8178 | 327,3,118,0,327, | ||
8179 | 3,119,0,327,3, | ||
8180 | 120,0,327,3,121, | ||
8181 | 0,327,3,122,0, | ||
8182 | 327,3,48,0,327, | ||
8183 | 3,49,0,327,3, | ||
8184 | 50,0,327,3,51, | ||
8185 | 0,327,3,52,0, | ||
8186 | 327,3,53,0,327, | ||
8187 | 3,54,0,327,3, | ||
8188 | 55,0,327,3,56, | ||
8189 | 0,327,3,57,0, | ||
8190 | 327,3,65,0,327, | ||
8191 | 3,66,0,327,3, | ||
8192 | 67,0,327,3,68, | ||
8193 | 0,327,3,69,0, | ||
8194 | 327,3,70,0,327, | ||
8195 | 3,71,0,327,3, | ||
8196 | 72,0,327,3,73, | ||
8197 | 0,327,3,74,0, | ||
8198 | 327,3,75,0,327, | ||
8199 | 3,76,0,327,3, | ||
8200 | 77,0,327,3,78, | ||
8201 | 0,327,3,79,0, | ||
8202 | 327,3,80,0,327, | ||
8203 | 3,81,0,327,3, | ||
8204 | 82,0,327,3,83, | ||
8205 | 0,327,3,84,0, | ||
8206 | 327,3,85,0,327, | ||
8207 | 3,86,0,327,3, | ||
8208 | 87,0,327,3,88, | ||
8209 | 0,327,3,89,0, | ||
8210 | 327,3,90,0,327, | ||
8211 | 3,95,0,327,3, | ||
8212 | 97,0,327,3,98, | ||
8213 | 0,327,3,99,0, | ||
8214 | 327,3,100,0,327, | ||
8215 | 3,101,0,327,3, | ||
8216 | 102,0,327,3,103, | ||
8217 | 0,327,3,104,0, | ||
8218 | 327,3,105,0,327, | ||
8219 | 3,106,0,327,3, | ||
8220 | 107,0,327,3,108, | ||
8221 | 0,327,752,11,1, | ||
8222 | 541,0,753,4,52, | ||
8223 | 76,0,65,0,78, | ||
8224 | 0,68,0,95,0, | ||
8225 | 67,0,79,0,76, | ||
8226 | 0,76,0,73,0, | ||
8227 | 83,0,73,0,79, | ||
8228 | 0,78,0,95,0, | ||
8229 | 83,0,84,0,65, | ||
8230 | 0,82,0,84,0, | ||
8231 | 95,0,69,0,86, | ||
8232 | 0,69,0,78,0, | ||
8233 | 84,0,1,-1,3, | ||
8234 | 117,0,327,3,118, | ||
8235 | 0,327,3,119,0, | ||
8236 | 327,3,120,0,327, | ||
8237 | 3,121,0,327,3, | ||
8238 | 122,0,327,3,48, | ||
8239 | 0,327,3,49,0, | ||
8240 | 327,3,50,0,327, | ||
8241 | 3,51,0,327,3, | ||
8242 | 52,0,327,3,53, | ||
8243 | 0,327,3,54,0, | ||
8244 | 327,3,55,0,327, | ||
8245 | 3,56,0,327,3, | ||
8246 | 57,0,327,3,65, | ||
8247 | 0,327,3,66,0, | ||
8248 | 327,3,67,0,327, | ||
8249 | 3,68,0,327,3, | ||
8250 | 69,0,327,3,70, | ||
8251 | 0,327,3,71,0, | ||
8252 | 327,3,72,0,327, | ||
8253 | 3,73,0,327,3, | ||
8254 | 74,0,327,3,75, | ||
8255 | 0,327,3,76,0, | ||
8256 | 327,3,77,0,327, | ||
8257 | 3,78,0,327,3, | ||
8258 | 79,0,327,3,80, | ||
8259 | 0,327,3,81,0, | ||
8260 | 327,3,82,0,327, | ||
8261 | 3,83,0,327,3, | ||
8262 | 84,0,327,3,85, | ||
8263 | 0,327,3,86,0, | ||
8264 | 327,3,87,0,327, | ||
8265 | 3,88,0,327,3, | ||
8266 | 89,0,327,3,90, | ||
8267 | 0,327,3,95,0, | ||
8268 | 327,3,97,0,327, | ||
8269 | 3,98,0,327,3, | ||
8270 | 99,0,327,3,100, | ||
8271 | 0,327,3,101,0, | ||
8272 | 327,3,102,0,327, | ||
8273 | 3,103,0,327,3, | ||
8274 | 104,0,327,3,105, | ||
8275 | 0,327,3,106,0, | ||
8276 | 327,3,107,0,327, | ||
8277 | 3,108,0,327,754, | ||
8278 | 11,1,829,0,330, | ||
8279 | 1,-1,3,115,0, | ||
8280 | 327,3,116,0,327, | ||
8281 | 3,117,0,327,3, | ||
8282 | 118,0,327,3,119, | ||
8283 | 0,327,3,120,0, | ||
8284 | 327,3,121,0,327, | ||
8285 | 3,122,0,327,3, | ||
8286 | 48,0,327,3,49, | ||
8287 | 0,327,3,50,0, | ||
8288 | 327,3,51,0,327, | ||
8289 | 3,52,0,327,3, | ||
8290 | 53,0,327,3,54, | ||
8291 | 0,327,3,55,0, | ||
8292 | 327,3,56,0,327, | ||
8293 | 3,57,0,327,3, | ||
8294 | 65,0,327,3,66, | ||
8295 | 0,327,3,67,0, | ||
8296 | 327,3,68,0,327, | ||
8297 | 3,69,0,327,3, | ||
8298 | 70,0,327,3,71, | ||
8299 | 0,327,3,72,0, | ||
8300 | 327,3,73,0,327, | ||
8301 | 3,74,0,327,3, | ||
8302 | 75,0,327,3,76, | ||
8303 | 0,327,3,77,0, | ||
8304 | 327,3,78,0,327, | ||
8305 | 3,79,0,327,3, | ||
8306 | 80,0,327,3,81, | ||
8307 | 0,327,3,82,0, | ||
8308 | 327,3,83,0,327, | ||
8309 | 3,84,0,327,3, | ||
8310 | 85,0,327,3,86, | ||
8311 | 0,327,3,87,0, | ||
8312 | 327,3,88,0,327, | ||
8313 | 3,89,0,327,3, | ||
8314 | 90,0,327,3,95, | ||
8315 | 0,327,3,97,0, | ||
8316 | 327,3,98,0,327, | ||
8317 | 3,99,0,327,3, | ||
8318 | 100,0,327,3,101, | ||
8319 | 0,327,3,102,0, | ||
8320 | 327,3,103,0,327, | ||
8321 | 3,104,0,327,3, | ||
8322 | 105,0,327,3,106, | ||
8323 | 0,327,3,107,0, | ||
8324 | 327,3,108,0,327, | ||
8325 | 755,11,1,829,0, | ||
8326 | 330,1,-1,3,98, | ||
8327 | 0,327,3,99,0, | ||
8328 | 327,3,100,0,327, | ||
8329 | 3,101,0,327,3, | ||
8330 | 102,0,327,3,103, | ||
8331 | 0,327,3,104,0, | ||
8332 | 327,3,105,0,327, | ||
8333 | 3,106,0,327,3, | ||
8334 | 107,0,327,3,108, | ||
8335 | 0,327,756,11,1, | ||
8336 | 829,0,330,1,-1, | ||
8337 | 3,117,0,327,3, | ||
8338 | 118,0,327,3,119, | ||
8339 | 0,327,3,120,0, | ||
8340 | 327,3,121,0,327, | ||
8341 | 3,122,0,327,3, | ||
8342 | 48,0,327,3,49, | ||
8343 | 0,327,3,50,0, | ||
8344 | 327,3,51,0,327, | ||
8345 | 3,52,0,327,3, | ||
8346 | 53,0,327,3,54, | ||
8347 | 0,327,3,55,0, | ||
8348 | 327,3,56,0,327, | ||
8349 | 3,57,0,327,3, | ||
8350 | 65,0,327,3,66, | ||
8351 | 0,327,3,67,0, | ||
8352 | 327,3,68,0,327, | ||
8353 | 3,69,0,327,3, | ||
8354 | 70,0,327,3,71, | ||
8355 | 0,327,3,72,0, | ||
8356 | 327,3,73,0,327, | ||
8357 | 3,74,0,327,3, | ||
8358 | 75,0,327,3,76, | ||
8359 | 0,327,3,77,0, | ||
8360 | 327,3,78,0,327, | ||
8361 | 3,79,0,327,3, | ||
8362 | 80,0,327,3,81, | ||
8363 | 0,327,3,82,0, | ||
8364 | 327,3,83,0,327, | ||
8365 | 3,84,0,327,3, | ||
8366 | 85,0,327,3,86, | ||
8367 | 0,327,3,87,0, | ||
8368 | 327,3,88,0,327, | ||
8369 | 3,89,0,327,3, | ||
8370 | 90,0,327,3,95, | ||
8371 | 0,327,3,97,0, | ||
8372 | 327,3,98,0,327, | ||
8373 | 3,99,0,327,3, | ||
8374 | 100,0,327,3,101, | ||
8375 | 0,327,3,102,0, | ||
8376 | 327,3,103,0,327, | ||
8377 | 3,104,0,327,3, | ||
8378 | 105,0,327,3,106, | ||
8379 | 0,327,3,107,0, | ||
8380 | 327,3,108,0,327, | ||
8381 | 757,11,1,829,0, | ||
8382 | 330,1,-1,3,116, | ||
8383 | 0,327,3,117,0, | ||
8384 | 327,3,118,0,327, | ||
8385 | 3,119,0,327,3, | ||
8386 | 120,0,327,3,121, | ||
8387 | 0,327,3,122,0, | ||
8388 | 327,3,48,0,327, | ||
8389 | 3,49,0,327,3, | ||
8390 | 50,0,327,3,51, | ||
8391 | 0,327,3,52,0, | ||
8392 | 327,3,53,0,327, | ||
8393 | 3,54,0,327,3, | ||
8394 | 55,0,327,3,56, | ||
8395 | 0,327,3,57,0, | ||
8396 | 327,3,65,0,327, | ||
8397 | 3,66,0,327,3, | ||
8398 | 67,0,327,3,68, | ||
8399 | 0,327,3,69,0, | ||
8400 | 327,3,70,0,327, | ||
8401 | 3,71,0,327,3, | ||
8402 | 72,0,327,3,73, | ||
8403 | 0,327,3,74,0, | ||
8404 | 327,3,75,0,327, | ||
8405 | 3,76,0,327,3, | ||
8406 | 77,0,327,3,78, | ||
8407 | 0,327,3,79,0, | ||
8408 | 327,3,80,0,327, | ||
8409 | 3,81,0,327,3, | ||
8410 | 82,0,327,3,83, | ||
8411 | 0,327,3,84,0, | ||
8412 | 327,3,85,0,327, | ||
8413 | 3,86,0,327,3, | ||
8414 | 87,0,327,3,88, | ||
8415 | 0,327,3,89,0, | ||
8416 | 327,3,90,0,327, | ||
8417 | 3,95,0,327,3, | ||
8418 | 97,0,327,3,98, | ||
8419 | 0,327,3,99,0, | ||
8420 | 327,3,100,0,327, | ||
8421 | 3,101,0,758,12, | ||
8422 | 1,35701,759,5,63, | ||
8423 | 3,109,0,327,3, | ||
8424 | 110,0,760,12,1, | ||
8425 | 35730,761,5,63,3, | ||
8426 | 109,0,327,3,110, | ||
8427 | 0,327,3,111,0, | ||
8428 | 327,3,112,0,327, | ||
8429 | 3,113,0,327,3, | ||
8430 | 114,0,327,3,115, | ||
8431 | 0,327,3,116,0, | ||
8432 | 327,3,117,0,327, | ||
8433 | 3,118,0,327,3, | ||
8434 | 119,0,327,3,120, | ||
8435 | 0,327,3,121,0, | ||
8436 | 327,3,122,0,327, | ||
8437 | 3,48,0,327,3, | ||
8438 | 49,0,327,3,50, | ||
8439 | 0,327,3,51,0, | ||
8440 | 327,3,52,0,327, | ||
8441 | 3,53,0,327,3, | ||
8442 | 54,0,327,3,55, | ||
8443 | 0,327,3,56,0, | ||
8444 | 327,3,57,0,327, | ||
8445 | 3,65,0,327,3, | ||
8446 | 66,0,327,3,67, | ||
8447 | 0,327,3,68,0, | ||
8448 | 327,3,69,0,327, | ||
8449 | 3,70,0,327,3, | ||
8450 | 71,0,327,3,72, | ||
8451 | 0,327,3,73,0, | ||
8452 | 327,3,74,0,327, | ||
8453 | 3,75,0,327,3, | ||
8454 | 76,0,327,3,77, | ||
8455 | 0,327,3,78,0, | ||
8456 | 327,3,79,0,327, | ||
8457 | 3,80,0,327,3, | ||
8458 | 81,0,327,3,82, | ||
8459 | 0,327,3,83,0, | ||
8460 | 327,3,84,0,327, | ||
8461 | 3,85,0,327,3, | ||
8462 | 86,0,327,3,87, | ||
8463 | 0,327,3,88,0, | ||
8464 | 327,3,89,0,327, | ||
8465 | 3,90,0,327,3, | ||
8466 | 95,0,327,3,97, | ||
8467 | 0,327,3,98,0, | ||
8468 | 327,3,99,0,327, | ||
8469 | 3,100,0,762,12, | ||
8470 | 1,35776,763,5,63, | ||
8471 | 3,109,0,327,3, | ||
8472 | 110,0,327,3,111, | ||
8473 | 0,327,3,112,0, | ||
8474 | 327,3,113,0,327, | ||
8475 | 3,114,0,327,3, | ||
8476 | 115,0,327,3,116, | ||
8477 | 0,327,3,117,0, | ||
8478 | 327,3,118,0,327, | ||
8479 | 3,119,0,327,3, | ||
8480 | 120,0,327,3,121, | ||
8481 | 0,327,3,122,0, | ||
8482 | 327,3,48,0,327, | ||
8483 | 3,49,0,327,3, | ||
8484 | 50,0,327,3,51, | ||
8485 | 0,327,3,52,0, | ||
8486 | 327,3,53,0,327, | ||
8487 | 3,54,0,327,3, | ||
8488 | 55,0,327,3,56, | ||
8489 | 0,327,3,57,0, | ||
8490 | 327,3,65,0,327, | ||
8491 | 3,66,0,327,3, | ||
8492 | 67,0,327,3,68, | ||
8493 | 0,327,3,69,0, | ||
8494 | 327,3,70,0,327, | ||
8495 | 3,71,0,327,3, | ||
8496 | 72,0,327,3,73, | ||
8497 | 0,327,3,74,0, | ||
8498 | 327,3,75,0,327, | ||
8499 | 3,76,0,327,3, | ||
8500 | 77,0,327,3,78, | ||
8501 | 0,327,3,79,0, | ||
8502 | 327,3,80,0,327, | ||
8503 | 3,81,0,327,3, | ||
8504 | 82,0,327,3,83, | ||
8505 | 0,327,3,84,0, | ||
8506 | 327,3,85,0,327, | ||
8507 | 3,86,0,327,3, | ||
8508 | 87,0,327,3,88, | ||
8509 | 0,327,3,89,0, | ||
8510 | 327,3,90,0,327, | ||
8511 | 3,95,0,327,3, | ||
8512 | 97,0,327,3,98, | ||
8513 | 0,327,3,99,0, | ||
8514 | 327,3,100,0,327, | ||
8515 | 3,101,0,327,3, | ||
8516 | 102,0,327,3,103, | ||
8517 | 0,327,3,104,0, | ||
8518 | 327,3,105,0,327, | ||
8519 | 3,106,0,327,3, | ||
8520 | 107,0,327,3,108, | ||
8521 | 0,327,764,11,1, | ||
8522 | 519,0,765,4,48, | ||
8523 | 76,0,65,0,78, | ||
8524 | 0,68,0,95,0, | ||
8525 | 67,0,79,0,76, | ||
8526 | 0,76,0,73,0, | ||
8527 | 83,0,73,0,79, | ||
8528 | 0,78,0,95,0, | ||
8529 | 69,0,78,0,68, | ||
8530 | 0,95,0,69,0, | ||
8531 | 86,0,69,0,78, | ||
8532 | 0,84,0,1,-1, | ||
8533 | 3,101,0,327,3, | ||
8534 | 102,0,327,3,103, | ||
8535 | 0,327,3,104,0, | ||
8536 | 327,3,105,0,327, | ||
8537 | 3,106,0,327,3, | ||
8538 | 107,0,327,3,108, | ||
8539 | 0,327,766,11,1, | ||
8540 | 829,0,330,1,-1, | ||
8541 | 3,111,0,327,3, | ||
8542 | 112,0,327,3,113, | ||
8543 | 0,327,3,114,0, | ||
8544 | 327,3,115,0,327, | ||
8545 | 3,116,0,327,3, | ||
8546 | 117,0,327,3,118, | ||
8547 | 0,327,3,119,0, | ||
8548 | 327,3,120,0,327, | ||
8549 | 3,121,0,327,3, | ||
8550 | 122,0,327,3,48, | ||
8551 | 0,327,3,49,0, | ||
8552 | 327,3,50,0,327, | ||
8553 | 3,51,0,327,3, | ||
8554 | 52,0,327,3,53, | ||
8555 | 0,327,3,54,0, | ||
8556 | 327,3,55,0,327, | ||
8557 | 3,56,0,327,3, | ||
8558 | 57,0,327,3,65, | ||
8559 | 0,327,3,66,0, | ||
8560 | 327,3,67,0,327, | ||
8561 | 3,68,0,327,3, | ||
8562 | 69,0,327,3,70, | ||
8563 | 0,327,3,71,0, | ||
8564 | 327,3,72,0,327, | ||
8565 | 3,73,0,327,3, | ||
8566 | 74,0,327,3,75, | ||
8567 | 0,327,3,76,0, | ||
8568 | 327,3,77,0,327, | ||
8569 | 3,78,0,327,3, | ||
8570 | 79,0,327,3,80, | ||
8571 | 0,327,3,81,0, | ||
8572 | 327,3,82,0,327, | ||
8573 | 3,83,0,327,3, | ||
8574 | 84,0,327,3,85, | ||
8575 | 0,327,3,86,0, | ||
8576 | 327,3,87,0,327, | ||
8577 | 3,88,0,327,3, | ||
8578 | 89,0,327,3,90, | ||
8579 | 0,327,3,95,0, | ||
8580 | 327,3,97,0,327, | ||
8581 | 3,98,0,327,3, | ||
8582 | 99,0,327,3,100, | ||
8583 | 0,327,3,101,0, | ||
8584 | 327,3,102,0,327, | ||
8585 | 3,103,0,327,3, | ||
8586 | 104,0,327,3,105, | ||
8587 | 0,327,3,106,0, | ||
8588 | 327,3,107,0,327, | ||
8589 | 3,108,0,327,767, | ||
8590 | 11,1,829,0,330, | ||
8591 | 1,-1,3,102,0, | ||
8592 | 327,3,103,0,327, | ||
8593 | 3,104,0,327,3, | ||
8594 | 105,0,327,3,106, | ||
8595 | 0,327,3,107,0, | ||
8596 | 327,3,108,0,327, | ||
8597 | 768,11,1,829,0, | ||
8598 | 330,1,-1,3,97, | ||
8599 | 0,327,3,98,0, | ||
8600 | 327,3,99,0,327, | ||
8601 | 3,100,0,327,3, | ||
8602 | 101,0,327,3,102, | ||
8603 | 0,327,3,103,0, | ||
8604 | 327,3,104,0,327, | ||
8605 | 3,105,0,327,3, | ||
8606 | 106,0,327,3,107, | ||
8607 | 0,327,3,108,0, | ||
8608 | 327,769,11,1,501, | ||
8609 | 0,770,4,40,76, | ||
8610 | 0,65,0,78,0, | ||
8611 | 68,0,95,0,67, | ||
8612 | 0,79,0,76,0, | ||
8613 | 76,0,73,0,83, | ||
8614 | 0,73,0,79,0, | ||
8615 | 78,0,95,0,69, | ||
8616 | 0,86,0,69,0, | ||
8617 | 78,0,84,0,1, | ||
8618 | -1,3,111,0,327, | ||
8619 | 3,112,0,327,3, | ||
8620 | 113,0,327,3,114, | ||
8621 | 0,327,3,115,0, | ||
8622 | 327,3,116,0,327, | ||
8623 | 3,117,0,327,3, | ||
8624 | 118,0,327,3,119, | ||
8625 | 0,327,3,120,0, | ||
8626 | 327,3,121,0,327, | ||
8627 | 3,122,0,327,3, | ||
8628 | 48,0,327,3,49, | ||
8629 | 0,327,3,50,0, | ||
8630 | 327,3,51,0,327, | ||
8631 | 3,52,0,327,3, | ||
8632 | 53,0,327,3,54, | ||
8633 | 0,327,3,55,0, | ||
8634 | 327,3,56,0,327, | ||
8635 | 3,57,0,327,3, | ||
8636 | 65,0,327,3,66, | ||
8637 | 0,327,3,67,0, | ||
8638 | 327,3,68,0,327, | ||
8639 | 3,69,0,327,3, | ||
8640 | 70,0,327,3,71, | ||
8641 | 0,327,3,72,0, | ||
8642 | 327,3,73,0,327, | ||
8643 | 3,74,0,327,3, | ||
8644 | 75,0,327,3,76, | ||
8645 | 0,327,3,77,0, | ||
8646 | 327,3,78,0,327, | ||
8647 | 3,79,0,327,3, | ||
8648 | 80,0,327,3,81, | ||
8649 | 0,327,3,82,0, | ||
8650 | 327,3,83,0,327, | ||
8651 | 3,84,0,327,3, | ||
8652 | 85,0,327,3,86, | ||
8653 | 0,327,3,87,0, | ||
8654 | 327,3,88,0,327, | ||
8655 | 3,89,0,327,3, | ||
8656 | 90,0,327,3,95, | ||
8657 | 0,327,3,97,0, | ||
8658 | 327,3,98,0,327, | ||
8659 | 3,99,0,327,3, | ||
8660 | 100,0,327,3,101, | ||
8661 | 0,327,3,102,0, | ||
8662 | 327,3,103,0,327, | ||
8663 | 3,104,0,327,3, | ||
8664 | 105,0,327,3,106, | ||
8665 | 0,327,3,107,0, | ||
8666 | 327,3,108,0,327, | ||
8667 | 771,11,1,829,0, | ||
8668 | 330,1,-1,3,112, | ||
8669 | 0,327,3,113,0, | ||
8670 | 327,3,114,0,327, | ||
8671 | 3,115,0,327,3, | ||
8672 | 116,0,327,3,117, | ||
8673 | 0,327,3,118,0, | ||
8674 | 327,3,119,0,327, | ||
8675 | 3,120,0,327,3, | ||
8676 | 121,0,327,3,122, | ||
8677 | 0,327,3,48,0, | ||
8678 | 327,3,49,0,327, | ||
8679 | 3,50,0,327,3, | ||
8680 | 51,0,327,3,52, | ||
8681 | 0,327,3,53,0, | ||
8682 | 327,3,54,0,327, | ||
8683 | 3,55,0,327,3, | ||
8684 | 56,0,327,3,57, | ||
8685 | 0,327,3,65,0, | ||
8686 | 327,3,66,0,327, | ||
8687 | 3,67,0,327,3, | ||
8688 | 68,0,327,3,69, | ||
8689 | 0,327,3,70,0, | ||
8690 | 327,3,71,0,327, | ||
8691 | 3,72,0,327,3, | ||
8692 | 73,0,327,3,74, | ||
8693 | 0,327,3,75,0, | ||
8694 | 327,3,76,0,327, | ||
8695 | 3,77,0,327,3, | ||
8696 | 78,0,327,3,79, | ||
8697 | 0,327,3,80,0, | ||
8698 | 327,3,81,0,327, | ||
8699 | 3,82,0,327,3, | ||
8700 | 83,0,327,3,84, | ||
8701 | 0,327,3,85,0, | ||
8702 | 327,3,86,0,327, | ||
8703 | 3,87,0,327,3, | ||
8704 | 88,0,327,3,89, | ||
8705 | 0,327,3,90,0, | ||
8706 | 327,3,95,0,327, | ||
8707 | 3,97,0,327,3, | ||
8708 | 98,0,327,3,99, | ||
8709 | 0,327,3,100,0, | ||
8710 | 327,3,101,0,327, | ||
8711 | 3,102,0,327,3, | ||
8712 | 103,0,327,3,104, | ||
8713 | 0,327,3,105,0, | ||
8714 | 327,3,106,0,327, | ||
8715 | 3,107,0,327,3, | ||
8716 | 108,0,327,772,11, | ||
8717 | 1,829,0,330,1, | ||
8718 | -1,3,106,0,327, | ||
8719 | 3,107,0,327,3, | ||
8720 | 108,0,327,773,11, | ||
8721 | 1,829,0,330,1, | ||
8722 | -1,3,116,0,327, | ||
8723 | 3,117,0,327,3, | ||
8724 | 118,0,327,3,119, | ||
8725 | 0,327,3,120,0, | ||
8726 | 327,3,121,0,327, | ||
8727 | 3,122,0,327,3, | ||
8728 | 48,0,327,3,49, | ||
8729 | 0,327,3,50,0, | ||
8730 | 327,3,51,0,327, | ||
8731 | 3,52,0,327,3, | ||
8732 | 53,0,327,3,54, | ||
8733 | 0,327,3,55,0, | ||
8734 | 327,3,56,0,327, | ||
8735 | 3,57,0,327,3, | ||
8736 | 65,0,327,3,66, | ||
8737 | 0,327,3,67,0, | ||
8738 | 327,3,68,0,327, | ||
8739 | 3,69,0,327,3, | ||
8740 | 70,0,327,3,71, | ||
8741 | 0,327,3,72,0, | ||
8742 | 327,3,73,0,327, | ||
8743 | 3,74,0,327,3, | ||
8744 | 75,0,327,3,76, | ||
8745 | 0,327,3,77,0, | ||
8746 | 327,3,78,0,327, | ||
8747 | 3,79,0,327,3, | ||
8748 | 80,0,327,3,81, | ||
8749 | 0,327,3,82,0, | ||
8750 | 327,3,83,0,327, | ||
8751 | 3,84,0,327,3, | ||
8752 | 85,0,327,3,86, | ||
8753 | 0,327,3,87,0, | ||
8754 | 327,3,88,0,327, | ||
8755 | 3,89,0,327,3, | ||
8756 | 90,0,327,3,95, | ||
8757 | 0,327,3,97,0, | ||
8758 | 327,3,98,0,327, | ||
8759 | 3,99,0,327,3, | ||
8760 | 100,0,327,3,101, | ||
8761 | 0,327,3,102,0, | ||
8762 | 327,3,103,0,327, | ||
8763 | 3,104,0,327,3, | ||
8764 | 105,0,327,3,106, | ||
8765 | 0,327,3,107,0, | ||
8766 | 327,3,108,0,327, | ||
8767 | 774,11,1,829,0, | ||
8768 | 330,1,-1,3,106, | ||
8769 | 0,327,3,107,0, | ||
8770 | 327,3,108,0,327, | ||
8771 | 775,11,1,829,0, | ||
8772 | 330,1,-1,776,11, | ||
8773 | 1,829,0,330,1, | ||
8774 | -1,777,11,1,829, | ||
8775 | 0,330,1,-1,3, | ||
8776 | 112,0,327,3,113, | ||
8777 | 0,327,3,114,0, | ||
8778 | 327,3,115,0,327, | ||
8779 | 3,116,0,327,3, | ||
8780 | 117,0,327,3,118, | ||
8781 | 0,327,3,119,0, | ||
8782 | 327,3,120,0,327, | ||
8783 | 3,121,0,327,3, | ||
8784 | 122,0,327,3,48, | ||
8785 | 0,327,3,49,0, | ||
8786 | 327,3,50,0,327, | ||
8787 | 3,51,0,327,3, | ||
8788 | 52,0,327,3,53, | ||
8789 | 0,327,3,54,0, | ||
8790 | 327,3,55,0,327, | ||
8791 | 3,56,0,327,3, | ||
8792 | 57,0,327,3,65, | ||
8793 | 0,327,3,66,0, | ||
8794 | 327,3,67,0,327, | ||
8795 | 3,68,0,327,3, | ||
8796 | 69,0,327,3,70, | ||
8797 | 0,327,3,71,0, | ||
8798 | 327,3,72,0,327, | ||
8799 | 3,73,0,327,3, | ||
8800 | 74,0,327,3,75, | ||
8801 | 0,327,3,76,0, | ||
8802 | 327,3,77,0,327, | ||
8803 | 3,78,0,327,3, | ||
8804 | 79,0,327,3,80, | ||
8805 | 0,327,3,81,0, | ||
8806 | 327,3,82,0,327, | ||
8807 | 3,83,0,327,3, | ||
8808 | 84,0,327,3,85, | ||
8809 | 0,327,3,86,0, | ||
8810 | 327,3,87,0,327, | ||
8811 | 3,88,0,327,3, | ||
8812 | 89,0,327,3,90, | ||
8813 | 0,327,3,95,0, | ||
8814 | 327,3,97,0,327, | ||
8815 | 3,98,0,327,3, | ||
8816 | 99,0,327,3,100, | ||
8817 | 0,327,3,101,0, | ||
8818 | 327,3,102,0,327, | ||
8819 | 3,103,0,327,3, | ||
8820 | 104,0,327,3,105, | ||
8821 | 0,327,3,106,0, | ||
8822 | 327,3,107,0,327, | ||
8823 | 3,108,0,327,778, | ||
8824 | 11,1,829,0,330, | ||
8825 | 1,-1,3,100,0, | ||
8826 | 327,3,101,0,327, | ||
8827 | 3,102,0,327,3, | ||
8828 | 103,0,327,3,104, | ||
8829 | 0,327,3,105,0, | ||
8830 | 327,3,106,0,327, | ||
8831 | 3,107,0,327,3, | ||
8832 | 108,0,327,779,11, | ||
8833 | 1,829,0,330,1, | ||
8834 | -1,3,97,0,327, | ||
8835 | 3,98,0,327,3, | ||
8836 | 99,0,327,3,100, | ||
8837 | 0,327,3,101,0, | ||
8838 | 327,3,102,0,327, | ||
8839 | 3,103,0,327,3, | ||
8840 | 104,0,327,3,105, | ||
8841 | 0,327,3,106,0, | ||
8842 | 327,3,107,0,327, | ||
8843 | 3,108,0,327,780, | ||
8844 | 11,1,829,0,330, | ||
8845 | 1,-1,3,101,0, | ||
8846 | 327,3,102,0,327, | ||
8847 | 3,103,0,327,3, | ||
8848 | 104,0,327,3,105, | ||
8849 | 0,327,3,106,0, | ||
8850 | 327,3,107,0,327, | ||
8851 | 3,108,0,327,781, | ||
8852 | 11,1,829,0,330, | ||
8853 | 1,-1,3,111,0, | ||
8854 | 327,3,112,0,327, | ||
8855 | 3,113,0,327,3, | ||
8856 | 114,0,327,3,115, | ||
8857 | 0,327,3,116,0, | ||
8858 | 327,3,117,0,327, | ||
8859 | 3,118,0,327,3, | ||
8860 | 119,0,327,3,120, | ||
8861 | 0,327,3,121,0, | ||
8862 | 327,3,122,0,327, | ||
8863 | 3,48,0,327,3, | ||
8864 | 49,0,327,3,50, | ||
8865 | 0,327,3,51,0, | ||
8866 | 327,3,52,0,327, | ||
8867 | 3,53,0,327,3, | ||
8868 | 54,0,327,3,55, | ||
8869 | 0,327,3,56,0, | ||
8870 | 327,3,57,0,327, | ||
8871 | 3,65,0,327,3, | ||
8872 | 66,0,327,3,67, | ||
8873 | 0,327,3,68,0, | ||
8874 | 327,3,69,0,327, | ||
8875 | 3,70,0,327,3, | ||
8876 | 71,0,327,3,72, | ||
8877 | 0,327,3,73,0, | ||
8878 | 327,3,74,0,327, | ||
8879 | 3,75,0,327,3, | ||
8880 | 76,0,327,3,77, | ||
8881 | 0,327,3,78,0, | ||
8882 | 327,3,79,0,327, | ||
8883 | 3,80,0,327,3, | ||
8884 | 81,0,327,3,82, | ||
8885 | 0,327,3,83,0, | ||
8886 | 327,3,84,0,327, | ||
8887 | 3,85,0,327,3, | ||
8888 | 86,0,327,3,87, | ||
8889 | 0,327,3,88,0, | ||
8890 | 327,3,89,0,327, | ||
8891 | 3,90,0,327,3, | ||
8892 | 95,0,327,3,97, | ||
8893 | 0,327,3,98,0, | ||
8894 | 327,3,99,0,327, | ||
8895 | 3,100,0,327,3, | ||
8896 | 101,0,327,3,102, | ||
8897 | 0,327,3,103,0, | ||
8898 | 327,3,104,0,327, | ||
8899 | 3,105,0,327,3, | ||
8900 | 106,0,327,3,107, | ||
8901 | 0,327,3,108,0, | ||
8902 | 327,782,11,1,829, | ||
8903 | 0,330,1,-1,3, | ||
8904 | 98,0,327,3,99, | ||
8905 | 0,327,3,100,0, | ||
8906 | 327,3,101,0,327, | ||
8907 | 3,102,0,327,3, | ||
8908 | 103,0,327,3,104, | ||
8909 | 0,327,3,105,0, | ||
8910 | 783,12,1,37077,784, | ||
8911 | 5,63,3,109,0, | ||
8912 | 327,3,110,0,785, | ||
8913 | 12,1,37106,786,5, | ||
8914 | 63,3,109,0,327, | ||
8915 | 3,110,0,327,3, | ||
8916 | 111,0,327,3,112, | ||
8917 | 0,327,3,113,0, | ||
8918 | 327,3,114,0,327, | ||
8919 | 3,115,0,327,3, | ||
8920 | 116,0,327,3,117, | ||
8921 | 0,327,3,118,0, | ||
8922 | 327,3,119,0,327, | ||
8923 | 3,120,0,327,3, | ||
8924 | 121,0,327,3,122, | ||
8925 | 0,327,3,48,0, | ||
8926 | 327,3,49,0,327, | ||
8927 | 3,50,0,327,3, | ||
8928 | 51,0,327,3,52, | ||
8929 | 0,327,3,53,0, | ||
8930 | 327,3,54,0,327, | ||
8931 | 3,55,0,327,3, | ||
8932 | 56,0,327,3,57, | ||
8933 | 0,327,3,65,0, | ||
8934 | 327,3,66,0,327, | ||
8935 | 3,67,0,327,3, | ||
8936 | 68,0,327,3,69, | ||
8937 | 0,327,3,70,0, | ||
8938 | 327,3,71,0,327, | ||
8939 | 3,72,0,327,3, | ||
8940 | 73,0,327,3,74, | ||
8941 | 0,327,3,75,0, | ||
8942 | 327,3,76,0,327, | ||
8943 | 3,77,0,327,3, | ||
8944 | 78,0,327,3,79, | ||
8945 | 0,327,3,80,0, | ||
8946 | 327,3,81,0,327, | ||
8947 | 3,82,0,327,3, | ||
8948 | 83,0,327,3,84, | ||
8949 | 0,327,3,85,0, | ||
8950 | 327,3,86,0,327, | ||
8951 | 3,87,0,327,3, | ||
8952 | 88,0,327,3,89, | ||
8953 | 0,327,3,90,0, | ||
8954 | 327,3,95,0,327, | ||
8955 | 3,97,0,327,3, | ||
8956 | 98,0,327,3,99, | ||
8957 | 0,327,3,100,0, | ||
8958 | 327,3,101,0,327, | ||
8959 | 3,102,0,327,3, | ||
8960 | 103,0,327,3,104, | ||
8961 | 0,327,3,105,0, | ||
8962 | 327,3,106,0,327, | ||
8963 | 3,107,0,787,12, | ||
8964 | 1,37159,788,5,63, | ||
8965 | 3,109,0,327,3, | ||
8966 | 110,0,327,3,111, | ||
8967 | 0,327,3,112,0, | ||
8968 | 327,3,113,0,327, | ||
8969 | 3,114,0,327,3, | ||
8970 | 115,0,327,3,116, | ||
8971 | 0,327,3,117,0, | ||
8972 | 327,3,118,0,327, | ||
8973 | 3,119,0,327,3, | ||
8974 | 120,0,327,3,121, | ||
8975 | 0,327,3,122,0, | ||
8976 | 327,3,48,0,327, | ||
8977 | 3,49,0,327,3, | ||
8978 | 50,0,327,3,51, | ||
8979 | 0,327,3,52,0, | ||
8980 | 327,3,53,0,327, | ||
8981 | 3,54,0,327,3, | ||
8982 | 55,0,327,3,56, | ||
8983 | 0,327,3,57,0, | ||
8984 | 327,3,65,0,327, | ||
8985 | 3,66,0,327,3, | ||
8986 | 67,0,327,3,68, | ||
8987 | 0,327,3,69,0, | ||
8988 | 327,3,70,0,327, | ||
8989 | 3,71,0,327,3, | ||
8990 | 72,0,327,3,73, | ||
8991 | 0,327,3,74,0, | ||
8992 | 327,3,75,0,327, | ||
8993 | 3,76,0,327,3, | ||
8994 | 77,0,327,3,78, | ||
8995 | 0,327,3,79,0, | ||
8996 | 327,3,80,0,327, | ||
8997 | 3,81,0,327,3, | ||
8998 | 82,0,327,3,83, | ||
8999 | 0,327,3,84,0, | ||
9000 | 327,3,85,0,327, | ||
9001 | 3,86,0,327,3, | ||
9002 | 87,0,327,3,88, | ||
9003 | 0,327,3,89,0, | ||
9004 | 327,3,90,0,327, | ||
9005 | 3,95,0,789,12, | ||
9006 | 1,37245,790,5,63, | ||
9007 | 3,109,0,791,12, | ||
9008 | 1,37273,792,5,63, | ||
9009 | 3,109,0,327,3, | ||
9010 | 110,0,327,3,111, | ||
9011 | 0,327,3,112,0, | ||
9012 | 327,3,113,0,327, | ||
9013 | 3,114,0,327,3, | ||
9014 | 115,0,327,3,116, | ||
9015 | 0,327,3,117,0, | ||
9016 | 327,3,118,0,327, | ||
9017 | 3,119,0,327,3, | ||
9018 | 120,0,327,3,121, | ||
9019 | 0,327,3,122,0, | ||
9020 | 327,3,48,0,327, | ||
9021 | 3,49,0,327,3, | ||
9022 | 50,0,327,3,51, | ||
9023 | 0,327,3,52,0, | ||
9024 | 327,3,53,0,327, | ||
9025 | 3,54,0,327,3, | ||
9026 | 55,0,327,3,56, | ||
9027 | 0,327,3,57,0, | ||
9028 | 327,3,65,0,327, | ||
9029 | 3,66,0,327,3, | ||
9030 | 67,0,327,3,68, | ||
9031 | 0,327,3,69,0, | ||
9032 | 327,3,70,0,327, | ||
9033 | 3,71,0,327,3, | ||
9034 | 72,0,327,3,73, | ||
9035 | 0,327,3,74,0, | ||
9036 | 327,3,75,0,327, | ||
9037 | 3,76,0,327,3, | ||
9038 | 77,0,327,3,78, | ||
9039 | 0,327,3,79,0, | ||
9040 | 327,3,80,0,327, | ||
9041 | 3,81,0,327,3, | ||
9042 | 82,0,327,3,83, | ||
9043 | 0,327,3,84,0, | ||
9044 | 327,3,85,0,327, | ||
9045 | 3,86,0,327,3, | ||
9046 | 87,0,327,3,88, | ||
9047 | 0,327,3,89,0, | ||
9048 | 327,3,90,0,327, | ||
9049 | 3,95,0,327,3, | ||
9050 | 97,0,327,3,98, | ||
9051 | 0,327,3,99,0, | ||
9052 | 327,3,100,0,327, | ||
9053 | 3,101,0,793,12, | ||
9054 | 1,37320,794,5,63, | ||
9055 | 3,109,0,327,3, | ||
9056 | 110,0,327,3,111, | ||
9057 | 0,327,3,112,0, | ||
9058 | 327,3,113,0,327, | ||
9059 | 3,114,0,327,3, | ||
9060 | 115,0,795,12,1, | ||
9061 | 37354,796,5,63,3, | ||
9062 | 109,0,327,3,110, | ||
9063 | 0,327,3,111,0, | ||
9064 | 327,3,112,0,327, | ||
9065 | 3,113,0,327,3, | ||
9066 | 114,0,327,3,115, | ||
9067 | 0,797,12,1,37388, | ||
9068 | 798,5,63,3,109, | ||
9069 | 0,327,3,110,0, | ||
9070 | 327,3,111,0,327, | ||
9071 | 3,112,0,327,3, | ||
9072 | 113,0,327,3,114, | ||
9073 | 0,327,3,115,0, | ||
9074 | 327,3,116,0,327, | ||
9075 | 3,117,0,327,3, | ||
9076 | 118,0,327,3,119, | ||
9077 | 0,327,3,120,0, | ||
9078 | 327,3,121,0,327, | ||
9079 | 3,122,0,327,3, | ||
9080 | 48,0,327,3,49, | ||
9081 | 0,327,3,50,0, | ||
9082 | 327,3,51,0,327, | ||
9083 | 3,52,0,327,3, | ||
9084 | 53,0,327,3,54, | ||
9085 | 0,327,3,55,0, | ||
9086 | 327,3,56,0,327, | ||
9087 | 3,57,0,327,3, | ||
9088 | 65,0,327,3,66, | ||
9089 | 0,327,3,67,0, | ||
9090 | 327,3,68,0,327, | ||
9091 | 3,69,0,327,3, | ||
9092 | 70,0,327,3,71, | ||
9093 | 0,327,3,72,0, | ||
9094 | 327,3,73,0,327, | ||
9095 | 3,74,0,327,3, | ||
9096 | 75,0,327,3,76, | ||
9097 | 0,327,3,77,0, | ||
9098 | 327,3,78,0,327, | ||
9099 | 3,79,0,327,3, | ||
9100 | 80,0,327,3,81, | ||
9101 | 0,327,3,82,0, | ||
9102 | 327,3,83,0,327, | ||
9103 | 3,84,0,327,3, | ||
9104 | 85,0,327,3,86, | ||
9105 | 0,327,3,87,0, | ||
9106 | 327,3,88,0,327, | ||
9107 | 3,89,0,327,3, | ||
9108 | 90,0,327,3,95, | ||
9109 | 0,327,3,97,0, | ||
9110 | 799,12,1,37431,800, | ||
9111 | 5,63,3,109,0, | ||
9112 | 327,3,110,0,327, | ||
9113 | 3,111,0,327,3, | ||
9114 | 112,0,327,3,113, | ||
9115 | 0,327,3,114,0, | ||
9116 | 327,3,115,0,327, | ||
9117 | 3,116,0,327,3, | ||
9118 | 117,0,327,3,118, | ||
9119 | 0,327,3,119,0, | ||
9120 | 327,3,120,0,327, | ||
9121 | 3,121,0,327,3, | ||
9122 | 122,0,327,3,48, | ||
9123 | 0,327,3,49,0, | ||
9124 | 327,3,50,0,327, | ||
9125 | 3,51,0,327,3, | ||
9126 | 52,0,327,3,53, | ||
9127 | 0,327,3,54,0, | ||
9128 | 327,3,55,0,327, | ||
9129 | 3,56,0,327,3, | ||
9130 | 57,0,327,3,65, | ||
9131 | 0,327,3,66,0, | ||
9132 | 327,3,67,0,327, | ||
9133 | 3,68,0,327,3, | ||
9134 | 69,0,327,3,70, | ||
9135 | 0,327,3,71,0, | ||
9136 | 327,3,72,0,327, | ||
9137 | 3,73,0,327,3, | ||
9138 | 74,0,327,3,75, | ||
9139 | 0,327,3,76,0, | ||
9140 | 327,3,77,0,327, | ||
9141 | 3,78,0,327,3, | ||
9142 | 79,0,327,3,80, | ||
9143 | 0,327,3,81,0, | ||
9144 | 327,3,82,0,327, | ||
9145 | 3,83,0,327,3, | ||
9146 | 84,0,327,3,85, | ||
9147 | 0,327,3,86,0, | ||
9148 | 327,3,87,0,327, | ||
9149 | 3,88,0,327,3, | ||
9150 | 89,0,327,3,90, | ||
9151 | 0,327,3,95,0, | ||
9152 | 327,3,97,0,327, | ||
9153 | 3,98,0,327,3, | ||
9154 | 99,0,327,3,100, | ||
9155 | 0,327,3,101,0, | ||
9156 | 327,3,102,0,327, | ||
9157 | 3,103,0,801,12, | ||
9158 | 1,37480,802,5,63, | ||
9159 | 3,109,0,327,3, | ||
9160 | 110,0,327,3,111, | ||
9161 | 0,327,3,112,0, | ||
9162 | 327,3,113,0,327, | ||
9163 | 3,114,0,327,3, | ||
9164 | 115,0,327,3,116, | ||
9165 | 0,327,3,117,0, | ||
9166 | 327,3,118,0,327, | ||
9167 | 3,119,0,327,3, | ||
9168 | 120,0,327,3,121, | ||
9169 | 0,327,3,122,0, | ||
9170 | 327,3,48,0,327, | ||
9171 | 3,49,0,327,3, | ||
9172 | 50,0,327,3,51, | ||
9173 | 0,327,3,52,0, | ||
9174 | 327,3,53,0,327, | ||
9175 | 3,54,0,327,3, | ||
9176 | 55,0,327,3,56, | ||
9177 | 0,327,3,57,0, | ||
9178 | 327,3,65,0,327, | ||
9179 | 3,66,0,327,3, | ||
9180 | 67,0,327,3,68, | ||
9181 | 0,327,3,69,0, | ||
9182 | 327,3,70,0,327, | ||
9183 | 3,71,0,327,3, | ||
9184 | 72,0,327,3,73, | ||
9185 | 0,327,3,74,0, | ||
9186 | 327,3,75,0,327, | ||
9187 | 3,76,0,327,3, | ||
9188 | 77,0,327,3,78, | ||
9189 | 0,327,3,79,0, | ||
9190 | 327,3,80,0,327, | ||
9191 | 3,81,0,327,3, | ||
9192 | 82,0,327,3,83, | ||
9193 | 0,327,3,84,0, | ||
9194 | 327,3,85,0,327, | ||
9195 | 3,86,0,327,3, | ||
9196 | 87,0,327,3,88, | ||
9197 | 0,327,3,89,0, | ||
9198 | 327,3,90,0,327, | ||
9199 | 3,95,0,327,3, | ||
9200 | 97,0,327,3,98, | ||
9201 | 0,327,3,99,0, | ||
9202 | 327,3,100,0,327, | ||
9203 | 3,101,0,803,12, | ||
9204 | 1,37527,804,5,63, | ||
9205 | 3,109,0,327,3, | ||
9206 | 110,0,327,3,111, | ||
9207 | 0,327,3,112,0, | ||
9208 | 327,3,113,0,327, | ||
9209 | 3,114,0,327,3, | ||
9210 | 115,0,327,3,116, | ||
9211 | 0,327,3,117,0, | ||
9212 | 327,3,118,0,327, | ||
9213 | 3,119,0,327,3, | ||
9214 | 120,0,327,3,121, | ||
9215 | 0,327,3,122,0, | ||
9216 | 327,3,48,0,327, | ||
9217 | 3,49,0,327,3, | ||
9218 | 50,0,327,3,51, | ||
9219 | 0,327,3,52,0, | ||
9220 | 327,3,53,0,327, | ||
9221 | 3,54,0,327,3, | ||
9222 | 55,0,327,3,56, | ||
9223 | 0,327,3,57,0, | ||
9224 | 327,3,65,0,327, | ||
9225 | 3,66,0,327,3, | ||
9226 | 67,0,327,3,68, | ||
9227 | 0,327,3,69,0, | ||
9228 | 327,3,70,0,327, | ||
9229 | 3,71,0,327,3, | ||
9230 | 72,0,327,3,73, | ||
9231 | 0,327,3,74,0, | ||
9232 | 327,3,75,0,327, | ||
9233 | 3,76,0,327,3, | ||
9234 | 77,0,327,3,78, | ||
9235 | 0,327,3,79,0, | ||
9236 | 327,3,80,0,327, | ||
9237 | 3,81,0,327,3, | ||
9238 | 82,0,327,3,83, | ||
9239 | 0,327,3,84,0, | ||
9240 | 327,3,85,0,327, | ||
9241 | 3,86,0,327,3, | ||
9242 | 87,0,327,3,88, | ||
9243 | 0,327,3,89,0, | ||
9244 | 327,3,90,0,327, | ||
9245 | 3,95,0,327,3, | ||
9246 | 97,0,327,3,98, | ||
9247 | 0,327,3,99,0, | ||
9248 | 327,3,100,0,327, | ||
9249 | 3,101,0,327,3, | ||
9250 | 102,0,327,3,103, | ||
9251 | 0,327,3,104,0, | ||
9252 | 327,3,105,0,327, | ||
9253 | 3,106,0,327,3, | ||
9254 | 107,0,327,3,108, | ||
9255 | 0,327,805,11,1, | ||
9256 | 565,0,806,4,36, | ||
9257 | 76,0,73,0,78, | ||
9258 | 0,75,0,95,0, | ||
9259 | 77,0,69,0,83, | ||
9260 | 0,83,0,65,0, | ||
9261 | 71,0,69,0,95, | ||
9262 | 0,69,0,86,0, | ||
9263 | 69,0,78,0,84, | ||
9264 | 0,1,-1,3,102, | ||
9265 | 0,327,3,103,0, | ||
9266 | 327,3,104,0,327, | ||
9267 | 3,105,0,327,3, | ||
9268 | 106,0,327,3,107, | ||
9269 | 0,327,3,108,0, | ||
9270 | 327,807,11,1,829, | ||
9271 | 0,330,1,-1,3, | ||
9272 | 104,0,327,3,105, | ||
9273 | 0,327,3,106,0, | ||
9274 | 327,3,107,0,327, | ||
9275 | 3,108,0,327,808, | ||
9276 | 11,1,829,0,330, | ||
9277 | 1,-1,3,98,0, | ||
9278 | 327,3,99,0,327, | ||
9279 | 3,100,0,327,3, | ||
9280 | 101,0,327,3,102, | ||
9281 | 0,327,3,103,0, | ||
9282 | 327,3,104,0,327, | ||
9283 | 3,105,0,327,3, | ||
9284 | 106,0,327,3,107, | ||
9285 | 0,327,3,108,0, | ||
9286 | 327,809,11,1,829, | ||
9287 | 0,330,1,-1,3, | ||
9288 | 116,0,327,3,117, | ||
9289 | 0,327,3,118,0, | ||
9290 | 327,3,119,0,327, | ||
9291 | 3,120,0,327,3, | ||
9292 | 121,0,327,3,122, | ||
9293 | 0,327,3,48,0, | ||
9294 | 327,3,49,0,327, | ||
9295 | 3,50,0,327,3, | ||
9296 | 51,0,327,3,52, | ||
9297 | 0,327,3,53,0, | ||
9298 | 327,3,54,0,327, | ||
9299 | 3,55,0,327,3, | ||
9300 | 56,0,327,3,57, | ||
9301 | 0,327,3,65,0, | ||
9302 | 327,3,66,0,327, | ||
9303 | 3,67,0,327,3, | ||
9304 | 68,0,327,3,69, | ||
9305 | 0,327,3,70,0, | ||
9306 | 327,3,71,0,327, | ||
9307 | 3,72,0,327,3, | ||
9308 | 73,0,327,3,74, | ||
9309 | 0,327,3,75,0, | ||
9310 | 327,3,76,0,327, | ||
9311 | 3,77,0,327,3, | ||
9312 | 78,0,327,3,79, | ||
9313 | 0,327,3,80,0, | ||
9314 | 327,3,81,0,327, | ||
9315 | 3,82,0,327,3, | ||
9316 | 83,0,327,3,84, | ||
9317 | 0,327,3,85,0, | ||
9318 | 327,3,86,0,327, | ||
9319 | 3,87,0,327,3, | ||
9320 | 88,0,327,3,89, | ||
9321 | 0,327,3,90,0, | ||
9322 | 327,3,95,0,327, | ||
9323 | 3,97,0,327,3, | ||
9324 | 98,0,327,3,99, | ||
9325 | 0,327,3,100,0, | ||
9326 | 327,3,101,0,327, | ||
9327 | 3,102,0,327,3, | ||
9328 | 103,0,327,3,104, | ||
9329 | 0,327,3,105,0, | ||
9330 | 327,3,106,0,327, | ||
9331 | 3,107,0,327,3, | ||
9332 | 108,0,327,810,11, | ||
9333 | 1,829,0,330,1, | ||
9334 | -1,3,116,0,327, | ||
9335 | 3,117,0,327,3, | ||
9336 | 118,0,327,3,119, | ||
9337 | 0,327,3,120,0, | ||
9338 | 327,3,121,0,327, | ||
9339 | 3,122,0,327,3, | ||
9340 | 48,0,327,3,49, | ||
9341 | 0,327,3,50,0, | ||
9342 | 327,3,51,0,327, | ||
9343 | 3,52,0,327,3, | ||
9344 | 53,0,327,3,54, | ||
9345 | 0,327,3,55,0, | ||
9346 | 327,3,56,0,327, | ||
9347 | 3,57,0,327,3, | ||
9348 | 65,0,327,3,66, | ||
9349 | 0,327,3,67,0, | ||
9350 | 327,3,68,0,327, | ||
9351 | 3,69,0,327,3, | ||
9352 | 70,0,327,3,71, | ||
9353 | 0,327,3,72,0, | ||
9354 | 327,3,73,0,327, | ||
9355 | 3,74,0,327,3, | ||
9356 | 75,0,327,3,76, | ||
9357 | 0,327,3,77,0, | ||
9358 | 327,3,78,0,327, | ||
9359 | 3,79,0,327,3, | ||
9360 | 80,0,327,3,81, | ||
9361 | 0,327,3,82,0, | ||
9362 | 327,3,83,0,327, | ||
9363 | 3,84,0,327,3, | ||
9364 | 85,0,327,3,86, | ||
9365 | 0,327,3,87,0, | ||
9366 | 327,3,88,0,327, | ||
9367 | 3,89,0,327,3, | ||
9368 | 90,0,327,3,95, | ||
9369 | 0,327,3,97,0, | ||
9370 | 327,3,98,0,327, | ||
9371 | 3,99,0,327,3, | ||
9372 | 100,0,327,3,101, | ||
9373 | 0,327,3,102,0, | ||
9374 | 327,3,103,0,327, | ||
9375 | 3,104,0,327,3, | ||
9376 | 105,0,327,3,106, | ||
9377 | 0,327,3,107,0, | ||
9378 | 327,3,108,0,327, | ||
9379 | 811,11,1,829,0, | ||
9380 | 330,1,-1,3,102, | ||
9381 | 0,327,3,103,0, | ||
9382 | 327,3,104,0,327, | ||
9383 | 3,105,0,327,3, | ||
9384 | 106,0,327,3,107, | ||
9385 | 0,327,3,108,0, | ||
9386 | 327,812,11,1,829, | ||
9387 | 0,330,1,-1,3, | ||
9388 | 110,0,327,3,111, | ||
9389 | 0,327,3,112,0, | ||
9390 | 327,3,113,0,327, | ||
9391 | 3,114,0,327,3, | ||
9392 | 115,0,327,3,116, | ||
9393 | 0,327,3,117,0, | ||
9394 | 327,3,118,0,327, | ||
9395 | 3,119,0,327,3, | ||
9396 | 120,0,327,3,121, | ||
9397 | 0,327,3,122,0, | ||
9398 | 327,3,48,0,327, | ||
9399 | 3,49,0,327,3, | ||
9400 | 50,0,327,3,51, | ||
9401 | 0,327,3,52,0, | ||
9402 | 327,3,53,0,327, | ||
9403 | 3,54,0,327,3, | ||
9404 | 55,0,327,3,56, | ||
9405 | 0,327,3,57,0, | ||
9406 | 327,3,65,0,327, | ||
9407 | 3,66,0,327,3, | ||
9408 | 67,0,327,3,68, | ||
9409 | 0,327,3,69,0, | ||
9410 | 327,3,70,0,327, | ||
9411 | 3,71,0,327,3, | ||
9412 | 72,0,327,3,73, | ||
9413 | 0,327,3,74,0, | ||
9414 | 327,3,75,0,327, | ||
9415 | 3,76,0,327,3, | ||
9416 | 77,0,327,3,78, | ||
9417 | 0,327,3,79,0, | ||
9418 | 327,3,80,0,327, | ||
9419 | 3,81,0,327,3, | ||
9420 | 82,0,327,3,83, | ||
9421 | 0,327,3,84,0, | ||
9422 | 327,3,85,0,327, | ||
9423 | 3,86,0,327,3, | ||
9424 | 87,0,327,3,88, | ||
9425 | 0,327,3,89,0, | ||
9426 | 327,3,90,0,327, | ||
9427 | 3,95,0,327,3, | ||
9428 | 97,0,327,3,98, | ||
9429 | 0,327,3,99,0, | ||
9430 | 327,3,100,0,327, | ||
9431 | 3,101,0,327,3, | ||
9432 | 102,0,327,3,103, | ||
9433 | 0,327,3,104,0, | ||
9434 | 327,3,105,0,327, | ||
9435 | 3,106,0,327,3, | ||
9436 | 107,0,327,3,108, | ||
9437 | 0,327,813,11,1, | ||
9438 | 829,0,330,1,-1, | ||
9439 | 3,97,0,327,3, | ||
9440 | 98,0,327,3,99, | ||
9441 | 0,327,3,100,0, | ||
9442 | 327,3,101,0,327, | ||
9443 | 3,102,0,327,3, | ||
9444 | 103,0,327,3,104, | ||
9445 | 0,327,3,105,0, | ||
9446 | 327,3,106,0,327, | ||
9447 | 3,107,0,327,3, | ||
9448 | 108,0,327,814,11, | ||
9449 | 1,829,0,330,1, | ||
9450 | -1,3,108,0,327, | ||
9451 | 815,11,1,829,0, | ||
9452 | 330,1,-1,3,111, | ||
9453 | 0,327,3,112,0, | ||
9454 | 327,3,113,0,327, | ||
9455 | 3,114,0,327,3, | ||
9456 | 115,0,816,12,1, | ||
9457 | 38311,817,5,63,3, | ||
9458 | 109,0,327,3,110, | ||
9459 | 0,327,3,111,0, | ||
9460 | 327,3,112,0,327, | ||
9461 | 3,113,0,327,3, | ||
9462 | 114,0,327,3,115, | ||
9463 | 0,327,3,116,0, | ||
9464 | 818,12,1,38346,819, | ||
9465 | 5,63,3,109,0, | ||
9466 | 327,3,110,0,327, | ||
9467 | 3,111,0,327,3, | ||
9468 | 112,0,327,3,113, | ||
9469 | 0,327,3,114,0, | ||
9470 | 327,3,115,0,327, | ||
9471 | 3,116,0,327,3, | ||
9472 | 117,0,327,3,118, | ||
9473 | 0,327,3,119,0, | ||
9474 | 327,3,120,0,327, | ||
9475 | 3,121,0,327,3, | ||
9476 | 122,0,327,3,48, | ||
9477 | 0,327,3,49,0, | ||
9478 | 327,3,50,0,327, | ||
9479 | 3,51,0,327,3, | ||
9480 | 52,0,327,3,53, | ||
9481 | 0,327,3,54,0, | ||
9482 | 327,3,55,0,327, | ||
9483 | 3,56,0,327,3, | ||
9484 | 57,0,327,3,65, | ||
9485 | 0,327,3,66,0, | ||
9486 | 327,3,67,0,327, | ||
9487 | 3,68,0,327,3, | ||
9488 | 69,0,327,3,70, | ||
9489 | 0,327,3,71,0, | ||
9490 | 327,3,72,0,327, | ||
9491 | 3,73,0,327,3, | ||
9492 | 74,0,327,3,75, | ||
9493 | 0,327,3,76,0, | ||
9494 | 327,3,77,0,327, | ||
9495 | 3,78,0,327,3, | ||
9496 | 79,0,327,3,80, | ||
9497 | 0,327,3,81,0, | ||
9498 | 327,3,82,0,327, | ||
9499 | 3,83,0,327,3, | ||
9500 | 84,0,327,3,85, | ||
9501 | 0,327,3,86,0, | ||
9502 | 327,3,87,0,327, | ||
9503 | 3,88,0,327,3, | ||
9504 | 89,0,327,3,90, | ||
9505 | 0,327,3,95,0, | ||
9506 | 327,3,97,0,327, | ||
9507 | 3,98,0,327,3, | ||
9508 | 99,0,327,3,100, | ||
9509 | 0,327,3,101,0, | ||
9510 | 820,12,1,38393,821, | ||
9511 | 5,63,3,109,0, | ||
9512 | 327,3,110,0,822, | ||
9513 | 12,1,38422,823,5, | ||
9514 | 63,3,109,0,327, | ||
9515 | 3,110,0,327,3, | ||
9516 | 111,0,327,3,112, | ||
9517 | 0,327,3,113,0, | ||
9518 | 327,3,114,0,327, | ||
9519 | 3,115,0,327,3, | ||
9520 | 116,0,327,3,117, | ||
9521 | 0,327,3,118,0, | ||
9522 | 327,3,119,0,327, | ||
9523 | 3,120,0,327,3, | ||
9524 | 121,0,327,3,122, | ||
9525 | 0,327,3,48,0, | ||
9526 | 327,3,49,0,327, | ||
9527 | 3,50,0,327,3, | ||
9528 | 51,0,327,3,52, | ||
9529 | 0,327,3,53,0, | ||
9530 | 327,3,54,0,327, | ||
9531 | 3,55,0,327,3, | ||
9532 | 56,0,327,3,57, | ||
9533 | 0,327,3,65,0, | ||
9534 | 327,3,66,0,327, | ||
9535 | 3,67,0,327,3, | ||
9536 | 68,0,327,3,69, | ||
9537 | 0,327,3,70,0, | ||
9538 | 327,3,71,0,327, | ||
9539 | 3,72,0,327,3, | ||
9540 | 73,0,327,3,74, | ||
9541 | 0,327,3,75,0, | ||
9542 | 327,3,76,0,327, | ||
9543 | 3,77,0,327,3, | ||
9544 | 78,0,327,3,79, | ||
9545 | 0,327,3,80,0, | ||
9546 | 327,3,81,0,327, | ||
9547 | 3,82,0,327,3, | ||
9548 | 83,0,327,3,84, | ||
9549 | 0,327,3,85,0, | ||
9550 | 327,3,86,0,327, | ||
9551 | 3,87,0,327,3, | ||
9552 | 88,0,327,3,89, | ||
9553 | 0,327,3,90,0, | ||
9554 | 327,3,95,0,327, | ||
9555 | 3,97,0,327,3, | ||
9556 | 98,0,327,3,99, | ||
9557 | 0,327,3,100,0, | ||
9558 | 327,3,101,0,327, | ||
9559 | 3,102,0,327,3, | ||
9560 | 103,0,327,3,104, | ||
9561 | 0,327,3,105,0, | ||
9562 | 327,3,106,0,327, | ||
9563 | 3,107,0,327,3, | ||
9564 | 108,0,327,824,11, | ||
9565 | 1,581,0,825,4, | ||
9566 | 24,76,0,73,0, | ||
9567 | 83,0,84,0,69, | ||
9568 | 0,78,0,95,0, | ||
9569 | 69,0,86,0,69, | ||
9570 | 0,78,0,84,0, | ||
9571 | 1,-1,3,111,0, | ||
9572 | 327,3,112,0,327, | ||
9573 | 3,113,0,327,3, | ||
9574 | 114,0,327,3,115, | ||
9575 | 0,327,3,116,0, | ||
9576 | 327,3,117,0,327, | ||
9577 | 3,118,0,327,3, | ||
9578 | 119,0,327,3,120, | ||
9579 | 0,327,3,121,0, | ||
9580 | 327,3,122,0,327, | ||
9581 | 3,48,0,327,3, | ||
9582 | 49,0,327,3,50, | ||
9583 | 0,327,3,51,0, | ||
9584 | 327,3,52,0,327, | ||
9585 | 3,53,0,327,3, | ||
9586 | 54,0,327,3,55, | ||
9587 | 0,327,3,56,0, | ||
9588 | 327,3,57,0,327, | ||
9589 | 3,65,0,327,3, | ||
9590 | 66,0,327,3,67, | ||
9591 | 0,327,3,68,0, | ||
9592 | 327,3,69,0,327, | ||
9593 | 3,70,0,327,3, | ||
9594 | 71,0,327,3,72, | ||
9595 | 0,327,3,73,0, | ||
9596 | 327,3,74,0,327, | ||
9597 | 3,75,0,327,3, | ||
9598 | 76,0,327,3,77, | ||
9599 | 0,327,3,78,0, | ||
9600 | 327,3,79,0,327, | ||
9601 | 3,80,0,327,3, | ||
9602 | 81,0,327,3,82, | ||
9603 | 0,327,3,83,0, | ||
9604 | 327,3,84,0,327, | ||
9605 | 3,85,0,327,3, | ||
9606 | 86,0,327,3,87, | ||
9607 | 0,327,3,88,0, | ||
9608 | 327,3,89,0,327, | ||
9609 | 3,90,0,327,3, | ||
9610 | 95,0,327,3,97, | ||
9611 | 0,327,3,98,0, | ||
9612 | 327,3,99,0,327, | ||
9613 | 3,100,0,327,3, | ||
9614 | 101,0,327,3,102, | ||
9615 | 0,327,3,103,0, | ||
9616 | 327,3,104,0,327, | ||
9617 | 3,105,0,327,3, | ||
9618 | 106,0,327,3,107, | ||
9619 | 0,327,3,108,0, | ||
9620 | 327,826,11,1,829, | ||
9621 | 0,330,1,-1,3, | ||
9622 | 102,0,327,3,103, | ||
9623 | 0,327,3,104,0, | ||
9624 | 327,3,105,0,327, | ||
9625 | 3,106,0,327,3, | ||
9626 | 107,0,327,3,108, | ||
9627 | 0,327,827,11,1, | ||
9628 | 342,0,828,4,18, | ||
9629 | 76,0,73,0,83, | ||
9630 | 0,84,0,95,0, | ||
9631 | 84,0,89,0,80, | ||
9632 | 0,69,0,1,-1, | ||
9633 | 3,117,0,327,3, | ||
9634 | 118,0,327,3,119, | ||
9635 | 0,327,3,120,0, | ||
9636 | 327,3,121,0,327, | ||
9637 | 3,122,0,327,3, | ||
9638 | 48,0,327,3,49, | ||
9639 | 0,327,3,50,0, | ||
9640 | 327,3,51,0,327, | ||
9641 | 3,52,0,327,3, | ||
9642 | 53,0,327,3,54, | ||
9643 | 0,327,3,55,0, | ||
9644 | 327,3,56,0,327, | ||
9645 | 3,57,0,327,3, | ||
9646 | 65,0,327,3,66, | ||
9647 | 0,327,3,67,0, | ||
9648 | 327,3,68,0,327, | ||
9649 | 3,69,0,327,3, | ||
9650 | 70,0,327,3,71, | ||
9651 | 0,327,3,72,0, | ||
9652 | 327,3,73,0,327, | ||
9653 | 3,74,0,327,3, | ||
9654 | 75,0,327,3,76, | ||
9655 | 0,327,3,77,0, | ||
9656 | 327,3,78,0,327, | ||
9657 | 3,79,0,327,3, | ||
9658 | 80,0,327,3,81, | ||
9659 | 0,327,3,82,0, | ||
9660 | 327,3,83,0,327, | ||
9661 | 3,84,0,327,3, | ||
9662 | 85,0,327,3,86, | ||
9663 | 0,327,3,87,0, | ||
9664 | 327,3,88,0,327, | ||
9665 | 3,89,0,327,3, | ||
9666 | 90,0,327,3,95, | ||
9667 | 0,327,3,97,0, | ||
9668 | 327,3,98,0,327, | ||
9669 | 3,99,0,327,3, | ||
9670 | 100,0,327,3,101, | ||
9671 | 0,327,3,102,0, | ||
9672 | 327,3,103,0,327, | ||
9673 | 3,104,0,327,3, | ||
9674 | 105,0,327,3,106, | ||
9675 | 0,327,3,107,0, | ||
9676 | 327,3,108,0,327, | ||
9677 | 829,11,1,829,0, | ||
9678 | 330,1,-1,3,116, | ||
9679 | 0,327,3,117,0, | ||
9680 | 327,3,118,0,327, | ||
9681 | 3,119,0,327,3, | ||
9682 | 120,0,327,3,121, | ||
9683 | 0,327,3,122,0, | ||
9684 | 327,3,48,0,327, | ||
9685 | 3,49,0,327,3, | ||
9686 | 50,0,327,3,51, | ||
9687 | 0,327,3,52,0, | ||
9688 | 327,3,53,0,327, | ||
9689 | 3,54,0,327,3, | ||
9690 | 55,0,327,3,56, | ||
9691 | 0,327,3,57,0, | ||
9692 | 327,3,65,0,327, | ||
9693 | 3,66,0,327,3, | ||
9694 | 67,0,327,3,68, | ||
9695 | 0,327,3,69,0, | ||
9696 | 327,3,70,0,327, | ||
9697 | 3,71,0,327,3, | ||
9698 | 72,0,327,3,73, | ||
9699 | 0,327,3,74,0, | ||
9700 | 327,3,75,0,327, | ||
9701 | 3,76,0,327,3, | ||
9702 | 77,0,327,3,78, | ||
9703 | 0,327,3,79,0, | ||
9704 | 327,3,80,0,327, | ||
9705 | 3,81,0,327,3, | ||
9706 | 82,0,327,3,83, | ||
9707 | 0,327,3,84,0, | ||
9708 | 327,3,85,0,327, | ||
9709 | 3,86,0,327,3, | ||
9710 | 87,0,327,3,88, | ||
9711 | 0,327,3,89,0, | ||
9712 | 327,3,90,0,327, | ||
9713 | 3,95,0,327,3, | ||
9714 | 97,0,327,3,98, | ||
9715 | 0,327,3,99,0, | ||
9716 | 327,3,100,0,327, | ||
9717 | 3,101,0,327,3, | ||
9718 | 102,0,327,3,103, | ||
9719 | 0,327,3,104,0, | ||
9720 | 327,3,105,0,327, | ||
9721 | 3,106,0,327,3, | ||
9722 | 107,0,327,3,108, | ||
9723 | 0,327,830,11,1, | ||
9724 | 829,0,330,1,-1, | ||
9725 | 3,106,0,327,3, | ||
9726 | 107,0,327,3,108, | ||
9727 | 0,327,831,11,1, | ||
9728 | 829,0,330,1,-1, | ||
9729 | 3,109,0,832,12, | ||
9730 | 1,2200,833,5,63, | ||
9731 | 3,109,0,327,3, | ||
9732 | 110,0,327,3,111, | ||
9733 | 0,834,12,1,2230, | ||
9734 | 835,5,63,3,109, | ||
9735 | 0,327,3,110,0, | ||
9736 | 836,12,1,2259,837, | ||
9737 | 5,63,3,109,0, | ||
9738 | 327,3,110,0,327, | ||
9739 | 3,111,0,327,3, | ||
9740 | 112,0,327,3,113, | ||
9741 | 0,327,3,114,0, | ||
9742 | 327,3,115,0,327, | ||
9743 | 3,116,0,327,3, | ||
9744 | 117,0,327,3,118, | ||
9745 | 0,327,3,119,0, | ||
9746 | 327,3,120,0,327, | ||
9747 | 3,121,0,327,3, | ||
9748 | 122,0,327,3,48, | ||
9749 | 0,327,3,49,0, | ||
9750 | 327,3,50,0,327, | ||
9751 | 3,51,0,327,3, | ||
9752 | 52,0,327,3,53, | ||
9753 | 0,327,3,54,0, | ||
9754 | 327,3,55,0,327, | ||
9755 | 3,56,0,327,3, | ||
9756 | 57,0,327,3,65, | ||
9757 | 0,327,3,66,0, | ||
9758 | 327,3,67,0,327, | ||
9759 | 3,68,0,327,3, | ||
9760 | 69,0,327,3,70, | ||
9761 | 0,327,3,71,0, | ||
9762 | 327,3,72,0,327, | ||
9763 | 3,73,0,327,3, | ||
9764 | 74,0,327,3,75, | ||
9765 | 0,327,3,76,0, | ||
9766 | 327,3,77,0,327, | ||
9767 | 3,78,0,327,3, | ||
9768 | 79,0,327,3,80, | ||
9769 | 0,327,3,81,0, | ||
9770 | 327,3,82,0,327, | ||
9771 | 3,83,0,327,3, | ||
9772 | 84,0,327,3,85, | ||
9773 | 0,327,3,86,0, | ||
9774 | 327,3,87,0,327, | ||
9775 | 3,88,0,327,3, | ||
9776 | 89,0,327,3,90, | ||
9777 | 0,327,3,95,0, | ||
9778 | 327,3,97,0,327, | ||
9779 | 3,98,0,327,3, | ||
9780 | 99,0,327,3,100, | ||
9781 | 0,327,3,101,0, | ||
9782 | 838,12,1,2306,839, | ||
9783 | 5,63,3,109,0, | ||
9784 | 327,3,110,0,327, | ||
9785 | 3,111,0,327,3, | ||
9786 | 112,0,327,3,113, | ||
9787 | 0,327,3,114,0, | ||
9788 | 327,3,115,0,327, | ||
9789 | 3,116,0,327,3, | ||
9790 | 117,0,327,3,118, | ||
9791 | 0,327,3,119,0, | ||
9792 | 327,3,120,0,327, | ||
9793 | 3,121,0,840,12, | ||
9794 | 1,2346,841,5,63, | ||
9795 | 3,109,0,327,3, | ||
9796 | 110,0,327,3,111, | ||
9797 | 0,327,3,112,0, | ||
9798 | 327,3,113,0,327, | ||
9799 | 3,114,0,327,3, | ||
9800 | 115,0,327,3,116, | ||
9801 | 0,327,3,117,0, | ||
9802 | 327,3,118,0,327, | ||
9803 | 3,119,0,327,3, | ||
9804 | 120,0,327,3,121, | ||
9805 | 0,327,3,122,0, | ||
9806 | 327,3,48,0,327, | ||
9807 | 3,49,0,327,3, | ||
9808 | 50,0,327,3,51, | ||
9809 | 0,327,3,52,0, | ||
9810 | 327,3,53,0,327, | ||
9811 | 3,54,0,327,3, | ||
9812 | 55,0,327,3,56, | ||
9813 | 0,327,3,57,0, | ||
9814 | 327,3,65,0,327, | ||
9815 | 3,66,0,327,3, | ||
9816 | 67,0,327,3,68, | ||
9817 | 0,327,3,69,0, | ||
9818 | 327,3,70,0,327, | ||
9819 | 3,71,0,327,3, | ||
9820 | 72,0,327,3,73, | ||
9821 | 0,327,3,74,0, | ||
9822 | 327,3,75,0,327, | ||
9823 | 3,76,0,327,3, | ||
9824 | 77,0,327,3,78, | ||
9825 | 0,327,3,79,0, | ||
9826 | 327,3,80,0,327, | ||
9827 | 3,81,0,327,3, | ||
9828 | 82,0,327,3,83, | ||
9829 | 0,327,3,84,0, | ||
9830 | 327,3,85,0,327, | ||
9831 | 3,86,0,327,3, | ||
9832 | 87,0,327,3,88, | ||
9833 | 0,327,3,89,0, | ||
9834 | 327,3,90,0,327, | ||
9835 | 3,95,0,327,3, | ||
9836 | 97,0,327,3,98, | ||
9837 | 0,327,3,99,0, | ||
9838 | 327,3,100,0,327, | ||
9839 | 3,101,0,327,3, | ||
9840 | 102,0,327,3,103, | ||
9841 | 0,327,3,104,0, | ||
9842 | 327,3,105,0,327, | ||
9843 | 3,106,0,327,3, | ||
9844 | 107,0,327,3,108, | ||
9845 | 0,327,842,11,1, | ||
9846 | 591,0,843,4,22, | ||
9847 | 77,0,79,0,78, | ||
9848 | 0,69,0,89,0, | ||
9849 | 95,0,69,0,86, | ||
9850 | 0,69,0,78,0, | ||
9851 | 84,0,1,-1,3, | ||
9852 | 122,0,327,3,48, | ||
9853 | 0,327,3,49,0, | ||
9854 | 327,3,50,0,327, | ||
9855 | 3,51,0,327,3, | ||
9856 | 52,0,327,3,53, | ||
9857 | 0,327,3,54,0, | ||
9858 | 327,3,55,0,327, | ||
9859 | 3,56,0,327,3, | ||
9860 | 57,0,327,3,65, | ||
9861 | 0,327,3,66,0, | ||
9862 | 327,3,67,0,327, | ||
9863 | 3,68,0,327,3, | ||
9864 | 69,0,327,3,70, | ||
9865 | 0,327,3,71,0, | ||
9866 | 327,3,72,0,327, | ||
9867 | 3,73,0,327,3, | ||
9868 | 74,0,327,3,75, | ||
9869 | 0,327,3,76,0, | ||
9870 | 327,3,77,0,327, | ||
9871 | 3,78,0,327,3, | ||
9872 | 79,0,327,3,80, | ||
9873 | 0,327,3,81,0, | ||
9874 | 327,3,82,0,327, | ||
9875 | 3,83,0,327,3, | ||
9876 | 84,0,327,3,85, | ||
9877 | 0,327,3,86,0, | ||
9878 | 327,3,87,0,327, | ||
9879 | 3,88,0,327,3, | ||
9880 | 89,0,327,3,90, | ||
9881 | 0,327,3,95,0, | ||
9882 | 327,3,97,0,327, | ||
9883 | 3,98,0,327,3, | ||
9884 | 99,0,327,3,100, | ||
9885 | 0,327,3,101,0, | ||
9886 | 327,3,102,0,327, | ||
9887 | 3,103,0,327,3, | ||
9888 | 104,0,327,3,105, | ||
9889 | 0,327,3,106,0, | ||
9890 | 327,3,107,0,327, | ||
9891 | 3,108,0,327,844, | ||
9892 | 11,1,829,0,330, | ||
9893 | 1,-1,3,102,0, | ||
9894 | 327,3,103,0,327, | ||
9895 | 3,104,0,327,3, | ||
9896 | 105,0,327,3,106, | ||
9897 | 0,327,3,107,0, | ||
9898 | 327,3,108,0,327, | ||
9899 | 845,11,1,829,0, | ||
9900 | 330,1,-1,3,111, | ||
9901 | 0,327,3,112,0, | ||
9902 | 327,3,113,0,327, | ||
9903 | 3,114,0,327,3, | ||
9904 | 115,0,327,3,116, | ||
9905 | 0,327,3,117,0, | ||
9906 | 327,3,118,0,846, | ||
9907 | 12,1,2627,847,5, | ||
9908 | 63,3,109,0,327, | ||
9909 | 3,110,0,327,3, | ||
9910 | 111,0,327,3,112, | ||
9911 | 0,327,3,113,0, | ||
9912 | 327,3,114,0,327, | ||
9913 | 3,115,0,327,3, | ||
9914 | 116,0,327,3,117, | ||
9915 | 0,327,3,118,0, | ||
9916 | 327,3,119,0,327, | ||
9917 | 3,120,0,327,3, | ||
9918 | 121,0,327,3,122, | ||
9919 | 0,327,3,48,0, | ||
9920 | 327,3,49,0,327, | ||
9921 | 3,50,0,327,3, | ||
9922 | 51,0,327,3,52, | ||
9923 | 0,327,3,53,0, | ||
9924 | 327,3,54,0,327, | ||
9925 | 3,55,0,327,3, | ||
9926 | 56,0,327,3,57, | ||
9927 | 0,327,3,65,0, | ||
9928 | 327,3,66,0,327, | ||
9929 | 3,67,0,327,3, | ||
9930 | 68,0,327,3,69, | ||
9931 | 0,327,3,70,0, | ||
9932 | 327,3,71,0,327, | ||
9933 | 3,72,0,327,3, | ||
9934 | 73,0,327,3,74, | ||
9935 | 0,327,3,75,0, | ||
9936 | 327,3,76,0,327, | ||
9937 | 3,77,0,327,3, | ||
9938 | 78,0,327,3,79, | ||
9939 | 0,327,3,80,0, | ||
9940 | 327,3,81,0,327, | ||
9941 | 3,82,0,327,3, | ||
9942 | 83,0,327,3,84, | ||
9943 | 0,327,3,85,0, | ||
9944 | 327,3,86,0,327, | ||
9945 | 3,87,0,327,3, | ||
9946 | 88,0,327,3,89, | ||
9947 | 0,327,3,90,0, | ||
9948 | 327,3,95,0,327, | ||
9949 | 3,97,0,327,3, | ||
9950 | 98,0,327,3,99, | ||
9951 | 0,327,3,100,0, | ||
9952 | 327,3,101,0,327, | ||
9953 | 3,102,0,327,3, | ||
9954 | 103,0,327,3,104, | ||
9955 | 0,327,3,105,0, | ||
9956 | 848,12,1,2678,849, | ||
9957 | 5,63,3,109,0, | ||
9958 | 327,3,110,0,850, | ||
9959 | 12,1,2707,851,5, | ||
9960 | 63,3,109,0,327, | ||
9961 | 3,110,0,327,3, | ||
9962 | 111,0,327,3,112, | ||
9963 | 0,327,3,113,0, | ||
9964 | 327,3,114,0,327, | ||
9965 | 3,115,0,327,3, | ||
9966 | 116,0,327,3,117, | ||
9967 | 0,327,3,118,0, | ||
9968 | 327,3,119,0,327, | ||
9969 | 3,120,0,327,3, | ||
9970 | 121,0,327,3,122, | ||
9971 | 0,327,3,48,0, | ||
9972 | 327,3,49,0,327, | ||
9973 | 3,50,0,327,3, | ||
9974 | 51,0,327,3,52, | ||
9975 | 0,327,3,53,0, | ||
9976 | 327,3,54,0,327, | ||
9977 | 3,55,0,327,3, | ||
9978 | 56,0,327,3,57, | ||
9979 | 0,327,3,65,0, | ||
9980 | 327,3,66,0,327, | ||
9981 | 3,67,0,327,3, | ||
9982 | 68,0,327,3,69, | ||
9983 | 0,327,3,70,0, | ||
9984 | 327,3,71,0,327, | ||
9985 | 3,72,0,327,3, | ||
9986 | 73,0,327,3,74, | ||
9987 | 0,327,3,75,0, | ||
9988 | 327,3,76,0,327, | ||
9989 | 3,77,0,327,3, | ||
9990 | 78,0,327,3,79, | ||
9991 | 0,327,3,80,0, | ||
9992 | 327,3,81,0,327, | ||
9993 | 3,82,0,327,3, | ||
9994 | 83,0,327,3,84, | ||
9995 | 0,327,3,85,0, | ||
9996 | 327,3,86,0,327, | ||
9997 | 3,87,0,327,3, | ||
9998 | 88,0,327,3,89, | ||
9999 | 0,327,3,90,0, | ||
10000 | 327,3,95,0,327, | ||
10001 | 3,97,0,327,3, | ||
10002 | 98,0,327,3,99, | ||
10003 | 0,327,3,100,0, | ||
10004 | 327,3,101,0,327, | ||
10005 | 3,102,0,327,3, | ||
10006 | 103,0,852,12,1, | ||
10007 | 2756,853,5,63,3, | ||
10008 | 109,0,327,3,110, | ||
10009 | 0,327,3,111,0, | ||
10010 | 327,3,112,0,327, | ||
10011 | 3,113,0,327,3, | ||
10012 | 114,0,327,3,115, | ||
10013 | 0,327,3,116,0, | ||
10014 | 327,3,117,0,327, | ||
10015 | 3,118,0,327,3, | ||
10016 | 119,0,327,3,120, | ||
10017 | 0,327,3,121,0, | ||
10018 | 327,3,122,0,327, | ||
10019 | 3,48,0,327,3, | ||
10020 | 49,0,327,3,50, | ||
10021 | 0,327,3,51,0, | ||
10022 | 327,3,52,0,327, | ||
10023 | 3,53,0,327,3, | ||
10024 | 54,0,327,3,55, | ||
10025 | 0,327,3,56,0, | ||
10026 | 327,3,57,0,327, | ||
10027 | 3,65,0,327,3, | ||
10028 | 66,0,327,3,67, | ||
10029 | 0,327,3,68,0, | ||
10030 | 327,3,69,0,327, | ||
10031 | 3,70,0,327,3, | ||
10032 | 71,0,327,3,72, | ||
10033 | 0,327,3,73,0, | ||
10034 | 327,3,74,0,327, | ||
10035 | 3,75,0,327,3, | ||
10036 | 76,0,327,3,77, | ||
10037 | 0,327,3,78,0, | ||
10038 | 327,3,79,0,327, | ||
10039 | 3,80,0,327,3, | ||
10040 | 81,0,327,3,82, | ||
10041 | 0,327,3,83,0, | ||
10042 | 327,3,84,0,327, | ||
10043 | 3,85,0,327,3, | ||
10044 | 86,0,327,3,87, | ||
10045 | 0,327,3,88,0, | ||
10046 | 327,3,89,0,327, | ||
10047 | 3,90,0,327,3, | ||
10048 | 95,0,854,12,1, | ||
10049 | 2842,855,5,63,3, | ||
10050 | 109,0,327,3,110, | ||
10051 | 0,327,3,111,0, | ||
10052 | 327,3,112,0,327, | ||
10053 | 3,113,0,327,3, | ||
10054 | 114,0,327,3,115, | ||
10055 | 0,856,12,1,2876, | ||
10056 | 857,5,63,3,109, | ||
10057 | 0,327,3,110,0, | ||
10058 | 327,3,111,0,327, | ||
10059 | 3,112,0,327,3, | ||
10060 | 113,0,327,3,114, | ||
10061 | 0,327,3,115,0, | ||
10062 | 327,3,116,0,858, | ||
10063 | 12,1,2911,859,5, | ||
10064 | 63,3,109,0,327, | ||
10065 | 3,110,0,327,3, | ||
10066 | 111,0,327,3,112, | ||
10067 | 0,327,3,113,0, | ||
10068 | 327,3,114,0,327, | ||
10069 | 3,115,0,327,3, | ||
10070 | 116,0,327,3,117, | ||
10071 | 0,327,3,118,0, | ||
10072 | 327,3,119,0,327, | ||
10073 | 3,120,0,327,3, | ||
10074 | 121,0,327,3,122, | ||
10075 | 0,327,3,48,0, | ||
10076 | 327,3,49,0,327, | ||
10077 | 3,50,0,327,3, | ||
10078 | 51,0,327,3,52, | ||
10079 | 0,327,3,53,0, | ||
10080 | 327,3,54,0,327, | ||
10081 | 3,55,0,327,3, | ||
10082 | 56,0,327,3,57, | ||
10083 | 0,327,3,65,0, | ||
10084 | 327,3,66,0,327, | ||
10085 | 3,67,0,327,3, | ||
10086 | 68,0,327,3,69, | ||
10087 | 0,327,3,70,0, | ||
10088 | 327,3,71,0,327, | ||
10089 | 3,72,0,327,3, | ||
10090 | 73,0,327,3,74, | ||
10091 | 0,327,3,75,0, | ||
10092 | 327,3,76,0,327, | ||
10093 | 3,77,0,327,3, | ||
10094 | 78,0,327,3,79, | ||
10095 | 0,327,3,80,0, | ||
10096 | 327,3,81,0,327, | ||
10097 | 3,82,0,327,3, | ||
10098 | 83,0,327,3,84, | ||
10099 | 0,327,3,85,0, | ||
10100 | 327,3,86,0,327, | ||
10101 | 3,87,0,327,3, | ||
10102 | 88,0,327,3,89, | ||
10103 | 0,327,3,90,0, | ||
10104 | 327,3,95,0,327, | ||
10105 | 3,97,0,860,12, | ||
10106 | 1,2954,861,5,63, | ||
10107 | 3,109,0,327,3, | ||
10108 | 110,0,327,3,111, | ||
10109 | 0,327,3,112,0, | ||
10110 | 327,3,113,0,327, | ||
10111 | 3,114,0,862,12, | ||
10112 | 1,2987,863,5,63, | ||
10113 | 3,109,0,327,3, | ||
10114 | 110,0,327,3,111, | ||
10115 | 0,327,3,112,0, | ||
10116 | 327,3,113,0,327, | ||
10117 | 3,114,0,327,3, | ||
10118 | 115,0,327,3,116, | ||
10119 | 0,864,12,1,3022, | ||
10120 | 865,5,63,3,109, | ||
10121 | 0,327,3,110,0, | ||
10122 | 327,3,111,0,327, | ||
10123 | 3,112,0,327,3, | ||
10124 | 113,0,327,3,114, | ||
10125 | 0,327,3,115,0, | ||
10126 | 327,3,116,0,327, | ||
10127 | 3,117,0,327,3, | ||
10128 | 118,0,327,3,119, | ||
10129 | 0,327,3,120,0, | ||
10130 | 327,3,121,0,327, | ||
10131 | 3,122,0,327,3, | ||
10132 | 48,0,327,3,49, | ||
10133 | 0,327,3,50,0, | ||
10134 | 327,3,51,0,327, | ||
10135 | 3,52,0,327,3, | ||
10136 | 53,0,327,3,54, | ||
10137 | 0,327,3,55,0, | ||
10138 | 327,3,56,0,327, | ||
10139 | 3,57,0,327,3, | ||
10140 | 65,0,327,3,66, | ||
10141 | 0,327,3,67,0, | ||
10142 | 327,3,68,0,327, | ||
10143 | 3,69,0,327,3, | ||
10144 | 70,0,327,3,71, | ||
10145 | 0,327,3,72,0, | ||
10146 | 327,3,73,0,327, | ||
10147 | 3,74,0,327,3, | ||
10148 | 75,0,327,3,76, | ||
10149 | 0,327,3,77,0, | ||
10150 | 327,3,78,0,327, | ||
10151 | 3,79,0,327,3, | ||
10152 | 80,0,327,3,81, | ||
10153 | 0,327,3,82,0, | ||
10154 | 327,3,83,0,327, | ||
10155 | 3,84,0,327,3, | ||
10156 | 85,0,327,3,86, | ||
10157 | 0,327,3,87,0, | ||
10158 | 327,3,88,0,327, | ||
10159 | 3,89,0,327,3, | ||
10160 | 90,0,327,3,95, | ||
10161 | 0,327,3,97,0, | ||
10162 | 327,3,98,0,327, | ||
10163 | 3,99,0,327,3, | ||
10164 | 100,0,327,3,101, | ||
10165 | 0,327,3,102,0, | ||
10166 | 327,3,103,0,327, | ||
10167 | 3,104,0,327,3, | ||
10168 | 105,0,327,3,106, | ||
10169 | 0,327,3,107,0, | ||
10170 | 327,3,108,0,327, | ||
10171 | 866,11,1,614,0, | ||
10172 | 867,4,36,77,0, | ||
10173 | 79,0,86,0,73, | ||
10174 | 0,78,0,71,0, | ||
10175 | 95,0,83,0,84, | ||
10176 | 0,65,0,82,0, | ||
10177 | 84,0,95,0,69, | ||
10178 | 0,86,0,69,0, | ||
10179 | 78,0,84,0,1, | ||
10180 | -1,3,117,0,327, | ||
10181 | 3,118,0,327,3, | ||
10182 | 119,0,327,3,120, | ||
10183 | 0,327,3,121,0, | ||
10184 | 327,3,122,0,327, | ||
10185 | 3,48,0,327,3, | ||
10186 | 49,0,327,3,50, | ||
10187 | 0,327,3,51,0, | ||
10188 | 327,3,52,0,327, | ||
10189 | 3,53,0,327,3, | ||
10190 | 54,0,327,3,55, | ||
10191 | 0,327,3,56,0, | ||
10192 | 327,3,57,0,327, | ||
10193 | 3,65,0,327,3, | ||
10194 | 66,0,327,3,67, | ||
10195 | 0,327,3,68,0, | ||
10196 | 327,3,69,0,327, | ||
10197 | 3,70,0,327,3, | ||
10198 | 71,0,327,3,72, | ||
10199 | 0,327,3,73,0, | ||
10200 | 327,3,74,0,327, | ||
10201 | 3,75,0,327,3, | ||
10202 | 76,0,327,3,77, | ||
10203 | 0,327,3,78,0, | ||
10204 | 327,3,79,0,327, | ||
10205 | 3,80,0,327,3, | ||
10206 | 81,0,327,3,82, | ||
10207 | 0,327,3,83,0, | ||
10208 | 327,3,84,0,327, | ||
10209 | 3,85,0,327,3, | ||
10210 | 86,0,327,3,87, | ||
10211 | 0,327,3,88,0, | ||
10212 | 327,3,89,0,327, | ||
10213 | 3,90,0,327,3, | ||
10214 | 95,0,327,3,97, | ||
10215 | 0,327,3,98,0, | ||
10216 | 327,3,99,0,327, | ||
10217 | 3,100,0,327,3, | ||
10218 | 101,0,327,3,102, | ||
10219 | 0,327,3,103,0, | ||
10220 | 327,3,104,0,327, | ||
10221 | 3,105,0,327,3, | ||
10222 | 106,0,327,3,107, | ||
10223 | 0,327,3,108,0, | ||
10224 | 327,868,11,1,829, | ||
10225 | 0,330,1,-1,3, | ||
10226 | 115,0,327,3,116, | ||
10227 | 0,327,3,117,0, | ||
10228 | 327,3,118,0,327, | ||
10229 | 3,119,0,327,3, | ||
10230 | 120,0,327,3,121, | ||
10231 | 0,327,3,122,0, | ||
10232 | 327,3,48,0,327, | ||
10233 | 3,49,0,327,3, | ||
10234 | 50,0,327,3,51, | ||
10235 | 0,327,3,52,0, | ||
10236 | 327,3,53,0,327, | ||
10237 | 3,54,0,327,3, | ||
10238 | 55,0,327,3,56, | ||
10239 | 0,327,3,57,0, | ||
10240 | 327,3,65,0,327, | ||
10241 | 3,66,0,327,3, | ||
10242 | 67,0,327,3,68, | ||
10243 | 0,327,3,69,0, | ||
10244 | 327,3,70,0,327, | ||
10245 | 3,71,0,327,3, | ||
10246 | 72,0,327,3,73, | ||
10247 | 0,327,3,74,0, | ||
10248 | 327,3,75,0,327, | ||
10249 | 3,76,0,327,3, | ||
10250 | 77,0,327,3,78, | ||
10251 | 0,327,3,79,0, | ||
10252 | 327,3,80,0,327, | ||
10253 | 3,81,0,327,3, | ||
10254 | 82,0,327,3,83, | ||
10255 | 0,327,3,84,0, | ||
10256 | 327,3,85,0,327, | ||
10257 | 3,86,0,327,3, | ||
10258 | 87,0,327,3,88, | ||
10259 | 0,327,3,89,0, | ||
10260 | 327,3,90,0,327, | ||
10261 | 3,95,0,327,3, | ||
10262 | 97,0,327,3,98, | ||
10263 | 0,327,3,99,0, | ||
10264 | 327,3,100,0,327, | ||
10265 | 3,101,0,327,3, | ||
10266 | 102,0,327,3,103, | ||
10267 | 0,327,3,104,0, | ||
10268 | 327,3,105,0,327, | ||
10269 | 3,106,0,327,3, | ||
10270 | 107,0,327,3,108, | ||
10271 | 0,327,869,11,1, | ||
10272 | 829,0,330,1,-1, | ||
10273 | 3,98,0,327,3, | ||
10274 | 99,0,327,3,100, | ||
10275 | 0,327,3,101,0, | ||
10276 | 327,3,102,0,327, | ||
10277 | 3,103,0,327,3, | ||
10278 | 104,0,327,3,105, | ||
10279 | 0,327,3,106,0, | ||
10280 | 327,3,107,0,327, | ||
10281 | 3,108,0,327,870, | ||
10282 | 11,1,829,0,330, | ||
10283 | 1,-1,3,117,0, | ||
10284 | 327,3,118,0,327, | ||
10285 | 3,119,0,327,3, | ||
10286 | 120,0,327,3,121, | ||
10287 | 0,327,3,122,0, | ||
10288 | 327,3,48,0,327, | ||
10289 | 3,49,0,327,3, | ||
10290 | 50,0,327,3,51, | ||
10291 | 0,327,3,52,0, | ||
10292 | 327,3,53,0,327, | ||
10293 | 3,54,0,327,3, | ||
10294 | 55,0,327,3,56, | ||
10295 | 0,327,3,57,0, | ||
10296 | 327,3,65,0,327, | ||
10297 | 3,66,0,327,3, | ||
10298 | 67,0,327,3,68, | ||
10299 | 0,327,3,69,0, | ||
10300 | 327,3,70,0,327, | ||
10301 | 3,71,0,327,3, | ||
10302 | 72,0,327,3,73, | ||
10303 | 0,327,3,74,0, | ||
10304 | 327,3,75,0,327, | ||
10305 | 3,76,0,327,3, | ||
10306 | 77,0,327,3,78, | ||
10307 | 0,327,3,79,0, | ||
10308 | 327,3,80,0,327, | ||
10309 | 3,81,0,327,3, | ||
10310 | 82,0,327,3,83, | ||
10311 | 0,327,3,84,0, | ||
10312 | 327,3,85,0,327, | ||
10313 | 3,86,0,327,3, | ||
10314 | 87,0,327,3,88, | ||
10315 | 0,327,3,89,0, | ||
10316 | 327,3,90,0,327, | ||
10317 | 3,95,0,327,3, | ||
10318 | 97,0,327,3,98, | ||
10319 | 0,327,3,99,0, | ||
10320 | 327,3,100,0,327, | ||
10321 | 3,101,0,327,3, | ||
10322 | 102,0,327,3,103, | ||
10323 | 0,327,3,104,0, | ||
10324 | 327,3,105,0,327, | ||
10325 | 3,106,0,327,3, | ||
10326 | 107,0,327,3,108, | ||
10327 | 0,327,871,11,1, | ||
10328 | 829,0,330,1,-1, | ||
10329 | 3,116,0,327,3, | ||
10330 | 117,0,327,3,118, | ||
10331 | 0,327,3,119,0, | ||
10332 | 327,3,120,0,327, | ||
10333 | 3,121,0,327,3, | ||
10334 | 122,0,327,3,48, | ||
10335 | 0,327,3,49,0, | ||
10336 | 327,3,50,0,327, | ||
10337 | 3,51,0,327,3, | ||
10338 | 52,0,327,3,53, | ||
10339 | 0,327,3,54,0, | ||
10340 | 327,3,55,0,327, | ||
10341 | 3,56,0,327,3, | ||
10342 | 57,0,327,3,65, | ||
10343 | 0,327,3,66,0, | ||
10344 | 327,3,67,0,327, | ||
10345 | 3,68,0,327,3, | ||
10346 | 69,0,327,3,70, | ||
10347 | 0,327,3,71,0, | ||
10348 | 327,3,72,0,327, | ||
10349 | 3,73,0,327,3, | ||
10350 | 74,0,327,3,75, | ||
10351 | 0,327,3,76,0, | ||
10352 | 327,3,77,0,327, | ||
10353 | 3,78,0,327,3, | ||
10354 | 79,0,327,3,80, | ||
10355 | 0,327,3,81,0, | ||
10356 | 327,3,82,0,327, | ||
10357 | 3,83,0,327,3, | ||
10358 | 84,0,327,3,85, | ||
10359 | 0,327,3,86,0, | ||
10360 | 327,3,87,0,327, | ||
10361 | 3,88,0,327,3, | ||
10362 | 89,0,327,3,90, | ||
10363 | 0,327,3,95,0, | ||
10364 | 327,3,97,0,327, | ||
10365 | 3,98,0,327,3, | ||
10366 | 99,0,327,3,100, | ||
10367 | 0,327,3,101,0, | ||
10368 | 872,12,1,3489,873, | ||
10369 | 5,63,3,109,0, | ||
10370 | 327,3,110,0,874, | ||
10371 | 12,1,3518,875,5, | ||
10372 | 63,3,109,0,327, | ||
10373 | 3,110,0,327,3, | ||
10374 | 111,0,327,3,112, | ||
10375 | 0,327,3,113,0, | ||
10376 | 327,3,114,0,327, | ||
10377 | 3,115,0,327,3, | ||
10378 | 116,0,327,3,117, | ||
10379 | 0,327,3,118,0, | ||
10380 | 327,3,119,0,327, | ||
10381 | 3,120,0,327,3, | ||
10382 | 121,0,327,3,122, | ||
10383 | 0,327,3,48,0, | ||
10384 | 327,3,49,0,327, | ||
10385 | 3,50,0,327,3, | ||
10386 | 51,0,327,3,52, | ||
10387 | 0,327,3,53,0, | ||
10388 | 327,3,54,0,327, | ||
10389 | 3,55,0,327,3, | ||
10390 | 56,0,327,3,57, | ||
10391 | 0,327,3,65,0, | ||
10392 | 327,3,66,0,327, | ||
10393 | 3,67,0,327,3, | ||
10394 | 68,0,327,3,69, | ||
10395 | 0,327,3,70,0, | ||
10396 | 327,3,71,0,327, | ||
10397 | 3,72,0,327,3, | ||
10398 | 73,0,327,3,74, | ||
10399 | 0,327,3,75,0, | ||
10400 | 327,3,76,0,327, | ||
10401 | 3,77,0,327,3, | ||
10402 | 78,0,327,3,79, | ||
10403 | 0,327,3,80,0, | ||
10404 | 327,3,81,0,327, | ||
10405 | 3,82,0,327,3, | ||
10406 | 83,0,327,3,84, | ||
10407 | 0,327,3,85,0, | ||
10408 | 327,3,86,0,327, | ||
10409 | 3,87,0,327,3, | ||
10410 | 88,0,327,3,89, | ||
10411 | 0,327,3,90,0, | ||
10412 | 327,3,95,0,327, | ||
10413 | 3,97,0,327,3, | ||
10414 | 98,0,327,3,99, | ||
10415 | 0,327,3,100,0, | ||
10416 | 876,12,1,3564,877, | ||
10417 | 5,63,3,109,0, | ||
10418 | 327,3,110,0,327, | ||
10419 | 3,111,0,327,3, | ||
10420 | 112,0,327,3,113, | ||
10421 | 0,327,3,114,0, | ||
10422 | 327,3,115,0,327, | ||
10423 | 3,116,0,327,3, | ||
10424 | 117,0,327,3,118, | ||
10425 | 0,327,3,119,0, | ||
10426 | 327,3,120,0,327, | ||
10427 | 3,121,0,327,3, | ||
10428 | 122,0,327,3,48, | ||
10429 | 0,327,3,49,0, | ||
10430 | 327,3,50,0,327, | ||
10431 | 3,51,0,327,3, | ||
10432 | 52,0,327,3,53, | ||
10433 | 0,327,3,54,0, | ||
10434 | 327,3,55,0,327, | ||
10435 | 3,56,0,327,3, | ||
10436 | 57,0,327,3,65, | ||
10437 | 0,327,3,66,0, | ||
10438 | 327,3,67,0,327, | ||
10439 | 3,68,0,327,3, | ||
10440 | 69,0,327,3,70, | ||
10441 | 0,327,3,71,0, | ||
10442 | 327,3,72,0,327, | ||
10443 | 3,73,0,327,3, | ||
10444 | 74,0,327,3,75, | ||
10445 | 0,327,3,76,0, | ||
10446 | 327,3,77,0,327, | ||
10447 | 3,78,0,327,3, | ||
10448 | 79,0,327,3,80, | ||
10449 | 0,327,3,81,0, | ||
10450 | 327,3,82,0,327, | ||
10451 | 3,83,0,327,3, | ||
10452 | 84,0,327,3,85, | ||
10453 | 0,327,3,86,0, | ||
10454 | 327,3,87,0,327, | ||
10455 | 3,88,0,327,3, | ||
10456 | 89,0,327,3,90, | ||
10457 | 0,327,3,95,0, | ||
10458 | 327,3,97,0,327, | ||
10459 | 3,98,0,327,3, | ||
10460 | 99,0,327,3,100, | ||
10461 | 0,327,3,101,0, | ||
10462 | 327,3,102,0,327, | ||
10463 | 3,103,0,327,3, | ||
10464 | 104,0,327,3,105, | ||
10465 | 0,327,3,106,0, | ||
10466 | 327,3,107,0,327, | ||
10467 | 3,108,0,327,878, | ||
10468 | 11,1,600,0,879, | ||
10469 | 4,32,77,0,79, | ||
10470 | 0,86,0,73,0, | ||
10471 | 78,0,71,0,95, | ||
10472 | 0,69,0,78,0, | ||
10473 | 68,0,95,0,69, | ||
10474 | 0,86,0,69,0, | ||
10475 | 78,0,84,0,1, | ||
10476 | -1,3,101,0,327, | ||
10477 | 3,102,0,327,3, | ||
10478 | 103,0,327,3,104, | ||
10479 | 0,327,3,105,0, | ||
10480 | 327,3,106,0,327, | ||
10481 | 3,107,0,327,3, | ||
10482 | 108,0,327,880,11, | ||
10483 | 1,829,0,330,1, | ||
10484 | -1,3,111,0,327, | ||
10485 | 3,112,0,327,3, | ||
10486 | 113,0,327,3,114, | ||
10487 | 0,327,3,115,0, | ||
10488 | 327,3,116,0,327, | ||
10489 | 3,117,0,327,3, | ||
10490 | 118,0,327,3,119, | ||
10491 | 0,327,3,120,0, | ||
10492 | 327,3,121,0,327, | ||
10493 | 3,122,0,327,3, | ||
10494 | 48,0,327,3,49, | ||
10495 | 0,327,3,50,0, | ||
10496 | 327,3,51,0,327, | ||
10497 | 3,52,0,327,3, | ||
10498 | 53,0,327,3,54, | ||
10499 | 0,327,3,55,0, | ||
10500 | 327,3,56,0,327, | ||
10501 | 3,57,0,327,3, | ||
10502 | 65,0,327,3,66, | ||
10503 | 0,327,3,67,0, | ||
10504 | 327,3,68,0,327, | ||
10505 | 3,69,0,327,3, | ||
10506 | 70,0,327,3,71, | ||
10507 | 0,327,3,72,0, | ||
10508 | 327,3,73,0,327, | ||
10509 | 3,74,0,327,3, | ||
10510 | 75,0,327,3,76, | ||
10511 | 0,327,3,77,0, | ||
10512 | 327,3,78,0,327, | ||
10513 | 3,79,0,327,3, | ||
10514 | 80,0,327,3,81, | ||
10515 | 0,327,3,82,0, | ||
10516 | 327,3,83,0,327, | ||
10517 | 3,84,0,327,3, | ||
10518 | 85,0,327,3,86, | ||
10519 | 0,327,3,87,0, | ||
10520 | 327,3,88,0,327, | ||
10521 | 3,89,0,327,3, | ||
10522 | 90,0,327,3,95, | ||
10523 | 0,327,3,97,0, | ||
10524 | 327,3,98,0,327, | ||
10525 | 3,99,0,327,3, | ||
10526 | 100,0,327,3,101, | ||
10527 | 0,327,3,102,0, | ||
10528 | 327,3,103,0,327, | ||
10529 | 3,104,0,327,3, | ||
10530 | 105,0,327,3,106, | ||
10531 | 0,327,3,107,0, | ||
10532 | 327,3,108,0,327, | ||
10533 | 881,11,1,829,0, | ||
10534 | 330,1,-1,3,102, | ||
10535 | 0,327,3,103,0, | ||
10536 | 327,3,104,0,327, | ||
10537 | 3,105,0,327,3, | ||
10538 | 106,0,327,3,107, | ||
10539 | 0,327,3,108,0, | ||
10540 | 327,882,11,1,829, | ||
10541 | 0,330,1,-1,3, | ||
10542 | 97,0,327,3,98, | ||
10543 | 0,327,3,99,0, | ||
10544 | 327,3,100,0,327, | ||
10545 | 3,101,0,327,3, | ||
10546 | 102,0,327,3,103, | ||
10547 | 0,327,3,104,0, | ||
10548 | 327,3,105,0,327, | ||
10549 | 3,106,0,327,3, | ||
10550 | 107,0,327,3,108, | ||
10551 | 0,327,883,11,1, | ||
10552 | 829,0,330,1,-1, | ||
10553 | 3,104,0,327,3, | ||
10554 | 105,0,327,3,106, | ||
10555 | 0,327,3,107,0, | ||
10556 | 327,3,108,0,327, | ||
10557 | 884,11,1,829,0, | ||
10558 | 330,1,-1,3,111, | ||
10559 | 0,327,3,112,0, | ||
10560 | 327,3,113,0,327, | ||
10561 | 3,114,0,327,3, | ||
10562 | 115,0,327,3,116, | ||
10563 | 0,327,3,117,0, | ||
10564 | 327,3,118,0,327, | ||
10565 | 3,119,0,327,3, | ||
10566 | 120,0,327,3,121, | ||
10567 | 0,327,3,122,0, | ||
10568 | 327,3,48,0,327, | ||
10569 | 3,49,0,327,3, | ||
10570 | 50,0,327,3,51, | ||
10571 | 0,327,3,52,0, | ||
10572 | 327,3,53,0,327, | ||
10573 | 3,54,0,327,3, | ||
10574 | 55,0,327,3,56, | ||
10575 | 0,327,3,57,0, | ||
10576 | 327,3,65,0,327, | ||
10577 | 3,66,0,327,3, | ||
10578 | 67,0,327,3,68, | ||
10579 | 0,327,3,69,0, | ||
10580 | 327,3,70,0,327, | ||
10581 | 3,71,0,327,3, | ||
10582 | 72,0,327,3,73, | ||
10583 | 0,327,3,74,0, | ||
10584 | 327,3,75,0,327, | ||
10585 | 3,76,0,327,3, | ||
10586 | 77,0,327,3,78, | ||
10587 | 0,327,3,79,0, | ||
10588 | 327,3,80,0,327, | ||
10589 | 3,81,0,327,3, | ||
10590 | 82,0,327,3,83, | ||
10591 | 0,327,3,84,0, | ||
10592 | 327,3,85,0,327, | ||
10593 | 3,86,0,327,3, | ||
10594 | 87,0,327,3,88, | ||
10595 | 0,327,3,89,0, | ||
10596 | 327,3,90,0,327, | ||
10597 | 3,95,0,327,3, | ||
10598 | 97,0,327,3,98, | ||
10599 | 0,327,3,99,0, | ||
10600 | 327,3,100,0,327, | ||
10601 | 3,101,0,327,3, | ||
10602 | 102,0,327,3,103, | ||
10603 | 0,327,3,104,0, | ||
10604 | 327,3,105,0,327, | ||
10605 | 3,106,0,327,3, | ||
10606 | 107,0,327,3,108, | ||
10607 | 0,327,885,11,1, | ||
10608 | 829,0,330,1,-1, | ||
10609 | 3,106,0,327,3, | ||
10610 | 107,0,327,3,108, | ||
10611 | 0,327,886,11,1, | ||
10612 | 829,0,330,1,-1, | ||
10613 | 3,119,0,327,3, | ||
10614 | 120,0,327,3,121, | ||
10615 | 0,327,3,122,0, | ||
10616 | 327,3,48,0,327, | ||
10617 | 3,49,0,327,3, | ||
10618 | 50,0,327,3,51, | ||
10619 | 0,327,3,52,0, | ||
10620 | 327,3,53,0,327, | ||
10621 | 3,54,0,327,3, | ||
10622 | 55,0,327,3,56, | ||
10623 | 0,327,3,57,0, | ||
10624 | 327,3,65,0,327, | ||
10625 | 3,66,0,327,3, | ||
10626 | 67,0,327,3,68, | ||
10627 | 0,327,3,69,0, | ||
10628 | 327,3,70,0,327, | ||
10629 | 3,71,0,327,3, | ||
10630 | 72,0,327,3,73, | ||
10631 | 0,327,3,74,0, | ||
10632 | 327,3,75,0,327, | ||
10633 | 3,76,0,327,3, | ||
10634 | 77,0,327,3,78, | ||
10635 | 0,327,3,79,0, | ||
10636 | 327,3,80,0,327, | ||
10637 | 3,81,0,327,3, | ||
10638 | 82,0,327,3,83, | ||
10639 | 0,327,3,84,0, | ||
10640 | 327,3,85,0,327, | ||
10641 | 3,86,0,327,3, | ||
10642 | 87,0,327,3,88, | ||
10643 | 0,327,3,89,0, | ||
10644 | 327,3,90,0,327, | ||
10645 | 3,95,0,327,3, | ||
10646 | 97,0,327,3,98, | ||
10647 | 0,327,3,99,0, | ||
10648 | 327,3,100,0,327, | ||
10649 | 3,101,0,327,3, | ||
10650 | 102,0,327,3,103, | ||
10651 | 0,327,3,104,0, | ||
10652 | 327,3,105,0,327, | ||
10653 | 3,106,0,327,3, | ||
10654 | 107,0,327,3,108, | ||
10655 | 0,327,887,11,1, | ||
10656 | 829,0,330,1,-1, | ||
10657 | 3,112,0,327,3, | ||
10658 | 113,0,327,3,114, | ||
10659 | 0,327,3,115,0, | ||
10660 | 327,3,116,0,327, | ||
10661 | 3,117,0,327,3, | ||
10662 | 118,0,327,3,119, | ||
10663 | 0,327,3,120,0, | ||
10664 | 327,3,121,0,327, | ||
10665 | 3,122,0,327,3, | ||
10666 | 48,0,327,3,49, | ||
10667 | 0,327,3,50,0, | ||
10668 | 327,3,51,0,327, | ||
10669 | 3,52,0,327,3, | ||
10670 | 53,0,327,3,54, | ||
10671 | 0,327,3,55,0, | ||
10672 | 327,3,56,0,327, | ||
10673 | 3,57,0,327,3, | ||
10674 | 65,0,327,3,66, | ||
10675 | 0,327,3,67,0, | ||
10676 | 327,3,68,0,327, | ||
10677 | 3,69,0,327,3, | ||
10678 | 70,0,327,3,71, | ||
10679 | 0,327,3,72,0, | ||
10680 | 327,3,73,0,327, | ||
10681 | 3,74,0,327,3, | ||
10682 | 75,0,327,3,76, | ||
10683 | 0,327,3,77,0, | ||
10684 | 327,3,78,0,327, | ||
10685 | 3,79,0,327,3, | ||
10686 | 80,0,327,3,81, | ||
10687 | 0,327,3,82,0, | ||
10688 | 327,3,83,0,327, | ||
10689 | 3,84,0,327,3, | ||
10690 | 85,0,327,3,86, | ||
10691 | 0,327,3,87,0, | ||
10692 | 327,3,88,0,327, | ||
10693 | 3,89,0,327,3, | ||
10694 | 90,0,327,3,95, | ||
10695 | 0,327,3,97,0, | ||
10696 | 327,3,98,0,327, | ||
10697 | 3,99,0,327,3, | ||
10698 | 100,0,327,3,101, | ||
10699 | 0,327,3,102,0, | ||
10700 | 327,3,103,0,327, | ||
10701 | 3,104,0,327,3, | ||
10702 | 105,0,327,3,106, | ||
10703 | 0,327,3,107,0, | ||
10704 | 327,3,108,0,327, | ||
10705 | 888,11,1,829,0, | ||
10706 | 330,1,-1,3,110, | ||
10707 | 0,889,12,1,4361, | ||
10708 | 890,5,63,3,109, | ||
10709 | 0,327,3,110,0, | ||
10710 | 327,3,111,0,891, | ||
10711 | 12,1,4391,892,5, | ||
10712 | 63,3,109,0,327, | ||
10713 | 3,110,0,327,3, | ||
10714 | 111,0,327,3,112, | ||
10715 | 0,327,3,113,0, | ||
10716 | 327,3,114,0,327, | ||
10717 | 3,115,0,327,3, | ||
10718 | 116,0,893,12,1, | ||
10719 | 4426,894,5,63,3, | ||
10720 | 109,0,327,3,110, | ||
10721 | 0,327,3,111,0, | ||
10722 | 327,3,112,0,327, | ||
10723 | 3,113,0,327,3, | ||
10724 | 114,0,327,3,115, | ||
10725 | 0,327,3,116,0, | ||
10726 | 327,3,117,0,327, | ||
10727 | 3,118,0,327,3, | ||
10728 | 119,0,327,3,120, | ||
10729 | 0,327,3,121,0, | ||
10730 | 327,3,122,0,327, | ||
10731 | 3,48,0,327,3, | ||
10732 | 49,0,327,3,50, | ||
10733 | 0,327,3,51,0, | ||
10734 | 327,3,52,0,327, | ||
10735 | 3,53,0,327,3, | ||
10736 | 54,0,327,3,55, | ||
10737 | 0,327,3,56,0, | ||
10738 | 327,3,57,0,327, | ||
10739 | 3,65,0,327,3, | ||
10740 | 66,0,327,3,67, | ||
10741 | 0,327,3,68,0, | ||
10742 | 327,3,69,0,327, | ||
10743 | 3,70,0,327,3, | ||
10744 | 71,0,327,3,72, | ||
10745 | 0,327,3,73,0, | ||
10746 | 327,3,74,0,327, | ||
10747 | 3,75,0,327,3, | ||
10748 | 76,0,327,3,77, | ||
10749 | 0,327,3,78,0, | ||
10750 | 327,3,79,0,327, | ||
10751 | 3,80,0,327,3, | ||
10752 | 81,0,327,3,82, | ||
10753 | 0,327,3,83,0, | ||
10754 | 327,3,84,0,327, | ||
10755 | 3,85,0,327,3, | ||
10756 | 86,0,327,3,87, | ||
10757 | 0,327,3,88,0, | ||
10758 | 327,3,89,0,327, | ||
10759 | 3,90,0,327,3, | ||
10760 | 95,0,895,12,1, | ||
10761 | 4512,896,5,63,3, | ||
10762 | 109,0,327,3,110, | ||
10763 | 0,327,3,111,0, | ||
10764 | 327,3,112,0,327, | ||
10765 | 3,113,0,327,3, | ||
10766 | 114,0,327,3,115, | ||
10767 | 0,327,3,116,0, | ||
10768 | 327,3,117,0,327, | ||
10769 | 3,118,0,327,3, | ||
10770 | 119,0,327,3,120, | ||
10771 | 0,327,3,121,0, | ||
10772 | 327,3,122,0,327, | ||
10773 | 3,48,0,327,3, | ||
10774 | 49,0,327,3,50, | ||
10775 | 0,327,3,51,0, | ||
10776 | 327,3,52,0,327, | ||
10777 | 3,53,0,327,3, | ||
10778 | 54,0,327,3,55, | ||
10779 | 0,327,3,56,0, | ||
10780 | 327,3,57,0,327, | ||
10781 | 3,65,0,327,3, | ||
10782 | 66,0,327,3,67, | ||
10783 | 0,327,3,68,0, | ||
10784 | 327,3,69,0,327, | ||
10785 | 3,70,0,327,3, | ||
10786 | 71,0,327,3,72, | ||
10787 | 0,327,3,73,0, | ||
10788 | 327,3,74,0,327, | ||
10789 | 3,75,0,327,3, | ||
10790 | 76,0,327,3,77, | ||
10791 | 0,327,3,78,0, | ||
10792 | 327,3,79,0,327, | ||
10793 | 3,80,0,327,3, | ||
10794 | 81,0,327,3,82, | ||
10795 | 0,327,3,83,0, | ||
10796 | 327,3,84,0,327, | ||
10797 | 3,85,0,327,3, | ||
10798 | 86,0,327,3,87, | ||
10799 | 0,327,3,88,0, | ||
10800 | 327,3,89,0,327, | ||
10801 | 3,90,0,327,3, | ||
10802 | 95,0,327,3,97, | ||
10803 | 0,897,12,1,4555, | ||
10804 | 898,5,63,3,109, | ||
10805 | 0,327,3,110,0, | ||
10806 | 327,3,111,0,327, | ||
10807 | 3,112,0,327,3, | ||
10808 | 113,0,327,3,114, | ||
10809 | 0,327,3,115,0, | ||
10810 | 327,3,116,0,899, | ||
10811 | 12,1,4590,900,5, | ||
10812 | 63,3,109,0,327, | ||
10813 | 3,110,0,327,3, | ||
10814 | 111,0,327,3,112, | ||
10815 | 0,327,3,113,0, | ||
10816 | 327,3,114,0,327, | ||
10817 | 3,115,0,327,3, | ||
10818 | 116,0,327,3,117, | ||
10819 | 0,327,3,118,0, | ||
10820 | 327,3,119,0,327, | ||
10821 | 3,120,0,327,3, | ||
10822 | 121,0,327,3,122, | ||
10823 | 0,327,3,48,0, | ||
10824 | 327,3,49,0,327, | ||
10825 | 3,50,0,327,3, | ||
10826 | 51,0,327,3,52, | ||
10827 | 0,327,3,53,0, | ||
10828 | 327,3,54,0,327, | ||
10829 | 3,55,0,327,3, | ||
10830 | 56,0,327,3,57, | ||
10831 | 0,327,3,65,0, | ||
10832 | 327,3,66,0,327, | ||
10833 | 3,67,0,327,3, | ||
10834 | 68,0,327,3,69, | ||
10835 | 0,327,3,70,0, | ||
10836 | 327,3,71,0,327, | ||
10837 | 3,72,0,327,3, | ||
10838 | 73,0,327,3,74, | ||
10839 | 0,327,3,75,0, | ||
10840 | 327,3,76,0,327, | ||
10841 | 3,77,0,327,3, | ||
10842 | 78,0,327,3,79, | ||
10843 | 0,327,3,80,0, | ||
10844 | 327,3,81,0,327, | ||
10845 | 3,82,0,327,3, | ||
10846 | 83,0,327,3,84, | ||
10847 | 0,327,3,85,0, | ||
10848 | 327,3,86,0,327, | ||
10849 | 3,87,0,327,3, | ||
10850 | 88,0,327,3,89, | ||
10851 | 0,327,3,90,0, | ||
10852 | 327,3,95,0,901, | ||
10853 | 12,1,4676,902,5, | ||
10854 | 63,3,109,0,327, | ||
10855 | 3,110,0,327,3, | ||
10856 | 111,0,327,3,112, | ||
10857 | 0,327,3,113,0, | ||
10858 | 327,3,114,0,903, | ||
10859 | 12,1,4709,904,5, | ||
10860 | 63,3,109,0,327, | ||
10861 | 3,110,0,327,3, | ||
10862 | 111,0,905,12,1, | ||
10863 | 4739,906,5,63,3, | ||
10864 | 109,0,327,3,110, | ||
10865 | 0,327,3,111,0, | ||
10866 | 327,3,112,0,327, | ||
10867 | 3,113,0,327,3, | ||
10868 | 114,0,327,3,115, | ||
10869 | 0,327,3,116,0, | ||
10870 | 907,12,1,4774,908, | ||
10871 | 5,63,3,109,0, | ||
10872 | 327,3,110,0,327, | ||
10873 | 3,111,0,327,3, | ||
10874 | 112,0,327,3,113, | ||
10875 | 0,327,3,114,0, | ||
10876 | 327,3,115,0,327, | ||
10877 | 3,116,0,327,3, | ||
10878 | 117,0,327,3,118, | ||
10879 | 0,327,3,119,0, | ||
10880 | 327,3,120,0,327, | ||
10881 | 3,121,0,327,3, | ||
10882 | 122,0,327,3,48, | ||
10883 | 0,327,3,49,0, | ||
10884 | 327,3,50,0,327, | ||
10885 | 3,51,0,327,3, | ||
10886 | 52,0,327,3,53, | ||
10887 | 0,327,3,54,0, | ||
10888 | 327,3,55,0,327, | ||
10889 | 3,56,0,327,3, | ||
10890 | 57,0,327,3,65, | ||
10891 | 0,327,3,66,0, | ||
10892 | 327,3,67,0,327, | ||
10893 | 3,68,0,327,3, | ||
10894 | 69,0,327,3,70, | ||
10895 | 0,327,3,71,0, | ||
10896 | 327,3,72,0,327, | ||
10897 | 3,73,0,327,3, | ||
10898 | 74,0,327,3,75, | ||
10899 | 0,327,3,76,0, | ||
10900 | 327,3,77,0,327, | ||
10901 | 3,78,0,327,3, | ||
10902 | 79,0,327,3,80, | ||
10903 | 0,327,3,81,0, | ||
10904 | 327,3,82,0,327, | ||
10905 | 3,83,0,327,3, | ||
10906 | 84,0,327,3,85, | ||
10907 | 0,327,3,86,0, | ||
10908 | 327,3,87,0,327, | ||
10909 | 3,88,0,327,3, | ||
10910 | 89,0,327,3,90, | ||
10911 | 0,327,3,95,0, | ||
10912 | 909,12,1,4860,910, | ||
10913 | 5,63,3,109,0, | ||
10914 | 327,3,110,0,327, | ||
10915 | 3,111,0,327,3, | ||
10916 | 112,0,327,3,113, | ||
10917 | 0,327,3,114,0, | ||
10918 | 327,3,115,0,327, | ||
10919 | 3,116,0,911,12, | ||
10920 | 1,4895,912,5,63, | ||
10921 | 3,109,0,327,3, | ||
10922 | 110,0,327,3,111, | ||
10923 | 0,327,3,112,0, | ||
10924 | 327,3,113,0,327, | ||
10925 | 3,114,0,327,3, | ||
10926 | 115,0,327,3,116, | ||
10927 | 0,327,3,117,0, | ||
10928 | 327,3,118,0,327, | ||
10929 | 3,119,0,327,3, | ||
10930 | 120,0,327,3,121, | ||
10931 | 0,327,3,122,0, | ||
10932 | 327,3,48,0,327, | ||
10933 | 3,49,0,327,3, | ||
10934 | 50,0,327,3,51, | ||
10935 | 0,327,3,52,0, | ||
10936 | 327,3,53,0,327, | ||
10937 | 3,54,0,327,3, | ||
10938 | 55,0,327,3,56, | ||
10939 | 0,327,3,57,0, | ||
10940 | 327,3,65,0,327, | ||
10941 | 3,66,0,327,3, | ||
10942 | 67,0,327,3,68, | ||
10943 | 0,327,3,69,0, | ||
10944 | 327,3,70,0,327, | ||
10945 | 3,71,0,327,3, | ||
10946 | 72,0,327,3,73, | ||
10947 | 0,327,3,74,0, | ||
10948 | 327,3,75,0,327, | ||
10949 | 3,76,0,327,3, | ||
10950 | 77,0,327,3,78, | ||
10951 | 0,327,3,79,0, | ||
10952 | 327,3,80,0,327, | ||
10953 | 3,81,0,327,3, | ||
10954 | 82,0,327,3,83, | ||
10955 | 0,327,3,84,0, | ||
10956 | 327,3,85,0,327, | ||
10957 | 3,86,0,327,3, | ||
10958 | 87,0,327,3,88, | ||
10959 | 0,327,3,89,0, | ||
10960 | 327,3,90,0,327, | ||
10961 | 3,95,0,327,3, | ||
10962 | 97,0,913,12,1, | ||
10963 | 4938,914,5,63,3, | ||
10964 | 109,0,327,3,110, | ||
10965 | 0,327,3,111,0, | ||
10966 | 327,3,112,0,327, | ||
10967 | 3,113,0,327,3, | ||
10968 | 114,0,915,12,1, | ||
10969 | 4971,916,5,63,3, | ||
10970 | 109,0,327,3,110, | ||
10971 | 0,327,3,111,0, | ||
10972 | 327,3,112,0,327, | ||
10973 | 3,113,0,327,3, | ||
10974 | 114,0,327,3,115, | ||
10975 | 0,327,3,116,0, | ||
10976 | 327,3,117,0,327, | ||
10977 | 3,118,0,327,3, | ||
10978 | 119,0,327,3,120, | ||
10979 | 0,327,3,121,0, | ||
10980 | 327,3,122,0,327, | ||
10981 | 3,48,0,327,3, | ||
10982 | 49,0,327,3,50, | ||
10983 | 0,327,3,51,0, | ||
10984 | 327,3,52,0,327, | ||
10985 | 3,53,0,327,3, | ||
10986 | 54,0,327,3,55, | ||
10987 | 0,327,3,56,0, | ||
10988 | 327,3,57,0,327, | ||
10989 | 3,65,0,327,3, | ||
10990 | 66,0,327,3,67, | ||
10991 | 0,327,3,68,0, | ||
10992 | 327,3,69,0,327, | ||
10993 | 3,70,0,327,3, | ||
10994 | 71,0,327,3,72, | ||
10995 | 0,327,3,73,0, | ||
10996 | 327,3,74,0,327, | ||
10997 | 3,75,0,327,3, | ||
10998 | 76,0,327,3,77, | ||
10999 | 0,327,3,78,0, | ||
11000 | 327,3,79,0,327, | ||
11001 | 3,80,0,327,3, | ||
11002 | 81,0,327,3,82, | ||
11003 | 0,327,3,83,0, | ||
11004 | 327,3,84,0,327, | ||
11005 | 3,85,0,327,3, | ||
11006 | 86,0,327,3,87, | ||
11007 | 0,327,3,88,0, | ||
11008 | 327,3,89,0,327, | ||
11009 | 3,90,0,327,3, | ||
11010 | 95,0,327,3,97, | ||
11011 | 0,327,3,98,0, | ||
11012 | 327,3,99,0,327, | ||
11013 | 3,100,0,327,3, | ||
11014 | 101,0,327,3,102, | ||
11015 | 0,327,3,103,0, | ||
11016 | 917,12,1,5020,918, | ||
11017 | 5,63,3,109,0, | ||
11018 | 327,3,110,0,327, | ||
11019 | 3,111,0,327,3, | ||
11020 | 112,0,327,3,113, | ||
11021 | 0,327,3,114,0, | ||
11022 | 327,3,115,0,327, | ||
11023 | 3,116,0,327,3, | ||
11024 | 117,0,327,3,118, | ||
11025 | 0,327,3,119,0, | ||
11026 | 327,3,120,0,327, | ||
11027 | 3,121,0,327,3, | ||
11028 | 122,0,327,3,48, | ||
11029 | 0,327,3,49,0, | ||
11030 | 327,3,50,0,327, | ||
11031 | 3,51,0,327,3, | ||
11032 | 52,0,327,3,53, | ||
11033 | 0,327,3,54,0, | ||
11034 | 327,3,55,0,327, | ||
11035 | 3,56,0,327,3, | ||
11036 | 57,0,327,3,65, | ||
11037 | 0,327,3,66,0, | ||
11038 | 327,3,67,0,327, | ||
11039 | 3,68,0,327,3, | ||
11040 | 69,0,327,3,70, | ||
11041 | 0,327,3,71,0, | ||
11042 | 327,3,72,0,327, | ||
11043 | 3,73,0,327,3, | ||
11044 | 74,0,327,3,75, | ||
11045 | 0,327,3,76,0, | ||
11046 | 327,3,77,0,327, | ||
11047 | 3,78,0,327,3, | ||
11048 | 79,0,327,3,80, | ||
11049 | 0,327,3,81,0, | ||
11050 | 327,3,82,0,327, | ||
11051 | 3,83,0,327,3, | ||
11052 | 84,0,327,3,85, | ||
11053 | 0,327,3,86,0, | ||
11054 | 327,3,87,0,327, | ||
11055 | 3,88,0,327,3, | ||
11056 | 89,0,327,3,90, | ||
11057 | 0,327,3,95,0, | ||
11058 | 327,3,97,0,327, | ||
11059 | 3,98,0,327,3, | ||
11060 | 99,0,327,3,100, | ||
11061 | 0,327,3,101,0, | ||
11062 | 919,12,1,5067,920, | ||
11063 | 5,63,3,109,0, | ||
11064 | 327,3,110,0,327, | ||
11065 | 3,111,0,327,3, | ||
11066 | 112,0,327,3,113, | ||
11067 | 0,327,3,114,0, | ||
11068 | 327,3,115,0,327, | ||
11069 | 3,116,0,921,12, | ||
11070 | 1,5102,922,5,63, | ||
11071 | 3,109,0,327,3, | ||
11072 | 110,0,327,3,111, | ||
11073 | 0,327,3,112,0, | ||
11074 | 327,3,113,0,327, | ||
11075 | 3,114,0,327,3, | ||
11076 | 115,0,327,3,116, | ||
11077 | 0,327,3,117,0, | ||
11078 | 327,3,118,0,327, | ||
11079 | 3,119,0,327,3, | ||
11080 | 120,0,327,3,121, | ||
11081 | 0,327,3,122,0, | ||
11082 | 327,3,48,0,327, | ||
11083 | 3,49,0,327,3, | ||
11084 | 50,0,327,3,51, | ||
11085 | 0,327,3,52,0, | ||
11086 | 327,3,53,0,327, | ||
11087 | 3,54,0,327,3, | ||
11088 | 55,0,327,3,56, | ||
11089 | 0,327,3,57,0, | ||
11090 | 327,3,65,0,327, | ||
11091 | 3,66,0,327,3, | ||
11092 | 67,0,327,3,68, | ||
11093 | 0,327,3,69,0, | ||
11094 | 327,3,70,0,327, | ||
11095 | 3,71,0,327,3, | ||
11096 | 72,0,327,3,73, | ||
11097 | 0,327,3,74,0, | ||
11098 | 327,3,75,0,327, | ||
11099 | 3,76,0,327,3, | ||
11100 | 77,0,327,3,78, | ||
11101 | 0,327,3,79,0, | ||
11102 | 327,3,80,0,327, | ||
11103 | 3,81,0,327,3, | ||
11104 | 82,0,327,3,83, | ||
11105 | 0,327,3,84,0, | ||
11106 | 327,3,85,0,327, | ||
11107 | 3,86,0,327,3, | ||
11108 | 87,0,327,3,88, | ||
11109 | 0,327,3,89,0, | ||
11110 | 327,3,90,0,327, | ||
11111 | 3,95,0,327,3, | ||
11112 | 97,0,327,3,98, | ||
11113 | 0,327,3,99,0, | ||
11114 | 327,3,100,0,327, | ||
11115 | 3,101,0,327,3, | ||
11116 | 102,0,327,3,103, | ||
11117 | 0,327,3,104,0, | ||
11118 | 327,3,105,0,327, | ||
11119 | 3,106,0,327,3, | ||
11120 | 107,0,327,3,108, | ||
11121 | 0,327,923,11,1, | ||
11122 | 643,0,924,4,46, | ||
11123 | 78,0,79,0,84, | ||
11124 | 0,95,0,65,0, | ||
11125 | 84,0,95,0,82, | ||
11126 | 0,79,0,84,0, | ||
11127 | 95,0,84,0,65, | ||
11128 | 0,82,0,71,0, | ||
11129 | 69,0,84,0,95, | ||
11130 | 0,69,0,86,0, | ||
11131 | 69,0,78,0,84, | ||
11132 | 0,1,-1,3,117, | ||
11133 | 0,327,3,118,0, | ||
11134 | 327,3,119,0,327, | ||
11135 | 3,120,0,327,3, | ||
11136 | 121,0,327,3,122, | ||
11137 | 0,327,3,48,0, | ||
11138 | 327,3,49,0,327, | ||
11139 | 3,50,0,327,3, | ||
11140 | 51,0,327,3,52, | ||
11141 | 0,327,3,53,0, | ||
11142 | 327,3,54,0,327, | ||
11143 | 3,55,0,327,3, | ||
11144 | 56,0,327,3,57, | ||
11145 | 0,327,3,65,0, | ||
11146 | 327,3,66,0,327, | ||
11147 | 3,67,0,327,3, | ||
11148 | 68,0,327,3,69, | ||
11149 | 0,327,3,70,0, | ||
11150 | 327,3,71,0,327, | ||
11151 | 3,72,0,327,3, | ||
11152 | 73,0,327,3,74, | ||
11153 | 0,327,3,75,0, | ||
11154 | 327,3,76,0,327, | ||
11155 | 3,77,0,327,3, | ||
11156 | 78,0,327,3,79, | ||
11157 | 0,327,3,80,0, | ||
11158 | 327,3,81,0,327, | ||
11159 | 3,82,0,327,3, | ||
11160 | 83,0,327,3,84, | ||
11161 | 0,327,3,85,0, | ||
11162 | 327,3,86,0,327, | ||
11163 | 3,87,0,327,3, | ||
11164 | 88,0,327,3,89, | ||
11165 | 0,327,3,90,0, | ||
11166 | 327,3,95,0,327, | ||
11167 | 3,97,0,327,3, | ||
11168 | 98,0,327,3,99, | ||
11169 | 0,327,3,100,0, | ||
11170 | 327,3,101,0,327, | ||
11171 | 3,102,0,327,3, | ||
11172 | 103,0,327,3,104, | ||
11173 | 0,327,3,105,0, | ||
11174 | 327,3,106,0,327, | ||
11175 | 3,107,0,327,3, | ||
11176 | 108,0,327,925,11, | ||
11177 | 1,829,0,330,1, | ||
11178 | -1,3,102,0,327, | ||
11179 | 3,103,0,327,3, | ||
11180 | 104,0,327,3,105, | ||
11181 | 0,327,3,106,0, | ||
11182 | 327,3,107,0,327, | ||
11183 | 3,108,0,327,926, | ||
11184 | 11,1,829,0,330, | ||
11185 | 1,-1,3,104,0, | ||
11186 | 327,3,105,0,327, | ||
11187 | 3,106,0,327,3, | ||
11188 | 107,0,327,3,108, | ||
11189 | 0,327,927,11,1, | ||
11190 | 829,0,330,1,-1, | ||
11191 | 3,115,0,327,3, | ||
11192 | 116,0,327,3,117, | ||
11193 | 0,327,3,118,0, | ||
11194 | 327,3,119,0,327, | ||
11195 | 3,120,0,327,3, | ||
11196 | 121,0,327,3,122, | ||
11197 | 0,327,3,48,0, | ||
11198 | 327,3,49,0,327, | ||
11199 | 3,50,0,327,3, | ||
11200 | 51,0,327,3,52, | ||
11201 | 0,327,3,53,0, | ||
11202 | 327,3,54,0,327, | ||
11203 | 3,55,0,327,3, | ||
11204 | 56,0,327,3,57, | ||
11205 | 0,327,3,65,0, | ||
11206 | 327,3,66,0,327, | ||
11207 | 3,67,0,327,3, | ||
11208 | 68,0,327,3,69, | ||
11209 | 0,327,3,70,0, | ||
11210 | 327,3,71,0,327, | ||
11211 | 3,72,0,327,3, | ||
11212 | 73,0,327,3,74, | ||
11213 | 0,327,3,75,0, | ||
11214 | 327,3,76,0,327, | ||
11215 | 3,77,0,327,3, | ||
11216 | 78,0,327,3,79, | ||
11217 | 0,327,3,80,0, | ||
11218 | 327,3,81,0,327, | ||
11219 | 3,82,0,327,3, | ||
11220 | 83,0,327,3,84, | ||
11221 | 0,327,3,85,0, | ||
11222 | 327,3,86,0,327, | ||
11223 | 3,87,0,327,3, | ||
11224 | 88,0,327,3,89, | ||
11225 | 0,327,3,90,0, | ||
11226 | 327,3,95,0,327, | ||
11227 | 3,97,0,327,3, | ||
11228 | 98,0,327,3,99, | ||
11229 | 0,327,3,100,0, | ||
11230 | 327,3,101,0,327, | ||
11231 | 3,102,0,327,3, | ||
11232 | 103,0,327,3,104, | ||
11233 | 0,327,3,105,0, | ||
11234 | 327,3,106,0,327, | ||
11235 | 3,107,0,327,3, | ||
11236 | 108,0,327,928,11, | ||
11237 | 1,829,0,330,1, | ||
11238 | -1,3,98,0,327, | ||
11239 | 3,99,0,327,3, | ||
11240 | 100,0,327,3,101, | ||
11241 | 0,327,3,102,0, | ||
11242 | 327,3,103,0,327, | ||
11243 | 3,104,0,327,3, | ||
11244 | 105,0,327,3,106, | ||
11245 | 0,327,3,107,0, | ||
11246 | 327,3,108,0,327, | ||
11247 | 929,11,1,829,0, | ||
11248 | 330,1,-1,3,117, | ||
11249 | 0,327,3,118,0, | ||
11250 | 327,3,119,0,327, | ||
11251 | 3,120,0,327,3, | ||
11252 | 121,0,327,3,122, | ||
11253 | 0,327,3,48,0, | ||
11254 | 327,3,49,0,327, | ||
11255 | 3,50,0,327,3, | ||
11256 | 51,0,327,3,52, | ||
11257 | 0,327,3,53,0, | ||
11258 | 327,3,54,0,327, | ||
11259 | 3,55,0,327,3, | ||
11260 | 56,0,327,3,57, | ||
11261 | 0,327,3,65,0, | ||
11262 | 327,3,66,0,327, | ||
11263 | 3,67,0,327,3, | ||
11264 | 68,0,327,3,69, | ||
11265 | 0,327,3,70,0, | ||
11266 | 327,3,71,0,327, | ||
11267 | 3,72,0,327,3, | ||
11268 | 73,0,327,3,74, | ||
11269 | 0,327,3,75,0, | ||
11270 | 327,3,76,0,327, | ||
11271 | 3,77,0,327,3, | ||
11272 | 78,0,327,3,79, | ||
11273 | 0,327,3,80,0, | ||
11274 | 327,3,81,0,327, | ||
11275 | 3,82,0,327,3, | ||
11276 | 83,0,327,3,84, | ||
11277 | 0,327,3,85,0, | ||
11278 | 327,3,86,0,327, | ||
11279 | 3,87,0,327,3, | ||
11280 | 88,0,327,3,89, | ||
11281 | 0,327,3,90,0, | ||
11282 | 327,3,95,0,327, | ||
11283 | 3,97,0,327,3, | ||
11284 | 98,0,327,3,99, | ||
11285 | 0,327,3,100,0, | ||
11286 | 327,3,101,0,327, | ||
11287 | 3,102,0,327,3, | ||
11288 | 103,0,327,3,104, | ||
11289 | 0,327,3,105,0, | ||
11290 | 327,3,106,0,327, | ||
11291 | 3,107,0,327,3, | ||
11292 | 108,0,327,930,11, | ||
11293 | 1,829,0,330,1, | ||
11294 | -1,3,97,0,327, | ||
11295 | 3,98,0,327,3, | ||
11296 | 99,0,327,3,100, | ||
11297 | 0,327,3,101,0, | ||
11298 | 327,3,102,0,327, | ||
11299 | 3,103,0,327,3, | ||
11300 | 104,0,327,3,105, | ||
11301 | 0,327,3,106,0, | ||
11302 | 327,3,107,0,327, | ||
11303 | 3,108,0,327,931, | ||
11304 | 11,1,829,0,330, | ||
11305 | 1,-1,3,117,0, | ||
11306 | 327,3,118,0,327, | ||
11307 | 3,119,0,327,3, | ||
11308 | 120,0,327,3,121, | ||
11309 | 0,327,3,122,0, | ||
11310 | 327,3,48,0,327, | ||
11311 | 3,49,0,327,3, | ||
11312 | 50,0,327,3,51, | ||
11313 | 0,327,3,52,0, | ||
11314 | 327,3,53,0,327, | ||
11315 | 3,54,0,327,3, | ||
11316 | 55,0,327,3,56, | ||
11317 | 0,327,3,57,0, | ||
11318 | 327,3,65,0,327, | ||
11319 | 3,66,0,327,3, | ||
11320 | 67,0,327,3,68, | ||
11321 | 0,327,3,69,0, | ||
11322 | 327,3,70,0,327, | ||
11323 | 3,71,0,327,3, | ||
11324 | 72,0,327,3,73, | ||
11325 | 0,327,3,74,0, | ||
11326 | 327,3,75,0,327, | ||
11327 | 3,76,0,327,3, | ||
11328 | 77,0,327,3,78, | ||
11329 | 0,327,3,79,0, | ||
11330 | 327,3,80,0,327, | ||
11331 | 3,81,0,327,3, | ||
11332 | 82,0,327,3,83, | ||
11333 | 0,327,3,84,0, | ||
11334 | 327,3,85,0,327, | ||
11335 | 3,86,0,327,3, | ||
11336 | 87,0,327,3,88, | ||
11337 | 0,327,3,89,0, | ||
11338 | 327,3,90,0,327, | ||
11339 | 3,95,0,327,3, | ||
11340 | 97,0,327,3,98, | ||
11341 | 0,327,3,99,0, | ||
11342 | 327,3,100,0,327, | ||
11343 | 3,101,0,327,3, | ||
11344 | 102,0,327,3,103, | ||
11345 | 0,327,3,104,0, | ||
11346 | 327,3,105,0,327, | ||
11347 | 3,106,0,327,3, | ||
11348 | 107,0,327,3,108, | ||
11349 | 0,327,932,11,1, | ||
11350 | 829,0,330,1,-1, | ||
11351 | 3,112,0,327,3, | ||
11352 | 113,0,327,3,114, | ||
11353 | 0,327,3,115,0, | ||
11354 | 327,3,116,0,327, | ||
11355 | 3,117,0,327,3, | ||
11356 | 118,0,327,3,119, | ||
11357 | 0,327,3,120,0, | ||
11358 | 327,3,121,0,327, | ||
11359 | 3,122,0,327,3, | ||
11360 | 48,0,327,3,49, | ||
11361 | 0,327,3,50,0, | ||
11362 | 327,3,51,0,327, | ||
11363 | 3,52,0,327,3, | ||
11364 | 53,0,327,3,54, | ||
11365 | 0,327,3,55,0, | ||
11366 | 327,3,56,0,327, | ||
11367 | 3,57,0,327,3, | ||
11368 | 65,0,327,3,66, | ||
11369 | 0,327,3,67,0, | ||
11370 | 327,3,68,0,327, | ||
11371 | 3,69,0,327,3, | ||
11372 | 70,0,327,3,71, | ||
11373 | 0,327,3,72,0, | ||
11374 | 327,3,73,0,327, | ||
11375 | 3,74,0,327,3, | ||
11376 | 75,0,327,3,76, | ||
11377 | 0,327,3,77,0, | ||
11378 | 327,3,78,0,327, | ||
11379 | 3,79,0,327,3, | ||
11380 | 80,0,327,3,81, | ||
11381 | 0,327,3,82,0, | ||
11382 | 327,3,83,0,327, | ||
11383 | 3,84,0,327,3, | ||
11384 | 85,0,327,3,86, | ||
11385 | 0,327,3,87,0, | ||
11386 | 327,3,88,0,327, | ||
11387 | 3,89,0,327,3, | ||
11388 | 90,0,327,3,95, | ||
11389 | 0,327,3,97,0, | ||
11390 | 327,3,98,0,327, | ||
11391 | 3,99,0,327,3, | ||
11392 | 100,0,327,3,101, | ||
11393 | 0,327,3,102,0, | ||
11394 | 327,3,103,0,327, | ||
11395 | 3,104,0,327,3, | ||
11396 | 105,0,327,3,106, | ||
11397 | 0,327,3,107,0, | ||
11398 | 327,3,108,0,327, | ||
11399 | 933,11,1,829,0, | ||
11400 | 330,1,-1,3,115, | ||
11401 | 0,327,3,116,0, | ||
11402 | 934,12,1,5911,935, | ||
11403 | 5,63,3,109,0, | ||
11404 | 327,3,110,0,327, | ||
11405 | 3,111,0,327,3, | ||
11406 | 112,0,327,3,113, | ||
11407 | 0,327,3,114,0, | ||
11408 | 327,3,115,0,327, | ||
11409 | 3,116,0,327,3, | ||
11410 | 117,0,327,3,118, | ||
11411 | 0,327,3,119,0, | ||
11412 | 327,3,120,0,327, | ||
11413 | 3,121,0,327,3, | ||
11414 | 122,0,327,3,48, | ||
11415 | 0,327,3,49,0, | ||
11416 | 327,3,50,0,327, | ||
11417 | 3,51,0,327,3, | ||
11418 | 52,0,327,3,53, | ||
11419 | 0,327,3,54,0, | ||
11420 | 327,3,55,0,327, | ||
11421 | 3,56,0,327,3, | ||
11422 | 57,0,327,3,65, | ||
11423 | 0,327,3,66,0, | ||
11424 | 327,3,67,0,327, | ||
11425 | 3,68,0,327,3, | ||
11426 | 69,0,327,3,70, | ||
11427 | 0,327,3,71,0, | ||
11428 | 327,3,72,0,327, | ||
11429 | 3,73,0,327,3, | ||
11430 | 74,0,327,3,75, | ||
11431 | 0,327,3,76,0, | ||
11432 | 327,3,77,0,327, | ||
11433 | 3,78,0,327,3, | ||
11434 | 79,0,327,3,80, | ||
11435 | 0,327,3,81,0, | ||
11436 | 327,3,82,0,327, | ||
11437 | 3,83,0,327,3, | ||
11438 | 84,0,327,3,85, | ||
11439 | 0,327,3,86,0, | ||
11440 | 327,3,87,0,327, | ||
11441 | 3,88,0,327,3, | ||
11442 | 89,0,327,3,90, | ||
11443 | 0,327,3,95,0, | ||
11444 | 327,3,97,0,936, | ||
11445 | 12,1,5954,937,5, | ||
11446 | 63,3,109,0,327, | ||
11447 | 3,110,0,327,3, | ||
11448 | 111,0,327,3,112, | ||
11449 | 0,327,3,113,0, | ||
11450 | 327,3,114,0,938, | ||
11451 | 12,1,5987,939,5, | ||
11452 | 63,3,109,0,327, | ||
11453 | 3,110,0,327,3, | ||
11454 | 111,0,327,3,112, | ||
11455 | 0,327,3,113,0, | ||
11456 | 327,3,114,0,327, | ||
11457 | 3,115,0,327,3, | ||
11458 | 116,0,327,3,117, | ||
11459 | 0,327,3,118,0, | ||
11460 | 327,3,119,0,327, | ||
11461 | 3,120,0,327,3, | ||
11462 | 121,0,327,3,122, | ||
11463 | 0,327,3,48,0, | ||
11464 | 327,3,49,0,327, | ||
11465 | 3,50,0,327,3, | ||
11466 | 51,0,327,3,52, | ||
11467 | 0,327,3,53,0, | ||
11468 | 327,3,54,0,327, | ||
11469 | 3,55,0,327,3, | ||
11470 | 56,0,327,3,57, | ||
11471 | 0,327,3,65,0, | ||
11472 | 327,3,66,0,327, | ||
11473 | 3,67,0,327,3, | ||
11474 | 68,0,327,3,69, | ||
11475 | 0,327,3,70,0, | ||
11476 | 327,3,71,0,327, | ||
11477 | 3,72,0,327,3, | ||
11478 | 73,0,327,3,74, | ||
11479 | 0,327,3,75,0, | ||
11480 | 327,3,76,0,327, | ||
11481 | 3,77,0,327,3, | ||
11482 | 78,0,327,3,79, | ||
11483 | 0,327,3,80,0, | ||
11484 | 327,3,81,0,327, | ||
11485 | 3,82,0,327,3, | ||
11486 | 83,0,327,3,84, | ||
11487 | 0,327,3,85,0, | ||
11488 | 327,3,86,0,327, | ||
11489 | 3,87,0,327,3, | ||
11490 | 88,0,327,3,89, | ||
11491 | 0,327,3,90,0, | ||
11492 | 327,3,95,0,327, | ||
11493 | 3,97,0,327,3, | ||
11494 | 98,0,327,3,99, | ||
11495 | 0,327,3,100,0, | ||
11496 | 327,3,101,0,327, | ||
11497 | 3,102,0,327,3, | ||
11498 | 103,0,940,12,1, | ||
11499 | 6036,941,5,63,3, | ||
11500 | 109,0,327,3,110, | ||
11501 | 0,327,3,111,0, | ||
11502 | 327,3,112,0,327, | ||
11503 | 3,113,0,327,3, | ||
11504 | 114,0,327,3,115, | ||
11505 | 0,327,3,116,0, | ||
11506 | 327,3,117,0,327, | ||
11507 | 3,118,0,327,3, | ||
11508 | 119,0,327,3,120, | ||
11509 | 0,327,3,121,0, | ||
11510 | 327,3,122,0,327, | ||
11511 | 3,48,0,327,3, | ||
11512 | 49,0,327,3,50, | ||
11513 | 0,327,3,51,0, | ||
11514 | 327,3,52,0,327, | ||
11515 | 3,53,0,327,3, | ||
11516 | 54,0,327,3,55, | ||
11517 | 0,327,3,56,0, | ||
11518 | 327,3,57,0,327, | ||
11519 | 3,65,0,327,3, | ||
11520 | 66,0,327,3,67, | ||
11521 | 0,327,3,68,0, | ||
11522 | 327,3,69,0,327, | ||
11523 | 3,70,0,327,3, | ||
11524 | 71,0,327,3,72, | ||
11525 | 0,327,3,73,0, | ||
11526 | 327,3,74,0,327, | ||
11527 | 3,75,0,327,3, | ||
11528 | 76,0,327,3,77, | ||
11529 | 0,327,3,78,0, | ||
11530 | 327,3,79,0,327, | ||
11531 | 3,80,0,327,3, | ||
11532 | 81,0,327,3,82, | ||
11533 | 0,327,3,83,0, | ||
11534 | 327,3,84,0,327, | ||
11535 | 3,85,0,327,3, | ||
11536 | 86,0,327,3,87, | ||
11537 | 0,327,3,88,0, | ||
11538 | 327,3,89,0,327, | ||
11539 | 3,90,0,327,3, | ||
11540 | 95,0,327,3,97, | ||
11541 | 0,327,3,98,0, | ||
11542 | 327,3,99,0,327, | ||
11543 | 3,100,0,327,3, | ||
11544 | 101,0,942,12,1, | ||
11545 | 6083,943,5,63,3, | ||
11546 | 109,0,327,3,110, | ||
11547 | 0,327,3,111,0, | ||
11548 | 327,3,112,0,327, | ||
11549 | 3,113,0,327,3, | ||
11550 | 114,0,327,3,115, | ||
11551 | 0,327,3,116,0, | ||
11552 | 944,12,1,6118,945, | ||
11553 | 5,63,3,109,0, | ||
11554 | 327,3,110,0,327, | ||
11555 | 3,111,0,327,3, | ||
11556 | 112,0,327,3,113, | ||
11557 | 0,327,3,114,0, | ||
11558 | 327,3,115,0,327, | ||
11559 | 3,116,0,327,3, | ||
11560 | 117,0,327,3,118, | ||
11561 | 0,327,3,119,0, | ||
11562 | 327,3,120,0,327, | ||
11563 | 3,121,0,327,3, | ||
11564 | 122,0,327,3,48, | ||
11565 | 0,327,3,49,0, | ||
11566 | 327,3,50,0,327, | ||
11567 | 3,51,0,327,3, | ||
11568 | 52,0,327,3,53, | ||
11569 | 0,327,3,54,0, | ||
11570 | 327,3,55,0,327, | ||
11571 | 3,56,0,327,3, | ||
11572 | 57,0,327,3,65, | ||
11573 | 0,327,3,66,0, | ||
11574 | 327,3,67,0,327, | ||
11575 | 3,68,0,327,3, | ||
11576 | 69,0,327,3,70, | ||
11577 | 0,327,3,71,0, | ||
11578 | 327,3,72,0,327, | ||
11579 | 3,73,0,327,3, | ||
11580 | 74,0,327,3,75, | ||
11581 | 0,327,3,76,0, | ||
11582 | 327,3,77,0,327, | ||
11583 | 3,78,0,327,3, | ||
11584 | 79,0,327,3,80, | ||
11585 | 0,327,3,81,0, | ||
11586 | 327,3,82,0,327, | ||
11587 | 3,83,0,327,3, | ||
11588 | 84,0,327,3,85, | ||
11589 | 0,327,3,86,0, | ||
11590 | 327,3,87,0,327, | ||
11591 | 3,88,0,327,3, | ||
11592 | 89,0,327,3,90, | ||
11593 | 0,327,3,95,0, | ||
11594 | 327,3,97,0,327, | ||
11595 | 3,98,0,327,3, | ||
11596 | 99,0,327,3,100, | ||
11597 | 0,327,3,101,0, | ||
11598 | 327,3,102,0,327, | ||
11599 | 3,103,0,327,3, | ||
11600 | 104,0,327,3,105, | ||
11601 | 0,327,3,106,0, | ||
11602 | 327,3,107,0,327, | ||
11603 | 3,108,0,327,946, | ||
11604 | 11,1,664,0,947, | ||
11605 | 4,38,78,0,79, | ||
11606 | 0,84,0,95,0, | ||
11607 | 65,0,84,0,95, | ||
11608 | 0,84,0,65,0, | ||
11609 | 82,0,71,0,69, | ||
11610 | 0,84,0,95,0, | ||
11611 | 69,0,86,0,69, | ||
11612 | 0,78,0,84,0, | ||
11613 | 1,-1,3,117,0, | ||
11614 | 327,3,118,0,327, | ||
11615 | 3,119,0,327,3, | ||
11616 | 120,0,327,3,121, | ||
11617 | 0,327,3,122,0, | ||
11618 | 327,3,48,0,327, | ||
11619 | 3,49,0,327,3, | ||
11620 | 50,0,327,3,51, | ||
11621 | 0,327,3,52,0, | ||
11622 | 327,3,53,0,327, | ||
11623 | 3,54,0,327,3, | ||
11624 | 55,0,327,3,56, | ||
11625 | 0,327,3,57,0, | ||
11626 | 327,3,65,0,327, | ||
11627 | 3,66,0,327,3, | ||
11628 | 67,0,327,3,68, | ||
11629 | 0,327,3,69,0, | ||
11630 | 327,3,70,0,327, | ||
11631 | 3,71,0,327,3, | ||
11632 | 72,0,327,3,73, | ||
11633 | 0,327,3,74,0, | ||
11634 | 327,3,75,0,327, | ||
11635 | 3,76,0,327,3, | ||
11636 | 77,0,327,3,78, | ||
11637 | 0,327,3,79,0, | ||
11638 | 327,3,80,0,327, | ||
11639 | 3,81,0,327,3, | ||
11640 | 82,0,327,3,83, | ||
11641 | 0,327,3,84,0, | ||
11642 | 327,3,85,0,327, | ||
11643 | 3,86,0,327,3, | ||
11644 | 87,0,327,3,88, | ||
11645 | 0,327,3,89,0, | ||
11646 | 327,3,90,0,327, | ||
11647 | 3,95,0,327,3, | ||
11648 | 97,0,327,3,98, | ||
11649 | 0,327,3,99,0, | ||
11650 | 327,3,100,0,327, | ||
11651 | 3,101,0,327,3, | ||
11652 | 102,0,327,3,103, | ||
11653 | 0,327,3,104,0, | ||
11654 | 327,3,105,0,327, | ||
11655 | 3,106,0,327,3, | ||
11656 | 107,0,327,3,108, | ||
11657 | 0,327,948,11,1, | ||
11658 | 829,0,330,1,-1, | ||
11659 | 3,102,0,327,3, | ||
11660 | 103,0,327,3,104, | ||
11661 | 0,327,3,105,0, | ||
11662 | 327,3,106,0,327, | ||
11663 | 3,107,0,327,3, | ||
11664 | 108,0,327,949,11, | ||
11665 | 1,829,0,330,1, | ||
11666 | -1,3,104,0,327, | ||
11667 | 3,105,0,327,3, | ||
11668 | 106,0,327,3,107, | ||
11669 | 0,327,3,108,0, | ||
11670 | 327,950,11,1,829, | ||
11671 | 0,330,1,-1,3, | ||
11672 | 115,0,327,3,116, | ||
11673 | 0,327,3,117,0, | ||
11674 | 327,3,118,0,327, | ||
11675 | 3,119,0,327,3, | ||
11676 | 120,0,327,3,121, | ||
11677 | 0,327,3,122,0, | ||
11678 | 327,3,48,0,327, | ||
11679 | 3,49,0,327,3, | ||
11680 | 50,0,327,3,51, | ||
11681 | 0,327,3,52,0, | ||
11682 | 327,3,53,0,327, | ||
11683 | 3,54,0,327,3, | ||
11684 | 55,0,327,3,56, | ||
11685 | 0,327,3,57,0, | ||
11686 | 327,3,65,0,327, | ||
11687 | 3,66,0,327,3, | ||
11688 | 67,0,327,3,68, | ||
11689 | 0,327,3,69,0, | ||
11690 | 327,3,70,0,327, | ||
11691 | 3,71,0,327,3, | ||
11692 | 72,0,327,3,73, | ||
11693 | 0,327,3,74,0, | ||
11694 | 327,3,75,0,327, | ||
11695 | 3,76,0,327,3, | ||
11696 | 77,0,327,3,78, | ||
11697 | 0,327,3,79,0, | ||
11698 | 327,3,80,0,327, | ||
11699 | 3,81,0,327,3, | ||
11700 | 82,0,327,3,83, | ||
11701 | 0,327,3,84,0, | ||
11702 | 327,3,85,0,327, | ||
11703 | 3,86,0,327,3, | ||
11704 | 87,0,327,3,88, | ||
11705 | 0,327,3,89,0, | ||
11706 | 327,3,90,0,327, | ||
11707 | 3,95,0,327,3, | ||
11708 | 97,0,327,3,98, | ||
11709 | 0,327,3,99,0, | ||
11710 | 327,3,100,0,327, | ||
11711 | 3,101,0,327,3, | ||
11712 | 102,0,327,3,103, | ||
11713 | 0,327,3,104,0, | ||
11714 | 327,3,105,0,327, | ||
11715 | 3,106,0,327,3, | ||
11716 | 107,0,327,3,108, | ||
11717 | 0,327,951,11,1, | ||
11718 | 829,0,330,1,-1, | ||
11719 | 3,98,0,327,3, | ||
11720 | 99,0,327,3,100, | ||
11721 | 0,327,3,101,0, | ||
11722 | 327,3,102,0,327, | ||
11723 | 3,103,0,327,3, | ||
11724 | 104,0,327,3,105, | ||
11725 | 0,327,3,106,0, | ||
11726 | 327,3,107,0,327, | ||
11727 | 3,108,0,327,952, | ||
11728 | 11,1,829,0,330, | ||
11729 | 1,-1,3,117,0, | ||
11730 | 327,3,118,0,327, | ||
11731 | 3,119,0,327,3, | ||
11732 | 120,0,327,3,121, | ||
11733 | 0,327,3,122,0, | ||
11734 | 327,3,48,0,327, | ||
11735 | 3,49,0,327,3, | ||
11736 | 50,0,327,3,51, | ||
11737 | 0,327,3,52,0, | ||
11738 | 327,3,53,0,327, | ||
11739 | 3,54,0,327,3, | ||
11740 | 55,0,327,3,56, | ||
11741 | 0,327,3,57,0, | ||
11742 | 327,3,65,0,327, | ||
11743 | 3,66,0,327,3, | ||
11744 | 67,0,327,3,68, | ||
11745 | 0,327,3,69,0, | ||
11746 | 327,3,70,0,327, | ||
11747 | 3,71,0,327,3, | ||
11748 | 72,0,327,3,73, | ||
11749 | 0,327,3,74,0, | ||
11750 | 327,3,75,0,327, | ||
11751 | 3,76,0,327,3, | ||
11752 | 77,0,327,3,78, | ||
11753 | 0,327,3,79,0, | ||
11754 | 327,3,80,0,327, | ||
11755 | 3,81,0,327,3, | ||
11756 | 82,0,327,3,83, | ||
11757 | 0,327,3,84,0, | ||
11758 | 327,3,85,0,327, | ||
11759 | 3,86,0,327,3, | ||
11760 | 87,0,327,3,88, | ||
11761 | 0,327,3,89,0, | ||
11762 | 327,3,90,0,327, | ||
11763 | 3,95,0,327,3, | ||
11764 | 97,0,327,3,98, | ||
11765 | 0,327,3,99,0, | ||
11766 | 327,3,100,0,327, | ||
11767 | 3,101,0,327,3, | ||
11768 | 102,0,327,3,103, | ||
11769 | 0,327,3,104,0, | ||
11770 | 327,3,105,0,327, | ||
11771 | 3,106,0,327,3, | ||
11772 | 107,0,327,3,108, | ||
11773 | 0,327,953,11,1, | ||
11774 | 829,0,330,1,-1, | ||
11775 | 3,97,0,327,3, | ||
11776 | 98,0,327,3,99, | ||
11777 | 0,327,3,100,0, | ||
11778 | 327,3,101,0,327, | ||
11779 | 3,102,0,327,3, | ||
11780 | 103,0,327,3,104, | ||
11781 | 0,327,3,105,0, | ||
11782 | 327,3,106,0,327, | ||
11783 | 3,107,0,327,3, | ||
11784 | 108,0,327,954,11, | ||
11785 | 1,829,0,330,1, | ||
11786 | -1,3,117,0,327, | ||
11787 | 3,118,0,327,3, | ||
11788 | 119,0,327,3,120, | ||
11789 | 0,327,3,121,0, | ||
11790 | 327,3,122,0,327, | ||
11791 | 3,48,0,327,3, | ||
11792 | 49,0,327,3,50, | ||
11793 | 0,327,3,51,0, | ||
11794 | 327,3,52,0,327, | ||
11795 | 3,53,0,327,3, | ||
11796 | 54,0,327,3,55, | ||
11797 | 0,327,3,56,0, | ||
11798 | 327,3,57,0,327, | ||
11799 | 3,65,0,327,3, | ||
11800 | 66,0,327,3,67, | ||
11801 | 0,327,3,68,0, | ||
11802 | 327,3,69,0,327, | ||
11803 | 3,70,0,327,3, | ||
11804 | 71,0,327,3,72, | ||
11805 | 0,327,3,73,0, | ||
11806 | 327,3,74,0,327, | ||
11807 | 3,75,0,327,3, | ||
11808 | 76,0,327,3,77, | ||
11809 | 0,327,3,78,0, | ||
11810 | 327,3,79,0,327, | ||
11811 | 3,80,0,327,3, | ||
11812 | 81,0,327,3,82, | ||
11813 | 0,327,3,83,0, | ||
11814 | 327,3,84,0,327, | ||
11815 | 3,85,0,327,3, | ||
11816 | 86,0,327,3,87, | ||
11817 | 0,327,3,88,0, | ||
11818 | 327,3,89,0,327, | ||
11819 | 3,90,0,327,3, | ||
11820 | 95,0,327,3,97, | ||
11821 | 0,327,3,98,0, | ||
11822 | 327,3,99,0,327, | ||
11823 | 3,100,0,327,3, | ||
11824 | 101,0,327,3,102, | ||
11825 | 0,327,3,103,0, | ||
11826 | 327,3,104,0,327, | ||
11827 | 3,105,0,327,3, | ||
11828 | 106,0,327,3,107, | ||
11829 | 0,327,3,108,0, | ||
11830 | 327,955,11,1,829, | ||
11831 | 0,330,1,-1,3, | ||
11832 | 98,0,327,3,99, | ||
11833 | 0,327,3,100,0, | ||
11834 | 327,3,101,0,327, | ||
11835 | 3,102,0,327,3, | ||
11836 | 103,0,327,3,104, | ||
11837 | 0,327,3,105,0, | ||
11838 | 327,3,106,0,327, | ||
11839 | 3,107,0,327,3, | ||
11840 | 108,0,327,956,11, | ||
11841 | 1,829,0,330,1, | ||
11842 | -1,3,97,0,327, | ||
11843 | 3,98,0,327,3, | ||
11844 | 99,0,327,3,100, | ||
11845 | 0,327,3,101,0, | ||
11846 | 327,3,102,0,327, | ||
11847 | 3,103,0,327,3, | ||
11848 | 104,0,327,3,105, | ||
11849 | 0,327,3,106,0, | ||
11850 | 327,3,107,0,327, | ||
11851 | 3,108,0,327,957, | ||
11852 | 11,1,829,0,330, | ||
11853 | 1,-1,3,117,0, | ||
11854 | 327,3,118,0,327, | ||
11855 | 3,119,0,327,3, | ||
11856 | 120,0,327,3,121, | ||
11857 | 0,327,3,122,0, | ||
11858 | 327,3,48,0,327, | ||
11859 | 3,49,0,327,3, | ||
11860 | 50,0,327,3,51, | ||
11861 | 0,327,3,52,0, | ||
11862 | 327,3,53,0,327, | ||
11863 | 3,54,0,327,3, | ||
11864 | 55,0,327,3,56, | ||
11865 | 0,327,3,57,0, | ||
11866 | 327,3,65,0,327, | ||
11867 | 3,66,0,327,3, | ||
11868 | 67,0,327,3,68, | ||
11869 | 0,327,3,69,0, | ||
11870 | 327,3,70,0,327, | ||
11871 | 3,71,0,327,3, | ||
11872 | 72,0,327,3,73, | ||
11873 | 0,327,3,74,0, | ||
11874 | 327,3,75,0,327, | ||
11875 | 3,76,0,327,3, | ||
11876 | 77,0,327,3,78, | ||
11877 | 0,327,3,79,0, | ||
11878 | 327,3,80,0,327, | ||
11879 | 3,81,0,327,3, | ||
11880 | 82,0,327,3,83, | ||
11881 | 0,327,3,84,0, | ||
11882 | 327,3,85,0,327, | ||
11883 | 3,86,0,327,3, | ||
11884 | 87,0,327,3,88, | ||
11885 | 0,327,3,89,0, | ||
11886 | 327,3,90,0,327, | ||
11887 | 3,95,0,958,12, | ||
11888 | 1,6997,959,5,63, | ||
11889 | 3,109,0,327,3, | ||
11890 | 110,0,327,3,111, | ||
11891 | 0,327,3,112,0, | ||
11892 | 327,3,113,0,327, | ||
11893 | 3,114,0,327,3, | ||
11894 | 115,0,960,12,1, | ||
11895 | 7031,961,5,63,3, | ||
11896 | 109,0,327,3,110, | ||
11897 | 0,327,3,111,0, | ||
11898 | 327,3,112,0,327, | ||
11899 | 3,113,0,327,3, | ||
11900 | 114,0,327,3,115, | ||
11901 | 0,327,3,116,0, | ||
11902 | 327,3,117,0,327, | ||
11903 | 3,118,0,327,3, | ||
11904 | 119,0,327,3,120, | ||
11905 | 0,327,3,121,0, | ||
11906 | 327,3,122,0,327, | ||
11907 | 3,48,0,327,3, | ||
11908 | 49,0,327,3,50, | ||
11909 | 0,327,3,51,0, | ||
11910 | 327,3,52,0,327, | ||
11911 | 3,53,0,327,3, | ||
11912 | 54,0,327,3,55, | ||
11913 | 0,327,3,56,0, | ||
11914 | 327,3,57,0,327, | ||
11915 | 3,65,0,327,3, | ||
11916 | 66,0,327,3,67, | ||
11917 | 0,327,3,68,0, | ||
11918 | 327,3,69,0,327, | ||
11919 | 3,70,0,327,3, | ||
11920 | 71,0,327,3,72, | ||
11921 | 0,327,3,73,0, | ||
11922 | 327,3,74,0,327, | ||
11923 | 3,75,0,327,3, | ||
11924 | 76,0,327,3,77, | ||
11925 | 0,327,3,78,0, | ||
11926 | 327,3,79,0,327, | ||
11927 | 3,80,0,327,3, | ||
11928 | 81,0,327,3,82, | ||
11929 | 0,327,3,83,0, | ||
11930 | 327,3,84,0,327, | ||
11931 | 3,85,0,327,3, | ||
11932 | 86,0,327,3,87, | ||
11933 | 0,327,3,88,0, | ||
11934 | 327,3,89,0,327, | ||
11935 | 3,90,0,327,3, | ||
11936 | 95,0,327,3,97, | ||
11937 | 0,327,3,98,0, | ||
11938 | 327,3,99,0,327, | ||
11939 | 3,100,0,327,3, | ||
11940 | 101,0,962,12,1, | ||
11941 | 7078,963,5,63,3, | ||
11942 | 109,0,327,3,110, | ||
11943 | 0,964,12,1,7107, | ||
11944 | 965,5,63,3,109, | ||
11945 | 0,327,3,110,0, | ||
11946 | 327,3,111,0,327, | ||
11947 | 3,112,0,327,3, | ||
11948 | 113,0,327,3,114, | ||
11949 | 0,327,3,115,0, | ||
11950 | 966,12,1,7141,967, | ||
11951 | 5,63,3,109,0, | ||
11952 | 327,3,110,0,327, | ||
11953 | 3,111,0,968,12, | ||
11954 | 1,7171,969,5,63, | ||
11955 | 3,109,0,327,3, | ||
11956 | 110,0,327,3,111, | ||
11957 | 0,327,3,112,0, | ||
11958 | 327,3,113,0,327, | ||
11959 | 3,114,0,970,12, | ||
11960 | 1,7204,971,5,63, | ||
11961 | 3,109,0,327,3, | ||
11962 | 110,0,327,3,111, | ||
11963 | 0,327,3,112,0, | ||
11964 | 327,3,113,0,327, | ||
11965 | 3,114,0,327,3, | ||
11966 | 115,0,327,3,116, | ||
11967 | 0,327,3,117,0, | ||
11968 | 327,3,118,0,327, | ||
11969 | 3,119,0,327,3, | ||
11970 | 120,0,327,3,121, | ||
11971 | 0,327,3,122,0, | ||
11972 | 327,3,48,0,327, | ||
11973 | 3,49,0,327,3, | ||
11974 | 50,0,327,3,51, | ||
11975 | 0,327,3,52,0, | ||
11976 | 327,3,53,0,327, | ||
11977 | 3,54,0,327,3, | ||
11978 | 55,0,327,3,56, | ||
11979 | 0,327,3,57,0, | ||
11980 | 327,3,65,0,327, | ||
11981 | 3,66,0,327,3, | ||
11982 | 67,0,327,3,68, | ||
11983 | 0,327,3,69,0, | ||
11984 | 327,3,70,0,327, | ||
11985 | 3,71,0,327,3, | ||
11986 | 72,0,327,3,73, | ||
11987 | 0,327,3,74,0, | ||
11988 | 327,3,75,0,327, | ||
11989 | 3,76,0,327,3, | ||
11990 | 77,0,327,3,78, | ||
11991 | 0,327,3,79,0, | ||
11992 | 327,3,80,0,327, | ||
11993 | 3,81,0,327,3, | ||
11994 | 82,0,327,3,83, | ||
11995 | 0,327,3,84,0, | ||
11996 | 327,3,85,0,327, | ||
11997 | 3,86,0,327,3, | ||
11998 | 87,0,327,3,88, | ||
11999 | 0,327,3,89,0, | ||
12000 | 327,3,90,0,327, | ||
12001 | 3,95,0,327,3, | ||
12002 | 97,0,327,3,98, | ||
12003 | 0,327,3,99,0, | ||
12004 | 327,3,100,0,327, | ||
12005 | 3,101,0,327,3, | ||
12006 | 102,0,327,3,103, | ||
12007 | 0,327,3,104,0, | ||
12008 | 327,3,105,0,327, | ||
12009 | 3,106,0,327,3, | ||
12010 | 107,0,327,3,108, | ||
12011 | 0,327,972,11,1, | ||
12012 | 630,0,973,4,30, | ||
12013 | 78,0,79,0,95, | ||
12014 | 0,83,0,69,0, | ||
12015 | 78,0,83,0,79, | ||
12016 | 0,82,0,95,0, | ||
12017 | 69,0,86,0,69, | ||
12018 | 0,78,0,84,0, | ||
12019 | 1,-1,3,115,0, | ||
12020 | 327,3,116,0,327, | ||
12021 | 3,117,0,327,3, | ||
12022 | 118,0,327,3,119, | ||
12023 | 0,327,3,120,0, | ||
12024 | 327,3,121,0,327, | ||
12025 | 3,122,0,327,3, | ||
12026 | 48,0,327,3,49, | ||
12027 | 0,327,3,50,0, | ||
12028 | 327,3,51,0,327, | ||
12029 | 3,52,0,327,3, | ||
12030 | 53,0,327,3,54, | ||
12031 | 0,327,3,55,0, | ||
12032 | 327,3,56,0,327, | ||
12033 | 3,57,0,327,3, | ||
12034 | 65,0,327,3,66, | ||
12035 | 0,327,3,67,0, | ||
12036 | 327,3,68,0,327, | ||
12037 | 3,69,0,327,3, | ||
12038 | 70,0,327,3,71, | ||
12039 | 0,327,3,72,0, | ||
12040 | 327,3,73,0,327, | ||
12041 | 3,74,0,327,3, | ||
12042 | 75,0,327,3,76, | ||
12043 | 0,327,3,77,0, | ||
12044 | 327,3,78,0,327, | ||
12045 | 3,79,0,327,3, | ||
12046 | 80,0,327,3,81, | ||
12047 | 0,327,3,82,0, | ||
12048 | 327,3,83,0,327, | ||
12049 | 3,84,0,327,3, | ||
12050 | 85,0,327,3,86, | ||
12051 | 0,327,3,87,0, | ||
12052 | 327,3,88,0,327, | ||
12053 | 3,89,0,327,3, | ||
12054 | 90,0,327,3,95, | ||
12055 | 0,327,3,97,0, | ||
12056 | 327,3,98,0,327, | ||
12057 | 3,99,0,327,3, | ||
12058 | 100,0,327,3,101, | ||
12059 | 0,327,3,102,0, | ||
12060 | 327,3,103,0,327, | ||
12061 | 3,104,0,327,3, | ||
12062 | 105,0,327,3,106, | ||
12063 | 0,327,3,107,0, | ||
12064 | 327,3,108,0,327, | ||
12065 | 974,11,1,829,0, | ||
12066 | 330,1,-1,3,112, | ||
12067 | 0,327,3,113,0, | ||
12068 | 327,3,114,0,327, | ||
12069 | 3,115,0,327,3, | ||
12070 | 116,0,327,3,117, | ||
12071 | 0,327,3,118,0, | ||
12072 | 327,3,119,0,327, | ||
12073 | 3,120,0,327,3, | ||
12074 | 121,0,327,3,122, | ||
12075 | 0,327,3,48,0, | ||
12076 | 327,3,49,0,327, | ||
12077 | 3,50,0,327,3, | ||
12078 | 51,0,327,3,52, | ||
12079 | 0,327,3,53,0, | ||
12080 | 327,3,54,0,327, | ||
12081 | 3,55,0,327,3, | ||
12082 | 56,0,327,3,57, | ||
12083 | 0,327,3,65,0, | ||
12084 | 327,3,66,0,327, | ||
12085 | 3,67,0,327,3, | ||
12086 | 68,0,327,3,69, | ||
12087 | 0,327,3,70,0, | ||
12088 | 327,3,71,0,327, | ||
12089 | 3,72,0,327,3, | ||
12090 | 73,0,327,3,74, | ||
12091 | 0,327,3,75,0, | ||
12092 | 327,3,76,0,327, | ||
12093 | 3,77,0,327,3, | ||
12094 | 78,0,327,3,79, | ||
12095 | 0,327,3,80,0, | ||
12096 | 327,3,81,0,327, | ||
12097 | 3,82,0,327,3, | ||
12098 | 83,0,327,3,84, | ||
12099 | 0,327,3,85,0, | ||
12100 | 327,3,86,0,327, | ||
12101 | 3,87,0,327,3, | ||
12102 | 88,0,327,3,89, | ||
12103 | 0,327,3,90,0, | ||
12104 | 327,3,95,0,327, | ||
12105 | 3,97,0,327,3, | ||
12106 | 98,0,327,3,99, | ||
12107 | 0,327,3,100,0, | ||
12108 | 327,3,101,0,327, | ||
12109 | 3,102,0,327,3, | ||
12110 | 103,0,327,3,104, | ||
12111 | 0,327,3,105,0, | ||
12112 | 327,3,106,0,327, | ||
12113 | 3,107,0,327,3, | ||
12114 | 108,0,327,975,11, | ||
12115 | 1,829,0,330,1, | ||
12116 | -1,3,116,0,327, | ||
12117 | 3,117,0,327,3, | ||
12118 | 118,0,327,3,119, | ||
12119 | 0,327,3,120,0, | ||
12120 | 327,3,121,0,327, | ||
12121 | 3,122,0,327,3, | ||
12122 | 48,0,327,3,49, | ||
12123 | 0,327,3,50,0, | ||
12124 | 327,3,51,0,327, | ||
12125 | 3,52,0,327,3, | ||
12126 | 53,0,327,3,54, | ||
12127 | 0,327,3,55,0, | ||
12128 | 327,3,56,0,327, | ||
12129 | 3,57,0,327,3, | ||
12130 | 65,0,327,3,66, | ||
12131 | 0,327,3,67,0, | ||
12132 | 327,3,68,0,327, | ||
12133 | 3,69,0,327,3, | ||
12134 | 70,0,327,3,71, | ||
12135 | 0,327,3,72,0, | ||
12136 | 327,3,73,0,327, | ||
12137 | 3,74,0,327,3, | ||
12138 | 75,0,327,3,76, | ||
12139 | 0,327,3,77,0, | ||
12140 | 327,3,78,0,327, | ||
12141 | 3,79,0,327,3, | ||
12142 | 80,0,327,3,81, | ||
12143 | 0,327,3,82,0, | ||
12144 | 327,3,83,0,327, | ||
12145 | 3,84,0,327,3, | ||
12146 | 85,0,327,3,86, | ||
12147 | 0,327,3,87,0, | ||
12148 | 327,3,88,0,327, | ||
12149 | 3,89,0,327,3, | ||
12150 | 90,0,327,3,95, | ||
12151 | 0,327,3,97,0, | ||
12152 | 327,3,98,0,327, | ||
12153 | 3,99,0,327,3, | ||
12154 | 100,0,327,3,101, | ||
12155 | 0,327,3,102,0, | ||
12156 | 327,3,103,0,327, | ||
12157 | 3,104,0,327,3, | ||
12158 | 105,0,327,3,106, | ||
12159 | 0,327,3,107,0, | ||
12160 | 327,3,108,0,327, | ||
12161 | 976,11,1,829,0, | ||
12162 | 330,1,-1,3,111, | ||
12163 | 0,327,3,112,0, | ||
12164 | 327,3,113,0,327, | ||
12165 | 3,114,0,327,3, | ||
12166 | 115,0,327,3,116, | ||
12167 | 0,327,3,117,0, | ||
12168 | 327,3,118,0,327, | ||
12169 | 3,119,0,327,3, | ||
12170 | 120,0,327,3,121, | ||
12171 | 0,327,3,122,0, | ||
12172 | 327,3,48,0,327, | ||
12173 | 3,49,0,327,3, | ||
12174 | 50,0,327,3,51, | ||
12175 | 0,327,3,52,0, | ||
12176 | 327,3,53,0,327, | ||
12177 | 3,54,0,327,3, | ||
12178 | 55,0,327,3,56, | ||
12179 | 0,327,3,57,0, | ||
12180 | 327,3,65,0,327, | ||
12181 | 3,66,0,327,3, | ||
12182 | 67,0,327,3,68, | ||
12183 | 0,327,3,69,0, | ||
12184 | 327,3,70,0,327, | ||
12185 | 3,71,0,327,3, | ||
12186 | 72,0,327,3,73, | ||
12187 | 0,327,3,74,0, | ||
12188 | 327,3,75,0,327, | ||
12189 | 3,76,0,327,3, | ||
12190 | 77,0,327,3,78, | ||
12191 | 0,327,3,79,0, | ||
12192 | 327,3,80,0,327, | ||
12193 | 3,81,0,327,3, | ||
12194 | 82,0,327,3,83, | ||
12195 | 0,327,3,84,0, | ||
12196 | 327,3,85,0,327, | ||
12197 | 3,86,0,327,3, | ||
12198 | 87,0,327,3,88, | ||
12199 | 0,327,3,89,0, | ||
12200 | 327,3,90,0,327, | ||
12201 | 3,95,0,327,3, | ||
12202 | 97,0,327,3,98, | ||
12203 | 0,327,3,99,0, | ||
12204 | 327,3,100,0,327, | ||
12205 | 3,101,0,327,3, | ||
12206 | 102,0,327,3,103, | ||
12207 | 0,327,3,104,0, | ||
12208 | 327,3,105,0,327, | ||
12209 | 3,106,0,327,3, | ||
12210 | 107,0,327,3,108, | ||
12211 | 0,327,977,11,1, | ||
12212 | 829,0,330,1,-1, | ||
12213 | 3,102,0,327,3, | ||
12214 | 103,0,327,3,104, | ||
12215 | 0,327,3,105,0, | ||
12216 | 327,3,106,0,327, | ||
12217 | 3,107,0,327,3, | ||
12218 | 108,0,327,978,11, | ||
12219 | 1,829,0,330,1, | ||
12220 | -1,3,116,0,327, | ||
12221 | 3,117,0,327,3, | ||
12222 | 118,0,327,3,119, | ||
12223 | 0,327,3,120,0, | ||
12224 | 327,3,121,0,327, | ||
12225 | 3,122,0,327,3, | ||
12226 | 48,0,327,3,49, | ||
12227 | 0,327,3,50,0, | ||
12228 | 327,3,51,0,327, | ||
12229 | 3,52,0,327,3, | ||
12230 | 53,0,327,3,54, | ||
12231 | 0,327,3,55,0, | ||
12232 | 327,3,56,0,327, | ||
12233 | 3,57,0,327,3, | ||
12234 | 65,0,327,3,66, | ||
12235 | 0,327,3,67,0, | ||
12236 | 327,3,68,0,327, | ||
12237 | 3,69,0,327,3, | ||
12238 | 70,0,327,3,71, | ||
12239 | 0,327,3,72,0, | ||
12240 | 327,3,73,0,327, | ||
12241 | 3,74,0,327,3, | ||
12242 | 75,0,327,3,76, | ||
12243 | 0,327,3,77,0, | ||
12244 | 327,3,78,0,327, | ||
12245 | 3,79,0,327,3, | ||
12246 | 80,0,327,3,81, | ||
12247 | 0,327,3,82,0, | ||
12248 | 327,3,83,0,327, | ||
12249 | 3,84,0,327,3, | ||
12250 | 85,0,327,3,86, | ||
12251 | 0,327,3,87,0, | ||
12252 | 327,3,88,0,327, | ||
12253 | 3,89,0,327,3, | ||
12254 | 90,0,327,3,95, | ||
12255 | 0,327,3,97,0, | ||
12256 | 327,3,98,0,327, | ||
12257 | 3,99,0,327,3, | ||
12258 | 100,0,327,3,101, | ||
12259 | 0,327,3,102,0, | ||
12260 | 327,3,103,0,327, | ||
12261 | 3,104,0,327,3, | ||
12262 | 105,0,327,3,106, | ||
12263 | 0,327,3,107,0, | ||
12264 | 327,3,108,0,327, | ||
12265 | 979,11,1,829,0, | ||
12266 | 330,1,-1,3,97, | ||
12267 | 0,327,3,98,0, | ||
12268 | 327,3,99,0,327, | ||
12269 | 3,100,0,327,3, | ||
12270 | 101,0,327,3,102, | ||
12271 | 0,327,3,103,0, | ||
12272 | 327,3,104,0,327, | ||
12273 | 3,105,0,327,3, | ||
12274 | 106,0,327,3,107, | ||
12275 | 0,327,3,108,0, | ||
12276 | 327,980,11,1,829, | ||
12277 | 0,330,1,-1,3, | ||
12278 | 112,0,327,3,113, | ||
12279 | 0,327,3,114,0, | ||
12280 | 327,3,115,0,327, | ||
12281 | 3,116,0,327,3, | ||
12282 | 117,0,327,3,118, | ||
12283 | 0,327,3,119,0, | ||
12284 | 327,3,120,0,327, | ||
12285 | 3,121,0,327,3, | ||
12286 | 122,0,327,3,48, | ||
12287 | 0,327,3,49,0, | ||
12288 | 327,3,50,0,327, | ||
12289 | 3,51,0,327,3, | ||
12290 | 52,0,327,3,53, | ||
12291 | 0,327,3,54,0, | ||
12292 | 327,3,55,0,327, | ||
12293 | 3,56,0,327,3, | ||
12294 | 57,0,327,3,65, | ||
12295 | 0,327,3,66,0, | ||
12296 | 327,3,67,0,327, | ||
12297 | 3,68,0,327,3, | ||
12298 | 69,0,327,3,70, | ||
12299 | 0,327,3,71,0, | ||
12300 | 327,3,72,0,327, | ||
12301 | 3,73,0,327,3, | ||
12302 | 74,0,327,3,75, | ||
12303 | 0,327,3,76,0, | ||
12304 | 327,3,77,0,327, | ||
12305 | 3,78,0,327,3, | ||
12306 | 79,0,327,3,80, | ||
12307 | 0,327,3,81,0, | ||
12308 | 327,3,82,0,327, | ||
12309 | 3,83,0,327,3, | ||
12310 | 84,0,327,3,85, | ||
12311 | 0,327,3,86,0, | ||
12312 | 327,3,87,0,327, | ||
12313 | 3,88,0,327,3, | ||
12314 | 89,0,327,3,90, | ||
12315 | 0,327,3,95,0, | ||
12316 | 327,3,97,0,327, | ||
12317 | 3,98,0,327,3, | ||
12318 | 99,0,327,3,100, | ||
12319 | 0,327,3,101,0, | ||
12320 | 327,3,102,0,327, | ||
12321 | 3,103,0,327,3, | ||
12322 | 104,0,327,3,105, | ||
12323 | 0,327,3,106,0, | ||
12324 | 327,3,107,0,327, | ||
12325 | 3,108,0,327,981, | ||
12326 | 11,1,829,0,330, | ||
12327 | 1,-1,3,111,0, | ||
12328 | 982,12,1,7962,983, | ||
12329 | 5,63,3,109,0, | ||
12330 | 327,3,110,0,984, | ||
12331 | 12,1,7991,985,5, | ||
12332 | 63,3,109,0,327, | ||
12333 | 3,110,0,327,3, | ||
12334 | 111,0,327,3,112, | ||
12335 | 0,327,3,113,0, | ||
12336 | 327,3,114,0,327, | ||
12337 | 3,115,0,327,3, | ||
12338 | 116,0,327,3,117, | ||
12339 | 0,327,3,118,0, | ||
12340 | 327,3,119,0,327, | ||
12341 | 3,120,0,327,3, | ||
12342 | 121,0,327,3,122, | ||
12343 | 0,327,3,48,0, | ||
12344 | 327,3,49,0,327, | ||
12345 | 3,50,0,327,3, | ||
12346 | 51,0,327,3,52, | ||
12347 | 0,327,3,53,0, | ||
12348 | 327,3,54,0,327, | ||
12349 | 3,55,0,327,3, | ||
12350 | 56,0,327,3,57, | ||
12351 | 0,327,3,65,0, | ||
12352 | 327,3,66,0,327, | ||
12353 | 3,67,0,327,3, | ||
12354 | 68,0,327,3,69, | ||
12355 | 0,327,3,70,0, | ||
12356 | 327,3,71,0,327, | ||
12357 | 3,72,0,327,3, | ||
12358 | 73,0,327,3,74, | ||
12359 | 0,327,3,75,0, | ||
12360 | 327,3,76,0,327, | ||
12361 | 3,77,0,327,3, | ||
12362 | 78,0,327,3,79, | ||
12363 | 0,327,3,80,0, | ||
12364 | 327,3,81,0,327, | ||
12365 | 3,82,0,327,3, | ||
12366 | 83,0,327,3,84, | ||
12367 | 0,327,3,85,0, | ||
12368 | 327,3,86,0,327, | ||
12369 | 3,87,0,327,3, | ||
12370 | 88,0,327,3,89, | ||
12371 | 0,327,3,90,0, | ||
12372 | 327,3,95,0,986, | ||
12373 | 12,1,8077,987,5, | ||
12374 | 63,3,109,0,327, | ||
12375 | 3,110,0,327,3, | ||
12376 | 111,0,327,3,112, | ||
12377 | 0,327,3,113,0, | ||
12378 | 327,3,114,0,988, | ||
12379 | 12,1,8110,989,5, | ||
12380 | 63,3,109,0,327, | ||
12381 | 3,110,0,327,3, | ||
12382 | 111,0,327,3,112, | ||
12383 | 0,327,3,113,0, | ||
12384 | 327,3,114,0,327, | ||
12385 | 3,115,0,327,3, | ||
12386 | 116,0,327,3,117, | ||
12387 | 0,327,3,118,0, | ||
12388 | 327,3,119,0,327, | ||
12389 | 3,120,0,327,3, | ||
12390 | 121,0,327,3,122, | ||
12391 | 0,327,3,48,0, | ||
12392 | 327,3,49,0,327, | ||
12393 | 3,50,0,327,3, | ||
12394 | 51,0,327,3,52, | ||
12395 | 0,327,3,53,0, | ||
12396 | 327,3,54,0,327, | ||
12397 | 3,55,0,327,3, | ||
12398 | 56,0,327,3,57, | ||
12399 | 0,327,3,65,0, | ||
12400 | 327,3,66,0,327, | ||
12401 | 3,67,0,327,3, | ||
12402 | 68,0,327,3,69, | ||
12403 | 0,327,3,70,0, | ||
12404 | 327,3,71,0,327, | ||
12405 | 3,72,0,327,3, | ||
12406 | 73,0,327,3,74, | ||
12407 | 0,327,3,75,0, | ||
12408 | 327,3,76,0,327, | ||
12409 | 3,77,0,327,3, | ||
12410 | 78,0,327,3,79, | ||
12411 | 0,327,3,80,0, | ||
12412 | 327,3,81,0,327, | ||
12413 | 3,82,0,327,3, | ||
12414 | 83,0,327,3,84, | ||
12415 | 0,327,3,85,0, | ||
12416 | 327,3,86,0,327, | ||
12417 | 3,87,0,327,3, | ||
12418 | 88,0,327,3,89, | ||
12419 | 0,327,3,90,0, | ||
12420 | 327,3,95,0,327, | ||
12421 | 3,97,0,327,3, | ||
12422 | 98,0,327,3,99, | ||
12423 | 0,327,3,100,0, | ||
12424 | 327,3,101,0,990, | ||
12425 | 12,1,8157,991,5, | ||
12426 | 63,3,109,0,327, | ||
12427 | 3,110,0,327,3, | ||
12428 | 111,0,327,3,112, | ||
12429 | 0,327,3,113,0, | ||
12430 | 327,3,114,0,327, | ||
12431 | 3,115,0,327,3, | ||
12432 | 116,0,327,3,117, | ||
12433 | 0,327,3,118,0, | ||
12434 | 327,3,119,0,327, | ||
12435 | 3,120,0,327,3, | ||
12436 | 121,0,327,3,122, | ||
12437 | 0,992,12,1,8198, | ||
12438 | 993,5,63,3,109, | ||
12439 | 0,327,3,110,0, | ||
12440 | 327,3,111,0,327, | ||
12441 | 3,112,0,327,3, | ||
12442 | 113,0,327,3,114, | ||
12443 | 0,327,3,115,0, | ||
12444 | 327,3,116,0,327, | ||
12445 | 3,117,0,327,3, | ||
12446 | 118,0,327,3,119, | ||
12447 | 0,327,3,120,0, | ||
12448 | 327,3,121,0,327, | ||
12449 | 3,122,0,327,3, | ||
12450 | 48,0,327,3,49, | ||
12451 | 0,327,3,50,0, | ||
12452 | 327,3,51,0,327, | ||
12453 | 3,52,0,327,3, | ||
12454 | 53,0,327,3,54, | ||
12455 | 0,327,3,55,0, | ||
12456 | 327,3,56,0,327, | ||
12457 | 3,57,0,327,3, | ||
12458 | 65,0,327,3,66, | ||
12459 | 0,327,3,67,0, | ||
12460 | 327,3,68,0,327, | ||
12461 | 3,69,0,327,3, | ||
12462 | 70,0,327,3,71, | ||
12463 | 0,327,3,72,0, | ||
12464 | 327,3,73,0,327, | ||
12465 | 3,74,0,327,3, | ||
12466 | 75,0,327,3,76, | ||
12467 | 0,327,3,77,0, | ||
12468 | 327,3,78,0,327, | ||
12469 | 3,79,0,327,3, | ||
12470 | 80,0,327,3,81, | ||
12471 | 0,327,3,82,0, | ||
12472 | 327,3,83,0,327, | ||
12473 | 3,84,0,327,3, | ||
12474 | 85,0,327,3,86, | ||
12475 | 0,327,3,87,0, | ||
12476 | 327,3,88,0,327, | ||
12477 | 3,89,0,327,3, | ||
12478 | 90,0,327,3,95, | ||
12479 | 0,327,3,97,0, | ||
12480 | 327,3,98,0,327, | ||
12481 | 3,99,0,327,3, | ||
12482 | 100,0,327,3,101, | ||
12483 | 0,327,3,102,0, | ||
12484 | 327,3,103,0,327, | ||
12485 | 3,104,0,327,3, | ||
12486 | 105,0,327,3,106, | ||
12487 | 0,327,3,107,0, | ||
12488 | 327,3,108,0,327, | ||
12489 | 994,11,1,695,0, | ||
12490 | 995,4,24,79,0, | ||
12491 | 78,0,95,0,82, | ||
12492 | 0,69,0,90,0, | ||
12493 | 95,0,69,0,86, | ||
12494 | 0,69,0,78,0, | ||
12495 | 84,0,1,-1,3, | ||
12496 | 48,0,327,3,49, | ||
12497 | 0,327,3,50,0, | ||
12498 | 327,3,51,0,327, | ||
12499 | 3,52,0,327,3, | ||
12500 | 53,0,327,3,54, | ||
12501 | 0,327,3,55,0, | ||
12502 | 327,3,56,0,327, | ||
12503 | 3,57,0,327,3, | ||
12504 | 65,0,327,3,66, | ||
12505 | 0,327,3,67,0, | ||
12506 | 327,3,68,0,327, | ||
12507 | 3,69,0,327,3, | ||
12508 | 70,0,327,3,71, | ||
12509 | 0,327,3,72,0, | ||
12510 | 327,3,73,0,327, | ||
12511 | 3,74,0,327,3, | ||
12512 | 75,0,327,3,76, | ||
12513 | 0,327,3,77,0, | ||
12514 | 327,3,78,0,327, | ||
12515 | 3,79,0,327,3, | ||
12516 | 80,0,327,3,81, | ||
12517 | 0,327,3,82,0, | ||
12518 | 327,3,83,0,327, | ||
12519 | 3,84,0,327,3, | ||
12520 | 85,0,327,3,86, | ||
12521 | 0,327,3,87,0, | ||
12522 | 327,3,88,0,327, | ||
12523 | 3,89,0,327,3, | ||
12524 | 90,0,327,3,95, | ||
12525 | 0,327,3,97,0, | ||
12526 | 327,3,98,0,327, | ||
12527 | 3,99,0,327,3, | ||
12528 | 100,0,327,3,101, | ||
12529 | 0,327,3,102,0, | ||
12530 | 327,3,103,0,327, | ||
12531 | 3,104,0,327,3, | ||
12532 | 105,0,327,3,106, | ||
12533 | 0,327,3,107,0, | ||
12534 | 327,3,108,0,327, | ||
12535 | 996,11,1,829,0, | ||
12536 | 330,1,-1,3,102, | ||
12537 | 0,327,3,103,0, | ||
12538 | 327,3,104,0,327, | ||
12539 | 3,105,0,327,3, | ||
12540 | 106,0,327,3,107, | ||
12541 | 0,327,3,108,0, | ||
12542 | 327,997,11,1,829, | ||
12543 | 0,330,1,-1,3, | ||
12544 | 115,0,327,3,116, | ||
12545 | 0,327,3,117,0, | ||
12546 | 327,3,118,0,327, | ||
12547 | 3,119,0,327,3, | ||
12548 | 120,0,327,3,121, | ||
12549 | 0,327,3,122,0, | ||
12550 | 327,3,48,0,327, | ||
12551 | 3,49,0,327,3, | ||
12552 | 50,0,327,3,51, | ||
12553 | 0,327,3,52,0, | ||
12554 | 327,3,53,0,327, | ||
12555 | 3,54,0,327,3, | ||
12556 | 55,0,327,3,56, | ||
12557 | 0,327,3,57,0, | ||
12558 | 327,3,65,0,327, | ||
12559 | 3,66,0,327,3, | ||
12560 | 67,0,327,3,68, | ||
12561 | 0,327,3,69,0, | ||
12562 | 327,3,70,0,327, | ||
12563 | 3,71,0,327,3, | ||
12564 | 72,0,327,3,73, | ||
12565 | 0,327,3,74,0, | ||
12566 | 327,3,75,0,327, | ||
12567 | 3,76,0,327,3, | ||
12568 | 77,0,327,3,78, | ||
12569 | 0,327,3,79,0, | ||
12570 | 327,3,80,0,327, | ||
12571 | 3,81,0,327,3, | ||
12572 | 82,0,327,3,83, | ||
12573 | 0,327,3,84,0, | ||
12574 | 327,3,85,0,327, | ||
12575 | 3,86,0,327,3, | ||
12576 | 87,0,327,3,88, | ||
12577 | 0,327,3,89,0, | ||
12578 | 327,3,90,0,327, | ||
12579 | 3,95,0,327,3, | ||
12580 | 97,0,327,3,98, | ||
12581 | 0,327,3,99,0, | ||
12582 | 327,3,100,0,327, | ||
12583 | 3,101,0,327,3, | ||
12584 | 102,0,327,3,103, | ||
12585 | 0,327,3,104,0, | ||
12586 | 327,3,105,0,327, | ||
12587 | 3,106,0,327,3, | ||
12588 | 107,0,327,3,108, | ||
12589 | 0,327,998,11,1, | ||
12590 | 829,0,330,1,-1, | ||
12591 | 3,97,0,327,3, | ||
12592 | 98,0,327,3,99, | ||
12593 | 0,327,3,100,0, | ||
12594 | 327,3,101,0,327, | ||
12595 | 3,102,0,327,3, | ||
12596 | 103,0,327,3,104, | ||
12597 | 0,327,3,105,0, | ||
12598 | 327,3,106,0,327, | ||
12599 | 3,107,0,327,3, | ||
12600 | 108,0,327,999,11, | ||
12601 | 1,829,0,330,1, | ||
12602 | -1,3,111,0,327, | ||
12603 | 3,112,0,327,3, | ||
12604 | 113,0,327,3,114, | ||
12605 | 0,327,3,115,0, | ||
12606 | 327,3,116,0,327, | ||
12607 | 3,117,0,327,3, | ||
12608 | 118,0,327,3,119, | ||
12609 | 0,327,3,120,0, | ||
12610 | 327,3,121,0,327, | ||
12611 | 3,122,0,327,3, | ||
12612 | 48,0,327,3,49, | ||
12613 | 0,327,3,50,0, | ||
12614 | 327,3,51,0,327, | ||
12615 | 3,52,0,327,3, | ||
12616 | 53,0,327,3,54, | ||
12617 | 0,327,3,55,0, | ||
12618 | 327,3,56,0,327, | ||
12619 | 3,57,0,327,3, | ||
12620 | 65,0,327,3,66, | ||
12621 | 0,327,3,67,0, | ||
12622 | 327,3,68,0,327, | ||
12623 | 3,69,0,327,3, | ||
12624 | 70,0,327,3,71, | ||
12625 | 0,327,3,72,0, | ||
12626 | 327,3,73,0,327, | ||
12627 | 3,74,0,327,3, | ||
12628 | 75,0,327,3,76, | ||
12629 | 0,327,3,77,0, | ||
12630 | 327,3,78,0,327, | ||
12631 | 3,79,0,327,3, | ||
12632 | 80,0,327,3,81, | ||
12633 | 0,327,3,82,0, | ||
12634 | 327,3,83,0,327, | ||
12635 | 3,84,0,327,3, | ||
12636 | 85,0,327,3,86, | ||
12637 | 0,327,3,87,0, | ||
12638 | 327,3,88,0,327, | ||
12639 | 3,89,0,327,3, | ||
12640 | 90,0,327,3,95, | ||
12641 | 0,327,3,97,0, | ||
12642 | 327,3,98,0,1000, | ||
12643 | 12,1,8606,1001,5, | ||
12644 | 63,3,109,0,327, | ||
12645 | 3,110,0,327,3, | ||
12646 | 111,0,327,3,112, | ||
12647 | 0,327,3,113,0, | ||
12648 | 327,3,114,0,327, | ||
12649 | 3,115,0,327,3, | ||
12650 | 116,0,327,3,117, | ||
12651 | 0,327,3,118,0, | ||
12652 | 327,3,119,0,327, | ||
12653 | 3,120,0,327,3, | ||
12654 | 121,0,327,3,122, | ||
12655 | 0,327,3,48,0, | ||
12656 | 327,3,49,0,327, | ||
12657 | 3,50,0,327,3, | ||
12658 | 51,0,327,3,52, | ||
12659 | 0,327,3,53,0, | ||
12660 | 327,3,54,0,327, | ||
12661 | 3,55,0,327,3, | ||
12662 | 56,0,327,3,57, | ||
12663 | 0,327,3,65,0, | ||
12664 | 327,3,66,0,327, | ||
12665 | 3,67,0,327,3, | ||
12666 | 68,0,327,3,69, | ||
12667 | 0,327,3,70,0, | ||
12668 | 327,3,71,0,327, | ||
12669 | 3,72,0,327,3, | ||
12670 | 73,0,327,3,74, | ||
12671 | 0,327,3,75,0, | ||
12672 | 327,3,76,0,327, | ||
12673 | 3,77,0,327,3, | ||
12674 | 78,0,327,3,79, | ||
12675 | 0,327,3,80,0, | ||
12676 | 327,3,81,0,327, | ||
12677 | 3,82,0,327,3, | ||
12678 | 83,0,327,3,84, | ||
12679 | 0,327,3,85,0, | ||
12680 | 327,3,86,0,327, | ||
12681 | 3,87,0,327,3, | ||
12682 | 88,0,327,3,89, | ||
12683 | 0,327,3,90,0, | ||
12684 | 327,3,95,0,327, | ||
12685 | 3,97,0,327,3, | ||
12686 | 98,0,327,3,99, | ||
12687 | 0,327,3,100,0, | ||
12688 | 327,3,101,0,327, | ||
12689 | 3,102,0,327,3, | ||
12690 | 103,0,327,3,104, | ||
12691 | 0,327,3,105,0, | ||
12692 | 327,3,106,0,1002, | ||
12693 | 12,1,8658,1003,5, | ||
12694 | 63,3,109,0,327, | ||
12695 | 3,110,0,327,3, | ||
12696 | 111,0,327,3,112, | ||
12697 | 0,327,3,113,0, | ||
12698 | 327,3,114,0,327, | ||
12699 | 3,115,0,327,3, | ||
12700 | 116,0,327,3,117, | ||
12701 | 0,327,3,118,0, | ||
12702 | 327,3,119,0,327, | ||
12703 | 3,120,0,327,3, | ||
12704 | 121,0,327,3,122, | ||
12705 | 0,327,3,48,0, | ||
12706 | 327,3,49,0,327, | ||
12707 | 3,50,0,327,3, | ||
12708 | 51,0,327,3,52, | ||
12709 | 0,327,3,53,0, | ||
12710 | 327,3,54,0,327, | ||
12711 | 3,55,0,327,3, | ||
12712 | 56,0,327,3,57, | ||
12713 | 0,327,3,65,0, | ||
12714 | 327,3,66,0,327, | ||
12715 | 3,67,0,327,3, | ||
12716 | 68,0,327,3,69, | ||
12717 | 0,327,3,70,0, | ||
12718 | 327,3,71,0,327, | ||
12719 | 3,72,0,327,3, | ||
12720 | 73,0,327,3,74, | ||
12721 | 0,327,3,75,0, | ||
12722 | 327,3,76,0,327, | ||
12723 | 3,77,0,327,3, | ||
12724 | 78,0,327,3,79, | ||
12725 | 0,327,3,80,0, | ||
12726 | 327,3,81,0,327, | ||
12727 | 3,82,0,327,3, | ||
12728 | 83,0,327,3,84, | ||
12729 | 0,327,3,85,0, | ||
12730 | 327,3,86,0,327, | ||
12731 | 3,87,0,327,3, | ||
12732 | 88,0,327,3,89, | ||
12733 | 0,327,3,90,0, | ||
12734 | 327,3,95,0,327, | ||
12735 | 3,97,0,327,3, | ||
12736 | 98,0,327,3,99, | ||
12737 | 0,327,3,100,0, | ||
12738 | 327,3,101,0,1004, | ||
12739 | 12,1,8705,1005,5, | ||
12740 | 63,3,109,0,327, | ||
12741 | 3,110,0,327,3, | ||
12742 | 111,0,327,3,112, | ||
12743 | 0,327,3,113,0, | ||
12744 | 327,3,114,0,327, | ||
12745 | 3,115,0,327,3, | ||
12746 | 116,0,327,3,117, | ||
12747 | 0,327,3,118,0, | ||
12748 | 327,3,119,0,327, | ||
12749 | 3,120,0,327,3, | ||
12750 | 121,0,327,3,122, | ||
12751 | 0,327,3,48,0, | ||
12752 | 327,3,49,0,327, | ||
12753 | 3,50,0,327,3, | ||
12754 | 51,0,327,3,52, | ||
12755 | 0,327,3,53,0, | ||
12756 | 327,3,54,0,327, | ||
12757 | 3,55,0,327,3, | ||
12758 | 56,0,327,3,57, | ||
12759 | 0,327,3,65,0, | ||
12760 | 327,3,66,0,327, | ||
12761 | 3,67,0,327,3, | ||
12762 | 68,0,327,3,69, | ||
12763 | 0,327,3,70,0, | ||
12764 | 327,3,71,0,327, | ||
12765 | 3,72,0,327,3, | ||
12766 | 73,0,327,3,74, | ||
12767 | 0,327,3,75,0, | ||
12768 | 327,3,76,0,327, | ||
12769 | 3,77,0,327,3, | ||
12770 | 78,0,327,3,79, | ||
12771 | 0,327,3,80,0, | ||
12772 | 327,3,81,0,327, | ||
12773 | 3,82,0,327,3, | ||
12774 | 83,0,327,3,84, | ||
12775 | 0,327,3,85,0, | ||
12776 | 327,3,86,0,327, | ||
12777 | 3,87,0,327,3, | ||
12778 | 88,0,327,3,89, | ||
12779 | 0,327,3,90,0, | ||
12780 | 327,3,95,0,327, | ||
12781 | 3,97,0,327,3, | ||
12782 | 98,0,327,3,99, | ||
12783 | 0,1006,12,1,8750, | ||
12784 | 1007,5,63,3,109, | ||
12785 | 0,327,3,110,0, | ||
12786 | 327,3,111,0,327, | ||
12787 | 3,112,0,327,3, | ||
12788 | 113,0,327,3,114, | ||
12789 | 0,327,3,115,0, | ||
12790 | 327,3,116,0,1008, | ||
12791 | 12,1,8785,1009,5, | ||
12792 | 63,3,109,0,327, | ||
12793 | 3,110,0,327,3, | ||
12794 | 111,0,327,3,112, | ||
12795 | 0,327,3,113,0, | ||
12796 | 327,3,114,0,327, | ||
12797 | 3,115,0,327,3, | ||
12798 | 116,0,327,3,117, | ||
12799 | 0,327,3,118,0, | ||
12800 | 327,3,119,0,327, | ||
12801 | 3,120,0,327,3, | ||
12802 | 121,0,327,3,122, | ||
12803 | 0,327,3,48,0, | ||
12804 | 327,3,49,0,327, | ||
12805 | 3,50,0,327,3, | ||
12806 | 51,0,327,3,52, | ||
12807 | 0,327,3,53,0, | ||
12808 | 327,3,54,0,327, | ||
12809 | 3,55,0,327,3, | ||
12810 | 56,0,327,3,57, | ||
12811 | 0,327,3,65,0, | ||
12812 | 327,3,66,0,327, | ||
12813 | 3,67,0,327,3, | ||
12814 | 68,0,327,3,69, | ||
12815 | 0,327,3,70,0, | ||
12816 | 327,3,71,0,327, | ||
12817 | 3,72,0,327,3, | ||
12818 | 73,0,327,3,74, | ||
12819 | 0,327,3,75,0, | ||
12820 | 327,3,76,0,327, | ||
12821 | 3,77,0,327,3, | ||
12822 | 78,0,327,3,79, | ||
12823 | 0,327,3,80,0, | ||
12824 | 327,3,81,0,327, | ||
12825 | 3,82,0,327,3, | ||
12826 | 83,0,327,3,84, | ||
12827 | 0,327,3,85,0, | ||
12828 | 327,3,86,0,327, | ||
12829 | 3,87,0,327,3, | ||
12830 | 88,0,327,3,89, | ||
12831 | 0,327,3,90,0, | ||
12832 | 327,3,95,0,1010, | ||
12833 | 12,1,8871,1011,5, | ||
12834 | 63,3,109,0,327, | ||
12835 | 3,110,0,327,3, | ||
12836 | 111,0,327,3,112, | ||
12837 | 0,327,3,113,0, | ||
12838 | 327,3,114,0,1012, | ||
12839 | 12,1,8904,1013,5, | ||
12840 | 63,3,109,0,327, | ||
12841 | 3,110,0,327,3, | ||
12842 | 111,0,327,3,112, | ||
12843 | 0,327,3,113,0, | ||
12844 | 327,3,114,0,327, | ||
12845 | 3,115,0,327,3, | ||
12846 | 116,0,327,3,117, | ||
12847 | 0,327,3,118,0, | ||
12848 | 327,3,119,0,327, | ||
12849 | 3,120,0,327,3, | ||
12850 | 121,0,327,3,122, | ||
12851 | 0,327,3,48,0, | ||
12852 | 327,3,49,0,327, | ||
12853 | 3,50,0,327,3, | ||
12854 | 51,0,327,3,52, | ||
12855 | 0,327,3,53,0, | ||
12856 | 327,3,54,0,327, | ||
12857 | 3,55,0,327,3, | ||
12858 | 56,0,327,3,57, | ||
12859 | 0,327,3,65,0, | ||
12860 | 327,3,66,0,327, | ||
12861 | 3,67,0,327,3, | ||
12862 | 68,0,327,3,69, | ||
12863 | 0,327,3,70,0, | ||
12864 | 327,3,71,0,327, | ||
12865 | 3,72,0,327,3, | ||
12866 | 73,0,327,3,74, | ||
12867 | 0,327,3,75,0, | ||
12868 | 327,3,76,0,327, | ||
12869 | 3,77,0,327,3, | ||
12870 | 78,0,327,3,79, | ||
12871 | 0,327,3,80,0, | ||
12872 | 327,3,81,0,327, | ||
12873 | 3,82,0,327,3, | ||
12874 | 83,0,327,3,84, | ||
12875 | 0,327,3,85,0, | ||
12876 | 327,3,86,0,327, | ||
12877 | 3,87,0,327,3, | ||
12878 | 88,0,327,3,89, | ||
12879 | 0,327,3,90,0, | ||
12880 | 327,3,95,0,327, | ||
12881 | 3,97,0,327,3, | ||
12882 | 98,0,327,3,99, | ||
12883 | 0,327,3,100,0, | ||
12884 | 327,3,101,0,1014, | ||
12885 | 12,1,8951,1015,5, | ||
12886 | 63,3,109,0,327, | ||
12887 | 3,110,0,327,3, | ||
12888 | 111,0,327,3,112, | ||
12889 | 0,327,3,113,0, | ||
12890 | 327,3,114,0,327, | ||
12891 | 3,115,0,327,3, | ||
12892 | 116,0,327,3,117, | ||
12893 | 0,327,3,118,0, | ||
12894 | 327,3,119,0,327, | ||
12895 | 3,120,0,327,3, | ||
12896 | 121,0,327,3,122, | ||
12897 | 0,1016,12,1,8992, | ||
12898 | 1017,5,63,3,109, | ||
12899 | 0,327,3,110,0, | ||
12900 | 327,3,111,0,327, | ||
12901 | 3,112,0,327,3, | ||
12902 | 113,0,327,3,114, | ||
12903 | 0,327,3,115,0, | ||
12904 | 327,3,116,0,327, | ||
12905 | 3,117,0,327,3, | ||
12906 | 118,0,327,3,119, | ||
12907 | 0,327,3,120,0, | ||
12908 | 327,3,121,0,327, | ||
12909 | 3,122,0,327,3, | ||
12910 | 48,0,327,3,49, | ||
12911 | 0,327,3,50,0, | ||
12912 | 327,3,51,0,327, | ||
12913 | 3,52,0,327,3, | ||
12914 | 53,0,327,3,54, | ||
12915 | 0,327,3,55,0, | ||
12916 | 327,3,56,0,327, | ||
12917 | 3,57,0,327,3, | ||
12918 | 65,0,327,3,66, | ||
12919 | 0,327,3,67,0, | ||
12920 | 327,3,68,0,327, | ||
12921 | 3,69,0,327,3, | ||
12922 | 70,0,327,3,71, | ||
12923 | 0,327,3,72,0, | ||
12924 | 327,3,73,0,327, | ||
12925 | 3,74,0,327,3, | ||
12926 | 75,0,327,3,76, | ||
12927 | 0,327,3,77,0, | ||
12928 | 327,3,78,0,327, | ||
12929 | 3,79,0,327,3, | ||
12930 | 80,0,327,3,81, | ||
12931 | 0,327,3,82,0, | ||
12932 | 327,3,83,0,327, | ||
12933 | 3,84,0,327,3, | ||
12934 | 85,0,327,3,86, | ||
12935 | 0,327,3,87,0, | ||
12936 | 327,3,88,0,327, | ||
12937 | 3,89,0,327,3, | ||
12938 | 90,0,327,3,95, | ||
12939 | 0,327,3,97,0, | ||
12940 | 327,3,98,0,327, | ||
12941 | 3,99,0,327,3, | ||
12942 | 100,0,327,3,101, | ||
12943 | 0,327,3,102,0, | ||
12944 | 327,3,103,0,327, | ||
12945 | 3,104,0,327,3, | ||
12946 | 105,0,327,3,106, | ||
12947 | 0,327,3,107,0, | ||
12948 | 327,3,108,0,327, | ||
12949 | 1018,11,1,681,0, | ||
12950 | 1019,4,32,79,0, | ||
12951 | 66,0,74,0,69, | ||
12952 | 0,67,0,84,0, | ||
12953 | 95,0,82,0,69, | ||
12954 | 0,90,0,95,0, | ||
12955 | 69,0,86,0,69, | ||
12956 | 0,78,0,84,0, | ||
12957 | 1,-1,3,48,0, | ||
12958 | 327,3,49,0,327, | ||
12959 | 3,50,0,327,3, | ||
12960 | 51,0,327,3,52, | ||
12961 | 0,327,3,53,0, | ||
12962 | 327,3,54,0,327, | ||
12963 | 3,55,0,327,3, | ||
12964 | 56,0,327,3,57, | ||
12965 | 0,327,3,65,0, | ||
12966 | 327,3,66,0,327, | ||
12967 | 3,67,0,327,3, | ||
12968 | 68,0,327,3,69, | ||
12969 | 0,327,3,70,0, | ||
12970 | 327,3,71,0,327, | ||
12971 | 3,72,0,327,3, | ||
12972 | 73,0,327,3,74, | ||
12973 | 0,327,3,75,0, | ||
12974 | 327,3,76,0,327, | ||
12975 | 3,77,0,327,3, | ||
12976 | 78,0,327,3,79, | ||
12977 | 0,327,3,80,0, | ||
12978 | 327,3,81,0,327, | ||
12979 | 3,82,0,327,3, | ||
12980 | 83,0,327,3,84, | ||
12981 | 0,327,3,85,0, | ||
12982 | 327,3,86,0,327, | ||
12983 | 3,87,0,327,3, | ||
12984 | 88,0,327,3,89, | ||
12985 | 0,327,3,90,0, | ||
12986 | 327,3,95,0,327, | ||
12987 | 3,97,0,327,3, | ||
12988 | 98,0,327,3,99, | ||
12989 | 0,327,3,100,0, | ||
12990 | 327,3,101,0,327, | ||
12991 | 3,102,0,327,3, | ||
12992 | 103,0,327,3,104, | ||
12993 | 0,327,3,105,0, | ||
12994 | 327,3,106,0,327, | ||
12995 | 3,107,0,327,3, | ||
12996 | 108,0,327,1020,11, | ||
12997 | 1,829,0,330,1, | ||
12998 | -1,3,102,0,327, | ||
12999 | 3,103,0,327,3, | ||
13000 | 104,0,327,3,105, | ||
13001 | 0,327,3,106,0, | ||
13002 | 327,3,107,0,327, | ||
13003 | 3,108,0,327,1021, | ||
13004 | 11,1,829,0,330, | ||
13005 | 1,-1,3,115,0, | ||
13006 | 327,3,116,0,327, | ||
13007 | 3,117,0,327,3, | ||
13008 | 118,0,327,3,119, | ||
13009 | 0,327,3,120,0, | ||
13010 | 327,3,121,0,327, | ||
13011 | 3,122,0,327,3, | ||
13012 | 48,0,327,3,49, | ||
13013 | 0,327,3,50,0, | ||
13014 | 327,3,51,0,327, | ||
13015 | 3,52,0,327,3, | ||
13016 | 53,0,327,3,54, | ||
13017 | 0,327,3,55,0, | ||
13018 | 327,3,56,0,327, | ||
13019 | 3,57,0,327,3, | ||
13020 | 65,0,327,3,66, | ||
13021 | 0,327,3,67,0, | ||
13022 | 327,3,68,0,327, | ||
13023 | 3,69,0,327,3, | ||
13024 | 70,0,327,3,71, | ||
13025 | 0,327,3,72,0, | ||
13026 | 327,3,73,0,327, | ||
13027 | 3,74,0,327,3, | ||
13028 | 75,0,327,3,76, | ||
13029 | 0,327,3,77,0, | ||
13030 | 327,3,78,0,327, | ||
13031 | 3,79,0,327,3, | ||
13032 | 80,0,327,3,81, | ||
13033 | 0,327,3,82,0, | ||
13034 | 327,3,83,0,327, | ||
13035 | 3,84,0,327,3, | ||
13036 | 85,0,327,3,86, | ||
13037 | 0,327,3,87,0, | ||
13038 | 327,3,88,0,327, | ||
13039 | 3,89,0,327,3, | ||
13040 | 90,0,327,3,95, | ||
13041 | 0,327,3,97,0, | ||
13042 | 327,3,98,0,327, | ||
13043 | 3,99,0,327,3, | ||
13044 | 100,0,327,3,101, | ||
13045 | 0,327,3,102,0, | ||
13046 | 327,3,103,0,327, | ||
13047 | 3,104,0,327,3, | ||
13048 | 105,0,327,3,106, | ||
13049 | 0,327,3,107,0, | ||
13050 | 327,3,108,0,327, | ||
13051 | 1022,11,1,829,0, | ||
13052 | 330,1,-1,3,97, | ||
13053 | 0,327,3,98,0, | ||
13054 | 327,3,99,0,327, | ||
13055 | 3,100,0,327,3, | ||
13056 | 101,0,327,3,102, | ||
13057 | 0,327,3,103,0, | ||
13058 | 327,3,104,0,327, | ||
13059 | 3,105,0,327,3, | ||
13060 | 106,0,327,3,107, | ||
13061 | 0,327,3,108,0, | ||
13062 | 327,1023,11,1,829, | ||
13063 | 0,330,1,-1,3, | ||
13064 | 117,0,327,3,118, | ||
13065 | 0,327,3,119,0, | ||
13066 | 327,3,120,0,327, | ||
13067 | 3,121,0,327,3, | ||
13068 | 122,0,327,3,48, | ||
13069 | 0,327,3,49,0, | ||
13070 | 327,3,50,0,327, | ||
13071 | 3,51,0,327,3, | ||
13072 | 52,0,327,3,53, | ||
13073 | 0,327,3,54,0, | ||
13074 | 327,3,55,0,327, | ||
13075 | 3,56,0,327,3, | ||
13076 | 57,0,327,3,65, | ||
13077 | 0,327,3,66,0, | ||
13078 | 327,3,67,0,327, | ||
13079 | 3,68,0,327,3, | ||
13080 | 69,0,327,3,70, | ||
13081 | 0,327,3,71,0, | ||
13082 | 327,3,72,0,327, | ||
13083 | 3,73,0,327,3, | ||
13084 | 74,0,327,3,75, | ||
13085 | 0,327,3,76,0, | ||
13086 | 327,3,77,0,327, | ||
13087 | 3,78,0,327,3, | ||
13088 | 79,0,327,3,80, | ||
13089 | 0,327,3,81,0, | ||
13090 | 327,3,82,0,327, | ||
13091 | 3,83,0,327,3, | ||
13092 | 84,0,327,3,85, | ||
13093 | 0,327,3,86,0, | ||
13094 | 327,3,87,0,327, | ||
13095 | 3,88,0,327,3, | ||
13096 | 89,0,327,3,90, | ||
13097 | 0,327,3,95,0, | ||
13098 | 327,3,97,0,327, | ||
13099 | 3,98,0,327,3, | ||
13100 | 99,0,327,3,100, | ||
13101 | 0,327,3,101,0, | ||
13102 | 327,3,102,0,327, | ||
13103 | 3,103,0,327,3, | ||
13104 | 104,0,327,3,105, | ||
13105 | 0,327,3,106,0, | ||
13106 | 327,3,107,0,327, | ||
13107 | 3,108,0,327,1024, | ||
13108 | 11,1,829,0,330, | ||
13109 | 1,-1,3,100,0, | ||
13110 | 327,3,101,0,327, | ||
13111 | 3,102,0,327,3, | ||
13112 | 103,0,327,3,104, | ||
13113 | 0,327,3,105,0, | ||
13114 | 327,3,106,0,327, | ||
13115 | 3,107,0,327,3, | ||
13116 | 108,0,327,1025,11, | ||
13117 | 1,829,0,330,1, | ||
13118 | -1,3,102,0,327, | ||
13119 | 3,103,0,327,3, | ||
13120 | 104,0,327,3,105, | ||
13121 | 0,327,3,106,0, | ||
13122 | 327,3,107,0,327, | ||
13123 | 3,108,0,327,1026, | ||
13124 | 11,1,829,0,330, | ||
13125 | 1,-1,3,107,0, | ||
13126 | 327,3,108,0,327, | ||
13127 | 1027,11,1,829,0, | ||
13128 | 330,1,-1,3,99, | ||
13129 | 0,327,3,100,0, | ||
13130 | 327,3,101,0,327, | ||
13131 | 3,102,0,327,3, | ||
13132 | 103,0,327,3,104, | ||
13133 | 0,327,3,105,0, | ||
13134 | 327,3,106,0,327, | ||
13135 | 3,107,0,327,3, | ||
13136 | 108,0,327,1028,11, | ||
13137 | 1,829,0,330,1, | ||
13138 | -1,3,112,0,325, | ||
13139 | 3,113,0,325,3, | ||
13140 | 114,0,1029,12,1, | ||
13141 | 9765,1030,5,63,3, | ||
13142 | 109,0,327,3,110, | ||
13143 | 0,327,3,111,0, | ||
13144 | 1031,12,1,9795,1032, | ||
13145 | 5,63,3,109,0, | ||
13146 | 327,3,110,0,327, | ||
13147 | 3,111,0,327,3, | ||
13148 | 112,0,327,3,113, | ||
13149 | 0,327,3,114,0, | ||
13150 | 327,3,115,0,327, | ||
13151 | 3,116,0,1033,12, | ||
13152 | 1,9830,1034,5,63, | ||
13153 | 3,109,0,327,3, | ||
13154 | 110,0,327,3,111, | ||
13155 | 0,327,3,112,0, | ||
13156 | 327,3,113,0,327, | ||
13157 | 3,114,0,327,3, | ||
13158 | 115,0,327,3,116, | ||
13159 | 0,327,3,117,0, | ||
13160 | 327,3,118,0,327, | ||
13161 | 3,119,0,327,3, | ||
13162 | 120,0,327,3,121, | ||
13163 | 0,327,3,122,0, | ||
13164 | 327,3,48,0,327, | ||
13165 | 3,49,0,327,3, | ||
13166 | 50,0,327,3,51, | ||
13167 | 0,327,3,52,0, | ||
13168 | 327,3,53,0,327, | ||
13169 | 3,54,0,327,3, | ||
13170 | 55,0,327,3,56, | ||
13171 | 0,327,3,57,0, | ||
13172 | 327,3,65,0,327, | ||
13173 | 3,66,0,327,3, | ||
13174 | 67,0,327,3,68, | ||
13175 | 0,327,3,69,0, | ||
13176 | 327,3,70,0,327, | ||
13177 | 3,71,0,327,3, | ||
13178 | 72,0,327,3,73, | ||
13179 | 0,327,3,74,0, | ||
13180 | 327,3,75,0,327, | ||
13181 | 3,76,0,327,3, | ||
13182 | 77,0,327,3,78, | ||
13183 | 0,327,3,79,0, | ||
13184 | 327,3,80,0,327, | ||
13185 | 3,81,0,327,3, | ||
13186 | 82,0,327,3,83, | ||
13187 | 0,327,3,84,0, | ||
13188 | 327,3,85,0,327, | ||
13189 | 3,86,0,327,3, | ||
13190 | 87,0,327,3,88, | ||
13191 | 0,327,3,89,0, | ||
13192 | 327,3,90,0,327, | ||
13193 | 3,95,0,327,3, | ||
13194 | 97,0,1035,12,1, | ||
13195 | 9873,1036,5,63,3, | ||
13196 | 109,0,327,3,110, | ||
13197 | 0,327,3,111,0, | ||
13198 | 327,3,112,0,327, | ||
13199 | 3,113,0,327,3, | ||
13200 | 114,0,327,3,115, | ||
13201 | 0,327,3,116,0, | ||
13202 | 1037,12,1,9908,1038, | ||
13203 | 5,63,3,109,0, | ||
13204 | 327,3,110,0,327, | ||
13205 | 3,111,0,327,3, | ||
13206 | 112,0,327,3,113, | ||
13207 | 0,327,3,114,0, | ||
13208 | 327,3,115,0,327, | ||
13209 | 3,116,0,327,3, | ||
13210 | 117,0,327,3,118, | ||
13211 | 0,327,3,119,0, | ||
13212 | 327,3,120,0,327, | ||
13213 | 3,121,0,327,3, | ||
13214 | 122,0,327,3,48, | ||
13215 | 0,327,3,49,0, | ||
13216 | 327,3,50,0,327, | ||
13217 | 3,51,0,327,3, | ||
13218 | 52,0,327,3,53, | ||
13219 | 0,327,3,54,0, | ||
13220 | 327,3,55,0,327, | ||
13221 | 3,56,0,327,3, | ||
13222 | 57,0,327,3,65, | ||
13223 | 0,327,3,66,0, | ||
13224 | 327,3,67,0,327, | ||
13225 | 3,68,0,327,3, | ||
13226 | 69,0,327,3,70, | ||
13227 | 0,327,3,71,0, | ||
13228 | 327,3,72,0,327, | ||
13229 | 3,73,0,327,3, | ||
13230 | 74,0,327,3,75, | ||
13231 | 0,327,3,76,0, | ||
13232 | 327,3,77,0,327, | ||
13233 | 3,78,0,327,3, | ||
13234 | 79,0,327,3,80, | ||
13235 | 0,327,3,81,0, | ||
13236 | 327,3,82,0,327, | ||
13237 | 3,83,0,327,3, | ||
13238 | 84,0,327,3,85, | ||
13239 | 0,327,3,86,0, | ||
13240 | 327,3,87,0,327, | ||
13241 | 3,88,0,327,3, | ||
13242 | 89,0,327,3,90, | ||
13243 | 0,327,3,95,0, | ||
13244 | 327,3,97,0,327, | ||
13245 | 3,98,0,327,3, | ||
13246 | 99,0,327,3,100, | ||
13247 | 0,327,3,101,0, | ||
13248 | 327,3,102,0,327, | ||
13249 | 3,103,0,327,3, | ||
13250 | 104,0,327,3,105, | ||
13251 | 0,1039,12,1,9959, | ||
13252 | 1040,5,63,3,109, | ||
13253 | 0,327,3,110,0, | ||
13254 | 327,3,111,0,1041, | ||
13255 | 12,1,9989,1042,5, | ||
13256 | 63,3,109,0,327, | ||
13257 | 3,110,0,1043,12, | ||
13258 | 1,10018,1044,5,63, | ||
13259 | 3,109,0,327,3, | ||
13260 | 110,0,327,3,111, | ||
13261 | 0,327,3,112,0, | ||
13262 | 327,3,113,0,327, | ||
13263 | 3,114,0,327,3, | ||
13264 | 115,0,327,3,116, | ||
13265 | 0,327,3,117,0, | ||
13266 | 327,3,118,0,327, | ||
13267 | 3,119,0,327,3, | ||
13268 | 120,0,327,3,121, | ||
13269 | 0,327,3,122,0, | ||
13270 | 327,3,48,0,327, | ||
13271 | 3,49,0,327,3, | ||
13272 | 50,0,327,3,51, | ||
13273 | 0,327,3,52,0, | ||
13274 | 327,3,53,0,327, | ||
13275 | 3,54,0,327,3, | ||
13276 | 55,0,327,3,56, | ||
13277 | 0,327,3,57,0, | ||
13278 | 327,3,65,0,327, | ||
13279 | 3,66,0,327,3, | ||
13280 | 67,0,327,3,68, | ||
13281 | 0,327,3,69,0, | ||
13282 | 327,3,70,0,327, | ||
13283 | 3,71,0,327,3, | ||
13284 | 72,0,327,3,73, | ||
13285 | 0,327,3,74,0, | ||
13286 | 327,3,75,0,327, | ||
13287 | 3,76,0,327,3, | ||
13288 | 77,0,327,3,78, | ||
13289 | 0,327,3,79,0, | ||
13290 | 327,3,80,0,327, | ||
13291 | 3,81,0,327,3, | ||
13292 | 82,0,327,3,83, | ||
13293 | 0,327,3,84,0, | ||
13294 | 327,3,85,0,327, | ||
13295 | 3,86,0,327,3, | ||
13296 | 87,0,327,3,88, | ||
13297 | 0,327,3,89,0, | ||
13298 | 327,3,90,0,327, | ||
13299 | 3,95,0,327,3, | ||
13300 | 97,0,327,3,98, | ||
13301 | 0,327,3,99,0, | ||
13302 | 327,3,100,0,327, | ||
13303 | 3,101,0,327,3, | ||
13304 | 102,0,327,3,103, | ||
13305 | 0,327,3,104,0, | ||
13306 | 327,3,105,0,327, | ||
13307 | 3,106,0,327,3, | ||
13308 | 107,0,327,3,108, | ||
13309 | 0,327,1045,11,1, | ||
13310 | 330,0,1046,4,26, | ||
13311 | 82,0,79,0,84, | ||
13312 | 0,65,0,84,0, | ||
13313 | 73,0,79,0,78, | ||
13314 | 0,95,0,84,0, | ||
13315 | 89,0,80,0,69, | ||
13316 | 0,1,-1,3,111, | ||
13317 | 0,327,3,112,0, | ||
13318 | 327,3,113,0,327, | ||
13319 | 3,114,0,327,3, | ||
13320 | 115,0,327,3,116, | ||
13321 | 0,327,3,117,0, | ||
13322 | 327,3,118,0,327, | ||
13323 | 3,119,0,327,3, | ||
13324 | 120,0,327,3,121, | ||
13325 | 0,327,3,122,0, | ||
13326 | 327,3,48,0,327, | ||
13327 | 3,49,0,327,3, | ||
13328 | 50,0,327,3,51, | ||
13329 | 0,327,3,52,0, | ||
13330 | 327,3,53,0,327, | ||
13331 | 3,54,0,327,3, | ||
13332 | 55,0,327,3,56, | ||
13333 | 0,327,3,57,0, | ||
13334 | 327,3,65,0,327, | ||
13335 | 3,66,0,327,3, | ||
13336 | 67,0,327,3,68, | ||
13337 | 0,327,3,69,0, | ||
13338 | 327,3,70,0,327, | ||
13339 | 3,71,0,327,3, | ||
13340 | 72,0,327,3,73, | ||
13341 | 0,327,3,74,0, | ||
13342 | 327,3,75,0,327, | ||
13343 | 3,76,0,327,3, | ||
13344 | 77,0,327,3,78, | ||
13345 | 0,327,3,79,0, | ||
13346 | 327,3,80,0,327, | ||
13347 | 3,81,0,327,3, | ||
13348 | 82,0,327,3,83, | ||
13349 | 0,327,3,84,0, | ||
13350 | 327,3,85,0,327, | ||
13351 | 3,86,0,327,3, | ||
13352 | 87,0,327,3,88, | ||
13353 | 0,327,3,89,0, | ||
13354 | 327,3,90,0,327, | ||
13355 | 3,95,0,327,3, | ||
13356 | 97,0,327,3,98, | ||
13357 | 0,327,3,99,0, | ||
13358 | 327,3,100,0,327, | ||
13359 | 3,101,0,327,3, | ||
13360 | 102,0,327,3,103, | ||
13361 | 0,327,3,104,0, | ||
13362 | 327,3,105,0,327, | ||
13363 | 3,106,0,327,3, | ||
13364 | 107,0,327,3,108, | ||
13365 | 0,327,1047,11,1, | ||
13366 | 829,0,330,1,-1, | ||
13367 | 3,112,0,327,3, | ||
13368 | 113,0,327,3,114, | ||
13369 | 0,327,3,115,0, | ||
13370 | 327,3,116,0,327, | ||
13371 | 3,117,0,327,3, | ||
13372 | 118,0,327,3,119, | ||
13373 | 0,327,3,120,0, | ||
13374 | 327,3,121,0,327, | ||
13375 | 3,122,0,327,3, | ||
13376 | 48,0,327,3,49, | ||
13377 | 0,327,3,50,0, | ||
13378 | 327,3,51,0,327, | ||
13379 | 3,52,0,327,3, | ||
13380 | 53,0,327,3,54, | ||
13381 | 0,327,3,55,0, | ||
13382 | 327,3,56,0,327, | ||
13383 | 3,57,0,327,3, | ||
13384 | 65,0,327,3,66, | ||
13385 | 0,327,3,67,0, | ||
13386 | 327,3,68,0,327, | ||
13387 | 3,69,0,327,3, | ||
13388 | 70,0,327,3,71, | ||
13389 | 0,327,3,72,0, | ||
13390 | 327,3,73,0,327, | ||
13391 | 3,74,0,327,3, | ||
13392 | 75,0,327,3,76, | ||
13393 | 0,327,3,77,0, | ||
13394 | 327,3,78,0,327, | ||
13395 | 3,79,0,327,3, | ||
13396 | 80,0,327,3,81, | ||
13397 | 0,327,3,82,0, | ||
13398 | 327,3,83,0,327, | ||
13399 | 3,84,0,327,3, | ||
13400 | 85,0,327,3,86, | ||
13401 | 0,327,3,87,0, | ||
13402 | 327,3,88,0,327, | ||
13403 | 3,89,0,327,3, | ||
13404 | 90,0,327,3,95, | ||
13405 | 0,327,3,97,0, | ||
13406 | 327,3,98,0,327, | ||
13407 | 3,99,0,327,3, | ||
13408 | 100,0,327,3,101, | ||
13409 | 0,327,3,102,0, | ||
13410 | 327,3,103,0,327, | ||
13411 | 3,104,0,327,3, | ||
13412 | 105,0,327,3,106, | ||
13413 | 0,327,3,107,0, | ||
13414 | 327,3,108,0,327, | ||
13415 | 1048,11,1,829,0, | ||
13416 | 330,1,-1,3,106, | ||
13417 | 0,327,3,107,0, | ||
13418 | 327,3,108,0,327, | ||
13419 | 1049,11,1,829,0, | ||
13420 | 330,1,-1,3,117, | ||
13421 | 0,327,3,118,0, | ||
13422 | 327,3,119,0,327, | ||
13423 | 3,120,0,327,3, | ||
13424 | 121,0,327,3,122, | ||
13425 | 0,327,3,48,0, | ||
13426 | 327,3,49,0,327, | ||
13427 | 3,50,0,327,3, | ||
13428 | 51,0,327,3,52, | ||
13429 | 0,327,3,53,0, | ||
13430 | 327,3,54,0,327, | ||
13431 | 3,55,0,327,3, | ||
13432 | 56,0,327,3,57, | ||
13433 | 0,327,3,65,0, | ||
13434 | 327,3,66,0,327, | ||
13435 | 3,67,0,327,3, | ||
13436 | 68,0,327,3,69, | ||
13437 | 0,327,3,70,0, | ||
13438 | 327,3,71,0,327, | ||
13439 | 3,72,0,327,3, | ||
13440 | 73,0,327,3,74, | ||
13441 | 0,327,3,75,0, | ||
13442 | 327,3,76,0,327, | ||
13443 | 3,77,0,327,3, | ||
13444 | 78,0,327,3,79, | ||
13445 | 0,327,3,80,0, | ||
13446 | 327,3,81,0,327, | ||
13447 | 3,82,0,327,3, | ||
13448 | 83,0,327,3,84, | ||
13449 | 0,327,3,85,0, | ||
13450 | 327,3,86,0,327, | ||
13451 | 3,87,0,327,3, | ||
13452 | 88,0,327,3,89, | ||
13453 | 0,327,3,90,0, | ||
13454 | 327,3,95,0,327, | ||
13455 | 3,97,0,327,3, | ||
13456 | 98,0,327,3,99, | ||
13457 | 0,327,3,100,0, | ||
13458 | 327,3,101,0,327, | ||
13459 | 3,102,0,327,3, | ||
13460 | 103,0,327,3,104, | ||
13461 | 0,327,3,105,0, | ||
13462 | 327,3,106,0,327, | ||
13463 | 3,107,0,327,3, | ||
13464 | 108,0,327,1050,11, | ||
13465 | 1,829,0,330,1, | ||
13466 | -1,3,98,0,327, | ||
13467 | 3,99,0,327,3, | ||
13468 | 100,0,327,3,101, | ||
13469 | 0,327,3,102,0, | ||
13470 | 327,3,103,0,327, | ||
13471 | 3,104,0,327,3, | ||
13472 | 105,0,327,3,106, | ||
13473 | 0,327,3,107,0, | ||
13474 | 327,3,108,0,327, | ||
13475 | 1051,11,1,829,0, | ||
13476 | 330,1,-1,3,117, | ||
13477 | 0,327,3,118,0, | ||
13478 | 327,3,119,0,327, | ||
13479 | 3,120,0,327,3, | ||
13480 | 121,0,327,3,122, | ||
13481 | 0,327,3,48,0, | ||
13482 | 327,3,49,0,327, | ||
13483 | 3,50,0,327,3, | ||
13484 | 51,0,327,3,52, | ||
13485 | 0,327,3,53,0, | ||
13486 | 327,3,54,0,327, | ||
13487 | 3,55,0,327,3, | ||
13488 | 56,0,327,3,57, | ||
13489 | 0,327,3,65,0, | ||
13490 | 327,3,66,0,327, | ||
13491 | 3,67,0,327,3, | ||
13492 | 68,0,327,3,69, | ||
13493 | 0,327,3,70,0, | ||
13494 | 327,3,71,0,327, | ||
13495 | 3,72,0,327,3, | ||
13496 | 73,0,327,3,74, | ||
13497 | 0,327,3,75,0, | ||
13498 | 327,3,76,0,327, | ||
13499 | 3,77,0,327,3, | ||
13500 | 78,0,327,3,79, | ||
13501 | 0,327,3,80,0, | ||
13502 | 327,3,81,0,327, | ||
13503 | 3,82,0,327,3, | ||
13504 | 83,0,327,3,84, | ||
13505 | 0,327,3,85,0, | ||
13506 | 327,3,86,0,327, | ||
13507 | 3,87,0,327,3, | ||
13508 | 88,0,327,3,89, | ||
13509 | 0,327,3,90,0, | ||
13510 | 327,3,95,0,327, | ||
13511 | 3,97,0,327,3, | ||
13512 | 98,0,327,3,99, | ||
13513 | 0,327,3,100,0, | ||
13514 | 327,3,101,0,327, | ||
13515 | 3,102,0,327,3, | ||
13516 | 103,0,327,3,104, | ||
13517 | 0,327,3,105,0, | ||
13518 | 327,3,106,0,327, | ||
13519 | 3,107,0,327,3, | ||
13520 | 108,0,327,1052,11, | ||
13521 | 1,829,0,330,1, | ||
13522 | -1,3,112,0,327, | ||
13523 | 3,113,0,327,3, | ||
13524 | 114,0,327,3,115, | ||
13525 | 0,327,3,116,0, | ||
13526 | 327,3,117,0,1053, | ||
13527 | 12,1,10641,1054,5, | ||
13528 | 63,3,109,0,327, | ||
13529 | 3,110,0,1055,12, | ||
13530 | 1,10670,1056,5,63, | ||
13531 | 3,109,0,327,3, | ||
13532 | 110,0,327,3,111, | ||
13533 | 0,327,3,112,0, | ||
13534 | 327,3,113,0,327, | ||
13535 | 3,114,0,327,3, | ||
13536 | 115,0,327,3,116, | ||
13537 | 0,327,3,117,0, | ||
13538 | 327,3,118,0,327, | ||
13539 | 3,119,0,327,3, | ||
13540 | 120,0,327,3,121, | ||
13541 | 0,327,3,122,0, | ||
13542 | 327,3,48,0,327, | ||
13543 | 3,49,0,327,3, | ||
13544 | 50,0,327,3,51, | ||
13545 | 0,327,3,52,0, | ||
13546 | 327,3,53,0,327, | ||
13547 | 3,54,0,327,3, | ||
13548 | 55,0,327,3,56, | ||
13549 | 0,327,3,57,0, | ||
13550 | 327,3,65,0,327, | ||
13551 | 3,66,0,327,3, | ||
13552 | 67,0,327,3,68, | ||
13553 | 0,327,3,69,0, | ||
13554 | 327,3,70,0,327, | ||
13555 | 3,71,0,327,3, | ||
13556 | 72,0,327,3,73, | ||
13557 | 0,327,3,74,0, | ||
13558 | 327,3,75,0,327, | ||
13559 | 3,76,0,327,3, | ||
13560 | 77,0,327,3,78, | ||
13561 | 0,327,3,79,0, | ||
13562 | 327,3,80,0,327, | ||
13563 | 3,81,0,327,3, | ||
13564 | 82,0,327,3,83, | ||
13565 | 0,327,3,84,0, | ||
13566 | 327,3,85,0,327, | ||
13567 | 3,86,0,327,3, | ||
13568 | 87,0,327,3,88, | ||
13569 | 0,327,3,89,0, | ||
13570 | 327,3,90,0,327, | ||
13571 | 3,95,0,1057,12, | ||
13572 | 1,10756,1058,5,63, | ||
13573 | 3,109,0,327,3, | ||
13574 | 110,0,327,3,111, | ||
13575 | 0,327,3,112,0, | ||
13576 | 327,3,113,0,327, | ||
13577 | 3,114,0,327,3, | ||
13578 | 115,0,327,3,116, | ||
13579 | 0,1059,12,1,10791, | ||
13580 | 1060,5,63,3,109, | ||
13581 | 0,327,3,110,0, | ||
13582 | 327,3,111,0,327, | ||
13583 | 3,112,0,327,3, | ||
13584 | 113,0,327,3,114, | ||
13585 | 0,327,3,115,0, | ||
13586 | 327,3,116,0,327, | ||
13587 | 3,117,0,327,3, | ||
13588 | 118,0,327,3,119, | ||
13589 | 0,327,3,120,0, | ||
13590 | 327,3,121,0,327, | ||
13591 | 3,122,0,327,3, | ||
13592 | 48,0,327,3,49, | ||
13593 | 0,327,3,50,0, | ||
13594 | 327,3,51,0,327, | ||
13595 | 3,52,0,327,3, | ||
13596 | 53,0,327,3,54, | ||
13597 | 0,327,3,55,0, | ||
13598 | 327,3,56,0,327, | ||
13599 | 3,57,0,327,3, | ||
13600 | 65,0,327,3,66, | ||
13601 | 0,327,3,67,0, | ||
13602 | 327,3,68,0,327, | ||
13603 | 3,69,0,327,3, | ||
13604 | 70,0,327,3,71, | ||
13605 | 0,327,3,72,0, | ||
13606 | 327,3,73,0,327, | ||
13607 | 3,74,0,327,3, | ||
13608 | 75,0,327,3,76, | ||
13609 | 0,327,3,77,0, | ||
13610 | 327,3,78,0,327, | ||
13611 | 3,79,0,327,3, | ||
13612 | 80,0,327,3,81, | ||
13613 | 0,327,3,82,0, | ||
13614 | 327,3,83,0,327, | ||
13615 | 3,84,0,327,3, | ||
13616 | 85,0,327,3,86, | ||
13617 | 0,327,3,87,0, | ||
13618 | 327,3,88,0,327, | ||
13619 | 3,89,0,327,3, | ||
13620 | 90,0,327,3,95, | ||
13621 | 0,327,3,97,0, | ||
13622 | 327,3,98,0,327, | ||
13623 | 3,99,0,327,3, | ||
13624 | 100,0,327,3,101, | ||
13625 | 0,327,3,102,0, | ||
13626 | 327,3,103,0,327, | ||
13627 | 3,104,0,327,3, | ||
13628 | 105,0,1061,12,1, | ||
13629 | 10842,1062,5,63,3, | ||
13630 | 109,0,1063,12,1, | ||
13631 | 10870,1064,5,63,3, | ||
13632 | 109,0,327,3,110, | ||
13633 | 0,327,3,111,0, | ||
13634 | 327,3,112,0,327, | ||
13635 | 3,113,0,327,3, | ||
13636 | 114,0,327,3,115, | ||
13637 | 0,327,3,116,0, | ||
13638 | 327,3,117,0,327, | ||
13639 | 3,118,0,327,3, | ||
13640 | 119,0,327,3,120, | ||
13641 | 0,327,3,121,0, | ||
13642 | 327,3,122,0,327, | ||
13643 | 3,48,0,327,3, | ||
13644 | 49,0,327,3,50, | ||
13645 | 0,327,3,51,0, | ||
13646 | 327,3,52,0,327, | ||
13647 | 3,53,0,327,3, | ||
13648 | 54,0,327,3,55, | ||
13649 | 0,327,3,56,0, | ||
13650 | 327,3,57,0,327, | ||
13651 | 3,65,0,327,3, | ||
13652 | 66,0,327,3,67, | ||
13653 | 0,327,3,68,0, | ||
13654 | 327,3,69,0,327, | ||
13655 | 3,70,0,327,3, | ||
13656 | 71,0,327,3,72, | ||
13657 | 0,327,3,73,0, | ||
13658 | 327,3,74,0,327, | ||
13659 | 3,75,0,327,3, | ||
13660 | 76,0,327,3,77, | ||
13661 | 0,327,3,78,0, | ||
13662 | 327,3,79,0,327, | ||
13663 | 3,80,0,327,3, | ||
13664 | 81,0,327,3,82, | ||
13665 | 0,327,3,83,0, | ||
13666 | 327,3,84,0,327, | ||
13667 | 3,85,0,327,3, | ||
13668 | 86,0,327,3,87, | ||
13669 | 0,327,3,88,0, | ||
13670 | 327,3,89,0,327, | ||
13671 | 3,90,0,327,3, | ||
13672 | 95,0,327,3,97, | ||
13673 | 0,327,3,98,0, | ||
13674 | 327,3,99,0,327, | ||
13675 | 3,100,0,327,3, | ||
13676 | 101,0,1065,12,1, | ||
13677 | 10917,1066,5,63,3, | ||
13678 | 109,0,327,3,110, | ||
13679 | 0,327,3,111,0, | ||
13680 | 327,3,112,0,327, | ||
13681 | 3,113,0,327,3, | ||
13682 | 114,0,327,3,115, | ||
13683 | 0,327,3,116,0, | ||
13684 | 327,3,117,0,327, | ||
13685 | 3,118,0,327,3, | ||
13686 | 119,0,327,3,120, | ||
13687 | 0,327,3,121,0, | ||
13688 | 327,3,122,0,327, | ||
13689 | 3,48,0,327,3, | ||
13690 | 49,0,327,3,50, | ||
13691 | 0,327,3,51,0, | ||
13692 | 327,3,52,0,327, | ||
13693 | 3,53,0,327,3, | ||
13694 | 54,0,327,3,55, | ||
13695 | 0,327,3,56,0, | ||
13696 | 327,3,57,0,327, | ||
13697 | 3,65,0,327,3, | ||
13698 | 66,0,327,3,67, | ||
13699 | 0,327,3,68,0, | ||
13700 | 327,3,69,0,327, | ||
13701 | 3,70,0,327,3, | ||
13702 | 71,0,327,3,72, | ||
13703 | 0,327,3,73,0, | ||
13704 | 327,3,74,0,327, | ||
13705 | 3,75,0,327,3, | ||
13706 | 76,0,327,3,77, | ||
13707 | 0,327,3,78,0, | ||
13708 | 327,3,79,0,327, | ||
13709 | 3,80,0,327,3, | ||
13710 | 81,0,327,3,82, | ||
13711 | 0,327,3,83,0, | ||
13712 | 327,3,84,0,327, | ||
13713 | 3,85,0,327,3, | ||
13714 | 86,0,327,3,87, | ||
13715 | 0,327,3,88,0, | ||
13716 | 327,3,89,0,327, | ||
13717 | 3,90,0,327,3, | ||
13718 | 95,0,1067,12,1, | ||
13719 | 11003,1068,5,63,3, | ||
13720 | 109,0,327,3,110, | ||
13721 | 0,327,3,111,0, | ||
13722 | 327,3,112,0,1069, | ||
13723 | 12,1,11034,1070,5, | ||
13724 | 63,3,109,0,327, | ||
13725 | 3,110,0,327,3, | ||
13726 | 111,0,327,3,112, | ||
13727 | 0,327,3,113,0, | ||
13728 | 327,3,114,0,327, | ||
13729 | 3,115,0,327,3, | ||
13730 | 116,0,327,3,117, | ||
13731 | 0,327,3,118,0, | ||
13732 | 327,3,119,0,327, | ||
13733 | 3,120,0,327,3, | ||
13734 | 121,0,327,3,122, | ||
13735 | 0,327,3,48,0, | ||
13736 | 327,3,49,0,327, | ||
13737 | 3,50,0,327,3, | ||
13738 | 51,0,327,3,52, | ||
13739 | 0,327,3,53,0, | ||
13740 | 327,3,54,0,327, | ||
13741 | 3,55,0,327,3, | ||
13742 | 56,0,327,3,57, | ||
13743 | 0,327,3,65,0, | ||
13744 | 327,3,66,0,327, | ||
13745 | 3,67,0,327,3, | ||
13746 | 68,0,327,3,69, | ||
13747 | 0,327,3,70,0, | ||
13748 | 327,3,71,0,327, | ||
13749 | 3,72,0,327,3, | ||
13750 | 73,0,327,3,74, | ||
13751 | 0,327,3,75,0, | ||
13752 | 327,3,76,0,327, | ||
13753 | 3,77,0,327,3, | ||
13754 | 78,0,327,3,79, | ||
13755 | 0,327,3,80,0, | ||
13756 | 327,3,81,0,327, | ||
13757 | 3,82,0,327,3, | ||
13758 | 83,0,327,3,84, | ||
13759 | 0,327,3,85,0, | ||
13760 | 327,3,86,0,327, | ||
13761 | 3,87,0,327,3, | ||
13762 | 88,0,327,3,89, | ||
13763 | 0,327,3,90,0, | ||
13764 | 327,3,95,0,327, | ||
13765 | 3,97,0,327,3, | ||
13766 | 98,0,327,3,99, | ||
13767 | 0,327,3,100,0, | ||
13768 | 327,3,101,0,1071, | ||
13769 | 12,1,11081,1072,5, | ||
13770 | 63,3,109,0,327, | ||
13771 | 3,110,0,327,3, | ||
13772 | 111,0,327,3,112, | ||
13773 | 0,327,3,113,0, | ||
13774 | 327,3,114,0,1073, | ||
13775 | 12,1,11114,1074,5, | ||
13776 | 63,3,109,0,1075, | ||
13777 | 12,1,11142,1076,5, | ||
13778 | 63,3,109,0,327, | ||
13779 | 3,110,0,327,3, | ||
13780 | 111,0,327,3,112, | ||
13781 | 0,327,3,113,0, | ||
13782 | 327,3,114,0,327, | ||
13783 | 3,115,0,327,3, | ||
13784 | 116,0,327,3,117, | ||
13785 | 0,327,3,118,0, | ||
13786 | 327,3,119,0,327, | ||
13787 | 3,120,0,327,3, | ||
13788 | 121,0,327,3,122, | ||
13789 | 0,327,3,48,0, | ||
13790 | 327,3,49,0,327, | ||
13791 | 3,50,0,327,3, | ||
13792 | 51,0,327,3,52, | ||
13793 | 0,327,3,53,0, | ||
13794 | 327,3,54,0,327, | ||
13795 | 3,55,0,327,3, | ||
13796 | 56,0,327,3,57, | ||
13797 | 0,327,3,65,0, | ||
13798 | 327,3,66,0,327, | ||
13799 | 3,67,0,327,3, | ||
13800 | 68,0,327,3,69, | ||
13801 | 0,327,3,70,0, | ||
13802 | 327,3,71,0,327, | ||
13803 | 3,72,0,327,3, | ||
13804 | 73,0,327,3,74, | ||
13805 | 0,327,3,75,0, | ||
13806 | 327,3,76,0,327, | ||
13807 | 3,77,0,327,3, | ||
13808 | 78,0,327,3,79, | ||
13809 | 0,327,3,80,0, | ||
13810 | 327,3,81,0,327, | ||
13811 | 3,82,0,327,3, | ||
13812 | 83,0,327,3,84, | ||
13813 | 0,327,3,85,0, | ||
13814 | 327,3,86,0,327, | ||
13815 | 3,87,0,327,3, | ||
13816 | 88,0,327,3,89, | ||
13817 | 0,327,3,90,0, | ||
13818 | 327,3,95,0,327, | ||
13819 | 3,97,0,327,3, | ||
13820 | 98,0,327,3,99, | ||
13821 | 0,327,3,100,0, | ||
13822 | 327,3,101,0,327, | ||
13823 | 3,102,0,327,3, | ||
13824 | 103,0,327,3,104, | ||
13825 | 0,327,3,105,0, | ||
13826 | 1077,12,1,11193,1078, | ||
13827 | 5,63,3,109,0, | ||
13828 | 327,3,110,0,327, | ||
13829 | 3,111,0,327,3, | ||
13830 | 112,0,327,3,113, | ||
13831 | 0,327,3,114,0, | ||
13832 | 327,3,115,0,1079, | ||
13833 | 12,1,11227,1080,5, | ||
13834 | 63,3,109,0,327, | ||
13835 | 3,110,0,327,3, | ||
13836 | 111,0,327,3,112, | ||
13837 | 0,327,3,113,0, | ||
13838 | 327,3,114,0,327, | ||
13839 | 3,115,0,1081,12, | ||
13840 | 1,11261,1082,5,63, | ||
13841 | 3,109,0,327,3, | ||
13842 | 110,0,327,3,111, | ||
13843 | 0,327,3,112,0, | ||
13844 | 327,3,113,0,327, | ||
13845 | 3,114,0,327,3, | ||
13846 | 115,0,327,3,116, | ||
13847 | 0,327,3,117,0, | ||
13848 | 327,3,118,0,327, | ||
13849 | 3,119,0,327,3, | ||
13850 | 120,0,327,3,121, | ||
13851 | 0,327,3,122,0, | ||
13852 | 327,3,48,0,327, | ||
13853 | 3,49,0,327,3, | ||
13854 | 50,0,327,3,51, | ||
13855 | 0,327,3,52,0, | ||
13856 | 327,3,53,0,327, | ||
13857 | 3,54,0,327,3, | ||
13858 | 55,0,327,3,56, | ||
13859 | 0,327,3,57,0, | ||
13860 | 327,3,65,0,327, | ||
13861 | 3,66,0,327,3, | ||
13862 | 67,0,327,3,68, | ||
13863 | 0,327,3,69,0, | ||
13864 | 327,3,70,0,327, | ||
13865 | 3,71,0,327,3, | ||
13866 | 72,0,327,3,73, | ||
13867 | 0,327,3,74,0, | ||
13868 | 327,3,75,0,327, | ||
13869 | 3,76,0,327,3, | ||
13870 | 77,0,327,3,78, | ||
13871 | 0,327,3,79,0, | ||
13872 | 327,3,80,0,327, | ||
13873 | 3,81,0,327,3, | ||
13874 | 82,0,327,3,83, | ||
13875 | 0,327,3,84,0, | ||
13876 | 327,3,85,0,327, | ||
13877 | 3,86,0,327,3, | ||
13878 | 87,0,327,3,88, | ||
13879 | 0,327,3,89,0, | ||
13880 | 327,3,90,0,327, | ||
13881 | 3,95,0,327,3, | ||
13882 | 97,0,327,3,98, | ||
13883 | 0,327,3,99,0, | ||
13884 | 327,3,100,0,327, | ||
13885 | 3,101,0,327,3, | ||
13886 | 102,0,327,3,103, | ||
13887 | 0,327,3,104,0, | ||
13888 | 327,3,105,0,1083, | ||
13889 | 12,1,11312,1084,5, | ||
13890 | 63,3,109,0,327, | ||
13891 | 3,110,0,327,3, | ||
13892 | 111,0,1085,12,1, | ||
13893 | 11342,1086,5,63,3, | ||
13894 | 109,0,327,3,110, | ||
13895 | 0,1087,12,1,11371, | ||
13896 | 1088,5,63,3,109, | ||
13897 | 0,327,3,110,0, | ||
13898 | 327,3,111,0,327, | ||
13899 | 3,112,0,327,3, | ||
13900 | 113,0,327,3,114, | ||
13901 | 0,327,3,115,0, | ||
13902 | 1089,12,1,11405,1090, | ||
13903 | 5,63,3,109,0, | ||
13904 | 327,3,110,0,327, | ||
13905 | 3,111,0,327,3, | ||
13906 | 112,0,327,3,113, | ||
13907 | 0,327,3,114,0, | ||
13908 | 327,3,115,0,327, | ||
13909 | 3,116,0,327,3, | ||
13910 | 117,0,327,3,118, | ||
13911 | 0,327,3,119,0, | ||
13912 | 327,3,120,0,327, | ||
13913 | 3,121,0,327,3, | ||
13914 | 122,0,327,3,48, | ||
13915 | 0,327,3,49,0, | ||
13916 | 327,3,50,0,327, | ||
13917 | 3,51,0,327,3, | ||
13918 | 52,0,327,3,53, | ||
13919 | 0,327,3,54,0, | ||
13920 | 327,3,55,0,327, | ||
13921 | 3,56,0,327,3, | ||
13922 | 57,0,327,3,65, | ||
13923 | 0,327,3,66,0, | ||
13924 | 327,3,67,0,327, | ||
13925 | 3,68,0,327,3, | ||
13926 | 69,0,327,3,70, | ||
13927 | 0,327,3,71,0, | ||
13928 | 327,3,72,0,327, | ||
13929 | 3,73,0,327,3, | ||
13930 | 74,0,327,3,75, | ||
13931 | 0,327,3,76,0, | ||
13932 | 327,3,77,0,327, | ||
13933 | 3,78,0,327,3, | ||
13934 | 79,0,327,3,80, | ||
13935 | 0,327,3,81,0, | ||
13936 | 327,3,82,0,327, | ||
13937 | 3,83,0,327,3, | ||
13938 | 84,0,327,3,85, | ||
13939 | 0,327,3,86,0, | ||
13940 | 327,3,87,0,327, | ||
13941 | 3,88,0,327,3, | ||
13942 | 89,0,327,3,90, | ||
13943 | 0,327,3,95,0, | ||
13944 | 327,3,97,0,327, | ||
13945 | 3,98,0,327,3, | ||
13946 | 99,0,327,3,100, | ||
13947 | 0,327,3,101,0, | ||
13948 | 327,3,102,0,327, | ||
13949 | 3,103,0,327,3, | ||
13950 | 104,0,327,3,105, | ||
13951 | 0,327,3,106,0, | ||
13952 | 327,3,107,0,327, | ||
13953 | 3,108,0,327,1091, | ||
13954 | 11,1,720,0,1092, | ||
13955 | 4,52,82,0,85, | ||
13956 | 0,78,0,95,0, | ||
13957 | 84,0,73,0,77, | ||
13958 | 0,69,0,95,0, | ||
13959 | 80,0,69,0,82, | ||
13960 | 0,77,0,73,0, | ||
13961 | 83,0,83,0,73, | ||
13962 | 0,79,0,78,0, | ||
13963 | 83,0,95,0,69, | ||
13964 | 0,86,0,69,0, | ||
13965 | 78,0,84,0,1, | ||
13966 | -1,3,116,0,327, | ||
13967 | 3,117,0,327,3, | ||
13968 | 118,0,327,3,119, | ||
13969 | 0,327,3,120,0, | ||
13970 | 327,3,121,0,327, | ||
13971 | 3,122,0,327,3, | ||
13972 | 48,0,327,3,49, | ||
13973 | 0,327,3,50,0, | ||
13974 | 327,3,51,0,327, | ||
13975 | 3,52,0,327,3, | ||
13976 | 53,0,327,3,54, | ||
13977 | 0,327,3,55,0, | ||
13978 | 327,3,56,0,327, | ||
13979 | 3,57,0,327,3, | ||
13980 | 65,0,327,3,66, | ||
13981 | 0,327,3,67,0, | ||
13982 | 327,3,68,0,327, | ||
13983 | 3,69,0,327,3, | ||
13984 | 70,0,327,3,71, | ||
13985 | 0,327,3,72,0, | ||
13986 | 327,3,73,0,327, | ||
13987 | 3,74,0,327,3, | ||
13988 | 75,0,327,3,76, | ||
13989 | 0,327,3,77,0, | ||
13990 | 327,3,78,0,327, | ||
13991 | 3,79,0,327,3, | ||
13992 | 80,0,327,3,81, | ||
13993 | 0,327,3,82,0, | ||
13994 | 327,3,83,0,327, | ||
13995 | 3,84,0,327,3, | ||
13996 | 85,0,327,3,86, | ||
13997 | 0,327,3,87,0, | ||
13998 | 327,3,88,0,327, | ||
13999 | 3,89,0,327,3, | ||
14000 | 90,0,327,3,95, | ||
14001 | 0,327,3,97,0, | ||
14002 | 327,3,98,0,327, | ||
14003 | 3,99,0,327,3, | ||
14004 | 100,0,327,3,101, | ||
14005 | 0,327,3,102,0, | ||
14006 | 327,3,103,0,327, | ||
14007 | 3,104,0,327,3, | ||
14008 | 105,0,327,3,106, | ||
14009 | 0,327,3,107,0, | ||
14010 | 327,3,108,0,327, | ||
14011 | 1093,11,1,829,0, | ||
14012 | 330,1,-1,3,111, | ||
14013 | 0,327,3,112,0, | ||
14014 | 327,3,113,0,327, | ||
14015 | 3,114,0,327,3, | ||
14016 | 115,0,327,3,116, | ||
14017 | 0,327,3,117,0, | ||
14018 | 327,3,118,0,327, | ||
14019 | 3,119,0,327,3, | ||
14020 | 120,0,327,3,121, | ||
14021 | 0,327,3,122,0, | ||
14022 | 327,3,48,0,327, | ||
14023 | 3,49,0,327,3, | ||
14024 | 50,0,327,3,51, | ||
14025 | 0,327,3,52,0, | ||
14026 | 327,3,53,0,327, | ||
14027 | 3,54,0,327,3, | ||
14028 | 55,0,327,3,56, | ||
14029 | 0,327,3,57,0, | ||
14030 | 327,3,65,0,327, | ||
14031 | 3,66,0,327,3, | ||
14032 | 67,0,327,3,68, | ||
14033 | 0,327,3,69,0, | ||
14034 | 327,3,70,0,327, | ||
14035 | 3,71,0,327,3, | ||
14036 | 72,0,327,3,73, | ||
14037 | 0,327,3,74,0, | ||
14038 | 327,3,75,0,327, | ||
14039 | 3,76,0,327,3, | ||
14040 | 77,0,327,3,78, | ||
14041 | 0,327,3,79,0, | ||
14042 | 327,3,80,0,327, | ||
14043 | 3,81,0,327,3, | ||
14044 | 82,0,327,3,83, | ||
14045 | 0,327,3,84,0, | ||
14046 | 327,3,85,0,327, | ||
14047 | 3,86,0,327,3, | ||
14048 | 87,0,327,3,88, | ||
14049 | 0,327,3,89,0, | ||
14050 | 327,3,90,0,327, | ||
14051 | 3,95,0,327,3, | ||
14052 | 97,0,327,3,98, | ||
14053 | 0,327,3,99,0, | ||
14054 | 327,3,100,0,327, | ||
14055 | 3,101,0,327,3, | ||
14056 | 102,0,327,3,103, | ||
14057 | 0,327,3,104,0, | ||
14058 | 327,3,105,0,327, | ||
14059 | 3,106,0,327,3, | ||
14060 | 107,0,327,3,108, | ||
14061 | 0,327,1094,11,1, | ||
14062 | 829,0,330,1,-1, | ||
14063 | 3,112,0,327,3, | ||
14064 | 113,0,327,3,114, | ||
14065 | 0,327,3,115,0, | ||
14066 | 327,3,116,0,327, | ||
14067 | 3,117,0,327,3, | ||
14068 | 118,0,327,3,119, | ||
14069 | 0,327,3,120,0, | ||
14070 | 327,3,121,0,327, | ||
14071 | 3,122,0,327,3, | ||
14072 | 48,0,327,3,49, | ||
14073 | 0,327,3,50,0, | ||
14074 | 327,3,51,0,327, | ||
14075 | 3,52,0,327,3, | ||
14076 | 53,0,327,3,54, | ||
14077 | 0,327,3,55,0, | ||
14078 | 327,3,56,0,327, | ||
14079 | 3,57,0,327,3, | ||
14080 | 65,0,327,3,66, | ||
14081 | 0,327,3,67,0, | ||
14082 | 327,3,68,0,327, | ||
14083 | 3,69,0,327,3, | ||
14084 | 70,0,327,3,71, | ||
14085 | 0,327,3,72,0, | ||
14086 | 327,3,73,0,327, | ||
14087 | 3,74,0,327,3, | ||
14088 | 75,0,327,3,76, | ||
14089 | 0,327,3,77,0, | ||
14090 | 327,3,78,0,327, | ||
14091 | 3,79,0,327,3, | ||
14092 | 80,0,327,3,81, | ||
14093 | 0,327,3,82,0, | ||
14094 | 327,3,83,0,327, | ||
14095 | 3,84,0,327,3, | ||
14096 | 85,0,327,3,86, | ||
14097 | 0,327,3,87,0, | ||
14098 | 327,3,88,0,327, | ||
14099 | 3,89,0,327,3, | ||
14100 | 90,0,327,3,95, | ||
14101 | 0,327,3,97,0, | ||
14102 | 327,3,98,0,327, | ||
14103 | 3,99,0,327,3, | ||
14104 | 100,0,327,3,101, | ||
14105 | 0,327,3,102,0, | ||
14106 | 327,3,103,0,327, | ||
14107 | 3,104,0,327,3, | ||
14108 | 105,0,327,3,106, | ||
14109 | 0,327,3,107,0, | ||
14110 | 327,3,108,0,327, | ||
14111 | 1095,11,1,829,0, | ||
14112 | 330,1,-1,3,106, | ||
14113 | 0,327,3,107,0, | ||
14114 | 327,3,108,0,327, | ||
14115 | 1096,11,1,829,0, | ||
14116 | 330,1,-1,3,116, | ||
14117 | 0,327,3,117,0, | ||
14118 | 327,3,118,0,327, | ||
14119 | 3,119,0,327,3, | ||
14120 | 120,0,327,3,121, | ||
14121 | 0,327,3,122,0, | ||
14122 | 327,3,48,0,327, | ||
14123 | 3,49,0,327,3, | ||
14124 | 50,0,327,3,51, | ||
14125 | 0,327,3,52,0, | ||
14126 | 327,3,53,0,327, | ||
14127 | 3,54,0,327,3, | ||
14128 | 55,0,327,3,56, | ||
14129 | 0,327,3,57,0, | ||
14130 | 327,3,65,0,327, | ||
14131 | 3,66,0,327,3, | ||
14132 | 67,0,327,3,68, | ||
14133 | 0,327,3,69,0, | ||
14134 | 327,3,70,0,327, | ||
14135 | 3,71,0,327,3, | ||
14136 | 72,0,327,3,73, | ||
14137 | 0,327,3,74,0, | ||
14138 | 327,3,75,0,327, | ||
14139 | 3,76,0,327,3, | ||
14140 | 77,0,327,3,78, | ||
14141 | 0,327,3,79,0, | ||
14142 | 327,3,80,0,327, | ||
14143 | 3,81,0,327,3, | ||
14144 | 82,0,327,3,83, | ||
14145 | 0,327,3,84,0, | ||
14146 | 327,3,85,0,327, | ||
14147 | 3,86,0,327,3, | ||
14148 | 87,0,327,3,88, | ||
14149 | 0,327,3,89,0, | ||
14150 | 327,3,90,0,327, | ||
14151 | 3,95,0,327,3, | ||
14152 | 97,0,327,3,98, | ||
14153 | 0,327,3,99,0, | ||
14154 | 327,3,100,0,327, | ||
14155 | 3,101,0,327,3, | ||
14156 | 102,0,327,3,103, | ||
14157 | 0,327,3,104,0, | ||
14158 | 327,3,105,0,327, | ||
14159 | 3,106,0,327,3, | ||
14160 | 107,0,327,3,108, | ||
14161 | 0,327,1097,11,1, | ||
14162 | 829,0,330,1,-1, | ||
14163 | 3,116,0,327,3, | ||
14164 | 117,0,327,3,118, | ||
14165 | 0,327,3,119,0, | ||
14166 | 327,3,120,0,327, | ||
14167 | 3,121,0,327,3, | ||
14168 | 122,0,327,3,48, | ||
14169 | 0,327,3,49,0, | ||
14170 | 327,3,50,0,327, | ||
14171 | 3,51,0,327,3, | ||
14172 | 52,0,327,3,53, | ||
14173 | 0,327,3,54,0, | ||
14174 | 327,3,55,0,327, | ||
14175 | 3,56,0,327,3, | ||
14176 | 57,0,327,3,65, | ||
14177 | 0,327,3,66,0, | ||
14178 | 327,3,67,0,327, | ||
14179 | 3,68,0,327,3, | ||
14180 | 69,0,327,3,70, | ||
14181 | 0,327,3,71,0, | ||
14182 | 327,3,72,0,327, | ||
14183 | 3,73,0,327,3, | ||
14184 | 74,0,327,3,75, | ||
14185 | 0,327,3,76,0, | ||
14186 | 327,3,77,0,327, | ||
14187 | 3,78,0,327,3, | ||
14188 | 79,0,327,3,80, | ||
14189 | 0,327,3,81,0, | ||
14190 | 327,3,82,0,327, | ||
14191 | 3,83,0,327,3, | ||
14192 | 84,0,327,3,85, | ||
14193 | 0,327,3,86,0, | ||
14194 | 327,3,87,0,327, | ||
14195 | 3,88,0,327,3, | ||
14196 | 89,0,327,3,90, | ||
14197 | 0,327,3,95,0, | ||
14198 | 327,3,97,0,327, | ||
14199 | 3,98,0,327,3, | ||
14200 | 99,0,327,3,100, | ||
14201 | 0,327,3,101,0, | ||
14202 | 327,3,102,0,327, | ||
14203 | 3,103,0,327,3, | ||
14204 | 104,0,327,3,105, | ||
14205 | 0,327,3,106,0, | ||
14206 | 327,3,107,0,327, | ||
14207 | 3,108,0,327,1098, | ||
14208 | 11,1,829,0,330, | ||
14209 | 1,-1,3,106,0, | ||
14210 | 327,3,107,0,327, | ||
14211 | 3,108,0,327,1099, | ||
14212 | 11,1,829,0,330, | ||
14213 | 1,-1,3,110,0, | ||
14214 | 327,3,111,0,327, | ||
14215 | 3,112,0,327,3, | ||
14216 | 113,0,327,3,114, | ||
14217 | 0,327,3,115,0, | ||
14218 | 327,3,116,0,327, | ||
14219 | 3,117,0,327,3, | ||
14220 | 118,0,327,3,119, | ||
14221 | 0,327,3,120,0, | ||
14222 | 327,3,121,0,327, | ||
14223 | 3,122,0,327,3, | ||
14224 | 48,0,327,3,49, | ||
14225 | 0,327,3,50,0, | ||
14226 | 327,3,51,0,327, | ||
14227 | 3,52,0,327,3, | ||
14228 | 53,0,327,3,54, | ||
14229 | 0,327,3,55,0, | ||
14230 | 327,3,56,0,327, | ||
14231 | 3,57,0,327,3, | ||
14232 | 65,0,327,3,66, | ||
14233 | 0,327,3,67,0, | ||
14234 | 327,3,68,0,327, | ||
14235 | 3,69,0,327,3, | ||
14236 | 70,0,327,3,71, | ||
14237 | 0,327,3,72,0, | ||
14238 | 327,3,73,0,327, | ||
14239 | 3,74,0,327,3, | ||
14240 | 75,0,327,3,76, | ||
14241 | 0,327,3,77,0, | ||
14242 | 327,3,78,0,327, | ||
14243 | 3,79,0,327,3, | ||
14244 | 80,0,327,3,81, | ||
14245 | 0,327,3,82,0, | ||
14246 | 327,3,83,0,327, | ||
14247 | 3,84,0,327,3, | ||
14248 | 85,0,327,3,86, | ||
14249 | 0,327,3,87,0, | ||
14250 | 327,3,88,0,327, | ||
14251 | 3,89,0,327,3, | ||
14252 | 90,0,327,3,95, | ||
14253 | 0,327,3,97,0, | ||
14254 | 327,3,98,0,327, | ||
14255 | 3,99,0,327,3, | ||
14256 | 100,0,327,3,101, | ||
14257 | 0,327,3,102,0, | ||
14258 | 327,3,103,0,327, | ||
14259 | 3,104,0,327,3, | ||
14260 | 105,0,327,3,106, | ||
14261 | 0,327,3,107,0, | ||
14262 | 327,3,108,0,327, | ||
14263 | 1100,11,1,829,0, | ||
14264 | 330,1,-1,3,115, | ||
14265 | 0,327,3,116,0, | ||
14266 | 327,3,117,0,327, | ||
14267 | 3,118,0,327,3, | ||
14268 | 119,0,327,3,120, | ||
14269 | 0,327,3,121,0, | ||
14270 | 327,3,122,0,327, | ||
14271 | 3,48,0,327,3, | ||
14272 | 49,0,327,3,50, | ||
14273 | 0,327,3,51,0, | ||
14274 | 327,3,52,0,327, | ||
14275 | 3,53,0,327,3, | ||
14276 | 54,0,327,3,55, | ||
14277 | 0,327,3,56,0, | ||
14278 | 327,3,57,0,327, | ||
14279 | 3,65,0,327,3, | ||
14280 | 66,0,327,3,67, | ||
14281 | 0,327,3,68,0, | ||
14282 | 327,3,69,0,327, | ||
14283 | 3,70,0,327,3, | ||
14284 | 71,0,327,3,72, | ||
14285 | 0,327,3,73,0, | ||
14286 | 327,3,74,0,327, | ||
14287 | 3,75,0,327,3, | ||
14288 | 76,0,327,3,77, | ||
14289 | 0,327,3,78,0, | ||
14290 | 327,3,79,0,327, | ||
14291 | 3,80,0,327,3, | ||
14292 | 81,0,327,3,82, | ||
14293 | 0,327,3,83,0, | ||
14294 | 327,3,84,0,327, | ||
14295 | 3,85,0,327,3, | ||
14296 | 86,0,327,3,87, | ||
14297 | 0,327,3,88,0, | ||
14298 | 327,3,89,0,327, | ||
14299 | 3,90,0,327,3, | ||
14300 | 95,0,327,3,97, | ||
14301 | 0,327,3,98,0, | ||
14302 | 327,3,99,0,327, | ||
14303 | 3,100,0,327,3, | ||
14304 | 101,0,327,3,102, | ||
14305 | 0,327,3,103,0, | ||
14306 | 327,3,104,0,327, | ||
14307 | 3,105,0,327,3, | ||
14308 | 106,0,327,3,107, | ||
14309 | 0,327,3,108,0, | ||
14310 | 327,1101,11,1,829, | ||
14311 | 0,330,1,-1,3, | ||
14312 | 102,0,327,3,103, | ||
14313 | 0,327,3,104,0, | ||
14314 | 327,3,105,0,327, | ||
14315 | 3,106,0,327,3, | ||
14316 | 107,0,327,3,108, | ||
14317 | 0,327,1102,11,1, | ||
14318 | 829,0,330,1,-1, | ||
14319 | 3,113,0,327,3, | ||
14320 | 114,0,327,3,115, | ||
14321 | 0,327,3,116,0, | ||
14322 | 327,3,117,0,327, | ||
14323 | 3,118,0,327,3, | ||
14324 | 119,0,327,3,120, | ||
14325 | 0,327,3,121,0, | ||
14326 | 327,3,122,0,327, | ||
14327 | 3,48,0,327,3, | ||
14328 | 49,0,327,3,50, | ||
14329 | 0,327,3,51,0, | ||
14330 | 327,3,52,0,327, | ||
14331 | 3,53,0,327,3, | ||
14332 | 54,0,327,3,55, | ||
14333 | 0,327,3,56,0, | ||
14334 | 327,3,57,0,327, | ||
14335 | 3,65,0,327,3, | ||
14336 | 66,0,327,3,67, | ||
14337 | 0,327,3,68,0, | ||
14338 | 327,3,69,0,327, | ||
14339 | 3,70,0,327,3, | ||
14340 | 71,0,327,3,72, | ||
14341 | 0,327,3,73,0, | ||
14342 | 327,3,74,0,327, | ||
14343 | 3,75,0,327,3, | ||
14344 | 76,0,327,3,77, | ||
14345 | 0,327,3,78,0, | ||
14346 | 327,3,79,0,327, | ||
14347 | 3,80,0,327,3, | ||
14348 | 81,0,327,3,82, | ||
14349 | 0,327,3,83,0, | ||
14350 | 327,3,84,0,327, | ||
14351 | 3,85,0,327,3, | ||
14352 | 86,0,327,3,87, | ||
14353 | 0,327,3,88,0, | ||
14354 | 327,3,89,0,327, | ||
14355 | 3,90,0,327,3, | ||
14356 | 95,0,327,3,97, | ||
14357 | 0,327,3,98,0, | ||
14358 | 327,3,99,0,327, | ||
14359 | 3,100,0,327,3, | ||
14360 | 101,0,327,3,102, | ||
14361 | 0,327,3,103,0, | ||
14362 | 327,3,104,0,327, | ||
14363 | 3,105,0,327,3, | ||
14364 | 106,0,327,3,107, | ||
14365 | 0,327,3,108,0, | ||
14366 | 327,1103,11,1,829, | ||
14367 | 0,330,1,-1,3, | ||
14368 | 97,0,327,3,98, | ||
14369 | 0,327,3,99,0, | ||
14370 | 327,3,100,0,327, | ||
14371 | 3,101,0,327,3, | ||
14372 | 102,0,327,3,103, | ||
14373 | 0,327,3,104,0, | ||
14374 | 327,3,105,0,327, | ||
14375 | 3,106,0,327,3, | ||
14376 | 107,0,327,3,108, | ||
14377 | 0,327,1104,11,1, | ||
14378 | 829,0,330,1,-1, | ||
14379 | 3,102,0,327,3, | ||
14380 | 103,0,327,3,104, | ||
14381 | 0,327,3,105,0, | ||
14382 | 327,3,106,0,327, | ||
14383 | 3,107,0,327,3, | ||
14384 | 108,0,327,1105,11, | ||
14385 | 1,829,0,330,1, | ||
14386 | -1,3,110,0,327, | ||
14387 | 3,111,0,327,3, | ||
14388 | 112,0,327,3,113, | ||
14389 | 0,327,3,114,0, | ||
14390 | 327,3,115,0,327, | ||
14391 | 3,116,0,327,3, | ||
14392 | 117,0,327,3,118, | ||
14393 | 0,327,3,119,0, | ||
14394 | 327,3,120,0,327, | ||
14395 | 3,121,0,327,3, | ||
14396 | 122,0,327,3,48, | ||
14397 | 0,327,3,49,0, | ||
14398 | 327,3,50,0,327, | ||
14399 | 3,51,0,327,3, | ||
14400 | 52,0,327,3,53, | ||
14401 | 0,327,3,54,0, | ||
14402 | 327,3,55,0,327, | ||
14403 | 3,56,0,327,3, | ||
14404 | 57,0,327,3,65, | ||
14405 | 0,327,3,66,0, | ||
14406 | 327,3,67,0,327, | ||
14407 | 3,68,0,327,3, | ||
14408 | 69,0,327,3,70, | ||
14409 | 0,327,3,71,0, | ||
14410 | 327,3,72,0,327, | ||
14411 | 3,73,0,327,3, | ||
14412 | 74,0,327,3,75, | ||
14413 | 0,327,3,76,0, | ||
14414 | 327,3,77,0,327, | ||
14415 | 3,78,0,327,3, | ||
14416 | 79,0,327,3,80, | ||
14417 | 0,327,3,81,0, | ||
14418 | 327,3,82,0,327, | ||
14419 | 3,83,0,327,3, | ||
14420 | 84,0,327,3,85, | ||
14421 | 0,327,3,86,0, | ||
14422 | 327,3,87,0,327, | ||
14423 | 3,88,0,327,3, | ||
14424 | 89,0,327,3,90, | ||
14425 | 0,327,3,95,0, | ||
14426 | 327,3,97,0,327, | ||
14427 | 3,98,0,327,3, | ||
14428 | 99,0,327,3,100, | ||
14429 | 0,327,3,101,0, | ||
14430 | 327,3,102,0,327, | ||
14431 | 3,103,0,327,3, | ||
14432 | 104,0,327,3,105, | ||
14433 | 0,327,3,106,0, | ||
14434 | 327,3,107,0,327, | ||
14435 | 3,108,0,327,1106, | ||
14436 | 11,1,829,0,330, | ||
14437 | 1,-1,3,106,0, | ||
14438 | 327,3,107,0,327, | ||
14439 | 3,108,0,327,1107, | ||
14440 | 11,1,829,0,330, | ||
14441 | 1,-1,3,117,0, | ||
14442 | 327,3,118,0,327, | ||
14443 | 3,119,0,327,3, | ||
14444 | 120,0,327,3,121, | ||
14445 | 0,327,3,122,0, | ||
14446 | 327,3,48,0,327, | ||
14447 | 3,49,0,327,3, | ||
14448 | 50,0,327,3,51, | ||
14449 | 0,327,3,52,0, | ||
14450 | 327,3,53,0,327, | ||
14451 | 3,54,0,327,3, | ||
14452 | 55,0,327,3,56, | ||
14453 | 0,327,3,57,0, | ||
14454 | 327,3,65,0,327, | ||
14455 | 3,66,0,327,3, | ||
14456 | 67,0,327,3,68, | ||
14457 | 0,327,3,69,0, | ||
14458 | 327,3,70,0,327, | ||
14459 | 3,71,0,327,3, | ||
14460 | 72,0,327,3,73, | ||
14461 | 0,327,3,74,0, | ||
14462 | 327,3,75,0,327, | ||
14463 | 3,76,0,327,3, | ||
14464 | 77,0,327,3,78, | ||
14465 | 0,327,3,79,0, | ||
14466 | 327,3,80,0,327, | ||
14467 | 3,81,0,327,3, | ||
14468 | 82,0,327,3,83, | ||
14469 | 0,327,3,84,0, | ||
14470 | 327,3,85,0,327, | ||
14471 | 3,86,0,327,3, | ||
14472 | 87,0,327,3,88, | ||
14473 | 0,327,3,89,0, | ||
14474 | 327,3,90,0,327, | ||
14475 | 3,95,0,327,3, | ||
14476 | 97,0,327,3,98, | ||
14477 | 0,327,3,99,0, | ||
14478 | 327,3,100,0,327, | ||
14479 | 3,101,0,327,3, | ||
14480 | 102,0,327,3,103, | ||
14481 | 0,327,3,104,0, | ||
14482 | 327,3,105,0,327, | ||
14483 | 3,106,0,327,3, | ||
14484 | 107,0,327,3,108, | ||
14485 | 0,327,1108,11,1, | ||
14486 | 829,0,330,1,-1, | ||
14487 | 3,97,0,327,3, | ||
14488 | 98,0,327,3,99, | ||
14489 | 0,327,3,100,0, | ||
14490 | 327,3,101,0,327, | ||
14491 | 3,102,0,327,3, | ||
14492 | 103,0,327,3,104, | ||
14493 | 0,327,3,105,0, | ||
14494 | 327,3,106,0,327, | ||
14495 | 3,107,0,327,3, | ||
14496 | 108,0,327,1109,11, | ||
14497 | 1,829,0,330,1, | ||
14498 | -1,3,111,0,327, | ||
14499 | 3,112,0,327,3, | ||
14500 | 113,0,327,3,114, | ||
14501 | 0,327,3,115,0, | ||
14502 | 327,3,116,0,327, | ||
14503 | 3,117,0,327,3, | ||
14504 | 118,0,327,3,119, | ||
14505 | 0,327,3,120,0, | ||
14506 | 327,3,121,0,327, | ||
14507 | 3,122,0,327,3, | ||
14508 | 48,0,327,3,49, | ||
14509 | 0,327,3,50,0, | ||
14510 | 327,3,51,0,327, | ||
14511 | 3,52,0,327,3, | ||
14512 | 53,0,327,3,54, | ||
14513 | 0,327,3,55,0, | ||
14514 | 327,3,56,0,327, | ||
14515 | 3,57,0,327,3, | ||
14516 | 65,0,327,3,66, | ||
14517 | 0,327,3,67,0, | ||
14518 | 327,3,68,0,327, | ||
14519 | 3,69,0,327,3, | ||
14520 | 70,0,327,3,71, | ||
14521 | 0,327,3,72,0, | ||
14522 | 327,3,73,0,327, | ||
14523 | 3,74,0,327,3, | ||
14524 | 75,0,327,3,76, | ||
14525 | 0,327,3,77,0, | ||
14526 | 327,3,78,0,327, | ||
14527 | 3,79,0,327,3, | ||
14528 | 80,0,327,3,81, | ||
14529 | 0,327,3,82,0, | ||
14530 | 327,3,83,0,327, | ||
14531 | 3,84,0,327,3, | ||
14532 | 85,0,327,3,86, | ||
14533 | 0,327,3,87,0, | ||
14534 | 327,3,88,0,327, | ||
14535 | 3,89,0,327,3, | ||
14536 | 90,0,327,3,95, | ||
14537 | 0,327,3,97,0, | ||
14538 | 327,3,98,0,327, | ||
14539 | 3,99,0,327,3, | ||
14540 | 100,0,327,3,101, | ||
14541 | 0,327,3,102,0, | ||
14542 | 327,3,103,0,327, | ||
14543 | 3,104,0,327,3, | ||
14544 | 105,0,327,3,106, | ||
14545 | 0,327,3,107,0, | ||
14546 | 327,3,108,0,327, | ||
14547 | 1110,11,1,829,0, | ||
14548 | 330,1,-1,3,118, | ||
14549 | 0,327,3,119,0, | ||
14550 | 327,3,120,0,327, | ||
14551 | 3,121,0,327,3, | ||
14552 | 122,0,327,3,48, | ||
14553 | 0,327,3,49,0, | ||
14554 | 327,3,50,0,327, | ||
14555 | 3,51,0,327,3, | ||
14556 | 52,0,327,3,53, | ||
14557 | 0,327,3,54,0, | ||
14558 | 327,3,55,0,327, | ||
14559 | 3,56,0,327,3, | ||
14560 | 57,0,327,3,65, | ||
14561 | 0,327,3,66,0, | ||
14562 | 327,3,67,0,327, | ||
14563 | 3,68,0,327,3, | ||
14564 | 69,0,327,3,70, | ||
14565 | 0,327,3,71,0, | ||
14566 | 327,3,72,0,327, | ||
14567 | 3,73,0,327,3, | ||
14568 | 74,0,327,3,75, | ||
14569 | 0,327,3,76,0, | ||
14570 | 327,3,77,0,327, | ||
14571 | 3,78,0,327,3, | ||
14572 | 79,0,327,3,80, | ||
14573 | 0,327,3,81,0, | ||
14574 | 327,3,82,0,327, | ||
14575 | 3,83,0,327,3, | ||
14576 | 84,0,327,3,85, | ||
14577 | 0,327,3,86,0, | ||
14578 | 327,3,87,0,327, | ||
14579 | 3,88,0,327,3, | ||
14580 | 89,0,327,3,90, | ||
14581 | 0,327,3,95,0, | ||
14582 | 327,3,97,0,327, | ||
14583 | 3,98,0,327,3, | ||
14584 | 99,0,327,3,100, | ||
14585 | 0,327,3,101,0, | ||
14586 | 1111,12,1,12932,1112, | ||
14587 | 5,63,3,109,0, | ||
14588 | 1113,12,1,12960,1114, | ||
14589 | 5,63,3,109,0, | ||
14590 | 327,3,110,0,327, | ||
14591 | 3,111,0,1115,12, | ||
14592 | 1,12990,1116,5,63, | ||
14593 | 3,109,0,327,3, | ||
14594 | 110,0,327,3,111, | ||
14595 | 0,327,3,112,0, | ||
14596 | 327,3,113,0,327, | ||
14597 | 3,114,0,327,3, | ||
14598 | 115,0,327,3,116, | ||
14599 | 0,1117,12,1,13025, | ||
14600 | 1118,5,63,3,109, | ||
14601 | 0,327,3,110,0, | ||
14602 | 327,3,111,0,327, | ||
14603 | 3,112,0,327,3, | ||
14604 | 113,0,327,3,114, | ||
14605 | 0,327,3,115,0, | ||
14606 | 327,3,116,0,327, | ||
14607 | 3,117,0,327,3, | ||
14608 | 118,0,327,3,119, | ||
14609 | 0,327,3,120,0, | ||
14610 | 327,3,121,0,327, | ||
14611 | 3,122,0,327,3, | ||
14612 | 48,0,327,3,49, | ||
14613 | 0,327,3,50,0, | ||
14614 | 327,3,51,0,327, | ||
14615 | 3,52,0,327,3, | ||
14616 | 53,0,327,3,54, | ||
14617 | 0,327,3,55,0, | ||
14618 | 327,3,56,0,327, | ||
14619 | 3,57,0,327,3, | ||
14620 | 65,0,327,3,66, | ||
14621 | 0,327,3,67,0, | ||
14622 | 327,3,68,0,327, | ||
14623 | 3,69,0,327,3, | ||
14624 | 70,0,327,3,71, | ||
14625 | 0,327,3,72,0, | ||
14626 | 327,3,73,0,327, | ||
14627 | 3,74,0,327,3, | ||
14628 | 75,0,327,3,76, | ||
14629 | 0,327,3,77,0, | ||
14630 | 327,3,78,0,327, | ||
14631 | 3,79,0,327,3, | ||
14632 | 80,0,327,3,81, | ||
14633 | 0,327,3,82,0, | ||
14634 | 327,3,83,0,327, | ||
14635 | 3,84,0,327,3, | ||
14636 | 85,0,327,3,86, | ||
14637 | 0,327,3,87,0, | ||
14638 | 327,3,88,0,327, | ||
14639 | 3,89,0,327,3, | ||
14640 | 90,0,327,3,95, | ||
14641 | 0,327,3,97,0, | ||
14642 | 327,3,98,0,327, | ||
14643 | 3,99,0,327,3, | ||
14644 | 100,0,327,3,101, | ||
14645 | 0,1119,12,1,13072, | ||
14646 | 1120,5,63,3,109, | ||
14647 | 0,327,3,110,0, | ||
14648 | 327,3,111,0,327, | ||
14649 | 3,112,0,327,3, | ||
14650 | 113,0,327,3,114, | ||
14651 | 0,327,3,115,0, | ||
14652 | 327,3,116,0,327, | ||
14653 | 3,117,0,327,3, | ||
14654 | 118,0,327,3,119, | ||
14655 | 0,327,3,120,0, | ||
14656 | 327,3,121,0,327, | ||
14657 | 3,122,0,327,3, | ||
14658 | 48,0,327,3,49, | ||
14659 | 0,327,3,50,0, | ||
14660 | 327,3,51,0,327, | ||
14661 | 3,52,0,327,3, | ||
14662 | 53,0,327,3,54, | ||
14663 | 0,327,3,55,0, | ||
14664 | 327,3,56,0,327, | ||
14665 | 3,57,0,327,3, | ||
14666 | 65,0,327,3,66, | ||
14667 | 0,327,3,67,0, | ||
14668 | 327,3,68,0,327, | ||
14669 | 3,69,0,327,3, | ||
14670 | 70,0,327,3,71, | ||
14671 | 0,327,3,72,0, | ||
14672 | 327,3,73,0,327, | ||
14673 | 3,74,0,327,3, | ||
14674 | 75,0,327,3,76, | ||
14675 | 0,327,3,77,0, | ||
14676 | 327,3,78,0,327, | ||
14677 | 3,79,0,327,3, | ||
14678 | 80,0,327,3,81, | ||
14679 | 0,327,3,82,0, | ||
14680 | 327,3,83,0,327, | ||
14681 | 3,84,0,327,3, | ||
14682 | 85,0,327,3,86, | ||
14683 | 0,327,3,87,0, | ||
14684 | 327,3,88,0,327, | ||
14685 | 3,89,0,327,3, | ||
14686 | 90,0,327,3,95, | ||
14687 | 0,1121,12,1,13158, | ||
14688 | 1122,5,63,3,109, | ||
14689 | 0,327,3,110,0, | ||
14690 | 327,3,111,0,327, | ||
14691 | 3,112,0,327,3, | ||
14692 | 113,0,327,3,114, | ||
14693 | 0,327,3,115,0, | ||
14694 | 327,3,116,0,327, | ||
14695 | 3,117,0,327,3, | ||
14696 | 118,0,327,3,119, | ||
14697 | 0,327,3,120,0, | ||
14698 | 327,3,121,0,327, | ||
14699 | 3,122,0,327,3, | ||
14700 | 48,0,327,3,49, | ||
14701 | 0,327,3,50,0, | ||
14702 | 327,3,51,0,327, | ||
14703 | 3,52,0,327,3, | ||
14704 | 53,0,327,3,54, | ||
14705 | 0,327,3,55,0, | ||
14706 | 327,3,56,0,327, | ||
14707 | 3,57,0,327,3, | ||
14708 | 65,0,327,3,66, | ||
14709 | 0,327,3,67,0, | ||
14710 | 327,3,68,0,327, | ||
14711 | 3,69,0,327,3, | ||
14712 | 70,0,327,3,71, | ||
14713 | 0,327,3,72,0, | ||
14714 | 327,3,73,0,327, | ||
14715 | 3,74,0,327,3, | ||
14716 | 75,0,327,3,76, | ||
14717 | 0,327,3,77,0, | ||
14718 | 327,3,78,0,327, | ||
14719 | 3,79,0,327,3, | ||
14720 | 80,0,327,3,81, | ||
14721 | 0,327,3,82,0, | ||
14722 | 327,3,83,0,327, | ||
14723 | 3,84,0,327,3, | ||
14724 | 85,0,327,3,86, | ||
14725 | 0,327,3,87,0, | ||
14726 | 327,3,88,0,327, | ||
14727 | 3,89,0,327,3, | ||
14728 | 90,0,327,3,95, | ||
14729 | 0,327,3,97,0, | ||
14730 | 327,3,98,0,327, | ||
14731 | 3,99,0,327,3, | ||
14732 | 100,0,1123,12,1, | ||
14733 | 13204,1124,5,63,3, | ||
14734 | 109,0,327,3,110, | ||
14735 | 0,327,3,111,0, | ||
14736 | 327,3,112,0,327, | ||
14737 | 3,113,0,327,3, | ||
14738 | 114,0,327,3,115, | ||
14739 | 0,327,3,116,0, | ||
14740 | 327,3,117,0,327, | ||
14741 | 3,118,0,327,3, | ||
14742 | 119,0,327,3,120, | ||
14743 | 0,327,3,121,0, | ||
14744 | 327,3,122,0,327, | ||
14745 | 3,48,0,327,3, | ||
14746 | 49,0,327,3,50, | ||
14747 | 0,327,3,51,0, | ||
14748 | 327,3,52,0,327, | ||
14749 | 3,53,0,327,3, | ||
14750 | 54,0,327,3,55, | ||
14751 | 0,327,3,56,0, | ||
14752 | 327,3,57,0,327, | ||
14753 | 3,65,0,327,3, | ||
14754 | 66,0,327,3,67, | ||
14755 | 0,327,3,68,0, | ||
14756 | 327,3,69,0,327, | ||
14757 | 3,70,0,327,3, | ||
14758 | 71,0,327,3,72, | ||
14759 | 0,327,3,73,0, | ||
14760 | 327,3,74,0,327, | ||
14761 | 3,75,0,327,3, | ||
14762 | 76,0,327,3,77, | ||
14763 | 0,327,3,78,0, | ||
14764 | 327,3,79,0,327, | ||
14765 | 3,80,0,327,3, | ||
14766 | 81,0,327,3,82, | ||
14767 | 0,327,3,83,0, | ||
14768 | 327,3,84,0,327, | ||
14769 | 3,85,0,327,3, | ||
14770 | 86,0,327,3,87, | ||
14771 | 0,327,3,88,0, | ||
14772 | 327,3,89,0,327, | ||
14773 | 3,90,0,327,3, | ||
14774 | 95,0,327,3,97, | ||
14775 | 0,1125,12,1,13247, | ||
14776 | 1126,5,63,3,109, | ||
14777 | 0,327,3,110,0, | ||
14778 | 327,3,111,0,327, | ||
14779 | 3,112,0,327,3, | ||
14780 | 113,0,327,3,114, | ||
14781 | 0,327,3,115,0, | ||
14782 | 327,3,116,0,1127, | ||
14783 | 12,1,13282,1128,5, | ||
14784 | 63,3,109,0,327, | ||
14785 | 3,110,0,327,3, | ||
14786 | 111,0,327,3,112, | ||
14787 | 0,327,3,113,0, | ||
14788 | 327,3,114,0,327, | ||
14789 | 3,115,0,327,3, | ||
14790 | 116,0,327,3,117, | ||
14791 | 0,327,3,118,0, | ||
14792 | 327,3,119,0,327, | ||
14793 | 3,120,0,327,3, | ||
14794 | 121,0,327,3,122, | ||
14795 | 0,327,3,48,0, | ||
14796 | 327,3,49,0,327, | ||
14797 | 3,50,0,327,3, | ||
14798 | 51,0,327,3,52, | ||
14799 | 0,327,3,53,0, | ||
14800 | 327,3,54,0,327, | ||
14801 | 3,55,0,327,3, | ||
14802 | 56,0,327,3,57, | ||
14803 | 0,327,3,65,0, | ||
14804 | 327,3,66,0,327, | ||
14805 | 3,67,0,327,3, | ||
14806 | 68,0,327,3,69, | ||
14807 | 0,327,3,70,0, | ||
14808 | 327,3,71,0,327, | ||
14809 | 3,72,0,327,3, | ||
14810 | 73,0,327,3,74, | ||
14811 | 0,327,3,75,0, | ||
14812 | 327,3,76,0,327, | ||
14813 | 3,77,0,327,3, | ||
14814 | 78,0,327,3,79, | ||
14815 | 0,327,3,80,0, | ||
14816 | 327,3,81,0,327, | ||
14817 | 3,82,0,327,3, | ||
14818 | 83,0,327,3,84, | ||
14819 | 0,327,3,85,0, | ||
14820 | 327,3,86,0,327, | ||
14821 | 3,87,0,327,3, | ||
14822 | 88,0,327,3,89, | ||
14823 | 0,327,3,90,0, | ||
14824 | 327,3,95,0,327, | ||
14825 | 3,97,0,1129,12, | ||
14826 | 1,13325,1130,5,63, | ||
14827 | 3,109,0,327,3, | ||
14828 | 110,0,327,3,111, | ||
14829 | 0,327,3,112,0, | ||
14830 | 327,3,113,0,327, | ||
14831 | 3,114,0,327,3, | ||
14832 | 115,0,327,3,116, | ||
14833 | 0,327,3,117,0, | ||
14834 | 327,3,118,0,327, | ||
14835 | 3,119,0,327,3, | ||
14836 | 120,0,327,3,121, | ||
14837 | 0,327,3,122,0, | ||
14838 | 327,3,48,0,327, | ||
14839 | 3,49,0,327,3, | ||
14840 | 50,0,327,3,51, | ||
14841 | 0,327,3,52,0, | ||
14842 | 327,3,53,0,327, | ||
14843 | 3,54,0,327,3, | ||
14844 | 55,0,327,3,56, | ||
14845 | 0,327,3,57,0, | ||
14846 | 327,3,65,0,327, | ||
14847 | 3,66,0,327,3, | ||
14848 | 67,0,327,3,68, | ||
14849 | 0,327,3,69,0, | ||
14850 | 327,3,70,0,327, | ||
14851 | 3,71,0,327,3, | ||
14852 | 72,0,327,3,73, | ||
14853 | 0,327,3,74,0, | ||
14854 | 327,3,75,0,327, | ||
14855 | 3,76,0,327,3, | ||
14856 | 77,0,327,3,78, | ||
14857 | 0,327,3,79,0, | ||
14858 | 327,3,80,0,327, | ||
14859 | 3,81,0,327,3, | ||
14860 | 82,0,327,3,83, | ||
14861 | 0,327,3,84,0, | ||
14862 | 327,3,85,0,327, | ||
14863 | 3,86,0,327,3, | ||
14864 | 87,0,327,3,88, | ||
14865 | 0,327,3,89,0, | ||
14866 | 327,3,90,0,327, | ||
14867 | 3,95,0,327,3, | ||
14868 | 97,0,327,3,98, | ||
14869 | 0,327,3,99,0, | ||
14870 | 327,3,100,0,327, | ||
14871 | 3,101,0,327,3, | ||
14872 | 102,0,327,3,103, | ||
14873 | 0,327,3,104,0, | ||
14874 | 327,3,105,0,327, | ||
14875 | 3,106,0,327,3, | ||
14876 | 107,0,327,3,108, | ||
14877 | 0,327,1131,11,1, | ||
14878 | 705,0,1132,4,34, | ||
14879 | 82,0,69,0,77, | ||
14880 | 0,79,0,84,0, | ||
14881 | 69,0,95,0,68, | ||
14882 | 0,65,0,84,0, | ||
14883 | 65,0,95,0,69, | ||
14884 | 0,86,0,69,0, | ||
14885 | 78,0,84,0,1, | ||
14886 | -1,3,98,0,327, | ||
14887 | 3,99,0,327,3, | ||
14888 | 100,0,327,3,101, | ||
14889 | 0,327,3,102,0, | ||
14890 | 327,3,103,0,327, | ||
14891 | 3,104,0,327,3, | ||
14892 | 105,0,327,3,106, | ||
14893 | 0,327,3,107,0, | ||
14894 | 327,3,108,0,327, | ||
14895 | 1133,11,1,829,0, | ||
14896 | 330,1,-1,3,117, | ||
14897 | 0,327,3,118,0, | ||
14898 | 327,3,119,0,327, | ||
14899 | 3,120,0,327,3, | ||
14900 | 121,0,327,3,122, | ||
14901 | 0,327,3,48,0, | ||
14902 | 327,3,49,0,327, | ||
14903 | 3,50,0,327,3, | ||
14904 | 51,0,327,3,52, | ||
14905 | 0,327,3,53,0, | ||
14906 | 327,3,54,0,327, | ||
14907 | 3,55,0,327,3, | ||
14908 | 56,0,327,3,57, | ||
14909 | 0,327,3,65,0, | ||
14910 | 327,3,66,0,327, | ||
14911 | 3,67,0,327,3, | ||
14912 | 68,0,327,3,69, | ||
14913 | 0,327,3,70,0, | ||
14914 | 327,3,71,0,327, | ||
14915 | 3,72,0,327,3, | ||
14916 | 73,0,327,3,74, | ||
14917 | 0,327,3,75,0, | ||
14918 | 327,3,76,0,327, | ||
14919 | 3,77,0,327,3, | ||
14920 | 78,0,327,3,79, | ||
14921 | 0,327,3,80,0, | ||
14922 | 327,3,81,0,327, | ||
14923 | 3,82,0,327,3, | ||
14924 | 83,0,327,3,84, | ||
14925 | 0,327,3,85,0, | ||
14926 | 327,3,86,0,327, | ||
14927 | 3,87,0,327,3, | ||
14928 | 88,0,327,3,89, | ||
14929 | 0,327,3,90,0, | ||
14930 | 327,3,95,0,327, | ||
14931 | 3,97,0,327,3, | ||
14932 | 98,0,327,3,99, | ||
14933 | 0,327,3,100,0, | ||
14934 | 327,3,101,0,327, | ||
14935 | 3,102,0,327,3, | ||
14936 | 103,0,327,3,104, | ||
14937 | 0,327,3,105,0, | ||
14938 | 327,3,106,0,327, | ||
14939 | 3,107,0,327,3, | ||
14940 | 108,0,327,1134,11, | ||
14941 | 1,829,0,330,1, | ||
14942 | -1,3,98,0,327, | ||
14943 | 3,99,0,327,3, | ||
14944 | 100,0,327,3,101, | ||
14945 | 0,327,3,102,0, | ||
14946 | 327,3,103,0,327, | ||
14947 | 3,104,0,327,3, | ||
14948 | 105,0,327,3,106, | ||
14949 | 0,327,3,107,0, | ||
14950 | 327,3,108,0,327, | ||
14951 | 1135,11,1,829,0, | ||
14952 | 330,1,-1,3,101, | ||
14953 | 0,327,3,102,0, | ||
14954 | 327,3,103,0,327, | ||
14955 | 3,104,0,327,3, | ||
14956 | 105,0,327,3,106, | ||
14957 | 0,327,3,107,0, | ||
14958 | 327,3,108,0,327, | ||
14959 | 1136,11,1,829,0, | ||
14960 | 330,1,-1,3,97, | ||
14961 | 0,327,3,98,0, | ||
14962 | 327,3,99,0,327, | ||
14963 | 3,100,0,327,3, | ||
14964 | 101,0,327,3,102, | ||
14965 | 0,327,3,103,0, | ||
14966 | 327,3,104,0,327, | ||
14967 | 3,105,0,327,3, | ||
14968 | 106,0,327,3,107, | ||
14969 | 0,327,3,108,0, | ||
14970 | 327,1137,11,1,829, | ||
14971 | 0,330,1,-1,3, | ||
14972 | 102,0,327,3,103, | ||
14973 | 0,327,3,104,0, | ||
14974 | 327,3,105,0,327, | ||
14975 | 3,106,0,327,3, | ||
14976 | 107,0,327,3,108, | ||
14977 | 0,327,1138,11,1, | ||
14978 | 829,0,330,1,-1, | ||
14979 | 3,117,0,327,3, | ||
14980 | 118,0,327,3,119, | ||
14981 | 0,327,3,120,0, | ||
14982 | 327,3,121,0,327, | ||
14983 | 3,122,0,327,3, | ||
14984 | 48,0,327,3,49, | ||
14985 | 0,327,3,50,0, | ||
14986 | 327,3,51,0,327, | ||
14987 | 3,52,0,327,3, | ||
14988 | 53,0,327,3,54, | ||
14989 | 0,327,3,55,0, | ||
14990 | 327,3,56,0,327, | ||
14991 | 3,57,0,327,3, | ||
14992 | 65,0,327,3,66, | ||
14993 | 0,327,3,67,0, | ||
14994 | 327,3,68,0,327, | ||
14995 | 3,69,0,327,3, | ||
14996 | 70,0,327,3,71, | ||
14997 | 0,327,3,72,0, | ||
14998 | 327,3,73,0,327, | ||
14999 | 3,74,0,327,3, | ||
15000 | 75,0,327,3,76, | ||
15001 | 0,327,3,77,0, | ||
15002 | 327,3,78,0,327, | ||
15003 | 3,79,0,327,3, | ||
15004 | 80,0,327,3,81, | ||
15005 | 0,327,3,82,0, | ||
15006 | 327,3,83,0,327, | ||
15007 | 3,84,0,327,3, | ||
15008 | 85,0,327,3,86, | ||
15009 | 0,327,3,87,0, | ||
15010 | 327,3,88,0,327, | ||
15011 | 3,89,0,327,3, | ||
15012 | 90,0,327,3,95, | ||
15013 | 0,327,3,97,0, | ||
15014 | 327,3,98,0,327, | ||
15015 | 3,99,0,327,3, | ||
15016 | 100,0,327,3,101, | ||
15017 | 0,327,3,102,0, | ||
15018 | 327,3,103,0,327, | ||
15019 | 3,104,0,327,3, | ||
15020 | 105,0,327,3,106, | ||
15021 | 0,327,3,107,0, | ||
15022 | 327,3,108,0,327, | ||
15023 | 1139,11,1,829,0, | ||
15024 | 330,1,-1,3,112, | ||
15025 | 0,327,3,113,0, | ||
15026 | 327,3,114,0,327, | ||
15027 | 3,115,0,327,3, | ||
15028 | 116,0,327,3,117, | ||
15029 | 0,327,3,118,0, | ||
15030 | 327,3,119,0,327, | ||
15031 | 3,120,0,327,3, | ||
15032 | 121,0,327,3,122, | ||
15033 | 0,327,3,48,0, | ||
15034 | 327,3,49,0,327, | ||
15035 | 3,50,0,327,3, | ||
15036 | 51,0,327,3,52, | ||
15037 | 0,327,3,53,0, | ||
15038 | 327,3,54,0,327, | ||
15039 | 3,55,0,327,3, | ||
15040 | 56,0,327,3,57, | ||
15041 | 0,327,3,65,0, | ||
15042 | 327,3,66,0,327, | ||
15043 | 3,67,0,327,3, | ||
15044 | 68,0,327,3,69, | ||
15045 | 0,327,3,70,0, | ||
15046 | 327,3,71,0,327, | ||
15047 | 3,72,0,327,3, | ||
15048 | 73,0,327,3,74, | ||
15049 | 0,327,3,75,0, | ||
15050 | 327,3,76,0,327, | ||
15051 | 3,77,0,327,3, | ||
15052 | 78,0,327,3,79, | ||
15053 | 0,327,3,80,0, | ||
15054 | 327,3,81,0,327, | ||
15055 | 3,82,0,327,3, | ||
15056 | 83,0,327,3,84, | ||
15057 | 0,327,3,85,0, | ||
15058 | 327,3,86,0,327, | ||
15059 | 3,87,0,327,3, | ||
15060 | 88,0,327,3,89, | ||
15061 | 0,327,3,90,0, | ||
15062 | 327,3,95,0,327, | ||
15063 | 3,97,0,327,3, | ||
15064 | 98,0,327,3,99, | ||
15065 | 0,327,3,100,0, | ||
15066 | 327,3,101,0,327, | ||
15067 | 3,102,0,327,3, | ||
15068 | 103,0,327,3,104, | ||
15069 | 0,327,3,105,0, | ||
15070 | 327,3,106,0,327, | ||
15071 | 3,107,0,327,3, | ||
15072 | 108,0,327,1140,11, | ||
15073 | 1,829,0,330,1, | ||
15074 | -1,3,110,0,327, | ||
15075 | 3,111,0,327,3, | ||
15076 | 112,0,327,3,113, | ||
15077 | 0,327,3,114,0, | ||
15078 | 327,3,115,0,327, | ||
15079 | 3,116,0,1141,12, | ||
15080 | 1,14047,1142,5,63, | ||
15081 | 3,109,0,327,3, | ||
15082 | 110,0,327,3,111, | ||
15083 | 0,327,3,112,0, | ||
15084 | 327,3,113,0,327, | ||
15085 | 3,114,0,327,3, | ||
15086 | 115,0,327,3,116, | ||
15087 | 0,327,3,117,0, | ||
15088 | 1143,12,1,14083,1144, | ||
15089 | 5,63,3,109,0, | ||
15090 | 327,3,110,0,327, | ||
15091 | 3,111,0,327,3, | ||
15092 | 112,0,327,3,113, | ||
15093 | 0,327,3,114,0, | ||
15094 | 1145,12,1,14116,1146, | ||
15095 | 5,63,3,109,0, | ||
15096 | 327,3,110,0,1147, | ||
15097 | 12,1,14145,1148,5, | ||
15098 | 63,3,109,0,327, | ||
15099 | 3,110,0,327,3, | ||
15100 | 111,0,327,3,112, | ||
15101 | 0,327,3,113,0, | ||
15102 | 327,3,114,0,327, | ||
15103 | 3,115,0,327,3, | ||
15104 | 116,0,327,3,117, | ||
15105 | 0,327,3,118,0, | ||
15106 | 327,3,119,0,327, | ||
15107 | 3,120,0,327,3, | ||
15108 | 121,0,327,3,122, | ||
15109 | 0,327,3,48,0, | ||
15110 | 327,3,49,0,327, | ||
15111 | 3,50,0,327,3, | ||
15112 | 51,0,327,3,52, | ||
15113 | 0,327,3,53,0, | ||
15114 | 327,3,54,0,327, | ||
15115 | 3,55,0,327,3, | ||
15116 | 56,0,327,3,57, | ||
15117 | 0,327,3,65,0, | ||
15118 | 327,3,66,0,327, | ||
15119 | 3,67,0,327,3, | ||
15120 | 68,0,327,3,69, | ||
15121 | 0,327,3,70,0, | ||
15122 | 327,3,71,0,327, | ||
15123 | 3,72,0,327,3, | ||
15124 | 73,0,327,3,74, | ||
15125 | 0,327,3,75,0, | ||
15126 | 327,3,76,0,327, | ||
15127 | 3,77,0,327,3, | ||
15128 | 78,0,327,3,79, | ||
15129 | 0,327,3,80,0, | ||
15130 | 327,3,81,0,327, | ||
15131 | 3,82,0,327,3, | ||
15132 | 83,0,327,3,84, | ||
15133 | 0,327,3,85,0, | ||
15134 | 327,3,86,0,327, | ||
15135 | 3,87,0,327,3, | ||
15136 | 88,0,327,3,89, | ||
15137 | 0,327,3,90,0, | ||
15138 | 327,3,95,0,327, | ||
15139 | 3,97,0,327,3, | ||
15140 | 98,0,327,3,99, | ||
15141 | 0,327,3,100,0, | ||
15142 | 327,3,101,0,327, | ||
15143 | 3,102,0,327,3, | ||
15144 | 103,0,327,3,104, | ||
15145 | 0,327,3,105,0, | ||
15146 | 327,3,106,0,327, | ||
15147 | 3,107,0,327,3, | ||
15148 | 108,0,327,1149,11, | ||
15149 | 1,273,0,1150,4, | ||
15150 | 12,82,0,69,0, | ||
15151 | 84,0,85,0,82, | ||
15152 | 0,78,0,1,-1, | ||
15153 | 3,111,0,327,3, | ||
15154 | 112,0,327,3,113, | ||
15155 | 0,327,3,114,0, | ||
15156 | 327,3,115,0,327, | ||
15157 | 3,116,0,327,3, | ||
15158 | 117,0,327,3,118, | ||
15159 | 0,327,3,119,0, | ||
15160 | 327,3,120,0,327, | ||
15161 | 3,121,0,327,3, | ||
15162 | 122,0,327,3,48, | ||
15163 | 0,327,3,49,0, | ||
15164 | 327,3,50,0,327, | ||
15165 | 3,51,0,327,3, | ||
15166 | 52,0,327,3,53, | ||
15167 | 0,327,3,54,0, | ||
15168 | 327,3,55,0,327, | ||
15169 | 3,56,0,327,3, | ||
15170 | 57,0,327,3,65, | ||
15171 | 0,327,3,66,0, | ||
15172 | 327,3,67,0,327, | ||
15173 | 3,68,0,327,3, | ||
15174 | 69,0,327,3,70, | ||
15175 | 0,327,3,71,0, | ||
15176 | 327,3,72,0,327, | ||
15177 | 3,73,0,327,3, | ||
15178 | 74,0,327,3,75, | ||
15179 | 0,327,3,76,0, | ||
15180 | 327,3,77,0,327, | ||
15181 | 3,78,0,327,3, | ||
15182 | 79,0,327,3,80, | ||
15183 | 0,327,3,81,0, | ||
15184 | 327,3,82,0,327, | ||
15185 | 3,83,0,327,3, | ||
15186 | 84,0,327,3,85, | ||
15187 | 0,327,3,86,0, | ||
15188 | 327,3,87,0,327, | ||
15189 | 3,88,0,327,3, | ||
15190 | 89,0,327,3,90, | ||
15191 | 0,327,3,95,0, | ||
15192 | 327,3,97,0,327, | ||
15193 | 3,98,0,327,3, | ||
15194 | 99,0,327,3,100, | ||
15195 | 0,327,3,101,0, | ||
15196 | 327,3,102,0,327, | ||
15197 | 3,103,0,327,3, | ||
15198 | 104,0,327,3,105, | ||
15199 | 0,327,3,106,0, | ||
15200 | 327,3,107,0,327, | ||
15201 | 3,108,0,327,1151, | ||
15202 | 11,1,829,0,330, | ||
15203 | 1,-1,3,115,0, | ||
15204 | 327,3,116,0,327, | ||
15205 | 3,117,0,327,3, | ||
15206 | 118,0,327,3,119, | ||
15207 | 0,327,3,120,0, | ||
15208 | 327,3,121,0,327, | ||
15209 | 3,122,0,327,3, | ||
15210 | 48,0,327,3,49, | ||
15211 | 0,327,3,50,0, | ||
15212 | 327,3,51,0,327, | ||
15213 | 3,52,0,327,3, | ||
15214 | 53,0,327,3,54, | ||
15215 | 0,327,3,55,0, | ||
15216 | 327,3,56,0,327, | ||
15217 | 3,57,0,327,3, | ||
15218 | 65,0,327,3,66, | ||
15219 | 0,327,3,67,0, | ||
15220 | 327,3,68,0,327, | ||
15221 | 3,69,0,327,3, | ||
15222 | 70,0,327,3,71, | ||
15223 | 0,327,3,72,0, | ||
15224 | 327,3,73,0,327, | ||
15225 | 3,74,0,327,3, | ||
15226 | 75,0,327,3,76, | ||
15227 | 0,327,3,77,0, | ||
15228 | 327,3,78,0,327, | ||
15229 | 3,79,0,327,3, | ||
15230 | 80,0,327,3,81, | ||
15231 | 0,327,3,82,0, | ||
15232 | 327,3,83,0,327, | ||
15233 | 3,84,0,327,3, | ||
15234 | 85,0,327,3,86, | ||
15235 | 0,327,3,87,0, | ||
15236 | 327,3,88,0,327, | ||
15237 | 3,89,0,327,3, | ||
15238 | 90,0,327,3,95, | ||
15239 | 0,327,3,97,0, | ||
15240 | 327,3,98,0,327, | ||
15241 | 3,99,0,327,3, | ||
15242 | 100,0,327,3,101, | ||
15243 | 0,327,3,102,0, | ||
15244 | 327,3,103,0,327, | ||
15245 | 3,104,0,327,3, | ||
15246 | 105,0,327,3,106, | ||
15247 | 0,327,3,107,0, | ||
15248 | 327,3,108,0,327, | ||
15249 | 1152,11,1,829,0, | ||
15250 | 330,1,-1,3,118, | ||
15251 | 0,327,3,119,0, | ||
15252 | 327,3,120,0,327, | ||
15253 | 3,121,0,327,3, | ||
15254 | 122,0,327,3,48, | ||
15255 | 0,327,3,49,0, | ||
15256 | 327,3,50,0,327, | ||
15257 | 3,51,0,327,3, | ||
15258 | 52,0,327,3,53, | ||
15259 | 0,327,3,54,0, | ||
15260 | 327,3,55,0,327, | ||
15261 | 3,56,0,327,3, | ||
15262 | 57,0,327,3,65, | ||
15263 | 0,327,3,66,0, | ||
15264 | 327,3,67,0,327, | ||
15265 | 3,68,0,327,3, | ||
15266 | 69,0,327,3,70, | ||
15267 | 0,327,3,71,0, | ||
15268 | 327,3,72,0,327, | ||
15269 | 3,73,0,327,3, | ||
15270 | 74,0,327,3,75, | ||
15271 | 0,327,3,76,0, | ||
15272 | 327,3,77,0,327, | ||
15273 | 3,78,0,327,3, | ||
15274 | 79,0,327,3,80, | ||
15275 | 0,327,3,81,0, | ||
15276 | 327,3,82,0,327, | ||
15277 | 3,83,0,327,3, | ||
15278 | 84,0,327,3,85, | ||
15279 | 0,327,3,86,0, | ||
15280 | 327,3,87,0,327, | ||
15281 | 3,88,0,327,3, | ||
15282 | 89,0,327,3,90, | ||
15283 | 0,327,3,95,0, | ||
15284 | 327,3,97,0,327, | ||
15285 | 3,98,0,327,3, | ||
15286 | 99,0,327,3,100, | ||
15287 | 0,327,3,101,0, | ||
15288 | 327,3,102,0,327, | ||
15289 | 3,103,0,327,3, | ||
15290 | 104,0,327,3,105, | ||
15291 | 0,327,3,106,0, | ||
15292 | 327,3,107,0,327, | ||
15293 | 3,108,0,327,1153, | ||
15294 | 11,1,829,0,330, | ||
15295 | 1,-1,3,117,0, | ||
15296 | 327,3,118,0,327, | ||
15297 | 3,119,0,327,3, | ||
15298 | 120,0,327,3,121, | ||
15299 | 0,327,3,122,0, | ||
15300 | 327,3,48,0,327, | ||
15301 | 3,49,0,327,3, | ||
15302 | 50,0,327,3,51, | ||
15303 | 0,327,3,52,0, | ||
15304 | 327,3,53,0,327, | ||
15305 | 3,54,0,327,3, | ||
15306 | 55,0,327,3,56, | ||
15307 | 0,327,3,57,0, | ||
15308 | 327,3,65,0,327, | ||
15309 | 3,66,0,327,3, | ||
15310 | 67,0,327,3,68, | ||
15311 | 0,327,3,69,0, | ||
15312 | 327,3,70,0,327, | ||
15313 | 3,71,0,327,3, | ||
15314 | 72,0,327,3,73, | ||
15315 | 0,327,3,74,0, | ||
15316 | 327,3,75,0,327, | ||
15317 | 3,76,0,327,3, | ||
15318 | 77,0,327,3,78, | ||
15319 | 0,327,3,79,0, | ||
15320 | 327,3,80,0,327, | ||
15321 | 3,81,0,327,3, | ||
15322 | 82,0,327,3,83, | ||
15323 | 0,327,3,84,0, | ||
15324 | 327,3,85,0,327, | ||
15325 | 3,86,0,327,3, | ||
15326 | 87,0,327,3,88, | ||
15327 | 0,327,3,89,0, | ||
15328 | 327,3,90,0,327, | ||
15329 | 3,95,0,327,3, | ||
15330 | 97,0,327,3,98, | ||
15331 | 0,327,3,99,0, | ||
15332 | 327,3,100,0,327, | ||
15333 | 3,101,0,327,3, | ||
15334 | 102,0,327,3,103, | ||
15335 | 0,327,3,104,0, | ||
15336 | 327,3,105,0,327, | ||
15337 | 3,106,0,327,3, | ||
15338 | 107,0,327,3,108, | ||
15339 | 0,327,1154,11,1, | ||
15340 | 829,0,330,1,-1, | ||
15341 | 3,102,0,327,3, | ||
15342 | 103,0,327,3,104, | ||
15343 | 0,327,3,105,0, | ||
15344 | 327,3,106,0,327, | ||
15345 | 3,107,0,327,3, | ||
15346 | 108,0,327,1155,11, | ||
15347 | 1,829,0,330,1, | ||
15348 | -1,3,115,0,1156, | ||
15349 | 12,1,14686,1157,5, | ||
15350 | 63,3,109,0,327, | ||
15351 | 3,110,0,327,3, | ||
15352 | 111,0,327,3,112, | ||
15353 | 0,327,3,113,0, | ||
15354 | 327,3,114,0,327, | ||
15355 | 3,115,0,327,3, | ||
15356 | 116,0,1158,12,1, | ||
15357 | 14721,1159,5,63,3, | ||
15358 | 109,0,327,3,110, | ||
15359 | 0,327,3,111,0, | ||
15360 | 327,3,112,0,327, | ||
15361 | 3,113,0,327,3, | ||
15362 | 114,0,1160,12,1, | ||
15363 | 14754,1161,5,63,3, | ||
15364 | 109,0,327,3,110, | ||
15365 | 0,327,3,111,0, | ||
15366 | 327,3,112,0,327, | ||
15367 | 3,113,0,327,3, | ||
15368 | 114,0,327,3,115, | ||
15369 | 0,327,3,116,0, | ||
15370 | 327,3,117,0,327, | ||
15371 | 3,118,0,327,3, | ||
15372 | 119,0,327,3,120, | ||
15373 | 0,327,3,121,0, | ||
15374 | 327,3,122,0,327, | ||
15375 | 3,48,0,327,3, | ||
15376 | 49,0,327,3,50, | ||
15377 | 0,327,3,51,0, | ||
15378 | 327,3,52,0,327, | ||
15379 | 3,53,0,327,3, | ||
15380 | 54,0,327,3,55, | ||
15381 | 0,327,3,56,0, | ||
15382 | 327,3,57,0,327, | ||
15383 | 3,65,0,327,3, | ||
15384 | 66,0,327,3,67, | ||
15385 | 0,327,3,68,0, | ||
15386 | 327,3,69,0,327, | ||
15387 | 3,70,0,327,3, | ||
15388 | 71,0,327,3,72, | ||
15389 | 0,327,3,73,0, | ||
15390 | 327,3,74,0,327, | ||
15391 | 3,75,0,327,3, | ||
15392 | 76,0,327,3,77, | ||
15393 | 0,327,3,78,0, | ||
15394 | 327,3,79,0,327, | ||
15395 | 3,80,0,327,3, | ||
15396 | 81,0,327,3,82, | ||
15397 | 0,327,3,83,0, | ||
15398 | 327,3,84,0,327, | ||
15399 | 3,85,0,327,3, | ||
15400 | 86,0,327,3,87, | ||
15401 | 0,327,3,88,0, | ||
15402 | 327,3,89,0,327, | ||
15403 | 3,90,0,327,3, | ||
15404 | 95,0,327,3,97, | ||
15405 | 0,327,3,98,0, | ||
15406 | 327,3,99,0,327, | ||
15407 | 3,100,0,327,3, | ||
15408 | 101,0,327,3,102, | ||
15409 | 0,327,3,103,0, | ||
15410 | 327,3,104,0,327, | ||
15411 | 3,105,0,1162,12, | ||
15412 | 1,14805,1163,5,63, | ||
15413 | 3,109,0,327,3, | ||
15414 | 110,0,1164,12,1, | ||
15415 | 14834,1165,5,63,3, | ||
15416 | 109,0,327,3,110, | ||
15417 | 0,327,3,111,0, | ||
15418 | 327,3,112,0,327, | ||
15419 | 3,113,0,327,3, | ||
15420 | 114,0,327,3,115, | ||
15421 | 0,327,3,116,0, | ||
15422 | 327,3,117,0,327, | ||
15423 | 3,118,0,327,3, | ||
15424 | 119,0,327,3,120, | ||
15425 | 0,327,3,121,0, | ||
15426 | 327,3,122,0,327, | ||
15427 | 3,48,0,327,3, | ||
15428 | 49,0,327,3,50, | ||
15429 | 0,327,3,51,0, | ||
15430 | 327,3,52,0,327, | ||
15431 | 3,53,0,327,3, | ||
15432 | 54,0,327,3,55, | ||
15433 | 0,327,3,56,0, | ||
15434 | 327,3,57,0,327, | ||
15435 | 3,65,0,327,3, | ||
15436 | 66,0,327,3,67, | ||
15437 | 0,327,3,68,0, | ||
15438 | 327,3,69,0,327, | ||
15439 | 3,70,0,327,3, | ||
15440 | 71,0,327,3,72, | ||
15441 | 0,327,3,73,0, | ||
15442 | 327,3,74,0,327, | ||
15443 | 3,75,0,327,3, | ||
15444 | 76,0,327,3,77, | ||
15445 | 0,327,3,78,0, | ||
15446 | 327,3,79,0,327, | ||
15447 | 3,80,0,327,3, | ||
15448 | 81,0,327,3,82, | ||
15449 | 0,327,3,83,0, | ||
15450 | 327,3,84,0,327, | ||
15451 | 3,85,0,327,3, | ||
15452 | 86,0,327,3,87, | ||
15453 | 0,327,3,88,0, | ||
15454 | 327,3,89,0,327, | ||
15455 | 3,90,0,327,3, | ||
15456 | 95,0,327,3,97, | ||
15457 | 0,327,3,98,0, | ||
15458 | 327,3,99,0,327, | ||
15459 | 3,100,0,327,3, | ||
15460 | 101,0,327,3,102, | ||
15461 | 0,327,3,103,0, | ||
15462 | 1166,12,1,14883,1167, | ||
15463 | 5,63,3,109,0, | ||
15464 | 327,3,110,0,327, | ||
15465 | 3,111,0,327,3, | ||
15466 | 112,0,327,3,113, | ||
15467 | 0,327,3,114,0, | ||
15468 | 327,3,115,0,327, | ||
15469 | 3,116,0,327,3, | ||
15470 | 117,0,327,3,118, | ||
15471 | 0,327,3,119,0, | ||
15472 | 327,3,120,0,327, | ||
15473 | 3,121,0,327,3, | ||
15474 | 122,0,327,3,48, | ||
15475 | 0,327,3,49,0, | ||
15476 | 327,3,50,0,327, | ||
15477 | 3,51,0,327,3, | ||
15478 | 52,0,327,3,53, | ||
15479 | 0,327,3,54,0, | ||
15480 | 327,3,55,0,327, | ||
15481 | 3,56,0,327,3, | ||
15482 | 57,0,327,3,65, | ||
15483 | 0,327,3,66,0, | ||
15484 | 327,3,67,0,327, | ||
15485 | 3,68,0,327,3, | ||
15486 | 69,0,327,3,70, | ||
15487 | 0,327,3,71,0, | ||
15488 | 327,3,72,0,327, | ||
15489 | 3,73,0,327,3, | ||
15490 | 74,0,327,3,75, | ||
15491 | 0,327,3,76,0, | ||
15492 | 327,3,77,0,327, | ||
15493 | 3,78,0,327,3, | ||
15494 | 79,0,327,3,80, | ||
15495 | 0,327,3,81,0, | ||
15496 | 327,3,82,0,327, | ||
15497 | 3,83,0,327,3, | ||
15498 | 84,0,327,3,85, | ||
15499 | 0,327,3,86,0, | ||
15500 | 327,3,87,0,327, | ||
15501 | 3,88,0,327,3, | ||
15502 | 89,0,327,3,90, | ||
15503 | 0,327,3,95,0, | ||
15504 | 327,3,97,0,327, | ||
15505 | 3,98,0,327,3, | ||
15506 | 99,0,327,3,100, | ||
15507 | 0,327,3,101,0, | ||
15508 | 327,3,102,0,327, | ||
15509 | 3,103,0,327,3, | ||
15510 | 104,0,327,3,105, | ||
15511 | 0,327,3,106,0, | ||
15512 | 327,3,107,0,327, | ||
15513 | 3,108,0,327,1168, | ||
15514 | 11,1,303,0,1169, | ||
15515 | 4,22,83,0,84, | ||
15516 | 0,82,0,73,0, | ||
15517 | 78,0,71,0,95, | ||
15518 | 0,84,0,89,0, | ||
15519 | 80,0,69,0,1, | ||
15520 | -1,3,104,0,327, | ||
15521 | 3,105,0,327,3, | ||
15522 | 106,0,327,3,107, | ||
15523 | 0,327,3,108,0, | ||
15524 | 327,1170,11,1,829, | ||
15525 | 0,330,1,-1,3, | ||
15526 | 111,0,327,3,112, | ||
15527 | 0,327,3,113,0, | ||
15528 | 327,3,114,0,327, | ||
15529 | 3,115,0,327,3, | ||
15530 | 116,0,327,3,117, | ||
15531 | 0,327,3,118,0, | ||
15532 | 327,3,119,0,327, | ||
15533 | 3,120,0,327,3, | ||
15534 | 121,0,327,3,122, | ||
15535 | 0,327,3,48,0, | ||
15536 | 327,3,49,0,327, | ||
15537 | 3,50,0,327,3, | ||
15538 | 51,0,327,3,52, | ||
15539 | 0,327,3,53,0, | ||
15540 | 327,3,54,0,327, | ||
15541 | 3,55,0,327,3, | ||
15542 | 56,0,327,3,57, | ||
15543 | 0,327,3,65,0, | ||
15544 | 327,3,66,0,327, | ||
15545 | 3,67,0,327,3, | ||
15546 | 68,0,327,3,69, | ||
15547 | 0,327,3,70,0, | ||
15548 | 327,3,71,0,327, | ||
15549 | 3,72,0,327,3, | ||
15550 | 73,0,327,3,74, | ||
15551 | 0,327,3,75,0, | ||
15552 | 327,3,76,0,327, | ||
15553 | 3,77,0,327,3, | ||
15554 | 78,0,327,3,79, | ||
15555 | 0,327,3,80,0, | ||
15556 | 327,3,81,0,327, | ||
15557 | 3,82,0,327,3, | ||
15558 | 83,0,327,3,84, | ||
15559 | 0,327,3,85,0, | ||
15560 | 327,3,86,0,327, | ||
15561 | 3,87,0,327,3, | ||
15562 | 88,0,327,3,89, | ||
15563 | 0,327,3,90,0, | ||
15564 | 327,3,95,0,327, | ||
15565 | 3,97,0,327,3, | ||
15566 | 98,0,327,3,99, | ||
15567 | 0,327,3,100,0, | ||
15568 | 327,3,101,0,327, | ||
15569 | 3,102,0,327,3, | ||
15570 | 103,0,327,3,104, | ||
15571 | 0,327,3,105,0, | ||
15572 | 327,3,106,0,327, | ||
15573 | 3,107,0,327,3, | ||
15574 | 108,0,327,1171,11, | ||
15575 | 1,829,0,330,1, | ||
15576 | -1,3,106,0,327, | ||
15577 | 3,107,0,327,3, | ||
15578 | 108,0,327,1172,11, | ||
15579 | 1,829,0,330,1, | ||
15580 | -1,3,115,0,327, | ||
15581 | 3,116,0,327,3, | ||
15582 | 117,0,327,3,118, | ||
15583 | 0,327,3,119,0, | ||
15584 | 327,3,120,0,327, | ||
15585 | 3,121,0,327,3, | ||
15586 | 122,0,327,3,48, | ||
15587 | 0,327,3,49,0, | ||
15588 | 327,3,50,0,327, | ||
15589 | 3,51,0,327,3, | ||
15590 | 52,0,327,3,53, | ||
15591 | 0,327,3,54,0, | ||
15592 | 327,3,55,0,327, | ||
15593 | 3,56,0,327,3, | ||
15594 | 57,0,327,3,65, | ||
15595 | 0,327,3,66,0, | ||
15596 | 327,3,67,0,327, | ||
15597 | 3,68,0,327,3, | ||
15598 | 69,0,327,3,70, | ||
15599 | 0,327,3,71,0, | ||
15600 | 327,3,72,0,327, | ||
15601 | 3,73,0,327,3, | ||
15602 | 74,0,327,3,75, | ||
15603 | 0,327,3,76,0, | ||
15604 | 327,3,77,0,327, | ||
15605 | 3,78,0,327,3, | ||
15606 | 79,0,327,3,80, | ||
15607 | 0,327,3,81,0, | ||
15608 | 327,3,82,0,327, | ||
15609 | 3,83,0,327,3, | ||
15610 | 84,0,327,3,85, | ||
15611 | 0,327,3,86,0, | ||
15612 | 327,3,87,0,327, | ||
15613 | 3,88,0,327,3, | ||
15614 | 89,0,327,3,90, | ||
15615 | 0,327,3,95,0, | ||
15616 | 327,3,97,0,1173, | ||
15617 | 12,1,15244,1174,5, | ||
15618 | 63,3,109,0,327, | ||
15619 | 3,110,0,327,3, | ||
15620 | 111,0,327,3,112, | ||
15621 | 0,327,3,113,0, | ||
15622 | 327,3,114,0,327, | ||
15623 | 3,115,0,327,3, | ||
15624 | 116,0,1175,12,1, | ||
15625 | 15279,1176,5,63,3, | ||
15626 | 109,0,327,3,110, | ||
15627 | 0,327,3,111,0, | ||
15628 | 327,3,112,0,327, | ||
15629 | 3,113,0,327,3, | ||
15630 | 114,0,327,3,115, | ||
15631 | 0,327,3,116,0, | ||
15632 | 327,3,117,0,327, | ||
15633 | 3,118,0,327,3, | ||
15634 | 119,0,327,3,120, | ||
15635 | 0,327,3,121,0, | ||
15636 | 327,3,122,0,327, | ||
15637 | 3,48,0,327,3, | ||
15638 | 49,0,327,3,50, | ||
15639 | 0,327,3,51,0, | ||
15640 | 327,3,52,0,327, | ||
15641 | 3,53,0,327,3, | ||
15642 | 54,0,327,3,55, | ||
15643 | 0,327,3,56,0, | ||
15644 | 327,3,57,0,327, | ||
15645 | 3,65,0,327,3, | ||
15646 | 66,0,327,3,67, | ||
15647 | 0,327,3,68,0, | ||
15648 | 327,3,69,0,327, | ||
15649 | 3,70,0,327,3, | ||
15650 | 71,0,327,3,72, | ||
15651 | 0,327,3,73,0, | ||
15652 | 327,3,74,0,327, | ||
15653 | 3,75,0,327,3, | ||
15654 | 76,0,327,3,77, | ||
15655 | 0,327,3,78,0, | ||
15656 | 327,3,79,0,327, | ||
15657 | 3,80,0,327,3, | ||
15658 | 81,0,327,3,82, | ||
15659 | 0,327,3,83,0, | ||
15660 | 327,3,84,0,327, | ||
15661 | 3,85,0,327,3, | ||
15662 | 86,0,327,3,87, | ||
15663 | 0,327,3,88,0, | ||
15664 | 327,3,89,0,327, | ||
15665 | 3,90,0,327,3, | ||
15666 | 95,0,327,3,97, | ||
15667 | 0,327,3,98,0, | ||
15668 | 327,3,99,0,327, | ||
15669 | 3,100,0,327,3, | ||
15670 | 101,0,1177,12,1, | ||
15671 | 15326,1178,5,63,3, | ||
15672 | 109,0,327,3,110, | ||
15673 | 0,327,3,111,0, | ||
15674 | 327,3,112,0,327, | ||
15675 | 3,113,0,327,3, | ||
15676 | 114,0,327,3,115, | ||
15677 | 0,327,3,116,0, | ||
15678 | 327,3,117,0,327, | ||
15679 | 3,118,0,327,3, | ||
15680 | 119,0,327,3,120, | ||
15681 | 0,327,3,121,0, | ||
15682 | 327,3,122,0,327, | ||
15683 | 3,48,0,327,3, | ||
15684 | 49,0,327,3,50, | ||
15685 | 0,327,3,51,0, | ||
15686 | 327,3,52,0,327, | ||
15687 | 3,53,0,327,3, | ||
15688 | 54,0,327,3,55, | ||
15689 | 0,327,3,56,0, | ||
15690 | 327,3,57,0,327, | ||
15691 | 3,65,0,327,3, | ||
15692 | 66,0,327,3,67, | ||
15693 | 0,327,3,68,0, | ||
15694 | 327,3,69,0,327, | ||
15695 | 3,70,0,327,3, | ||
15696 | 71,0,327,3,72, | ||
15697 | 0,327,3,73,0, | ||
15698 | 327,3,74,0,327, | ||
15699 | 3,75,0,327,3, | ||
15700 | 76,0,327,3,77, | ||
15701 | 0,327,3,78,0, | ||
15702 | 327,3,79,0,327, | ||
15703 | 3,80,0,327,3, | ||
15704 | 81,0,327,3,82, | ||
15705 | 0,327,3,83,0, | ||
15706 | 327,3,84,0,327, | ||
15707 | 3,85,0,327,3, | ||
15708 | 86,0,327,3,87, | ||
15709 | 0,327,3,88,0, | ||
15710 | 327,3,89,0,327, | ||
15711 | 3,90,0,327,3, | ||
15712 | 95,0,1179,12,1, | ||
15713 | 15412,1180,5,63,3, | ||
15714 | 109,0,327,3,110, | ||
15715 | 0,327,3,111,0, | ||
15716 | 327,3,112,0,327, | ||
15717 | 3,113,0,327,3, | ||
15718 | 114,0,327,3,115, | ||
15719 | 0,327,3,116,0, | ||
15720 | 327,3,117,0,327, | ||
15721 | 3,118,0,327,3, | ||
15722 | 119,0,327,3,120, | ||
15723 | 0,327,3,121,0, | ||
15724 | 327,3,122,0,327, | ||
15725 | 3,48,0,327,3, | ||
15726 | 49,0,327,3,50, | ||
15727 | 0,327,3,51,0, | ||
15728 | 327,3,52,0,327, | ||
15729 | 3,53,0,327,3, | ||
15730 | 54,0,327,3,55, | ||
15731 | 0,327,3,56,0, | ||
15732 | 327,3,57,0,327, | ||
15733 | 3,65,0,327,3, | ||
15734 | 66,0,327,3,67, | ||
15735 | 0,327,3,68,0, | ||
15736 | 327,3,69,0,327, | ||
15737 | 3,70,0,327,3, | ||
15738 | 71,0,327,3,72, | ||
15739 | 0,327,3,73,0, | ||
15740 | 327,3,74,0,327, | ||
15741 | 3,75,0,327,3, | ||
15742 | 76,0,327,3,77, | ||
15743 | 0,327,3,78,0, | ||
15744 | 327,3,79,0,327, | ||
15745 | 3,80,0,327,3, | ||
15746 | 81,0,327,3,82, | ||
15747 | 0,327,3,83,0, | ||
15748 | 327,3,84,0,327, | ||
15749 | 3,85,0,327,3, | ||
15750 | 86,0,327,3,87, | ||
15751 | 0,327,3,88,0, | ||
15752 | 327,3,89,0,327, | ||
15753 | 3,90,0,327,3, | ||
15754 | 95,0,327,3,97, | ||
15755 | 0,327,3,98,0, | ||
15756 | 327,3,99,0,327, | ||
15757 | 3,100,0,327,3, | ||
15758 | 101,0,1181,12,1, | ||
15759 | 15459,1182,5,63,3, | ||
15760 | 109,0,327,3,110, | ||
15761 | 0,1183,12,1,15488, | ||
15762 | 1184,5,63,3,109, | ||
15763 | 0,327,3,110,0, | ||
15764 | 327,3,111,0,327, | ||
15765 | 3,112,0,327,3, | ||
15766 | 113,0,327,3,114, | ||
15767 | 0,327,3,115,0, | ||
15768 | 327,3,116,0,1185, | ||
15769 | 12,1,15523,1186,5, | ||
15770 | 63,3,109,0,327, | ||
15771 | 3,110,0,327,3, | ||
15772 | 111,0,327,3,112, | ||
15773 | 0,327,3,113,0, | ||
15774 | 327,3,114,0,1187, | ||
15775 | 12,1,15556,1188,5, | ||
15776 | 63,3,109,0,327, | ||
15777 | 3,110,0,327,3, | ||
15778 | 111,0,327,3,112, | ||
15779 | 0,327,3,113,0, | ||
15780 | 327,3,114,0,327, | ||
15781 | 3,115,0,327,3, | ||
15782 | 116,0,327,3,117, | ||
15783 | 0,327,3,118,0, | ||
15784 | 327,3,119,0,327, | ||
15785 | 3,120,0,327,3, | ||
15786 | 121,0,1189,12,1, | ||
15787 | 15596,1190,5,63,3, | ||
15788 | 109,0,327,3,110, | ||
15789 | 0,327,3,111,0, | ||
15790 | 327,3,112,0,327, | ||
15791 | 3,113,0,327,3, | ||
15792 | 114,0,327,3,115, | ||
15793 | 0,327,3,116,0, | ||
15794 | 327,3,117,0,327, | ||
15795 | 3,118,0,327,3, | ||
15796 | 119,0,327,3,120, | ||
15797 | 0,327,3,121,0, | ||
15798 | 327,3,122,0,327, | ||
15799 | 3,48,0,327,3, | ||
15800 | 49,0,327,3,50, | ||
15801 | 0,327,3,51,0, | ||
15802 | 327,3,52,0,327, | ||
15803 | 3,53,0,327,3, | ||
15804 | 54,0,327,3,55, | ||
15805 | 0,327,3,56,0, | ||
15806 | 327,3,57,0,327, | ||
15807 | 3,65,0,327,3, | ||
15808 | 66,0,327,3,67, | ||
15809 | 0,327,3,68,0, | ||
15810 | 327,3,69,0,327, | ||
15811 | 3,70,0,327,3, | ||
15812 | 71,0,327,3,72, | ||
15813 | 0,327,3,73,0, | ||
15814 | 327,3,74,0,327, | ||
15815 | 3,75,0,327,3, | ||
15816 | 76,0,327,3,77, | ||
15817 | 0,327,3,78,0, | ||
15818 | 327,3,79,0,327, | ||
15819 | 3,80,0,327,3, | ||
15820 | 81,0,327,3,82, | ||
15821 | 0,327,3,83,0, | ||
15822 | 327,3,84,0,327, | ||
15823 | 3,85,0,327,3, | ||
15824 | 86,0,327,3,87, | ||
15825 | 0,327,3,88,0, | ||
15826 | 327,3,89,0,327, | ||
15827 | 3,90,0,327,3, | ||
15828 | 95,0,327,3,97, | ||
15829 | 0,327,3,98,0, | ||
15830 | 327,3,99,0,327, | ||
15831 | 3,100,0,327,3, | ||
15832 | 101,0,327,3,102, | ||
15833 | 0,327,3,103,0, | ||
15834 | 327,3,104,0,327, | ||
15835 | 3,105,0,327,3, | ||
15836 | 106,0,327,3,107, | ||
15837 | 0,327,3,108,0, | ||
15838 | 327,1191,11,1,754, | ||
15839 | 0,1192,4,34,83, | ||
15840 | 0,84,0,65,0, | ||
15841 | 84,0,69,0,95, | ||
15842 | 0,69,0,78,0, | ||
15843 | 84,0,82,0,89, | ||
15844 | 0,95,0,69,0, | ||
15845 | 86,0,69,0,78, | ||
15846 | 0,84,0,1,-1, | ||
15847 | 3,122,0,327,3, | ||
15848 | 48,0,327,3,49, | ||
15849 | 0,327,3,50,0, | ||
15850 | 327,3,51,0,327, | ||
15851 | 3,52,0,327,3, | ||
15852 | 53,0,327,3,54, | ||
15853 | 0,327,3,55,0, | ||
15854 | 327,3,56,0,327, | ||
15855 | 3,57,0,327,3, | ||
15856 | 65,0,327,3,66, | ||
15857 | 0,327,3,67,0, | ||
15858 | 327,3,68,0,327, | ||
15859 | 3,69,0,327,3, | ||
15860 | 70,0,327,3,71, | ||
15861 | 0,327,3,72,0, | ||
15862 | 327,3,73,0,327, | ||
15863 | 3,74,0,327,3, | ||
15864 | 75,0,327,3,76, | ||
15865 | 0,327,3,77,0, | ||
15866 | 327,3,78,0,327, | ||
15867 | 3,79,0,327,3, | ||
15868 | 80,0,327,3,81, | ||
15869 | 0,327,3,82,0, | ||
15870 | 327,3,83,0,327, | ||
15871 | 3,84,0,327,3, | ||
15872 | 85,0,327,3,86, | ||
15873 | 0,327,3,87,0, | ||
15874 | 327,3,88,0,327, | ||
15875 | 3,89,0,327,3, | ||
15876 | 90,0,327,3,95, | ||
15877 | 0,327,3,97,0, | ||
15878 | 327,3,98,0,327, | ||
15879 | 3,99,0,327,3, | ||
15880 | 100,0,327,3,101, | ||
15881 | 0,327,3,102,0, | ||
15882 | 327,3,103,0,327, | ||
15883 | 3,104,0,327,3, | ||
15884 | 105,0,327,3,106, | ||
15885 | 0,327,3,107,0, | ||
15886 | 327,3,108,0,327, | ||
15887 | 1193,11,1,829,0, | ||
15888 | 330,1,-1,3,115, | ||
15889 | 0,327,3,116,0, | ||
15890 | 327,3,117,0,327, | ||
15891 | 3,118,0,327,3, | ||
15892 | 119,0,327,3,120, | ||
15893 | 0,327,3,121,0, | ||
15894 | 327,3,122,0,327, | ||
15895 | 3,48,0,327,3, | ||
15896 | 49,0,327,3,50, | ||
15897 | 0,327,3,51,0, | ||
15898 | 327,3,52,0,327, | ||
15899 | 3,53,0,327,3, | ||
15900 | 54,0,327,3,55, | ||
15901 | 0,327,3,56,0, | ||
15902 | 327,3,57,0,327, | ||
15903 | 3,65,0,327,3, | ||
15904 | 66,0,327,3,67, | ||
15905 | 0,327,3,68,0, | ||
15906 | 327,3,69,0,327, | ||
15907 | 3,70,0,327,3, | ||
15908 | 71,0,327,3,72, | ||
15909 | 0,327,3,73,0, | ||
15910 | 327,3,74,0,327, | ||
15911 | 3,75,0,327,3, | ||
15912 | 76,0,327,3,77, | ||
15913 | 0,327,3,78,0, | ||
15914 | 327,3,79,0,327, | ||
15915 | 3,80,0,327,3, | ||
15916 | 81,0,327,3,82, | ||
15917 | 0,327,3,83,0, | ||
15918 | 327,3,84,0,327, | ||
15919 | 3,85,0,327,3, | ||
15920 | 86,0,327,3,87, | ||
15921 | 0,327,3,88,0, | ||
15922 | 327,3,89,0,327, | ||
15923 | 3,90,0,327,3, | ||
15924 | 95,0,327,3,97, | ||
15925 | 0,327,3,98,0, | ||
15926 | 327,3,99,0,327, | ||
15927 | 3,100,0,327,3, | ||
15928 | 101,0,327,3,102, | ||
15929 | 0,327,3,103,0, | ||
15930 | 327,3,104,0,327, | ||
15931 | 3,105,0,327,3, | ||
15932 | 106,0,327,3,107, | ||
15933 | 0,327,3,108,0, | ||
15934 | 327,1194,11,1,829, | ||
15935 | 0,330,1,-1,3, | ||
15936 | 117,0,327,3,118, | ||
15937 | 0,327,3,119,0, | ||
15938 | 327,3,120,0,327, | ||
15939 | 3,121,0,327,3, | ||
15940 | 122,0,327,3,48, | ||
15941 | 0,327,3,49,0, | ||
15942 | 327,3,50,0,327, | ||
15943 | 3,51,0,327,3, | ||
15944 | 52,0,327,3,53, | ||
15945 | 0,327,3,54,0, | ||
15946 | 327,3,55,0,327, | ||
15947 | 3,56,0,327,3, | ||
15948 | 57,0,327,3,65, | ||
15949 | 0,327,3,66,0, | ||
15950 | 327,3,67,0,327, | ||
15951 | 3,68,0,327,3, | ||
15952 | 69,0,327,3,70, | ||
15953 | 0,327,3,71,0, | ||
15954 | 327,3,72,0,327, | ||
15955 | 3,73,0,327,3, | ||
15956 | 74,0,327,3,75, | ||
15957 | 0,327,3,76,0, | ||
15958 | 327,3,77,0,327, | ||
15959 | 3,78,0,327,3, | ||
15960 | 79,0,327,3,80, | ||
15961 | 0,327,3,81,0, | ||
15962 | 327,3,82,0,327, | ||
15963 | 3,83,0,327,3, | ||
15964 | 84,0,327,3,85, | ||
15965 | 0,327,3,86,0, | ||
15966 | 327,3,87,0,327, | ||
15967 | 3,88,0,327,3, | ||
15968 | 89,0,327,3,90, | ||
15969 | 0,327,3,95,0, | ||
15970 | 327,3,97,0,327, | ||
15971 | 3,98,0,327,3, | ||
15972 | 99,0,327,3,100, | ||
15973 | 0,327,3,101,0, | ||
15974 | 327,3,102,0,327, | ||
15975 | 3,103,0,327,3, | ||
15976 | 104,0,327,3,105, | ||
15977 | 0,327,3,106,0, | ||
15978 | 327,3,107,0,327, | ||
15979 | 3,108,0,327,1195, | ||
15980 | 11,1,829,0,330, | ||
15981 | 1,-1,3,111,0, | ||
15982 | 327,3,112,0,327, | ||
15983 | 3,113,0,327,3, | ||
15984 | 114,0,327,3,115, | ||
15985 | 0,327,3,116,0, | ||
15986 | 327,3,117,0,327, | ||
15987 | 3,118,0,327,3, | ||
15988 | 119,0,327,3,120, | ||
15989 | 0,1196,12,1,15978, | ||
15990 | 1197,5,63,3,109, | ||
15991 | 0,327,3,110,0, | ||
15992 | 327,3,111,0,327, | ||
15993 | 3,112,0,327,3, | ||
15994 | 113,0,327,3,114, | ||
15995 | 0,327,3,115,0, | ||
15996 | 327,3,116,0,327, | ||
15997 | 3,117,0,327,3, | ||
15998 | 118,0,327,3,119, | ||
15999 | 0,327,3,120,0, | ||
16000 | 327,3,121,0,327, | ||
16001 | 3,122,0,327,3, | ||
16002 | 48,0,327,3,49, | ||
16003 | 0,327,3,50,0, | ||
16004 | 327,3,51,0,327, | ||
16005 | 3,52,0,327,3, | ||
16006 | 53,0,327,3,54, | ||
16007 | 0,327,3,55,0, | ||
16008 | 327,3,56,0,327, | ||
16009 | 3,57,0,327,3, | ||
16010 | 65,0,327,3,66, | ||
16011 | 0,327,3,67,0, | ||
16012 | 327,3,68,0,327, | ||
16013 | 3,69,0,327,3, | ||
16014 | 70,0,327,3,71, | ||
16015 | 0,327,3,72,0, | ||
16016 | 327,3,73,0,327, | ||
16017 | 3,74,0,327,3, | ||
16018 | 75,0,327,3,76, | ||
16019 | 0,327,3,77,0, | ||
16020 | 327,3,78,0,327, | ||
16021 | 3,79,0,327,3, | ||
16022 | 80,0,327,3,81, | ||
16023 | 0,327,3,82,0, | ||
16024 | 327,3,83,0,327, | ||
16025 | 3,84,0,327,3, | ||
16026 | 85,0,327,3,86, | ||
16027 | 0,327,3,87,0, | ||
16028 | 327,3,88,0,327, | ||
16029 | 3,89,0,327,3, | ||
16030 | 90,0,327,3,95, | ||
16031 | 0,327,3,97,0, | ||
16032 | 327,3,98,0,327, | ||
16033 | 3,99,0,327,3, | ||
16034 | 100,0,327,3,101, | ||
16035 | 0,327,3,102,0, | ||
16036 | 327,3,103,0,327, | ||
16037 | 3,104,0,327,3, | ||
16038 | 105,0,1198,12,1, | ||
16039 | 16029,1199,5,63,3, | ||
16040 | 109,0,327,3,110, | ||
16041 | 0,327,3,111,0, | ||
16042 | 327,3,112,0,327, | ||
16043 | 3,113,0,327,3, | ||
16044 | 114,0,327,3,115, | ||
16045 | 0,327,3,116,0, | ||
16046 | 1200,12,1,16064,1201, | ||
16047 | 5,63,3,109,0, | ||
16048 | 327,3,110,0,327, | ||
16049 | 3,111,0,327,3, | ||
16050 | 112,0,327,3,113, | ||
16051 | 0,327,3,114,0, | ||
16052 | 327,3,115,0,327, | ||
16053 | 3,116,0,327,3, | ||
16054 | 117,0,327,3,118, | ||
16055 | 0,327,3,119,0, | ||
16056 | 327,3,120,0,327, | ||
16057 | 3,121,0,327,3, | ||
16058 | 122,0,327,3,48, | ||
16059 | 0,327,3,49,0, | ||
16060 | 327,3,50,0,327, | ||
16061 | 3,51,0,327,3, | ||
16062 | 52,0,327,3,53, | ||
16063 | 0,327,3,54,0, | ||
16064 | 327,3,55,0,327, | ||
16065 | 3,56,0,327,3, | ||
16066 | 57,0,327,3,65, | ||
16067 | 0,327,3,66,0, | ||
16068 | 327,3,67,0,327, | ||
16069 | 3,68,0,327,3, | ||
16070 | 69,0,327,3,70, | ||
16071 | 0,327,3,71,0, | ||
16072 | 327,3,72,0,327, | ||
16073 | 3,73,0,327,3, | ||
16074 | 74,0,327,3,75, | ||
16075 | 0,327,3,76,0, | ||
16076 | 327,3,77,0,327, | ||
16077 | 3,78,0,327,3, | ||
16078 | 79,0,327,3,80, | ||
16079 | 0,327,3,81,0, | ||
16080 | 327,3,82,0,327, | ||
16081 | 3,83,0,327,3, | ||
16082 | 84,0,327,3,85, | ||
16083 | 0,327,3,86,0, | ||
16084 | 327,3,87,0,327, | ||
16085 | 3,88,0,327,3, | ||
16086 | 89,0,327,3,90, | ||
16087 | 0,327,3,95,0, | ||
16088 | 327,3,97,0,327, | ||
16089 | 3,98,0,327,3, | ||
16090 | 99,0,327,3,100, | ||
16091 | 0,327,3,101,0, | ||
16092 | 327,3,102,0,327, | ||
16093 | 3,103,0,327,3, | ||
16094 | 104,0,327,3,105, | ||
16095 | 0,327,3,106,0, | ||
16096 | 327,3,107,0,327, | ||
16097 | 3,108,0,327,1202, | ||
16098 | 11,1,769,0,1203, | ||
16099 | 4,32,83,0,84, | ||
16100 | 0,65,0,84,0, | ||
16101 | 69,0,95,0,69, | ||
16102 | 0,88,0,73,0, | ||
16103 | 84,0,95,0,69, | ||
16104 | 0,86,0,69,0, | ||
16105 | 78,0,84,0,1, | ||
16106 | -1,3,117,0,327, | ||
16107 | 3,118,0,327,3, | ||
16108 | 119,0,327,3,120, | ||
16109 | 0,327,3,121,0, | ||
16110 | 327,3,122,0,327, | ||
16111 | 3,48,0,327,3, | ||
16112 | 49,0,327,3,50, | ||
16113 | 0,327,3,51,0, | ||
16114 | 327,3,52,0,327, | ||
16115 | 3,53,0,327,3, | ||
16116 | 54,0,327,3,55, | ||
16117 | 0,327,3,56,0, | ||
16118 | 327,3,57,0,327, | ||
16119 | 3,65,0,327,3, | ||
16120 | 66,0,327,3,67, | ||
16121 | 0,327,3,68,0, | ||
16122 | 327,3,69,0,327, | ||
16123 | 3,70,0,327,3, | ||
16124 | 71,0,327,3,72, | ||
16125 | 0,327,3,73,0, | ||
16126 | 327,3,74,0,327, | ||
16127 | 3,75,0,327,3, | ||
16128 | 76,0,327,3,77, | ||
16129 | 0,327,3,78,0, | ||
16130 | 327,3,79,0,327, | ||
16131 | 3,80,0,327,3, | ||
16132 | 81,0,327,3,82, | ||
16133 | 0,327,3,83,0, | ||
16134 | 327,3,84,0,327, | ||
16135 | 3,85,0,327,3, | ||
16136 | 86,0,327,3,87, | ||
16137 | 0,327,3,88,0, | ||
16138 | 327,3,89,0,327, | ||
16139 | 3,90,0,327,3, | ||
16140 | 95,0,327,3,97, | ||
16141 | 0,327,3,98,0, | ||
16142 | 327,3,99,0,327, | ||
16143 | 3,100,0,327,3, | ||
16144 | 101,0,327,3,102, | ||
16145 | 0,327,3,103,0, | ||
16146 | 327,3,104,0,327, | ||
16147 | 3,105,0,327,3, | ||
16148 | 106,0,327,3,107, | ||
16149 | 0,327,3,108,0, | ||
16150 | 327,1204,11,1,829, | ||
16151 | 0,330,1,-1,3, | ||
16152 | 106,0,327,3,107, | ||
16153 | 0,327,3,108,0, | ||
16154 | 327,1205,11,1,829, | ||
16155 | 0,330,1,-1,3, | ||
16156 | 121,0,327,3,122, | ||
16157 | 0,327,3,48,0, | ||
16158 | 327,3,49,0,327, | ||
16159 | 3,50,0,327,3, | ||
16160 | 51,0,327,3,52, | ||
16161 | 0,327,3,53,0, | ||
16162 | 327,3,54,0,327, | ||
16163 | 3,55,0,327,3, | ||
16164 | 56,0,327,3,57, | ||
16165 | 0,327,3,65,0, | ||
16166 | 327,3,66,0,327, | ||
16167 | 3,67,0,327,3, | ||
16168 | 68,0,327,3,69, | ||
16169 | 0,327,3,70,0, | ||
16170 | 327,3,71,0,327, | ||
16171 | 3,72,0,327,3, | ||
16172 | 73,0,327,3,74, | ||
16173 | 0,327,3,75,0, | ||
16174 | 327,3,76,0,327, | ||
16175 | 3,77,0,327,3, | ||
16176 | 78,0,327,3,79, | ||
16177 | 0,327,3,80,0, | ||
16178 | 327,3,81,0,327, | ||
16179 | 3,82,0,327,3, | ||
16180 | 83,0,327,3,84, | ||
16181 | 0,327,3,85,0, | ||
16182 | 327,3,86,0,327, | ||
16183 | 3,87,0,327,3, | ||
16184 | 88,0,327,3,89, | ||
16185 | 0,327,3,90,0, | ||
16186 | 327,3,95,0,327, | ||
16187 | 3,97,0,327,3, | ||
16188 | 98,0,327,3,99, | ||
16189 | 0,327,3,100,0, | ||
16190 | 327,3,101,0,327, | ||
16191 | 3,102,0,327,3, | ||
16192 | 103,0,327,3,104, | ||
16193 | 0,327,3,105,0, | ||
16194 | 327,3,106,0,327, | ||
16195 | 3,107,0,327,3, | ||
16196 | 108,0,327,1206,11, | ||
16197 | 1,829,0,330,1, | ||
16198 | -1,3,102,0,327, | ||
16199 | 3,103,0,327,3, | ||
16200 | 104,0,327,3,105, | ||
16201 | 0,327,3,106,0, | ||
16202 | 327,3,107,0,327, | ||
16203 | 3,108,0,327,1207, | ||
16204 | 11,1,829,0,330, | ||
16205 | 1,-1,3,97,0, | ||
16206 | 327,3,98,0,327, | ||
16207 | 3,99,0,327,3, | ||
16208 | 100,0,327,3,101, | ||
16209 | 0,327,3,102,0, | ||
16210 | 327,3,103,0,327, | ||
16211 | 3,104,0,327,3, | ||
16212 | 105,0,327,3,106, | ||
16213 | 0,327,3,107,0, | ||
16214 | 327,3,108,0,327, | ||
16215 | 1208,11,1,256,0, | ||
16216 | 1209,4,10,83,0, | ||
16217 | 84,0,65,0,84, | ||
16218 | 0,69,0,1,-1, | ||
16219 | 3,102,0,327,3, | ||
16220 | 103,0,327,3,104, | ||
16221 | 0,327,3,105,0, | ||
16222 | 327,3,106,0,327, | ||
16223 | 3,107,0,327,3, | ||
16224 | 108,0,327,1210,11, | ||
16225 | 1,829,0,330,1, | ||
16226 | -1,3,117,0,327, | ||
16227 | 3,118,0,327,3, | ||
16228 | 119,0,327,3,120, | ||
16229 | 0,327,3,121,0, | ||
16230 | 327,3,122,0,327, | ||
16231 | 3,48,0,327,3, | ||
16232 | 49,0,327,3,50, | ||
16233 | 0,327,3,51,0, | ||
16234 | 327,3,52,0,327, | ||
16235 | 3,53,0,327,3, | ||
16236 | 54,0,327,3,55, | ||
16237 | 0,327,3,56,0, | ||
16238 | 327,3,57,0,327, | ||
16239 | 3,65,0,327,3, | ||
16240 | 66,0,327,3,67, | ||
16241 | 0,327,3,68,0, | ||
16242 | 327,3,69,0,327, | ||
16243 | 3,70,0,327,3, | ||
16244 | 71,0,327,3,72, | ||
16245 | 0,327,3,73,0, | ||
16246 | 327,3,74,0,327, | ||
16247 | 3,75,0,327,3, | ||
16248 | 76,0,327,3,77, | ||
16249 | 0,327,3,78,0, | ||
16250 | 327,3,79,0,327, | ||
16251 | 3,80,0,327,3, | ||
16252 | 81,0,327,3,82, | ||
16253 | 0,327,3,83,0, | ||
16254 | 327,3,84,0,327, | ||
16255 | 3,85,0,327,3, | ||
16256 | 86,0,327,3,87, | ||
16257 | 0,327,3,88,0, | ||
16258 | 327,3,89,0,327, | ||
16259 | 3,90,0,327,3, | ||
16260 | 95,0,327,3,97, | ||
16261 | 0,327,3,98,0, | ||
16262 | 327,3,99,0,327, | ||
16263 | 3,100,0,327,3, | ||
16264 | 101,0,327,3,102, | ||
16265 | 0,327,3,103,0, | ||
16266 | 327,3,104,0,327, | ||
16267 | 3,105,0,327,3, | ||
16268 | 106,0,327,3,107, | ||
16269 | 0,327,3,108,0, | ||
16270 | 327,1211,11,1,829, | ||
16271 | 0,330,1,-1,3, | ||
16272 | 98,0,327,3,99, | ||
16273 | 0,327,3,100,0, | ||
16274 | 327,3,101,0,327, | ||
16275 | 3,102,0,327,3, | ||
16276 | 103,0,327,3,104, | ||
16277 | 0,327,3,105,0, | ||
16278 | 327,3,106,0,327, | ||
16279 | 3,107,0,327,3, | ||
16280 | 108,0,327,1212,11, | ||
16281 | 1,829,0,330,1, | ||
16282 | -1,3,117,0,327, | ||
16283 | 3,118,0,327,3, | ||
16284 | 119,0,327,3,120, | ||
16285 | 0,327,3,121,0, | ||
16286 | 327,3,122,0,327, | ||
16287 | 3,48,0,327,3, | ||
16288 | 49,0,327,3,50, | ||
16289 | 0,327,3,51,0, | ||
16290 | 327,3,52,0,327, | ||
16291 | 3,53,0,327,3, | ||
16292 | 54,0,327,3,55, | ||
16293 | 0,327,3,56,0, | ||
16294 | 327,3,57,0,327, | ||
16295 | 3,65,0,327,3, | ||
16296 | 66,0,327,3,67, | ||
16297 | 0,327,3,68,0, | ||
16298 | 327,3,69,0,327, | ||
16299 | 3,70,0,327,3, | ||
16300 | 71,0,327,3,72, | ||
16301 | 0,327,3,73,0, | ||
16302 | 327,3,74,0,327, | ||
16303 | 3,75,0,327,3, | ||
16304 | 76,0,327,3,77, | ||
16305 | 0,327,3,78,0, | ||
16306 | 327,3,79,0,327, | ||
16307 | 3,80,0,327,3, | ||
16308 | 81,0,327,3,82, | ||
16309 | 0,327,3,83,0, | ||
16310 | 327,3,84,0,327, | ||
16311 | 3,85,0,327,3, | ||
16312 | 86,0,327,3,87, | ||
16313 | 0,327,3,88,0, | ||
16314 | 327,3,89,0,327, | ||
16315 | 3,90,0,327,3, | ||
16316 | 95,0,327,3,97, | ||
16317 | 0,327,3,98,0, | ||
16318 | 327,3,99,0,327, | ||
16319 | 3,100,0,327,3, | ||
16320 | 101,0,1213,12,1, | ||
16321 | 16773,1214,5,63,3, | ||
16322 | 109,0,327,3,110, | ||
16323 | 0,1215,12,1,16802, | ||
16324 | 1216,5,63,3,109, | ||
16325 | 0,327,3,110,0, | ||
16326 | 327,3,111,0,327, | ||
16327 | 3,112,0,327,3, | ||
16328 | 113,0,327,3,114, | ||
16329 | 0,327,3,115,0, | ||
16330 | 1217,12,1,16836,1218, | ||
16331 | 5,63,3,109,0, | ||
16332 | 327,3,110,0,327, | ||
16333 | 3,111,0,1219,12, | ||
16334 | 1,16866,1220,5,63, | ||
16335 | 3,109,0,327,3, | ||
16336 | 110,0,327,3,111, | ||
16337 | 0,327,3,112,0, | ||
16338 | 327,3,113,0,327, | ||
16339 | 3,114,0,1221,12, | ||
16340 | 1,16899,1222,5,63, | ||
16341 | 3,109,0,327,3, | ||
16342 | 110,0,327,3,111, | ||
16343 | 0,327,3,112,0, | ||
16344 | 327,3,113,0,327, | ||
16345 | 3,114,0,327,3, | ||
16346 | 115,0,327,3,116, | ||
16347 | 0,327,3,117,0, | ||
16348 | 327,3,118,0,327, | ||
16349 | 3,119,0,327,3, | ||
16350 | 120,0,327,3,121, | ||
16351 | 0,327,3,122,0, | ||
16352 | 327,3,48,0,327, | ||
16353 | 3,49,0,327,3, | ||
16354 | 50,0,327,3,51, | ||
16355 | 0,327,3,52,0, | ||
16356 | 327,3,53,0,327, | ||
16357 | 3,54,0,327,3, | ||
16358 | 55,0,327,3,56, | ||
16359 | 0,327,3,57,0, | ||
16360 | 327,3,65,0,327, | ||
16361 | 3,66,0,327,3, | ||
16362 | 67,0,327,3,68, | ||
16363 | 0,327,3,69,0, | ||
16364 | 327,3,70,0,327, | ||
16365 | 3,71,0,327,3, | ||
16366 | 72,0,327,3,73, | ||
16367 | 0,327,3,74,0, | ||
16368 | 327,3,75,0,327, | ||
16369 | 3,76,0,327,3, | ||
16370 | 77,0,327,3,78, | ||
16371 | 0,327,3,79,0, | ||
16372 | 327,3,80,0,327, | ||
16373 | 3,81,0,327,3, | ||
16374 | 82,0,327,3,83, | ||
16375 | 0,327,3,84,0, | ||
16376 | 327,3,85,0,327, | ||
16377 | 3,86,0,327,3, | ||
16378 | 87,0,327,3,88, | ||
16379 | 0,327,3,89,0, | ||
16380 | 327,3,90,0,327, | ||
16381 | 3,95,0,327,3, | ||
16382 | 97,0,327,3,98, | ||
16383 | 0,327,3,99,0, | ||
16384 | 327,3,100,0,327, | ||
16385 | 3,101,0,327,3, | ||
16386 | 102,0,327,3,103, | ||
16387 | 0,327,3,104,0, | ||
16388 | 327,3,105,0,327, | ||
16389 | 3,106,0,327,3, | ||
16390 | 107,0,327,3,108, | ||
16391 | 0,327,1223,11,1, | ||
16392 | 744,0,1224,4,24, | ||
16393 | 83,0,69,0,78, | ||
16394 | 0,83,0,79,0, | ||
16395 | 82,0,95,0,69, | ||
16396 | 0,86,0,69,0, | ||
16397 | 78,0,84,0,1, | ||
16398 | -1,3,115,0,327, | ||
16399 | 3,116,0,327,3, | ||
16400 | 117,0,327,3,118, | ||
16401 | 0,327,3,119,0, | ||
16402 | 327,3,120,0,327, | ||
16403 | 3,121,0,327,3, | ||
16404 | 122,0,327,3,48, | ||
16405 | 0,327,3,49,0, | ||
16406 | 327,3,50,0,327, | ||
16407 | 3,51,0,327,3, | ||
16408 | 52,0,327,3,53, | ||
16409 | 0,327,3,54,0, | ||
16410 | 327,3,55,0,327, | ||
16411 | 3,56,0,327,3, | ||
16412 | 57,0,327,3,65, | ||
16413 | 0,327,3,66,0, | ||
16414 | 327,3,67,0,327, | ||
16415 | 3,68,0,327,3, | ||
16416 | 69,0,327,3,70, | ||
16417 | 0,327,3,71,0, | ||
16418 | 327,3,72,0,327, | ||
16419 | 3,73,0,327,3, | ||
16420 | 74,0,327,3,75, | ||
16421 | 0,327,3,76,0, | ||
16422 | 327,3,77,0,327, | ||
16423 | 3,78,0,327,3, | ||
16424 | 79,0,327,3,80, | ||
16425 | 0,327,3,81,0, | ||
16426 | 327,3,82,0,327, | ||
16427 | 3,83,0,327,3, | ||
16428 | 84,0,327,3,85, | ||
16429 | 0,327,3,86,0, | ||
16430 | 327,3,87,0,327, | ||
16431 | 3,88,0,327,3, | ||
16432 | 89,0,327,3,90, | ||
16433 | 0,327,3,95,0, | ||
16434 | 327,3,97,0,327, | ||
16435 | 3,98,0,327,3, | ||
16436 | 99,0,327,3,100, | ||
16437 | 0,327,3,101,0, | ||
16438 | 327,3,102,0,327, | ||
16439 | 3,103,0,327,3, | ||
16440 | 104,0,327,3,105, | ||
16441 | 0,327,3,106,0, | ||
16442 | 327,3,107,0,327, | ||
16443 | 3,108,0,327,1225, | ||
16444 | 11,1,829,0,330, | ||
16445 | 1,-1,3,112,0, | ||
16446 | 327,3,113,0,327, | ||
16447 | 3,114,0,327,3, | ||
16448 | 115,0,327,3,116, | ||
16449 | 0,327,3,117,0, | ||
16450 | 327,3,118,0,327, | ||
16451 | 3,119,0,327,3, | ||
16452 | 120,0,327,3,121, | ||
16453 | 0,327,3,122,0, | ||
16454 | 327,3,48,0,327, | ||
16455 | 3,49,0,327,3, | ||
16456 | 50,0,327,3,51, | ||
16457 | 0,327,3,52,0, | ||
16458 | 327,3,53,0,327, | ||
16459 | 3,54,0,327,3, | ||
16460 | 55,0,327,3,56, | ||
16461 | 0,327,3,57,0, | ||
16462 | 327,3,65,0,327, | ||
16463 | 3,66,0,327,3, | ||
16464 | 67,0,327,3,68, | ||
16465 | 0,327,3,69,0, | ||
16466 | 327,3,70,0,327, | ||
16467 | 3,71,0,327,3, | ||
16468 | 72,0,327,3,73, | ||
16469 | 0,327,3,74,0, | ||
16470 | 327,3,75,0,327, | ||
16471 | 3,76,0,327,3, | ||
16472 | 77,0,327,3,78, | ||
16473 | 0,327,3,79,0, | ||
16474 | 327,3,80,0,327, | ||
16475 | 3,81,0,327,3, | ||
16476 | 82,0,327,3,83, | ||
16477 | 0,327,3,84,0, | ||
16478 | 327,3,85,0,327, | ||
16479 | 3,86,0,327,3, | ||
16480 | 87,0,327,3,88, | ||
16481 | 0,327,3,89,0, | ||
16482 | 327,3,90,0,327, | ||
16483 | 3,95,0,327,3, | ||
16484 | 97,0,327,3,98, | ||
16485 | 0,327,3,99,0, | ||
16486 | 327,3,100,0,327, | ||
16487 | 3,101,0,327,3, | ||
16488 | 102,0,327,3,103, | ||
16489 | 0,327,3,104,0, | ||
16490 | 327,3,105,0,327, | ||
16491 | 3,106,0,327,3, | ||
16492 | 107,0,327,3,108, | ||
16493 | 0,327,1226,11,1, | ||
16494 | 829,0,330,1,-1, | ||
16495 | 3,116,0,327,3, | ||
16496 | 117,0,327,3,118, | ||
16497 | 0,327,3,119,0, | ||
16498 | 327,3,120,0,327, | ||
16499 | 3,121,0,327,3, | ||
16500 | 122,0,327,3,48, | ||
16501 | 0,327,3,49,0, | ||
16502 | 327,3,50,0,327, | ||
16503 | 3,51,0,327,3, | ||
16504 | 52,0,327,3,53, | ||
16505 | 0,327,3,54,0, | ||
16506 | 327,3,55,0,327, | ||
16507 | 3,56,0,327,3, | ||
16508 | 57,0,327,3,65, | ||
16509 | 0,327,3,66,0, | ||
16510 | 327,3,67,0,327, | ||
16511 | 3,68,0,327,3, | ||
16512 | 69,0,327,3,70, | ||
16513 | 0,327,3,71,0, | ||
16514 | 327,3,72,0,327, | ||
16515 | 3,73,0,327,3, | ||
16516 | 74,0,327,3,75, | ||
16517 | 0,327,3,76,0, | ||
16518 | 327,3,77,0,327, | ||
16519 | 3,78,0,327,3, | ||
16520 | 79,0,327,3,80, | ||
16521 | 0,327,3,81,0, | ||
16522 | 327,3,82,0,327, | ||
16523 | 3,83,0,327,3, | ||
16524 | 84,0,327,3,85, | ||
16525 | 0,327,3,86,0, | ||
16526 | 327,3,87,0,327, | ||
16527 | 3,88,0,327,3, | ||
16528 | 89,0,327,3,90, | ||
16529 | 0,327,3,95,0, | ||
16530 | 327,3,97,0,327, | ||
16531 | 3,98,0,327,3, | ||
16532 | 99,0,327,3,100, | ||
16533 | 0,327,3,101,0, | ||
16534 | 327,3,102,0,327, | ||
16535 | 3,103,0,327,3, | ||
16536 | 104,0,327,3,105, | ||
16537 | 0,327,3,106,0, | ||
16538 | 327,3,107,0,327, | ||
16539 | 3,108,0,327,1227, | ||
16540 | 11,1,829,0,330, | ||
16541 | 1,-1,3,111,0, | ||
16542 | 327,3,112,0,327, | ||
16543 | 3,113,0,327,3, | ||
16544 | 114,0,327,3,115, | ||
16545 | 0,327,3,116,0, | ||
16546 | 327,3,117,0,327, | ||
16547 | 3,118,0,327,3, | ||
16548 | 119,0,327,3,120, | ||
16549 | 0,327,3,121,0, | ||
16550 | 327,3,122,0,327, | ||
16551 | 3,48,0,327,3, | ||
16552 | 49,0,327,3,50, | ||
16553 | 0,327,3,51,0, | ||
16554 | 327,3,52,0,327, | ||
16555 | 3,53,0,327,3, | ||
16556 | 54,0,327,3,55, | ||
16557 | 0,327,3,56,0, | ||
16558 | 327,3,57,0,327, | ||
16559 | 3,65,0,327,3, | ||
16560 | 66,0,327,3,67, | ||
16561 | 0,327,3,68,0, | ||
16562 | 327,3,69,0,327, | ||
16563 | 3,70,0,327,3, | ||
16564 | 71,0,327,3,72, | ||
16565 | 0,327,3,73,0, | ||
16566 | 327,3,74,0,327, | ||
16567 | 3,75,0,327,3, | ||
16568 | 76,0,327,3,77, | ||
16569 | 0,327,3,78,0, | ||
16570 | 327,3,79,0,327, | ||
16571 | 3,80,0,327,3, | ||
16572 | 81,0,327,3,82, | ||
16573 | 0,327,3,83,0, | ||
16574 | 327,3,84,0,327, | ||
16575 | 3,85,0,327,3, | ||
16576 | 86,0,327,3,87, | ||
16577 | 0,327,3,88,0, | ||
16578 | 327,3,89,0,327, | ||
16579 | 3,90,0,327,3, | ||
16580 | 95,0,327,3,97, | ||
16581 | 0,327,3,98,0, | ||
16582 | 327,3,99,0,327, | ||
16583 | 3,100,0,327,3, | ||
16584 | 101,0,327,3,102, | ||
16585 | 0,327,3,103,0, | ||
16586 | 327,3,104,0,327, | ||
16587 | 3,105,0,327,3, | ||
16588 | 106,0,327,3,107, | ||
16589 | 0,327,3,108,0, | ||
16590 | 327,1228,11,1,829, | ||
16591 | 0,330,1,-1,3, | ||
16592 | 102,0,327,3,103, | ||
16593 | 0,327,3,104,0, | ||
16594 | 327,3,105,0,327, | ||
16595 | 3,106,0,327,3, | ||
16596 | 107,0,327,3,108, | ||
16597 | 0,327,1229,11,1, | ||
16598 | 829,0,330,1,-1, | ||
16599 | 3,116,0,1230,12, | ||
16600 | 1,17447,1231,5,63, | ||
16601 | 3,109,0,327,3, | ||
16602 | 110,0,327,3,111, | ||
16603 | 0,1232,12,1,17477, | ||
16604 | 1233,5,63,3,109, | ||
16605 | 0,327,3,110,0, | ||
16606 | 327,3,111,0,327, | ||
16607 | 3,112,0,327,3, | ||
16608 | 113,0,327,3,114, | ||
16609 | 0,327,3,115,0, | ||
16610 | 327,3,116,0,327, | ||
16611 | 3,117,0,1234,12, | ||
16612 | 1,17513,1235,5,63, | ||
16613 | 3,109,0,327,3, | ||
16614 | 110,0,327,3,111, | ||
16615 | 0,327,3,112,0, | ||
16616 | 327,3,113,0,327, | ||
16617 | 3,114,0,327,3, | ||
16618 | 115,0,327,3,116, | ||
16619 | 0,327,3,117,0, | ||
16620 | 327,3,118,0,327, | ||
16621 | 3,119,0,327,3, | ||
16622 | 120,0,327,3,121, | ||
16623 | 0,327,3,122,0, | ||
16624 | 327,3,48,0,327, | ||
16625 | 3,49,0,327,3, | ||
16626 | 50,0,327,3,51, | ||
16627 | 0,327,3,52,0, | ||
16628 | 327,3,53,0,327, | ||
16629 | 3,54,0,327,3, | ||
16630 | 55,0,327,3,56, | ||
16631 | 0,327,3,57,0, | ||
16632 | 327,3,65,0,327, | ||
16633 | 3,66,0,327,3, | ||
16634 | 67,0,327,3,68, | ||
16635 | 0,327,3,69,0, | ||
16636 | 327,3,70,0,327, | ||
16637 | 3,71,0,327,3, | ||
16638 | 72,0,327,3,73, | ||
16639 | 0,327,3,74,0, | ||
16640 | 327,3,75,0,327, | ||
16641 | 3,76,0,327,3, | ||
16642 | 77,0,327,3,78, | ||
16643 | 0,327,3,79,0, | ||
16644 | 327,3,80,0,327, | ||
16645 | 3,81,0,327,3, | ||
16646 | 82,0,327,3,83, | ||
16647 | 0,327,3,84,0, | ||
16648 | 327,3,85,0,327, | ||
16649 | 3,86,0,327,3, | ||
16650 | 87,0,327,3,88, | ||
16651 | 0,327,3,89,0, | ||
16652 | 327,3,90,0,327, | ||
16653 | 3,95,0,327,3, | ||
16654 | 97,0,327,3,98, | ||
16655 | 0,327,3,99,0, | ||
16656 | 1236,12,1,17558,1237, | ||
16657 | 5,63,3,109,0, | ||
16658 | 327,3,110,0,327, | ||
16659 | 3,111,0,327,3, | ||
16660 | 112,0,327,3,113, | ||
16661 | 0,327,3,114,0, | ||
16662 | 327,3,115,0,327, | ||
16663 | 3,116,0,327,3, | ||
16664 | 117,0,327,3,118, | ||
16665 | 0,327,3,119,0, | ||
16666 | 327,3,120,0,327, | ||
16667 | 3,121,0,327,3, | ||
16668 | 122,0,327,3,48, | ||
16669 | 0,327,3,49,0, | ||
16670 | 327,3,50,0,327, | ||
16671 | 3,51,0,327,3, | ||
16672 | 52,0,327,3,53, | ||
16673 | 0,327,3,54,0, | ||
16674 | 327,3,55,0,327, | ||
16675 | 3,56,0,327,3, | ||
16676 | 57,0,327,3,65, | ||
16677 | 0,327,3,66,0, | ||
16678 | 327,3,67,0,327, | ||
16679 | 3,68,0,327,3, | ||
16680 | 69,0,327,3,70, | ||
16681 | 0,327,3,71,0, | ||
16682 | 327,3,72,0,327, | ||
16683 | 3,73,0,327,3, | ||
16684 | 74,0,327,3,75, | ||
16685 | 0,327,3,76,0, | ||
16686 | 327,3,77,0,327, | ||
16687 | 3,78,0,327,3, | ||
16688 | 79,0,327,3,80, | ||
16689 | 0,327,3,81,0, | ||
16690 | 327,3,82,0,327, | ||
16691 | 3,83,0,327,3, | ||
16692 | 84,0,327,3,85, | ||
16693 | 0,327,3,86,0, | ||
16694 | 327,3,87,0,327, | ||
16695 | 3,88,0,327,3, | ||
16696 | 89,0,327,3,90, | ||
16697 | 0,327,3,95,0, | ||
16698 | 327,3,97,0,327, | ||
16699 | 3,98,0,327,3, | ||
16700 | 99,0,327,3,100, | ||
16701 | 0,327,3,101,0, | ||
16702 | 327,3,102,0,327, | ||
16703 | 3,103,0,327,3, | ||
16704 | 104,0,1238,12,1, | ||
16705 | 17608,1239,5,63,3, | ||
16706 | 109,0,327,3,110, | ||
16707 | 0,327,3,111,0, | ||
16708 | 327,3,112,0,327, | ||
16709 | 3,113,0,327,3, | ||
16710 | 114,0,327,3,115, | ||
16711 | 0,327,3,116,0, | ||
16712 | 327,3,117,0,327, | ||
16713 | 3,118,0,327,3, | ||
16714 | 119,0,327,3,120, | ||
16715 | 0,327,3,121,0, | ||
16716 | 327,3,122,0,327, | ||
16717 | 3,48,0,327,3, | ||
16718 | 49,0,327,3,50, | ||
16719 | 0,327,3,51,0, | ||
16720 | 327,3,52,0,327, | ||
16721 | 3,53,0,327,3, | ||
16722 | 54,0,327,3,55, | ||
16723 | 0,327,3,56,0, | ||
16724 | 327,3,57,0,327, | ||
16725 | 3,65,0,327,3, | ||
16726 | 66,0,327,3,67, | ||
16727 | 0,327,3,68,0, | ||
16728 | 327,3,69,0,327, | ||
16729 | 3,70,0,327,3, | ||
16730 | 71,0,327,3,72, | ||
16731 | 0,327,3,73,0, | ||
16732 | 327,3,74,0,327, | ||
16733 | 3,75,0,327,3, | ||
16734 | 76,0,327,3,77, | ||
16735 | 0,327,3,78,0, | ||
16736 | 327,3,79,0,327, | ||
16737 | 3,80,0,327,3, | ||
16738 | 81,0,327,3,82, | ||
16739 | 0,327,3,83,0, | ||
16740 | 327,3,84,0,327, | ||
16741 | 3,85,0,327,3, | ||
16742 | 86,0,327,3,87, | ||
16743 | 0,327,3,88,0, | ||
16744 | 327,3,89,0,327, | ||
16745 | 3,90,0,327,3, | ||
16746 | 95,0,1240,12,1, | ||
16747 | 17694,1241,5,63,3, | ||
16748 | 109,0,327,3,110, | ||
16749 | 0,327,3,111,0, | ||
16750 | 327,3,112,0,327, | ||
16751 | 3,113,0,327,3, | ||
16752 | 114,0,327,3,115, | ||
16753 | 0,1242,12,1,17728, | ||
16754 | 1243,5,63,3,109, | ||
16755 | 0,327,3,110,0, | ||
16756 | 327,3,111,0,327, | ||
16757 | 3,112,0,327,3, | ||
16758 | 113,0,327,3,114, | ||
16759 | 0,327,3,115,0, | ||
16760 | 327,3,116,0,1244, | ||
16761 | 12,1,17763,1245,5, | ||
16762 | 63,3,109,0,327, | ||
16763 | 3,110,0,327,3, | ||
16764 | 111,0,327,3,112, | ||
16765 | 0,327,3,113,0, | ||
16766 | 327,3,114,0,327, | ||
16767 | 3,115,0,327,3, | ||
16768 | 116,0,327,3,117, | ||
16769 | 0,327,3,118,0, | ||
16770 | 327,3,119,0,327, | ||
16771 | 3,120,0,327,3, | ||
16772 | 121,0,327,3,122, | ||
16773 | 0,327,3,48,0, | ||
16774 | 327,3,49,0,327, | ||
16775 | 3,50,0,327,3, | ||
16776 | 51,0,327,3,52, | ||
16777 | 0,327,3,53,0, | ||
16778 | 327,3,54,0,327, | ||
16779 | 3,55,0,327,3, | ||
16780 | 56,0,327,3,57, | ||
16781 | 0,327,3,65,0, | ||
16782 | 327,3,66,0,327, | ||
16783 | 3,67,0,327,3, | ||
16784 | 68,0,327,3,69, | ||
16785 | 0,327,3,70,0, | ||
16786 | 327,3,71,0,327, | ||
16787 | 3,72,0,327,3, | ||
16788 | 73,0,327,3,74, | ||
16789 | 0,327,3,75,0, | ||
16790 | 327,3,76,0,327, | ||
16791 | 3,77,0,327,3, | ||
16792 | 78,0,327,3,79, | ||
16793 | 0,327,3,80,0, | ||
16794 | 327,3,81,0,327, | ||
16795 | 3,82,0,327,3, | ||
16796 | 83,0,327,3,84, | ||
16797 | 0,327,3,85,0, | ||
16798 | 327,3,86,0,327, | ||
16799 | 3,87,0,327,3, | ||
16800 | 88,0,327,3,89, | ||
16801 | 0,327,3,90,0, | ||
16802 | 327,3,95,0,327, | ||
16803 | 3,97,0,1246,12, | ||
16804 | 1,17806,1247,5,63, | ||
16805 | 3,109,0,327,3, | ||
16806 | 110,0,327,3,111, | ||
16807 | 0,327,3,112,0, | ||
16808 | 327,3,113,0,327, | ||
16809 | 3,114,0,1248,12, | ||
16810 | 1,17839,1249,5,63, | ||
16811 | 3,109,0,327,3, | ||
16812 | 110,0,327,3,111, | ||
16813 | 0,327,3,112,0, | ||
16814 | 327,3,113,0,327, | ||
16815 | 3,114,0,327,3, | ||
16816 | 115,0,327,3,116, | ||
16817 | 0,1250,12,1,17874, | ||
16818 | 1251,5,63,3,109, | ||
16819 | 0,327,3,110,0, | ||
16820 | 327,3,111,0,327, | ||
16821 | 3,112,0,327,3, | ||
16822 | 113,0,327,3,114, | ||
16823 | 0,327,3,115,0, | ||
16824 | 327,3,116,0,327, | ||
16825 | 3,117,0,327,3, | ||
16826 | 118,0,327,3,119, | ||
16827 | 0,327,3,120,0, | ||
16828 | 327,3,121,0,327, | ||
16829 | 3,122,0,327,3, | ||
16830 | 48,0,327,3,49, | ||
16831 | 0,327,3,50,0, | ||
16832 | 327,3,51,0,327, | ||
16833 | 3,52,0,327,3, | ||
16834 | 53,0,327,3,54, | ||
16835 | 0,327,3,55,0, | ||
16836 | 327,3,56,0,327, | ||
16837 | 3,57,0,327,3, | ||
16838 | 65,0,327,3,66, | ||
16839 | 0,327,3,67,0, | ||
16840 | 327,3,68,0,327, | ||
16841 | 3,69,0,327,3, | ||
16842 | 70,0,327,3,71, | ||
16843 | 0,327,3,72,0, | ||
16844 | 327,3,73,0,327, | ||
16845 | 3,74,0,327,3, | ||
16846 | 75,0,327,3,76, | ||
16847 | 0,327,3,77,0, | ||
16848 | 327,3,78,0,327, | ||
16849 | 3,79,0,327,3, | ||
16850 | 80,0,327,3,81, | ||
16851 | 0,327,3,82,0, | ||
16852 | 327,3,83,0,327, | ||
16853 | 3,84,0,327,3, | ||
16854 | 85,0,327,3,86, | ||
16855 | 0,327,3,87,0, | ||
16856 | 327,3,88,0,327, | ||
16857 | 3,89,0,327,3, | ||
16858 | 90,0,327,3,95, | ||
16859 | 0,327,3,97,0, | ||
16860 | 327,3,98,0,327, | ||
16861 | 3,99,0,327,3, | ||
16862 | 100,0,327,3,101, | ||
16863 | 0,327,3,102,0, | ||
16864 | 327,3,103,0,327, | ||
16865 | 3,104,0,327,3, | ||
16866 | 105,0,327,3,106, | ||
16867 | 0,327,3,107,0, | ||
16868 | 327,3,108,0,327, | ||
16869 | 1252,11,1,801,0, | ||
16870 | 1253,4,34,84,0, | ||
16871 | 79,0,85,0,67, | ||
16872 | 0,72,0,95,0, | ||
16873 | 83,0,84,0,65, | ||
16874 | 0,82,0,84,0, | ||
16875 | 95,0,69,0,86, | ||
16876 | 0,69,0,78,0, | ||
16877 | 84,0,1,-1,3, | ||
16878 | 117,0,327,3,118, | ||
16879 | 0,327,3,119,0, | ||
16880 | 327,3,120,0,327, | ||
16881 | 3,121,0,327,3, | ||
16882 | 122,0,327,3,48, | ||
16883 | 0,327,3,49,0, | ||
16884 | 327,3,50,0,327, | ||
16885 | 3,51,0,327,3, | ||
16886 | 52,0,327,3,53, | ||
16887 | 0,327,3,54,0, | ||
16888 | 327,3,55,0,327, | ||
16889 | 3,56,0,327,3, | ||
16890 | 57,0,327,3,65, | ||
16891 | 0,327,3,66,0, | ||
16892 | 327,3,67,0,327, | ||
16893 | 3,68,0,327,3, | ||
16894 | 69,0,327,3,70, | ||
16895 | 0,327,3,71,0, | ||
16896 | 327,3,72,0,327, | ||
16897 | 3,73,0,327,3, | ||
16898 | 74,0,327,3,75, | ||
16899 | 0,327,3,76,0, | ||
16900 | 327,3,77,0,327, | ||
16901 | 3,78,0,327,3, | ||
16902 | 79,0,327,3,80, | ||
16903 | 0,327,3,81,0, | ||
16904 | 327,3,82,0,327, | ||
16905 | 3,83,0,327,3, | ||
16906 | 84,0,327,3,85, | ||
16907 | 0,327,3,86,0, | ||
16908 | 327,3,87,0,327, | ||
16909 | 3,88,0,327,3, | ||
16910 | 89,0,327,3,90, | ||
16911 | 0,327,3,95,0, | ||
16912 | 327,3,97,0,327, | ||
16913 | 3,98,0,327,3, | ||
16914 | 99,0,327,3,100, | ||
16915 | 0,327,3,101,0, | ||
16916 | 327,3,102,0,327, | ||
16917 | 3,103,0,327,3, | ||
16918 | 104,0,327,3,105, | ||
16919 | 0,327,3,106,0, | ||
16920 | 327,3,107,0,327, | ||
16921 | 3,108,0,327,1254, | ||
16922 | 11,1,829,0,330, | ||
16923 | 1,-1,3,115,0, | ||
16924 | 327,3,116,0,327, | ||
16925 | 3,117,0,327,3, | ||
16926 | 118,0,327,3,119, | ||
16927 | 0,327,3,120,0, | ||
16928 | 327,3,121,0,327, | ||
16929 | 3,122,0,327,3, | ||
16930 | 48,0,327,3,49, | ||
16931 | 0,327,3,50,0, | ||
16932 | 327,3,51,0,327, | ||
16933 | 3,52,0,327,3, | ||
16934 | 53,0,327,3,54, | ||
16935 | 0,327,3,55,0, | ||
16936 | 327,3,56,0,327, | ||
16937 | 3,57,0,327,3, | ||
16938 | 65,0,327,3,66, | ||
16939 | 0,327,3,67,0, | ||
16940 | 327,3,68,0,327, | ||
16941 | 3,69,0,327,3, | ||
16942 | 70,0,327,3,71, | ||
16943 | 0,327,3,72,0, | ||
16944 | 327,3,73,0,327, | ||
16945 | 3,74,0,327,3, | ||
16946 | 75,0,327,3,76, | ||
16947 | 0,327,3,77,0, | ||
16948 | 327,3,78,0,327, | ||
16949 | 3,79,0,327,3, | ||
16950 | 80,0,327,3,81, | ||
16951 | 0,327,3,82,0, | ||
16952 | 327,3,83,0,327, | ||
16953 | 3,84,0,327,3, | ||
16954 | 85,0,327,3,86, | ||
16955 | 0,327,3,87,0, | ||
16956 | 327,3,88,0,327, | ||
16957 | 3,89,0,327,3, | ||
16958 | 90,0,327,3,95, | ||
16959 | 0,327,3,97,0, | ||
16960 | 327,3,98,0,327, | ||
16961 | 3,99,0,327,3, | ||
16962 | 100,0,327,3,101, | ||
16963 | 0,327,3,102,0, | ||
16964 | 327,3,103,0,327, | ||
16965 | 3,104,0,327,3, | ||
16966 | 105,0,327,3,106, | ||
16967 | 0,327,3,107,0, | ||
16968 | 327,3,108,0,327, | ||
16969 | 1255,11,1,829,0, | ||
16970 | 330,1,-1,3,98, | ||
16971 | 0,327,3,99,0, | ||
16972 | 327,3,100,0,327, | ||
16973 | 3,101,0,327,3, | ||
16974 | 102,0,327,3,103, | ||
16975 | 0,327,3,104,0, | ||
16976 | 327,3,105,0,327, | ||
16977 | 3,106,0,327,3, | ||
16978 | 107,0,327,3,108, | ||
16979 | 0,327,1256,11,1, | ||
16980 | 829,0,330,1,-1, | ||
16981 | 3,117,0,327,3, | ||
16982 | 118,0,327,3,119, | ||
16983 | 0,327,3,120,0, | ||
16984 | 327,3,121,0,327, | ||
16985 | 3,122,0,327,3, | ||
16986 | 48,0,327,3,49, | ||
16987 | 0,327,3,50,0, | ||
16988 | 327,3,51,0,327, | ||
16989 | 3,52,0,327,3, | ||
16990 | 53,0,327,3,54, | ||
16991 | 0,327,3,55,0, | ||
16992 | 327,3,56,0,327, | ||
16993 | 3,57,0,327,3, | ||
16994 | 65,0,327,3,66, | ||
16995 | 0,327,3,67,0, | ||
16996 | 327,3,68,0,327, | ||
16997 | 3,69,0,327,3, | ||
16998 | 70,0,327,3,71, | ||
16999 | 0,327,3,72,0, | ||
17000 | 327,3,73,0,327, | ||
17001 | 3,74,0,327,3, | ||
17002 | 75,0,327,3,76, | ||
17003 | 0,327,3,77,0, | ||
17004 | 327,3,78,0,327, | ||
17005 | 3,79,0,327,3, | ||
17006 | 80,0,327,3,81, | ||
17007 | 0,327,3,82,0, | ||
17008 | 327,3,83,0,327, | ||
17009 | 3,84,0,327,3, | ||
17010 | 85,0,327,3,86, | ||
17011 | 0,327,3,87,0, | ||
17012 | 327,3,88,0,327, | ||
17013 | 3,89,0,327,3, | ||
17014 | 90,0,327,3,95, | ||
17015 | 0,327,3,97,0, | ||
17016 | 327,3,98,0,327, | ||
17017 | 3,99,0,327,3, | ||
17018 | 100,0,327,3,101, | ||
17019 | 0,327,3,102,0, | ||
17020 | 327,3,103,0,327, | ||
17021 | 3,104,0,327,3, | ||
17022 | 105,0,327,3,106, | ||
17023 | 0,327,3,107,0, | ||
17024 | 327,3,108,0,327, | ||
17025 | 1257,11,1,829,0, | ||
17026 | 330,1,-1,3,116, | ||
17027 | 0,327,3,117,0, | ||
17028 | 327,3,118,0,327, | ||
17029 | 3,119,0,327,3, | ||
17030 | 120,0,327,3,121, | ||
17031 | 0,327,3,122,0, | ||
17032 | 327,3,48,0,327, | ||
17033 | 3,49,0,327,3, | ||
17034 | 50,0,327,3,51, | ||
17035 | 0,327,3,52,0, | ||
17036 | 327,3,53,0,327, | ||
17037 | 3,54,0,327,3, | ||
17038 | 55,0,327,3,56, | ||
17039 | 0,327,3,57,0, | ||
17040 | 327,3,65,0,327, | ||
17041 | 3,66,0,327,3, | ||
17042 | 67,0,327,3,68, | ||
17043 | 0,327,3,69,0, | ||
17044 | 327,3,70,0,327, | ||
17045 | 3,71,0,327,3, | ||
17046 | 72,0,327,3,73, | ||
17047 | 0,327,3,74,0, | ||
17048 | 327,3,75,0,327, | ||
17049 | 3,76,0,327,3, | ||
17050 | 77,0,327,3,78, | ||
17051 | 0,327,3,79,0, | ||
17052 | 327,3,80,0,327, | ||
17053 | 3,81,0,327,3, | ||
17054 | 82,0,327,3,83, | ||
17055 | 0,327,3,84,0, | ||
17056 | 327,3,85,0,327, | ||
17057 | 3,86,0,327,3, | ||
17058 | 87,0,327,3,88, | ||
17059 | 0,327,3,89,0, | ||
17060 | 327,3,90,0,327, | ||
17061 | 3,95,0,327,3, | ||
17062 | 97,0,327,3,98, | ||
17063 | 0,327,3,99,0, | ||
17064 | 327,3,100,0,327, | ||
17065 | 3,101,0,1258,12, | ||
17066 | 1,18341,1259,5,63, | ||
17067 | 3,109,0,327,3, | ||
17068 | 110,0,1260,12,1, | ||
17069 | 18370,1261,5,63,3, | ||
17070 | 109,0,327,3,110, | ||
17071 | 0,327,3,111,0, | ||
17072 | 327,3,112,0,327, | ||
17073 | 3,113,0,327,3, | ||
17074 | 114,0,327,3,115, | ||
17075 | 0,327,3,116,0, | ||
17076 | 327,3,117,0,327, | ||
17077 | 3,118,0,327,3, | ||
17078 | 119,0,327,3,120, | ||
17079 | 0,327,3,121,0, | ||
17080 | 327,3,122,0,327, | ||
17081 | 3,48,0,327,3, | ||
17082 | 49,0,327,3,50, | ||
17083 | 0,327,3,51,0, | ||
17084 | 327,3,52,0,327, | ||
17085 | 3,53,0,327,3, | ||
17086 | 54,0,327,3,55, | ||
17087 | 0,327,3,56,0, | ||
17088 | 327,3,57,0,327, | ||
17089 | 3,65,0,327,3, | ||
17090 | 66,0,327,3,67, | ||
17091 | 0,327,3,68,0, | ||
17092 | 327,3,69,0,327, | ||
17093 | 3,70,0,327,3, | ||
17094 | 71,0,327,3,72, | ||
17095 | 0,327,3,73,0, | ||
17096 | 327,3,74,0,327, | ||
17097 | 3,75,0,327,3, | ||
17098 | 76,0,327,3,77, | ||
17099 | 0,327,3,78,0, | ||
17100 | 327,3,79,0,327, | ||
17101 | 3,80,0,327,3, | ||
17102 | 81,0,327,3,82, | ||
17103 | 0,327,3,83,0, | ||
17104 | 327,3,84,0,327, | ||
17105 | 3,85,0,327,3, | ||
17106 | 86,0,327,3,87, | ||
17107 | 0,327,3,88,0, | ||
17108 | 327,3,89,0,327, | ||
17109 | 3,90,0,327,3, | ||
17110 | 95,0,327,3,97, | ||
17111 | 0,327,3,98,0, | ||
17112 | 327,3,99,0,327, | ||
17113 | 3,100,0,1262,12, | ||
17114 | 1,18416,1263,5,63, | ||
17115 | 3,109,0,327,3, | ||
17116 | 110,0,327,3,111, | ||
17117 | 0,327,3,112,0, | ||
17118 | 327,3,113,0,327, | ||
17119 | 3,114,0,327,3, | ||
17120 | 115,0,327,3,116, | ||
17121 | 0,327,3,117,0, | ||
17122 | 327,3,118,0,327, | ||
17123 | 3,119,0,327,3, | ||
17124 | 120,0,327,3,121, | ||
17125 | 0,327,3,122,0, | ||
17126 | 327,3,48,0,327, | ||
17127 | 3,49,0,327,3, | ||
17128 | 50,0,327,3,51, | ||
17129 | 0,327,3,52,0, | ||
17130 | 327,3,53,0,327, | ||
17131 | 3,54,0,327,3, | ||
17132 | 55,0,327,3,56, | ||
17133 | 0,327,3,57,0, | ||
17134 | 327,3,65,0,327, | ||
17135 | 3,66,0,327,3, | ||
17136 | 67,0,327,3,68, | ||
17137 | 0,327,3,69,0, | ||
17138 | 327,3,70,0,327, | ||
17139 | 3,71,0,327,3, | ||
17140 | 72,0,327,3,73, | ||
17141 | 0,327,3,74,0, | ||
17142 | 327,3,75,0,327, | ||
17143 | 3,76,0,327,3, | ||
17144 | 77,0,327,3,78, | ||
17145 | 0,327,3,79,0, | ||
17146 | 327,3,80,0,327, | ||
17147 | 3,81,0,327,3, | ||
17148 | 82,0,327,3,83, | ||
17149 | 0,327,3,84,0, | ||
17150 | 327,3,85,0,327, | ||
17151 | 3,86,0,327,3, | ||
17152 | 87,0,327,3,88, | ||
17153 | 0,327,3,89,0, | ||
17154 | 327,3,90,0,327, | ||
17155 | 3,95,0,327,3, | ||
17156 | 97,0,327,3,98, | ||
17157 | 0,327,3,99,0, | ||
17158 | 327,3,100,0,327, | ||
17159 | 3,101,0,327,3, | ||
17160 | 102,0,327,3,103, | ||
17161 | 0,327,3,104,0, | ||
17162 | 327,3,105,0,327, | ||
17163 | 3,106,0,327,3, | ||
17164 | 107,0,327,3,108, | ||
17165 | 0,327,1264,11,1, | ||
17166 | 816,0,1265,4,30, | ||
17167 | 84,0,79,0,85, | ||
17168 | 0,67,0,72,0, | ||
17169 | 95,0,69,0,78, | ||
17170 | 0,68,0,95,0, | ||
17171 | 69,0,86,0,69, | ||
17172 | 0,78,0,84,0, | ||
17173 | 1,-1,3,101,0, | ||
17174 | 327,3,102,0,327, | ||
17175 | 3,103,0,327,3, | ||
17176 | 104,0,327,3,105, | ||
17177 | 0,327,3,106,0, | ||
17178 | 327,3,107,0,327, | ||
17179 | 3,108,0,327,1266, | ||
17180 | 11,1,829,0,330, | ||
17181 | 1,-1,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,1267,11,1,829, | ||
17231 | 0,330,1,-1,3, | ||
17232 | 102,0,327,3,103, | ||
17233 | 0,327,3,104,0, | ||
17234 | 327,3,105,0,327, | ||
17235 | 3,106,0,327,3, | ||
17236 | 107,0,327,3,108, | ||
17237 | 0,327,1268,11,1, | ||
17238 | 829,0,330,1,-1, | ||
17239 | 3,97,0,327,3, | ||
17240 | 98,0,327,3,99, | ||
17241 | 0,327,3,100,0, | ||
17242 | 327,3,101,0,327, | ||
17243 | 3,102,0,327,3, | ||
17244 | 103,0,327,3,104, | ||
17245 | 0,327,3,105,0, | ||
17246 | 327,3,106,0,327, | ||
17247 | 3,107,0,327,3, | ||
17248 | 108,0,327,1269,11, | ||
17249 | 1,792,0,1270,4, | ||
17250 | 22,84,0,79,0, | ||
17251 | 85,0,67,0,72, | ||
17252 | 0,95,0,69,0, | ||
17253 | 86,0,69,0,78, | ||
17254 | 0,84,0,1,-1, | ||
17255 | 3,105,0,327,3, | ||
17256 | 106,0,327,3,107, | ||
17257 | 0,327,3,108,0, | ||
17258 | 327,1271,11,1,829, | ||
17259 | 0,330,1,-1,3, | ||
17260 | 100,0,327,3,101, | ||
17261 | 0,327,3,102,0, | ||
17262 | 327,3,103,0,327, | ||
17263 | 3,104,0,327,3, | ||
17264 | 105,0,327,3,106, | ||
17265 | 0,327,3,107,0, | ||
17266 | 327,3,108,0,327, | ||
17267 | 1272,11,1,829,0, | ||
17268 | 330,1,-1,3,118, | ||
17269 | 0,327,3,119,0, | ||
17270 | 327,3,120,0,327, | ||
17271 | 3,121,0,327,3, | ||
17272 | 122,0,327,3,48, | ||
17273 | 0,327,3,49,0, | ||
17274 | 327,3,50,0,327, | ||
17275 | 3,51,0,327,3, | ||
17276 | 52,0,327,3,53, | ||
17277 | 0,327,3,54,0, | ||
17278 | 327,3,55,0,327, | ||
17279 | 3,56,0,327,3, | ||
17280 | 57,0,327,3,65, | ||
17281 | 0,327,3,66,0, | ||
17282 | 327,3,67,0,327, | ||
17283 | 3,68,0,327,3, | ||
17284 | 69,0,327,3,70, | ||
17285 | 0,327,3,71,0, | ||
17286 | 327,3,72,0,327, | ||
17287 | 3,73,0,327,3, | ||
17288 | 74,0,327,3,75, | ||
17289 | 0,327,3,76,0, | ||
17290 | 327,3,77,0,327, | ||
17291 | 3,78,0,327,3, | ||
17292 | 79,0,327,3,80, | ||
17293 | 0,327,3,81,0, | ||
17294 | 327,3,82,0,327, | ||
17295 | 3,83,0,327,3, | ||
17296 | 84,0,327,3,85, | ||
17297 | 0,327,3,86,0, | ||
17298 | 327,3,87,0,327, | ||
17299 | 3,88,0,327,3, | ||
17300 | 89,0,327,3,90, | ||
17301 | 0,327,3,95,0, | ||
17302 | 327,3,97,0,327, | ||
17303 | 3,98,0,327,3, | ||
17304 | 99,0,327,3,100, | ||
17305 | 0,327,3,101,0, | ||
17306 | 327,3,102,0,327, | ||
17307 | 3,103,0,327,3, | ||
17308 | 104,0,327,3,105, | ||
17309 | 0,327,3,106,0, | ||
17310 | 327,3,107,0,327, | ||
17311 | 3,108,0,327,1273, | ||
17312 | 11,1,829,0,330, | ||
17313 | 1,-1,3,112,0, | ||
17314 | 327,3,113,0,327, | ||
17315 | 3,114,0,327,3, | ||
17316 | 115,0,327,3,116, | ||
17317 | 0,327,3,117,0, | ||
17318 | 327,3,118,0,327, | ||
17319 | 3,119,0,327,3, | ||
17320 | 120,0,327,3,121, | ||
17321 | 0,327,3,122,0, | ||
17322 | 327,3,48,0,327, | ||
17323 | 3,49,0,327,3, | ||
17324 | 50,0,327,3,51, | ||
17325 | 0,327,3,52,0, | ||
17326 | 327,3,53,0,327, | ||
17327 | 3,54,0,327,3, | ||
17328 | 55,0,327,3,56, | ||
17329 | 0,327,3,57,0, | ||
17330 | 327,3,65,0,327, | ||
17331 | 3,66,0,327,3, | ||
17332 | 67,0,327,3,68, | ||
17333 | 0,327,3,69,0, | ||
17334 | 327,3,70,0,327, | ||
17335 | 3,71,0,327,3, | ||
17336 | 72,0,327,3,73, | ||
17337 | 0,327,3,74,0, | ||
17338 | 327,3,75,0,327, | ||
17339 | 3,76,0,327,3, | ||
17340 | 77,0,327,3,78, | ||
17341 | 0,327,3,79,0, | ||
17342 | 327,3,80,0,327, | ||
17343 | 3,81,0,327,3, | ||
17344 | 82,0,327,3,83, | ||
17345 | 0,327,3,84,0, | ||
17346 | 327,3,85,0,327, | ||
17347 | 3,86,0,327,3, | ||
17348 | 87,0,327,3,88, | ||
17349 | 0,327,3,89,0, | ||
17350 | 327,3,90,0,327, | ||
17351 | 3,95,0,327,3, | ||
17352 | 97,0,327,3,98, | ||
17353 | 0,327,3,99,0, | ||
17354 | 327,3,100,0,327, | ||
17355 | 3,101,0,327,3, | ||
17356 | 102,0,327,3,103, | ||
17357 | 0,327,3,104,0, | ||
17358 | 327,3,105,0,1274, | ||
17359 | 12,1,19058,1275,5, | ||
17360 | 63,3,109,0,1276, | ||
17361 | 12,1,19086,1277,5, | ||
17362 | 63,3,109,0,327, | ||
17363 | 3,110,0,327,3, | ||
17364 | 111,0,327,3,112, | ||
17365 | 0,327,3,113,0, | ||
17366 | 327,3,114,0,327, | ||
17367 | 3,115,0,327,3, | ||
17368 | 116,0,327,3,117, | ||
17369 | 0,327,3,118,0, | ||
17370 | 327,3,119,0,327, | ||
17371 | 3,120,0,327,3, | ||
17372 | 121,0,327,3,122, | ||
17373 | 0,327,3,48,0, | ||
17374 | 327,3,49,0,327, | ||
17375 | 3,50,0,327,3, | ||
17376 | 51,0,327,3,52, | ||
17377 | 0,327,3,53,0, | ||
17378 | 327,3,54,0,327, | ||
17379 | 3,55,0,327,3, | ||
17380 | 56,0,327,3,57, | ||
17381 | 0,327,3,65,0, | ||
17382 | 327,3,66,0,327, | ||
17383 | 3,67,0,327,3, | ||
17384 | 68,0,327,3,69, | ||
17385 | 0,327,3,70,0, | ||
17386 | 327,3,71,0,327, | ||
17387 | 3,72,0,327,3, | ||
17388 | 73,0,327,3,74, | ||
17389 | 0,327,3,75,0, | ||
17390 | 327,3,76,0,327, | ||
17391 | 3,77,0,327,3, | ||
17392 | 78,0,327,3,79, | ||
17393 | 0,327,3,80,0, | ||
17394 | 327,3,81,0,327, | ||
17395 | 3,82,0,327,3, | ||
17396 | 83,0,327,3,84, | ||
17397 | 0,327,3,85,0, | ||
17398 | 327,3,86,0,327, | ||
17399 | 3,87,0,327,3, | ||
17400 | 88,0,327,3,89, | ||
17401 | 0,327,3,90,0, | ||
17402 | 327,3,95,0,327, | ||
17403 | 3,97,0,327,3, | ||
17404 | 98,0,327,3,99, | ||
17405 | 0,327,3,100,0, | ||
17406 | 327,3,101,0,1278, | ||
17407 | 12,1,19133,1279,5, | ||
17408 | 63,3,109,0,327, | ||
17409 | 3,110,0,327,3, | ||
17410 | 111,0,327,3,112, | ||
17411 | 0,327,3,113,0, | ||
17412 | 327,3,114,0,1280, | ||
17413 | 12,1,19166,1281,5, | ||
17414 | 63,3,109,0,327, | ||
17415 | 3,110,0,327,3, | ||
17416 | 111,0,327,3,112, | ||
17417 | 0,327,3,113,0, | ||
17418 | 327,3,114,0,327, | ||
17419 | 3,115,0,327,3, | ||
17420 | 116,0,327,3,117, | ||
17421 | 0,327,3,118,0, | ||
17422 | 327,3,119,0,327, | ||
17423 | 3,120,0,327,3, | ||
17424 | 121,0,327,3,122, | ||
17425 | 0,327,3,48,0, | ||
17426 | 327,3,49,0,327, | ||
17427 | 3,50,0,327,3, | ||
17428 | 51,0,327,3,52, | ||
17429 | 0,327,3,53,0, | ||
17430 | 327,3,54,0,327, | ||
17431 | 3,55,0,327,3, | ||
17432 | 56,0,327,3,57, | ||
17433 | 0,327,3,65,0, | ||
17434 | 327,3,66,0,327, | ||
17435 | 3,67,0,327,3, | ||
17436 | 68,0,327,3,69, | ||
17437 | 0,327,3,70,0, | ||
17438 | 327,3,71,0,327, | ||
17439 | 3,72,0,327,3, | ||
17440 | 73,0,327,3,74, | ||
17441 | 0,327,3,75,0, | ||
17442 | 327,3,76,0,327, | ||
17443 | 3,77,0,327,3, | ||
17444 | 78,0,327,3,79, | ||
17445 | 0,327,3,80,0, | ||
17446 | 327,3,81,0,327, | ||
17447 | 3,82,0,327,3, | ||
17448 | 83,0,327,3,84, | ||
17449 | 0,327,3,85,0, | ||
17450 | 327,3,86,0,327, | ||
17451 | 3,87,0,327,3, | ||
17452 | 88,0,327,3,89, | ||
17453 | 0,327,3,90,0, | ||
17454 | 327,3,95,0,327, | ||
17455 | 3,97,0,327,3, | ||
17456 | 98,0,327,3,99, | ||
17457 | 0,327,3,100,0, | ||
17458 | 327,3,101,0,327, | ||
17459 | 3,102,0,327,3, | ||
17460 | 103,0,327,3,104, | ||
17461 | 0,327,3,105,0, | ||
17462 | 327,3,106,0,327, | ||
17463 | 3,107,0,327,3, | ||
17464 | 108,0,327,1282,11, | ||
17465 | 1,783,0,1283,4, | ||
17466 | 22,84,0,73,0, | ||
17467 | 77,0,69,0,82, | ||
17468 | 0,95,0,69,0, | ||
17469 | 86,0,69,0,78, | ||
17470 | 0,84,0,1,-1, | ||
17471 | 3,115,0,327,3, | ||
17472 | 116,0,327,3,117, | ||
17473 | 0,327,3,118,0, | ||
17474 | 327,3,119,0,327, | ||
17475 | 3,120,0,327,3, | ||
17476 | 121,0,327,3,122, | ||
17477 | 0,327,3,48,0, | ||
17478 | 327,3,49,0,327, | ||
17479 | 3,50,0,327,3, | ||
17480 | 51,0,327,3,52, | ||
17481 | 0,327,3,53,0, | ||
17482 | 327,3,54,0,327, | ||
17483 | 3,55,0,327,3, | ||
17484 | 56,0,327,3,57, | ||
17485 | 0,327,3,65,0, | ||
17486 | 327,3,66,0,327, | ||
17487 | 3,67,0,327,3, | ||
17488 | 68,0,327,3,69, | ||
17489 | 0,327,3,70,0, | ||
17490 | 327,3,71,0,327, | ||
17491 | 3,72,0,327,3, | ||
17492 | 73,0,327,3,74, | ||
17493 | 0,327,3,75,0, | ||
17494 | 327,3,76,0,327, | ||
17495 | 3,77,0,327,3, | ||
17496 | 78,0,327,3,79, | ||
17497 | 0,327,3,80,0, | ||
17498 | 327,3,81,0,327, | ||
17499 | 3,82,0,327,3, | ||
17500 | 83,0,327,3,84, | ||
17501 | 0,327,3,85,0, | ||
17502 | 327,3,86,0,327, | ||
17503 | 3,87,0,327,3, | ||
17504 | 88,0,327,3,89, | ||
17505 | 0,327,3,90,0, | ||
17506 | 327,3,95,0,327, | ||
17507 | 3,97,0,327,3, | ||
17508 | 98,0,327,3,99, | ||
17509 | 0,327,3,100,0, | ||
17510 | 327,3,101,0,327, | ||
17511 | 3,102,0,327,3, | ||
17512 | 103,0,327,3,104, | ||
17513 | 0,327,3,105,0, | ||
17514 | 327,3,106,0,327, | ||
17515 | 3,107,0,327,3, | ||
17516 | 108,0,327,1284,11, | ||
17517 | 1,829,0,330,1, | ||
17518 | -1,3,102,0,327, | ||
17519 | 3,103,0,327,3, | ||
17520 | 104,0,327,3,105, | ||
17521 | 0,327,3,106,0, | ||
17522 | 327,3,107,0,327, | ||
17523 | 3,108,0,327,1285, | ||
17524 | 11,1,829,0,330, | ||
17525 | 1,-1,3,110,0, | ||
17526 | 327,3,111,0,327, | ||
17527 | 3,112,0,327,3, | ||
17528 | 113,0,327,3,114, | ||
17529 | 0,327,3,115,0, | ||
17530 | 327,3,116,0,327, | ||
17531 | 3,117,0,327,3, | ||
17532 | 118,0,327,3,119, | ||
17533 | 0,327,3,120,0, | ||
17534 | 327,3,121,0,327, | ||
17535 | 3,122,0,327,3, | ||
17536 | 48,0,327,3,49, | ||
17537 | 0,327,3,50,0, | ||
17538 | 327,3,51,0,327, | ||
17539 | 3,52,0,327,3, | ||
17540 | 53,0,327,3,54, | ||
17541 | 0,327,3,55,0, | ||
17542 | 327,3,56,0,327, | ||
17543 | 3,57,0,327,3, | ||
17544 | 65,0,327,3,66, | ||
17545 | 0,327,3,67,0, | ||
17546 | 327,3,68,0,327, | ||
17547 | 3,69,0,327,3, | ||
17548 | 70,0,327,3,71, | ||
17549 | 0,327,3,72,0, | ||
17550 | 327,3,73,0,327, | ||
17551 | 3,74,0,327,3, | ||
17552 | 75,0,327,3,76, | ||
17553 | 0,327,3,77,0, | ||
17554 | 327,3,78,0,327, | ||
17555 | 3,79,0,327,3, | ||
17556 | 80,0,327,3,81, | ||
17557 | 0,327,3,82,0, | ||
17558 | 327,3,83,0,327, | ||
17559 | 3,84,0,327,3, | ||
17560 | 85,0,327,3,86, | ||
17561 | 0,327,3,87,0, | ||
17562 | 327,3,88,0,327, | ||
17563 | 3,89,0,327,3, | ||
17564 | 90,0,327,3,95, | ||
17565 | 0,327,3,97,0, | ||
17566 | 327,3,98,0,327, | ||
17567 | 3,99,0,327,3, | ||
17568 | 100,0,327,3,101, | ||
17569 | 0,327,3,102,0, | ||
17570 | 327,3,103,0,327, | ||
17571 | 3,104,0,327,3, | ||
17572 | 105,0,327,3,106, | ||
17573 | 0,327,3,107,0, | ||
17574 | 327,3,108,0,327, | ||
17575 | 1286,11,1,829,0, | ||
17576 | 330,1,-1,3,106, | ||
17577 | 0,327,3,107,0, | ||
17578 | 327,3,108,0,327, | ||
17579 | 1287,11,1,829,0, | ||
17580 | 330,1,-1,3,117, | ||
17581 | 0,325,3,118,0, | ||
17582 | 1288,12,1,19609,1289, | ||
17583 | 5,63,3,109,0, | ||
17584 | 327,3,110,0,327, | ||
17585 | 3,111,0,327,3, | ||
17586 | 112,0,327,3,113, | ||
17587 | 0,327,3,114,0, | ||
17588 | 327,3,115,0,327, | ||
17589 | 3,116,0,327,3, | ||
17590 | 117,0,327,3,118, | ||
17591 | 0,327,3,119,0, | ||
17592 | 327,3,120,0,327, | ||
17593 | 3,121,0,327,3, | ||
17594 | 122,0,327,3,48, | ||
17595 | 0,327,3,49,0, | ||
17596 | 327,3,50,0,327, | ||
17597 | 3,51,0,327,3, | ||
17598 | 52,0,327,3,53, | ||
17599 | 0,327,3,54,0, | ||
17600 | 327,3,55,0,327, | ||
17601 | 3,56,0,327,3, | ||
17602 | 57,0,327,3,65, | ||
17603 | 0,327,3,66,0, | ||
17604 | 327,3,67,0,327, | ||
17605 | 3,68,0,327,3, | ||
17606 | 69,0,327,3,70, | ||
17607 | 0,327,3,71,0, | ||
17608 | 327,3,72,0,327, | ||
17609 | 3,73,0,327,3, | ||
17610 | 74,0,327,3,75, | ||
17611 | 0,327,3,76,0, | ||
17612 | 327,3,77,0,327, | ||
17613 | 3,78,0,327,3, | ||
17614 | 79,0,327,3,80, | ||
17615 | 0,327,3,81,0, | ||
17616 | 327,3,82,0,327, | ||
17617 | 3,83,0,327,3, | ||
17618 | 84,0,327,3,85, | ||
17619 | 0,327,3,86,0, | ||
17620 | 327,3,87,0,327, | ||
17621 | 3,88,0,327,3, | ||
17622 | 89,0,327,3,90, | ||
17623 | 0,327,3,95,0, | ||
17624 | 327,3,97,0,327, | ||
17625 | 3,98,0,327,3, | ||
17626 | 99,0,327,3,100, | ||
17627 | 0,327,3,101,0, | ||
17628 | 1290,12,1,19656,1291, | ||
17629 | 5,63,3,109,0, | ||
17630 | 327,3,110,0,327, | ||
17631 | 3,111,0,327,3, | ||
17632 | 112,0,327,3,113, | ||
17633 | 0,327,3,114,0, | ||
17634 | 327,3,115,0,327, | ||
17635 | 3,116,0,327,3, | ||
17636 | 117,0,327,3,118, | ||
17637 | 0,327,3,119,0, | ||
17638 | 327,3,120,0,327, | ||
17639 | 3,121,0,327,3, | ||
17640 | 122,0,327,3,48, | ||
17641 | 0,327,3,49,0, | ||
17642 | 327,3,50,0,327, | ||
17643 | 3,51,0,327,3, | ||
17644 | 52,0,327,3,53, | ||
17645 | 0,327,3,54,0, | ||
17646 | 327,3,55,0,327, | ||
17647 | 3,56,0,327,3, | ||
17648 | 57,0,327,3,65, | ||
17649 | 0,327,3,66,0, | ||
17650 | 327,3,67,0,327, | ||
17651 | 3,68,0,327,3, | ||
17652 | 69,0,327,3,70, | ||
17653 | 0,327,3,71,0, | ||
17654 | 327,3,72,0,327, | ||
17655 | 3,73,0,327,3, | ||
17656 | 74,0,327,3,75, | ||
17657 | 0,327,3,76,0, | ||
17658 | 327,3,77,0,327, | ||
17659 | 3,78,0,327,3, | ||
17660 | 79,0,327,3,80, | ||
17661 | 0,327,3,81,0, | ||
17662 | 327,3,82,0,327, | ||
17663 | 3,83,0,327,3, | ||
17664 | 84,0,327,3,85, | ||
17665 | 0,327,3,86,0, | ||
17666 | 327,3,87,0,327, | ||
17667 | 3,88,0,327,3, | ||
17668 | 89,0,327,3,90, | ||
17669 | 0,327,3,95,0, | ||
17670 | 327,3,97,0,327, | ||
17671 | 3,98,0,327,3, | ||
17672 | 99,0,1292,12,1, | ||
17673 | 19701,1293,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 | 1294,12,1,19736,1295, | ||
17681 | 5,63,3,109,0, | ||
17682 | 327,3,110,0,327, | ||
17683 | 3,111,0,1296,12, | ||
17684 | 1,19766,1297,5,63, | ||
17685 | 3,109,0,327,3, | ||
17686 | 110,0,327,3,111, | ||
17687 | 0,327,3,112,0, | ||
17688 | 327,3,113,0,327, | ||
17689 | 3,114,0,1298,12, | ||
17690 | 1,19799,1299,5,63, | ||
17691 | 3,109,0,327,3, | ||
17692 | 110,0,327,3,111, | ||
17693 | 0,327,3,112,0, | ||
17694 | 327,3,113,0,327, | ||
17695 | 3,114,0,327,3, | ||
17696 | 115,0,327,3,116, | ||
17697 | 0,327,3,117,0, | ||
17698 | 327,3,118,0,327, | ||
17699 | 3,119,0,327,3, | ||
17700 | 120,0,327,3,121, | ||
17701 | 0,327,3,122,0, | ||
17702 | 327,3,48,0,327, | ||
17703 | 3,49,0,327,3, | ||
17704 | 50,0,327,3,51, | ||
17705 | 0,327,3,52,0, | ||
17706 | 327,3,53,0,327, | ||
17707 | 3,54,0,327,3, | ||
17708 | 55,0,327,3,56, | ||
17709 | 0,327,3,57,0, | ||
17710 | 327,3,65,0,327, | ||
17711 | 3,66,0,327,3, | ||
17712 | 67,0,327,3,68, | ||
17713 | 0,327,3,69,0, | ||
17714 | 327,3,70,0,327, | ||
17715 | 3,71,0,327,3, | ||
17716 | 72,0,327,3,73, | ||
17717 | 0,327,3,74,0, | ||
17718 | 327,3,75,0,327, | ||
17719 | 3,76,0,327,3, | ||
17720 | 77,0,327,3,78, | ||
17721 | 0,327,3,79,0, | ||
17722 | 327,3,80,0,327, | ||
17723 | 3,81,0,327,3, | ||
17724 | 82,0,327,3,83, | ||
17725 | 0,327,3,84,0, | ||
17726 | 327,3,85,0,327, | ||
17727 | 3,86,0,327,3, | ||
17728 | 87,0,327,3,88, | ||
17729 | 0,327,3,89,0, | ||
17730 | 327,3,90,0,327, | ||
17731 | 3,95,0,327,3, | ||
17732 | 97,0,327,3,98, | ||
17733 | 0,327,3,99,0, | ||
17734 | 327,3,100,0,327, | ||
17735 | 3,101,0,327,3, | ||
17736 | 102,0,327,3,103, | ||
17737 | 0,327,3,104,0, | ||
17738 | 327,3,105,0,327, | ||
17739 | 3,106,0,327,3, | ||
17740 | 107,0,327,3,108, | ||
17741 | 0,327,1300,11,1, | ||
17742 | 320,0,1301,4,22, | ||
17743 | 86,0,69,0,67, | ||
17744 | 0,84,0,79,0, | ||
17745 | 82,0,95,0,84, | ||
17746 | 0,89,0,80,0, | ||
17747 | 69,0,1,-1,3, | ||
17748 | 115,0,327,3,116, | ||
17749 | 0,327,3,117,0, | ||
17750 | 327,3,118,0,327, | ||
17751 | 3,119,0,327,3, | ||
17752 | 120,0,327,3,121, | ||
17753 | 0,327,3,122,0, | ||
17754 | 327,3,48,0,327, | ||
17755 | 3,49,0,327,3, | ||
17756 | 50,0,327,3,51, | ||
17757 | 0,327,3,52,0, | ||
17758 | 327,3,53,0,327, | ||
17759 | 3,54,0,327,3, | ||
17760 | 55,0,327,3,56, | ||
17761 | 0,327,3,57,0, | ||
17762 | 327,3,65,0,327, | ||
17763 | 3,66,0,327,3, | ||
17764 | 67,0,327,3,68, | ||
17765 | 0,327,3,69,0, | ||
17766 | 327,3,70,0,327, | ||
17767 | 3,71,0,327,3, | ||
17768 | 72,0,327,3,73, | ||
17769 | 0,327,3,74,0, | ||
17770 | 327,3,75,0,327, | ||
17771 | 3,76,0,327,3, | ||
17772 | 77,0,327,3,78, | ||
17773 | 0,327,3,79,0, | ||
17774 | 327,3,80,0,327, | ||
17775 | 3,81,0,327,3, | ||
17776 | 82,0,327,3,83, | ||
17777 | 0,327,3,84,0, | ||
17778 | 327,3,85,0,327, | ||
17779 | 3,86,0,327,3, | ||
17780 | 87,0,327,3,88, | ||
17781 | 0,327,3,89,0, | ||
17782 | 327,3,90,0,327, | ||
17783 | 3,95,0,327,3, | ||
17784 | 97,0,327,3,98, | ||
17785 | 0,327,3,99,0, | ||
17786 | 327,3,100,0,327, | ||
17787 | 3,101,0,327,3, | ||
17788 | 102,0,327,3,103, | ||
17789 | 0,327,3,104,0, | ||
17790 | 327,3,105,0,327, | ||
17791 | 3,106,0,327,3, | ||
17792 | 107,0,327,3,108, | ||
17793 | 0,327,1302,11,1, | ||
17794 | 829,0,330,1,-1, | ||
17795 | 3,112,0,327,3, | ||
17796 | 113,0,327,3,114, | ||
17797 | 0,327,3,115,0, | ||
17798 | 327,3,116,0,327, | ||
17799 | 3,117,0,327,3, | ||
17800 | 118,0,327,3,119, | ||
17801 | 0,327,3,120,0, | ||
17802 | 327,3,121,0,327, | ||
17803 | 3,122,0,327,3, | ||
17804 | 48,0,327,3,49, | ||
17805 | 0,327,3,50,0, | ||
17806 | 327,3,51,0,327, | ||
17807 | 3,52,0,327,3, | ||
17808 | 53,0,327,3,54, | ||
17809 | 0,327,3,55,0, | ||
17810 | 327,3,56,0,327, | ||
17811 | 3,57,0,327,3, | ||
17812 | 65,0,327,3,66, | ||
17813 | 0,327,3,67,0, | ||
17814 | 327,3,68,0,327, | ||
17815 | 3,69,0,327,3, | ||
17816 | 70,0,327,3,71, | ||
17817 | 0,327,3,72,0, | ||
17818 | 327,3,73,0,327, | ||
17819 | 3,74,0,327,3, | ||
17820 | 75,0,327,3,76, | ||
17821 | 0,327,3,77,0, | ||
17822 | 327,3,78,0,327, | ||
17823 | 3,79,0,327,3, | ||
17824 | 80,0,327,3,81, | ||
17825 | 0,327,3,82,0, | ||
17826 | 327,3,83,0,327, | ||
17827 | 3,84,0,327,3, | ||
17828 | 85,0,327,3,86, | ||
17829 | 0,327,3,87,0, | ||
17830 | 327,3,88,0,327, | ||
17831 | 3,89,0,327,3, | ||
17832 | 90,0,327,3,95, | ||
17833 | 0,327,3,97,0, | ||
17834 | 327,3,98,0,327, | ||
17835 | 3,99,0,327,3, | ||
17836 | 100,0,327,3,101, | ||
17837 | 0,327,3,102,0, | ||
17838 | 327,3,103,0,327, | ||
17839 | 3,104,0,327,3, | ||
17840 | 105,0,327,3,106, | ||
17841 | 0,327,3,107,0, | ||
17842 | 327,3,108,0,327, | ||
17843 | 1303,11,1,829,0, | ||
17844 | 330,1,-1,3,117, | ||
17845 | 0,327,3,118,0, | ||
17846 | 327,3,119,0,327, | ||
17847 | 3,120,0,327,3, | ||
17848 | 121,0,327,3,122, | ||
17849 | 0,327,3,48,0, | ||
17850 | 327,3,49,0,327, | ||
17851 | 3,50,0,327,3, | ||
17852 | 51,0,327,3,52, | ||
17853 | 0,327,3,53,0, | ||
17854 | 327,3,54,0,327, | ||
17855 | 3,55,0,327,3, | ||
17856 | 56,0,327,3,57, | ||
17857 | 0,327,3,65,0, | ||
17858 | 327,3,66,0,327, | ||
17859 | 3,67,0,327,3, | ||
17860 | 68,0,327,3,69, | ||
17861 | 0,327,3,70,0, | ||
17862 | 327,3,71,0,327, | ||
17863 | 3,72,0,327,3, | ||
17864 | 73,0,327,3,74, | ||
17865 | 0,327,3,75,0, | ||
17866 | 327,3,76,0,327, | ||
17867 | 3,77,0,327,3, | ||
17868 | 78,0,327,3,79, | ||
17869 | 0,327,3,80,0, | ||
17870 | 327,3,81,0,327, | ||
17871 | 3,82,0,327,3, | ||
17872 | 83,0,327,3,84, | ||
17873 | 0,327,3,85,0, | ||
17874 | 327,3,86,0,327, | ||
17875 | 3,87,0,327,3, | ||
17876 | 88,0,327,3,89, | ||
17877 | 0,327,3,90,0, | ||
17878 | 327,3,95,0,327, | ||
17879 | 3,97,0,327,3, | ||
17880 | 98,0,327,3,99, | ||
17881 | 0,327,3,100,0, | ||
17882 | 327,3,101,0,327, | ||
17883 | 3,102,0,327,3, | ||
17884 | 103,0,327,3,104, | ||
17885 | 0,327,3,105,0, | ||
17886 | 327,3,106,0,327, | ||
17887 | 3,107,0,327,3, | ||
17888 | 108,0,327,1304,11, | ||
17889 | 1,829,0,330,1, | ||
17890 | -1,3,100,0,327, | ||
17891 | 3,101,0,327,3, | ||
17892 | 102,0,327,3,103, | ||
17893 | 0,327,3,104,0, | ||
17894 | 327,3,105,0,327, | ||
17895 | 3,106,0,327,3, | ||
17896 | 107,0,327,3,108, | ||
17897 | 0,327,1305,11,1, | ||
17898 | 829,0,330,1,-1, | ||
17899 | 3,102,0,327,3, | ||
17900 | 103,0,327,3,104, | ||
17901 | 0,327,3,105,0, | ||
17902 | 327,3,106,0,327, | ||
17903 | 3,107,0,327,3, | ||
17904 | 108,0,327,1306,11, | ||
17905 | 1,829,0,330,1, | ||
17906 | -1,3,119,0,1307, | ||
17907 | 12,1,20330,1308,5, | ||
17908 | 63,3,109,0,327, | ||
17909 | 3,110,0,327,3, | ||
17910 | 111,0,327,3,112, | ||
17911 | 0,327,3,113,0, | ||
17912 | 327,3,114,0,327, | ||
17913 | 3,115,0,327,3, | ||
17914 | 116,0,327,3,117, | ||
17915 | 0,327,3,118,0, | ||
17916 | 327,3,119,0,327, | ||
17917 | 3,120,0,327,3, | ||
17918 | 121,0,327,3,122, | ||
17919 | 0,327,3,48,0, | ||
17920 | 327,3,49,0,327, | ||
17921 | 3,50,0,327,3, | ||
17922 | 51,0,327,3,52, | ||
17923 | 0,327,3,53,0, | ||
17924 | 327,3,54,0,327, | ||
17925 | 3,55,0,327,3, | ||
17926 | 56,0,327,3,57, | ||
17927 | 0,327,3,65,0, | ||
17928 | 327,3,66,0,327, | ||
17929 | 3,67,0,327,3, | ||
17930 | 68,0,327,3,69, | ||
17931 | 0,327,3,70,0, | ||
17932 | 327,3,71,0,327, | ||
17933 | 3,72,0,327,3, | ||
17934 | 73,0,327,3,74, | ||
17935 | 0,327,3,75,0, | ||
17936 | 327,3,76,0,327, | ||
17937 | 3,77,0,327,3, | ||
17938 | 78,0,327,3,79, | ||
17939 | 0,327,3,80,0, | ||
17940 | 327,3,81,0,327, | ||
17941 | 3,82,0,327,3, | ||
17942 | 83,0,327,3,84, | ||
17943 | 0,327,3,85,0, | ||
17944 | 327,3,86,0,327, | ||
17945 | 3,87,0,327,3, | ||
17946 | 88,0,327,3,89, | ||
17947 | 0,327,3,90,0, | ||
17948 | 327,3,95,0,327, | ||
17949 | 3,97,0,327,3, | ||
17950 | 98,0,327,3,99, | ||
17951 | 0,327,3,100,0, | ||
17952 | 327,3,101,0,327, | ||
17953 | 3,102,0,327,3, | ||
17954 | 103,0,327,3,104, | ||
17955 | 0,1309,12,1,20380, | ||
17956 | 1310,5,63,3,109, | ||
17957 | 0,327,3,110,0, | ||
17958 | 327,3,111,0,327, | ||
17959 | 3,112,0,327,3, | ||
17960 | 113,0,327,3,114, | ||
17961 | 0,327,3,115,0, | ||
17962 | 327,3,116,0,327, | ||
17963 | 3,117,0,327,3, | ||
17964 | 118,0,327,3,119, | ||
17965 | 0,327,3,120,0, | ||
17966 | 327,3,121,0,327, | ||
17967 | 3,122,0,327,3, | ||
17968 | 48,0,327,3,49, | ||
17969 | 0,327,3,50,0, | ||
17970 | 327,3,51,0,327, | ||
17971 | 3,52,0,327,3, | ||
17972 | 53,0,327,3,54, | ||
17973 | 0,327,3,55,0, | ||
17974 | 327,3,56,0,327, | ||
17975 | 3,57,0,327,3, | ||
17976 | 65,0,327,3,66, | ||
17977 | 0,327,3,67,0, | ||
17978 | 327,3,68,0,327, | ||
17979 | 3,69,0,327,3, | ||
17980 | 70,0,327,3,71, | ||
17981 | 0,327,3,72,0, | ||
17982 | 327,3,73,0,327, | ||
17983 | 3,74,0,327,3, | ||
17984 | 75,0,327,3,76, | ||
17985 | 0,327,3,77,0, | ||
17986 | 327,3,78,0,327, | ||
17987 | 3,79,0,327,3, | ||
17988 | 80,0,327,3,81, | ||
17989 | 0,327,3,82,0, | ||
17990 | 327,3,83,0,327, | ||
17991 | 3,84,0,327,3, | ||
17992 | 85,0,327,3,86, | ||
17993 | 0,327,3,87,0, | ||
17994 | 327,3,88,0,327, | ||
17995 | 3,89,0,327,3, | ||
17996 | 90,0,327,3,95, | ||
17997 | 0,327,3,97,0, | ||
17998 | 327,3,98,0,327, | ||
17999 | 3,99,0,327,3, | ||
18000 | 100,0,327,3,101, | ||
18001 | 0,327,3,102,0, | ||
18002 | 327,3,103,0,327, | ||
18003 | 3,104,0,327,3, | ||
18004 | 105,0,1311,12,1, | ||
18005 | 20431,1312,5,63,3, | ||
18006 | 109,0,327,3,110, | ||
18007 | 0,327,3,111,0, | ||
18008 | 327,3,112,0,327, | ||
18009 | 3,113,0,327,3, | ||
18010 | 114,0,327,3,115, | ||
18011 | 0,327,3,116,0, | ||
18012 | 327,3,117,0,327, | ||
18013 | 3,118,0,327,3, | ||
18014 | 119,0,327,3,120, | ||
18015 | 0,327,3,121,0, | ||
18016 | 327,3,122,0,327, | ||
18017 | 3,48,0,327,3, | ||
18018 | 49,0,327,3,50, | ||
18019 | 0,327,3,51,0, | ||
18020 | 327,3,52,0,327, | ||
18021 | 3,53,0,327,3, | ||
18022 | 54,0,327,3,55, | ||
18023 | 0,327,3,56,0, | ||
18024 | 327,3,57,0,327, | ||
18025 | 3,65,0,327,3, | ||
18026 | 66,0,327,3,67, | ||
18027 | 0,327,3,68,0, | ||
18028 | 327,3,69,0,327, | ||
18029 | 3,70,0,327,3, | ||
18030 | 71,0,327,3,72, | ||
18031 | 0,327,3,73,0, | ||
18032 | 327,3,74,0,327, | ||
18033 | 3,75,0,327,3, | ||
18034 | 76,0,327,3,77, | ||
18035 | 0,327,3,78,0, | ||
18036 | 327,3,79,0,327, | ||
18037 | 3,80,0,327,3, | ||
18038 | 81,0,327,3,82, | ||
18039 | 0,327,3,83,0, | ||
18040 | 327,3,84,0,327, | ||
18041 | 3,85,0,327,3, | ||
18042 | 86,0,327,3,87, | ||
18043 | 0,327,3,88,0, | ||
18044 | 327,3,89,0,327, | ||
18045 | 3,90,0,327,3, | ||
18046 | 95,0,327,3,97, | ||
18047 | 0,327,3,98,0, | ||
18048 | 327,3,99,0,327, | ||
18049 | 3,100,0,327,3, | ||
18050 | 101,0,327,3,102, | ||
18051 | 0,327,3,103,0, | ||
18052 | 327,3,104,0,327, | ||
18053 | 3,105,0,327,3, | ||
18054 | 106,0,327,3,107, | ||
18055 | 0,327,3,108,0, | ||
18056 | 1313,12,1,20485,1314, | ||
18057 | 5,63,3,109,0, | ||
18058 | 327,3,110,0,327, | ||
18059 | 3,111,0,327,3, | ||
18060 | 112,0,327,3,113, | ||
18061 | 0,327,3,114,0, | ||
18062 | 327,3,115,0,327, | ||
18063 | 3,116,0,327,3, | ||
18064 | 117,0,327,3,118, | ||
18065 | 0,327,3,119,0, | ||
18066 | 327,3,120,0,327, | ||
18067 | 3,121,0,327,3, | ||
18068 | 122,0,327,3,48, | ||
18069 | 0,327,3,49,0, | ||
18070 | 327,3,50,0,327, | ||
18071 | 3,51,0,327,3, | ||
18072 | 52,0,327,3,53, | ||
18073 | 0,327,3,54,0, | ||
18074 | 327,3,55,0,327, | ||
18075 | 3,56,0,327,3, | ||
18076 | 57,0,327,3,65, | ||
18077 | 0,327,3,66,0, | ||
18078 | 327,3,67,0,327, | ||
18079 | 3,68,0,327,3, | ||
18080 | 69,0,327,3,70, | ||
18081 | 0,327,3,71,0, | ||
18082 | 327,3,72,0,327, | ||
18083 | 3,73,0,327,3, | ||
18084 | 74,0,327,3,75, | ||
18085 | 0,327,3,76,0, | ||
18086 | 327,3,77,0,327, | ||
18087 | 3,78,0,327,3, | ||
18088 | 79,0,327,3,80, | ||
18089 | 0,327,3,81,0, | ||
18090 | 327,3,82,0,327, | ||
18091 | 3,83,0,327,3, | ||
18092 | 84,0,327,3,85, | ||
18093 | 0,327,3,86,0, | ||
18094 | 327,3,87,0,327, | ||
18095 | 3,88,0,327,3, | ||
18096 | 89,0,327,3,90, | ||
18097 | 0,327,3,95,0, | ||
18098 | 327,3,97,0,327, | ||
18099 | 3,98,0,327,3, | ||
18100 | 99,0,327,3,100, | ||
18101 | 0,327,3,101,0, | ||
18102 | 1315,12,1,20532,1316, | ||
18103 | 5,63,3,109,0, | ||
18104 | 327,3,110,0,327, | ||
18105 | 3,111,0,327,3, | ||
18106 | 112,0,327,3,113, | ||
18107 | 0,327,3,114,0, | ||
18108 | 327,3,115,0,327, | ||
18109 | 3,116,0,327,3, | ||
18110 | 117,0,327,3,118, | ||
18111 | 0,327,3,119,0, | ||
18112 | 327,3,120,0,327, | ||
18113 | 3,121,0,327,3, | ||
18114 | 122,0,327,3,48, | ||
18115 | 0,327,3,49,0, | ||
18116 | 327,3,50,0,327, | ||
18117 | 3,51,0,327,3, | ||
18118 | 52,0,327,3,53, | ||
18119 | 0,327,3,54,0, | ||
18120 | 327,3,55,0,327, | ||
18121 | 3,56,0,327,3, | ||
18122 | 57,0,327,3,65, | ||
18123 | 0,327,3,66,0, | ||
18124 | 327,3,67,0,327, | ||
18125 | 3,68,0,327,3, | ||
18126 | 69,0,327,3,70, | ||
18127 | 0,327,3,71,0, | ||
18128 | 327,3,72,0,327, | ||
18129 | 3,73,0,327,3, | ||
18130 | 74,0,327,3,75, | ||
18131 | 0,327,3,76,0, | ||
18132 | 327,3,77,0,327, | ||
18133 | 3,78,0,327,3, | ||
18134 | 79,0,327,3,80, | ||
18135 | 0,327,3,81,0, | ||
18136 | 327,3,82,0,327, | ||
18137 | 3,83,0,327,3, | ||
18138 | 84,0,327,3,85, | ||
18139 | 0,327,3,86,0, | ||
18140 | 327,3,87,0,327, | ||
18141 | 3,88,0,327,3, | ||
18142 | 89,0,327,3,90, | ||
18143 | 0,327,3,95,0, | ||
18144 | 327,3,97,0,327, | ||
18145 | 3,98,0,327,3, | ||
18146 | 99,0,327,3,100, | ||
18147 | 0,327,3,101,0, | ||
18148 | 327,3,102,0,327, | ||
18149 | 3,103,0,327,3, | ||
18150 | 104,0,327,3,105, | ||
18151 | 0,327,3,106,0, | ||
18152 | 327,3,107,0,327, | ||
18153 | 3,108,0,327,1317, | ||
18154 | 11,1,229,0,1318, | ||
18155 | 4,10,87,0,72, | ||
18156 | 0,73,0,76,0, | ||
18157 | 69,0,1,-1,3, | ||
18158 | 102,0,327,3,103, | ||
18159 | 0,327,3,104,0, | ||
18160 | 327,3,105,0,327, | ||
18161 | 3,106,0,327,3, | ||
18162 | 107,0,327,3,108, | ||
18163 | 0,327,1319,11,1, | ||
18164 | 829,0,330,1,-1, | ||
18165 | 1320,11,1,829,0, | ||
18166 | 330,1,-1,3,106, | ||
18167 | 0,327,3,107,0, | ||
18168 | 327,3,108,0,327, | ||
18169 | 1321,11,1,829,0, | ||
18170 | 330,1,-1,3,105, | ||
18171 | 0,327,3,106,0, | ||
18172 | 327,3,107,0,327, | ||
18173 | 3,108,0,327,1322, | ||
18174 | 11,1,829,0,330, | ||
18175 | 1,-1,3,120,0, | ||
18176 | 325,3,121,0,325, | ||
18177 | 3,122,0,325,3, | ||
18178 | 123,0,1323,12,1, | ||
18179 | 40301,1324,5,0,1325, | ||
18180 | 11,1,51,0,1326, | ||
18181 | 4,20,76,0,69, | ||
18182 | 0,70,0,84,0, | ||
18183 | 95,0,66,0,82, | ||
18184 | 0,65,0,67,0, | ||
18185 | 69,0,1,-1,3, | ||
18186 | 124,0,1327,12,1, | ||
18187 | 43084,1328,5,1,3, | ||
18188 | 124,0,1329,12,1, | ||
18189 | 43196,1330,5,0,1331, | ||
18190 | 11,1,191,0,1332, | ||
18191 | 4,26,83,0,84, | ||
18192 | 0,82,0,79,0, | ||
18193 | 75,0,69,0,95, | ||
18194 | 0,83,0,84,0, | ||
18195 | 82,0,79,0,75, | ||
18196 | 0,69,0,1,-1, | ||
18197 | 1333,11,1,165,0, | ||
18198 | 1334,4,12,83,0, | ||
18199 | 84,0,82,0,79, | ||
18200 | 0,75,0,69,0, | ||
18201 | 1,-1,3,125,0, | ||
18202 | 1335,12,1,40666,1336, | ||
18203 | 5,0,1337,11,1, | ||
18204 | 56,0,1338,4,22, | ||
18205 | 82,0,73,0,71, | ||
18206 | 0,72,0,84,0, | ||
18207 | 95,0,66,0,82, | ||
18208 | 0,65,0,67,0, | ||
18209 | 69,0,1,-1,3, | ||
18210 | 126,0,1339,12,1, | ||
18211 | 43325,1340,5,0,1341, | ||
18212 | 11,1,175,0,1342, | ||
18213 | 4,10,84,0,73, | ||
18214 | 0,76,0,68,0, | ||
18215 | 69,0,1,-1,1343, | ||
18216 | 11,1,882,0,244, | ||
18217 | 1,-1,1344,4,12, | ||
18218 | 83,0,84,0,82, | ||
18219 | 0,73,0,78,0, | ||
18220 | 71,0,1345,12,1, | ||
18221 | 44893,1346,5,119,3, | ||
18222 | 1,0,1347,12,1, | ||
18223 | 44894,1348,5,0,1349, | ||
18224 | 11,1,956,0,165, | ||
18225 | 1,-1,3,9,0, | ||
18226 | 1347,3,10,0,1350, | ||
18227 | 12,1,45095,1351,5, | ||
18228 | 0,1352,11,1,962, | ||
18229 | 0,165,1,-1,3, | ||
18230 | 13,0,1347,3,0, | ||
18231 | 3,1347,3,96,33, | ||
18232 | 1347,3,32,0,1347, | ||
18233 | 3,33,0,1347,3, | ||
18234 | 34,0,1353,12,1, | ||
18235 | 46442,1354,5,0,1355, | ||
18236 | 11,1,1064,0,165, | ||
18237 | 1,-1,3,35,0, | ||
18238 | 1347,3,36,0,1347, | ||
18239 | 3,37,0,1347,3, | ||
18240 | 38,0,1347,3,40, | ||
18241 | 0,1347,3,41,0, | ||
18242 | 1347,3,42,0,1347, | ||
18243 | 3,43,0,1347,3, | ||
18244 | 44,0,1347,3,45, | ||
18245 | 0,1347,3,46,0, | ||
18246 | 1347,3,47,0,1347, | ||
18247 | 3,3,9,1347,3, | ||
18248 | 49,0,1347,3,50, | ||
18249 | 0,1347,3,48,0, | ||
18250 | 1347,3,52,0,1347, | ||
18251 | 3,53,0,1347,3, | ||
18252 | 51,0,1347,3,55, | ||
18253 | 0,1347,3,56,0, | ||
18254 | 1347,3,54,0,1347, | ||
18255 | 3,59,0,1347,3, | ||
18256 | 57,0,1347,3,61, | ||
18257 | 0,1347,3,62,0, | ||
18258 | 1347,3,60,0,1347, | ||
18259 | 3,64,0,1347,3, | ||
18260 | 65,0,1347,3,66, | ||
18261 | 0,1347,3,67,0, | ||
18262 | 1347,3,68,0,1347, | ||
18263 | 3,69,0,1347,3, | ||
18264 | 70,0,1347,3,71, | ||
18265 | 0,1347,3,72,0, | ||
18266 | 1347,3,73,0,1347, | ||
18267 | 3,74,0,1347,3, | ||
18268 | 75,0,1347,3,76, | ||
18269 | 0,1347,3,77,0, | ||
18270 | 1347,3,78,0,1347, | ||
18271 | 3,79,0,1347,3, | ||
18272 | 80,0,1347,3,81, | ||
18273 | 0,1347,3,82,0, | ||
18274 | 1347,3,83,0,1347, | ||
18275 | 3,84,0,1347,3, | ||
18276 | 85,0,1347,3,86, | ||
18277 | 0,1347,3,87,0, | ||
18278 | 1347,3,88,0,1347, | ||
18279 | 3,89,0,1347,3, | ||
18280 | 90,0,1347,3,91, | ||
18281 | 0,1347,3,92,0, | ||
18282 | 1356,12,1,45238,1357, | ||
18283 | 5,8,3,110,0, | ||
18284 | 1358,12,1,45267,1359, | ||
18285 | 5,0,1360,11,1, | ||
18286 | 967,0,165,1,-1, | ||
18287 | 3,10,0,1361,12, | ||
18288 | 1,45796,1362,5,5, | ||
18289 | 3,10,0,1361,3, | ||
18290 | 13,0,1363,12,1, | ||
18291 | 45633,1364,5,5,3, | ||
18292 | 10,0,1361,3,13, | ||
18293 | 0,1363,3,92,0, | ||
18294 | 1365,12,1,45901,1366, | ||
18295 | 5,0,1367,11,1, | ||
18296 | 1020,0,165,1,-1, | ||
18297 | 3,9,0,1368,12, | ||
18298 | 1,45714,1369,5,5, | ||
18299 | 3,10,0,1361,3, | ||
18300 | 13,0,1363,3,92, | ||
18301 | 0,1365,3,9,0, | ||
18302 | 1368,3,32,0,1370, | ||
18303 | 12,1,45553,1371,5, | ||
18304 | 5,3,10,0,1361, | ||
18305 | 3,13,0,1363,3, | ||
18306 | 92,0,1365,3,9, | ||
18307 | 0,1368,3,32,0, | ||
18308 | 1370,0,165,1,-1, | ||
18309 | 0,165,1,-1,3, | ||
18310 | 32,0,1370,0,165, | ||
18311 | 1,-1,3,92,0, | ||
18312 | 1365,3,9,0,1368, | ||
18313 | 3,32,0,1370,0, | ||
18314 | 165,1,-1,3,13, | ||
18315 | 0,1363,3,92,0, | ||
18316 | 1372,12,1,46183,1373, | ||
18317 | 5,0,1374,11,1, | ||
18318 | 1003,0,165,1,-1, | ||
18319 | 3,116,0,1375,12, | ||
18320 | 1,45393,1376,5,0, | ||
18321 | 1377,11,1,979,0, | ||
18322 | 165,1,-1,3,34, | ||
18323 | 0,1378,12,1,46307, | ||
18324 | 1379,5,0,1380,11, | ||
18325 | 1,991,0,165,1, | ||
18326 | -1,3,9,0,1368, | ||
18327 | 3,32,0,1370,1381, | ||
18328 | 11,1,1015,0,165, | ||
18329 | 1,-1,3,93,0, | ||
18330 | 1347,3,94,0,1347, | ||
18331 | 3,95,0,1347,3, | ||
18332 | 96,0,1347,3,97, | ||
18333 | 0,1347,3,98,0, | ||
18334 | 1347,3,99,0,1347, | ||
18335 | 3,100,0,1347,3, | ||
18336 | 101,0,1347,3,102, | ||
18337 | 0,1347,3,103,0, | ||
18338 | 1347,3,104,0,1347, | ||
18339 | 3,105,0,1347,3, | ||
18340 | 106,0,1347,3,107, | ||
18341 | 0,1347,3,108,0, | ||
18342 | 1347,3,109,0,1347, | ||
18343 | 3,110,0,1347,3, | ||
18344 | 111,0,1347,3,112, | ||
18345 | 0,1347,3,113,0, | ||
18346 | 1347,3,114,0,1347, | ||
18347 | 3,115,0,1347,3, | ||
18348 | 116,0,1347,3,117, | ||
18349 | 0,1347,3,118,0, | ||
18350 | 1347,3,119,0,1347, | ||
18351 | 3,120,0,1347,3, | ||
18352 | 121,0,1347,3,122, | ||
18353 | 0,1347,3,123,0, | ||
18354 | 1347,3,124,0,1347, | ||
18355 | 3,125,0,1347,3, | ||
18356 | 96,6,1347,3,126, | ||
18357 | 0,1347,3,58,15, | ||
18358 | 1347,3,59,15,1347, | ||
18359 | 3,136,4,1347,3, | ||
18360 | 160,0,1347,3,15, | ||
18361 | 7,1347,3,170,0, | ||
18362 | 1347,3,171,0,1347, | ||
18363 | 3,172,0,1347,3, | ||
18364 | 173,0,1347,3,178, | ||
18365 | 0,1347,3,176,2, | ||
18366 | 1347,3,187,0,1347, | ||
18367 | 3,187,1,1347,3, | ||
18368 | 192,0,1347,3,41, | ||
18369 | 32,1347,3,197,1, | ||
18370 | 1347,3,0,224,1347, | ||
18371 | 3,40,32,1347,3, | ||
18372 | 63,32,1347,0,165, | ||
18373 | 1,-1,1382,5,92, | ||
18374 | 266,1383,10,266,1, | ||
18375 | 19,567,1384,10,567, | ||
18376 | 1,47,259,1385,10, | ||
18377 | 259,1,92,1150,1386, | ||
18378 | 10,1150,1,50,1019, | ||
18379 | 1387,10,1019,1,80, | ||
18380 | 1169,1388,10,1169,1, | ||
18381 | 53,173,1389,10,173, | ||
18382 | 1,37,596,1390,10, | ||
18383 | 596,1,43,678,1391, | ||
18384 | 10,678,1,51,607, | ||
18385 | 1392,10,607,1,46, | ||
18386 | 196,1393,10,196,1, | ||
18387 | 16,200,1394,10,200, | ||
18388 | 1,17,650,1395,10, | ||
18389 | 650,1,68,879,1396, | ||
18390 | 10,879,1,75,355, | ||
18391 | 1397,10,355,1,35, | ||
18392 | 208,1398,10,208,1, | ||
18393 | 20,214,1399,10,214, | ||
18394 | 1,6,184,1400,10, | ||
18395 | 184,1,22,284,1401, | ||
18396 | 10,284,1,21,244, | ||
18397 | 1402,10,244,1,94, | ||
18398 | 1270,1403,10,1270,1, | ||
18399 | 88,475,1404,10,475, | ||
18400 | 1,64,698,1405,10, | ||
18401 | 698,1,49,351,1406, | ||
18402 | 10,351,1,28,300, | ||
18403 | 1407,10,300,1,25, | ||
18404 | 687,1408,10,687,1, | ||
18405 | 42,770,1409,10,770, | ||
18406 | 1,69,1209,1410,10, | ||
18407 | 1209,1,48,318,1411, | ||
18408 | 10,318,1,41,828, | ||
18409 | 1412,10,828,1,57, | ||
18410 | 218,1413,10,218,1, | ||
18411 | 4,324,1414,10,324, | ||
18412 | 1,23,487,1415,10, | ||
18413 | 487,1,63,1224,1416, | ||
18414 | 10,1224,1,84,306, | ||
18415 | 1417,10,306,1,29, | ||
18416 | 230,1418,10,230,1, | ||
18417 | 5,298,1419,10,298, | ||
18418 | 1,31,618,1420,10, | ||
18419 | 618,1,52,867,1421, | ||
18420 | 10,867,1,76,1092, | ||
18421 | 1422,10,1092,1,83, | ||
18422 | 995,1423,10,995,1, | ||
18423 | 81,973,1424,10,973, | ||
18424 | 1,77,171,1425,10, | ||
18425 | 171,1,30,264,1426, | ||
18426 | 10,264,1,7,825, | ||
18427 | 1427,10,825,1,73, | ||
18428 | 182,1428,10,182,1, | ||
18429 | 10,347,1429,10,347, | ||
18430 | 1,27,255,1430,10, | ||
18431 | 255,1,93,224,1431, | ||
18432 | 10,224,1,14,270, | ||
18433 | 1432,10,270,1,24, | ||
18434 | 709,1433,10,709,1, | ||
18435 | 54,282,1434,10,282, | ||
18436 | 1,9,1203,1435,10, | ||
18437 | 1203,1,86,492,1436, | ||
18438 | 10,492,1,62,1437, | ||
18439 | 4,30,83,0,84, | ||
18440 | 0,82,0,73,0, | ||
18441 | 78,0,71,0,95, | ||
18442 | 0,67,0,79,0, | ||
18443 | 78,0,83,0,84, | ||
18444 | 0,65,0,78,0, | ||
18445 | 84,0,1438,10,1437, | ||
18446 | 1,3,1318,1439,10, | ||
18447 | 1318,1,45,330,1440, | ||
18448 | 10,330,1,91,545, | ||
18449 | 1441,10,545,1,66, | ||
18450 | 1046,1442,10,1046,1, | ||
18451 | 56,396,1443,10,396, | ||
18452 | 1,58,1326,1444,10, | ||
18453 | 1326,1,12,525,1445, | ||
18454 | 10,525,1,44,294, | ||
18455 | 1446,10,294,1,40, | ||
18456 | 1132,1447,10,1132,1, | ||
18457 | 82,585,1448,10,585, | ||
18458 | 1,67,924,1449,10, | ||
18459 | 924,1,78,1342,1450, | ||
18460 | 10,1342,1,36,1334, | ||
18461 | 1451,10,1334,1,34, | ||
18462 | 765,1452,10,765,1, | ||
18463 | 70,1283,1453,10,1283, | ||
18464 | 1,87,843,1454,10, | ||
18465 | 843,1,74,320,1455, | ||
18466 | 10,320,1,26,419, | ||
18467 | 1456,10,419,1,59, | ||
18468 | 192,1457,10,192,1, | ||
18469 | 33,288,1458,10,288, | ||
18470 | 1,11,190,1459,10, | ||
18471 | 190,1,38,513,1460, | ||
18472 | 10,513,1,61,806, | ||
18473 | 1461,10,806,1,72, | ||
18474 | 1265,1462,10,1265,1, | ||
18475 | 90,308,1463,10,308, | ||
18476 | 1,15,947,1464,10, | ||
18477 | 947,1,79,1332,1465, | ||
18478 | 10,1332,1,39,314, | ||
18479 | 1466,10,314,1,32, | ||
18480 | 1253,1467,10,1253,1, | ||
18481 | 89,369,1468,10,369, | ||
18482 | 1,60,1301,1469,10, | ||
18483 | 1301,1,55,1338,1470, | ||
18484 | 10,1338,1,13,1192, | ||
18485 | 1471,10,1192,1,85, | ||
18486 | 220,1472,10,220,1, | ||
18487 | 18,206,1473,10,206, | ||
18488 | 1,8,753,1474,10, | ||
18489 | 753,1,71,443,1475, | ||
18490 | 10,443,1,65,1476, | ||
18491 | 5,0,0}; | ||
18492 | new Tfactory(this,"MINUS",new TCreator(MINUS_factory)); | ||
18493 | new Tfactory(this,"DEFAULT_STATE",new TCreator(DEFAULT_STATE_factory)); | ||
18494 | new Tfactory(this,"INTEGER_CONSTANT",new TCreator(INTEGER_CONSTANT_factory)); | ||
18495 | new Tfactory(this,"RETURN",new TCreator(RETURN_factory)); | ||
18496 | new Tfactory(this,"OBJECT_REZ_EVENT",new TCreator(OBJECT_REZ_EVENT_factory)); | ||
18497 | new Tfactory(this,"STRING_TYPE",new TCreator(STRING_TYPE_factory)); | ||
18498 | new Tfactory(this,"EXCLAMATION",new TCreator(EXCLAMATION_factory)); | ||
18499 | new Tfactory(this,"ELSE",new TCreator(ELSE_factory)); | ||
18500 | new Tfactory(this,"INTEGER_TYPE",new TCreator(INTEGER_TYPE_factory)); | ||
18501 | new Tfactory(this,"FOR",new TCreator(FOR_factory)); | ||
18502 | new Tfactory(this,"LEFT_PAREN",new TCreator(LEFT_PAREN_factory)); | ||
18503 | new Tfactory(this,"RIGHT_PAREN",new TCreator(RIGHT_PAREN_factory)); | ||
18504 | new Tfactory(this,"HTTP_RESPONSE_EVENT",new TCreator(HTTP_RESPONSE_EVENT_factory)); | ||
18505 | new Tfactory(this,"MOVING_END_EVENT",new TCreator(MOVING_END_EVENT_factory)); | ||
18506 | new Tfactory(this,"CARET",new TCreator(CARET_factory)); | ||
18507 | new Tfactory(this,"STAR",new TCreator(STAR_factory)); | ||
18508 | new Tfactory(this,"PLUS_EQUALS",new TCreator(PLUS_EQUALS_factory)); | ||
18509 | new Tfactory(this,"PERCENT",new TCreator(PERCENT_factory)); | ||
18510 | new Tfactory(this,"SLASH",new TCreator(SLASH_factory)); | ||
18511 | new Tfactory(this,"FLOAT_CONSTANT",new TCreator(FLOAT_CONSTANT_factory)); | ||
18512 | new Tfactory(this,"TOUCH_EVENT",new TCreator(TOUCH_EVENT_factory)); | ||
18513 | new Tfactory(this,"COLLISION_START_EVENT",new TCreator(COLLISION_START_EVENT_factory)); | ||
18514 | new Tfactory(this,"JUMP",new TCreator(JUMP_factory)); | ||
18515 | new Tfactory(this,"RIGHT_BRACKET",new TCreator(RIGHT_BRACKET_factory)); | ||
18516 | new Tfactory(this,"LEFT_ANGLE",new TCreator(LEFT_ANGLE_factory)); | ||
18517 | new Tfactory(this,"IF",new TCreator(IF_factory)); | ||
18518 | new Tfactory(this,"LAND_COLLISION_EVENT",new TCreator(LAND_COLLISION_EVENT_factory)); | ||
18519 | new Tfactory(this,"STATE",new TCreator(STATE_factory)); | ||
18520 | new Tfactory(this,"RIGHT_SHIFT",new TCreator(RIGHT_SHIFT_factory)); | ||
18521 | new Tfactory(this,"LIST_TYPE",new TCreator(LIST_TYPE_factory)); | ||
18522 | new Tfactory(this,"INCREMENT",new TCreator(INCREMENT_factory)); | ||
18523 | new Tfactory(this,"AT",new TCreator(AT_factory)); | ||
18524 | new Tfactory(this,"COLLISION_END_EVENT",new TCreator(COLLISION_END_EVENT_factory)); | ||
18525 | new Tfactory(this,"SENSOR_EVENT",new TCreator(SENSOR_EVENT_factory)); | ||
18526 | new Tfactory(this,"EQUALS_EQUALS",new TCreator(EQUALS_EQUALS_factory)); | ||
18527 | new Tfactory(this,"DECREMENT",new TCreator(DECREMENT_factory)); | ||
18528 | new Tfactory(this,"LESS_EQUALS",new TCreator(LESS_EQUALS_factory)); | ||
18529 | new Tfactory(this,"FLOAT_TYPE",new TCreator(FLOAT_TYPE_factory)); | ||
18530 | new Tfactory(this,"MOVING_START_EVENT",new TCreator(MOVING_START_EVENT_factory)); | ||
18531 | new Tfactory(this,"RUN_TIME_PERMISSIONS_EVENT",new TCreator(RUN_TIME_PERMISSIONS_EVENT_factory)); | ||
18532 | new Tfactory(this,"ON_REZ_EVENT",new TCreator(ON_REZ_EVENT_factory)); | ||
18533 | new Tfactory(this,"NO_SENSOR_EVENT",new TCreator(NO_SENSOR_EVENT_factory)); | ||
18534 | new Tfactory(this,"EXCLAMATION_EQUALS",new TCreator(EXCLAMATION_EQUALS_factory)); | ||
18535 | new Tfactory(this,"MINUS_EQUALS",new TCreator(MINUS_EQUALS_factory)); | ||
18536 | new Tfactory(this,"LISTEN_EVENT",new TCreator(LISTEN_EVENT_factory)); | ||
18537 | new Tfactory(this,"PERCENT_EQUALS",new TCreator(PERCENT_EQUALS_factory)); | ||
18538 | new Tfactory(this,"LEFT_BRACKET",new TCreator(LEFT_BRACKET_factory)); | ||
18539 | new Tfactory(this,"HEX_INTEGER_CONSTANT",new TCreator(HEX_INTEGER_CONSTANT_factory)); | ||
18540 | new Tfactory(this,"COMMA",new TCreator(COMMA_factory)); | ||
18541 | new Tfactory(this,"PERIOD",new TCreator(PERIOD_factory)); | ||
18542 | new Tfactory(this,"KEY_TYPE",new TCreator(KEY_TYPE_factory)); | ||
18543 | new Tfactory(this,"SLASH_EQUALS",new TCreator(SLASH_EQUALS_factory)); | ||
18544 | new Tfactory(this,"STATE_EXIT_EVENT",new TCreator(STATE_EXIT_EVENT_factory)); | ||
18545 | new Tfactory(this,"COLLISION_EVENT",new TCreator(COLLISION_EVENT_factory)); | ||
18546 | new Tfactory(this,"STRING_CONSTANT",new TCreator(STRING_CONSTANT_factory)); | ||
18547 | new Tfactory(this,"WHILE",new TCreator(WHILE_factory)); | ||
18548 | new Tfactory(this,"IDENT",new TCreator(IDENT_factory)); | ||
18549 | new Tfactory(this,"DATASERVER_EVENT",new TCreator(DATASERVER_EVENT_factory)); | ||
18550 | new Tfactory(this,"ROTATION_TYPE",new TCreator(ROTATION_TYPE_factory)); | ||
18551 | new Tfactory(this,"AT_ROT_TARGET_EVENT",new TCreator(AT_ROT_TARGET_EVENT_factory)); | ||
18552 | new Tfactory(this,"LEFT_BRACE",new TCreator(LEFT_BRACE_factory)); | ||
18553 | new Tfactory(this,"DO",new TCreator(DO_factory)); | ||
18554 | new Tfactory(this,"LEFT_SHIFT",new TCreator(LEFT_SHIFT_factory)); | ||
18555 | new Tfactory(this,"REMOTE_DATA_EVENT",new TCreator(REMOTE_DATA_EVENT_factory)); | ||
18556 | new Tfactory(this,"EMAIL_EVENT",new TCreator(EMAIL_EVENT_factory)); | ||
18557 | new Tfactory(this,"NOT_AT_ROT_TARGET_EVENT",new TCreator(NOT_AT_ROT_TARGET_EVENT_factory)); | ||
18558 | new Tfactory(this,"TILDE",new TCreator(TILDE_factory)); | ||
18559 | new Tfactory(this,"STROKE",new TCreator(STROKE_factory)); | ||
18560 | new Tfactory(this,"LAND_COLLISION_END_EVENT",new TCreator(LAND_COLLISION_END_EVENT_factory)); | ||
18561 | new Tfactory(this,"TIMER_EVENT",new TCreator(TIMER_EVENT_factory)); | ||
18562 | new Tfactory(this,"MONEY_EVENT",new TCreator(MONEY_EVENT_factory)); | ||
18563 | new Tfactory(this,"RIGHT_ANGLE",new TCreator(RIGHT_ANGLE_factory)); | ||
18564 | new Tfactory(this,"AT_TARGET_EVENT",new TCreator(AT_TARGET_EVENT_factory)); | ||
18565 | new Tfactory(this,"AMP",new TCreator(AMP_factory)); | ||
18566 | new Tfactory(this,"SEMICOLON",new TCreator(SEMICOLON_factory)); | ||
18567 | new Tfactory(this,"AMP_AMP",new TCreator(AMP_AMP_factory)); | ||
18568 | new Tfactory(this,"CHANGED_EVENT",new TCreator(CHANGED_EVENT_factory)); | ||
18569 | new Tfactory(this,"LINK_MESSAGE_EVENT",new TCreator(LINK_MESSAGE_EVENT_factory)); | ||
18570 | new Tfactory(this,"TOUCH_END_EVENT",new TCreator(TOUCH_END_EVENT_factory)); | ||
18571 | new Tfactory(this,"EQUALS",new TCreator(EQUALS_factory)); | ||
18572 | new Tfactory(this,"NOT_AT_TARGET_EVENT",new TCreator(NOT_AT_TARGET_EVENT_factory)); | ||
18573 | new Tfactory(this,"STROKE_STROKE",new TCreator(STROKE_STROKE_factory)); | ||
18574 | new Tfactory(this,"GREATER_EQUALS",new TCreator(GREATER_EQUALS_factory)); | ||
18575 | new Tfactory(this,"TOUCH_START_EVENT",new TCreator(TOUCH_START_EVENT_factory)); | ||
18576 | new Tfactory(this,"ATTACH_EVENT",new TCreator(ATTACH_EVENT_factory)); | ||
18577 | new Tfactory(this,"VECTOR_TYPE",new TCreator(VECTOR_TYPE_factory)); | ||
18578 | new Tfactory(this,"RIGHT_BRACE",new TCreator(RIGHT_BRACE_factory)); | ||
18579 | new Tfactory(this,"STATE_ENTRY_EVENT",new TCreator(STATE_ENTRY_EVENT_factory)); | ||
18580 | new Tfactory(this,"PLUS",new TCreator(PLUS_factory)); | ||
18581 | new Tfactory(this,"STAR_EQUALS",new TCreator(STAR_EQUALS_factory)); | ||
18582 | new Tfactory(this,"LAND_COLLISION_START_EVENT",new TCreator(LAND_COLLISION_START_EVENT_factory)); | ||
18583 | new Tfactory(this,"CONTROL_EVENT",new TCreator(CONTROL_EVENT_factory)); | ||
18584 | } | ||
18585 | public static object MINUS_factory(Lexer yyl) { return new MINUS(yyl);} | ||
18586 | public static object DEFAULT_STATE_factory(Lexer yyl) { return new DEFAULT_STATE(yyl);} | ||
18587 | public static object INTEGER_CONSTANT_factory(Lexer yyl) { return new INTEGER_CONSTANT(yyl);} | ||
18588 | public static object RETURN_factory(Lexer yyl) { return new RETURN(yyl);} | ||
18589 | public static object OBJECT_REZ_EVENT_factory(Lexer yyl) { return new OBJECT_REZ_EVENT(yyl);} | ||
18590 | public static object STRING_TYPE_factory(Lexer yyl) { return new STRING_TYPE(yyl);} | ||
18591 | public static object EXCLAMATION_factory(Lexer yyl) { return new EXCLAMATION(yyl);} | ||
18592 | public static object ELSE_factory(Lexer yyl) { return new ELSE(yyl);} | ||
18593 | public static object INTEGER_TYPE_factory(Lexer yyl) { return new INTEGER_TYPE(yyl);} | ||
18594 | public static object FOR_factory(Lexer yyl) { return new FOR(yyl);} | ||
18595 | public static object LEFT_PAREN_factory(Lexer yyl) { return new LEFT_PAREN(yyl);} | ||
18596 | public static object RIGHT_PAREN_factory(Lexer yyl) { return new RIGHT_PAREN(yyl);} | ||
18597 | public static object HTTP_RESPONSE_EVENT_factory(Lexer yyl) { return new HTTP_RESPONSE_EVENT(yyl);} | ||
18598 | public static object MOVING_END_EVENT_factory(Lexer yyl) { return new MOVING_END_EVENT(yyl);} | ||
18599 | public static object CARET_factory(Lexer yyl) { return new CARET(yyl);} | ||
18600 | public static object STAR_factory(Lexer yyl) { return new STAR(yyl);} | ||
18601 | public static object PLUS_EQUALS_factory(Lexer yyl) { return new PLUS_EQUALS(yyl);} | ||
18602 | public static object PERCENT_factory(Lexer yyl) { return new PERCENT(yyl);} | ||
18603 | public static object SLASH_factory(Lexer yyl) { return new SLASH(yyl);} | ||
18604 | public static object FLOAT_CONSTANT_factory(Lexer yyl) { return new FLOAT_CONSTANT(yyl);} | ||
18605 | public static object TOUCH_EVENT_factory(Lexer yyl) { return new TOUCH_EVENT(yyl);} | ||
18606 | public static object COLLISION_START_EVENT_factory(Lexer yyl) { return new COLLISION_START_EVENT(yyl);} | ||
18607 | public static object JUMP_factory(Lexer yyl) { return new JUMP(yyl);} | ||
18608 | public static object RIGHT_BRACKET_factory(Lexer yyl) { return new RIGHT_BRACKET(yyl);} | ||
18609 | public static object LEFT_ANGLE_factory(Lexer yyl) { return new LEFT_ANGLE(yyl);} | ||
18610 | public static object IF_factory(Lexer yyl) { return new IF(yyl);} | ||
18611 | public static object LAND_COLLISION_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_EVENT(yyl);} | ||
18612 | public static object STATE_factory(Lexer yyl) { return new STATE(yyl);} | ||
18613 | public static object RIGHT_SHIFT_factory(Lexer yyl) { return new RIGHT_SHIFT(yyl);} | ||
18614 | public static object LIST_TYPE_factory(Lexer yyl) { return new LIST_TYPE(yyl);} | ||
18615 | public static object INCREMENT_factory(Lexer yyl) { return new INCREMENT(yyl);} | ||
18616 | public static object AT_factory(Lexer yyl) { return new AT(yyl);} | ||
18617 | public static object COLLISION_END_EVENT_factory(Lexer yyl) { return new COLLISION_END_EVENT(yyl);} | ||
18618 | public static object SENSOR_EVENT_factory(Lexer yyl) { return new SENSOR_EVENT(yyl);} | ||
18619 | public static object EQUALS_EQUALS_factory(Lexer yyl) { return new EQUALS_EQUALS(yyl);} | ||
18620 | public static object DECREMENT_factory(Lexer yyl) { return new DECREMENT(yyl);} | ||
18621 | public static object LESS_EQUALS_factory(Lexer yyl) { return new LESS_EQUALS(yyl);} | ||
18622 | public static object FLOAT_TYPE_factory(Lexer yyl) { return new FLOAT_TYPE(yyl);} | ||
18623 | public static object MOVING_START_EVENT_factory(Lexer yyl) { return new MOVING_START_EVENT(yyl);} | ||
18624 | public static object RUN_TIME_PERMISSIONS_EVENT_factory(Lexer yyl) { return new RUN_TIME_PERMISSIONS_EVENT(yyl);} | ||
18625 | public static object ON_REZ_EVENT_factory(Lexer yyl) { return new ON_REZ_EVENT(yyl);} | ||
18626 | public static object NO_SENSOR_EVENT_factory(Lexer yyl) { return new NO_SENSOR_EVENT(yyl);} | ||
18627 | public static object EXCLAMATION_EQUALS_factory(Lexer yyl) { return new EXCLAMATION_EQUALS(yyl);} | ||
18628 | public static object MINUS_EQUALS_factory(Lexer yyl) { return new MINUS_EQUALS(yyl);} | ||
18629 | public static object LISTEN_EVENT_factory(Lexer yyl) { return new LISTEN_EVENT(yyl);} | ||
18630 | public static object PERCENT_EQUALS_factory(Lexer yyl) { return new PERCENT_EQUALS(yyl);} | ||
18631 | public static object LEFT_BRACKET_factory(Lexer yyl) { return new LEFT_BRACKET(yyl);} | ||
18632 | public static object HEX_INTEGER_CONSTANT_factory(Lexer yyl) { return new HEX_INTEGER_CONSTANT(yyl);} | ||
18633 | public static object COMMA_factory(Lexer yyl) { return new COMMA(yyl);} | ||
18634 | public static object PERIOD_factory(Lexer yyl) { return new PERIOD(yyl);} | ||
18635 | public static object KEY_TYPE_factory(Lexer yyl) { return new KEY_TYPE(yyl);} | ||
18636 | public static object SLASH_EQUALS_factory(Lexer yyl) { return new SLASH_EQUALS(yyl);} | ||
18637 | public static object STATE_EXIT_EVENT_factory(Lexer yyl) { return new STATE_EXIT_EVENT(yyl);} | ||
18638 | public static object COLLISION_EVENT_factory(Lexer yyl) { return new COLLISION_EVENT(yyl);} | ||
18639 | public static object STRING_CONSTANT_factory(Lexer yyl) { return new STRING_CONSTANT(yyl);} | ||
18640 | public static object WHILE_factory(Lexer yyl) { return new WHILE(yyl);} | ||
18641 | public static object IDENT_factory(Lexer yyl) { return new IDENT(yyl);} | ||
18642 | public static object DATASERVER_EVENT_factory(Lexer yyl) { return new DATASERVER_EVENT(yyl);} | ||
18643 | public static object ROTATION_TYPE_factory(Lexer yyl) { return new ROTATION_TYPE(yyl);} | ||
18644 | public static object AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new AT_ROT_TARGET_EVENT(yyl);} | ||
18645 | public static object LEFT_BRACE_factory(Lexer yyl) { return new LEFT_BRACE(yyl);} | ||
18646 | public static object DO_factory(Lexer yyl) { return new DO(yyl);} | ||
18647 | public static object LEFT_SHIFT_factory(Lexer yyl) { return new LEFT_SHIFT(yyl);} | ||
18648 | public static object REMOTE_DATA_EVENT_factory(Lexer yyl) { return new REMOTE_DATA_EVENT(yyl);} | ||
18649 | public static object EMAIL_EVENT_factory(Lexer yyl) { return new EMAIL_EVENT(yyl);} | ||
18650 | public static object NOT_AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_ROT_TARGET_EVENT(yyl);} | ||
18651 | public static object TILDE_factory(Lexer yyl) { return new TILDE(yyl);} | ||
18652 | public static object STROKE_factory(Lexer yyl) { return new STROKE(yyl);} | ||
18653 | public static object LAND_COLLISION_END_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_END_EVENT(yyl);} | ||
18654 | public static object TIMER_EVENT_factory(Lexer yyl) { return new TIMER_EVENT(yyl);} | ||
18655 | public static object MONEY_EVENT_factory(Lexer yyl) { return new MONEY_EVENT(yyl);} | ||
18656 | public static object RIGHT_ANGLE_factory(Lexer yyl) { return new RIGHT_ANGLE(yyl);} | ||
18657 | public static object AT_TARGET_EVENT_factory(Lexer yyl) { return new AT_TARGET_EVENT(yyl);} | ||
18658 | public static object AMP_factory(Lexer yyl) { return new AMP(yyl);} | ||
18659 | public static object SEMICOLON_factory(Lexer yyl) { return new SEMICOLON(yyl);} | ||
18660 | public static object AMP_AMP_factory(Lexer yyl) { return new AMP_AMP(yyl);} | ||
18661 | public static object CHANGED_EVENT_factory(Lexer yyl) { return new CHANGED_EVENT(yyl);} | ||
18662 | public static object LINK_MESSAGE_EVENT_factory(Lexer yyl) { return new LINK_MESSAGE_EVENT(yyl);} | ||
18663 | public static object TOUCH_END_EVENT_factory(Lexer yyl) { return new TOUCH_END_EVENT(yyl);} | ||
18664 | public static object EQUALS_factory(Lexer yyl) { return new EQUALS(yyl);} | ||
18665 | public static object NOT_AT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_TARGET_EVENT(yyl);} | ||
18666 | public static object STROKE_STROKE_factory(Lexer yyl) { return new STROKE_STROKE(yyl);} | ||
18667 | public static object GREATER_EQUALS_factory(Lexer yyl) { return new GREATER_EQUALS(yyl);} | ||
18668 | public static object TOUCH_START_EVENT_factory(Lexer yyl) { return new TOUCH_START_EVENT(yyl);} | ||
18669 | public static object ATTACH_EVENT_factory(Lexer yyl) { return new ATTACH_EVENT(yyl);} | ||
18670 | public static object VECTOR_TYPE_factory(Lexer yyl) { return new VECTOR_TYPE(yyl);} | ||
18671 | public static object RIGHT_BRACE_factory(Lexer yyl) { return new RIGHT_BRACE(yyl);} | ||
18672 | public static object STATE_ENTRY_EVENT_factory(Lexer yyl) { return new STATE_ENTRY_EVENT(yyl);} | ||
18673 | public static object PLUS_factory(Lexer yyl) { return new PLUS(yyl);} | ||
18674 | public static object STAR_EQUALS_factory(Lexer yyl) { return new STAR_EQUALS(yyl);} | ||
18675 | public static object LAND_COLLISION_START_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_START_EVENT(yyl);} | ||
18676 | public static object CONTROL_EVENT_factory(Lexer yyl) { return new CONTROL_EVENT(yyl);} | ||
18677 | public override TOKEN OldAction(Lexer yym,ref string yytext,int action, ref bool reject) { | ||
18678 | switch(action) { | ||
18679 | case -1: break; | ||
18680 | case 1015: { ((LSLTokens)yym).str += '\\'; } | ||
18681 | break; | ||
18682 | case 991: { ((LSLTokens)yym).str += "\\\""; } | ||
18683 | break; | ||
18684 | case 1020: { } | ||
18685 | break; | ||
18686 | case 1064: { yym.yy_begin("YYINITIAL"); ((LSLTokens)yym).yytext = ((LSLTokens)yym).str; ((LSLTokens)yym).str = String.Empty; return new STRING_CONSTANT(yym); } | ||
18687 | case 1069: ; | ||
18688 | break; | ||
18689 | case 1073: ; | ||
18690 | break; | ||
18691 | case 1003: { ((LSLTokens)yym).str += "\\\\"; } | ||
18692 | break; | ||
18693 | case 951: { yym.yy_begin("STRING"); ((LSLTokens)yym).str = "";} | ||
18694 | break; | ||
18695 | case 967: { ((LSLTokens)yym).str += "\\n"; } | ||
18696 | break; | ||
18697 | case 979: { ((LSLTokens)yym).str += " "; } | ||
18698 | break; | ||
18699 | case 956: { ((LSLTokens)yym).str += yytext; } | ||
18700 | break; | ||
18701 | case 962: { ((LSLTokens)yym).str += "\\n"; } | ||
18702 | break; | ||
18703 | } | ||
18704 | return null; | ||
18705 | }} | ||
18706 | public class LSLTokens:Lexer { | ||
18707 | public LSLTokens():base(new yyLSLTokens(new ErrorHandler(false))) {} | ||
18708 | public LSLTokens(ErrorHandler eh):base(new yyLSLTokens(eh)) {} | ||
18709 | public LSLTokens(YyLexer tks):base(tks){} | ||
18710 | |||
18711 | public string str; | ||
18712 | |||
18713 | } | ||
18714 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs new file mode 100644 index 0000000..17268f3 --- /dev/null +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs | |||
@@ -0,0 +1,9803 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.Shared.CodeTools { | ||
30 | //%+LSLProgramRoot+95 | ||
31 | public class LSLProgramRoot : SYMBOL{ | ||
32 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | ||
33 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
34 | } | ||
35 | public LSLProgramRoot (Parser yyp, GlobalDefinitions gd , States s ):base(((LSLSyntax | ||
36 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
37 | while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
38 | } | ||
39 | |||
40 | public override string yyname { get { return "LSLProgramRoot"; }} | ||
41 | public override int yynum { get { return 95; }} | ||
42 | public LSLProgramRoot(Parser yyp):base(yyp){}} | ||
43 | //%+GlobalDefinitions+96 | ||
44 | public class GlobalDefinitions : SYMBOL{ | ||
45 | public GlobalDefinitions (Parser yyp, GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
46 | )yyp)){ kids . Add ( gvd ); | ||
47 | } | ||
48 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
49 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
50 | kids . Add ( gvd ); | ||
51 | } | ||
52 | public GlobalDefinitions (Parser yyp, GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
53 | )yyp)){ kids . Add ( gfd ); | ||
54 | } | ||
55 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
56 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
57 | kids . Add ( gfd ); | ||
58 | } | ||
59 | |||
60 | public override string yyname { get { return "GlobalDefinitions"; }} | ||
61 | public override int yynum { get { return 96; }} | ||
62 | public GlobalDefinitions(Parser yyp):base(yyp){}} | ||
63 | //%+GlobalVariableDeclaration+97 | ||
64 | public class GlobalVariableDeclaration : SYMBOL{ | ||
65 | public GlobalVariableDeclaration (Parser yyp, Declaration d ):base(((LSLSyntax | ||
66 | )yyp)){ kids . Add ( d ); | ||
67 | } | ||
68 | public GlobalVariableDeclaration (Parser yyp, Assignment a ):base(((LSLSyntax | ||
69 | )yyp)){ kids . Add ( a ); | ||
70 | } | ||
71 | |||
72 | public override string yyname { get { return "GlobalVariableDeclaration"; }} | ||
73 | public override int yynum { get { return 97; }} | ||
74 | public GlobalVariableDeclaration(Parser yyp):base(yyp){}} | ||
75 | //%+GlobalFunctionDefinition+98 | ||
76 | public class GlobalFunctionDefinition : SYMBOL{ | ||
77 | private string m_returnType ; | ||
78 | private string m_name ; | ||
79 | public GlobalFunctionDefinition (Parser yyp, string returnType , string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax | ||
80 | )yyp)){ m_returnType = returnType ; | ||
81 | m_name = name ; | ||
82 | kids . Add ( adl ); | ||
83 | kids . Add ( cs ); | ||
84 | } | ||
85 | public string ReturnType { get { return m_returnType ; | ||
86 | } | ||
87 | set { m_returnType = value ; | ||
88 | } | ||
89 | } | ||
90 | public string Name { get { return m_name ; | ||
91 | } | ||
92 | } | ||
93 | |||
94 | public override string yyname { get { return "GlobalFunctionDefinition"; }} | ||
95 | public override int yynum { get { return 98; }} | ||
96 | public GlobalFunctionDefinition(Parser yyp):base(yyp){}} | ||
97 | //%+States+99 | ||
98 | public class States : SYMBOL{ | ||
99 | public States (Parser yyp, State ds ):base(((LSLSyntax | ||
100 | )yyp)){ kids . Add ( ds ); | ||
101 | } | ||
102 | public States (Parser yyp, States s , State us ):base(((LSLSyntax | ||
103 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
104 | kids . Add ( us ); | ||
105 | } | ||
106 | |||
107 | public override string yyname { get { return "States"; }} | ||
108 | public override int yynum { get { return 99; }} | ||
109 | public States(Parser yyp):base(yyp){}} | ||
110 | //%+State+100 | ||
111 | public class State : SYMBOL{ | ||
112 | private string m_name ; | ||
113 | public State (Parser yyp, string name , StateBody sb ):base(((LSLSyntax | ||
114 | )yyp)){ m_name = name ; | ||
115 | while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
116 | } | ||
117 | public override string ToString (){ return "STATE<"+ m_name +">"; | ||
118 | } | ||
119 | public string Name { get { return m_name ; | ||
120 | } | ||
121 | } | ||
122 | |||
123 | public override string yyname { get { return "State"; }} | ||
124 | public override int yynum { get { return 100; }} | ||
125 | public State(Parser yyp):base(yyp){}} | ||
126 | //%+StateBody+101 | ||
127 | public class StateBody : SYMBOL{ | ||
128 | public StateBody (Parser yyp, StateBody sb , StateEvent se ):base(((LSLSyntax | ||
129 | )yyp)){ while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
130 | kids . Add ( se ); | ||
131 | } | ||
132 | public StateBody (Parser yyp, StateEvent se ):base(((LSLSyntax | ||
133 | )yyp)){ kids . Add ( se ); | ||
134 | } | ||
135 | |||
136 | public override string yyname { get { return "StateBody"; }} | ||
137 | public override int yynum { get { return 101; }} | ||
138 | public StateBody(Parser yyp):base(yyp){}} | ||
139 | //%+StateEvent+102 | ||
140 | public class StateEvent : SYMBOL{ | ||
141 | private string m_name ; | ||
142 | public StateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax | ||
143 | )yyp)){ m_name = name ; | ||
144 | kids . Add ( cs ); | ||
145 | } | ||
146 | public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax | ||
147 | )yyp)){ m_name = name ; | ||
148 | if (0< dal . kids . Count ) kids . Add ( dal ); | ||
149 | kids . Add ( cs ); | ||
150 | } | ||
151 | public override string ToString (){ return "EVENT<"+ m_name +">"; | ||
152 | } | ||
153 | public string Name { get { return m_name ; | ||
154 | } | ||
155 | } | ||
156 | |||
157 | public override string yyname { get { return "StateEvent"; }} | ||
158 | public override int yynum { get { return 102; }} | ||
159 | public StateEvent(Parser yyp):base(yyp){}} | ||
160 | //%+ArgumentDeclarationList+103 | ||
161 | public class ArgumentDeclarationList : SYMBOL{ | ||
162 | public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax | ||
163 | )yyp)){ kids . Add ( d ); | ||
164 | } | ||
165 | public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax | ||
166 | )yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); | ||
167 | kids . Add ( d ); | ||
168 | } | ||
169 | |||
170 | public override string yyname { get { return "ArgumentDeclarationList"; }} | ||
171 | public override int yynum { get { return 103; }} | ||
172 | public ArgumentDeclarationList(Parser yyp):base(yyp){}} | ||
173 | //%+Declaration+104 | ||
174 | public class Declaration : SYMBOL{ | ||
175 | private string m_datatype ; | ||
176 | private string m_id ; | ||
177 | public Declaration (Parser yyp, string type , string id ):base(((LSLSyntax | ||
178 | )yyp)){ m_datatype = type ; | ||
179 | m_id = id ; | ||
180 | } | ||
181 | public override string ToString (){ return "Declaration<"+ m_datatype +":"+ m_id +">"; | ||
182 | } | ||
183 | public string Datatype { get { return m_datatype ; | ||
184 | } | ||
185 | set { m_datatype = value ; | ||
186 | } | ||
187 | } | ||
188 | public string Id { get { return m_id ; | ||
189 | } | ||
190 | } | ||
191 | |||
192 | public override string yyname { get { return "Declaration"; }} | ||
193 | public override int yynum { get { return 104; }} | ||
194 | public Declaration(Parser yyp):base(yyp){}} | ||
195 | //%+Typename+105 | ||
196 | public class Typename : SYMBOL{ | ||
197 | public string yytext ; | ||
198 | public Typename (Parser yyp, string text ):base(((LSLSyntax | ||
199 | )yyp)){ yytext = text ; | ||
200 | } | ||
201 | |||
202 | public override string yyname { get { return "Typename"; }} | ||
203 | public override int yynum { get { return 105; }} | ||
204 | public Typename(Parser yyp):base(yyp){}} | ||
205 | //%+Event+106 | ||
206 | public class Event : SYMBOL{ | ||
207 | public string yytext ; | ||
208 | public Event (Parser yyp, string text ):base(((LSLSyntax | ||
209 | )yyp)){ yytext = text ; | ||
210 | } | ||
211 | |||
212 | public override string yyname { get { return "Event"; }} | ||
213 | public override int yynum { get { return 106; }} | ||
214 | public Event(Parser yyp):base(yyp){}} | ||
215 | //%+CompoundStatement+107 | ||
216 | public class CompoundStatement : SYMBOL{ | ||
217 | public CompoundStatement (Parser yyp):base(((LSLSyntax | ||
218 | )yyp)){} | ||
219 | public CompoundStatement (Parser yyp, StatementList sl ):base(((LSLSyntax | ||
220 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
221 | } | ||
222 | |||
223 | public override string yyname { get { return "CompoundStatement"; }} | ||
224 | public override int yynum { get { return 107; }} | ||
225 | } | ||
226 | //%+StatementList+108 | ||
227 | public class StatementList : SYMBOL{ | ||
228 | private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ()); | ||
229 | else kids . Add ( s ); | ||
230 | } | ||
231 | public StatementList (Parser yyp, Statement s ):base(((LSLSyntax | ||
232 | )yyp)){ AddStatement ( s ); | ||
233 | } | ||
234 | public StatementList (Parser yyp, StatementList sl , Statement s ):base(((LSLSyntax | ||
235 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
236 | AddStatement ( s ); | ||
237 | } | ||
238 | |||
239 | public override string yyname { get { return "StatementList"; }} | ||
240 | public override int yynum { get { return 108; }} | ||
241 | public StatementList(Parser yyp):base(yyp){}} | ||
242 | //%+Statement+109 | ||
243 | public class Statement : SYMBOL{ | ||
244 | public Statement (Parser yyp, Declaration d ):base(((LSLSyntax | ||
245 | )yyp)){ kids . Add ( d ); | ||
246 | } | ||
247 | public Statement (Parser yyp, CompoundStatement cs ):base(((LSLSyntax | ||
248 | )yyp)){ kids . Add ( cs ); | ||
249 | } | ||
250 | public Statement (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
251 | )yyp)){ kids . Add ( fc ); | ||
252 | } | ||
253 | public Statement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
254 | )yyp)){ kids . Add ( a ); | ||
255 | } | ||
256 | public Statement (Parser yyp, Expression e ):base(((LSLSyntax | ||
257 | )yyp)){ kids . Add ( e ); | ||
258 | } | ||
259 | public Statement (Parser yyp, ReturnStatement rs ):base(((LSLSyntax | ||
260 | )yyp)){ kids . Add ( rs ); | ||
261 | } | ||
262 | public Statement (Parser yyp, StateChange sc ):base(((LSLSyntax | ||
263 | )yyp)){ kids . Add ( sc ); | ||
264 | } | ||
265 | public Statement (Parser yyp, IfStatement ifs ):base(((LSLSyntax | ||
266 | )yyp)){ kids . Add ( ifs ); | ||
267 | } | ||
268 | public Statement (Parser yyp, WhileStatement ifs ):base(((LSLSyntax | ||
269 | )yyp)){ kids . Add ( ifs ); | ||
270 | } | ||
271 | public Statement (Parser yyp, DoWhileStatement ifs ):base(((LSLSyntax | ||
272 | )yyp)){ kids . Add ( ifs ); | ||
273 | } | ||
274 | public Statement (Parser yyp, ForLoop fl ):base(((LSLSyntax | ||
275 | )yyp)){ kids . Add ( fl ); | ||
276 | } | ||
277 | public Statement (Parser yyp, JumpLabel jl ):base(((LSLSyntax | ||
278 | )yyp)){ kids . Add ( jl ); | ||
279 | } | ||
280 | public Statement (Parser yyp, JumpStatement js ):base(((LSLSyntax | ||
281 | )yyp)){ kids . Add ( js ); | ||
282 | } | ||
283 | |||
284 | public override string yyname { get { return "Statement"; }} | ||
285 | public override int yynum { get { return 109; }} | ||
286 | public Statement(Parser yyp):base(yyp){}} | ||
287 | //%+Assignment+110 | ||
288 | public class Assignment : SYMBOL{ | ||
289 | private string m_assignmentType ; | ||
290 | public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
291 | )yyp)){ m_assignmentType = assignmentType ; | ||
292 | kids . Add ( lhs ); | ||
293 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
294 | else kids . Add ( rhs ); | ||
295 | } | ||
296 | public string AssignmentType { get { return m_assignmentType ; | ||
297 | } | ||
298 | } | ||
299 | |||
300 | public override string yyname { get { return "Assignment"; }} | ||
301 | public override int yynum { get { return 110; }} | ||
302 | public Assignment(Parser yyp):base(yyp){}} | ||
303 | //%+ReturnStatement+111 | ||
304 | public class ReturnStatement : SYMBOL{ | ||
305 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
306 | )yyp)){} | ||
307 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
308 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
309 | else kids . Add ( e ); | ||
310 | } | ||
311 | |||
312 | public override string yyname { get { return "ReturnStatement"; }} | ||
313 | public override int yynum { get { return 111; }} | ||
314 | } | ||
315 | //%+JumpLabel+112 | ||
316 | public class JumpLabel : SYMBOL{ | ||
317 | private string m_labelName ; | ||
318 | public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax | ||
319 | )yyp)){ m_labelName = labelName ; | ||
320 | } | ||
321 | public string LabelName { get { return m_labelName ; | ||
322 | } | ||
323 | } | ||
324 | public override string ToString (){ return base . ToString ()+"<"+ m_labelName +">"; | ||
325 | } | ||
326 | |||
327 | public override string yyname { get { return "JumpLabel"; }} | ||
328 | public override int yynum { get { return 112; }} | ||
329 | public JumpLabel(Parser yyp):base(yyp){}} | ||
330 | //%+JumpStatement+113 | ||
331 | public class JumpStatement : SYMBOL{ | ||
332 | private string m_targetName ; | ||
333 | public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax | ||
334 | )yyp)){ m_targetName = targetName ; | ||
335 | } | ||
336 | public string TargetName { get { return m_targetName ; | ||
337 | } | ||
338 | } | ||
339 | public override string ToString (){ return base . ToString ()+"<"+ m_targetName +">"; | ||
340 | } | ||
341 | |||
342 | public override string yyname { get { return "JumpStatement"; }} | ||
343 | public override int yynum { get { return 113; }} | ||
344 | public JumpStatement(Parser yyp):base(yyp){}} | ||
345 | //%+StateChange+114 | ||
346 | public class StateChange : SYMBOL{ | ||
347 | private string m_newState ; | ||
348 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
349 | )yyp)){ m_newState = newState ; | ||
350 | } | ||
351 | public string NewState { get { return m_newState ; | ||
352 | } | ||
353 | } | ||
354 | |||
355 | public override string yyname { get { return "StateChange"; }} | ||
356 | public override int yynum { get { return 114; }} | ||
357 | public StateChange(Parser yyp):base(yyp){}} | ||
358 | //%+IfStatement+115 | ||
359 | public class IfStatement : SYMBOL{ | ||
360 | private void AddStatement ( Statement s ){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
361 | else kids . Add ( s ); | ||
362 | } | ||
363 | public IfStatement (Parser yyp, Expression e , Statement ifs ):base(((LSLSyntax | ||
364 | )yyp)){ kids . Add ( e ); | ||
365 | AddStatement ( ifs ); | ||
366 | } | ||
367 | public IfStatement (Parser yyp, Expression e , Statement ifs , Statement es ):base(((LSLSyntax | ||
368 | )yyp)){ kids . Add ( e ); | ||
369 | AddStatement ( ifs ); | ||
370 | if ( es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
371 | else AddStatement ( es ); | ||
372 | } | ||
373 | |||
374 | public override string yyname { get { return "IfStatement"; }} | ||
375 | public override int yynum { get { return 115; }} | ||
376 | public IfStatement(Parser yyp):base(yyp){}} | ||
377 | //%+WhileStatement+116 | ||
378 | public class WhileStatement : SYMBOL{ | ||
379 | public WhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
380 | )yyp)){ kids . Add ( e ); | ||
381 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
382 | else kids . Add ( s ); | ||
383 | } | ||
384 | |||
385 | public override string yyname { get { return "WhileStatement"; }} | ||
386 | public override int yynum { get { return 116; }} | ||
387 | public WhileStatement(Parser yyp):base(yyp){}} | ||
388 | //%+DoWhileStatement+117 | ||
389 | public class DoWhileStatement : SYMBOL{ | ||
390 | public DoWhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
391 | )yyp)){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
392 | else kids . Add ( s ); | ||
393 | kids . Add ( e ); | ||
394 | } | ||
395 | |||
396 | public override string yyname { get { return "DoWhileStatement"; }} | ||
397 | public override int yynum { get { return 117; }} | ||
398 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
399 | //%+ForLoop+118 | ||
400 | public class ForLoop : SYMBOL{ | ||
401 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
402 | )yyp)){ kids . Add ( flsa ); | ||
403 | kids . Add ( e ); | ||
404 | kids . Add ( flsb ); | ||
405 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
406 | else kids . Add ( s ); | ||
407 | } | ||
408 | |||
409 | public override string yyname { get { return "ForLoop"; }} | ||
410 | public override int yynum { get { return 118; }} | ||
411 | public ForLoop(Parser yyp):base(yyp){}} | ||
412 | //%+ForLoopStatement+119 | ||
413 | public class ForLoopStatement : SYMBOL{ | ||
414 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
415 | )yyp)){ kids . Add ( e ); | ||
416 | } | ||
417 | public ForLoopStatement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
418 | )yyp)){ kids . Add ( a ); | ||
419 | } | ||
420 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
421 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
422 | kids . Add ( e ); | ||
423 | } | ||
424 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Assignment a ):base(((LSLSyntax | ||
425 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
426 | kids . Add ( a ); | ||
427 | } | ||
428 | |||
429 | public override string yyname { get { return "ForLoopStatement"; }} | ||
430 | public override int yynum { get { return 119; }} | ||
431 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
432 | //%+FunctionCall+120 | ||
433 | public class FunctionCall : SYMBOL{ | ||
434 | private string m_id ; | ||
435 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
436 | )yyp)){ m_id = id ; | ||
437 | kids . Add ( al ); | ||
438 | } | ||
439 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
440 | } | ||
441 | public string Id { get { return m_id ; | ||
442 | } | ||
443 | } | ||
444 | |||
445 | public override string yyname { get { return "FunctionCall"; }} | ||
446 | public override int yynum { get { return 120; }} | ||
447 | public FunctionCall(Parser yyp):base(yyp){}} | ||
448 | //%+ArgumentList+121 | ||
449 | public class ArgumentList : SYMBOL{ | ||
450 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
451 | )yyp)){ AddArgument ( a ); | ||
452 | } | ||
453 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
454 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
455 | AddArgument ( a ); | ||
456 | } | ||
457 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
458 | else kids . Add ( a ); | ||
459 | } | ||
460 | |||
461 | public override string yyname { get { return "ArgumentList"; }} | ||
462 | public override int yynum { get { return 121; }} | ||
463 | public ArgumentList(Parser yyp):base(yyp){}} | ||
464 | //%+Argument+122 | ||
465 | public class Argument : SYMBOL{ | ||
466 | public override string yyname { get { return "Argument"; }} | ||
467 | public override int yynum { get { return 122; }} | ||
468 | public Argument(Parser yyp):base(yyp){}} | ||
469 | //%+ExpressionArgument+123 | ||
470 | public class ExpressionArgument : Argument{ | ||
471 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
472 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
473 | else kids . Add ( e ); | ||
474 | } | ||
475 | |||
476 | public override string yyname { get { return "ExpressionArgument"; }} | ||
477 | public override int yynum { get { return 123; }} | ||
478 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
479 | //%+Constant+124 | ||
480 | public class Constant : SYMBOL{ | ||
481 | private string m_type ; | ||
482 | private string m_val ; | ||
483 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
484 | )yyp)){ m_type = type ; | ||
485 | m_val = val ; | ||
486 | } | ||
487 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
488 | } | ||
489 | public string Value { get { return m_val ; | ||
490 | } | ||
491 | set { m_val = value ; | ||
492 | } | ||
493 | } | ||
494 | public string Type { get { return m_type ; | ||
495 | } | ||
496 | set { m_type = value ; | ||
497 | } | ||
498 | } | ||
499 | |||
500 | public override string yyname { get { return "Constant"; }} | ||
501 | public override int yynum { get { return 124; }} | ||
502 | public Constant(Parser yyp):base(yyp){}} | ||
503 | //%+VectorConstant+125 | ||
504 | public class VectorConstant : Constant{ | ||
505 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
506 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
507 | kids . Add ( valY ); | ||
508 | kids . Add ( valZ ); | ||
509 | } | ||
510 | |||
511 | public override string yyname { get { return "VectorConstant"; }} | ||
512 | public override int yynum { get { return 125; }} | ||
513 | public VectorConstant(Parser yyp):base(yyp){}} | ||
514 | //%+RotationConstant+126 | ||
515 | public class RotationConstant : Constant{ | ||
516 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
517 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
518 | kids . Add ( valY ); | ||
519 | kids . Add ( valZ ); | ||
520 | kids . Add ( valS ); | ||
521 | } | ||
522 | |||
523 | public override string yyname { get { return "RotationConstant"; }} | ||
524 | public override int yynum { get { return 126; }} | ||
525 | public RotationConstant(Parser yyp):base(yyp){}} | ||
526 | //%+ListConstant+127 | ||
527 | public class ListConstant : Constant{ | ||
528 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
529 | )yyp),"list", null ){ kids . Add ( al ); | ||
530 | } | ||
531 | |||
532 | public override string yyname { get { return "ListConstant"; }} | ||
533 | public override int yynum { get { return 127; }} | ||
534 | public ListConstant(Parser yyp):base(yyp){}} | ||
535 | //%+Expression+128 | ||
536 | public class Expression : SYMBOL{ | ||
537 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
538 | else kids . Add ( e ); | ||
539 | } | ||
540 | |||
541 | public override string yyname { get { return "Expression"; }} | ||
542 | public override int yynum { get { return 128; }} | ||
543 | public Expression(Parser yyp):base(yyp){}} | ||
544 | //%+ConstantExpression+129 | ||
545 | public class ConstantExpression : Expression{ | ||
546 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
547 | )yyp)){ kids . Add ( c ); | ||
548 | } | ||
549 | |||
550 | public override string yyname { get { return "ConstantExpression"; }} | ||
551 | public override int yynum { get { return 129; }} | ||
552 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
553 | //%+IdentExpression+130 | ||
554 | public class IdentExpression : Expression{ | ||
555 | protected string m_name ; | ||
556 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
557 | )yyp)){ m_name = name ; | ||
558 | } | ||
559 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
560 | } | ||
561 | public string Name { get { return m_name ; | ||
562 | } | ||
563 | } | ||
564 | |||
565 | public override string yyname { get { return "IdentExpression"; }} | ||
566 | public override int yynum { get { return 130; }} | ||
567 | public IdentExpression(Parser yyp):base(yyp){}} | ||
568 | //%+IdentDotExpression+131 | ||
569 | public class IdentDotExpression : IdentExpression{ | ||
570 | private string m_member ; | ||
571 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
572 | )yyp), name ){ m_member = member ; | ||
573 | } | ||
574 | public override string ToString (){ string baseToString = base . ToString (); | ||
575 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
576 | } | ||
577 | public string Member { get { return m_member ; | ||
578 | } | ||
579 | } | ||
580 | |||
581 | public override string yyname { get { return "IdentDotExpression"; }} | ||
582 | public override int yynum { get { return 131; }} | ||
583 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
584 | //%+FunctionCallExpression+132 | ||
585 | public class FunctionCallExpression : Expression{ | ||
586 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
587 | )yyp)){ kids . Add ( fc ); | ||
588 | } | ||
589 | |||
590 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
591 | public override int yynum { get { return 132; }} | ||
592 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
593 | //%+BinaryExpression+133 | ||
594 | public class BinaryExpression : Expression{ | ||
595 | private string m_expressionSymbol ; | ||
596 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
597 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
598 | AddExpression ( lhs ); | ||
599 | AddExpression ( rhs ); | ||
600 | } | ||
601 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
602 | } | ||
603 | } | ||
604 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
605 | } | ||
606 | |||
607 | public override string yyname { get { return "BinaryExpression"; }} | ||
608 | public override int yynum { get { return 133; }} | ||
609 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
610 | //%+UnaryExpression+134 | ||
611 | public class UnaryExpression : Expression{ | ||
612 | private string m_unarySymbol ; | ||
613 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
614 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
615 | kids . Add ( e ); | ||
616 | } | ||
617 | public string UnarySymbol { get { return m_unarySymbol ; | ||
618 | } | ||
619 | } | ||
620 | |||
621 | public override string yyname { get { return "UnaryExpression"; }} | ||
622 | public override int yynum { get { return 134; }} | ||
623 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
624 | //%+TypecastExpression+135 | ||
625 | public class TypecastExpression : Expression{ | ||
626 | private string m_typecastType ; | ||
627 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
628 | )yyp)){ m_typecastType = typecastType ; | ||
629 | kids . Add ( rhs ); | ||
630 | } | ||
631 | public string TypecastType { get { return m_typecastType ; | ||
632 | } | ||
633 | set { m_typecastType = value ; | ||
634 | } | ||
635 | } | ||
636 | |||
637 | public override string yyname { get { return "TypecastExpression"; }} | ||
638 | public override int yynum { get { return 135; }} | ||
639 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
640 | //%+ParenthesisExpression+136 | ||
641 | public class ParenthesisExpression : Expression{ | ||
642 | public ParenthesisExpression (Parser yyp, Expression e ):base(((LSLSyntax | ||
643 | )yyp)){ kids . Add ( e ); | ||
644 | } | ||
645 | |||
646 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
647 | public override int yynum { get { return 136; }} | ||
648 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
649 | //%+IncrementDecrementExpression+137 | ||
650 | public class IncrementDecrementExpression : Expression{ | ||
651 | private string m_name ; | ||
652 | private string m_operation ; | ||
653 | private bool m_postOperation ; | ||
654 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
655 | )yyp)){ m_name = name ; | ||
656 | m_operation = operation ; | ||
657 | m_postOperation = postOperation ; | ||
658 | } | ||
659 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
660 | )yyp)){ m_operation = operation ; | ||
661 | m_postOperation = postOperation ; | ||
662 | kids . Add ( ide ); | ||
663 | } | ||
664 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
665 | } | ||
666 | public string Name { get { return m_name ; | ||
667 | } | ||
668 | } | ||
669 | public string Operation { get { return m_operation ; | ||
670 | } | ||
671 | } | ||
672 | public bool PostOperation { get { return m_postOperation ; | ||
673 | } | ||
674 | } | ||
675 | |||
676 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
677 | public override int yynum { get { return 137; }} | ||
678 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
679 | |||
680 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
681 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
682 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
683 | , | ||
684 | ((States)(yyq.StackAt(0).m_value)) | ||
685 | ){}} | ||
686 | |||
687 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
688 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
689 | ((States)(yyq.StackAt(0).m_value)) | ||
690 | ){}} | ||
691 | |||
692 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
693 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
694 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
695 | ){}} | ||
696 | |||
697 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
698 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
699 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
700 | , | ||
701 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
702 | ){}} | ||
703 | |||
704 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
705 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
706 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
707 | ){}} | ||
708 | |||
709 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
710 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
711 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
712 | , | ||
713 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
714 | ){}} | ||
715 | |||
716 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
717 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
718 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
719 | ){}} | ||
720 | |||
721 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
722 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
723 | )yyq), | ||
724 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
725 | , | ||
726 | ((Expression)(yyq.StackAt(1).m_value)) | ||
727 | , | ||
728 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
729 | .yytext)){}} | ||
730 | |||
731 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
732 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
733 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
734 | .yytext, | ||
735 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
736 | , | ||
737 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
738 | ){}} | ||
739 | |||
740 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
741 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
742 | ((Typename)(yyq.StackAt(5).m_value)) | ||
743 | .yytext, | ||
744 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
745 | .yytext, | ||
746 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
747 | , | ||
748 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
749 | ){}} | ||
750 | |||
751 | public class States_1 : States { | ||
752 | public States_1(Parser yyq):base(yyq, | ||
753 | ((State)(yyq.StackAt(0).m_value)) | ||
754 | ){}} | ||
755 | |||
756 | public class States_2 : States { | ||
757 | public States_2(Parser yyq):base(yyq, | ||
758 | ((States)(yyq.StackAt(1).m_value)) | ||
759 | , | ||
760 | ((State)(yyq.StackAt(0).m_value)) | ||
761 | ){}} | ||
762 | |||
763 | public class State_1 : State { | ||
764 | public State_1(Parser yyq):base(yyq, | ||
765 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
766 | .yytext, | ||
767 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
768 | ){}} | ||
769 | |||
770 | public class State_2 : State { | ||
771 | public State_2(Parser yyq):base(yyq, | ||
772 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
773 | .yytext, | ||
774 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
775 | ){}} | ||
776 | |||
777 | public class StateBody_1 : StateBody { | ||
778 | public StateBody_1(Parser yyq):base(yyq, | ||
779 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
780 | ){}} | ||
781 | |||
782 | public class StateBody_2 : StateBody { | ||
783 | public StateBody_2(Parser yyq):base(yyq, | ||
784 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
785 | , | ||
786 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
787 | ){}} | ||
788 | |||
789 | public class StateEvent_1 : StateEvent { | ||
790 | public StateEvent_1(Parser yyq):base(yyq, | ||
791 | ((Event)(yyq.StackAt(4).m_value)) | ||
792 | .yytext, | ||
793 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
794 | , | ||
795 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
796 | ){}} | ||
797 | |||
798 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
799 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
800 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
801 | ){}} | ||
802 | |||
803 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
804 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
805 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
806 | , | ||
807 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
808 | ){}} | ||
809 | |||
810 | public class Declaration_1 : Declaration { | ||
811 | public Declaration_1(Parser yyq):base(yyq, | ||
812 | ((Typename)(yyq.StackAt(1).m_value)) | ||
813 | .yytext, | ||
814 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
815 | .yytext){}} | ||
816 | |||
817 | public class CompoundStatement_1 : CompoundStatement { | ||
818 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
819 | |||
820 | public class CompoundStatement_2 : CompoundStatement { | ||
821 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
822 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
823 | ){}} | ||
824 | |||
825 | public class StatementList_1 : StatementList { | ||
826 | public StatementList_1(Parser yyq):base(yyq, | ||
827 | ((Statement)(yyq.StackAt(0).m_value)) | ||
828 | ){}} | ||
829 | |||
830 | public class StatementList_2 : StatementList { | ||
831 | public StatementList_2(Parser yyq):base(yyq, | ||
832 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
833 | , | ||
834 | ((Statement)(yyq.StackAt(0).m_value)) | ||
835 | ){}} | ||
836 | |||
837 | public class Statement_1 : Statement { | ||
838 | public Statement_1(Parser yyq):base(yyq, | ||
839 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
840 | ){}} | ||
841 | |||
842 | public class Statement_2 : Statement { | ||
843 | public Statement_2(Parser yyq):base(yyq, | ||
844 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
845 | ){}} | ||
846 | |||
847 | public class Statement_3 : Statement { | ||
848 | public Statement_3(Parser yyq):base(yyq, | ||
849 | ((Expression)(yyq.StackAt(1).m_value)) | ||
850 | ){}} | ||
851 | |||
852 | public class Statement_4 : Statement { | ||
853 | public Statement_4(Parser yyq):base(yyq, | ||
854 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
855 | ){}} | ||
856 | |||
857 | public class Statement_5 : Statement { | ||
858 | public Statement_5(Parser yyq):base(yyq, | ||
859 | ((JumpLabel)(yyq.StackAt(1).m_value)) | ||
860 | ){}} | ||
861 | |||
862 | public class Statement_6 : Statement { | ||
863 | public Statement_6(Parser yyq):base(yyq, | ||
864 | ((JumpStatement)(yyq.StackAt(1).m_value)) | ||
865 | ){}} | ||
866 | |||
867 | public class Statement_7 : Statement { | ||
868 | public Statement_7(Parser yyq):base(yyq, | ||
869 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
870 | ){}} | ||
871 | |||
872 | public class Statement_8 : Statement { | ||
873 | public Statement_8(Parser yyq):base(yyq, | ||
874 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
875 | ){}} | ||
876 | |||
877 | public class Statement_9 : Statement { | ||
878 | public Statement_9(Parser yyq):base(yyq, | ||
879 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
880 | ){}} | ||
881 | |||
882 | public class Statement_10 : Statement { | ||
883 | public Statement_10(Parser yyq):base(yyq, | ||
884 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
885 | ){}} | ||
886 | |||
887 | public class Statement_11 : Statement { | ||
888 | public Statement_11(Parser yyq):base(yyq, | ||
889 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
890 | ){}} | ||
891 | |||
892 | public class Statement_12 : Statement { | ||
893 | public Statement_12(Parser yyq):base(yyq, | ||
894 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
895 | ){}} | ||
896 | |||
897 | public class JumpLabel_1 : JumpLabel { | ||
898 | public JumpLabel_1(Parser yyq):base(yyq, | ||
899 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
900 | .yytext){}} | ||
901 | |||
902 | public class JumpStatement_1 : JumpStatement { | ||
903 | public JumpStatement_1(Parser yyq):base(yyq, | ||
904 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
905 | .yytext){}} | ||
906 | |||
907 | public class StateChange_1 : StateChange { | ||
908 | public StateChange_1(Parser yyq):base(yyq, | ||
909 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
910 | .yytext){}} | ||
911 | |||
912 | public class StateChange_2 : StateChange { | ||
913 | public StateChange_2(Parser yyq):base(yyq, | ||
914 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
915 | .yytext){}} | ||
916 | |||
917 | public class IfStatement_1 : IfStatement { | ||
918 | public IfStatement_1(Parser yyq):base(yyq, | ||
919 | ((Expression)(yyq.StackAt(2).m_value)) | ||
920 | , | ||
921 | ((Statement)(yyq.StackAt(0).m_value)) | ||
922 | ){}} | ||
923 | |||
924 | public class IfStatement_2 : IfStatement { | ||
925 | public IfStatement_2(Parser yyq):base(yyq, | ||
926 | ((Expression)(yyq.StackAt(4).m_value)) | ||
927 | , | ||
928 | ((Statement)(yyq.StackAt(2).m_value)) | ||
929 | , | ||
930 | ((Statement)(yyq.StackAt(0).m_value)) | ||
931 | ){}} | ||
932 | |||
933 | public class WhileStatement_1 : WhileStatement { | ||
934 | public WhileStatement_1(Parser yyq):base(yyq, | ||
935 | ((Expression)(yyq.StackAt(2).m_value)) | ||
936 | , | ||
937 | ((Statement)(yyq.StackAt(0).m_value)) | ||
938 | ){}} | ||
939 | |||
940 | public class DoWhileStatement_1 : DoWhileStatement { | ||
941 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
942 | ((Expression)(yyq.StackAt(2).m_value)) | ||
943 | , | ||
944 | ((Statement)(yyq.StackAt(5).m_value)) | ||
945 | ){}} | ||
946 | |||
947 | public class ForLoop_1 : ForLoop { | ||
948 | public ForLoop_1(Parser yyq):base(yyq, | ||
949 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
950 | , | ||
951 | ((Expression)(yyq.StackAt(4).m_value)) | ||
952 | , | ||
953 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
954 | , | ||
955 | ((Statement)(yyq.StackAt(0).m_value)) | ||
956 | ){}} | ||
957 | |||
958 | public class ForLoopStatement_1 : ForLoopStatement { | ||
959 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
960 | ((Expression)(yyq.StackAt(0).m_value)) | ||
961 | ){}} | ||
962 | |||
963 | public class ForLoopStatement_2 : ForLoopStatement { | ||
964 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
965 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
966 | ){}} | ||
967 | |||
968 | public class ForLoopStatement_3 : ForLoopStatement { | ||
969 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
970 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
971 | , | ||
972 | ((Expression)(yyq.StackAt(0).m_value)) | ||
973 | ){}} | ||
974 | |||
975 | public class ForLoopStatement_4 : ForLoopStatement { | ||
976 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
977 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
978 | , | ||
979 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
980 | ){}} | ||
981 | |||
982 | public class Assignment_1 : Assignment { | ||
983 | public Assignment_1(Parser yyq):base(yyq, | ||
984 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
985 | , | ||
986 | ((Expression)(yyq.StackAt(0).m_value)) | ||
987 | , | ||
988 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
989 | .yytext){}} | ||
990 | |||
991 | public class Assignment_2 : Assignment { | ||
992 | public Assignment_2(Parser yyq):base(yyq, | ||
993 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
994 | , | ||
995 | ((Expression)(yyq.StackAt(0).m_value)) | ||
996 | , | ||
997 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
998 | .yytext){}} | ||
999 | |||
1000 | public class Assignment_3 : Assignment { | ||
1001 | public Assignment_3(Parser yyq):base(yyq, | ||
1002 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1003 | , | ||
1004 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1005 | , | ||
1006 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1007 | .yytext){}} | ||
1008 | |||
1009 | public class Assignment_4 : Assignment { | ||
1010 | public Assignment_4(Parser yyq):base(yyq, | ||
1011 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1012 | , | ||
1013 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1014 | , | ||
1015 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1016 | .yytext){}} | ||
1017 | |||
1018 | public class Assignment_5 : Assignment { | ||
1019 | public Assignment_5(Parser yyq):base(yyq, | ||
1020 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1021 | , | ||
1022 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1023 | , | ||
1024 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1025 | .yytext){}} | ||
1026 | |||
1027 | public class Assignment_6 : Assignment { | ||
1028 | public Assignment_6(Parser yyq):base(yyq, | ||
1029 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1030 | , | ||
1031 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1032 | , | ||
1033 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1034 | .yytext){}} | ||
1035 | |||
1036 | public class Assignment_7 : Assignment { | ||
1037 | public Assignment_7(Parser yyq):base(yyq, | ||
1038 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1039 | , | ||
1040 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1041 | , | ||
1042 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1043 | .yytext){}} | ||
1044 | |||
1045 | public class Assignment_8 : Assignment { | ||
1046 | public Assignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1047 | )yyq), | ||
1048 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1049 | .yytext, | ||
1050 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1051 | .yytext), | ||
1052 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1053 | , | ||
1054 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1055 | .yytext){}} | ||
1056 | |||
1057 | public class ReturnStatement_1 : ReturnStatement { | ||
1058 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
1059 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1060 | ){}} | ||
1061 | |||
1062 | public class ReturnStatement_2 : ReturnStatement { | ||
1063 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
1064 | |||
1065 | public class Constant_1 : Constant { | ||
1066 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
1067 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1068 | .yytext){}} | ||
1069 | |||
1070 | public class Constant_2 : Constant { | ||
1071 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
1072 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1073 | .yytext){}} | ||
1074 | |||
1075 | public class Constant_3 : Constant { | ||
1076 | public Constant_3(Parser yyq):base(yyq,"float", | ||
1077 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1078 | .yytext){}} | ||
1079 | |||
1080 | public class Constant_4 : Constant { | ||
1081 | public Constant_4(Parser yyq):base(yyq,"string", | ||
1082 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1083 | .yytext){}} | ||
1084 | |||
1085 | public class VectorConstant_1 : VectorConstant { | ||
1086 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1087 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1088 | , | ||
1089 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1090 | , | ||
1091 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1092 | ){}} | ||
1093 | |||
1094 | public class RotationConstant_1 : RotationConstant { | ||
1095 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1096 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1097 | , | ||
1098 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1099 | , | ||
1100 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1101 | , | ||
1102 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1103 | ){}} | ||
1104 | |||
1105 | public class ListConstant_1 : ListConstant { | ||
1106 | public ListConstant_1(Parser yyq):base(yyq, | ||
1107 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1108 | ){}} | ||
1109 | |||
1110 | public class ConstantExpression_1 : ConstantExpression { | ||
1111 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1112 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1113 | ){}} | ||
1114 | |||
1115 | public class IdentExpression_1 : IdentExpression { | ||
1116 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1117 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1118 | .yytext){}} | ||
1119 | |||
1120 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1121 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1122 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1123 | .yytext, | ||
1124 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1125 | .yytext){}} | ||
1126 | |||
1127 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1128 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1129 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1130 | .yytext, | ||
1131 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1132 | .yytext, true){}} | ||
1133 | |||
1134 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1135 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1136 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1137 | .yytext, | ||
1138 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1139 | .yytext, true){}} | ||
1140 | |||
1141 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1142 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1143 | )yyq), | ||
1144 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1145 | .yytext, | ||
1146 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1147 | .yytext), | ||
1148 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1149 | .yytext, true){}} | ||
1150 | |||
1151 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1152 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1153 | )yyq), | ||
1154 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1155 | .yytext, | ||
1156 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1157 | .yytext), | ||
1158 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1159 | .yytext, true){}} | ||
1160 | |||
1161 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1162 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1163 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1164 | .yytext, | ||
1165 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1166 | .yytext, false){}} | ||
1167 | |||
1168 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1169 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1170 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1171 | .yytext, | ||
1172 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1173 | .yytext, false){}} | ||
1174 | |||
1175 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1176 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1177 | )yyq), | ||
1178 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1179 | .yytext, | ||
1180 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1181 | .yytext), | ||
1182 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1183 | .yytext, false){}} | ||
1184 | |||
1185 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1186 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1187 | )yyq), | ||
1188 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1189 | .yytext, | ||
1190 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1191 | .yytext), | ||
1192 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1193 | .yytext, false){}} | ||
1194 | |||
1195 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1196 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1197 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1198 | ){}} | ||
1199 | |||
1200 | public class BinaryExpression_1 : BinaryExpression { | ||
1201 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1202 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1203 | , | ||
1204 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1205 | , | ||
1206 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1207 | .yytext){}} | ||
1208 | |||
1209 | public class BinaryExpression_2 : BinaryExpression { | ||
1210 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1211 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1212 | , | ||
1213 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1214 | , | ||
1215 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1216 | .yytext){}} | ||
1217 | |||
1218 | public class BinaryExpression_3 : BinaryExpression { | ||
1219 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1220 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1221 | , | ||
1222 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1223 | , | ||
1224 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1225 | .yytext){}} | ||
1226 | |||
1227 | public class BinaryExpression_4 : BinaryExpression { | ||
1228 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1229 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1230 | , | ||
1231 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1232 | , | ||
1233 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1234 | .yytext){}} | ||
1235 | |||
1236 | public class BinaryExpression_5 : BinaryExpression { | ||
1237 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1238 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1239 | , | ||
1240 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1241 | , | ||
1242 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1243 | .yytext){}} | ||
1244 | |||
1245 | public class BinaryExpression_6 : BinaryExpression { | ||
1246 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1247 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1248 | , | ||
1249 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1250 | , | ||
1251 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1252 | .yytext){}} | ||
1253 | |||
1254 | public class BinaryExpression_7 : BinaryExpression { | ||
1255 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1256 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1257 | , | ||
1258 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1259 | , | ||
1260 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1261 | .yytext){}} | ||
1262 | |||
1263 | public class BinaryExpression_8 : BinaryExpression { | ||
1264 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1265 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1266 | , | ||
1267 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1268 | , | ||
1269 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1270 | .yytext){}} | ||
1271 | |||
1272 | public class BinaryExpression_9 : BinaryExpression { | ||
1273 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1274 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1275 | , | ||
1276 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1277 | , | ||
1278 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1279 | .yytext){}} | ||
1280 | |||
1281 | public class BinaryExpression_10 : BinaryExpression { | ||
1282 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1283 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1284 | , | ||
1285 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1286 | , | ||
1287 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1288 | .yytext){}} | ||
1289 | |||
1290 | public class BinaryExpression_11 : BinaryExpression { | ||
1291 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1292 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1293 | , | ||
1294 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1295 | , | ||
1296 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1297 | .yytext){}} | ||
1298 | |||
1299 | public class BinaryExpression_12 : BinaryExpression { | ||
1300 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1301 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1302 | , | ||
1303 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1304 | , | ||
1305 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1306 | .yytext){}} | ||
1307 | |||
1308 | public class BinaryExpression_13 : BinaryExpression { | ||
1309 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1310 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1311 | , | ||
1312 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1313 | , | ||
1314 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1315 | .yytext){}} | ||
1316 | |||
1317 | public class BinaryExpression_14 : BinaryExpression { | ||
1318 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1319 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1320 | , | ||
1321 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1322 | , | ||
1323 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1324 | .yytext){}} | ||
1325 | |||
1326 | public class BinaryExpression_15 : BinaryExpression { | ||
1327 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1328 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1329 | , | ||
1330 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1331 | , | ||
1332 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1333 | .yytext){}} | ||
1334 | |||
1335 | public class BinaryExpression_16 : BinaryExpression { | ||
1336 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1337 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1338 | , | ||
1339 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1340 | , | ||
1341 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1342 | .yytext){}} | ||
1343 | |||
1344 | public class BinaryExpression_17 : BinaryExpression { | ||
1345 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1346 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1347 | , | ||
1348 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1349 | , | ||
1350 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1351 | .yytext){}} | ||
1352 | |||
1353 | public class BinaryExpression_18 : BinaryExpression { | ||
1354 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1355 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1356 | , | ||
1357 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1358 | , | ||
1359 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1360 | .yytext){}} | ||
1361 | |||
1362 | public class UnaryExpression_1 : UnaryExpression { | ||
1363 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1364 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1365 | .yytext, | ||
1366 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1367 | ){}} | ||
1368 | |||
1369 | public class UnaryExpression_2 : UnaryExpression { | ||
1370 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1371 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1372 | .yytext, | ||
1373 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1374 | ){}} | ||
1375 | |||
1376 | public class UnaryExpression_3 : UnaryExpression { | ||
1377 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1378 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1379 | .yytext, | ||
1380 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1381 | ){}} | ||
1382 | |||
1383 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1384 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1385 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1386 | ){}} | ||
1387 | |||
1388 | public class TypecastExpression_1 : TypecastExpression { | ||
1389 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1390 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1391 | .yytext, | ||
1392 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1393 | ){}} | ||
1394 | |||
1395 | public class TypecastExpression_2 : TypecastExpression { | ||
1396 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1397 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1398 | .yytext, new IdentExpression(((LSLSyntax | ||
1399 | )yyq), | ||
1400 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1401 | .yytext)){}} | ||
1402 | |||
1403 | public class TypecastExpression_3 : TypecastExpression { | ||
1404 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1405 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1406 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1407 | )yyq), | ||
1408 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1409 | .yytext, | ||
1410 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1411 | .yytext)){}} | ||
1412 | |||
1413 | public class TypecastExpression_4 : TypecastExpression { | ||
1414 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1415 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1416 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1417 | )yyq), | ||
1418 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1419 | .yytext, | ||
1420 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1421 | .yytext, true)){}} | ||
1422 | |||
1423 | public class TypecastExpression_5 : TypecastExpression { | ||
1424 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1425 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1426 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1427 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1428 | )yyq), | ||
1429 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1430 | .yytext, | ||
1431 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1432 | .yytext), | ||
1433 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1434 | .yytext, true)){}} | ||
1435 | |||
1436 | public class TypecastExpression_6 : TypecastExpression { | ||
1437 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1438 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1439 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1440 | )yyq), | ||
1441 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1442 | .yytext, | ||
1443 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1444 | .yytext, true)){}} | ||
1445 | |||
1446 | public class TypecastExpression_7 : TypecastExpression { | ||
1447 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1448 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1449 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1450 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1451 | )yyq), | ||
1452 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1453 | .yytext, | ||
1454 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1455 | .yytext), | ||
1456 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1457 | .yytext, true)){}} | ||
1458 | |||
1459 | public class TypecastExpression_8 : TypecastExpression { | ||
1460 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1461 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1462 | .yytext, | ||
1463 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1464 | ){}} | ||
1465 | |||
1466 | public class TypecastExpression_9 : TypecastExpression { | ||
1467 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1468 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1469 | .yytext, | ||
1470 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1471 | ){}} | ||
1472 | |||
1473 | public class FunctionCall_1 : FunctionCall { | ||
1474 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1475 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1476 | .yytext, | ||
1477 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1478 | ){}} | ||
1479 | |||
1480 | public class ArgumentList_1 : ArgumentList { | ||
1481 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1482 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1483 | ){}} | ||
1484 | |||
1485 | public class ArgumentList_2 : ArgumentList { | ||
1486 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1487 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1488 | , | ||
1489 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1490 | ){}} | ||
1491 | |||
1492 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1493 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1494 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1495 | ){}} | ||
1496 | |||
1497 | public class Typename_1 : Typename { | ||
1498 | public Typename_1(Parser yyq):base(yyq, | ||
1499 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1500 | .yytext){}} | ||
1501 | |||
1502 | public class Typename_2 : Typename { | ||
1503 | public Typename_2(Parser yyq):base(yyq, | ||
1504 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1505 | .yytext){}} | ||
1506 | |||
1507 | public class Typename_3 : Typename { | ||
1508 | public Typename_3(Parser yyq):base(yyq, | ||
1509 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1510 | .yytext){}} | ||
1511 | |||
1512 | public class Typename_4 : Typename { | ||
1513 | public Typename_4(Parser yyq):base(yyq, | ||
1514 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1515 | .yytext){}} | ||
1516 | |||
1517 | public class Typename_5 : Typename { | ||
1518 | public Typename_5(Parser yyq):base(yyq, | ||
1519 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1520 | .yytext){}} | ||
1521 | |||
1522 | public class Typename_6 : Typename { | ||
1523 | public Typename_6(Parser yyq):base(yyq, | ||
1524 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1525 | .yytext){}} | ||
1526 | |||
1527 | public class Typename_7 : Typename { | ||
1528 | public Typename_7(Parser yyq):base(yyq, | ||
1529 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1530 | .yytext){}} | ||
1531 | |||
1532 | public class Event_1 : Event { | ||
1533 | public Event_1(Parser yyq):base(yyq, | ||
1534 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1535 | .yytext){}} | ||
1536 | |||
1537 | public class Event_2 : Event { | ||
1538 | public Event_2(Parser yyq):base(yyq, | ||
1539 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1540 | .yytext){}} | ||
1541 | |||
1542 | public class Event_3 : Event { | ||
1543 | public Event_3(Parser yyq):base(yyq, | ||
1544 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1545 | .yytext){}} | ||
1546 | |||
1547 | public class Event_4 : Event { | ||
1548 | public Event_4(Parser yyq):base(yyq, | ||
1549 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1550 | .yytext){}} | ||
1551 | |||
1552 | public class Event_5 : Event { | ||
1553 | public Event_5(Parser yyq):base(yyq, | ||
1554 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1555 | .yytext){}} | ||
1556 | |||
1557 | public class Event_6 : Event { | ||
1558 | public Event_6(Parser yyq):base(yyq, | ||
1559 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1560 | .yytext){}} | ||
1561 | |||
1562 | public class Event_7 : Event { | ||
1563 | public Event_7(Parser yyq):base(yyq, | ||
1564 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1565 | .yytext){}} | ||
1566 | |||
1567 | public class Event_8 : Event { | ||
1568 | public Event_8(Parser yyq):base(yyq, | ||
1569 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1570 | .yytext){}} | ||
1571 | |||
1572 | public class Event_9 : Event { | ||
1573 | public Event_9(Parser yyq):base(yyq, | ||
1574 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1575 | .yytext){}} | ||
1576 | |||
1577 | public class Event_10 : Event { | ||
1578 | public Event_10(Parser yyq):base(yyq, | ||
1579 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1580 | .yytext){}} | ||
1581 | |||
1582 | public class Event_11 : Event { | ||
1583 | public Event_11(Parser yyq):base(yyq, | ||
1584 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1585 | .yytext){}} | ||
1586 | |||
1587 | public class Event_12 : Event { | ||
1588 | public Event_12(Parser yyq):base(yyq, | ||
1589 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1590 | .yytext){}} | ||
1591 | |||
1592 | public class Event_13 : Event { | ||
1593 | public Event_13(Parser yyq):base(yyq, | ||
1594 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1595 | .yytext){}} | ||
1596 | |||
1597 | public class Event_14 : Event { | ||
1598 | public Event_14(Parser yyq):base(yyq, | ||
1599 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1600 | .yytext){}} | ||
1601 | |||
1602 | public class Event_15 : Event { | ||
1603 | public Event_15(Parser yyq):base(yyq, | ||
1604 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1605 | .yytext){}} | ||
1606 | |||
1607 | public class Event_16 : Event { | ||
1608 | public Event_16(Parser yyq):base(yyq, | ||
1609 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1610 | .yytext){}} | ||
1611 | |||
1612 | public class Event_17 : Event { | ||
1613 | public Event_17(Parser yyq):base(yyq, | ||
1614 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1615 | .yytext){}} | ||
1616 | |||
1617 | public class Event_18 : Event { | ||
1618 | public Event_18(Parser yyq):base(yyq, | ||
1619 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1620 | .yytext){}} | ||
1621 | |||
1622 | public class Event_19 : Event { | ||
1623 | public Event_19(Parser yyq):base(yyq, | ||
1624 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1625 | .yytext){}} | ||
1626 | |||
1627 | public class Event_20 : Event { | ||
1628 | public Event_20(Parser yyq):base(yyq, | ||
1629 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1630 | .yytext){}} | ||
1631 | |||
1632 | public class Event_21 : Event { | ||
1633 | public Event_21(Parser yyq):base(yyq, | ||
1634 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1635 | .yytext){}} | ||
1636 | |||
1637 | public class Event_22 : Event { | ||
1638 | public Event_22(Parser yyq):base(yyq, | ||
1639 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1640 | .yytext){}} | ||
1641 | |||
1642 | public class Event_23 : Event { | ||
1643 | public Event_23(Parser yyq):base(yyq, | ||
1644 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1645 | .yytext){}} | ||
1646 | |||
1647 | public class Event_24 : Event { | ||
1648 | public Event_24(Parser yyq):base(yyq, | ||
1649 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1650 | .yytext){}} | ||
1651 | |||
1652 | public class Event_25 : Event { | ||
1653 | public Event_25(Parser yyq):base(yyq, | ||
1654 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1655 | .yytext){}} | ||
1656 | |||
1657 | public class Event_26 : Event { | ||
1658 | public Event_26(Parser yyq):base(yyq, | ||
1659 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1660 | .yytext){}} | ||
1661 | |||
1662 | public class Event_27 : Event { | ||
1663 | public Event_27(Parser yyq):base(yyq, | ||
1664 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1665 | .yytext){}} | ||
1666 | |||
1667 | public class Event_28 : Event { | ||
1668 | public Event_28(Parser yyq):base(yyq, | ||
1669 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1670 | .yytext){}} | ||
1671 | |||
1672 | public class Event_29 : Event { | ||
1673 | public Event_29(Parser yyq):base(yyq, | ||
1674 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1675 | .yytext){}} | ||
1676 | |||
1677 | public class Event_30 : Event { | ||
1678 | public Event_30(Parser yyq):base(yyq, | ||
1679 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1680 | .yytext){}} | ||
1681 | |||
1682 | public class Event_31 : Event { | ||
1683 | public Event_31(Parser yyq):base(yyq, | ||
1684 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1685 | .yytext){}} | ||
1686 | |||
1687 | public class Event_32 : Event { | ||
1688 | public Event_32(Parser yyq):base(yyq, | ||
1689 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1690 | .yytext){}} | ||
1691 | |||
1692 | public class Event_33 : Event { | ||
1693 | public Event_33(Parser yyq):base(yyq, | ||
1694 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1695 | .yytext){}} | ||
1696 | public class yyLSLSyntax | ||
1697 | : YyParser { | ||
1698 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1699 | switch(yyact) { | ||
1700 | case -1: break; //// keep compiler happy | ||
1701 | } return null; } | ||
1702 | |||
1703 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1704 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1705 | |||
1706 | public class ArgumentList_3 : ArgumentList { | ||
1707 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1708 | |||
1709 | public class Statement_13 : Statement { | ||
1710 | public Statement_13(Parser yyq):base(yyq){}} | ||
1711 | |||
1712 | public class ArgumentList_4 : ArgumentList { | ||
1713 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1714 | |||
1715 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1716 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1717 | |||
1718 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1719 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1720 | public yyLSLSyntax | ||
1721 | ():base() { arr = new int[] { | ||
1722 | 101,4,6,52,0, | ||
1723 | 46,0,53,0,102, | ||
1724 | 20,103,4,28,76, | ||
1725 | 0,83,0,76,0, | ||
1726 | 80,0,114,0,111, | ||
1727 | 0,103,0,114,0, | ||
1728 | 97,0,109,0,82, | ||
1729 | 0,111,0,111,0, | ||
1730 | 116,0,1,95,1, | ||
1731 | 2,104,18,1,2292, | ||
1732 | 102,2,0,105,5, | ||
1733 | 277,1,0,106,18, | ||
1734 | 1,0,0,2,0, | ||
1735 | 1,1,107,18,1, | ||
1736 | 1,108,20,109,4, | ||
1737 | 18,76,0,73,0, | ||
1738 | 83,0,84,0,95, | ||
1739 | 0,84,0,89,0, | ||
1740 | 80,0,69,0,1, | ||
1741 | 57,1,1,2,0, | ||
1742 | 1,2,110,18,1, | ||
1743 | 2,111,20,112,4, | ||
1744 | 26,82,0,79,0, | ||
1745 | 84,0,65,0,84, | ||
1746 | 0,73,0,79,0, | ||
1747 | 78,0,95,0,84, | ||
1748 | 0,89,0,80,0, | ||
1749 | 69,0,1,56,1, | ||
1750 | 1,2,0,1,3, | ||
1751 | 113,18,1,3,114, | ||
1752 | 20,115,4,22,86, | ||
1753 | 0,69,0,67,0, | ||
1754 | 84,0,79,0,82, | ||
1755 | 0,95,0,84,0, | ||
1756 | 89,0,80,0,69, | ||
1757 | 0,1,55,1,1, | ||
1758 | 2,0,1,4,116, | ||
1759 | 18,1,4,117,20, | ||
1760 | 118,4,16,75,0, | ||
1761 | 69,0,89,0,95, | ||
1762 | 0,84,0,89,0, | ||
1763 | 80,0,69,0,1, | ||
1764 | 54,1,1,2,0, | ||
1765 | 1,5,119,18,1, | ||
1766 | 5,120,20,121,4, | ||
1767 | 22,83,0,84,0, | ||
1768 | 82,0,73,0,78, | ||
1769 | 0,71,0,95,0, | ||
1770 | 84,0,89,0,80, | ||
1771 | 0,69,0,1,53, | ||
1772 | 1,1,2,0,1, | ||
1773 | 6,122,18,1,6, | ||
1774 | 123,20,124,4,20, | ||
1775 | 70,0,76,0,79, | ||
1776 | 0,65,0,84,0, | ||
1777 | 95,0,84,0,89, | ||
1778 | 0,80,0,69,0, | ||
1779 | 1,52,1,1,2, | ||
1780 | 0,1,7,125,18, | ||
1781 | 1,7,126,20,127, | ||
1782 | 4,24,73,0,78, | ||
1783 | 0,84,0,69,0, | ||
1784 | 71,0,69,0,82, | ||
1785 | 0,95,0,84,0, | ||
1786 | 89,0,80,0,69, | ||
1787 | 0,1,51,1,1, | ||
1788 | 2,0,1,8,128, | ||
1789 | 18,1,8,129,20, | ||
1790 | 130,4,16,84,0, | ||
1791 | 121,0,112,0,101, | ||
1792 | 0,110,0,97,0, | ||
1793 | 109,0,101,0,1, | ||
1794 | 105,1,2,2,0, | ||
1795 | 1,9,131,18,1, | ||
1796 | 9,132,20,133,4, | ||
1797 | 10,73,0,68,0, | ||
1798 | 69,0,78,0,84, | ||
1799 | 0,1,91,1,1, | ||
1800 | 2,0,1,10,134, | ||
1801 | 18,1,10,135,20, | ||
1802 | 136,4,20,76,0, | ||
1803 | 69,0,70,0,84, | ||
1804 | 0,95,0,80,0, | ||
1805 | 65,0,82,0,69, | ||
1806 | 0,78,0,1,16, | ||
1807 | 1,1,2,0,1, | ||
1808 | 2239,137,18,1,2239, | ||
1809 | 138,20,139,4,20, | ||
1810 | 69,0,120,0,112, | ||
1811 | 0,114,0,101,0, | ||
1812 | 115,0,115,0,105, | ||
1813 | 0,111,0,110,0, | ||
1814 | 1,128,1,2,2, | ||
1815 | 0,1,573,140,18, | ||
1816 | 1,573,141,20,142, | ||
1817 | 4,26,82,0,73, | ||
1818 | 0,71,0,72,0, | ||
1819 | 84,0,95,0,66, | ||
1820 | 0,82,0,65,0, | ||
1821 | 67,0,75,0,69, | ||
1822 | 0,84,0,1,28, | ||
1823 | 1,1,2,0,1, | ||
1824 | 574,143,18,1,574, | ||
1825 | 144,20,145,4,16, | ||
1826 | 65,0,114,0,103, | ||
1827 | 0,117,0,109,0, | ||
1828 | 101,0,110,0,116, | ||
1829 | 0,1,122,1,2, | ||
1830 | 2,0,1,18,146, | ||
1831 | 18,1,18,129,2, | ||
1832 | 0,1,19,147,18, | ||
1833 | 1,19,132,2,0, | ||
1834 | 1,20,148,18,1, | ||
1835 | 20,149,20,150,4, | ||
1836 | 46,65,0,114,0, | ||
1837 | 103,0,117,0,109, | ||
1838 | 0,101,0,110,0, | ||
1839 | 116,0,68,0,101, | ||
1840 | 0,99,0,108,0, | ||
1841 | 97,0,114,0,97, | ||
1842 | 0,116,0,105,0, | ||
1843 | 111,0,110,0,76, | ||
1844 | 0,105,0,115,0, | ||
1845 | 116,0,1,103,1, | ||
1846 | 2,2,0,1,21, | ||
1847 | 151,18,1,21,152, | ||
1848 | 20,153,4,10,67, | ||
1849 | 0,79,0,77,0, | ||
1850 | 77,0,65,0,1, | ||
1851 | 14,1,1,2,0, | ||
1852 | 1,1693,154,18,1, | ||
1853 | 1693,155,20,156,4, | ||
1854 | 22,82,0,73,0, | ||
1855 | 71,0,72,0,84, | ||
1856 | 0,95,0,80,0, | ||
1857 | 65,0,82,0,69, | ||
1858 | 0,78,0,1,17, | ||
1859 | 1,1,2,0,1, | ||
1860 | 1694,157,18,1,1694, | ||
1861 | 158,20,159,4,18, | ||
1862 | 83,0,69,0,77, | ||
1863 | 0,73,0,67,0, | ||
1864 | 79,0,76,0,79, | ||
1865 | 0,78,0,1,11, | ||
1866 | 1,1,2,0,1, | ||
1867 | 30,160,18,1,30, | ||
1868 | 161,20,162,4,22, | ||
1869 | 68,0,101,0,99, | ||
1870 | 0,108,0,97,0, | ||
1871 | 114,0,97,0,116, | ||
1872 | 0,105,0,111,0, | ||
1873 | 110,0,1,104,1, | ||
1874 | 2,2,0,1,31, | ||
1875 | 163,18,1,31,155, | ||
1876 | 2,0,1,32,164, | ||
1877 | 18,1,32,165,20, | ||
1878 | 166,4,20,76,0, | ||
1879 | 69,0,70,0,84, | ||
1880 | 0,95,0,66,0, | ||
1881 | 82,0,65,0,67, | ||
1882 | 0,69,0,1,12, | ||
1883 | 1,1,2,0,1, | ||
1884 | 1706,167,18,1,1706, | ||
1885 | 168,20,169,4,10, | ||
1886 | 87,0,72,0,73, | ||
1887 | 0,76,0,69,0, | ||
1888 | 1,45,1,1,2, | ||
1889 | 0,1,1707,170,18, | ||
1890 | 1,1707,135,2,0, | ||
1891 | 1,1115,171,18,1, | ||
1892 | 1115,172,20,173,4, | ||
1893 | 12,69,0,81,0, | ||
1894 | 85,0,65,0,76, | ||
1895 | 0,83,0,1,15, | ||
1896 | 1,1,2,0,1, | ||
1897 | 1152,174,18,1,1152, | ||
1898 | 175,20,176,4,28, | ||
1899 | 80,0,69,0,82, | ||
1900 | 0,67,0,69,0, | ||
1901 | 78,0,84,0,95, | ||
1902 | 0,69,0,81,0, | ||
1903 | 85,0,65,0,76, | ||
1904 | 0,83,0,1,10, | ||
1905 | 1,1,2,0,1, | ||
1906 | 40,177,18,1,40, | ||
1907 | 132,2,0,1,41, | ||
1908 | 178,18,1,41,135, | ||
1909 | 2,0,1,42,179, | ||
1910 | 18,1,42,138,2, | ||
1911 | 0,1,43,180,18, | ||
1912 | 1,43,181,20,182, | ||
1913 | 4,22,82,0,73, | ||
1914 | 0,71,0,72,0, | ||
1915 | 84,0,95,0,83, | ||
1916 | 0,72,0,73,0, | ||
1917 | 70,0,84,0,1, | ||
1918 | 41,1,1,2,0, | ||
1919 | 1,44,183,18,1, | ||
1920 | 44,132,2,0,1, | ||
1921 | 46,184,18,1,46, | ||
1922 | 185,20,186,4,12, | ||
1923 | 80,0,69,0,82, | ||
1924 | 0,73,0,79,0, | ||
1925 | 68,0,1,24,1, | ||
1926 | 1,2,0,1,47, | ||
1927 | 187,18,1,47,132, | ||
1928 | 2,0,1,48,188, | ||
1929 | 18,1,48,189,20, | ||
1930 | 190,4,18,68,0, | ||
1931 | 69,0,67,0,82, | ||
1932 | 0,69,0,77,0, | ||
1933 | 69,0,78,0,84, | ||
1934 | 0,1,5,1,1, | ||
1935 | 2,0,1,49,191, | ||
1936 | 18,1,49,192,20, | ||
1937 | 193,4,18,73,0, | ||
1938 | 78,0,67,0,82, | ||
1939 | 0,69,0,77,0, | ||
1940 | 69,0,78,0,84, | ||
1941 | 0,1,4,1,1, | ||
1942 | 2,0,1,50,194, | ||
1943 | 18,1,50,189,2, | ||
1944 | 0,1,51,195,18, | ||
1945 | 1,51,192,2,0, | ||
1946 | 1,52,196,18,1, | ||
1947 | 52,135,2,0,1, | ||
1948 | 2281,197,18,1,2281, | ||
1949 | 198,20,199,4,12, | ||
1950 | 83,0,116,0,97, | ||
1951 | 0,116,0,101,0, | ||
1952 | 115,0,1,99,1, | ||
1953 | 2,2,0,1,1674, | ||
1954 | 200,18,1,1674,138, | ||
1955 | 2,0,1,2216,201, | ||
1956 | 18,1,2216,132,2, | ||
1957 | 0,1,2288,202,18, | ||
1958 | 1,2288,203,20,204, | ||
1959 | 4,48,71,0,108, | ||
1960 | 0,111,0,98,0, | ||
1961 | 97,0,108,0,70, | ||
1962 | 0,117,0,110,0, | ||
1963 | 99,0,116,0,105, | ||
1964 | 0,111,0,110,0, | ||
1965 | 68,0,101,0,102, | ||
1966 | 0,105,0,110,0, | ||
1967 | 105,0,116,0,105, | ||
1968 | 0,111,0,110,0, | ||
1969 | 1,98,1,2,2, | ||
1970 | 0,1,61,205,18, | ||
1971 | 1,61,129,2,0, | ||
1972 | 1,62,206,18,1, | ||
1973 | 62,155,2,0,1, | ||
1974 | 63,207,18,1,63, | ||
1975 | 132,2,0,1,2292, | ||
1976 | 104,1,65,208,18, | ||
1977 | 1,65,185,2,0, | ||
1978 | 1,66,209,18,1, | ||
1979 | 66,132,2,0,1, | ||
1980 | 67,210,18,1,67, | ||
1981 | 189,2,0,1,68, | ||
1982 | 211,18,1,68,192, | ||
1983 | 2,0,1,69,212, | ||
1984 | 18,1,69,189,2, | ||
1985 | 0,1,70,213,18, | ||
1986 | 1,70,192,2,0, | ||
1987 | 1,71,214,18,1, | ||
1988 | 71,135,2,0,1, | ||
1989 | 2099,215,18,1,2099, | ||
1990 | 216,20,217,4,18, | ||
1991 | 83,0,116,0,97, | ||
1992 | 0,116,0,101,0, | ||
1993 | 66,0,111,0,100, | ||
1994 | 0,121,0,1,101, | ||
1995 | 1,2,2,0,1, | ||
1996 | 73,218,18,1,73, | ||
1997 | 138,2,0,1,74, | ||
1998 | 219,18,1,74,155, | ||
1999 | 2,0,1,2232,220, | ||
2000 | 18,1,2232,161,2, | ||
2001 | 0,1,76,221,18, | ||
2002 | 1,76,222,20,223, | ||
2003 | 4,20,76,0,69, | ||
2004 | 0,70,0,84,0, | ||
2005 | 95,0,83,0,72, | ||
2006 | 0,73,0,70,0, | ||
2007 | 84,0,1,40,1, | ||
2008 | 1,2,0,1,1193, | ||
2009 | 224,18,1,1193,138, | ||
2010 | 2,0,1,1121,225, | ||
2011 | 18,1,1121,138,2, | ||
2012 | 0,1,82,226,18, | ||
2013 | 1,82,138,2,0, | ||
2014 | 1,79,227,18,1, | ||
2015 | 79,228,20,229,4, | ||
2016 | 10,84,0,73,0, | ||
2017 | 76,0,68,0,69, | ||
2018 | 0,1,36,1,1, | ||
2019 | 2,0,1,85,230, | ||
2020 | 18,1,85,231,20, | ||
2021 | 232,4,26,83,0, | ||
2022 | 84,0,82,0,79, | ||
2023 | 0,75,0,69,0, | ||
2024 | 95,0,83,0,84, | ||
2025 | 0,82,0,79,0, | ||
2026 | 75,0,69,0,1, | ||
2027 | 39,1,1,2,0, | ||
2028 | 1,2050,233,18,1, | ||
2029 | 2050,234,20,235,4, | ||
2030 | 34,84,0,79,0, | ||
2031 | 85,0,67,0,72, | ||
2032 | 0,95,0,83,0, | ||
2033 | 84,0,65,0,82, | ||
2034 | 0,84,0,95,0, | ||
2035 | 69,0,86,0,69, | ||
2036 | 0,78,0,84,0, | ||
2037 | 1,89,1,1,2, | ||
2038 | 0,1,89,236,18, | ||
2039 | 1,89,237,20,238, | ||
2040 | 4,10,77,0,73, | ||
2041 | 0,78,0,85,0, | ||
2042 | 83,0,1,19,1, | ||
2043 | 1,2,0,1,1762, | ||
2044 | 239,18,1,1762,240, | ||
2045 | 20,241,4,4,73, | ||
2046 | 0,70,0,1,42, | ||
2047 | 1,1,2,0,1, | ||
2048 | 1763,242,18,1,1763, | ||
2049 | 135,2,0,1,93, | ||
2050 | 243,18,1,93,138, | ||
2051 | 2,0,1,97,244, | ||
2052 | 18,1,97,245,20, | ||
2053 | 246,4,14,65,0, | ||
2054 | 77,0,80,0,95, | ||
2055 | 0,65,0,77,0, | ||
2056 | 80,0,1,38,1, | ||
2057 | 1,2,0,1,1769, | ||
2058 | 247,18,1,1769,138, | ||
2059 | 2,0,1,102,248, | ||
2060 | 18,1,102,249,20, | ||
2061 | 250,4,22,69,0, | ||
2062 | 88,0,67,0,76, | ||
2063 | 0,65,0,77,0, | ||
2064 | 65,0,84,0,73, | ||
2065 | 0,79,0,78,0, | ||
2066 | 1,37,1,1,2, | ||
2067 | 0,1,1668,251,18, | ||
2068 | 1,1668,135,2,0, | ||
2069 | 1,107,252,18,1, | ||
2070 | 107,138,2,0,1, | ||
2071 | 1222,253,18,1,1222, | ||
2072 | 254,20,255,4,22, | ||
2073 | 83,0,84,0,65, | ||
2074 | 0,82,0,95,0, | ||
2075 | 69,0,81,0,85, | ||
2076 | 0,65,0,76,0, | ||
2077 | 83,0,1,8,1, | ||
2078 | 1,2,0,1,2074, | ||
2079 | 256,18,1,2074,257, | ||
2080 | 20,258,4,32,68, | ||
2081 | 0,65,0,84,0, | ||
2082 | 65,0,83,0,69, | ||
2083 | 0,82,0,86,0, | ||
2084 | 69,0,82,0,95, | ||
2085 | 0,69,0,86,0, | ||
2086 | 69,0,78,0,84, | ||
2087 | 0,1,66,1,1, | ||
2088 | 2,0,1,112,259, | ||
2089 | 18,1,112,260,20, | ||
2090 | 261,4,28,71,0, | ||
2091 | 82,0,69,0,65, | ||
2092 | 0,84,0,69,0, | ||
2093 | 82,0,95,0,69, | ||
2094 | 0,81,0,85,0, | ||
2095 | 65,0,76,0,83, | ||
2096 | 0,1,32,1,1, | ||
2097 | 2,0,1,2269,262, | ||
2098 | 18,1,2269,158,2, | ||
2099 | 0,1,1228,263,18, | ||
2100 | 1,1228,138,2,0, | ||
2101 | 1,1732,264,18,1, | ||
2102 | 1732,155,2,0,1, | ||
2103 | 118,265,18,1,118, | ||
2104 | 138,2,0,1,1158, | ||
2105 | 266,18,1,1158,138, | ||
2106 | 2,0,1,124,267, | ||
2107 | 18,1,124,268,20, | ||
2108 | 269,4,22,76,0, | ||
2109 | 69,0,83,0,83, | ||
2110 | 0,95,0,69,0, | ||
2111 | 81,0,85,0,65, | ||
2112 | 0,76,0,83,0, | ||
2113 | 1,31,1,1,2, | ||
2114 | 0,1,130,270,18, | ||
2115 | 1,130,138,2,0, | ||
2116 | 1,2289,271,18,1, | ||
2117 | 2289,272,20,273,4, | ||
2118 | 50,71,0,108,0, | ||
2119 | 111,0,98,0,97, | ||
2120 | 0,108,0,86,0, | ||
2121 | 97,0,114,0,105, | ||
2122 | 0,97,0,98,0, | ||
2123 | 108,0,101,0,68, | ||
2124 | 0,101,0,99,0, | ||
2125 | 108,0,97,0,114, | ||
2126 | 0,97,0,116,0, | ||
2127 | 105,0,111,0,110, | ||
2128 | 0,1,97,1,2, | ||
2129 | 2,0,1,2290,274, | ||
2130 | 18,1,2290,203,2, | ||
2131 | 0,1,2291,275,18, | ||
2132 | 1,2291,272,2,0, | ||
2133 | 1,137,276,18,1, | ||
2134 | 137,277,20,278,4, | ||
2135 | 36,69,0,88,0, | ||
2136 | 67,0,76,0,65, | ||
2137 | 0,77,0,65,0, | ||
2138 | 84,0,73,0,79, | ||
2139 | 0,78,0,95,0, | ||
2140 | 69,0,81,0,85, | ||
2141 | 0,65,0,76,0, | ||
2142 | 83,0,1,30,1, | ||
2143 | 1,2,0,1,2293, | ||
2144 | 279,18,1,2293,280, | ||
2145 | 23,281,4,6,69, | ||
2146 | 0,79,0,70,0, | ||
2147 | 1,2,1,6,2, | ||
2148 | 0,1,2226,282,18, | ||
2149 | 1,2226,149,2,0, | ||
2150 | 1,2228,283,18,1, | ||
2151 | 2228,155,2,0,1, | ||
2152 | 1257,284,18,1,1257, | ||
2153 | 285,20,286,4,24, | ||
2154 | 77,0,73,0,78, | ||
2155 | 0,85,0,83,0, | ||
2156 | 95,0,69,0,81, | ||
2157 | 0,85,0,65,0, | ||
2158 | 76,0,83,0,1, | ||
2159 | 7,1,1,2,0, | ||
2160 | 1,2230,287,18,1, | ||
2161 | 2230,288,20,289,4, | ||
2162 | 34,67,0,111,0, | ||
2163 | 109,0,112,0,111, | ||
2164 | 0,117,0,110,0, | ||
2165 | 100,0,83,0,116, | ||
2166 | 0,97,0,116,0, | ||
2167 | 101,0,109,0,101, | ||
2168 | 0,110,0,116,0, | ||
2169 | 1,107,1,2,2, | ||
2170 | 0,1,1817,290,18, | ||
2171 | 1,1817,291,20,292, | ||
2172 | 4,18,83,0,116, | ||
2173 | 0,97,0,116,0, | ||
2174 | 101,0,109,0,101, | ||
2175 | 0,110,0,116,0, | ||
2176 | 1,109,1,2,2, | ||
2177 | 0,1,1818,293,18, | ||
2178 | 1,1818,294,20,295, | ||
2179 | 4,8,69,0,76, | ||
2180 | 0,83,0,69,0, | ||
2181 | 1,43,1,1,2, | ||
2182 | 0,1,1263,296,18, | ||
2183 | 1,1263,138,2,0, | ||
2184 | 1,151,297,18,1, | ||
2185 | 151,298,20,299,4, | ||
2186 | 26,69,0,81,0, | ||
2187 | 85,0,65,0,76, | ||
2188 | 0,83,0,95,0, | ||
2189 | 69,0,81,0,85, | ||
2190 | 0,65,0,76,0, | ||
2191 | 83,0,1,29,1, | ||
2192 | 1,2,0,1,1713, | ||
2193 | 300,18,1,1713,138, | ||
2194 | 2,0,1,143,301, | ||
2195 | 18,1,143,138,2, | ||
2196 | 0,1,157,302,18, | ||
2197 | 1,157,138,2,0, | ||
2198 | 1,166,303,18,1, | ||
2199 | 166,304,20,305,4, | ||
2200 | 20,76,0,69,0, | ||
2201 | 70,0,84,0,95, | ||
2202 | 0,65,0,78,0, | ||
2203 | 71,0,76,0,69, | ||
2204 | 0,1,25,1,1, | ||
2205 | 2,0,1,172,306, | ||
2206 | 18,1,172,138,2, | ||
2207 | 0,1,1788,307,18, | ||
2208 | 1,1788,155,2,0, | ||
2209 | 1,1847,308,18,1, | ||
2210 | 1847,291,2,0,1, | ||
2211 | 1292,309,18,1,1292, | ||
2212 | 310,20,311,4,22, | ||
2213 | 80,0,76,0,85, | ||
2214 | 0,83,0,95,0, | ||
2215 | 69,0,81,0,85, | ||
2216 | 0,65,0,76,0, | ||
2217 | 83,0,1,6,1, | ||
2218 | 1,2,0,1,1850, | ||
2219 | 312,18,1,1850,313, | ||
2220 | 20,314,4,26,68, | ||
2221 | 0,69,0,70,0, | ||
2222 | 65,0,85,0,76, | ||
2223 | 0,84,0,95,0, | ||
2224 | 83,0,84,0,65, | ||
2225 | 0,84,0,69,0, | ||
2226 | 1,47,1,1,2, | ||
2227 | 0,1,1851,315,18, | ||
2228 | 1,1851,132,2,0, | ||
2229 | 1,1852,316,18,1, | ||
2230 | 1852,317,20,318,4, | ||
2231 | 8,74,0,85,0, | ||
2232 | 77,0,80,0,1, | ||
2233 | 49,1,1,2,0, | ||
2234 | 1,1853,319,18,1, | ||
2235 | 1853,132,2,0,1, | ||
2236 | 1854,320,18,1,1854, | ||
2237 | 321,20,322,4,4, | ||
2238 | 65,0,84,0,1, | ||
2239 | 23,1,1,2,0, | ||
2240 | 1,1855,323,18,1, | ||
2241 | 1855,132,2,0,1, | ||
2242 | 1856,324,18,1,1856, | ||
2243 | 288,2,0,1,1857, | ||
2244 | 325,18,1,1857,326, | ||
2245 | 20,327,4,14,70, | ||
2246 | 0,111,0,114,0, | ||
2247 | 76,0,111,0,111, | ||
2248 | 0,112,0,1,118, | ||
2249 | 1,2,2,0,1, | ||
2250 | 1858,328,18,1,1858, | ||
2251 | 329,20,330,4,32, | ||
2252 | 68,0,111,0,87, | ||
2253 | 0,104,0,105,0, | ||
2254 | 108,0,101,0,83, | ||
2255 | 0,116,0,97,0, | ||
2256 | 116,0,101,0,109, | ||
2257 | 0,101,0,110,0, | ||
2258 | 116,0,1,117,1, | ||
2259 | 2,2,0,1,188, | ||
2260 | 331,18,1,188,138, | ||
2261 | 2,0,1,1860,332, | ||
2262 | 18,1,1860,333,20, | ||
2263 | 334,4,22,73,0, | ||
2264 | 102,0,83,0,116, | ||
2265 | 0,97,0,116,0, | ||
2266 | 101,0,109,0,101, | ||
2267 | 0,110,0,116,0, | ||
2268 | 1,115,1,2,2, | ||
2269 | 0,1,1187,335,18, | ||
2270 | 1,1187,336,20,337, | ||
2271 | 4,24,83,0,76, | ||
2272 | 0,65,0,83,0, | ||
2273 | 72,0,95,0,69, | ||
2274 | 0,81,0,85,0, | ||
2275 | 65,0,76,0,83, | ||
2276 | 0,1,9,1,1, | ||
2277 | 2,0,1,1862,338, | ||
2278 | 18,1,1862,158,2, | ||
2279 | 0,1,1863,339,18, | ||
2280 | 1,1863,340,20,341, | ||
2281 | 4,26,74,0,117, | ||
2282 | 0,109,0,112,0, | ||
2283 | 83,0,116,0,97, | ||
2284 | 0,116,0,101,0, | ||
2285 | 109,0,101,0,110, | ||
2286 | 0,116,0,1,113, | ||
2287 | 1,2,2,0,1, | ||
2288 | 1864,342,18,1,1864, | ||
2289 | 158,2,0,1,1865, | ||
2290 | 343,18,1,1865,344, | ||
2291 | 20,345,4,18,74, | ||
2292 | 0,117,0,109,0, | ||
2293 | 112,0,76,0,97, | ||
2294 | 0,98,0,101,0, | ||
2295 | 108,0,1,112,1, | ||
2296 | 2,2,0,1,1866, | ||
2297 | 346,18,1,1866,158, | ||
2298 | 2,0,1,182,347, | ||
2299 | 18,1,182,348,20, | ||
2300 | 349,4,22,82,0, | ||
2301 | 73,0,71,0,72, | ||
2302 | 0,84,0,95,0, | ||
2303 | 65,0,78,0,71, | ||
2304 | 0,76,0,69,0, | ||
2305 | 1,26,1,1,2, | ||
2306 | 0,1,1868,350,18, | ||
2307 | 1,1868,158,2,0, | ||
2308 | 1,1869,351,18,1, | ||
2309 | 1869,352,20,353,4, | ||
2310 | 20,65,0,115,0, | ||
2311 | 115,0,105,0,103, | ||
2312 | 0,110,0,109,0, | ||
2313 | 101,0,110,0,116, | ||
2314 | 0,1,110,1,2, | ||
2315 | 2,0,1,199,354, | ||
2316 | 18,1,199,355,20, | ||
2317 | 356,4,10,67,0, | ||
2318 | 65,0,82,0,69, | ||
2319 | 0,84,0,1,35, | ||
2320 | 1,1,2,0,1, | ||
2321 | 1871,357,18,1,1871, | ||
2322 | 158,2,0,1,1760, | ||
2323 | 358,18,1,1760,291, | ||
2324 | 2,0,1,205,359, | ||
2325 | 18,1,205,138,2, | ||
2326 | 0,1,1327,360,18, | ||
2327 | 1,1327,172,2,0, | ||
2328 | 1,217,361,18,1, | ||
2329 | 217,362,20,363,4, | ||
2330 | 12,83,0,84,0, | ||
2331 | 82,0,79,0,75, | ||
2332 | 0,69,0,1,34, | ||
2333 | 1,1,2,0,1, | ||
2334 | 2233,364,18,1,2233, | ||
2335 | 172,2,0,1,1333, | ||
2336 | 365,18,1,1333,138, | ||
2337 | 2,0,1,223,366, | ||
2338 | 18,1,223,138,2, | ||
2339 | 0,1,1298,367,18, | ||
2340 | 1,1298,138,2,0, | ||
2341 | 1,236,368,18,1, | ||
2342 | 236,369,20,370,4, | ||
2343 | 6,65,0,77,0, | ||
2344 | 80,0,1,33,1, | ||
2345 | 1,2,0,1,1849, | ||
2346 | 371,18,1,1849,372, | ||
2347 | 20,373,4,10,83, | ||
2348 | 0,84,0,65,0, | ||
2349 | 84,0,69,0,1, | ||
2350 | 48,1,1,2,0, | ||
2351 | 1,242,374,18,1, | ||
2352 | 242,138,2,0,1, | ||
2353 | 2258,375,18,1,2258, | ||
2354 | 158,2,0,1,1859, | ||
2355 | 376,18,1,1859,377, | ||
2356 | 20,378,4,28,87, | ||
2357 | 0,104,0,105,0, | ||
2358 | 108,0,101,0,83, | ||
2359 | 0,116,0,97,0, | ||
2360 | 116,0,101,0,109, | ||
2361 | 0,101,0,110,0, | ||
2362 | 116,0,1,116,1, | ||
2363 | 2,2,0,1,1861, | ||
2364 | 379,18,1,1861,380, | ||
2365 | 20,381,4,22,83, | ||
2366 | 0,116,0,97,0, | ||
2367 | 116,0,101,0,67, | ||
2368 | 0,104,0,97,0, | ||
2369 | 110,0,103,0,101, | ||
2370 | 0,1,114,1,2, | ||
2371 | 2,0,1,1366,382, | ||
2372 | 18,1,1366,138,2, | ||
2373 | 0,1,256,383,18, | ||
2374 | 1,256,384,20,385, | ||
2375 | 4,14,80,0,69, | ||
2376 | 0,82,0,67,0, | ||
2377 | 69,0,78,0,84, | ||
2378 | 0,1,22,1,1, | ||
2379 | 2,0,1,2270,386, | ||
2380 | 18,1,2270,387,20, | ||
2381 | 388,4,34,71,0, | ||
2382 | 108,0,111,0,98, | ||
2383 | 0,97,0,108,0, | ||
2384 | 68,0,101,0,102, | ||
2385 | 0,105,0,110,0, | ||
2386 | 105,0,116,0,105, | ||
2387 | 0,111,0,110,0, | ||
2388 | 115,0,1,96,1, | ||
2389 | 2,2,0,1,1870, | ||
2390 | 389,18,1,1870,158, | ||
2391 | 2,0,1,262,390, | ||
2392 | 18,1,262,138,2, | ||
2393 | 0,1,827,391,18, | ||
2394 | 1,827,138,2,0, | ||
2395 | 1,1385,392,18,1, | ||
2396 | 1385,158,2,0,1, | ||
2397 | 277,393,18,1,277, | ||
2398 | 394,20,395,4,10, | ||
2399 | 83,0,76,0,65, | ||
2400 | 0,83,0,72,0, | ||
2401 | 1,21,1,1,2, | ||
2402 | 0,1,1396,396,18, | ||
2403 | 1,1396,397,20,398, | ||
2404 | 4,12,82,0,69, | ||
2405 | 0,84,0,85,0, | ||
2406 | 82,0,78,0,1, | ||
2407 | 50,1,1,2,0, | ||
2408 | 1,283,399,18,1, | ||
2409 | 283,138,2,0,1, | ||
2410 | 1402,400,18,1,1402, | ||
2411 | 138,2,0,1,1962, | ||
2412 | 401,18,1,1962,352, | ||
2413 | 2,0,1,299,402, | ||
2414 | 18,1,299,403,20, | ||
2415 | 404,4,8,83,0, | ||
2416 | 84,0,65,0,82, | ||
2417 | 0,1,20,1,1, | ||
2418 | 2,0,1,305,405, | ||
2419 | 18,1,305,138,2, | ||
2420 | 0,1,1867,406,18, | ||
2421 | 1,1867,407,20,408, | ||
2422 | 4,30,82,0,101, | ||
2423 | 0,116,0,117,0, | ||
2424 | 114,0,110,0,83, | ||
2425 | 0,116,0,97,0, | ||
2426 | 116,0,101,0,109, | ||
2427 | 0,101,0,110,0, | ||
2428 | 116,0,1,111,1, | ||
2429 | 2,2,0,1,1431, | ||
2430 | 409,18,1,1431,161, | ||
2431 | 2,0,1,1432,410, | ||
2432 | 18,1,1432,172,2, | ||
2433 | 0,1,322,411,18, | ||
2434 | 1,322,237,2,0, | ||
2435 | 1,1438,412,18,1, | ||
2436 | 1438,138,2,0,1, | ||
2437 | 883,413,18,1,883, | ||
2438 | 138,2,0,1,328, | ||
2439 | 414,18,1,328,138, | ||
2440 | 2,0,1,346,415, | ||
2441 | 18,1,346,416,20, | ||
2442 | 417,4,8,80,0, | ||
2443 | 76,0,85,0,83, | ||
2444 | 0,1,18,1,1, | ||
2445 | 2,0,1,352,418, | ||
2446 | 18,1,352,138,2, | ||
2447 | 0,1,1467,419,18, | ||
2448 | 1,1467,158,2,0, | ||
2449 | 1,1468,420,18,1, | ||
2450 | 1468,421,20,422,4, | ||
2451 | 6,70,0,79,0, | ||
2452 | 82,0,1,46,1, | ||
2453 | 1,2,0,1,1469, | ||
2454 | 423,18,1,1469,135, | ||
2455 | 2,0,1,2037,424, | ||
2456 | 18,1,2037,291,2, | ||
2457 | 0,1,2038,425,18, | ||
2458 | 1,2038,426,20,427, | ||
2459 | 4,22,82,0,73, | ||
2460 | 0,71,0,72,0, | ||
2461 | 84,0,95,0,66, | ||
2462 | 0,82,0,65,0, | ||
2463 | 67,0,69,0,1, | ||
2464 | 13,1,1,2,0, | ||
2465 | 1,1482,428,18,1, | ||
2466 | 1482,138,2,0,1, | ||
2467 | 2041,429,18,1,2041, | ||
2468 | 291,2,0,1,371, | ||
2469 | 430,18,1,371,431, | ||
2470 | 20,432,4,24,70, | ||
2471 | 0,117,0,110,0, | ||
2472 | 99,0,116,0,105, | ||
2473 | 0,111,0,110,0, | ||
2474 | 67,0,97,0,108, | ||
2475 | 0,108,0,1,120, | ||
2476 | 1,2,2,0,1, | ||
2477 | 372,433,18,1,372, | ||
2478 | 189,2,0,1,373, | ||
2479 | 434,18,1,373,132, | ||
2480 | 2,0,1,374,435, | ||
2481 | 18,1,374,185,2, | ||
2482 | 0,1,375,436,18, | ||
2483 | 1,375,132,2,0, | ||
2484 | 1,376,437,18,1, | ||
2485 | 376,192,2,0,1, | ||
2486 | 377,438,18,1,377, | ||
2487 | 132,2,0,1,378, | ||
2488 | 439,18,1,378,185, | ||
2489 | 2,0,1,379,440, | ||
2490 | 18,1,379,132,2, | ||
2491 | 0,1,380,441,18, | ||
2492 | 1,380,442,20,443, | ||
2493 | 4,16,67,0,111, | ||
2494 | 0,110,0,115,0, | ||
2495 | 116,0,97,0,110, | ||
2496 | 0,116,0,1,124, | ||
2497 | 1,2,2,0,1, | ||
2498 | 381,444,18,1,381, | ||
2499 | 445,20,446,4,24, | ||
2500 | 76,0,69,0,70, | ||
2501 | 0,84,0,95,0, | ||
2502 | 66,0,82,0,65, | ||
2503 | 0,67,0,75,0, | ||
2504 | 69,0,84,0,1, | ||
2505 | 27,1,1,2,0, | ||
2506 | 1,2053,447,18,1, | ||
2507 | 2053,448,20,449,4, | ||
2508 | 22,84,0,73,0, | ||
2509 | 77,0,69,0,82, | ||
2510 | 0,95,0,69,0, | ||
2511 | 86,0,69,0,78, | ||
2512 | 0,84,0,1,87, | ||
2513 | 1,1,2,0,1, | ||
2514 | 383,450,18,1,383, | ||
2515 | 451,20,452,4,24, | ||
2516 | 65,0,114,0,103, | ||
2517 | 0,117,0,109,0, | ||
2518 | 101,0,110,0,116, | ||
2519 | 0,76,0,105,0, | ||
2520 | 115,0,116,0,1, | ||
2521 | 121,1,2,2,0, | ||
2522 | 1,384,453,18,1, | ||
2523 | 384,152,2,0,1, | ||
2524 | 942,454,18,1,942, | ||
2525 | 138,2,0,1,386, | ||
2526 | 455,18,1,386,144, | ||
2527 | 2,0,1,2058,456, | ||
2528 | 18,1,2058,457,20, | ||
2529 | 458,4,34,82,0, | ||
2530 | 69,0,77,0,79, | ||
2531 | 0,84,0,69,0, | ||
2532 | 95,0,68,0,65, | ||
2533 | 0,84,0,65,0, | ||
2534 | 95,0,69,0,86, | ||
2535 | 0,69,0,78,0, | ||
2536 | 84,0,1,82,1, | ||
2537 | 1,2,0,1,2059, | ||
2538 | 459,18,1,2059,460, | ||
2539 | 20,461,4,24,79, | ||
2540 | 0,78,0,95,0, | ||
2541 | 82,0,69,0,90, | ||
2542 | 0,95,0,69,0, | ||
2543 | 86,0,69,0,78, | ||
2544 | 0,84,0,1,81, | ||
2545 | 1,1,2,0,1, | ||
2546 | 2060,462,18,1,2060, | ||
2547 | 463,20,464,4,32, | ||
2548 | 79,0,66,0,74, | ||
2549 | 0,69,0,67,0, | ||
2550 | 84,0,95,0,82, | ||
2551 | 0,69,0,90,0, | ||
2552 | 95,0,69,0,86, | ||
2553 | 0,69,0,78,0, | ||
2554 | 84,0,1,80,1, | ||
2555 | 1,2,0,1,2061, | ||
2556 | 465,18,1,2061,466, | ||
2557 | 20,467,4,38,78, | ||
2558 | 0,79,0,84,0, | ||
2559 | 95,0,65,0,84, | ||
2560 | 0,95,0,84,0, | ||
2561 | 65,0,82,0,71, | ||
2562 | 0,69,0,84,0, | ||
2563 | 95,0,69,0,86, | ||
2564 | 0,69,0,78,0, | ||
2565 | 84,0,1,79,1, | ||
2566 | 1,2,0,1,2062, | ||
2567 | 468,18,1,2062,469, | ||
2568 | 20,470,4,46,78, | ||
2569 | 0,79,0,84,0, | ||
2570 | 95,0,65,0,84, | ||
2571 | 0,95,0,82,0, | ||
2572 | 79,0,84,0,95, | ||
2573 | 0,84,0,65,0, | ||
2574 | 82,0,71,0,69, | ||
2575 | 0,84,0,95,0, | ||
2576 | 69,0,86,0,69, | ||
2577 | 0,78,0,84,0, | ||
2578 | 1,78,1,1,2, | ||
2579 | 0,1,2063,471,18, | ||
2580 | 1,2063,472,20,473, | ||
2581 | 4,30,78,0,79, | ||
2582 | 0,95,0,83,0, | ||
2583 | 69,0,78,0,83, | ||
2584 | 0,79,0,82,0, | ||
2585 | 95,0,69,0,86, | ||
2586 | 0,69,0,78,0, | ||
2587 | 84,0,1,77,1, | ||
2588 | 1,2,0,1,2064, | ||
2589 | 474,18,1,2064,475, | ||
2590 | 20,476,4,36,77, | ||
2591 | 0,79,0,86,0, | ||
2592 | 73,0,78,0,71, | ||
2593 | 0,95,0,83,0, | ||
2594 | 84,0,65,0,82, | ||
2595 | 0,84,0,95,0, | ||
2596 | 69,0,86,0,69, | ||
2597 | 0,78,0,84,0, | ||
2598 | 1,76,1,1,2, | ||
2599 | 0,1,2065,477,18, | ||
2600 | 1,2065,478,20,479, | ||
2601 | 4,32,77,0,79, | ||
2602 | 0,86,0,73,0, | ||
2603 | 78,0,71,0,95, | ||
2604 | 0,69,0,78,0, | ||
2605 | 68,0,95,0,69, | ||
2606 | 0,86,0,69,0, | ||
2607 | 78,0,84,0,1, | ||
2608 | 75,1,1,2,0, | ||
2609 | 1,2066,480,18,1, | ||
2610 | 2066,481,20,482,4, | ||
2611 | 22,77,0,79,0, | ||
2612 | 78,0,69,0,89, | ||
2613 | 0,95,0,69,0, | ||
2614 | 86,0,69,0,78, | ||
2615 | 0,84,0,1,74, | ||
2616 | 1,1,2,0,1, | ||
2617 | 2067,483,18,1,2067, | ||
2618 | 484,20,485,4,24, | ||
2619 | 76,0,73,0,83, | ||
2620 | 0,84,0,69,0, | ||
2621 | 78,0,95,0,69, | ||
2622 | 0,86,0,69,0, | ||
2623 | 78,0,84,0,1, | ||
2624 | 73,1,1,2,0, | ||
2625 | 1,1511,486,18,1, | ||
2626 | 1511,161,2,0,1, | ||
2627 | 2069,487,18,1,2069, | ||
2628 | 488,20,489,4,52, | ||
2629 | 76,0,65,0,78, | ||
2630 | 0,68,0,95,0, | ||
2631 | 67,0,79,0,76, | ||
2632 | 0,76,0,73,0, | ||
2633 | 83,0,73,0,79, | ||
2634 | 0,78,0,95,0, | ||
2635 | 83,0,84,0,65, | ||
2636 | 0,82,0,84,0, | ||
2637 | 95,0,69,0,86, | ||
2638 | 0,69,0,78,0, | ||
2639 | 84,0,1,71,1, | ||
2640 | 1,2,0,1,1513, | ||
2641 | 490,18,1,1513,491, | ||
2642 | 20,492,4,32,70, | ||
2643 | 0,111,0,114,0, | ||
2644 | 76,0,111,0,111, | ||
2645 | 0,112,0,83,0, | ||
2646 | 116,0,97,0,116, | ||
2647 | 0,101,0,109,0, | ||
2648 | 101,0,110,0,116, | ||
2649 | 0,1,119,1,2, | ||
2650 | 2,0,1,1514,493, | ||
2651 | 18,1,1514,152,2, | ||
2652 | 0,1,2072,494,18, | ||
2653 | 1,2072,495,20,496, | ||
2654 | 4,38,72,0,84, | ||
2655 | 0,84,0,80,0, | ||
2656 | 95,0,82,0,69, | ||
2657 | 0,83,0,80,0, | ||
2658 | 79,0,78,0,83, | ||
2659 | 0,69,0,95,0, | ||
2660 | 69,0,86,0,69, | ||
2661 | 0,78,0,84,0, | ||
2662 | 1,68,1,1,2, | ||
2663 | 0,1,2073,497,18, | ||
2664 | 1,2073,498,20,499, | ||
2665 | 4,22,69,0,77, | ||
2666 | 0,65,0,73,0, | ||
2667 | 76,0,95,0,69, | ||
2668 | 0,86,0,69,0, | ||
2669 | 78,0,84,0,1, | ||
2670 | 67,1,1,2,0, | ||
2671 | 1,403,500,18,1, | ||
2672 | 403,138,2,0,1, | ||
2673 | 2075,501,18,1,2075, | ||
2674 | 502,20,503,4,26, | ||
2675 | 67,0,79,0,78, | ||
2676 | 0,84,0,82,0, | ||
2677 | 79,0,76,0,95, | ||
2678 | 0,69,0,86,0, | ||
2679 | 69,0,78,0,84, | ||
2680 | 0,1,65,1,1, | ||
2681 | 2,0,1,2076,504, | ||
2682 | 18,1,2076,505,20, | ||
2683 | 506,4,42,67,0, | ||
2684 | 79,0,76,0,76, | ||
2685 | 0,73,0,83,0, | ||
2686 | 73,0,79,0,78, | ||
2687 | 0,95,0,83,0, | ||
2688 | 84,0,65,0,82, | ||
2689 | 0,84,0,95,0, | ||
2690 | 69,0,86,0,69, | ||
2691 | 0,78,0,84,0, | ||
2692 | 1,64,1,1,2, | ||
2693 | 0,1,2077,507,18, | ||
2694 | 1,2077,508,20,509, | ||
2695 | 4,38,67,0,79, | ||
2696 | 0,76,0,76,0, | ||
2697 | 73,0,83,0,73, | ||
2698 | 0,79,0,78,0, | ||
2699 | 95,0,69,0,78, | ||
2700 | 0,68,0,95,0, | ||
2701 | 69,0,86,0,69, | ||
2702 | 0,78,0,84,0, | ||
2703 | 1,63,1,1,2, | ||
2704 | 0,1,2078,510,18, | ||
2705 | 1,2078,511,20,512, | ||
2706 | 4,30,67,0,79, | ||
2707 | 0,76,0,76,0, | ||
2708 | 73,0,83,0,73, | ||
2709 | 0,79,0,78,0, | ||
2710 | 95,0,69,0,86, | ||
2711 | 0,69,0,78,0, | ||
2712 | 84,0,1,62,1, | ||
2713 | 1,2,0,1,2079, | ||
2714 | 513,18,1,2079,514, | ||
2715 | 20,515,4,26,67, | ||
2716 | 0,72,0,65,0, | ||
2717 | 78,0,71,0,69, | ||
2718 | 0,68,0,95,0, | ||
2719 | 69,0,86,0,69, | ||
2720 | 0,78,0,84,0, | ||
2721 | 1,61,1,1,2, | ||
2722 | 0,1,2080,516,18, | ||
2723 | 1,2080,517,20,518, | ||
2724 | 4,24,65,0,84, | ||
2725 | 0,84,0,65,0, | ||
2726 | 67,0,72,0,95, | ||
2727 | 0,69,0,86,0, | ||
2728 | 69,0,78,0,84, | ||
2729 | 0,1,60,1,1, | ||
2730 | 2,0,1,2081,519, | ||
2731 | 18,1,2081,520,20, | ||
2732 | 521,4,30,65,0, | ||
2733 | 84,0,95,0,84, | ||
2734 | 0,65,0,82,0, | ||
2735 | 71,0,69,0,84, | ||
2736 | 0,95,0,69,0, | ||
2737 | 86,0,69,0,78, | ||
2738 | 0,84,0,1,59, | ||
2739 | 1,1,2,0,1, | ||
2740 | 397,522,18,1,397, | ||
2741 | 304,2,0,1,2083, | ||
2742 | 523,18,1,2083,524, | ||
2743 | 20,525,4,10,69, | ||
2744 | 0,118,0,101,0, | ||
2745 | 110,0,116,0,1, | ||
2746 | 106,1,2,2,0, | ||
2747 | 1,1527,526,18,1, | ||
2748 | 1527,138,2,0,1, | ||
2749 | 422,527,18,1,422, | ||
2750 | 152,2,0,1,2095, | ||
2751 | 528,18,1,2095,155, | ||
2752 | 2,0,1,2097,529, | ||
2753 | 18,1,2097,288,2, | ||
2754 | 0,1,428,530,18, | ||
2755 | 1,428,138,2,0, | ||
2756 | 1,2043,531,18,1, | ||
2757 | 2043,426,2,0,1, | ||
2758 | 2045,532,18,1,2045, | ||
2759 | 288,2,0,1,2046, | ||
2760 | 533,18,1,2046,161, | ||
2761 | 2,0,1,2047,534, | ||
2762 | 18,1,2047,372,2, | ||
2763 | 0,1,1557,535,18, | ||
2764 | 1,1557,352,2,0, | ||
2765 | 1,1001,536,18,1, | ||
2766 | 1001,431,2,0,1, | ||
2767 | 1559,537,18,1,1559, | ||
2768 | 158,2,0,1,2051, | ||
2769 | 538,18,1,2051,539, | ||
2770 | 20,540,4,30,84, | ||
2771 | 0,79,0,85,0, | ||
2772 | 67,0,72,0,95, | ||
2773 | 0,69,0,78,0, | ||
2774 | 68,0,95,0,69, | ||
2775 | 0,86,0,69,0, | ||
2776 | 78,0,84,0,1, | ||
2777 | 90,1,1,2,0, | ||
2778 | 1,447,541,18,1, | ||
2779 | 447,152,2,0,1, | ||
2780 | 2054,542,18,1,2054, | ||
2781 | 543,20,544,4,32, | ||
2782 | 83,0,84,0,65, | ||
2783 | 0,84,0,69,0, | ||
2784 | 95,0,69,0,88, | ||
2785 | 0,73,0,84,0, | ||
2786 | 95,0,69,0,86, | ||
2787 | 0,69,0,78,0, | ||
2788 | 84,0,1,86,1, | ||
2789 | 1,2,0,1,1993, | ||
2790 | 545,18,1,1993,546, | ||
2791 | 20,547,4,26,83, | ||
2792 | 0,116,0,97,0, | ||
2793 | 116,0,101,0,109, | ||
2794 | 0,101,0,110,0, | ||
2795 | 116,0,76,0,105, | ||
2796 | 0,115,0,116,0, | ||
2797 | 1,108,1,2,2, | ||
2798 | 0,1,1565,548,18, | ||
2799 | 1,1565,138,2,0, | ||
2800 | 1,2057,549,18,1, | ||
2801 | 2057,550,20,551,4, | ||
2802 | 52,82,0,85,0, | ||
2803 | 78,0,95,0,84, | ||
2804 | 0,73,0,77,0, | ||
2805 | 69,0,95,0,80, | ||
2806 | 0,69,0,82,0, | ||
2807 | 77,0,73,0,83, | ||
2808 | 0,83,0,73,0, | ||
2809 | 79,0,78,0,83, | ||
2810 | 0,95,0,69,0, | ||
2811 | 86,0,69,0,78, | ||
2812 | 0,84,0,1,83, | ||
2813 | 1,1,2,0,1, | ||
2814 | 1010,552,18,1,1010, | ||
2815 | 138,2,0,1,1011, | ||
2816 | 553,18,1,1011,155, | ||
2817 | 2,0,1,463,554, | ||
2818 | 18,1,463,348,2, | ||
2819 | 0,1,2135,555,18, | ||
2820 | 1,2135,426,2,0, | ||
2821 | 1,2070,556,18,1, | ||
2822 | 2070,557,20,558,4, | ||
2823 | 48,76,0,65,0, | ||
2824 | 78,0,68,0,95, | ||
2825 | 0,67,0,79,0, | ||
2826 | 76,0,76,0,73, | ||
2827 | 0,83,0,73,0, | ||
2828 | 79,0,78,0,95, | ||
2829 | 0,69,0,78,0, | ||
2830 | 68,0,95,0,69, | ||
2831 | 0,86,0,69,0, | ||
2832 | 78,0,84,0,1, | ||
2833 | 70,1,1,2,0, | ||
2834 | 1,2071,559,18,1, | ||
2835 | 2071,560,20,561,4, | ||
2836 | 40,76,0,65,0, | ||
2837 | 78,0,68,0,95, | ||
2838 | 0,67,0,79,0, | ||
2839 | 76,0,76,0,73, | ||
2840 | 0,83,0,73,0, | ||
2841 | 79,0,78,0,95, | ||
2842 | 0,69,0,86,0, | ||
2843 | 69,0,78,0,84, | ||
2844 | 0,1,69,1,1, | ||
2845 | 2,0,1,2138,562, | ||
2846 | 18,1,2138,165,2, | ||
2847 | 0,1,453,563,18, | ||
2848 | 1,453,138,2,0, | ||
2849 | 1,1584,564,18,1, | ||
2850 | 1584,158,2,0,1, | ||
2851 | 476,565,18,1,476, | ||
2852 | 566,20,567,4,30, | ||
2853 | 83,0,84,0,82, | ||
2854 | 0,73,0,78,0, | ||
2855 | 71,0,95,0,67, | ||
2856 | 0,79,0,78,0, | ||
2857 | 83,0,84,0,65, | ||
2858 | 0,78,0,84,0, | ||
2859 | 1,3,1,1,2, | ||
2860 | 0,1,477,568,18, | ||
2861 | 1,477,569,20,570, | ||
2862 | 4,28,70,0,76, | ||
2863 | 0,79,0,65,0, | ||
2864 | 84,0,95,0,67, | ||
2865 | 0,79,0,78,0, | ||
2866 | 83,0,84,0,65, | ||
2867 | 0,78,0,84,0, | ||
2868 | 1,94,1,1,2, | ||
2869 | 0,1,478,571,18, | ||
2870 | 1,478,572,20,573, | ||
2871 | 4,40,72,0,69, | ||
2872 | 0,88,0,95,0, | ||
2873 | 73,0,78,0,84, | ||
2874 | 0,69,0,71,0, | ||
2875 | 69,0,82,0,95, | ||
2876 | 0,67,0,79,0, | ||
2877 | 78,0,83,0,84, | ||
2878 | 0,65,0,78,0, | ||
2879 | 84,0,1,93,1, | ||
2880 | 1,2,0,1,479, | ||
2881 | 574,18,1,479,575, | ||
2882 | 20,576,4,32,73, | ||
2883 | 0,78,0,84,0, | ||
2884 | 69,0,71,0,69, | ||
2885 | 0,82,0,95,0, | ||
2886 | 67,0,79,0,78, | ||
2887 | 0,83,0,84,0, | ||
2888 | 65,0,78,0,84, | ||
2889 | 0,1,92,1,1, | ||
2890 | 2,0,1,2084,577, | ||
2891 | 18,1,2084,135,2, | ||
2892 | 0,1,488,578,18, | ||
2893 | 1,488,152,2,0, | ||
2894 | 1,1046,579,18,1, | ||
2895 | 1046,138,2,0,1, | ||
2896 | 494,580,18,1,494, | ||
2897 | 138,2,0,1,1609, | ||
2898 | 581,18,1,1609,491, | ||
2899 | 2,0,1,1611,582, | ||
2900 | 18,1,1611,155,2, | ||
2901 | 0,1,2173,583,18, | ||
2902 | 1,2173,216,2,0, | ||
2903 | 1,504,584,18,1, | ||
2904 | 504,348,2,0,1, | ||
2905 | 2048,585,18,1,2048, | ||
2906 | 132,2,0,1,2049, | ||
2907 | 586,18,1,2049,165, | ||
2908 | 2,0,1,1002,587, | ||
2909 | 18,1,1002,442,2, | ||
2910 | 0,1,2052,588,18, | ||
2911 | 1,2052,589,20,590, | ||
2912 | 4,22,84,0,79, | ||
2913 | 0,85,0,67,0, | ||
2914 | 72,0,95,0,69, | ||
2915 | 0,86,0,69,0, | ||
2916 | 78,0,84,0,1, | ||
2917 | 88,1,1,2,0, | ||
2918 | 1,2055,591,18,1, | ||
2919 | 2055,592,20,593,4, | ||
2920 | 34,83,0,84,0, | ||
2921 | 65,0,84,0,69, | ||
2922 | 0,95,0,69,0, | ||
2923 | 78,0,84,0,82, | ||
2924 | 0,89,0,95,0, | ||
2925 | 69,0,86,0,69, | ||
2926 | 0,78,0,84,0, | ||
2927 | 1,85,1,1,2, | ||
2928 | 0,1,2056,594,18, | ||
2929 | 1,2056,595,20,596, | ||
2930 | 4,24,83,0,69, | ||
2931 | 0,78,0,83,0, | ||
2932 | 79,0,82,0,95, | ||
2933 | 0,69,0,86,0, | ||
2934 | 69,0,78,0,84, | ||
2935 | 0,1,84,1,1, | ||
2936 | 2,0,1,1637,597, | ||
2937 | 18,1,1637,291,2, | ||
2938 | 0,1,1639,598,18, | ||
2939 | 1,1639,599,20,600, | ||
2940 | 4,4,68,0,79, | ||
2941 | 0,1,44,1,1, | ||
2942 | 2,0,1,2068,601, | ||
2943 | 18,1,2068,602,20, | ||
2944 | 603,4,36,76,0, | ||
2945 | 73,0,78,0,75, | ||
2946 | 0,95,0,77,0, | ||
2947 | 69,0,83,0,83, | ||
2948 | 0,65,0,71,0, | ||
2949 | 69,0,95,0,69, | ||
2950 | 0,86,0,69,0, | ||
2951 | 78,0,84,0,1, | ||
2952 | 72,1,1,2,0, | ||
2953 | 1,2134,604,18,1, | ||
2954 | 2134,605,20,606,4, | ||
2955 | 20,83,0,116,0, | ||
2956 | 97,0,116,0,101, | ||
2957 | 0,69,0,118,0, | ||
2958 | 101,0,110,0,116, | ||
2959 | 0,1,102,1,2, | ||
2960 | 2,0,1,2136,607, | ||
2961 | 18,1,2136,605,2, | ||
2962 | 0,1,2137,608,18, | ||
2963 | 1,2137,313,2,0, | ||
2964 | 1,1092,609,18,1, | ||
2965 | 1092,451,2,0,1, | ||
2966 | 1094,610,18,1,1094, | ||
2967 | 155,2,0,1,2209, | ||
2968 | 611,18,1,2209,426, | ||
2969 | 2,0,1,2211,612, | ||
2970 | 18,1,2211,198,2, | ||
2971 | 0,1,2214,613,18, | ||
2972 | 1,2214,614,20,615, | ||
2973 | 4,10,83,0,116, | ||
2974 | 0,97,0,116,0, | ||
2975 | 101,0,1,100,1, | ||
2976 | 2,2,0,1,2215, | ||
2977 | 616,18,1,2215,614, | ||
2978 | 2,0,1,2082,617, | ||
2979 | 18,1,2082,618,20, | ||
2980 | 619,4,38,65,0, | ||
2981 | 84,0,95,0,82, | ||
2982 | 0,79,0,84,0, | ||
2983 | 95,0,84,0,65, | ||
2984 | 0,82,0,71,0, | ||
2985 | 69,0,84,0,95, | ||
2986 | 0,69,0,86,0, | ||
2987 | 69,0,78,0,84, | ||
2988 | 0,1,58,1,1, | ||
2989 | 2,0,1,2217,620, | ||
2990 | 18,1,2217,135,2, | ||
2991 | 0,1,1666,621,18, | ||
2992 | 1,1666,291,2,0, | ||
2993 | 1,1667,622,18,1, | ||
2994 | 1667,168,2,0,1, | ||
2995 | 1111,623,18,1,1111, | ||
2996 | 185,2,0,1,1112, | ||
2997 | 624,18,1,1112,132, | ||
2998 | 2,0,1,2093,625, | ||
2999 | 18,1,2093,149,2, | ||
3000 | 0,626,5,0,627, | ||
3001 | 5,295,1,2,628, | ||
3002 | 19,281,1,2,629, | ||
3003 | 5,6,1,2211,630, | ||
3004 | 17,631,15,632,4, | ||
3005 | 30,37,0,76,0, | ||
3006 | 83,0,76,0,80, | ||
3007 | 0,114,0,111,0, | ||
3008 | 103,0,114,0,97, | ||
3009 | 0,109,0,82,0, | ||
3010 | 111,0,111,0,116, | ||
3011 | 0,1,-1,1,5, | ||
3012 | 633,20,634,4,32, | ||
3013 | 76,0,83,0,76, | ||
3014 | 0,80,0,114,0, | ||
3015 | 111,0,103,0,114, | ||
3016 | 0,97,0,109,0, | ||
3017 | 82,0,111,0,111, | ||
3018 | 0,116,0,95,0, | ||
3019 | 50,0,1,140,1, | ||
3020 | 3,1,2,1,1, | ||
3021 | 635,22,1,2,1, | ||
3022 | 2135,636,17,637,15, | ||
3023 | 638,4,12,37,0, | ||
3024 | 83,0,116,0,97, | ||
3025 | 0,116,0,101,0, | ||
3026 | 1,-1,1,5,639, | ||
3027 | 20,640,4,14,83, | ||
3028 | 0,116,0,97,0, | ||
3029 | 116,0,101,0,95, | ||
3030 | 0,50,0,1,152, | ||
3031 | 1,3,1,6,1, | ||
3032 | 5,641,22,1,14, | ||
3033 | 1,2214,642,17,643, | ||
3034 | 15,644,4,14,37, | ||
3035 | 0,83,0,116,0, | ||
3036 | 97,0,116,0,101, | ||
3037 | 0,115,0,1,-1, | ||
3038 | 1,5,645,20,646, | ||
3039 | 4,16,83,0,116, | ||
3040 | 0,97,0,116,0, | ||
3041 | 101,0,115,0,95, | ||
3042 | 0,50,0,1,150, | ||
3043 | 1,3,1,3,1, | ||
3044 | 2,647,22,1,12, | ||
3045 | 1,2281,648,17,649, | ||
3046 | 15,632,1,-1,1, | ||
3047 | 5,650,20,651,4, | ||
3048 | 32,76,0,83,0, | ||
3049 | 76,0,80,0,114, | ||
3050 | 0,111,0,103,0, | ||
3051 | 114,0,97,0,109, | ||
3052 | 0,82,0,111,0, | ||
3053 | 111,0,116,0,95, | ||
3054 | 0,49,0,1,139, | ||
3055 | 1,3,1,3,1, | ||
3056 | 2,652,22,1,1, | ||
3057 | 1,2215,653,17,654, | ||
3058 | 15,644,1,-1,1, | ||
3059 | 5,655,20,656,4, | ||
3060 | 16,83,0,116,0, | ||
3061 | 97,0,116,0,101, | ||
3062 | 0,115,0,95,0, | ||
3063 | 49,0,1,149,1, | ||
3064 | 3,1,2,1,1, | ||
3065 | 657,22,1,11,1, | ||
3066 | 2209,658,17,659,15, | ||
3067 | 638,1,-1,1,5, | ||
3068 | 660,20,661,4,14, | ||
3069 | 83,0,116,0,97, | ||
3070 | 0,116,0,101,0, | ||
3071 | 95,0,49,0,1, | ||
3072 | 151,1,3,1,5, | ||
3073 | 1,4,662,22,1, | ||
3074 | 13,1,3,663,19, | ||
3075 | 567,1,3,664,5, | ||
3076 | 79,1,1584,665,16, | ||
3077 | 0,565,1,1639,666, | ||
3078 | 16,0,565,1,1637, | ||
3079 | 667,17,668,15,669, | ||
3080 | 4,16,37,0,70, | ||
3081 | 0,111,0,114,0, | ||
3082 | 76,0,111,0,111, | ||
3083 | 0,112,0,1,-1, | ||
3084 | 1,5,670,20,671, | ||
3085 | 4,18,70,0,111, | ||
3086 | 0,114,0,76,0, | ||
3087 | 111,0,111,0,112, | ||
3088 | 0,95,0,49,0, | ||
3089 | 1,183,1,3,1, | ||
3090 | 10,1,9,672,22, | ||
3091 | 1,47,1,112,673, | ||
3092 | 16,0,565,1,1857, | ||
3093 | 674,17,675,15,676, | ||
3094 | 4,20,37,0,83, | ||
3095 | 0,116,0,97,0, | ||
3096 | 116,0,101,0,109, | ||
3097 | 0,101,0,110,0, | ||
3098 | 116,0,1,-1,1, | ||
3099 | 5,677,20,678,4, | ||
3100 | 24,83,0,116,0, | ||
3101 | 97,0,116,0,101, | ||
3102 | 0,109,0,101,0, | ||
3103 | 110,0,116,0,95, | ||
3104 | 0,49,0,49,0, | ||
3105 | 1,173,1,3,1, | ||
3106 | 2,1,1,679,22, | ||
3107 | 1,37,1,1858,680, | ||
3108 | 17,681,15,676,1, | ||
3109 | -1,1,5,682,20, | ||
3110 | 683,4,24,83,0, | ||
3111 | 116,0,97,0,116, | ||
3112 | 0,101,0,109,0, | ||
3113 | 101,0,110,0,116, | ||
3114 | 0,95,0,49,0, | ||
3115 | 48,0,1,172,1, | ||
3116 | 3,1,2,1,1, | ||
3117 | 684,22,1,36,1, | ||
3118 | 1859,685,17,686,15, | ||
3119 | 676,1,-1,1,5, | ||
3120 | 687,20,688,4,22, | ||
3121 | 83,0,116,0,97, | ||
3122 | 0,116,0,101,0, | ||
3123 | 109,0,101,0,110, | ||
3124 | 0,116,0,95,0, | ||
3125 | 57,0,1,171,1, | ||
3126 | 3,1,2,1,1, | ||
3127 | 689,22,1,35,1, | ||
3128 | 1860,690,17,691,15, | ||
3129 | 676,1,-1,1,5, | ||
3130 | 692,20,693,4,22, | ||
3131 | 83,0,116,0,97, | ||
3132 | 0,116,0,101,0, | ||
3133 | 109,0,101,0,110, | ||
3134 | 0,116,0,95,0, | ||
3135 | 56,0,1,170,1, | ||
3136 | 3,1,2,1,1, | ||
3137 | 694,22,1,34,1, | ||
3138 | 1611,695,16,0,565, | ||
3139 | 1,1862,696,17,697, | ||
3140 | 15,676,1,-1,1, | ||
3141 | 5,698,20,699,4, | ||
3142 | 22,83,0,116,0, | ||
3143 | 97,0,116,0,101, | ||
3144 | 0,109,0,101,0, | ||
3145 | 110,0,116,0,95, | ||
3146 | 0,55,0,1,169, | ||
3147 | 1,3,1,3,1, | ||
3148 | 2,700,22,1,33, | ||
3149 | 1,1864,701,17,702, | ||
3150 | 15,676,1,-1,1, | ||
3151 | 5,703,20,704,4, | ||
3152 | 22,83,0,116,0, | ||
3153 | 97,0,116,0,101, | ||
3154 | 0,109,0,101,0, | ||
3155 | 110,0,116,0,95, | ||
3156 | 0,54,0,1,168, | ||
3157 | 1,3,1,3,1, | ||
3158 | 2,705,22,1,32, | ||
3159 | 1,1866,706,17,707, | ||
3160 | 15,676,1,-1,1, | ||
3161 | 5,708,20,709,4, | ||
3162 | 22,83,0,116,0, | ||
3163 | 97,0,116,0,101, | ||
3164 | 0,109,0,101,0, | ||
3165 | 110,0,116,0,95, | ||
3166 | 0,53,0,1,167, | ||
3167 | 1,3,1,3,1, | ||
3168 | 2,710,22,1,31, | ||
3169 | 1,2043,711,17,712, | ||
3170 | 15,713,4,36,37, | ||
3171 | 0,67,0,111,0, | ||
3172 | 109,0,112,0,111, | ||
3173 | 0,117,0,110,0, | ||
3174 | 100,0,83,0,116, | ||
3175 | 0,97,0,116,0, | ||
3176 | 101,0,109,0,101, | ||
3177 | 0,110,0,116,0, | ||
3178 | 1,-1,1,5,714, | ||
3179 | 20,715,4,38,67, | ||
3180 | 0,111,0,109,0, | ||
3181 | 112,0,111,0,117, | ||
3182 | 0,110,0,100,0, | ||
3183 | 83,0,116,0,97, | ||
3184 | 0,116,0,101,0, | ||
3185 | 109,0,101,0,110, | ||
3186 | 0,116,0,95,0, | ||
3187 | 49,0,1,159,1, | ||
3188 | 3,1,3,1,2, | ||
3189 | 716,22,1,22,1, | ||
3190 | 124,717,16,0,565, | ||
3191 | 1,1760,718,17,719, | ||
3192 | 15,720,4,30,37, | ||
3193 | 0,87,0,104,0, | ||
3194 | 105,0,108,0,101, | ||
3195 | 0,83,0,116,0, | ||
3196 | 97,0,116,0,101, | ||
3197 | 0,109,0,101,0, | ||
3198 | 110,0,116,0,1, | ||
3199 | -1,1,5,721,20, | ||
3200 | 722,4,32,87,0, | ||
3201 | 104,0,105,0,108, | ||
3202 | 0,101,0,83,0, | ||
3203 | 116,0,97,0,116, | ||
3204 | 0,101,0,109,0, | ||
3205 | 101,0,110,0,116, | ||
3206 | 0,95,0,49,0, | ||
3207 | 1,181,1,3,1, | ||
3208 | 6,1,5,723,22, | ||
3209 | 1,45,1,1870,724, | ||
3210 | 17,725,15,676,1, | ||
3211 | -1,1,5,726,20, | ||
3212 | 727,4,22,83,0, | ||
3213 | 116,0,97,0,116, | ||
3214 | 0,101,0,109,0, | ||
3215 | 101,0,110,0,116, | ||
3216 | 0,95,0,50,0, | ||
3217 | 1,164,1,3,1, | ||
3218 | 3,1,2,728,22, | ||
3219 | 1,28,1,1871,729, | ||
3220 | 17,730,15,676,1, | ||
3221 | -1,1,5,291,1, | ||
3222 | 1,1,1,731,22, | ||
3223 | 1,26,1,1763,732, | ||
3224 | 16,0,565,1,1222, | ||
3225 | 733,16,0,565,1, | ||
3226 | 1993,734,16,0,565, | ||
3227 | 1,1115,735,16,0, | ||
3228 | 565,1,447,736,16, | ||
3229 | 0,565,1,1187,737, | ||
3230 | 16,0,565,1,137, | ||
3231 | 738,16,0,565,1, | ||
3232 | 2038,739,17,740,15, | ||
3233 | 713,1,-1,1,5, | ||
3234 | 741,20,742,4,38, | ||
3235 | 67,0,111,0,109, | ||
3236 | 0,112,0,111,0, | ||
3237 | 117,0,110,0,100, | ||
3238 | 0,83,0,116,0, | ||
3239 | 97,0,116,0,101, | ||
3240 | 0,109,0,101,0, | ||
3241 | 110,0,116,0,95, | ||
3242 | 0,50,0,1,160, | ||
3243 | 1,3,1,4,1, | ||
3244 | 3,743,22,1,23, | ||
3245 | 1,346,744,16,0, | ||
3246 | 565,1,32,745,16, | ||
3247 | 0,565,1,1668,746, | ||
3248 | 16,0,565,1,2041, | ||
3249 | 747,17,748,15,749, | ||
3250 | 4,28,37,0,83, | ||
3251 | 0,116,0,97,0, | ||
3252 | 116,0,101,0,109, | ||
3253 | 0,101,0,110,0, | ||
3254 | 116,0,76,0,105, | ||
3255 | 0,115,0,116,0, | ||
3256 | 1,-1,1,5,750, | ||
3257 | 20,751,4,30,83, | ||
3258 | 0,116,0,97,0, | ||
3259 | 116,0,101,0,109, | ||
3260 | 0,101,0,110,0, | ||
3261 | 116,0,76,0,105, | ||
3262 | 0,115,0,116,0, | ||
3263 | 95,0,49,0,1, | ||
3264 | 161,1,3,1,2, | ||
3265 | 1,1,752,22,1, | ||
3266 | 24,1,236,753,16, | ||
3267 | 0,565,1,1514,754, | ||
3268 | 16,0,565,1,256, | ||
3269 | 755,16,0,565,1, | ||
3270 | 41,756,16,0,565, | ||
3271 | 1,151,757,16,0, | ||
3272 | 565,1,43,758,16, | ||
3273 | 0,565,1,1732,759, | ||
3274 | 16,0,565,1,384, | ||
3275 | 760,16,0,565,1, | ||
3276 | 1467,761,17,762,15, | ||
3277 | 676,1,-1,1,5, | ||
3278 | 763,20,764,4,22, | ||
3279 | 83,0,116,0,97, | ||
3280 | 0,116,0,101,0, | ||
3281 | 109,0,101,0,110, | ||
3282 | 0,116,0,95,0, | ||
3283 | 49,0,1,163,1, | ||
3284 | 3,1,3,1,2, | ||
3285 | 765,22,1,27,1, | ||
3286 | 52,766,16,0,565, | ||
3287 | 1,2233,767,16,0, | ||
3288 | 565,1,381,768,16, | ||
3289 | 0,565,1,166,769, | ||
3290 | 16,0,565,1,1257, | ||
3291 | 770,16,0,565,1, | ||
3292 | 1694,771,17,772,15, | ||
3293 | 773,4,34,37,0, | ||
3294 | 68,0,111,0,87, | ||
3295 | 0,104,0,105,0, | ||
3296 | 108,0,101,0,83, | ||
3297 | 0,116,0,97,0, | ||
3298 | 116,0,101,0,109, | ||
3299 | 0,101,0,110,0, | ||
3300 | 116,0,1,-1,1, | ||
3301 | 5,774,20,775,4, | ||
3302 | 36,68,0,111,0, | ||
3303 | 87,0,104,0,105, | ||
3304 | 0,108,0,101,0, | ||
3305 | 83,0,116,0,97, | ||
3306 | 0,116,0,101,0, | ||
3307 | 109,0,101,0,110, | ||
3308 | 0,116,0,95,0, | ||
3309 | 49,0,1,182,1, | ||
3310 | 3,1,8,1,7, | ||
3311 | 776,22,1,46,1, | ||
3312 | 1432,777,16,0,565, | ||
3313 | 1,1152,778,16,0, | ||
3314 | 565,1,1856,779,17, | ||
3315 | 780,15,676,1,-1, | ||
3316 | 1,5,781,20,782, | ||
3317 | 4,24,83,0,116, | ||
3318 | 0,97,0,116,0, | ||
3319 | 101,0,109,0,101, | ||
3320 | 0,110,0,116,0, | ||
3321 | 95,0,49,0,50, | ||
3322 | 0,1,174,1,3, | ||
3323 | 1,2,1,1,783, | ||
3324 | 22,1,38,1,62, | ||
3325 | 784,16,0,565,1, | ||
3326 | 504,785,16,0,565, | ||
3327 | 1,277,786,16,0, | ||
3328 | 565,1,397,787,16, | ||
3329 | 0,565,1,71,788, | ||
3330 | 16,0,565,1,1707, | ||
3331 | 789,16,0,565,1, | ||
3332 | 1817,790,17,791,15, | ||
3333 | 792,4,24,37,0, | ||
3334 | 73,0,102,0,83, | ||
3335 | 0,116,0,97,0, | ||
3336 | 116,0,101,0,109, | ||
3337 | 0,101,0,110,0, | ||
3338 | 116,0,1,-1,1, | ||
3339 | 5,793,20,794,4, | ||
3340 | 26,73,0,102,0, | ||
3341 | 83,0,116,0,97, | ||
3342 | 0,116,0,101,0, | ||
3343 | 109,0,101,0,110, | ||
3344 | 0,116,0,95,0, | ||
3345 | 49,0,1,179,1, | ||
3346 | 3,1,6,1,5, | ||
3347 | 795,22,1,43,1, | ||
3348 | 1818,796,16,0,565, | ||
3349 | 1,1868,797,17,798, | ||
3350 | 15,676,1,-1,1, | ||
3351 | 5,799,20,800,4, | ||
3352 | 22,83,0,116,0, | ||
3353 | 97,0,116,0,101, | ||
3354 | 0,109,0,101,0, | ||
3355 | 110,0,116,0,95, | ||
3356 | 0,52,0,1,166, | ||
3357 | 1,3,1,3,1, | ||
3358 | 2,801,22,1,30, | ||
3359 | 1,76,802,16,0, | ||
3360 | 565,1,1385,803,17, | ||
3361 | 804,15,676,1,-1, | ||
3362 | 1,5,805,20,806, | ||
3363 | 4,22,83,0,116, | ||
3364 | 0,97,0,116,0, | ||
3365 | 101,0,109,0,101, | ||
3366 | 0,110,0,116,0, | ||
3367 | 95,0,51,0,1, | ||
3368 | 165,1,3,1,3, | ||
3369 | 1,2,807,22,1, | ||
3370 | 29,1,79,808,16, | ||
3371 | 0,565,1,182,809, | ||
3372 | 16,0,565,1,299, | ||
3373 | 810,16,0,565,1, | ||
3374 | 1559,811,16,0,565, | ||
3375 | 1,85,812,16,0, | ||
3376 | 565,1,488,813,16, | ||
3377 | 0,565,1,1396,814, | ||
3378 | 16,0,565,1,89, | ||
3379 | 815,16,0,565,1, | ||
3380 | 199,816,16,0,565, | ||
3381 | 1,463,817,16,0, | ||
3382 | 565,1,1292,818,16, | ||
3383 | 0,565,1,422,819, | ||
3384 | 16,0,565,1,2037, | ||
3385 | 820,17,821,15,749, | ||
3386 | 1,-1,1,5,822, | ||
3387 | 20,823,4,30,83, | ||
3388 | 0,116,0,97,0, | ||
3389 | 116,0,101,0,109, | ||
3390 | 0,101,0,110,0, | ||
3391 | 116,0,76,0,105, | ||
3392 | 0,115,0,116,0, | ||
3393 | 95,0,50,0,1, | ||
3394 | 162,1,3,1,3, | ||
3395 | 1,2,824,22,1, | ||
3396 | 25,1,97,825,16, | ||
3397 | 0,565,1,1469,826, | ||
3398 | 16,0,565,1,1788, | ||
3399 | 827,16,0,565,1, | ||
3400 | 102,828,16,0,565, | ||
3401 | 1,1847,829,17,830, | ||
3402 | 15,792,1,-1,1, | ||
3403 | 5,831,20,832,4, | ||
3404 | 26,73,0,102,0, | ||
3405 | 83,0,116,0,97, | ||
3406 | 0,116,0,101,0, | ||
3407 | 109,0,101,0,110, | ||
3408 | 0,116,0,95,0, | ||
3409 | 50,0,1,180,1, | ||
3410 | 3,1,8,1,7, | ||
3411 | 833,22,1,44,1, | ||
3412 | 322,834,16,0,565, | ||
3413 | 1,1327,835,16,0, | ||
3414 | 565,1,217,836,16, | ||
3415 | 0,565,1,4,837, | ||
3416 | 19,193,1,4,838, | ||
3417 | 5,84,1,1257,839, | ||
3418 | 16,0,437,1,1760, | ||
3419 | 718,1,256,840,16, | ||
3420 | 0,437,1,1763,841, | ||
3421 | 16,0,437,1,1514, | ||
3422 | 842,16,0,437,1, | ||
3423 | 504,843,16,0,437, | ||
3424 | 1,277,844,16,0, | ||
3425 | 437,1,2037,820,1, | ||
3426 | 2038,739,1,1788,845, | ||
3427 | 16,0,437,1,32, | ||
3428 | 846,16,0,437,1, | ||
3429 | 2041,747,1,2043,711, | ||
3430 | 1,1292,847,16,0, | ||
3431 | 437,1,40,848,16, | ||
3432 | 0,195,1,41,849, | ||
3433 | 16,0,437,1,43, | ||
3434 | 850,16,0,437,1, | ||
3435 | 44,851,16,0,195, | ||
3436 | 1,47,852,16,0, | ||
3437 | 191,1,299,853,16, | ||
3438 | 0,437,1,52,854, | ||
3439 | 16,0,437,1,1559, | ||
3440 | 855,16,0,437,1, | ||
3441 | 1817,790,1,1818,856, | ||
3442 | 16,0,437,1,63, | ||
3443 | 857,16,0,213,1, | ||
3444 | 66,858,16,0,211, | ||
3445 | 1,71,859,16,0, | ||
3446 | 437,1,1327,860,16, | ||
3447 | 0,437,1,76,861, | ||
3448 | 16,0,437,1,1584, | ||
3449 | 862,16,0,437,1, | ||
3450 | 79,863,16,0,437, | ||
3451 | 1,322,864,16,0, | ||
3452 | 437,1,85,865,16, | ||
3453 | 0,437,1,89,866, | ||
3454 | 16,0,437,1,1847, | ||
3455 | 829,1,346,867,16, | ||
3456 | 0,437,1,97,868, | ||
3457 | 16,0,437,1,1856, | ||
3458 | 779,1,1857,674,1, | ||
3459 | 1858,680,1,1859,685, | ||
3460 | 1,1860,690,1,1862, | ||
3461 | 696,1,1864,701,1, | ||
3462 | 1112,869,16,0,191, | ||
3463 | 1,1866,706,1,1115, | ||
3464 | 870,16,0,437,1, | ||
3465 | 112,871,16,0,437, | ||
3466 | 1,1870,724,1,1871, | ||
3467 | 729,1,102,872,16, | ||
3468 | 0,437,1,124,873, | ||
3469 | 16,0,437,1,381, | ||
3470 | 874,16,0,437,1, | ||
3471 | 1637,667,1,384,875, | ||
3472 | 16,0,437,1,137, | ||
3473 | 876,16,0,437,1, | ||
3474 | 1396,877,16,0,437, | ||
3475 | 1,397,878,16,0, | ||
3476 | 437,1,1152,879,16, | ||
3477 | 0,437,1,151,880, | ||
3478 | 16,0,437,1,1611, | ||
3479 | 881,16,0,437,1, | ||
3480 | 1668,882,16,0,437, | ||
3481 | 1,166,883,16,0, | ||
3482 | 437,1,1868,797,1, | ||
3483 | 1385,803,1,1432,884, | ||
3484 | 16,0,437,1,182, | ||
3485 | 885,16,0,437,1, | ||
3486 | 1187,886,16,0,437, | ||
3487 | 1,422,887,16,0, | ||
3488 | 437,1,1694,771,1, | ||
3489 | 447,888,16,0,437, | ||
3490 | 1,199,889,16,0, | ||
3491 | 437,1,1707,890,16, | ||
3492 | 0,437,1,1467,761, | ||
3493 | 1,1469,891,16,0, | ||
3494 | 437,1,217,892,16, | ||
3495 | 0,437,1,1222,893, | ||
3496 | 16,0,437,1,2233, | ||
3497 | 894,16,0,437,1, | ||
3498 | 1732,895,16,0,437, | ||
3499 | 1,463,896,16,0, | ||
3500 | 437,1,1993,897,16, | ||
3501 | 0,437,1,488,898, | ||
3502 | 16,0,437,1,1639, | ||
3503 | 899,16,0,437,1, | ||
3504 | 236,900,16,0,437, | ||
3505 | 1,5,901,19,190, | ||
3506 | 1,5,902,5,84, | ||
3507 | 1,1257,903,16,0, | ||
3508 | 433,1,1760,718,1, | ||
3509 | 256,904,16,0,433, | ||
3510 | 1,1763,905,16,0, | ||
3511 | 433,1,1514,906,16, | ||
3512 | 0,433,1,504,907, | ||
3513 | 16,0,433,1,277, | ||
3514 | 908,16,0,433,1, | ||
3515 | 2037,820,1,2038,739, | ||
3516 | 1,1788,909,16,0, | ||
3517 | 433,1,32,910,16, | ||
3518 | 0,433,1,2041,747, | ||
3519 | 1,2043,711,1,1292, | ||
3520 | 911,16,0,433,1, | ||
3521 | 40,912,16,0,194, | ||
3522 | 1,41,913,16,0, | ||
3523 | 433,1,43,914,16, | ||
3524 | 0,433,1,44,915, | ||
3525 | 16,0,194,1,47, | ||
3526 | 916,16,0,188,1, | ||
3527 | 299,917,16,0,433, | ||
3528 | 1,52,918,16,0, | ||
3529 | 433,1,1559,919,16, | ||
3530 | 0,433,1,1817,790, | ||
3531 | 1,1818,920,16,0, | ||
3532 | 433,1,63,921,16, | ||
3533 | 0,212,1,66,922, | ||
3534 | 16,0,210,1,71, | ||
3535 | 923,16,0,433,1, | ||
3536 | 1327,924,16,0,433, | ||
3537 | 1,76,925,16,0, | ||
3538 | 433,1,1584,926,16, | ||
3539 | 0,433,1,79,927, | ||
3540 | 16,0,433,1,322, | ||
3541 | 928,16,0,433,1, | ||
3542 | 85,929,16,0,433, | ||
3543 | 1,89,930,16,0, | ||
3544 | 433,1,1847,829,1, | ||
3545 | 346,931,16,0,433, | ||
3546 | 1,97,932,16,0, | ||
3547 | 433,1,1856,779,1, | ||
3548 | 1857,674,1,1858,680, | ||
3549 | 1,1859,685,1,1860, | ||
3550 | 690,1,1862,696,1, | ||
3551 | 1864,701,1,1112,933, | ||
3552 | 16,0,188,1,1866, | ||
3553 | 706,1,1115,934,16, | ||
3554 | 0,433,1,112,935, | ||
3555 | 16,0,433,1,1870, | ||
3556 | 724,1,1871,729,1, | ||
3557 | 102,936,16,0,433, | ||
3558 | 1,124,937,16,0, | ||
3559 | 433,1,381,938,16, | ||
3560 | 0,433,1,1637,667, | ||
3561 | 1,384,939,16,0, | ||
3562 | 433,1,137,940,16, | ||
3563 | 0,433,1,1396,941, | ||
3564 | 16,0,433,1,397, | ||
3565 | 942,16,0,433,1, | ||
3566 | 1152,943,16,0,433, | ||
3567 | 1,151,944,16,0, | ||
3568 | 433,1,1611,945,16, | ||
3569 | 0,433,1,1668,946, | ||
3570 | 16,0,433,1,166, | ||
3571 | 947,16,0,433,1, | ||
3572 | 1868,797,1,1385,803, | ||
3573 | 1,1432,948,16,0, | ||
3574 | 433,1,182,949,16, | ||
3575 | 0,433,1,1187,950, | ||
3576 | 16,0,433,1,422, | ||
3577 | 951,16,0,433,1, | ||
3578 | 1694,771,1,447,952, | ||
3579 | 16,0,433,1,199, | ||
3580 | 953,16,0,433,1, | ||
3581 | 1707,954,16,0,433, | ||
3582 | 1,1467,761,1,1469, | ||
3583 | 955,16,0,433,1, | ||
3584 | 217,956,16,0,433, | ||
3585 | 1,1222,957,16,0, | ||
3586 | 433,1,2233,958,16, | ||
3587 | 0,433,1,1732,959, | ||
3588 | 16,0,433,1,463, | ||
3589 | 960,16,0,433,1, | ||
3590 | 1993,961,16,0,433, | ||
3591 | 1,488,962,16,0, | ||
3592 | 433,1,1639,963,16, | ||
3593 | 0,433,1,236,964, | ||
3594 | 16,0,433,1,6, | ||
3595 | 965,19,311,1,6, | ||
3596 | 966,5,1,1,40, | ||
3597 | 967,16,0,309,1, | ||
3598 | 7,968,19,286,1, | ||
3599 | 7,969,5,1,1, | ||
3600 | 40,970,16,0,284, | ||
3601 | 1,8,971,19,255, | ||
3602 | 1,8,972,5,1, | ||
3603 | 1,40,973,16,0, | ||
3604 | 253,1,9,974,19, | ||
3605 | 337,1,9,975,5, | ||
3606 | 1,1,40,976,16, | ||
3607 | 0,335,1,10,977, | ||
3608 | 19,176,1,10,978, | ||
3609 | 5,1,1,40,979, | ||
3610 | 16,0,174,1,11, | ||
3611 | 980,19,159,1,11, | ||
3612 | 981,5,114,1,504, | ||
3613 | 982,17,983,15,984, | ||
3614 | 4,34,37,0,82, | ||
3615 | 0,111,0,116,0, | ||
3616 | 97,0,116,0,105, | ||
3617 | 0,111,0,110,0, | ||
3618 | 67,0,111,0,110, | ||
3619 | 0,115,0,116,0, | ||
3620 | 97,0,110,0,116, | ||
3621 | 0,1,-1,1,5, | ||
3622 | 985,20,986,4,36, | ||
3623 | 82,0,111,0,116, | ||
3624 | 0,97,0,116,0, | ||
3625 | 105,0,111,0,110, | ||
3626 | 0,67,0,111,0, | ||
3627 | 110,0,115,0,116, | ||
3628 | 0,97,0,110,0, | ||
3629 | 116,0,95,0,49, | ||
3630 | 0,1,203,1,3, | ||
3631 | 1,10,1,9,987, | ||
3632 | 22,1,67,1,1760, | ||
3633 | 718,1,1513,988,16, | ||
3634 | 0,537,1,1263,989, | ||
3635 | 17,990,15,991,4, | ||
3636 | 22,37,0,65,0, | ||
3637 | 115,0,115,0,105, | ||
3638 | 0,103,0,110,0, | ||
3639 | 109,0,101,0,110, | ||
3640 | 0,116,0,1,-1, | ||
3641 | 1,5,992,20,993, | ||
3642 | 4,24,65,0,115, | ||
3643 | 0,115,0,105,0, | ||
3644 | 103,0,110,0,109, | ||
3645 | 0,101,0,110,0, | ||
3646 | 116,0,95,0,52, | ||
3647 | 0,1,191,1,3, | ||
3648 | 1,4,1,3,994, | ||
3649 | 22,1,55,1,9, | ||
3650 | 995,17,996,15,997, | ||
3651 | 4,24,37,0,68, | ||
3652 | 0,101,0,99,0, | ||
3653 | 108,0,97,0,114, | ||
3654 | 0,97,0,116,0, | ||
3655 | 105,0,111,0,110, | ||
3656 | 0,1,-1,1,5, | ||
3657 | 998,20,999,4,26, | ||
3658 | 68,0,101,0,99, | ||
3659 | 0,108,0,97,0, | ||
3660 | 114,0,97,0,116, | ||
3661 | 0,105,0,111,0, | ||
3662 | 110,0,95,0,49, | ||
3663 | 0,1,158,1,3, | ||
3664 | 1,3,1,2,1000, | ||
3665 | 22,1,21,1,262, | ||
3666 | 1001,17,1002,15,1003, | ||
3667 | 4,34,37,0,66, | ||
3668 | 0,105,0,110,0, | ||
3669 | 97,0,114,0,121, | ||
3670 | 0,69,0,120,0, | ||
3671 | 112,0,114,0,101, | ||
3672 | 0,115,0,115,0, | ||
3673 | 105,0,111,0,110, | ||
3674 | 0,1,-1,1,5, | ||
3675 | 1004,20,1005,4,36, | ||
3676 | 66,0,105,0,110, | ||
3677 | 0,97,0,114,0, | ||
3678 | 121,0,69,0,120, | ||
3679 | 0,112,0,114,0, | ||
3680 | 101,0,115,0,115, | ||
3681 | 0,105,0,111,0, | ||
3682 | 110,0,95,0,53, | ||
3683 | 0,1,221,1,3, | ||
3684 | 1,4,1,3,1006, | ||
3685 | 22,1,85,1,19, | ||
3686 | 1007,17,996,1,2, | ||
3687 | 1000,1,1527,1008,17, | ||
3688 | 1009,15,1010,4,34, | ||
3689 | 37,0,70,0,111, | ||
3690 | 0,114,0,76,0, | ||
3691 | 111,0,111,0,112, | ||
3692 | 0,83,0,116,0, | ||
3693 | 97,0,116,0,101, | ||
3694 | 0,109,0,101,0, | ||
3695 | 110,0,116,0,1, | ||
3696 | -1,1,5,1011,20, | ||
3697 | 1012,4,36,70,0, | ||
3698 | 111,0,114,0,76, | ||
3699 | 0,111,0,111,0, | ||
3700 | 112,0,83,0,116, | ||
3701 | 0,97,0,116,0, | ||
3702 | 101,0,109,0,101, | ||
3703 | 0,110,0,116,0, | ||
3704 | 95,0,51,0,1, | ||
3705 | 186,1,3,1,4, | ||
3706 | 1,3,1013,22,1, | ||
3707 | 50,1,477,1014,17, | ||
3708 | 1015,15,1016,4,18, | ||
3709 | 37,0,67,0,111, | ||
3710 | 0,110,0,115,0, | ||
3711 | 116,0,97,0,110, | ||
3712 | 0,116,0,1,-1, | ||
3713 | 1,5,1017,20,1018, | ||
3714 | 4,20,67,0,111, | ||
3715 | 0,110,0,115,0, | ||
3716 | 116,0,97,0,110, | ||
3717 | 0,116,0,95,0, | ||
3718 | 51,0,1,200,1, | ||
3719 | 3,1,2,1,1, | ||
3720 | 1019,22,1,64,1, | ||
3721 | 2037,820,1,2038,739, | ||
3722 | 1,1788,1020,16,0, | ||
3723 | 357,1,32,1021,16, | ||
3724 | 0,357,1,2041,747, | ||
3725 | 1,2043,711,1,40, | ||
3726 | 1022,17,1023,15,1024, | ||
3727 | 4,32,37,0,73, | ||
3728 | 0,100,0,101,0, | ||
3729 | 110,0,116,0,69, | ||
3730 | 0,120,0,112,0, | ||
3731 | 114,0,101,0,115, | ||
3732 | 0,115,0,105,0, | ||
3733 | 111,0,110,0,1, | ||
3734 | -1,1,5,1025,20, | ||
3735 | 1026,4,34,73,0, | ||
3736 | 100,0,101,0,110, | ||
3737 | 0,116,0,69,0, | ||
3738 | 120,0,112,0,114, | ||
3739 | 0,101,0,115,0, | ||
3740 | 115,0,105,0,111, | ||
3741 | 0,110,0,95,0, | ||
3742 | 49,0,1,206,1, | ||
3743 | 3,1,2,1,1, | ||
3744 | 1027,22,1,70,1, | ||
3745 | 283,1028,17,1029,15, | ||
3746 | 1003,1,-1,1,5, | ||
3747 | 1030,20,1031,4,36, | ||
3748 | 66,0,105,0,110, | ||
3749 | 0,97,0,114,0, | ||
3750 | 121,0,69,0,120, | ||
3751 | 0,112,0,114,0, | ||
3752 | 101,0,115,0,115, | ||
3753 | 0,105,0,111,0, | ||
3754 | 110,0,95,0,52, | ||
3755 | 0,1,220,1,3, | ||
3756 | 1,4,1,3,1032, | ||
3757 | 22,1,84,1,1298, | ||
3758 | 1033,17,1034,15,991, | ||
3759 | 1,-1,1,5,1035, | ||
3760 | 20,1036,4,24,65, | ||
3761 | 0,115,0,115,0, | ||
3762 | 105,0,103,0,110, | ||
3763 | 0,109,0,101,0, | ||
3764 | 110,0,116,0,95, | ||
3765 | 0,51,0,1,190, | ||
3766 | 1,3,1,4,1, | ||
3767 | 3,1037,22,1,54, | ||
3768 | 1,44,1038,17,1023, | ||
3769 | 1,1,1027,1,47, | ||
3770 | 1039,17,1040,15,1041, | ||
3771 | 4,38,37,0,73, | ||
3772 | 0,100,0,101,0, | ||
3773 | 110,0,116,0,68, | ||
3774 | 0,111,0,116,0, | ||
3775 | 69,0,120,0,112, | ||
3776 | 0,114,0,101,0, | ||
3777 | 115,0,115,0,105, | ||
3778 | 0,111,0,110,0, | ||
3779 | 1,-1,1,5,1042, | ||
3780 | 20,1043,4,40,73, | ||
3781 | 0,100,0,101,0, | ||
3782 | 110,0,116,0,68, | ||
3783 | 0,111,0,116,0, | ||
3784 | 69,0,120,0,112, | ||
3785 | 0,114,0,101,0, | ||
3786 | 115,0,115,0,105, | ||
3787 | 0,111,0,110,0, | ||
3788 | 95,0,49,0,1, | ||
3789 | 207,1,3,1,4, | ||
3790 | 1,3,1044,22,1, | ||
3791 | 71,1,48,1045,17, | ||
3792 | 1046,15,1047,4,58, | ||
3793 | 37,0,73,0,110, | ||
3794 | 0,99,0,114,0, | ||
3795 | 101,0,109,0,101, | ||
3796 | 0,110,0,116,0, | ||
3797 | 68,0,101,0,99, | ||
3798 | 0,114,0,101,0, | ||
3799 | 109,0,101,0,110, | ||
3800 | 0,116,0,69,0, | ||
3801 | 120,0,112,0,114, | ||
3802 | 0,101,0,115,0, | ||
3803 | 115,0,105,0,111, | ||
3804 | 0,110,0,1,-1, | ||
3805 | 1,5,1048,20,1049, | ||
3806 | 4,60,73,0,110, | ||
3807 | 0,99,0,114,0, | ||
3808 | 101,0,109,0,101, | ||
3809 | 0,110,0,116,0, | ||
3810 | 68,0,101,0,99, | ||
3811 | 0,114,0,101,0, | ||
3812 | 109,0,101,0,110, | ||
3813 | 0,116,0,69,0, | ||
3814 | 120,0,112,0,114, | ||
3815 | 0,101,0,115,0, | ||
3816 | 115,0,105,0,111, | ||
3817 | 0,110,0,95,0, | ||
3818 | 52,0,1,211,1, | ||
3819 | 3,1,5,1,4, | ||
3820 | 1050,22,1,75,1, | ||
3821 | 49,1051,17,1052,15, | ||
3822 | 1047,1,-1,1,5, | ||
3823 | 1053,20,1054,4,60, | ||
3824 | 73,0,110,0,99, | ||
3825 | 0,114,0,101,0, | ||
3826 | 109,0,101,0,110, | ||
3827 | 0,116,0,68,0, | ||
3828 | 101,0,99,0,114, | ||
3829 | 0,101,0,109,0, | ||
3830 | 101,0,110,0,116, | ||
3831 | 0,69,0,120,0, | ||
3832 | 112,0,114,0,101, | ||
3833 | 0,115,0,115,0, | ||
3834 | 105,0,111,0,110, | ||
3835 | 0,95,0,51,0, | ||
3836 | 1,210,1,3,1, | ||
3837 | 5,1,4,1055,22, | ||
3838 | 1,74,1,50,1056, | ||
3839 | 17,1057,15,1047,1, | ||
3840 | -1,1,5,1058,20, | ||
3841 | 1059,4,60,73,0, | ||
3842 | 110,0,99,0,114, | ||
3843 | 0,101,0,109,0, | ||
3844 | 101,0,110,0,116, | ||
3845 | 0,68,0,101,0, | ||
3846 | 99,0,114,0,101, | ||
3847 | 0,109,0,101,0, | ||
3848 | 110,0,116,0,69, | ||
3849 | 0,120,0,112,0, | ||
3850 | 114,0,101,0,115, | ||
3851 | 0,115,0,105,0, | ||
3852 | 111,0,110,0,95, | ||
3853 | 0,50,0,1,209, | ||
3854 | 1,3,1,3,1, | ||
3855 | 2,1060,22,1,73, | ||
3856 | 1,51,1061,17,1062, | ||
3857 | 15,1047,1,-1,1, | ||
3858 | 5,1063,20,1064,4, | ||
3859 | 60,73,0,110,0, | ||
3860 | 99,0,114,0,101, | ||
3861 | 0,109,0,101,0, | ||
3862 | 110,0,116,0,68, | ||
3863 | 0,101,0,99,0, | ||
3864 | 114,0,101,0,109, | ||
3865 | 0,101,0,110,0, | ||
3866 | 116,0,69,0,120, | ||
3867 | 0,112,0,114,0, | ||
3868 | 101,0,115,0,115, | ||
3869 | 0,105,0,111,0, | ||
3870 | 110,0,95,0,49, | ||
3871 | 0,1,208,1,3, | ||
3872 | 1,3,1,2,1065, | ||
3873 | 22,1,72,1,305, | ||
3874 | 1066,17,1067,15,1003, | ||
3875 | 1,-1,1,5,1068, | ||
3876 | 20,1069,4,36,66, | ||
3877 | 0,105,0,110,0, | ||
3878 | 97,0,114,0,121, | ||
3879 | 0,69,0,120,0, | ||
3880 | 112,0,114,0,101, | ||
3881 | 0,115,0,115,0, | ||
3882 | 105,0,111,0,110, | ||
3883 | 0,95,0,51,0, | ||
3884 | 1,219,1,3,1, | ||
3885 | 4,1,3,1070,22, | ||
3886 | 1,83,1,1565,1071, | ||
3887 | 16,0,564,1,1817, | ||
3888 | 790,1,1818,1072,16, | ||
3889 | 0,357,1,63,1073, | ||
3890 | 17,1074,15,1075,4, | ||
3891 | 38,37,0,84,0, | ||
3892 | 121,0,112,0,101, | ||
3893 | 0,99,0,97,0, | ||
3894 | 115,0,116,0,69, | ||
3895 | 0,120,0,112,0, | ||
3896 | 114,0,101,0,115, | ||
3897 | 0,115,0,105,0, | ||
3898 | 111,0,110,0,1, | ||
3899 | -1,1,5,1076,20, | ||
3900 | 1077,4,40,84,0, | ||
3901 | 121,0,112,0,101, | ||
3902 | 0,99,0,97,0, | ||
3903 | 115,0,116,0,69, | ||
3904 | 0,120,0,112,0, | ||
3905 | 114,0,101,0,115, | ||
3906 | 0,115,0,105,0, | ||
3907 | 111,0,110,0,95, | ||
3908 | 0,50,0,1,240, | ||
3909 | 1,3,1,5,1, | ||
3910 | 4,1078,22,1,104, | ||
3911 | 1,66,1079,17,1080, | ||
3912 | 15,1075,1,-1,1, | ||
3913 | 5,1081,20,1082,4, | ||
3914 | 40,84,0,121,0, | ||
3915 | 112,0,101,0,99, | ||
3916 | 0,97,0,115,0, | ||
3917 | 116,0,69,0,120, | ||
3918 | 0,112,0,114,0, | ||
3919 | 101,0,115,0,115, | ||
3920 | 0,105,0,111,0, | ||
3921 | 110,0,95,0,51, | ||
3922 | 0,1,241,1,3, | ||
3923 | 1,7,1,6,1083, | ||
3924 | 22,1,105,1,67, | ||
3925 | 1084,17,1085,15,1075, | ||
3926 | 1,-1,1,5,1086, | ||
3927 | 20,1087,4,40,84, | ||
3928 | 0,121,0,112,0, | ||
3929 | 101,0,99,0,97, | ||
3930 | 0,115,0,116,0, | ||
3931 | 69,0,120,0,112, | ||
3932 | 0,114,0,101,0, | ||
3933 | 115,0,115,0,105, | ||
3934 | 0,111,0,110,0, | ||
3935 | 95,0,55,0,1, | ||
3936 | 245,1,3,1,8, | ||
3937 | 1,7,1088,22,1, | ||
3938 | 109,1,68,1089,17, | ||
3939 | 1090,15,1075,1,-1, | ||
3940 | 1,5,1091,20,1092, | ||
3941 | 4,40,84,0,121, | ||
3942 | 0,112,0,101,0, | ||
3943 | 99,0,97,0,115, | ||
3944 | 0,116,0,69,0, | ||
3945 | 120,0,112,0,114, | ||
3946 | 0,101,0,115,0, | ||
3947 | 115,0,105,0,111, | ||
3948 | 0,110,0,95,0, | ||
3949 | 53,0,1,243,1, | ||
3950 | 3,1,8,1,7, | ||
3951 | 1093,22,1,107,1, | ||
3952 | 69,1094,17,1095,15, | ||
3953 | 1075,1,-1,1,5, | ||
3954 | 1096,20,1097,4,40, | ||
3955 | 84,0,121,0,112, | ||
3956 | 0,101,0,99,0, | ||
3957 | 97,0,115,0,116, | ||
3958 | 0,69,0,120,0, | ||
3959 | 112,0,114,0,101, | ||
3960 | 0,115,0,115,0, | ||
3961 | 105,0,111,0,110, | ||
3962 | 0,95,0,54,0, | ||
3963 | 1,244,1,3,1, | ||
3964 | 6,1,5,1098,22, | ||
3965 | 1,108,1,70,1099, | ||
3966 | 17,1100,15,1075,1, | ||
3967 | -1,1,5,1101,20, | ||
3968 | 1102,4,40,84,0, | ||
3969 | 121,0,112,0,101, | ||
3970 | 0,99,0,97,0, | ||
3971 | 115,0,116,0,69, | ||
3972 | 0,120,0,112,0, | ||
3973 | 114,0,101,0,115, | ||
3974 | 0,115,0,105,0, | ||
3975 | 111,0,110,0,95, | ||
3976 | 0,52,0,1,242, | ||
3977 | 1,3,1,6,1, | ||
3978 | 5,1103,22,1,106, | ||
3979 | 1,573,1104,17,1105, | ||
3980 | 15,1106,4,26,37, | ||
3981 | 0,76,0,105,0, | ||
3982 | 115,0,116,0,67, | ||
3983 | 0,111,0,110,0, | ||
3984 | 115,0,116,0,97, | ||
3985 | 0,110,0,116,0, | ||
3986 | 1,-1,1,5,1107, | ||
3987 | 20,1108,4,28,76, | ||
3988 | 0,105,0,115,0, | ||
3989 | 116,0,67,0,111, | ||
3990 | 0,110,0,115,0, | ||
3991 | 116,0,97,0,110, | ||
3992 | 0,116,0,95,0, | ||
3993 | 49,0,1,204,1, | ||
3994 | 3,1,4,1,3, | ||
3995 | 1109,22,1,68,1, | ||
3996 | 1011,1110,17,1111,15, | ||
3997 | 1112,4,44,37,0, | ||
3998 | 80,0,97,0,114, | ||
3999 | 0,101,0,110,0, | ||
4000 | 116,0,104,0,101, | ||
4001 | 0,115,0,105,0, | ||
4002 | 115,0,69,0,120, | ||
4003 | 0,112,0,114,0, | ||
4004 | 101,0,115,0,115, | ||
4005 | 0,105,0,111,0, | ||
4006 | 110,0,1,-1,1, | ||
4007 | 5,1113,20,1114,4, | ||
4008 | 46,80,0,97,0, | ||
4009 | 114,0,101,0,110, | ||
4010 | 0,116,0,104,0, | ||
4011 | 101,0,115,0,105, | ||
4012 | 0,115,0,69,0, | ||
4013 | 120,0,112,0,114, | ||
4014 | 0,101,0,115,0, | ||
4015 | 115,0,105,0,111, | ||
4016 | 0,110,0,95,0, | ||
4017 | 49,0,1,238,1, | ||
4018 | 3,1,4,1,3, | ||
4019 | 1115,22,1,102,1, | ||
4020 | 74,1116,17,1117,15, | ||
4021 | 1075,1,-1,1,5, | ||
4022 | 1118,20,1119,4,40, | ||
4023 | 84,0,121,0,112, | ||
4024 | 0,101,0,99,0, | ||
4025 | 97,0,115,0,116, | ||
4026 | 0,69,0,120,0, | ||
4027 | 112,0,114,0,101, | ||
4028 | 0,115,0,115,0, | ||
4029 | 105,0,111,0,110, | ||
4030 | 0,95,0,57,0, | ||
4031 | 1,247,1,3,1, | ||
4032 | 7,1,6,1120,22, | ||
4033 | 1,111,1,1046,1121, | ||
4034 | 17,1122,15,1003,1, | ||
4035 | -1,1,5,1123,20, | ||
4036 | 1124,4,38,66,0, | ||
4037 | 105,0,110,0,97, | ||
4038 | 0,114,0,121,0, | ||
4039 | 69,0,120,0,112, | ||
4040 | 0,114,0,101,0, | ||
4041 | 115,0,115,0,105, | ||
4042 | 0,111,0,110,0, | ||
4043 | 95,0,49,0,56, | ||
4044 | 0,1,234,1,3, | ||
4045 | 1,4,1,3,1125, | ||
4046 | 22,1,98,1,328, | ||
4047 | 1126,17,1127,15,1003, | ||
4048 | 1,-1,1,5,1128, | ||
4049 | 20,1129,4,36,66, | ||
4050 | 0,105,0,110,0, | ||
4051 | 97,0,114,0,121, | ||
4052 | 0,69,0,120,0, | ||
4053 | 112,0,114,0,101, | ||
4054 | 0,115,0,115,0, | ||
4055 | 105,0,111,0,110, | ||
4056 | 0,95,0,50,0, | ||
4057 | 1,218,1,3,1, | ||
4058 | 4,1,3,1130,22, | ||
4059 | 1,82,1,1333,1131, | ||
4060 | 17,1132,15,991,1, | ||
4061 | -1,1,5,1133,20, | ||
4062 | 1134,4,24,65,0, | ||
4063 | 115,0,115,0,105, | ||
4064 | 0,103,0,110,0, | ||
4065 | 109,0,101,0,110, | ||
4066 | 0,116,0,95,0, | ||
4067 | 50,0,1,189,1, | ||
4068 | 3,1,4,1,3, | ||
4069 | 1135,22,1,53,1, | ||
4070 | 82,1136,17,1137,15, | ||
4071 | 1138,4,32,37,0, | ||
4072 | 85,0,110,0,97, | ||
4073 | 0,114,0,121,0, | ||
4074 | 69,0,120,0,112, | ||
4075 | 0,114,0,101,0, | ||
4076 | 115,0,115,0,105, | ||
4077 | 0,111,0,110,0, | ||
4078 | 1,-1,1,5,1139, | ||
4079 | 20,1140,4,34,85, | ||
4080 | 0,110,0,97,0, | ||
4081 | 114,0,121,0,69, | ||
4082 | 0,120,0,112,0, | ||
4083 | 114,0,101,0,115, | ||
4084 | 0,115,0,105,0, | ||
4085 | 111,0,110,0,95, | ||
4086 | 0,51,0,1,237, | ||
4087 | 1,3,1,3,1, | ||
4088 | 2,1141,22,1,101, | ||
4089 | 1,1847,829,1,1850, | ||
4090 | 1142,17,1143,15,1144, | ||
4091 | 4,24,37,0,83, | ||
4092 | 0,116,0,97,0, | ||
4093 | 116,0,101,0,67, | ||
4094 | 0,104,0,97,0, | ||
4095 | 110,0,103,0,101, | ||
4096 | 0,1,-1,1,5, | ||
4097 | 1145,20,1146,4,26, | ||
4098 | 83,0,116,0,97, | ||
4099 | 0,116,0,101,0, | ||
4100 | 67,0,104,0,97, | ||
4101 | 0,110,0,103,0, | ||
4102 | 101,0,95,0,50, | ||
4103 | 0,1,178,1,3, | ||
4104 | 1,3,1,2,1147, | ||
4105 | 22,1,42,1,1851, | ||
4106 | 1148,17,1149,15,1144, | ||
4107 | 1,-1,1,5,1150, | ||
4108 | 20,1151,4,26,83, | ||
4109 | 0,116,0,97,0, | ||
4110 | 116,0,101,0,67, | ||
4111 | 0,104,0,97,0, | ||
4112 | 110,0,103,0,101, | ||
4113 | 0,95,0,49,0, | ||
4114 | 1,177,1,3,1, | ||
4115 | 3,1,2,1152,22, | ||
4116 | 1,41,1,1853,1153, | ||
4117 | 17,1154,15,1155,4, | ||
4118 | 28,37,0,74,0, | ||
4119 | 117,0,109,0,112, | ||
4120 | 0,83,0,116,0, | ||
4121 | 97,0,116,0,101, | ||
4122 | 0,109,0,101,0, | ||
4123 | 110,0,116,0,1, | ||
4124 | -1,1,5,1156,20, | ||
4125 | 1157,4,30,74,0, | ||
4126 | 117,0,109,0,112, | ||
4127 | 0,83,0,116,0, | ||
4128 | 97,0,116,0,101, | ||
4129 | 0,109,0,101,0, | ||
4130 | 110,0,116,0,95, | ||
4131 | 0,49,0,1,176, | ||
4132 | 1,3,1,3,1, | ||
4133 | 2,1158,22,1,40, | ||
4134 | 1,93,1159,17,1160, | ||
4135 | 15,1138,1,-1,1, | ||
4136 | 5,1161,20,1162,4, | ||
4137 | 34,85,0,110,0, | ||
4138 | 97,0,114,0,121, | ||
4139 | 0,69,0,120,0, | ||
4140 | 112,0,114,0,101, | ||
4141 | 0,115,0,115,0, | ||
4142 | 105,0,111,0,110, | ||
4143 | 0,95,0,50,0, | ||
4144 | 1,236,1,3,1, | ||
4145 | 3,1,2,1163,22, | ||
4146 | 1,100,1,1855,1164, | ||
4147 | 17,1165,15,1166,4, | ||
4148 | 20,37,0,74,0, | ||
4149 | 117,0,109,0,112, | ||
4150 | 0,76,0,97,0, | ||
4151 | 98,0,101,0,108, | ||
4152 | 0,1,-1,1,5, | ||
4153 | 1167,20,1168,4,22, | ||
4154 | 74,0,117,0,109, | ||
4155 | 0,112,0,76,0, | ||
4156 | 97,0,98,0,101, | ||
4157 | 0,108,0,95,0, | ||
4158 | 49,0,1,175,1, | ||
4159 | 3,1,3,1,2, | ||
4160 | 1169,22,1,39,1, | ||
4161 | 1856,779,1,1857,674, | ||
4162 | 1,1858,680,1,1859, | ||
4163 | 685,1,1860,690,1, | ||
4164 | 1861,1170,16,0,338, | ||
4165 | 1,1862,696,1,1863, | ||
4166 | 1171,16,0,342,1, | ||
4167 | 1864,701,1,1865,1172, | ||
4168 | 16,0,346,1,1866, | ||
4169 | 706,1,1867,1173,16, | ||
4170 | 0,350,1,1868,797, | ||
4171 | 1,1869,1174,16,0, | ||
4172 | 389,1,1870,724,1, | ||
4173 | 1871,729,1,2232,1175, | ||
4174 | 16,0,262,1,1121, | ||
4175 | 1176,17,1177,15,991, | ||
4176 | 1,-1,1,5,1178, | ||
4177 | 20,1179,4,24,65, | ||
4178 | 0,115,0,115,0, | ||
4179 | 105,0,103,0,110, | ||
4180 | 0,109,0,101,0, | ||
4181 | 110,0,116,0,95, | ||
4182 | 0,56,0,1,195, | ||
4183 | 1,3,1,6,1, | ||
4184 | 5,1180,22,1,59, | ||
4185 | 1,118,1181,17,1182, | ||
4186 | 15,1003,1,-1,1, | ||
4187 | 5,1183,20,1184,4, | ||
4188 | 38,66,0,105,0, | ||
4189 | 110,0,97,0,114, | ||
4190 | 0,121,0,69,0, | ||
4191 | 120,0,112,0,114, | ||
4192 | 0,101,0,115,0, | ||
4193 | 115,0,105,0,111, | ||
4194 | 0,110,0,95,0, | ||
4195 | 49,0,52,0,1, | ||
4196 | 230,1,3,1,4, | ||
4197 | 1,3,1185,22,1, | ||
4198 | 94,1,371,1186,17, | ||
4199 | 1187,15,1188,4,46, | ||
4200 | 37,0,70,0,117, | ||
4201 | 0,110,0,99,0, | ||
4202 | 116,0,105,0,111, | ||
4203 | 0,110,0,67,0, | ||
4204 | 97,0,108,0,108, | ||
4205 | 0,69,0,120,0, | ||
4206 | 112,0,114,0,101, | ||
4207 | 0,115,0,115,0, | ||
4208 | 105,0,111,0,110, | ||
4209 | 0,1,-1,1,5, | ||
4210 | 1189,20,1190,4,48, | ||
4211 | 70,0,117,0,110, | ||
4212 | 0,99,0,116,0, | ||
4213 | 105,0,111,0,110, | ||
4214 | 0,67,0,97,0, | ||
4215 | 108,0,108,0,69, | ||
4216 | 0,120,0,112,0, | ||
4217 | 114,0,101,0,115, | ||
4218 | 0,115,0,105,0, | ||
4219 | 111,0,110,0,95, | ||
4220 | 0,49,0,1,216, | ||
4221 | 1,3,1,2,1, | ||
4222 | 1,1191,22,1,80, | ||
4223 | 1,107,1192,17,1193, | ||
4224 | 15,1138,1,-1,1, | ||
4225 | 5,1194,20,1195,4, | ||
4226 | 34,85,0,110,0, | ||
4227 | 97,0,114,0,121, | ||
4228 | 0,69,0,120,0, | ||
4229 | 112,0,114,0,101, | ||
4230 | 0,115,0,115,0, | ||
4231 | 105,0,111,0,110, | ||
4232 | 0,95,0,49,0, | ||
4233 | 1,235,1,3,1, | ||
4234 | 3,1,2,1196,22, | ||
4235 | 1,99,1,375,1197, | ||
4236 | 17,1198,15,1047,1, | ||
4237 | -1,1,5,1199,20, | ||
4238 | 1200,4,60,73,0, | ||
4239 | 110,0,99,0,114, | ||
4240 | 0,101,0,109,0, | ||
4241 | 101,0,110,0,116, | ||
4242 | 0,68,0,101,0, | ||
4243 | 99,0,114,0,101, | ||
4244 | 0,109,0,101,0, | ||
4245 | 110,0,116,0,69, | ||
4246 | 0,120,0,112,0, | ||
4247 | 114,0,101,0,115, | ||
4248 | 0,115,0,105,0, | ||
4249 | 111,0,110,0,95, | ||
4250 | 0,56,0,1,215, | ||
4251 | 1,3,1,5,1, | ||
4252 | 4,1201,22,1,79, | ||
4253 | 1,377,1202,17,1203, | ||
4254 | 15,1047,1,-1,1, | ||
4255 | 5,1204,20,1205,4, | ||
4256 | 60,73,0,110,0, | ||
4257 | 99,0,114,0,101, | ||
4258 | 0,109,0,101,0, | ||
4259 | 110,0,116,0,68, | ||
4260 | 0,101,0,99,0, | ||
4261 | 114,0,101,0,109, | ||
4262 | 0,101,0,110,0, | ||
4263 | 116,0,69,0,120, | ||
4264 | 0,112,0,114,0, | ||
4265 | 101,0,115,0,115, | ||
4266 | 0,105,0,111,0, | ||
4267 | 110,0,95,0,53, | ||
4268 | 0,1,212,1,3, | ||
4269 | 1,3,1,2,1206, | ||
4270 | 22,1,76,1,352, | ||
4271 | 1207,17,1208,15,1003, | ||
4272 | 1,-1,1,5,1209, | ||
4273 | 20,1210,4,36,66, | ||
4274 | 0,105,0,110,0, | ||
4275 | 97,0,114,0,121, | ||
4276 | 0,69,0,120,0, | ||
4277 | 112,0,114,0,101, | ||
4278 | 0,115,0,115,0, | ||
4279 | 105,0,111,0,110, | ||
4280 | 0,95,0,49,0, | ||
4281 | 1,217,1,3,1, | ||
4282 | 4,1,3,1211,22, | ||
4283 | 1,81,1,827,1212, | ||
4284 | 17,1213,15,1003,1, | ||
4285 | -1,1,5,1214,20, | ||
4286 | 1215,4,38,66,0, | ||
4287 | 105,0,110,0,97, | ||
4288 | 0,114,0,121,0, | ||
4289 | 69,0,120,0,112, | ||
4290 | 0,114,0,101,0, | ||
4291 | 115,0,115,0,105, | ||
4292 | 0,111,0,110,0, | ||
4293 | 95,0,49,0,53, | ||
4294 | 0,1,231,1,3, | ||
4295 | 1,4,1,3,1216, | ||
4296 | 22,1,95,1,380, | ||
4297 | 1217,17,1218,15,1219, | ||
4298 | 4,38,37,0,67, | ||
4299 | 0,111,0,110,0, | ||
4300 | 115,0,116,0,97, | ||
4301 | 0,110,0,116,0, | ||
4302 | 69,0,120,0,112, | ||
4303 | 0,114,0,101,0, | ||
4304 | 115,0,115,0,105, | ||
4305 | 0,111,0,110,0, | ||
4306 | 1,-1,1,5,1220, | ||
4307 | 20,1221,4,40,67, | ||
4308 | 0,111,0,110,0, | ||
4309 | 115,0,116,0,97, | ||
4310 | 0,110,0,116,0, | ||
4311 | 69,0,120,0,112, | ||
4312 | 0,114,0,101,0, | ||
4313 | 115,0,115,0,105, | ||
4314 | 0,111,0,110,0, | ||
4315 | 95,0,49,0,1, | ||
4316 | 205,1,3,1,2, | ||
4317 | 1,1,1222,22,1, | ||
4318 | 69,1,130,1223,17, | ||
4319 | 1224,15,1003,1,-1, | ||
4320 | 1,5,1225,20,1226, | ||
4321 | 4,38,66,0,105, | ||
4322 | 0,110,0,97,0, | ||
4323 | 114,0,121,0,69, | ||
4324 | 0,120,0,112,0, | ||
4325 | 114,0,101,0,115, | ||
4326 | 0,115,0,105,0, | ||
4327 | 111,0,110,0,95, | ||
4328 | 0,49,0,51,0, | ||
4329 | 1,229,1,3,1, | ||
4330 | 4,1,3,1227,22, | ||
4331 | 1,93,1,1637,667, | ||
4332 | 1,1639,1228,16,0, | ||
4333 | 357,1,373,1229,17, | ||
4334 | 1230,15,1047,1,-1, | ||
4335 | 1,5,1231,20,1232, | ||
4336 | 4,60,73,0,110, | ||
4337 | 0,99,0,114,0, | ||
4338 | 101,0,109,0,101, | ||
4339 | 0,110,0,116,0, | ||
4340 | 68,0,101,0,99, | ||
4341 | 0,114,0,101,0, | ||
4342 | 109,0,101,0,110, | ||
4343 | 0,116,0,69,0, | ||
4344 | 120,0,112,0,114, | ||
4345 | 0,101,0,115,0, | ||
4346 | 115,0,105,0,111, | ||
4347 | 0,110,0,95,0, | ||
4348 | 54,0,1,213,1, | ||
4349 | 3,1,3,1,2, | ||
4350 | 1233,22,1,77,1, | ||
4351 | 1396,1234,17,1235,15, | ||
4352 | 1236,4,32,37,0, | ||
4353 | 82,0,101,0,116, | ||
4354 | 0,117,0,114,0, | ||
4355 | 110,0,83,0,116, | ||
4356 | 0,97,0,116,0, | ||
4357 | 101,0,109,0,101, | ||
4358 | 0,110,0,116,0, | ||
4359 | 1,-1,1,5,1237, | ||
4360 | 20,1238,4,34,82, | ||
4361 | 0,101,0,116,0, | ||
4362 | 117,0,114,0,110, | ||
4363 | 0,83,0,116,0, | ||
4364 | 97,0,116,0,101, | ||
4365 | 0,109,0,101,0, | ||
4366 | 110,0,116,0,95, | ||
4367 | 0,50,0,1,197, | ||
4368 | 1,3,1,2,1, | ||
4369 | 1,1239,22,1,61, | ||
4370 | 1,143,1240,17,1241, | ||
4371 | 15,1003,1,-1,1, | ||
4372 | 5,1242,20,1243,4, | ||
4373 | 38,66,0,105,0, | ||
4374 | 110,0,97,0,114, | ||
4375 | 0,121,0,69,0, | ||
4376 | 120,0,112,0,114, | ||
4377 | 0,101,0,115,0, | ||
4378 | 115,0,105,0,111, | ||
4379 | 0,110,0,95,0, | ||
4380 | 49,0,50,0,1, | ||
4381 | 228,1,3,1,4, | ||
4382 | 1,3,1244,22,1, | ||
4383 | 92,1,1112,1245,17, | ||
4384 | 1040,1,3,1044,1, | ||
4385 | 1402,1246,17,1247,15, | ||
4386 | 1236,1,-1,1,5, | ||
4387 | 1248,20,1249,4,34, | ||
4388 | 82,0,101,0,116, | ||
4389 | 0,117,0,114,0, | ||
4390 | 110,0,83,0,116, | ||
4391 | 0,97,0,116,0, | ||
4392 | 101,0,109,0,101, | ||
4393 | 0,110,0,116,0, | ||
4394 | 95,0,49,0,1, | ||
4395 | 196,1,3,1,3, | ||
4396 | 1,2,1250,22,1, | ||
4397 | 60,1,1557,1251,17, | ||
4398 | 1252,15,1010,1,-1, | ||
4399 | 1,5,1253,20,1254, | ||
4400 | 4,36,70,0,111, | ||
4401 | 0,114,0,76,0, | ||
4402 | 111,0,111,0,112, | ||
4403 | 0,83,0,116,0, | ||
4404 | 97,0,116,0,101, | ||
4405 | 0,109,0,101,0, | ||
4406 | 110,0,116,0,95, | ||
4407 | 0,52,0,1,187, | ||
4408 | 1,3,1,4,1, | ||
4409 | 3,1255,22,1,51, | ||
4410 | 1,1158,1256,17,1257, | ||
4411 | 15,991,1,-1,1, | ||
4412 | 5,1258,20,1259,4, | ||
4413 | 24,65,0,115,0, | ||
4414 | 115,0,105,0,103, | ||
4415 | 0,110,0,109,0, | ||
4416 | 101,0,110,0,116, | ||
4417 | 0,95,0,55,0, | ||
4418 | 1,194,1,3,1, | ||
4419 | 4,1,3,1260,22, | ||
4420 | 1,58,1,1366,1261, | ||
4421 | 16,0,392,1,157, | ||
4422 | 1262,17,1263,15,1003, | ||
4423 | 1,-1,1,5,1264, | ||
4424 | 20,1265,4,38,66, | ||
4425 | 0,105,0,110,0, | ||
4426 | 97,0,114,0,121, | ||
4427 | 0,69,0,120,0, | ||
4428 | 112,0,114,0,101, | ||
4429 | 0,115,0,115,0, | ||
4430 | 105,0,111,0,110, | ||
4431 | 0,95,0,49,0, | ||
4432 | 49,0,1,227,1, | ||
4433 | 3,1,4,1,3, | ||
4434 | 1266,22,1,91,1, | ||
4435 | 883,1267,17,1268,15, | ||
4436 | 1003,1,-1,1,5, | ||
4437 | 1269,20,1270,4,38, | ||
4438 | 66,0,105,0,110, | ||
4439 | 0,97,0,114,0, | ||
4440 | 121,0,69,0,120, | ||
4441 | 0,112,0,114,0, | ||
4442 | 101,0,115,0,115, | ||
4443 | 0,105,0,111,0, | ||
4444 | 110,0,95,0,49, | ||
4445 | 0,54,0,1,232, | ||
4446 | 1,3,1,4,1, | ||
4447 | 3,1271,22,1,96, | ||
4448 | 1,1094,1272,17,1273, | ||
4449 | 15,1274,4,26,37, | ||
4450 | 0,70,0,117,0, | ||
4451 | 110,0,99,0,116, | ||
4452 | 0,105,0,111,0, | ||
4453 | 110,0,67,0,97, | ||
4454 | 0,108,0,108,0, | ||
4455 | 1,-1,1,5,1275, | ||
4456 | 20,1276,4,28,70, | ||
4457 | 0,117,0,110,0, | ||
4458 | 99,0,116,0,105, | ||
4459 | 0,111,0,110,0, | ||
4460 | 67,0,97,0,108, | ||
4461 | 0,108,0,95,0, | ||
4462 | 49,0,1,248,1, | ||
4463 | 3,1,5,1,4, | ||
4464 | 1277,22,1,112,1, | ||
4465 | 379,1278,17,1279,15, | ||
4466 | 1047,1,-1,1,5, | ||
4467 | 1280,20,1281,4,60, | ||
4468 | 73,0,110,0,99, | ||
4469 | 0,114,0,101,0, | ||
4470 | 109,0,101,0,110, | ||
4471 | 0,116,0,68,0, | ||
4472 | 101,0,99,0,114, | ||
4473 | 0,101,0,109,0, | ||
4474 | 101,0,110,0,116, | ||
4475 | 0,69,0,120,0, | ||
4476 | 112,0,114,0,101, | ||
4477 | 0,115,0,115,0, | ||
4478 | 105,0,111,0,110, | ||
4479 | 0,95,0,55,0, | ||
4480 | 1,214,1,3,1, | ||
4481 | 5,1,4,1282,22, | ||
4482 | 1,78,1,172,1283, | ||
4483 | 17,1284,15,1003,1, | ||
4484 | -1,1,5,1285,20, | ||
4485 | 1286,4,38,66,0, | ||
4486 | 105,0,110,0,97, | ||
4487 | 0,114,0,121,0, | ||
4488 | 69,0,120,0,112, | ||
4489 | 0,114,0,101,0, | ||
4490 | 115,0,115,0,105, | ||
4491 | 0,111,0,110,0, | ||
4492 | 95,0,49,0,48, | ||
4493 | 0,1,226,1,3, | ||
4494 | 1,4,1,3,1287, | ||
4495 | 22,1,90,1,1385, | ||
4496 | 803,1,1431,1288,16, | ||
4497 | 0,419,1,1438,1289, | ||
4498 | 17,1290,15,991,1, | ||
4499 | -1,1,5,1291,20, | ||
4500 | 1292,4,24,65,0, | ||
4501 | 115,0,115,0,105, | ||
4502 | 0,103,0,110,0, | ||
4503 | 109,0,101,0,110, | ||
4504 | 0,116,0,95,0, | ||
4505 | 49,0,1,188,1, | ||
4506 | 3,1,4,1,3, | ||
4507 | 1293,22,1,52,1, | ||
4508 | 1693,1294,16,0,157, | ||
4509 | 1,1694,771,1,1193, | ||
4510 | 1295,17,1296,15,991, | ||
4511 | 1,-1,1,5,1297, | ||
4512 | 20,1298,4,24,65, | ||
4513 | 0,115,0,115,0, | ||
4514 | 105,0,103,0,110, | ||
4515 | 0,109,0,101,0, | ||
4516 | 110,0,116,0,95, | ||
4517 | 0,54,0,1,193, | ||
4518 | 1,3,1,4,1, | ||
4519 | 3,1299,22,1,57, | ||
4520 | 1,188,1300,17,1301, | ||
4521 | 15,1003,1,-1,1, | ||
4522 | 5,1302,20,1303,4, | ||
4523 | 36,66,0,105,0, | ||
4524 | 110,0,97,0,114, | ||
4525 | 0,121,0,69,0, | ||
4526 | 120,0,112,0,114, | ||
4527 | 0,101,0,115,0, | ||
4528 | 115,0,105,0,111, | ||
4529 | 0,110,0,95,0, | ||
4530 | 57,0,1,225,1, | ||
4531 | 3,1,4,1,3, | ||
4532 | 1304,22,1,89,1, | ||
4533 | 1962,1305,17,1306,15, | ||
4534 | 1010,1,-1,1,5, | ||
4535 | 1307,20,1308,4,36, | ||
4536 | 70,0,111,0,114, | ||
4537 | 0,76,0,111,0, | ||
4538 | 111,0,112,0,83, | ||
4539 | 0,116,0,97,0, | ||
4540 | 116,0,101,0,109, | ||
4541 | 0,101,0,110,0, | ||
4542 | 116,0,95,0,50, | ||
4543 | 0,1,185,1,3, | ||
4544 | 1,2,1,1,1309, | ||
4545 | 22,1,49,1,1611, | ||
4546 | 1310,16,0,357,1, | ||
4547 | 1467,761,1,205,1311, | ||
4548 | 17,1312,15,1003,1, | ||
4549 | -1,1,5,1313,20, | ||
4550 | 1314,4,36,66,0, | ||
4551 | 105,0,110,0,97, | ||
4552 | 0,114,0,121,0, | ||
4553 | 69,0,120,0,112, | ||
4554 | 0,114,0,101,0, | ||
4555 | 115,0,115,0,105, | ||
4556 | 0,111,0,110,0, | ||
4557 | 95,0,56,0,1, | ||
4558 | 224,1,3,1,4, | ||
4559 | 1,3,1315,22,1, | ||
4560 | 88,1,942,1316,17, | ||
4561 | 1317,15,1003,1,-1, | ||
4562 | 1,5,1318,20,1319, | ||
4563 | 4,38,66,0,105, | ||
4564 | 0,110,0,97,0, | ||
4565 | 114,0,121,0,69, | ||
4566 | 0,120,0,112,0, | ||
4567 | 114,0,101,0,115, | ||
4568 | 0,115,0,105,0, | ||
4569 | 111,0,110,0,95, | ||
4570 | 0,49,0,55,0, | ||
4571 | 1,233,1,3,1, | ||
4572 | 4,1,3,1320,22, | ||
4573 | 1,97,1,223,1321, | ||
4574 | 17,1322,15,1003,1, | ||
4575 | -1,1,5,1323,20, | ||
4576 | 1324,4,36,66,0, | ||
4577 | 105,0,110,0,97, | ||
4578 | 0,114,0,121,0, | ||
4579 | 69,0,120,0,112, | ||
4580 | 0,114,0,101,0, | ||
4581 | 115,0,115,0,105, | ||
4582 | 0,111,0,110,0, | ||
4583 | 95,0,55,0,1, | ||
4584 | 223,1,3,1,4, | ||
4585 | 1,3,1325,22,1, | ||
4586 | 87,1,1228,1326,17, | ||
4587 | 1327,15,991,1,-1, | ||
4588 | 1,5,1328,20,1329, | ||
4589 | 4,24,65,0,115, | ||
4590 | 0,115,0,105,0, | ||
4591 | 103,0,110,0,109, | ||
4592 | 0,101,0,110,0, | ||
4593 | 116,0,95,0,53, | ||
4594 | 0,1,192,1,3, | ||
4595 | 1,4,1,3,1330, | ||
4596 | 22,1,56,1,476, | ||
4597 | 1331,17,1332,15,1016, | ||
4598 | 1,-1,1,5,1333, | ||
4599 | 20,1334,4,20,67, | ||
4600 | 0,111,0,110,0, | ||
4601 | 115,0,116,0,97, | ||
4602 | 0,110,0,116,0, | ||
4603 | 95,0,52,0,1, | ||
4604 | 201,1,3,1,2, | ||
4605 | 1,1,1335,22,1, | ||
4606 | 65,1,1732,1336,16, | ||
4607 | 0,357,1,1482,1337, | ||
4608 | 17,1338,15,1010,1, | ||
4609 | -1,1,5,1339,20, | ||
4610 | 1340,4,36,70,0, | ||
4611 | 111,0,114,0,76, | ||
4612 | 0,111,0,111,0, | ||
4613 | 112,0,83,0,116, | ||
4614 | 0,97,0,116,0, | ||
4615 | 101,0,109,0,101, | ||
4616 | 0,110,0,116,0, | ||
4617 | 95,0,49,0,1, | ||
4618 | 184,1,3,1,2, | ||
4619 | 1,1,1341,22,1, | ||
4620 | 48,1,463,1342,17, | ||
4621 | 1343,15,1344,4,30, | ||
4622 | 37,0,86,0,101, | ||
4623 | 0,99,0,116,0, | ||
4624 | 111,0,114,0,67, | ||
4625 | 0,111,0,110,0, | ||
4626 | 115,0,116,0,97, | ||
4627 | 0,110,0,116,0, | ||
4628 | 1,-1,1,5,1345, | ||
4629 | 20,1346,4,32,86, | ||
4630 | 0,101,0,99,0, | ||
4631 | 116,0,111,0,114, | ||
4632 | 0,67,0,111,0, | ||
4633 | 110,0,115,0,116, | ||
4634 | 0,97,0,110,0, | ||
4635 | 116,0,95,0,49, | ||
4636 | 0,1,202,1,3, | ||
4637 | 1,8,1,7,1347, | ||
4638 | 22,1,66,1,2239, | ||
4639 | 1348,16,0,375,1, | ||
4640 | 1993,1349,16,0,357, | ||
4641 | 1,242,1350,17,1351, | ||
4642 | 15,1003,1,-1,1, | ||
4643 | 5,1352,20,1353,4, | ||
4644 | 36,66,0,105,0, | ||
4645 | 110,0,97,0,114, | ||
4646 | 0,121,0,69,0, | ||
4647 | 120,0,112,0,114, | ||
4648 | 0,101,0,115,0, | ||
4649 | 115,0,105,0,111, | ||
4650 | 0,110,0,95,0, | ||
4651 | 54,0,1,222,1, | ||
4652 | 3,1,4,1,3, | ||
4653 | 1354,22,1,86,1, | ||
4654 | 478,1355,17,1356,15, | ||
4655 | 1016,1,-1,1,5, | ||
4656 | 1357,20,1358,4,20, | ||
4657 | 67,0,111,0,110, | ||
4658 | 0,115,0,116,0, | ||
4659 | 97,0,110,0,116, | ||
4660 | 0,95,0,50,0, | ||
4661 | 1,199,1,3,1, | ||
4662 | 2,1,1,1359,22, | ||
4663 | 1,63,1,479,1360, | ||
4664 | 17,1361,15,1016,1, | ||
4665 | -1,1,5,1362,20, | ||
4666 | 1363,4,20,67,0, | ||
4667 | 111,0,110,0,115, | ||
4668 | 0,116,0,97,0, | ||
4669 | 110,0,116,0,95, | ||
4670 | 0,49,0,1,198, | ||
4671 | 1,3,1,2,1, | ||
4672 | 1,1364,22,1,62, | ||
4673 | 1,1001,1365,17,1366, | ||
4674 | 15,1075,1,-1,1, | ||
4675 | 5,1367,20,1368,4, | ||
4676 | 40,84,0,121,0, | ||
4677 | 112,0,101,0,99, | ||
4678 | 0,97,0,115,0, | ||
4679 | 116,0,69,0,120, | ||
4680 | 0,112,0,114,0, | ||
4681 | 101,0,115,0,115, | ||
4682 | 0,105,0,111,0, | ||
4683 | 110,0,95,0,56, | ||
4684 | 0,1,246,1,3, | ||
4685 | 1,5,1,4,1369, | ||
4686 | 22,1,110,1,1002, | ||
4687 | 1370,17,1371,15,1075, | ||
4688 | 1,-1,1,5,1372, | ||
4689 | 20,1373,4,40,84, | ||
4690 | 0,121,0,112,0, | ||
4691 | 101,0,99,0,97, | ||
4692 | 0,115,0,116,0, | ||
4693 | 69,0,120,0,112, | ||
4694 | 0,114,0,101,0, | ||
4695 | 115,0,115,0,105, | ||
4696 | 0,111,0,110,0, | ||
4697 | 95,0,49,0,1, | ||
4698 | 239,1,3,1,5, | ||
4699 | 1,4,1374,22,1, | ||
4700 | 103,1,12,1375,19, | ||
4701 | 166,1,12,1376,5, | ||
4702 | 34,1,1637,667,1, | ||
4703 | 1856,779,1,1857,674, | ||
4704 | 1,1858,680,1,1859, | ||
4705 | 685,1,1860,690,1, | ||
4706 | 1862,696,1,1864,701, | ||
4707 | 1,1866,706,1,1868, | ||
4708 | 797,1,1760,718,1, | ||
4709 | 1870,724,1,1871,729, | ||
4710 | 1,2095,1377,16,0, | ||
4711 | 164,1,31,1378,16, | ||
4712 | 0,164,1,32,1379, | ||
4713 | 16,0,164,1,1788, | ||
4714 | 1380,16,0,164,1, | ||
4715 | 2228,1381,16,0,164, | ||
4716 | 1,1467,761,1,1639, | ||
4717 | 1382,16,0,164,1, | ||
4718 | 1694,771,1,2137,1383, | ||
4719 | 16,0,562,1,1817, | ||
4720 | 790,1,1818,1384,16, | ||
4721 | 0,164,1,2037,820, | ||
4722 | 1,2038,739,1,1385, | ||
4723 | 803,1,2041,747,1, | ||
4724 | 2043,711,1,1611,1385, | ||
4725 | 16,0,164,1,2048, | ||
4726 | 1386,16,0,586,1, | ||
4727 | 1993,1387,16,0,164, | ||
4728 | 1,1732,1388,16,0, | ||
4729 | 164,1,1847,829,1, | ||
4730 | 13,1389,19,427,1, | ||
4731 | 13,1390,5,29,1, | ||
4732 | 1637,667,1,1856,779, | ||
4733 | 1,1857,674,1,1858, | ||
4734 | 680,1,1859,685,1, | ||
4735 | 1860,690,1,1862,696, | ||
4736 | 1,1864,701,1,1866, | ||
4737 | 706,1,1868,797,1, | ||
4738 | 1760,718,1,1870,724, | ||
4739 | 1,1871,729,1,2097, | ||
4740 | 1391,17,1392,15,1393, | ||
4741 | 4,22,37,0,83, | ||
4742 | 0,116,0,97,0, | ||
4743 | 116,0,101,0,69, | ||
4744 | 0,118,0,101,0, | ||
4745 | 110,0,116,0,1, | ||
4746 | -1,1,5,1394,20, | ||
4747 | 1395,4,24,83,0, | ||
4748 | 116,0,97,0,116, | ||
4749 | 0,101,0,69,0, | ||
4750 | 118,0,101,0,110, | ||
4751 | 0,116,0,95,0, | ||
4752 | 49,0,1,155,1, | ||
4753 | 3,1,6,1,5, | ||
4754 | 1396,22,1,17,1, | ||
4755 | 2099,1397,16,0,555, | ||
4756 | 1,1993,1398,16,0, | ||
4757 | 425,1,32,1399,16, | ||
4758 | 0,531,1,1467,761, | ||
4759 | 1,1694,771,1,2134, | ||
4760 | 1400,17,1401,15,1402, | ||
4761 | 4,20,37,0,83, | ||
4762 | 0,116,0,97,0, | ||
4763 | 116,0,101,0,66, | ||
4764 | 0,111,0,100,0, | ||
4765 | 121,0,1,-1,1, | ||
4766 | 5,1403,20,1404,4, | ||
4767 | 22,83,0,116,0, | ||
4768 | 97,0,116,0,101, | ||
4769 | 0,66,0,111,0, | ||
4770 | 100,0,121,0,95, | ||
4771 | 0,50,0,1,154, | ||
4772 | 1,3,1,3,1, | ||
4773 | 2,1405,22,1,16, | ||
4774 | 1,2136,1406,17,1407, | ||
4775 | 15,1402,1,-1,1, | ||
4776 | 5,1408,20,1409,4, | ||
4777 | 22,83,0,116,0, | ||
4778 | 97,0,116,0,101, | ||
4779 | 0,66,0,111,0, | ||
4780 | 100,0,121,0,95, | ||
4781 | 0,49,0,1,153, | ||
4782 | 1,3,1,2,1, | ||
4783 | 1,1410,22,1,15, | ||
4784 | 1,1817,790,1,2037, | ||
4785 | 820,1,2038,739,1, | ||
4786 | 1385,803,1,2041,747, | ||
4787 | 1,2043,711,1,2173, | ||
4788 | 1411,16,0,611,1, | ||
4789 | 1847,829,1,14,1412, | ||
4790 | 19,153,1,14,1413, | ||
4791 | 5,87,1,504,982, | ||
4792 | 1,1513,1414,16,0, | ||
4793 | 493,1,1263,989,1, | ||
4794 | 9,995,1,10,1415, | ||
4795 | 17,1416,15,1417,4, | ||
4796 | 48,37,0,65,0, | ||
4797 | 114,0,103,0,117, | ||
4798 | 0,109,0,101,0, | ||
4799 | 110,0,116,0,68, | ||
4800 | 0,101,0,99,0, | ||
4801 | 108,0,97,0,114, | ||
4802 | 0,97,0,116,0, | ||
4803 | 105,0,111,0,110, | ||
4804 | 0,76,0,105,0, | ||
4805 | 115,0,116,0,1, | ||
4806 | -1,1,5,149,1, | ||
4807 | 0,1,0,1418,22, | ||
4808 | 1,18,1,262,1001, | ||
4809 | 1,1193,1295,1,19, | ||
4810 | 1007,1,20,1419,16, | ||
4811 | 0,151,1,1527,1008, | ||
4812 | 1,30,1420,17,1421, | ||
4813 | 15,1417,1,-1,1, | ||
4814 | 5,1422,20,1423,4, | ||
4815 | 50,65,0,114,0, | ||
4816 | 103,0,117,0,109, | ||
4817 | 0,101,0,110,0, | ||
4818 | 116,0,68,0,101, | ||
4819 | 0,99,0,108,0, | ||
4820 | 97,0,114,0,97, | ||
4821 | 0,116,0,105,0, | ||
4822 | 111,0,110,0,76, | ||
4823 | 0,105,0,115,0, | ||
4824 | 116,0,95,0,50, | ||
4825 | 0,1,157,1,3, | ||
4826 | 1,4,1,3,1424, | ||
4827 | 22,1,20,1,283, | ||
4828 | 1028,1,2046,1425,17, | ||
4829 | 1426,15,1417,1,-1, | ||
4830 | 1,5,1427,20,1428, | ||
4831 | 4,50,65,0,114, | ||
4832 | 0,103,0,117,0, | ||
4833 | 109,0,101,0,110, | ||
4834 | 0,116,0,68,0, | ||
4835 | 101,0,99,0,108, | ||
4836 | 0,97,0,114,0, | ||
4837 | 97,0,116,0,105, | ||
4838 | 0,111,0,110,0, | ||
4839 | 76,0,105,0,115, | ||
4840 | 0,116,0,95,0, | ||
4841 | 49,0,1,156,1, | ||
4842 | 3,1,2,1,1, | ||
4843 | 1429,22,1,19,1, | ||
4844 | 40,1022,1,41,1430, | ||
4845 | 17,1431,15,1432,4, | ||
4846 | 26,37,0,65,0, | ||
4847 | 114,0,103,0,117, | ||
4848 | 0,109,0,101,0, | ||
4849 | 110,0,116,0,76, | ||
4850 | 0,105,0,115,0, | ||
4851 | 116,0,1,-1,1, | ||
4852 | 5,451,1,0,1, | ||
4853 | 0,1433,22,1,113, | ||
4854 | 1,42,1434,17,1435, | ||
4855 | 15,1436,4,38,37, | ||
4856 | 0,69,0,120,0, | ||
4857 | 112,0,114,0,101, | ||
4858 | 0,115,0,115,0, | ||
4859 | 105,0,111,0,110, | ||
4860 | 0,65,0,114,0, | ||
4861 | 103,0,117,0,109, | ||
4862 | 0,101,0,110,0, | ||
4863 | 116,0,1,-1,1, | ||
4864 | 5,1437,20,1438,4, | ||
4865 | 40,69,0,120,0, | ||
4866 | 112,0,114,0,101, | ||
4867 | 0,115,0,115,0, | ||
4868 | 105,0,111,0,110, | ||
4869 | 0,65,0,114,0, | ||
4870 | 103,0,117,0,109, | ||
4871 | 0,101,0,110,0, | ||
4872 | 116,0,95,0,49, | ||
4873 | 0,1,251,1,3, | ||
4874 | 1,2,1,1,1439, | ||
4875 | 22,1,116,1,1298, | ||
4876 | 1033,1,44,1038,1, | ||
4877 | 47,1039,1,48,1045, | ||
4878 | 1,49,1051,1,50, | ||
4879 | 1056,1,51,1061,1, | ||
4880 | 305,1066,1,63,1073, | ||
4881 | 1,66,1079,1,67, | ||
4882 | 1084,1,68,1089,1, | ||
4883 | 69,1094,1,70,1099, | ||
4884 | 1,573,1104,1,574, | ||
4885 | 1440,17,1441,15,1432, | ||
4886 | 1,-1,1,5,1442, | ||
4887 | 20,1443,4,28,65, | ||
4888 | 0,114,0,103,0, | ||
4889 | 117,0,109,0,101, | ||
4890 | 0,110,0,116,0, | ||
4891 | 76,0,105,0,115, | ||
4892 | 0,116,0,95,0, | ||
4893 | 49,0,1,249,1, | ||
4894 | 3,1,2,1,1, | ||
4895 | 1444,22,1,114,1, | ||
4896 | 1011,1110,1,74,1116, | ||
4897 | 1,2084,1445,17,1446, | ||
4898 | 15,1417,1,-1,1, | ||
4899 | 5,149,1,0,1, | ||
4900 | 0,1418,1,328,1126, | ||
4901 | 1,1333,1131,1,82, | ||
4902 | 1136,1,2093,1447,16, | ||
4903 | 0,151,1,1092,1448, | ||
4904 | 16,0,453,1,1094, | ||
4905 | 1272,1,93,1159,1, | ||
4906 | 352,1207,1,1609,1449, | ||
4907 | 16,0,493,1,107, | ||
4908 | 1192,1,1112,1245,1, | ||
4909 | 1046,1121,1,1121,1176, | ||
4910 | 1,118,1181,1,371, | ||
4911 | 1186,1,373,1229,1, | ||
4912 | 375,1197,1,377,1202, | ||
4913 | 1,379,1278,1,380, | ||
4914 | 1217,1,883,1267,1, | ||
4915 | 383,1450,16,0,453, | ||
4916 | 1,386,1451,17,1452, | ||
4917 | 15,1432,1,-1,1, | ||
4918 | 5,1453,20,1454,4, | ||
4919 | 28,65,0,114,0, | ||
4920 | 103,0,117,0,109, | ||
4921 | 0,101,0,110,0, | ||
4922 | 116,0,76,0,105, | ||
4923 | 0,115,0,116,0, | ||
4924 | 95,0,50,0,1, | ||
4925 | 250,1,3,1,4, | ||
4926 | 1,3,1455,22,1, | ||
4927 | 115,1,130,1223,1, | ||
4928 | 143,1240,1,1557,1251, | ||
4929 | 1,403,1456,16,0, | ||
4930 | 527,1,1158,1256,1, | ||
4931 | 827,1212,1,381,1457, | ||
4932 | 17,1458,15,1432,1, | ||
4933 | -1,1,5,451,1, | ||
4934 | 0,1,0,1433,1, | ||
4935 | 157,1262,1,172,1283, | ||
4936 | 1,428,1459,16,0, | ||
4937 | 541,1,1438,1289,1, | ||
4938 | 188,1300,1,942,1316, | ||
4939 | 1,453,1460,16,0, | ||
4940 | 578,1,1962,1305,1, | ||
4941 | 2217,1461,17,1462,15, | ||
4942 | 1417,1,-1,1,5, | ||
4943 | 149,1,0,1,0, | ||
4944 | 1418,1,463,1342,1, | ||
4945 | 205,1311,1,2226,1463, | ||
4946 | 16,0,151,1,223, | ||
4947 | 1321,1,1228,1326,1, | ||
4948 | 476,1331,1,477,1014, | ||
4949 | 1,1482,1337,1,479, | ||
4950 | 1360,1,242,1350,1, | ||
4951 | 478,1355,1,1001,1365, | ||
4952 | 1,1002,1370,1,15, | ||
4953 | 1464,19,173,1,15, | ||
4954 | 1465,5,7,1,1431, | ||
4955 | 1466,16,0,410,1, | ||
4956 | 1112,1467,16,0,171, | ||
4957 | 1,1511,1468,16,0, | ||
4958 | 410,1,40,1469,16, | ||
4959 | 0,360,1,19,1007, | ||
4960 | 1,9,995,1,2232, | ||
4961 | 1470,16,0,364,1, | ||
4962 | 16,1471,19,136,1, | ||
4963 | 16,1472,5,122,1, | ||
4964 | 1257,1473,16,0,196, | ||
4965 | 1,1760,718,1,1762, | ||
4966 | 1474,16,0,242,1, | ||
4967 | 1763,1475,16,0,196, | ||
4968 | 1,1514,1476,16,0, | ||
4969 | 196,1,9,1477,16, | ||
4970 | 0,134,1,256,1478, | ||
4971 | 16,0,196,1,504, | ||
4972 | 1479,16,0,196,1, | ||
4973 | 277,1480,16,0,196, | ||
4974 | 1,2037,820,1,2038, | ||
4975 | 739,1,1788,1481,16, | ||
4976 | 0,196,1,32,1482, | ||
4977 | 16,0,196,1,2041, | ||
4978 | 747,1,2043,711,1, | ||
4979 | 1292,1483,16,0,196, | ||
4980 | 1,40,1484,16,0, | ||
4981 | 178,1,41,1485,16, | ||
4982 | 0,196,1,2050,1486, | ||
4983 | 17,1487,15,1488,4, | ||
4984 | 12,37,0,69,0, | ||
4985 | 118,0,101,0,110, | ||
4986 | 0,116,0,1,-1, | ||
4987 | 1,5,1489,20,1490, | ||
4988 | 4,16,69,0,118, | ||
4989 | 0,101,0,110,0, | ||
4990 | 116,0,95,0,51, | ||
4991 | 0,51,0,1,291, | ||
4992 | 1,3,1,2,1, | ||
4993 | 1,1491,22,1,156, | ||
4994 | 1,43,1492,16,0, | ||
4995 | 196,1,44,1493,16, | ||
4996 | 0,178,1,2053,1494, | ||
4997 | 17,1495,15,1488,1, | ||
4998 | -1,1,5,1496,20, | ||
4999 | 1497,4,16,69,0, | ||
5000 | 118,0,101,0,110, | ||
5001 | 0,116,0,95,0, | ||
5002 | 51,0,48,0,1, | ||
5003 | 288,1,3,1,2, | ||
5004 | 1,1,1498,22,1, | ||
5005 | 153,1,2054,1499,17, | ||
5006 | 1500,15,1488,1,-1, | ||
5007 | 1,5,1501,20,1502, | ||
5008 | 4,16,69,0,118, | ||
5009 | 0,101,0,110,0, | ||
5010 | 116,0,95,0,50, | ||
5011 | 0,57,0,1,287, | ||
5012 | 1,3,1,2,1, | ||
5013 | 1,1503,22,1,152, | ||
5014 | 1,2055,1504,17,1505, | ||
5015 | 15,1488,1,-1,1, | ||
5016 | 5,1506,20,1507,4, | ||
5017 | 16,69,0,118,0, | ||
5018 | 101,0,110,0,116, | ||
5019 | 0,95,0,50,0, | ||
5020 | 56,0,1,286,1, | ||
5021 | 3,1,2,1,1, | ||
5022 | 1508,22,1,151,1, | ||
5023 | 299,1509,16,0,196, | ||
5024 | 1,1993,1510,16,0, | ||
5025 | 196,1,2058,1511,17, | ||
5026 | 1512,15,1488,1,-1, | ||
5027 | 1,5,1513,20,1514, | ||
5028 | 4,16,69,0,118, | ||
5029 | 0,101,0,110,0, | ||
5030 | 116,0,95,0,50, | ||
5031 | 0,53,0,1,283, | ||
5032 | 1,3,1,2,1, | ||
5033 | 1,1515,22,1,148, | ||
5034 | 1,2059,1516,17,1517, | ||
5035 | 15,1488,1,-1,1, | ||
5036 | 5,1518,20,1519,4, | ||
5037 | 16,69,0,118,0, | ||
5038 | 101,0,110,0,116, | ||
5039 | 0,95,0,50,0, | ||
5040 | 52,0,1,282,1, | ||
5041 | 3,1,2,1,1, | ||
5042 | 1520,22,1,147,1, | ||
5043 | 52,1521,16,0,196, | ||
5044 | 1,2061,1522,17,1523, | ||
5045 | 15,1488,1,-1,1, | ||
5046 | 5,1524,20,1525,4, | ||
5047 | 16,69,0,118,0, | ||
5048 | 101,0,110,0,116, | ||
5049 | 0,95,0,50,0, | ||
5050 | 50,0,1,280,1, | ||
5051 | 3,1,2,1,1, | ||
5052 | 1526,22,1,145,1, | ||
5053 | 2062,1527,17,1528,15, | ||
5054 | 1488,1,-1,1,5, | ||
5055 | 1529,20,1530,4,16, | ||
5056 | 69,0,118,0,101, | ||
5057 | 0,110,0,116,0, | ||
5058 | 95,0,50,0,49, | ||
5059 | 0,1,279,1,3, | ||
5060 | 1,2,1,1,1531, | ||
5061 | 22,1,144,1,2063, | ||
5062 | 1532,17,1533,15,1488, | ||
5063 | 1,-1,1,5,1534, | ||
5064 | 20,1535,4,16,69, | ||
5065 | 0,118,0,101,0, | ||
5066 | 110,0,116,0,95, | ||
5067 | 0,50,0,48,0, | ||
5068 | 1,278,1,3,1, | ||
5069 | 2,1,1,1536,22, | ||
5070 | 1,143,1,2064,1537, | ||
5071 | 17,1538,15,1488,1, | ||
5072 | -1,1,5,1539,20, | ||
5073 | 1540,4,16,69,0, | ||
5074 | 118,0,101,0,110, | ||
5075 | 0,116,0,95,0, | ||
5076 | 49,0,57,0,1, | ||
5077 | 277,1,3,1,2, | ||
5078 | 1,1,1541,22,1, | ||
5079 | 142,1,2065,1542,17, | ||
5080 | 1543,15,1488,1,-1, | ||
5081 | 1,5,1544,20,1545, | ||
5082 | 4,16,69,0,118, | ||
5083 | 0,101,0,110,0, | ||
5084 | 116,0,95,0,49, | ||
5085 | 0,56,0,1,276, | ||
5086 | 1,3,1,2,1, | ||
5087 | 1,1546,22,1,141, | ||
5088 | 1,2066,1547,17,1548, | ||
5089 | 15,1488,1,-1,1, | ||
5090 | 5,1549,20,1550,4, | ||
5091 | 16,69,0,118,0, | ||
5092 | 101,0,110,0,116, | ||
5093 | 0,95,0,49,0, | ||
5094 | 55,0,1,275,1, | ||
5095 | 3,1,2,1,1, | ||
5096 | 1551,22,1,140,1, | ||
5097 | 2067,1552,17,1553,15, | ||
5098 | 1488,1,-1,1,5, | ||
5099 | 1554,20,1555,4,16, | ||
5100 | 69,0,118,0,101, | ||
5101 | 0,110,0,116,0, | ||
5102 | 95,0,49,0,54, | ||
5103 | 0,1,274,1,3, | ||
5104 | 1,2,1,1,1556, | ||
5105 | 22,1,139,1,1817, | ||
5106 | 790,1,1818,1557,16, | ||
5107 | 0,196,1,62,1558, | ||
5108 | 16,0,214,1,63, | ||
5109 | 1559,16,0,178,1, | ||
5110 | 2072,1560,17,1561,15, | ||
5111 | 1488,1,-1,1,5, | ||
5112 | 1562,20,1563,4,16, | ||
5113 | 69,0,118,0,101, | ||
5114 | 0,110,0,116,0, | ||
5115 | 95,0,49,0,49, | ||
5116 | 0,1,269,1,3, | ||
5117 | 1,2,1,1,1564, | ||
5118 | 22,1,134,1,2073, | ||
5119 | 1565,17,1566,15,1488, | ||
5120 | 1,-1,1,5,1567, | ||
5121 | 20,1568,4,16,69, | ||
5122 | 0,118,0,101,0, | ||
5123 | 110,0,116,0,95, | ||
5124 | 0,49,0,48,0, | ||
5125 | 1,268,1,3,1, | ||
5126 | 2,1,1,1569,22, | ||
5127 | 1,133,1,2074,1570, | ||
5128 | 17,1571,15,1488,1, | ||
5129 | -1,1,5,1572,20, | ||
5130 | 1573,4,14,69,0, | ||
5131 | 118,0,101,0,110, | ||
5132 | 0,116,0,95,0, | ||
5133 | 57,0,1,267,1, | ||
5134 | 3,1,2,1,1, | ||
5135 | 1574,22,1,132,1, | ||
5136 | 2075,1575,17,1576,15, | ||
5137 | 1488,1,-1,1,5, | ||
5138 | 1577,20,1578,4,14, | ||
5139 | 69,0,118,0,101, | ||
5140 | 0,110,0,116,0, | ||
5141 | 95,0,56,0,1, | ||
5142 | 266,1,3,1,2, | ||
5143 | 1,1,1579,22,1, | ||
5144 | 131,1,2076,1580,17, | ||
5145 | 1581,15,1488,1,-1, | ||
5146 | 1,5,1582,20,1583, | ||
5147 | 4,14,69,0,118, | ||
5148 | 0,101,0,110,0, | ||
5149 | 116,0,95,0,55, | ||
5150 | 0,1,265,1,3, | ||
5151 | 1,2,1,1,1584, | ||
5152 | 22,1,130,1,2077, | ||
5153 | 1585,17,1586,15,1488, | ||
5154 | 1,-1,1,5,1587, | ||
5155 | 20,1588,4,14,69, | ||
5156 | 0,118,0,101,0, | ||
5157 | 110,0,116,0,95, | ||
5158 | 0,54,0,1,264, | ||
5159 | 1,3,1,2,1, | ||
5160 | 1,1589,22,1,129, | ||
5161 | 1,2078,1590,17,1591, | ||
5162 | 15,1488,1,-1,1, | ||
5163 | 5,1592,20,1593,4, | ||
5164 | 14,69,0,118,0, | ||
5165 | 101,0,110,0,116, | ||
5166 | 0,95,0,53,0, | ||
5167 | 1,263,1,3,1, | ||
5168 | 2,1,1,1594,22, | ||
5169 | 1,128,1,71,1595, | ||
5170 | 16,0,196,1,1327, | ||
5171 | 1596,16,0,196,1, | ||
5172 | 2081,1597,17,1598,15, | ||
5173 | 1488,1,-1,1,5, | ||
5174 | 1599,20,1600,4,14, | ||
5175 | 69,0,118,0,101, | ||
5176 | 0,110,0,116,0, | ||
5177 | 95,0,50,0,1, | ||
5178 | 260,1,3,1,2, | ||
5179 | 1,1,1601,22,1, | ||
5180 | 125,1,2082,1602,17, | ||
5181 | 1603,15,1488,1,-1, | ||
5182 | 1,5,1604,20,1605, | ||
5183 | 4,14,69,0,118, | ||
5184 | 0,101,0,110,0, | ||
5185 | 116,0,95,0,49, | ||
5186 | 0,1,259,1,3, | ||
5187 | 1,2,1,1,1606, | ||
5188 | 22,1,124,1,2083, | ||
5189 | 1607,16,0,577,1, | ||
5190 | 76,1608,16,0,196, | ||
5191 | 1,1584,1609,16,0, | ||
5192 | 196,1,79,1610,16, | ||
5193 | 0,196,1,322,1611, | ||
5194 | 16,0,196,1,85, | ||
5195 | 1612,16,0,196,1, | ||
5196 | 89,1613,16,0,196, | ||
5197 | 1,1847,829,1,346, | ||
5198 | 1614,16,0,196,1, | ||
5199 | 97,1615,16,0,196, | ||
5200 | 1,1856,779,1,1857, | ||
5201 | 674,1,1858,680,1, | ||
5202 | 1859,685,1,1860,690, | ||
5203 | 1,1862,696,1,1864, | ||
5204 | 701,1,1866,706,1, | ||
5205 | 2052,1616,17,1617,15, | ||
5206 | 1488,1,-1,1,5, | ||
5207 | 1618,20,1619,4,16, | ||
5208 | 69,0,118,0,101, | ||
5209 | 0,110,0,116,0, | ||
5210 | 95,0,51,0,49, | ||
5211 | 0,1,289,1,3, | ||
5212 | 1,2,1,1,1620, | ||
5213 | 22,1,154,1,1115, | ||
5214 | 1621,16,0,196,1, | ||
5215 | 112,1622,16,0,196, | ||
5216 | 1,1870,724,1,1871, | ||
5217 | 729,1,2057,1623,17, | ||
5218 | 1624,15,1488,1,-1, | ||
5219 | 1,5,1625,20,1626, | ||
5220 | 4,16,69,0,118, | ||
5221 | 0,101,0,110,0, | ||
5222 | 116,0,95,0,50, | ||
5223 | 0,54,0,1,284, | ||
5224 | 1,3,1,2,1, | ||
5225 | 1,1627,22,1,149, | ||
5226 | 1,102,1628,16,0, | ||
5227 | 196,1,2060,1629,17, | ||
5228 | 1630,15,1488,1,-1, | ||
5229 | 1,5,1631,20,1632, | ||
5230 | 4,16,69,0,118, | ||
5231 | 0,101,0,110,0, | ||
5232 | 116,0,95,0,50, | ||
5233 | 0,51,0,1,281, | ||
5234 | 1,3,1,2,1, | ||
5235 | 1,1633,22,1,146, | ||
5236 | 1,124,1634,16,0, | ||
5237 | 196,1,2068,1635,17, | ||
5238 | 1636,15,1488,1,-1, | ||
5239 | 1,5,1637,20,1638, | ||
5240 | 4,16,69,0,118, | ||
5241 | 0,101,0,110,0, | ||
5242 | 116,0,95,0,49, | ||
5243 | 0,53,0,1,273, | ||
5244 | 1,3,1,2,1, | ||
5245 | 1,1639,22,1,138, | ||
5246 | 1,2069,1640,17,1641, | ||
5247 | 15,1488,1,-1,1, | ||
5248 | 5,1642,20,1643,4, | ||
5249 | 16,69,0,118,0, | ||
5250 | 101,0,110,0,116, | ||
5251 | 0,95,0,49,0, | ||
5252 | 52,0,1,272,1, | ||
5253 | 3,1,2,1,1, | ||
5254 | 1644,22,1,137,1, | ||
5255 | 2070,1645,17,1646,15, | ||
5256 | 1488,1,-1,1,5, | ||
5257 | 1647,20,1648,4,16, | ||
5258 | 69,0,118,0,101, | ||
5259 | 0,110,0,116,0, | ||
5260 | 95,0,49,0,51, | ||
5261 | 0,1,271,1,3, | ||
5262 | 1,2,1,1,1649, | ||
5263 | 22,1,136,1,2071, | ||
5264 | 1650,17,1651,15,1488, | ||
5265 | 1,-1,1,5,1652, | ||
5266 | 20,1653,4,16,69, | ||
5267 | 0,118,0,101,0, | ||
5268 | 110,0,116,0,95, | ||
5269 | 0,49,0,50,0, | ||
5270 | 1,270,1,3,1, | ||
5271 | 2,1,1,1654,22, | ||
5272 | 1,135,1,381,1655, | ||
5273 | 16,0,196,1,1637, | ||
5274 | 667,1,384,1656,16, | ||
5275 | 0,196,1,137,1657, | ||
5276 | 16,0,196,1,2080, | ||
5277 | 1658,17,1659,15,1488, | ||
5278 | 1,-1,1,5,1660, | ||
5279 | 20,1661,4,14,69, | ||
5280 | 0,118,0,101,0, | ||
5281 | 110,0,116,0,95, | ||
5282 | 0,51,0,1,261, | ||
5283 | 1,3,1,2,1, | ||
5284 | 1,1662,22,1,126, | ||
5285 | 1,1396,1663,16,0, | ||
5286 | 196,1,397,1664,16, | ||
5287 | 0,196,1,1152,1665, | ||
5288 | 16,0,196,1,151, | ||
5289 | 1666,16,0,196,1, | ||
5290 | 1559,1667,16,0,196, | ||
5291 | 1,1611,1668,16,0, | ||
5292 | 196,1,1667,1669,16, | ||
5293 | 0,251,1,1668,1670, | ||
5294 | 16,0,196,1,166, | ||
5295 | 1671,16,0,196,1, | ||
5296 | 1868,797,1,1385,803, | ||
5297 | 1,1432,1672,16,0, | ||
5298 | 196,1,2056,1673,17, | ||
5299 | 1674,15,1488,1,-1, | ||
5300 | 1,5,1675,20,1676, | ||
5301 | 4,16,69,0,118, | ||
5302 | 0,101,0,110,0, | ||
5303 | 116,0,95,0,50, | ||
5304 | 0,55,0,1,285, | ||
5305 | 1,3,1,2,1, | ||
5306 | 1,1677,22,1,150, | ||
5307 | 1,182,1678,16,0, | ||
5308 | 196,1,1187,1679,16, | ||
5309 | 0,196,1,422,1680, | ||
5310 | 16,0,196,1,1694, | ||
5311 | 771,1,447,1681,16, | ||
5312 | 0,196,1,199,1682, | ||
5313 | 16,0,196,1,1706, | ||
5314 | 1683,16,0,170,1, | ||
5315 | 1707,1684,16,0,196, | ||
5316 | 1,2079,1685,17,1686, | ||
5317 | 15,1488,1,-1,1, | ||
5318 | 5,1687,20,1688,4, | ||
5319 | 14,69,0,118,0, | ||
5320 | 101,0,110,0,116, | ||
5321 | 0,95,0,52,0, | ||
5322 | 1,262,1,3,1, | ||
5323 | 2,1,1,1689,22, | ||
5324 | 1,127,1,2216,1690, | ||
5325 | 16,0,620,1,1467, | ||
5326 | 761,1,1468,1691,16, | ||
5327 | 0,423,1,1469,1692, | ||
5328 | 16,0,196,1,217, | ||
5329 | 1693,16,0,196,1, | ||
5330 | 1222,1694,16,0,196, | ||
5331 | 1,2233,1695,16,0, | ||
5332 | 196,1,1732,1696,16, | ||
5333 | 0,196,1,463,1697, | ||
5334 | 16,0,196,1,236, | ||
5335 | 1698,16,0,196,1, | ||
5336 | 488,1699,16,0,196, | ||
5337 | 1,1639,1700,16,0, | ||
5338 | 196,1,2051,1701,17, | ||
5339 | 1702,15,1488,1,-1, | ||
5340 | 1,5,1703,20,1704, | ||
5341 | 4,16,69,0,118, | ||
5342 | 0,101,0,110,0, | ||
5343 | 116,0,95,0,51, | ||
5344 | 0,50,0,1,290, | ||
5345 | 1,3,1,2,1, | ||
5346 | 1,1705,22,1,155, | ||
5347 | 1,17,1706,19,156, | ||
5348 | 1,17,1707,5,95, | ||
5349 | 1,1,1708,17,1709, | ||
5350 | 15,1710,4,18,37, | ||
5351 | 0,84,0,121,0, | ||
5352 | 112,0,101,0,110, | ||
5353 | 0,97,0,109,0, | ||
5354 | 101,0,1,-1,1, | ||
5355 | 5,1711,20,1712,4, | ||
5356 | 20,84,0,121,0, | ||
5357 | 112,0,101,0,110, | ||
5358 | 0,97,0,109,0, | ||
5359 | 101,0,95,0,55, | ||
5360 | 0,1,258,1,3, | ||
5361 | 1,2,1,1,1713, | ||
5362 | 22,1,123,1,2, | ||
5363 | 1714,17,1715,15,1710, | ||
5364 | 1,-1,1,5,1716, | ||
5365 | 20,1717,4,20,84, | ||
5366 | 0,121,0,112,0, | ||
5367 | 101,0,110,0,97, | ||
5368 | 0,109,0,101,0, | ||
5369 | 95,0,54,0,1, | ||
5370 | 257,1,3,1,2, | ||
5371 | 1,1,1718,22,1, | ||
5372 | 122,1,3,1719,17, | ||
5373 | 1720,15,1710,1,-1, | ||
5374 | 1,5,1721,20,1722, | ||
5375 | 4,20,84,0,121, | ||
5376 | 0,112,0,101,0, | ||
5377 | 110,0,97,0,109, | ||
5378 | 0,101,0,95,0, | ||
5379 | 53,0,1,256,1, | ||
5380 | 3,1,2,1,1, | ||
5381 | 1723,22,1,121,1, | ||
5382 | 4,1724,17,1725,15, | ||
5383 | 1710,1,-1,1,5, | ||
5384 | 1726,20,1727,4,20, | ||
5385 | 84,0,121,0,112, | ||
5386 | 0,101,0,110,0, | ||
5387 | 97,0,109,0,101, | ||
5388 | 0,95,0,52,0, | ||
5389 | 1,255,1,3,1, | ||
5390 | 2,1,1,1728,22, | ||
5391 | 1,120,1,5,1729, | ||
5392 | 17,1730,15,1710,1, | ||
5393 | -1,1,5,1731,20, | ||
5394 | 1732,4,20,84,0, | ||
5395 | 121,0,112,0,101, | ||
5396 | 0,110,0,97,0, | ||
5397 | 109,0,101,0,95, | ||
5398 | 0,51,0,1,254, | ||
5399 | 1,3,1,2,1, | ||
5400 | 1,1733,22,1,119, | ||
5401 | 1,6,1734,17,1735, | ||
5402 | 15,1710,1,-1,1, | ||
5403 | 5,1736,20,1737,4, | ||
5404 | 20,84,0,121,0, | ||
5405 | 112,0,101,0,110, | ||
5406 | 0,97,0,109,0, | ||
5407 | 101,0,95,0,50, | ||
5408 | 0,1,253,1,3, | ||
5409 | 1,2,1,1,1738, | ||
5410 | 22,1,118,1,7, | ||
5411 | 1739,17,1740,15,1710, | ||
5412 | 1,-1,1,5,1741, | ||
5413 | 20,1742,4,20,84, | ||
5414 | 0,121,0,112,0, | ||
5415 | 101,0,110,0,97, | ||
5416 | 0,109,0,101,0, | ||
5417 | 95,0,49,0,1, | ||
5418 | 252,1,3,1,2, | ||
5419 | 1,1,1743,22,1, | ||
5420 | 117,1,1263,989,1, | ||
5421 | 9,995,1,10,1415, | ||
5422 | 1,262,1001,1,1769, | ||
5423 | 1744,16,0,307,1, | ||
5424 | 19,1007,1,20,1745, | ||
5425 | 16,0,163,1,1527, | ||
5426 | 1008,1,30,1420,1, | ||
5427 | 283,1028,1,504,982, | ||
5428 | 1,2046,1425,1,1010, | ||
5429 | 1746,16,0,553,1, | ||
5430 | 40,1022,1,41,1430, | ||
5431 | 1,42,1434,1,1298, | ||
5432 | 1033,1,44,1038,1, | ||
5433 | 47,1039,1,48,1045, | ||
5434 | 1,49,1051,1,50, | ||
5435 | 1056,1,51,1061,1, | ||
5436 | 305,1066,1,61,1747, | ||
5437 | 16,0,206,1,63, | ||
5438 | 1073,1,66,1079,1, | ||
5439 | 67,1084,1,68,1089, | ||
5440 | 1,69,1094,1,70, | ||
5441 | 1099,1,573,1104,1, | ||
5442 | 574,1440,1,1011,1110, | ||
5443 | 1,74,1116,1,2084, | ||
5444 | 1445,1,328,1126,1, | ||
5445 | 1333,1131,1,73,1748, | ||
5446 | 16,0,219,1,82, | ||
5447 | 1136,1,2093,1749,16, | ||
5448 | 0,528,1,1092,1750, | ||
5449 | 16,0,610,1,1094, | ||
5450 | 1272,1,93,1159,1, | ||
5451 | 352,1207,1,1609,1751, | ||
5452 | 16,0,582,1,107, | ||
5453 | 1192,1,1112,1245,1, | ||
5454 | 1046,1121,1,1121,1176, | ||
5455 | 1,118,1181,1,371, | ||
5456 | 1186,1,373,1229,1, | ||
5457 | 375,1197,1,377,1202, | ||
5458 | 1,827,1212,1,380, | ||
5459 | 1217,1,883,1267,1, | ||
5460 | 386,1451,1,130,1223, | ||
5461 | 1,379,1278,1,143, | ||
5462 | 1240,1,1557,1251,1, | ||
5463 | 1158,1256,1,381,1457, | ||
5464 | 1,157,1262,1,1674, | ||
5465 | 1752,16,0,154,1, | ||
5466 | 172,1283,1,1438,1289, | ||
5467 | 1,188,1300,1,942, | ||
5468 | 1316,1,1962,1305,1, | ||
5469 | 1713,1753,16,0,264, | ||
5470 | 1,2217,1461,1,463, | ||
5471 | 1342,1,205,1311,1, | ||
5472 | 2226,1754,16,0,283, | ||
5473 | 1,223,1321,1,1228, | ||
5474 | 1326,1,476,1331,1, | ||
5475 | 477,1014,1,1482,1337, | ||
5476 | 1,1193,1295,1,242, | ||
5477 | 1350,1,478,1355,1, | ||
5478 | 479,1360,1,1001,1365, | ||
5479 | 1,1002,1370,1,18, | ||
5480 | 1755,19,417,1,18, | ||
5481 | 1756,5,77,1,328, | ||
5482 | 1126,1,1333,1757,16, | ||
5483 | 0,415,1,1094,1272, | ||
5484 | 1,1438,1758,16,0, | ||
5485 | 415,1,223,1759,16, | ||
5486 | 0,415,1,428,1760, | ||
5487 | 16,0,415,1,118, | ||
5488 | 1761,16,0,415,1, | ||
5489 | 883,1762,16,0,415, | ||
5490 | 1,478,1355,1,453, | ||
5491 | 1763,16,0,415,1, | ||
5492 | 1001,1365,1,130,1764, | ||
5493 | 16,0,415,1,1112, | ||
5494 | 1245,1,242,1765,16, | ||
5495 | 0,415,1,1769,1766, | ||
5496 | 16,0,415,1,463, | ||
5497 | 1342,1,573,1104,1, | ||
5498 | 1228,1767,16,0,415, | ||
5499 | 1,1011,1110,1,1121, | ||
5500 | 1768,16,0,415,1, | ||
5501 | 143,1769,16,0,415, | ||
5502 | 1,352,1207,1,1674, | ||
5503 | 1770,16,0,415,1, | ||
5504 | 40,1022,1,477,1014, | ||
5505 | 1,42,1771,16,0, | ||
5506 | 415,1,479,1360,1, | ||
5507 | 44,1038,1,373,1229, | ||
5508 | 1,47,1039,1,48, | ||
5509 | 1045,1,49,1051,1, | ||
5510 | 50,1056,1,51,1061, | ||
5511 | 1,1482,1772,16,0, | ||
5512 | 415,1,380,1217,1, | ||
5513 | 157,1773,16,0,415, | ||
5514 | 1,476,1331,1,371, | ||
5515 | 1186,1,1366,1774,16, | ||
5516 | 0,415,1,2239,1775, | ||
5517 | 16,0,415,1,375, | ||
5518 | 1197,1,1010,1776,16, | ||
5519 | 0,415,1,63,1073, | ||
5520 | 1,1263,1777,16,0, | ||
5521 | 415,1,283,1028,1, | ||
5522 | 66,1079,1,67,1084, | ||
5523 | 1,68,1089,1,69, | ||
5524 | 1094,1,70,1099,1, | ||
5525 | 73,1778,16,0,415, | ||
5526 | 1,74,1116,1,494, | ||
5527 | 1779,16,0,415,1, | ||
5528 | 377,1202,1,172,1780, | ||
5529 | 16,0,415,1,1713, | ||
5530 | 1781,16,0,415,1, | ||
5531 | 188,1782,16,0,415, | ||
5532 | 1,82,1783,16,0, | ||
5533 | 415,1,262,1001,1, | ||
5534 | 504,982,1,305,1066, | ||
5535 | 1,1527,1784,16,0, | ||
5536 | 415,1,1565,1785,16, | ||
5537 | 0,415,1,403,1786, | ||
5538 | 16,0,415,1,827, | ||
5539 | 1787,16,0,415,1, | ||
5540 | 1046,1788,16,0,415, | ||
5541 | 1,93,1789,16,0, | ||
5542 | 415,1,1402,1790,16, | ||
5543 | 0,415,1,205,1791, | ||
5544 | 16,0,415,1,1298, | ||
5545 | 1792,16,0,415,1, | ||
5546 | 1002,1370,1,942,1793, | ||
5547 | 16,0,415,1,1193, | ||
5548 | 1794,16,0,415,1, | ||
5549 | 379,1278,1,1158,1795, | ||
5550 | 16,0,415,1,107, | ||
5551 | 1796,16,0,415,1, | ||
5552 | 19,1797,19,238,1, | ||
5553 | 19,1798,5,153,1, | ||
5554 | 1257,1799,16,0,236, | ||
5555 | 1,1760,718,1,256, | ||
5556 | 1800,16,0,236,1, | ||
5557 | 1763,1801,16,0,236, | ||
5558 | 1,1011,1110,1,1263, | ||
5559 | 1802,16,0,411,1, | ||
5560 | 494,1803,16,0,411, | ||
5561 | 1,1611,1804,16,0, | ||
5562 | 236,1,262,1001,1, | ||
5563 | 1769,1805,16,0,411, | ||
5564 | 1,504,1806,16,0, | ||
5565 | 236,1,1527,1807,16, | ||
5566 | 0,411,1,476,1331, | ||
5567 | 1,477,1014,1,277, | ||
5568 | 1808,16,0,236,1, | ||
5569 | 2037,820,1,2038,739, | ||
5570 | 1,1788,1809,16,0, | ||
5571 | 236,1,32,1810,16, | ||
5572 | 0,236,1,2041,747, | ||
5573 | 1,2043,711,1,1292, | ||
5574 | 1811,16,0,236,1, | ||
5575 | 1010,1812,16,0,411, | ||
5576 | 1,40,1022,1,41, | ||
5577 | 1813,16,0,236,1, | ||
5578 | 42,1814,16,0,411, | ||
5579 | 1,43,1815,16,0, | ||
5580 | 236,1,44,1038,1, | ||
5581 | 47,1039,1,48,1045, | ||
5582 | 1,49,1051,1,50, | ||
5583 | 1056,1,51,1061,1, | ||
5584 | 52,1816,16,0,236, | ||
5585 | 1,1559,1817,16,0, | ||
5586 | 236,1,305,1066,1, | ||
5587 | 1514,1818,16,0,236, | ||
5588 | 1,299,1819,16,0, | ||
5589 | 236,1,1817,790,1, | ||
5590 | 1818,1820,16,0,236, | ||
5591 | 1,283,1028,1,63, | ||
5592 | 1073,1,66,1079,1, | ||
5593 | 67,1084,1,68,1089, | ||
5594 | 1,69,1094,1,70, | ||
5595 | 1099,1,573,1104,1, | ||
5596 | 1327,1821,16,0,236, | ||
5597 | 1,73,1822,16,0, | ||
5598 | 411,1,74,1116,1, | ||
5599 | 71,1823,16,0,236, | ||
5600 | 1,76,1824,16,0, | ||
5601 | 236,1,328,1126,1, | ||
5602 | 1333,1825,16,0,411, | ||
5603 | 1,79,1826,16,0, | ||
5604 | 236,1,82,1827,16, | ||
5605 | 0,411,1,322,1828, | ||
5606 | 16,0,236,1,85, | ||
5607 | 1829,16,0,236,1, | ||
5608 | 89,1830,16,0,236, | ||
5609 | 1,1847,829,1,93, | ||
5610 | 1831,16,0,411,1, | ||
5611 | 346,1832,16,0,236, | ||
5612 | 1,97,1833,16,0, | ||
5613 | 236,1,1856,779,1, | ||
5614 | 1857,674,1,1858,680, | ||
5615 | 1,102,1834,16,0, | ||
5616 | 236,1,1860,690,1, | ||
5617 | 1862,696,1,1864,701, | ||
5618 | 1,1112,1245,1,1866, | ||
5619 | 706,1,1046,1835,16, | ||
5620 | 0,411,1,1115,1836, | ||
5621 | 16,0,236,1,112, | ||
5622 | 1837,16,0,236,1, | ||
5623 | 1870,724,1,1871,729, | ||
5624 | 1,1121,1838,16,0, | ||
5625 | 411,1,118,1839,16, | ||
5626 | 0,411,1,371,1186, | ||
5627 | 1,107,1840,16,0, | ||
5628 | 411,1,124,1841,16, | ||
5629 | 0,236,1,377,1202, | ||
5630 | 1,1298,1842,16,0, | ||
5631 | 411,1,827,1843,16, | ||
5632 | 0,411,1,380,1217, | ||
5633 | 1,130,1844,16,0, | ||
5634 | 411,1,1637,667,1, | ||
5635 | 384,1845,16,0,236, | ||
5636 | 1,373,1229,1,137, | ||
5637 | 1846,16,0,236,1, | ||
5638 | 352,1207,1,1396,1847, | ||
5639 | 16,0,236,1,143, | ||
5640 | 1848,16,0,411,1, | ||
5641 | 397,1849,16,0,236, | ||
5642 | 1,1402,1850,16,0, | ||
5643 | 411,1,1152,1851,16, | ||
5644 | 0,236,1,375,1197, | ||
5645 | 1,151,1852,16,0, | ||
5646 | 236,1,403,1853,16, | ||
5647 | 0,411,1,1158,1854, | ||
5648 | 16,0,411,1,1366, | ||
5649 | 1855,16,0,411,1, | ||
5650 | 381,1856,16,0,236, | ||
5651 | 1,157,1857,16,0, | ||
5652 | 411,1,883,1858,16, | ||
5653 | 0,411,1,1668,1859, | ||
5654 | 16,0,236,1,166, | ||
5655 | 1860,16,0,236,1, | ||
5656 | 379,1278,1,1674,1861, | ||
5657 | 16,0,411,1,1868, | ||
5658 | 797,1,172,1862,16, | ||
5659 | 0,411,1,1385,803, | ||
5660 | 1,1432,1863,16,0, | ||
5661 | 236,1,1584,1864,16, | ||
5662 | 0,236,1,182,1865, | ||
5663 | 16,0,236,1,1187, | ||
5664 | 1866,16,0,236,1, | ||
5665 | 422,1867,16,0,236, | ||
5666 | 1,1694,771,1,1193, | ||
5667 | 1868,16,0,411,1, | ||
5668 | 428,1869,16,0,411, | ||
5669 | 1,188,1870,16,0, | ||
5670 | 411,1,447,1871,16, | ||
5671 | 0,236,1,1094,1272, | ||
5672 | 1,199,1872,16,0, | ||
5673 | 236,1,1707,1873,16, | ||
5674 | 0,236,1,453,1874, | ||
5675 | 16,0,411,1,205, | ||
5676 | 1875,16,0,411,1, | ||
5677 | 1713,1876,16,0,411, | ||
5678 | 1,1565,1877,16,0, | ||
5679 | 411,1,1467,761,1, | ||
5680 | 1469,1878,16,0,236, | ||
5681 | 1,217,1879,16,0, | ||
5682 | 236,1,1222,1880,16, | ||
5683 | 0,236,1,942,1881, | ||
5684 | 16,0,411,1,1859, | ||
5685 | 685,1,223,1882,16, | ||
5686 | 0,411,1,1228,1883, | ||
5687 | 16,0,411,1,2233, | ||
5688 | 1884,16,0,236,1, | ||
5689 | 1732,1885,16,0,236, | ||
5690 | 1,1482,1886,16,0, | ||
5691 | 411,1,463,1887,16, | ||
5692 | 0,236,1,1438,1888, | ||
5693 | 16,0,411,1,2239, | ||
5694 | 1889,16,0,411,1, | ||
5695 | 236,1890,16,0,236, | ||
5696 | 1,488,1891,16,0, | ||
5697 | 236,1,1639,1892,16, | ||
5698 | 0,236,1,1993,1893, | ||
5699 | 16,0,236,1,242, | ||
5700 | 1894,16,0,411,1, | ||
5701 | 478,1355,1,479,1360, | ||
5702 | 1,1001,1365,1,1002, | ||
5703 | 1370,1,20,1895,19, | ||
5704 | 404,1,20,1896,5, | ||
5705 | 77,1,328,1897,16, | ||
5706 | 0,402,1,1333,1898, | ||
5707 | 16,0,402,1,1094, | ||
5708 | 1272,1,1438,1899,16, | ||
5709 | 0,402,1,223,1900, | ||
5710 | 16,0,402,1,428, | ||
5711 | 1901,16,0,402,1, | ||
5712 | 118,1902,16,0,402, | ||
5713 | 1,883,1903,16,0, | ||
5714 | 402,1,478,1355,1, | ||
5715 | 453,1904,16,0,402, | ||
5716 | 1,1001,1365,1,130, | ||
5717 | 1905,16,0,402,1, | ||
5718 | 1112,1245,1,242,1906, | ||
5719 | 16,0,402,1,1769, | ||
5720 | 1907,16,0,402,1, | ||
5721 | 463,1342,1,573,1104, | ||
5722 | 1,1228,1908,16,0, | ||
5723 | 402,1,1011,1110,1, | ||
5724 | 1121,1909,16,0,402, | ||
5725 | 1,143,1910,16,0, | ||
5726 | 402,1,352,1911,16, | ||
5727 | 0,402,1,1674,1912, | ||
5728 | 16,0,402,1,40, | ||
5729 | 1022,1,477,1014,1, | ||
5730 | 42,1913,16,0,402, | ||
5731 | 1,479,1360,1,44, | ||
5732 | 1038,1,373,1229,1, | ||
5733 | 47,1039,1,48,1045, | ||
5734 | 1,49,1051,1,50, | ||
5735 | 1056,1,51,1061,1, | ||
5736 | 1482,1914,16,0,402, | ||
5737 | 1,380,1217,1,157, | ||
5738 | 1915,16,0,402,1, | ||
5739 | 476,1331,1,371,1186, | ||
5740 | 1,1366,1916,16,0, | ||
5741 | 402,1,2239,1917,16, | ||
5742 | 0,402,1,375,1197, | ||
5743 | 1,1010,1918,16,0, | ||
5744 | 402,1,63,1073,1, | ||
5745 | 1263,1919,16,0,402, | ||
5746 | 1,283,1028,1,66, | ||
5747 | 1079,1,67,1084,1, | ||
5748 | 68,1089,1,69,1094, | ||
5749 | 1,70,1099,1,73, | ||
5750 | 1920,16,0,402,1, | ||
5751 | 74,1116,1,494,1921, | ||
5752 | 16,0,402,1,377, | ||
5753 | 1202,1,172,1922,16, | ||
5754 | 0,402,1,1713,1923, | ||
5755 | 16,0,402,1,188, | ||
5756 | 1924,16,0,402,1, | ||
5757 | 82,1925,16,0,402, | ||
5758 | 1,262,1001,1,504, | ||
5759 | 982,1,305,1066,1, | ||
5760 | 1527,1926,16,0,402, | ||
5761 | 1,1565,1927,16,0, | ||
5762 | 402,1,403,1928,16, | ||
5763 | 0,402,1,827,1929, | ||
5764 | 16,0,402,1,1046, | ||
5765 | 1930,16,0,402,1, | ||
5766 | 93,1931,16,0,402, | ||
5767 | 1,1402,1932,16,0, | ||
5768 | 402,1,205,1933,16, | ||
5769 | 0,402,1,1298,1934, | ||
5770 | 16,0,402,1,1002, | ||
5771 | 1370,1,942,1935,16, | ||
5772 | 0,402,1,1193,1936, | ||
5773 | 16,0,402,1,379, | ||
5774 | 1278,1,1158,1937,16, | ||
5775 | 0,402,1,107,1938, | ||
5776 | 16,0,402,1,21, | ||
5777 | 1939,19,395,1,21, | ||
5778 | 1940,5,77,1,328, | ||
5779 | 1941,16,0,393,1, | ||
5780 | 1333,1942,16,0,393, | ||
5781 | 1,1094,1272,1,1438, | ||
5782 | 1943,16,0,393,1, | ||
5783 | 223,1944,16,0,393, | ||
5784 | 1,428,1945,16,0, | ||
5785 | 393,1,118,1946,16, | ||
5786 | 0,393,1,883,1947, | ||
5787 | 16,0,393,1,478, | ||
5788 | 1355,1,453,1948,16, | ||
5789 | 0,393,1,1001,1365, | ||
5790 | 1,130,1949,16,0, | ||
5791 | 393,1,1112,1245,1, | ||
5792 | 242,1950,16,0,393, | ||
5793 | 1,1769,1951,16,0, | ||
5794 | 393,1,463,1342,1, | ||
5795 | 573,1104,1,1228,1952, | ||
5796 | 16,0,393,1,1011, | ||
5797 | 1110,1,1121,1953,16, | ||
5798 | 0,393,1,143,1954, | ||
5799 | 16,0,393,1,352, | ||
5800 | 1955,16,0,393,1, | ||
5801 | 1674,1956,16,0,393, | ||
5802 | 1,40,1022,1,477, | ||
5803 | 1014,1,42,1957,16, | ||
5804 | 0,393,1,479,1360, | ||
5805 | 1,44,1038,1,373, | ||
5806 | 1229,1,47,1039,1, | ||
5807 | 48,1045,1,49,1051, | ||
5808 | 1,50,1056,1,51, | ||
5809 | 1061,1,1482,1958,16, | ||
5810 | 0,393,1,380,1217, | ||
5811 | 1,157,1959,16,0, | ||
5812 | 393,1,476,1331,1, | ||
5813 | 371,1186,1,1366,1960, | ||
5814 | 16,0,393,1,2239, | ||
5815 | 1961,16,0,393,1, | ||
5816 | 375,1197,1,1010,1962, | ||
5817 | 16,0,393,1,63, | ||
5818 | 1073,1,1263,1963,16, | ||
5819 | 0,393,1,283,1028, | ||
5820 | 1,66,1079,1,67, | ||
5821 | 1084,1,68,1089,1, | ||
5822 | 69,1094,1,70,1099, | ||
5823 | 1,73,1964,16,0, | ||
5824 | 393,1,74,1116,1, | ||
5825 | 494,1965,16,0,393, | ||
5826 | 1,377,1202,1,172, | ||
5827 | 1966,16,0,393,1, | ||
5828 | 1713,1967,16,0,393, | ||
5829 | 1,188,1968,16,0, | ||
5830 | 393,1,82,1969,16, | ||
5831 | 0,393,1,262,1001, | ||
5832 | 1,504,982,1,305, | ||
5833 | 1066,1,1527,1970,16, | ||
5834 | 0,393,1,1565,1971, | ||
5835 | 16,0,393,1,403, | ||
5836 | 1972,16,0,393,1, | ||
5837 | 827,1973,16,0,393, | ||
5838 | 1,1046,1974,16,0, | ||
5839 | 393,1,93,1975,16, | ||
5840 | 0,393,1,1402,1976, | ||
5841 | 16,0,393,1,205, | ||
5842 | 1977,16,0,393,1, | ||
5843 | 1298,1978,16,0,393, | ||
5844 | 1,1002,1370,1,942, | ||
5845 | 1979,16,0,393,1, | ||
5846 | 1193,1980,16,0,393, | ||
5847 | 1,379,1278,1,1158, | ||
5848 | 1981,16,0,393,1, | ||
5849 | 107,1982,16,0,393, | ||
5850 | 1,22,1983,19,385, | ||
5851 | 1,22,1984,5,77, | ||
5852 | 1,328,1985,16,0, | ||
5853 | 383,1,1333,1986,16, | ||
5854 | 0,383,1,1094,1272, | ||
5855 | 1,1438,1987,16,0, | ||
5856 | 383,1,223,1988,16, | ||
5857 | 0,383,1,428,1989, | ||
5858 | 16,0,383,1,118, | ||
5859 | 1990,16,0,383,1, | ||
5860 | 883,1991,16,0,383, | ||
5861 | 1,478,1355,1,453, | ||
5862 | 1992,16,0,383,1, | ||
5863 | 1001,1365,1,130,1993, | ||
5864 | 16,0,383,1,1112, | ||
5865 | 1245,1,242,1994,16, | ||
5866 | 0,383,1,1769,1995, | ||
5867 | 16,0,383,1,463, | ||
5868 | 1342,1,573,1104,1, | ||
5869 | 1228,1996,16,0,383, | ||
5870 | 1,1011,1110,1,1121, | ||
5871 | 1997,16,0,383,1, | ||
5872 | 143,1998,16,0,383, | ||
5873 | 1,352,1999,16,0, | ||
5874 | 383,1,1674,2000,16, | ||
5875 | 0,383,1,40,1022, | ||
5876 | 1,477,1014,1,42, | ||
5877 | 2001,16,0,383,1, | ||
5878 | 479,1360,1,44,1038, | ||
5879 | 1,373,1229,1,47, | ||
5880 | 1039,1,48,1045,1, | ||
5881 | 49,1051,1,50,1056, | ||
5882 | 1,51,1061,1,1482, | ||
5883 | 2002,16,0,383,1, | ||
5884 | 380,1217,1,157,2003, | ||
5885 | 16,0,383,1,476, | ||
5886 | 1331,1,371,1186,1, | ||
5887 | 1366,2004,16,0,383, | ||
5888 | 1,2239,2005,16,0, | ||
5889 | 383,1,375,1197,1, | ||
5890 | 1010,2006,16,0,383, | ||
5891 | 1,63,1073,1,1263, | ||
5892 | 2007,16,0,383,1, | ||
5893 | 283,1028,1,66,1079, | ||
5894 | 1,67,1084,1,68, | ||
5895 | 1089,1,69,1094,1, | ||
5896 | 70,1099,1,73,2008, | ||
5897 | 16,0,383,1,74, | ||
5898 | 1116,1,494,2009,16, | ||
5899 | 0,383,1,377,1202, | ||
5900 | 1,172,2010,16,0, | ||
5901 | 383,1,1713,2011,16, | ||
5902 | 0,383,1,188,2012, | ||
5903 | 16,0,383,1,82, | ||
5904 | 2013,16,0,383,1, | ||
5905 | 262,1001,1,504,982, | ||
5906 | 1,305,1066,1,1527, | ||
5907 | 2014,16,0,383,1, | ||
5908 | 1565,2015,16,0,383, | ||
5909 | 1,403,2016,16,0, | ||
5910 | 383,1,827,2017,16, | ||
5911 | 0,383,1,1046,2018, | ||
5912 | 16,0,383,1,93, | ||
5913 | 2019,16,0,383,1, | ||
5914 | 1402,2020,16,0,383, | ||
5915 | 1,205,2021,16,0, | ||
5916 | 383,1,1298,2022,16, | ||
5917 | 0,383,1,1002,1370, | ||
5918 | 1,942,2023,16,0, | ||
5919 | 383,1,1193,2024,16, | ||
5920 | 0,383,1,379,1278, | ||
5921 | 1,1158,2025,16,0, | ||
5922 | 383,1,107,2026,16, | ||
5923 | 0,383,1,23,2027, | ||
5924 | 19,322,1,23,2028, | ||
5925 | 5,29,1,1637,667, | ||
5926 | 1,1856,779,1,1857, | ||
5927 | 674,1,1858,680,1, | ||
5928 | 1859,685,1,1860,690, | ||
5929 | 1,1862,696,1,1864, | ||
5930 | 701,1,1866,706,1, | ||
5931 | 1868,797,1,1760,718, | ||
5932 | 1,1870,724,1,1871, | ||
5933 | 729,1,1993,2029,16, | ||
5934 | 0,320,1,32,2030, | ||
5935 | 16,0,320,1,1788, | ||
5936 | 2031,16,0,320,1, | ||
5937 | 1467,761,1,1639,2032, | ||
5938 | 16,0,320,1,1694, | ||
5939 | 771,1,1817,790,1, | ||
5940 | 1818,2033,16,0,320, | ||
5941 | 1,2037,820,1,2038, | ||
5942 | 739,1,1385,803,1, | ||
5943 | 2041,747,1,2043,711, | ||
5944 | 1,1611,2034,16,0, | ||
5945 | 320,1,1732,2035,16, | ||
5946 | 0,320,1,1847,829, | ||
5947 | 1,24,2036,19,186, | ||
5948 | 1,24,2037,5,5, | ||
5949 | 1,44,2038,16,0, | ||
5950 | 184,1,377,2039,16, | ||
5951 | 0,439,1,40,2040, | ||
5952 | 16,0,623,1,63, | ||
5953 | 2041,16,0,208,1, | ||
5954 | 373,2042,16,0,435, | ||
5955 | 1,25,2043,19,305, | ||
5956 | 1,25,2044,5,154, | ||
5957 | 1,1257,2045,16,0, | ||
5958 | 522,1,1760,718,1, | ||
5959 | 256,2046,16,0,522, | ||
5960 | 1,1763,2047,16,0, | ||
5961 | 522,1,1011,1110,1, | ||
5962 | 1263,2048,16,0,303, | ||
5963 | 1,494,2049,16,0, | ||
5964 | 303,1,1611,2050,16, | ||
5965 | 0,522,1,262,1001, | ||
5966 | 1,1769,2051,16,0, | ||
5967 | 303,1,504,2052,16, | ||
5968 | 0,522,1,1527,2053, | ||
5969 | 16,0,303,1,476, | ||
5970 | 1331,1,477,1014,1, | ||
5971 | 277,2054,16,0,522, | ||
5972 | 1,2037,820,1,2038, | ||
5973 | 739,1,1788,2055,16, | ||
5974 | 0,522,1,32,2056, | ||
5975 | 16,0,522,1,2041, | ||
5976 | 747,1,2043,711,1, | ||
5977 | 1292,2057,16,0,522, | ||
5978 | 1,1010,2058,16,0, | ||
5979 | 303,1,40,1022,1, | ||
5980 | 41,2059,16,0,522, | ||
5981 | 1,42,2060,16,0, | ||
5982 | 303,1,43,2061,16, | ||
5983 | 0,522,1,44,1038, | ||
5984 | 1,47,1039,1,48, | ||
5985 | 1045,1,49,1051,1, | ||
5986 | 50,1056,1,51,1061, | ||
5987 | 1,52,2062,16,0, | ||
5988 | 522,1,1559,2063,16, | ||
5989 | 0,522,1,305,1066, | ||
5990 | 1,1514,2064,16,0, | ||
5991 | 522,1,299,2065,16, | ||
5992 | 0,522,1,1817,790, | ||
5993 | 1,1818,2066,16,0, | ||
5994 | 522,1,62,2067,16, | ||
5995 | 0,522,1,63,1073, | ||
5996 | 1,66,1079,1,67, | ||
5997 | 1084,1,68,1089,1, | ||
5998 | 69,1094,1,70,1099, | ||
5999 | 1,573,1104,1,1327, | ||
6000 | 2068,16,0,522,1, | ||
6001 | 73,2069,16,0,303, | ||
6002 | 1,74,1116,1,71, | ||
6003 | 2070,16,0,522,1, | ||
6004 | 76,2071,16,0,522, | ||
6005 | 1,328,1126,1,1333, | ||
6006 | 2072,16,0,303,1, | ||
6007 | 79,2073,16,0,522, | ||
6008 | 1,82,2074,16,0, | ||
6009 | 303,1,322,2075,16, | ||
6010 | 0,522,1,85,2076, | ||
6011 | 16,0,522,1,89, | ||
6012 | 2077,16,0,522,1, | ||
6013 | 1847,829,1,283,1028, | ||
6014 | 1,93,2078,16,0, | ||
6015 | 303,1,346,2079,16, | ||
6016 | 0,522,1,97,2080, | ||
6017 | 16,0,522,1,1856, | ||
6018 | 779,1,1857,674,1, | ||
6019 | 1858,680,1,102,2081, | ||
6020 | 16,0,522,1,1860, | ||
6021 | 690,1,1862,696,1, | ||
6022 | 1864,701,1,1112,1245, | ||
6023 | 1,1866,706,1,1046, | ||
6024 | 1121,1,1115,2082,16, | ||
6025 | 0,522,1,112,2083, | ||
6026 | 16,0,522,1,1870, | ||
6027 | 724,1,1871,729,1, | ||
6028 | 1121,2084,16,0,303, | ||
6029 | 1,118,1181,1,371, | ||
6030 | 1186,1,107,2085,16, | ||
6031 | 0,303,1,124,2086, | ||
6032 | 16,0,522,1,377, | ||
6033 | 1202,1,1298,2087,16, | ||
6034 | 0,303,1,827,2088, | ||
6035 | 16,0,303,1,380, | ||
6036 | 1217,1,130,1223,1, | ||
6037 | 1637,667,1,384,2089, | ||
6038 | 16,0,522,1,373, | ||
6039 | 1229,1,137,2090,16, | ||
6040 | 0,522,1,352,1207, | ||
6041 | 1,1396,2091,16,0, | ||
6042 | 522,1,143,2092,16, | ||
6043 | 0,303,1,397,2093, | ||
6044 | 16,0,522,1,1402, | ||
6045 | 2094,16,0,303,1, | ||
6046 | 1152,2095,16,0,522, | ||
6047 | 1,375,1197,1,151, | ||
6048 | 2096,16,0,522,1, | ||
6049 | 403,2097,16,0,303, | ||
6050 | 1,1158,2098,16,0, | ||
6051 | 303,1,1366,2099,16, | ||
6052 | 0,303,1,381,2100, | ||
6053 | 16,0,522,1,157, | ||
6054 | 2101,16,0,303,1, | ||
6055 | 883,2102,16,0,303, | ||
6056 | 1,1668,2103,16,0, | ||
6057 | 522,1,166,2104,16, | ||
6058 | 0,522,1,379,1278, | ||
6059 | 1,1674,2105,16,0, | ||
6060 | 303,1,1868,797,1, | ||
6061 | 172,1283,1,1385,803, | ||
6062 | 1,1432,2106,16,0, | ||
6063 | 522,1,1584,2107,16, | ||
6064 | 0,522,1,182,2108, | ||
6065 | 16,0,522,1,1187, | ||
6066 | 2109,16,0,522,1, | ||
6067 | 422,2110,16,0,522, | ||
6068 | 1,1694,771,1,1193, | ||
6069 | 2111,16,0,303,1, | ||
6070 | 428,2112,16,0,303, | ||
6071 | 1,188,1300,1,447, | ||
6072 | 2113,16,0,522,1, | ||
6073 | 1094,1272,1,199,2114, | ||
6074 | 16,0,522,1,1707, | ||
6075 | 2115,16,0,522,1, | ||
6076 | 453,2116,16,0,303, | ||
6077 | 1,205,2117,16,0, | ||
6078 | 303,1,1713,2118,16, | ||
6079 | 0,303,1,1565,2119, | ||
6080 | 16,0,303,1,1467, | ||
6081 | 761,1,1469,2120,16, | ||
6082 | 0,522,1,217,2121, | ||
6083 | 16,0,522,1,1222, | ||
6084 | 2122,16,0,522,1, | ||
6085 | 942,1316,1,1859,685, | ||
6086 | 1,223,2123,16,0, | ||
6087 | 303,1,1228,2124,16, | ||
6088 | 0,303,1,2233,2125, | ||
6089 | 16,0,522,1,1732, | ||
6090 | 2126,16,0,522,1, | ||
6091 | 1482,2127,16,0,303, | ||
6092 | 1,463,2128,16,0, | ||
6093 | 522,1,1438,2129,16, | ||
6094 | 0,303,1,2239,2130, | ||
6095 | 16,0,303,1,236, | ||
6096 | 2131,16,0,522,1, | ||
6097 | 488,2132,16,0,522, | ||
6098 | 1,1639,2133,16,0, | ||
6099 | 522,1,1993,2134,16, | ||
6100 | 0,522,1,242,2135, | ||
6101 | 16,0,303,1,478, | ||
6102 | 1355,1,479,1360,1, | ||
6103 | 1001,1365,1,1002,1370, | ||
6104 | 1,26,2136,19,349, | ||
6105 | 1,26,2137,5,77, | ||
6106 | 1,328,1126,1,1333, | ||
6107 | 2138,16,0,347,1, | ||
6108 | 1094,1272,1,1438,2139, | ||
6109 | 16,0,347,1,223, | ||
6110 | 2140,16,0,347,1, | ||
6111 | 428,2141,16,0,347, | ||
6112 | 1,118,1181,1,883, | ||
6113 | 2142,16,0,347,1, | ||
6114 | 478,1355,1,453,2143, | ||
6115 | 16,0,554,1,1001, | ||
6116 | 1365,1,130,1223,1, | ||
6117 | 1112,1245,1,242,2144, | ||
6118 | 16,0,347,1,1769, | ||
6119 | 2145,16,0,347,1, | ||
6120 | 463,1342,1,573,1104, | ||
6121 | 1,1228,2146,16,0, | ||
6122 | 347,1,1011,1110,1, | ||
6123 | 1121,2147,16,0,347, | ||
6124 | 1,143,2148,16,0, | ||
6125 | 347,1,352,1207,1, | ||
6126 | 1674,2149,16,0,347, | ||
6127 | 1,40,1022,1,477, | ||
6128 | 1014,1,42,2150,16, | ||
6129 | 0,347,1,479,1360, | ||
6130 | 1,44,1038,1,373, | ||
6131 | 1229,1,47,1039,1, | ||
6132 | 48,1045,1,49,1051, | ||
6133 | 1,50,1056,1,51, | ||
6134 | 1061,1,1482,2151,16, | ||
6135 | 0,347,1,380,1217, | ||
6136 | 1,157,2152,16,0, | ||
6137 | 347,1,476,1331,1, | ||
6138 | 371,1186,1,1366,2153, | ||
6139 | 16,0,347,1,2239, | ||
6140 | 2154,16,0,347,1, | ||
6141 | 375,1197,1,1010,2155, | ||
6142 | 16,0,347,1,63, | ||
6143 | 1073,1,1263,2156,16, | ||
6144 | 0,347,1,283,1028, | ||
6145 | 1,66,1079,1,67, | ||
6146 | 1084,1,68,1089,1, | ||
6147 | 69,1094,1,70,1099, | ||
6148 | 1,73,2157,16,0, | ||
6149 | 347,1,74,1116,1, | ||
6150 | 494,2158,16,0,584, | ||
6151 | 1,377,1202,1,172, | ||
6152 | 1283,1,1713,2159,16, | ||
6153 | 0,347,1,188,1300, | ||
6154 | 1,82,2160,16,0, | ||
6155 | 347,1,262,1001,1, | ||
6156 | 504,982,1,305,1066, | ||
6157 | 1,1527,2161,16,0, | ||
6158 | 347,1,1565,2162,16, | ||
6159 | 0,347,1,403,2163, | ||
6160 | 16,0,347,1,827, | ||
6161 | 2164,16,0,347,1, | ||
6162 | 1046,1121,1,93,2165, | ||
6163 | 16,0,347,1,1402, | ||
6164 | 2166,16,0,347,1, | ||
6165 | 205,2167,16,0,347, | ||
6166 | 1,1298,2168,16,0, | ||
6167 | 347,1,1002,1370,1, | ||
6168 | 942,1316,1,1193,2169, | ||
6169 | 16,0,347,1,379, | ||
6170 | 1278,1,1158,2170,16, | ||
6171 | 0,347,1,107,2171, | ||
6172 | 16,0,347,1,27, | ||
6173 | 2172,19,446,1,27, | ||
6174 | 2173,5,79,1,1584, | ||
6175 | 2174,16,0,444,1, | ||
6176 | 1639,2175,16,0,444, | ||
6177 | 1,1637,667,1,112, | ||
6178 | 2176,16,0,444,1, | ||
6179 | 1857,674,1,1858,680, | ||
6180 | 1,1859,685,1,1860, | ||
6181 | 690,1,1611,2177,16, | ||
6182 | 0,444,1,1862,696, | ||
6183 | 1,1864,701,1,1866, | ||
6184 | 706,1,2043,711,1, | ||
6185 | 124,2178,16,0,444, | ||
6186 | 1,1760,718,1,1870, | ||
6187 | 724,1,1871,729,1, | ||
6188 | 1763,2179,16,0,444, | ||
6189 | 1,1222,2180,16,0, | ||
6190 | 444,1,1993,2181,16, | ||
6191 | 0,444,1,1115,2182, | ||
6192 | 16,0,444,1,447, | ||
6193 | 2183,16,0,444,1, | ||
6194 | 1187,2184,16,0,444, | ||
6195 | 1,137,2185,16,0, | ||
6196 | 444,1,2038,739,1, | ||
6197 | 346,2186,16,0,444, | ||
6198 | 1,32,2187,16,0, | ||
6199 | 444,1,1668,2188,16, | ||
6200 | 0,444,1,2041,747, | ||
6201 | 1,236,2189,16,0, | ||
6202 | 444,1,1514,2190,16, | ||
6203 | 0,444,1,256,2191, | ||
6204 | 16,0,444,1,41, | ||
6205 | 2192,16,0,444,1, | ||
6206 | 151,2193,16,0,444, | ||
6207 | 1,43,2194,16,0, | ||
6208 | 444,1,1732,2195,16, | ||
6209 | 0,444,1,384,2196, | ||
6210 | 16,0,444,1,1467, | ||
6211 | 761,1,52,2197,16, | ||
6212 | 0,444,1,2233,2198, | ||
6213 | 16,0,444,1,381, | ||
6214 | 2199,16,0,444,1, | ||
6215 | 166,2200,16,0,444, | ||
6216 | 1,1257,2201,16,0, | ||
6217 | 444,1,1694,771,1, | ||
6218 | 1432,2202,16,0,444, | ||
6219 | 1,1152,2203,16,0, | ||
6220 | 444,1,1856,779,1, | ||
6221 | 62,2204,16,0,444, | ||
6222 | 1,504,2205,16,0, | ||
6223 | 444,1,277,2206,16, | ||
6224 | 0,444,1,397,2207, | ||
6225 | 16,0,444,1,71, | ||
6226 | 2208,16,0,444,1, | ||
6227 | 1707,2209,16,0,444, | ||
6228 | 1,1817,790,1,1818, | ||
6229 | 2210,16,0,444,1, | ||
6230 | 1868,797,1,76,2211, | ||
6231 | 16,0,444,1,1385, | ||
6232 | 803,1,79,2212,16, | ||
6233 | 0,444,1,182,2213, | ||
6234 | 16,0,444,1,299, | ||
6235 | 2214,16,0,444,1, | ||
6236 | 1559,2215,16,0,444, | ||
6237 | 1,85,2216,16,0, | ||
6238 | 444,1,488,2217,16, | ||
6239 | 0,444,1,1396,2218, | ||
6240 | 16,0,444,1,89, | ||
6241 | 2219,16,0,444,1, | ||
6242 | 199,2220,16,0,444, | ||
6243 | 1,463,2221,16,0, | ||
6244 | 444,1,1292,2222,16, | ||
6245 | 0,444,1,422,2223, | ||
6246 | 16,0,444,1,2037, | ||
6247 | 820,1,97,2224,16, | ||
6248 | 0,444,1,1469,2225, | ||
6249 | 16,0,444,1,1788, | ||
6250 | 2226,16,0,444,1, | ||
6251 | 102,2227,16,0,444, | ||
6252 | 1,1847,829,1,322, | ||
6253 | 2228,16,0,444,1, | ||
6254 | 1327,2229,16,0,444, | ||
6255 | 1,217,2230,16,0, | ||
6256 | 444,1,28,2231,19, | ||
6257 | 142,1,28,2232,5, | ||
6258 | 59,1,328,1126,1, | ||
6259 | 1094,1272,1,223,1321, | ||
6260 | 1,118,1181,1,883, | ||
6261 | 1267,1,1001,1365,1, | ||
6262 | 130,1223,1,1112,1245, | ||
6263 | 1,242,1350,1,352, | ||
6264 | 1207,1,463,1342,1, | ||
6265 | 573,1104,1,574,1440, | ||
6266 | 1,1011,1110,1,143, | ||
6267 | 1240,1,40,1022,1, | ||
6268 | 41,1430,1,42,1434, | ||
6269 | 1,479,1360,1,44, | ||
6270 | 1038,1,373,1229,1, | ||
6271 | 47,1039,1,157,1262, | ||
6272 | 1,49,1051,1,50, | ||
6273 | 1056,1,48,1045,1, | ||
6274 | 379,1278,1,380,1217, | ||
6275 | 1,51,1061,1,383, | ||
6276 | 2233,16,0,140,1, | ||
6277 | 371,1186,1,478,1355, | ||
6278 | 1,386,1451,1,375, | ||
6279 | 1197,1,172,1283,1, | ||
6280 | 262,1001,1,283,1028, | ||
6281 | 1,63,1073,1,67, | ||
6282 | 1084,1,68,1089,1, | ||
6283 | 69,1094,1,66,1079, | ||
6284 | 1,476,1331,1,477, | ||
6285 | 1014,1,74,1116,1, | ||
6286 | 377,1202,1,1002,1370, | ||
6287 | 1,70,1099,1,188, | ||
6288 | 1300,1,381,1457,1, | ||
6289 | 82,1136,1,504,982, | ||
6290 | 1,305,1066,1,827, | ||
6291 | 1212,1,93,1159,1, | ||
6292 | 205,1311,1,1046,1121, | ||
6293 | 1,942,1316,1,107, | ||
6294 | 1192,1,29,2234,19, | ||
6295 | 299,1,29,2235,5, | ||
6296 | 77,1,328,1126,1, | ||
6297 | 1333,2236,16,0,297, | ||
6298 | 1,1094,1272,1,1438, | ||
6299 | 2237,16,0,297,1, | ||
6300 | 223,2238,16,0,297, | ||
6301 | 1,428,2239,16,0, | ||
6302 | 297,1,118,1181,1, | ||
6303 | 883,2240,16,0,297, | ||
6304 | 1,478,1355,1,453, | ||
6305 | 2241,16,0,297,1, | ||
6306 | 1001,1365,1,130,1223, | ||
6307 | 1,1112,1245,1,242, | ||
6308 | 2242,16,0,297,1, | ||
6309 | 1769,2243,16,0,297, | ||
6310 | 1,463,1342,1,573, | ||
6311 | 1104,1,1228,2244,16, | ||
6312 | 0,297,1,1011,1110, | ||
6313 | 1,1121,2245,16,0, | ||
6314 | 297,1,143,1240,1, | ||
6315 | 352,1207,1,1674,2246, | ||
6316 | 16,0,297,1,40, | ||
6317 | 1022,1,477,1014,1, | ||
6318 | 42,2247,16,0,297, | ||
6319 | 1,479,1360,1,44, | ||
6320 | 1038,1,373,1229,1, | ||
6321 | 47,1039,1,48,1045, | ||
6322 | 1,49,1051,1,50, | ||
6323 | 1056,1,51,1061,1, | ||
6324 | 1482,2248,16,0,297, | ||
6325 | 1,380,1217,1,157, | ||
6326 | 1262,1,476,1331,1, | ||
6327 | 371,1186,1,1366,2249, | ||
6328 | 16,0,297,1,2239, | ||
6329 | 2250,16,0,297,1, | ||
6330 | 375,1197,1,1010,2251, | ||
6331 | 16,0,297,1,63, | ||
6332 | 1073,1,1263,2252,16, | ||
6333 | 0,297,1,283,1028, | ||
6334 | 1,66,1079,1,67, | ||
6335 | 1084,1,68,1089,1, | ||
6336 | 69,1094,1,70,1099, | ||
6337 | 1,73,2253,16,0, | ||
6338 | 297,1,74,1116,1, | ||
6339 | 494,2254,16,0,297, | ||
6340 | 1,377,1202,1,172, | ||
6341 | 1283,1,1713,2255,16, | ||
6342 | 0,297,1,188,1300, | ||
6343 | 1,82,2256,16,0, | ||
6344 | 297,1,262,1001,1, | ||
6345 | 504,982,1,305,1066, | ||
6346 | 1,1527,2257,16,0, | ||
6347 | 297,1,1565,2258,16, | ||
6348 | 0,297,1,403,2259, | ||
6349 | 16,0,297,1,827, | ||
6350 | 2260,16,0,297,1, | ||
6351 | 1046,1121,1,93,2261, | ||
6352 | 16,0,297,1,1402, | ||
6353 | 2262,16,0,297,1, | ||
6354 | 205,2263,16,0,297, | ||
6355 | 1,1298,2264,16,0, | ||
6356 | 297,1,1002,1370,1, | ||
6357 | 942,1316,1,1193,2265, | ||
6358 | 16,0,297,1,379, | ||
6359 | 1278,1,1158,2266,16, | ||
6360 | 0,297,1,107,2267, | ||
6361 | 16,0,297,1,30, | ||
6362 | 2268,19,278,1,30, | ||
6363 | 2269,5,77,1,328, | ||
6364 | 1126,1,1333,2270,16, | ||
6365 | 0,276,1,1094,1272, | ||
6366 | 1,1438,2271,16,0, | ||
6367 | 276,1,223,2272,16, | ||
6368 | 0,276,1,428,2273, | ||
6369 | 16,0,276,1,118, | ||
6370 | 1181,1,883,2274,16, | ||
6371 | 0,276,1,478,1355, | ||
6372 | 1,453,2275,16,0, | ||
6373 | 276,1,1001,1365,1, | ||
6374 | 130,1223,1,1112,1245, | ||
6375 | 1,242,2276,16,0, | ||
6376 | 276,1,1769,2277,16, | ||
6377 | 0,276,1,463,1342, | ||
6378 | 1,573,1104,1,1228, | ||
6379 | 2278,16,0,276,1, | ||
6380 | 1011,1110,1,1121,2279, | ||
6381 | 16,0,276,1,143, | ||
6382 | 1240,1,352,1207,1, | ||
6383 | 1674,2280,16,0,276, | ||
6384 | 1,40,1022,1,477, | ||
6385 | 1014,1,42,2281,16, | ||
6386 | 0,276,1,479,1360, | ||
6387 | 1,44,1038,1,373, | ||
6388 | 1229,1,47,1039,1, | ||
6389 | 48,1045,1,49,1051, | ||
6390 | 1,50,1056,1,51, | ||
6391 | 1061,1,1482,2282,16, | ||
6392 | 0,276,1,380,1217, | ||
6393 | 1,157,1262,1,476, | ||
6394 | 1331,1,371,1186,1, | ||
6395 | 1366,2283,16,0,276, | ||
6396 | 1,2239,2284,16,0, | ||
6397 | 276,1,375,1197,1, | ||
6398 | 1010,2285,16,0,276, | ||
6399 | 1,63,1073,1,1263, | ||
6400 | 2286,16,0,276,1, | ||
6401 | 283,1028,1,66,1079, | ||
6402 | 1,67,1084,1,68, | ||
6403 | 1089,1,69,1094,1, | ||
6404 | 70,1099,1,73,2287, | ||
6405 | 16,0,276,1,74, | ||
6406 | 1116,1,494,2288,16, | ||
6407 | 0,276,1,377,1202, | ||
6408 | 1,172,1283,1,1713, | ||
6409 | 2289,16,0,276,1, | ||
6410 | 188,1300,1,82,2290, | ||
6411 | 16,0,276,1,262, | ||
6412 | 1001,1,504,982,1, | ||
6413 | 305,1066,1,1527,2291, | ||
6414 | 16,0,276,1,1565, | ||
6415 | 2292,16,0,276,1, | ||
6416 | 403,2293,16,0,276, | ||
6417 | 1,827,2294,16,0, | ||
6418 | 276,1,1046,1121,1, | ||
6419 | 93,2295,16,0,276, | ||
6420 | 1,1402,2296,16,0, | ||
6421 | 276,1,205,2297,16, | ||
6422 | 0,276,1,1298,2298, | ||
6423 | 16,0,276,1,1002, | ||
6424 | 1370,1,942,1316,1, | ||
6425 | 1193,2299,16,0,276, | ||
6426 | 1,379,1278,1,1158, | ||
6427 | 2300,16,0,276,1, | ||
6428 | 107,2301,16,0,276, | ||
6429 | 1,31,2302,19,269, | ||
6430 | 1,31,2303,5,77, | ||
6431 | 1,328,1126,1,1333, | ||
6432 | 2304,16,0,267,1, | ||
6433 | 1094,1272,1,1438,2305, | ||
6434 | 16,0,267,1,223, | ||
6435 | 2306,16,0,267,1, | ||
6436 | 428,2307,16,0,267, | ||
6437 | 1,118,1181,1,883, | ||
6438 | 2308,16,0,267,1, | ||
6439 | 478,1355,1,453,2309, | ||
6440 | 16,0,267,1,1001, | ||
6441 | 1365,1,130,1223,1, | ||
6442 | 1112,1245,1,242,2310, | ||
6443 | 16,0,267,1,1769, | ||
6444 | 2311,16,0,267,1, | ||
6445 | 463,1342,1,573,1104, | ||
6446 | 1,1228,2312,16,0, | ||
6447 | 267,1,1011,1110,1, | ||
6448 | 1121,2313,16,0,267, | ||
6449 | 1,143,2314,16,0, | ||
6450 | 267,1,352,1207,1, | ||
6451 | 1674,2315,16,0,267, | ||
6452 | 1,40,1022,1,477, | ||
6453 | 1014,1,42,2316,16, | ||
6454 | 0,267,1,479,1360, | ||
6455 | 1,44,1038,1,373, | ||
6456 | 1229,1,47,1039,1, | ||
6457 | 48,1045,1,49,1051, | ||
6458 | 1,50,1056,1,51, | ||
6459 | 1061,1,1482,2317,16, | ||
6460 | 0,267,1,380,1217, | ||
6461 | 1,157,2318,16,0, | ||
6462 | 267,1,476,1331,1, | ||
6463 | 371,1186,1,1366,2319, | ||
6464 | 16,0,267,1,2239, | ||
6465 | 2320,16,0,267,1, | ||
6466 | 375,1197,1,1010,2321, | ||
6467 | 16,0,267,1,63, | ||
6468 | 1073,1,1263,2322,16, | ||
6469 | 0,267,1,283,1028, | ||
6470 | 1,66,1079,1,67, | ||
6471 | 1084,1,68,1089,1, | ||
6472 | 69,1094,1,70,1099, | ||
6473 | 1,73,2323,16,0, | ||
6474 | 267,1,74,1116,1, | ||
6475 | 494,2324,16,0,267, | ||
6476 | 1,377,1202,1,172, | ||
6477 | 1283,1,1713,2325,16, | ||
6478 | 0,267,1,188,1300, | ||
6479 | 1,82,2326,16,0, | ||
6480 | 267,1,262,1001,1, | ||
6481 | 504,982,1,305,1066, | ||
6482 | 1,1527,2327,16,0, | ||
6483 | 267,1,1565,2328,16, | ||
6484 | 0,267,1,403,2329, | ||
6485 | 16,0,267,1,827, | ||
6486 | 2330,16,0,267,1, | ||
6487 | 1046,1121,1,93,2331, | ||
6488 | 16,0,267,1,1402, | ||
6489 | 2332,16,0,267,1, | ||
6490 | 205,2333,16,0,267, | ||
6491 | 1,1298,2334,16,0, | ||
6492 | 267,1,1002,1370,1, | ||
6493 | 942,1316,1,1193,2335, | ||
6494 | 16,0,267,1,379, | ||
6495 | 1278,1,1158,2336,16, | ||
6496 | 0,267,1,107,2337, | ||
6497 | 16,0,267,1,32, | ||
6498 | 2338,19,261,1,32, | ||
6499 | 2339,5,77,1,328, | ||
6500 | 1126,1,1333,2340,16, | ||
6501 | 0,259,1,1094,1272, | ||
6502 | 1,1438,2341,16,0, | ||
6503 | 259,1,223,2342,16, | ||
6504 | 0,259,1,428,2343, | ||
6505 | 16,0,259,1,118, | ||
6506 | 1181,1,883,2344,16, | ||
6507 | 0,259,1,478,1355, | ||
6508 | 1,453,2345,16,0, | ||
6509 | 259,1,1001,1365,1, | ||
6510 | 130,1223,1,1112,1245, | ||
6511 | 1,242,2346,16,0, | ||
6512 | 259,1,1769,2347,16, | ||
6513 | 0,259,1,463,1342, | ||
6514 | 1,573,1104,1,1228, | ||
6515 | 2348,16,0,259,1, | ||
6516 | 1011,1110,1,1121,2349, | ||
6517 | 16,0,259,1,143, | ||
6518 | 2350,16,0,259,1, | ||
6519 | 352,1207,1,1674,2351, | ||
6520 | 16,0,259,1,40, | ||
6521 | 1022,1,477,1014,1, | ||
6522 | 42,2352,16,0,259, | ||
6523 | 1,479,1360,1,44, | ||
6524 | 1038,1,373,1229,1, | ||
6525 | 47,1039,1,48,1045, | ||
6526 | 1,49,1051,1,50, | ||
6527 | 1056,1,51,1061,1, | ||
6528 | 1482,2353,16,0,259, | ||
6529 | 1,380,1217,1,157, | ||
6530 | 2354,16,0,259,1, | ||
6531 | 476,1331,1,371,1186, | ||
6532 | 1,1366,2355,16,0, | ||
6533 | 259,1,2239,2356,16, | ||
6534 | 0,259,1,375,1197, | ||
6535 | 1,1010,2357,16,0, | ||
6536 | 259,1,63,1073,1, | ||
6537 | 1263,2358,16,0,259, | ||
6538 | 1,283,1028,1,66, | ||
6539 | 1079,1,67,1084,1, | ||
6540 | 68,1089,1,69,1094, | ||
6541 | 1,70,1099,1,73, | ||
6542 | 2359,16,0,259,1, | ||
6543 | 74,1116,1,494,2360, | ||
6544 | 16,0,259,1,377, | ||
6545 | 1202,1,172,1283,1, | ||
6546 | 1713,2361,16,0,259, | ||
6547 | 1,188,1300,1,82, | ||
6548 | 2362,16,0,259,1, | ||
6549 | 262,1001,1,504,982, | ||
6550 | 1,305,1066,1,1527, | ||
6551 | 2363,16,0,259,1, | ||
6552 | 1565,2364,16,0,259, | ||
6553 | 1,403,2365,16,0, | ||
6554 | 259,1,827,2366,16, | ||
6555 | 0,259,1,1046,1121, | ||
6556 | 1,93,2367,16,0, | ||
6557 | 259,1,1402,2368,16, | ||
6558 | 0,259,1,205,2369, | ||
6559 | 16,0,259,1,1298, | ||
6560 | 2370,16,0,259,1, | ||
6561 | 1002,1370,1,942,1316, | ||
6562 | 1,1193,2371,16,0, | ||
6563 | 259,1,379,1278,1, | ||
6564 | 1158,2372,16,0,259, | ||
6565 | 1,107,2373,16,0, | ||
6566 | 259,1,33,2374,19, | ||
6567 | 370,1,33,2375,5, | ||
6568 | 77,1,328,1126,1, | ||
6569 | 1333,2376,16,0,368, | ||
6570 | 1,1094,1272,1,1438, | ||
6571 | 2377,16,0,368,1, | ||
6572 | 223,2378,16,0,368, | ||
6573 | 1,428,2379,16,0, | ||
6574 | 368,1,118,1181,1, | ||
6575 | 883,2380,16,0,368, | ||
6576 | 1,478,1355,1,453, | ||
6577 | 2381,16,0,368,1, | ||
6578 | 1001,1365,1,130,1223, | ||
6579 | 1,1112,1245,1,242, | ||
6580 | 1350,1,1769,2382,16, | ||
6581 | 0,368,1,463,1342, | ||
6582 | 1,573,1104,1,1228, | ||
6583 | 2383,16,0,368,1, | ||
6584 | 1011,1110,1,1121,2384, | ||
6585 | 16,0,368,1,143, | ||
6586 | 1240,1,352,1207,1, | ||
6587 | 1674,2385,16,0,368, | ||
6588 | 1,40,1022,1,477, | ||
6589 | 1014,1,42,2386,16, | ||
6590 | 0,368,1,479,1360, | ||
6591 | 1,44,1038,1,373, | ||
6592 | 1229,1,47,1039,1, | ||
6593 | 48,1045,1,49,1051, | ||
6594 | 1,50,1056,1,51, | ||
6595 | 1061,1,1482,2387,16, | ||
6596 | 0,368,1,380,1217, | ||
6597 | 1,157,1262,1,476, | ||
6598 | 1331,1,371,1186,1, | ||
6599 | 1366,2388,16,0,368, | ||
6600 | 1,2239,2389,16,0, | ||
6601 | 368,1,375,1197,1, | ||
6602 | 1010,2390,16,0,368, | ||
6603 | 1,63,1073,1,1263, | ||
6604 | 2391,16,0,368,1, | ||
6605 | 283,1028,1,66,1079, | ||
6606 | 1,67,1084,1,68, | ||
6607 | 1089,1,69,1094,1, | ||
6608 | 70,1099,1,73,2392, | ||
6609 | 16,0,368,1,74, | ||
6610 | 1116,1,494,2393,16, | ||
6611 | 0,368,1,377,1202, | ||
6612 | 1,172,1283,1,1713, | ||
6613 | 2394,16,0,368,1, | ||
6614 | 188,1300,1,82,2395, | ||
6615 | 16,0,368,1,262, | ||
6616 | 1001,1,504,982,1, | ||
6617 | 305,1066,1,1527,2396, | ||
6618 | 16,0,368,1,1565, | ||
6619 | 2397,16,0,368,1, | ||
6620 | 403,2398,16,0,368, | ||
6621 | 1,827,2399,16,0, | ||
6622 | 368,1,1046,1121,1, | ||
6623 | 93,2400,16,0,368, | ||
6624 | 1,1402,2401,16,0, | ||
6625 | 368,1,205,2402,16, | ||
6626 | 0,368,1,1298,2403, | ||
6627 | 16,0,368,1,1002, | ||
6628 | 1370,1,942,1316,1, | ||
6629 | 1193,2404,16,0,368, | ||
6630 | 1,379,1278,1,1158, | ||
6631 | 2405,16,0,368,1, | ||
6632 | 107,2406,16,0,368, | ||
6633 | 1,34,2407,19,363, | ||
6634 | 1,34,2408,5,77, | ||
6635 | 1,328,1126,1,1333, | ||
6636 | 2409,16,0,361,1, | ||
6637 | 1094,1272,1,1438,2410, | ||
6638 | 16,0,361,1,223, | ||
6639 | 1321,1,428,2411,16, | ||
6640 | 0,361,1,118,1181, | ||
6641 | 1,883,2412,16,0, | ||
6642 | 361,1,478,1355,1, | ||
6643 | 453,2413,16,0,361, | ||
6644 | 1,1001,1365,1,130, | ||
6645 | 1223,1,1112,1245,1, | ||
6646 | 242,1350,1,1769,2414, | ||
6647 | 16,0,361,1,463, | ||
6648 | 1342,1,573,1104,1, | ||
6649 | 1228,2415,16,0,361, | ||
6650 | 1,1011,1110,1,1121, | ||
6651 | 2416,16,0,361,1, | ||
6652 | 143,1240,1,352,1207, | ||
6653 | 1,1674,2417,16,0, | ||
6654 | 361,1,40,1022,1, | ||
6655 | 477,1014,1,42,2418, | ||
6656 | 16,0,361,1,479, | ||
6657 | 1360,1,44,1038,1, | ||
6658 | 373,1229,1,47,1039, | ||
6659 | 1,48,1045,1,49, | ||
6660 | 1051,1,50,1056,1, | ||
6661 | 51,1061,1,1482,2419, | ||
6662 | 16,0,361,1,380, | ||
6663 | 1217,1,157,1262,1, | ||
6664 | 476,1331,1,371,1186, | ||
6665 | 1,1366,2420,16,0, | ||
6666 | 361,1,2239,2421,16, | ||
6667 | 0,361,1,375,1197, | ||
6668 | 1,1010,2422,16,0, | ||
6669 | 361,1,63,1073,1, | ||
6670 | 1263,2423,16,0,361, | ||
6671 | 1,283,1028,1,66, | ||
6672 | 1079,1,67,1084,1, | ||
6673 | 68,1089,1,69,1094, | ||
6674 | 1,70,1099,1,73, | ||
6675 | 2424,16,0,361,1, | ||
6676 | 74,1116,1,494,2425, | ||
6677 | 16,0,361,1,377, | ||
6678 | 1202,1,172,1283,1, | ||
6679 | 1713,2426,16,0,361, | ||
6680 | 1,188,1300,1,82, | ||
6681 | 2427,16,0,361,1, | ||
6682 | 262,1001,1,504,982, | ||
6683 | 1,305,1066,1,1527, | ||
6684 | 2428,16,0,361,1, | ||
6685 | 1565,2429,16,0,361, | ||
6686 | 1,403,2430,16,0, | ||
6687 | 361,1,827,2431,16, | ||
6688 | 0,361,1,1046,1121, | ||
6689 | 1,93,2432,16,0, | ||
6690 | 361,1,1402,2433,16, | ||
6691 | 0,361,1,205,1311, | ||
6692 | 1,1298,2434,16,0, | ||
6693 | 361,1,1002,1370,1, | ||
6694 | 942,1316,1,1193,2435, | ||
6695 | 16,0,361,1,379, | ||
6696 | 1278,1,1158,2436,16, | ||
6697 | 0,361,1,107,2437, | ||
6698 | 16,0,361,1,35, | ||
6699 | 2438,19,356,1,35, | ||
6700 | 2439,5,77,1,328, | ||
6701 | 1126,1,1333,2440,16, | ||
6702 | 0,354,1,1094,1272, | ||
6703 | 1,1438,2441,16,0, | ||
6704 | 354,1,223,2442,16, | ||
6705 | 0,354,1,428,2443, | ||
6706 | 16,0,354,1,118, | ||
6707 | 1181,1,883,2444,16, | ||
6708 | 0,354,1,478,1355, | ||
6709 | 1,453,2445,16,0, | ||
6710 | 354,1,1001,1365,1, | ||
6711 | 130,1223,1,1112,1245, | ||
6712 | 1,242,1350,1,1769, | ||
6713 | 2446,16,0,354,1, | ||
6714 | 463,1342,1,573,1104, | ||
6715 | 1,1228,2447,16,0, | ||
6716 | 354,1,1011,1110,1, | ||
6717 | 1121,2448,16,0,354, | ||
6718 | 1,143,1240,1,352, | ||
6719 | 1207,1,1674,2449,16, | ||
6720 | 0,354,1,40,1022, | ||
6721 | 1,477,1014,1,42, | ||
6722 | 2450,16,0,354,1, | ||
6723 | 479,1360,1,44,1038, | ||
6724 | 1,373,1229,1,47, | ||
6725 | 1039,1,48,1045,1, | ||
6726 | 49,1051,1,50,1056, | ||
6727 | 1,51,1061,1,1482, | ||
6728 | 2451,16,0,354,1, | ||
6729 | 380,1217,1,157,1262, | ||
6730 | 1,476,1331,1,371, | ||
6731 | 1186,1,1366,2452,16, | ||
6732 | 0,354,1,2239,2453, | ||
6733 | 16,0,354,1,375, | ||
6734 | 1197,1,1010,2454,16, | ||
6735 | 0,354,1,63,1073, | ||
6736 | 1,1263,2455,16,0, | ||
6737 | 354,1,283,1028,1, | ||
6738 | 66,1079,1,67,1084, | ||
6739 | 1,68,1089,1,69, | ||
6740 | 1094,1,70,1099,1, | ||
6741 | 73,2456,16,0,354, | ||
6742 | 1,74,1116,1,494, | ||
6743 | 2457,16,0,354,1, | ||
6744 | 377,1202,1,172,1283, | ||
6745 | 1,1713,2458,16,0, | ||
6746 | 354,1,188,1300,1, | ||
6747 | 82,2459,16,0,354, | ||
6748 | 1,262,1001,1,504, | ||
6749 | 982,1,305,1066,1, | ||
6750 | 1527,2460,16,0,354, | ||
6751 | 1,1565,2461,16,0, | ||
6752 | 354,1,403,2462,16, | ||
6753 | 0,354,1,827,2463, | ||
6754 | 16,0,354,1,1046, | ||
6755 | 1121,1,93,2464,16, | ||
6756 | 0,354,1,1402,2465, | ||
6757 | 16,0,354,1,205, | ||
6758 | 1311,1,1298,2466,16, | ||
6759 | 0,354,1,1002,1370, | ||
6760 | 1,942,1316,1,1193, | ||
6761 | 2467,16,0,354,1, | ||
6762 | 379,1278,1,1158,2468, | ||
6763 | 16,0,354,1,107, | ||
6764 | 2469,16,0,354,1, | ||
6765 | 36,2470,19,229,1, | ||
6766 | 36,2471,5,78,1, | ||
6767 | 1584,2472,16,0,227, | ||
6768 | 1,1639,2473,16,0, | ||
6769 | 227,1,1637,667,1, | ||
6770 | 112,2474,16,0,227, | ||
6771 | 1,1857,674,1,1858, | ||
6772 | 680,1,1859,685,1, | ||
6773 | 1860,690,1,1862,696, | ||
6774 | 1,1864,701,1,1866, | ||
6775 | 706,1,2043,711,1, | ||
6776 | 124,2475,16,0,227, | ||
6777 | 1,1760,718,1,1870, | ||
6778 | 724,1,1871,729,1, | ||
6779 | 1763,2476,16,0,227, | ||
6780 | 1,1222,2477,16,0, | ||
6781 | 227,1,1993,2478,16, | ||
6782 | 0,227,1,1115,2479, | ||
6783 | 16,0,227,1,447, | ||
6784 | 2480,16,0,227,1, | ||
6785 | 1187,2481,16,0,227, | ||
6786 | 1,137,2482,16,0, | ||
6787 | 227,1,2038,739,1, | ||
6788 | 346,2483,16,0,227, | ||
6789 | 1,32,2484,16,0, | ||
6790 | 227,1,1668,2485,16, | ||
6791 | 0,227,1,2041,747, | ||
6792 | 1,236,2486,16,0, | ||
6793 | 227,1,1514,2487,16, | ||
6794 | 0,227,1,256,2488, | ||
6795 | 16,0,227,1,41, | ||
6796 | 2489,16,0,227,1, | ||
6797 | 151,2490,16,0,227, | ||
6798 | 1,43,2491,16,0, | ||
6799 | 227,1,1732,2492,16, | ||
6800 | 0,227,1,384,2493, | ||
6801 | 16,0,227,1,1467, | ||
6802 | 761,1,52,2494,16, | ||
6803 | 0,227,1,2233,2495, | ||
6804 | 16,0,227,1,381, | ||
6805 | 2496,16,0,227,1, | ||
6806 | 166,2497,16,0,227, | ||
6807 | 1,1257,2498,16,0, | ||
6808 | 227,1,1694,771,1, | ||
6809 | 1432,2499,16,0,227, | ||
6810 | 1,1152,2500,16,0, | ||
6811 | 227,1,1856,779,1, | ||
6812 | 1611,2501,16,0,227, | ||
6813 | 1,504,2502,16,0, | ||
6814 | 227,1,277,2503,16, | ||
6815 | 0,227,1,397,2504, | ||
6816 | 16,0,227,1,71, | ||
6817 | 2505,16,0,227,1, | ||
6818 | 1707,2506,16,0,227, | ||
6819 | 1,1817,790,1,1818, | ||
6820 | 2507,16,0,227,1, | ||
6821 | 1868,797,1,76,2508, | ||
6822 | 16,0,227,1,1385, | ||
6823 | 803,1,79,2509,16, | ||
6824 | 0,227,1,182,2510, | ||
6825 | 16,0,227,1,299, | ||
6826 | 2511,16,0,227,1, | ||
6827 | 1559,2512,16,0,227, | ||
6828 | 1,85,2513,16,0, | ||
6829 | 227,1,488,2514,16, | ||
6830 | 0,227,1,1396,2515, | ||
6831 | 16,0,227,1,89, | ||
6832 | 2516,16,0,227,1, | ||
6833 | 199,2517,16,0,227, | ||
6834 | 1,463,2518,16,0, | ||
6835 | 227,1,1292,2519,16, | ||
6836 | 0,227,1,422,2520, | ||
6837 | 16,0,227,1,2037, | ||
6838 | 820,1,97,2521,16, | ||
6839 | 0,227,1,1469,2522, | ||
6840 | 16,0,227,1,1788, | ||
6841 | 2523,16,0,227,1, | ||
6842 | 102,2524,16,0,227, | ||
6843 | 1,1847,829,1,322, | ||
6844 | 2525,16,0,227,1, | ||
6845 | 1327,2526,16,0,227, | ||
6846 | 1,217,2527,16,0, | ||
6847 | 227,1,37,2528,19, | ||
6848 | 250,1,37,2529,5, | ||
6849 | 78,1,1584,2530,16, | ||
6850 | 0,248,1,1639,2531, | ||
6851 | 16,0,248,1,1637, | ||
6852 | 667,1,112,2532,16, | ||
6853 | 0,248,1,1857,674, | ||
6854 | 1,1858,680,1,1859, | ||
6855 | 685,1,1860,690,1, | ||
6856 | 1862,696,1,1864,701, | ||
6857 | 1,1866,706,1,2043, | ||
6858 | 711,1,124,2533,16, | ||
6859 | 0,248,1,1760,718, | ||
6860 | 1,1870,724,1,1871, | ||
6861 | 729,1,1763,2534,16, | ||
6862 | 0,248,1,1222,2535, | ||
6863 | 16,0,248,1,1993, | ||
6864 | 2536,16,0,248,1, | ||
6865 | 1115,2537,16,0,248, | ||
6866 | 1,447,2538,16,0, | ||
6867 | 248,1,1187,2539,16, | ||
6868 | 0,248,1,137,2540, | ||
6869 | 16,0,248,1,2038, | ||
6870 | 739,1,346,2541,16, | ||
6871 | 0,248,1,32,2542, | ||
6872 | 16,0,248,1,1668, | ||
6873 | 2543,16,0,248,1, | ||
6874 | 2041,747,1,236,2544, | ||
6875 | 16,0,248,1,1514, | ||
6876 | 2545,16,0,248,1, | ||
6877 | 256,2546,16,0,248, | ||
6878 | 1,41,2547,16,0, | ||
6879 | 248,1,151,2548,16, | ||
6880 | 0,248,1,43,2549, | ||
6881 | 16,0,248,1,1732, | ||
6882 | 2550,16,0,248,1, | ||
6883 | 384,2551,16,0,248, | ||
6884 | 1,1467,761,1,52, | ||
6885 | 2552,16,0,248,1, | ||
6886 | 2233,2553,16,0,248, | ||
6887 | 1,381,2554,16,0, | ||
6888 | 248,1,166,2555,16, | ||
6889 | 0,248,1,1257,2556, | ||
6890 | 16,0,248,1,1694, | ||
6891 | 771,1,1432,2557,16, | ||
6892 | 0,248,1,1152,2558, | ||
6893 | 16,0,248,1,1856, | ||
6894 | 779,1,1611,2559,16, | ||
6895 | 0,248,1,504,2560, | ||
6896 | 16,0,248,1,277, | ||
6897 | 2561,16,0,248,1, | ||
6898 | 397,2562,16,0,248, | ||
6899 | 1,71,2563,16,0, | ||
6900 | 248,1,1707,2564,16, | ||
6901 | 0,248,1,1817,790, | ||
6902 | 1,1818,2565,16,0, | ||
6903 | 248,1,1868,797,1, | ||
6904 | 76,2566,16,0,248, | ||
6905 | 1,1385,803,1,79, | ||
6906 | 2567,16,0,248,1, | ||
6907 | 182,2568,16,0,248, | ||
6908 | 1,299,2569,16,0, | ||
6909 | 248,1,1559,2570,16, | ||
6910 | 0,248,1,85,2571, | ||
6911 | 16,0,248,1,488, | ||
6912 | 2572,16,0,248,1, | ||
6913 | 1396,2573,16,0,248, | ||
6914 | 1,89,2574,16,0, | ||
6915 | 248,1,199,2575,16, | ||
6916 | 0,248,1,463,2576, | ||
6917 | 16,0,248,1,1292, | ||
6918 | 2577,16,0,248,1, | ||
6919 | 422,2578,16,0,248, | ||
6920 | 1,2037,820,1,97, | ||
6921 | 2579,16,0,248,1, | ||
6922 | 1469,2580,16,0,248, | ||
6923 | 1,1788,2581,16,0, | ||
6924 | 248,1,102,2582,16, | ||
6925 | 0,248,1,1847,829, | ||
6926 | 1,322,2583,16,0, | ||
6927 | 248,1,1327,2584,16, | ||
6928 | 0,248,1,217,2585, | ||
6929 | 16,0,248,1,38, | ||
6930 | 2586,19,246,1,38, | ||
6931 | 2587,5,77,1,328, | ||
6932 | 1126,1,1333,2588,16, | ||
6933 | 0,244,1,1094,1272, | ||
6934 | 1,1438,2589,16,0, | ||
6935 | 244,1,223,1321,1, | ||
6936 | 428,2590,16,0,244, | ||
6937 | 1,118,1181,1,883, | ||
6938 | 1267,1,478,1355,1, | ||
6939 | 453,2591,16,0,244, | ||
6940 | 1,1001,1365,1,130, | ||
6941 | 1223,1,1112,1245,1, | ||
6942 | 242,1350,1,1769,2592, | ||
6943 | 16,0,244,1,463, | ||
6944 | 1342,1,573,1104,1, | ||
6945 | 1228,2593,16,0,244, | ||
6946 | 1,1011,1110,1,1121, | ||
6947 | 2594,16,0,244,1, | ||
6948 | 143,1240,1,352,1207, | ||
6949 | 1,1674,2595,16,0, | ||
6950 | 244,1,40,1022,1, | ||
6951 | 477,1014,1,42,2596, | ||
6952 | 16,0,244,1,479, | ||
6953 | 1360,1,44,1038,1, | ||
6954 | 373,1229,1,47,1039, | ||
6955 | 1,48,1045,1,49, | ||
6956 | 1051,1,50,1056,1, | ||
6957 | 51,1061,1,1482,2597, | ||
6958 | 16,0,244,1,380, | ||
6959 | 1217,1,157,1262,1, | ||
6960 | 476,1331,1,371,1186, | ||
6961 | 1,1366,2598,16,0, | ||
6962 | 244,1,2239,2599,16, | ||
6963 | 0,244,1,375,1197, | ||
6964 | 1,1010,2600,16,0, | ||
6965 | 244,1,63,1073,1, | ||
6966 | 1263,2601,16,0,244, | ||
6967 | 1,283,1028,1,66, | ||
6968 | 1079,1,67,1084,1, | ||
6969 | 68,1089,1,69,1094, | ||
6970 | 1,70,1099,1,73, | ||
6971 | 2602,16,0,244,1, | ||
6972 | 74,1116,1,494,2603, | ||
6973 | 16,0,244,1,377, | ||
6974 | 1202,1,172,1283,1, | ||
6975 | 1713,2604,16,0,244, | ||
6976 | 1,188,1300,1,82, | ||
6977 | 2605,16,0,244,1, | ||
6978 | 262,1001,1,504,982, | ||
6979 | 1,305,1066,1,1527, | ||
6980 | 2606,16,0,244,1, | ||
6981 | 1565,2607,16,0,244, | ||
6982 | 1,403,2608,16,0, | ||
6983 | 244,1,827,1212,1, | ||
6984 | 1046,1121,1,93,2609, | ||
6985 | 16,0,244,1,1402, | ||
6986 | 2610,16,0,244,1, | ||
6987 | 205,1311,1,1298,2611, | ||
6988 | 16,0,244,1,1002, | ||
6989 | 1370,1,942,1316,1, | ||
6990 | 1193,2612,16,0,244, | ||
6991 | 1,379,1278,1,1158, | ||
6992 | 2613,16,0,244,1, | ||
6993 | 107,2614,16,0,244, | ||
6994 | 1,39,2615,19,232, | ||
6995 | 1,39,2616,5,77, | ||
6996 | 1,328,1126,1,1333, | ||
6997 | 2617,16,0,230,1, | ||
6998 | 1094,1272,1,1438,2618, | ||
6999 | 16,0,230,1,223, | ||
7000 | 1321,1,428,2619,16, | ||
7001 | 0,230,1,118,1181, | ||
7002 | 1,883,1267,1,478, | ||
7003 | 1355,1,453,2620,16, | ||
7004 | 0,230,1,1001,1365, | ||
7005 | 1,130,1223,1,1112, | ||
7006 | 1245,1,242,1350,1, | ||
7007 | 1769,2621,16,0,230, | ||
7008 | 1,463,1342,1,573, | ||
7009 | 1104,1,1228,2622,16, | ||
7010 | 0,230,1,1011,1110, | ||
7011 | 1,1121,2623,16,0, | ||
7012 | 230,1,143,1240,1, | ||
7013 | 352,1207,1,1674,2624, | ||
7014 | 16,0,230,1,40, | ||
7015 | 1022,1,477,1014,1, | ||
7016 | 42,2625,16,0,230, | ||
7017 | 1,479,1360,1,44, | ||
7018 | 1038,1,373,1229,1, | ||
7019 | 47,1039,1,48,1045, | ||
7020 | 1,49,1051,1,50, | ||
7021 | 1056,1,51,1061,1, | ||
7022 | 1482,2626,16,0,230, | ||
7023 | 1,380,1217,1,157, | ||
7024 | 1262,1,476,1331,1, | ||
7025 | 371,1186,1,1366,2627, | ||
7026 | 16,0,230,1,2239, | ||
7027 | 2628,16,0,230,1, | ||
7028 | 375,1197,1,1010,2629, | ||
7029 | 16,0,230,1,63, | ||
7030 | 1073,1,1263,2630,16, | ||
7031 | 0,230,1,283,1028, | ||
7032 | 1,66,1079,1,67, | ||
7033 | 1084,1,68,1089,1, | ||
7034 | 69,1094,1,70,1099, | ||
7035 | 1,73,2631,16,0, | ||
7036 | 230,1,74,1116,1, | ||
7037 | 494,2632,16,0,230, | ||
7038 | 1,377,1202,1,172, | ||
7039 | 1283,1,1713,2633,16, | ||
7040 | 0,230,1,188,1300, | ||
7041 | 1,82,2634,16,0, | ||
7042 | 230,1,262,1001,1, | ||
7043 | 504,982,1,305,1066, | ||
7044 | 1,1527,2635,16,0, | ||
7045 | 230,1,1565,2636,16, | ||
7046 | 0,230,1,403,2637, | ||
7047 | 16,0,230,1,827, | ||
7048 | 1212,1,1046,1121,1, | ||
7049 | 93,2638,16,0,230, | ||
7050 | 1,1402,2639,16,0, | ||
7051 | 230,1,205,1311,1, | ||
7052 | 1298,2640,16,0,230, | ||
7053 | 1,1002,1370,1,942, | ||
7054 | 1316,1,1193,2641,16, | ||
7055 | 0,230,1,379,1278, | ||
7056 | 1,1158,2642,16,0, | ||
7057 | 230,1,107,2643,16, | ||
7058 | 0,230,1,40,2644, | ||
7059 | 19,223,1,40,2645, | ||
7060 | 5,77,1,328,1126, | ||
7061 | 1,1333,2646,16,0, | ||
7062 | 221,1,1094,1272,1, | ||
7063 | 1438,2647,16,0,221, | ||
7064 | 1,223,2648,16,0, | ||
7065 | 221,1,428,2649,16, | ||
7066 | 0,221,1,118,2650, | ||
7067 | 16,0,221,1,883, | ||
7068 | 2651,16,0,221,1, | ||
7069 | 478,1355,1,453,2652, | ||
7070 | 16,0,221,1,1001, | ||
7071 | 1365,1,130,2653,16, | ||
7072 | 0,221,1,1112,1245, | ||
7073 | 1,242,2654,16,0, | ||
7074 | 221,1,1769,2655,16, | ||
7075 | 0,221,1,463,1342, | ||
7076 | 1,573,1104,1,1228, | ||
7077 | 2656,16,0,221,1, | ||
7078 | 1011,1110,1,1121,2657, | ||
7079 | 16,0,221,1,143, | ||
7080 | 2658,16,0,221,1, | ||
7081 | 352,1207,1,1674,2659, | ||
7082 | 16,0,221,1,40, | ||
7083 | 1022,1,477,1014,1, | ||
7084 | 42,2660,16,0,221, | ||
7085 | 1,479,1360,1,44, | ||
7086 | 1038,1,373,1229,1, | ||
7087 | 47,1039,1,48,1045, | ||
7088 | 1,49,1051,1,50, | ||
7089 | 1056,1,51,1061,1, | ||
7090 | 1482,2661,16,0,221, | ||
7091 | 1,380,1217,1,157, | ||
7092 | 2662,16,0,221,1, | ||
7093 | 476,1331,1,371,1186, | ||
7094 | 1,1366,2663,16,0, | ||
7095 | 221,1,2239,2664,16, | ||
7096 | 0,221,1,375,1197, | ||
7097 | 1,1010,2665,16,0, | ||
7098 | 221,1,63,1073,1, | ||
7099 | 1263,2666,16,0,221, | ||
7100 | 1,283,1028,1,66, | ||
7101 | 1079,1,67,1084,1, | ||
7102 | 68,1089,1,69,1094, | ||
7103 | 1,70,1099,1,73, | ||
7104 | 2667,16,0,221,1, | ||
7105 | 74,1116,1,494,2668, | ||
7106 | 16,0,221,1,377, | ||
7107 | 1202,1,172,2669,16, | ||
7108 | 0,221,1,1713,2670, | ||
7109 | 16,0,221,1,188, | ||
7110 | 2671,16,0,221,1, | ||
7111 | 82,2672,16,0,221, | ||
7112 | 1,262,1001,1,504, | ||
7113 | 982,1,305,1066,1, | ||
7114 | 1527,2673,16,0,221, | ||
7115 | 1,1565,2674,16,0, | ||
7116 | 221,1,403,2675,16, | ||
7117 | 0,221,1,827,2676, | ||
7118 | 16,0,221,1,1046, | ||
7119 | 1121,1,93,2677,16, | ||
7120 | 0,221,1,1402,2678, | ||
7121 | 16,0,221,1,205, | ||
7122 | 2679,16,0,221,1, | ||
7123 | 1298,2680,16,0,221, | ||
7124 | 1,1002,1370,1,942, | ||
7125 | 1316,1,1193,2681,16, | ||
7126 | 0,221,1,379,1278, | ||
7127 | 1,1158,2682,16,0, | ||
7128 | 221,1,107,2683,16, | ||
7129 | 0,221,1,41,2684, | ||
7130 | 19,182,1,41,2685, | ||
7131 | 5,77,1,328,1126, | ||
7132 | 1,1333,2686,16,0, | ||
7133 | 180,1,1094,1272,1, | ||
7134 | 1438,2687,16,0,180, | ||
7135 | 1,223,2688,16,0, | ||
7136 | 180,1,428,2689,16, | ||
7137 | 0,180,1,118,2690, | ||
7138 | 16,0,180,1,883, | ||
7139 | 2691,16,0,180,1, | ||
7140 | 478,1355,1,453,2692, | ||
7141 | 16,0,180,1,1001, | ||
7142 | 1365,1,130,2693,16, | ||
7143 | 0,180,1,1112,1245, | ||
7144 | 1,242,2694,16,0, | ||
7145 | 180,1,1769,2695,16, | ||
7146 | 0,180,1,463,1342, | ||
7147 | 1,573,1104,1,1228, | ||
7148 | 2696,16,0,180,1, | ||
7149 | 1011,1110,1,1121,2697, | ||
7150 | 16,0,180,1,143, | ||
7151 | 2698,16,0,180,1, | ||
7152 | 352,1207,1,1674,2699, | ||
7153 | 16,0,180,1,40, | ||
7154 | 1022,1,477,1014,1, | ||
7155 | 42,2700,16,0,180, | ||
7156 | 1,479,1360,1,44, | ||
7157 | 1038,1,373,1229,1, | ||
7158 | 47,1039,1,48,1045, | ||
7159 | 1,49,1051,1,50, | ||
7160 | 1056,1,51,1061,1, | ||
7161 | 1482,2701,16,0,180, | ||
7162 | 1,380,1217,1,157, | ||
7163 | 2702,16,0,180,1, | ||
7164 | 476,1331,1,371,1186, | ||
7165 | 1,1366,2703,16,0, | ||
7166 | 180,1,2239,2704,16, | ||
7167 | 0,180,1,375,1197, | ||
7168 | 1,1010,2705,16,0, | ||
7169 | 180,1,63,1073,1, | ||
7170 | 1263,2706,16,0,180, | ||
7171 | 1,283,1028,1,66, | ||
7172 | 1079,1,67,1084,1, | ||
7173 | 68,1089,1,69,1094, | ||
7174 | 1,70,1099,1,73, | ||
7175 | 2707,16,0,180,1, | ||
7176 | 74,1116,1,494,2708, | ||
7177 | 16,0,180,1,377, | ||
7178 | 1202,1,172,2709,16, | ||
7179 | 0,180,1,1713,2710, | ||
7180 | 16,0,180,1,188, | ||
7181 | 2711,16,0,180,1, | ||
7182 | 82,2712,16,0,180, | ||
7183 | 1,262,1001,1,504, | ||
7184 | 982,1,305,1066,1, | ||
7185 | 1527,2713,16,0,180, | ||
7186 | 1,1565,2714,16,0, | ||
7187 | 180,1,403,2715,16, | ||
7188 | 0,180,1,827,2716, | ||
7189 | 16,0,180,1,1046, | ||
7190 | 1121,1,93,2717,16, | ||
7191 | 0,180,1,1402,2718, | ||
7192 | 16,0,180,1,205, | ||
7193 | 2719,16,0,180,1, | ||
7194 | 1298,2720,16,0,180, | ||
7195 | 1,1002,1370,1,942, | ||
7196 | 1316,1,1193,2721,16, | ||
7197 | 0,180,1,379,1278, | ||
7198 | 1,1158,2722,16,0, | ||
7199 | 180,1,107,2723,16, | ||
7200 | 0,180,1,42,2724, | ||
7201 | 19,241,1,42,2725, | ||
7202 | 5,29,1,1637,667, | ||
7203 | 1,1856,779,1,1857, | ||
7204 | 674,1,1858,680,1, | ||
7205 | 1859,685,1,1860,690, | ||
7206 | 1,1862,696,1,1864, | ||
7207 | 701,1,1866,706,1, | ||
7208 | 1868,797,1,1760,718, | ||
7209 | 1,1870,724,1,1871, | ||
7210 | 729,1,1993,2726,16, | ||
7211 | 0,239,1,32,2727, | ||
7212 | 16,0,239,1,1788, | ||
7213 | 2728,16,0,239,1, | ||
7214 | 1467,761,1,1639,2729, | ||
7215 | 16,0,239,1,1694, | ||
7216 | 771,1,1817,790,1, | ||
7217 | 1818,2730,16,0,239, | ||
7218 | 1,2037,820,1,2038, | ||
7219 | 739,1,1385,803,1, | ||
7220 | 2041,747,1,2043,711, | ||
7221 | 1,1611,2731,16,0, | ||
7222 | 239,1,1732,2732,16, | ||
7223 | 0,239,1,1847,829, | ||
7224 | 1,43,2733,19,295, | ||
7225 | 1,43,2734,5,20, | ||
7226 | 1,2043,711,1,2038, | ||
7227 | 739,1,1817,2735,16, | ||
7228 | 0,293,1,1760,718, | ||
7229 | 1,1856,779,1,1857, | ||
7230 | 674,1,1858,680,1, | ||
7231 | 1859,685,1,1860,690, | ||
7232 | 1,1862,696,1,1864, | ||
7233 | 701,1,1866,706,1, | ||
7234 | 1868,797,1,1870,724, | ||
7235 | 1,1871,729,1,1467, | ||
7236 | 761,1,1385,803,1, | ||
7237 | 1637,667,1,1694,771, | ||
7238 | 1,1847,829,1,44, | ||
7239 | 2736,19,600,1,44, | ||
7240 | 2737,5,29,1,1637, | ||
7241 | 667,1,1856,779,1, | ||
7242 | 1857,674,1,1858,680, | ||
7243 | 1,1859,685,1,1860, | ||
7244 | 690,1,1862,696,1, | ||
7245 | 1864,701,1,1866,706, | ||
7246 | 1,1868,797,1,1760, | ||
7247 | 718,1,1870,724,1, | ||
7248 | 1871,729,1,1993,2738, | ||
7249 | 16,0,598,1,32, | ||
7250 | 2739,16,0,598,1, | ||
7251 | 1788,2740,16,0,598, | ||
7252 | 1,1467,761,1,1639, | ||
7253 | 2741,16,0,598,1, | ||
7254 | 1694,771,1,1817,790, | ||
7255 | 1,1818,2742,16,0, | ||
7256 | 598,1,2037,820,1, | ||
7257 | 2038,739,1,1385,803, | ||
7258 | 1,2041,747,1,2043, | ||
7259 | 711,1,1611,2743,16, | ||
7260 | 0,598,1,1732,2744, | ||
7261 | 16,0,598,1,1847, | ||
7262 | 829,1,45,2745,19, | ||
7263 | 169,1,45,2746,5, | ||
7264 | 30,1,1637,667,1, | ||
7265 | 1856,779,1,1857,674, | ||
7266 | 1,1858,680,1,1859, | ||
7267 | 685,1,1860,690,1, | ||
7268 | 1862,696,1,1864,701, | ||
7269 | 1,1866,706,1,1868, | ||
7270 | 797,1,1760,718,1, | ||
7271 | 1870,724,1,1871,729, | ||
7272 | 1,1666,2747,16,0, | ||
7273 | 622,1,1993,2748,16, | ||
7274 | 0,167,1,32,2749, | ||
7275 | 16,0,167,1,1788, | ||
7276 | 2750,16,0,167,1, | ||
7277 | 1467,761,1,1639,2751, | ||
7278 | 16,0,167,1,1694, | ||
7279 | 771,1,1817,790,1, | ||
7280 | 1818,2752,16,0,167, | ||
7281 | 1,2037,820,1,2038, | ||
7282 | 739,1,1385,803,1, | ||
7283 | 2041,747,1,2043,711, | ||
7284 | 1,1611,2753,16,0, | ||
7285 | 167,1,1732,2754,16, | ||
7286 | 0,167,1,1847,829, | ||
7287 | 1,46,2755,19,422, | ||
7288 | 1,46,2756,5,29, | ||
7289 | 1,1637,667,1,1856, | ||
7290 | 779,1,1857,674,1, | ||
7291 | 1858,680,1,1859,685, | ||
7292 | 1,1860,690,1,1862, | ||
7293 | 696,1,1864,701,1, | ||
7294 | 1866,706,1,1868,797, | ||
7295 | 1,1760,718,1,1870, | ||
7296 | 724,1,1871,729,1, | ||
7297 | 1993,2757,16,0,420, | ||
7298 | 1,32,2758,16,0, | ||
7299 | 420,1,1788,2759,16, | ||
7300 | 0,420,1,1467,761, | ||
7301 | 1,1639,2760,16,0, | ||
7302 | 420,1,1694,771,1, | ||
7303 | 1817,790,1,1818,2761, | ||
7304 | 16,0,420,1,2037, | ||
7305 | 820,1,2038,739,1, | ||
7306 | 1385,803,1,2041,747, | ||
7307 | 1,2043,711,1,1611, | ||
7308 | 2762,16,0,420,1, | ||
7309 | 1732,2763,16,0,420, | ||
7310 | 1,1847,829,1,47, | ||
7311 | 2764,19,314,1,47, | ||
7312 | 2765,5,19,1,0, | ||
7313 | 2766,16,0,608,1, | ||
7314 | 2258,2767,17,2768,15, | ||
7315 | 2769,4,52,37,0, | ||
7316 | 71,0,108,0,111, | ||
7317 | 0,98,0,97,0, | ||
7318 | 108,0,86,0,97, | ||
7319 | 0,114,0,105,0, | ||
7320 | 97,0,98,0,108, | ||
7321 | 0,101,0,68,0, | ||
7322 | 101,0,99,0,108, | ||
7323 | 0,97,0,114,0, | ||
7324 | 97,0,116,0,105, | ||
7325 | 0,111,0,110,0, | ||
7326 | 1,-1,1,5,2770, | ||
7327 | 20,2771,4,54,71, | ||
7328 | 0,108,0,111,0, | ||
7329 | 98,0,97,0,108, | ||
7330 | 0,86,0,97,0, | ||
7331 | 114,0,105,0,97, | ||
7332 | 0,98,0,108,0, | ||
7333 | 101,0,68,0,101, | ||
7334 | 0,99,0,108,0, | ||
7335 | 97,0,114,0,97, | ||
7336 | 0,116,0,105,0, | ||
7337 | 111,0,110,0,95, | ||
7338 | 0,50,0,1,146, | ||
7339 | 1,3,1,5,1, | ||
7340 | 4,2772,22,1,8, | ||
7341 | 1,2045,2773,17,2774, | ||
7342 | 15,2775,4,50,37, | ||
7343 | 0,71,0,108,0, | ||
7344 | 111,0,98,0,97, | ||
7345 | 0,108,0,70,0, | ||
7346 | 117,0,110,0,99, | ||
7347 | 0,116,0,105,0, | ||
7348 | 111,0,110,0,68, | ||
7349 | 0,101,0,102,0, | ||
7350 | 105,0,110,0,105, | ||
7351 | 0,116,0,105,0, | ||
7352 | 111,0,110,0,1, | ||
7353 | -1,1,5,2776,20, | ||
7354 | 2777,4,52,71,0, | ||
7355 | 108,0,111,0,98, | ||
7356 | 0,97,0,108,0, | ||
7357 | 70,0,117,0,110, | ||
7358 | 0,99,0,116,0, | ||
7359 | 105,0,111,0,110, | ||
7360 | 0,68,0,101,0, | ||
7361 | 102,0,105,0,110, | ||
7362 | 0,105,0,116,0, | ||
7363 | 105,0,111,0,110, | ||
7364 | 0,95,0,50,0, | ||
7365 | 1,148,1,3,1, | ||
7366 | 7,1,6,2778,22, | ||
7367 | 1,10,1,2038,739, | ||
7368 | 1,2043,711,1,2230, | ||
7369 | 2779,17,2780,15,2775, | ||
7370 | 1,-1,1,5,2781, | ||
7371 | 20,2782,4,52,71, | ||
7372 | 0,108,0,111,0, | ||
7373 | 98,0,97,0,108, | ||
7374 | 0,70,0,117,0, | ||
7375 | 110,0,99,0,116, | ||
7376 | 0,105,0,111,0, | ||
7377 | 110,0,68,0,101, | ||
7378 | 0,102,0,105,0, | ||
7379 | 110,0,105,0,116, | ||
7380 | 0,105,0,111,0, | ||
7381 | 110,0,95,0,49, | ||
7382 | 0,1,147,1,3, | ||
7383 | 1,6,1,5,2783, | ||
7384 | 22,1,9,1,2269, | ||
7385 | 2784,17,2785,15,2769, | ||
7386 | 1,-1,1,5,2786, | ||
7387 | 20,2787,4,54,71, | ||
7388 | 0,108,0,111,0, | ||
7389 | 98,0,97,0,108, | ||
7390 | 0,86,0,97,0, | ||
7391 | 114,0,105,0,97, | ||
7392 | 0,98,0,108,0, | ||
7393 | 101,0,68,0,101, | ||
7394 | 0,99,0,108,0, | ||
7395 | 97,0,114,0,97, | ||
7396 | 0,116,0,105,0, | ||
7397 | 111,0,110,0,95, | ||
7398 | 0,49,0,1,145, | ||
7399 | 1,3,1,3,1, | ||
7400 | 2,2788,22,1,7, | ||
7401 | 1,2270,2789,16,0, | ||
7402 | 608,1,2209,658,1, | ||
7403 | 2281,2790,16,0,608, | ||
7404 | 1,2135,636,1,2211, | ||
7405 | 2791,16,0,608,1, | ||
7406 | 2214,642,1,2215,653, | ||
7407 | 1,2288,2792,17,2793, | ||
7408 | 15,2794,4,36,37, | ||
7409 | 0,71,0,108,0, | ||
7410 | 111,0,98,0,97, | ||
7411 | 0,108,0,68,0, | ||
7412 | 101,0,102,0,105, | ||
7413 | 0,110,0,105,0, | ||
7414 | 116,0,105,0,111, | ||
7415 | 0,110,0,115,0, | ||
7416 | 1,-1,1,5,2795, | ||
7417 | 20,2796,4,38,71, | ||
7418 | 0,108,0,111,0, | ||
7419 | 98,0,97,0,108, | ||
7420 | 0,68,0,101,0, | ||
7421 | 102,0,105,0,110, | ||
7422 | 0,105,0,116,0, | ||
7423 | 105,0,111,0,110, | ||
7424 | 0,115,0,95,0, | ||
7425 | 52,0,1,144,1, | ||
7426 | 3,1,3,1,2, | ||
7427 | 2797,22,1,6,1, | ||
7428 | 2289,2798,17,2799,15, | ||
7429 | 2794,1,-1,1,5, | ||
7430 | 2800,20,2801,4,38, | ||
7431 | 71,0,108,0,111, | ||
7432 | 0,98,0,97,0, | ||
7433 | 108,0,68,0,101, | ||
7434 | 0,102,0,105,0, | ||
7435 | 110,0,105,0,116, | ||
7436 | 0,105,0,111,0, | ||
7437 | 110,0,115,0,95, | ||
7438 | 0,50,0,1,142, | ||
7439 | 1,3,1,3,1, | ||
7440 | 2,2802,22,1,4, | ||
7441 | 1,2290,2803,17,2804, | ||
7442 | 15,2794,1,-1,1, | ||
7443 | 5,2805,20,2806,4, | ||
7444 | 38,71,0,108,0, | ||
7445 | 111,0,98,0,97, | ||
7446 | 0,108,0,68,0, | ||
7447 | 101,0,102,0,105, | ||
7448 | 0,110,0,105,0, | ||
7449 | 116,0,105,0,111, | ||
7450 | 0,110,0,115,0, | ||
7451 | 95,0,51,0,1, | ||
7452 | 143,1,3,1,2, | ||
7453 | 1,1,2807,22,1, | ||
7454 | 5,1,2291,2808,17, | ||
7455 | 2809,15,2794,1,-1, | ||
7456 | 1,5,2810,20,2811, | ||
7457 | 4,38,71,0,108, | ||
7458 | 0,111,0,98,0, | ||
7459 | 97,0,108,0,68, | ||
7460 | 0,101,0,102,0, | ||
7461 | 105,0,110,0,105, | ||
7462 | 0,116,0,105,0, | ||
7463 | 111,0,110,0,115, | ||
7464 | 0,95,0,49,0, | ||
7465 | 1,141,1,3,1, | ||
7466 | 2,1,1,2812,22, | ||
7467 | 1,3,1,1849,2813, | ||
7468 | 16,0,312,1,48, | ||
7469 | 2814,19,373,1,48, | ||
7470 | 2815,5,45,1,0, | ||
7471 | 2816,16,0,534,1, | ||
7472 | 2290,2803,1,2291,2808, | ||
7473 | 1,1856,779,1,1857, | ||
7474 | 674,1,1858,680,1, | ||
7475 | 1859,685,1,1860,690, | ||
7476 | 1,1862,696,1,1864, | ||
7477 | 701,1,1866,706,1, | ||
7478 | 1868,797,1,1760,718, | ||
7479 | 1,1870,724,1,1871, | ||
7480 | 729,1,2209,658,1, | ||
7481 | 1993,2817,16,0,371, | ||
7482 | 1,32,2818,16,0, | ||
7483 | 371,1,2214,642,1, | ||
7484 | 1467,761,1,2289,2798, | ||
7485 | 1,1788,2819,16,0, | ||
7486 | 371,1,2230,2779,1, | ||
7487 | 1637,667,1,1639,2820, | ||
7488 | 16,0,371,1,1694, | ||
7489 | 771,1,2135,636,1, | ||
7490 | 1817,790,1,1818,2821, | ||
7491 | 16,0,371,1,2037, | ||
7492 | 820,1,2038,739,1, | ||
7493 | 1385,803,1,2258,2767, | ||
7494 | 1,2041,747,1,2043, | ||
7495 | 711,1,2045,2773,1, | ||
7496 | 1611,2822,16,0,371, | ||
7497 | 1,2269,2784,1,2270, | ||
7498 | 2823,16,0,534,1, | ||
7499 | 1732,2824,16,0,371, | ||
7500 | 1,2281,2825,16,0, | ||
7501 | 534,1,2211,2826,16, | ||
7502 | 0,534,1,1847,829, | ||
7503 | 1,2215,653,1,2288, | ||
7504 | 2792,1,49,2827,19, | ||
7505 | 318,1,49,2828,5, | ||
7506 | 29,1,1637,667,1, | ||
7507 | 1856,779,1,1857,674, | ||
7508 | 1,1858,680,1,1859, | ||
7509 | 685,1,1860,690,1, | ||
7510 | 1862,696,1,1864,701, | ||
7511 | 1,1866,706,1,1868, | ||
7512 | 797,1,1760,718,1, | ||
7513 | 1870,724,1,1871,729, | ||
7514 | 1,1993,2829,16,0, | ||
7515 | 316,1,32,2830,16, | ||
7516 | 0,316,1,1788,2831, | ||
7517 | 16,0,316,1,1467, | ||
7518 | 761,1,1639,2832,16, | ||
7519 | 0,316,1,1694,771, | ||
7520 | 1,1817,790,1,1818, | ||
7521 | 2833,16,0,316,1, | ||
7522 | 2037,820,1,2038,739, | ||
7523 | 1,1385,803,1,2041, | ||
7524 | 747,1,2043,711,1, | ||
7525 | 1611,2834,16,0,316, | ||
7526 | 1,1732,2835,16,0, | ||
7527 | 316,1,1847,829,1, | ||
7528 | 50,2836,19,398,1, | ||
7529 | 50,2837,5,29,1, | ||
7530 | 1637,667,1,1856,779, | ||
7531 | 1,1857,674,1,1858, | ||
7532 | 680,1,1859,685,1, | ||
7533 | 1860,690,1,1862,696, | ||
7534 | 1,1864,701,1,1866, | ||
7535 | 706,1,1868,797,1, | ||
7536 | 1760,718,1,1870,724, | ||
7537 | 1,1871,729,1,1993, | ||
7538 | 2838,16,0,396,1, | ||
7539 | 32,2839,16,0,396, | ||
7540 | 1,1788,2840,16,0, | ||
7541 | 396,1,1467,761,1, | ||
7542 | 1639,2841,16,0,396, | ||
7543 | 1,1694,771,1,1817, | ||
7544 | 790,1,1818,2842,16, | ||
7545 | 0,396,1,2037,820, | ||
7546 | 1,2038,739,1,1385, | ||
7547 | 803,1,2041,747,1, | ||
7548 | 2043,711,1,1611,2843, | ||
7549 | 16,0,396,1,1732, | ||
7550 | 2844,16,0,396,1, | ||
7551 | 1847,829,1,51,2845, | ||
7552 | 19,127,1,51,2846, | ||
7553 | 5,47,1,0,2847, | ||
7554 | 16,0,125,1,2290, | ||
7555 | 2803,1,2291,2808,1, | ||
7556 | 1856,779,1,1857,674, | ||
7557 | 1,1858,680,1,1859, | ||
7558 | 685,1,1860,690,1, | ||
7559 | 1862,696,1,10,2848, | ||
7560 | 16,0,125,1,1864, | ||
7561 | 701,1,1866,706,1, | ||
7562 | 1868,797,1,1760,718, | ||
7563 | 1,1870,724,1,1871, | ||
7564 | 729,1,21,2849,16, | ||
7565 | 0,125,1,1993,2850, | ||
7566 | 16,0,125,1,32, | ||
7567 | 2851,16,0,125,1, | ||
7568 | 1467,761,1,2289,2798, | ||
7569 | 1,1788,2852,16,0, | ||
7570 | 125,1,2230,2779,1, | ||
7571 | 52,2853,16,0,125, | ||
7572 | 1,1637,667,1,1639, | ||
7573 | 2854,16,0,125,1, | ||
7574 | 1584,2855,16,0,125, | ||
7575 | 1,1694,771,1,2217, | ||
7576 | 2856,16,0,125,1, | ||
7577 | 1817,790,1,1818,2857, | ||
7578 | 16,0,125,1,2037, | ||
7579 | 820,1,2038,739,1, | ||
7580 | 1385,803,1,2258,2767, | ||
7581 | 1,2041,747,1,2084, | ||
7582 | 2858,16,0,125,1, | ||
7583 | 2043,711,1,2045,2773, | ||
7584 | 1,1611,2859,16,0, | ||
7585 | 125,1,1514,2860,16, | ||
7586 | 0,125,1,2269,2784, | ||
7587 | 1,2270,2861,16,0, | ||
7588 | 125,1,1732,2862,16, | ||
7589 | 0,125,1,1469,2863, | ||
7590 | 16,0,125,1,1847, | ||
7591 | 829,1,2288,2792,1, | ||
7592 | 52,2864,19,124,1, | ||
7593 | 52,2865,5,47,1, | ||
7594 | 0,2866,16,0,122, | ||
7595 | 1,2290,2803,1,2291, | ||
7596 | 2808,1,1856,779,1, | ||
7597 | 1857,674,1,1858,680, | ||
7598 | 1,1859,685,1,1860, | ||
7599 | 690,1,1862,696,1, | ||
7600 | 10,2867,16,0,122, | ||
7601 | 1,1864,701,1,1866, | ||
7602 | 706,1,1868,797,1, | ||
7603 | 1760,718,1,1870,724, | ||
7604 | 1,1871,729,1,21, | ||
7605 | 2868,16,0,122,1, | ||
7606 | 1993,2869,16,0,122, | ||
7607 | 1,32,2870,16,0, | ||
7608 | 122,1,1467,761,1, | ||
7609 | 2289,2798,1,1788,2871, | ||
7610 | 16,0,122,1,2230, | ||
7611 | 2779,1,52,2872,16, | ||
7612 | 0,122,1,1637,667, | ||
7613 | 1,1639,2873,16,0, | ||
7614 | 122,1,1584,2874,16, | ||
7615 | 0,122,1,1694,771, | ||
7616 | 1,2217,2875,16,0, | ||
7617 | 122,1,1817,790,1, | ||
7618 | 1818,2876,16,0,122, | ||
7619 | 1,2037,820,1,2038, | ||
7620 | 739,1,1385,803,1, | ||
7621 | 2258,2767,1,2041,747, | ||
7622 | 1,2084,2877,16,0, | ||
7623 | 122,1,2043,711,1, | ||
7624 | 2045,2773,1,1611,2878, | ||
7625 | 16,0,122,1,1514, | ||
7626 | 2879,16,0,122,1, | ||
7627 | 2269,2784,1,2270,2880, | ||
7628 | 16,0,122,1,1732, | ||
7629 | 2881,16,0,122,1, | ||
7630 | 1469,2882,16,0,122, | ||
7631 | 1,1847,829,1,2288, | ||
7632 | 2792,1,53,2883,19, | ||
7633 | 121,1,53,2884,5, | ||
7634 | 47,1,0,2885,16, | ||
7635 | 0,119,1,2290,2803, | ||
7636 | 1,2291,2808,1,1856, | ||
7637 | 779,1,1857,674,1, | ||
7638 | 1858,680,1,1859,685, | ||
7639 | 1,1860,690,1,1862, | ||
7640 | 696,1,10,2886,16, | ||
7641 | 0,119,1,1864,701, | ||
7642 | 1,1866,706,1,1868, | ||
7643 | 797,1,1760,718,1, | ||
7644 | 1870,724,1,1871,729, | ||
7645 | 1,21,2887,16,0, | ||
7646 | 119,1,1993,2888,16, | ||
7647 | 0,119,1,32,2889, | ||
7648 | 16,0,119,1,1467, | ||
7649 | 761,1,2289,2798,1, | ||
7650 | 1788,2890,16,0,119, | ||
7651 | 1,2230,2779,1,52, | ||
7652 | 2891,16,0,119,1, | ||
7653 | 1637,667,1,1639,2892, | ||
7654 | 16,0,119,1,1584, | ||
7655 | 2893,16,0,119,1, | ||
7656 | 1694,771,1,2217,2894, | ||
7657 | 16,0,119,1,1817, | ||
7658 | 790,1,1818,2895,16, | ||
7659 | 0,119,1,2037,820, | ||
7660 | 1,2038,739,1,1385, | ||
7661 | 803,1,2258,2767,1, | ||
7662 | 2041,747,1,2084,2896, | ||
7663 | 16,0,119,1,2043, | ||
7664 | 711,1,2045,2773,1, | ||
7665 | 1611,2897,16,0,119, | ||
7666 | 1,1514,2898,16,0, | ||
7667 | 119,1,2269,2784,1, | ||
7668 | 2270,2899,16,0,119, | ||
7669 | 1,1732,2900,16,0, | ||
7670 | 119,1,1469,2901,16, | ||
7671 | 0,119,1,1847,829, | ||
7672 | 1,2288,2792,1,54, | ||
7673 | 2902,19,118,1,54, | ||
7674 | 2903,5,47,1,0, | ||
7675 | 2904,16,0,116,1, | ||
7676 | 2290,2803,1,2291,2808, | ||
7677 | 1,1856,779,1,1857, | ||
7678 | 674,1,1858,680,1, | ||
7679 | 1859,685,1,1860,690, | ||
7680 | 1,1862,696,1,10, | ||
7681 | 2905,16,0,116,1, | ||
7682 | 1864,701,1,1866,706, | ||
7683 | 1,1868,797,1,1760, | ||
7684 | 718,1,1870,724,1, | ||
7685 | 1871,729,1,21,2906, | ||
7686 | 16,0,116,1,1993, | ||
7687 | 2907,16,0,116,1, | ||
7688 | 32,2908,16,0,116, | ||
7689 | 1,1467,761,1,2289, | ||
7690 | 2798,1,1788,2909,16, | ||
7691 | 0,116,1,2230,2779, | ||
7692 | 1,52,2910,16,0, | ||
7693 | 116,1,1637,667,1, | ||
7694 | 1639,2911,16,0,116, | ||
7695 | 1,1584,2912,16,0, | ||
7696 | 116,1,1694,771,1, | ||
7697 | 2217,2913,16,0,116, | ||
7698 | 1,1817,790,1,1818, | ||
7699 | 2914,16,0,116,1, | ||
7700 | 2037,820,1,2038,739, | ||
7701 | 1,1385,803,1,2258, | ||
7702 | 2767,1,2041,747,1, | ||
7703 | 2084,2915,16,0,116, | ||
7704 | 1,2043,711,1,2045, | ||
7705 | 2773,1,1611,2916,16, | ||
7706 | 0,116,1,1514,2917, | ||
7707 | 16,0,116,1,2269, | ||
7708 | 2784,1,2270,2918,16, | ||
7709 | 0,116,1,1732,2919, | ||
7710 | 16,0,116,1,1469, | ||
7711 | 2920,16,0,116,1, | ||
7712 | 1847,829,1,2288,2792, | ||
7713 | 1,55,2921,19,115, | ||
7714 | 1,55,2922,5,47, | ||
7715 | 1,0,2923,16,0, | ||
7716 | 113,1,2290,2803,1, | ||
7717 | 2291,2808,1,1856,779, | ||
7718 | 1,1857,674,1,1858, | ||
7719 | 680,1,1859,685,1, | ||
7720 | 1860,690,1,1862,696, | ||
7721 | 1,10,2924,16,0, | ||
7722 | 113,1,1864,701,1, | ||
7723 | 1866,706,1,1868,797, | ||
7724 | 1,1760,718,1,1870, | ||
7725 | 724,1,1871,729,1, | ||
7726 | 21,2925,16,0,113, | ||
7727 | 1,1993,2926,16,0, | ||
7728 | 113,1,32,2927,16, | ||
7729 | 0,113,1,1467,761, | ||
7730 | 1,2289,2798,1,1788, | ||
7731 | 2928,16,0,113,1, | ||
7732 | 2230,2779,1,52,2929, | ||
7733 | 16,0,113,1,1637, | ||
7734 | 667,1,1639,2930,16, | ||
7735 | 0,113,1,1584,2931, | ||
7736 | 16,0,113,1,1694, | ||
7737 | 771,1,2217,2932,16, | ||
7738 | 0,113,1,1817,790, | ||
7739 | 1,1818,2933,16,0, | ||
7740 | 113,1,2037,820,1, | ||
7741 | 2038,739,1,1385,803, | ||
7742 | 1,2258,2767,1,2041, | ||
7743 | 747,1,2084,2934,16, | ||
7744 | 0,113,1,2043,711, | ||
7745 | 1,2045,2773,1,1611, | ||
7746 | 2935,16,0,113,1, | ||
7747 | 1514,2936,16,0,113, | ||
7748 | 1,2269,2784,1,2270, | ||
7749 | 2937,16,0,113,1, | ||
7750 | 1732,2938,16,0,113, | ||
7751 | 1,1469,2939,16,0, | ||
7752 | 113,1,1847,829,1, | ||
7753 | 2288,2792,1,56,2940, | ||
7754 | 19,112,1,56,2941, | ||
7755 | 5,47,1,0,2942, | ||
7756 | 16,0,110,1,2290, | ||
7757 | 2803,1,2291,2808,1, | ||
7758 | 1856,779,1,1857,674, | ||
7759 | 1,1858,680,1,1859, | ||
7760 | 685,1,1860,690,1, | ||
7761 | 1862,696,1,10,2943, | ||
7762 | 16,0,110,1,1864, | ||
7763 | 701,1,1866,706,1, | ||
7764 | 1868,797,1,1760,718, | ||
7765 | 1,1870,724,1,1871, | ||
7766 | 729,1,21,2944,16, | ||
7767 | 0,110,1,1993,2945, | ||
7768 | 16,0,110,1,32, | ||
7769 | 2946,16,0,110,1, | ||
7770 | 1467,761,1,2289,2798, | ||
7771 | 1,1788,2947,16,0, | ||
7772 | 110,1,2230,2779,1, | ||
7773 | 52,2948,16,0,110, | ||
7774 | 1,1637,667,1,1639, | ||
7775 | 2949,16,0,110,1, | ||
7776 | 1584,2950,16,0,110, | ||
7777 | 1,1694,771,1,2217, | ||
7778 | 2951,16,0,110,1, | ||
7779 | 1817,790,1,1818,2952, | ||
7780 | 16,0,110,1,2037, | ||
7781 | 820,1,2038,739,1, | ||
7782 | 1385,803,1,2258,2767, | ||
7783 | 1,2041,747,1,2084, | ||
7784 | 2953,16,0,110,1, | ||
7785 | 2043,711,1,2045,2773, | ||
7786 | 1,1611,2954,16,0, | ||
7787 | 110,1,1514,2955,16, | ||
7788 | 0,110,1,2269,2784, | ||
7789 | 1,2270,2956,16,0, | ||
7790 | 110,1,1732,2957,16, | ||
7791 | 0,110,1,1469,2958, | ||
7792 | 16,0,110,1,1847, | ||
7793 | 829,1,2288,2792,1, | ||
7794 | 57,2959,19,109,1, | ||
7795 | 57,2960,5,47,1, | ||
7796 | 0,2961,16,0,107, | ||
7797 | 1,2290,2803,1,2291, | ||
7798 | 2808,1,1856,779,1, | ||
7799 | 1857,674,1,1858,680, | ||
7800 | 1,1859,685,1,1860, | ||
7801 | 690,1,1862,696,1, | ||
7802 | 10,2962,16,0,107, | ||
7803 | 1,1864,701,1,1866, | ||
7804 | 706,1,1868,797,1, | ||
7805 | 1760,718,1,1870,724, | ||
7806 | 1,1871,729,1,21, | ||
7807 | 2963,16,0,107,1, | ||
7808 | 1993,2964,16,0,107, | ||
7809 | 1,32,2965,16,0, | ||
7810 | 107,1,1467,761,1, | ||
7811 | 2289,2798,1,1788,2966, | ||
7812 | 16,0,107,1,2230, | ||
7813 | 2779,1,52,2967,16, | ||
7814 | 0,107,1,1637,667, | ||
7815 | 1,1639,2968,16,0, | ||
7816 | 107,1,1584,2969,16, | ||
7817 | 0,107,1,1694,771, | ||
7818 | 1,2217,2970,16,0, | ||
7819 | 107,1,1817,790,1, | ||
7820 | 1818,2971,16,0,107, | ||
7821 | 1,2037,820,1,2038, | ||
7822 | 739,1,1385,803,1, | ||
7823 | 2258,2767,1,2041,747, | ||
7824 | 1,2084,2972,16,0, | ||
7825 | 107,1,2043,711,1, | ||
7826 | 2045,2773,1,1611,2973, | ||
7827 | 16,0,107,1,1514, | ||
7828 | 2974,16,0,107,1, | ||
7829 | 2269,2784,1,2270,2975, | ||
7830 | 16,0,107,1,1732, | ||
7831 | 2976,16,0,107,1, | ||
7832 | 1469,2977,16,0,107, | ||
7833 | 1,1847,829,1,2288, | ||
7834 | 2792,1,58,2978,19, | ||
7835 | 619,1,58,2979,5, | ||
7836 | 9,1,2038,739,1, | ||
7837 | 2043,711,1,2049,2980, | ||
7838 | 16,0,617,1,2097, | ||
7839 | 1391,1,2099,2981,16, | ||
7840 | 0,617,1,2136,1406, | ||
7841 | 1,2134,1400,1,2173, | ||
7842 | 2982,16,0,617,1, | ||
7843 | 2138,2983,16,0,617, | ||
7844 | 1,59,2984,19,521, | ||
7845 | 1,59,2985,5,9, | ||
7846 | 1,2038,739,1,2043, | ||
7847 | 711,1,2049,2986,16, | ||
7848 | 0,519,1,2097,1391, | ||
7849 | 1,2099,2987,16,0, | ||
7850 | 519,1,2136,1406,1, | ||
7851 | 2134,1400,1,2173,2988, | ||
7852 | 16,0,519,1,2138, | ||
7853 | 2989,16,0,519,1, | ||
7854 | 60,2990,19,518,1, | ||
7855 | 60,2991,5,9,1, | ||
7856 | 2038,739,1,2043,711, | ||
7857 | 1,2049,2992,16,0, | ||
7858 | 516,1,2097,1391,1, | ||
7859 | 2099,2993,16,0,516, | ||
7860 | 1,2136,1406,1,2134, | ||
7861 | 1400,1,2173,2994,16, | ||
7862 | 0,516,1,2138,2995, | ||
7863 | 16,0,516,1,61, | ||
7864 | 2996,19,515,1,61, | ||
7865 | 2997,5,9,1,2038, | ||
7866 | 739,1,2043,711,1, | ||
7867 | 2049,2998,16,0,513, | ||
7868 | 1,2097,1391,1,2099, | ||
7869 | 2999,16,0,513,1, | ||
7870 | 2136,1406,1,2134,1400, | ||
7871 | 1,2173,3000,16,0, | ||
7872 | 513,1,2138,3001,16, | ||
7873 | 0,513,1,62,3002, | ||
7874 | 19,512,1,62,3003, | ||
7875 | 5,9,1,2038,739, | ||
7876 | 1,2043,711,1,2049, | ||
7877 | 3004,16,0,510,1, | ||
7878 | 2097,1391,1,2099,3005, | ||
7879 | 16,0,510,1,2136, | ||
7880 | 1406,1,2134,1400,1, | ||
7881 | 2173,3006,16,0,510, | ||
7882 | 1,2138,3007,16,0, | ||
7883 | 510,1,63,3008,19, | ||
7884 | 509,1,63,3009,5, | ||
7885 | 9,1,2038,739,1, | ||
7886 | 2043,711,1,2049,3010, | ||
7887 | 16,0,507,1,2097, | ||
7888 | 1391,1,2099,3011,16, | ||
7889 | 0,507,1,2136,1406, | ||
7890 | 1,2134,1400,1,2173, | ||
7891 | 3012,16,0,507,1, | ||
7892 | 2138,3013,16,0,507, | ||
7893 | 1,64,3014,19,506, | ||
7894 | 1,64,3015,5,9, | ||
7895 | 1,2038,739,1,2043, | ||
7896 | 711,1,2049,3016,16, | ||
7897 | 0,504,1,2097,1391, | ||
7898 | 1,2099,3017,16,0, | ||
7899 | 504,1,2136,1406,1, | ||
7900 | 2134,1400,1,2173,3018, | ||
7901 | 16,0,504,1,2138, | ||
7902 | 3019,16,0,504,1, | ||
7903 | 65,3020,19,503,1, | ||
7904 | 65,3021,5,9,1, | ||
7905 | 2038,739,1,2043,711, | ||
7906 | 1,2049,3022,16,0, | ||
7907 | 501,1,2097,1391,1, | ||
7908 | 2099,3023,16,0,501, | ||
7909 | 1,2136,1406,1,2134, | ||
7910 | 1400,1,2173,3024,16, | ||
7911 | 0,501,1,2138,3025, | ||
7912 | 16,0,501,1,66, | ||
7913 | 3026,19,258,1,66, | ||
7914 | 3027,5,9,1,2038, | ||
7915 | 739,1,2043,711,1, | ||
7916 | 2049,3028,16,0,256, | ||
7917 | 1,2097,1391,1,2099, | ||
7918 | 3029,16,0,256,1, | ||
7919 | 2136,1406,1,2134,1400, | ||
7920 | 1,2173,3030,16,0, | ||
7921 | 256,1,2138,3031,16, | ||
7922 | 0,256,1,67,3032, | ||
7923 | 19,499,1,67,3033, | ||
7924 | 5,9,1,2038,739, | ||
7925 | 1,2043,711,1,2049, | ||
7926 | 3034,16,0,497,1, | ||
7927 | 2097,1391,1,2099,3035, | ||
7928 | 16,0,497,1,2136, | ||
7929 | 1406,1,2134,1400,1, | ||
7930 | 2173,3036,16,0,497, | ||
7931 | 1,2138,3037,16,0, | ||
7932 | 497,1,68,3038,19, | ||
7933 | 496,1,68,3039,5, | ||
7934 | 9,1,2038,739,1, | ||
7935 | 2043,711,1,2049,3040, | ||
7936 | 16,0,494,1,2097, | ||
7937 | 1391,1,2099,3041,16, | ||
7938 | 0,494,1,2136,1406, | ||
7939 | 1,2134,1400,1,2173, | ||
7940 | 3042,16,0,494,1, | ||
7941 | 2138,3043,16,0,494, | ||
7942 | 1,69,3044,19,561, | ||
7943 | 1,69,3045,5,9, | ||
7944 | 1,2038,739,1,2043, | ||
7945 | 711,1,2049,3046,16, | ||
7946 | 0,559,1,2097,1391, | ||
7947 | 1,2099,3047,16,0, | ||
7948 | 559,1,2136,1406,1, | ||
7949 | 2134,1400,1,2173,3048, | ||
7950 | 16,0,559,1,2138, | ||
7951 | 3049,16,0,559,1, | ||
7952 | 70,3050,19,558,1, | ||
7953 | 70,3051,5,9,1, | ||
7954 | 2038,739,1,2043,711, | ||
7955 | 1,2049,3052,16,0, | ||
7956 | 556,1,2097,1391,1, | ||
7957 | 2099,3053,16,0,556, | ||
7958 | 1,2136,1406,1,2134, | ||
7959 | 1400,1,2173,3054,16, | ||
7960 | 0,556,1,2138,3055, | ||
7961 | 16,0,556,1,71, | ||
7962 | 3056,19,489,1,71, | ||
7963 | 3057,5,9,1,2038, | ||
7964 | 739,1,2043,711,1, | ||
7965 | 2049,3058,16,0,487, | ||
7966 | 1,2097,1391,1,2099, | ||
7967 | 3059,16,0,487,1, | ||
7968 | 2136,1406,1,2134,1400, | ||
7969 | 1,2173,3060,16,0, | ||
7970 | 487,1,2138,3061,16, | ||
7971 | 0,487,1,72,3062, | ||
7972 | 19,603,1,72,3063, | ||
7973 | 5,9,1,2038,739, | ||
7974 | 1,2043,711,1,2049, | ||
7975 | 3064,16,0,601,1, | ||
7976 | 2097,1391,1,2099,3065, | ||
7977 | 16,0,601,1,2136, | ||
7978 | 1406,1,2134,1400,1, | ||
7979 | 2173,3066,16,0,601, | ||
7980 | 1,2138,3067,16,0, | ||
7981 | 601,1,73,3068,19, | ||
7982 | 485,1,73,3069,5, | ||
7983 | 9,1,2038,739,1, | ||
7984 | 2043,711,1,2049,3070, | ||
7985 | 16,0,483,1,2097, | ||
7986 | 1391,1,2099,3071,16, | ||
7987 | 0,483,1,2136,1406, | ||
7988 | 1,2134,1400,1,2173, | ||
7989 | 3072,16,0,483,1, | ||
7990 | 2138,3073,16,0,483, | ||
7991 | 1,74,3074,19,482, | ||
7992 | 1,74,3075,5,9, | ||
7993 | 1,2038,739,1,2043, | ||
7994 | 711,1,2049,3076,16, | ||
7995 | 0,480,1,2097,1391, | ||
7996 | 1,2099,3077,16,0, | ||
7997 | 480,1,2136,1406,1, | ||
7998 | 2134,1400,1,2173,3078, | ||
7999 | 16,0,480,1,2138, | ||
8000 | 3079,16,0,480,1, | ||
8001 | 75,3080,19,479,1, | ||
8002 | 75,3081,5,9,1, | ||
8003 | 2038,739,1,2043,711, | ||
8004 | 1,2049,3082,16,0, | ||
8005 | 477,1,2097,1391,1, | ||
8006 | 2099,3083,16,0,477, | ||
8007 | 1,2136,1406,1,2134, | ||
8008 | 1400,1,2173,3084,16, | ||
8009 | 0,477,1,2138,3085, | ||
8010 | 16,0,477,1,76, | ||
8011 | 3086,19,476,1,76, | ||
8012 | 3087,5,9,1,2038, | ||
8013 | 739,1,2043,711,1, | ||
8014 | 2049,3088,16,0,474, | ||
8015 | 1,2097,1391,1,2099, | ||
8016 | 3089,16,0,474,1, | ||
8017 | 2136,1406,1,2134,1400, | ||
8018 | 1,2173,3090,16,0, | ||
8019 | 474,1,2138,3091,16, | ||
8020 | 0,474,1,77,3092, | ||
8021 | 19,473,1,77,3093, | ||
8022 | 5,9,1,2038,739, | ||
8023 | 1,2043,711,1,2049, | ||
8024 | 3094,16,0,471,1, | ||
8025 | 2097,1391,1,2099,3095, | ||
8026 | 16,0,471,1,2136, | ||
8027 | 1406,1,2134,1400,1, | ||
8028 | 2173,3096,16,0,471, | ||
8029 | 1,2138,3097,16,0, | ||
8030 | 471,1,78,3098,19, | ||
8031 | 470,1,78,3099,5, | ||
8032 | 9,1,2038,739,1, | ||
8033 | 2043,711,1,2049,3100, | ||
8034 | 16,0,468,1,2097, | ||
8035 | 1391,1,2099,3101,16, | ||
8036 | 0,468,1,2136,1406, | ||
8037 | 1,2134,1400,1,2173, | ||
8038 | 3102,16,0,468,1, | ||
8039 | 2138,3103,16,0,468, | ||
8040 | 1,79,3104,19,467, | ||
8041 | 1,79,3105,5,9, | ||
8042 | 1,2038,739,1,2043, | ||
8043 | 711,1,2049,3106,16, | ||
8044 | 0,465,1,2097,1391, | ||
8045 | 1,2099,3107,16,0, | ||
8046 | 465,1,2136,1406,1, | ||
8047 | 2134,1400,1,2173,3108, | ||
8048 | 16,0,465,1,2138, | ||
8049 | 3109,16,0,465,1, | ||
8050 | 80,3110,19,464,1, | ||
8051 | 80,3111,5,9,1, | ||
8052 | 2038,739,1,2043,711, | ||
8053 | 1,2049,3112,16,0, | ||
8054 | 462,1,2097,1391,1, | ||
8055 | 2099,3113,16,0,462, | ||
8056 | 1,2136,1406,1,2134, | ||
8057 | 1400,1,2173,3114,16, | ||
8058 | 0,462,1,2138,3115, | ||
8059 | 16,0,462,1,81, | ||
8060 | 3116,19,461,1,81, | ||
8061 | 3117,5,9,1,2038, | ||
8062 | 739,1,2043,711,1, | ||
8063 | 2049,3118,16,0,459, | ||
8064 | 1,2097,1391,1,2099, | ||
8065 | 3119,16,0,459,1, | ||
8066 | 2136,1406,1,2134,1400, | ||
8067 | 1,2173,3120,16,0, | ||
8068 | 459,1,2138,3121,16, | ||
8069 | 0,459,1,82,3122, | ||
8070 | 19,458,1,82,3123, | ||
8071 | 5,9,1,2038,739, | ||
8072 | 1,2043,711,1,2049, | ||
8073 | 3124,16,0,456,1, | ||
8074 | 2097,1391,1,2099,3125, | ||
8075 | 16,0,456,1,2136, | ||
8076 | 1406,1,2134,1400,1, | ||
8077 | 2173,3126,16,0,456, | ||
8078 | 1,2138,3127,16,0, | ||
8079 | 456,1,83,3128,19, | ||
8080 | 551,1,83,3129,5, | ||
8081 | 9,1,2038,739,1, | ||
8082 | 2043,711,1,2049,3130, | ||
8083 | 16,0,549,1,2097, | ||
8084 | 1391,1,2099,3131,16, | ||
8085 | 0,549,1,2136,1406, | ||
8086 | 1,2134,1400,1,2173, | ||
8087 | 3132,16,0,549,1, | ||
8088 | 2138,3133,16,0,549, | ||
8089 | 1,84,3134,19,596, | ||
8090 | 1,84,3135,5,9, | ||
8091 | 1,2038,739,1,2043, | ||
8092 | 711,1,2049,3136,16, | ||
8093 | 0,594,1,2097,1391, | ||
8094 | 1,2099,3137,16,0, | ||
8095 | 594,1,2136,1406,1, | ||
8096 | 2134,1400,1,2173,3138, | ||
8097 | 16,0,594,1,2138, | ||
8098 | 3139,16,0,594,1, | ||
8099 | 85,3140,19,593,1, | ||
8100 | 85,3141,5,9,1, | ||
8101 | 2038,739,1,2043,711, | ||
8102 | 1,2049,3142,16,0, | ||
8103 | 591,1,2097,1391,1, | ||
8104 | 2099,3143,16,0,591, | ||
8105 | 1,2136,1406,1,2134, | ||
8106 | 1400,1,2173,3144,16, | ||
8107 | 0,591,1,2138,3145, | ||
8108 | 16,0,591,1,86, | ||
8109 | 3146,19,544,1,86, | ||
8110 | 3147,5,9,1,2038, | ||
8111 | 739,1,2043,711,1, | ||
8112 | 2049,3148,16,0,542, | ||
8113 | 1,2097,1391,1,2099, | ||
8114 | 3149,16,0,542,1, | ||
8115 | 2136,1406,1,2134,1400, | ||
8116 | 1,2173,3150,16,0, | ||
8117 | 542,1,2138,3151,16, | ||
8118 | 0,542,1,87,3152, | ||
8119 | 19,449,1,87,3153, | ||
8120 | 5,9,1,2038,739, | ||
8121 | 1,2043,711,1,2049, | ||
8122 | 3154,16,0,447,1, | ||
8123 | 2097,1391,1,2099,3155, | ||
8124 | 16,0,447,1,2136, | ||
8125 | 1406,1,2134,1400,1, | ||
8126 | 2173,3156,16,0,447, | ||
8127 | 1,2138,3157,16,0, | ||
8128 | 447,1,88,3158,19, | ||
8129 | 590,1,88,3159,5, | ||
8130 | 9,1,2038,739,1, | ||
8131 | 2043,711,1,2049,3160, | ||
8132 | 16,0,588,1,2097, | ||
8133 | 1391,1,2099,3161,16, | ||
8134 | 0,588,1,2136,1406, | ||
8135 | 1,2134,1400,1,2173, | ||
8136 | 3162,16,0,588,1, | ||
8137 | 2138,3163,16,0,588, | ||
8138 | 1,89,3164,19,235, | ||
8139 | 1,89,3165,5,9, | ||
8140 | 1,2038,739,1,2043, | ||
8141 | 711,1,2049,3166,16, | ||
8142 | 0,233,1,2097,1391, | ||
8143 | 1,2099,3167,16,0, | ||
8144 | 233,1,2136,1406,1, | ||
8145 | 2134,1400,1,2173,3168, | ||
8146 | 16,0,233,1,2138, | ||
8147 | 3169,16,0,233,1, | ||
8148 | 90,3170,19,540,1, | ||
8149 | 90,3171,5,9,1, | ||
8150 | 2038,739,1,2043,711, | ||
8151 | 1,2049,3172,16,0, | ||
8152 | 538,1,2097,1391,1, | ||
8153 | 2099,3173,16,0,538, | ||
8154 | 1,2136,1406,1,2134, | ||
8155 | 1400,1,2173,3174,16, | ||
8156 | 0,538,1,2138,3175, | ||
8157 | 16,0,538,1,91, | ||
8158 | 3176,19,133,1,91, | ||
8159 | 3177,5,109,1,0, | ||
8160 | 3178,16,0,201,1, | ||
8161 | 1,1708,1,2,1714, | ||
8162 | 1,3,1719,1,4, | ||
8163 | 1724,1,5,1729,1, | ||
8164 | 6,1734,1,7,1739, | ||
8165 | 1,8,3179,16,0, | ||
8166 | 131,1,2269,2784,1, | ||
8167 | 2270,3180,16,0,201, | ||
8168 | 1,256,3181,16,0, | ||
8169 | 183,1,18,3182,16, | ||
8170 | 0,147,1,504,3183, | ||
8171 | 16,0,183,1,277, | ||
8172 | 3184,16,0,183,1, | ||
8173 | 2288,2792,1,2289,2798, | ||
8174 | 1,2290,2803,1,32, | ||
8175 | 3185,16,0,177,1, | ||
8176 | 2041,747,1,2043,711, | ||
8177 | 1,1292,3186,16,0, | ||
8178 | 183,1,2047,3187,16, | ||
8179 | 0,585,1,41,3188, | ||
8180 | 16,0,183,1,43, | ||
8181 | 3189,16,0,183,1, | ||
8182 | 46,3190,16,0,187, | ||
8183 | 1,299,3191,16,0, | ||
8184 | 183,1,1993,3192,16, | ||
8185 | 0,177,1,52,3193, | ||
8186 | 16,0,183,1,1559, | ||
8187 | 3194,16,0,183,1, | ||
8188 | 1514,3195,16,0,177, | ||
8189 | 1,1760,718,1,1818, | ||
8190 | 3196,16,0,177,1, | ||
8191 | 62,3197,16,0,207, | ||
8192 | 1,1763,3198,16,0, | ||
8193 | 183,1,65,3199,16, | ||
8194 | 0,209,1,71,3200, | ||
8195 | 16,0,183,1,1327, | ||
8196 | 3201,16,0,183,1, | ||
8197 | 76,3202,16,0,183, | ||
8198 | 1,1584,3203,16,0, | ||
8199 | 177,1,79,3204,16, | ||
8200 | 0,183,1,322,3205, | ||
8201 | 16,0,183,1,1257, | ||
8202 | 3206,16,0,183,1, | ||
8203 | 85,3207,16,0,183, | ||
8204 | 1,1788,3208,16,0, | ||
8205 | 177,1,89,3209,16, | ||
8206 | 0,183,1,1847,829, | ||
8207 | 1,1849,3210,16,0, | ||
8208 | 315,1,2037,820,1, | ||
8209 | 1852,3211,16,0,319, | ||
8210 | 1,1854,3212,16,0, | ||
8211 | 323,1,1856,779,1, | ||
8212 | 1857,674,1,1858,680, | ||
8213 | 1,1859,685,1,1860, | ||
8214 | 690,1,1862,696,1, | ||
8215 | 1864,701,1,1866,706, | ||
8216 | 1,1115,3213,16,0, | ||
8217 | 183,1,112,3214,16, | ||
8218 | 0,183,1,1870,724, | ||
8219 | 1,1871,729,1,97, | ||
8220 | 3215,16,0,183,1, | ||
8221 | 1817,790,1,346,3216, | ||
8222 | 16,0,183,1,372, | ||
8223 | 3217,16,0,434,1, | ||
8224 | 102,3218,16,0,183, | ||
8225 | 1,374,3219,16,0, | ||
8226 | 436,1,124,3220,16, | ||
8227 | 0,183,1,376,3221, | ||
8228 | 16,0,438,1,378, | ||
8229 | 3222,16,0,440,1, | ||
8230 | 1385,803,1,1637,667, | ||
8231 | 1,384,3223,16,0, | ||
8232 | 183,1,137,3224,16, | ||
8233 | 0,183,1,1396,3225, | ||
8234 | 16,0,183,1,381, | ||
8235 | 3226,16,0,183,1, | ||
8236 | 397,3227,16,0,183, | ||
8237 | 1,1152,3228,16,0, | ||
8238 | 183,1,151,3229,16, | ||
8239 | 0,183,1,1611,3230, | ||
8240 | 16,0,177,1,2038, | ||
8241 | 739,1,1668,3231,16, | ||
8242 | 0,183,1,166,3232, | ||
8243 | 16,0,183,1,2045, | ||
8244 | 2773,1,1868,797,1, | ||
8245 | 1432,3233,16,0,183, | ||
8246 | 1,2291,2808,1,1111, | ||
8247 | 3234,16,0,624,1, | ||
8248 | 182,3235,16,0,183, | ||
8249 | 1,1187,3236,16,0, | ||
8250 | 183,1,422,3237,16, | ||
8251 | 0,183,1,1694,771, | ||
8252 | 1,447,3238,16,0, | ||
8253 | 183,1,199,3239,16, | ||
8254 | 0,183,1,1707,3240, | ||
8255 | 16,0,183,1,1467, | ||
8256 | 761,1,1469,3241,16, | ||
8257 | 0,177,1,217,3242, | ||
8258 | 16,0,183,1,1222, | ||
8259 | 3243,16,0,183,1, | ||
8260 | 2230,2779,1,2233,3244, | ||
8261 | 16,0,183,1,1732, | ||
8262 | 3245,16,0,177,1, | ||
8263 | 463,3246,16,0,183, | ||
8264 | 1,236,3247,16,0, | ||
8265 | 183,1,488,3248,16, | ||
8266 | 0,183,1,1639,3249, | ||
8267 | 16,0,177,1,2258, | ||
8268 | 2767,1,92,3250,19, | ||
8269 | 576,1,92,3251,5, | ||
8270 | 79,1,1584,3252,16, | ||
8271 | 0,574,1,1639,3253, | ||
8272 | 16,0,574,1,1637, | ||
8273 | 667,1,112,3254,16, | ||
8274 | 0,574,1,1857,674, | ||
8275 | 1,1858,680,1,1859, | ||
8276 | 685,1,1860,690,1, | ||
8277 | 1611,3255,16,0,574, | ||
8278 | 1,1862,696,1,1864, | ||
8279 | 701,1,1866,706,1, | ||
8280 | 2043,711,1,124,3256, | ||
8281 | 16,0,574,1,1760, | ||
8282 | 718,1,1870,724,1, | ||
8283 | 1871,729,1,1763,3257, | ||
8284 | 16,0,574,1,1222, | ||
8285 | 3258,16,0,574,1, | ||
8286 | 1993,3259,16,0,574, | ||
8287 | 1,1115,3260,16,0, | ||
8288 | 574,1,447,3261,16, | ||
8289 | 0,574,1,1187,3262, | ||
8290 | 16,0,574,1,137, | ||
8291 | 3263,16,0,574,1, | ||
8292 | 2038,739,1,346,3264, | ||
8293 | 16,0,574,1,32, | ||
8294 | 3265,16,0,574,1, | ||
8295 | 1668,3266,16,0,574, | ||
8296 | 1,2041,747,1,236, | ||
8297 | 3267,16,0,574,1, | ||
8298 | 1514,3268,16,0,574, | ||
8299 | 1,256,3269,16,0, | ||
8300 | 574,1,41,3270,16, | ||
8301 | 0,574,1,151,3271, | ||
8302 | 16,0,574,1,43, | ||
8303 | 3272,16,0,574,1, | ||
8304 | 1732,3273,16,0,574, | ||
8305 | 1,384,3274,16,0, | ||
8306 | 574,1,1467,761,1, | ||
8307 | 52,3275,16,0,574, | ||
8308 | 1,2233,3276,16,0, | ||
8309 | 574,1,381,3277,16, | ||
8310 | 0,574,1,166,3278, | ||
8311 | 16,0,574,1,1257, | ||
8312 | 3279,16,0,574,1, | ||
8313 | 1694,771,1,1432,3280, | ||
8314 | 16,0,574,1,1152, | ||
8315 | 3281,16,0,574,1, | ||
8316 | 1856,779,1,62,3282, | ||
8317 | 16,0,574,1,504, | ||
8318 | 3283,16,0,574,1, | ||
8319 | 277,3284,16,0,574, | ||
8320 | 1,397,3285,16,0, | ||
8321 | 574,1,71,3286,16, | ||
8322 | 0,574,1,1707,3287, | ||
8323 | 16,0,574,1,1817, | ||
8324 | 790,1,1818,3288,16, | ||
8325 | 0,574,1,1868,797, | ||
8326 | 1,76,3289,16,0, | ||
8327 | 574,1,1385,803,1, | ||
8328 | 79,3290,16,0,574, | ||
8329 | 1,182,3291,16,0, | ||
8330 | 574,1,299,3292,16, | ||
8331 | 0,574,1,1559,3293, | ||
8332 | 16,0,574,1,85, | ||
8333 | 3294,16,0,574,1, | ||
8334 | 488,3295,16,0,574, | ||
8335 | 1,1396,3296,16,0, | ||
8336 | 574,1,89,3297,16, | ||
8337 | 0,574,1,199,3298, | ||
8338 | 16,0,574,1,463, | ||
8339 | 3299,16,0,574,1, | ||
8340 | 1292,3300,16,0,574, | ||
8341 | 1,422,3301,16,0, | ||
8342 | 574,1,2037,820,1, | ||
8343 | 97,3302,16,0,574, | ||
8344 | 1,1469,3303,16,0, | ||
8345 | 574,1,1788,3304,16, | ||
8346 | 0,574,1,102,3305, | ||
8347 | 16,0,574,1,1847, | ||
8348 | 829,1,322,3306,16, | ||
8349 | 0,574,1,1327,3307, | ||
8350 | 16,0,574,1,217, | ||
8351 | 3308,16,0,574,1, | ||
8352 | 93,3309,19,573,1, | ||
8353 | 93,3310,5,79,1, | ||
8354 | 1584,3311,16,0,571, | ||
8355 | 1,1639,3312,16,0, | ||
8356 | 571,1,1637,667,1, | ||
8357 | 112,3313,16,0,571, | ||
8358 | 1,1857,674,1,1858, | ||
8359 | 680,1,1859,685,1, | ||
8360 | 1860,690,1,1611,3314, | ||
8361 | 16,0,571,1,1862, | ||
8362 | 696,1,1864,701,1, | ||
8363 | 1866,706,1,2043,711, | ||
8364 | 1,124,3315,16,0, | ||
8365 | 571,1,1760,718,1, | ||
8366 | 1870,724,1,1871,729, | ||
8367 | 1,1763,3316,16,0, | ||
8368 | 571,1,1222,3317,16, | ||
8369 | 0,571,1,1993,3318, | ||
8370 | 16,0,571,1,1115, | ||
8371 | 3319,16,0,571,1, | ||
8372 | 447,3320,16,0,571, | ||
8373 | 1,1187,3321,16,0, | ||
8374 | 571,1,137,3322,16, | ||
8375 | 0,571,1,2038,739, | ||
8376 | 1,346,3323,16,0, | ||
8377 | 571,1,32,3324,16, | ||
8378 | 0,571,1,1668,3325, | ||
8379 | 16,0,571,1,2041, | ||
8380 | 747,1,236,3326,16, | ||
8381 | 0,571,1,1514,3327, | ||
8382 | 16,0,571,1,256, | ||
8383 | 3328,16,0,571,1, | ||
8384 | 41,3329,16,0,571, | ||
8385 | 1,151,3330,16,0, | ||
8386 | 571,1,43,3331,16, | ||
8387 | 0,571,1,1732,3332, | ||
8388 | 16,0,571,1,384, | ||
8389 | 3333,16,0,571,1, | ||
8390 | 1467,761,1,52,3334, | ||
8391 | 16,0,571,1,2233, | ||
8392 | 3335,16,0,571,1, | ||
8393 | 381,3336,16,0,571, | ||
8394 | 1,166,3337,16,0, | ||
8395 | 571,1,1257,3338,16, | ||
8396 | 0,571,1,1694,771, | ||
8397 | 1,1432,3339,16,0, | ||
8398 | 571,1,1152,3340,16, | ||
8399 | 0,571,1,1856,779, | ||
8400 | 1,62,3341,16,0, | ||
8401 | 571,1,504,3342,16, | ||
8402 | 0,571,1,277,3343, | ||
8403 | 16,0,571,1,397, | ||
8404 | 3344,16,0,571,1, | ||
8405 | 71,3345,16,0,571, | ||
8406 | 1,1707,3346,16,0, | ||
8407 | 571,1,1817,790,1, | ||
8408 | 1818,3347,16,0,571, | ||
8409 | 1,1868,797,1,76, | ||
8410 | 3348,16,0,571,1, | ||
8411 | 1385,803,1,79,3349, | ||
8412 | 16,0,571,1,182, | ||
8413 | 3350,16,0,571,1, | ||
8414 | 299,3351,16,0,571, | ||
8415 | 1,1559,3352,16,0, | ||
8416 | 571,1,85,3353,16, | ||
8417 | 0,571,1,488,3354, | ||
8418 | 16,0,571,1,1396, | ||
8419 | 3355,16,0,571,1, | ||
8420 | 89,3356,16,0,571, | ||
8421 | 1,199,3357,16,0, | ||
8422 | 571,1,463,3358,16, | ||
8423 | 0,571,1,1292,3359, | ||
8424 | 16,0,571,1,422, | ||
8425 | 3360,16,0,571,1, | ||
8426 | 2037,820,1,97,3361, | ||
8427 | 16,0,571,1,1469, | ||
8428 | 3362,16,0,571,1, | ||
8429 | 1788,3363,16,0,571, | ||
8430 | 1,102,3364,16,0, | ||
8431 | 571,1,1847,829,1, | ||
8432 | 322,3365,16,0,571, | ||
8433 | 1,1327,3366,16,0, | ||
8434 | 571,1,217,3367,16, | ||
8435 | 0,571,1,94,3368, | ||
8436 | 19,570,1,94,3369, | ||
8437 | 5,79,1,1584,3370, | ||
8438 | 16,0,568,1,1639, | ||
8439 | 3371,16,0,568,1, | ||
8440 | 1637,667,1,112,3372, | ||
8441 | 16,0,568,1,1857, | ||
8442 | 674,1,1858,680,1, | ||
8443 | 1859,685,1,1860,690, | ||
8444 | 1,1611,3373,16,0, | ||
8445 | 568,1,1862,696,1, | ||
8446 | 1864,701,1,1866,706, | ||
8447 | 1,2043,711,1,124, | ||
8448 | 3374,16,0,568,1, | ||
8449 | 1760,718,1,1870,724, | ||
8450 | 1,1871,729,1,1763, | ||
8451 | 3375,16,0,568,1, | ||
8452 | 1222,3376,16,0,568, | ||
8453 | 1,1993,3377,16,0, | ||
8454 | 568,1,1115,3378,16, | ||
8455 | 0,568,1,447,3379, | ||
8456 | 16,0,568,1,1187, | ||
8457 | 3380,16,0,568,1, | ||
8458 | 137,3381,16,0,568, | ||
8459 | 1,2038,739,1,346, | ||
8460 | 3382,16,0,568,1, | ||
8461 | 32,3383,16,0,568, | ||
8462 | 1,1668,3384,16,0, | ||
8463 | 568,1,2041,747,1, | ||
8464 | 236,3385,16,0,568, | ||
8465 | 1,1514,3386,16,0, | ||
8466 | 568,1,256,3387,16, | ||
8467 | 0,568,1,41,3388, | ||
8468 | 16,0,568,1,151, | ||
8469 | 3389,16,0,568,1, | ||
8470 | 43,3390,16,0,568, | ||
8471 | 1,1732,3391,16,0, | ||
8472 | 568,1,384,3392,16, | ||
8473 | 0,568,1,1467,761, | ||
8474 | 1,52,3393,16,0, | ||
8475 | 568,1,2233,3394,16, | ||
8476 | 0,568,1,381,3395, | ||
8477 | 16,0,568,1,166, | ||
8478 | 3396,16,0,568,1, | ||
8479 | 1257,3397,16,0,568, | ||
8480 | 1,1694,771,1,1432, | ||
8481 | 3398,16,0,568,1, | ||
8482 | 1152,3399,16,0,568, | ||
8483 | 1,1856,779,1,62, | ||
8484 | 3400,16,0,568,1, | ||
8485 | 504,3401,16,0,568, | ||
8486 | 1,277,3402,16,0, | ||
8487 | 568,1,397,3403,16, | ||
8488 | 0,568,1,71,3404, | ||
8489 | 16,0,568,1,1707, | ||
8490 | 3405,16,0,568,1, | ||
8491 | 1817,790,1,1818,3406, | ||
8492 | 16,0,568,1,1868, | ||
8493 | 797,1,76,3407,16, | ||
8494 | 0,568,1,1385,803, | ||
8495 | 1,79,3408,16,0, | ||
8496 | 568,1,182,3409,16, | ||
8497 | 0,568,1,299,3410, | ||
8498 | 16,0,568,1,1559, | ||
8499 | 3411,16,0,568,1, | ||
8500 | 85,3412,16,0,568, | ||
8501 | 1,488,3413,16,0, | ||
8502 | 568,1,1396,3414,16, | ||
8503 | 0,568,1,89,3415, | ||
8504 | 16,0,568,1,199, | ||
8505 | 3416,16,0,568,1, | ||
8506 | 463,3417,16,0,568, | ||
8507 | 1,1292,3418,16,0, | ||
8508 | 568,1,422,3419,16, | ||
8509 | 0,568,1,2037,820, | ||
8510 | 1,97,3420,16,0, | ||
8511 | 568,1,1469,3421,16, | ||
8512 | 0,568,1,1788,3422, | ||
8513 | 16,0,568,1,102, | ||
8514 | 3423,16,0,568,1, | ||
8515 | 1847,829,1,322,3424, | ||
8516 | 16,0,568,1,1327, | ||
8517 | 3425,16,0,568,1, | ||
8518 | 217,3426,16,0,568, | ||
8519 | 1,95,3427,19,103, | ||
8520 | 1,95,3428,5,1, | ||
8521 | 1,0,3429,16,0, | ||
8522 | 104,1,96,3430,19, | ||
8523 | 388,1,96,3431,5, | ||
8524 | 1,1,0,3432,16, | ||
8525 | 0,386,1,97,3433, | ||
8526 | 19,273,1,97,3434, | ||
8527 | 5,2,1,0,3435, | ||
8528 | 16,0,275,1,2270, | ||
8529 | 3436,16,0,271,1, | ||
8530 | 98,3437,19,204,1, | ||
8531 | 98,3438,5,2,1, | ||
8532 | 0,3439,16,0,274, | ||
8533 | 1,2270,3440,16,0, | ||
8534 | 202,1,99,3441,19, | ||
8535 | 199,1,99,3442,5, | ||
8536 | 2,1,0,3443,16, | ||
8537 | 0,612,1,2270,3444, | ||
8538 | 16,0,197,1,100, | ||
8539 | 3445,19,615,1,100, | ||
8540 | 3446,5,4,1,0, | ||
8541 | 3447,16,0,616,1, | ||
8542 | 2211,3448,16,0,613, | ||
8543 | 1,2281,3449,16,0, | ||
8544 | 613,1,2270,3450,16, | ||
8545 | 0,616,1,101,3451, | ||
8546 | 19,217,1,101,3452, | ||
8547 | 5,2,1,2049,3453, | ||
8548 | 16,0,215,1,2138, | ||
8549 | 3454,16,0,583,1, | ||
8550 | 102,3455,19,606,1, | ||
8551 | 102,3456,5,4,1, | ||
8552 | 2049,3457,16,0,607, | ||
8553 | 1,2138,3458,16,0, | ||
8554 | 607,1,2173,3459,16, | ||
8555 | 0,604,1,2099,3460, | ||
8556 | 16,0,604,1,103, | ||
8557 | 3461,19,150,1,103, | ||
8558 | 3462,5,3,1,2084, | ||
8559 | 3463,16,0,625,1, | ||
8560 | 2217,3464,16,0,282, | ||
8561 | 1,10,3465,16,0, | ||
8562 | 148,1,104,3466,19, | ||
8563 | 162,1,104,3467,5, | ||
8564 | 16,1,0,3468,16, | ||
8565 | 0,220,1,1818,3469, | ||
8566 | 16,0,409,1,2084, | ||
8567 | 3470,16,0,533,1, | ||
8568 | 1584,3471,16,0,486, | ||
8569 | 1,10,3472,16,0, | ||
8570 | 533,1,1639,3473,16, | ||
8571 | 0,409,1,1788,3474, | ||
8572 | 16,0,409,1,2270, | ||
8573 | 3475,16,0,220,1, | ||
8574 | 1611,3476,16,0,409, | ||
8575 | 1,21,3477,16,0, | ||
8576 | 160,1,1993,3478,16, | ||
8577 | 0,409,1,1469,3479, | ||
8578 | 16,0,486,1,2217, | ||
8579 | 3480,16,0,533,1, | ||
8580 | 1732,3481,16,0,409, | ||
8581 | 1,32,3482,16,0, | ||
8582 | 409,1,1514,3483,16, | ||
8583 | 0,486,1,105,3484, | ||
8584 | 19,130,1,105,3485, | ||
8585 | 5,17,1,0,3486, | ||
8586 | 16,0,128,1,1818, | ||
8587 | 3487,16,0,146,1, | ||
8588 | 2084,3488,16,0,146, | ||
8589 | 1,1584,3489,16,0, | ||
8590 | 146,1,10,3490,16, | ||
8591 | 0,146,1,1639,3491, | ||
8592 | 16,0,146,1,1788, | ||
8593 | 3492,16,0,146,1, | ||
8594 | 2270,3493,16,0,128, | ||
8595 | 1,52,3494,16,0, | ||
8596 | 205,1,1611,3495,16, | ||
8597 | 0,146,1,21,3496, | ||
8598 | 16,0,146,1,1993, | ||
8599 | 3497,16,0,146,1, | ||
8600 | 1469,3498,16,0,146, | ||
8601 | 1,2217,3499,16,0, | ||
8602 | 146,1,1732,3500,16, | ||
8603 | 0,146,1,32,3501, | ||
8604 | 16,0,146,1,1514, | ||
8605 | 3502,16,0,146,1, | ||
8606 | 106,3503,19,525,1, | ||
8607 | 106,3504,5,4,1, | ||
8608 | 2049,3505,16,0,523, | ||
8609 | 1,2138,3506,16,0, | ||
8610 | 523,1,2173,3507,16, | ||
8611 | 0,523,1,2099,3508, | ||
8612 | 16,0,523,1,107, | ||
8613 | 3509,19,289,1,107, | ||
8614 | 3510,5,10,1,1818, | ||
8615 | 3511,16,0,324,1, | ||
8616 | 2228,3512,16,0,287, | ||
8617 | 1,1639,3513,16,0, | ||
8618 | 324,1,1788,3514,16, | ||
8619 | 0,324,1,1611,3515, | ||
8620 | 16,0,324,1,2095, | ||
8621 | 3516,16,0,529,1, | ||
8622 | 1732,3517,16,0,324, | ||
8623 | 1,31,3518,16,0, | ||
8624 | 532,1,1993,3519,16, | ||
8625 | 0,324,1,32,3520, | ||
8626 | 16,0,324,1,108, | ||
8627 | 3521,19,547,1,108, | ||
8628 | 3522,5,1,1,32, | ||
8629 | 3523,16,0,545,1, | ||
8630 | 109,3524,19,292,1, | ||
8631 | 109,3525,5,7,1, | ||
8632 | 1639,3526,16,0,621, | ||
8633 | 1,1993,3527,16,0, | ||
8634 | 424,1,1818,3528,16, | ||
8635 | 0,308,1,1732,3529, | ||
8636 | 16,0,358,1,1788, | ||
8637 | 3530,16,0,290,1, | ||
8638 | 1611,3531,16,0,597, | ||
8639 | 1,32,3532,16,0, | ||
8640 | 429,1,110,3533,19, | ||
8641 | 353,1,110,3534,5, | ||
8642 | 10,1,1818,3535,16, | ||
8643 | 0,351,1,1639,3536, | ||
8644 | 16,0,351,1,1788, | ||
8645 | 3537,16,0,351,1, | ||
8646 | 1732,3538,16,0,351, | ||
8647 | 1,1611,3539,16,0, | ||
8648 | 351,1,1469,3540,16, | ||
8649 | 0,401,1,1584,3541, | ||
8650 | 16,0,401,1,1993, | ||
8651 | 3542,16,0,351,1, | ||
8652 | 1514,3543,16,0,535, | ||
8653 | 1,32,3544,16,0, | ||
8654 | 351,1,111,3545,19, | ||
8655 | 408,1,111,3546,5, | ||
8656 | 7,1,1639,3547,16, | ||
8657 | 0,406,1,1993,3548, | ||
8658 | 16,0,406,1,1818, | ||
8659 | 3549,16,0,406,1, | ||
8660 | 1732,3550,16,0,406, | ||
8661 | 1,1788,3551,16,0, | ||
8662 | 406,1,1611,3552,16, | ||
8663 | 0,406,1,32,3553, | ||
8664 | 16,0,406,1,112, | ||
8665 | 3554,19,345,1,112, | ||
8666 | 3555,5,7,1,1639, | ||
8667 | 3556,16,0,343,1, | ||
8668 | 1993,3557,16,0,343, | ||
8669 | 1,1818,3558,16,0, | ||
8670 | 343,1,1732,3559,16, | ||
8671 | 0,343,1,1788,3560, | ||
8672 | 16,0,343,1,1611, | ||
8673 | 3561,16,0,343,1, | ||
8674 | 32,3562,16,0,343, | ||
8675 | 1,113,3563,19,341, | ||
8676 | 1,113,3564,5,7, | ||
8677 | 1,1639,3565,16,0, | ||
8678 | 339,1,1993,3566,16, | ||
8679 | 0,339,1,1818,3567, | ||
8680 | 16,0,339,1,1732, | ||
8681 | 3568,16,0,339,1, | ||
8682 | 1788,3569,16,0,339, | ||
8683 | 1,1611,3570,16,0, | ||
8684 | 339,1,32,3571,16, | ||
8685 | 0,339,1,114,3572, | ||
8686 | 19,381,1,114,3573, | ||
8687 | 5,7,1,1639,3574, | ||
8688 | 16,0,379,1,1993, | ||
8689 | 3575,16,0,379,1, | ||
8690 | 1818,3576,16,0,379, | ||
8691 | 1,1732,3577,16,0, | ||
8692 | 379,1,1788,3578,16, | ||
8693 | 0,379,1,1611,3579, | ||
8694 | 16,0,379,1,32, | ||
8695 | 3580,16,0,379,1, | ||
8696 | 115,3581,19,334,1, | ||
8697 | 115,3582,5,7,1, | ||
8698 | 1639,3583,16,0,332, | ||
8699 | 1,1993,3584,16,0, | ||
8700 | 332,1,1818,3585,16, | ||
8701 | 0,332,1,1732,3586, | ||
8702 | 16,0,332,1,1788, | ||
8703 | 3587,16,0,332,1, | ||
8704 | 1611,3588,16,0,332, | ||
8705 | 1,32,3589,16,0, | ||
8706 | 332,1,116,3590,19, | ||
8707 | 378,1,116,3591,5, | ||
8708 | 7,1,1639,3592,16, | ||
8709 | 0,376,1,1993,3593, | ||
8710 | 16,0,376,1,1818, | ||
8711 | 3594,16,0,376,1, | ||
8712 | 1732,3595,16,0,376, | ||
8713 | 1,1788,3596,16,0, | ||
8714 | 376,1,1611,3597,16, | ||
8715 | 0,376,1,32,3598, | ||
8716 | 16,0,376,1,117, | ||
8717 | 3599,19,330,1,117, | ||
8718 | 3600,5,7,1,1639, | ||
8719 | 3601,16,0,328,1, | ||
8720 | 1993,3602,16,0,328, | ||
8721 | 1,1818,3603,16,0, | ||
8722 | 328,1,1732,3604,16, | ||
8723 | 0,328,1,1788,3605, | ||
8724 | 16,0,328,1,1611, | ||
8725 | 3606,16,0,328,1, | ||
8726 | 32,3607,16,0,328, | ||
8727 | 1,118,3608,19,327, | ||
8728 | 1,118,3609,5,7, | ||
8729 | 1,1639,3610,16,0, | ||
8730 | 325,1,1993,3611,16, | ||
8731 | 0,325,1,1818,3612, | ||
8732 | 16,0,325,1,1732, | ||
8733 | 3613,16,0,325,1, | ||
8734 | 1788,3614,16,0,325, | ||
8735 | 1,1611,3615,16,0, | ||
8736 | 325,1,32,3616,16, | ||
8737 | 0,325,1,119,3617, | ||
8738 | 19,492,1,119,3618, | ||
8739 | 5,2,1,1584,3619, | ||
8740 | 16,0,581,1,1469, | ||
8741 | 3620,16,0,490,1, | ||
8742 | 120,3621,19,432,1, | ||
8743 | 120,3622,5,57,1, | ||
8744 | 1584,3623,16,0,430, | ||
8745 | 1,1639,3624,16,0, | ||
8746 | 430,1,112,3625,16, | ||
8747 | 0,430,1,384,3626, | ||
8748 | 16,0,430,1,447, | ||
8749 | 3627,16,0,430,1, | ||
8750 | 124,3628,16,0,430, | ||
8751 | 1,236,3629,16,0, | ||
8752 | 430,1,1763,3630,16, | ||
8753 | 0,430,1,1222,3631, | ||
8754 | 16,0,430,1,1115, | ||
8755 | 3632,16,0,430,1, | ||
8756 | 1187,3633,16,0,430, | ||
8757 | 1,137,3634,16,0, | ||
8758 | 430,1,346,3635,16, | ||
8759 | 0,430,1,32,3636, | ||
8760 | 16,0,430,1,1668, | ||
8761 | 3637,16,0,430,1, | ||
8762 | 1514,3638,16,0,430, | ||
8763 | 1,256,3639,16,0, | ||
8764 | 430,1,41,3640,16, | ||
8765 | 0,430,1,151,3641, | ||
8766 | 16,0,430,1,43, | ||
8767 | 3642,16,0,430,1, | ||
8768 | 1788,3643,16,0,430, | ||
8769 | 1,1993,3644,16,0, | ||
8770 | 430,1,52,3645,16, | ||
8771 | 0,430,1,2233,3646, | ||
8772 | 16,0,430,1,381, | ||
8773 | 3647,16,0,430,1, | ||
8774 | 166,3648,16,0,430, | ||
8775 | 1,1257,3649,16,0, | ||
8776 | 430,1,277,3650,16, | ||
8777 | 0,430,1,1432,3651, | ||
8778 | 16,0,430,1,1152, | ||
8779 | 3652,16,0,430,1, | ||
8780 | 62,3653,16,0,536, | ||
8781 | 1,504,3654,16,0, | ||
8782 | 430,1,488,3655,16, | ||
8783 | 0,430,1,397,3656, | ||
8784 | 16,0,430,1,71, | ||
8785 | 3657,16,0,430,1, | ||
8786 | 1707,3658,16,0,430, | ||
8787 | 1,182,3659,16,0, | ||
8788 | 430,1,1818,3660,16, | ||
8789 | 0,430,1,463,3661, | ||
8790 | 16,0,430,1,76, | ||
8791 | 3662,16,0,430,1, | ||
8792 | 79,3663,16,0,430, | ||
8793 | 1,1611,3664,16,0, | ||
8794 | 430,1,299,3665,16, | ||
8795 | 0,430,1,1559,3666, | ||
8796 | 16,0,430,1,85, | ||
8797 | 3667,16,0,430,1, | ||
8798 | 1396,3668,16,0,430, | ||
8799 | 1,89,3669,16,0, | ||
8800 | 430,1,199,3670,16, | ||
8801 | 0,430,1,1292,3671, | ||
8802 | 16,0,430,1,422, | ||
8803 | 3672,16,0,430,1, | ||
8804 | 97,3673,16,0,430, | ||
8805 | 1,1469,3674,16,0, | ||
8806 | 430,1,1732,3675,16, | ||
8807 | 0,430,1,102,3676, | ||
8808 | 16,0,430,1,322, | ||
8809 | 3677,16,0,430,1, | ||
8810 | 1327,3678,16,0,430, | ||
8811 | 1,217,3679,16,0, | ||
8812 | 430,1,121,3680,19, | ||
8813 | 452,1,121,3681,5, | ||
8814 | 2,1,381,3682,16, | ||
8815 | 0,450,1,41,3683, | ||
8816 | 16,0,609,1,122, | ||
8817 | 3684,19,145,1,122, | ||
8818 | 3685,5,3,1,381, | ||
8819 | 3686,16,0,143,1, | ||
8820 | 41,3687,16,0,143, | ||
8821 | 1,384,3688,16,0, | ||
8822 | 455,1,123,3689,19, | ||
8823 | 3690,4,36,69,0, | ||
8824 | 120,0,112,0,114, | ||
8825 | 0,101,0,115,0, | ||
8826 | 115,0,105,0,111, | ||
8827 | 0,110,0,65,0, | ||
8828 | 114,0,103,0,117, | ||
8829 | 0,109,0,101,0, | ||
8830 | 110,0,116,0,1, | ||
8831 | 123,3685,1,124,3691, | ||
8832 | 19,443,1,124,3692, | ||
8833 | 5,57,1,1584,3693, | ||
8834 | 16,0,441,1,1639, | ||
8835 | 3694,16,0,441,1, | ||
8836 | 112,3695,16,0,441, | ||
8837 | 1,384,3696,16,0, | ||
8838 | 441,1,447,3697,16, | ||
8839 | 0,441,1,124,3698, | ||
8840 | 16,0,441,1,236, | ||
8841 | 3699,16,0,441,1, | ||
8842 | 1763,3700,16,0,441, | ||
8843 | 1,1222,3701,16,0, | ||
8844 | 441,1,1115,3702,16, | ||
8845 | 0,441,1,1187,3703, | ||
8846 | 16,0,441,1,137, | ||
8847 | 3704,16,0,441,1, | ||
8848 | 346,3705,16,0,441, | ||
8849 | 1,32,3706,16,0, | ||
8850 | 441,1,1668,3707,16, | ||
8851 | 0,441,1,1514,3708, | ||
8852 | 16,0,441,1,256, | ||
8853 | 3709,16,0,441,1, | ||
8854 | 41,3710,16,0,441, | ||
8855 | 1,151,3711,16,0, | ||
8856 | 441,1,43,3712,16, | ||
8857 | 0,441,1,1788,3713, | ||
8858 | 16,0,441,1,1993, | ||
8859 | 3714,16,0,441,1, | ||
8860 | 52,3715,16,0,441, | ||
8861 | 1,2233,3716,16,0, | ||
8862 | 441,1,381,3717,16, | ||
8863 | 0,441,1,166,3718, | ||
8864 | 16,0,441,1,1257, | ||
8865 | 3719,16,0,441,1, | ||
8866 | 277,3720,16,0,441, | ||
8867 | 1,1432,3721,16,0, | ||
8868 | 441,1,1152,3722,16, | ||
8869 | 0,441,1,62,3723, | ||
8870 | 16,0,587,1,504, | ||
8871 | 3724,16,0,441,1, | ||
8872 | 488,3725,16,0,441, | ||
8873 | 1,397,3726,16,0, | ||
8874 | 441,1,71,3727,16, | ||
8875 | 0,441,1,1707,3728, | ||
8876 | 16,0,441,1,182, | ||
8877 | 3729,16,0,441,1, | ||
8878 | 1818,3730,16,0,441, | ||
8879 | 1,463,3731,16,0, | ||
8880 | 441,1,76,3732,16, | ||
8881 | 0,441,1,79,3733, | ||
8882 | 16,0,441,1,1611, | ||
8883 | 3734,16,0,441,1, | ||
8884 | 299,3735,16,0,441, | ||
8885 | 1,1559,3736,16,0, | ||
8886 | 441,1,85,3737,16, | ||
8887 | 0,441,1,1396,3738, | ||
8888 | 16,0,441,1,89, | ||
8889 | 3739,16,0,441,1, | ||
8890 | 199,3740,16,0,441, | ||
8891 | 1,1292,3741,16,0, | ||
8892 | 441,1,422,3742,16, | ||
8893 | 0,441,1,97,3743, | ||
8894 | 16,0,441,1,1469, | ||
8895 | 3744,16,0,441,1, | ||
8896 | 1732,3745,16,0,441, | ||
8897 | 1,102,3746,16,0, | ||
8898 | 441,1,322,3747,16, | ||
8899 | 0,441,1,1327,3748, | ||
8900 | 16,0,441,1,217, | ||
8901 | 3749,16,0,441,1, | ||
8902 | 125,3750,19,3751,4, | ||
8903 | 28,86,0,101,0, | ||
8904 | 99,0,116,0,111, | ||
8905 | 0,114,0,67,0, | ||
8906 | 111,0,110,0,115, | ||
8907 | 0,116,0,97,0, | ||
8908 | 110,0,116,0,1, | ||
8909 | 125,3692,1,126,3752, | ||
8910 | 19,3753,4,32,82, | ||
8911 | 0,111,0,116,0, | ||
8912 | 97,0,116,0,105, | ||
8913 | 0,111,0,110,0, | ||
8914 | 67,0,111,0,110, | ||
8915 | 0,115,0,116,0, | ||
8916 | 97,0,110,0,116, | ||
8917 | 0,1,126,3692,1, | ||
8918 | 127,3754,19,3755,4, | ||
8919 | 24,76,0,105,0, | ||
8920 | 115,0,116,0,67, | ||
8921 | 0,111,0,110,0, | ||
8922 | 115,0,116,0,97, | ||
8923 | 0,110,0,116,0, | ||
8924 | 1,127,3692,1,128, | ||
8925 | 3756,19,139,1,128, | ||
8926 | 3757,5,56,1,1584, | ||
8927 | 3758,16,0,428,1, | ||
8928 | 1639,3759,16,0,382, | ||
8929 | 1,112,3760,16,0, | ||
8930 | 265,1,384,3761,16, | ||
8931 | 0,179,1,447,3762, | ||
8932 | 16,0,563,1,124, | ||
8933 | 3763,16,0,270,1, | ||
8934 | 236,3764,16,0,374, | ||
8935 | 1,1763,3765,16,0, | ||
8936 | 247,1,1222,3766,16, | ||
8937 | 0,263,1,1115,3767, | ||
8938 | 16,0,225,1,1187, | ||
8939 | 3768,16,0,224,1, | ||
8940 | 137,3769,16,0,301, | ||
8941 | 1,346,3770,16,0, | ||
8942 | 418,1,32,3771,16, | ||
8943 | 0,382,1,1668,3772, | ||
8944 | 16,0,200,1,1514, | ||
8945 | 3773,16,0,526,1, | ||
8946 | 256,3774,16,0,390, | ||
8947 | 1,41,3775,16,0, | ||
8948 | 179,1,151,3776,16, | ||
8949 | 0,302,1,43,3777, | ||
8950 | 16,0,579,1,1788, | ||
8951 | 3778,16,0,382,1, | ||
8952 | 1993,3779,16,0,382, | ||
8953 | 1,52,3780,16,0, | ||
8954 | 552,1,2233,3781,16, | ||
8955 | 0,137,1,381,3782, | ||
8956 | 16,0,179,1,166, | ||
8957 | 3783,16,0,306,1, | ||
8958 | 1257,3784,16,0,296, | ||
8959 | 1,277,3785,16,0, | ||
8960 | 399,1,1432,3786,16, | ||
8961 | 0,412,1,1152,3787, | ||
8962 | 16,0,266,1,504, | ||
8963 | 3788,16,0,331,1, | ||
8964 | 488,3789,16,0,580, | ||
8965 | 1,397,3790,16,0, | ||
8966 | 500,1,71,3791,16, | ||
8967 | 0,218,1,1707,3792, | ||
8968 | 16,0,300,1,182, | ||
8969 | 3793,16,0,331,1, | ||
8970 | 1818,3794,16,0,382, | ||
8971 | 1,463,3795,16,0, | ||
8972 | 331,1,76,3796,16, | ||
8973 | 0,454,1,79,3797, | ||
8974 | 16,0,226,1,1611, | ||
8975 | 3798,16,0,382,1, | ||
8976 | 299,3799,16,0,405, | ||
8977 | 1,1559,3800,16,0, | ||
8978 | 548,1,85,3801,16, | ||
8979 | 0,413,1,1396,3802, | ||
8980 | 16,0,400,1,89, | ||
8981 | 3803,16,0,243,1, | ||
8982 | 199,3804,16,0,359, | ||
8983 | 1,1292,3805,16,0, | ||
8984 | 367,1,422,3806,16, | ||
8985 | 0,530,1,97,3807, | ||
8986 | 16,0,391,1,1469, | ||
8987 | 3808,16,0,428,1, | ||
8988 | 1732,3809,16,0,382, | ||
8989 | 1,102,3810,16,0, | ||
8990 | 252,1,322,3811,16, | ||
8991 | 0,414,1,1327,3812, | ||
8992 | 16,0,365,1,217, | ||
8993 | 3813,16,0,366,1, | ||
8994 | 129,3814,19,3815,4, | ||
8995 | 36,67,0,111,0, | ||
8996 | 110,0,115,0,116, | ||
8997 | 0,97,0,110,0, | ||
8998 | 116,0,69,0,120, | ||
8999 | 0,112,0,114,0, | ||
9000 | 101,0,115,0,115, | ||
9001 | 0,105,0,111,0, | ||
9002 | 110,0,1,129,3757, | ||
9003 | 1,130,3816,19,3817, | ||
9004 | 4,30,73,0,100, | ||
9005 | 0,101,0,110,0, | ||
9006 | 116,0,69,0,120, | ||
9007 | 0,112,0,114,0, | ||
9008 | 101,0,115,0,115, | ||
9009 | 0,105,0,111,0, | ||
9010 | 110,0,1,130,3757, | ||
9011 | 1,131,3818,19,3819, | ||
9012 | 4,36,73,0,100, | ||
9013 | 0,101,0,110,0, | ||
9014 | 116,0,68,0,111, | ||
9015 | 0,116,0,69,0, | ||
9016 | 120,0,112,0,114, | ||
9017 | 0,101,0,115,0, | ||
9018 | 115,0,105,0,111, | ||
9019 | 0,110,0,1,131, | ||
9020 | 3757,1,132,3820,19, | ||
9021 | 3821,4,44,70,0, | ||
9022 | 117,0,110,0,99, | ||
9023 | 0,116,0,105,0, | ||
9024 | 111,0,110,0,67, | ||
9025 | 0,97,0,108,0, | ||
9026 | 108,0,69,0,120, | ||
9027 | 0,112,0,114,0, | ||
9028 | 101,0,115,0,115, | ||
9029 | 0,105,0,111,0, | ||
9030 | 110,0,1,132,3757, | ||
9031 | 1,133,3822,19,3823, | ||
9032 | 4,32,66,0,105, | ||
9033 | 0,110,0,97,0, | ||
9034 | 114,0,121,0,69, | ||
9035 | 0,120,0,112,0, | ||
9036 | 114,0,101,0,115, | ||
9037 | 0,115,0,105,0, | ||
9038 | 111,0,110,0,1, | ||
9039 | 133,3757,1,134,3824, | ||
9040 | 19,3825,4,30,85, | ||
9041 | 0,110,0,97,0, | ||
9042 | 114,0,121,0,69, | ||
9043 | 0,120,0,112,0, | ||
9044 | 114,0,101,0,115, | ||
9045 | 0,115,0,105,0, | ||
9046 | 111,0,110,0,1, | ||
9047 | 134,3757,1,135,3826, | ||
9048 | 19,3827,4,36,84, | ||
9049 | 0,121,0,112,0, | ||
9050 | 101,0,99,0,97, | ||
9051 | 0,115,0,116,0, | ||
9052 | 69,0,120,0,112, | ||
9053 | 0,114,0,101,0, | ||
9054 | 115,0,115,0,105, | ||
9055 | 0,111,0,110,0, | ||
9056 | 1,135,3757,1,136, | ||
9057 | 3828,19,3829,4,42, | ||
9058 | 80,0,97,0,114, | ||
9059 | 0,101,0,110,0, | ||
9060 | 116,0,104,0,101, | ||
9061 | 0,115,0,105,0, | ||
9062 | 115,0,69,0,120, | ||
9063 | 0,112,0,114,0, | ||
9064 | 101,0,115,0,115, | ||
9065 | 0,105,0,111,0, | ||
9066 | 110,0,1,136,3757, | ||
9067 | 1,137,3830,19,3831, | ||
9068 | 4,56,73,0,110, | ||
9069 | 0,99,0,114,0, | ||
9070 | 101,0,109,0,101, | ||
9071 | 0,110,0,116,0, | ||
9072 | 68,0,101,0,99, | ||
9073 | 0,114,0,101,0, | ||
9074 | 109,0,101,0,110, | ||
9075 | 0,116,0,69,0, | ||
9076 | 120,0,112,0,114, | ||
9077 | 0,101,0,115,0, | ||
9078 | 115,0,105,0,111, | ||
9079 | 0,110,0,1,137, | ||
9080 | 3757,1,139,3832,19, | ||
9081 | 651,1,139,3428,1, | ||
9082 | 140,3833,19,634,1, | ||
9083 | 140,3428,1,141,3834, | ||
9084 | 19,2811,1,141,3431, | ||
9085 | 1,142,3835,19,2801, | ||
9086 | 1,142,3431,1,143, | ||
9087 | 3836,19,2806,1,143, | ||
9088 | 3431,1,144,3837,19, | ||
9089 | 2796,1,144,3431,1, | ||
9090 | 145,3838,19,2787,1, | ||
9091 | 145,3434,1,146,3839, | ||
9092 | 19,2771,1,146,3434, | ||
9093 | 1,147,3840,19,2782, | ||
9094 | 1,147,3438,1,148, | ||
9095 | 3841,19,2777,1,148, | ||
9096 | 3438,1,149,3842,19, | ||
9097 | 656,1,149,3442,1, | ||
9098 | 150,3843,19,646,1, | ||
9099 | 150,3442,1,151,3844, | ||
9100 | 19,661,1,151,3446, | ||
9101 | 1,152,3845,19,640, | ||
9102 | 1,152,3446,1,153, | ||
9103 | 3846,19,1409,1,153, | ||
9104 | 3452,1,154,3847,19, | ||
9105 | 1404,1,154,3452,1, | ||
9106 | 155,3848,19,1395,1, | ||
9107 | 155,3456,1,156,3849, | ||
9108 | 19,1428,1,156,3462, | ||
9109 | 1,157,3850,19,1423, | ||
9110 | 1,157,3462,1,158, | ||
9111 | 3851,19,999,1,158, | ||
9112 | 3467,1,159,3852,19, | ||
9113 | 715,1,159,3510,1, | ||
9114 | 160,3853,19,742,1, | ||
9115 | 160,3510,1,161,3854, | ||
9116 | 19,751,1,161,3522, | ||
9117 | 1,162,3855,19,823, | ||
9118 | 1,162,3522,1,163, | ||
9119 | 3856,19,764,1,163, | ||
9120 | 3525,1,164,3857,19, | ||
9121 | 727,1,164,3525,1, | ||
9122 | 165,3858,19,806,1, | ||
9123 | 165,3525,1,166,3859, | ||
9124 | 19,800,1,166,3525, | ||
9125 | 1,167,3860,19,709, | ||
9126 | 1,167,3525,1,168, | ||
9127 | 3861,19,704,1,168, | ||
9128 | 3525,1,169,3862,19, | ||
9129 | 699,1,169,3525,1, | ||
9130 | 170,3863,19,693,1, | ||
9131 | 170,3525,1,171,3864, | ||
9132 | 19,688,1,171,3525, | ||
9133 | 1,172,3865,19,683, | ||
9134 | 1,172,3525,1,173, | ||
9135 | 3866,19,678,1,173, | ||
9136 | 3525,1,174,3867,19, | ||
9137 | 782,1,174,3525,1, | ||
9138 | 175,3868,19,1168,1, | ||
9139 | 175,3555,1,176,3869, | ||
9140 | 19,1157,1,176,3564, | ||
9141 | 1,177,3870,19,1151, | ||
9142 | 1,177,3573,1,178, | ||
9143 | 3871,19,1146,1,178, | ||
9144 | 3573,1,179,3872,19, | ||
9145 | 794,1,179,3582,1, | ||
9146 | 180,3873,19,832,1, | ||
9147 | 180,3582,1,181,3874, | ||
9148 | 19,722,1,181,3591, | ||
9149 | 1,182,3875,19,775, | ||
9150 | 1,182,3600,1,183, | ||
9151 | 3876,19,671,1,183, | ||
9152 | 3609,1,184,3877,19, | ||
9153 | 1340,1,184,3618,1, | ||
9154 | 185,3878,19,1308,1, | ||
9155 | 185,3618,1,186,3879, | ||
9156 | 19,1012,1,186,3618, | ||
9157 | 1,187,3880,19,1254, | ||
9158 | 1,187,3618,1,188, | ||
9159 | 3881,19,1292,1,188, | ||
9160 | 3534,1,189,3882,19, | ||
9161 | 1134,1,189,3534,1, | ||
9162 | 190,3883,19,1036,1, | ||
9163 | 190,3534,1,191,3884, | ||
9164 | 19,993,1,191,3534, | ||
9165 | 1,192,3885,19,1329, | ||
9166 | 1,192,3534,1,193, | ||
9167 | 3886,19,1298,1,193, | ||
9168 | 3534,1,194,3887,19, | ||
9169 | 1259,1,194,3534,1, | ||
9170 | 195,3888,19,1179,1, | ||
9171 | 195,3534,1,196,3889, | ||
9172 | 19,1249,1,196,3546, | ||
9173 | 1,197,3890,19,1238, | ||
9174 | 1,197,3546,1,198, | ||
9175 | 3891,19,1363,1,198, | ||
9176 | 3692,1,199,3892,19, | ||
9177 | 1358,1,199,3692,1, | ||
9178 | 200,3893,19,1018,1, | ||
9179 | 200,3692,1,201,3894, | ||
9180 | 19,1334,1,201,3692, | ||
9181 | 1,202,3895,19,1346, | ||
9182 | 1,202,3692,1,203, | ||
9183 | 3896,19,986,1,203, | ||
9184 | 3692,1,204,3897,19, | ||
9185 | 1108,1,204,3692,1, | ||
9186 | 205,3898,19,1221,1, | ||
9187 | 205,3757,1,206,3899, | ||
9188 | 19,1026,1,206,3757, | ||
9189 | 1,207,3900,19,1043, | ||
9190 | 1,207,3757,1,208, | ||
9191 | 3901,19,1064,1,208, | ||
9192 | 3757,1,209,3902,19, | ||
9193 | 1059,1,209,3757,1, | ||
9194 | 210,3903,19,1054,1, | ||
9195 | 210,3757,1,211,3904, | ||
9196 | 19,1049,1,211,3757, | ||
9197 | 1,212,3905,19,1205, | ||
9198 | 1,212,3757,1,213, | ||
9199 | 3906,19,1232,1,213, | ||
9200 | 3757,1,214,3907,19, | ||
9201 | 1281,1,214,3757,1, | ||
9202 | 215,3908,19,1200,1, | ||
9203 | 215,3757,1,216,3909, | ||
9204 | 19,1190,1,216,3757, | ||
9205 | 1,217,3910,19,1210, | ||
9206 | 1,217,3757,1,218, | ||
9207 | 3911,19,1129,1,218, | ||
9208 | 3757,1,219,3912,19, | ||
9209 | 1069,1,219,3757,1, | ||
9210 | 220,3913,19,1031,1, | ||
9211 | 220,3757,1,221,3914, | ||
9212 | 19,1005,1,221,3757, | ||
9213 | 1,222,3915,19,1353, | ||
9214 | 1,222,3757,1,223, | ||
9215 | 3916,19,1324,1,223, | ||
9216 | 3757,1,224,3917,19, | ||
9217 | 1314,1,224,3757,1, | ||
9218 | 225,3918,19,1303,1, | ||
9219 | 225,3757,1,226,3919, | ||
9220 | 19,1286,1,226,3757, | ||
9221 | 1,227,3920,19,1265, | ||
9222 | 1,227,3757,1,228, | ||
9223 | 3921,19,1243,1,228, | ||
9224 | 3757,1,229,3922,19, | ||
9225 | 1226,1,229,3757,1, | ||
9226 | 230,3923,19,1184,1, | ||
9227 | 230,3757,1,231,3924, | ||
9228 | 19,1215,1,231,3757, | ||
9229 | 1,232,3925,19,1270, | ||
9230 | 1,232,3757,1,233, | ||
9231 | 3926,19,1319,1,233, | ||
9232 | 3757,1,234,3927,19, | ||
9233 | 1124,1,234,3757,1, | ||
9234 | 235,3928,19,1195,1, | ||
9235 | 235,3757,1,236,3929, | ||
9236 | 19,1162,1,236,3757, | ||
9237 | 1,237,3930,19,1140, | ||
9238 | 1,237,3757,1,238, | ||
9239 | 3931,19,1114,1,238, | ||
9240 | 3757,1,239,3932,19, | ||
9241 | 1373,1,239,3757,1, | ||
9242 | 240,3933,19,1077,1, | ||
9243 | 240,3757,1,241,3934, | ||
9244 | 19,1082,1,241,3757, | ||
9245 | 1,242,3935,19,1102, | ||
9246 | 1,242,3757,1,243, | ||
9247 | 3936,19,1092,1,243, | ||
9248 | 3757,1,244,3937,19, | ||
9249 | 1097,1,244,3757,1, | ||
9250 | 245,3938,19,1087,1, | ||
9251 | 245,3757,1,246,3939, | ||
9252 | 19,1368,1,246,3757, | ||
9253 | 1,247,3940,19,1119, | ||
9254 | 1,247,3757,1,248, | ||
9255 | 3941,19,1276,1,248, | ||
9256 | 3622,1,249,3942,19, | ||
9257 | 1443,1,249,3681,1, | ||
9258 | 250,3943,19,1454,1, | ||
9259 | 250,3681,1,251,3944, | ||
9260 | 19,1438,1,251,3685, | ||
9261 | 1,252,3945,19,1742, | ||
9262 | 1,252,3485,1,253, | ||
9263 | 3946,19,1737,1,253, | ||
9264 | 3485,1,254,3947,19, | ||
9265 | 1732,1,254,3485,1, | ||
9266 | 255,3948,19,1727,1, | ||
9267 | 255,3485,1,256,3949, | ||
9268 | 19,1722,1,256,3485, | ||
9269 | 1,257,3950,19,1717, | ||
9270 | 1,257,3485,1,258, | ||
9271 | 3951,19,1712,1,258, | ||
9272 | 3485,1,259,3952,19, | ||
9273 | 1605,1,259,3504,1, | ||
9274 | 260,3953,19,1600,1, | ||
9275 | 260,3504,1,261,3954, | ||
9276 | 19,1661,1,261,3504, | ||
9277 | 1,262,3955,19,1688, | ||
9278 | 1,262,3504,1,263, | ||
9279 | 3956,19,1593,1,263, | ||
9280 | 3504,1,264,3957,19, | ||
9281 | 1588,1,264,3504,1, | ||
9282 | 265,3958,19,1583,1, | ||
9283 | 265,3504,1,266,3959, | ||
9284 | 19,1578,1,266,3504, | ||
9285 | 1,267,3960,19,1573, | ||
9286 | 1,267,3504,1,268, | ||
9287 | 3961,19,1568,1,268, | ||
9288 | 3504,1,269,3962,19, | ||
9289 | 1563,1,269,3504,1, | ||
9290 | 270,3963,19,1653,1, | ||
9291 | 270,3504,1,271,3964, | ||
9292 | 19,1648,1,271,3504, | ||
9293 | 1,272,3965,19,1643, | ||
9294 | 1,272,3504,1,273, | ||
9295 | 3966,19,1638,1,273, | ||
9296 | 3504,1,274,3967,19, | ||
9297 | 1555,1,274,3504,1, | ||
9298 | 275,3968,19,1550,1, | ||
9299 | 275,3504,1,276,3969, | ||
9300 | 19,1545,1,276,3504, | ||
9301 | 1,277,3970,19,1540, | ||
9302 | 1,277,3504,1,278, | ||
9303 | 3971,19,1535,1,278, | ||
9304 | 3504,1,279,3972,19, | ||
9305 | 1530,1,279,3504,1, | ||
9306 | 280,3973,19,1525,1, | ||
9307 | 280,3504,1,281,3974, | ||
9308 | 19,1632,1,281,3504, | ||
9309 | 1,282,3975,19,1519, | ||
9310 | 1,282,3504,1,283, | ||
9311 | 3976,19,1514,1,283, | ||
9312 | 3504,1,284,3977,19, | ||
9313 | 1626,1,284,3504,1, | ||
9314 | 285,3978,19,1676,1, | ||
9315 | 285,3504,1,286,3979, | ||
9316 | 19,1507,1,286,3504, | ||
9317 | 1,287,3980,19,1502, | ||
9318 | 1,287,3504,1,288, | ||
9319 | 3981,19,1497,1,288, | ||
9320 | 3504,1,289,3982,19, | ||
9321 | 1619,1,289,3504,1, | ||
9322 | 290,3983,19,1704,1, | ||
9323 | 290,3504,1,291,3984, | ||
9324 | 19,1490,1,291,3504, | ||
9325 | 1,292,3985,19,3986, | ||
9326 | 4,50,65,0,114, | ||
9327 | 0,103,0,117,0, | ||
9328 | 109,0,101,0,110, | ||
9329 | 0,116,0,68,0, | ||
9330 | 101,0,99,0,108, | ||
9331 | 0,97,0,114,0, | ||
9332 | 97,0,116,0,105, | ||
9333 | 0,111,0,110,0, | ||
9334 | 76,0,105,0,115, | ||
9335 | 0,116,0,95,0, | ||
9336 | 51,0,1,292,3462, | ||
9337 | 1,293,3987,19,3988, | ||
9338 | 4,28,65,0,114, | ||
9339 | 0,103,0,117,0, | ||
9340 | 109,0,101,0,110, | ||
9341 | 0,116,0,76,0, | ||
9342 | 105,0,115,0,116, | ||
9343 | 0,95,0,51,0, | ||
9344 | 1,293,3681,1,294, | ||
9345 | 3989,19,3990,4,24, | ||
9346 | 83,0,116,0,97, | ||
9347 | 0,116,0,101,0, | ||
9348 | 109,0,101,0,110, | ||
9349 | 0,116,0,95,0, | ||
9350 | 49,0,51,0,1, | ||
9351 | 294,3525,1,295,3991, | ||
9352 | 19,3992,4,28,65, | ||
9353 | 0,114,0,103,0, | ||
9354 | 117,0,109,0,101, | ||
9355 | 0,110,0,116,0, | ||
9356 | 76,0,105,0,115, | ||
9357 | 0,116,0,95,0, | ||
9358 | 52,0,1,295,3681, | ||
9359 | 1,296,3993,19,3994, | ||
9360 | 4,50,65,0,114, | ||
9361 | 0,103,0,117,0, | ||
9362 | 109,0,101,0,110, | ||
9363 | 0,116,0,68,0, | ||
9364 | 101,0,99,0,108, | ||
9365 | 0,97,0,114,0, | ||
9366 | 97,0,116,0,105, | ||
9367 | 0,111,0,110,0, | ||
9368 | 76,0,105,0,115, | ||
9369 | 0,116,0,95,0, | ||
9370 | 52,0,1,296,3462, | ||
9371 | 1,297,3995,19,3996, | ||
9372 | 4,50,65,0,114, | ||
9373 | 0,103,0,117,0, | ||
9374 | 109,0,101,0,110, | ||
9375 | 0,116,0,68,0, | ||
9376 | 101,0,99,0,108, | ||
9377 | 0,97,0,114,0, | ||
9378 | 97,0,116,0,105, | ||
9379 | 0,111,0,110,0, | ||
9380 | 76,0,105,0,115, | ||
9381 | 0,116,0,95,0, | ||
9382 | 53,0,1,297,3462, | ||
9383 | 2,0,0}; | ||
9384 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
9385 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
9386 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
9387 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
9388 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
9389 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
9390 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
9391 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
9392 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
9393 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
9394 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
9395 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
9396 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
9397 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
9398 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
9399 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
9400 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
9401 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
9402 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
9403 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
9404 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
9405 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
9406 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
9407 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
9408 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
9409 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
9410 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
9411 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
9412 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
9413 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
9414 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
9415 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
9416 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
9417 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
9418 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
9419 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
9420 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
9421 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
9422 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
9423 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
9424 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
9425 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
9426 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
9427 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
9428 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
9429 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
9430 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
9431 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
9432 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
9433 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
9434 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
9435 | new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); | ||
9436 | new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); | ||
9437 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
9438 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
9439 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
9440 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
9441 | new Sfactory(this,"Assignment_4",new SCreator(Assignment_4_factory)); | ||
9442 | new Sfactory(this,"Assignment_6",new SCreator(Assignment_6_factory)); | ||
9443 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
9444 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
9445 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
9446 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
9447 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
9448 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
9449 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
9450 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
9451 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
9452 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
9453 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
9454 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
9455 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
9456 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
9457 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
9458 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
9459 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
9460 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
9461 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
9462 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
9463 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
9464 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
9465 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
9466 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
9467 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
9468 | new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); | ||
9469 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
9470 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
9471 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
9472 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
9473 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
9474 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
9475 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
9476 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
9477 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
9478 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
9479 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
9480 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
9481 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
9482 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
9483 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
9484 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
9485 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
9486 | new Sfactory(this,"Assignment_3",new SCreator(Assignment_3_factory)); | ||
9487 | new Sfactory(this,"Assignment_5",new SCreator(Assignment_5_factory)); | ||
9488 | new Sfactory(this,"Assignment_7",new SCreator(Assignment_7_factory)); | ||
9489 | new Sfactory(this,"Assignment_8",new SCreator(Assignment_8_factory)); | ||
9490 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
9491 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
9492 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
9493 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
9494 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
9495 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
9496 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
9497 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
9498 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
9499 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
9500 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
9501 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
9502 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
9503 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
9504 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
9505 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
9506 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
9507 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
9508 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
9509 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
9510 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
9511 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
9512 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
9513 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
9514 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
9515 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
9516 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
9517 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
9518 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
9519 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
9520 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
9521 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
9522 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
9523 | new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); | ||
9524 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
9525 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
9526 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
9527 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
9528 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
9529 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
9530 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
9531 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
9532 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
9533 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
9534 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
9535 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
9536 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
9537 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
9538 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
9539 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
9540 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
9541 | new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); | ||
9542 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
9543 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
9544 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
9545 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
9546 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
9547 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
9548 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
9549 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
9550 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
9551 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
9552 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
9553 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
9554 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
9555 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
9556 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
9557 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
9558 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
9559 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
9560 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
9561 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
9562 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
9563 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
9564 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
9565 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
9566 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
9567 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
9568 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
9569 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
9570 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
9571 | new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory)); | ||
9572 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
9573 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
9574 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
9575 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
9576 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
9577 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
9578 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
9579 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
9580 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
9581 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
9582 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
9583 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
9584 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
9585 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
9586 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
9587 | } | ||
9588 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
9589 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
9590 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
9591 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
9592 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
9593 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
9594 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
9595 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
9596 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
9597 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
9598 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
9599 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
9600 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
9601 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
9602 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
9603 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
9604 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
9605 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
9606 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
9607 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
9608 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
9609 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
9610 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
9611 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
9612 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
9613 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
9614 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
9615 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
9616 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
9617 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
9618 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
9619 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
9620 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
9621 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
9622 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
9623 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
9624 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
9625 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
9626 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
9627 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
9628 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
9629 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
9630 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
9631 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
9632 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
9633 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
9634 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
9635 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
9636 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
9637 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
9638 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
9639 | public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } | ||
9640 | public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } | ||
9641 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
9642 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
9643 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
9644 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
9645 | public static object Assignment_4_factory(Parser yyp) { return new Assignment_4(yyp); } | ||
9646 | public static object Assignment_6_factory(Parser yyp) { return new Assignment_6(yyp); } | ||
9647 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
9648 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
9649 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
9650 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
9651 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
9652 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
9653 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
9654 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
9655 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
9656 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
9657 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
9658 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
9659 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
9660 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
9661 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
9662 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
9663 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
9664 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
9665 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
9666 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
9667 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
9668 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
9669 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
9670 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
9671 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
9672 | public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } | ||
9673 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
9674 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
9675 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
9676 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
9677 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
9678 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
9679 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
9680 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
9681 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
9682 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
9683 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
9684 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
9685 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
9686 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
9687 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
9688 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
9689 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
9690 | public static object Assignment_3_factory(Parser yyp) { return new Assignment_3(yyp); } | ||
9691 | public static object Assignment_5_factory(Parser yyp) { return new Assignment_5(yyp); } | ||
9692 | public static object Assignment_7_factory(Parser yyp) { return new Assignment_7(yyp); } | ||
9693 | public static object Assignment_8_factory(Parser yyp) { return new Assignment_8(yyp); } | ||
9694 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
9695 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
9696 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
9697 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
9698 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
9699 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
9700 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
9701 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
9702 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
9703 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
9704 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
9705 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
9706 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
9707 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
9708 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
9709 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
9710 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
9711 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
9712 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
9713 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
9714 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
9715 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
9716 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
9717 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
9718 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
9719 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
9720 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
9721 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
9722 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
9723 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
9724 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
9725 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
9726 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
9727 | public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } | ||
9728 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
9729 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
9730 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
9731 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
9732 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
9733 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
9734 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
9735 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
9736 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
9737 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
9738 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
9739 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
9740 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
9741 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
9742 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
9743 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
9744 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
9745 | public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } | ||
9746 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
9747 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
9748 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
9749 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
9750 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
9751 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
9752 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
9753 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
9754 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
9755 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
9756 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
9757 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
9758 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
9759 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
9760 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
9761 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
9762 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
9763 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
9764 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
9765 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
9766 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
9767 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
9768 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
9769 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
9770 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
9771 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
9772 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
9773 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
9774 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
9775 | public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); } | ||
9776 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
9777 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
9778 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
9779 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
9780 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
9781 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
9782 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
9783 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
9784 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
9785 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
9786 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
9787 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
9788 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
9789 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
9790 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
9791 | } | ||
9792 | public class LSLSyntax | ||
9793 | : Parser { | ||
9794 | public LSLSyntax | ||
9795 | ():base(new yyLSLSyntax | ||
9796 | (),new LSLTokens()) {} | ||
9797 | public LSLSyntax | ||
9798 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
9799 | public LSLSyntax | ||
9800 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
9801 | |||
9802 | } | ||
9803 | } | ||