zk-agent-cli 0.1.0-beta.1 → 0.1.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +15 -6
  2. package/dist/builtin-account-profiles/artifacts/daily-spend-limit/Account.json +693 -0
  3. package/dist/builtin-account-profiles/artifacts/sed-lite/Account.json +970 -0
  4. package/dist/builtin-account-profiles/artifacts/sed-lite/EOAValidator.json +50 -0
  5. package/dist/builtin-account-profiles/artifacts/sed-lite/NativePerTxLimitHook.json +267 -0
  6. package/dist/builtin-account-profiles/artifacts/sed-lite/TargetAllowlistHook.json +346 -0
  7. package/dist/builtin-account-profiles/artifacts/sed-lite/TargetSelectorAllowlistHook.json +643 -0
  8. package/dist/builtin-account-profiles/contracts/daily-spend-limit/AAFactory.sol +28 -0
  9. package/dist/builtin-account-profiles/contracts/daily-spend-limit/Account.sol +179 -0
  10. package/dist/builtin-account-profiles/contracts/daily-spend-limit/SpendLimit.sol +85 -0
  11. package/dist/builtin-account-profiles/contracts/sed-lite/Account.sol +230 -0
  12. package/dist/builtin-account-profiles/contracts/sed-lite/Auth.sol +16 -0
  13. package/dist/builtin-account-profiles/contracts/sed-lite/BootloaderAuth.sol +11 -0
  14. package/dist/builtin-account-profiles/contracts/sed-lite/EOAValidator.sol +23 -0
  15. package/dist/builtin-account-profiles/contracts/sed-lite/IValidationHook.sol +20 -0
  16. package/dist/builtin-account-profiles/contracts/sed-lite/IValidator.sol +11 -0
  17. package/dist/builtin-account-profiles/contracts/sed-lite/ModuleAuth.sol +11 -0
  18. package/dist/builtin-account-profiles/contracts/sed-lite/ModuleManager.sol +46 -0
  19. package/dist/builtin-account-profiles/contracts/sed-lite/NativePerTxLimitHook.sol +67 -0
  20. package/dist/builtin-account-profiles/contracts/sed-lite/OwnerManager.sol +25 -0
  21. package/dist/builtin-account-profiles/contracts/sed-lite/SelfAuth.sol +9 -0
  22. package/dist/builtin-account-profiles/contracts/sed-lite/TargetAllowlistHook.sol +110 -0
  23. package/dist/builtin-account-profiles/contracts/sed-lite/TargetSelectorAllowlistHook.sol +263 -0
  24. package/dist/builtin-account-profiles/contracts/sed-lite/ValidationHookManager.sol +76 -0
  25. package/dist/builtin-account-profiles/contracts/sed-lite/ValidatorManager.sol +31 -0
  26. package/dist/builtin-account-profiles/package.json +5 -0
  27. package/dist/index.js +4 -3
  28. package/package.json +1 -1
