-
Notifications
You must be signed in to change notification settings - Fork 23
/
script_executor.lua
541 lines (479 loc) · 214 KB
/
script_executor.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
-- btw you're unable to be logged by running this script
-- even if you crash or get kicked, so have a blast
--
-- open the current roblox process
--
local pid = getProcessIDFromProcessName("RobloxPlayerBeta.exe");
openProcess(pid);
local base = getAddress(enumModules(pid)[1].Name);
local functions = {};
local nfunctions = 0;
-- custom mem utility functions...
--
c_ref1 = {"0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"};
c_ref2 = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};
function readByte(addr)
return readBytes(addr,1,false)
end
function writeByte(addr, b)
writeBytes(addr, { b })
end
function byte_to_str(b)
if b == nil then return "00" end
local str="";
if b <= 256 then
str=str..c_ref1[math.floor(b/16)+1];
str=str..c_ref1[math.floor(b%16)+1];
end
return str;
end
function addr_to_bytes(addr)
if addr == nil then
error'Nil address used in addr_to_bytes'
end
local bytes = {0,0,0,0};
for i=0,3 do
bytes[4-i]=(addr>>(i*8))%256;
end
return bytes;
end
function addr_to_str(addr)
if addr == nil then
error'Nil address used in addr_to_str'
end
local str="";
local bytes = addr_to_bytes(addr);
for i=1,4 do -- lua tables
str = str..byte_to_str(bytes[i])
end
return str;
end
function to_hex(s)
if (string.len(s) ~= 2) then
return 0
end
local b=0;
for i=1,16,1 do
if (s:sub(1,1)==c_ref1[i]) then
b=b+(c_ref2[i]*16);
end
if (s:sub(2,2)==c_ref1[i]) then
b=b+i;
end
end
return b;
end
function readsb(addr, len)
local str = "";
for i=1,len do
str=str..byte_to_str(readByte(addr));
end
return str;
end
function getprologue(addr)
local func_start = addr;
while not (readByte(func_start) == 0x55 and readByte(func_start + 1) == 0x8B and readByte(func_start + 2) == 0xEC) do
func_start = func_start - 1;
end
return func_start;
end
function getnextprologue(addr)
local func_start = addr;
while not (readByte(func_start) == 0x55 and readByte(func_start + 1) == 0x8B and readByte(func_start + 2) == 0xEC) do
func_start = func_start + 1;
end
return func_start;
end
function memcpy(t, addr, size)
if (type(t) == "table") then
for i=1,size do
t[i] = readByte(addr + (i - 0));
end
elseif (type(t) == "number") then
writeBytes(t, readBytes(addr, size, true));
end
end
-- scan for our lua functions
-- this may very rarely need to be updated
--
local r_deserialize= getAddress(AOBScan("8A????88????8A??????88????8A","-C-W",0,"")[0]);
local r_spawn = getAddress(AOBScan("83????F20F10????F20F??????FF75","-C-W",0,"")[0]);
local r_newthread = getAddress(AOBScan("C741??0500000083????108B","-C-W",0,"")[0]);
local r_gettop = getAddress(AOBScan("558BEC8B??088B??102B","-C-W",0,"")[1]); -- second identical result
r_deserialize = getprologue(r_deserialize);
r_spawn = getprologue(r_spawn);
r_newthread = getprologue(r_newthread);
-- these are without a doubt never going to change
-- but I include them here
conv_deserialize = "cdecl";
conv_spawn = "cdecl";
conv_newthread = "cdecl";
-- a place to store our function information
-- for external function calls
--
local arg_data = allocateSharedMemory("arg_data", 0x1000);
if arg_data == nil then
error'Failed to allocate shared memory...'
end
local ret_location = (arg_data + 64);
function getReturn()
return readInteger(ret_location);
end
-- lua state hook
local rL = 0;
local gettop_old_bytes = readBytes(r_gettop + 6, 6, true);
local gettop_hook_loc = arg_data + 0x400;
local trace_loc = arg_data + 0x3FC;
-- make the hook
writeByte(gettop_hook_loc, 0x60);
writeBytes(gettop_hook_loc + 1, { 0x89, 0x0D });
writeInteger(gettop_hook_loc + 3, trace_loc);
writeByte(gettop_hook_loc + 7, 0x61);
writeBytes(gettop_hook_loc + 8, gettop_old_bytes);
writeByte(gettop_hook_loc + 14, 0xE9);
writeInteger(gettop_hook_loc + 15, (r_gettop + 6 + 6) - (gettop_hook_loc + 14 + 5));
-- get a jmp instruction prepared
local gettop_rel = gettop_hook_loc - (r_gettop + 6 + 5);
local gettop_rel_bytes = addr_to_bytes(gettop_rel);
local gettop_hook = { 0xE9, 0x90, 0x90, 0x90, 0x90, 0x90 };
gettop_hook[2] = gettop_rel_bytes[4];
gettop_hook[3] = gettop_rel_bytes[3];
gettop_hook[4] = gettop_rel_bytes[2];
gettop_hook[5] = gettop_rel_bytes[1];
-- handle the external calling convention routines...
-- aka convert every function into an stdcall if it's not
-- already.
--
function make_stdcall(func, convention, args)
if (convention == "stdcall") then
return func
end
local ret = args * 4;
nfunctions = nfunctions + 1;
local loc = allocateSharedMemory("func"..tostring(nfunctions), 4096)
local code = "";
code = code .. addr_to_str(loc)..": \n";
code = code .. "push ebp \n";
code = code .. "mov ebp,esp \n";
code = code .. "push eax \n";
if (convention == "cdecl") then
for i=args,1,-1 do
-- since cheat engine's executeCode (a.k.a. CreateRemoteThread)
-- can only pass 1 arg to a function, we can compensate
-- by passing all of our beloved args through variables in memory.
-- This method is even more efficient, and if we wanted we can
-- set this thing up to handle all function calls on a single thread
-- (which i've done in C++ already)
-- For now, we can spawn a thread for each function call as this
-- literally only needs 2 function calls to work.
--
code = code .. "push ["..addr_to_str(arg_data+((i-1)*4)).."] \n" --"push "..args--"push [ebp+"..byte_to_str(4+(i*4)).."] \n";
end
elseif (convention == "thiscall") then
if (args > 1) then
for i=args,2,-1 do
code = code .. "push ["..addr_to_str(arg_data+((i-1)*4)).."] \n" --"push [ebp+"..byte_to_str(4+(i*4)).."] \n";
end
end
if (args > 0) then
code = code .. "push ecx \n";
code = code .. "mov ecx,["..addr_to_str(arg_data+0).."] \n" --"mov ecx,[ebp+8] \n";
ret = ret - 4;
end
elseif (convention == "fastcall") then
if (args > 2) then
for i=args,3,-1 do
code = code .. "push ["..addr_to_str(arg_data+((i-1)*4)).."] \n" --"push [ebp+"..byte_to_str(4+(i*4)).."] \n";
end
end
if (args > 0) then
code = code .. "push ecx";
code = code .. "mov ecx,["..addr_to_str(arg_data+0).."] \n" --"mov ecx,[ebp+8] \n";
ret = ret - 4;
end
if (args > 1) then
code = code .. "push edx";
code = code .. "mov ecx,["..addr_to_str(arg_data+4).."] \n" --"mov edx,[ebp+8] \n";
ret = ret - 4;
end
end
code = code .. "call "..addr_to_str(func).." \n"
code = code .. "mov ["..addr_to_str(arg_data + 64).."],eax \n";
if (convention == "cdecl") then
code = code .. "add esp,"..byte_to_str(args*4).." \n"
elseif (convention == "thiscall") then
code = code .. "pop ecx \n"
elseif (convention == "fastcall") then
code = code .. "pop ecx \n"
code = code .. "pop edx \n"
end
code = code .. "pop eax \n";
code = code .. "pop ebp \n"
code = code .. "ret 04";
--code = code .. "ret " .. byte_to_str(ret) .. " \n"
autoAssemble(code);
return loc;
end
function patch_retcheck(func_start)
local func_end = getnextprologue(func_start + 3);
local func_size = func_end - func_start;
local retcheck_at = func_start;
local found = false
local check = {0,0,0,0,0,0,0,0};
while (retcheck_at < func_end) do
memcpy(check, retcheck_at, 8);
-- find retcheck signature
if (check[1] == 0x72 and check[3] == 0xA1 and check[8] == 0x8B) then
found = true
retcheck_at = (retcheck_at - func_start) + 1;
break;
end
retcheck_at = retcheck_at + 1;
end
if (found == false) then
return func_start;
else
-- if there is retcheck . . .
func_size = func_end - func_start;
nfunctions = nfunctions + 1;
local func = allocateSharedMemory("func"..tostring(nfunctions), func_size);
local jmpstart = func + retcheck_at + 2;
local newjmpdist = 0;
memcpy(func, func_start, func_size);
local i = 1;
while (i < func_size) do
-- Fix relative calls
if (readByte(func + i) == 0xE8 or readByte(func + i) == 0xE9) then
local oldrel = readInteger(func_start + i + 1);
local relfunc = (func_start + i + oldrel) + 5;
if (relfunc % 0x10 == 0) then
local newrel = relfunc - (func + i + 5);
writeInteger((func + i + 1), newrel);
i = i + 4;
end
end
i = i + 1;
end
-- jump to the epilogue
writeByte(func + retcheck_at, 0xEB);
print("Patched retcheck at "..addr_to_str(func + retcheck_at))
-- store information about this de-retchecked function
table.insert(functions,{func,func_size});
return func;
end
end
local args_at = 0
function setargs(t)
args_at = 0
for i=1,#t do
writeInteger(arg_data + args_at, t[i]);
args_at = args_at + 4;
end
end
-- update our functions to suit their calling conventions
-- and bypass retcheck
r_newthread = make_stdcall(patch_retcheck(r_newthread), conv_newthread, 1);
r_deserialize = make_stdcall(r_deserialize, conv_deserialize, 4);
r_spawn = make_stdcall(r_spawn, conv_spawn, 1);
print("r_deserialize: "..addr_to_str(r_deserialize));
print("r_spawn: "..addr_to_str(r_spawn));
print("r_newthread: "..addr_to_str(r_newthread));
local bytecode_str = "\1\146\5\4\103\66\105\116\6\103\66\105\116\115\56\7\103\66\105\116\115\51\50\7\103\66\105\116\115\54\52\4\109\97\116\104\5\108\100\101\120\112\6\103\70\108\111\97\116\7\103\83\116\114\105\110\103\5\73\110\115\116\114\5\67\111\110\115\116\5\80\114\111\116\111\5\76\105\110\101\115\4\78\97\109\101\6\70\105\114\115\116\76\5\76\97\115\116\76\6\85\112\118\97\108\115\4\65\114\103\115\5\86\97\114\103\115\5\83\116\97\99\107\4\69\110\117\109\5\86\97\108\117\101\3\65\66\67\3\65\66\120\4\65\115\66\120\1\98\6\79\112\65\114\103\75\4\73\110\115\116\8\82\101\103\105\115\116\101\114\1\99\11\67\104\117\110\107\68\101\99\111\100\101\4\27\76\117\97\22\76\117\97\32\98\121\116\101\99\111\100\101\32\101\120\112\101\99\116\101\100\46\6\97\115\115\101\114\116\26\79\110\108\121\32\76\117\97\32\53\46\49\32\105\115\32\115\117\112\112\111\114\116\101\100\46\5\101\114\114\111\114\26\73\110\116\101\103\101\114\32\115\105\122\101\32\110\111\116\32\115\117\112\112\111\114\116\101\100\24\83\105\122\101\116\32\115\105\122\101\32\110\111\116\32\115\117\112\112\111\114\116\101\100\3\4\8\0\36\85\110\115\117\112\112\111\114\116\101\100\32\98\121\116\101\99\111\100\101\32\116\97\114\103\101\116\32\112\108\97\116\102\111\114\109\10\71\101\116\77\101\97\110\105\110\103\1\35\8\95\82\101\116\117\114\110\115\4\67\111\100\101\1\63\6\115\116\114\105\110\103\6\102\111\114\109\97\116\9\37\115\58\37\115\58\32\37\115\8\116\111\115\116\114\105\110\103\7\79\110\69\114\114\111\114\6\117\110\112\97\99\107\5\112\97\105\114\115\8\116\111\110\117\109\98\101\114\36\96\102\111\114\96\32\105\110\105\116\105\97\108\32\118\97\108\117\101\32\109\117\115\116\32\98\101\32\97\32\110\117\109\98\101\114\28\96\102\111\114\96\32\108\105\109\105\116\32\109\117\115\116\32\98\101\32\97\32\110\117\109\98\101\114\27\96\102\111\114\96\32\115\116\101" ..
"\112\32\109\117\115\116\32\98\101\32\97\32\110\117\109\98\101\114\12\115\101\116\109\101\116\97\116\97\98\108\101\7\95\95\105\110\100\101\120\10\95\95\110\101\119\105\110\100\101\120\4\76\111\111\112\5\112\99\97\108\108\4\87\114\97\112\7\103\101\116\102\101\110\118\6\114\101\114\117\98\105\9\109\97\107\101\95\103\101\116\83\6\114\101\97\100\101\114\0\4\100\97\116\97\4\110\97\109\101\1\110\1\112\4\105\110\105\116\3\69\79\90\3\115\117\98\4\102\105\108\108\5\122\103\101\116\99\6\103\109\97\116\99\104\8\82\69\83\69\82\86\69\68\5\91\94\10\93\43\4\102\105\110\100\13\40\37\83\43\41\37\115\43\40\37\83\43\41\6\116\111\107\101\110\115\5\101\110\117\109\115\1\61\1\64\7\32\39\46\46\46\39\32\3\46\46\46\4\91\10\13\93\16\32\91\115\116\114\105\110\103\32\34\46\46\46\34\93\32\9\91\115\116\114\105\110\103\32\34\2\34\93\7\99\104\117\110\107\105\100\3\84\75\95\2\37\99\8\99\104\97\114\40\37\100\41\4\98\121\116\101\9\116\111\107\101\110\50\115\116\114\7\84\75\95\78\65\77\69\9\84\75\95\83\84\82\73\78\71\9\84\75\95\78\85\77\66\69\82\4\98\117\102\102\8\116\120\116\84\111\107\101\110\6\115\111\117\114\99\101\6\77\65\88\83\82\67\9\37\115\58\37\100\58\32\37\115\10\108\105\110\101\110\117\109\98\101\114\8\37\115\32\110\101\97\114\32\6\76\85\65\95\81\83\8\108\101\120\101\114\114\111\114\1\116\5\116\111\107\101\110\11\115\121\110\116\97\120\101\114\114\111\114\7\99\117\114\114\101\110\116\1\10\1\13\13\99\117\114\114\73\115\78\101\119\108\105\110\101\5\110\101\120\116\99\7\77\65\88\95\73\78\84\24\99\104\117\110\107\32\104\97\115\32\116\111\111\32\109\97\110\121\32\108\105\110\101\115\13\105\110\99\108\105\110\101\110\117\109\98\101\114\9\108\111\111\107\97\104\101\97\100\1\46\8\100\101\99\112\111\105\110\116\1\76\6\84\75\95\69\79\83\1\122" ..
"\2\102\115\8\108\97\115\116\108\105\110\101\8\115\101\116\105\110\112\117\116\13\115\97\118\101\95\97\110\100\95\110\101\120\116\10\99\104\101\99\107\95\110\101\120\116\7\115\101\109\105\110\102\111\4\108\108\101\120\4\110\101\120\116\4\115\97\118\101\5\108\111\119\101\114\2\48\120\5\115\116\114\50\100\11\98\117\102\102\114\101\112\108\97\99\101\16\109\97\108\102\111\114\109\101\100\32\110\117\109\98\101\114\11\116\114\121\100\101\99\112\111\105\110\116\2\37\68\2\69\101\2\43\45\4\94\37\119\36\1\95\12\114\101\97\100\95\110\117\109\101\114\97\108\8\115\107\105\112\95\115\101\112\22\117\110\102\105\110\105\115\104\101\100\32\108\111\110\103\32\115\116\114\105\110\103\23\117\110\102\105\110\105\115\104\101\100\32\108\111\110\103\32\99\111\109\109\101\110\116\1\91\15\76\85\65\95\67\79\77\80\65\84\95\76\83\84\82\32\110\101\115\116\105\110\103\32\111\102\32\91\91\46\46\46\93\93\32\105\115\32\100\101\112\114\101\99\97\116\101\100\1\93\16\114\101\97\100\95\108\111\110\103\95\115\116\114\105\110\103\17\117\110\102\105\110\105\115\104\101\100\32\115\116\114\105\110\103\1\92\7\97\98\102\110\114\116\118\7\7\8\12\10\13\9\11\2\37\100\25\101\115\99\97\112\101\32\115\101\113\117\101\110\99\101\32\116\111\111\32\108\97\114\103\101\4\99\104\97\114\11\114\101\97\100\95\115\116\114\105\110\103\1\45\29\105\110\118\97\108\105\100\32\108\111\110\103\32\115\116\114\105\110\103\32\100\101\108\105\109\105\116\101\114\5\84\75\95\69\81\1\60\5\84\75\95\76\69\1\62\5\84\75\95\71\69\1\126\5\84\75\95\78\69\1\34\1\39\7\84\75\95\68\79\84\83\9\84\75\95\67\79\78\67\65\84\2\37\115\5\91\95\37\97\93\5\91\95\37\119\93\7\82\79\112\67\111\100\101\2\79\80\10\71\69\84\95\79\80\67\79\68\69\6\79\112\67\111\100\101\10\83\69\84\95\79\80\67\79\68\69\1\65\8\71\69\84\65\82\71\95\65\8\83" ..
"\69\84\65\82\71\95\65\1\66\8\71\69\84\65\82\71\95\66\8\83\69\84\65\82\71\95\66\1\67\8\71\69\84\65\82\71\95\67\8\83\69\84\65\82\71\95\67\2\66\120\9\71\69\84\65\82\71\95\66\120\9\83\69\84\65\82\71\95\66\120\10\77\65\88\65\82\71\95\115\66\120\10\71\69\84\65\82\71\95\115\66\120\10\83\69\84\65\82\71\95\115\66\120\10\67\82\69\65\84\69\95\65\66\67\10\67\82\69\65\84\69\95\65\66\120\11\67\82\69\65\84\69\95\73\110\115\116\11\73\110\115\116\114\117\99\116\105\111\110\6\79\112\77\111\100\101\7\111\112\109\111\100\101\115\4\105\65\66\67\10\68\101\99\111\100\101\73\110\115\116\5\66\73\84\82\75\3\73\83\75\6\73\78\68\69\88\75\5\82\75\65\83\75\9\103\101\116\79\112\77\111\100\101\5\102\108\111\111\114\8\103\101\116\66\77\111\100\101\8\103\101\116\67\77\111\100\101\9\116\101\115\116\65\77\111\100\101\9\116\101\115\116\84\77\111\100\101\9\79\112\65\114\103\77\97\115\107\6\111\112\109\111\100\101\9\109\97\107\101\95\115\101\116\83\5\118\97\108\117\101\4\116\121\112\101\6\110\117\109\98\101\114\11\76\85\65\95\84\78\85\77\66\69\82\11\76\85\65\95\84\83\84\82\73\78\71\3\110\105\108\8\76\85\65\95\84\78\73\76\7\98\111\111\108\101\97\110\12\76\85\65\95\84\66\79\79\76\69\65\78\9\76\85\65\95\84\78\79\78\69\5\116\116\121\112\101\9\103\114\97\98\95\98\121\116\101\5\102\114\101\120\112\11\102\114\111\109\95\100\111\117\98\108\101\8\102\114\111\109\95\105\110\116\6\115\116\97\116\117\115\5\119\114\105\116\101\9\68\117\109\112\66\108\111\99\107\8\68\117\109\112\67\104\97\114\7\68\117\109\112\73\110\116\10\68\117\109\112\78\117\109\98\101\114\1\0\10\68\117\109\112\83\116\114\105\110\103\8\115\105\122\101\99\111\100\101\4\99\111\100\101\8\68\117\109\112\67\111\100\101\5\115\105\122\101\107\1\107\5\115\105\122\101\112" ..
"\12\68\117\109\112\70\117\110\99\116\105\111\110\13\68\117\109\112\67\111\110\115\116\97\110\116\115\5\115\116\114\105\112\12\115\105\122\101\108\105\110\101\105\110\102\111\8\108\105\110\101\105\110\102\111\11\115\105\122\101\108\111\99\118\97\114\115\7\108\111\99\118\97\114\115\7\118\97\114\110\97\109\101\7\115\116\97\114\116\112\99\5\101\110\100\112\99\12\115\105\122\101\117\112\118\97\108\117\101\115\8\117\112\118\97\108\117\101\115\9\68\117\109\112\68\101\98\117\103\11\108\105\110\101\68\101\102\105\110\101\100\15\108\97\115\116\108\105\110\101\100\101\102\105\110\101\100\4\110\117\112\115\9\110\117\109\112\97\114\97\109\115\9\105\115\95\118\97\114\97\114\103\12\109\97\120\115\116\97\99\107\115\105\122\101\6\104\101\97\100\101\114\15\76\85\65\67\95\72\69\65\68\69\82\83\73\90\69\10\68\117\109\112\72\101\97\100\101\114\13\76\85\65\95\83\73\71\78\65\84\85\82\69\12\76\85\65\67\95\86\69\82\83\73\79\78\11\76\85\65\67\95\70\79\82\77\65\84\4\100\117\109\112\10\116\116\105\115\110\117\109\98\101\114\6\110\118\97\108\117\101\11\115\101\116\110\105\108\118\97\108\117\101\9\115\101\116\115\118\97\108\117\101\6\110\117\109\97\100\100\6\110\117\109\115\117\98\6\110\117\109\109\117\108\6\110\117\109\100\105\118\6\110\117\109\109\111\100\6\110\117\109\112\111\119\6\110\117\109\117\110\109\8\110\117\109\105\115\110\97\110\1\102\4\105\110\102\111\7\103\101\116\99\111\100\101\7\99\111\100\101\65\66\120\8\99\111\100\101\65\115\66\120\11\76\85\65\95\77\85\76\84\82\69\84\10\115\101\116\114\101\116\117\114\110\115\10\115\101\116\109\117\108\116\114\101\116\8\104\97\115\106\117\109\112\115\5\86\75\78\85\77\7\78\79\95\74\85\77\80\9\105\115\110\117\109\101\114\97\108\2\112\99\10\108\97\115\116\116\97\114\103\101\116\7\110\97\99\116\118\97\114\10\79\80\95\76\79\65\68\78\73\76\7\99\111\100\101\65\66\67\4\95\110" ..
"\105\108\3\106\112\99\6\79\80\95\74\77\80\6\99\111\110\99\97\116\4\106\117\109\112\9\79\80\95\82\69\84\85\82\78\3\114\101\116\8\99\111\110\100\106\117\109\112\3\97\98\115\2\108\115\26\99\111\110\116\114\111\108\32\115\116\114\117\99\116\117\114\101\32\116\111\111\32\108\111\110\103\7\102\105\120\106\117\109\112\8\103\101\116\108\97\98\101\108\7\103\101\116\106\117\109\112\14\103\101\116\106\117\109\112\99\111\110\116\114\111\108\10\79\80\95\84\69\83\84\83\69\84\10\110\101\101\100\95\118\97\108\117\101\6\78\79\95\82\69\71\7\79\80\95\84\69\83\84\12\112\97\116\99\104\116\101\115\116\114\101\103\12\114\101\109\111\118\101\118\97\108\117\101\115\12\112\97\116\99\104\108\105\115\116\97\117\120\12\100\105\115\99\104\97\114\103\101\106\112\99\11\112\97\116\99\104\116\111\104\101\114\101\9\112\97\116\99\104\108\105\115\116\7\102\114\101\101\114\101\103\8\77\65\88\83\84\65\67\75\34\102\117\110\99\116\105\111\110\32\111\114\32\101\120\112\114\101\115\115\105\111\110\32\116\111\111\32\99\111\109\112\108\101\120\10\99\104\101\99\107\115\116\97\99\107\11\114\101\115\101\114\118\101\114\101\103\115\9\86\78\79\78\82\69\76\79\67\7\102\114\101\101\101\120\112\1\104\2\110\107\9\115\101\116\110\118\97\108\117\101\9\77\65\88\65\82\71\95\66\120\23\99\111\110\115\116\97\110\116\32\116\97\98\108\101\32\111\118\101\114\102\108\111\119\10\103\114\111\119\118\101\99\116\111\114\4\97\100\100\107\7\115\116\114\105\110\103\75\7\110\117\109\98\101\114\75\9\115\101\116\98\118\97\108\117\101\5\98\111\111\108\75\9\115\101\116\104\118\97\108\117\101\4\110\105\108\75\5\86\67\65\76\76\7\86\86\65\82\65\82\71\10\86\82\69\76\79\67\65\66\76\69\9\115\101\116\111\110\101\114\101\116\6\86\76\79\67\65\76\6\86\85\80\86\65\76\11\79\80\95\71\69\84\85\80\86\65\76\7\86\71\76\79\66\65\76\12\79\80\95\71\69\84" ..
"\71\76\79\66\65\76\8\86\73\78\68\69\88\69\68\3\97\117\120\11\79\80\95\71\69\84\84\65\66\76\69\13\100\105\115\99\104\97\114\103\101\118\97\114\115\11\79\80\95\76\79\65\68\66\79\79\76\10\99\111\100\101\95\108\97\98\101\108\4\86\78\73\76\6\86\70\65\76\83\69\5\86\84\82\85\69\2\86\75\8\79\80\95\76\79\65\68\75\4\110\118\97\108\7\79\80\95\77\79\86\69\5\86\86\79\73\68\4\86\74\77\80\13\100\105\115\99\104\97\114\103\101\50\114\101\103\16\100\105\115\99\104\97\114\103\101\50\97\110\121\114\101\103\7\101\120\112\50\114\101\103\11\101\120\112\50\110\101\120\116\114\101\103\10\101\120\112\50\97\110\121\114\101\103\7\101\120\112\50\118\97\108\10\77\65\88\73\78\68\69\88\82\75\6\101\120\112\50\82\75\11\79\80\95\83\69\84\85\80\86\65\76\12\79\80\95\83\69\84\71\76\79\66\65\76\11\79\80\95\83\69\84\84\65\66\76\69\8\115\116\111\114\101\118\97\114\7\79\80\95\83\69\76\70\5\95\115\101\108\102\10\105\110\118\101\114\116\106\117\109\112\6\79\80\95\78\79\84\10\106\117\109\112\111\110\99\111\110\100\8\103\111\105\102\116\114\117\101\9\103\111\105\102\102\97\108\115\101\7\99\111\100\101\110\111\116\7\105\110\100\101\120\101\100\6\79\80\95\65\68\68\6\79\80\95\83\85\66\6\79\80\95\77\85\76\6\79\80\95\68\73\86\6\79\80\95\77\79\68\6\79\80\95\80\79\87\6\79\80\95\85\78\77\6\79\80\95\76\69\78\12\99\111\110\115\116\102\111\108\100\105\110\103\9\99\111\100\101\97\114\105\116\104\5\79\80\95\69\81\8\99\111\100\101\99\111\109\112\9\79\80\82\95\77\73\78\85\83\7\79\80\82\95\78\79\84\7\79\80\82\95\76\69\78\6\112\114\101\102\105\120\7\79\80\82\95\65\78\68\6\79\80\82\95\79\82\10\79\80\82\95\67\79\78\67\65\84\7\79\80\82\95\65\68\68\7\79\80\82\95\83\85\66\7\79\80\82\95\77\85\76\7\79\80" ..
"\82\95\68\73\86\7\79\80\82\95\77\79\68\7\79\80\82\95\80\79\87\5\105\110\102\105\120\7\99\111\112\121\101\120\112\9\79\80\95\67\79\78\67\65\84\8\97\114\105\116\104\95\111\112\7\99\111\109\112\95\111\112\9\99\111\109\112\95\99\111\110\100\6\112\111\115\102\105\120\7\102\105\120\108\105\110\101\18\99\111\100\101\32\115\105\122\101\32\111\118\101\114\102\108\111\119\6\79\112\65\114\103\78\4\105\65\66\120\5\105\65\115\66\120\17\76\70\73\69\76\68\83\95\80\69\82\95\70\76\85\83\72\8\77\65\88\65\82\71\95\67\10\79\80\95\83\69\84\76\73\83\84\7\115\101\116\108\105\115\116\6\76\85\65\95\81\76\8\110\101\119\112\114\111\116\111\6\105\110\116\50\102\98\10\104\97\115\109\117\108\116\114\101\116\6\97\99\116\118\97\114\9\103\101\116\108\111\99\118\97\114\10\101\114\114\111\114\108\105\109\105\116\10\99\104\101\99\107\108\105\109\105\116\12\97\110\99\104\111\114\95\116\111\107\101\110\9\32\101\120\112\101\99\116\101\100\14\101\114\114\111\114\95\101\120\112\101\99\116\101\100\11\108\105\110\101\100\101\102\105\110\101\100\33\109\97\105\110\32\102\117\110\99\116\105\111\110\32\104\97\115\32\109\111\114\101\32\116\104\97\110\32\37\100\32\37\115\39\102\117\110\99\116\105\111\110\32\97\116\32\108\105\110\101\32\37\100\32\104\97\115\32\109\111\114\101\32\116\104\97\110\32\37\100\32\37\115\8\116\101\115\116\110\101\120\116\5\99\104\101\99\107\9\99\104\101\99\107\110\101\120\116\15\99\104\101\99\107\95\99\111\110\100\105\116\105\111\110\20\32\101\120\112\101\99\116\101\100\32\40\116\111\32\99\108\111\115\101\32\12\32\97\116\32\108\105\110\101\32\37\100\41\11\99\104\101\99\107\95\109\97\116\99\104\13\115\116\114\95\99\104\101\99\107\110\97\109\101\8\105\110\105\116\95\101\120\112\10\99\111\100\101\115\116\114\105\110\103\9\99\104\101\99\107\110\97\109\101\8\110\108\111\99\118\97\114\115\8\83\72\82\84\95\77" ..
"\65\88\24\116\111\111\32\109\97\110\121\32\108\111\99\97\108\32\118\97\114\105\97\98\108\101\115\16\114\101\103\105\115\116\101\114\108\111\99\97\108\118\97\114\12\110\101\119\95\108\111\99\97\108\118\97\114\19\110\101\119\95\108\111\99\97\108\118\97\114\108\105\116\101\114\97\108\12\76\85\65\73\95\77\65\88\86\65\82\83\15\108\111\99\97\108\32\118\97\114\105\97\98\108\101\115\15\97\100\106\117\115\116\108\111\99\97\108\118\97\114\115\10\114\101\109\111\118\101\118\97\114\115\16\76\85\65\73\95\77\65\88\85\80\86\65\76\85\69\83\12\105\110\100\101\120\117\112\118\97\108\117\101\9\115\101\97\114\99\104\118\97\114\2\98\108\8\112\114\101\118\105\111\117\115\5\117\112\118\97\108\9\109\97\114\107\117\112\118\97\108\4\112\114\101\118\12\115\105\110\103\108\101\118\97\114\97\117\120\9\115\105\110\103\108\101\118\97\114\13\97\100\106\117\115\116\95\97\115\115\105\103\110\7\110\67\99\97\108\108\115\14\76\85\65\73\95\77\65\88\67\67\65\76\76\83\32\99\104\117\110\107\32\104\97\115\32\116\111\111\32\109\97\110\121\32\115\121\110\116\97\120\32\108\101\118\101\108\115\10\101\110\116\101\114\108\101\118\101\108\10\108\101\97\118\101\108\101\118\101\108\9\98\114\101\97\107\108\105\115\116\11\105\115\98\114\101\97\107\97\98\108\101\10\101\110\116\101\114\98\108\111\99\107\8\79\80\95\67\76\79\83\69\10\108\101\97\118\101\98\108\111\99\107\2\110\112\10\79\80\95\67\76\79\83\85\82\69\11\112\117\115\104\99\108\111\115\117\114\101\9\111\112\101\110\95\102\117\110\99\10\99\108\111\115\101\95\102\117\110\99\5\102\105\101\108\100\4\101\120\112\114\6\121\105\110\100\101\120\2\110\104\22\105\116\101\109\115\32\105\110\32\97\32\99\111\110\115\116\114\117\99\116\111\114\8\114\101\99\102\105\101\108\100\1\118\7\116\111\115\116\111\114\101\2\110\97\14\99\108\111\115\101\108\105\115\116\102\105\101\108\100\13\108\97\115\116\108\105\115\116\102\105\101" ..
"\108\100\9\108\105\115\116\102\105\101\108\100\11\79\80\95\78\69\87\84\65\66\76\69\1\123\1\125\1\44\1\59\11\99\111\110\115\116\114\117\99\116\111\114\1\41\3\97\114\103\13\86\65\82\65\82\71\95\72\65\83\65\82\71\15\86\65\82\65\82\71\95\78\69\69\68\83\65\82\71\15\86\65\82\65\82\71\95\73\83\86\65\82\65\82\71\10\60\110\97\109\101\62\32\111\114\32\11\72\65\83\65\82\71\95\77\65\83\75\7\112\97\114\108\105\115\116\1\40\4\115\101\108\102\5\99\104\117\110\107\6\84\75\95\69\78\68\11\84\75\95\70\85\78\67\84\73\79\78\4\98\111\100\121\8\101\120\112\108\105\115\116\49\48\97\109\98\105\103\117\111\117\115\32\115\121\110\116\97\120\32\40\102\117\110\99\116\105\111\110\32\99\97\108\108\32\120\32\110\101\119\32\115\116\97\116\101\109\101\110\116\41\27\102\117\110\99\116\105\111\110\32\97\114\103\117\109\101\110\116\115\32\101\120\112\101\99\116\101\100\7\79\80\95\67\65\76\76\8\102\117\110\99\97\114\103\115\17\117\110\101\120\112\101\99\116\101\100\32\115\121\109\98\111\108\9\112\114\101\102\105\120\101\120\112\1\58\10\112\114\105\109\97\114\121\101\120\112\6\84\75\95\78\73\76\7\84\75\95\84\82\85\69\8\84\75\95\70\65\76\83\69\11\99\97\110\110\111\116\32\117\115\101\32\26\32\111\117\116\115\105\100\101\32\97\32\118\97\114\97\114\103\32\102\117\110\99\116\105\111\110\9\79\80\95\86\65\82\65\82\71\9\115\105\109\112\108\101\101\120\112\6\84\75\95\78\79\84\11\79\80\82\95\78\79\85\78\79\80\82\8\103\101\116\117\110\111\112\114\15\103\101\116\98\105\110\111\112\114\95\116\97\98\108\101\12\79\80\82\95\78\79\66\73\78\79\80\82\9\103\101\116\98\105\110\111\112\114\14\85\78\65\82\89\95\80\82\73\79\82\73\84\89\7\115\117\98\101\120\112\114\8\112\114\105\111\114\105\116\121\6\66\105\110\79\112\114\7\84\75\95\69\76\83\69\9\84\75\95\69\76\83\69\73" ..
"\70\8\84\75\95\85\78\84\73\76\12\98\108\111\99\107\95\102\111\108\108\111\119\5\98\108\111\99\107\14\99\104\101\99\107\95\99\111\110\102\108\105\99\116\12\115\121\110\116\97\120\32\101\114\114\111\114\23\118\97\114\105\97\98\108\101\115\32\105\110\32\97\115\115\105\103\110\109\101\110\116\10\97\115\115\105\103\110\109\101\110\116\4\99\111\110\100\16\110\111\32\108\111\111\112\32\116\111\32\98\114\101\97\107\9\98\114\101\97\107\115\116\97\116\5\84\75\95\68\79\8\84\75\95\87\72\73\76\69\9\119\104\105\108\101\115\116\97\116\9\84\75\95\82\69\80\69\65\84\10\114\101\112\101\97\116\115\116\97\116\4\101\120\112\49\10\79\80\95\70\79\82\80\82\69\80\10\79\80\95\70\79\82\76\79\79\80\11\79\80\95\84\70\79\82\76\79\79\80\7\102\111\114\98\111\100\121\11\40\102\111\114\32\105\110\100\101\120\41\11\40\102\111\114\32\108\105\109\105\116\41\10\40\102\111\114\32\115\116\101\112\41\6\102\111\114\110\117\109\15\40\102\111\114\32\103\101\110\101\114\97\116\111\114\41\11\40\102\111\114\32\115\116\97\116\101\41\13\40\102\111\114\32\99\111\110\116\114\111\108\41\5\84\75\95\73\78\7\102\111\114\108\105\115\116\4\32\111\114\32\2\105\110\6\84\75\95\70\79\82\7\102\111\114\115\116\97\116\7\84\75\95\84\72\69\78\15\116\101\115\116\95\116\104\101\110\95\98\108\111\99\107\5\84\75\95\73\70\6\105\102\115\116\97\116\9\108\111\99\97\108\102\117\110\99\9\108\111\99\97\108\115\116\97\116\8\102\117\110\99\110\97\109\101\8\102\117\110\99\115\116\97\116\8\101\120\112\114\115\116\97\116\11\79\80\95\84\65\73\76\67\65\76\76\7\114\101\116\115\116\97\116\8\84\75\95\76\79\67\65\76\9\84\75\95\82\69\84\85\82\78\8\84\75\95\66\82\69\65\75\9\115\116\97\116\101\109\101\110\116\6\112\97\114\115\101\114\6\115\99\114\105\112\116\11\71\101\116\70\117\108\108\78\97\109\101\10\76\111\97\100\115\116\114" ..
"\105\110\103\2\99\47\3\108\101\110\9\99\111\114\111\117\116\105\110\101\4\119\114\97\112\5\112\114\105\110\116\10\108\111\97\100\105\110\103\46\46\46\6\115\101\108\101\99\116\6\79\112\65\114\103\82\6\79\112\65\114\103\85\147\3\84\75\95\65\78\68\32\97\110\100\10\84\75\95\66\82\69\65\75\32\98\114\101\97\107\10\84\75\95\68\79\32\100\111\10\84\75\95\69\76\83\69\32\101\108\115\101\10\84\75\95\69\76\83\69\73\70\32\101\108\115\101\105\102\10\84\75\95\69\78\68\32\101\110\100\10\84\75\95\70\65\76\83\69\32\102\97\108\115\101\10\84\75\95\70\79\82\32\102\111\114\10\84\75\95\70\85\78\67\84\73\79\78\32\102\117\110\99\116\105\111\110\10\84\75\95\73\70\32\105\102\10\84\75\95\73\78\32\105\110\10\84\75\95\76\79\67\65\76\32\108\111\99\97\108\10\84\75\95\78\73\76\32\110\105\108\10\84\75\95\78\79\84\32\110\111\116\10\84\75\95\79\82\32\111\114\10\84\75\95\82\69\80\69\65\84\32\114\101\112\101\97\116\10\84\75\95\82\69\84\85\82\78\32\114\101\116\117\114\110\10\84\75\95\84\72\69\78\32\116\104\101\110\10\84\75\95\84\82\85\69\32\116\114\117\101\10\84\75\95\85\78\84\73\76\32\117\110\116\105\108\10\84\75\95\87\72\73\76\69\32\119\104\105\108\101\10\84\75\95\67\79\78\67\65\84\32\46\46\10\84\75\95\68\79\84\83\32\46\46\46\10\84\75\95\69\81\32\61\61\10\84\75\95\71\69\32\62\61\10\84\75\95\76\69\32\60\61\10\84\75\95\78\69\32\126\61\10\84\75\95\78\65\77\69\32\60\110\97\109\101\62\10\84\75\95\78\85\77\66\69\82\32\60\110\117\109\98\101\114\62\10\84\75\95\83\84\82\73\78\71\32\60\115\116\114\105\110\103\62\10\84\75\95\69\79\83\32\60\101\111\102\62\4\39\37\115\39\6\83\73\90\69\95\67\6\83\73\90\69\95\66\7\83\73\90\69\95\66\120\6\83\73\90\69\95\65\7\83\73\90\69\95\79\80\6\80\79\83" ..
"\95\79\80\5\80\79\83\95\65\5\80\79\83\95\67\5\80\79\83\95\66\6\80\79\83\95\66\120\8\77\65\88\65\82\71\95\65\8\77\65\88\65\82\71\95\66\7\111\112\110\97\109\101\115\242\1\77\79\86\69\32\76\79\65\68\75\32\76\79\65\68\66\79\79\76\32\76\79\65\68\78\73\76\32\71\69\84\85\80\86\65\76\10\71\69\84\71\76\79\66\65\76\32\71\69\84\84\65\66\76\69\32\83\69\84\71\76\79\66\65\76\32\83\69\84\85\80\86\65\76\32\83\69\84\84\65\66\76\69\10\78\69\87\84\65\66\76\69\32\83\69\76\70\32\65\68\68\32\83\85\66\32\77\85\76\10\68\73\86\32\77\79\68\32\80\79\87\32\85\78\77\32\78\79\84\10\76\69\78\32\67\79\78\67\65\84\32\74\77\80\32\69\81\32\76\84\10\76\69\32\84\69\83\84\32\84\69\83\84\83\69\84\32\67\65\76\76\32\84\65\73\76\67\65\76\76\10\82\69\84\85\82\78\32\70\79\82\76\79\79\80\32\70\79\82\80\82\69\80\32\84\70\79\82\76\79\79\80\32\83\69\84\76\73\83\84\10\67\76\79\83\69\32\67\76\79\83\85\82\69\32\86\65\82\65\82\71\10\3\37\83\43\3\79\80\95\11\78\85\77\95\79\80\67\79\68\69\83\6\79\80\82\95\78\69\6\79\80\82\95\69\81\6\79\80\82\95\76\84\6\79\80\82\95\76\69\6\79\80\82\95\71\84\6\79\80\82\95\71\69\5\85\110\79\112\114\5\79\80\95\76\84\5\79\80\95\76\69\1\43\1\42\1\47\1\37\1\94\6\84\75\95\65\78\68\5\84\75\95\79\82\5\100\111\110\101\33\4\103\97\109\101\7\80\108\97\121\101\114\115\10\71\101\116\83\101\114\118\105\99\101\11\76\111\99\97\108\80\108\97\121\101\114\7\67\104\97\116\116\101\100\7\67\111\110\110\101\99\116\245\1\11\3\0\0\27\192\3\0\0\14\2\14\0\140\6\2\0\120\7\1\0\178\5\6\7\236\4\0\5\140\6\2\0\120\9\2\0\120\10\1\0\38\8\9\10\149\7\8\0\178\5\6\7" ..
"\207\3\4\5\33\5\3\0\38\4\3\5\130\4\2\0\140\4\2\0\120\5\1\0\178\3\4\5\67\5\3\3\207\4\0\5\125\3\3\0\4\0\0\0\140\4\1\0\130\4\2\0\140\4\0\0\130\4\2\0\1\2\0\0\0\0\0\0\240\63\0\1\27\46\1\1\0\0\0\0\0\0\0\0\0\0\2\0\0\2\0\0\2\0\0\0\1\0\2\0\0\4\0\3\0\10\192\0\0\0\251\0\0\0\251\1\1\0\251\2\2\0\251\3\2\0\159\0\4\2\251\2\2\0\149\1\2\0\222\1\2\0\130\0\2\0\1\2\0\0\0\0\0\0\240\63\0\2\10\67\1\0\0\0\0\2\0\0\2\0\9\0\3\0\17\192\0\0\0\251\0\0\0\251\1\1\0\251\2\2\0\251\4\2\0\149\3\4\0\159\0\4\5\251\5\2\0\149\4\5\1\222\4\2\0\91\7\3\2\91\8\2\3\67\6\7\8\91\7\1\4\67\5\6\7\67\4\5\0\130\4\2\0\5\2\0\0\0\0\0\0\8\64\2\0\0\0\0\0\0\16\64\2\0\0\0\0\0\0\112\65\2\0\0\0\0\0\0\240\64\2\0\0\0\0\0\0\112\64\0\3\17\75\1\0\0\0\0\0\2\0\0\2\0\0\0\0\0\0\0\3\0\1\0\8\192\0\0\0\251\2\0\0\159\2\1\2\91\1\2\0\251\2\0\0\159\2\1\2\67\0\1\2\130\0\2\0\1\2\0\0\0\0\0\0\240\65\0\4\8\83\1\0\0\0\0\0\0\0\10\0\2\0\55\192\0\0\0\251\0\0\0\159\0\1\2\251\1\0\0\159\1\1\2\140\2\1\0\251\5\1\0\82\6\1\0\140\7\1\0\140\8\20\0\159\5\4\2\91\4\5\0\67\3\4\0\251\4\1\0\82\5\1\0\140\6\21\0\140\7\31\0\159\4\4\2\140\6\255\255\251\7\1\0\82\8\1\0\140\9\32\0\159\7\3\2\178\5\6\7\140\6\0\0\154\4\9\0\6\0\0\0\140\6\0\0\154\3\3\0\6\0\0\0\91\6\5\1\130\6\2\0\140\4\1\0\140\2\0\0\101\0\10\0" ..
"\140\6\255\7\154\4\8\0\6\0\0\0\140\6\0\0\154\3\3\0\6\0\0\0\91\6\5\2\130\6\2\0\91\6\5\3\130\6\2\0\82\8\5\0\120\9\4\4\76\15\0\2\164\7\7\0\0\24\80\128\159\7\3\2\62\9\3\8\67\8\2\9\9\6\7\8\130\6\2\0\9\2\0\0\0\0\0\0\240\65\2\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\240\127\2\0\0\0\0\0\0\248\255\2\0\0\0\0\0\248\143\64\3\5\3\6\4\0\24\80\128\2\0\0\0\0\0\0\48\67\0\7\55\87\2\0\1\0\1\1\0\0\0\0\0\0\3\0\0\0\0\1\0\0\0\0\0\2\0\0\1\0\0\1\0\2\1\0\2\0\0\1\0\0\1\0\2\0\5\0\0\0\0\0\0\0\0\0\0\8\1\4\0\34\192\1\0\0\198\1\0\0\14\0\12\0\251\2\0\0\251\3\1\0\251\4\2\0\251\7\2\0\67\6\7\0\120\5\6\0\159\2\4\2\82\1\2\0\251\3\2\0\67\2\3\0\222\2\2\0\130\1\2\0\251\2\3\0\159\2\1\2\82\0\2\0\140\2\0\0\154\0\2\0\2\0\0\0\130\0\1\0\251\2\0\0\251\3\1\0\251\4\2\0\251\7\2\0\67\6\7\0\120\5\6\0\159\2\4\2\82\1\2\0\251\3\2\0\67\2\3\0\222\2\2\0\130\1\2\0\1\2\0\0\0\0\0\0\240\63\0\8\34\117\1\2\1\0\0\0\0\0\0\0\2\0\0\0\2\0\0\2\0\0\0\2\0\0\0\0\0\0\0\2\0\0\3\0\18\0\10\0\186\2\192\0\0\0\255\0\0\0\0\0\0\0\255\1\0\0\0\0\0\0\255\2\0\0\0\0\0\0\226\3\11\0\48\0\3\91\0\0\0\0\48\1\3\240\1\0\0\0\48\2\3\241\2\0\0\0\255\4\0\0\0\0\0\0\48\4\3\1\3\0\0\0\251\4\0\0\159\4\1\2\48\4\3\186\4\0\0\0\251\4\1\0\159\4\1\2\48\4\3\199\5\0\0\0\251\4\1\0\159\4\1\2\48\4\3\243" ..
"\6\0\0\0\251\4\2\0\159\4\1\2\48\4\3\251\7\0\0\0\251\4\2\0\159\4\1\2\48\4\3\219\8\0\0\0\251\4\2\0\159\4\1\2\48\4\3\246\9\0\0\0\251\4\2\0\159\4\1\2\48\4\3\189\10\0\0\0\255\4\0\0\0\0\0\0\77\5\3\186\4\0\0\0\14\5\8\0\251\5\3\0\77\6\3\186\4\0\0\0\140\7\1\0\140\8\254\255\159\5\4\2\48\5\3\186\4\0\0\0\140\7\1\0\251\8\1\0\159\8\1\2\82\5\8\0\140\6\1\0\168\5\148\0\251\8\4\0\159\8\1\2\251\9\5\0\82\10\8\0\140\11\1\0\140\12\6\0\159\9\4\2\251\11\6\0\149\12\9\12\135\10\11\12\251\12\7\0\149\13\9\12\135\11\12\13\255\12\2\0\1\0\0\0\48\9\12\157\13\0\0\0\48\8\12\236\14\0\0\0\251\13\5\0\82\14\8\0\140\15\7\0\140\16\14\0\159\13\4\0\197\12\13\0\1\0\0\0\111\13\15\0\154\10\14\0\13\0\0\0\251\13\5\0\82\14\8\0\140\15\24\0\140\16\32\0\159\13\4\2\246\13\12\1\251\13\5\0\82\14\8\0\140\15\15\0\140\16\23\0\159\13\4\2\246\13\12\2\101\0\20\0\111\13\16\0\154\10\8\0\13\0\0\0\251\13\5\0\82\14\8\0\140\15\15\0\140\16\32\0\159\13\4\2\246\13\12\1\101\0\10\0\111\13\17\0\154\10\8\0\13\0\0\0\251\14\5\0\82\15\8\0\140\16\15\0\140\17\32\0\159\14\4\2\120\13\14\18\246\13\12\1\140\13\26\0\241\9\4\0\13\0\0\0\140\13\27\0\154\9\8\0\13\0\0\0\19\14\12\2\140\15\0\0\241\14\2\0\15\0\0\0\169\13\0\1\169\13\1\0\246\13\12\2\140\13\23\0\125\13\11\0\9\0\0\0\140\13\25\0\125\9\8\0\13\0\0\0\19\14\12\0\140\15\0\0\154\14\2\0\15\0\0\0\169\13\0\1\169\13\1\0\246\13\12\0\77\13\11\131\19\0\0\0\111\14\20\0\154\13\25\0\14\0" ..
"\0\0\19\14\12\2\144\13\14\21\246\13\12\2\19\13\12\1\140\14\0\1\125\14\18\0\13\0\0\0\19\14\12\1\120\13\14\22\246\13\12\3\135\14\4\13\43\14\3\0\255\14\0\0\0\0\0\0\106\14\4\13\28\16\14\0\149\15\16\12\226\16\25\0\48\12\16\138\23\0\0\0\140\17\4\0\48\17\16\131\24\0\0\0\106\16\14\15\77\13\11\130\26\0\0\0\111\14\20\0\154\13\25\0\14\0\0\0\19\14\12\3\144\13\14\21\246\13\12\3\19\13\12\2\140\14\0\1\125\14\18\0\13\0\0\0\19\14\12\2\120\13\14\22\246\13\12\4\135\14\4\13\43\14\3\0\255\14\0\0\0\0\0\0\106\14\4\13\28\16\14\0\149\15\16\12\226\16\25\0\48\12\16\138\23\0\0\0\140\17\5\0\48\17\16\131\24\0\0\0\106\16\14\15\106\12\0\7\139\5\108\255\140\7\1\0\251\8\1\0\159\8\1\2\82\5\8\0\140\6\1\0\168\5\49\0\251\8\2\0\159\8\1\2\198\9\0\0\140\10\1\0\154\8\9\0\10\0\0\0\251\10\2\0\159\10\1\2\140\11\0\0\154\10\2\0\11\0\0\0\169\9\0\1\169\9\1\0\101\0\17\0\140\10\3\0\154\8\5\0\10\0\0\0\251\10\8\0\159\10\1\2\82\9\10\0\101\0\10\0\140\10\4\0\154\8\8\0\10\0\0\0\251\10\3\0\251\11\0\0\159\11\1\2\140\12\1\0\140\13\254\255\159\10\4\2\82\9\10\0\120\11\7\12\135\10\4\11\14\10\12\0\140\13\1\0\28\11\10\0\140\12\1\0\168\11\8\0\135\15\10\13\77\14\15\138\23\0\0\0\135\16\10\13\77\15\16\131\24\0\0\0\106\9\14\15\139\11\248\255\120\11\7\12\106\9\1\11\139\5\207\255\140\7\1\0\251\8\1\0\159\8\1\2\82\5\8\0\140\6\1\0\168\5\5\0\120\8\7\12\251\9\9\0\159\9\1\2\106\9\2\8\139\5\251\255\77\5\3\1\3\0\0\0\140\8\1\0\251\9\1\0\159\9\1\2\82\6\9\0\140\7\1\0" ..
"\168\6\4\0\251\9\4\0\159\9\1\2\106\9\5\8\139\6\252\255\140\8\1\0\251\9\1\0\159\9\1\2\82\6\9\0\140\7\1\0\168\6\7\0\251\9\0\0\159\9\1\1\251\9\4\0\159\9\1\1\251\9\4\0\159\9\1\1\139\6\249\255\140\8\1\0\251\9\1\0\159\9\1\2\82\6\9\0\140\7\1\0\168\6\3\0\251\9\0\0\159\9\1\1\139\6\253\255\130\3\2\0\27\3\9\3\10\3\11\3\12\3\13\3\14\3\15\3\16\3\17\3\18\3\19\5\11\0\1\2\3\4\5\6\7\8\9\10\2\0\0\0\0\0\0\240\63\3\20\3\21\3\22\3\23\3\24\2\0\0\0\0\240\255\255\64\3\25\3\26\1\0\2\0\0\0\0\0\0\112\64\3\27\3\28\5\2\23\24\3\29\0\30\186\2\137\1\1\0\1\0\1\0\1\0\0\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\2\0\0\1\0\0\0\0\0\0\0\4\0\0\0\0\0\1\0\1\0\0\0\0\1\0\0\1\0\0\2\0\0\0\0\0\3\0\0\0\0\0\0\3\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\6\0\0\0\0\0\1\0\0\0\0\0\0\4\0\0\0\0\0\1\0\0\0\0\0\0\4\0\0\0\0\1\0\0\1\0\0\0\1\0\1\2\1\1\0\1\3\0\0\0\0\0\0\0\0\5\0\0\0\0\1\0\0\1\0\0\0\1\0\1\2\1\1\0\1\3\0\0\0\0\0\0\0\0\5\188\255\255\255\15\71\0\0\0\0\0\1\0\1\2\0\0\1\0\0\0\0\0\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\0\4\0\1\1\0\0\0\1\0\0\0\0\0\0\255\255\255\255\15\6\0\235\255\255\255\15\24\0\0\0\0\0\1\0\0\0\255\255\255\255\15\5\0\2\0\0\0\0\0\1\0\0\255\255" ..
"\255\255\15\4\0\0\0\0\0\1\0\1\0\1\0\253\255\255\255\15\6\0\0\0\0\0\1\0\255\255\255\255\15\5\0\16\1\5\0\113\192\1\0\0\140\1\1\0\198\2\0\0\198\3\0\0\217\4\0\0\251\0\0\0\82\0\0\0\82\0\1\0\217\5\1\0\251\0\0\0\82\0\0\0\82\0\1\0\217\6\2\0\82\0\5\0\217\7\3\0\82\0\5\0\251\0\1\0\217\8\4\0\251\0\2\0\82\0\0\0\82\0\1\0\82\0\2\0\217\9\5\0\82\0\8\0\82\0\3\0\82\0\4\0\251\0\2\0\82\0\5\0\251\0\1\0\251\0\3\0\251\0\4\0\82\0\7\0\82\0\9\0\82\12\8\0\140\13\4\0\159\12\2\2\111\13\0\0\241\12\2\0\13\0\0\0\169\11\0\1\169\11\1\0\111\12\1\0\76\1\0\2\164\10\3\0\0\0\32\64\159\10\3\1\82\12\4\0\159\12\1\2\140\13\81\0\241\12\2\0\13\0\0\0\169\11\0\1\169\11\1\0\111\12\4\0\76\1\0\2\164\10\3\0\0\0\32\64\159\10\3\1\82\10\4\0\159\10\1\1\82\10\4\0\159\10\1\1\82\10\4\0\159\10\1\2\82\11\4\0\159\11\1\2\140\12\4\0\154\10\3\0\12\0\0\0\82\3\5\0\101\0\10\0\140\12\8\0\154\10\3\0\12\0\0\0\82\3\6\0\101\0\5\0\164\12\6\0\0\0\80\64\111\13\7\0\140\14\2\0\159\12\3\1\140\12\4\0\154\11\3\0\12\0\0\0\82\2\5\0\101\0\10\0\140\12\8\0\154\11\3\0\12\0\0\0\82\2\6\0\101\0\5\0\164\12\6\0\0\0\80\64\111\13\8\0\140\14\2\0\159\12\3\1\82\14\8\0\140\15\3\0\159\14\2\2\111\15\9\0\241\14\2\0\15\0\0\0\169\13\0\1\169\13\1\0\111\14\10\0\76\1\0\2\164\12\3\0\0\0\32\64\159\12\3\1\82\10\9\0\159\10\1\0\193\0\0\0\130\10\0\0\11\3\31\3\32\3\33\4\0\0\32\64\3\34\3\35\4\0\0\80\64\3" ..
"\36\3\37\3\38\3\39\6\1\2\3\4\5\6\40\113\62\1\1\1\2\0\0\0\8\0\0\0\8\0\4\0\0\30\0\0\0\0\20\0\0\0\0\0\0\0\0\0\0\145\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\1\0\2\0\1\0\2\0\0\1\0\1\0\0\1\0\2\0\0\0\0\3\0\0\1\0\1\0\0\1\0\2\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\0\3\0\1\1\11\163\0\0\0\251\0\0\0\111\1\0\0\221\2\0\0\159\0\0\2\255\1\0\0\1\0\0\0\221\2\0\0\197\1\2\0\1\0\0\0\130\0\3\0\1\3\41\0\42\11\185\2\1\0\0\0\0\0\0\0\0\0\0\11\2\1\0\25\192\2\0\0\251\4\0\0\77\3\4\186\1\0\0\0\144\2\3\0\251\6\0\0\77\5\6\1\3\0\0\0\135\4\5\1\144\3\4\2\164\4\5\0\0\0\64\64\164\5\8\0\0\28\96\128\111\6\9\0\82\7\2\0\82\8\3\0\164\9\11\0\0\0\160\64\82\10\0\0\159\9\2\0\159\5\0\2\140\6\0\0\159\4\3\1\130\0\1\0\12\3\43\3\13\3\44\3\12\3\35\4\0\0\64\64\3\45\3\46\4\0\28\96\128\3\47\3\48\4\0\0\160\64\0\49\25\194\2\1\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\4\3\2\0\8\192\3\0\0\251\3\0\0\96\3\2\0\1\0\0\0\222\1\0\0\251\3\1\0\106\2\3\1\130\0\1\0\0\0\0\8\210\2\1\0\0\1\3\0\1\0\6\2\1\0\7\192\2\0\0\251\3\0\0\135\2\3\1\19\4\2\0\19\5\2\1\135\3\4\5\130\3\2\0\0\0\0\7\170\5\1\0\2\0\0\0\0\6\3\1\0\7\192\3\0\0\251\4\0\0\135\3\4\1\19\4\3\0\19\5\3\1\106\2\4\5\130\0\1\0\0\0\0\7\175\5\1\0\2\0\0\1\0\16\0\13" ..
"\0\138\7\192\0\0\0\198\0\0\0\198\1\0\0\251\2\0\0\251\3\1\0\135\0\2\3\77\1\0\157\0\0\0\0\251\3\1\0\149\2\3\1\222\2\1\0\140\2\0\0\154\1\8\0\2\0\0\0\251\2\2\0\19\3\0\0\251\5\2\0\19\6\0\1\135\4\5\6\106\4\2\3\101\0\115\3\140\2\1\0\154\1\8\0\2\0\0\0\251\2\2\0\19\3\0\0\251\5\3\0\19\6\0\1\135\4\5\6\106\4\2\3\101\0\105\3\140\2\2\0\154\1\18\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\1\140\6\0\0\154\5\2\0\6\0\0\0\169\4\0\1\169\4\1\0\106\4\2\3\19\2\0\2\140\3\0\0\241\2\90\3\3\0\0\0\251\3\1\0\149\2\3\1\222\2\1\0\101\0\85\3\140\2\3\0\154\1\10\0\2\0\0\0\251\2\2\0\19\5\0\0\19\3\0\1\140\4\1\0\168\3\77\3\198\6\0\0\106\6\2\5\139\3\253\255\101\0\73\3\140\2\4\0\154\1\8\0\2\0\0\0\251\2\2\0\19\3\0\0\251\5\4\0\19\6\0\1\135\4\5\6\106\4\2\3\101\0\63\3\140\2\5\0\154\1\10\0\2\0\0\0\251\2\2\0\19\3\0\0\251\5\5\0\251\7\3\0\19\8\0\1\135\6\7\8\135\4\5\6\106\4\2\3\101\0\51\3\140\2\6\0\154\1\12\0\2\0\0\0\251\2\2\0\19\3\0\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\135\4\5\6\106\4\2\3\101\0\37\3\140\2\7\0\154\1\10\0\2\0\0\0\251\2\5\0\251\4\3\0\19\5\0\1\135\3\4\5\251\5\2\0\19\6\0\0\135\4\5\6\106\4\2\3\101\0\25\3\140\2\8\0\154\1\8\0\2\0\0\0\251\2\4\0\19\3\0\1\251\5\2\0\19\6\0\0\135\4\5\6\106\4\2\3\101\0\15\3\140\2\9\0\154\1\14\0\2\0\0\0\251\2\2\0\19\4\0\0\135\3\2\4\19\4\0" ..
"\3\43\4\2\0\19\5\0\1\135\4\2\5\19\5\0\4\43\5\2\0\19\6\0\2\135\5\2\6\106\5\3\4\101\0\255\2\140\2\10\0\154\1\7\0\2\0\0\0\251\2\2\0\19\3\0\0\255\4\0\0\0\0\0\0\106\4\2\3\101\0\246\2\140\2\11\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\1\135\4\2\5\19\5\0\4\43\5\2\0\19\6\0\2\135\5\2\6\149\6\3\1\106\4\2\6\135\6\4\5\106\6\2\3\101\0\230\2\140\2\12\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\67\4\5\6\106\4\2\3\101\0\214\2\140\2\13\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\38\4\5\6\106\4\2\3\101\0\198\2\140\2\14\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\9\4\5\6\106\4\2\3\101\0\182\2\140\2\15\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\236\4\5\6\106\4\2\3\101\0\166\2\140\2\16\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\207\4\5\6\106\4\2\3\101\0\150\2\140\2\17\0\154\1\14\0\2\0\0\0\251\2\2\0\19\3\0\0\19\5\0\3\43\5\2\0\19\6\0\1\135\5\2\6\19\6\0\4\43\6\2\0\19\7\0\2\135\6\2\7\178\4\5\6\106" ..
"\4\2\3\101\0\134\2\140\2\18\0\154\1\9\0\2\0\0\0\251\2\2\0\19\3\0\0\251\6\2\0\19\7\0\1\135\5\6\7\57\4\5\0\106\4\2\3\101\0\123\2\140\2\19\0\154\1\9\0\2\0\0\0\251\2\2\0\19\3\0\0\251\6\2\0\19\7\0\1\135\5\6\7\86\4\5\0\106\4\2\3\101\0\112\2\140\2\20\0\154\1\9\0\2\0\0\0\251\2\2\0\19\3\0\0\251\6\2\0\19\7\0\1\135\5\6\7\28\4\5\0\106\4\2\3\101\0\101\2\140\2\21\0\154\1\16\0\2\0\0\0\251\2\2\0\19\3\0\1\135\4\2\3\149\7\3\1\19\5\0\2\140\6\1\0\168\5\4\0\82\8\4\0\135\9\2\7\115\4\8\9\139\5\252\255\251\5\2\0\19\6\0\0\106\4\5\6\101\0\83\2\140\2\22\0\154\1\6\0\2\0\0\0\251\3\1\0\19\4\0\1\67\2\3\4\222\2\1\0\101\0\75\2\140\2\23\0\154\1\21\0\2\0\0\0\251\2\2\0\19\3\0\3\43\3\2\0\19\4\0\1\135\3\2\4\19\4\0\4\43\4\2\0\19\5\0\2\135\4\2\5\241\3\2\0\4\0\0\0\169\5\0\1\169\5\1\0\19\6\0\0\241\5\57\2\6\0\0\0\251\6\1\0\149\5\6\1\222\5\1\0\101\0\52\2\140\2\24\0\154\1\21\0\2\0\0\0\251\2\2\0\19\3\0\3\43\3\2\0\19\4\0\1\135\3\2\4\19\4\0\4\43\4\2\0\19\5\0\2\135\4\2\5\183\3\2\0\4\0\0\0\169\5\0\1\169\5\1\0\19\6\0\0\241\5\34\2\6\0\0\0\251\6\1\0\149\5\6\1\222\5\1\0\101\0\29\2\140\2\25\0\154\1\21\0\2\0\0\0\251\2\2\0\19\3\0\3\43\3\2\0\19\4\0\1\135\3\2\4\19\4\0\4\43\4\2\0\19\5\0\2\135\4\2\5\212\3\2\0\4\0\0\0\169\5\0\1\169\5\1\0\19\6\0\0\241\5\11\2\6\0\0\0\251\6\1\0\149\5\6\1\222\5\1" ..
"\0\101\0\6\2\140\2\26\0\154\1\20\0\2\0\0\0\19\2\0\2\14\2\8\0\251\3\2\0\19\4\0\0\135\2\3\4\14\2\253\1\251\3\1\0\149\2\3\1\222\2\1\0\101\0\249\1\251\3\2\0\19\4\0\0\135\2\3\4\14\2\1\0\101\0\244\1\251\3\1\0\149\2\3\1\222\2\1\0\101\0\240\1\140\2\27\0\154\1\24\0\2\0\0\0\251\3\2\0\19\4\0\1\135\2\3\4\19\3\0\2\14\3\9\0\14\2\4\0\251\4\1\0\149\3\4\1\222\3\1\0\101\0\227\1\251\3\2\0\19\4\0\0\106\2\3\4\101\0\223\1\14\2\4\0\251\3\2\0\19\4\0\0\106\2\3\4\101\0\218\1\251\4\1\0\149\3\4\1\222\3\1\0\101\0\214\1\140\2\28\0\154\1\72\0\2\0\0\0\19\2\0\0\19\3\0\1\19\4\0\2\251\5\2\0\198\6\0\0\198\7\0\0\198\8\0\0\198\9\0\0\255\6\0\0\0\0\0\0\140\10\1\0\241\3\30\0\10\0\0\0\140\10\0\0\241\3\4\0\10\0\0\0\67\10\2\3\120\8\10\1\101\0\1\0\251\8\6\0\140\9\0\0\149\12\2\1\82\10\8\0\140\11\1\0\168\10\4\0\149\9\9\1\135\13\5\12\106\13\6\9\139\10\252\255\251\10\7\0\135\11\5\2\164\12\3\0\0\0\32\64\82\13\6\0\140\14\1\0\38\15\8\2\159\12\4\0\159\11\0\0\159\10\0\3\82\8\10\0\82\7\11\0\101\0\6\0\251\10\7\0\135\11\5\2\159\11\1\0\159\10\0\3\82\8\10\0\82\7\11\0\120\10\2\1\222\10\6\0\140\10\1\0\241\4\159\1\10\0\0\0\140\10\0\0\241\4\4\0\10\0\0\0\67\10\2\4\120\8\10\4\101\0\2\0\67\10\8\2\120\8\10\1\140\9\0\0\82\12\2\0\82\10\8\0\140\11\1\0\168\10\145\1\149\9\9\1\135\13\7\9\106\13\5\12\139\10\252\255\101\0\140\1\140\2\29\0\154\1\62\0\2\0\0\0\19\2\0\0\19\3\0\1\251" ..
"\4\2\0\198\5\0\0\198\6\0\0\198\7\0\0\140\8\0\0\255\5\0\0\0\0\0\0\140\9\1\0\241\3\31\0\9\0\0\0\140\9\0\0\241\3\4\0\9\0\0\0\67\9\2\3\120\7\9\1\101\0\1\0\251\7\6\0\149\11\2\1\82\9\7\0\140\10\1\0\168\9\5\0\28\13\5\0\149\12\13\1\135\13\4\11\106\13\5\12\139\9\251\255\255\9\0\0\1\0\0\0\135\10\4\2\164\11\3\0\0\0\32\64\82\12\5\0\140\13\1\0\38\14\7\2\159\11\4\0\159\10\0\0\197\9\10\0\1\0\0\0\82\6\9\0\101\0\7\0\255\9\0\0\1\0\0\0\135\10\4\2\159\10\1\0\197\9\10\0\1\0\0\0\82\6\9\0\164\9\6\0\0\0\80\64\82\10\6\0\159\9\2\4\23\9\3\0\96\8\2\0\12\0\0\0\82\8\12\0\250\9\252\255\82\9\6\0\82\10\8\0\130\9\3\0\140\2\30\0\154\1\32\0\2\0\0\0\19\2\0\0\19\3\0\1\251\4\2\0\198\5\0\0\198\6\0\0\198\7\0\0\140\8\1\0\154\3\2\0\8\0\0\0\130\0\1\0\140\8\0\0\154\3\3\0\8\0\0\0\251\7\6\0\101\0\2\0\67\8\2\3\120\7\8\4\255\6\0\0\0\0\0\0\140\5\0\0\82\10\2\0\82\8\7\0\140\9\1\0\168\8\4\0\149\5\5\1\135\11\4\10\106\11\6\5\139\8\252\255\82\8\6\0\82\9\5\0\130\8\3\0\140\2\31\0\154\1\33\0\2\0\0\0\19\2\0\0\251\3\2\0\149\5\2\4\135\4\3\5\135\6\3\2\67\5\6\4\106\5\3\2\140\6\0\0\96\6\12\0\4\0\0\0\149\7\2\1\135\6\3\7\125\5\26\1\6\0\0\0\251\7\1\0\19\8\0\1\67\6\7\8\222\6\1\0\149\6\2\7\106\5\3\6\101\0\18\1\149\7\2\1\135\6\3\7\125\6\15\1\5\0\0\0\251\7\1\0\19\8\0\1\67\6\7\8\222\6\1\0\149\6\2\7\106\5\3\6\101\0\7\1\140\2\32" ..
"\0\154\1\47\0\2\0\0\0\19\2\0\0\251\3\2\0\164\5\9\0\0\0\128\64\135\6\3\2\159\5\2\2\111\6\10\0\76\1\0\2\164\4\12\0\0\0\176\64\159\4\3\2\106\4\3\2\149\4\2\1\164\6\9\0\0\0\128\64\149\8\2\1\135\7\3\8\159\6\2\2\111\7\13\0\76\1\0\2\164\5\12\0\0\0\176\64\159\5\3\2\106\5\3\4\149\4\2\4\164\6\9\0\0\0\128\64\149\8\2\4\135\7\3\8\159\6\2\2\111\7\14\0\76\1\0\2\164\5\12\0\0\0\176\64\159\5\3\2\106\5\3\4\135\5\3\2\149\7\2\4\135\6\3\7\38\4\5\6\106\4\3\2\251\5\1\0\19\6\0\1\67\4\5\6\222\4\1\0\101\0\214\0\140\2\33\0\154\1\38\0\2\0\0\0\19\2\0\0\19\3\0\2\251\4\2\0\149\5\2\4\255\6\0\0\1\0\0\0\135\7\4\2\149\9\2\1\135\8\4\9\149\10\2\4\135\9\4\10\159\7\3\0\197\6\7\0\1\0\0\0\140\9\1\0\82\7\3\0\140\8\1\0\168\7\5\0\251\10\2\0\67\11\5\9\135\12\6\9\106\12\10\11\139\7\251\255\149\8\2\7\135\7\4\8\198\8\0\0\241\7\6\0\8\0\0\0\149\7\2\4\149\9\2\7\135\8\4\9\106\8\4\7\101\0\178\0\251\8\1\0\149\7\8\1\222\7\1\0\101\0\174\0\140\2\34\0\154\1\34\0\2\0\0\0\19\2\0\0\19\3\0\1\19\4\0\2\251\5\2\0\140\6\0\0\154\4\9\0\6\0\0\0\251\7\1\0\149\6\7\1\222\6\1\0\251\7\0\0\251\8\1\0\135\6\7\8\77\4\6\236\15\0\0\0\120\7\4\1\91\6\7\16\135\7\5\2\140\8\0\0\154\3\3\0\8\0\0\0\251\8\6\0\38\3\8\2\140\10\1\0\82\8\3\0\140\9\1\0\168\8\144\0\67\11\6\10\67\13\2\10\135\12\5\13\106\12\7\11\139\8\251\255\101\0\138\0\140\2\35\0\154\1\29\0\2\0\0\0\19\2\0\0\255" ..
"\3\0\0\0\0\0\0\140\6\1\0\251\7\8\0\28\4\7\0\140\5\1\0\168\4\127\0\251\8\8\0\135\7\8\6\140\10\0\0\28\8\7\0\140\9\1\0\168\8\12\0\135\11\7\10\19\12\11\0\19\13\11\1\251\14\2\0\154\12\6\0\14\0\0\0\125\2\4\0\13\0\0\0\135\14\12\13\106\14\3\13\246\3\11\0\139\8\244\255\139\4\237\255\101\0\107\0\140\2\36\0\154\1\82\0\2\0\0\0\251\3\9\0\19\4\0\1\135\2\3\4\251\3\2\0\198\4\0\0\198\5\0\0\77\6\2\251\17\0\0\0\140\7\0\0\241\6\62\0\7\0\0\0\255\4\0\0\0\0\0\0\164\6\19\0\0\0\32\65\255\7\0\0\0\0\0\0\226\8\22\0\217\9\0\0\82\0\4\0\48\9\8\110\20\0\0\0\217\9\1\0\82\0\4\0\48\9\8\206\21\0\0\0\159\6\3\2\82\5\6\0\140\8\1\0\77\6\2\251\17\0\0\0\140\7\1\0\168\6\34\0\251\10\0\0\251\11\1\0\135\9\10\11\77\10\9\157\0\0\0\0\140\11\0\0\154\10\10\0\11\0\0\0\120\10\8\1\255\11\0\0\2\0\0\0\82\12\3\0\19\13\9\1\197\11\12\3\1\0\0\0\106\11\4\10\101\0\13\0\77\10\9\157\0\0\0\0\140\11\4\0\154\10\9\0\11\0\0\0\120\10\8\1\255\11\0\0\2\0\0\0\251\12\4\0\19\13\9\1\197\11\12\3\1\0\0\0\106\11\4\10\251\11\1\0\149\10\11\1\222\10\1\0\139\6\222\255\251\6\8\0\251\9\8\0\28\8\9\0\149\7\8\1\106\4\6\7\19\6\0\0\251\7\10\0\82\8\2\0\251\9\5\0\82\10\5\0\159\7\4\2\106\7\3\6\193\4\0\0\101\0\23\0\140\2\37\0\154\1\21\0\2\0\0\0\19\2\0\0\19\3\0\1\251\4\2\0\251\5\11\0\120\6\2\1\222\6\6\0\82\8\2\0\140\10\0\0\96\10\3\0\3\0\0\0\120\9\3\1\43\9\1\0\251\9\12\0\67\6\2\9\140\7\1" ..
"\0\168\6\4\0\38\10\8\2\135\9\5\10\106\9\4\8\139\6\252\255\72\0\122\252\130\0\1\0\23\3\20\2\0\0\0\0\0\0\240\63\3\50\4\0\0\32\64\2\0\0\0\0\0\0\0\64\3\51\4\0\0\80\64\2\0\0\0\0\0\0\8\64\3\52\4\0\0\128\64\3\53\3\33\4\0\0\176\64\3\54\3\55\3\21\2\0\0\0\0\0\0\73\64\3\16\3\56\4\0\0\32\65\3\57\3\58\5\2\20\21\2\11\12\59\138\7\219\2\1\0\3\0\0\1\0\1\0\0\2\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\2\0\0\1\2\0\0\0\1\0\255\255\255\255\15\0\3\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\1\1\0\1\0\0\0\1\0\1\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\1\0\0\1\1\1\2\0\0\0\1\0\0\255\255\255\255\15\4\0\0\0\1\0\0\1\0\0\0\0\1\0\0\1\1\0\0\0\1\0\0\0\2\0\0\0\0\0\0\1\0\0\0\2\0\0\1\1\0\0\0\1\0\0\0\2\0\0\0\0\0\0\1\0\0\0\2\0\0\1\1\0\0\0\1\0\0\0\2\0\0" ..
"\0\0\0\0\1\0\0\0\2\0\0\1\0\1\0\0\0\1\0\0\0\2\0\0\0\1\1\0\0\0\2\0\0\1\0\0\2\0\1\1\0\0\0\2\0\0\0\2\1\0\0\0\2\0\0\0\2\0\0\1\1\1\1\1\0\1\0\2\0\2\0\0\1\0\0\1\0\0\2\3\2\0\0\0\1\2\0\253\255\255\255\15\6\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\3\0\2\0\0\1\0\0\1\0\0\2\0\3\2\0\0\0\1\2\0\253\255\255\255\15\0\6\0\0\1\1\1\1\0\1\1\2\0\2\0\0\1\0\0\1\0\0\2\3\0\0\0\1\0\0\0\255\255\255\255\15\4\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\3\0\0\0\0\1\0\1\254\255\255\255\15\6\0\0\1\0\0\1\1\1\1\0\1\2\0\0\1\1\0\0\1\0\2\0\3\0\1\2\0\0\0\1\2\0\253\255\255\255\15\6\0\0\1\0\0\1\1\2\0\1\0\2\2\0\0\1\0\0\0\1\0\0\0\2\0\0\3\0\0\0\1\0\0\0\2\0\0\3\0\0\1\1\3\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\2\0\0\0\0\1\0\0\1\1\1\2\1\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\255\255\255\255\15\4\0\0\0\0\1\0\0\0\0\2\0\0\0\2\0\0\1\1\1\1\2\0\0\1\0\0\1\0\0\0\0\3\0\1\2\0\0\1\0\3\0\0\0\1\0\0\0\255\255\255\255\15\0\3\0\0\1\1\0\2\0\0\0\0\1\0\2\0\0\0\1\1\1\2\0\0\0\0\1\0\1\249\255\255\255\15\253\255\255\255\15\0\14\0\0\1\0\0\1\2\1\2\0\0\0\0\1\0\1\0\0\0\0\1\0\0\0\5\0\0\0\0\0\8\0\0\0\0\1\0\0\2\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\1" ..
"\0\0\0\0\0\0\0\3\0\0\247\255\255\255\15\12\0\0\0\0\3\0\0\0\0\0\0\0\0\1\0\0\1\1\1\0\2\0\2\0\0\0\0\0\0\0\0\0\1\0\0\255\255\255\255\15\0\5\0\16\0\10\1\92\163\0\0\0\140\0\1\0\140\1\255\255\255\2\0\0\0\0\0\0\251\4\0\0\111\5\1\0\221\6\0\0\159\4\0\2\120\3\4\0\255\4\0\0\0\0\0\0\255\5\0\0\0\0\0\0\164\6\3\0\0\0\32\64\255\7\0\0\0\0\0\0\226\8\6\0\48\4\8\110\4\0\0\0\217\9\0\0\82\0\1\0\82\0\4\0\48\9\8\206\5\0\0\0\159\6\3\2\217\7\1\0\251\0\1\0\82\0\0\0\82\0\6\0\251\0\2\0\251\0\3\0\251\0\4\0\82\0\1\0\251\0\5\0\82\0\5\0\251\0\6\0\251\0\7\0\82\0\2\0\82\0\3\0\255\8\0\0\1\0\0\0\221\9\0\0\197\8\9\0\1\0\0\0\140\11\0\0\82\9\3\0\140\10\1\0\168\9\17\0\251\13\8\0\77\12\13\219\7\0\0\0\125\12\9\0\11\0\0\0\251\14\8\0\77\13\14\219\7\0\0\0\38\12\11\13\149\14\11\0\135\13\8\14\106\13\2\12\101\0\3\0\149\13\11\0\135\12\8\13\106\12\6\11\139\9\239\255\164\9\9\0\0\0\128\64\82\10\7\0\159\9\2\4\14\9\14\0\14\10\11\0\140\12\0\0\96\12\9\0\11\0\0\0\164\12\11\0\0\0\160\64\82\13\10\0\140\14\1\0\82\15\11\0\159\12\4\0\193\0\0\0\130\12\0\0\193\0\0\0\130\0\1\0\251\12\9\0\82\13\10\0\120\14\0\0\159\12\3\1\193\0\0\0\130\0\1\0\12\2\0\0\0\0\0\0\240\63\3\41\3\56\4\0\0\32\64\3\57\3\58\5\2\4\5\3\17\3\60\4\0\0\128\64\3\50\4\0\0\160\64\2\10\13\0\92\201\2\2\0\1\0\0\0\0\0\0\2\0\1\0\1\0\0\0\0\0\0\2\0\0\0\0\0\9\0\0\0\0\0" ..
"\0\0\0\0\0\0\0\0\250\2\0\0\0\0\2\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\2\0\0\252\255\255\255\15\8\0\0\0\2\1\0\0\0\1\0\0\0\0\0\0\0\3\0\2\0\0\0\2\0\0\8\3\3\0\22\192\3\0\0\77\3\0\91\0\0\0\0\77\4\0\240\1\0\0\0\77\5\0\241\2\0\0\0\217\6\0\0\82\0\0\0\217\7\1\0\251\0\0\0\82\0\3\0\82\0\4\0\82\0\2\0\82\0\1\0\251\0\1\0\82\0\5\0\251\0\2\0\82\0\0\0\82\0\6\0\193\0\0\0\130\7\2\0\3\3\9\3\10\3\11\2\9\14\61\22\189\2\1\0\1\0\1\0\2\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\7\2\2\0\15\192\2\0\0\251\2\0\0\82\3\0\0\159\2\2\2\251\3\1\0\82\4\2\0\82\5\1\0\43\5\4\0\164\5\1\0\0\0\0\64\140\6\0\0\159\5\2\2\159\3\3\2\82\4\2\0\130\3\3\0\2\3\62\4\0\0\0\64\0\63\15\237\5\1\0\0\2\0\0\0\0\0\0\0\0\0\0\0\2\0\1\0\9\192\0\0\0\251\0\0\0\43\0\2\0\198\0\0\0\130\0\2\0\251\0\0\0\198\1\0\0\222\1\0\0\130\0\2\0\0\0\0\9\185\6\1\0\0\0\1\1\0\1\0\4\2\0\0\6\192\2\0\0\82\2\1\0\217\3\0\0\82\0\2\0\193\2\0\0\130\3\2\0\0\1\17\64\6\183\6\1\1\0\0\0\0\6\4\0\0\27\192\4\0\0\43\1\1\0\130\0\1\0\255\4\0\0\0\0\0\0\48\1\4\224\0\0\0\0\144\5\2\1\48\5\4\38\2\0\0\0\48\3\4\90\3\0\0\0\14\2\3\0\111\5\1\0\154\2\5\0\5\0\0\0\140\5\0\0\48\5\4\143\4\0\0\0\101\0\3\0\28\5\2\0\48\5\4\143\4\0\0\0\140\5\0\0\48\5\4\145\5\0\0\0\130\4\2\0\6\3\65\3\66\3\67\3\68\3\69\3\70\0\71\27" ..
"\213\6\1\0\1\0\1\0\1\0\0\1\0\2\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\7\2\0\0\26\192\2\0\0\77\2\1\224\0\0\0\0\159\2\1\2\48\2\1\38\1\0\0\0\14\2\3\0\111\3\2\0\154\2\3\0\3\0\0\0\111\3\3\0\130\3\2\0\28\5\2\0\120\3\5\4\140\4\1\0\48\3\1\143\5\0\0\0\48\4\1\145\6\0\0\0\164\3\9\0\0\32\112\128\82\4\2\0\140\5\1\0\140\6\1\0\159\3\4\0\130\3\0\0\10\3\65\3\67\3\66\3\72\2\0\0\0\0\0\0\240\63\3\69\3\70\3\45\3\73\4\0\32\112\128\0\74\26\228\6\1\0\0\1\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\8\2\0\0\28\192\2\0\0\77\2\1\143\0\0\0\0\77\4\1\145\2\0\0\0\149\3\4\1\140\4\0\0\96\4\15\0\2\0\0\0\120\4\2\1\82\5\3\0\48\4\1\143\0\0\0\0\48\5\1\145\2\0\0\0\164\4\5\0\0\16\48\128\77\5\1\38\6\0\0\0\82\6\3\0\82\7\3\0\159\4\4\0\130\4\0\0\82\6\1\0\188\4\0\79\7\0\0\0\159\4\3\0\130\4\0\0\8\3\69\2\0\0\0\0\0\0\240\63\3\70\3\45\3\73\4\0\16\48\128\3\67\3\74\0\75\28\240\6\1\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\0\12\1\0\0\26\192\1\0\0\255\1\0\0\0\0\0\0\255\2\0\0\0\0\0\0\164\3\2\0\0\4\0\128\77\4\0\143\3\0\0\0\111\5\4\0\159\3\3\4\101\3\7\0\164\8\6\0\0\20\0\128\82\9\6\0\111\10\7\0\159\8\3\5\106\11\1\10\106\10\2\11\110\3\248\255\1\0\0\0\48\1\0\202\8\0\0\0\48\2\0\123\9\0\0\0\130\0\1\0\10\3\45\3\76\4\0\4\0\128\3\77\3\78\3\79\4\0\20\0\128\3\80\3\81\3\82\0" ..
"\71\26\186\8\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\1\253\255\255\255\15\0\5\0\1\0\1\0\13\3\0\0\88\192\3\0\0\198\3\0\0\164\4\2\0\0\4\0\128\82\5\1\0\140\6\1\0\140\7\1\0\159\4\4\2\111\5\3\0\154\4\9\0\5\0\0\0\164\5\2\0\0\4\0\128\82\6\1\0\140\7\2\0\82\8\2\0\159\5\4\2\82\3\5\0\130\3\2\0\111\5\4\0\154\4\29\0\5\0\0\0\164\5\2\0\0\4\0\128\82\6\1\0\140\7\2\0\159\5\3\2\82\1\5\0\111\6\5\0\28\5\6\0\38\2\2\5\28\5\1\0\111\3\6\0\96\2\12\0\5\0\0\0\164\6\2\0\0\4\0\128\82\7\1\0\140\10\1\0\67\9\10\5\38\8\9\2\159\6\3\2\82\1\6\0\82\6\3\0\111\7\7\0\115\3\6\7\82\6\3\0\82\7\1\0\115\3\6\7\130\3\2\0\164\5\9\0\0\32\0\128\82\6\1\0\111\7\10\0\159\5\3\2\14\5\2\0\120\6\5\11\43\6\1\0\28\6\1\0\82\5\6\0\111\7\12\0\28\6\7\0\38\2\2\6\96\2\2\0\5\0\0\0\82\5\2\0\111\3\13\0\28\6\1\0\96\5\12\0\6\0\0\0\82\6\3\0\164\9\2\0\0\4\0\128\82\10\1\0\140\11\1\0\82\12\5\0\159\9\4\2\82\7\9\0\111\8\7\0\115\3\6\8\101\0\3\0\82\6\3\0\82\7\1\0\115\3\6\7\82\6\3\0\111\7\14\0\115\3\6\7\130\3\2\0\15\3\45\3\73\4\0\4\0\128\3\83\3\84\3\85\3\66\3\86\3\79\4\0\32\0\128\3\87\2\0\0\0\0\0\0\240\63\3\88\3\89\3\90\0\91\88\202\8\1\1\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\2\0\0\1\0\0\0\0\0\1\0\0\1\1\1\0\1\0\0\0\0\0\0\0\1\0\0\2\0\0\0\2\0\0\0\0\1\0\0\0\0\1\0\0\1\0\0\1\1\0\0\1\0\0\0\0" ..
"\0\0\0\0\0\0\2\0\0\2\0\0\3\0\7\3\0\0\30\192\3\0\0\164\3\2\0\0\4\0\128\82\4\2\0\140\5\1\0\140\6\3\0\159\3\4\2\111\4\3\0\241\3\17\0\4\0\0\0\164\3\5\0\0\16\0\128\82\4\2\0\111\5\6\0\159\3\3\2\14\3\9\0\164\3\8\0\0\28\0\128\111\4\9\0\164\5\11\0\0\40\0\128\82\6\2\0\159\5\2\0\159\3\0\0\130\3\0\0\130\2\2\0\77\4\0\202\12\0\0\0\135\3\4\2\130\3\2\0\13\3\45\3\73\4\0\4\0\128\3\92\3\79\4\0\16\0\128\3\93\3\46\4\0\28\0\128\3\94\3\95\4\0\40\0\128\3\81\0\96\30\244\8\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\2\3\0\0\0\0\6\2\1\0\20\192\2\0\0\111\2\0\0\241\1\7\0\2\0\0\0\111\2\1\0\241\1\4\0\2\0\0\0\111\2\2\0\154\1\4\0\2\0\0\0\77\2\0\67\3\0\0\0\130\2\2\0\251\2\0\0\82\4\0\0\82\5\1\0\188\2\2\103\4\0\0\0\159\2\4\0\130\2\0\0\5\3\97\3\98\3\99\3\100\3\96\0\101\20\133\9\1\0\0\1\0\0\1\0\0\1\0\0\2\0\0\0\0\0\0\0\13\4\0\0\38\192\4\0\0\217\4\0\0\82\0\0\0\77\7\1\98\0\0\0\0\77\8\0\16\1\0\0\0\188\5\0\54\2\0\0\0\159\5\4\2\164\6\5\0\0\16\48\128\111\7\6\0\82\8\5\0\77\9\1\97\7\0\0\0\82\10\2\0\159\6\5\2\14\3\13\0\164\7\5\0\0\16\48\128\111\9\8\0\77\10\0\3\9\0\0\0\115\8\9\10\82\9\6\0\82\10\4\0\82\11\1\0\82\12\3\0\159\10\3\0\159\7\0\2\82\6\7\0\164\7\11\0\0\0\160\64\82\8\6\0\159\7\2\1\193\0\0\0\130\0\1\0\12\3\102\3\103\3\91\3\45\3\46\4\0\16\48\128\3\104\3\105\3\106\3" ..
"\107\3\35\4\0\0\160\64\1\25\108\38\132\9\1\0\9\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\9\3\0\0\11\192\3\0\0\82\5\1\0\82\6\2\0\77\8\1\149\0\0\0\0\77\7\8\250\1\0\0\0\188\3\0\174\2\0\0\0\159\3\5\1\130\0\1\0\3\3\109\3\110\3\108\0\111\11\156\9\1\0\0\0\0\0\0\0\0\1\0\5\2\0\0\15\192\2\0\0\169\2\1\0\77\3\1\225\0\0\0\0\111\4\1\0\241\3\8\0\4\0\0\0\77\3\1\225\0\0\0\0\111\4\2\0\241\3\2\0\4\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\3\3\112\3\113\3\114\0\115\15\163\9\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\2\0\0\37\192\2\0\0\77\2\1\225\0\0\0\0\82\5\1\0\188\3\0\149\1\0\0\0\159\3\3\1\82\5\1\0\188\3\0\26\2\0\0\0\159\3\3\2\14\3\8\0\77\3\1\225\0\0\0\0\241\3\5\0\2\0\0\0\82\5\1\0\188\3\0\149\1\0\0\0\159\3\3\1\77\4\1\97\4\0\0\0\149\3\4\3\48\3\1\97\4\0\0\0\77\3\1\97\4\0\0\0\77\4\0\140\5\0\0\0\125\4\6\0\3\0\0\0\82\5\1\0\111\6\6\0\188\3\0\228\7\0\0\0\159\3\4\1\130\0\1\0\8\3\112\3\116\3\115\2\0\0\0\0\0\0\240\63\3\105\3\117\3\118\3\111\0\119\37\167\9\1\0\2\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\2\0\8\5\0\0\46\192\5\0\0\43\2\2\0\255\2\0\0\0\0\0\0\77\5\2\121\0\0\0\0\43\5\4\0\255\5\0\0\0\0\0\0\48\5\2\121\0\0\0\0\77\5\2\149\1\0\0\0\43\5\4\0\255\5\0\0\0\0\0\0\48\5\2\149\1\0\0\0\111\5" ..
"\2\0\48\5\2\250\3\0\0\0\48\1\2\109\4\0\0\0\77\5\2\121\0\0\0\0\111\6\5\0\48\6\5\250\6\0\0\0\48\3\2\155\7\0\0\0\198\5\0\0\48\5\2\3\8\0\0\0\140\5\1\0\48\5\2\97\9\0\0\0\140\5\1\0\48\5\2\188\10\0\0\0\48\4\2\98\11\0\0\0\82\7\2\0\188\5\0\149\12\0\0\0\159\5\3\1\130\0\1\0\13\3\120\3\109\3\121\3\122\3\123\3\124\3\110\3\125\3\126\3\105\3\127\3\102\3\116\0\128\1\46\186\9\1\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\1\0\0\0\0\1\0\1\0\0\1\0\0\1\0\0\1\0\1\0\0\0\1\0\8\3\0\0\18\192\3\0\0\164\3\2\0\0\4\0\128\82\4\2\0\77\5\1\225\3\0\0\0\140\6\1\0\140\7\1\0\159\3\5\2\43\3\2\0\169\3\0\0\130\3\2\0\82\5\1\0\188\3\0\227\4\0\0\0\159\3\3\1\169\3\1\0\130\3\2\0\5\3\45\3\79\4\0\4\0\128\3\112\3\129\1\0\130\1\18\208\9\1\0\0\0\0\0\0\0\0\1\0\2\0\0\0\1\0\0\7\2\0\0\45\192\2\0\0\77\2\1\97\0\0\0\0\48\2\1\188\1\0\0\0\77\3\1\121\2\0\0\0\77\2\3\250\3\0\0\0\111\3\4\0\241\2\23\0\3\0\0\0\77\2\1\149\5\0\0\0\77\4\1\121\2\0\0\0\77\3\4\168\6\0\0\0\48\3\2\168\6\0\0\0\77\2\1\149\5\0\0\0\77\4\1\121\2\0\0\0\77\3\4\250\3\0\0\0\48\3\2\250\3\0\0\0\77\2\1\121\2\0\0\0\111\3\4\0\48\3\2\250\3\0\0\0\130\0\1\0\77\2\1\149\5\0\0\0\82\5\1\0\77\6\1\149\5\0\0\0\188\3\0\143\7\0\0\0\159\3\4\2\48\3\2\250\3\0\0\0\130\0\1\0\8\3\105\3\127\3\120\3\110\3\124\3\109\3\131\1\3\132\1\0\133\1\45\221" ..
"\9\1\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\2\0\7\2\0\0\12\192\2\0\0\77\2\1\121\0\0\0\0\82\5\1\0\77\6\1\121\0\0\0\0\188\3\0\143\1\0\0\0\159\3\4\2\48\3\2\250\2\0\0\0\130\0\1\0\3\3\120\3\132\1\3\110\0\120\12\237\9\2\0\0\0\0\0\0\0\0\0\1\0\5\2\1\0\10\192\2\0\0\251\2\0\0\77\4\1\155\0\0\0\0\188\2\2\108\1\0\0\0\159\2\3\2\48\2\1\225\2\0\0\0\130\2\2\0\3\3\125\3\75\3\112\0\116\10\246\9\1\0\0\0\0\0\1\0\1\0\7\3\0\0\9\192\3\0\0\77\3\1\67\0\0\0\0\82\5\3\0\82\6\2\0\115\4\5\6\48\4\1\67\0\0\0\0\130\0\1\0\1\3\100\0\134\1\9\130\10\1\0\5\0\0\0\0\1\0\6\2\0\0\12\192\2\0\0\82\4\1\0\77\5\1\225\0\0\0\0\188\2\0\69\1\0\0\0\159\2\4\1\82\4\1\0\188\2\0\149\2\0\0\0\159\2\3\0\130\2\0\0\3\3\112\3\134\1\3\116\0\129\1\12\143\10\1\0\0\0\0\0\1\0\0\0\0\0\8\2\0\0\29\192\2\0\0\164\2\1\0\0\0\0\64\82\3\1\0\159\2\2\2\14\2\1\0\130\2\2\0\164\3\4\0\0\12\32\128\164\4\6\0\0\20\32\128\82\5\1\0\140\6\1\0\140\7\2\0\159\4\4\0\159\3\0\2\111\4\7\0\154\3\9\0\4\0\0\0\164\3\1\0\0\0\0\64\82\4\1\0\140\5\16\0\159\3\3\2\82\2\3\0\14\2\1\0\130\2\2\0\198\3\0\0\130\3\2\0\8\3\52\4\0\0\0\64\3\45\3\135\1\4\0\12\32\128\3\73\4\0\20\32\128\3\136\1\0\137\1\29\160\10\1\0\0\0\1\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\7\0\0\13" ..
"\4\0\0\24\192\4\0\0\111\4\0\0\77\5\1\67\1\0\0\0\140\8\1\0\28\6\5\0\140\7\1\0\168\6\13\0\164\9\4\0\0\12\32\128\82\10\5\0\82\11\8\0\82\12\8\0\159\9\4\2\154\9\2\0\2\0\0\0\82\9\3\0\82\10\4\0\82\11\9\0\115\4\10\11\139\6\243\255\48\4\1\67\1\0\0\0\130\0\1\0\5\3\66\3\100\3\45\3\73\4\0\12\32\128\0\138\1\24\179\10\1\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\1\0\0\253\255\255\255\15\5\0\1\0\10\3\0\0\32\192\3\0\0\77\3\1\250\0\0\0\0\82\6\1\0\82\7\3\0\77\8\1\250\0\0\0\0\188\4\0\46\1\0\0\0\159\4\5\1\77\6\1\67\2\0\0\0\188\4\0\161\3\0\0\0\159\4\3\2\48\4\2\168\4\0\0\0\43\4\13\0\82\7\1\0\77\8\1\250\0\0\0\0\111\9\5\0\188\5\0\46\1\0\0\0\159\5\5\1\82\7\1\0\111\8\6\0\111\9\7\0\188\5\0\174\8\0\0\0\159\5\5\1\130\0\1\0\9\3\122\3\138\1\3\100\3\137\1\3\131\1\3\121\3\139\1\3\99\3\108\0\140\1\32\195\10\2\0\4\0\0\0\0\0\0\1\0\0\0\0\1\0\1\2\0\0\0\0\0\0\1\0\0\0\0\0\2\0\8\3\0\0\67\192\3\0\0\82\5\1\0\188\3\0\227\0\0\0\0\159\3\3\1\164\3\3\0\0\8\16\128\77\4\1\225\4\0\0\0\111\5\5\0\159\3\3\2\14\3\5\0\77\3\1\225\4\0\0\0\111\4\6\0\154\3\2\0\4\0\0\0\72\0\239\255\82\5\1\0\111\6\7\0\188\3\0\49\8\0\0\0\159\3\4\2\14\3\5\0\82\5\1\0\111\6\9\0\188\3\0\49\8\0\0\0\159\3\4\1\164\3\3\0\0\8\16\128\77\4\1\225\4\0\0\0\111\5\10\0\159\3\3\2\43\3\5\0\77\3\1\225\4\0\0\0\111\4\11\0\154\3\6\0\4\0\0\0\82\5\1" ..
"\0\188\3\0\227\0\0\0\0\159\3\3\1\72\0\239\255\82\5\1\0\111\6\6\0\77\7\1\250\12\0\0\0\188\3\0\46\13\0\0\0\159\3\5\1\77\5\1\67\14\0\0\0\188\3\0\161\15\0\0\0\159\3\3\2\48\3\2\168\16\0\0\0\43\3\5\0\82\6\1\0\82\7\2\0\188\4\0\228\17\0\0\0\159\4\4\1\130\0\1\0\18\3\129\1\3\45\3\79\4\0\8\16\128\3\112\3\141\1\3\121\3\142\1\3\130\1\3\143\1\3\144\1\3\145\1\3\122\3\138\1\3\100\3\137\1\3\131\1\3\140\1\0\146\1\67\215\10\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\1\0\1\1\0\0\0\0\2\0\7\2\0\0\28\192\2\0\0\140\2\0\0\77\3\1\225\0\0\0\0\82\6\1\0\188\4\0\227\1\0\0\0\159\4\3\1\77\4\1\225\0\0\0\0\111\5\2\0\154\4\7\0\5\0\0\0\82\6\1\0\188\4\0\227\1\0\0\0\159\4\3\1\149\2\2\3\72\0\245\255\77\5\1\225\0\0\0\0\154\5\3\0\3\0\0\0\82\4\2\0\43\4\2\0\57\5\2\0\120\4\5\3\130\4\2\0\4\3\112\3\129\1\3\83\2\0\0\0\0\0\0\240\63\0\147\1\28\238\10\1\1\0\2\0\0\0\1\0\0\0\0\1\0\0\0\1\0\2\0\0\0\0\0\0\0\0\0\11\4\0\0\135\1\192\4\0\0\140\4\0\0\82\7\1\0\188\5\0\227\0\0\0\0\159\5\3\1\82\7\1\0\188\5\0\26\1\0\0\0\159\5\3\2\14\5\4\0\82\7\1\0\188\5\0\33\2\0\0\0\159\5\3\1\77\5\1\225\3\0\0\0\111\6\4\0\154\5\11\0\6\0\0\0\82\8\1\0\14\2\2\0\111\9\5\0\101\0\1\0\111\9\6\0\111\10\7\0\188\6\0\174\8\0\0\0\159\6\5" ..
"\1\101\0\91\0\111\6\9\0\154\5\30\0\6\0\0\0\77\6\0\190\10\0\0\0\14\6\85\0\82\8\1\0\188\6\0\41\11\0\0\0\159\6\3\2\154\6\80\0\3\0\0\0\82\8\1\0\188\6\0\227\0\0\0\0\159\6\3\1\149\4\4\12\77\6\0\190\10\0\0\0\140\7\1\0\154\6\70\0\7\0\0\0\140\6\0\0\154\3\67\0\6\0\0\0\82\8\1\0\111\9\13\0\111\10\9\0\188\6\0\174\8\0\0\0\159\6\5\1\101\0\59\0\111\6\14\0\154\5\28\0\6\0\0\0\82\8\1\0\188\6\0\41\11\0\0\0\159\6\3\2\154\6\51\0\3\0\0\0\82\8\1\0\188\6\0\227\0\0\0\0\159\6\3\1\77\6\0\190\10\0\0\0\14\6\44\0\77\6\0\190\10\0\0\0\140\7\2\0\154\6\40\0\7\0\0\0\120\4\4\12\140\6\0\0\154\3\36\0\6\0\0\0\140\6\0\0\212\6\33\0\4\0\0\0\101\0\31\0\101\0\29\0\82\8\1\0\188\6\0\26\1\0\0\0\159\6\3\2\14\6\14\0\82\8\1\0\111\9\15\0\188\6\0\69\16\0\0\0\159\6\4\1\82\8\1\0\188\6\0\33\2\0\0\0\159\6\3\1\43\2\14\0\111\6\17\0\48\6\1\67\18\0\0\0\101\0\10\0\14\2\5\0\82\8\1\0\188\6\0\227\0\0\0\0\159\6\3\1\101\0\4\0\82\8\1\0\188\6\0\149\19\0\0\0\159\6\3\1\72\0\149\255\14\2\11\0\140\6\3\0\67\5\6\3\164\6\22\0\0\84\64\129\77\7\1\67\18\0\0\0\82\8\5\0\57\9\5\0\159\6\4\2\48\6\2\168\23\0\0\0\130\0\1\0\24\3\129\1\3\115\3\119\3\112\3\72\3\148\1\3\149\1\3\124\3\108\3\150\1\3\151\1\3\147\1\2\0\0\0\0\0\0\240\63\3\152\1\3\153\1\3\113\3\134\1\3\66\3\100\3\116\3\45\3\73\4\0\84\64\129\3\131\1\0\154\1\135\1\253\10\1\1\0\0\0\1\0\0\0\0\1\0\0" ..
"\0\3\0\1\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\2\0\0\1\0\0\0\0\0\1\0\0\0\1\2\0\0\0\0\1\0\0\1\0\0\0\0\0\0\7\0\0\1\0\0\0\0\0\1\0\0\0\2\0\0\0\0\0\0\0\1\1\0\0\0\0\0\3\0\2\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\2\1\0\0\0\0\2\0\0\0\0\4\1\0\1\0\0\0\0\0\0\0\0\2\0\13\4\0\0\155\1\192\4\0\0\82\6\1\0\188\4\0\227\0\0\0\0\159\4\3\1\77\4\1\225\1\0\0\0\241\4\133\0\2\0\0\0\77\4\1\225\1\0\0\0\111\5\2\0\154\4\8\0\5\0\0\0\82\7\1\0\111\8\3\0\111\9\4\0\188\5\0\174\5\0\0\0\159\5\5\1\101\0\119\0\82\7\1\0\188\5\0\26\6\0\0\0\159\5\3\2\14\5\7\0\82\7\1\0\111\8\3\0\111\9\7\0\188\5\0\174\5\0\0\0\159\5\5\1\101\0\107\0\111\5\8\0\154\4\101\0\5\0\0\0\82\7\1\0\188\5\0\149\9\0\0\0\159\5\3\2\82\4\5\0\82\7\1\0\188\5\0\26\6\0\0\0\159\5\3\2\14\5\10\0\82\7\1\0\111\8\10\0\188\5\0\69\11\0\0\0\159\5\4\1\82\7\1\0\188\5\0\33\12\0\0\0\159\5\3\1\101\0\84\0\111\5\2\0\241\4\82\0\5\0\0\0\164\5\15\0\0\56\208\128\111\6\16\0\82\7\4\0\140\8\1\0\140\9\1\0\159\5\5\2\14\5\15\0\82\8\1\0\164\9\18\0\0\68\208\128\111\10\19\0\82\11\5\0\82\12\5\0\159\9\4\0\188\6\0\69\11\0\0\0\159\6\0\1\82\8\1\0\188\6\0\149\9\0\0\0\159\6\3\1\101\0\58\0\164\6\15\0\0\56\208\128\82\7\4\0\111\8\20\0\159\6\3\2\43\6\5\0\82\8\1\0\188\6\0\227\0\0\0\0\159\6\3\1\101\0\47\0\140\6\0\0\140\7\0\0\82\4\6\0\82\5" ..
"\7\0\140\7\10\0\9\6\7\4\77\7\1\225\1\0\0\0\67\4\6\7\82\8\1\0\188\6\0\149\9\0\0\0\159\6\3\1\149\5\5\21\140\6\3\0\212\6\9\0\5\0\0\0\164\6\15\0\0\56\208\128\77\7\1\225\1\0\0\0\111\8\20\0\159\6\3\2\14\6\1\0\72\0\235\255\140\6\255\0\96\6\7\0\4\0\0\0\82\8\1\0\111\9\22\0\111\10\7\0\188\6\0\174\5\0\0\0\159\6\5\1\82\8\1\0\164\9\24\0\0\92\208\128\82\10\4\0\159\9\2\0\188\6\0\69\11\0\0\0\159\6\0\1\101\0\4\0\82\7\1\0\188\5\0\227\0\0\0\0\159\5\3\1\72\0\120\255\82\6\1\0\188\4\0\227\0\0\0\0\159\4\3\1\164\4\18\0\0\68\208\128\77\5\1\67\25\0\0\0\140\6\2\0\140\7\254\255\159\4\4\2\48\4\3\168\26\0\0\0\130\0\1\0\27\3\129\1\3\112\3\72\3\155\1\3\124\3\108\3\115\3\98\3\156\1\3\116\3\113\3\134\1\3\119\3\45\3\79\4\0\56\208\128\3\157\1\3\73\4\0\68\208\128\3\158\1\3\159\1\2\0\0\0\0\0\0\240\63\3\160\1\3\161\1\4\0\92\208\128\3\100\3\131\1\0\162\1\155\1\186\11\1\0\0\0\1\0\0\0\1\0\1\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\2\0\0\0\0\0\0\1\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\2\0\0\0\0\1\0\0\0\1\1\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\0\4\0\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\1\0\10\3\0\0\173\2\192\3\0\0\111\3\0\0\48\3\1\67\1\0\0\0\77\3\1\225\2\0\0\0\82\6\1\0\188\4\0" ..
"\26\3\0\0\0\159\4\3\2\14\4\5\0\82\6\1\0\188\4\0\33\4\0\0\0\159\4\3\1\101\0\27\1\111\4\5\0\154\3\56\0\4\0\0\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\2\82\3\4\0\111\4\5\0\241\3\3\0\4\0\0\0\111\4\5\0\130\4\2\0\140\4\255\255\82\7\1\0\188\5\0\149\6\0\0\0\159\5\3\2\111\6\7\0\154\5\9\0\6\0\0\0\82\7\1\0\188\5\0\41\8\0\0\0\159\5\3\2\82\4\5\0\111\5\0\0\48\5\1\67\1\0\0\0\140\5\0\0\125\5\11\0\4\0\0\0\82\7\1\0\198\8\0\0\82\9\4\0\188\5\0\188\9\0\0\0\159\5\5\1\111\5\0\0\48\5\1\67\1\0\0\0\101\0\241\0\82\7\1\0\188\5\0\26\3\0\0\0\159\5\3\2\43\5\236\0\77\5\1\225\2\0\0\0\111\6\10\0\241\5\232\0\6\0\0\0\82\7\1\0\188\5\0\149\6\0\0\0\159\5\3\1\72\0\241\255\101\0\225\0\111\4\7\0\154\3\28\0\4\0\0\0\82\6\1\0\188\4\0\41\8\0\0\0\159\4\3\2\140\5\0\0\125\5\9\0\4\0\0\0\82\7\1\0\82\8\2\0\82\9\4\0\188\5\0\188\9\0\0\0\159\5\5\1\111\5\11\0\130\5\2\0\140\5\255\255\154\4\3\0\5\0\0\0\111\5\7\0\130\5\2\0\82\7\1\0\111\8\12\0\111\9\11\0\188\5\0\174\13\0\0\0\159\5\5\1\101\0\195\0\111\4\14\0\154\3\17\0\4\0\0\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\2\82\3\4\0\111\4\14\0\241\3\3\0\4\0\0\0\111\4\14\0\130\4\2\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\111\4\15\0\130\4\2\0\111\4\16\0\154\3\17\0\4\0\0\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\2\82\3\4\0\111\4\14\0\241\3\3\0\4\0\0\0\111\4\16\0\130\4\2\0\82" ..
"\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\111\4\17\0\130\4\2\0\111\4\18\0\154\3\17\0\4\0\0\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\2\82\3\4\0\111\4\14\0\241\3\3\0\4\0\0\0\111\4\18\0\130\4\2\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\111\4\19\0\130\4\2\0\111\4\20\0\154\3\17\0\4\0\0\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\2\82\3\4\0\111\4\14\0\241\3\3\0\4\0\0\0\111\4\20\0\130\4\2\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\111\4\21\0\130\4\2\0\111\4\22\0\241\3\4\0\4\0\0\0\111\4\23\0\154\3\9\0\4\0\0\0\82\6\1\0\82\7\3\0\82\8\2\0\188\4\0\22\24\0\0\0\159\4\5\1\111\4\11\0\130\4\2\0\111\4\25\0\154\3\37\0\4\0\0\0\82\6\1\0\188\4\0\227\26\0\0\0\159\4\3\2\82\3\4\0\82\6\1\0\111\7\25\0\188\4\0\49\27\0\0\0\159\4\4\2\14\4\10\0\82\6\1\0\111\7\25\0\188\4\0\49\27\0\0\0\159\4\4\2\14\4\2\0\111\4\28\0\130\4\2\0\111\4\29\0\130\4\2\0\164\4\32\0\0\124\224\129\82\5\3\0\111\6\33\0\159\4\3\2\43\4\2\0\111\4\25\0\130\4\2\0\82\6\1\0\82\7\2\0\188\4\0\149\34\0\0\0\159\4\4\1\111\4\35\0\130\4\2\0\111\4\10\0\154\3\3\0\4\0\0\0\111\4\36\0\130\4\2\0\164\4\32\0\0\124\224\129\82\5\3\0\111\6\37\0\159\4\3\2\14\4\5\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\101\0\50\0\164\4\32\0\0\124\224\129\82\5\3\0\111\6\33\0\159\4\3\2\14\4\7\0\82\6\1\0\82\7\2\0\188\4\0\149\34\0\0\0\159\4\4\1\111\4\35\0\130\4\2\0\164\4\32\0\0\124\224\129\82\5\3" ..
"\0\111\6\38\0\159\4\3\2\14\4\26\0\82\6\1\0\188\4\0\227\26\0\0\0\159\4\3\2\82\3\4\0\111\4\10\0\241\3\8\0\4\0\0\0\164\4\32\0\0\124\224\129\82\5\3\0\111\6\39\0\159\4\3\2\14\4\1\0\72\0\241\255\77\4\1\67\1\0\0\0\77\6\0\123\40\0\0\0\135\5\6\4\14\5\1\0\130\5\2\0\48\4\2\168\41\0\0\0\111\6\42\0\130\6\2\0\82\6\1\0\188\4\0\149\6\0\0\0\159\4\3\1\130\3\2\0\72\0\216\254\130\0\1\0\43\3\66\3\100\3\112\3\115\3\119\3\163\1\3\116\3\150\1\3\147\1\3\154\1\3\72\3\98\3\164\1\3\108\3\83\3\165\1\3\166\1\3\167\1\3\168\1\3\169\1\3\170\1\3\171\1\3\172\1\3\173\1\3\162\1\3\121\3\129\1\3\130\1\3\174\1\3\175\1\3\45\3\79\4\0\124\224\129\3\159\1\3\146\1\3\99\3\124\3\176\1\3\177\1\3\178\1\3\82\3\131\1\3\97\0\132\1\173\2\231\11\1\0\0\2\0\2\0\0\0\0\1\0\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\2\1\0\0\0\0\0\0\1\0\0\0\0\1\0\0\2\0\0\1\0\0\0\0\0\1\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\4\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\1\0\1\0\0\1\0\2\0\0\0\0\0\0\3\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\1\0\0\0\0\0\1\0\2\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\1\0\2\0\0\0\0\0\1\0\2\0\0\0\0\1\0\3\0\0\1\0\3\0\0\0\0\0\2\0\0\0" ..
"\0\1\0\0\0\0\0\1\0\0\0\0\1\0\1\0\0\0\0\0\3\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\1\0\0\1\0\1\0\1\0\2\0\0\0\1\0\5\0\5\2\0\0\7\192\2\0\0\77\3\0\224\0\0\0\0\77\4\1\33\1\0\0\0\135\2\3\4\130\2\2\0\2\3\179\1\3\180\1\0\181\1\7\235\13\0\0\0\0\0\0\0\5\3\0\0\7\192\3\0\0\77\4\0\23\0\0\0\0\135\3\4\2\48\3\1\33\1\0\0\0\130\0\1\0\2\3\182\1\3\180\1\0\183\1\7\236\13\0\0\0\0\0\0\0\3\2\0\0\4\192\2\0\0\77\2\1\96\0\0\0\0\130\2\2\0\1\3\184\1\0\185\1\4\238\13\0\0\0\0\3\3\0\0\4\192\3\0\0\48\2\1\96\0\0\0\0\130\0\1\0\1\3\184\1\0\186\1\4\239\13\0\0\0\0\3\2\0\0\4\192\2\0\0\77\2\1\99\0\0\0\0\130\2\2\0\1\3\187\1\0\188\1\4\241\13\0\0\0\0\3\3\0\0\4\192\3\0\0\48\2\1\99\0\0\0\0\130\0\1\0\1\3\187\1\0\189\1\4\242\13\0\0\0\0\3\2\0\0\4\192\2\0\0\77\2\1\98\0\0\0\0\130\2\2\0\1\3\190\1\0\191\1\4\244\13\0\0\0\0\3\3\0\0\4\192\3\0\0\48\2\1\98\0\0\0\0\130\0\1\0\1\3\190\1\0\192\1\4\245\13\0\0\0\0\3\2\0\0\4\192\2\0\0\77\2\1\10\0\0\0\0\130\2\2\0\1\3\193\1\0\194\1\4\247\13\0\0\0\0\3\3\0\0\4\192\3\0\0\48\2\1\10\0\0\0\0\130\0\1\0\1\3\193\1\0\195\1\4\248\13\0\0\0\0\5\2\0\0\7\192\2\0\0\77\3\1\10\0\0\0\0\77\4\0\10\1\0\0\0\38\2\3\4\130\2\2\0\2\3\193\1\3\196\1\0\197\1\7\250\13\0\0\0\0\0\0\0\5\3\0\0\7\192\3\0\0\77\4\0\10\0\0\0\0\67\3\2\4" ..
"\48\3\1\10\1\0\0\0\130\0\1\0\2\3\196\1\3\193\1\0\198\1\7\251\13\0\0\0\0\0\0\0\8\5\0\0\14\192\5\0\0\226\5\4\0\77\7\0\23\5\0\0\0\135\6\7\1\48\6\5\33\0\0\0\0\48\2\5\96\1\0\0\0\48\3\5\99\2\0\0\0\48\4\5\98\3\0\0\0\130\5\2\0\6\3\180\1\3\184\1\3\187\1\3\190\1\5\4\0\1\2\3\3\182\1\0\199\1\14\253\13\1\0\0\0\0\0\0\0\0\0\0\0\0\0\7\4\0\0\12\192\4\0\0\226\4\3\0\77\6\0\23\4\0\0\0\135\5\6\1\48\5\4\33\0\0\0\0\48\2\4\96\1\0\0\0\48\3\4\10\2\0\0\0\130\4\2\0\5\3\180\1\3\184\1\3\193\1\5\3\0\1\2\3\182\1\0\200\1\12\129\14\1\0\0\0\0\0\0\0\0\0\0\0\9\2\0\0\14\192\2\0\0\33\2\1\0\38\3\1\2\62\1\3\0\33\3\1\1\38\4\1\3\62\1\4\1\82\6\2\0\82\7\3\0\82\8\1\0\188\4\0\117\2\0\0\0\159\4\5\0\130\4\0\0\3\2\0\0\0\0\0\0\80\64\2\0\0\0\0\0\0\112\64\3\200\1\0\201\1\14\136\14\1\1\0\1\1\0\1\0\0\0\0\0\0\0\12\2\0\0\48\192\2\0\0\77\2\1\10\0\0\0\0\14\2\13\0\77\3\1\10\0\0\0\0\33\2\3\1\48\2\1\98\2\0\0\0\77\4\1\10\0\0\0\0\77\5\1\98\2\0\0\0\38\3\4\5\62\2\3\1\48\2\1\99\3\0\0\0\77\4\1\96\5\0\0\0\91\3\4\4\77\4\1\33\6\0\0\0\67\2\3\4\33\3\2\7\77\5\1\98\2\0\0\0\91\4\5\4\38\6\2\3\62\5\6\7\67\2\4\5\33\4\2\7\77\6\1\99\3\0\0\0\91\5\6\8\38\7\2\4\62\6\7\7\67\2\5\6\33\5\2\7\38\7\2\5\62\6\7\7\164\7\11\0\0\40\144\128\82\8\3\0\82\9\4\0\82\10\5\0\82\11" ..
"\6\0\159\7\5\0\130\7\0\0\12\3\193\1\2\0\0\0\0\0\0\128\64\3\190\1\3\187\1\2\0\0\0\0\0\0\80\64\3\184\1\3\180\1\2\0\0\0\0\0\0\112\64\2\0\0\0\0\0\0\96\64\3\45\3\161\1\4\0\40\144\128\0\202\1\48\147\14\1\0\0\2\0\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\0\1\1\0\0\0\0\0\1\1\0\0\0\0\0\1\1\0\1\0\0\0\0\0\0\0\0\15\2\0\0\71\192\2\0\0\164\2\2\0\0\4\0\128\255\3\0\0\0\0\0\0\82\4\2\0\82\5\1\0\140\6\1\0\159\4\3\2\33\5\4\3\48\5\3\33\4\0\0\0\82\7\2\0\82\8\1\0\140\9\2\0\159\7\3\2\91\6\7\5\38\8\4\5\62\7\8\3\67\4\6\7\33\6\4\6\48\6\3\96\7\0\0\0\82\8\2\0\82\9\1\0\140\10\3\0\159\8\3\2\91\7\8\5\38\9\4\6\62\8\9\6\67\4\7\8\33\7\4\8\48\7\3\98\9\0\0\0\82\10\2\0\82\11\1\0\140\12\4\0\159\10\3\2\91\9\10\10\38\11\4\7\62\10\11\8\67\8\9\10\48\8\3\99\11\0\0\0\77\9\0\38\12\0\0\0\164\10\14\0\0\0\208\64\164\11\16\0\0\60\0\128\77\13\0\251\17\0\0\0\149\14\5\18\135\12\13\14\140\13\7\0\140\14\7\0\159\11\4\0\159\10\0\2\135\8\9\10\111\9\19\0\241\8\9\0\9\0\0\0\77\11\3\99\11\0\0\0\91\10\11\8\77\11\3\98\9\0\0\0\67\9\10\11\48\9\3\10\20\0\0\0\130\3\2\0\21\3\45\3\95\4\0\4\0\128\2\0\0\0\0\0\0\80\64\3\180\1\2\0\0\0\0\0\0\16\64\2\0\0\0\0\0\0\112\64\3\184\1\2\0\0\0\0\0\0\128\64\3\190\1\2\0\0\0\0\0\0\0\64\3\187\1\3\203\1\3\52\4\0\0\208\64\3\73\4\0\60\0\128\3\204\1\2\0\0\0\0\0\0\240\63\3\205\1" ..
"\3\193\1\0\206\1\71\166\14\1\0\1\0\1\0\0\0\1\1\0\1\0\0\0\0\0\0\0\1\1\0\1\0\0\0\0\0\0\0\1\1\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\2\0\4\2\0\0\8\192\2\0\0\77\3\0\141\0\0\0\0\212\3\2\0\1\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\1\3\207\1\0\208\1\8\195\14\0\0\0\0\0\0\0\0\4\2\0\0\5\192\2\0\0\77\3\0\141\0\0\0\0\38\2\1\3\130\2\2\0\1\3\207\1\0\209\1\5\198\14\0\0\0\0\0\4\2\0\0\5\192\2\0\0\77\3\0\141\0\0\0\0\67\2\1\3\130\2\2\0\1\3\207\1\0\210\1\5\203\14\0\0\0\0\0\7\2\0\0\9\192\2\0\0\77\4\0\251\1\0\0\0\77\6\0\23\2\0\0\0\135\5\6\1\135\3\4\5\33\2\3\0\130\2\2\0\3\2\0\0\0\0\0\0\16\64\3\204\1\3\182\1\0\211\1\9\205\15\1\0\0\0\0\0\0\0\0\9\2\0\0\14\192\2\0\0\77\6\0\251\2\0\0\0\77\8\0\23\3\0\0\0\135\7\8\1\135\5\6\7\62\4\5\1\76\12\0\2\164\3\6\0\0\20\64\128\159\3\2\2\33\2\3\0\130\2\2\0\7\2\0\0\0\0\0\0\16\64\2\0\0\0\0\0\0\48\64\3\204\1\3\182\1\3\5\3\212\1\4\0\20\64\128\0\213\1\14\209\15\1\0\0\0\0\0\0\0\0\0\0\0\0\0\9\2\0\0\14\192\2\0\0\77\6\0\251\1\0\0\0\77\8\0\23\2\0\0\0\135\7\8\1\135\5\6\7\62\4\5\0\76\12\0\2\164\3\5\0\0\16\48\128\159\3\2\2\33\2\3\0\130\2\2\0\6\2\0\0\0\0\0\0\16\64\3\204\1\3\182\1\3\5\3\212\1\4\0\16\48\128\0\214\1\14\213\15\1\0\0\0\0\0\0\0\0\0\0\0\0\0\9\2\0\0" ..
"\14\192\2\0\0\77\6\0\251\2\0\0\0\77\8\0\23\3\0\0\0\135\7\8\1\135\5\6\7\62\4\5\1\76\12\0\2\164\3\6\0\0\20\64\128\159\3\2\2\33\2\3\0\130\2\2\0\7\2\0\0\0\0\0\0\0\64\2\0\0\0\0\0\0\80\64\3\204\1\3\182\1\3\5\3\212\1\4\0\20\64\128\0\215\1\14\217\15\1\0\0\0\0\0\0\0\0\0\0\0\0\0\8\2\0\0\13\192\2\0\0\77\5\0\251\1\0\0\0\77\7\0\23\2\0\0\0\135\6\7\1\135\4\5\6\62\3\4\0\76\12\0\2\164\2\5\0\0\16\48\128\159\2\2\0\130\2\0\0\6\2\0\0\0\0\0\0\96\64\3\204\1\3\182\1\3\5\3\212\1\4\0\16\48\128\0\216\1\13\221\15\1\0\0\0\0\0\0\0\0\0\0\0\0\13\5\1\0\20\192\5\0\0\251\5\0\0\91\10\0\0\91\11\1\1\67\9\10\11\77\12\5\80\3\0\0\0\135\11\12\2\91\10\11\2\67\8\9\10\77\11\5\80\3\0\0\0\135\10\11\3\91\9\10\4\67\7\8\9\77\9\5\38\5\0\0\0\135\8\9\4\67\6\7\8\130\6\2\0\6\2\0\0\0\0\0\0\96\64\2\0\0\0\0\0\0\80\64\2\0\0\0\0\0\0\48\64\3\217\1\2\0\0\0\0\0\0\16\64\3\203\1\0\218\1\20\234\15\1\1\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\2\0\0\12\192\2\0\0\43\0\2\0\140\2\0\0\130\2\2\0\77\3\1\38\0\0\0\0\82\4\0\0\115\2\3\4\48\2\1\38\0\0\0\0\140\2\0\0\130\2\2\0\1\3\67\0\0\12\132\17\1\0\0\1\0\0\0\0\0\1\0\0\5\1\0\0\10\192\1\0\0\255\1\0\0\0\0\0\0\111\2\0\0\48\2\1\38\1\0\0\0\217\2\0\0\82\3\2\0\82\4\1\0\130\3\3\0\2\3\66\3\67\1\71\219\1\10\128\17\1\0\1\0\0\2\5\0\0\0\4\2\0\0\34\192" ..
"\2\0\0\77\3\1\204\0\0\0\0\76\40\0\2\164\2\2\0\0\0\16\64\159\2\2\2\111\3\3\0\154\2\4\0\3\0\0\0\77\3\0\240\4\0\0\0\130\3\2\0\111\3\5\0\154\2\4\0\3\0\0\0\77\3\0\128\6\0\0\0\130\3\2\0\111\3\7\0\154\2\4\0\3\0\0\0\77\3\0\38\8\0\0\0\130\3\2\0\111\3\9\0\154\2\4\0\3\0\0\0\77\3\0\168\10\0\0\0\130\3\2\0\77\3\0\65\11\0\0\0\130\3\2\0\12\3\220\1\3\221\1\4\0\0\16\64\3\222\1\3\223\1\3\45\3\224\1\3\225\1\3\226\1\3\227\1\3\228\1\3\229\1\0\230\1\34\168\17\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\5\1\0\0\9\192\1\0\0\33\1\0\0\38\3\0\1\62\2\3\0\164\3\3\0\0\8\16\128\82\4\1\0\159\3\2\0\130\2\0\0\4\2\0\0\0\0\0\0\112\64\3\45\3\161\1\4\0\8\16\128\0\231\1\9\185\17\1\1\0\0\0\0\0\0\0\13\2\0\0\79\192\2\0\0\217\2\0\0\140\3\0\0\140\4\0\0\96\1\3\0\4\0\0\0\140\3\1\0\57\1\1\0\82\5\1\0\76\14\0\2\164\4\2\0\0\4\0\128\159\4\2\3\140\6\0\0\154\1\6\0\6\0\0\0\140\6\0\0\140\7\0\0\82\4\6\0\82\5\7\0\101\0\18\0\111\6\3\0\154\1\6\0\6\0\0\0\140\6\0\0\140\7\255\7\82\4\6\0\82\5\7\0\101\0\10\0\91\7\4\5\120\6\7\4\111\8\6\0\140\9\53\0\76\15\0\2\164\7\8\0\0\28\0\128\159\7\3\2\9\4\6\7\149\5\5\9\111\6\10\0\198\7\0\0\82\9\4\0\76\12\0\2\164\8\12\0\0\44\0\128\159\8\2\2\82\1\8\0\140\10\1\0\140\8\6\0\140\9\1\0\168\8\9\0\82\11\2\0\82\12\1\0\159\11\2\3\82\1\11\0" ..
"\82\7\12\0\82\11\6\0\82\12\7\0\115\6\11\12\139\8\247\255\82\8\2\0\91\10\5\13\67\9\10\1\159\8\2\3\82\1\8\0\82\7\9\0\82\8\6\0\82\9\7\0\115\6\8\9\82\8\2\0\91\10\3\14\67\9\10\1\159\8\2\3\82\1\8\0\82\7\9\0\82\8\6\0\82\9\7\0\115\6\8\9\130\6\2\0\15\3\5\3\232\1\4\0\4\0\128\2\0\0\0\0\0\0\240\127\2\0\0\0\0\0\0\240\63\2\0\0\0\0\0\0\0\64\2\0\0\0\0\0\0\224\63\3\6\4\0\28\0\128\2\0\0\0\0\0\240\143\64\3\66\3\212\1\4\0\44\0\128\2\0\0\0\0\0\0\48\64\2\0\0\0\0\0\0\96\64\1\74\233\1\79\184\17\1\4\1\0\0\0\0\1\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\1\2\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\255\255\255\255\15\3\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\10\2\0\0\32\192\2\0\0\111\2\0\0\82\4\1\0\76\12\0\2\164\3\3\0\0\8\16\128\159\3\2\2\82\1\3\0\140\3\0\0\96\1\3\0\3\0\0\0\111\3\4\0\67\1\3\1\140\5\1\0\140\3\4\0\140\4\1\0\168\3\14\0\33\6\1\5\82\7\2\0\164\8\8\0\0\28\96\128\82\9\6\0\159\8\2\2\115\2\7\8\62\8\1\5\76\12\0\2\164\7\3\0\0\8\16\128\159\7\2\2\82\1\7\0\139\3\242\255\130\2\2\0\9\3\66\3\5\3\212\1\4\0\8\16\128\2\0\0\0\0\0\0\240\65\2\0\0\0\0\0\0\112\64\3\45\3\161\1\4\0\28\96\128\0\234\1\32\214\17\1\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\1\0\0\0\0\0\0\0\0\0\0\0\254\255\255\255\15\4\0\6\3\0\0\15\192\3\0\0\77\3\2\204\0\0\0\0\140\4\0\0" ..
"\154\3\9\0\4\0\0\0\77\3\2\210\1\0\0\0\82\4\1\0\77\5\2\38\2\0\0\0\159\3\3\2\48\3\2\204\0\0\0\0\130\0\1\0\3\3\235\1\3\236\1\3\67\0\237\1\15\244\17\1\0\0\0\0\2\0\0\0\0\0\0\0\3\0\7\3\0\0\10\192\3\0\0\164\5\2\0\0\4\0\128\82\6\1\0\159\5\2\2\82\6\2\0\188\3\0\33\3\0\0\0\159\3\4\1\130\0\1\0\4\3\45\3\161\1\4\0\4\0\128\3\237\1\0\238\1\10\255\17\1\0\0\0\0\0\0\0\1\0\8\3\0\0\10\192\3\0\0\82\7\1\0\188\5\0\78\0\0\0\0\159\5\3\2\82\6\2\0\188\3\0\33\1\0\0\0\159\3\4\1\130\0\1\0\2\3\234\1\3\237\1\0\239\1\10\134\18\1\0\0\0\0\0\0\0\1\0\8\3\0\0\10\192\3\0\0\82\7\1\0\188\5\0\1\0\0\0\0\159\5\3\2\82\6\2\0\188\3\0\33\1\0\0\0\159\3\4\1\130\0\1\0\2\3\233\1\3\237\1\0\240\1\10\141\18\1\0\0\0\0\0\0\0\1\0\7\3\0\0\24\192\3\0\0\198\3\0\0\154\1\7\0\3\0\0\0\140\5\0\0\82\6\2\0\188\3\0\74\0\0\0\0\159\3\4\1\130\0\1\0\82\3\1\0\111\4\1\0\115\1\3\4\28\5\1\0\82\6\2\0\188\3\0\74\0\0\0\0\159\3\4\1\82\5\1\0\82\6\2\0\188\3\0\33\2\0\0\0\159\3\4\1\130\0\1\0\3\3\239\1\3\241\1\3\237\1\0\242\1\24\148\18\1\0\0\1\0\0\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\2\0\13\3\1\0\25\192\3\0\0\77\3\1\46\0\0\0\0\82\6\3\0\82\7\2\0\188\4\0\74\1\0\0\0\159\4\4\1\140\6\0\0\120\4\3\2\140\5\1\0\168\4\12\0\251\9\0\0\77\12\1\35\3\0\0\0\135\11\12\6\188\9\9\232\4\0\0\0\159\9\3\2\82\10\2\0\188\7\0" ..
"\33\5\0\0\0\159\7\4\1\139\4\244\255\130\0\1\0\6\3\243\1\3\239\1\2\0\0\0\0\0\0\240\63\3\244\1\3\202\1\3\237\1\0\245\1\25\161\18\1\0\2\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\255\255\255\255\15\3\0\13\3\0\0\89\192\3\0\0\77\3\1\117\0\0\0\0\82\6\3\0\82\7\2\0\188\4\0\74\1\0\0\0\159\4\4\1\140\6\0\0\120\4\3\2\140\5\1\0\168\4\55\0\77\8\1\138\3\0\0\0\135\7\8\6\82\10\7\0\188\8\0\55\4\0\0\0\159\8\3\2\82\11\8\0\82\12\2\0\188\9\0\50\5\0\0\0\159\9\4\1\77\9\0\38\6\0\0\0\154\8\2\0\9\0\0\0\101\0\37\0\77\9\0\168\7\0\0\0\154\8\12\0\9\0\0\0\77\12\7\204\8\0\0\0\14\12\2\0\140\11\1\0\101\0\1\0\140\11\0\0\82\12\2\0\188\9\0\50\5\0\0\0\159\9\4\1\101\0\22\0\77\9\0\240\9\0\0\0\154\8\8\0\9\0\0\0\77\11\7\204\8\0\0\0\82\12\2\0\188\9\0\141\10\0\0\0\159\9\4\1\101\0\11\0\77\9\0\128\11\0\0\0\154\8\8\0\9\0\0\0\77\11\7\204\8\0\0\0\82\12\2\0\188\9\0\118\12\0\0\0\159\9\4\1\101\0\0\0\139\4\201\255\77\3\1\190\13\0\0\0\82\6\3\0\82\7\2\0\188\4\0\74\1\0\0\0\159\4\4\1\140\6\0\0\120\4\3\2\140\5\1\0\168\4\10\0\77\10\1\145\14\0\0\0\135\9\10\6\77\10\1\98\15\0\0\0\82\11\2\0\188\7\0\94\16\0\0\0\159\7\5\1\139\4\246\255\130\0\1\0\17\3\246\1\3\239\1\2\0\0\0\0\0\0\240\63\3\247\1\3\230\1\3\238\1\3\226\1\3\228\1\3\220\1\3\223\1\3\240\1\3\224\1\3\242\1\3\248\1\3\70\3\102\3\249\1\0\250\1\89\174\18\1\0\1\0\0\0\0\1\0\0\0\1\0\0" ..
"\1\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\246\255\255\255\15\15\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\255\255\255\255\15\3\0\12\3\0\0\98\192\3\0\0\198\3\0\0\77\5\2\213\0\0\0\0\14\5\2\0\140\4\0\0\101\0\2\0\77\4\1\8\1\0\0\0\82\3\4\0\82\6\3\0\82\7\2\0\188\4\0\74\2\0\0\0\159\4\4\1\140\6\0\0\120\4\3\3\140\5\1\0\168\4\8\0\77\10\1\18\4\0\0\0\135\9\10\6\82\10\2\0\188\7\0\74\2\0\0\0\159\7\4\1\139\4\248\255\77\5\2\213\0\0\0\0\14\5\2\0\140\4\0\0\101\0\2\0\77\4\1\75\5\0\0\0\82\3\4\0\82\6\3\0\82\7\2\0\188\4\0\74\2\0\0\0\159\4\4\1\140\6\0\0\120\4\3\3\140\5\1\0\168\4\28\0\77\11\1\243\6\0\0\0\135\10\11\6\77\9\10\133\7\0\0\0\82\10\2\0\188\7\0\118\8\0\0\0\159\7\4\1\77\11\1\243\6\0\0\0\135\10\11\6\77\9\10\39\9\0\0\0\82\10\2\0\188\7\0\74\2\0\0\0\159\7\4\1\77\11\1\243\6\0\0\0\135\10\11\6\77\9\10\144\10\0\0\0\82\10\2\0\188\7\0\74\2\0\0\0\159\7\4\1\139\4\228\255\77\5\2\213\0\0\0\0\14\5\2\0\140\4\0\0\101\0\2\0\77\4\1\2\11\0\0\0\82\3\4\0\82\6\3\0\82\7\2\0\188\4\0\74\2\0\0\0\159\4\4\1\140\6\0\0\120\4\3\3\140\5\1\0\168\4\8\0\77\10\1\177\12\0\0\0\135\9\10\6\82\10\2\0\188\7\0\118\8\0\0\0\159\7\4\1\139\4\248\255\130\0\1\0\13\3\251\1\3\252\1\3\239\1\2\0\0\0\0\0\0\240\63\3\253\1\3\254\1\3\255\1\3\128\2\3\242\1" ..
"\3\129\2\3\130\2\3\131\2\3\132\2\0\133\2\98\202\18\1\1\0\0\0\0\0\0\0\2\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\255\255\255\255\15\3\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\253\255\255\255\15\5\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\255\255\255\255\15\3\0\9\4\0\0\66\192\4\0\0\77\4\1\98\0\0\0\0\241\4\4\0\2\0\0\0\77\5\3\213\1\0\0\0\14\5\1\0\198\4\0\0\82\7\4\0\82\8\3\0\188\5\0\118\2\0\0\0\159\5\4\1\77\7\1\138\3\0\0\0\82\8\3\0\188\5\0\74\4\0\0\0\159\5\4\1\77\7\1\106\5\0\0\0\82\8\3\0\188\5\0\74\4\0\0\0\159\5\4\1\77\7\1\50\6\0\0\0\82\8\3\0\188\5\0\50\7\0\0\0\159\5\4\1\77\7\1\165\8\0\0\0\82\8\3\0\188\5\0\50\7\0\0\0\159\5\4\1\77\7\1\126\9\0\0\0\82\8\3\0\188\5\0\50\7\0\0\0\159\5\4\1\77\7\1\115\10\0\0\0\82\8\3\0\188\5\0\50\7\0\0\0\159\5\4\1\82\7\1\0\82\8\3\0\188\5\0\101\11\0\0\0\159\5\4\1\82\7\1\0\82\8\3\0\188\5\0\201\12\0\0\0\159\5\4\1\82\7\1\0\82\8\3\0\188\5\0\203\13\0\0\0\159\5\4\1\130\0\1\0\14\3\102\3\251\1\3\242\1\3\134\2\3\239\1\3\135\2\3\136\2\3\238\1\3\137\2\3\138\2\3\139\2\3\245\1\3\250\1\3\133\2\0\249\1\66\227\18\1\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\7\2\0" ..
"\0\21\192\2\0\0\188\2\0\250\0\0\0\0\159\2\2\2\28\5\2\0\77\6\0\73\1\0\0\0\241\5\2\0\6\0\0\0\169\4\0\1\169\4\1\0\76\1\0\2\164\3\3\0\0\0\32\64\159\3\2\1\82\5\2\0\82\6\1\0\188\3\0\33\4\0\0\0\159\3\4\1\130\0\1\0\5\3\140\2\3\141\2\3\33\4\0\0\32\64\3\237\1\0\142\2\21\245\18\1\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\13\1\0\0\19\192\1\0\0\140\1\1\0\77\3\0\167\0\0\0\0\164\4\3\0\0\8\16\128\77\5\0\2\4\0\0\0\77\6\0\233\5\0\0\0\140\7\1\0\140\8\4\0\140\9\4\0\140\10\4\0\140\11\8\0\140\12\0\0\159\4\9\2\115\2\3\4\130\2\2\0\6\3\143\2\3\45\3\161\1\4\0\8\16\128\3\144\2\3\145\2\0\140\2\19\255\18\1\1\0\1\0\1\0\1\0\1\1\1\1\1\1\0\0\0\0\12\6\0\0\33\192\6\0\0\255\6\0\0\0\0\0\0\48\1\6\109\0\0\0\0\48\3\6\210\1\0\0\0\48\4\6\38\2\0\0\0\48\5\6\213\3\0\0\0\140\7\0\0\48\7\6\204\4\0\0\0\82\9\6\0\188\7\0\114\5\0\0\0\159\7\3\1\82\9\2\0\198\10\0\0\82\11\6\0\188\7\0\94\6\0\0\0\159\7\5\1\77\7\6\210\1\0\0\0\198\8\0\0\77\9\6\38\2\0\0\0\159\7\3\1\77\7\6\204\4\0\0\0\130\7\2\0\7\3\123\3\236\1\3\67\3\251\1\3\235\1\3\142\2\3\249\1\0\146\2\33\146\19\1\0\1\0\1\0\1\0\1\0\1\0\0\1\0\0\0\1\0\0\0\0\0\3\0\0\0\0\0\1\0\0\0\5\2\0\0\16\192\2\0\0\14\1\12\0\77\4\1\204\0\0\0\0\76\40\0\2\164\3\2\0\0\0\16\64\159\3\2\2\111\4\3\0\241\3\2\0\4\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\169" ..
"\2\0\0\130\2\2\0\4\3\220\1\3\221\1\4\0\0\16\64\3\222\1\0\147\2\16\154\20\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\2\0\0\4\192\2\0\0\77\2\1\204\0\0\0\0\130\2\2\0\1\3\220\1\0\148\2\4\157\20\0\0\0\0\3\2\0\0\5\192\2\0\0\198\2\0\0\48\2\1\204\0\0\0\0\130\0\1\0\1\3\220\1\0\149\2\5\158\20\0\0\0\0\0\3\3\0\0\4\192\3\0\0\48\2\1\204\0\0\0\0\130\0\1\0\1\3\220\1\0\150\2\4\159\20\0\0\0\0\4\3\0\0\3\192\3\0\0\67\3\1\2\130\3\2\0\0\0\151\2\3\169\20\0\0\0\4\3\0\0\3\192\3\0\0\38\3\1\2\130\3\2\0\0\0\152\2\3\170\20\0\0\0\4\3\0\0\3\192\3\0\0\9\3\1\2\130\3\2\0\0\0\153\2\3\171\20\0\0\0\4\3\0\0\3\192\3\0\0\236\3\1\2\130\3\2\0\0\0\154\2\3\172\20\0\0\0\4\3\0\0\3\192\3\0\0\207\3\1\2\130\3\2\0\0\0\155\2\3\173\20\0\0\0\4\3\0\0\3\192\3\0\0\178\3\1\2\130\3\2\0\0\0\156\2\3\175\20\0\0\0\3\2\0\0\3\192\2\0\0\57\2\1\0\130\2\2\0\0\0\157\2\3\176\20\0\0\0\4\2\0\0\7\192\2\0\0\86\3\1\0\241\3\2\0\1\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\0\0\158\2\7\177\20\0\0\0\0\0\0\0\6\3\0\0\9\192\3\0\0\77\5\1\135\0\0\0\0\77\4\5\35\1\0\0\0\77\5\2\154\2\0\0\0\135\3\4\5\130\3\2\0\3\3\159\2\3\244\1\3\160\2\0\161\2\9\211\20\1\0\0\0\0\0\0\0\0\13\5\1\0\12\192\5\0\0\82\7\1\0\82\8\2\0\82\9\3\0\251\12\0\0\77\11\12\10\0\0\0\0\67\10\4\11\188\5\0\107\1\0\0\0\159\5\6\0\130\5\0\0\2\3\196\1\3" ..
"\162\2\0\163\2\12\219\20\1\0\0\0\0\0\0\0\0\0\0\0\9\3\1\0\10\192\3\0\0\82\5\1\0\82\6\2\0\251\8\0\0\77\7\8\107\0\0\0\0\188\3\0\67\1\0\0\0\159\3\5\1\130\0\1\0\2\3\164\2\3\165\2\0\166\2\10\226\20\1\0\0\0\0\0\0\0\1\0\5\2\0\0\10\192\2\0\0\77\3\1\149\0\0\0\0\77\4\1\135\1\0\0\0\154\3\2\0\4\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\2\3\109\3\159\2\0\167\2\10\234\20\1\0\0\0\0\0\0\0\0\0\5\2\0\0\23\192\2\0\0\169\2\0\0\77\3\1\138\0\0\0\0\111\4\1\0\154\3\16\0\4\0\0\0\169\2\0\0\77\3\1\149\2\0\0\0\77\4\0\140\3\0\0\0\154\3\9\0\4\0\0\0\77\3\1\135\4\0\0\0\77\4\0\140\3\0\0\0\241\3\2\0\4\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\5\3\247\1\3\168\2\3\109\3\169\2\3\159\2\0\170\2\23\242\20\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\4\1\0\71\192\4\0\0\77\4\1\25\0\0\0\0\77\5\1\75\1\0\0\0\96\5\55\0\4\0\0\0\77\4\1\25\0\0\0\0\140\5\0\0\154\4\7\0\5\0\0\0\77\4\1\220\2\0\0\0\125\4\46\0\2\0\0\0\130\0\1\0\101\0\43\0\77\6\1\135\3\0\0\0\77\5\6\35\4\0\0\0\77\7\1\25\0\0\0\0\120\6\7\5\135\4\5\6\251\5\0\0\82\7\4\0\188\5\5\213\6\0\0\0\159\5\3\2\111\6\7\0\154\5\28\0\6\0\0\0\251\5\0\0\82\7\4\0\188\5\5\13\8\0\0\0\159\5\3\2\251\6\0\0\82\8\4\0\188\6\6\54\9\0\0\0\159\6\3\2\125\5\16\0\2\0\0\0\149\7\6\5\125\2\13\0\7\0\0\0\67\8\2\3\120\7\8\5\96\6\8\0\7\0\0\0\251" ..
"\7\0\0\82\9\4\0\67\11\2\3\120\10\11\5\188\7\7\194\10\0\0\0\159\7\4\1\130\0\1\0\82\6\1\0\111\7\7\0\82\8\2\0\67\10\2\3\120\9\10\5\140\10\0\0\188\4\0\93\11\0\0\0\159\4\7\1\130\0\1\0\12\3\171\2\3\172\2\3\173\2\3\159\2\3\244\1\2\0\0\0\0\0\0\240\63\3\181\1\3\174\2\3\185\1\3\188\1\3\189\1\3\175\2\0\176\2\71\250\20\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\3\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\2\5\0\0\0\0\0\0\0\0\1\0\9\2\0\0\23\192\2\0\0\77\2\1\226\0\0\0\0\77\3\0\140\1\0\0\0\48\3\1\226\0\0\0\0\82\5\1\0\111\6\2\0\140\7\0\0\77\8\0\140\1\0\0\0\188\3\0\200\3\0\0\0\159\3\6\2\82\6\1\0\82\7\3\0\82\8\2\0\188\4\0\26\4\0\0\0\159\4\5\2\82\3\4\0\130\3\2\0\5\3\177\2\3\169\2\3\178\2\3\163\2\3\179\2\0\180\2\23\149\21\1\0\1\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\11\4\0\0\10\192\4\0\0\82\6\1\0\111\7\0\0\82\8\2\0\149\9\3\1\140\10\0\0\188\4\0\93\2\0\0\0\159\4\7\1\130\0\1\0\3\3\181\2\2\0\0\0\0\0\0\240\63\3\175\2\0\182\2\10\161\21\1\0\0\0\0\0\0\0\1\0\13\6\0\0\14\192\6\0\0\82\8\1\0\82\9\2\0\82\10\3\0\82\11\4\0\82\12\5\0\188\6\0\93\0\0\0\0\159\6\7\1\82\8\1\0\188\6\0\51\1\0\0\0\159\6\3\0\130\6\0\0\2\3\175\2\3\180\2\0\183\2\14\169\21\1\0\0\0\0\0\0\0\1\0\0\0\0\0\10\4\2\0\42\192\4\0\0\77\6\1\135\0\0\0" ..
"\0\77\5\6\35\1\0\0\0\135\4\5\2\149\6\2\2\38\5\3\6\77\8\0\140\3\0\0\0\154\3\2\0\8\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\5\0\0\0\64\64\159\6\2\1\82\7\5\0\76\2\0\2\164\6\8\0\0\28\96\128\159\6\2\2\251\8\0\0\77\7\8\10\9\0\0\0\96\7\8\0\6\0\0\0\251\6\1\0\77\8\1\9\10\0\0\0\111\9\11\0\188\6\6\228\12\0\0\0\159\6\4\1\251\6\0\0\82\8\4\0\82\9\5\0\188\6\6\68\13\0\0\0\159\6\4\1\130\0\1\0\14\3\159\2\3\244\1\2\0\0\0\0\0\0\240\63\3\169\2\3\33\4\0\0\64\64\3\5\3\184\2\4\0\28\96\128\3\196\1\3\185\2\3\186\2\3\111\3\198\1\0\187\2\42\178\21\1\0\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\1\0\3\2\0\0\8\192\2\0\0\77\2\1\25\0\0\0\0\48\2\1\75\1\0\0\0\77\2\1\25\0\0\0\0\130\2\2\0\2\3\171\2\3\172\2\0\188\2\8\194\21\1\0\0\0\1\0\0\0\8\3\1\0\20\192\3\0\0\251\3\0\0\77\7\1\135\0\0\0\0\77\6\7\35\1\0\0\0\135\5\6\2\188\3\3\80\2\0\0\0\159\3\3\2\77\4\0\140\3\0\0\0\154\3\4\0\4\0\0\0\77\4\0\140\3\0\0\0\130\4\2\0\149\5\2\4\67\4\5\3\130\4\2\0\5\3\159\2\3\244\1\3\197\1\3\169\2\2\0\0\0\0\0\0\240\63\0\189\2\20\204\21\1\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\2\0\0\0\10\3\1\0\29\192\3\0\0\77\5\1\135\0\0\0\0\77\4\5\35\1\0\0\0\135\3\4\2\77\6\1\135\0\0\0\0\77\5\6\35\1\0\0\0\120\6\2\2\135\4\5\6\140\5\1\0\125\5\14\0\2\0\0\0\251\5\0" ..
"\0\251\7\0\0\82\9\4\0\188\7\7\213\3\0\0\0\159\7\3\0\188\5\5\43\4\0\0\0\159\5\0\2\140\6\0\0\241\5\2\0\6\0\0\0\130\4\2\0\130\3\2\0\5\3\159\2\3\244\1\2\0\0\0\0\0\0\240\63\3\181\1\3\216\1\0\190\2\29\217\21\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\2\0\8\3\1\0\29\192\3\0\0\77\3\0\140\0\0\0\0\241\2\23\0\3\0\0\0\82\5\1\0\82\6\2\0\188\3\0\201\1\0\0\0\159\3\4\2\251\4\0\0\82\6\3\0\188\4\4\213\2\0\0\0\159\4\3\2\111\5\3\0\241\4\3\0\5\0\0\0\169\4\1\0\130\4\2\0\82\6\1\0\82\7\2\0\188\4\0\195\4\0\0\0\159\4\4\2\82\2\4\0\72\0\230\255\169\3\0\0\130\3\2\0\5\3\169\2\3\190\2\3\181\1\3\191\2\3\189\2\0\192\2\29\233\21\1\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\10\4\1\0\60\192\4\0\0\82\6\1\0\82\7\2\0\188\4\0\201\0\0\0\0\159\4\4\2\251\5\0\0\82\7\4\0\188\5\5\213\1\0\0\0\159\5\3\2\111\6\2\0\241\5\3\0\6\0\0\0\169\5\0\0\130\5\2\0\251\6\0\0\77\5\6\162\3\0\0\0\241\3\15\0\5\0\0\0\251\5\0\0\82\7\4\0\188\5\5\54\4\0\0\0\159\5\3\2\241\3\8\0\5\0\0\0\251\5\0\0\82\7\4\0\82\8\3\0\188\5\5\25\5\0\0\0\159\5\4\1\101\0\23\0\251\5\0\0\82\7\4\0\111\8\6\0\188\5\5\225\7\0\0\0\159\5\4\1\251\5\0\0\82\7\4\0\188\5\5\54\4\0\0\0\159\5\3\2\251\6\0\0\82\8\4\0\82\9\5\0\188\6\6\25\5\0\0\0\159\6\4\1\251\6\0\0\82\8\4\0\140\9\0\0\188\6\6\194\8\0\0" ..
"\0\159\6\4\1\169\5\1\0\130\5\2\0\9\3\190\2\3\181\1\3\191\2\3\193\2\3\188\1\3\186\1\3\194\2\3\183\1\3\189\1\0\195\2\60\246\21\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\4\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\3\0\0\9\3\1\0\21\192\3\0\0\77\3\0\140\0\0\0\0\241\2\16\0\3\0\0\0\82\5\1\0\82\6\2\0\251\8\0\0\77\7\8\162\1\0\0\0\188\3\0\215\2\0\0\0\159\3\5\1\82\5\1\0\82\6\2\0\188\3\0\195\3\0\0\0\159\3\4\2\82\2\3\0\72\0\237\255\130\0\1\0\4\3\169\2\3\193\2\3\195\2\3\189\2\0\196\2\21\141\22\1\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\12\6\0\0\33\192\6\0\0\77\6\0\140\0\0\0\0\241\2\28\0\6\0\0\0\82\8\1\0\82\9\2\0\188\6\0\195\1\0\0\0\159\6\4\2\82\9\1\0\82\10\2\0\82\11\4\0\188\7\0\215\2\0\0\0\159\7\5\2\14\7\7\0\82\9\1\0\82\10\2\0\82\11\3\0\188\7\0\15\3\0\0\0\159\7\5\1\101\0\6\0\82\9\1\0\82\10\2\0\82\11\5\0\188\7\0\15\3\0\0\0\159\7\5\1\82\2\6\0\72\0\225\255\130\0\1\0\4\3\169\2\3\189\2\3\195\2\3\187\2\0\197\2\33\152\22\1\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\2\0\2\0\9\2\1\0\19\192\2\0\0\82\4\1\0\77\5\1\226\0\0\0\0\77\6\1\25\1\0\0\0\251\8\0\0\77\7\8\162\2\0\0\0\77\8\1\25\1\0\0\0\188\2\0\237\3\0\0\0\159\2\7\1\77\2\0\140\4\0\0\0\48\2\1\226\0\0\0\0\130\0\1\0\5\3\177\2\3\171\2\3" ..
"\193\2\3\197\2\3\169\2\0\198\2\19\168\22\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\11\4\1\0\32\192\4\0\0\77\4\1\25\0\0\0\0\154\3\7\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\106\1\0\0\0\159\4\4\1\130\0\1\0\77\6\1\25\0\0\0\0\183\3\2\0\6\0\0\0\169\5\0\1\169\5\1\0\76\1\0\2\164\4\3\0\0\0\32\64\159\4\2\1\82\6\1\0\82\7\2\0\82\8\3\0\251\10\0\0\77\9\10\162\4\0\0\0\82\10\3\0\188\4\0\237\5\0\0\0\159\4\7\1\130\0\1\0\6\3\171\2\3\199\2\3\33\4\0\0\32\64\3\193\2\3\197\2\0\200\2\32\177\22\1\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\2\0\8\3\0\0\15\192\3\0\0\82\5\1\0\188\3\0\3\0\0\0\0\159\3\3\1\82\5\1\0\77\6\1\226\1\0\0\0\82\7\2\0\188\3\0\26\2\0\0\0\159\3\5\2\48\3\1\226\1\0\0\0\130\0\1\0\3\3\188\2\3\177\2\3\179\2\0\199\2\15\190\22\1\0\0\0\1\0\0\0\0\0\0\0\0\1\0\11\4\0\0\36\192\4\0\0\77\4\0\140\0\0\0\0\154\3\2\0\4\0\0\0\130\2\2\0\77\4\0\140\0\0\0\0\154\2\2\0\4\0\0\0\130\3\2\0\82\4\2\0\82\7\1\0\82\8\4\0\188\5\0\195\1\0\0\0\159\5\4\2\77\6\0\140\0\0\0\0\241\5\9\0\6\0\0\0\82\4\5\0\82\8\1\0\82\9\4\0\188\6\0\195\1\0\0\0\159\6\4\2\82\5\6\0\72\0\244\255\82\8\1\0\82\9\4\0\82\10\3\0\188\6\0\15\2\0\0\0\159\6\5\1\130\2\2\0\3\3\169\2\3\189\2\3\187\2\0\179\2\36\199\22\1\0\0\0\0\1\0\0\0\1\2\1\0\0\0\0\1\0\0\0\1\1\0\0\0\0\0\0\2" ..
"\0\0\0\0\0\2\0\8\3\1\0\26\192\3\0\0\77\4\1\222\0\0\0\0\67\3\4\2\77\5\1\135\1\0\0\0\77\4\5\115\2\0\0\0\96\4\16\0\3\0\0\0\77\4\0\92\3\0\0\0\125\4\8\0\3\0\0\0\251\4\0\0\77\6\1\9\4\0\0\0\111\7\5\0\188\4\4\228\6\0\0\0\159\4\4\1\77\4\1\135\1\0\0\0\48\3\4\115\2\0\0\0\130\0\1\0\7\3\201\2\3\159\2\3\139\2\3\202\2\3\185\2\3\203\2\3\111\0\204\2\26\219\22\1\0\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\2\0\0\0\2\0\7\3\0\0\12\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\15\0\0\0\0\159\3\4\1\77\4\1\222\1\0\0\0\67\3\4\2\48\3\1\222\1\0\0\0\130\0\1\0\2\3\204\2\3\201\2\0\205\2\12\233\22\1\0\0\0\0\1\0\0\0\0\1\0\6\3\1\0\27\192\3\0\0\251\3\0\0\82\5\2\0\188\3\3\139\0\0\0\0\159\3\3\2\43\3\19\0\77\3\1\220\1\0\0\0\125\3\16\0\2\0\0\0\77\4\1\222\3\0\0\0\120\3\4\2\48\3\1\222\3\0\0\0\77\5\1\222\3\0\0\0\241\2\2\0\5\0\0\0\169\4\0\1\169\4\1\0\76\1\0\2\164\3\5\0\0\0\64\64\159\3\2\1\130\0\1\0\6\3\208\1\3\173\2\2\0\0\0\0\0\0\240\63\3\201\2\3\33\4\0\0\64\64\0\201\2\27\242\22\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\2\0\7\3\0\0\13\192\3\0\0\77\3\2\138\0\0\0\0\111\4\1\0\154\3\7\0\4\0\0\0\82\5\1\0\77\6\2\154\2\0\0\0\188\3\0\222\3\0\0\0\159\3\4\1\130\0\1\0\4\3\247\1\3\206\2\3\160\2\3\201\2\0\207\2\13\253\22\1\0\0\0\0\1\0\0\0\0\0\2\0\16\4\2\0\62\192" ..
"\4\0\0\77\4\1\109\0\0\0\0\77\6\1\137\1\0\0\0\77\7\2\204\2\0\0\0\135\5\6\7\77\6\1\135\3\0\0\0\82\9\5\0\188\7\0\58\4\0\0\0\159\7\3\2\14\7\5\0\82\9\5\0\188\7\0\146\5\0\0\0\159\7\3\0\130\7\0\0\255\5\0\0\0\0\0\0\82\9\5\0\77\10\1\17\6\0\0\0\188\7\0\227\7\0\0\0\159\7\4\1\77\7\1\137\1\0\0\0\77\8\2\204\2\0\0\0\106\5\7\8\251\7\0\0\82\9\4\0\77\10\6\138\8\0\0\0\77\11\1\17\6\0\0\0\77\12\6\117\9\0\0\0\198\13\0\0\251\15\1\0\77\14\15\139\10\0\0\0\111\15\11\0\188\7\7\12\12\0\0\0\159\7\9\1\77\7\6\138\8\0\0\0\77\8\1\17\6\0\0\0\106\3\7\8\77\7\1\17\6\0\0\0\77\9\1\17\6\0\0\0\149\8\9\13\48\8\1\17\6\0\0\0\130\7\2\0\14\3\123\3\208\2\3\220\1\3\159\2\3\147\2\3\148\2\3\209\2\3\210\2\3\247\1\3\246\1\3\211\2\3\212\2\3\213\2\2\0\0\0\0\0\0\240\63\0\214\2\62\136\23\1\0\1\0\0\0\0\2\0\1\0\0\0\0\4\0\0\0\0\2\0\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\3\0\1\0\0\0\0\1\0\9\3\0\0\15\192\3\0\0\255\3\0\0\0\0\0\0\82\6\3\0\82\7\2\0\188\4\0\191\0\0\0\0\159\4\4\1\82\6\1\0\82\7\3\0\82\8\3\0\188\4\0\201\1\0\0\0\159\4\5\0\130\4\0\0\2\3\150\2\3\214\2\0\215\2\15\168\23\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\9\3\0\0\15\192\3\0\0\255\3\0\0\0\0\0\0\82\6\3\0\82\7\2\0\188\4\0\227\0\0\0\0\159\4\4\1\82\6\1\0\82\7\3\0\82\8\3\0\188\4\0\201\1\0\0\0\159" ..
"\4\5\0\130\4\0\0\2\3\210\2\3\214\2\0\216\2\15\179\23\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\9\3\0\0\15\192\3\0\0\255\3\0\0\0\0\0\0\82\6\3\0\82\7\2\0\188\4\0\246\0\0\0\0\159\4\4\1\82\6\1\0\82\7\3\0\82\8\3\0\188\4\0\201\1\0\0\0\159\4\5\0\130\4\0\0\2\3\217\2\3\214\2\0\218\2\15\189\23\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\9\2\0\0\22\192\2\0\0\255\2\0\0\0\0\0\0\255\3\0\0\0\0\0\0\82\6\3\0\188\4\0\192\0\0\0\0\159\4\3\1\82\6\2\0\77\7\1\137\1\0\0\0\188\4\0\40\2\0\0\0\159\4\4\1\82\6\1\0\82\7\2\0\82\8\3\0\188\4\0\201\3\0\0\0\159\4\5\0\130\4\0\0\4\3\149\2\3\208\2\3\219\2\3\214\2\0\220\2\22\199\23\1\0\0\0\1\0\0\0\2\0\0\0\0\0\1\0\0\0\0\0\0\0\10\4\2\0\50\192\4\0\0\77\4\2\138\0\0\0\0\111\5\1\0\154\4\12\0\5\0\0\0\251\4\0\0\82\8\1\0\82\9\2\0\188\6\0\248\2\0\0\0\159\6\4\2\149\7\3\3\188\4\4\66\4\0\0\0\159\4\4\1\130\0\1\0\77\4\2\138\0\0\0\0\111\5\5\0\154\4\28\0\5\0\0\0\251\4\0\0\82\8\1\0\82\9\2\0\188\6\0\248\2\0\0\0\159\6\4\2\149\7\3\3\188\4\4\194\6\0\0\0\159\4\4\1\251\4\0\0\82\8\1\0\82\9\2\0\188\6\0\248\2\0\0\0\159\6\4\2\77\7\1\222\7\0\0\0\188\4\4\25\8\0\0\0\159\4\4\1\251\4\1\0\82\6\1\0\140\7\1\0\188\4\4\95\9\0\0\0\159\4\4\1\130\0\1\0\10\3\247\1\3\221\2\3\161\2\2\0\0\0\0\0\0\240\63\3\192\1\3\222\2\3\189\1\3\201\2\3\186\1\3\205\2\0\165\2\50\211\23\1\0\0\0" ..
"\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\9\3\1\0\40\192\3\0\0\77\3\2\138\0\0\0\0\111\4\1\0\154\3\16\0\4\0\0\0\111\3\2\0\48\3\2\138\0\0\0\0\251\3\0\0\82\7\1\0\82\8\2\0\188\5\0\248\3\0\0\0\159\5\4\0\188\3\3\13\4\0\0\0\159\3\0\2\48\3\2\154\5\0\0\0\130\0\1\0\77\3\2\138\0\0\0\0\111\4\6\0\154\3\14\0\4\0\0\0\251\3\0\0\82\7\1\0\82\8\2\0\188\5\0\248\3\0\0\0\159\5\4\2\140\6\2\0\188\3\3\194\7\0\0\0\159\3\4\1\111\3\8\0\48\3\2\138\0\0\0\0\130\0\1\0\9\3\247\1\3\221\2\3\206\2\3\161\2\3\185\1\3\160\2\3\222\2\3\189\1\3\223\2\0\224\2\40\225\23\1\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\2\0\11\3\0\0\89\192\3\0\0\77\3\2\138\0\0\0\0\111\4\1\0\154\3\5\0\4\0\0\0\111\4\2\0\48\4\2\138\0\0\0\0\130\0\1\0\111\4\3\0\154\3\16\0\4\0\0\0\82\6\1\0\111\7\4\0\140\8\0\0\77\9\2\154\5\0\0\0\140\10\0\0\188\4\0\93\6\0\0\0\159\4\7\2\48\4\2\154\5\0\0\0\111\4\7\0\48\4\2\138\0\0\0\0\130\0\1\0\111\4\8\0\154\3\15\0\4\0\0\0\82\6\1\0\111\7\9\0\140\8\0\0\77\9\2\154\5\0\0\0\188\4\0\107\10\0\0\0\159\4\6\2\48\4\2\154\5\0\0\0\111\4\7\0\48\4\2\138\0\0\0\0\130\0\1\0\111\4\11\0\154\3\29\0\4\0\0\0\82\6\1\0\77\7\2\69\12\0\0\0\188\4\0\222\13\0\0\0\159\4\4\1\82\6\1\0\77\7\2\154" ..
"\5\0\0\0\188\4\0\222\13\0\0\0\159\4\4\1\82\6\1\0\111\7\14\0\140\8\0\0\77\9\2\154\5\0\0\0\77\10\2\69\12\0\0\0\188\4\0\93\6\0\0\0\159\4\7\2\48\4\2\154\5\0\0\0\111\4\7\0\48\4\2\138\0\0\0\0\130\0\1\0\111\4\15\0\241\3\4\0\4\0\0\0\111\4\16\0\154\3\7\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\245\17\0\0\0\159\4\4\1\130\0\1\0\130\0\1\0\18\3\247\1\3\225\2\3\206\2\3\226\2\3\227\2\3\160\2\3\175\2\3\223\2\3\228\2\3\229\2\3\162\2\3\230\2\3\231\2\3\201\2\3\232\2\3\222\2\3\221\2\3\224\2\0\233\2\89\239\23\1\0\1\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\4\0\12\5\0\0\14\192\5\0\0\82\7\1\0\188\5\0\3\0\0\0\0\159\5\3\1\82\7\1\0\111\8\1\0\82\9\2\0\82\10\3\0\82\11\4\0\188\5\0\93\2\0\0\0\159\5\7\0\130\5\0\0\3\3\188\2\3\234\2\3\175\2\0\235\2\14\137\24\1\0\0\0\1\0\0\0\0\0\0\0\0\0\14\4\1\0\124\192\4\0\0\82\6\1\0\82\7\2\0\188\4\0\225\0\0\0\0\159\4\4\1\77\4\2\138\1\0\0\0\111\5\2\0\154\4\8\0\5\0\0\0\82\7\1\0\82\8\3\0\140\9\1\0\188\5\0\193\3\0\0\0\159\5\5\1\101\0\100\0\111\5\4\0\241\4\4\0\5\0\0\0\111\5\5\0\154\4\17\0\5\0\0\0\82\7\1\0\111\8\6\0\82\9\3\0\77\11\2\138\1\0\0\0\111\12\5\0\154\11\3\0\12\0\0\0\140\10\1\0\101\0\1\0" ..
"\140\10\0\0\140\11\0\0\188\5\0\93\7\0\0\0\159\5\7\1\101\0\78\0\111\5\8\0\154\4\10\0\5\0\0\0\82\7\1\0\111\8\9\0\82\9\3\0\77\10\2\154\10\0\0\0\188\5\0\107\11\0\0\0\159\5\6\1\101\0\66\0\111\5\12\0\154\4\14\0\5\0\0\0\82\7\1\0\111\8\9\0\82\9\3\0\82\12\1\0\77\13\2\28\13\0\0\0\188\10\0\251\14\0\0\0\159\10\4\0\188\5\0\107\11\0\0\0\159\5\0\1\101\0\50\0\111\5\15\0\154\4\13\0\5\0\0\0\82\7\1\0\82\8\2\0\188\5\0\248\16\0\0\0\159\5\4\2\251\6\0\0\82\8\5\0\82\9\3\0\188\6\6\25\17\0\0\0\159\6\4\1\101\0\35\0\111\5\18\0\154\4\15\0\5\0\0\0\77\5\2\154\10\0\0\0\241\3\29\0\5\0\0\0\82\7\1\0\111\8\19\0\82\9\3\0\77\10\2\154\10\0\0\0\140\11\0\0\188\5\0\93\7\0\0\0\159\5\7\1\101\0\18\0\169\6\1\0\77\7\2\138\1\0\0\0\111\8\20\0\241\7\8\0\8\0\0\0\77\7\2\138\1\0\0\0\111\8\21\0\241\7\2\0\8\0\0\0\169\6\0\1\169\6\1\0\76\1\0\2\164\5\23\0\0\0\96\65\159\5\2\1\130\0\1\0\48\3\2\154\10\0\0\0\111\5\18\0\48\5\2\138\1\0\0\0\130\0\1\0\24\3\233\2\3\247\1\3\236\2\3\176\2\3\237\2\3\238\2\3\234\2\3\175\2\3\239\2\3\240\2\3\160\2\3\162\2\3\168\2\3\241\2\3\216\2\3\223\2\3\161\2\3\186\1\3\206\2\3\242\2\3\243\2\3\244\2\3\33\4\0\0\96\65\0\245\2\124\146\24\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0" ..
"\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\2\0\1\0\0\1\0\9\3\0\0\20\192\3\0\0\77\3\2\138\0\0\0\0\111\4\1\0\241\3\14\0\4\0\0\0\82\5\1\0\140\6\1\0\188\3\0\95\2\0\0\0\159\3\4\1\82\5\1\0\82\6\2\0\77\8\1\222\4\0\0\0\120\7\8\3\188\3\0\84\5\0\0\0\159\3\5\1\130\0\1\0\6\3\247\1\3\206\2\3\205\2\2\0\0\0\0\0\0\240\63\3\201\2\3\245\2\0\246\2\20\176\24\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\2\0\14\4\0\0\116\192\4\0\0\82\6\1\0\82\7\2\0\82\8\3\0\188\4\0\84\0\0\0\0\159\4\5\1\77\4\2\138\1\0\0\0\111\5\2\0\154\4\11\0\5\0\0\0\82\6\1\0\77\7\2\149\3\0\0\0\77\8\2\154\4\0\0\0\188\4\0\26\5\0\0\0\159\4\5\2\48\4\2\149\3\0\0\0\82\6\2\0\188\4\0\226\6\0\0\0\159\4\3\2\14\4\75\0\198\4\0\0\77\5\0\140\7\0\0\0\77\6\0\140\7\0\0\0\82\9\1\0\77\10\2\149\3\0\0\0\188\7\0\75\8\0\0\0\159\7\4\2\43\7\7\0\82\9\1\0\77\10\2\135\9\0\0\0\188\7\0\75\8\0\0\0\159\7\4\2\14\7\33\0\77\8\2\138\1\0\0\0\111\9\2\0\154\8\4\0\9\0\0\0\77\7\0\140\7\0\0\0\43\7\4\0\82\9\1\0\188\7\0\51\10\0\0\0\159\7\3\2\82\10\1\0\82\11\3\0\140\12\0\0\140\13\1\0\188\8\0\37\11\0\0\0\159\8\6\2\82\5\8\0\82\10\1\0\82\11\3\0\140\12\1\0\140\13\0\0\188\8\0\37\11\0\0\0\159\8\6\2\82\6\8\0\82\10\1\0\82\11\7\0\188\8\0\106\12\0\0\0\159\8\4\1\82\9\1\0\188\7\0" ..
"\3\13\0\0\0\159\7\3\2\82\4\7\0\82\9\1\0\77\10\2\135\9\0\0\0\82\11\4\0\82\12\3\0\82\13\5\0\188\7\0\237\14\0\0\0\159\7\7\1\82\9\1\0\77\10\2\149\3\0\0\0\82\11\4\0\82\12\3\0\82\13\6\0\188\7\0\237\14\0\0\0\159\7\7\1\77\4\0\140\7\0\0\0\77\5\0\140\7\0\0\0\48\4\2\135\9\0\0\0\48\5\2\149\3\0\0\0\48\3\2\154\4\0\0\0\111\4\15\0\48\4\2\138\1\0\0\0\130\0\1\0\16\3\245\2\3\247\1\3\244\2\3\109\3\160\2\3\179\2\3\167\2\3\169\2\3\192\2\3\159\2\3\180\2\3\235\2\3\199\2\3\188\2\3\197\2\3\206\2\0\247\2\116\187\24\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\2\0\0\0\0\1\1\0\1\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\1\0\1\0\0\1\0\9\3\0\0\25\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\225\0\0\0\0\159\3\4\1\82\5\1\0\82\6\2\0\188\3\0\205\1\0\0\0\159\3\4\1\82\5\1\0\140\6\1\0\188\3\0\95\2\0\0\0\159\3\4\1\82\5\1\0\82\6\2\0\77\8\1\222\4\0\0\0\120\7\8\3\188\3\0\27\5\0\0\0\159\3\5\1\130\0\1\0\6\3\233\2\3\207\2\3\205\2\2\0\0\0\0\0\0\240\63\3\201\2\3\247\2\0\248\2\25\215\24\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\8\3\0\0\43\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\225\0\0\0\0\159\3\4\1\77\3\2\138\1\0\0\0\111\4\2\0\154" ..
"\3\25\0\4\0\0\0\82\5\2\0\188\3\0\226\3\0\0\0\159\3\3\2\43\3\3\0\77\3\2\154\4\0\0\0\130\3\2\0\77\3\2\154\4\0\0\0\77\4\1\220\5\0\0\0\125\4\11\0\3\0\0\0\82\5\1\0\82\6\2\0\77\7\2\154\4\0\0\0\188\3\0\27\6\0\0\0\159\3\5\1\77\3\2\154\4\0\0\0\130\3\2\0\82\5\1\0\82\6\2\0\188\3\0\66\7\0\0\0\159\3\4\1\77\3\2\154\4\0\0\0\130\3\2\0\8\3\233\2\3\247\1\3\206\2\3\167\2\3\160\2\3\173\2\3\247\2\3\248\2\0\249\2\43\226\24\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\2\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\3\0\0\0\0\1\0\0\0\7\3\0\0\18\192\3\0\0\82\5\2\0\188\3\0\226\0\0\0\0\159\3\3\2\14\3\6\0\82\5\1\0\82\6\2\0\188\3\0\187\1\0\0\0\159\3\4\1\130\0\1\0\82\5\1\0\82\6\2\0\188\3\0\225\2\0\0\0\159\3\4\1\130\0\1\0\3\3\167\2\3\249\2\3\233\2\0\250\2\18\246\24\1\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\2\0\10\3\1\0\99\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\166\0\0\0\0\159\3\4\1\77\3\2\138\1\0\0\0\111\4\2\0\241\3\10\0\4\0\0\0\111\4\3\0\241\3\7\0\4\0\0\0\111\4\4\0\241\3\4\0\4\0\0\0\111\4\5\0\154\3\56\0\4\0\0\0\77\4\1\17\6\0\0\0\251\6\0\0\77\5\6\230\7\0\0\0\125\4\67\0\5\0\0\0\77\4\2\138\1\0\0\0\111\5\5\0\154\4\8\0\5\0\0\0\82\6\1\0\188\4\0\80\8\0\0\0\159\4\3\2\48\4\2\154\9\0\0\0\101\0\25\0\77\5\2\138\1\0\0\0\111\6\2\0\154\5\8\0\6\0\0\0\82\6\1\0\77\7\2\28\10\0\0\0\188" ..
"\4\0\251\11\0\0\0\159\4\4\2\43\4\11\0\82\6\1\0\77\8\2\138\1\0\0\0\111\9\3\0\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1\0\188\4\0\237\12\0\0\0\159\4\4\2\48\4\2\154\9\0\0\0\111\4\13\0\48\4\2\138\1\0\0\0\251\4\0\0\77\6\2\154\9\0\0\0\188\4\4\233\14\0\0\0\159\4\3\0\130\4\0\0\101\0\18\0\111\4\13\0\154\3\16\0\4\0\0\0\77\4\2\154\9\0\0\0\251\6\0\0\77\5\6\230\7\0\0\0\125\4\9\0\5\0\0\0\251\4\0\0\77\6\2\154\9\0\0\0\188\4\4\233\14\0\0\0\159\4\3\0\130\4\0\0\101\0\0\0\82\6\1\0\82\7\2\0\188\4\0\187\15\0\0\0\159\4\4\0\130\4\0\0\16\3\250\2\3\247\1\3\168\2\3\238\2\3\237\2\3\236\2\3\209\2\3\251\2\3\220\2\3\160\2\3\241\2\3\216\2\3\218\2\3\239\2\3\210\1\3\249\2\0\252\2\99\130\25\1\0\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\1\0\0\0\0\0\0\0\2\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\6\0\0\0\0\0\0\13\4\0\0\84\192\4\0\0\77\4\2\138\0\0\0\0\111\5\1\0\154\4\14\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\205\2\0\0\0\159\5\4\1\82\7\1\0\82\8\3\0\77\9\2\154\3\0\0\0\188\5\0\27\4\0\0\0\159\5\5\1\130\0\1\0\111\5\5\0\154\4\16\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\187\6\0\0\0\159\5\4\2\82\8\1\0\111\9\7\0\82\10\5\0\77\11\2\154\3\0\0\0\140\12\0\0\188\6\0\93\8\0\0\0\159\6\7\1\101\0\41\0" ..
"\111\5\9\0\154\4\15\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\187\6\0\0\0\159\5\4\2\82\8\1\0\111\9\10\0\82\10\5\0\77\11\2\154\3\0\0\0\188\6\0\107\11\0\0\0\159\6\6\1\101\0\24\0\111\5\12\0\154\4\17\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\188\13\0\0\0\159\5\4\2\82\8\1\0\111\9\14\0\77\10\2\154\3\0\0\0\77\11\2\69\15\0\0\0\82\12\5\0\188\6\0\93\8\0\0\0\159\6\7\1\101\0\5\0\140\6\0\0\76\1\0\2\164\5\17\0\0\0\0\65\159\5\2\1\82\7\1\0\82\8\3\0\188\5\0\205\2\0\0\0\159\5\4\1\130\0\1\0\18\3\247\1\3\225\2\3\207\2\3\160\2\3\247\2\3\226\2\3\249\2\3\253\2\3\175\2\3\228\2\3\254\2\3\162\2\3\230\2\3\252\2\3\255\2\3\231\2\3\33\4\0\0\0\65\0\128\3\84\160\25\1\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\2\0\0\0\0\1\0\15\4\0\0\42\192\4\0\0\82\6\1\0\82\7\2\0\188\4\0\187\0\0\0\0\159\4\4\1\82\6\1\0\82\7\2\0\188\4\0\205\1\0\0\0\159\4\4\1\77\4\1\222\2\0\0\0\82\7\1\0\140\8\2\0\188\5\0\95\3\0\0\0\159\5\4\1\82\7\1\0\111\8\4\0\82\9\4\0\77\10\2\154\5\0\0\0\82\13\1\0\82\14\3\0\188\11\0\188\6\0\0\0\159\11\4\0\188\5\0\93\7\0\0\0\159\5\0\1\82\7\1\0\82\8\3\0\188\5\0\205\1\0\0\0\159\5\4\1\48\4\2\154\5\0\0\0\111\5\8\0\48\5\2\138\9\0\0\0\130\0\1\0\10\3\249\2\3\207\2" ..
"\3\201\2\3\205\2\3\129\3\3\160\2\3\252\2\3\175\2\3\206\2\3\247\1\0\130\3\42\185\25\1\0\0\0\0\1\0\0\0\0\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\1\0\0\1\0\11\3\1\0\60\192\3\0\0\82\5\1\0\77\6\2\154\0\0\0\0\188\3\0\201\1\0\0\0\159\3\4\2\169\5\0\0\251\6\0\0\251\8\0\0\82\10\3\0\188\8\8\213\2\0\0\0\159\8\3\0\188\6\6\43\3\0\0\0\159\6\0\2\140\7\0\0\241\6\20\0\7\0\0\0\169\5\0\0\251\6\0\0\82\8\3\0\188\6\6\213\2\0\0\0\159\6\3\2\111\7\4\0\241\6\11\0\7\0\0\0\251\6\0\0\82\8\3\0\188\6\6\213\2\0\0\0\159\6\3\2\111\7\5\0\154\6\2\0\7\0\0\0\169\5\0\1\169\5\1\0\76\1\0\2\164\4\7\0\0\0\96\64\159\4\2\1\251\4\0\0\82\6\3\0\251\8\0\0\82\10\3\0\188\8\8\13\8\0\0\0\159\8\3\2\140\9\0\0\154\8\3\0\9\0\0\0\140\7\1\0\101\0\1\0\140\7\0\0\188\4\4\25\9\0\0\0\159\4\4\1\130\0\1\0\10\3\160\2\3\190\2\3\181\1\3\216\1\3\191\2\3\194\2\3\33\4\0\0\96\64\3\185\1\3\186\1\0\131\3\60\200\25\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\254\255\255\255\15\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\12\4\1\0\65\192\4\0\0\77\4\2\138\0\0\0\0\111\5\1\0\154\4\35\0\5\0\0\0\82\6\1\0\82\7\2\0\188\4\0\248\2\0\0\0\159\4\4\2\251\5\0\0\82\7\4\0\188\5\5\213\3\0\0\0\159\5\3\2\111\6\4\0\154\5\22\0\6\0\0\0\77\6\1\25\6\0\0\0\120\5\6\5\48\5" ..
"\1\25\6\0\0\0\82\7\1\0\111\8\7\0\251\9\0\0\82\11\4\0\188\9\9\54\8\0\0\0\159\9\3\2\140\10\0\0\14\3\2\0\140\11\0\0\101\0\1\0\140\11\1\0\188\5\0\183\9\0\0\0\159\5\7\0\130\5\0\0\82\6\1\0\82\7\2\0\188\4\0\235\10\0\0\0\159\4\4\1\82\6\1\0\82\7\2\0\188\4\0\205\11\0\0\0\159\4\4\1\82\6\1\0\111\7\12\0\251\9\0\0\77\8\9\162\13\0\0\0\77\9\2\154\14\0\0\0\14\3\2\0\140\10\1\0\101\0\1\0\140\10\0\0\188\4\0\183\9\0\0\0\159\4\7\0\130\4\0\0\15\3\247\1\3\223\2\3\161\2\3\181\1\3\132\3\2\0\0\0\0\0\0\240\63\3\171\2\3\194\2\3\188\1\3\183\2\3\246\2\3\207\2\3\191\2\3\193\2\3\160\2\0\133\3\65\212\25\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\3\0\0\68\192\3\0\0\198\3\0\0\82\6\1\0\82\7\2\0\188\4\0\225\0\0\0\0\159\4\4\1\77\4\2\138\1\0\0\0\111\5\2\0\241\4\7\0\5\0\0\0\111\5\3\0\241\4\4\0\5\0\0\0\111\5\4\0\154\4\4\0\5\0\0\0\77\3\0\140\5\0\0\0\101\0\27\0\111\5\6\0\154\4\7\0\5\0\0\0\82\7\1\0\188\5\0\51\7\0\0\0\159\5\3\2\82\3\5\0\101\0\18\0\111\5\8\0\154\4\9\0\5\0\0\0\82\7\1\0\82\8\2\0\188\5\0\253\9\0\0\0\159\5\4\1\77\3\2\154\10\0\0\0\101\0\7\0\82\7\1\0\82\8\2\0\169\9\0\0\188\5\0\169\11\0\0\0\159\5\5\2\82\3\5\0\82\7\1\0\77\8\2\135\12\0\0\0\82\9\3\0\188\5\0\26\13\0\0\0" ..
"\159\5\5\2\48\5\2\135\12\0\0\0\82\7\1\0\77\8\2\149\14\0\0\0\188\5\0\106\15\0\0\0\159\5\4\1\77\5\0\140\5\0\0\0\48\5\2\149\14\0\0\0\130\0\1\0\16\3\233\2\3\247\1\3\239\2\3\168\2\3\238\2\3\169\2\3\237\2\3\180\2\3\244\2\3\131\3\3\160\2\3\133\3\3\159\2\3\179\2\3\109\3\199\2\0\134\3\68\230\25\1\1\0\0\0\0\1\0\1\0\0\0\0\0\0\0\0\1\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\2\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\1\0\10\3\0\0\60\192\3\0\0\198\3\0\0\82\6\1\0\82\7\2\0\188\4\0\225\0\0\0\0\159\4\4\1\77\4\2\138\1\0\0\0\111\5\2\0\241\4\4\0\5\0\0\0\111\5\3\0\154\4\4\0\5\0\0\0\77\3\0\140\4\0\0\0\101\0\22\0\111\5\5\0\154\4\7\0\5\0\0\0\82\7\1\0\188\5\0\51\6\0\0\0\159\5\3\2\82\3\5\0\101\0\13\0\111\5\7\0\154\4\4\0\5\0\0\0\77\3\2\154\8\0\0\0\101\0\7\0\82\7\1\0\82\8\2\0\169\9\1\0\188\5\0\169\9\0\0\0\159\5\5\2\82\3\5\0\82\7\1\0\77\8\2\149\10\0\0\0\82\9\3\0\188\5\0\26\11\0\0\0\159\5\5\2\48\5\2\149\10\0\0\0\82\7\1\0\77\8\2\135\12\0\0\0\188\5\0\106\13\0\0\0\159\5\4\1\77\5\0\140\4\0\0\0\48\5\2\135\12\0\0\0\130\0\1\0\14\3\233\2\3\247\1\3\236\2\3\237\2\3\169\2\3\238\2\3\180\2\3\244\2\3\160\2\3\133\3\3\109\3\179\2\3\159\2\3\199\2\0\135\3\60\253\25\1\1\0\0\0\0\1\0\1\0\0\0\0\0\1\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\2\0\0\0\0\0\0\2\0\0\0" ..
"\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\1\0\11\3\0\0\97\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\225\0\0\0\0\159\3\4\1\77\3\2\138\1\0\0\0\111\4\2\0\241\3\4\0\4\0\0\0\111\4\3\0\154\3\5\0\4\0\0\0\111\4\4\0\48\4\2\138\1\0\0\0\101\0\58\0\111\4\5\0\241\3\7\0\4\0\0\0\111\4\6\0\241\3\4\0\4\0\0\0\111\4\4\0\154\3\5\0\4\0\0\0\111\4\3\0\48\4\2\138\1\0\0\0\101\0\45\0\111\4\7\0\154\3\7\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\253\8\0\0\0\159\4\4\1\101\0\36\0\111\4\9\0\241\3\4\0\4\0\0\0\111\4\10\0\154\3\26\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\235\11\0\0\0\159\4\4\1\82\6\1\0\82\7\2\0\188\4\0\205\12\0\0\0\159\4\4\1\82\6\1\0\111\7\13\0\140\8\0\0\77\9\2\154\14\0\0\0\140\10\0\0\188\4\0\93\15\0\0\0\159\4\7\2\48\4\2\154\14\0\0\0\111\4\9\0\48\4\2\138\1\0\0\0\101\0\5\0\140\5\0\0\76\1\0\2\164\4\17\0\0\0\0\65\159\4\2\1\77\4\2\149\18\0\0\0\77\5\2\135\19\0\0\0\48\4\2\135\19\0\0\0\48\5\2\149\18\0\0\0\82\6\1\0\77\7\2\135\19\0\0\0\188\4\0\225\20\0\0\0\159\4\4\1\82\6\1\0\77\7\2\149\18\0\0\0\188\4\0\225\20\0\0\0\159\4\4\1\130\0\1\0\21\3\233\2\3\247\1\3\236\2\3\237\2\3\238\2\3\239\2\3\168\2\3\244\2\3\131\3\3\223\2\3\206\2\3\246\2\3\207\2\3\132\3\3\160\2\3\175\2\3\33\4\0\0\0\65\3\109\3\159\2\3\196\2\0\136\3\97\147\26\1\0\0\0\0\1\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\1" ..
"\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\0\3\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\8\4\0\0\12\192\4\0\0\82\6\1\0\82\7\3\0\188\4\0\188\0\0\0\0\159\4\4\2\48\4\2\69\1\0\0\0\111\4\2\0\48\4\2\138\3\0\0\0\130\0\1\0\4\3\252\2\3\231\2\3\230\2\3\247\1\0\137\3\12\174\26\1\0\0\0\0\0\0\1\0\0\1\0\11\4\0\0\119\192\4\0\0\198\4\0\0\82\7\2\0\188\5\0\114\0\0\0\0\159\5\3\2\14\5\5\0\82\7\3\0\188\5\0\114\0\0\0\0\159\5\3\2\43\5\2\0\169\5\0\0\130\5\2\0\77\5\2\28\1\0\0\0\77\6\3\28\1\0\0\0\111\7\2\0\154\1\8\0\7\0\0\0\82\9\5\0\82\10\6\0\188\7\0\54\3\0\0\0\159\7\4\2\82\4\7\0\101\0\80\0\111\7\4\0\154\1\8\0\7\0\0\0\82\9\5\0\82\10\6\0\188\7\0\133\5\0\0\0\159\7\4\2\82\4\7\0\101\0\70\0\111\7\6\0\154\1\8\0\7\0\0\0\82\9\5\0\82\10\6\0\188\7\0\12\7\0\0\0\159\7\4\2\82\4\7\0\101\0\60\0\111\7\8\0\154\1\13\0\7\0\0\0\140\7\0\0\154\6\3\0\7\0\0\0\169\7\0\0\130\7\2\0\82\9\5\0\82\10\6\0\188\7\0\126\9\0\0\0\159\7\4\2\82\4\7\0\101\0\45\0\111\7\10\0\154\1\13\0\7\0\0\0\140\7\0\0\154\6\3\0\7\0\0\0\169\7\0\0\130\7\2\0\82\9\5\0\82\10\6\0\188\7\0\235\11\0\0\0\159\7\4\2\82\4\7\0\101\0\30\0\111\7\12\0\154\1\8\0\7\0\0\0\82\9\5\0\82\10\6\0\188\7\0\234\13\0\0\0\159\7\4\2\82\4\7\0\101\0\20\0\111\7\14\0\154\1\7\0\7\0" ..
"\0\0\82\9\5\0\188\7\0\142\15\0\0\0\159\7\3\2\82\4\7\0\101\0\11\0\111\7\16\0\154\1\3\0\7\0\0\0\169\7\0\0\130\7\2\0\140\8\0\0\76\1\0\2\164\7\18\0\0\0\16\65\159\7\2\1\140\4\0\0\82\9\4\0\188\7\0\183\19\0\0\0\159\7\3\2\14\7\2\0\169\7\0\0\130\7\2\0\48\4\2\28\1\0\0\0\169\7\1\0\130\7\2\0\20\3\170\2\3\241\2\3\138\3\3\151\2\3\139\3\3\152\2\3\140\3\3\153\2\3\141\3\3\154\2\3\142\3\3\155\2\3\143\3\3\156\2\3\144\3\3\157\2\3\145\3\3\33\4\0\0\16\65\3\158\2\0\146\3\119\183\26\1\1\0\0\0\0\0\0\0\0\0\0\0\1\0\1\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\2\0\0\0\0\1\2\0\0\0\0\0\0\1\0\1\0\0\14\5\0\0\64\192\5\0\0\82\7\2\0\82\8\3\0\82\9\4\0\188\5\0\230\0\0\0\0\159\5\5\2\14\5\1\0\130\0\1\0\111\6\1\0\241\2\10\0\6\0\0\0\111\6\2\0\241\2\7\0\6\0\0\0\82\7\1\0\82\8\4\0\188\5\0\188\3\0\0\0\159\5\4\2\43\5\1\0\140\5\0\0\82\8\1\0\82\9\3\0\188\6\0\188\3\0\0\0\159\6\4\2\96\5\12\0\6\0\0\0\82\9\1\0\82\10\3\0\188\7\0\205\4\0\0\0\159\7\4\1\82\9\1\0\82\10\4\0\188\7\0\205\4\0\0\0\159\7\4\1\101\0\10\0\82\9\1\0\82\10\4\0\188\7\0\205\4\0\0\0\159\7\4\1\82\9\1\0\82\10\3\0\188\7\0\205\4\0\0\0\159\7\4\1\82\9\1\0\82\10\2\0" ..
"\140\11\0\0\82\12\6\0\82\13\5\0\188\7\0\93\5\0\0\0\159\7\7\2\48\7\3\154\6\0\0\0\111\7\7\0\48\7\3\138\8\0\0\0\130\0\1\0\9\3\146\3\3\144\3\3\145\3\3\252\2\3\207\2\3\175\2\3\160\2\3\223\2\3\247\1\0\147\3\64\219\26\1\0\0\0\0\0\0\1\2\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\2\0\15\6\0\0\46\192\6\0\0\82\8\1\0\82\9\4\0\188\6\0\188\0\0\0\0\159\6\4\2\82\9\1\0\82\10\5\0\188\7\0\188\0\0\0\0\159\7\4\2\82\10\1\0\82\11\5\0\188\8\0\205\1\0\0\0\159\8\4\1\82\10\1\0\82\11\4\0\188\8\0\205\1\0\0\0\159\8\4\1\140\8\0\0\154\3\9\0\8\0\0\0\111\8\2\0\241\2\6\0\8\0\0\0\82\8\7\0\82\9\6\0\82\6\8\0\82\7\9\0\140\3\1\0\82\10\1\0\82\11\2\0\82\12\3\0\82\13\6\0\82\14\7\0\188\8\0\183\3\0\0\0\159\8\7\2\48\8\4\154\4\0\0\0\111\8\5\0\48\8\4\138\6\0\0\0\130\0\1\0\7\3\252\2\3\207\2\3\148\3\3\183\2\3\160\2\3\244\2\3\247\1\0\149\3\46\241\26\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\2\0\0\0\1\2\0\0\0\0\0\0\0\0\0\1\0\0\1\0\11\4\0\0\69\192\4\0\0\255\4\0\0\0\0\0\0\77\5\0\140\0\0\0\0\77\6\0\140\0\0\0\0\48\5\4\149\1\0\0\0\48\6\4\135\2\0\0\0\111\5\3\0\48\5\4\138\4\0\0\0\140\5\0\0\48\5\4\28\5\0\0\0\111\5\6\0\154\2\19\0\5\0\0\0\82\7\3\0\188\5\0\114\7\0\0\0\159\5\3\2\43\5\5\0" ..
"\82\7\1\0\82\8\3\0\188\5\0\187\8\0\0\0\159\5\4\1\82\7\1\0\111\8\9\0\82\9\3\0\82\10\4\0\188\5\0\215\10\0\0\0\159\5\6\1\130\0\1\0\111\5\11\0\154\2\7\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\134\12\0\0\0\159\5\4\1\130\0\1\0\111\5\13\0\154\2\14\0\5\0\0\0\82\7\1\0\82\8\3\0\188\5\0\187\8\0\0\0\159\5\4\1\82\7\1\0\111\8\14\0\82\9\3\0\82\10\4\0\188\5\0\215\10\0\0\0\159\5\6\1\130\0\1\0\140\6\0\0\76\1\0\2\164\5\16\0\0\0\240\64\159\5\2\1\130\0\1\0\17\3\169\2\3\109\3\159\2\3\168\2\3\247\1\3\241\2\3\150\3\3\170\2\3\249\2\3\144\3\3\147\3\3\151\3\3\136\3\3\152\3\3\145\3\3\33\4\0\0\240\64\0\153\3\69\131\27\1\0\1\0\0\0\0\0\0\0\1\0\0\1\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\2\0\8\4\0\0\63\192\4\0\0\111\4\0\0\154\2\7\0\4\0\0\0\82\6\1\0\82\7\3\0\188\4\0\122\1\0\0\0\159\4\4\1\130\0\1\0\111\4\2\0\154\2\7\0\4\0\0\0\82\6\1\0\82\7\3\0\188\4\0\143\3\0\0\0\159\4\4\1\130\0\1\0\111\4\4\0\154\2\7\0\4\0\0\0\82\6\1\0\82\7\3\0\188\4\0\66\5\0\0\0\159\4\4\1\130\0\1\0\111\4\6\0\241\2\16\0\4\0\0\0\111\4\7\0\241\2\13\0\4\0\0\0\111\4\8\0\241\2\10\0\4\0\0\0\111\4\9\0\241\2\7\0\4\0\0\0\111\4\10\0\241\2\4\0\4\0\0\0\111\4\11\0\154\2\12\0\4\0\0\0\82\6\3\0\188\4\0\114\12\0\0\0\159\4\3\2\43\4\11\0\82\6" ..
"\1\0\82\7\3\0\188\4\0\188\13\0\0\0\159\4\4\1\130\0\1\0\82\6\1\0\82\7\3\0\188\4\0\188\13\0\0\0\159\4\4\1\130\0\1\0\14\3\154\3\3\134\3\3\155\3\3\135\3\3\156\3\3\248\2\3\157\3\3\158\3\3\159\3\3\160\3\3\161\3\3\162\3\3\170\2\3\252\2\0\163\3\63\155\27\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\2\0\3\2\0\0\26\192\2\0\0\77\2\1\138\0\0\0\0\48\2\0\138\0\0\0\0\77\2\1\154\1\0\0\0\48\2\0\154\1\0\0\0\77\2\1\69\2\0\0\0\48\2\0\69\2\0\0\0\77\2\1\28\3\0\0\0\48\2\0\28\3\0\0\0\77\2\1\149\4\0\0\0\48\2\0\149\4\0\0\0\77\2\1\135\5\0\0\0\48\2\0\135\5\0\0\0\130\0\1\0\6\3\247\1\3\160\2\3\231\2\3\241\2\3\109\3\159\2\0\164\3\26\192\27\1\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\1\0\16\5\1\0\187\1\192\5\0\0\217\5\0\0\111\6\0\0\154\2\33\0\6\0\0\0\77\8\3\149\1\0\0\0\77\9\0\140\2\0\0\0\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\82\8\1\0\82\9\4\0\188\6\0\225\5\0\0\0\159\6\4\1\82\8\1\0\77\9\4\135\6\0\0\0\77\10\3\135\6\0\0\0\188\6\0\26\7\0\0\0\159\6\5\2\48\6\4\135\6\0\0\0\82\6\5\0\82\7\3\0\82\8\4\0\159\6\3\1\130\0\1\0\111\6\8\0\154\2\33\0\6\0\0\0\77\8\3\135\6\0\0\0\77\9\0\140\2\0\0\0\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1" ..
"\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\82\8\1\0\82\9\4\0\188\6\0\225\5\0\0\0\159\6\4\1\82\8\1\0\77\9\4\149\1\0\0\0\77\10\3\149\1\0\0\0\188\6\0\26\7\0\0\0\159\6\5\2\48\6\4\149\1\0\0\0\82\6\5\0\82\7\3\0\82\8\4\0\159\6\3\1\130\0\1\0\111\6\9\0\154\2\80\0\6\0\0\0\82\8\1\0\82\9\4\0\188\6\0\166\10\0\0\0\159\6\4\1\77\6\4\138\11\0\0\0\111\7\12\0\154\6\57\0\7\0\0\0\251\6\0\0\82\10\1\0\82\11\4\0\188\8\0\248\13\0\0\0\159\8\4\0\188\6\6\213\14\0\0\0\159\6\0\2\111\7\15\0\154\6\45\0\7\0\0\0\77\8\3\154\16\0\0\0\251\10\0\0\82\14\1\0\82\15\4\0\188\12\0\248\13\0\0\0\159\12\4\0\188\10\10\54\18\0\0\0\159\10\0\2\120\9\10\17\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\82\8\1\0\82\9\3\0\188\6\0\205\19\0\0\0\159\6\4\1\251\6\0\0\82\10\1\0\82\11\4\0\188\8\0\248\13\0\0\0\159\8\4\2\77\9\3\154\16\0\0\0\188\6\6\194\20\0\0\0\159\6\4\1\111\6\12\0\48\6\3\138\11\0\0\0\77\6\4\154\16\0\0\0\48\6\3\154\16\0\0\0\130\0\1\0\82\8\1\0\82\9\4\0\188\6\0\66\21\0\0\0\159\6\4\1\82\8\1\0\111\9\15\0\82\10\3\0\82\11\4\0\188\6\0\215\22\0\0\0\159\6\6\1\130\0\1\0\77\7\0\222\23\0\0\0\135\6\7\2\14\6\8\0\82\9\1\0\82\10\6\0\82\11\3\0\82\12\4\0\188\7\0\215\22\0\0\0\159\7\6\1\130\0\1\0\77\8\0\85\24\0\0\0\135\7\8\2\14\7\11\0\82\10\1\0\82\11\7\0\77\13\0\16\25\0\0\0\135\12\13\2\82\13\3\0\82" ..
"\14\4\0\188\8\0\58\26\0\0\0\159\8\7\1\130\0\1\0\140\9\0\0\76\1\0\2\164\8\4\0\0\0\48\64\159\8\2\1\130\0\1\0\27\3\154\3\3\109\3\169\2\3\33\4\0\0\48\64\3\233\2\3\159\2\3\179\2\3\155\3\3\156\3\3\250\2\3\247\1\3\223\2\3\161\2\3\181\1\3\165\3\3\160\2\2\0\0\0\0\0\0\240\63\3\188\1\3\207\2\3\189\1\3\248\2\3\147\3\3\166\3\3\167\3\3\168\3\3\149\3\1\155\1\169\3\187\1\188\27\4\6\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\2\0\0\0\0\1\0\0\0\0\0\0\0\4\0\0\1\1\0\0\0\0\0\0\0\2\0\0\1\1\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\4\0\6\3\0\0\10\192\3\0\0\77\4\1\135\0\0\0\0\77\3\4\18\1\0\0\0\77\5\1\25\3\0\0\0\120\4\5\2\106\2\3\4\130\0\1\0\4\3\159\2\3\253\1\2\0\0\0\0\0\0\240\63\3\171\2\0\170\3\10\241\27\1\0\0\0\0\0\0\0\1\0\14\4\1\0\59\192\4\0\0\77\4\1\135\0\0\0\0\82\7\1\0\188\5\0\146\1\0\0\0\159\5\3\1\251\5\0\0\77\7\1\109\2\0\0\0\77\8\4\35\3\0\0\0\77\9\1\25\4\0\0\0\77\10\4\46\5\0\0\0\198\11\0\0\251\13\0\0\77\12\13\140\6\0\0\0\111\13\7\0\188\5\5\12\8\0\0\0\159\5\9\1\77\5\4\35\3\0" ..
"\0\0\77\6\1\25\4\0\0\0\106\2\5\6\251\5\0\0\77\7\1\109\2\0\0\0\77\8\4\18\9\0\0\0\77\9\1\25\4\0\0\0\77\10\4\8\10\0\0\0\198\11\0\0\251\13\0\0\77\12\13\140\6\0\0\0\111\13\7\0\188\5\5\12\8\0\0\0\159\5\9\1\77\5\4\18\9\0\0\0\77\6\1\25\4\0\0\0\106\3\5\6\77\5\1\25\4\0\0\0\77\7\1\25\4\0\0\0\149\6\7\11\48\6\1\25\4\0\0\0\130\5\2\0\12\3\159\2\3\198\2\3\123\3\244\1\3\171\2\3\243\1\3\117\3\171\3\3\213\2\3\253\1\3\252\1\2\0\0\0\0\0\0\240\63\0\244\1\59\251\27\1\0\1\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\1\0\0\0\0\1\0\15\6\1\0\80\192\6\0\0\251\8\0\0\82\10\2\0\188\8\8\127\0\0\0\0\159\8\3\2\251\11\0\0\77\10\11\38\1\0\0\0\77\9\10\79\2\0\0\0\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\169\7\1\0\251\8\0\0\82\10\2\0\188\8\8\254\5\0\0\0\159\8\3\2\251\11\0\0\77\10\11\80\6\0\0\0\77\9\10\25\7\0\0\0\154\8\6\0\9\0\0\0\140\8\0\0\241\4\2\0\8\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\169\7\1\0\251\8\0\0\82\10\2\0\188\8\8\57\8\0\0\0\159\8\3\2\251\11\0\0\77\10\11\80\6\0\0\0\77\9\10\25\7\0\0\0\154\8\6\0\9\0\0\0\140\8\0\0\241\5\2\0\8\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\4\0\0\0\48\64\159\6\2\1\82\8\1\0\251\9\0\0\82\11\2\0\82\12\3\0\82" ..
"\13\4\0\82\14\5\0\188\9\9\202\9\0\0\0\159\9\6\2\77\11\1\9\10\0\0\0\77\10\11\188\11\0\0\0\188\6\0\35\12\0\0\0\159\6\5\0\130\6\0\0\13\3\211\1\3\203\1\3\205\1\3\33\4\0\0\48\64\3\213\1\3\217\1\3\172\3\3\214\1\3\199\1\3\185\2\3\127\3\244\1\0\175\2\80\143\28\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\5\1\0\66\192\5\0\0\169\6\1\0\251\7\0\0\82\9\2\0\188\7\7\127\0\0\0\0\159\7\3\2\251\10\0\0\77\9\10\38\1\0\0\0\77\8\9\150\2\0\0\0\241\7\15\0\8\0\0\0\251\7\0\0\82\9\2\0\188\7\7\127\0\0\0\0\159\7\3\2\251\10\0\0\77\9\10\38\1\0\0\0\77\8\9\158\3\0\0\0\241\7\2\0\8\0\0\0\169\6\0\1\169\6\1\0\76\1\0\2\164\5\5\0\0\0\64\64\159\5\2\1\251\7\0\0\82\9\2\0\188\7\7\57\6\0\0\0\159\7\3\2\251\10\0\0\77\9\10\80\7\0\0\0\77\8\9\25\8\0\0\0\241\7\2\0\8\0\0\0\169\6\0\1\169\6\1\0\76\1\0\2\164\5\5\0\0\0\64\64\159\5\2\1\82\7\1\0\251\8\0\0\82\10\2\0\82\11\3\0\82\12\4\0\188\8\8\117\9\0\0\0\159\8\5\2\77\10\1\9\10\0\0\0\77\9\10\188\11\0\0\0\188\5\0\35\12\0\0\0\159\5\5\0\130\5\0\0\13\3\211\1\3\203\1\3\173\3\3\174\3\3\33\4\0\0\64\64\3\214\1\3\217\1\3\172\3\3\200\1\3\185\2\3\127\3\244\1\0\162\2\66\154\28\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0" ..
"\0\0\0\0\0\0\255\255\255\255\15\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\5\2\0\67\192\5\0\0\120\8\3\0\251\10\0\0\77\9\10\240\1\0\0\0\236\7\8\9\76\12\0\2\164\6\4\0\0\12\32\128\159\6\2\2\149\5\6\0\251\8\1\0\77\7\8\107\5\0\0\0\154\4\3\0\7\0\0\0\140\6\0\0\101\0\1\0\82\6\4\0\140\9\0\0\154\4\2\0\9\0\0\0\169\8\0\1\169\8\1\0\76\1\0\2\164\7\7\0\0\0\96\64\159\7\2\1\251\8\0\0\77\7\8\65\8\0\0\0\125\5\10\0\7\0\0\0\82\9\1\0\111\10\9\0\82\11\2\0\82\12\6\0\82\13\5\0\188\7\0\93\10\0\0\0\159\7\7\1\101\0\21\0\82\9\1\0\111\10\9\0\82\11\2\0\82\12\6\0\140\13\0\0\188\7\0\93\10\0\0\0\159\7\7\1\82\9\1\0\251\10\0\0\82\12\5\0\188\10\10\61\11\0\0\0\159\10\3\2\77\12\1\9\12\0\0\0\77\11\12\188\13\0\0\0\188\7\0\35\14\0\0\0\159\7\5\1\149\7\2\0\48\7\1\222\15\0\0\0\130\0\1\0\16\2\0\0\0\0\0\0\240\63\3\175\3\3\5\3\212\1\4\0\12\32\128\3\164\2\3\33\4\0\0\96\64\3\176\3\3\177\3\3\175\2\3\201\1\3\185\2\3\127\3\244\1\3\201\2\0\178\3\67\165\28\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\1\0\6\2\0\0\6\192\2\0\0\111\3\0\0\82\4\1\0\111\5\0\0\115\2\3\5\130\2\2\0\1\3\173\1\0\179\3\6\200\29\1\0\0\0\0\0\10\8\0\0\8\192\8\0\0\125\6\5\0\3\0\0\0\164\8" ..
"\1\0\0\0\0\64\82\9\7\0\159\8\2\1\130\0\1\0\2\3\35\4\0\0\0\64\0\213\2\8\214\29\1\0\1\0\0\0\2\0\4\2\0\0\67\192\2\0\0\255\2\0\0\0\0\0\0\255\3\0\0\0\0\0\0\48\3\2\138\0\0\0\0\140\3\0\0\48\3\2\117\1\0\0\0\255\3\0\0\0\0\0\0\48\3\2\145\2\0\0\0\140\3\0\0\48\3\2\190\3\0\0\0\255\3\0\0\0\0\0\0\48\3\2\35\4\0\0\0\140\3\0\0\48\3\2\46\5\0\0\0\140\3\0\0\48\3\2\8\6\0\0\0\140\3\0\0\48\3\2\2\7\0\0\0\140\3\0\0\48\3\2\50\8\0\0\0\255\3\0\0\0\0\0\0\48\3\2\177\9\0\0\0\140\3\0\0\48\3\2\165\10\0\0\0\140\3\0\0\48\3\2\126\11\0\0\0\140\3\0\0\48\3\2\115\12\0\0\0\255\3\0\0\0\0\0\0\48\3\2\18\13\0\0\0\140\3\0\0\48\3\2\75\14\0\0\0\255\3\0\0\0\0\0\0\48\3\2\243\15\0\0\0\140\3\0\0\48\3\2\138\16\0\0\0\140\3\0\0\48\3\2\106\17\0\0\0\198\3\0\0\48\3\2\98\18\0\0\0\130\2\2\0\19\3\247\1\3\246\1\3\70\3\248\1\3\244\1\3\243\1\3\252\1\3\131\2\3\136\2\3\132\2\3\137\2\3\138\2\3\139\2\3\253\1\3\254\1\3\255\1\3\134\2\3\135\2\3\102\0\180\3\67\224\29\1\0\2\0\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\1\0\0\1\0\6\2\0\0\23\192\2\0\0\140\2\0\0\140\3\16\0\125\3\10\0\1\0\0\0\149\5\1\1\62\4\5\0\76\12\0\2\164\3\4\0\0\12\32\128\159\3\2\2\82\1\3\0\149\2\2\1\72\0\244\255\140\3\8\0\96\1\2\0\3\0\0" ..
"\0\130\1\2\0\149\5\2\1\91\4\5\5\120\5\1\5\67\3\4\5\130\3\2\0\6\2\0\0\0\0\0\0\0\64\2\0\0\0\0\0\0\240\63\3\5\3\212\1\4\0\12\32\128\2\0\0\0\0\0\0\32\64\0\181\3\23\254\29\1\1\0\0\1\0\0\0\0\0\0\1\0\2\0\0\1\2\0\0\0\0\0\4\2\0\0\11\192\2\0\0\169\2\1\0\111\3\0\0\241\1\6\0\3\0\0\0\111\3\1\0\241\1\2\0\3\0\0\0\169\2\0\1\169\2\1\0\130\2\2\0\2\3\221\2\3\222\2\0\182\3\11\146\30\1\0\0\0\0\0\0\0\0\0\0\7\3\0\0\10\192\3\0\0\77\5\1\135\0\0\0\0\77\4\5\243\1\0\0\0\77\6\1\220\2\0\0\0\135\5\6\2\135\3\4\5\130\3\2\0\3\3\159\2\3\255\1\3\183\3\0\184\3\10\153\30\1\0\0\0\0\0\0\0\0\0\10\5\0\0\10\192\5\0\0\96\3\7\0\2\0\0\0\82\7\1\0\82\8\3\0\82\9\4\0\188\5\0\53\0\0\0\0\159\5\5\1\130\0\1\0\1\3\185\3\0\186\3\10\160\30\1\0\0\0\0\0\0\0\1\0\4\2\0\0\16\192\2\0\0\77\3\1\149\0\0\0\0\77\2\3\250\1\0\0\0\111\3\2\0\241\2\8\0\3\0\0\0\77\3\1\149\0\0\0\0\77\2\3\250\1\0\0\0\111\3\3\0\154\2\1\0\3\0\0\0\130\0\1\0\4\3\109\3\110\3\97\3\98\0\187\3\16\183\30\1\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\12\3\1\0\20\192\3\0\0\251\3\0\0\82\5\1\0\164\6\2\0\0\4\0\128\77\8\0\3\3\0\0\0\111\9\4\0\115\7\8\9\251\8\0\0\82\10\1\0\82\11\2\0\188\8\8\103\5\0\0\0\159\8\4\0\159\6\0\0\188\3\3\228\6\0\0\0\159\3\0\1\130\0\1\0\7\3\45\3\46\4\0\4\0\128\3\107\3\188\3\3\96\3\111\0\189\3\20\194\30\1\0\1" ..
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\10\4\1\0\34\192\4\0\0\77\6\1\135\0\0\0\0\77\5\6\158\1\0\0\0\140\6\0\0\154\5\8\0\6\0\0\0\164\4\4\0\0\12\32\128\111\5\5\0\82\6\2\0\82\7\3\0\159\4\4\2\43\4\10\0\164\4\4\0\0\12\32\128\111\5\6\0\77\7\1\135\0\0\0\0\77\6\7\158\1\0\0\0\82\7\2\0\82\8\3\0\159\4\5\2\251\5\0\0\77\7\1\9\7\0\0\0\82\8\4\0\140\9\0\0\188\5\5\174\8\0\0\0\159\5\5\1\130\0\1\0\9\3\159\2\3\190\3\3\45\3\46\4\0\12\32\128\3\191\3\3\192\3\3\185\2\3\108\0\185\3\34\203\30\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\6\3\1\0\16\192\3\0\0\77\4\1\149\0\0\0\0\77\3\4\250\1\0\0\0\154\3\8\0\2\0\0\0\251\3\0\0\82\5\1\0\188\3\3\211\2\0\0\0\159\3\3\1\169\3\1\0\130\3\2\0\169\3\0\0\130\3\2\0\3\3\109\3\110\3\133\1\0\193\3\16\215\30\1\0\0\0\0\0\1\0\0\0\0\1\0\2\0\0\7\3\0\0\13\192\3\0\0\77\4\1\149\0\0\0\0\77\3\4\250\1\0\0\0\241\3\6\0\2\0\0\0\82\5\1\0\82\6\2\0\188\3\0\36\2\0\0\0\159\3\4\1\130\0\1\0\3\3\109\3\110\3\189\3\0\194\3\13\227\30\1\0\0\0\0\0\1\0\0\0\0\2\0\7\3\1\0\12\192\3\0\0\82\5\1\0\82\6\2\0\188\3\0\156\0\0\0\0\159\3\4\1\251\3\0\0\82\5\1\0\188\3\3\211\1\0\0\0\159\3\3\1\130\0\1\0\2\3\194\3\3\133\1\0\195\3\12\236\30\1\0\0\0\0\1\0\0\0\0\1\0\8\4\1\0\9\192\4\0\0\43\2\6\0\251\4\0\0\82\6\1\0\82\7\3\0\188\4\4" ..
"\228\0\0\0\0\159\4\4\1\130\0\1\0\1\3\111\0\196\3\9\244\30\1\0\0\0\0\0\0\1\0\15\5\1\0\46\192\5\0\0\82\7\1\0\82\8\2\0\188\5\0\39\0\0\0\0\159\5\4\2\43\5\38\0\77\5\1\97\1\0\0\0\154\4\7\0\5\0\0\0\82\7\1\0\82\8\2\0\188\5\0\36\2\0\0\0\159\5\4\1\130\0\1\0\251\5\0\0\82\7\1\0\164\8\5\0\0\16\48\128\77\10\0\3\6\0\0\0\111\11\7\0\77\12\0\3\6\0\0\0\111\13\8\0\115\9\10\13\251\10\0\0\82\12\1\0\82\13\2\0\188\10\10\103\9\0\0\0\159\10\4\2\251\11\0\0\82\13\1\0\82\14\3\0\188\11\11\103\9\0\0\0\159\11\4\2\82\12\4\0\159\8\5\0\188\5\5\228\10\0\0\0\159\5\0\1\130\0\1\0\11\3\193\3\3\105\3\189\3\3\45\3\46\4\0\16\48\128\3\107\3\197\3\3\198\3\3\96\3\111\0\199\3\46\251\30\1\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\2\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\6\2\1\0\16\192\2\0\0\82\4\1\0\111\5\0\0\188\2\0\156\1\0\0\0\159\2\4\1\77\3\1\149\2\0\0\0\77\2\3\168\3\0\0\0\251\3\0\0\82\5\1\0\188\3\3\211\4\0\0\0\159\3\3\1\130\2\2\0\5\3\97\3\194\3\3\109\3\131\1\3\133\1\0\200\3\16\138\31\1\0\0\0\0\1\0\0\0\1\0\0\0\0\1\0\7\4\1\0\16\192\4\0\0\251\6\0\0\77\4\6\140\0\0\0\0\251\6\0\0\77\5\6\140\0\0\0\0\48\4\1\135\1\0\0\0\48\5\1\149\2\0\0\0\48\2\1\138\3\0\0\0\48\3\1\154\4\0\0\0\130\0\1\0\5\3\169\2\3\159\2\3\109\3\247\1\3\160\2\0\201\3\16\148\31\1\0\0\0\0\0\0\0\0\0\1\0\1\0\1\0\12" ..
"\4\1\0\14\192\4\0\0\82\6\2\0\111\7\0\0\251\8\0\0\77\10\1\3\1\0\0\0\82\11\3\0\188\8\8\191\2\0\0\0\159\8\4\0\188\4\0\34\3\0\0\0\159\4\0\1\130\0\1\0\4\3\239\2\3\126\3\215\2\3\201\3\0\202\3\14\157\31\1\0\0\0\0\0\0\0\0\0\0\0\1\0\10\3\0\0\11\192\3\0\0\82\5\1\0\82\6\2\0\82\9\1\0\188\7\0\222\0\0\0\0\159\7\3\0\188\3\0\76\1\0\0\0\159\3\0\1\130\0\1\0\2\3\200\3\3\202\3\0\203\3\11\164\31\1\0\0\0\0\0\0\0\0\1\0\14\3\0\0\42\192\3\0\0\77\3\1\3\0\0\0\0\77\4\3\135\1\0\0\0\77\7\1\109\2\0\0\0\77\8\4\243\3\0\0\0\77\9\3\154\4\0\0\0\77\10\4\75\5\0\0\0\198\11\0\0\77\12\0\234\6\0\0\0\111\13\7\0\188\5\0\12\8\0\0\0\159\5\9\1\77\5\4\243\3\0\0\0\77\6\3\154\4\0\0\0\255\7\0\0\0\0\0\0\106\7\5\6\77\6\4\243\3\0\0\0\77\7\3\154\4\0\0\0\135\5\6\7\48\2\5\133\9\0\0\0\77\5\3\154\4\0\0\0\77\7\3\154\4\0\0\0\149\6\7\10\48\6\3\154\4\0\0\0\130\5\2\0\11\3\126\3\159\2\3\123\3\255\1\3\204\3\3\254\1\3\205\3\3\206\3\3\213\2\3\128\2\2\0\0\0\0\0\0\240\63\0\207\3\42\172\31\1\0\1\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\1\0\0\0\0\1\0\9\4\0\0\8\192\4\0\0\82\6\1\0\82\7\2\0\82\8\3\0\188\4\0\192\0\0\0\0\159\4\5\1\130\0\1\0\1\3\208\3\0\209\3\8\190\31\1\0\0\0\0\0\1\0\11\4\0\0\26\192\4\0\0\77\4\1\3\0\0\0\0\82\7\4\0\77\10\4\220\2\0\0\0\67\9\10\3\149\8" ..
"\9\1\77\9\0\255\3\0\0\0\111\10\4\0\188\5\0\123\5\0\0\0\159\5\6\1\77\5\4\220\6\0\0\0\77\7\4\220\2\0\0\0\67\6\7\3\82\9\1\0\82\10\2\0\188\7\0\86\7\0\0\0\159\7\4\2\106\7\5\6\130\0\1\0\8\3\126\2\0\0\0\0\0\0\240\63\3\173\2\3\210\3\3\211\3\3\186\3\3\183\3\3\207\3\0\208\3\26\197\31\1\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\12\3\0\0\25\192\3\0\0\77\3\1\3\0\0\0\0\77\5\3\220\1\0\0\0\67\4\5\2\48\4\3\220\1\0\0\0\82\6\2\0\140\4\1\0\140\5\255\255\168\4\12\0\82\9\3\0\77\11\3\220\1\0\0\0\38\10\11\6\188\7\0\195\2\0\0\0\159\7\4\2\77\8\3\25\3\0\0\0\48\8\7\39\4\0\0\0\139\4\244\255\130\0\1\0\5\3\126\3\173\2\3\184\3\3\171\2\3\129\2\0\212\3\25\206\31\1\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\255\255\255\255\15\3\0\8\3\0\0\24\192\3\0\0\77\3\1\3\0\0\0\0\77\4\3\220\1\0\0\0\96\2\17\0\4\0\0\0\77\5\3\220\1\0\0\0\120\4\5\2\48\4\3\220\1\0\0\0\82\6\3\0\77\7\3\220\1\0\0\0\188\4\0\195\3\0\0\0\159\4\4\2\77\5\3\25\4\0\0\0\48\5\4\144\5\0\0\0\72\0\236\255\130\0\1\0\6\3\126\3\173\2\2\0\0\0\0\0\0\240\63\3\184\3\3\171\2\3\130\2\0\213\3\24\217\31\1\0\1\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\0\14\4\0\0\109\192\4\0\0\77\4\1\135\0\0\0\0\140\7\0\0\77\8\4\50\2\0\0\0\120\5\8\1\140\6\1\0\168\5\31\0\77\10\1\177\3\0\0\0\135\9\10\7\77\8\9\138\4\0\0\0\77\9\3\138\4\0\0" ..
"\0\154\8\22\0\9\0\0\0\77\10\1\177\3\0\0\0\135\9\10\7\77\8\9\154\5\0\0\0\77\9\3\154\5\0\0\0\154\8\13\0\9\0\0\0\77\11\4\177\3\0\0\0\135\10\11\7\241\10\2\0\2\0\0\0\169\9\0\1\169\9\1\0\76\1\0\2\164\8\7\0\0\0\96\64\159\8\2\1\130\7\2\0\139\5\225\255\82\7\1\0\77\9\4\50\2\0\0\0\149\8\9\1\77\9\0\222\8\0\0\0\111\10\3\0\188\5\0\123\9\0\0\0\159\5\6\1\77\7\1\109\10\0\0\0\77\8\4\177\3\0\0\0\77\9\4\50\2\0\0\0\77\10\4\2\11\0\0\0\198\11\0\0\77\12\0\140\12\0\0\0\111\13\13\0\188\5\0\12\14\0\0\0\159\5\9\1\77\5\4\177\3\0\0\0\77\6\4\50\2\0\0\0\106\2\5\6\169\6\1\0\77\7\3\138\4\0\0\0\111\8\15\0\241\7\8\0\8\0\0\0\77\7\3\138\4\0\0\0\111\8\16\0\241\7\2\0\8\0\0\0\169\6\0\1\169\6\1\0\76\1\0\2\164\5\7\0\0\0\96\64\159\5\2\1\77\5\1\177\3\0\0\0\77\6\4\50\2\0\0\0\226\7\17\0\77\8\3\138\4\0\0\0\48\8\7\138\4\0\0\0\77\8\3\154\5\0\0\0\48\8\7\154\5\0\0\0\106\7\5\6\77\5\4\50\2\0\0\0\77\7\4\50\2\0\0\0\149\6\7\1\48\6\4\50\2\0\0\0\130\5\2\0\18\3\159\2\2\0\0\0\0\0\0\240\63\3\136\2\3\132\2\3\247\1\3\160\2\3\33\4\0\0\96\64\3\214\3\3\186\3\3\123\3\131\2\3\117\3\66\3\213\2\3\225\2\3\226\2\5\2\4\5\0\215\3\109\230\31\1\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\253\255\255\255\15\7\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\2\0" ..
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\1\0\0\0\0\1\0\11\3\0\0\20\192\3\0\0\77\6\1\220\1\0\0\0\120\5\6\0\140\3\0\0\140\4\255\255\168\3\11\0\82\9\1\0\82\10\5\0\188\7\0\195\2\0\0\0\159\7\4\2\77\6\7\133\3\0\0\0\154\2\2\0\6\0\0\0\130\5\2\0\139\3\245\255\140\3\255\255\130\3\2\0\4\2\0\0\0\0\0\0\240\63\3\173\2\3\184\3\3\128\2\0\216\3\20\129\32\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\254\255\255\255\15\5\0\0\5\3\0\0\16\192\3\0\0\77\3\1\227\0\0\0\0\14\3\7\0\77\4\3\220\1\0\0\0\96\2\4\0\4\0\0\0\77\3\3\4\2\0\0\0\72\0\248\255\14\3\3\0\169\4\1\0\48\4\3\88\3\0\0\0\130\0\1\0\4\3\217\3\3\173\2\3\218\3\3\219\3\0\220\3\16\142\32\1\0\1\0\0\0\0\0\0\0\1\0\0\0\1\0\12\5\1\0\64\192\5\0\0\198\5\0\0\154\1\11\0\5\0\0\0\82\7\3\0\111\8\0\0\251\10\0\0\77\9\10\162\1\0\0\0\188\5\0\34\2\0\0\0\159\5\5\1\111\5\0\0\130\5\2\0\82\7\1\0\82\8\2\0\188\5\0\89\3\0\0\0\159\5\4\2\140\6\0\0\125\6\17\0\5\0\0\0\82\8\3\0\111\9\4\0\82\10\5\0\188\6\0\34\2\0\0\0\159\6\5\1\140\6\0\0\154\4\6\0\6\0\0\0\82\8\1\0\82\9\5\0\188\6\0\178\5\0\0\0\159\6\4\1\111\6\4\0\130\6\2\0\77\8\1\27\6\0\0\0\82\9\2\0\82\10\3\0\140\11\0\0\188\6\0\122\7\0\0\0\159\6\6\2\111\7\0\0\154\6\3\0\7\0\0\0\111\6\0\0\130\6\2\0\82\8\1\0\82\9\2\0\82\10\3\0\188\6\0\75\8\0\0\0\159\6\5\2\48\6\3\154\9" ..
"\0\0\0\111\6\10\0\48\6\3\138\11\0\0\0\111\6\10\0\130\6\2\0\12\3\228\2\3\193\2\3\201\3\3\216\3\3\225\2\3\220\3\3\221\3\3\222\3\3\215\3\3\160\2\3\226\2\3\247\1\0\222\3\64\153\32\1\0\0\1\0\0\0\0\0\0\0\1\0\2\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\2\0\2\0\0\0\0\0\0\0\0\0\0\1\0\2\0\0\0\0\0\0\0\1\0\0\1\0\0\11\3\1\0\26\192\3\0\0\82\5\1\0\188\3\0\222\0\0\0\0\159\3\3\2\77\4\1\3\1\0\0\0\82\7\4\0\82\8\3\0\82\9\2\0\140\10\1\0\188\5\0\122\2\0\0\0\159\5\6\2\111\6\3\0\154\5\9\0\6\0\0\0\251\5\0\0\82\7\4\0\82\8\3\0\188\5\5\191\4\0\0\0\159\5\4\2\48\5\2\154\5\0\0\0\130\0\1\0\6\3\200\3\3\126\3\222\3\3\228\2\3\215\2\3\160\2\0\223\3\26\180\32\1\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\2\0\13\5\1\0\62\192\5\0\0\77\5\1\3\0\0\0\0\38\6\2\3\77\9\4\138\1\0\0\0\188\7\0\211\2\0\0\0\159\7\3\2\14\7\22\0\149\6\6\3\140\7\0\0\125\6\2\0\7\0\0\0\140\6\0\0\251\7\0\0\82\9\5\0\82\10\4\0\82\11\6\0\188\7\7\67\4\0\0\0\159\7\5\1\140\7\1\0\96\7\37\0\6\0\0\0\251\7\0\0\82\9\5\0\120\10\6\3\188\7\7\95\5\0\0\0\159\7\4\1\130\0\1\0\77\7\4\138\1\0\0\0\111\8\6\0\241\7\7\0\8\0\0\0\251\7\0\0\82\9\5\0\82\10\4\0\188\7\7\66\7\0\0\0\159\7\4\1\140\7\0\0\96\7\16\0\6\0\0\0\77\7\5\222\8\0\0\0\251\8\0\0\82\10\5\0\82\11\6\0\188\8\8\95\5\0\0\0\159\8\4\1\251\8\0\0" ..
"\82\10\5\0\82\11\7\0\82\12\6\0\188\8\8\193\9\0\0\0\159\8\5\1\130\0\1\0\10\3\126\3\247\1\3\182\3\2\0\0\0\0\0\0\240\63\3\165\2\3\205\2\3\243\2\3\248\2\3\201\2\3\176\2\0\224\3\62\192\32\1\0\1\1\0\0\0\0\0\1\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\1\0\0\0\0\0\1\0\0\0\0\0\0\3\0\7\2\1\0\26\192\2\0\0\77\2\1\109\0\0\0\0\77\5\1\109\0\0\0\0\77\4\5\223\2\0\0\0\149\3\4\1\48\3\2\223\2\0\0\0\77\3\1\109\0\0\0\0\77\2\3\223\2\0\0\0\77\3\0\107\3\0\0\0\96\3\8\0\2\0\0\0\251\2\0\0\82\4\1\0\111\5\4\0\140\6\0\0\188\2\2\174\5\0\0\0\159\2\5\1\130\0\1\0\6\3\123\2\0\0\0\0\0\0\240\63\3\225\3\3\226\3\3\227\3\3\108\0\228\3\26\213\32\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\6\2\0\0\11\192\2\0\0\77\2\1\109\0\0\0\0\77\5\1\109\0\0\0\0\77\4\5\223\2\0\0\0\120\3\4\1\48\3\2\223\2\0\0\0\130\0\1\0\3\3\123\2\0\0\0\0\0\0\240\63\3\225\3\0\229\3\11\223\32\1\0\0\0\0\0\0\0\0\1\0\8\4\1\0\34\192\4\0\0\251\5\0\0\77\4\5\140\0\0\0\0\48\4\2\197\1\0\0\0\48\3\2\239\2\0\0\0\77\4\1\220\3\0\0\0\48\4\2\220\3\0\0\0\169\4\0\0\48\4\2\88\4\0\0\0\77\4\1\227\5\0\0\0\48\4\2\4\6\0\0\0\48\2\1\227\5\0\0\0\77\6\1\222\7\0\0\0\77\7\1\220\3\0\0\0\241\6\2\0\7\0\0\0\169\5\0\1\169\5\1\0\76\1\0\2\164\4\9\0\0\0\128\64\159\4\2\1" ..
"\130\0\1\0\10\3\169\2\3\230\3\3\231\3\3\173\2\3\219\3\3\217\3\3\218\3\3\201\2\3\33\4\0\0\128\64\0\232\3\34\230\32\1\0\0\0\0\1\0\1\0\0\0\1\0\0\1\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\10\2\1\0\62\192\2\0\0\77\2\1\227\0\0\0\0\77\3\2\4\1\0\0\0\48\3\1\227\0\0\0\0\77\5\1\9\2\0\0\0\77\6\2\220\3\0\0\0\188\3\0\219\4\0\0\0\159\3\4\1\77\3\2\88\5\0\0\0\14\3\10\0\251\3\0\0\82\5\1\0\111\6\6\0\77\7\2\220\3\0\0\0\140\8\0\0\140\9\0\0\188\3\3\93\7\0\0\0\159\3\7\1\77\5\2\239\8\0\0\0\86\4\5\0\43\4\3\0\77\5\2\88\5\0\0\0\86\4\5\0\76\1\0\2\164\3\10\0\0\0\144\64\159\3\2\1\77\5\2\220\3\0\0\0\77\6\1\220\3\0\0\0\241\5\2\0\6\0\0\0\169\4\0\1\169\4\1\0\76\1\0\2\164\3\10\0\0\0\144\64\159\3\2\1\77\3\1\220\3\0\0\0\48\3\1\222\11\0\0\0\251\3\0\0\82\5\1\0\77\6\2\197\12\0\0\0\188\3\3\106\13\0\0\0\159\3\4\1\130\0\1\0\14\3\217\3\3\218\3\3\185\2\3\173\2\3\213\3\3\219\3\3\233\3\3\175\2\3\231\3\3\33\4\0\0\144\64\3\201\2\3\230\3\3\199\2\0\234\3\62\243\32\1\0\1\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\18\4\2\0\82\192\4\0\0\77\4\1\3\0\0\0\0\77\5\4\135\1\0\0\0\77\8\1\109\2\0\0\0\77\9\5\145\3\0\0\0\77\10\4\104\4\0\0\0\77\11\5\190\5\0\0\0\198\12\0\0\251\14\0\0\77\13\14\139\6\0\0\0" ..
"\111\14\7\0\188\6\0\12\8\0\0\0\159\6\9\1\77\6\5\145\3\0\0\0\77\7\4\104\4\0\0\0\77\8\2\135\1\0\0\0\106\8\6\7\77\7\4\104\4\0\0\0\149\6\7\9\48\6\4\104\4\0\0\0\82\8\3\0\111\9\10\0\251\10\1\0\82\12\4\0\111\13\11\0\140\14\0\0\77\16\4\104\4\0\0\0\120\15\16\9\188\10\10\107\12\0\0\0\159\10\6\0\188\6\0\34\13\0\0\0\159\6\0\1\140\8\0\0\77\10\2\135\1\0\0\0\77\9\10\50\14\0\0\0\120\6\9\9\140\7\1\0\168\6\25\0\77\12\2\177\15\0\0\0\135\11\12\8\77\10\11\138\16\0\0\0\111\11\17\0\154\10\3\0\11\0\0\0\111\9\18\0\101\0\1\0\111\9\19\0\251\10\1\0\82\12\4\0\82\13\9\0\140\14\0\0\77\17\2\177\15\0\0\0\135\16\17\8\77\15\16\154\20\0\0\0\140\16\0\0\188\10\10\93\21\0\0\0\159\10\7\1\139\6\231\255\130\0\1\0\22\3\126\3\159\2\3\123\3\70\3\235\3\3\248\1\3\211\2\3\212\2\3\213\2\2\0\0\0\0\0\0\240\63\3\223\2\3\236\3\3\162\2\3\201\3\3\136\2\3\132\2\3\247\1\3\225\2\3\242\2\3\227\2\3\160\2\3\175\2\0\237\3\82\134\33\1\0\1\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\254\255\255\255\15\4\0\7\3\1\0\61\192\3\0\0\77\3\1\109\0\0\0\0\77\6\1\109\0\0\0\0\188\4\0\89\1\0\0\0\159\4\3\2\48\4\2\135\2\0\0\0\77\5\1\3\3\0\0\0\48\5\2\27\4\0\0\0\48\1\2\9\5\0\0\0\48\3\2\109\0\0\0\0\48\2\1\3\3\0\0\0\140\5\0\0\48\5\2" ..
"\25\6\0\0\0\140\5\255\255\48\5\2\75\7\0\0\0\251\6\0\0\77\5\6\140\8\0\0\0\48\5\2\226\9\0\0\0\140\5\0\0\48\5\2\222\10\0\0\0\140\5\0\0\48\5\2\17\11\0\0\0\140\5\0\0\48\5\2\104\12\0\0\0\140\5\0\0\48\5\2\154\13\0\0\0\140\5\0\0\48\5\2\220\14\0\0\0\198\5\0\0\48\5\2\227\15\0\0\0\77\5\1\98\16\0\0\0\48\5\4\98\16\0\0\0\140\5\2\0\48\5\4\115\17\0\0\0\255\5\0\0\0\0\0\0\48\5\2\137\18\0\0\0\130\0\1\0\19\3\123\3\180\3\3\159\2\3\126\3\221\3\3\185\2\3\171\2\3\172\2\3\169\2\3\177\2\3\201\2\3\209\2\3\235\3\3\204\3\3\173\2\3\217\3\3\102\3\139\2\3\208\2\0\238\3\61\153\33\1\0\1\0\0\0\0\1\0\1\0\0\0\1\0\1\0\1\0\1\0\0\1\0\0\1\0\0\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\0\1\0\0\1\0\0\0\4\0\10\2\1\0\64\192\2\0\0\77\2\1\109\0\0\0\0\77\3\1\3\1\0\0\0\77\4\3\135\2\0\0\0\82\7\1\0\140\8\0\0\188\5\0\219\3\0\0\0\159\5\4\1\251\5\0\0\82\7\3\0\140\8\0\0\140\9\0\0\188\5\5\80\4\0\0\0\159\5\5\1\77\5\3\25\5\0\0\0\48\5\4\46\6\0\0\0\77\5\3\25\5\0\0\0\48\5\4\8\7\0\0\0\77\5\3\17\8\0\0\0\48\5\4\117\9\0\0\0\77\5\3\104\10\0\0\0\48\5\4\190\11\0\0\0\77\5\3\154\12\0\0\0\48\5\4\75\13\0\0\0\77\5\4\50\14\0\0\0\48\5\4\2\15\0\0\0\77\7\3\227\16\0\0\0\198\8\0\0\241\7\2\0\8\0\0\0\169\6\0\1\169\6\1\0\76\1\0\2\164\5\18\0\0\0\16\65\159\5\2\1\77\5\3\27\19\0\0\0\48\5\1\3\1\0" ..
"\0\0\14\3\4\0\82\7\1\0\188\5\0\247\20\0\0\0\159\5\3\1\130\0\1\0\21\3\123\3\126\3\159\2\3\213\3\3\182\2\3\171\2\3\243\1\3\252\1\3\209\2\3\246\1\3\235\3\3\248\1\3\204\3\3\254\1\3\136\2\3\131\2\3\217\3\3\33\4\0\0\16\65\3\221\3\3\187\3\0\239\3\64\181\33\1\0\1\0\1\0\1\0\0\0\0\1\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\1\0\10\3\2\0\29\192\3\0\0\77\3\1\3\0\0\0\0\255\4\0\0\0\0\0\0\251\5\0\0\82\7\3\0\82\8\2\0\188\5\5\187\1\0\0\0\159\5\4\1\251\5\1\0\82\7\1\0\188\5\5\211\2\0\0\0\159\5\3\1\82\7\1\0\82\8\4\0\188\5\0\32\3\0\0\0\159\5\4\1\251\5\0\0\82\7\3\0\82\8\2\0\82\9\4\0\188\5\5\13\4\0\0\0\159\5\5\1\130\0\1\0\5\3\126\3\249\2\3\133\1\3\203\3\3\137\3\0\240\3\29\215\33\2\0\1\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\7\3\2\0\24\192\3\0\0\251\3\0\0\82\5\1\0\188\3\3\211\0\0\0\0\159\3\3\1\82\5\1\0\82\6\2\0\188\3\0\204\1\0\0\0\159\3\4\1\251\3\1\0\77\5\1\3\2\0\0\0\82\6\2\0\188\3\3\166\3\0\0\0\159\3\4\1\82\5\1\0\111\6\4\0\188\3\0\208\5\0\0\0\159\3\4\1\130\0\1\0\6\3\133\1\3\241\3\3\126\3\250\2\3\153\1\3\195\3\0\242\3\24\229\33\2\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\18\3\1\0\79\192\3\0\0\77\3\1\3\0\0\0\0\77\5\1\3\0\0\0\0\77\4\5\222\1\0\0\0\255\5" ..
"\0\0\0\0\0\0\255\6\0\0\0\0\0\0\77\8\1\149\2\0\0\0\77\7\8\250\3\0\0\0\111\8\4\0\154\7\16\0\8\0\0\0\82\9\3\0\77\10\2\114\5\0\0\0\77\11\0\140\6\0\0\0\111\12\7\0\188\7\0\123\8\0\0\0\159\7\6\1\82\9\1\0\82\10\5\0\188\7\0\32\9\0\0\0\159\7\4\1\101\0\5\0\82\9\1\0\82\10\5\0\188\7\0\50\10\0\0\0\159\7\4\1\77\8\2\114\5\0\0\0\149\7\8\11\48\7\2\114\5\0\0\0\82\9\1\0\111\10\12\0\188\7\0\208\13\0\0\0\159\7\4\1\251\7\0\0\82\9\3\0\82\10\5\0\188\7\7\188\14\0\0\0\159\7\4\2\82\10\1\0\82\11\6\0\188\8\0\204\15\0\0\0\159\8\4\1\251\8\0\0\82\10\3\0\111\11\16\0\77\13\2\149\2\0\0\0\77\12\13\154\17\0\0\0\82\13\7\0\251\14\0\0\82\16\3\0\82\17\6\0\188\14\14\188\14\0\0\0\159\14\4\0\188\8\8\93\18\0\0\0\159\8\0\1\48\4\3\222\1\0\0\0\130\0\1\0\19\3\126\3\201\2\3\109\3\110\3\97\3\243\3\3\117\3\244\3\3\186\3\3\203\3\3\242\3\2\0\0\0\0\0\0\240\63\3\83\3\195\3\3\252\2\3\241\3\3\255\2\3\160\2\3\175\2\0\245\3\79\254\33\2\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\2\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\1\0\9\3\2\0\45\192\3\0\0\77\4\2\151\0\0\0\0\77\3\4\138\1\0\0\0\111\4\2\0\154\3\2\0\4\0\0\0\130\0\1\0\251\3\0\0\82\5\1\0\77\6\2\151\0\0\0\0\188\3\3\66\3\0\0\0\159\3\4\1\77\3\2\151\0\0\0\0\111\4\2\0\48\4\3\138" ..
"\1\0\0\0\77\3\2\81\4\0\0\0\251\5\1\0\77\4\5\240\5\0\0\0\154\3\17\0\4\0\0\0\251\3\0\0\82\5\1\0\77\7\2\149\6\0\0\0\77\6\7\154\7\0\0\0\77\7\2\85\8\0\0\0\77\8\2\81\4\0\0\0\188\3\3\21\9\0\0\0\159\3\6\1\140\3\0\0\48\3\2\81\4\0\0\0\130\0\1\0\10\3\246\3\3\247\1\3\243\2\3\248\2\3\247\3\3\175\3\3\109\3\160\2\3\248\3\3\178\3\0\249\3\45\149\34\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\2\0\9\3\1\0\69\192\3\0\0\77\3\2\81\0\0\0\0\140\4\0\0\154\3\2\0\4\0\0\0\130\0\1\0\77\6\2\151\1\0\0\0\77\5\6\138\2\0\0\0\188\3\0\211\3\0\0\0\159\3\3\2\14\3\26\0\251\3\0\0\82\5\1\0\77\6\2\151\1\0\0\0\188\3\3\88\4\0\0\0\159\3\4\1\251\3\0\0\82\5\1\0\77\7\2\149\5\0\0\0\77\6\7\154\6\0\0\0\77\7\2\85\7\0\0\0\77\8\0\107\8\0\0\0\188\3\3\21\9\0\0\0\159\3\6\1\77\4\2\85\7\0\0\0\120\3\4\10\48\3\2\85\7\0\0\0\130\0\1\0\77\4\2\151\1\0\0\0\77\3\4\138\2\0\0\0\111\4\11\0\241\3\8\0\4\0\0\0\251\3\0\0\82\5\1\0\77\6\2\151\1\0\0\0\188\3\3\66\12\0\0\0\159\3\4\1\251\3\0\0\82\5\1\0\77\7\2\149\5\0\0\0\77\6\7\154\6\0\0\0\77\7\2\85\7\0\0\0\77\8\2\81\0\0\0\0\188\3\3\21\9\0\0\0\159\3\6\1\130\0\1\0\13\3\247\3\3\246\3\3\247\1\3\182\3\3\166\2\3\109\3\160\2\3\248\3\3\164\2\3\178\3\2\0\0\0\0\0\0\240\63\3\243\2\3\248\2\0\250\3\69\163\34\1" ..
"\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\2\0\9\3\0\0\28\192\3\0\0\82\5\1\0\77\6\2\151\0\0\0\0\188\3\0\204\1\0\0\0\159\3\4\1\77\5\1\3\2\0\0\0\77\6\2\85\3\0\0\0\77\7\0\140\4\0\0\0\111\8\5\0\188\3\0\123\6\0\0\0\159\3\6\1\77\4\2\85\3\0\0\0\149\3\4\7\48\3\2\85\3\0\0\0\77\4\2\81\8\0\0\0\149\3\4\7\48\3\2\81\8\0\0\0\130\0\1\0\9\3\246\3\3\241\3\3\126\3\248\3\3\117\3\244\3\3\186\3\2\0\0\0\0\0\0\240\63\3\247\3\0\251\3\28\181\34\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\13\3\3\0\186\1\192\3\0\0\77\3\1\3\0\0\0\0\77\4\1\97\1\0\0\0\251\5\0\0\82\7\3\0\111\8\2\0\140\9\0\0\140\10\0\0\140\11\0\0\188\5\5\93\3\0\0\0\159\5\7\2\255\6\0\0\0\0\0\0\255\7\0\0\0\0\0\0\48\7\6\151\4\0\0\0\140\7\0\0\140\8\0\0\140\9\0\0\48\7\6\85\5\0\0\0\48\8\6\114\6\0\0\0\48\9\6\81\7\0\0\0\48\2\6\149\8\0\0\0\82\9\2\0\111\10\9\0\82\11\5\0\188\7\0\34\10\0\0\0\159\7\5\1\77\9\6\151\4\0\0\0\111\10\11\0\140\11\0\0\188\7\0\34\10\0\0\0\159\7\5\1\251\7\0\0\77\9\1\3\0\0\0\0\82\10\2\0\188\7\7\66\12\0\0\0\159\7\4\1\82\9\1\0\111\10\13\0\188\7\0\208\14\0\0\0\159\7\4\1\169\8\1\0\77\10\6\151\4\0\0\0\77\9\10\138\15\0\0\0\111\10\11\0\241\9\8\0\10\0\0\0\77" ..
"\9\6\81\7\0\0\0\140\10\0\0\183\10\2\0\9\0\0\0\169\8\0\1\169\8\1\0\76\1\0\2\164\7\17\0\0\0\0\65\159\7\2\1\77\8\1\149\8\0\0\0\77\7\8\250\18\0\0\0\111\8\19\0\241\7\64\0\8\0\0\0\82\9\3\0\82\10\6\0\188\7\0\168\20\0\0\0\159\7\4\1\77\8\1\149\8\0\0\0\77\7\8\250\18\0\0\0\111\8\21\0\154\7\25\0\8\0\0\0\251\8\1\0\82\10\1\0\188\8\8\121\22\0\0\0\159\8\3\1\77\9\1\121\22\0\0\0\77\8\9\250\18\0\0\0\111\9\23\0\241\8\7\0\9\0\0\0\82\10\1\0\82\11\6\0\188\8\0\210\24\0\0\0\159\8\4\1\101\0\20\0\82\10\1\0\82\11\6\0\188\8\0\32\25\0\0\0\159\8\4\1\101\0\14\0\111\8\26\0\154\7\7\0\8\0\0\0\82\10\1\0\82\11\6\0\188\8\0\32\25\0\0\0\159\8\4\1\101\0\5\0\82\10\1\0\82\11\6\0\188\8\0\210\24\0\0\0\159\8\4\1\82\10\1\0\111\11\27\0\188\8\0\39\28\0\0\0\159\8\4\2\43\8\6\0\82\10\1\0\111\11\29\0\188\8\0\39\28\0\0\0\159\8\4\2\14\8\1\0\72\0\167\255\82\9\1\0\111\10\19\0\111\11\13\0\82\12\4\0\188\7\0\24\30\0\0\0\159\7\6\1\82\9\3\0\82\10\6\0\188\7\0\138\31\0\0\0\159\7\4\1\251\7\2\0\77\11\3\135\32\0\0\0\77\10\11\35\33\0\0\0\135\9\10\5\77\12\6\85\5\0\0\0\188\10\0\52\34\0\0\0\159\10\3\0\188\7\7\194\35\0\0\0\159\7\0\1\251\7\2\0\77\11\3\135\32\0\0\0\77\10\11\35\33\0\0\0\135\9\10\5\77\12\6\114\6\0\0\0\188\10\0\52\34\0\0\0\159\10\3\0\188\7\7\66\36\0\0\0\159\7\0\1\130\0\1\0\37\3\126\3\105\3\252\3\3\175\2\3\246\3\3\248\3\3\243\3\3\247\3\3\109\3\223" ..
"\2\3\201\3\3\243\2\3\248\2\3\253\3\3\195\3\3\247\1\3\33\4\0\0\0\65\3\110\3\254\3\3\249\3\3\97\3\120\3\83\3\251\3\3\245\3\3\150\1\3\255\3\3\193\3\3\128\4\3\199\3\3\250\3\3\159\2\3\244\1\3\181\3\3\189\1\3\192\1\0\129\4\186\1\192\34\4\0\1\0\1\0\0\0\0\0\0\0\0\1\0\1\0\0\0\1\0\0\0\0\0\0\0\0\1\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\2\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\2\0\0\1\0\0\0\0\0\2\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\16\2\2\0\112\192\2\0\0\77\2\1\3\0\0\0\0\77\3\2\135\1\0\0\0\140\4\0\0\140\5\0\0\48\5\3\126\2\0\0\0\77\6\1\149\3\0\0\0\77\5\6\250\4\0\0\0\111\6\5\0\241\5\74\0\6\0\0\0\77\6\1\149\3\0\0\0\77\5\6\250\4\0\0\0\111\6\6\0\154\5\12\0\6\0\0\0\82\8\1\0\82\11\1\0\188\9\0\222\7\0\0\0\159\9\3\2\82\10\4\0\188\6\0\192\8\0\0\0\159\6\5\1\149\4\4\9\101\0\43\0\111\6\10\0\154\5\28\0\6\0\0\0\251\6\0\0\82\8\1\0\188\6\6\211\11\0\0\0\159\6\3\1\82\8\1\0\111\9\12\0\82\10\4\0\188\6\0\114\13\0\0\0\159\6\5\1\149\4\4\9\77\7\0\1\14\0\0\0\77\8\0\168\15\0\0\0\67\6\7\8\48\6\3\126\2\0\0\0\77\7\3\126\2\0\0\0\77\8\0\74\16" ..
"\0\0\0\67\6\7\8\48\6\3\126\2\0\0\0\101\0\13\0\251\6\0\0\82\8\1\0\111\10\17\0\111\15\18\0\188\13\0\251\19\0\0\0\159\13\3\2\82\11\13\0\111\12\20\0\115\9\10\12\188\6\6\228\21\0\0\0\159\6\4\1\77\6\3\126\2\0\0\0\140\7\0\0\154\6\8\0\7\0\0\0\82\8\1\0\111\9\22\0\188\6\0\39\23\0\0\0\159\6\4\2\14\6\1\0\72\0\183\255\82\7\1\0\82\8\4\0\188\5\0\199\24\0\0\0\159\5\4\1\77\6\2\220\25\0\0\0\77\8\3\126\2\0\0\0\77\9\0\244\26\0\0\0\207\7\8\9\38\5\6\7\48\5\3\165\27\0\0\0\251\5\1\0\82\7\2\0\77\8\2\220\25\0\0\0\188\5\5\95\28\0\0\0\159\5\4\1\130\0\1\0\29\3\126\3\159\2\3\138\2\3\109\3\110\3\130\4\3\97\3\200\3\3\208\3\2\0\0\0\0\0\0\240\63\3\174\1\3\133\1\3\131\4\3\209\3\3\132\4\3\133\4\3\134\4\3\135\4\3\86\3\179\3\3\188\3\3\111\3\255\3\3\193\3\3\212\3\3\173\2\3\136\4\3\137\2\3\205\2\0\137\4\112\238\34\2\0\1\0\1\1\0\0\1\0\0\0\0\0\0\2\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\1\0\1\0\0\1\0\0\0\0\4\0\0\0\0\0\1\1\0\0\0\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\12\5\0\0\74\192\5\0\0\255\5\0\0\0\0\0\0\255\6\0\0\0\0\0\0\48\6\5\177\0\0\0\0\255\6\0\0\0\0\0\0\48\6\5\220\1\0\0\0\82\8\1\0\82\9\5\0\188\6\0\136\2\0\0\0\159\6\4\1\77\6\5\135\3\0\0\0\48\4\6\138\4\0\0\0\82\8\1\0\111\9\5\0\188\6\0\208" ..
"\6\0\0\0\159\6\4\1\14\3\11\0\82\8\1\0\111\9\7\0\140\10\0\0\188\6\0\114\8\0\0\0\159\6\5\1\82\8\1\0\140\9\1\0\188\6\0\199\9\0\0\0\159\6\4\1\82\8\1\0\188\6\0\254\10\0\0\0\159\6\3\1\82\8\1\0\111\9\11\0\188\6\0\208\6\0\0\0\159\6\4\1\82\8\1\0\188\6\0\60\12\0\0\0\159\6\3\1\77\6\5\135\3\0\0\0\77\7\1\97\13\0\0\0\48\7\6\106\14\0\0\0\82\8\1\0\111\9\15\0\111\10\16\0\82\11\4\0\188\6\0\24\17\0\0\0\159\6\6\1\82\8\1\0\188\6\0\80\18\0\0\0\159\6\3\1\82\8\1\0\82\9\5\0\82\10\2\0\188\6\0\48\19\0\0\0\159\6\5\1\130\0\1\0\20\3\132\2\3\183\3\3\238\3\3\159\2\3\134\2\3\138\4\3\195\3\3\139\4\3\209\3\3\212\3\3\137\4\3\130\4\3\140\4\3\105\3\135\2\3\141\4\3\142\4\3\199\3\3\239\3\3\237\3\0\143\4\74\148\35\2\0\1\0\0\0\1\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\1\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\8\3\1\0\28\192\3\0\0\140\3\1\0\82\6\1\0\82\7\2\0\188\4\0\204\0\0\0\0\159\4\4\1\82\6\1\0\111\7\1\0\188\4\0\39\2\0\0\0\159\4\4\2\14\4\14\0\251\4\0\0\77\6\1\3\3\0\0\0\82\7\2\0\188\4\4\66\4\0\0\0\159\4\4\1\82\6\1\0\82\7\2\0\188\4\0\204\0\0\0\0\159\4\4\1\149\3\3\5\72\0\236\255\130\3\2\0\6\3\241\3\3\255\3\3\193\3\3\126\3\248\2\2\0\0\0\0\0\0\240\63\0\144\4\28\173\35\2\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0" ..
"\0\1\0\2\0\20\3\2\0\155\1\192\3\0\0\77\3\1\3\0\0\0\0\255\4\0\0\0\0\0\0\198\5\0\0\77\6\1\97\1\0\0\0\77\8\1\149\2\0\0\0\77\7\8\250\3\0\0\0\111\8\4\0\154\7\46\0\8\0\0\0\77\8\1\188\5\0\0\0\241\6\7\0\8\0\0\0\251\8\0\0\82\10\1\0\111\11\6\0\188\8\8\228\7\0\0\0\159\8\4\1\251\8\0\0\82\10\1\0\188\8\8\211\8\0\0\0\159\8\3\1\77\9\1\149\2\0\0\0\77\8\9\250\3\0\0\0\111\9\9\0\154\8\5\0\9\0\0\0\111\8\10\0\48\8\4\138\11\0\0\0\101\0\11\0\82\10\1\0\82\11\4\0\188\8\0\176\12\0\0\0\159\8\4\1\251\8\1\0\82\10\3\0\82\11\4\0\188\8\8\88\13\0\0\0\159\8\4\1\82\10\1\0\111\11\9\0\111\12\4\0\82\13\6\0\188\8\0\24\14\0\0\0\159\8\6\1\101\0\34\0\111\8\15\0\154\7\7\0\8\0\0\0\82\10\1\0\82\11\4\0\188\8\0\215\16\0\0\0\159\8\4\1\101\0\25\0\111\8\17\0\154\7\16\0\8\0\0\0\82\10\1\0\82\11\4\0\77\13\1\149\2\0\0\0\77\12\13\168\18\0\0\0\188\8\0\76\19\0\0\0\159\8\5\1\251\8\0\0\82\10\1\0\188\8\8\211\8\0\0\0\159\8\3\1\101\0\7\0\251\8\0\0\82\10\1\0\111\11\20\0\188\8\8\228\7\0\0\0\159\8\4\1\130\0\1\0\77\10\2\138\11\0\0\0\111\11\21\0\241\10\2\0\11\0\0\0\169\9\0\1\169\9\1\0\76\1\0\2\164\8\23\0\0\0\96\65\159\8\2\1\77\8\2\154\24\0\0\0\77\11\4\138\11\0\0\0\188\9\0\211\25\0\0\0\159\9\3\2\14\9\3\0\77\5\0\107\26\0\0\0\101\0\15\0\77\9\4\138\11\0\0\0\111\10\10\0\241\9\7\0\10\0\0\0\251\9\1\0\82\11\3\0\82\12\4\0\188\9\9\66\27\0\0" ..
"\0\159\9\4\1\77\9\3\222\28\0\0\0\149\10\8\29\38\5\9\10\82\11\2\0\111\12\30\0\251\13\1\0\82\15\3\0\111\16\31\0\82\17\8\0\149\18\5\29\140\19\2\0\188\13\13\93\32\0\0\0\159\13\7\0\188\9\0\34\33\0\0\0\159\9\0\1\251\9\1\0\82\11\3\0\82\12\6\0\188\9\9\21\34\0\0\0\159\9\4\1\149\9\8\29\48\9\3\222\28\0\0\0\130\0\1\0\35\3\126\3\105\3\109\3\110\3\138\4\3\127\3\145\4\3\111\3\133\1\3\130\4\3\243\2\3\247\1\3\144\4\3\166\2\3\199\3\3\253\3\3\129\4\3\98\3\131\1\3\202\3\3\146\4\3\206\2\3\33\4\0\0\96\65\3\160\2\3\182\3\3\164\2\3\248\2\3\201\2\2\0\0\0\0\0\0\240\63\3\221\2\3\147\4\3\175\2\3\201\3\3\170\3\0\148\4\155\1\190\35\1\0\1\0\1\1\0\1\0\0\0\1\0\0\1\0\0\0\1\0\0\0\0\0\2\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\2\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\1\2\0\0\0\0\0\0\0\0\0\0\1\0\1\0\0\0\0\0\1\0\0\2\0\0\0\0\1\0\0\0\0\0\2\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\2\0\11\3\2\0\51\192\3\0\0\77\4\1\149\0\0\0\0\77\3\4\250\1\0\0\0\111\4\2\0\154\3\28\0\4\0\0\0\77\4\1\97\3\0\0\0\251\5\0\0\82\7\1\0\188\5\5\211\4\0\0\0\159\5\3\1\82\7\1\0\82\8\2\0\188\5\0\204\5\0\0\0\159\5\4\1\82\7\1\0\111\8\6\0\111\9\2\0\82\10\4\0\188\5\0\24\7\0\0\0\159\5\6\1\251\5\1\0\77\7\1\3\8\0\0\0\82\8\2\0" ..
"\188\5\5\225\9\0\0\0\159\5\4\1\130\0\1\0\111\4\10\0\154\3\7\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\87\11\0\0\0\159\4\4\1\130\0\1\0\251\4\0\0\82\6\1\0\111\7\12\0\188\4\4\228\13\0\0\0\159\4\4\1\130\0\1\0\14\3\109\3\110\3\138\4\3\105\3\133\1\3\241\3\3\130\4\3\199\3\3\126\3\233\2\3\97\3\223\3\3\149\4\3\111\0\150\4\51\241\35\2\0\0\0\1\0\0\1\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\2\0\0\0\0\0\2\0\11\3\2\0\97\192\3\0\0\77\3\1\3\0\0\0\0\82\6\1\0\82\7\2\0\188\4\0\9\1\0\0\0\159\4\4\1\77\5\1\149\2\0\0\0\77\4\5\250\3\0\0\0\111\5\4\0\154\4\7\0\5\0\0\0\82\7\1\0\82\8\2\0\188\5\0\255\5\0\0\0\159\5\4\1\101\0\74\0\111\5\6\0\154\4\22\0\5\0\0\0\255\5\0\0\0\0\0\0\251\6\0\0\82\8\3\0\82\9\2\0\188\6\6\187\7\0\0\0\159\6\4\1\82\8\1\0\82\9\5\0\188\6\0\50\8\0\0\0\159\6\4\1\251\6\0\0\82\8\3\0\82\9\2\0\82\10\5\0\188\6\6\13\9\0\0\0\159\6\5\1\101\0\50\0\111\5\10\0\154\4\26\0\5\0\0\0\255\5\0\0\0\0\0\0\251\6\1\0\82\8\1\0\188\6\6\211\11\0\0\0\159\6\3\1\82\8\1\0\82\9\5\0\188\6\0\32\12\0\0\0\159\6\4\1\251\6\0\0\82\8\3\0\82\9\2\0\82\10\5\0\188\6\6\121\13\0\0\0\159\6\5\1\82\8\1\0\82\9\2\0\188\6\0\244\14\0\0\0\159\6\4\1\101\0\22\0\111\5\15\0\241\4\7\0\5\0\0\0\111\5\16\0\241\4\4\0\5\0\0\0\111\5\17\0\154\4\13\0\5\0\0\0\251\5\0\0\82\7\3" ..
"\0\82\8\2\0\188\5\5\66\18\0\0\0\159\5\4\1\82\7\1\0\82\8\2\0\188\5\0\244\14\0\0\0\159\5\4\1\101\0\1\0\130\0\1\0\72\0\168\255\130\0\1\0\19\3\126\3\150\4\3\109\3\110\3\121\3\240\3\3\150\1\3\249\2\3\242\3\3\137\3\3\151\4\3\133\1\3\203\3\3\130\3\3\148\4\3\138\4\3\98\3\253\3\3\248\2\0\152\4\97\135\36\3\0\1\0\0\0\0\2\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\1\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\1\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\2\0\3\0\17\3\2\0\158\1\192\3\0\0\77\4\1\149\0\0\0\0\77\3\4\250\1\0\0\0\111\4\2\0\154\3\14\0\4\0\0\0\82\6\2\0\111\7\3\0\140\8\0\0\188\4\0\34\4\0\0\0\159\4\5\1\77\5\1\149\0\0\0\0\77\4\5\168\5\0\0\0\48\4\2\28\6\0\0\0\101\0\131\0\111\4\7\0\154\3\11\0\4\0\0\0\82\6\1\0\82\7\2\0\77\9\1\149\0\0\0\0\77\8\9\168\5\0\0\0\188\4\0\76\8\0\0\0\159\4\5\1\101\0\118\0\111\4\9\0\154\3\8\0\4\0\0\0\82\6\2\0\111\7\10\0\140\8\0\0\188\4\0\34\4\0\0\0\159\4\5\1\101\0\108\0\111\4\11\0\154\3\8\0\4\0\0\0\82\6\2\0\111\7\12\0\140\8\0\0\188\4\0\34\4\0\0\0\159\4\5\1\101\0\98\0\111\4\13\0\154\3\8\0\4\0\0\0\82\6\2\0\111\7\14\0\140\8\0\0\188\4\0\34\4\0\0\0\159\4\5\1\101\0\88\0\111\4\15\0\154\3\54\0\4\0\0\0\77\4\1\3\16\0\0\0\82\7\1\0\77\10\4\135\17\0\0\0\77\9\10\126\18\0\0\0\140\10\0" ..
"\0\154\9\2\0\10\0\0\0\169\8\0\1\169\8\1\0\111\10\19\0\111\15\20\0\188\13\0\251\21\0\0\0\159\13\3\2\82\11\13\0\111\12\22\0\115\9\10\12\188\5\0\218\23\0\0\0\159\5\5\1\77\6\4\135\17\0\0\0\77\5\6\126\18\0\0\0\77\6\0\168\24\0\0\0\125\6\8\0\5\0\0\0\77\6\4\135\17\0\0\0\77\8\0\168\24\0\0\0\38\7\5\8\48\7\6\126\18\0\0\0\82\8\2\0\111\9\25\0\251\10\0\0\82\12\4\0\111\13\26\0\140\14\0\0\140\15\1\0\140\16\0\0\188\10\10\93\27\0\0\0\159\10\7\0\188\6\0\34\4\0\0\0\159\6\0\1\101\0\32\0\111\4\28\0\154\3\7\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\215\29\0\0\0\159\4\4\1\130\0\1\0\111\4\30\0\154\3\15\0\4\0\0\0\251\4\1\0\82\6\1\0\188\4\4\211\31\0\0\0\159\4\3\1\82\6\1\0\82\7\2\0\169\8\0\0\77\9\1\97\32\0\0\0\188\4\0\71\33\0\0\0\159\4\6\1\130\0\1\0\82\6\1\0\82\7\2\0\188\4\0\97\34\0\0\0\159\4\4\1\130\0\1\0\251\4\1\0\82\6\1\0\188\4\4\211\31\0\0\0\159\4\3\1\130\0\1\0\35\3\109\3\110\3\99\3\168\2\3\201\3\3\131\1\3\241\2\3\98\3\202\3\3\153\4\3\236\2\3\154\4\3\238\2\3\155\4\3\237\2\3\174\1\3\126\3\159\2\3\138\2\3\156\4\3\86\3\179\3\3\157\4\3\196\3\3\133\4\3\222\2\3\158\4\3\175\2\3\253\3\3\129\4\3\142\4\3\133\1\3\105\3\143\4\3\152\4\0\159\4\158\1\168\36\3\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\1\0\1\0\0\0\0\0\0" ..
"\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\2\0\0\0\0\1\2\0\0\0\0\1\0\3\2\0\0\18\192\2\0\0\111\2\0\0\154\1\3\0\2\0\0\0\111\2\1\0\130\2\2\0\111\2\2\0\154\1\3\0\2\0\0\0\111\2\3\0\130\2\2\0\111\2\4\0\154\1\3\0\2\0\0\0\111\2\5\0\130\2\2\0\111\2\6\0\130\2\2\0\7\3\160\4\3\151\3\3\163\1\3\150\3\3\41\3\152\3\3\161\4\0\162\4\18\212\36\1\0\0\1\0\1\0\0\1\0\1\0\0\1\0\2\0\0\4\2\0\0\8\192\2\0\0\77\3\0\120\0\0\0\0\135\2\3\1\14\2\1\0\130\2\2\0\111\3\1\0\130\3\2\0\2\3\163\4\3\164\4\0\165\4\8\246\36\1\0\0\1\0\0\0\0\18\4\2\0\107\192\4\0\0\82\6\1\0\188\4\0\128\0\0\0\0\159\4\3\1\77\7\1\149\1\0\0\0\77\6\7\250\2\0\0\0\188\4\0\25\3\0\0\0\159\4\3\2\111\5\4\0\241\4\22\0\5\0\0\0\251\5\0\0\82\7\1\0\188\5\5\211\5\0\0\0\159\5\3\1\82\7\1\0\82\8\2\0\77\9\0\159\6\0\0\0\188\5\0\16\7\0\0\0\159\5\5\1\251\5\1\0\77\7\1\3\8\0\0\0\82\8\4\0\82\9\2\0\188\5\5\42\9\0\0\0\159\5\5\1\101\0\5\0\82\7\1\0\82\8\2\0\188\5\0\15\10\0\0\0\159\5\4\1\77\8\1\149\1\0\0\0\77\7\8\250\2\0\0\0\188\5\0\104\11\0\0\0\159\5\3\2\111\6\12\0\241\5\52\0\6\0\0\0\77\8\0\237\13\0\0\0\251\12\1\0\77\11\12\123\15\0\0\0\135\10\11\5\149\9\10\14\135\7\8\9\19\6\7\0\96\3\41\0\6\0" ..
"\0\0\255\6\0\0\0\0\0\0\251\7\0\0\82\9\1\0\188\7\7\211\5\0\0\0\159\7\3\1\251\7\1\0\77\9\1\3\8\0\0\0\82\10\5\0\82\11\2\0\188\7\7\3\16\0\0\0\159\7\5\1\82\9\1\0\82\10\6\0\77\13\0\237\13\0\0\0\251\17\1\0\77\16\17\123\15\0\0\0\135\15\16\5\149\14\15\14\135\12\13\14\19\11\12\1\188\7\0\16\7\0\0\0\159\7\5\2\251\8\1\0\77\10\1\3\8\0\0\0\82\11\5\0\82\12\2\0\82\13\6\0\188\8\8\79\17\0\0\0\159\8\6\1\82\5\7\0\72\0\202\255\82\8\1\0\188\6\0\177\18\0\0\0\159\6\3\1\130\5\2\0\19\3\228\3\3\109\3\110\3\162\4\3\161\4\3\133\1\3\166\4\3\167\4\3\126\3\153\3\3\159\4\3\165\4\3\164\4\3\168\4\2\0\0\0\0\0\0\240\63\3\169\4\3\163\3\3\169\3\3\229\3\0\167\4\107\157\37\1\0\0\0\1\0\0\0\0\0\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\0\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\2\0\0\0\1\0\8\3\0\0\8\192\3\0\0\82\5\1\0\82\6\2\0\140\7\0\0\188\3\0\16\0\0\0\0\159\3\5\1\130\0\1\0\1\3\167\4\0\241\3\8\188\37\1\0\0\0\0\0\1\0\3\2\0\0\20\192\2\0\0\111\2\0\0\241\1\13\0\2\0\0\0\111\2\1\0\241\1\10\0\2\0\0\0\111\2\2\0\241\1\7\0\2\0\0\0\111\2\3\0\241\1\4\0\2\0\0\0\111\2\4\0\154\1\3\0\2\0\0\0\169\2\1\0\130\2\2\0\169\2\0\0\130\2\2\0\5\3\170\4\3\171\4\3\141\4\3\172\4\3\124\0\173\4" ..
"\20\203\37\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\2\0\0\9\2\1\0\33\192\2\0\0\77\2\1\3\0\0\0\0\255\3\0\0\0\0\0\0\82\6\2\0\82\7\3\0\169\8\0\0\188\4\0\97\1\0\0\0\159\4\5\1\82\6\1\0\188\4\0\60\2\0\0\0\159\4\3\1\77\6\3\197\3\0\0\0\251\8\0\0\77\7\8\140\4\0\0\0\241\6\2\0\7\0\0\0\169\5\0\1\169\5\1\0\76\1\0\2\164\4\6\0\0\0\80\64\159\4\2\1\82\6\2\0\188\4\0\12\7\0\0\0\159\4\3\1\130\0\1\0\8\3\126\3\232\3\3\140\4\3\230\3\3\169\2\3\33\4\0\0\80\64\3\234\3\0\174\4\33\216\37\2\0\1\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\14\4\1\0\62\192\4\0\0\77\4\1\3\0\0\0\0\77\5\4\222\1\0\0\0\169\6\0\0\14\2\36\0\77\8\2\151\2\0\0\0\77\7\8\138\3\0\0\0\111\8\4\0\154\7\27\0\8\0\0\0\77\8\2\151\2\0\0\0\77\7\8\154\5\0\0\0\77\8\3\154\5\0\0\0\154\7\6\0\8\0\0\0\169\6\1\0\77\7\2\151\2\0\0\0\48\5\7\154\5\0\0\0\77\8\2\151\2\0\0\0\77\7\8\69\6\0\0\0\77\8\3\154\5\0\0\0\154\7\6\0\8\0\0\0\169\6\1\0\77\7\2\151\2\0\0\0\48\5\7\69\6\0\0\0\77\2\2\27\7\0\0\0\72\0\219\255\14\6\17\0\251\7\0\0\82\9\4\0\111\10\8\0\77\11\4\222\1\0\0\0\77\12\3\154\5\0\0\0\140\13\0\0\188\7\7\93\9\0\0\0\159\7\7\1\251\7\0\0\82\9\4\0\140\10\1\0\188\7\7\95\10\0\0\0\159\7\4\1\130\0\1\0\11\3\126\3\201\2\3\246\3\3\247\1\3\230\2\3\160\2\3\231\2\3\221\3\3\242\2\3\175\2\3\205\2\0\175\4\62" ..
"\241\37\1\0\1\0\1\1\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\1\0\0\0\2\0\0\0\0\0\0\0\1\1\0\0\0\3\0\0\2\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\15\4\1\0\153\1\192\4\0\0\255\4\0\0\0\0\0\0\77\6\2\151\0\0\0\0\77\5\6\138\1\0\0\0\82\8\1\0\169\9\1\0\111\10\2\0\241\5\14\0\10\0\0\0\169\9\1\0\111\10\3\0\241\5\10\0\10\0\0\0\169\9\1\0\111\10\4\0\241\5\6\0\10\0\0\0\111\10\5\0\241\5\2\0\10\0\0\0\169\9\0\1\169\9\1\0\111\10\6\0\188\6\0\218\7\0\0\0\159\6\5\1\82\8\1\0\111\9\8\0\188\6\0\39\9\0\0\0\159\6\4\2\14\6\49\0\255\6\0\0\0\0\0\0\255\7\0\0\0\0\0\0\48\7\6\151\0\0\0\0\48\2\6\27\10\0\0\0\82\9\1\0\77\10\6\151\0\0\0\0\188\7\0\97\11\0\0\0\159\7\4\1\77\8\6\151\0\0\0\0\77\7\8\138\1\0\0\0\111\8\2\0\154\7\8\0\8\0\0\0\82\9\1\0\82\10\2\0\77\11\6\151\0\0\0\0\188\7\0\51\12\0\0\0\159\7\5\1\77\9\1\3\13\0\0\0\82\10\3\0\77\12\0\107\14\0\0\0\77\14\1\109\15\0\0\0\77\13\14\223\16\0\0\0\38\11\12\13\111\12\17\0\188\7\0\123\18\0\0\0\159\7\6\1\82\9\1\0\82\10\6\0\149\11\3\19\188\7\0\193\20\0\0\0\159\7\5\1\101\0\49\0\82\8\1\0\111\9\21\0\188\6\0\208\22\0\0\0\159\6\4\1\82\8\1\0\82\9\4\0\188\6\0\176\23\0\0\0\159\6\4\2\241\6\21\0\3\0\0\0\82\9\1\0\82\10\3\0\82\11\6\0\82\12\4\0\188\7\0\225\24\0\0\0\159\7\6\1\96\3\29\0\6\0\0\0\77\7\1\3\13\0\0\0\77\10\1\3\13\0\0\0\77\9\10\222\25\0\0\0" ..
"\38\10\6\3\38\8\9\10\48\8\7\222\25\0\0\0\101\0\17\0\251\7\0\0\77\9\1\3\13\0\0\0\82\10\4\0\188\7\7\245\26\0\0\0\159\7\4\1\251\7\0\0\77\9\1\3\13\0\0\0\77\10\2\151\0\0\0\0\82\11\4\0\188\7\7\215\27\0\0\0\159\7\5\1\130\0\1\0\82\8\4\0\111\9\28\0\77\12\1\3\13\0\0\0\77\11\12\222\25\0\0\0\120\10\11\19\188\6\0\34\29\0\0\0\159\6\5\1\251\6\0\0\77\8\1\3\13\0\0\0\77\9\2\151\0\0\0\0\82\10\4\0\188\6\6\215\27\0\0\0\159\6\5\1\130\0\1\0\30\3\246\3\3\247\1\3\225\2\3\226\2\3\228\2\3\230\2\3\176\4\3\196\3\3\255\3\3\193\3\3\221\3\3\152\4\3\175\4\3\126\3\226\3\3\123\3\225\3\3\177\4\3\186\3\2\0\0\0\0\0\0\240\63\3\178\4\3\83\3\195\3\3\144\4\3\224\3\3\201\2\3\224\2\3\128\3\3\206\2\3\201\3\0\178\4\153\1\141\38\1\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\1\0\0\0\1\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\1\0\0\0\0\1\0\1\0\0\0\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\3\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\7\2\1\0\26\192\2\0\0\255\2\0\0\0\0\0\0\82\5\1\0\82\6\2\0\188\3\0\204\0\0\0\0\159\3\4\1\77\3\2\138\1\0\0\0\111\4\2\0\154\3\4\0\4\0\0\0\111\3\3\0\48\3\2\138\1\0\0\0\251\3\0\0\77\5\1\3\4\0\0\0\82\6\2\0\188\3\3\122\5\0\0" ..
"\0\159\3\4\1\77\3\2\135\6\0\0\0\130\3\2\0\7\3\241\3\3\247\1\3\236\2\3\237\2\3\126\3\134\3\3\159\2\0\179\4\26\180\38\2\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\12\2\2\0\50\192\2\0\0\77\2\1\3\0\0\0\0\77\3\2\227\1\0\0\0\169\4\0\0\14\3\10\0\77\5\3\239\2\0\0\0\43\5\7\0\77\5\3\88\3\0\0\0\14\5\1\0\169\4\1\0\77\3\3\4\4\0\0\0\72\0\245\255\43\3\6\0\251\5\0\0\82\7\1\0\111\8\5\0\188\5\5\228\6\0\0\0\159\5\4\1\14\4\10\0\251\5\1\0\82\7\2\0\111\8\7\0\77\9\3\220\8\0\0\0\140\10\0\0\140\11\0\0\188\5\5\93\9\0\0\0\159\5\7\1\251\5\1\0\82\7\2\0\77\8\3\197\10\0\0\0\251\9\1\0\82\11\2\0\188\9\9\51\11\0\0\0\159\9\3\0\188\5\5\26\12\0\0\0\159\5\0\2\48\5\3\197\10\0\0\0\130\0\1\0\13\3\126\3\217\3\3\231\3\3\219\3\3\218\3\3\180\4\3\111\3\233\3\3\173\2\3\175\2\3\230\3\3\180\2\3\179\2\0\181\4\50\193\38\2\0\1\0\1\1\0\0\0\1\0\0\0\1\0\0\2\1\0\0\0\0\0\2\1\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\13\3\2\0\63\192\3\0\0\77\3\1\3\0\0\0\0\255\4\0\0\0\0\0\0\251\5\0\0\82\7\1\0\188\5\5\211\1\0\0\0\159\5\3\1\251\5\1\0\82\7\3\0\188\5\5\3\2\0\0\0\159\5\3\2\82\8\1\0\188\6\0\29\3\0\0\0\159\6\3\2\82\9\3\0\82\10\4\0\169\11\1\0\188\7\0\97\4\0\0\0\159\7\5\1\82\9\1\0\111\10\5\0\188\7\0\208\6\0\0\0\159\7\4\1\82\9\1\0\188\7\0\141\7\0\0\0\159\7\3\1\251\7\1\0" ..
"\82\9\3\0\251\10\1\0\82\12\3\0\188\10\10\51\8\0\0\0\159\10\3\2\82\11\5\0\188\7\7\193\9\0\0\0\159\7\5\1\82\9\1\0\111\10\10\0\111\11\11\0\82\12\2\0\188\7\0\24\12\0\0\0\159\7\6\1\82\9\3\0\188\7\0\12\13\0\0\0\159\7\3\1\251\7\1\0\82\9\3\0\82\10\6\0\188\7\7\106\14\0\0\0\159\7\4\1\130\0\1\0\15\3\126\3\133\1\3\188\2\3\179\4\3\232\3\3\182\4\3\195\3\3\174\4\3\180\2\3\200\2\3\141\4\3\183\4\3\199\3\3\234\3\3\199\2\0\184\4\63\217\38\2\0\1\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\14\3\2\0\92\192\3\0\0\77\3\1\3\0\0\0\0\251\4\0\0\82\6\3\0\188\4\4\3\1\0\0\0\159\4\3\2\255\5\0\0\0\0\0\0\255\6\0\0\0\0\0\0\82\9\3\0\82\10\5\0\169\11\1\0\188\7\0\97\2\0\0\0\159\7\5\1\82\9\3\0\82\10\6\0\169\11\0\0\188\7\0\97\2\0\0\0\159\7\5\1\251\7\1\0\82\9\1\0\188\7\7\211\3\0\0\0\159\7\3\1\82\9\1\0\188\7\0\60\4\0\0\0\159\7\3\1\82\9\1\0\111\10\5\0\111\11\6\0\82\12\2\0\188\7\0\24\7\0\0\0\159\7\6\1\82\9\1\0\188\7\0\29\8\0\0\0\159\7\3\2\77\8\6\88\9\0\0\0\43\8\13\0\82\10\3\0\188\8\0\12\10\0\0\0\159\8\3\1\251\8\0\0\77\10\1\3\0\0\0\0\82\11\7\0\82\12\4\0\188\8\8\193\11\0\0\0\159\8\5\1\101\0\27\0\82\10\1\0\188\8\0\168\12\0\0\0\159\8\3\1\251\8\0\0\77\10\1\3\0\0\0\0\82\11\7\0\188\8\8\106\13\0\0\0\159\8\4" ..
"\1\82\10\3\0\188\8\0\12\10\0\0\0\159\8\3\1\251\8\0\0\77\10\1\3\0\0\0\0\251\11\0\0\82\13\3\0\188\11\11\51\14\0\0\0\159\11\3\2\82\12\4\0\188\8\8\193\11\0\0\0\159\8\5\1\82\10\3\0\188\8\0\12\10\0\0\0\159\8\3\1\130\0\1\0\15\3\126\3\188\2\3\232\3\3\133\1\3\140\4\3\172\4\3\185\4\3\199\3\3\179\4\3\219\3\3\234\3\3\200\2\3\181\4\3\199\2\3\180\2\0\186\4\92\237\38\2\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\1\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\8\2\1\0\18\192\2\0\0\255\2\0\0\0\0\0\0\82\5\1\0\82\6\2\0\188\3\0\204\0\0\0\0\159\3\4\1\77\3\2\138\1\0\0\0\251\4\0\0\77\6\1\3\2\0\0\0\82\7\2\0\188\4\4\66\3\0\0\0\159\4\4\1\130\3\2\0\4\3\241\3\3\247\1\3\126\3\248\2\0\187\4\18\136\39\1\0\1\0\0\0\0\1\0\1\0\0\0\0\0\0\1\0\16\6\1\0\105\192\6\0\0\255\6\0\0\0\0\0\0\77\7\1\3\0\0\0\0\82\10\1\0\140\11\3\0\188\8\0\199\1\0\0\0\159\8\4\1\82\10\1\0\111\11\2\0\188\8\0\208\3\0\0\0\159\8\4\1\14\5\11\0\251\8\0\0\82\10\7\0\111\11\4\0\82\12\2\0\251\14\0\0\77\13\14\140\5\0\0\0\188\8\8\200\6\0\0\0\159\8\6\2\43\8\5\0\251\8\0\0\82\10\7\0\188\8\8\51\7\0\0\0\159\8\3\2\82\11\7\0\82\12\6\0\169\13\0\0\188\9\0\97\8\0\0\0\159\9\5\1\82\11\1\0\82\12\4\0\188\9\0\199\1\0\0\0" ..
"\159\9\4\1\251\9\0\0\82\11\7\0\82\12\4\0\188\9\9\95\9\0\0\0\159\9\4\1\82\11\1\0\188\9\0\141\10\0\0\0\159\9\3\1\82\11\7\0\188\9\0\12\11\0\0\0\159\9\3\1\251\9\0\0\82\11\7\0\82\12\8\0\188\9\9\106\12\0\0\0\159\9\4\1\14\5\11\0\251\9\0\0\82\11\7\0\111\12\13\0\82\13\2\0\251\15\0\0\77\14\15\140\5\0\0\0\188\9\9\200\6\0\0\0\159\9\6\2\43\9\9\0\251\9\0\0\82\11\7\0\111\12\14\0\82\13\2\0\140\14\0\0\82\15\4\0\188\9\9\93\15\0\0\0\159\9\7\2\251\10\0\0\82\12\7\0\82\13\3\0\188\10\10\21\16\0\0\0\159\10\4\1\251\10\0\0\82\12\7\0\14\5\2\0\82\13\9\0\43\13\5\0\251\13\0\0\82\15\7\0\188\13\13\51\7\0\0\0\159\13\3\2\149\14\8\17\188\10\10\193\18\0\0\0\159\10\5\1\130\0\1\0\19\3\126\3\212\3\3\182\4\3\195\3\3\188\4\3\169\2\3\163\2\3\180\2\3\232\3\3\205\2\3\174\4\3\234\3\3\199\2\3\189\4\3\190\4\3\175\2\3\170\3\2\0\0\0\0\0\0\240\63\3\200\2\0\191\4\105\148\39\2\0\1\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\15\4\1\0\87\192\4\0\0\77\4\1\3\0\0\0\0\77\5\4\222\1\0\0\0\82\8\1\0\111\9\2\0\140\10\0\0\188\6\0\114\3\0\0\0\159\6\5\1\82\8\1\0\111\9\4\0\140\10\1\0\188\6\0\114\3\0\0\0\159\6\5\1\82\8\1\0\111\9\5\0\140\10\2\0\188\6\0" ..
"\114\3\0\0\0\159\6\5\1\82\8\1\0\82\9\2\0\140\10\3\0\188\6\0\192\6\0\0\0\159\6\5\1\82\8\1\0\111\9\7\0\188\6\0\208\8\0\0\0\159\6\4\1\82\8\1\0\188\6\0\170\9\0\0\0\159\6\3\1\82\8\1\0\111\9\10\0\188\6\0\208\8\0\0\0\159\6\4\1\82\8\1\0\188\6\0\170\9\0\0\0\159\6\3\1\82\8\1\0\111\9\10\0\188\6\0\39\11\0\0\0\159\6\4\2\14\6\5\0\82\8\1\0\188\6\0\170\9\0\0\0\159\6\3\1\101\0\20\0\251\6\0\0\82\8\4\0\111\9\12\0\77\10\4\222\1\0\0\0\251\11\0\0\82\13\4\0\140\14\1\0\188\11\11\251\13\0\0\0\159\11\4\0\188\6\6\107\14\0\0\0\159\6\0\1\251\6\0\0\82\8\4\0\140\9\1\0\188\6\6\95\15\0\0\0\159\6\4\1\82\8\1\0\82\9\5\0\82\10\3\0\140\11\1\0\169\12\1\0\188\6\0\243\16\0\0\0\159\6\7\1\130\0\1\0\17\3\126\3\201\2\3\192\4\3\209\3\3\193\4\3\194\4\3\208\3\3\83\3\195\3\3\187\4\3\255\3\3\193\3\3\240\2\3\216\2\3\162\2\3\205\2\3\191\4\0\195\4\87\172\39\2\0\1\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\1\0\16\3\1\0\86\192\3\0\0\77\3\1\3\0\0\0\0\255\4\0\0\0\0\0\0\140\5\0\0\77\6\3\222\1\0\0\0\82\9\1\0\111\10\2\0\82\11\5\0\188\7\0\114\3\0\0\0\159\7\5\1\149\5\5\4\82\9\1\0\111\10\5\0\82\11\5\0\188\7\0\114\3\0\0\0\159\7\5\1\149\5\5\4\82\9\1\0\111\10\6\0\82\11\5\0\188" ..
"\7\0\114\3\0\0\0\159\7\5\1\149\5\5\4\82\9\1\0\82\10\2\0\82\11\5\0\188\7\0\192\7\0\0\0\159\7\5\1\149\5\5\4\82\9\1\0\111\10\8\0\188\7\0\39\9\0\0\0\159\7\4\2\14\7\11\0\82\9\1\0\82\12\1\0\188\10\0\222\10\0\0\0\159\10\3\2\82\11\5\0\188\7\0\192\7\0\0\0\159\7\5\1\149\5\5\4\72\0\239\255\82\9\1\0\111\10\11\0\188\7\0\208\12\0\0\0\159\7\4\1\77\7\1\97\13\0\0\0\82\10\1\0\140\11\3\0\82\14\1\0\82\15\4\0\188\12\0\176\14\0\0\0\159\12\4\2\82\13\4\0\188\8\0\225\15\0\0\0\159\8\6\1\251\8\0\0\82\10\3\0\140\11\3\0\188\8\8\15\16\0\0\0\159\8\4\1\82\10\1\0\82\11\6\0\82\12\7\0\120\13\5\17\169\14\0\0\188\8\0\243\18\0\0\0\159\8\7\1\130\0\1\0\19\3\126\3\201\2\3\196\4\3\209\3\2\0\0\0\0\0\0\240\63\3\197\4\3\198\4\3\208\3\3\255\3\3\193\3\3\200\3\3\199\4\3\195\3\3\105\3\144\4\3\224\3\3\204\2\2\0\0\0\0\0\0\8\64\3\191\4\0\200\4\86\197\39\2\0\1\0\1\1\0\2\0\0\0\0\0\1\1\0\0\0\0\0\1\1\0\0\0\0\0\1\2\0\0\0\0\0\1\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\2\0\0\0\0\1\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\18\3\1\0\76\192\3\0\0\77\3\1\3\0\0\0\0\255\4\0\0\0\0\0\0\82\7\3\0\82\8\4\0\169\9\1\0\188\5\0\97\1\0\0\0\159\5\5\1\251\5\0\0\82\7\1\0\188\5\5\211\2\0\0\0\159\5\3\1\82\7\1\0\188\5\0\222\3\0\0\0\159\5\3\2\77\7\1\149\4\0\0\0\77\6\7\250\5\0\0\0\111\7\6\0\154\6\8\0\7\0" ..
"\0\0\82\9\1\0\82\10\5\0\82\11\2\0\188\7\0\164\7\0\0\0\159\7\5\1\101\0\30\0\111\7\8\0\241\6\4\0\7\0\0\0\111\7\9\0\154\6\7\0\7\0\0\0\82\9\1\0\82\10\5\0\188\7\0\10\10\0\0\0\159\7\4\1\101\0\18\0\251\7\0\0\82\9\1\0\111\17\6\0\188\15\0\251\11\0\0\0\159\15\3\2\82\11\15\0\111\12\12\0\111\17\13\0\188\15\0\251\11\0\0\0\159\15\3\2\82\13\15\0\111\14\14\0\115\10\11\14\188\7\7\228\15\0\0\0\159\7\4\1\82\9\1\0\111\10\16\0\111\11\17\0\82\12\2\0\188\7\0\24\18\0\0\0\159\7\6\1\82\9\3\0\188\7\0\12\19\0\0\0\159\7\3\1\130\0\1\0\20\3\126\3\232\3\3\133\1\3\200\3\3\109\3\110\3\83\3\195\4\3\255\3\3\199\4\3\200\4\3\179\3\3\201\4\3\202\4\3\188\3\3\111\3\141\4\3\203\4\3\199\3\3\234\3\0\204\4\76\228\39\2\0\1\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\1\0\7\2\1\0\20\192\2\0\0\251\2\0\0\82\4\1\0\188\2\2\211\0\0\0\0\159\2\3\1\82\4\1\0\188\2\0\29\1\0\0\0\159\2\3\2\82\5\1\0\111\6\2\0\188\3\0\208\3\0\0\0\159\3\4\1\82\5\1\0\188\3\0\141\4\0\0\0\159\3\3\1\130\2\2\0\5\3\133\1\3\179\4\3\205\4\3\195\3\3\174\4\0\206\4\20\251\39\2\0\0\0\0\1\0\0\0\1\0\0\0\0\1\0\0\0\1\0\13\3\2\0\98\192\3\0\0\77\3\1\3\0\0\0\0\251\5\0\0\77\4\5\140\1\0\0\0\82\7\1\0\188\5\0\34\2\0\0\0\159\5\3\2\77\7\1\149\3\0" ..
"\0\0\77\6\7\250\4\0\0\0\111\7\5\0\154\6\25\0\7\0\0\0\251\6\0\0\82\8\3\0\82\9\4\0\251\10\0\0\82\12\3\0\188\10\10\51\6\0\0\0\159\10\3\0\188\6\6\26\7\0\0\0\159\6\0\2\82\4\6\0\251\6\0\0\82\8\3\0\82\9\5\0\188\6\6\106\8\0\0\0\159\6\4\1\82\8\1\0\188\6\0\34\2\0\0\0\159\6\3\2\82\5\6\0\72\0\225\255\77\7\1\149\3\0\0\0\77\6\7\250\4\0\0\0\111\7\9\0\154\6\29\0\7\0\0\0\251\6\0\0\82\8\3\0\82\9\4\0\251\10\0\0\82\12\3\0\188\10\10\51\6\0\0\0\159\10\3\0\188\6\6\26\7\0\0\0\159\6\0\2\82\4\6\0\251\6\0\0\82\8\3\0\82\9\5\0\188\6\6\106\8\0\0\0\159\6\4\1\251\6\1\0\82\8\1\0\188\6\6\211\10\0\0\0\159\6\3\1\82\8\1\0\188\6\0\141\11\0\0\0\159\6\3\1\101\0\8\0\251\6\0\0\82\8\3\0\82\9\4\0\82\10\5\0\188\6\6\26\7\0\0\0\159\6\5\2\82\4\6\0\251\6\0\0\82\8\3\0\82\9\4\0\188\6\6\106\8\0\0\0\159\6\4\1\82\8\1\0\111\9\12\0\111\10\13\0\82\11\2\0\188\6\0\24\14\0\0\0\159\6\6\1\130\0\1\0\15\3\126\3\169\2\3\206\4\3\109\3\110\3\171\4\3\180\2\3\179\2\3\199\2\3\170\4\3\133\1\3\174\4\3\141\4\3\207\4\3\199\3\0\208\4\98\136\40\2\0\1\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\0\0\1\0\0\0\0\0\0\1\0\11\2\1\0\61\192\2\0\0\255\2\0\0\0\0\0\0\255\3\0\0" ..
"\0\0\0\0\77\4\1\3\0\0\0\0\82\7\1\0\82\10\1\0\188\8\0\222\1\0\0\0\159\8\3\2\140\9\0\0\188\5\0\192\2\0\0\0\159\5\5\1\82\7\2\0\111\8\3\0\77\9\4\222\4\0\0\0\188\5\0\34\5\0\0\0\159\5\5\1\251\5\0\0\82\7\4\0\140\8\1\0\188\5\5\95\6\0\0\0\159\5\4\1\82\7\1\0\140\8\1\0\188\5\0\199\7\0\0\0\159\5\4\1\82\7\1\0\82\8\3\0\169\9\0\0\77\10\1\97\8\0\0\0\188\5\0\71\9\0\0\0\159\5\6\1\251\5\0\0\82\7\4\0\82\8\2\0\82\9\3\0\188\5\5\215\10\0\0\0\159\5\5\1\82\7\4\0\77\9\4\220\12\0\0\0\120\8\9\11\188\5\0\195\13\0\0\0\159\5\4\2\77\6\4\25\14\0\0\0\48\6\5\39\15\0\0\0\130\0\1\0\16\3\126\3\200\3\3\208\3\3\225\2\3\201\2\3\201\3\3\205\2\3\212\3\3\105\3\143\4\3\128\3\2\0\0\0\0\0\0\240\63\3\173\2\3\184\3\3\171\2\3\129\2\0\209\4\61\162\40\1\0\0\0\1\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\1\0\11\2\0\0\52\192\2\0\0\140\2\0\0\198\3\0\0\255\4\0\0\0\0\0\0\82\7\1\0\82\10\1\0\188\8\0\222\0\0\0\0\159\8\3\2\82\9\2\0\188\5\0\192\1\0\0\0\159\5\5\1\149\2\2\2\82\7\1\0\111\8\3\0\188\5\0\39\4\0\0\0\159\5\4\2\14\5\1\0\72\0\239\255\82\7\1\0\111\8\5\0\188\5\0\39\4\0\0\0\159\5\4\2\14\5\7\0\82\7\1\0\82\8\4\0\188\5\0\176\6\0\0\0\159\5\4\2\82\3\5\0\101\0\4\0\111\5\7\0\48\5\4\138\8\0\0\0\140\3\0\0\82\7\1\0\82" ..
"\8\2\0\82\9\3\0\82\10\4\0\188\5\0\225\9\0\0\0\159\5\6\1\82\7\1\0\82\8\2\0\188\5\0\199\10\0\0\0\159\5\4\1\130\0\1\0\11\3\200\3\3\208\3\2\0\0\0\0\0\0\240\63\3\255\3\3\193\3\3\83\3\144\4\3\243\2\3\247\1\3\224\3\3\212\3\0\210\4\52\179\40\2\1\1\0\2\0\0\0\0\0\0\0\0\1\1\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\2\0\0\1\2\0\0\0\0\0\0\1\0\0\0\0\1\0\8\3\0\0\34\192\3\0\0\169\3\0\0\82\6\1\0\82\7\2\0\188\4\0\87\0\0\0\0\159\4\4\1\77\5\1\149\1\0\0\0\77\4\5\250\2\0\0\0\111\5\3\0\154\4\7\0\5\0\0\0\82\6\1\0\82\7\2\0\188\4\0\255\4\0\0\0\159\4\4\1\72\0\243\255\77\5\1\149\1\0\0\0\77\4\5\250\2\0\0\0\111\5\5\0\154\4\7\0\5\0\0\0\169\3\1\0\82\6\1\0\82\7\2\0\188\4\0\255\4\0\0\0\159\4\4\1\130\3\2\0\6\3\223\3\3\109\3\110\3\121\3\240\3\3\151\4\0\211\4\34\202\40\2\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\2\0\0\0\0\0\0\1\1\0\0\0\0\2\0\12\3\2\0\38\192\3\0\0\255\3\0\0\0\0\0\0\255\4\0\0\0\0\0\0\251\5\0\0\82\7\1\0\188\5\5\211\0\0\0\0\159\5\3\1\82\7\1\0\82\8\3\0\188\5\0\52\1\0\0\0\159\5\4\2\82\8\1\0\82\9\4\0\82\10\5\0\82\11\2\0\188\6\0\71\2\0\0\0\159\6\6\1\251\6\1\0\77\8\1\3\3\0\0\0\82\9\3\0\82\10\4\0\188\6\6\215\4\0\0\0\159\6\5\1\251\6\1\0\77\8\1\3\3\0\0\0\82\9\2\0\188\6\6\21\5\0\0\0\159\6\4\1\130\0\1\0\6\3\133\1\3\211\4\3\143\4\3\126\3\128\3\3" ..
"\170\3\0\212\4\38\220\40\2\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\10\2\2\0\45\192\2\0\0\77\2\1\3\0\0\0\0\255\3\0\0\0\0\0\0\255\4\0\0\0\0\0\0\48\4\3\151\1\0\0\0\82\6\1\0\77\7\3\151\1\0\0\0\188\4\0\97\2\0\0\0\159\4\4\1\77\5\3\151\1\0\0\0\77\4\5\138\3\0\0\0\111\5\4\0\154\4\14\0\5\0\0\0\251\4\0\0\251\6\1\0\82\8\2\0\77\9\3\151\1\0\0\0\188\6\6\248\5\0\0\0\159\6\4\2\140\7\1\0\188\4\4\66\6\0\0\0\159\4\4\1\130\0\1\0\198\4\0\0\48\4\3\27\7\0\0\0\82\6\1\0\82\7\3\0\140\8\1\0\188\4\0\193\8\0\0\0\159\4\5\1\130\0\1\0\9\3\126\3\246\3\3\152\4\3\247\1\3\221\2\3\161\2\3\192\1\3\221\3\3\178\4\0\213\4\45\234\40\2\0\1\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\1\0\0\0\0\0\2\0\14\2\3\0\132\1\192\2\0\0\77\2\1\3\0\0\0\0\255\3\0\0\0\0\0\0\198\4\0\0\198\5\0\0\251\6\0\0\82\8\1\0\188\6\6\211\1\0\0\0\159\6\3\1\77\9\1\149\2\0\0\0\77\8\9\250\3\0\0\0\188\6\0\189\4\0\0\0\159\6\3\2\43\6\7\0\77\7\1\149\2\0\0\0\77\6\7\250\3\0\0\0\111\7\5\0\154\6\6\0\7\0\0\0\140\6\0\0\140\7\0\0\82\4\6\0\82\5\7\0\101\0\92\0\82\8\1\0\82\9\3\0\188\6\0\176\6\0\0\0\159\6\4\2\82\5\6\0\77\8\3\138\7\0\0\0\188\6\0\211\8\0\0\0\159\6\3\2\14\6\50\0\251\6\1\0\82\8\2\0\82\9\3\0\188\6\6\88\9\0\0\0\159\6\4" ..
"\1\77\6\3\138\7\0\0\0\111\7\10\0\154\6\35\0\7\0\0\0\140\6\1\0\154\5\32\0\6\0\0\0\251\6\2\0\251\8\1\0\82\10\2\0\82\11\3\0\188\8\8\248\11\0\0\0\159\8\4\2\111\9\12\0\188\6\6\225\13\0\0\0\159\6\4\1\251\8\2\0\251\10\1\0\82\12\2\0\82\13\3\0\188\10\10\248\11\0\0\0\159\10\4\0\188\8\8\13\14\0\0\0\159\8\0\2\77\9\2\220\15\0\0\0\241\8\2\0\9\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\17\0\0\0\0\65\159\6\2\1\77\4\2\220\15\0\0\0\77\5\0\107\18\0\0\0\101\0\30\0\140\6\1\0\154\5\9\0\6\0\0\0\251\6\1\0\82\8\2\0\82\9\3\0\188\6\6\187\19\0\0\0\159\6\4\2\82\4\6\0\101\0\19\0\251\6\1\0\82\8\2\0\82\9\3\0\188\6\6\66\20\0\0\0\159\6\4\1\77\4\2\220\15\0\0\0\77\9\2\222\21\0\0\0\38\8\9\4\241\5\2\0\8\0\0\0\169\7\0\1\169\7\1\0\76\1\0\2\164\6\17\0\0\0\0\65\159\6\2\1\251\6\1\0\82\8\2\0\82\9\4\0\82\10\5\0\188\6\6\80\22\0\0\0\159\6\5\1\130\0\1\0\23\3\126\3\133\1\3\109\3\110\3\173\4\3\128\4\3\144\4\3\247\1\3\182\3\3\166\2\3\221\2\3\161\2\3\214\4\3\183\1\3\185\1\3\173\2\3\33\4\0\0\0\65\3\164\2\3\249\2\3\248\2\3\201\2\3\182\2\0\215\4\132\1\252\40\2\0\1\0\1\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\1\0\0\2\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\0" ..
"\1\0\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\1\0\10\2\1\0\132\1\192\2\0\0\77\2\1\97\0\0\0\0\77\4\1\149\1\0\0\0\77\3\4\250\2\0\0\0\111\4\3\0\154\3\8\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\90\4\0\0\0\159\4\4\1\169\4\0\0\130\4\2\0\111\4\5\0\154\3\8\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\160\6\0\0\0\159\4\4\1\169\4\0\0\130\4\2\0\111\4\7\0\154\3\19\0\4\0\0\0\251\4\0\0\82\6\1\0\188\4\4\211\8\0\0\0\159\4\3\1\82\6\1\0\188\4\0\141\9\0\0\0\159\4\3\1\82\6\1\0\111\7\10\0\111\8\7\0\82\9\2\0\188\4\0\24\11\0\0\0\159\4\6\1\169\4\0\0\130\4\2\0\111\4\12\0\154\3\8\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\116\13\0\0\0\159\4\4\1\169\4\0\0\130\4\2\0\111\4\14\0\154\3\8\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\95\15\0\0\0\159\4\4\1\169\4\0\0\130\4\2\0\111\4\16\0\154\3\8\0\4\0\0\0\82\6\1\0\82\7\2\0\188\4\0\159\17\0\0\0\159\4\4\1\169\4\0\0\130\4\2\0\111\4\18\0\154\3\23\0\4\0\0\0\251\4\0\0\82\6\1\0\188\4\4\211\8\0\0\0\159\4\3\1\82\6\1\0\111\7\16\0\188\4\0\39\19\0\0\0\159\4\4\2\14\4\5\0\82\6\1\0\188\4\0\194\20\0\0\0\159\4\3\1\101\0\4\0\82\6\1\0\188\4\0\230\21\0\0\0\159\4\3\1\169\4\0\0\130\4\2\0\111\4\22\0\154\3\7\0\4\0\0\0\82\6\1\0\188\4\0\68\23\0\0\0\159\4\3\1\169\4\1\0\130\4\2\0\111\4\24\0\154\3\12\0\4\0\0\0\251\4\0\0\82\6\1\0\188\4\4\211\8\0\0\0\159\4\3\1\82\6\1\0\188\4" ..
"\0\168\25\0\0\0\159\4\3\1\169\4\1\0\130\4\2\0\82\6\1\0\188\4\0\180\26\0\0\0\159\4\3\1\169\4\0\0\130\4\2\0\27\3\105\3\109\3\110\3\207\4\3\208\4\3\183\4\3\184\4\3\182\4\3\133\1\3\174\4\3\141\4\3\199\3\3\203\4\3\204\4\3\185\4\3\186\4\3\142\4\3\212\4\3\216\4\3\193\3\3\209\4\3\210\4\3\217\4\3\215\4\3\218\4\3\181\4\3\213\4\0\219\4\132\1\160\41\1\0\1\0\0\0\1\0\0\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\2\0\0\0\2\0\1\0\0\1\0\0\0\1\0\1\0\0\1\0\0\0\0\1\0\0\0\1\0\2\0\0\0\1\0\0\8\2\0\0\68\192\2\0\0\169\2\0\0\82\5\1\0\188\3\0\128\0\0\0\0\159\3\3\1\43\2\56\0\77\6\1\149\1\0\0\0\77\5\6\250\2\0\0\0\188\3\0\189\3\0\0\0\159\3\3\2\43\3\48\0\82\5\1\0\188\3\0\120\4\0\0\0\159\3\3\2\82\2\3\0\82\5\1\0\111\6\5\0\188\3\0\39\6\0\0\0\159\3\4\1\169\4\0\0\77\7\1\3\7\0\0\0\77\6\7\135\8\0\0\0\77\5\6\115\9\0\0\0\77\7\1\3\7\0\0\0\77\6\7\222\10\0\0\0\125\6\13\0\5\0\0\0\77\6\1\3\7\0\0\0\77\5\6\222\10\0\0\0\77\7\1\3\7\0\0\0\77\6\7\220\11\0\0\0\212\6\2\0\5\0\0\0\169\4\0\1\169\4\1\0\76\1\0\2\164\3\13\0\0\0\192\64\159\3\2\1\77\3\1\3\7\0\0\0\77\5\1\3\7\0\0\0\77\4\5\220\11\0\0\0\48\4\3\222\10\0\0\0\72" ..
"\0\199\255\82\5\1\0\188\3\0\177\14\0\0\0\159\3\3\1\130\0\1\0\15\3\228\3\3\109\3\110\3\173\4\3\219\4\3\128\4\3\193\3\3\126\3\159\2\3\139\2\3\201\2\3\173\2\3\33\4\0\0\192\64\3\229\3\0\140\4\68\208\41\2\1\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\15\0\0\2\0\0\0\0\0\0\0\0\2\0\0\0\1\0\13\5\1\0\101\192\5\0\0\255\5\0\0\0\0\0\0\255\6\0\0\0\0\0\0\48\6\5\149\0\0\0\0\255\6\0\0\0\0\0\0\48\6\5\121\1\0\0\0\255\6\0\0\0\0\0\0\255\7\0\0\0\0\0\0\48\7\6\177\2\0\0\0\255\7\0\0\0\0\0\0\48\7\6\220\3\0\0\0\140\7\0\0\48\7\1\223\4\0\0\0\48\3\5\67\5\0\0\0\251\7\0\0\82\9\1\0\82\10\5\0\82\11\2\0\82\12\4\0\188\7\7\94\6\0\0\0\159\7\6\1\82\9\5\0\82\10\6\0\188\7\0\136\7\0\0\0\159\7\4\1\77\7\6\135\8\0\0\0\77\8\0\74\9\0\0\0\48\8\7\126\10\0\0\0\251\7\0\0\82\9\5\0\188\7\7\211\11\0\0\0\159\7\3\1\82\9\5\0\188\7\0\60\12\0\0\0\159\7\3\1\82\9\5\0\111\10\13\0\188\7\0\156\14\0\0\0\159\7\4\1\82\9\5\0\188\7\0\80\15\0\0\0\159\7\3\1\77\9\6\27\16\0\0\0\198\10\0\0\241\9\2\0\10\0\0\0\169\8\0\1\169\8\1\0\76\1\0\2\164\7\18\0\0\0\16\65\159\7\2\1\77\10\6\135\8\0\0\0\77\9\10\50\19\0\0\0\140\10\0\0\241\9\2\0\10\0\0\0\169\8\0\1\169\8\1\0\76\1\0\2\164\7\18\0\0\0\16\65\159\7\2\1\77\9\5\3\20\0\0\0\198\10\0\0\241\9\2\0" ..
"\10\0\0\0\169\8\0\1\169\8\1\0\76\1\0\2\164\7\18\0\0\0\16\65\159\7\2\1\77\7\6\135\8\0\0\0\130\7\2\0\21\3\109\3\120\3\132\2\3\183\3\3\225\3\3\100\3\128\1\3\238\3\3\159\2\3\134\4\3\138\2\3\133\1\3\140\4\3\124\3\194\3\3\239\3\3\221\3\3\33\4\0\0\16\65\3\136\2\3\126\0\220\4\101\227\41\1\0\1\0\0\0\1\0\0\0\1\0\1\0\0\0\1\0\0\0\2\0\0\1\0\1\0\0\0\0\0\0\0\1\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\8\0\10\0\44\192\0\0\0\251\0\0\0\251\2\0\0\251\4\1\0\188\2\2\56\0\0\0\0\159\2\3\2\198\3\0\0\188\0\0\19\1\0\0\0\159\0\4\2\14\0\31\0\251\1\2\0\251\3\3\0\82\4\0\0\198\5\0\0\251\7\4\0\144\6\7\2\188\1\1\216\3\0\0\0\159\1\6\2\251\2\7\0\188\2\2\34\4\0\0\0\159\2\2\3\222\2\5\0\222\3\6\0\251\2\7\0\251\4\3\0\82\5\1\0\251\6\5\0\251\7\6\0\188\2\2\57\5\0\0\0\159\2\6\1\53\2\0\66\6\0\0\0\251\4\6\0\77\3\4\38\7\0\0\0\251\4\9\0\159\2\3\2\222\2\8\0\130\0\1\0\8\3\64\3\71\3\225\1\3\220\4\3\219\1\3\146\2\3\63\3\67\0\0\44\144\42\1\0\0\0\0\0\0\0\0\0\1\2\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\2\0\10\1\4\0\37\192\1\0\0\198\1\0\0\198\2\0\0\198\3\0\0\198\4\0\0\164\5\1\0\0\0\0\64\140\6\2\0\159\5\2\2\77\6\5\114\2\0\0\0\14\6\5\0\77\6\5" ..
"\114\2\0\0\0\188\6\6\178\3\0\0\0\159\6\2\2\164\7\5\0\0\0\64\64\217\8\0\0\251\0\0\0\82\0\0\0\251\0\1\0\251\0\2\0\82\0\6\0\82\0\2\0\82\0\3\0\251\0\3\0\82\0\1\0\82\0\5\0\159\7\2\3\14\7\2\0\193\0\0\0\130\1\2\0\198\9\0\0\193\0\0\0\130\9\2\0\6\3\62\4\0\0\0\64\3\221\4\3\222\4\3\60\4\0\0\64\64\1\241\1\223\4\37\138\42\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\11\1\0\2\0\0\0\6\1\0\0\32\192\1\0\0\164\1\2\0\0\4\0\128\82\2\0\0\140\3\1\0\140\4\2\0\159\1\4\2\111\2\3\0\154\1\22\0\2\0\0\0\164\1\2\0\0\4\0\128\82\2\0\0\140\3\3\0\164\4\5\0\0\16\0\128\82\5\0\0\159\4\2\0\159\1\0\2\53\2\0\216\6\0\0\0\82\3\1\0\159\2\2\2\198\3\0\0\241\2\6\0\3\0\0\0\164\3\9\0\0\32\112\128\82\4\2\0\159\3\2\2\159\3\1\1\130\0\1\0\10\3\45\3\73\4\0\4\0\128\3\224\4\3\225\4\4\0\16\0\128\3\223\4\3\226\4\3\227\4\4\0\32\112\128\0\0\32\164\42\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\1\0\0\0\0\3\0\36\0\0\1\199\15\163\0\0\0\164\0\1\0\0\0\0\64\111\1\2\0\159\0\2\1\164\0\4\0\0\0\48\64\164\1\7\0\0\24\80\128\164\2\9\0\0\32\80\128\255\3\0\0\38\0\0\0\226\4\12\0\111\5\13\0\48\5\4\131\10\0\0\0\111\5\14\0\48\5\4\130\11\0\0\0\226\5\12\0\111\6\15\0\48\6\5\131\10\0\0\0\111\6\14\0\48\6\5\130\11\0\0\0\226\6\12\0\111\7\16\0\48\7\6\131\10\0\0\0\111\7\16\0\48\7\6\130\11\0\0\0\226\7\12\0" ..
"\111\8\13\0\48\8\7\131\10\0\0\0\111\8\14\0\48\8\7\130\11\0\0\0\226\8\12\0\111\9\16\0\48\9\8\131\10\0\0\0\111\9\14\0\48\9\8\130\11\0\0\0\226\9\12\0\111\10\15\0\48\10\9\131\10\0\0\0\111\10\14\0\48\10\9\130\11\0\0\0\226\10\12\0\111\11\13\0\48\11\10\131\10\0\0\0\111\11\15\0\48\11\10\130\11\0\0\0\226\11\12\0\111\12\15\0\48\12\11\131\10\0\0\0\111\12\14\0\48\12\11\130\11\0\0\0\226\12\12\0\111\13\16\0\48\13\12\131\10\0\0\0\111\13\14\0\48\13\12\130\11\0\0\0\226\13\12\0\111\14\15\0\48\14\13\131\10\0\0\0\111\14\15\0\48\14\13\130\11\0\0\0\226\14\12\0\111\15\16\0\48\15\14\131\10\0\0\0\111\15\16\0\48\15\14\130\11\0\0\0\226\15\12\0\111\16\13\0\48\16\15\131\10\0\0\0\111\16\15\0\48\16\15\130\11\0\0\0\226\16\12\0\111\17\15\0\48\17\16\131\10\0\0\0\111\17\15\0\48\17\16\130\11\0\0\0\226\17\12\0\111\18\15\0\48\18\17\131\10\0\0\0\111\18\15\0\48\18\17\130\11\0\0\0\226\18\12\0\111\19\15\0\48\19\18\131\10\0\0\0\111\19\15\0\48\19\18\130\11\0\0\0\226\19\12\0\111\20\15\0\48\20\19\131\10\0\0\0\111\20\15\0\48\20\19\130\11\0\0\0\197\3\4\17\1\0\0\0\226\4\12\0\111\5\15\0\48\5\4\131\10\0\0\0\111\5\15\0\48\5\4\130\11\0\0\0\226\5\12\0\111\6\15\0\48\6\5\131\10\0\0\0\111\6\15\0\48\6\5\130\11\0\0\0\226\6\12\0\111\7\13\0\48\7\6\131\10\0\0\0\111\7\14\0\48\7\6\130\11\0\0\0\226\7\12\0\111\8\13\0\48\8\7\131\10\0\0\0\111\8\14\0\48\8\7\130\11\0\0\0\226\8\12\0\111\9\13\0\48\9\8\131\10\0\0\0\111\9\14\0\48\9\8\130\11\0\0\0\226\9\12\0\111\10" ..
"\13\0\48\10\9\131\10\0\0\0\111\10\13\0\48\10\9\130\11\0\0\0\226\10\12\0\111\11\13\0\48\11\10\131\10\0\0\0\111\11\14\0\48\11\10\130\11\0\0\0\226\11\12\0\111\12\15\0\48\12\11\131\10\0\0\0\111\12\15\0\48\12\11\130\11\0\0\0\226\12\12\0\111\13\15\0\48\13\12\131\10\0\0\0\111\13\15\0\48\13\12\130\11\0\0\0\226\13\12\0\111\14\15\0\48\14\13\131\10\0\0\0\111\14\15\0\48\14\13\130\11\0\0\0\226\14\12\0\111\15\13\0\48\15\14\131\10\0\0\0\111\15\16\0\48\15\14\130\11\0\0\0\226\15\12\0\111\16\13\0\48\16\15\131\10\0\0\0\111\16\16\0\48\16\15\130\11\0\0\0\226\16\12\0\111\17\16\0\48\17\16\131\10\0\0\0\111\17\16\0\48\17\16\130\11\0\0\0\226\17\12\0\111\18\16\0\48\18\17\131\10\0\0\0\111\18\16\0\48\18\17\130\11\0\0\0\226\18\12\0\111\19\16\0\48\19\18\131\10\0\0\0\111\19\14\0\48\19\18\130\11\0\0\0\226\19\12\0\111\20\13\0\48\20\19\131\10\0\0\0\111\20\14\0\48\20\19\130\11\0\0\0\197\3\4\17\17\0\0\0\226\4\12\0\111\5\13\0\48\5\4\131\10\0\0\0\111\5\14\0\48\5\4\130\11\0\0\0\226\5\12\0\111\6\14\0\48\6\5\131\10\0\0\0\111\6\16\0\48\6\5\130\11\0\0\0\226\6\12\0\111\7\16\0\48\7\6\131\10\0\0\0\111\7\16\0\48\7\6\130\11\0\0\0\226\7\12\0\111\8\14\0\48\8\7\131\10\0\0\0\111\8\14\0\48\8\7\130\11\0\0\0\226\8\12\0\111\9\16\0\48\9\8\131\10\0\0\0\111\9\14\0\48\9\8\130\11\0\0\0\226\9\12\0\111\20\16\0\48\20\9\131\10\0\0\0\111\20\14\0\48\20\9\130\11\0\0\0\197\3\4\7\33\0\0\0\255\4\0\0\38\0\0\0\111\5\17\0\111\6\18\0\111\7\17\0\111\8\17\0\111\9\17\0" ..
"\111\10\18\0\111\11\17\0\111\12\18\0\111\13\17\0\111\14\17\0\111\15\17\0\111\16\17\0\111\17\17\0\111\18\17\0\111\19\17\0\111\20\17\0\197\4\5\17\1\0\0\0\111\5\17\0\111\6\17\0\111\7\17\0\111\8\17\0\111\9\17\0\111\10\17\0\111\11\19\0\111\12\17\0\111\13\17\0\111\14\17\0\111\15\17\0\111\16\17\0\111\17\17\0\111\18\17\0\111\19\17\0\111\20\19\0\197\4\5\17\17\0\0\0\111\5\19\0\111\6\17\0\111\7\17\0\111\8\17\0\111\9\18\0\111\10\17\0\197\4\5\7\33\0\0\0\217\5\0\0\217\6\1\0\82\0\1\0\82\0\5\0\82\0\2\0\82\0\4\0\82\0\3\0\217\7\2\0\82\0\0\0\217\8\3\0\82\0\0\0\82\0\7\0\82\0\8\0\217\9\4\0\82\0\6\0\82\0\8\0\24\9\0\66\20\0\0\0\255\9\0\0\0\0\0\0\217\10\5\0\48\10\9\56\21\0\0\0\217\10\6\0\48\10\9\19\22\0\0\0\217\10\7\0\48\10\9\79\23\0\0\0\217\10\8\0\48\10\9\108\24\0\0\0\255\10\0\0\0\0\0\0\111\11\25\0\48\11\10\143\26\0\0\0\140\11\80\0\48\11\10\16\27\0\0\0\111\11\28\0\48\11\10\140\29\0\0\0\111\11\30\0\48\11\10\3\31\0\0\0\140\11\1\0\48\11\10\190\32\0\0\0\217\11\9\0\48\11\10\19\22\0\0\0\217\11\10\0\48\11\10\54\33\0\0\0\217\11\11\0\48\11\10\103\34\0\0\0\217\11\12\0\48\11\10\174\35\0\0\0\217\11\13\0\48\11\10\228\36\0\0\0\217\11\14\0\48\11\10\26\37\0\0\0\217\11\15\0\48\11\10\33\38\0\0\0\217\11\16\0\48\11\10\94\39\0\0\0\217\11\17\0\48\11\10\49\40\0\0\0\217\11\18\0\48\11\10\211\41\0\0\0\217\11\19\0\48\11\10\121\42\0\0\0\217\11\20\0\82\0\9\0\48\11\10\149\43\0\0\0\217\11\21\0\48\11\10\69\44\0\0\0\217\11" ..
"\22\0\48\11\10\227\45\0\0\0\217\11\23\0\48\11\10\161\46\0\0\0\217\11\24\0\48\11\10\46\47\0\0\0\217\11\25\0\48\11\10\228\48\0\0\0\217\11\26\0\48\11\10\149\49\0\0\0\217\11\27\0\48\11\10\41\50\0\0\0\217\11\28\0\48\11\10\188\51\0\0\0\217\11\29\0\48\11\10\22\52\0\0\0\217\11\30\0\48\11\10\143\53\0\0\0\255\11\0\0\0\0\0\0\226\12\57\0\140\13\0\0\48\13\12\79\54\0\0\0\140\13\1\0\48\13\12\150\55\0\0\0\140\13\2\0\48\13\12\158\56\0\0\0\48\12\11\38\58\0\0\0\140\12\9\0\48\12\11\104\59\0\0\0\140\12\9\0\48\12\11\214\60\0\0\0\77\13\11\104\59\0\0\0\77\14\11\214\60\0\0\0\67\12\13\14\48\12\11\190\61\0\0\0\140\12\8\0\48\12\11\122\62\0\0\0\140\12\6\0\48\12\11\219\63\0\0\0\140\12\0\0\48\12\11\120\64\0\0\0\77\13\11\120\64\0\0\0\77\14\11\219\63\0\0\0\67\12\13\14\48\12\11\120\65\0\0\0\77\13\11\120\65\0\0\0\77\14\11\122\62\0\0\0\67\12\13\14\48\12\11\20\66\0\0\0\77\13\11\20\66\0\0\0\77\14\11\104\59\0\0\0\67\12\13\14\48\12\11\74\67\0\0\0\77\12\11\20\66\0\0\0\48\12\11\122\68\0\0\0\140\14\1\0\77\15\11\190\61\0\0\0\76\15\0\2\164\13\72\0\0\28\97\132\159\13\3\2\120\12\13\69\48\12\11\139\73\0\0\0\77\14\11\139\73\0\0\0\62\13\14\74\76\12\0\2\164\12\76\0\0\44\97\132\159\12\2\2\48\12\11\10\77\0\0\0\140\14\1\0\77\15\11\122\62\0\0\0\76\15\0\2\164\13\72\0\0\28\97\132\159\13\3\2\120\12\13\69\48\12\11\131\78\0\0\0\140\14\1\0\77\15\11\214\60\0\0\0\76\15\0\2\164\13\72\0\0\28\97\132\159\13\3\2\120\12\13\69\48\12\11\24\79\0\0\0\140\14\1\0\77\15\11\104" ..
"\59\0\0\0\76\15\0\2\164\13\72\0\0\28\97\132\159\13\3\2\120\12\13\69\48\12\11\65\80\0\0\0\217\12\31\0\48\12\11\213\81\0\0\0\217\12\32\0\48\12\11\225\82\0\0\0\217\12\33\0\48\12\11\13\83\0\0\0\217\12\34\0\48\12\11\25\84\0\0\0\217\12\35\0\48\12\11\54\85\0\0\0\217\12\36\0\48\12\11\194\86\0\0\0\217\12\37\0\48\12\11\78\87\0\0\0\217\12\38\0\48\12\11\66\88\0\0\0\217\12\39\0\48\12\11\127\89\0\0\0\217\12\40\0\48\12\11\107\90\0\0\0\217\12\41\0\48\12\11\80\91\0\0\0\217\12\42\0\48\12\11\68\92\0\0\0\217\12\43\0\48\12\11\202\93\0\0\0\217\12\44\0\48\12\11\117\94\0\0\0\217\12\45\0\48\12\11\61\95\0\0\0\217\12\46\0\48\12\11\232\96\0\0\0\217\12\47\0\48\12\11\193\97\0\0\0\140\13\1\0\77\15\11\214\60\0\0\0\120\14\15\69\76\15\0\2\164\12\72\0\0\28\97\132\159\12\3\2\48\12\11\141\98\0\0\0\217\12\48\0\48\12\11\139\99\0\0\0\217\12\49\0\48\12\11\245\100\0\0\0\77\13\11\141\98\0\0\0\120\12\13\69\48\12\11\230\101\0\0\0\217\12\50\0\48\12\11\233\102\0\0\0\77\12\11\131\78\0\0\0\48\12\11\162\103\0\0\0\255\12\0\0\0\0\0\0\48\12\11\194\104\0\0\0\255\12\0\0\0\0\0\0\48\12\11\23\105\0\0\0\255\12\0\0\0\0\0\0\48\12\11\224\106\0\0\0\140\12\0\0\164\13\108\0\0\172\81\128\111\14\109\0\111\15\110\0\159\13\3\4\101\13\13\0\111\19\111\0\82\20\16\0\115\18\19\20\77\19\11\194\104\0\0\0\106\16\19\12\77\19\11\23\105\0\0\0\106\12\19\18\77\19\11\224\106\0\0\0\106\18\19\12\149\12\12\69\110\13\242\255\1\0\0\0\48\12\11\166\112\0\0\0\226\13\113\0\140\14\0\0\48\14\13\25\14\0\0\0\140\14\1\0\48\14" ..
"\13\169\16\0\0\0\140\14\2\0\48\14\13\185\13\0\0\0\140\14\3\0\48\14\13\236\15\0\0\0\48\13\11\80\114\0\0\0\217\13\51\0\48\13\11\127\115\0\0\0\217\13\52\0\48\13\11\254\116\0\0\0\217\13\53\0\48\13\11\57\117\0\0\0\217\13\54\0\48\13\11\62\118\0\0\0\217\13\55\0\48\13\11\43\119\0\0\0\140\13\50\0\48\13\11\240\120\0\0\0\217\13\56\0\82\0\11\0\255\14\0\0\37\0\0\0\82\15\13\0\140\16\0\0\140\17\1\0\111\18\15\0\111\19\14\0\111\20\55\0\159\15\6\2\82\16\13\0\140\17\0\0\140\18\1\0\111\19\16\0\111\20\16\0\111\21\54\0\159\16\6\2\82\17\13\0\140\18\0\0\140\19\1\0\111\20\13\0\111\21\14\0\111\22\54\0\159\17\6\2\82\18\13\0\140\19\0\0\140\20\1\0\111\21\16\0\111\22\14\0\111\23\54\0\159\18\6\2\82\19\13\0\140\20\0\0\140\21\1\0\111\22\15\0\111\23\14\0\111\24\55\0\159\19\6\2\82\20\13\0\140\21\0\0\140\22\1\0\111\23\13\0\111\24\15\0\111\25\54\0\159\20\6\2\82\21\13\0\140\22\0\0\140\23\0\0\111\24\15\0\111\25\14\0\111\26\55\0\159\21\6\2\82\22\13\0\140\23\0\0\140\24\0\0\111\25\16\0\111\26\14\0\111\27\54\0\159\22\6\2\82\23\13\0\140\24\0\0\140\25\0\0\111\26\15\0\111\27\15\0\111\28\54\0\159\23\6\2\82\24\13\0\140\25\0\0\140\26\1\0\111\27\16\0\111\28\16\0\111\29\54\0\159\24\6\2\82\25\13\0\140\26\0\0\140\27\1\0\111\28\13\0\111\29\15\0\111\30\54\0\159\25\6\2\82\26\13\0\140\27\0\0\140\28\1\0\111\29\15\0\111\30\15\0\111\31\54\0\159\26\6\2\82\27\13\0\140\28\0\0\140\29\1\0\111\30\15\0\111\31\15\0\111\32\54\0\159\27\6\2\82\28\13\0\140\29\0\0\140\30\1\0\111\31\15\0\111\32\15\0\111\33\54\0" ..
"\159\28\6\2\82\29\13\0\140\30\0\0\140\31\1\0\111\32\15\0\111\33\15\0\111\34\54\0\159\29\6\2\82\30\13\0\140\31\0\0\140\32\1\0\111\33\15\0\111\34\15\0\111\35\54\0\159\30\6\2\197\14\15\17\1\0\0\0\82\15\13\0\140\16\0\0\140\17\1\0\111\18\15\0\111\19\15\0\111\20\54\0\159\15\6\2\82\16\13\0\140\17\0\0\140\18\1\0\111\19\13\0\111\20\14\0\111\21\54\0\159\16\6\2\82\17\13\0\140\18\0\0\140\19\1\0\111\20\13\0\111\21\14\0\111\22\54\0\159\17\6\2\82\18\13\0\140\19\0\0\140\20\1\0\111\21\13\0\111\22\14\0\111\23\54\0\159\18\6\2\82\19\13\0\140\20\0\0\140\21\1\0\111\22\13\0\111\23\13\0\111\24\54\0\159\19\6\2\82\20\13\0\140\21\0\0\140\22\0\0\111\23\13\0\111\24\14\0\111\25\56\0\159\20\6\2\82\21\13\0\140\22\1\0\140\23\0\0\111\24\15\0\111\25\15\0\111\26\54\0\159\21\6\2\82\22\13\0\140\23\1\0\140\24\0\0\111\25\15\0\111\26\15\0\111\27\54\0\159\22\6\2\82\23\13\0\140\24\1\0\140\25\0\0\111\26\15\0\111\27\15\0\111\28\54\0\159\23\6\2\82\24\13\0\140\25\1\0\140\26\1\0\111\27\13\0\111\28\16\0\111\29\54\0\159\24\6\2\82\25\13\0\140\26\1\0\140\27\1\0\111\28\13\0\111\29\16\0\111\30\54\0\159\25\6\2\82\26\13\0\140\27\0\0\140\28\1\0\111\29\16\0\111\30\16\0\111\31\54\0\159\26\6\2\82\27\13\0\140\28\0\0\140\29\1\0\111\30\16\0\111\31\16\0\111\32\54\0\159\27\6\2\82\28\13\0\140\29\0\0\140\30\0\0\111\31\16\0\111\32\14\0\111\33\54\0\159\28\6\2\82\29\13\0\140\30\0\0\140\31\1\0\111\32\13\0\111\33\14\0\111\34\56\0\159\29\6\2\82\30\13\0\140\31\0\0\140\32\1\0\111\33\13\0\111\34\14\0\111\35\56\0\159\30" ..
"\6\2\197\14\15\17\17\0\0\0\82\15\13\0\140\16\1\0\140\17\0\0\111\18\14\0\111\19\16\0\111\20\54\0\159\15\6\2\82\16\13\0\140\17\0\0\140\18\0\0\111\19\16\0\111\20\16\0\111\21\54\0\159\16\6\2\82\17\13\0\140\18\0\0\140\19\0\0\111\20\14\0\111\21\14\0\111\22\54\0\159\17\6\2\82\18\13\0\140\19\0\0\140\20\1\0\111\21\16\0\111\22\14\0\111\23\55\0\159\18\6\2\82\19\13\0\140\20\0\0\140\21\1\0\111\22\16\0\111\23\14\0\111\24\54\0\159\19\6\0\197\14\15\0\33\0\0\0\48\14\11\251\121\0\0\0\77\14\11\251\121\0\0\0\140\15\0\0\82\16\13\0\140\17\0\0\140\18\1\0\111\19\13\0\111\20\14\0\111\21\54\0\159\16\6\2\106\16\14\15\255\14\0\0\0\0\0\0\111\15\122\0\48\15\14\167\123\0\0\0\140\15\3\0\48\15\14\240\124\0\0\0\140\15\4\0\48\15\14\128\125\0\0\0\140\15\0\0\48\15\14\38\126\0\0\0\140\15\1\0\48\15\14\168\127\0\0\0\140\15\255\255\48\15\14\65\128\0\0\0\140\15\81\0\48\15\14\2\129\0\0\0\140\15\0\0\48\15\14\233\130\0\0\0\140\15\12\0\48\15\14\73\131\0\0\0\217\15\57\0\48\15\14\34\132\0\0\0\217\15\58\0\48\15\14\55\133\0\0\0\217\15\59\0\48\15\14\1\134\0\0\0\217\15\60\0\48\15\14\78\135\0\0\0\217\15\61\0\48\15\14\33\136\0\0\0\217\15\62\0\48\15\14\50\137\0\0\0\217\15\63\0\48\15\14\74\138\0\0\0\217\15\64\0\48\15\14\141\139\0\0\0\217\15\65\0\48\15\14\118\140\0\0\0\217\15\66\0\82\0\11\0\48\15\14\101\141\0\0\0\217\15\67\0\48\15\14\201\142\0\0\0\217\15\68\0\48\15\14\203\143\0\0\0\217\15\69\0\48\15\14\94\144\0\0\0\217\15\70\0\48\15\14\114\145\0\0\0\217\15\71\0\48\15\14\250\146\0\0\0\217\15\72\0" ..
"\48\15\14\57\147\0\0\0\255\15\0\0\0\0\0\0\77\17\10\3\31\0\0\0\144\16\17\30\48\16\15\3\31\0\0\0\140\16\255\127\48\16\15\234\148\0\0\0\140\16\200\0\48\16\15\255\149\0\0\0\140\16\60\0\48\16\15\222\150\0\0\0\77\17\10\140\29\0\0\0\144\16\17\28\48\16\15\140\29\0\0\0\140\16\200\0\48\16\15\107\151\0\0\0\140\16\1\0\48\16\15\1\152\0\0\0\140\16\2\0\48\16\15\244\153\0\0\0\140\16\2\0\48\16\15\74\154\0\0\0\140\16\4\0\48\16\15\168\155\0\0\0\140\16\255\255\48\16\15\107\156\0\0\0\255\16\0\0\0\0\0\0\140\17\250\0\48\17\16\92\157\0\0\0\217\17\73\0\48\17\16\58\158\0\0\0\217\17\74\0\48\17\16\146\159\0\0\0\217\17\75\0\48\17\16\192\160\0\0\0\217\17\76\0\48\17\16\191\161\0\0\0\77\17\16\191\161\0\0\0\48\17\16\227\162\0\0\0\77\17\16\191\161\0\0\0\48\17\16\40\163\0\0\0\77\17\16\191\161\0\0\0\48\17\16\246\164\0\0\0\217\17\77\0\48\17\16\54\165\0\0\0\217\17\78\0\48\17\16\133\166\0\0\0\217\17\79\0\48\17\16\12\167\0\0\0\217\17\80\0\48\17\16\126\168\0\0\0\217\17\81\0\48\17\16\235\169\0\0\0\217\17\82\0\48\17\16\234\170\0\0\0\217\17\83\0\48\17\16\142\171\0\0\0\217\17\84\0\48\17\16\183\172\0\0\0\140\17\255\255\48\17\16\140\173\0\0\0\226\17\190\0\140\18\0\0\48\18\17\43\174\0\0\0\140\18\1\0\48\18\17\142\175\0\0\0\140\18\2\0\48\18\17\109\176\0\0\0\140\18\3\0\48\18\17\95\177\0\0\0\140\18\4\0\48\18\17\231\178\0\0\0\140\18\5\0\48\18\17\109\179\0\0\0\140\18\6\0\48\18\17\216\180\0\0\0\140\18\7\0\48\18\17\237\181\0\0\0\140\18\8\0\48\18\17\214\182\0\0\0\140\18\9\0\48\18\17\125\183\0\0\0\140\18" ..
"\10\0\48\18\17\176\184\0\0\0\140\18\11\0\48\18\17\146\185\0\0\0\140\18\12\0\48\18\17\26\186\0\0\0\140\18\13\0\48\18\17\109\187\0\0\0\140\18\14\0\48\18\17\129\188\0\0\0\140\18\15\0\48\18\17\80\189\0\0\0\48\17\16\123\191\0\0\0\226\17\196\0\140\18\0\0\48\18\17\114\192\0\0\0\140\18\1\0\48\18\17\202\193\0\0\0\140\18\2\0\48\18\17\93\194\0\0\0\140\18\3\0\48\18\17\95\195\0\0\0\48\17\16\138\197\0\0\0\217\17\85\0\48\17\16\248\198\0\0\0\217\17\86\0\82\0\11\0\48\17\16\200\199\0\0\0\217\17\87\0\82\0\15\0\48\17\16\88\200\0\0\0\217\17\88\0\48\17\16\226\201\0\0\0\217\17\89\0\48\17\16\114\202\0\0\0\217\17\90\0\82\0\11\0\48\17\16\193\203\0\0\0\217\17\91\0\48\17\16\51\204\0\0\0\217\17\92\0\48\17\16\80\205\0\0\0\217\17\93\0\48\17\16\183\206\0\0\0\217\17\94\0\82\0\11\0\82\0\10\0\48\17\16\15\207\0\0\0\217\17\95\0\48\17\16\3\208\0\0\0\217\17\96\0\82\0\11\0\48\17\16\195\209\0\0\0\217\17\97\0\82\0\11\0\48\17\16\201\210\0\0\0\217\17\98\0\82\0\11\0\48\17\16\75\211\0\0\0\217\17\99\0\82\0\11\0\48\17\16\215\212\0\0\0\217\17\100\0\82\0\11\0\48\17\16\225\213\0\0\0\217\17\101\0\48\17\16\237\214\0\0\0\217\17\102\0\82\0\11\0\48\17\16\146\215\0\0\0\217\17\103\0\82\0\11\0\48\17\16\193\216\0\0\0\217\17\104\0\48\17\16\106\217\0\0\0\217\17\105\0\48\17\16\26\218\0\0\0\217\17\106\0\82\0\10\0\48\17\16\15\219\0\0\0\217\17\107\0\48\17\16\95\220\0\0\0\217\17\108\0\82\0\11\0\48\17\16\222\221\0\0\0\217\17\109\0\48\17\16\205\222\0\0\0\217\17\110\0\82\0\15\0\82\0\11\0\48\17\16\201\223\0\0\0" ..
"\217\17\111\0\48\17\16\191\224\0\0\0\217\17\112\0\48\17\16\251\225\0\0\0\217\17\113\0\48\17\16\237\226\0\0\0\217\17\114\0\48\17\16\80\227\0\0\0\217\17\115\0\82\0\11\0\82\0\16\0\48\17\16\67\228\0\0\0\217\17\116\0\82\0\11\0\48\17\16\245\229\0\0\0\217\17\117\0\48\17\16\225\230\0\0\0\217\17\118\0\48\17\16\37\231\0\0\0\217\17\119\0\82\0\11\0\48\17\16\84\232\0\0\0\217\17\120\0\48\17\16\235\233\0\0\0\217\17\121\0\48\17\16\27\234\0\0\0\217\17\122\0\48\17\16\66\235\0\0\0\217\17\123\0\48\17\16\187\236\0\0\0\217\17\124\0\48\17\16\166\237\0\0\0\217\17\125\0\82\0\11\0\48\17\16\188\238\0\0\0\217\17\126\0\48\17\16\215\239\0\0\0\217\17\127\0\48\17\16\121\240\0\0\0\217\17\128\0\82\0\11\0\48\17\16\253\241\0\0\0\217\17\129\0\82\0\11\0\48\17\16\169\242\0\0\0\217\17\130\0\48\17\16\122\243\0\0\0\217\17\131\0\48\17\16\143\244\0\0\0\217\17\132\0\48\17\16\134\245\0\0\0\217\17\133\0\48\17\16\13\246\0\0\0\217\17\134\0\48\17\16\230\247\0\0\0\217\17\135\0\48\17\16\215\248\0\0\0\217\17\136\0\48\17\16\58\249\0\0\0\217\17\137\0\48\17\16\42\250\0\0\0\217\17\138\0\48\17\16\3\251\0\0\0\226\17\252\0\111\18\253\0\48\18\17\43\174\0\0\0\111\18\254\0\48\18\17\142\175\0\0\0\111\18\255\0\48\18\17\109\176\0\0\0\111\18\0\1\48\18\17\95\177\0\0\0\111\18\1\1\48\18\17\231\178\0\0\0\111\18\2\1\48\18\17\109\179\0\0\0\48\17\16\222\3\1\0\0\226\17\4\1\111\18\5\1\48\18\17\214\182\0\0\0\111\18\5\1\48\18\17\237\181\0\0\0\111\18\6\1\48\18\17\125\183\0\0\0\111\18\7\1\48\18\17\176\184\0\0\0\111\18\6\1\48\18\17\146\185\0\0\0\111\18" ..
"\7\1\48\18\17\26\186\0\0\0\48\17\16\85\8\1\0\0\226\17\4\1\140\18\1\0\48\18\17\214\182\0\0\0\140\18\0\0\48\18\17\237\181\0\0\0\140\18\1\0\48\18\17\125\183\0\0\0\140\18\1\0\48\18\17\176\184\0\0\0\140\18\0\0\48\18\17\146\185\0\0\0\140\18\0\0\48\18\17\26\186\0\0\0\48\17\16\16\9\1\0\0\217\17\139\0\82\0\11\0\48\17\16\79\10\1\0\0\217\17\140\0\48\17\16\21\11\1\0\0\217\17\141\0\82\0\15\0\48\17\16\35\12\1\0\0\217\17\142\0\82\0\11\0\48\17\16\93\13\1\0\0\217\17\143\0\82\0\11\0\48\17\16\107\14\1\0\0\217\17\144\0\82\0\11\0\82\0\15\0\48\17\16\21\15\1\0\0\217\17\145\0\48\17\15\251\16\1\0\0\217\17\146\0\48\17\15\12\17\1\0\0\217\17\147\0\48\17\15\89\18\1\0\0\217\17\148\0\48\17\15\52\19\1\0\0\217\17\149\0\48\17\15\211\20\1\0\0\217\17\150\0\48\17\15\195\21\1\0\0\217\17\151\0\48\17\15\123\22\1\0\0\217\17\152\0\48\17\15\247\23\1\0\0\217\17\153\0\82\0\10\0\48\17\15\36\24\1\0\0\217\17\154\0\82\0\10\0\48\17\15\53\25\1\0\0\217\17\155\0\82\0\10\0\48\17\15\39\26\1\0\0\217\17\156\0\48\17\15\156\27\1\0\0\217\17\157\0\82\0\10\0\48\17\15\208\28\1\0\0\217\17\158\0\82\0\10\0\48\17\15\218\29\1\0\0\217\17\159\0\82\0\10\0\48\17\15\24\30\1\0\0\217\17\160\0\82\0\10\0\48\17\15\222\31\1\0\0\217\17\161\0\82\0\16\0\48\17\15\34\32\1\0\0\217\17\162\0\82\0\16\0\48\17\15\76\33\1\0\0\217\17\163\0\48\17\15\32\34\1\0\0\217\17\164\0\48\17\15\86\35\1\0\0\217\17\165\0\48\17\15\114\36\1\0\0\217\17\166\0\48\17\15\192\37\1\0\0\217\17\167\0\48\17\15\199\38\1\0\0\217\17\168\0" ..
"\48\17\15\219\39\1\0\0\217\17\169\0\48\17\15\75\40\1\0\0\217\17\170\0\48\17\15\89\41\1\0\0\217\17\171\0\48\17\15\178\42\1\0\0\217\17\172\0\82\0\11\0\48\17\15\122\43\1\0\0\217\17\173\0\82\0\16\0\48\17\15\87\44\1\0\0\217\17\174\0\82\0\16\0\48\17\15\225\45\1\0\0\217\17\175\0\82\0\10\0\48\17\15\128\46\1\0\0\217\17\176\0\48\17\15\177\47\1\0\0\217\17\177\0\82\0\16\0\48\17\15\97\48\1\0\0\217\17\178\0\82\0\16\0\48\17\15\12\49\1\0\0\217\17\179\0\82\0\11\0\82\0\16\0\48\17\15\48\50\1\0\0\217\17\180\0\82\0\16\0\48\17\15\136\51\1\0\0\217\17\181\0\82\0\16\0\48\17\15\80\52\1\0\0\217\17\182\0\82\0\16\0\82\0\10\0\48\17\15\255\53\1\0\0\217\17\183\0\82\0\10\0\82\0\16\0\48\17\15\50\54\1\0\0\217\17\184\0\82\0\16\0\48\17\15\32\55\1\0\0\217\17\185\0\82\0\16\0\82\0\11\0\48\17\15\168\56\1\0\0\217\17\186\0\82\0\16\0\48\17\15\138\57\1\0\0\217\17\187\0\48\17\15\210\58\1\0\0\217\17\188\0\82\0\16\0\82\0\10\0\82\0\11\0\48\17\15\215\59\1\0\0\217\17\189\0\82\0\10\0\82\0\16\0\48\17\15\254\60\1\0\0\217\17\190\0\48\17\15\71\61\1\0\0\217\17\191\0\82\0\16\0\48\17\15\176\62\1\0\0\217\17\192\0\82\0\10\0\82\0\16\0\48\17\15\244\63\1\0\0\217\17\193\0\82\0\10\0\82\0\16\0\48\17\15\9\64\1\0\0\217\17\194\0\82\0\16\0\82\0\10\0\48\17\15\97\65\1\0\0\217\17\195\0\82\0\16\0\82\0\10\0\48\17\15\15\66\1\0\0\217\17\196\0\48\17\15\25\67\1\0\0\226\17\83\1\111\18\174\0\48\18\17\74\68\1\0\0\111\18\175\0\48\18\17\76\69\1\0\0\111\18\176\0\48\18\17\75\70\1\0\0\111\18" ..
"\177\0\48\18\17\78\71\1\0\0\111\18\178\0\48\18\17\68\72\1\0\0\111\18\179\0\48\18\17\127\73\1\0\0\111\18\180\0\48\18\17\184\74\1\0\0\111\18\181\0\48\18\17\7\75\1\0\0\111\18\182\0\48\18\17\119\76\1\0\0\111\18\183\0\48\18\17\93\77\1\0\0\111\18\184\0\48\18\17\41\78\1\0\0\111\18\185\0\48\18\17\95\79\1\0\0\111\18\186\0\48\18\17\130\80\1\0\0\111\18\187\0\48\18\17\17\81\1\0\0\111\18\188\0\48\18\17\248\82\1\0\0\48\17\15\120\84\1\0\0\217\17\197\0\48\17\15\104\85\1\0\0\255\17\0\0\15\0\0\0\255\18\0\0\2\0\0\0\140\19\6\0\140\20\6\0\197\18\19\3\1\0\0\0\255\19\0\0\2\0\0\0\140\20\6\0\140\21\6\0\197\19\20\3\1\0\0\0\255\20\0\0\2\0\0\0\140\21\7\0\140\22\7\0\197\20\21\3\1\0\0\0\255\21\0\0\2\0\0\0\140\22\7\0\140\23\7\0\197\21\22\3\1\0\0\0\255\22\0\0\2\0\0\0\140\23\7\0\140\24\7\0\197\22\23\3\1\0\0\0\255\23\0\0\2\0\0\0\140\24\10\0\140\25\9\0\197\23\24\3\1\0\0\0\255\24\0\0\2\0\0\0\140\25\5\0\140\26\4\0\197\24\25\3\1\0\0\0\255\25\0\0\2\0\0\0\140\26\3\0\140\27\3\0\197\25\26\3\1\0\0\0\255\26\0\0\2\0\0\0\140\27\3\0\140\28\3\0\197\26\27\3\1\0\0\0\255\27\0\0\2\0\0\0\140\28\3\0\140\29\3\0\197\27\28\3\1\0\0\0\255\28\0\0\2\0\0\0\140\29\3\0\140\30\3\0\197\28\29\3\1\0\0\0\255\29\0\0\2\0\0\0\140\30\3\0\140\31\3\0\197\29\30\3\1\0\0\0\255\30\0\0\2\0\0\0\140\31\3\0\140\32\3\0\197\30\31\3\1\0\0\0\255\31\0\0\2\0\0\0\140\32\2\0\140\33\2\0\197\31\32\3\1\0\0\0\255\32\0\0\2\0\0\0" ..
"\140\33\1\0\140\34\1\0\197\32\33\3\1\0\0\0\197\17\18\16\1\0\0\0\48\17\15\237\86\1\0\0\140\17\8\0\48\17\15\159\87\1\0\0\217\17\198\0\82\0\10\0\82\0\16\0\48\17\15\16\88\1\0\0\217\17\199\0\48\17\15\204\89\1\0\0\217\17\200\0\48\17\15\189\90\1\0\0\217\17\201\0\82\0\16\0\48\17\15\141\91\1\0\0\217\17\202\0\82\0\16\0\48\17\15\51\92\1\0\0\217\17\203\0\82\0\16\0\48\17\15\193\93\1\0\0\217\17\204\0\82\0\16\0\48\17\15\29\94\1\0\0\217\17\205\0\82\0\10\0\82\0\16\0\48\17\15\168\95\1\0\0\217\17\206\0\82\0\10\0\82\0\16\0\48\17\15\160\96\1\0\0\217\17\207\0\82\0\16\0\82\0\10\0\48\17\15\95\97\1\0\0\217\17\208\0\82\0\16\0\48\17\15\170\98\1\0\0\217\17\209\0\82\0\16\0\48\17\15\243\99\1\0\0\217\17\210\0\82\0\16\0\48\17\15\164\100\1\0\0\217\17\211\0\82\0\16\0\48\17\15\10\101\1\0\0\217\17\212\0\82\0\10\0\48\17\15\116\102\1\0\0\217\17\213\0\82\0\10\0\48\17\15\34\103\1\0\0\217\17\214\0\82\0\16\0\82\0\10\0\48\17\15\90\104\1\0\0\217\17\215\0\82\0\16\0\48\17\15\194\105\1\0\0\217\17\216\0\48\17\15\230\106\1\0\0\217\17\217\0\48\17\15\52\107\1\0\0\217\17\218\0\82\0\10\0\82\0\16\0\48\17\15\159\108\1\0\0\217\17\219\0\82\0\11\0\82\0\16\0\48\17\15\180\109\1\0\0\217\17\220\0\82\0\10\0\82\0\16\0\82\0\11\0\48\17\15\68\110\1\0\0\217\17\221\0\82\0\10\0\48\17\15\120\111\1\0\0\217\17\222\0\48\17\15\60\112\1\0\0\217\17\223\0\82\0\10\0\48\17\15\216\113\1\0\0\188\17\10\19\22\0\0\0\159\17\2\1\255\17\0\0\0\0\0\0\164\18\115\1\0\0\32\87\159\18\1\2\198\19\0\0\48\19" ..
"\18\114\116\1\0\0\217\18\224\0\82\0\9\0\82\0\15\0\82\0\17\0\82\0\14\0\24\18\0\216\117\1\0\0\164\18\1\0\0\0\0\64\111\19\118\1\159\18\2\1\164\20\120\1\0\0\112\87\111\22\121\1\188\20\20\22\122\1\0\0\159\20\3\2\77\19\20\49\123\1\0\0\77\18\19\116\124\1\0\0\217\20\225\0\188\18\18\199\125\1\0\0\159\18\3\1\193\0\0\0\130\0\1\0\254\2\3\228\4\4\0\0\0\64\3\229\4\3\230\4\4\0\0\48\64\3\45\3\95\4\0\24\80\128\3\73\4\0\32\80\128\3\25\3\29\5\2\10\11\3\231\4\3\172\3\3\26\3\232\4\3\22\3\23\3\24\3\63\3\64\3\71\3\74\3\75\3\233\4\3\77\3\103\2\0\0\64\255\255\255\223\65\3\117\3\234\4\3\107\3\151\1\3\91\3\96\3\108\3\111\3\115\3\119\3\128\1\3\130\1\3\133\1\3\120\3\116\3\134\1\3\129\1\3\137\1\3\138\1\3\140\1\3\146\1\3\147\1\3\154\1\3\162\1\3\132\1\3\205\1\3\173\3\3\174\3\5\3\54\55\56\3\203\1\3\235\4\3\236\4\3\237\4\3\238\4\3\239\4\3\240\4\3\241\4\3\242\4\3\243\4\3\244\4\2\0\0\0\0\0\0\240\63\3\5\3\6\4\0\28\97\132\3\211\2\2\0\0\0\0\0\0\0\64\3\212\1\4\0\44\97\132\3\196\1\3\245\4\3\246\4\3\176\3\3\181\1\3\183\1\3\185\1\3\186\1\3\188\1\3\189\1\3\191\1\3\192\1\3\194\1\3\195\1\3\197\1\3\198\1\3\199\1\3\200\1\3\201\1\3\202\1\3\206\1\3\207\1\3\208\1\3\209\1\3\251\2\3\210\1\3\193\2\3\247\4\3\182\1\3\179\1\3\76\4\0\172\81\128\3\248\4\3\249\4\3\250\4\3\251\4\5\4\14\16\13\15\3\217\1\3\211\1\3\213\1\3\214\1\3\215\1\3\216\1\3\175\3\3\204\1\3\31\3\143\2\3\223\1\3\224\1\3\226\1\3\228\1\3\229\1\3\144\2" ..
"\3\145\2\3\141\2\3\219\1\3\230\1\3\233\1\3\234\1\3\237\1\3\238\1\3\239\1\3\240\1\3\242\1\3\245\1\3\250\1\3\133\2\3\249\1\3\142\2\3\140\2\3\146\2\3\205\3\3\210\3\3\214\3\3\226\3\3\132\4\3\136\4\3\134\4\3\133\4\3\164\2\3\202\2\3\147\2\3\148\2\3\149\2\3\150\2\3\210\2\3\219\2\3\217\2\3\151\2\3\152\2\3\153\2\3\154\2\3\155\2\3\156\2\3\157\2\3\158\2\3\169\2\3\157\3\3\158\3\3\159\3\3\160\3\3\161\3\3\162\3\3\156\3\3\252\4\3\253\4\3\254\4\3\255\4\3\128\5\3\129\5\3\154\3\3\155\3\3\164\4\5\16\174\1\175\1\176\1\177\1\178\1\179\1\180\1\181\1\182\1\183\1\184\1\185\1\186\1\187\1\188\1\189\1\3\169\4\3\150\3\3\151\3\3\152\3\3\161\4\5\4\192\1\193\1\194\1\195\1\3\130\5\3\161\2\3\163\2\3\166\2\3\167\2\3\170\2\3\176\2\3\180\2\3\182\2\3\183\2\3\187\2\3\188\2\3\189\2\3\190\2\3\192\2\3\195\2\3\196\2\3\197\2\3\198\2\3\200\2\3\199\2\3\179\2\3\204\2\3\205\2\3\201\2\3\207\2\3\214\2\3\215\2\3\216\2\3\218\2\3\220\2\3\165\2\3\224\2\3\233\2\3\235\2\3\245\2\3\246\2\3\247\2\3\248\2\3\249\2\3\250\2\3\252\2\3\128\3\3\130\3\3\131\3\3\133\3\3\134\3\3\135\3\3\136\3\3\137\3\3\146\3\3\147\3\3\149\3\3\153\3\3\163\3\5\6\174\1\175\1\176\1\177\1\178\1\179\1\3\138\3\3\139\3\3\140\3\3\141\3\3\142\3\3\143\3\3\166\3\5\6\182\1\181\1\183\1\184\1\185\1\186\1\3\148\3\3\131\5\3\132\5\3\167\3\3\168\3\3\169\3\3\170\3\3\244\1\3\175\2\3\162\2\3\178\3\3\179\3\3\213\2\3\180\3\3\181\3\3\182\3\3\184\3\3\186\3\3\187\3\3\189\3\3" ..
"\185\3\3\193\3\3\194\3\3\195\3\3\196\3\3\199\3\3\200\3\3\201\3\3\202\3\3\203\3\3\207\3\3\209\3\3\208\3\3\212\3\3\213\3\3\215\3\3\216\3\3\220\3\3\222\3\3\223\3\3\224\3\3\228\3\3\229\3\3\232\3\3\234\3\3\237\3\3\238\3\3\239\3\3\240\3\3\242\3\3\245\3\3\249\3\3\250\3\3\251\3\3\129\4\3\137\4\3\143\4\3\144\4\3\148\4\3\150\4\3\152\4\3\159\4\3\162\4\3\133\5\3\163\1\3\134\5\3\135\5\3\136\5\3\137\5\3\175\1\3\171\1\3\165\1\3\166\1\3\167\1\3\168\1\3\169\1\3\138\5\3\139\5\5\15\196\2\197\2\198\2\199\2\200\2\201\2\202\2\203\2\204\2\205\2\206\2\207\2\208\2\209\2\210\2\3\163\4\3\165\4\3\168\4\3\166\4\3\167\4\3\241\3\3\173\4\3\174\4\3\175\4\3\178\4\3\179\4\3\181\4\3\184\4\3\186\4\3\187\4\3\191\4\3\195\4\3\200\4\3\204\4\3\206\4\3\208\4\3\209\4\3\210\4\3\211\4\3\212\4\3\213\4\3\215\4\3\219\4\3\140\4\3\220\4\3\62\4\0\0\32\87\3\221\4\3\223\4\3\140\5\3\141\5\4\0\0\112\87\3\142\5\3\143\5\3\144\5\3\145\5\3\146\5\226\1\0\7\8\15\16\18\19\20\21\22\23\24\26\27\28\29\30\31\32\33\34\35\36\37\38\39\40\41\42\43\44\45\46\47\48\49\50\51\52\53\54\55\56\57\58\59\60\61\62\63\64\65\66\67\68\69\70\72\73\75\76\77\78\79\80\81\82\83\84\85\86\87\88\89\90\91\92\93\94\95\96\97\98\99\100\101\102\103\104\105\106\107\108\109\110\111\112\113\114\115\116\117\118\119\120\121\122\123\124\125\126\127\128\1\129\1\130\1\131\1\132\1\133\1\134\1\135\1\136\1\137\1\138\1\139\1\140\1\141\1\142\1\143\1\144\1\145\1\146\1\147\1\148\1\149\1\150\1\151\1\152\1\153\1\154\1\156\1\157\1\158\1\159\1\160\1\161\1" ..
"\162\1\163\1\164\1\165\1\166\1\167\1\168\1\169\1\170\1\171\1\172\1\173\1\174\1\175\1\176\1\177\1\178\1\179\1\180\1\181\1\182\1\183\1\184\1\185\1\186\1\187\1\188\1\189\1\190\1\191\1\192\1\193\1\194\1\195\1\196\1\197\1\198\1\199\1\200\1\201\1\202\1\203\1\204\1\205\1\206\1\207\1\208\1\209\1\210\1\211\1\212\1\213\1\214\1\215\1\216\1\217\1\218\1\219\1\220\1\221\1\222\1\223\1\224\1\225\1\226\1\227\1\228\1\229\1\230\1\231\1\232\1\233\1\234\1\235\1\236\1\237\1\238\1\239\1\240\1\242\1\243\1\0\199\15\1\0\0\0\0\2\0\1\0\1\0\2\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\1\0\0\0\1\0\0\0\13\16\0\0\0\0\0\251\1\0\4\0\0\0\176\3\0\0" ..
"\0\0\58\0\16\0\0\30\0\0\15\0\0\12\0\0\117\0\11\0\0\62\0\0\1\0\0\1\0\0\1\0\0\9\0\0\16\0\0\42\0\0\16\0\0\24\0\0\7\0\0\4\0\0\19\0\0\22\0\0\13\0\0\16\0\0\9\0\0\0\12\0\0\13\0\0\17\0\0\19\0\0\16\0\0\20\0\0\23\0\0\15\0\0\61\0\0\45\0\0\177\1\0\21\0\0\0\0\0\0\0\0\0\0\0\6\0\0\1\0\0\1\0\0\0\0\0\0\1\0\0\2\0\0\2\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\10\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\30\0\0\1\0\0\2\0\0\1\0\0\2\0\0\1\0\0\2\0\0\1\0\0\2\0\0\1\0\0\2\0\0\1\0\0\2\0\0\4\0\0\7\0\0\11\0\0\19\0\0\26\0\0\0\0\0\0\0\0\0\3\0\0\3\0\0\2\0\0\0\0\3\0\0\5\0\0\0\59\0\0\0\1\0\0\0\1\0\0\0\5\1\0\0\9\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\242\255\255\255\15\0\16\0\35\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\4\0\0\4\0\0\4\0\0\4\0\0\7\0\0\6\0\7\0\2\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0" ..
"\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\3\0\0\1\0\0\0\0\0\0\0\74\0\3\0\0\3\0\0\1\0\0\1\0\0\1\0\0\1\0\0\3\0\0\1\0\0\1\0\0\12\0\0\40\0\0\16\0\0\30\0\0\30\0\0\11\0\0\7\0\0\7\0\0\7\0\0\13\0\0\0\13\0\0\28\0\0\25\0\0\18\0\0\10\0\0\19\0\0\88\0\7\0\0\0\0\2\0\0\1\0\0\1\0\0\1\0\0\0\0\2\0\0\2\0\0\2\0\0\1\0\0\2\0\0\2\0\0\6\0\6\0\0\13\0\0\3\0\0\1\0\0\1\0\0\1\0\0\0\1\0\0\0\1\0\0\0\7\0\0\1\0\0\1\0\0\1\0\0\1\0\0\2\0\0\1\0\0\1\0\0\11\0\0\5\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\1\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\1\0\0\0\0\5\1\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\8\0\0\0\7\0\0\0\8\0\0\8\0\0\8\0\0\0\27\0\0\12\0\0\8\0\0\9\0\0\0\0\16\0\0\10\0\0\0\13\0\0\0\16\0\0\0\13\0\0\0\23\0\0\0\11\0\0\16\0\0\0\9\0\0\0\13\0\0\9\0\0\20\0\0\0\14\0\0\9\0\0\0\11\0\0\11\0\0\0\0\32\0\0\11\0\0\10\0\0\10\0\0\12\0\0\0\0\14\0\0\0\14\0\0\26\0\0\9\0\0\0\30\0\0\11\0\0\28\0\0\11\0\0\20\0\0\12\0\0\0" ..
"\30\0\0\25\0\0\15\0\0\0\12\0\0\0\18\0\0\23\0\0\22\0\0\27\0\0\9\0\0\36\0\0\22\0\0\18\0\0\24\0\0\21\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\1\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\2\0\0\0\53\0\0\10\0\0\0\20\0\0\0\11\0\0\0\11\0\0\0\0\163\1\0\0\14\0\0\10\0\0\30\0\0\20\0\0\7\0\0\7\0\0\23\0\0\11\0\0\0\9\0\0\0\12\0\0\0\12\0\0\9\0\0\0\8\0\0\0\7\0\0\0\15\0\0\0\10\0\0\0\9\0\0\0\7\0\0\8\0\0\18\0\0\7\0\0\9\0\0\11\0\0\13\0\0\27\0\0\13\0\0\11\0\0\0\27\0\0\0\12\0\0\0\21\0\0\0\10\0\0\7\0\0\0\13\0\0\0\19\0\0\0\0\19\0\0\0\28\0\0\0\34\0\0\0\0\14\0\0\0\0\25\0\0\0\23\0\0\0\0\14\0\0\0\18\0\0\11\0\0\0\0\0\46\0\0\0\0\38\0\0\25\0\0\0\17\0\0\0\0\51\0\0\0\0\22\0\0\0\0\33\0\0\0\0\44\0\0\17\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\1\0\0\0\0\2\0\0\14\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\17\0\0\0\0\31\0\0\15\0\0\13\0\0\0\25\0\0\0\28\0\0\0\39\0\0\0\13\0\0\0\0\24\0\0\0\0\20" ..
"\0\0\0\0\27\0\0\0\12\0\0\0\24\0\0\0\25\0\0\0\31\0\0\0\23\0\0\0\13\0\0\0\0\26\0\0\0\17\0\0\23\0\0\18\0\0\0\0\14\0\0\0\0\18\0\0\0\0\0\36\0\0\0\48\0\0\19\0\0\0\33\0\0\2\0\2\0\0\0\0\0\2\0\0\0\0\0\0\24\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0\244\1"
Sleep(100);
local bytecode_size = 0x13FAC;
local bytecode_loc = allocateSharedMemory("bytecode", 120000);
local bytecode = {};
for at=1,bytecode_size do
table.insert(bytecode, bytecode_str:byte(at,at));
end
writeBytes(bytecode_loc, bytecode);
writeInteger(bytecode_loc + 0x13FB0, 0x13FAC); -- this is essential
print(addr_to_str(bytecode_loc));
local chunkName = (arg_data + 128);
writeString(chunkName, "@Script1");
writeInteger(chunkName + 12, 8); -- string length
-- place the hook for gettop
writeBytes(r_gettop + 6, gettop_hook);
-- wait for lua state
t = createTimer(nil)
function checkHook(timer)
if (rL == 0) then
-- occur one time
rL = readInteger(trace_loc);
if (rL ~= 0) then
-- restore bytes
writeBytes(r_gettop + 6, gettop_old_bytes);
timer_setEnabled(t, false);
print("Lua state: " ..addr_to_str(rL));
setargs({rL});
executeCode(r_newthread);
rL = getReturn();
print(addr_to_str(rL));
setargs({rL, chunkName, bytecode_loc, 0x13FAC});
executeCode(r_deserialize);
executeCode(r_spawn); -- use 1st arg
end
end
end
timer_setInterval(t, 10);
timer_onTimer(t, checkHook);
timer_setEnabled(t, true);