@@ -0,0 +1,693 @@
1
+ {
2
+ "contractName": "Account",
3
+ "sourceName": "contracts/daily-spend-limit/Account.sol",
4
+ "abi": [
5
+ {
6
+ "inputs": [
7
+ {
8
+ "internalType": "address",
9
+ "name": "_owner",
10
+ "type": "address"
11
+ }
12
+ ],
13
+ "stateMutability": "nonpayable",
14
+ "type": "constructor"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "InvalidInput",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [],
23
+ "name": "Keccak256InvalidReturnData",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "inputs": [],
28
+ "name": "Overflow",
29
+ "type": "error"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "UnsupportedPaymasterFlow",
34
+ "type": "error"
35
+ },
36
+ {
37
+ "inputs": [
38
+ {
39
+ "internalType": "uint256",
40
+ "name": "",
41
+ "type": "uint256"
42
+ }
43
+ ],
44
+ "name": "UnsupportedTxType",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "stateMutability": "nonpayable",
49
+ "type": "fallback"
50
+ },
51
+ {
52
+ "inputs": [],
53
+ "name": "ONE_DAY",
54
+ "outputs": [
55
+ {
56
+ "internalType": "uint256",
57
+ "name": "",
58
+ "type": "uint256"
59
+ }
60
+ ],
61
+ "stateMutability": "view",
62
+ "type": "function"
63
+ },
64
+ {
65
+ "inputs": [
66
+ {
67
+ "internalType": "bytes32",
68
+ "name": "",
69
+ "type": "bytes32"
70
+ },
71
+ {
72
+ "internalType": "bytes32",
73
+ "name": "",
74
+ "type": "bytes32"
75
+ },
76
+ {
77
+ "components": [
78
+ {
79
+ "internalType": "uint256",
80
+ "name": "txType",
81
+ "type": "uint256"
82
+ },
83
+ {
84
+ "internalType": "uint256",
85
+ "name": "from",
86
+ "type": "uint256"
87
+ },
88
+ {
89
+ "internalType": "uint256",
90
+ "name": "to",
91
+ "type": "uint256"
92
+ },
93
+ {
94
+ "internalType": "uint256",
95
+ "name": "gasLimit",
96
+ "type": "uint256"
97
+ },
98
+ {
99
+ "internalType": "uint256",
100
+ "name": "gasPerPubdataByteLimit",
101
+ "type": "uint256"
102
+ },
103
+ {
104
+ "internalType": "uint256",
105
+ "name": "maxFeePerGas",
106
+ "type": "uint256"
107
+ },
108
+ {
109
+ "internalType": "uint256",
110
+ "name": "maxPriorityFeePerGas",
111
+ "type": "uint256"
112
+ },
113
+ {
114
+ "internalType": "uint256",
115
+ "name": "paymaster",
116
+ "type": "uint256"
117
+ },
118
+ {
119
+ "internalType": "uint256",
120
+ "name": "nonce",
121
+ "type": "uint256"
122
+ },
123
+ {
124
+ "internalType": "uint256",
125
+ "name": "value",
126
+ "type": "uint256"
127
+ },
128
+ {
129
+ "internalType": "uint256[4]",
130
+ "name": "reserved",
131
+ "type": "uint256[4]"
132
+ },
133
+ {
134
+ "internalType": "bytes",
135
+ "name": "data",
136
+ "type": "bytes"
137
+ },
138
+ {
139
+ "internalType": "bytes",
140
+ "name": "signature",
141
+ "type": "bytes"
142
+ },
143
+ {
144
+ "internalType": "bytes32[]",
145
+ "name": "factoryDeps",
146
+ "type": "bytes32[]"
147
+ },
148
+ {
149
+ "internalType": "bytes",
150
+ "name": "paymasterInput",
151
+ "type": "bytes"
152
+ },
153
+ {
154
+ "internalType": "bytes",
155
+ "name": "reservedDynamic",
156
+ "type": "bytes"
157
+ }
158
+ ],
159
+ "internalType": "struct Transaction",
160
+ "name": "_transaction",
161
+ "type": "tuple"
162
+ }
163
+ ],
164
+ "name": "executeTransaction",
165
+ "outputs": [],
166
+ "stateMutability": "payable",
167
+ "type": "function"
168
+ },
169
+ {
170
+ "inputs": [
171
+ {
172
+ "components": [
173
+ {
174
+ "internalType": "uint256",
175
+ "name": "txType",
176
+ "type": "uint256"
177
+ },
178
+ {
179
+ "internalType": "uint256",
180
+ "name": "from",
181
+ "type": "uint256"
182
+ },
183
+ {
184
+ "internalType": "uint256",
185
+ "name": "to",
186
+ "type": "uint256"
187
+ },
188
+ {
189
+ "internalType": "uint256",
190
+ "name": "gasLimit",
191
+ "type": "uint256"
192
+ },
193
+ {
194
+ "internalType": "uint256",
195
+ "name": "gasPerPubdataByteLimit",
196
+ "type": "uint256"
197
+ },
198
+ {
199
+ "internalType": "uint256",
200
+ "name": "maxFeePerGas",
201
+ "type": "uint256"
202
+ },
203
+ {
204
+ "internalType": "uint256",
205
+ "name": "maxPriorityFeePerGas",
206
+ "type": "uint256"
207
+ },
208
+ {
209
+ "internalType": "uint256",
210
+ "name": "paymaster",
211
+ "type": "uint256"
212
+ },
213
+ {
214
+ "internalType": "uint256",
215
+ "name": "nonce",
216
+ "type": "uint256"
217
+ },
218
+ {
219
+ "internalType": "uint256",
220
+ "name": "value",
221
+ "type": "uint256"
222
+ },
223
+ {
224
+ "internalType": "uint256[4]",
225
+ "name": "reserved",
226
+ "type": "uint256[4]"
227
+ },
228
+ {
229
+ "internalType": "bytes",
230
+ "name": "data",
231
+ "type": "bytes"
232
+ },
233
+ {
234
+ "internalType": "bytes",
235
+ "name": "signature",
236
+ "type": "bytes"
237
+ },
238
+ {
239
+ "internalType": "bytes32[]",
240
+ "name": "factoryDeps",
241
+ "type": "bytes32[]"
242
+ },
243
+ {
244
+ "internalType": "bytes",
245
+ "name": "paymasterInput",
246
+ "type": "bytes"
247
+ },
248
+ {
249
+ "internalType": "bytes",
250
+ "name": "reservedDynamic",
251
+ "type": "bytes"
252
+ }
253
+ ],
254
+ "internalType": "struct Transaction",
255
+ "name": "_transaction",
256
+ "type": "tuple"
257
+ }
258
+ ],
259
+ "name": "executeTransactionFromOutside",
260
+ "outputs": [],
261
+ "stateMutability": "payable",
262
+ "type": "function"
263
+ },
264
+ {
265
+ "inputs": [
266
+ {
267
+ "internalType": "bytes32",
268
+ "name": "_hash",
269
+ "type": "bytes32"
270
+ },
271
+ {
272
+ "internalType": "bytes",
273
+ "name": "_signature",
274
+ "type": "bytes"
275
+ }
276
+ ],
277
+ "name": "isValidSignature",
278
+ "outputs": [
279
+ {
280
+ "internalType": "bytes4",
281
+ "name": "magic",
282
+ "type": "bytes4"
283
+ }
284
+ ],
285
+ "stateMutability": "view",
286
+ "type": "function"
287
+ },
288
+ {
289
+ "inputs": [
290
+ {
291
+ "internalType": "address",
292
+ "name": "",
293
+ "type": "address"
294
+ }
295
+ ],
296
+ "name": "limits",
297
+ "outputs": [
298
+ {
299
+ "internalType": "uint256",
300
+ "name": "limit",
301
+ "type": "uint256"
302
+ },
303
+ {
304
+ "internalType": "uint256",
305
+ "name": "available",
306
+ "type": "uint256"
307
+ },
308
+ {
309
+ "internalType": "uint256",
310
+ "name": "resetTime",
311
+ "type": "uint256"
312
+ },
313
+ {
314
+ "internalType": "bool",
315
+ "name": "isEnabled",
316
+ "type": "bool"
317
+ }
318
+ ],
319
+ "stateMutability": "view",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [],
324
+ "name": "owner",
325
+ "outputs": [
326
+ {
327
+ "internalType": "address",
328
+ "name": "",
329
+ "type": "address"
330
+ }
331
+ ],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "inputs": [
337
+ {
338
+ "internalType": "bytes32",
339
+ "name": "",
340
+ "type": "bytes32"
341
+ },
342
+ {
343
+ "internalType": "bytes32",
344
+ "name": "",
345
+ "type": "bytes32"
346
+ },
347
+ {
348
+ "components": [
349
+ {
350
+ "internalType": "uint256",
351
+ "name": "txType",
352
+ "type": "uint256"
353
+ },
354
+ {
355
+ "internalType": "uint256",
356
+ "name": "from",
357
+ "type": "uint256"
358
+ },
359
+ {
360
+ "internalType": "uint256",
361
+ "name": "to",
362
+ "type": "uint256"
363
+ },
364
+ {
365
+ "internalType": "uint256",
366
+ "name": "gasLimit",
367
+ "type": "uint256"
368
+ },
369
+ {
370
+ "internalType": "uint256",
371
+ "name": "gasPerPubdataByteLimit",
372
+ "type": "uint256"
373
+ },
374
+ {
375
+ "internalType": "uint256",
376
+ "name": "maxFeePerGas",
377
+ "type": "uint256"
378
+ },
379
+ {
380
+ "internalType": "uint256",
381
+ "name": "maxPriorityFeePerGas",
382
+ "type": "uint256"
383
+ },
384
+ {
385
+ "internalType": "uint256",
386
+ "name": "paymaster",
387
+ "type": "uint256"
388
+ },
389
+ {
390
+ "internalType": "uint256",
391
+ "name": "nonce",
392
+ "type": "uint256"
393
+ },
394
+ {
395
+ "internalType": "uint256",
396
+ "name": "value",
397
+ "type": "uint256"
398
+ },
399
+ {
400
+ "internalType": "uint256[4]",
401
+ "name": "reserved",
402
+ "type": "uint256[4]"
403
+ },
404
+ {
405
+ "internalType": "bytes",
406
+ "name": "data",
407
+ "type": "bytes"
408
+ },
409
+ {
410
+ "internalType": "bytes",
411
+ "name": "signature",
412
+ "type": "bytes"
413
+ },
414
+ {
415
+ "internalType": "bytes32[]",
416
+ "name": "factoryDeps",
417
+ "type": "bytes32[]"
418
+ },
419
+ {
420
+ "internalType": "bytes",
421
+ "name": "paymasterInput",
422
+ "type": "bytes"
423
+ },
424
+ {
425
+ "internalType": "bytes",
426
+ "name": "reservedDynamic",
427
+ "type": "bytes"
428
+ }
429
+ ],
430
+ "internalType": "struct Transaction",
431
+ "name": "_transaction",
432
+ "type": "tuple"
433
+ }
434
+ ],
435
+ "name": "payForTransaction",
436
+ "outputs": [],
437
+ "stateMutability": "payable",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "bytes32",
444
+ "name": "",
445
+ "type": "bytes32"
446
+ },
447
+ {
448
+ "internalType": "bytes32",
449
+ "name": "",
450
+ "type": "bytes32"
451
+ },
452
+ {
453
+ "components": [
454
+ {
455
+ "internalType": "uint256",
456
+ "name": "txType",
457
+ "type": "uint256"
458
+ },
459
+ {
460
+ "internalType": "uint256",
461
+ "name": "from",
462
+ "type": "uint256"
463
+ },
464
+ {
465
+ "internalType": "uint256",
466
+ "name": "to",
467
+ "type": "uint256"
468
+ },
469
+ {
470
+ "internalType": "uint256",
471
+ "name": "gasLimit",
472
+ "type": "uint256"
473
+ },
474
+ {
475
+ "internalType": "uint256",
476
+ "name": "gasPerPubdataByteLimit",
477
+ "type": "uint256"
478
+ },
479
+ {
480
+ "internalType": "uint256",
481
+ "name": "maxFeePerGas",
482
+ "type": "uint256"
483
+ },
484
+ {
485
+ "internalType": "uint256",
486
+ "name": "maxPriorityFeePerGas",
487
+ "type": "uint256"
488
+ },
489
+ {
490
+ "internalType": "uint256",
491
+ "name": "paymaster",
492
+ "type": "uint256"
493
+ },
494
+ {
495
+ "internalType": "uint256",
496
+ "name": "nonce",
497
+ "type": "uint256"
498
+ },
499
+ {
500
+ "internalType": "uint256",
501
+ "name": "value",
502
+ "type": "uint256"
503
+ },
504
+ {
505
+ "internalType": "uint256[4]",
506
+ "name": "reserved",
507
+ "type": "uint256[4]"
508
+ },
509
+ {
510
+ "internalType": "bytes",
511
+ "name": "data",
512
+ "type": "bytes"
513
+ },
514
+ {
515
+ "internalType": "bytes",
516
+ "name": "signature",
517
+ "type": "bytes"
518
+ },
519
+ {
520
+ "internalType": "bytes32[]",
521
+ "name": "factoryDeps",
522
+ "type": "bytes32[]"
523
+ },
524
+ {
525
+ "internalType": "bytes",
526
+ "name": "paymasterInput",
527
+ "type": "bytes"
528
+ },
529
+ {
530
+ "internalType": "bytes",
531
+ "name": "reservedDynamic",
532
+ "type": "bytes"
533
+ }
534
+ ],
535
+ "internalType": "struct Transaction",
536
+ "name": "_transaction",
537
+ "type": "tuple"
538
+ }
539
+ ],
540
+ "name": "prepareForPaymaster",
541
+ "outputs": [],
542
+ "stateMutability": "payable",
543
+ "type": "function"
544
+ },
545
+ {
546
+ "inputs": [
547
+ {
548
+ "internalType": "address",
549
+ "name": "_token",
550
+ "type": "address"
551
+ }
552
+ ],
553
+ "name": "removeSpendingLimit",
554
+ "outputs": [],
555
+ "stateMutability": "nonpayable",
556
+ "type": "function"
557
+ },
558
+ {
559
+ "inputs": [
560
+ {
561
+ "internalType": "address",
562
+ "name": "_token",
563
+ "type": "address"
564
+ },
565
+ {
566
+ "internalType": "uint256",
567
+ "name": "_amount",
568
+ "type": "uint256"
569
+ }
570
+ ],
571
+ "name": "setSpendingLimit",
572
+ "outputs": [],
573
+ "stateMutability": "nonpayable",
574
+ "type": "function"
575
+ },
576
+ {
577
+ "inputs": [
578
+ {
579
+ "internalType": "bytes32",
580
+ "name": "",
581
+ "type": "bytes32"
582
+ },
583
+ {
584
+ "internalType": "bytes32",
585
+ "name": "_suggestedSignedHash",
586
+ "type": "bytes32"
587
+ },
588
+ {
589
+ "components": [
590
+ {
591
+ "internalType": "uint256",
592
+ "name": "txType",
593
+ "type": "uint256"
594
+ },
595
+ {
596
+ "internalType": "uint256",
597
+ "name": "from",
598
+ "type": "uint256"
599
+ },
600
+ {
601
+ "internalType": "uint256",
602
+ "name": "to",
603
+ "type": "uint256"
604
+ },
605
+ {
606
+ "internalType": "uint256",
607
+ "name": "gasLimit",
608
+ "type": "uint256"
609
+ },
610
+ {
611
+ "internalType": "uint256",
612
+ "name": "gasPerPubdataByteLimit",
613
+ "type": "uint256"
614
+ },
615
+ {
616
+ "internalType": "uint256",
617
+ "name": "maxFeePerGas",
618
+ "type": "uint256"
619
+ },
620
+ {
621
+ "internalType": "uint256",
622
+ "name": "maxPriorityFeePerGas",
623
+ "type": "uint256"
624
+ },
625
+ {
626
+ "internalType": "uint256",
627
+ "name": "paymaster",
628
+ "type": "uint256"
629
+ },
630
+ {
631
+ "internalType": "uint256",
632
+ "name": "nonce",
633
+ "type": "uint256"
634
+ },
635
+ {
636
+ "internalType": "uint256",
637
+ "name": "value",
638
+ "type": "uint256"
639
+ },
640
+ {
641
+ "internalType": "uint256[4]",
642
+ "name": "reserved",
643
+ "type": "uint256[4]"
644
+ },
645
+ {
646
+ "internalType": "bytes",
647
+ "name": "data",
648
+ "type": "bytes"
649
+ },
650
+ {
651
+ "internalType": "bytes",
652
+ "name": "signature",
653
+ "type": "bytes"
654
+ },
655
+ {
656
+ "internalType": "bytes32[]",
657
+ "name": "factoryDeps",
658
+ "type": "bytes32[]"
659
+ },
660
+ {
661
+ "internalType": "bytes",
662
+ "name": "paymasterInput",
663
+ "type": "bytes"
664
+ },
665
+ {
666
+ "internalType": "bytes",
667
+ "name": "reservedDynamic",
668
+ "type": "bytes"
669
+ }
670
+ ],
671
+ "internalType": "struct Transaction",
672
+ "name": "_transaction",
673
+ "type": "tuple"
674
+ }
675
+ ],
676
+ "name": "validateTransaction",
677
+ "outputs": [
678
+ {
679
+ "internalType": "bytes4",
680
+ "name": "magic",
681
+ "type": "bytes4"
682
+ }
683
+ ],
684
+ "stateMutability": "payable",
685
+ "type": "function"
686
+ },
687
+ {
688
+ "stateMutability": "payable",
689
+ "type": "receive"
690
+ }
691
+ ],
692
+ "bytecode": "0x0012000000000002000700000000000200000060041002700000059803400197000100000031035500020000003103550003000000310355000400000031035500050000003103550006000000310355000700000031035500080000003103550009000000310355000a000000310355000b000000310355000c000000310355000d000000310355000e000000310355000f00000031035500100000003103550011000000010355000005980040019d0000000100200190000000430000c13d0000008002000039000000400020043f000000040030008c000000700000413d000000000201043b000000e0022002700000059e0020009c0000007e0000a13d0000059f0020009c0000008f0000213d000005a30020009c000002150000613d000005a40020009c000001b20000613d000005a50020009c000000720000c13d0000000002000416000000000002004b0000021b0000c13d000000440030008c0000021b0000413d0000000402100370000000000402043b0000059b0040009c0000021b0000213d0000002401100370000000000301043b00000000010004100000000002000411000000000012004b000002690000c13d000000000003004b000002750000c13d000005bd01000041000000800010043f0000002001000039000000840010043f0000000e01000039000000a40010043f000005cd01000041000000c40010043f000005ce010000410000165d000104300000000002000416000000000002004b0000021b0000c13d0000001f0230003900000599022001970000008002200039000000400020043f0000001f0430018f0000059a053001980000008002500039000000540000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000500000c13d000000000004004b000000610000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000021b0000413d000000800100043d0000059b0010009c0000021b0000213d0000000102000039000000000302041a0000059c03300197000000000113019f000000000012041b0000002001000039000001000010044300000120000004430000059d010000410000165c0001042e000000000003004b000001f50000613d0000000001000416000000000001004b0000021b0000c13d0000000001000411000080010010008c000001f50000c13d000005cb01000041000000000010043f0000000101000039000000040010043f000005cc010000410000165d00010430000005a60020009c000001080000a13d000005a70020009c000001f70000613d000005a80020009c000001ab0000613d000005a90020009c000000720000c13d0000000001000416000000000001004b0000021b0000c13d0000000101000039000000000101041a0000059b01100197000000800010043f000005db010000410000165c0001042e000005a00020009c0000021d0000613d000005a10020009c000001d60000613d000005a20020009c000000720000c13d000000240030008c0000021b0000413d0000000402100370000000000502043b000005ac0050009c0000021b0000213d00000004045000390000000002430049000005ad0020009c0000021b0000213d000002600020008c0000021b0000413d000600000004001d000400000005001d000501040050003d00000005011003600000000002000414000000000101043b000005ae03000041000000a00030043f000000a40010043f0000002401000039000000800010043f000000e001000039000000400010043f000000c001200210000005af01100197000005b0011001c700008003020000390000000003000019000000000400001900000000050000190000000006000019165b164c0000040f000000600310027000000598053001970000001f0350003900000599063001970000003f03600039000005b107300197000000400300043d0000000004370019000000000074004b00000000070000390000000107004039000005ac0040009c000003600000213d0000000100700190000003600000c13d000000400040043f0000000004530436000000000006004b000000d20000613d0000000006640019000000000700003100000011077003670000000008040019000000007907043c0000000008980436000000000068004b000000ce0000c13d0000001f0650018f0000059a075001980000000005740019000000dc0000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000000d80000c13d000000000006004b000000e90000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000002880000613d0000000601000029165b08350000040f000000050200002900000060032000390000001102000367000000000432034f000000000504043b000000000005004b000000f70000c13d000000400430008a000000000442034f000000000504043b000000800630008a000000000362034f000000000303043b0000059b00300198000002dc0000c13d000000400360008a000000000332034f000000800460008a000000000242034f000000000402043b000000000303043b00000000023400a9000000000003004b000002d30000c13d000000000052004b000002b80000213d000002dc0000013d000005aa0020009c0000018c0000613d000005ab0020009c000000720000c13d000000640030008c0000021b0000413d0000004402100370000000000402043b000005ac0040009c0000021b0000213d00000004054000390000000002530049000005ad0020009c0000021b0000213d000002600020008c0000021b0000413d0000002402100370000000000302043b0000000002000411000080010020008c0000025d0000c13d000600000003001d000500000005001d000400000004001d0000010402400039000000000121034f0000000002000414000000000101043b000005ae03000041000000a00030043f000000a40010043f0000002401000039000000800010043f000000e001000039000000400010043f000000c001200210000005af01100197000005b0011001c700008003020000390000000003000019000000000400001900000000050000190000000006000019165b164c0000040f000000600310027000000598053001970000001f0350003900000599063001970000003f03600039000005b107300197000000400300043d0000000004370019000000000074004b00000000070000390000000107004039000005ac0040009c000003600000213d0000000100700190000003600000c13d000000400040043f0000000004530436000000000006004b0000014f0000613d0000000006640019000000000700003100000011077003670000000008040019000000007907043c0000000008980436000000000068004b0000014b0000c13d0000001f0650018f0000059a075001980000000005740019000001590000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000001550000c13d000000000006004b000001660000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000002880000613d0000000601000029000000000001004b0000016d0000c13d0000000501000029165b08350000040f000600000001001d0000000501000029165b151b0000040f0000000002000410000700000002001d000300000001001d0000800a0100003900000024030000390000000004000415000000070440008a0000000504400210000005b202000041165b16350000040f000000030010006b0000000001000039000000010100a039165b05ef0000040f0000000401000029000001e4021000390000000501000029165b06060000040f0000000003000031165b04d70000040f00000000020100190000000601000029165b05220000040f000005e001100197000005e10010009c0000000001000019000005e201006041000001a40000013d0000000002000416000000000002004b0000021b0000c13d000000440030008c0000021b0000413d0000002402100370000000000402043b000005ac0040009c0000021b0000213d0000002302400039000000000032004b0000021b0000813d0000000402400039000000000221034f000000000202043b0000000401100370000000000101043b000600000001001d0000002401400039165b04d70000040f00000000020100190000000601000029165b05220000040f000005e001100197000000400200043d0000000000120435000005980020009c00000598020080410000004001200210000005e3011001c70000165c0001042e0000000001000416000000000001004b0000021b0000c13d000005dc01000041000000800010043f000005db010000410000165c0001042e0000000002000416000000000002004b0000021b0000c13d000000240030008c0000021b0000413d0000000401100370000000000101043b0000059b0010009c0000021b0000213d000600000001001d00000000010004100000000002000411000000000012004b00000000010000390000000101006039165b05c40000040f0000000601000029165b06300000040f165b05db0000040f0000000601000029000000000010043f000000200000043f00000040020000390000000001000019165b16200000040f000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000301100039000000000301041a000005e402300197000000000021041b00000000010000190000165c0001042e000000640030008c0000021b0000413d0000004402100370000000000202043b000005ac0020009c0000021b0000213d0000000003230049000000040330008a000005ad0030009c0000021b0000213d000002600030008c0000021b0000413d0000000003000411000080010030008c0000025d0000c13d000000a403200039000000000331034f0000006402200039000000000121034f000000000101043b000000000203043b000000000002004b000002910000c13d0000000001000414000005980010009c0000059801008041000000c0011002100000800102000039165b164c0000040f0000000100200190000002a20000613d00000000010000190000165c0001042e0000000002000416000000000002004b0000021b0000c13d000000240030008c0000021b0000413d0000000401100370000000000101043b0000059b0010009c0000021b0000213d000000000010043f000000200000043f00000040020000390000000001000019165b16200000040f0000000302100039000000000202041a0000000203100039000000000303041a0000000104100039000000000404041a000000000101041a000000800010043f000000a00040043f000000c00030043f000000ff002001900000000001000039000000010100c039000000e00010043f000005dd010000410000165c0001042e000000640030008c0000021b0000413d0000004402100370000000000202043b000005ac0020009c000002290000a13d00000000010000190000165d000104300000000001030019165b050f0000040f000600000001001d0000000001000411000080010010008c00000000010000390000000101006039165b05ad0000040f0000000601000029165b068e0000040f00000000010000190000165c0001042e00000004042000390000000005430049000005ad0050009c0000021b0000213d000002600050008c0000021b0000413d0000000006000411000080010060008c0000025d0000c13d0000022402200039000000000621034f000000000606043b0000001f0550008a000005b407600197000005b408500197000000000987013f000000000087004b0000000007000019000005b407004041000000000056004b0000000005000019000005b405008041000005b40090009c000000000705c019000000000007004b0000021b0000c13d0000000005460019000000000451034f000000000404043b000005ac0040009c0000021b0000213d00000000064300490000002003500039000005b405600197000005b407300197000000000857013f000000000057004b0000000005000019000005b405004041000000000063004b0000000006000019000005b406002041000005b40080009c000000000506c019000000000005004b0000021b0000c13d000000030040008c000003660000213d000005da01000041000000000010043f000005d9010000410000165d00010430000005bd01000041000000800010043f0000002001000039000000840010043f0000002401000039000000a40010043f000005de01000041000000c40010043f000005df01000041000000e40010043f000005c7010000410000165d00010430000005bd01000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f000005c501000041000000c40010043f000005c601000041000000e40010043f000005c7010000410000165d00010430000600000003001d000500000004001d0000000001040019165b06300000040f000005c8020000410000000000200443000000000001004b000002ac0000c13d0000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000003030000613d000000000101043b000002be0000013d000005980040009c000005980400804100000040014002100000000002030433000005980020009c00000598020080410000006002200210000000000112019f0000165d0001043000000000032100a900000000022300d9000000000012004b000002b80000c13d0000000001000414000000000003004b000001ee0000613d000005980010009c0000059801008041000000c001100210000005c2011001c7000080090200003900008001040000390000000005000019165b164c0000040f0000000100200190000001f50000c13d000000400100043d0000006402100039000005c30300004100000000003204350000004402100039000005c403000041000000000032043500000024021000390000002503000039000002f80000013d0000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000003030000613d000000000101043b000005ca0110009c000002be0000413d000005cb01000041000000000010043f0000001101000039000000040010043f000005cc010000410000165d00010430000400000001001d0000000501000029000000000010043f000000200000043f00000040020000390000000001000019165b16200000040f0000000603000029000000000031041b0000000102100039000000000032041b00000002021000390000000403000029000000000032041b0000000301100039000000000301041a000005e40230019700000001022001bf000000000021041b00000000010000190000165c0001042e00000000033200d90000000005520019000000000025004b00000000020000390000000102004039000000000043004b000002b80000c13d0000000100200190000002b80000c13d000300000006001d000500000005001d000200000001001d000005b2010000410000000000100443000000000100041000000004001004430000000001000414000005980010009c0000059801008041000000c001100210000005b3011001c70000800a02000039165b16510000040f0000000100200190000003030000613d000000000101043b000000050010006b000003040000a13d000000400100043d0000006402100039000005bf0300004100000000003204350000004402100039000005c0030000410000000000320435000000240210003900000022030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005c1011001c70000165d00010430000000000001042f000000030100002900000100021000390000001101000367000000000221034f000000000302043b0000000002000031000000040420006a000000230440008a000005b405400197000005b406300197000000000756013f000000000056004b0000000005000019000005b405004041000000000043004b0000000004000019000005b404008041000005b40070009c000000000504c019000000000005004b00000006040000290000021b0000c13d0000000003430019000000000431034f000000000504043b000005ac0050009c0000021b0000213d00000000045200490000002006300039000005b403400197000005b407600197000000000837013f000000000037004b0000000003000019000005b403004041000000000046004b0000000004000019000005b404002041000005b40080009c000000000304c019000000000003004b0000021b0000c13d0000001f03500039000005b5033001970000003f03300039000005b604300197000000400300043d0000000004430019000000000034004b00000000070000390000000107004039000005ac0040009c000003600000213d0000000100700190000003600000c13d000000400040043f00000000045304360000000007650019000000000027004b0000021b0000213d000000000761034f000005e5085001980000001f0950018f00000000068400190000034b0000613d000000000a07034f000000000b04001900000000ac0a043c000000000bcb043600000000006b004b000003470000c13d000000000009004b000003580000613d000000000787034f0000000308900210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f0000000000760435000000000554001900000000000504350000000005030433000000410050008c0000043d0000613d000000400300043d000005b70030009c0000042e0000a13d000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d00010430000000000531034f000000000505043b000005cf05500197000005d00050009c000003710000613d000005d10050009c000001f50000613d000005d801000041000000000010043f000005d9010000410000165d00010430000000440040008c000002590000413d0000000403300039000000000431034f000000000404043b000600000004001d0000059b0040009c0000021b0000213d000001400220008a000000000221034f0000002003300039000000000131034f000000000101043b000500000001001d000000000102043b000005d202000041000000800020043f00000000020004100000059b02200197000300000002001d000000840020043f0000059b01100197000400000001001d000000a40010043f0000000001000414000005980010009c0000059801008041000000c001100210000005d3011001c70000000602000029165b16510000040f000000800a00003900000060031002700000059803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000039f0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000039b0000c13d000000000006004b000003ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000004220000613d0000001f01400039000000600110018f00000080021001bf000000400020043f000000200030008c0000021b0000413d000000800300043d000000050030006c000001f50000813d000000a003100039000005d4040000410000000000430435000000a40310003900000004040000290000000000430435000000c40310003900000000000304350000004403000039000000000032043500000100011001bf000000400010043f0000000601000029165b15510000040f0000000001000415000100000001001d000000400300043d000200000003001d000000240130003900000004020000290000000000210435000005d2010000410000000000130435000000040130003900000003020000290000000000210435000005980030009c0000059801000041000000000103401900000040011002100000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005d5011001c70000000602000029165b16510000040f00000060031002700000059803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000020b0000290000000205700029000003ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000003e90000c13d000000000006004b000003fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000004a80000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000005ac0020009c000003600000213d0000000100100190000003600000c13d000000400020043f000000200030008c0000021b0000413d0000004401200039000000240320003900000000040b0433000000000004004b000004c60000c13d0000002004200039000005d4050000410000000000540435000000040400002900000000004304350000000503000029000000000031043500000044010000390000000000120435000005b70020009c000003600000213d0000008001200039000000400010043f0000000601000029165b15510000040f00000000010004150000000101100069000000000100000200000000010000190000165c0001042e0000001f0530018f0000059a06300198000000400200043d0000000004620019000004b30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004290000c13d000004b30000013d0000008005300039000000400050043f00000041040000390000000004430436000000000121034f0000000002040019000000001601043c0000000002620436000000000052004b000004340000c13d00000060013000390000000002010433000005b802200197000005b9022001c7000000000021043500000041013000390000000001010433000000400230003900000000050204330000000002040433000000400300043d000000400430003900000000002404350000006002300039000500000005001d000000000052043500000002020000290000000002230436000000ff0110018f000400000001001d0000000000120435000000000000043f000005980030009c000005980300804100000040013002100000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005ba011001c70000000102000039165b16510000040f00000060031002700000059803300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004670000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004630000c13d000000000005004b000004740000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000049c0000613d000000000100043d0000059b011001970000000102000039000000000202041a0000059b02200197000000000021004b0000000002000039000000010200c039000000000001004b0000000001000039000000010100c039000000000121016f00000001001001900000048b0000c13d0000000501000029000005bb0010009c0000048b0000213d00000004010000290000001b0110008a000000020010008c000002250000413d000000400100043d0000004402100039000005bc03000041000000000032043500000024021000390000000d030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005be011001c70000165d000104300000001f0530018f0000059a06300198000000400200043d0000000004620019000004b30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004a30000c13d000004b30000013d0000001f0530018f0000059a06300198000000400200043d0000000004620019000004b30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004af0000c13d000000000005004b000004c00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005980020009c00000598020080410000004002200210000000000112019f0000165d00010430000005bd04000041000000000042043500000004042000390000002005000039000000000054043500000036040000390000000000430435000005d60300004100000000003104350000006401200039000005d7030000410000000000310435000005980020009c00000598020080410000004001200210000005c1011001c70000165d00010430000005e60020009c000005070000813d00000000040100190000001f01200039000005b5011001970000003f01100039000005b605100197000000400100043d0000000005510019000000000015004b00000000060000390000000106004039000005ac0050009c000005070000213d0000000100600190000005070000c13d000000400050043f00000000052104360000000006420019000000000036004b0000050d0000213d000005e5062001980000001f0720018f00000011044003670000000003650019000004f70000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000004f30000c13d000000000007004b000005040000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d0001043000000000010000190000165d00010430000005ad0010009c000005200000213d000000630010008c000005200000a13d00000044020000390000001102200367000000000202043b000005ac0020009c000005200000213d00000004022000390000000001210049000005ad0010009c000005200000213d000002600010008c000005200000413d0000000001020019000000000001042d00000000010000190000165d0001043000020000000000020000000003020433000000410030008c000005380000613d000000400200043d000005e70020009c000005a70000813d0000008003200039000000400030043f0000004104000039000000000442043600000000050000310000001105500367000000005605043c0000000004640436000000000034004b0000052f0000c13d00000060032000390000000004030433000005b804400197000005b9044001c70000000000430435000000410320003900000000030304330000004004200039000000000604043300000020022000390000000002020433000000400400043d000000400540003900000000002504350000006002400039000200000006001d00000000006204350000000001140436000000ff0230018f000100000002001d0000000000210435000000000000043f000005980040009c000005980400804100000040014002100000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005ba011001c70000000102000039165b16510000040f00000060031002700000059803300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000005620000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000055e0000c13d000000000005004b0000056f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000005890000613d00000001010000290000001d0110008a000005e80010009c000000000100003900000001010040390000000202000029000005bb0020009c00000001011021bf000000000200043d0000059b022001970000000103000039000000000303041a0000059b03300197000000000032004b0000000003000039000000010300c039000000000002004b0000000002000039000000010200c039000000000223016f00000000001201a0000005e101000041000000000100c019000000000001042d0000001f0530018f0000059a06300198000000400200043d0000000004620019000005940000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005900000c13d000000000005004b000005a10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005980020009c00000598020080410000004002200210000000000112019f0000165d00010430000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d00010430000000000001004b000005b00000613d000000000001042d000000400100043d0000006402100039000005df0300004100000000003204350000004402100039000005de030000410000000000320435000000240210003900000024030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005c1011001c70000165d00010430000000000001004b000005c70000613d000000000001042d000000400100043d0000006402100039000005c60300004100000000003204350000004402100039000005c503000041000000000032043500000024021000390000002f030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005c1011001c70000165d00010430000000000001004b000005de0000613d000000000001042d000000400100043d0000004402100039000005e903000041000000000032043500000024021000390000000e030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005be011001c70000165d00010430000000000001004b000005f20000613d000000000001042d000000400100043d0000006402100039000005bf0300004100000000003204350000004402100039000005c0030000410000000000320435000000240210003900000022030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005c1011001c70000165d000104300000001104000367000000000224034f000000000202043b000000000300003100000000051300490000001f0550008a000005b406500197000005b407200197000000000867013f000000000067004b0000000006000019000005b406002041000000000052004b0000000005000019000005b405004041000005b40080009c000000000605c019000000000006004b0000062e0000613d0000000001120019000000000214034f000000000202043b000005ac0020009c0000062e0000213d00000000032300490000002001100039000005b404300197000005b405100197000000000645013f000000000045004b0000000004000019000005b404004041000000000031004b0000000003000019000005b403002041000005b40060009c000000000403c019000000000004004b0000062e0000c13d000000000001042d00000000010000190000165d0001043000020000000000020000059b01100197000200000001001d000000000010043f000000200000043f0000000001000414000005980010009c0000059801008041000000c001100210000005ea011001c70000801002000039165b16510000040f00000001002001900000067a0000613d000000000101043b0000000302100039000000000202041a000000ff00200190000006780000613d000000000101041a000100000001001d0000000201000029000000000010043f000000200000043f0000000001000414000005980010009c0000059801008041000000c001100210000005ea011001c70000801002000039165b16510000040f00000001002001900000067a0000613d0000000102000039000000000101043b0000000101100039000000000101041a000000010010006b000006760000613d0000000201000029000000000010043f000000200000043f0000000001000414000005980010009c0000059801008041000000c001100210000005ea011001c70000801002000039165b16510000040f00000001002001900000067a0000613d000000000101043b0000000201100039000000000101041a000200000001001d000005c80100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f00000001002001900000067c0000613d000000000101043b000000020010006c00000001020000390000067d0000a13d0000000001020019000000000001042d0000000001000019000000000001042d00000000010000190000165d00010430000000000001042f000000400100043d0000004402100039000005e903000041000000000032043500000024021000390000000e030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005be011001c70000165d00010430000a00000000000200000040021000390000001103000367000000000223034f0000016004100039000000000543034f000000000202043b000000000a05043b00000000000a004b0000069b0000c13d000000400540008a000000000553034f000000000a05043b000005eb00a0009c000008100000813d0000006004400039000000000443034f000000000504043b000000000400003100000000061400490000001f0660008a000005b407600197000005b408500197000000000978013f000000000078004b0000000007000019000005b407002041000000000065004b0000000006000019000005b406004041000005b40090009c000000000706c019000000000007004b000008080000613d0000000005150019000000000153034f000000000101043b000005ac0010009c000008080000213d00000000061400490000002005500039000005b407600197000005b408500197000000000978013f000000000078004b0000000007000019000005b407004041000000000065004b0000000006000019000005b406002041000005b40090009c000000000706c019000000000007004b000008080000c13d0000001f06100039000005b5066001970000003f06600039000005b606600197000000400b00043d00000000066b00190000000000b6004b00000000070000390000000107004039000005ac0060009c0000080a0000213d00000001007001900000080a0000c13d000000400060043f000000000c1b04360000000006510019000000000046004b000008080000213d000000000453034f000005e5051001980000001f0610018f00000000035c0019000006e10000613d000000000704034f00000000080c0019000000007907043c0000000008980436000000000038004b000006dd0000c13d000000000006004b000006ee0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000059b0220019700000000011c0019000000000001043500000000000a004b000007380000613d000500000002001d0000000001000415000400000001001d0000800a01000039000000000010043f000000200000043f0000000001000414000005980010009c0000059801008041000000c001100210000005ea011001c70000801002000039000a0000000a001d00090000000b001d00080000000c001d165b16510000040f0000000805000029000000090b0000290000000a0a0000290000000100200190000008080000613d000000400600043d000005b70060009c0000080a0000213d000000000301043b0000008001600039000000400010043f000000000103041a00000000081604360000000102300039000000000202041a0000000000280435000000600760003900000040096000390000000204300039000000000404041a000700000009001d00000000004904350000000303300039000000000303041a000000ff003001900000000003000039000000010300c03900000000003704350000079a0000613d000600000008001d000200000007001d000300000006001d000005c8030000410000000000300443000000000021004b000007480000c13d0000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000008230000613d000000000101043b000005ca0110009c0000000a030000290000000604000029000008140000813d000000070200002900000000001204350000076c0000013d000080060020008c000007a00000613d0000059800c0009c000005980c0080410000004001c0021000000000030b0433000005980030009c00000598030080410000006003300210000000000113019f0000000003000414000005980030009c0000059803008041000000c003300210000000000131019f000007c60000013d000100000004001d0000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000008230000613d000000000101043b000000010010006c0000000a0300002900000006040000290000076c0000a13d000005c80100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000008230000613d000000000101043b000005ca0110009c0000000a0300002900000003020000290000000604000029000008140000813d000000070500002900000000001504350000000001020433000000000014043500000000020404330000000001000415000000000032004b000008240000413d0000000002000415000000000121004900000000010000020000000001040433000000000131004b000008140000413d00000000001404350000800a01000039000000000010043f000000200000043f0000000001000414000005980010009c0000059801008041000000c001100210000005ea011001c70000801002000039165b16510000040f0000000a0a0000290000000100200190000000090b0000290000000805000029000008080000613d00000003020000290000000002020433000000000101043b000000000021041b000000060200002900000000020204330000000103100039000000000023041b000000070200002900000000020204330000000203100039000000000023041b0000000301100039000000000301041a000005e40230019700000002030000290000000003030433000000000003004b000000010220c1bf000000000021041b0000000001000415000000040110006900000000010000020000000504000029000080060040008c000007b50000c13d0000000001000414000005980010009c000008100000213d00000000020b0433000005980020009c000008100000213d000000c0011002100000004003b00210000005f20330009a000005ee03300197000000000113019f0000006002200210000000000112019f000005f3011001c700000000000a004b000007cd0000613d00008009020000390000800604000039000000010500003900000000030a0019000007d10000013d0000004001500210000005ed0050009c000005ee0100804100000000020b0433000005980020009c0000059802008041000000600220021000000000012100190000000002000414000005980020009c0000059802008041000000c0022002100000000001210019000005ef0110009a000080090200003900000000030a00190000000005000019165b164c0000040f0000000100200190000008070000c13d000000400100043d0000004402100039000005f103000041000008270000013d00008006020000390000000003000019000000000400001900000000050000190000000006000019165b164c0000040f000000600310027000000598053001970000001f0350003900000599063001970000003f03600039000005b107300197000000400300043d0000000004370019000000000074004b00000000070000390000000107004039000005ac0040009c0000080a0000213d00000001007001900000080a0000c13d000000400040043f0000000004530436000000000006004b000007ee0000613d0000000006640019000000000700003100000011077003670000000008040019000000007907043c0000000008980436000000000068004b000007ea0000c13d0000001f0650018f0000059a075001980000000005740019000007f80000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000007f40000c13d000000000006004b000008050000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f000000000015043500000001002001900000081a0000613d000000000001042d00000000010000190000165d00010430000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d00010430000005f401000041000000000010043f000005d9010000410000165d00010430000005cb01000041000000000010043f0000001101000039000000040010043f000005cc010000410000165d00010430000005980040009c000005980400804100000040014002100000000002030433000005980020009c00000598020080410000006002200210000000000112019f0000165d00010430000000000001042f000000400100043d0000004402100039000005f0030000410000000000320435000000240210003900000013030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005be011001c70000165d00010430000d000000000002000000110e00036700000000021e034f000000000202043b000000010020008c000d00000001001d0000088f0000213d000000000002004b00000a920000613d000000010020008c000014e60000c13d000005f50100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000014d70000613d000000400500043d000000000201043b000000800020008c0000002004500039000a00000005001d00000bce0000413d000005f70020009c0000000001020019000000800110227000000000030000390000001003002039000005ac0010009c00000008033021bf0000004001102270000005980010009c00000004033021bf00000020011022700000ffff0010008c00000002033021bf0000001001102270000000ff0010008c00000001033020390000002101300039000005b5061001970000003f01600039000005b6011001970000000001150019000000000051004b00000000050000390000000105004039000005ac0010009c000014c90000213d0000000100500190000014c90000c13d000000400010043f00000002013000390000000a0a00002900000000001a043500000011080003670000000009000031000000000006004b0000087c0000613d0000000005640019000000000698034f0000000001040019000000006706043c0000000001710436000000000051004b000008780000c13d00000000010a0433000000000001004b000014d10000613d0000000001040433000005b801100197000000f805300210000000000115019f000005f80110009a00000000001404350000000301300210000000f80110008900000000021201cf000000ff0010008c00000000020020190000000a0100002900000021011000390000000000210435000000000509001900000bdf0000013d000000020020008c00000ad50000613d000000710020008c000014e60000c13d000001c00f1000390000000002fe034f000000000302043b000000000200003100000000041200490000001f0540008a000005b404500197000005b406300197000000000746013f000000000046004b0000000004000019000005b404004041000000000053004b0000000005000019000005b405008041000005b40070009c000000000405c019000001200510003900000000055e034f0000010006100039000000e007100039000000c008100039000000a009100039000000800a100039000000600b100039000000400c100039000000200d100039000000000dde034f000000000cce034f000000000bbe034f000000000aae034f00000000099e034f00000000088e034f00000000077e034f00000000066e034f000000000505043b000300000005001d000000000506043b000400000005001d000000000507043b000500000005001d000000000508043b000600000005001d000000000509043b000700000005001d00000000050a043b000800000005001d00000000050b043b000900000005001d00000000050c043b000a00000005001d00000000050d043b000b00000005001d000000000004004b000014cf0000c13d000000000413001900000000034e034f000000000303043b000005ac0030009c000014cf0000213d00000000053200490000002004400039000005b406500197000005b407400197000000000867013f000000000067004b0000000006000019000005b406004041000000000054004b0000000005000019000005b405002041000005b40080009c000000000605c019000000000006004b000014cf0000c13d0000059806400197000000000500041400010000006e0355000000000043001a000014d80000413d0000000003430019000000000232004b000014d80000413d000c0000000f001d00000000016e034f000005980220019700010000002103e5000005ed0050009c000014de0000813d00000000012103df000000c002500210000005fe022001c700010000002103b500000000012103af0000801002000039165b16560000040f0000000004000415000000600310027000000598063001970000000100200190000014eb0000613d0000001f0260003900000599082001970000003f02800039000005b102200197000000400700043d0000000002270019000000000072004b00000000030000390000000103004039000005ac0020009c000014c90000213d0000000100300190000014c90000c13d000000400020043f000000000567043600000011020003670000000003000031000000000008004b000009120000613d0000000008850019000000000932034f000000000a050019000000009b09043c000000000aba043600000000008a004b0000090e0000c13d0000001f0860018f0000059a0960019800000000069500190000000d0d0000290000000c0e0000290000091e0000613d000000000a01034f000000000b05001900000000ac0a043c000000000bcb043600000000006b004b0000091a0000c13d000000000008004b0000092b0000613d000000000191034f0000000308800210000000000906043300000000098901cf000000000989022f000000000101043b0000010008800089000000000181022f00000000018101cf000000000191019f00000000001604350000000001000415000000000114004900000000010000020000000001070433000000200010008c000014e20000c13d0000000004d300490000004009e00039000000000192034f000000000101043b0000001f0440008a000005b406400197000005b407100197000000000867013f000000000067004b0000000006000019000005b406004041000000000041004b0000000004000019000005b404008041000005b40080009c000000000604c019000000000006004b000014cf0000c13d0000000004050433000200000004001d0000000004d10019000000000142034f000000000101043b000005ac0010009c000014cf0000213d000000050110021000000000031300490000002006400039000005b404300197000005b405600197000000000745013f000000000045004b0000000004000019000005b404004041000000000036004b0000000003000019000005b403002041000005b40070009c000000000403c019000000000004004b000014cf0000c13d0000001f0510018f000000400300043d0000002004300039000000000001004b000009660000613d000000000262034f00000000061400190000000007040019000000002802043c0000000007870436000000000067004b000009620000c13d000c00000009001d000000000005004b00000000001304350000003f01100039000005ff021001970000000001320019000000000021004b00000000020000390000000102004039000005ac0010009c000014c90000213d0000000100200190000014c90000c13d000000400010043f000005980040009c000005980400804100000040014002100000000002030433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f00000001002001900000000d090000290000000c02000029000014cf0000613d00000020032000390000001102000367000000000332034f000000000403043b000000000300003100000000059300490000001f0550008a000005b406500197000005b407400197000000000867013f000000000067004b0000000006000019000005b406004041000000000054004b0000000005000019000005b405008041000005b40080009c000000000605c019000000000a01043b000000000006004b000014cf0000c13d0000000004940019000000000142034f000000000101043b000005ac0010009c000014cf0000213d00000000051300490000002004400039000005b406500197000005b407400197000000000867013f000000000067004b0000000006000019000005b406004041000000000054004b0000000005000019000005b405002041000005b40080009c000000000605c019000000000006004b000014cf0000c13d000005980640019700000000050004140001000000620355000000000041001a000014d80000413d0000000001410019000000000313004b000014d80000413d000d0000000a001d000000000162034f000005980230019700010000002103e5000005980050009c000014de0000213d00000000012103df000000c002500210000005fe022001c700010000002103b500000000012103af0000801002000039165b16560000040f0000000003000415000000600410027000000598044001970000000100200190000015030000613d0000001f0240003900000599062001970000003f02600039000005b105200197000000400200043d0000000005520019000000000025004b00000000070000390000000107004039000005ac0050009c000014c90000213d0000000100700190000014c90000c13d000000400050043f0000000005420436000000000006004b000009e40000613d0000000006650019000000000700003100000011077003670000000008050019000000007907043c0000000008980436000000000068004b000009e00000c13d0000001f0640018f0000059a074001980000000004750019000009ee0000613d000000000801034f0000000009050019000000008a08043c0000000009a90436000000000049004b000009ea0000c13d000000000006004b000009fb0000613d000000000171034f0000000306600210000000000704043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001404350000000001000415000000000113004900000000010000020000000001020433000000200010008c0000000d04000029000014e20000c13d0000000002050433000000400100043d000001c0031000390000000000230435000001a0021000390000000000420435000001800210003900000002030000290000000000320435000001600210003900000003030000290000000000320435000001400210003900000004030000290000000000320435000001200210003900000005030000290000000000320435000001000210003900000006030000290000000000320435000000e00210003900000007030000290000000000320435000000c00210003900000008030000290000000000320435000000a0021000390000000903000029000000000032043500000080021000390000000a03000029000000000032043500000060021000390000000b030000290000000000320435000000400210003900000071030000390000000000320435000000200210003900000601030000410000000000320435000001c0030000390000000000310435000006020010009c000014c90000213d000001e003100039000000400030043f000005980020009c000005980200804100000040022002100000000001010433000005980010009c00000598010080410000006001100210000000000121019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000014cf0000613d000000000101043b000c00000001001d000000400100043d000d00000001001d000005f50100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000014d70000613d0000000d040000290000002002400039000000000101043b000006030300004100000000003204350000008003400039000000000013043500000060014000390000060403000041000000000031043500000040014000390000060503000041000000000031043500000080010000390000000000140435000006060040009c000014c90000213d000000a001400039000000400010043f000005980020009c000005980200804100000040012002100000000002040433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000014cf0000613d000000000301043b000000400100043d00000042021000390000000c0400002900000000004204350000002002100039000006070400004100000000004204350000002204100039000000000034043500000042030000390000000000310435000005b70010009c000014c90000213d0000008003100039000000400030043f000005980020009c000005980200804100000040022002100000000001010433000005980010009c00000598010080410000006001100210000000000121019f0000000002000414000013f80000013d0000000002000415000500000002001d000000400f00043d000001000310003900000000023e034f000000000402043b000000800040008c000000200df0003900000b260000413d000005f70040009c0000000002040019000000800220227000000000050000390000001005002039000005ac0020009c00000008055021bf0000004002202270000005980020009c00000004055021bf00000020022022700000ffff0020008c00000002055021bf0000001002202270000000ff0020008c00000001055020390000002102500039000005b5062001970000003f02600039000005b60220019700000000022f00190000000000f2004b00000000070000390000000107004039000005ac0020009c000014c90000213d0000000100700190000014c90000c13d000000400020043f000000020250003900000000002f04350000000002000031000000000006004b00000ac40000613d00000000066d001900000000072e034f00000000080d0019000000007907043c0000000008980436000000000068004b00000ac00000c13d00000000060f0433000000000006004b000014d10000613d00000000060d0433000005b806600197000000f807500210000000000667019f000005f80660009a00000000006d04350000000305500210000000f80550008900000000045401cf000000ff0050008c00000000040020190000002105f00039000000000045043500000b350000013d0000000001000415000400000001001d000005f50100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000014d70000613d000000400600043d000000000201043b000000800020008c0000002005600039000a00000006001d00000b750000413d000005f70020009c0000000001020019000000800110227000000000030000390000001003002039000005ac0010009c00000008033021bf0000004001102270000005980010009c00000004033021bf00000020011022700000ffff0010008c00000002033021bf0000001001102270000000ff0010008c00000001033020390000002101300039000005b5041001970000003f01400039000005b6011001970000000001160019000000000061004b00000000060000390000000106004039000005ac0010009c000014c90000213d0000000100600190000014c90000c13d000000400010043f00000002013000390000000a0a00002900000000001a043500000011080003670000000009000031000000000004004b00000b130000613d0000000001450019000000000498034f0000000006050019000000004704043c0000000006760436000000000016004b00000b0f0000c13d00000000010a0433000000000001004b000014d10000613d00000000060900190000000001050433000005b801100197000000f804300210000000000114019f000005f80110009a00000000001504350000000301300210000000f80110008900000000021201cf000000ff0010008c00000000020020190000000a010000290000002101100039000000000021043500000b860000013d000005f600f0009c000014c90000213d0000004002f00039000000400020043f000000010200003900000000002f0435000000f805400210000000000004004b000005b405006041000000000200003100000000042e034f000000000404043b000005b804400197000000000454019f00000000004d0435000000400400043d000000600530008a00000000035e034f000000000603043b000000800060008c000000200340003900000c280000413d000005f70060009c0000000008060019000000800880227000000000070000390000001007002039000005ac0080009c00000008077021bf0000004008802270000005980080009c00000004077021bf00000020088022700000ffff0080008c00000002077021bf0000001008802270000000ff0080008c00000001077020390000002108700039000005b5088001970000003f09800039000005b6099001970000000009940019000000000049004b000000000a000039000000010a004039000005ac0090009c000014c90000213d0000000100a00190000014c90000c13d000000400090043f00000002097000390000000000940435000000000008004b00000b640000613d00000000092e034f0000000008830019000000000a030019000000009b09043c000000000aba043600000000008a004b00000b600000c13d0000000008040433000000000008004b000014d10000613d0000000008030433000005b808800197000000f809700210000000000889019f000005f80880009a00000000008304350000000307700210000000f80770008900000000067601cf000000ff0070008c00000000060020190000002107400039000000000067043500000c360000013d000005f60060009c000014c90000213d0000000a030000290000004001300039000000400010043f00000001010000390000000000130435000000f801200210000000000002004b000005b40100604100000000060000310000001108000367000000000268034f000000000202043b000005b802200197000000000112019f0000000000150435000000400900043d0000000d010000290000010002100039000000000128034f000000000301043b000000800030008c0000002007900039000c000000080353000500000006001d000b000000680353000900000009001d00000c760000413d000005f70030009c0000000001030019000000800110227000000000040000390000001004002039000005ac0010009c00000008044021bf0000004001102270000005980010009c00000004044021bf00000020011022700000ffff0010008c00000002044021bf0000001001102270000000ff0010008c00000001044020390000002101400039000005b5061001970000003f01600039000005b6011001970000000001190019000000000091004b00000000080000390000000108004039000005ac0010009c000014c90000213d0000000100800190000014c90000c13d000000400010043f0000000201400039000000090b00002900000000001b0435000000000006004b0000000c0a00035f00000bbc0000613d0000000501a0036000000000066700190000000008070019000000001901043c0000000008980436000000000068004b00000bb80000c13d00000000010b0433000000000001004b000014d10000613d0000000001070433000005b801100197000000f806400210000000000116019f000005f80110009a00000000001704350000000301400210000000f80110008900000000031301cf000000ff0010008c000000000300201900000009010000290000002101100039000000000031043500000c860000013d000005f60050009c000014c90000213d0000000a030000290000004001300039000000400010043f00000001010000390000000000130435000000f801200210000000000002004b000005b40100604100000000050000310000001108000367000000000258034f000000000202043b000005b802200197000000000112019f0000000000140435000000400700043d0000000d010000290000010002100039000000000128034f000000000301043b000000800030008c0000002006700039000c000000080353000700000005001d000b000000580353000900000007001d00000ccb0000413d000005f70030009c0000000001030019000000800110227000000000080000390000001008002039000005ac0010009c00000008088021bf0000004001102270000005980010009c00000004088021bf00000020011022700000ffff0010008c00000002088021bf0000001001102270000000ff0010008c00000001088020390000002101800039000005b5091001970000003f01900039000005b6011001970000000001170019000000000071004b00000000050000390000000105004039000005ac0010009c000014c90000213d0000000100500190000014c90000c13d000000400010043f0000000201800039000000090a00002900000000001a0435000000000009004b00000c150000613d00000007050000290000000c0550035f00000000099600190000000001060019000000005705043c0000000001710436000000000091004b00000c110000c13d00000000010a0433000000000001004b0000000c0700035f000014d10000613d0000000001060433000005b801100197000000f805800210000000000115019f000005f80110009a00000000001604350000000301800210000000f80110008900000000031301cf000000ff0010008c000000000300201900000009010000290000002101100039000000000031043500000cdb0000013d000005f60040009c000014c90000213d0000004007400039000000400070043f00000001070000390000000000740435000000f807600210000000000006004b000005b40700604100000000062e034f000000000606043b000005b806600197000000000676019f0000000000630435000000400550008a00000000055e034f000000400600043d000000000705043b000000800070008c000000200560003900000d1f0000413d000005f70070009c0000000009070019000000800990227000000000080000390000001008002039000005ac0090009c00000008088021bf0000004009902270000005980090009c00000004088021bf00000020099022700000ffff0090008c00000002088021bf0000001009902270000000ff0090008c00000001088020390000002109800039000005b5099001970000003f0a900039000005b60aa00197000000000aa6001900000000006a004b000000000b000039000000010b004039000005ac00a0009c000014c90000213d0000000100b00190000014c90000c13d0000004000a0043f000000020a8000390000000000a60435000000000009004b00000c650000613d000000000a2e034f0000000009950019000000000b05001900000000ac0a043c000000000bcb043600000000009b004b00000c610000c13d0000000009060433000000000009004b000014d10000613d0000000009050433000005b809900197000000f80a80021000000000099a019f000005f80990009a00000000009504350000000308800210000000f80880008900000000078701cf000000ff0080008c00000000070020190000002108600039000000000078043500000d2d0000013d000005f60090009c000014c90000213d00000009040000290000004001400039000000400010043f00000001010000390000000000140435000000f801300210000000000003004b000005b4010060410000000b0300035f000000000303043b000005b803300197000000000113019f00000000001704350000000c0a00035f000000400800043d000000400220008a00000000012a034f000000000301043b000000800030008c0000002009800039000800000008001d00000d690000413d000005f70030009c0000000001030019000000800110227000000000040000390000001004002039000005ac0010009c00000008044021bf0000004001102270000005980010009c00000004044021bf00000020011022700000ffff0010008c00000002044021bf0000001001102270000000ff0010008c00000001044020390000002101400039000005b5061001970000003f01600039000005b6011001970000000001180019000000000081004b00000000080000390000000108004039000005ac0010009c000014c90000213d0000000100800190000014c90000c13d000000400010043f0000000201400039000000080b00002900000000001b0435000000000006004b00000cb80000613d00000005080000290000000c0180035f00000000066900190000000008090019000000001a01043c0000000008a80436000000000068004b00000cb40000c13d00000000010b0433000000000001004b0000000c0800035f000014d10000613d0000000001090433000005b801100197000000f806400210000000000116019f000005f80110009a00000000001904350000000301400210000000f80110008900000000031301cf000000ff0010008c000000000300201900000008010000290000002101100039000000000031043500000d790000013d000005f60070009c000014c90000213d00000009050000290000004001500039000000400010043f00000001010000390000000000150435000000f801300210000000000003004b000005b4010060410000000b0300035f000000000303043b000005b803300197000000000113019f00000000001604350000000c0700035f000000400500043d000000600220008a000000000127034f000000000301043b000000800030008c0000002008500039000800000005001d00000dbe0000413d000005f70030009c00000000010300190000008001102270000000000a000039000000100a002039000005ac0010009c000000080aa021bf0000004001102270000005980010009c000000040aa021bf00000020011022700000ffff0010008c000000020aa021bf0000001001102270000000ff0010008c000000010aa020390000002101a00039000005b50b1001970000003f01b00039000005b6011001970000000001150019000000000051004b00000000050000390000000105004039000005ac0010009c000014c90000213d0000000100500190000014c90000c13d000000400010043f0000000201a00039000000080c00002900000000001c043500000000000b004b0000000c0900035f00000d0d0000613d0000000705900360000000000bb800190000000001080019000000005705043c00000000017104360000000000b1004b00000d090000c13d00000000010c0433000000000001004b000014d10000613d0000000001080433000005b801100197000000f805a00210000000000115019f000005f80110009a00000000001804350000000301a00210000000f80110008900000000031301cf000000ff0010008c000000000300201900000008010000290000002101100039000000000031043500000dce0000013d000005f60060009c000014c90000213d0000004008600039000000400080043f00000001080000390000000000860435000000f808700210000000000007004b000005b40800604100000000072e034f000000000707043b000005b807700197000000000787019f0000000000750435000000400100043d000b00000001001d00000020011000390000000004040433000000000004004b00000d3b0000613d000000000700001900000000081700190000000009730019000000000909043300000000009804350000002007700039000000000047004b00000d340000413d000400000001001d000000000314001900000000000304350000000006060433000000000006004b00000d490000613d000000000700001900000000083700190000000009750019000000000909043300000000009804350000002007700039000000000067004b00000d420000413d0000000003360019000000000003043500000000036400190000000b0400002900000000003404350000003f03300039000005e503300197000000000c43001900000000003c004b00000000030000390000000103004039000005ac00c0009c000014c90000213d0000000100300190000014c90000c13d0000004000c0043f0000000d01000029000001600310003900000000043e034f000000000404043b000000010040008c0006002000c0003d00000e0f0000c13d000005f600c0009c000014c90000213d0000004004c00039000000400040043f000000010400003900000000004c0435000005b404000041000000200500003900000e1e0000013d000005f60080009c000014c90000213d00000008040000290000004001400039000000400010043f00000001010000390000000000140435000000f801300210000000000003004b000005b4010060410000000b0300035f000000000303043b000005b803300197000000000113019f00000000001904350000000c0800035f000000400a00043d000000200320008a000000000138034f000000000201043b000000800020008c000000200ba0003900070000000a001d00000e640000413d000005f70020009c0000000001020019000000800110227000000000040000390000001004002039000005ac0010009c00000008044021bf0000004001102270000005980010009c00000004044021bf00000020011022700000ffff0010008c00000002044021bf0000001001102270000000ff0010008c00000001044020390000002101400039000005b5061001970000003f01600039000005b60110019700000000011a00190000000000a1004b00000000080000390000000108004039000005ac0010009c000014c90000213d0000000100800190000014c90000c13d000000400010043f0000000201400039000000070c00002900000000001c0435000000000006004b00000dab0000613d00000005080000290000000c0180035f00000000066b001900000000080b0019000000001a01043c0000000008a80436000000000068004b00000da70000c13d00000000010c0433000000000001004b0000000c0800035f000014d10000613d00000000010b0433000005b801100197000000f806400210000000000116019f000005f80110009a00000000001b04350000000301400210000000f80110008900000000021201cf000000ff0010008c000000000200201900000007010000290000002101100039000000000021043500000e740000013d000005f60050009c000014c90000213d00000008050000290000004001500039000000400010043f00000001010000390000000000150435000000f801300210000000000003004b000005b4010060410000000b0300035f000000000303043b000005b803300197000000000113019f00000000001804350000000c0900035f000000400d00043d000000400220008a000000000129034f000000000301043b000000800030008c000000200cd0003900000eb90000413d000005f70030009c00000000010300190000008001102270000000000a000039000000100a002039000005ac0010009c000000080aa021bf0000004001102270000005980010009c000000040aa021bf00000020011022700000ffff0010008c000000020aa021bf0000001001102270000000ff0010008c000000010aa020390000002101a00039000005b50b1001970000003f01b00039000005b60110019700000000011d00190000000000d1004b00000000050000390000000105004039000005ac0010009c000014c90000213d0000000100500190000014c90000c13d000000400010043f0000000201a0003900000000001d043500000000000b004b0000000c0900035f00000dfe0000613d0000000705900360000000000bbc001900000000010c0019000000005705043c00000000017104360000000000b1004b00000dfa0000c13d00000000010d0433000000000001004b000014d10000613d00000000010c0433000005b801100197000000f805a00210000000000115019f000005f80110009a00000000001c04350000000301a00210000000f80110008900000000031301cf000000ff0010008c00000000030020190000002101d00039000000000031043500000ec80000013d000005f600c0009c000014c90000213d0000000d01000029000000400410003900000000044e034f000000000404043b0000004005c00039000000400050043f000005f90500004100000006010000290000000000510435000000150500003900000000005c04350000002105000039000000600440021000000000055c00190000000000450435000000400330008a00000000043e034f000000400800043d000000000404043b000000800040008c000900200080003d000c00000008001d00000ed90000413d000005f70040009c0000000006040019000000800660227000000000050000390000001005002039000005ac0060009c00000008055021bf0000004006602270000005980060009c00000004055021bf00000020066022700000ffff0060008c00000002055021bf0000001006602270000000ff0060008c00000001055020390000002106500039000005b5066001970000003f07600039000005b6077001970000000007780019000000000087004b00000000080000390000000108004039000005ac0070009c000014c90000213d0000000100800190000014c90000c13d000000400070043f00000002075000390000000c010000290000000000710435000000000006004b00000e510000613d00000000072e034f00000009080000290000000006680019000000007907043c0000000008980436000000000068004b00000e4d0000c13d0000000c080000290000000006080433000000000006004b000014d10000613d00000009010000290000000006010433000005b806600197000000f807500210000000000667019f000005f80660009a00000000006104350000000305500210000000f80550008900000000045401cf000000ff0050008c00000000040020190000002105800039000000000045043500000ee90000013d000005f600a0009c000014c90000213d00000007040000290000004001400039000000400010043f00000001010000390000000000140435000000f801200210000000000002004b000005b4010060410000000b0200035f000000000202043b000005b802200197000000000112019f00000000001b04350000000c0800035f000000400200043d000000400330008a000000000138034f000000000401043b000000800040008c000000200f200039000600000002001d00000f220000413d000005f70040009c0000000001040019000000800110227000000000060000390000001006002039000005ac0010009c00000008066021bf0000004001102270000005980010009c00000004066021bf00000020011022700000ffff0010008c00000002066021bf0000001001102270000000ff0010008c00000001066020390000002101600039000005b5081001970000003f01800039000005b6011001970000000001120019000000000021004b000000000a000039000000010a004039000005ac0010009c000014c90000213d0000000100a00190000014c90000c13d000000400010043f0000000201600039000000060d00002900000000001d0435000000000008004b00000ea60000613d00000005020000290000000c0120035f00000000088f0019000000000a0f0019000000001c01043c000000000aca043600000000008a004b00000ea20000c13d00000000010d0433000000000001004b0000000c0200035f000014d10000613d00000000010f0433000005b801100197000000f808600210000000000118019f000005f80110009a00000000001f04350000000301600210000000f80110008900000000041401cf000000ff0010008c000000000400201900000006010000290000002101100039000000000041043500000f320000013d000005f600d0009c000014c90000213d0000004001d00039000000400010043f000000010100003900000000001d0435000000f801300210000000000003004b000005b4010060410000000b0300035f000000000303043b000005b803300197000000000113019f00000000001c04350000000c0900035f000000400f00043d0000010002200039000000000129034f000000000101043b000000010010008c000000200ef0003900000f430000c13d000005f600f0009c000014c90000213d0000004001f00039000000400010043f000000010100003900000000001f0435000005b40300004100000020050000390000000c0700035f00000f520000013d000005f60080009c000014c90000213d0000000c010000290000004005100039000000400050043f00000001050000390000000000510435000000f805400210000000000004004b000005b40500604100000000042e034f000000000404043b000005b804400197000000000454019f00000009010000290000000000410435000000a00330003900000000043e034f000000000504043b0000000d0100002900000000041200490000001f0640008a000005b404600197000005b407500197000000000847013f000000000047004b0000000004000019000005b404004041000000000065004b0000000007000019000005b407008041000005b40080009c000000000407c019000000000004004b000014cf0000c13d000000000715001900000000047e034f000000000404043b000005ac0040009c000014cf0000213d00000000084200490000002007700039000005b409800197000005b40a700197000000000b9a013f00000000009a004b0000000009000019000005b409004041000000000087004b0000000008000019000005b408002041000005b400b0009c000000000908c019000000000009004b000014cf0000c13d000000010040008c000011400000c13d00000000047e034f000000000404043b000005b40040009c000011a00000413d000000400400043d000005f60040009c000014c90000213d00000000010400190000004004400039000000400040043f00000001040000390000000007410436000005fb04000041000300000007001d0000000000470435000011b20000013d000005f60020009c000014c90000213d00000006020000290000004001200039000000400010043f00000001010000390000000000120435000000f801400210000000000004004b000005b4010060410000000b0200035f000000000402043b000005b804400197000000000114019f00000000001f04350000000c0200035f000000400400043d0000010006300039000000000162034f000000000101043b000000010010008c00000020034000390000103a0000c13d000005f60040009c000014c90000213d0000004001400039000000400010043f00000001010000390000000000140435000005b40100004100000020080000390000000c0a00035f000010490000013d000005f600f0009c000014c90000213d0000000d0100002900000040011000390000000c0700035f000000000117034f000000000101043b0000004003f00039000000400030043f000005f90300004100000000003e0435000000150300003900000000003f04350000002105000039000000600310021000000000015f00190000000000310435000000400120008a000000000117034f000000400300043d000000000a01043b0000008000a0008c000000200730003900000f940000413d000005f700a0009c00000000010a00190000008001102270000000000b000039000000100b002039000005ac0010009c000000080bb021bf0000004001102270000005980010009c000000040bb021bf00000020011022700000ffff0010008c000000020bb021bf0000001001102270000000ff0010008c000000010bb020390000002101b00039000005b5051001970000003f01500039000005b6011001970000000001130019000000000031004b00000000020000390000000102004039000005ac0010009c000014c90000213d0000000100200190000014c90000c13d000000400010043f0000000201b000390000000000130435000000000005004b00000f830000613d00000000055700190000000b0100035f0000000002070019000000001901043c0000000002920436000000000052004b00000f7f0000c13d0000000001030433000000000001004b000014d10000613d0000000001070433000005b801100197000000f802b00210000000000112019f000005f80110009a00000000001704350000000301b00210000000f80110008900000000021a01cf000000ff0010008c00000000020020190000002101300039000000000021043500000fa20000013d000005f60030009c000014c90000213d0000004001300039000000400010043f00000001010000390000000000130435000000f801a0021000000000000a004b000005b4010060410000000b0200035f000000000202043b000005b802200197000000000112019f0000000000170435000000400b00043d000000200ab000390000000a010000290000000005010433000000000005004b00000fb00000613d00000000010000190000000002a100190000000009140019000000000909043300000000009204350000002001100039000000000051004b00000fa90000413d0000000004a50019000000000004043500000009010000290000000005010433000000000005004b00000fbe0000613d000000000100001900000000024100190000000009160019000000000909043300000000009204350000002001100039000000000051004b00000fb70000413d0000000004450019000000000004043500000008010000290000000005010433000000000005004b00000fcc0000613d000000000100001900000000024100190000000006180019000000000606043300000000006204350000002001100039000000000051004b00000fc50000413d0000000004450019000000000004043500000000050d0433000000000005004b00000fd90000613d0000000001000019000000000241001900000000061c0019000000000606043300000000006204350000002001100039000000000051004b00000fd20000413d0000000004450019000000000004043500000000050f0433000000000005004b00000fe60000613d0000000001000019000000000241001900000000061e0019000000000606043300000000006204350000002001100039000000000051004b00000fdf0000413d000000000445001900000000000404350000000003030433000000000003004b00000ff30000613d000000000100001900000000024100190000000005170019000000000505043300000000005204350000002001100039000000000031004b00000fec0000413d000000000143001900000000000104350000000001b10049000000200210008a00000000002b04350000001f01100039000005e5011001970000000006b10019000000000016004b00000000010000390000000101004039000005ac0060009c000014c90000213d0000000100100190000014c90000c13d000000400060043f0000000d0400002900000007080000290000000001480049000001c0024000390000000c0900035f000000000229034f000000000202043b0000001f0110008a000005b403100197000005b405200197000000000735013f000000000035004b0000000003000019000005b403002041000000000012004b0000000001000019000005b401004041000005b40070009c000000000301c019000000000003004b000014cf0000613d0000000001420019000000000219034f000000000502043b000005ac0050009c000014cf0000213d00000000025800490000002004100039000005b401200197000005b407400197000000000817013f000000000017004b0000000001000019000005b401004041000000000024004b0000000002000019000005b402002041000005b40080009c000000000102c019000000000001004b000014cf0000c13d000000010050008c000011620000c13d000000000149034f000000000101043b000005b40010009c000013430000413d000005f60060009c000014c90000213d0000004001600039000000400010043f00000001010000390000000008160436000005fb01000041000013520000013d000005f60040009c000014c90000213d0000000d0100002900000040011000390000000c0a00035f00000000011a034f000000000101043b0000004002400039000000400020043f000005f9020000410000000000230435000000150200003900000000002404350000002108000039000000600110021000000000088400190000000000180435000000400160008a00000000011a034f000000400800043d000000000d01043b0000008000d0008c000000200c8000390000108b0000413d000005f700d0009c00000000010d00190000008001102270000000000e000039000000100e002039000005ac0010009c000000080ee021bf0000004001102270000005980010009c000000040ee021bf00000020011022700000ffff0010008c000000020ee021bf0000001001102270000000ff0010008c000000010ee020390000002101e00039000005b5011001970000003f06100039000005b606600197000000000a68001900000000008a004b00000000060000390000000106004039000005ac00a0009c000014c90000213d0000000100600190000014c90000c13d0000004000a0043f0000000206e000390000000000680435000000000001004b0000107a0000613d00000000011c00190000000b0a00035f00000000060c001900000000a20a043c0000000006260436000000000016004b000010760000c13d0000000001080433000000000001004b000014d10000613d00000000010c0433000005b801100197000000f802e00210000000000112019f000005f80110009a00000000001c04350000000301e00210000000f80110008900000000021d01cf000000ff0010008c000000000200201900000021018000390000000000210435000010990000013d000005f60080009c000014c90000213d0000004001800039000000400010043f00000001010000390000000000180435000000f801d0021000000000000d004b000005b4010060410000000b0200035f000000000202043b000005b802200197000000000112019f00000000001c0435000000400e00043d000000200de000390000000a010000290000000001010433000000000001004b000010a70000613d000000000a0000190000000002da00190000000006a5001900000000060604330000000000620435000000200aa0003900000000001a004b000010a00000413d0000000001d10019000000000001043500000009020000290000000005020433000000000005004b000010b50000613d000000000a00001900000000021a00190000000006a7001900000000060604330000000000620435000000200aa0003900000000005a004b000010ae0000413d0000000001150019000000000001043500000008020000290000000005020433000000000005004b000010c30000613d000000000700001900000000021700190000000006790019000000000606043300000000006204350000002007700039000000000057004b000010bc0000413d0000000001150019000000000001043500000007020000290000000005020433000000000005004b000010d10000613d0000000007000019000000000217001900000000067b0019000000000606043300000000006204350000002007700039000000000057004b000010ca0000413d0000000001150019000000000001043500000006020000290000000002020433000000000002004b000010df0000613d0000000005000019000000000615001900000000075f0019000000000707043300000000007604350000002005500039000000000025004b000010d80000413d000000000112001900000000000104350000000002040433000000000002004b000010ec0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000010e50000413d000000000112001900000000000104350000000002080433000000000002004b000010f90000613d0000000003000019000000000413001900000000053c0019000000000505043300000000005404350000002003300039000000000023004b000010f20000413d000000000112001900000000000104350000000001e10049000000200210008a00000000002e04350000001f01100039000005e5011001970000000003e10019000000000013004b00000000010000390000000101004039000005ac0030009c000014c90000213d0000000100100190000014c90000c13d000000400030043f0000000d0500002900000005080000290000000002580049000001c0015000390000000c0900035f000000000119034f000000000101043b0000001f0220008a000005b404200197000005b406100197000000000746013f000000000046004b0000000004000019000005b404004041000000000021004b0000000002000019000005b402008041000005b40070009c000000000402c019000000000004004b000014cf0000c13d0000000001510019000000000219034f000000000202043b000005ac0020009c000014cf0000213d00000000062800490000002004100039000005b401600197000005b407400197000000000817013f000000000017004b0000000001000019000005b401004041000000000064004b0000000006000019000005b406002041000005b40080009c000000000106c019000000000001004b000014cf0000c13d000000010020008c000011810000c13d000000000149034f000000000101043b000005b40010009c000014030000413d000005f60030009c000014c90000213d0000004001300039000000400010043f00000001010000390000000008130436000005fb01000041000014120000013d000000400100043d000000380040008c000011a30000413d000005f60010009c000014c90000213d00000000070100190000004007700039000000400070043f000005980040009c00000000070400190000002007702270000000000800003900000004080020390000ffff0070008c00000002088021bf0000001007702270000000ff0070008c00000001088021bf00000000072e034f0000000209800039000000000a910436000000000707043b000005b807700197000000f809800210000000000779019f000005fa077001c700030000000a001d00000000007a04350000000307800210000000f80770015f00000000047401cf00000021071000390000000000470435000011b20000013d000000380050008c000013460000413d000005f60060009c000014c90000213d0000004001600039000000400010043f000005980050009c00000000010500190000002001102270000000000200003900000004020020390000ffff0010008c00000002022021bf0000001001102270000000ff0010008c00000001022021bf000000020120003900000000081604360000000b0100035f000000000101043b000005b801100197000000f803200210000000000113019f000005fa011001c700000000001804350000000301200210000000f80110015f00000000011501cf00000021026000390000000000120435000013530000013d000000380020008c000014060000413d000005f60030009c000014c90000213d0000004001300039000000400010043f000005980020009c00000000010200190000002001102270000000000600003900000004060020390000ffff0010008c00000002066021bf0000001001102270000000ff0010008c00000001066021bf000000020160003900000000081304360000000b0100035f000000000101043b000005b801100197000000f807600210000000000117019f000005fa011001c700000000001804350000000301600210000000f80110015f00000000011201cf00000021063000390000000000160435000014130000013d0000006001000039000300800000003d000011b20000013d000005f60010009c000014c90000213d00000000070100190000004007700039000000400070043f0000000107000039000000000871043600000000072e034f000000000707043b000005b807700197000000f804400210000000000447019f000005b4044001c7000300000008001d0000000000480435000800000001001d000000800330008a00000000033e034f000000000303043b000000000003004b00070000000c001d000012080000613d00010000000f001d00020000000d001d000005f50100004100000000001004430000000001000414000005980010009c0000059801008041000000c001100210000005c9011001c70000800b02000039165b16510000040f0000000100200190000014d70000613d000000400300043d000000000401043b000000800040008c000000020d000029000000010f000029000000070c0000290000120c0000413d000005f70040009c0000000001040019000000800110227000000000060000390000001006002039000005ac0010009c00000008066021bf0000004001102270000005980010009c00000004066021bf00000020011022700000ffff0010008c00000002066021bf0000001001102270000000ff0010008c00000001066020390000002101600039000005b5071001970000003f01700039000005b6011001970000000001130019000000000031004b00000000020000390000000102004039000005ac0010009c000014c90000213d0000000100200190000014c90000c13d000000400010043f00000002016000390000000005130436000000110e0003670000000002000031000000000007004b000011f70000613d000000000775001900000000082e034f0000000009050019000000008a08043c0000000009a90436000000000079004b000011f30000c13d0000000007030433000000000007004b000014d10000613d0000000008050433000005b808800197000000f809600210000000000889019f000005f80880009a00000000008504350000000306600210000000f80660008900000000046401cf000000ff0060008c0000000004002019000000210330003900000000004304350000121c0000013d000a00600000003d00000080030000390000000d010000290000123f0000013d000005f60030009c000014c90000213d0000004001300039000000400010043f000000f806400210000000000004004b000005b406006041000000010700003900000000057304360000000002000031000000110e00036700000000032e034f000000000303043b000005b803300197000000000363019f00000000003504350000000d01000029000001c006100039000000400100043d000a00000001001d000000200310003900000000080000190000000009380019000000000a850019000000000a0a04330000000000a904350000002008800039000000000078004b000012220000413d00000000053700190000060808000041000000000085043500000002057000390000000a0400002900000000005404350000004105700039000005e5075001970000000005470019000000000075004b00000000070000390000000107004039000005ac0050009c000014c90000213d0000000100700190000014c90000c13d000000400050043f00000000056e034f0000000d0100002900000000061200490000001f0660008a000000000505043b000000000065004b0000000007000019000005b407008041000005b406600197000005b408500197000000000968013f000000000068004b0000000006000019000005b406004041000005b40090009c000000000607c019000000000006004b000014cf0000c13d00000000040f0433000d00000004001d0000000b04000029000000000804043300000000090c04330000000c04000029000000000a0404330000000804000029000000000b040433000000000615001900000000056e034f000000000705043b000005ac0070009c000014cf0000213d000000000c7200490000002005600039000000000602001900000000020d0019000005b40dc0019700000000010e034f000005b40e50019700000000040f0019000000000fde013f0000000000de004b000000000d000019000005b40d004041000200000005001d0000000000c5004b000000000c000019000005b40c002041000005b400f0009c000000000d0cc01900000000000d004b000014cf0000c13d0000000005070019000000000e040019000000000d0200190000000d0780002900000000079700190000000007a700190000000007b7001900000000075700190000000a0400002900000000080404330000000007870019000000400800043d000005ac07700197000000380070008c0000129a0000413d000005f60080009c000014c90000213d0000004009800039000000400090043f000005980070009c00000000090700190000002009902270000000000a000039000000040a0020390000ffff0090008c000000020aa021bf0000001009902270000000ff0090008c000000010aa021bf000000000b61034f0000000209a000390000000002980436000000000b0b043b000005b80bb00197000000f80ca00210000000000bbc019f000005fd0bb001c70000000000b20435000000030aa00210000000f80aa0015f0000000007a701cf00000021088000390000000000780435000012a70000013d000005f60080009c000014c90000213d0000004009800039000000400090043f000000000a61034f0000000109000039000000000298043600000000080a043b000005b808800197000000f807700210000000000778019f000005fc077001c700000000007204350000000008020433000000400200043d000000200720003900000000008704350000000008790019000000000008043500000000090e0433000000000009004b0000000306000029000012b90000613d000000000a000019000000000b8a0019000000000cad0019000000000c0c04330000000000cb0435000000200aa0003900000000009a004b000012b20000413d000000000889001900000000000804350000000b040000290000000009040433000000000009004b0000000404000029000012c80000613d000000000a000019000000000b8a0019000000000c4a0019000000000c0c04330000000000cb0435000000200aa0003900000000009a004b000012c10000413d0000000008890019000000000008043500000007040000290000000009040433000000000009004b0000000604000029000012d70000613d000000000a000019000000000b8a0019000000000ca40019000000000c0c04330000000000cb0435000000200aa0003900000000009a004b000012d00000413d000000000889001900000000000804350000000c040000290000000009040433000000000009004b0000000904000029000012e60000613d000000000a000019000000000b8a0019000000000ca40019000000000c0c04330000000000cb0435000000200aa0003900000000009a004b000012df0000413d000000000989001900000000000904350000000804000029000000000a04043300000000000a004b000012f40000613d0000000008000019000000000b980019000000000c860019000000000c0c04330000000000cb043500000020088000390000000000a8004b000012ed0000413d000000020810036000000000019a0019000005e5095001980000001f0a50018f00000000000104350000000006910019000013010000613d000000000b08034f000000000c01001900000000bd0b043c000000000cdc043600000000006c004b000012fd0000c13d00000000000a004b0000130e0000613d000000000898034f0000000309a00210000000000a060433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000860435000000000151001900000000000104350000000a040000290000000004040433000000000004004b0000131c0000613d000000000500001900000000061500190000000008530019000000000808043300000000008604350000002005500039000000000045004b000013150000413d000000000114001900000000000104350000000001210049000000200310008a00000000003204350000001f01100039000005e5031001970000000001230019000000000031004b00000000030000390000000103004039000005ac0010009c000014c90000213d0000000100300190000014c90000c13d000000400010043f000005980070009c000005980700804100000040017002100000000002020433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000014cf0000613d000000000101043b000000000200041500000005022000690000000002000002000000000001042d00000060060000390000008008000039000013530000013d000005f60060009c000014c90000213d0000004001600039000000400010043f000000010100003900000000081604360000000b0100035f000000000101043b000005b801100197000000f802500210000000000121019f000005b4011001c70000000000180435000000400700043d000005f60070009c000014c90000213d0000004001700039000000400010043f000000010f0000390000000002f704360000000b0100035f000000000101043b000005b809100197000005fc019001c7000000000012043500000000010b04330000000001150019000000000c0604330000000001c10019000000400e00043d0000000101100039000005ac0c1001970000003800c0008c000000200de00039000d00000004001d000013840000413d000005f600e0009c000014c90000213d0000059800c0009c00000000010c00190000002001102270000000000f000039000000040f0020390000ffff0010008c000000020ff021bf00000010011022700000004004e00039000000400040043f000000ff0010008c000000010ff021bf000000f801f00210000000000191019f000005fd011001c700000000001d04350000000201f0003900000000001e04350000000301f00210000000f80110015f00000000011c01cf0000002104e0003900000000001404350000138d0000013d000005f600e0009c000014c90000213d0000004001e00039000000400010043f0000000000fe0435000000f801c00210000000000119019f000005fc011001c700000000001d0435000000400900043d000000200c900039000005f30100004100000000001c0435000000210f900039000000000e0e043300000000000e004b0000139d0000613d00000000010000190000000004f1001900000000031d00190000000003030433000000000034043500000020011000390000000000e1004b000013960000413d000000000dfe001900000000000d0435000000000b0b043300000000000b004b000013aa0000613d00000000010000190000000003d100190000000004a100190000000004040433000000000043043500000020011000390000000000b1004b000013a30000413d000000000adb001900000000000a0435000000000b06043300000000000b004b000013b70000613d00000000010000190000000003a1001900000000041800190000000004040433000000000043043500000020011000390000000000b1004b000013b00000413d0000000d030000290000000c0630035f0000000001ab0019000005e5085001980000001f0a50018f00000000000104350000000003810019000013c50000613d000000000b06034f000000000d01001900000000b40b043c000000000d4d043600000000003d004b000013c10000c13d00000000000a004b000013d20000613d000000000486034f0000000306a00210000000000803043300000000086801cf000000000868022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000484019f0000000000430435000000000151001900000000000104350000000003070433000000000003004b000013df0000613d000000000500001900000000041500190000000006250019000000000606043300000000006404350000002005500039000000000035004b000013d80000413d000000000113001900000000000104350000000001910049000000200210008a00000000002904350000001f01100039000005e5021001970000000001920019000000000021004b00000000020000390000000102004039000005ac0010009c000014c90000213d0000000100200190000014c90000c13d000000400010043f0000059800c0009c000005980c0080410000004001c002100000000002090433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000014cf0000613d000000000101043b000000000001042d00000060030000390000008008000039000014130000013d000005f60030009c000014c90000213d0000004001300039000000400010043f000000010100003900000000081304360000000b0100035f000000000101043b000005b801100197000000f806200210000000000161019f000005b4011001c70000000000180435000000400700043d000005f60070009c000014c90000213d0000004001700039000000400010043f000000010100003900000000061704360000000b0100035f000000000101043b000005b809100197000005fc019001c700000000001604350000000001030433000000000a0e043300000000011a00190000000001210019000000400b00043d0000000101100039000005ac0a1001970000003800a0008c000d00000004001d000014450000413d000005f600b0009c000014c90000213d00000000040e00190000059800a0009c00000000010a00190000002001102270000000000f000039000000040f0020390000ffff0010008c000000020ff021bf0000001001102270000000400cb000390000004000c0043f000000ff0010008c000000010ff021bf000000f801f00210000000000191019f000005fd011001c7000000200cb0003900000000001c04350000000301f00210000000f80110015f00000000011a01cf0000002109b0003900000000001904350000000201f0003900000000001b0435000014500000013d000005f600b0009c000014c90000213d00000000040e00190000004001b00039000000400010043f0000000101000039000000000c1b0436000000f801a00210000000000119019f000005fc011001c700000000001c0435000000400900043d000000200a900039000005c20100004100000000001a04350000002101900039000000000b0b043300000000000b004b000014600000613d000000000f00001900000000051f0019000000000efc0019000000000e0e04330000000000e50435000000200ff000390000000000bf004b000014590000413d00000000011b00190000000000010435000000000b04043300000000000b004b0000146d0000613d000000000c00001900000000051c0019000000000edc0019000000000e0e04330000000000e50435000000200cc000390000000000bc004b000014660000413d000000000b1b001900000000000b04350000000001030433000000000001004b0000000d040000290000147b0000613d00000000030000190000000005b30019000000000c380019000000000c0c04330000000000c504350000002003300039000000000013004b000014740000413d0000000c0440035f0000000001b10019000005e5082001980000001f0b20018f00000000000104350000000003810019000014880000613d000000000c04034f000000000d01001900000000c50c043c000000000d5d043600000000003d004b000014840000c13d00000000000b004b000014950000613d000000000484034f0000000305b00210000000000803043300000000085801cf000000000858022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000484019f0000000000430435000000000121001900000000000104350000000002070433000000000002004b000014a20000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b0000149b0000413d000000000112001900000000000104350000000001910049000000200210008a00000000002904350000001f01100039000005e5021001970000000001920019000000000021004b00000000020000390000000102004039000005ac0010009c000014c90000213d0000000100200190000014c90000c13d000000400010043f0000059800a0009c000005980a0080410000004001a002100000000002090433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000014cf0000613d000000000101043b000000000200041500000004022000690000000002000002000000000001042d000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d0001043000000000010000190000165d00010430000005cb01000041000000000010043f0000003201000039000000040010043f000005cc010000410000165d00010430000000000001042f000005cb01000041000000000010043f0000001101000039000000040010043f000005cc010000410000165d00010430000005f401000041000000000010043f000005d9010000410000165d000104300000060001000041000000000010043f000005d9010000410000165d000104300000060901000041000000000010043f000000040020043f000005cc010000410000165d000104300000001f0360018f0000059a02600198000014f40000613d000000000401034f0000000005000019000000004704043c0000000005750436000000000025004b000014f00000c13d000000000003004b000015010000613d000000000121034f0000000303300210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000060016002100000165d000104300000001f0340018f0000059a024001980000150c0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000015080000c13d000000000003004b000015190000613d000000000121034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000012043500000060014002100000165d0001043000000160031000390000001102000367000000000132034f000000000101043b000000000001004b000015240000c13d000000400130008a000000000112034f000000000101043b000000800330008a000000000432034f000000000404043b0000059b004001980000153b0000c13d000000400430008a000000000442034f000000800330008a000000000232034f000000000202043b000000000404043b00000000034200a9000000000004004b0000153c0000613d00000000044300d90000000001130019000000000031004b00000000030000390000000103004039000000000024004b0000153e0000c13d00000001003001900000153e0000c13d000000000001042d000000000013004b0000153b0000a13d000005cb01000041000000000010043f0000001101000039000000040010043f000005cc010000410000165d00010430000000000003004b0000154e0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000015470000413d00000000012300190000000000010435000000000001042d0004000000000002000000400300043d0000060a0030009c000015cb0000813d0000059b041001970000004001300039000000400010043f0000002001000039000300000003001d00000000031304360000060b01000041000200000003001d00000000001304350000002001200039000005980010009c000005980100804100000040011002100000000002020433000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000121019f000400000004001d0000000002040019165b164c0000040f00000060031002700000059803300198000015990000613d0000001f0430003900000599044001970000003f04400039000005b104400197000000400a00043d00000000044a00190000000000a4004b00000000050000390000000105004039000005ac0040009c000015cb0000213d0000000100500190000015cb0000c13d000000400040043f0000001f0430018f00000000093a04360000059a0530019800000000035900190000158b0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000015870000c13d000000000004004b0000159b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000159b0000013d000000600a0000390000008009000039000000000300041500000000010a04330000000100200190000015d30000613d000000000001004b000015bb0000c13d000100000003001d00020000000a001d000300000009001d0000060c010000410000000000100443000000040100002900000004001004430000000001000414000005980010009c0000059801008041000000c001100210000005b3011001c70000800202000039165b16510000040f00000001002001900000160d0000613d000000000201043b0000000001000415000000000002004b0000160e0000613d0000000002000415000000000121004900000000010000020000000309000029000000020a000029000000010300002900000000010004150000000001130049000000000100000200000000010a0433000000000001004b000015ca0000613d000005ad0010009c000015d10000213d0000001f0010008c000015d10000a13d0000000001090433000000010010008c000015d10000213d000000000001004b000015f10000613d000000000001042d000005cb01000041000000000010043f0000004101000039000000040010043f000005cc010000410000165d0001043000000000010000190000165d00010430000000000001004b000016050000c13d000000400400043d000400000004001d000005bd01000041000000000014043500000004014000390000002002000039000000000021043500000003010000290000000003010433000300000003001d0000002401400039000000000031043500000044024000390000000201000029165b15440000040f00000003010000290000001f01100039000005e5011001970000004401100039000005980010009c00000598010080410000000402000029000005980020009c000005980200804100000060011002100000004002200210000000000121019f0000165d00010430000000400100043d00000064021000390000060d03000041000000000032043500000044021000390000060e03000041000000000032043500000024021000390000002a030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005c1011001c70000165d00010430000005980090009c00000598090080410000004002900210000005980010009c00000598010080410000006001100210000000000121019f0000165d00010430000000000001042f000000400100043d00000044021000390000060f03000041000000000032043500000024021000390000001d030000390000000000320435000005bd020000410000000000210435000000040210003900000020030000390000000000320435000005980010009c00000598010080410000004001100210000005be011001c70000165d00010430000000000001042f000005980010009c00000598010080410000004001100210000005980020009c00000598020080410000006002200210000000000112019f0000000002000414000005980020009c0000059802008041000000c002200210000000000112019f000005c2011001c70000801002000039165b16510000040f0000000100200190000016330000613d000000000101043b000000000001042d00000000010000190000165d0001043000000000050100190000000000200443000000040030008c0000163c0000a13d000000050140027000000000010100310000000400100443000005980030009c000005980300804100000060013002100000000002000414000005980020009c0000059802008041000000c002200210000000000112019f00000610011001c70000000002050019165b16510000040f00000001002001900000164b0000613d000000000101043b000000000001042d000000000001042f0000164f002104210000000102000039000000000001042d0000000002000019000000000001042d00001654002104230000000102000039000000000001042d0000000002000019000000000001042d00001659002104230000000102000039000000000001042d0000000002000019000000000001042d0000165b000004320000165c0001042e0000165d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000a28c1aed00000000000000000000000000000000000000000000000000000000df9c158800000000000000000000000000000000000000000000000000000000df9c158900000000000000000000000000000000000000000000000000000000e2f318e300000000000000000000000000000000000000000000000000000000eeb8cb0900000000000000000000000000000000000000000000000000000000a28c1aee00000000000000000000000000000000000000000000000000000000a97c0a1e00000000000000000000000000000000000000000000000000000000c9a815bd0000000000000000000000000000000000000000000000000000000020d7bec00000000000000000000000000000000000000000000000000000000020d7bec100000000000000000000000000000000000000000000000000000000863e76db000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000202bcce7000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1239cd80000000000000000000000000000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000000000000000000100000000000000000000000000000000000024000000a0000000000000000000000000000000000000000000000000000000000000000000000003ffffffe09cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a04e4f542056414c4944415445440000000000000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000075650000000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682062616c616e636520666f7220666565202b2076616c000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000000000000000000000000000007261746f720000000000000000000000000000000000000000000000000000004661696c656420746f20706179207468652066656520746f20746865206f70654f6e6c7920746865206163636f756e7420636f6e74726163742063616e2063616c6c2074686973206d6574686f642e00000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeae804e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000496e76616c696420616d6f756e740000000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000ffffffff00000000000000000000000000000000000000000000000000000000949431dc000000000000000000000000000000000000000000000000000000008c5a344500000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000800000000000000000095ea7b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000005361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000ff15b069000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000b4fa3fb3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000000001518000000000000000000000000000000000000000800000008000000000000000004f6e6c7920626f6f746c6f616465722063616e2063616c6c2074686973206d6574686f64000000000000000000000000000000000000000000000000000000001fffffff000000000000000000000000000000000000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000202bcce7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe496e76616c69642055706461746500000000000000000000000000000000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000100000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeae7f00000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000ffffffff0000000000000000fe0000000000000000000000000000000000000000000000000000000000000045786365656473206461696c79206c696d6974000000000000000000000000004163636f756e742063616c6c206661696c656400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000010000000000000000000000000000000000000000000000000000000000000035278d12000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b000000000000000000000000000000000000000000000000ffffffffffffffbf00000000000000000000000000000000ffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fffffffffffffffe0f4a271b500000000000000000000000000000000000000000000000000000000848e1bfa1ac4e3576b728bda6721b215c70a7799a5b4866282a71bab954baac8000000000000000000000000000000000000000000000000fffffffffffffe1fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6ead7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a519b453ce45aaaaf3a300f5a9ec95869b4f28ab10430b572ee218c3a6a5e07d6f000000000000000000000000000000000000000000000000ffffffffffffff5f1901000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000017a8441500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc05361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65641806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b836f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2646970667358221220d0e411e4461c70d9ddfb0cf267d1b5616d38fe890249fc75266fd677a74a89d964736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055"
693
+ }