hch
2019-01-21 d73546a98a150ddd7ab8a3b21f6159523445f413
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
X•E\c@sIÌdZddlZddlZddlZejƒdZedZeZd„Z    d„Z
d„Z d„Z e d    ƒ\ZZZZe d
ƒ\ZZZd
Zd Ze d eƒZ\„ZZZZZZZZZ Z!Z"Z#Z$Z%Z&Z'Z(Z)Z*Z+Z,Z-Z.Z/Z0Z1Z2Z3Z4Z5Z6Z7Z8Z9Z:Z;Z<Z=Z>Z?Z@ZAZBZCZDZEZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZZZ[Z\Z]Z^Z_Z`ZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyZzZ{Z|Z}Z~ZZ€ZZ‚ZƒZ„Z…Z†Z‡ZˆZ‰ZŠZ‹ZŒZZŽZZZ‘Z’Z“Z”Z•Z–Z—Z˜Z™ZšZ›eŽgZœgZgZže d dd ƒZŸdZ dZ¡dZ¢dZ£dZ¤dZ¥dZ¦dZ§dZ¨dZ©dZªdZ«dZ¬dZ­dZ®dZ¯dZ°dZ±dZ²dZ³dZ´eªe«e¬e­e®e©e¯e°e±e²e³e´g ZµdZ¶d Z·d    Z¸dZ¹d Zºd!Z»d"Z¼d#Z½d$Z¾d%Z¿d&ZÀd'ZÁd(ZÂd)ZÃd*ZÄd+ZÅd,ZÆd-ZÇd.ZÈdZÉdZÊd/ZËdZÌd0ZÍdZÎd1ZÏdZÐdZÑdZÒd2ZÓd3ZÔd4ZÕd5ZÖd6Z×d7ZØd8ZÙd9ZÚd:ZÛd;ZÜd<ZÝd=ZÞd>Zßd?Zàd@ZádAZâdBZãdCZädDZådEZædFZçdGZèdHZédIZêdJZëdKZìdLZídMZîdNZïdOZðdPZñdQZòdRZódSZôdTZõdUZödVZ÷dWZødXZùdYZúdZZûd[Züd\Zýd]Zþd^Zÿd_Zd`ZdaZdbZdcZddZdeZdfZdgZdhZ    diZ
d Z djZ dkZ dlZdmZdnZidoej6dpej6ZieÒeÓgej6eçeeeeegej6e eed ƒej6eäeåeægej6Zejdq„Zieîgej6eïgej6eðgej6eñgej6eògej6eógej6eôgej6eõgej 6eöe÷gej!6eöe÷gej"6eøgej#6eùgej$6eúgej%6eûgej&6eügej'6eýgej(6eþgej)6eÿgej*6Z+drZ,dsZ-dtZ.duZ/dvZ0dwZ1dxZ2dyZ3dzZ4d{Z5d|Z6d}Z7d~Z8dZ9d€Z:dZ;d‚Z<dƒZ=d„Z>d…Z?d†Z@d‡ZAdˆZBd‰ZCdŠZDd‹ZEdŒZFdZGdŽZHdZIdZJd‘ZKd’ZLd“ZMd”ZNd•ZOd
ZPejQZQejRZRejSZSejTZTejUZUejVZVd–ZWd—ZXd˜ZYd™ZZdšZ[d›Z\dœZ]dZ^džZ_dŸZ`d Zad¡Zbd¢Zcd£Zdd¤Zed¥Zfd¦Zgd§Zhd¨Zid©ZjdªZkd«Zld¬Zmd Znd­Zod®ZpdZqd¯Zrd°Zsd±Ztd²Zud³Zvd´ZwdµZxd¶Zyd·Zzd¸Z{d¹Z|dºZ}d»Z~d¼Zd½Z€d¾Zd¿Z‚dÀZƒdÁZ„dÂZ…dÃZ†dÄZ‡dÅZˆdÆZ‰dÇZŠdÈZ‹dÉZŒdÊZdËZŽdÌZdÍZdÎZ‘dÏZ’dÐZ“dÑZ”dÒZ•dÓZ–dÔZ—dÕgZ˜eƒetgZ™d dÖd
d    gZšid×e‰gfdØ6d×egfdÙ6Z›iZœe d dƒ\ZZžZŸZ idÚe6dÛež6dÜeŸ6dÝe 6Z¡e dփ\Z¢Z£e'gZ¤d Z¥dÞZ¦dßZ§dàZ¨dáZ©dâZªdZ«dZ¬dÆZ­dãZ®däZ¯dZ°dåZ±dæZ²dZ³dZ´dZµdçZ¶dZ·dZ¸dZ¹dZºdZ»dèZ¼déZ½dêZ¾dëZ¿dìZÀdíZÁdîZÂdïZÃdðZÄdñZÅdòZÆdóZÇdôZÈdõZÉdöZÊd÷ZËdøZÌdùZÍdúZÎeÅeÉeÊeÍgZÏe©gZÐdûZÑdüZÒdýZÓdþZÔdÿZÕdZÖd¦Z×e d d)ƒ\ZØZÙZÚZÛZÜZÝZÞZßZàZáZâZãZäZåe dd0ƒ\ZæZçZèZéeêeîeôd ƒZëe eîed ƒe eed ƒZìeîeïgZíeêeed ƒZîeêeed ƒZïeØeÜeÝeÞeßeâgZðdZñejòejóejôgZõdZöd$Z÷dZødZùdZúd@dÍZûdÍdÍZüd.ZýdZþdZÿd Zd"ZdZdZd
ZdZdZdZdZdZ    dZ
d&Z dZ d Z d Zd$Zd@Zd    ZdZd    Zd
ZdÍZejóZdZd.ZdZd Zd    Zd Zd$Zd
Ze deƒ\ZZ Z!d$Z"d$Z#e dd    ƒZ$\Z%Z&Z'Z(ej)gZ*ej+gZ,ej+ej-ej.ej/ej0gZ1ej+ej-ej0ej/gZ2ej+ej/ej0ej-ej.ej3ej4gZ5ej0ej)ej6ej7gZ8e%e&e'e(gZ9ej.gZ:ej+gZ;ej<ej=gZ>ej+ej)ej-ej/ej0ej6ej.gZ?ej+ej-ej6ej.gZ@ej+ej-gZAej+ej-ej6ej.gZBej.ej6ej0ej/ej)ej7gZCgZDd ZEd*ZFe deFƒ\ZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVid eH6d eI6deJ6deK6deL6deM6d eN6deO6deP6deQ6deR6deS6deT6deU6deV6ZWdZXd    ZYejZej[ejej\ej]ej^ej_ejej`ejejag Zbejej[ejcejdejeejfejgejhgZiej+gZjd"Zkd2ZldÆZmd ZndÖZodZpdZqdZrdZsejtZtdZudZvd ZwdÖZxdZyejzZzej{Z{ej|Z|e d ƒZ}\Z~ZZ€ZZ‚Zƒe dփZ„\Z…Z†dØZ‡d$Zˆd Z‰dÖZŠd    Z‹d
ZŒe eŒƒ\ZZŽZd*Ze deƒ\Z‘Z’Z“Z”Z•Z–Z—Z˜Z™ZšZ›ZœZZžZŸZ iej¡ej¢ge‘6ej¡ge’6ej¡ge“6ej¡ej¢ge”6ej¡ej¢ge•6ej¡ej¢ge–6ej¡ge—6ej¡ge˜6ej¢ge™6ej¡geš6ej¡ej¢ge›6ej¡geœ6ej¡ej¢ge6ej¢gež6ej¢geŸ6ej¢ge 6Z£e‘e’e–e˜e›gZ¤e‘e’gZ¥d
Z¦e de¦ƒ\Z§Z¨Z©dZªe deªƒ\Z«Z¬Z­Z®Z¯Z°Z±Z²Z³Z´ZµZ¶Z·Z¸Z¹ZºZ»Z¼Z½Z¾Z¿ZÀZÁZÂiejÃe®6ejÃeº6ejÄe¯6ejÅe°6ejÆe±6ejÇe¾6ejÈe³6ejÈe´6ejÉeµ6ejÊe¶6ejËe·6ejÌe¹6ejÅe»6ejÆe¼6ejÌe½6ejÃeÀ6ejÄeÁ6ZÍe¬eºgZÎe®e¯eºeÀeÁgZÏe¯e±e¬e¹eºe¼e½eÁgZÐe¯e±e¹e¼e½eÁgZÑe­e®e°e²e³e´eµe¸gZÒdZÓd ZÔe ddփ\ZÕZÖiiej×ejØ6ejÙejÚ6ejÛejÜ6ejÙejÝ6eÕ6iejÞejß6ejàejá6eÖ6ZâdZãd@ZädZåd ZædZçd@Zèd ZédZêd.Zëd.Zìd.Zíd d!gZîdÆZïd*ZðdÖZñd"Zòd ZódZôd#Zõd$ZödZ÷d%Zød&Zùd'ZúdZûd d d(d)d*d+d,gZüej+ej-gZýd$ZþejÿejejejgZejejejejgZejej    geZ
dÍZ d-Z d    Z d    Zd Zejej    ej^gZd.Zd"ZdäZejejejejgZejej    ej[ejgeZdÍZd Zd    Ze deƒ\ZZZZdMZieej6eej 6eej!6Z"dÍZ#d Z$d/Z%d Z&d0Z'd Z(d Z)d1Z*d Z+d&Z,e de,ƒ\ Z-Z.Z/Z0Z1Z2Z3Z4Z5Z6Z7Z8d#Z9d    Z:e de:ƒ\Z;Z<Z=Z>e dd
ƒ\Z?Z@ZAeÍgZBd$ZCd ZDe deDƒ\ZEZFZGZHZIZJd2„ZKd3ZLd4ZMd5ZNe d    d    dÖƒ\ZOZPdZQd6ZRdáZSdÆZTe ddփ\ZUZVe÷d ZWddCd7d&d8d6gZXd8ZYdÆZZdÍZ[ej\Z]dZ^dZ_d#Z`e ddփ\ZaZbdÍZcdÍZdd$ZeejfejggZhgZiiZjd
Zkd Zld&Zmd7Znd ZodZpd ZqdÆZre d    ƒ\ZsZtZuZvd9Zwd:Zxd;Zyd Zzd<Z{d=Z|d<Z}d Z~d$Ze÷Z€e÷Zd>Z‚dÆgZƒd?Z„d@Z…dAZ†dBZ‡dCZˆdDZ‰dEZŠdFZ‹dGZŒdHZdIZŽdJZdKZdLZ‘dMZ’dNZ“dOZ”dPZ•dQZ–dRZ—dSZ˜dTZ™dUZšdVZ›dWZœdXZdYZždZZŸeŸgZ ežeŸgZ¡id[eŸ6Z¢eŽe‘e“e˜e™ešgZ£gZ¤gZ¥e‡eežgZ¦e–gZ§e…e†e˜e‡ešge§Z¨e˜eeŒeešgZ©e’e‡e…e–ešgZªe…e†egZ«gZ¬gZ­gZ®ee“e•gZ¯d Z°ej±gZ²gZ³dddÍZ´d
ddÍZµie‡gd\6e…gd]6e†gd^6e‰gd_6eŠgd`6e‹gda6eŽgdb6egdc6egdd6eˆgde6eŒgdf6egdg6e‘gdh6e’gdi6e“gdj6e”gdk6e•gdl6e–gdm6e—gdn6e˜e™gdo6e›gdp6ežgdq6egdr6ešgds6Z¶gZ·dtZ¸duZ¹dvZºdwZ»dxZ¼dyZ½dzZ¾d{Z¿d|ZÀd}ZÁd~ZÂdZÃd€ZÄdZÅd‚ZÆdƒZÇd„ZÈd…ZÉd†ZÊd‡ZËdˆZÌd‰ZÍe dd
ƒ\ZÎZÏZÐdŠZÑd‹ZÒdŒZÓdZÔdŽZÕdZÖdZ×d‘ZØd’ZÙd“ZÚd”ZÛd•ZÜd–ZÝd—ZÞd˜Zßd™ZàdšZád›ZâdœZãdZädžZådŸZæd Zçd¡Zèd¢Zéd£Zêd¤Zëd¥Zìd¦Zíd§Zîd¨Zïd©ZðdªZñd«Zòd¬Zód­Zôd®Zõd¯Zöd°Z÷d±Zød²Zùd³Zúd´ZûdµZüd¶Zýd·Zþd¸Zÿd¹ZdºZd»Zd¼Zd½Zd¾Zd¿ZdÀZdÁZdÂZ    dÃZ
dÄZ dÅZ dÆZ d Zd
Zd
Zd    ZdÇZdÍZd$Zd®Zd ZdÍZd ZdÆZd'Zd$ZdÍZdÍZgZdÈdÉgZdZ d Z!dÖZ"d
Z#d    Z$dZ%d Z&d!Z'd"Z(d Z)dÖZ*d
Z+d    Z,dZ-d Z.dÖZ/d
Z0d    Z1dZ2d Z3d!Z4e d"ƒZ5\Z6Z7Z8Z9Z:Z;Z<Z=d Z>dÖZ?d"Z@d"ZAdÍd d    d    dÍd1dÊdËdÆd¦d¦d¦dØdd d¦d dÍd    dÆdÍdÍdÍd dÍdÍdÍdÍddÍddÍd$dÍdddÍd
dÍd$dÍddÖdÍd dÍdddÍddÖdÍddÍd
dÍd d¦d    dÍddÍdÍdÍd
dÍdddÍddÍddÍddÍd¦d¦dÍdÍddÍdÍddÍdd$dÌdÌdÍd
dÍd)dÍd dÍd g@ZBeCeBƒZDe deDƒ\@ZEZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZZZ[Z\Z]Z^Z_Z`ZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyZzZ{Z|Z}Z~ZZ€ZZ‚ZƒZ„dZ…d Z†dÖZ‡d
Zˆd    Z‰dZŠd Z‹d!ZŒd"Zd#ZŽd$Zd%Zd&Z‘d'Z’dÍdd
dÍddÍd$dÍdd dÍdÖdÍd$dÍddÍdddÍdÖdÍd$dÍddÍdddÍd    gZ“eCe“ƒZ”dÎZ•dÏZ–dÐZ—dÑZ˜dÒZ™dÓZšd,Z›d,Zœd
ZdZždZŸd Z dÖZ¡dÍd
dÍdÔgZ¢eCe¢ƒZ£dZ¤dZ¥dÕZ¦dÖZ§d×Z¨dØZ©ejejgZªej!ej"gZ«ejgZ¬ejgZ­iejejejejejejejej ej!ej"g
ej[6Z®ejejgZ¯ejejejejejgZ°ej ej!ej"gZ±e¯e°e±Z²ej³Z´ejµej¶ej·ej¸gZ¹ejejejejejejejej ej!ej"ej#ej$ejµg ZºgZ»dZ¼e±e²eÂgZ½dÙZ¾dÚZ¿dddÛd$ZÀiied 6edÖ6ed
6ed    6ed6dÜ6ied 6edÖ6ed
6ed    6ed6dÝ6ied 6edÖ6ed
6ed    6ed6dÞ6ied 6edÖ6ed
6eÁd    6eÁd6dß6ied 6edÖ6ed
6ed    6eÁd6dà6ied 6edÖ6ed
6ed    6ed6dá6ied 6edÖ6ed
6ed    6eÁd6dâ6ied 6edÖ6ed
6ed    6ed6dã6ied 6edÖ6ed
6ed    6ed6dä6ied 6edÖ6ed
6eÁd    6eÁd6då6ied 6eÁdÖ6eÁd
6eÁd    6eÁd6dæ6ied 6edÖ6ed
6eÁd    6eÁd6dç6ied 6edÖ6ed
6eÁd    6eÁd6dè6ied 6edÖ6ed
6eÁd    6eÁd6dé6ied 6edÖ6ed
6ed    6ed6dê6ied 6edÖ6ed
6ed    6ed6dë6ied 6edÖ6ed
6ed    6ed6dì6ied 6edÖ6ed
6eÁd    6eÁd6dí6ied 6edÖ6ed
6eÁd    6eÁd6dî6ied 6edÖ6ed
6ed    6ed6dï6ied 6edÖ6ed
6ed    6ed6dð6ied 6edÖ6ed
6eÁd    6eÁd6dñ6ied 6edÖ6ed
6ed    6ed6dò6ied 6edÖ6ed
6ed    6ed6dó6ied 6edÖ6ed
6ed    6ed6dô6ied 6edÖ6ed
6ed    6ed6dõ6ied 6edÖ6ed
6ed    6ed6dö6ied 6edÖ6ed
6eÁd    6eÁd6d÷6ied 6edÖ6ed
6ed    6ed6dø6ied 6edÖ6ed
6ed    6ed6dù6ZÂd%ZÃe deÃ\ ZÄZÅZÆZÇZÈZÉZÊZËZÌZÍZÎdúZÏe deσ\7ZÐZÑZÒZÓZÔZÕZÖZ×ZØZÙZÚZÛZÜZÝZÞZßZàZáZâZãZäZåZæZçZèZéZêZëZìZíZîZïZðZñZòZóZôZõZöZ÷ZøZùZúZûZüZýZþZÿZZZZZZZejZejZej    Z    ee    e    d Z
ddgd dgd dgddgddgddgdd gdd gd d gg    Z ddgd dgd dgddgddgddgdd gdd gd d gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgdÖd ggZ ddgd dgd dgddgddgddgdd gdd gd d gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgdÖd gd
dgd
dgd
dÕgd
dÖgdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgdÖd
gdÕd
gdd
gdd
gd d
gdÖd
gd
d
gd
dÖgd
d gg1Z ddgd dgd dgddgddgddgdd gdd gd d gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgdÖd gd
dgd
dgd
dÕgd
dÖgdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgdÖd
gdÕd
gdd
gdd
gd d
gdÖd
gd
d
gd
dÖgd
d gd    dgd    dgd    dÕgd    dÖgd    d×gd
d×gdÖd×gd d×gdd×gdd×gdÕd×gdÖd×gd×d×gd×dÖgd×dÕgd×dgd×dgd×d gd×dÖgd×d
gd×d    gdÖd    gdÕd    gdd    gdd    gd d    gdÖd    gd
d    gd    d    gd    d
gd    dÖgd    d ggQZddgd dgd dgddgddgddgdd gdd gd d gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgdÖd gd
dgd
dgd
dÕgd
dÖgdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgdÖd
gdÕd
gdd
gdd
gd d
gdÖd
gd
d
gd
dÖgd
d gd    dgd    dgd    dÕgd    dÖgd    d×gd
d×gdÖd×gd d×gdd×gdd×gdÕd×gdÖd×gd×d×gd×dÖgd×dÕgd×dgd×dgd×d gd×dÖgd×d
gd×d    gdÖd    gdÕd    gdd    gdd    gd d    gdÖd    gd
d    gd    d    gd    d
gd    dÖgd    d gddgddgddÕgddÖgdd×gddØgd    dØgd
dØgdÖdØgd dØgddØgddØgdÕdØgdÖdØgd×dØgdØdØgdØd×gdØdÖgdØdÕgdØdgdØdgdØd gdØdÖgdØd
gdØd    gdØdgd×dgdÖdgdÕdgddgddgd dgdÖdgd
dgd    dgddgdd    gdd
gddÖgdd ggyZddgd dgd dgddgddgddgdd gdd gd d gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgdÖd gd
dgd
dgd
dÕgd
dÖgdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgdÖd
gdÕd
gdd
gdd
gd d
gdÖd
gd
d
gd
dÖgd
d gd    dgd    dgd    dÕgd    dÖgd    d×gd
d×gdÖd×gd d×gdd×gdd×gdÕd×gdÖd×gd×d×gd×dÖgd×dÕgd×dgd×dgd×d gd×dÖgd×d
gd×d    gdÖd    gdÕd    gdd    gdd    gd d    gdÖd    gd
d    gd    d    gd    d
gd    dÖgd    d gddgddgddÕgddÖgdd×gddØgd    dØgd
dØgdÖdØgd dØgddØgddØgdÕdØgdÖdØgd×dØgdØdØgdØd×gdØdÖgdØdÕgdØdgdØdgdØd gdØdÖgdØd
gdØd    gdØdgd×dgdÖdgdÕdgddgddgd dgdÖdgd
dgd    dgddgdd    gdd
gddÖgdd gd dgd dgd dÕgd dÖgd d×gd dØgd dûgddûgd    dûgd
dûgdÖdûgd dûgddûgddûgdÕdûgdÖdûgd×dûgdØdûgdûdûgdûdØgdûd×gdûdÖgdûdÕgdûdgdûdgdûd gdûdÖgdûd
gdûd    gdûdgdûd gdØd gd×d gdÖd gdÕd gdd gdd gd d gdÖd gd
d gd    d gdd gd d gd dgd d    gd d
gd dÖgd d gg©Zddgddgddgddgd dgd dgd d gdd gdd gdÕd gdÕdgdÕdgdÕdÕgddÕgddÕgd dÕgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖd gdÖdgdÖdgdÖdÕgdÖdÖgdÕdÖgddÖgddÖgd dÖgdÖdÖgd
dÖgd
dÕgd
dgd
dgd
d gd
dÖgd
d
gdÖd
gd d
gdd
gdd
gdÕd
gdÖd
gd×d
gd×dÖgd×d gd×dgd×dgd×dÕgd×dÖgd×d×gdÖd×gdÕd×gdd×gdd×gd d×gdÖd×gd
d×gd    d×gd    dÖgd    dÕgd    dgd    dgd    d gd    dÖgd    d
gd    d    gd
d    gdÖd    gd d    gdd    gdd    gdÕd    gdÖd    gd×d    gdØd    gdØd
gdØdÖgdØd gdØdgdØdgdØdÕgdØdÖgdØd×gdØdØgd×dØgdÖdØgdÕdØgddØgddØgd dØgdÖdØgd
dØgd    dØgddØgdd×gddÖgddÕgddgddgdd gddÖgdd
gdd    gddgd    dgd
dgdÖdgd dgddgddgdÕdgdÖdgd×dgdØdgdûdgdûd    gdûd
gdûdÖgdûd gdûdgdûdgdûdÕgdûdÖgdûd×gdûdØgdûdûgdØdûgd×dûgdÖdûgdÕdûgddûgddûgd dûgdÖdûgd
dûgd    dûgddûgd dûgd dØgd d×gd dÖgd dÕgd dgd dgd d gd dÖgd d
gd d    gd dgd d gdd gd    d gd
d gdÖd gd d gdd gdd gdÕd gdÖd gd×d gdØd gdûd gdüd gdüdgdüd    gdüd
gdüdÖgdüd gdüdgdüdgdüdÕgdüdÖgdüd×gdüdØgdüdûgdüdügdûdügdØdügd×dügdÖdügdÕdügddügddügd dügdÖdügd
dügd    dügddügd dügd!dügd!dûgd!dØgd!d×gd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gd!d    gd!dgd!d gd!d!gd d!gdd!gd    d!gd
d!gdÖd!gd d!gdd!gdd!gdÕd!gdÖd!gd×d!gdØd!gdûd!gdüd!ggáZddgddgddgddgd dgd dgd d gdd gdd gdÕd gdÕdgdÕdgdÕdÕgddÕgddÕgd dÕgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖd gdÖdgdÖdgdÖdÕgdÖdÖgdÕdÖgddÖgddÖgd dÖgdÖdÖgd
dÖgd
dÕgd
dgd
dgd
d gd
dÖgd
d
gdÖd
gd d
gdd
gdd
gdÕd
gdÖd
gd×d
gd×dÖgd×d gd×dgd×dgd×dÕgd×dÖgd×d×gdÖd×gdÕd×gdd×gdd×gd d×gdÖd×gd
d×gd    d×gd    dÖgd    dÕgd    dgd    dgd    d gd    dÖgd    d
gd    d    gd
d    gdÖd    gd d    gdd    gdd    gdÕd    gdÖd    gd×d    gdØd    gdØd
gdØdÖgdØd gdØdgdØdgdØdÕgdØdÖgdØd×gdØdØgd×dØgdÖdØgdÕdØgddØgddØgd dØgdÖdØgd
dØgd    dØgddØgdd×gddÖgddÕgddgddgdd gddÖgdd
gdd    gddgd    dgd
dgdÖdgd dgddgddgdÕdgdÖdgd×dgdØdgdûdgdûd    gdûd
gdûdÖgdûd gdûdgdûdgdûdÕgdûdÖgdûd×gdûdØgdûdûgdØdûgd×dûgdÖdûgdÕdûgddûgddûgd dûgdÖdûgd
dûgd    dûgddûgd dûgd dØgd d×gd dÖgd dÕgd dgd dgd d gd dÖgd d
gd d    gd dgd d gdd gd    d gd
d gdÖd gd d gdd gdd gdÕd gdÖd gd×d gdØd gdûd gdüd gdüdgdüd    gdüd
gdüdÖgdüd gdüdgdüdgdüdÕgdüdÖgdüd×gdüdØgdüdûgdüdügdûdügdØdügd×dügdÖdügdÕdügddügddügd dügdÖdügd
dügd    dügddügd dügd!dügd!dûgd!dØgd!d×gd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gd!d    gd!dgd!d gd!d!gd d!gdd!gd    d!gd
d!gdÖd!gd d!gdd!gdd!gdÕd!gdÖd!gd×d!gdØd!gdûd!gdüd!gdýd!gdýd gdýdgdýd    gdýd
gdýdÖgdýd gdýdgdýdgdýdÕgdýdÖgdýd×gdýdØgdýdûgdýdügdýdýgdüdýgdûdýgdØdýgd×dýgdÖdýgdÕdýgddýgddýgd dýgdÖdýgd
dýgd    dýgddýgd dýgd!dýgd"dýgd"dügd"dûgd"dØgd"d×gd"dÖgd"dÕgd"dgd"dgd"d gd"dÖgd"d
gd"d    gd"dgd"d gd"d!gd"d"gd!d"gd d"gdd"gd    d"gd
d"gdÖd"gd d"gdd"gdd"gdÕd"gdÖd"gd×d"gdØd"gdûd"gdüd"gdýd"gg!Zddgddgddgddgd dgd dgd d gdd gdd gdÕd gdÕdgdÕdgdÕdÕgddÕgddÕgd dÕgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgd dÖgddÖgddÖgdÕdÖgdÖdÖgdÖd gdÖdgdÖdgdÖdÕgdÖdÖgdÕdÖgddÖgddÖgd dÖgdÖdÖgd
dÖgd
dÕgd
dgd
dgd
d gd
dÖgd
d
gdÖd
gd d
gdd
gdd
gdÕd
gdÖd
gd×d
gd×dÖgd×d gd×dgd×dgd×dÕgd×dÖgd×d×gdÖd×gdÕd×gdd×gdd×gd d×gdÖd×gd
d×gd    d×gd    dÖgd    dÕgd    dgd    dgd    d gd    dÖgd    d
gd    d    gd
d    gdÖd    gd d    gdd    gdd    gdÕd    gdÖd    gd×d    gdØd    gdØd
gdØdÖgdØd gdØdgdØdgdØdÕgdØdÖgdØd×gdØdØgd×dØgdÖdØgdÕdØgddØgddØgd dØgdÖdØgd
dØgd    dØgddØgdd×gddÖgddÕgddgddgdd gddÖgdd
gdd    gddgd    dgd
dgdÖdgd dgddgddgdÕdgdÖdgd×dgdØdgdûdgdûd    gdûd
gdûdÖgdûd gdûdgdûdgdûdÕgdûdÖgdûd×gdûdØgdûdûgdØdûgd×dûgdÖdûgdÕdûgddûgddûgd dûgdÖdûgd
dûgd    dûgddûgd dûgd dØgd d×gd dÖgd dÕgd dgd dgd d gd dÖgd d
gd d    gd dgd d gdd gd    d gd
d gdÖd gd d gdd gdd gdÕd gdÖd gd×d gdØd gdûd gdüd gdüdgdüd    gdüd
gdüdÖgdüd gdüdgdüdgdüdÕgdüdÖgdüd×gdüdØgdüdûgdüdügdûdügdØdügd×dügdÖdügdÕdügddügddügd dügdÖdügd
dügd    dügddügd dügd!dügd!dûgd!dØgd!d×gd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gd!d    gd!dgd!d gd!d!gd d!gdd!gd    d!gd
d!gdÖd!gd d!gdd!gdd!gdÕd!gdÖd!gd×d!gdØd!gdûd!gdüd!gdýd!gdýd gdýdgdýd    gdýd
gdýdÖgdýd gdýdgdýdgdýdÕgdýdÖgdýd×gdýdØgdýdûgdýdügdýdýgdüdýgdûdýgdØdýgd×dýgdÖdýgdÕdýgddýgddýgd dýgdÖdýgd
dýgd    dýgddýgd dýgd!dýgd"dýgd"dügd"dûgd"dØgd"d×gd"dÖgd"dÕgd"dgd"dgd"d gd"dÖgd"d
gd"d    gd"dgd"d gd"d!gd"d"gd!d"gd d"gdd"gd    d"gd
d"gdÖd"gd d"gdd"gdd"gdÕd"gdÖd"gd×d"gdØd"gdûd"gdüd"gdýd"gdþd"gdþd!gdþd gdþdgdþd    gdþd
gdþdÖgdþd gdþdgdþdgdþdÕgdþdÖgdþd×gdþdØgdþdûgdþdügdþdýgdþdþgdýdþgdüdþgdûdþgdØdþgd×dþgdÖdþgdÕdþgddþgddþgd dþgdÖdþgd
dþgd    dþgddþgd dþgd!dþgd"dþgd#dþgd#dýgd#dügd#dûgd#dØgd#d×gd#dÖgd#dÕgd#dgd#dgd#d gd#dÖgd#d
gd#d    gd#dgd#d gd#d!gd#d"gd#d#gd"d#gd!d#gd d#gdd#gd    d#gd
d#gdÖd#gd d#gdd#gdd#gdÕd#gdÖd#gd×d#gdØd#gdûd#gdüd#gdýd#gdþd#ggiZddgd dgd dgddgddgddgdd gdd gd d gdÖd gdÖdgdÖdgdÖdÕgd dÕgddÕgddÕgdÕdÕgdÕdgdÕdgdÕd gdÕdÖgddÖgddÖgd dÖgdÖdÖgd
dÖgd
d gd
dgd
dgd
dÕgd
dÖgd dÖgdÖdÖgddÖgddÖgdÕdÖgdÖdÖgdÖdÕgdÖdgdÖdgdÖd gdÖdÖgdÖd
gdÕd
gdd
gdd
gd d
gdÖd
gd
d
gd    d
gd    dÖgd    d gd    dgd    dÕgd    dgd    d×gd    dÖgd
d×gdÖd×gd d×gdd×gdd×gdÕd×gdÖd×gd×d×gd×dÖgd×dÕgd×dgd×dgd×d gd×dÖgd×d
gd×d    gdÖd    gdÕd    gdd    gdd    gd d    gdÖd    gd
d    gd    d    gdd    gdd
gddÖgdd gddgddgddÕgddÖgdd×gddØgd
dØgd    dØgdÖdØgd dØgddØgddØgdÕdØgdÖdØgd×dØgdØdØgdØd×gdØdÖgdØdÕgdØdgdØdgdØd gdØdÖgdØd
gdØd    gdØdgd×dgdÖdgdÕdgddgddgd dgdÖdgd    dgd
dgddgd dgd d    gd d
gd dÖgd d gd dgd dgd dÕgd dÖgd d×gd dØgd dûgddûgd    dûgd
dûgdÖdûgd dûgddûgddûgdÕdûgdÖdûgd×dûgdØdûgdûdûgdûdØgdûd×gdûdÖgdûdÕgdûdgdûdgdûd gdûdÖgdûd
gdûdgdûd    gdûd gdØd gd×d gdÖd gdÕd gdd gdd gd d gdÖd gd
d gd    d gdd gd d gd!d gd!dgd!d    gd!d
gd!dÖgd!d gd!dgd!dgd!dÕgd!dÖgd!d×gd!dØgd!dûgd!dügd dügddügd    dügd
dügdÖdügd dügddügddügdÖdügdÕdügd×dügdØdügdûdügdüdügdüdûgdüdØgdüd×gdüdÖgdüdÕgdüdgdüdgdüd gdüdÖgdüd
gdüd    gdüdgdüd gdüd!gdûd!gdØd!gd×d!gdÖd!gdÕd!gdd!gdd!gd d!gdÖd!gd
d!gd    d!gdd!gd d!gd!d!gd"d!gd"d gd"dgd"d    gd"d
gd"dÖgd"d gd"dgd"dgd"dÕgd"dÖgd"d×gd"dûgd"dØgd"dügd"dýgd!dýgd dýgddýgd    dýgd
dýgdÖdýgd dýgddýgdÕdýgddýgdÖdýgd×dýgdØdýgdûdýgdüdýgdýdýgdýdügdýdûgdýdØgdýd×gdýdÖgdýdÕgdýdgdýdgdýd gdýdÖgdýd
gdýd    gdýdgdýd gdýd!gdýd"gdüd"gdûd"gdØd"gd×d"gdÖd"gdÕd"gdd"gdd"gd d"gdÖd"gd
d"gd    d"gdd"gd d"gd!d"gd"d"gd#d"gd#d!gd#d gd#dgd#d    gd#d
gd#dÖgd#d gd#dgd#dgd#dÕgd#dÖgd#d×gd#dØgd#dûgd#dügd#dýgd#dþgd"dþgd!dþgd dþgd    dþgddþgd
dþgdÖdþgddþgd dþgddþgdÕdþgdÖdþgd×dþgdüdþgdûdþgdØdþgdýdþgdþdþgdþdýgdþdügdþdûgdþdØgdþd×gdþdÖgdþdÕgdþdgdþdgdþd gdþdÖgdþd
gdþd    gdþdgdþd gdþd!gdþd"gdþd#gdýd#gdüd#gdûd#gdØd#gd×d#gdÖd#gdÕd#gdd#gdd#gd d#gdÖd#gd
d#gd    d#gdd#gd d#gd!d#gd"d#gd#d#gd$d#gd$d"gd$d!gd$d gd$dgd$d    gd$d
gd$dÖgd$d gd$dgd$dgd$dÕgd$d×gd$dÖgd$dØgd$dûgd$dügd$dýgd$dþgd$dÿgd#dÿgd"dÿgd!dÿgd dÿgddÿgd    dÿgd
dÿgdÖdÿgd dÿgddÿgddÿgdÕdÿgdÖdÿgdØdÿgd×dÿgdûdÿgdüdÿgdýdÿgdþdÿgdÿdÿgdÿdþgdÿdýgdÿdügdÿdûgdÿdØgdÿd×gdÿdÖgdÿdÕgdÿdgdÿdgdÿd gdÿdÖgdÿd
gdÿd    gdÿd gdÿdgdÿd!gdÿd"gdÿd#gdÿd$gdþd$gdýd$gdüd$gdûd$gdØd$gd×d$gdÖd$gdÕd$gdd$gdd$gd d$gdÖd$gd
d$gd    d$gdd$gd d$gd!d$gd"d$gd#d$gd$d$gd%d$gd%d#gd%d"gd%d!gd%d gd%dgd%d    gd%d
gd%dÖgd%d gd%dgd%dgd%dÕgd%dÖgd%dØgd%d×gd%dûgd%dügd%dýgd%dþgd%dÿgd%dgd$dgd#dgd"dgd!dgd dgddgd    dgd
dgdÖdgd dgddgddgdÕdgdÖdgd×dgdØdgdûdgdüdgdýdgdþdgdÿdgddgddÿgddþgddýgddügddûgddØgdd×gddÖgddÕgddgddgdd gddÖgdd
gdd    gddgdd gdd!gdd"gdd#gdd$gdd%gdÿd%gdþd%gdýd%gdüd%gdûd%gdØd%gd×d%gdÖd%gdÕd%gdd%gdd%gd d%gdÖd%gd
d%gd    d%gdd%gd d%gd!d%gd"d%gd#d%gd$d%gd%d%ggZi
e d 6e dÖ6e d
6ed    6ed6ed 6ed!6ed"6ed#6ed'6Zddgddgdd gd dgd dgd d ggZd dgdÖdgd
dgd dgdÖdgd d gdÖd gd    dgd
dgd
d gd    dgd    d gddgg Zd dgdÖdgd
dgd    dgddgd d gd dgdÖdgdÖd gd
d gd
dgd    dgd    d gdd gddgddgddgdd gdd gddgddggZd dgdÖdgd
dgd    dgddgd dgd!dgd dgd d gdÖdgdÖd gd
dgd
d gd    dgd    d gddgdd gd dgd d gd!dgd!d gd dÕgd dÖgdÖdÕgdÖdÖgd
dÕgd
dÖgd    dÕgd    dÖgddÕgddÖgd dÕgd dÖgd!dÕgd!dÖgddgddgddÕgdd gddÖgddgddgddÕgdd gddÖgg-Zd dgdÖdgd
dgd    dgddgd dgd!dgd"dgd#dgd dgdÖdgd
dgd    dgd d gdÖd gd
d gd    d gddgd dgdd gd d gd!dÕgd!d gd!dgd"dgd"d gd#dgd#d gd dÕgd dÖgdÖdÖgdÖdÕgddgd
dÖgd
dÕgd    dÕgd    dÖgddÖgddÕgd dÕgd dÖgd!dÖgd"dÕgd"dÖgd#dÖgd#dÕgdd gddÖgddgddÕgddÕgddgddgdd gddÖgg7Zd dgdÖdgd
dgd    dgddgd dgd!dgd"dgd#dgd$dgd%dgd dgd d gdÖdgdÖd gd
dgd
d gd    dgd    d gddgdd gd dgd d gd!dgd!d gd"dgd"d gd#dgd#d gd$dgd$d gd%dgd%d gd dÕgd dÖgdÖdÕgdÖdÖgd
dÕgd
dÖgddgd    dÕgd    dÖgddÖgddÕgd dÕgd dÖgd!dÖgd!dÕgd"dÕgd"dÖgd#dÖgd#dÕgd$dÕgd$dÖgd%dÖgd%dÕgddgdd gddÖgddÕgddÕgddgddgdd gddÖggAZddgd dgd d gd dÕgd dÖgddÖgdd gddgddÕgdÖdÕgd dgdÖdgdÖdgdÖd gdÖdÖgd
dÖgd
d gd
dgd
dgd
dÕgd    dÕgd    dgd    dgd    d gd    dÖgddÖgdd gddgddgddÕgd dÕgd dgd dgd d gd dÖgd!dÖgd!d gd!dgd!dgd!dÕgd"dÕgd"dgd"dgd"d gd"dÖgd#dÖgd#d gd#dgd#dÕgd#dgd$dÕgd$dgd$dgd$d gd$dÖgd%dÖgd%d gd%dgd%dgd%dÕgd&dÕgd&dgd&dgd&d gd&dÖgd'dÖgd'd gd'dgd'dgd'dÕgd(dÕgd(dgd(dgd(d gd(dÖggKZddgd dgd d gd dÕgd dÖgddÖgdd gddgddÕgdÖdÕgd dgdÖdgdÖdgdÖd gdÖdÖgd
dÖgd
d gd
dgd
dgd
dÕgd    dÕgd    dgd    dgd    d gd    dÖgddÖgdd gddgddgddÕgd dÕgd dgd dgd d gd dÖgd!dÖgd!d gd!dgd!dgd!dÕgd"dÕgd"dgd"dgd"d gd"dÖgd#dÖgd#d gd#dgd#dÕgd#dgd$dÕgd$dgd$dgd$d gd$dÖgd%dÖgd%d gd%dgd%dgd%dÕgd&dÕgd&dgd&dgd&d gd&dÖgd'dÖgd'd gd'dgd'dgd'dÕgd(dÕgd(dgd(dgd(d gd(dÖgd)dÕgd)dgd)dgd)d gd)dÖgd*dÖgd*d gd*dgd*dgd*dÕgd+dÕgd+dgd+dgd+d gd+dÖggZZddgddgdd gd dgd dgd d gdÖdgdÖdgdÖd gd
dgd
dgd
d gd    dgd    dgd    d gddgddgdd gd dgd dgd d gd!dgd!dgd!d gd"dgd"dgd"d gd#dgd#dgd#d ggZddgddgdd gd dgd dgd d gd dÕgd dÖggZddgddgdd gd dgd dgd d gd dÕgd dÖgdÖdgdÖdgdÖd gdÖdÕgdÖdÖgdÖdÖgdÖd
ggZ ddgddgdd gd dgd dgd d gd dÕgd dÖgdÖdgdÖdgdÖd gdÖdÕgdÖdÖgdÖdÖgdÖd
gd
dgd
dgd
d gd
dÕgd
dÖgd
dÖgd
d
gd
d×gd
d    ggZ!d dgdÖdgd
dgd    dgddgd dgd d gdÖdgdÖd gd
dgd
d gd    dgd    d gddgdd gdÖdÕgdÖdÖgd
dÕgd
dÖgd    dÕgd    dÖgddÕgddgddgdd gddÖgd    dÖgd    d
gddÖgdd
gd d
gd dÖgd d gd dgd dgd dÕgd dÖgd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gg,Z"d dgdÖdgd
dgd    dgddgd dgd d gdÖdgdÖd gd
dgd
d gd    dgd    d gddgdd gdÖdÕgdÖdÖgd
dÕgd
dÖgd    dÕgd    dÖgddÕgddgddgdd gddÖgd    dÖgd    d
gddÖgdd
gd d
gd dÖgd d gd dgd dgd dÕgd dÖgd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gd"dÖgd"dÕgd"dgd"dgd"d gd"dÖgd"d
gd#dÖgd#dÕgd#dgd#dgd#d gd#dÖgd#d
gg:Z#d dgdÖdgd
dgd    dgddgd dgd d gdÖdgdÖd gd
dgd
d gd    dgd    d gddgdd gdÖdÕgdÖdÖgd
dÕgd
dÖgd    dÕgd    dÖgddÕgddgddgdd gddÖgd    dÖgd    d
gddÖgdd
gd d
gd dÖgd d gd dgd dgd dÕgd dÖgd!dÖgd!dÕgd!dgd!dgd!d gd!dÖgd!d
gd"dÖgd"dÕgd"dgd"dgd"d gd"dÖgd"d
gd#dÕgd#dgd#dgd#d gd#dÖgd#d
gd#dÖgd$dÖgd$dÕgd$dgd$dgd$d gd$dÖgd$d
gd%d
gd%dÖgd%d gd%dgd%dgd%dÖgd%dÕggHZ$ddgddgdd gd dgd dgd d gd dÕgd dÖgdÖdgdÖdgdÖd gdÖdÕgdÖdÖgdÖdÖgdÖd
gd
dgd
dgd
d gd
dÕgd
dÖgd
dÖgd
d
gd
d×gd
d    gd    dgd    dgd    d gd    dÕgd    dÖgd    dÖgd    d
gd    d×gd    d    gd    dØgd    dgddgddgdd gddÕgddÖgddÖgdd
gdd×gdd    gddØgddgd dgd dgd d gd dÕgd dÖgd dÖgd d
gd d×gd d    gd dØgd dgd dûgd d gd!dgd!dgd!d gd!dÕgd!dÖgd!dÖgd!d
gd!d×gd!d    gd!dØgd!dgd!dûgd!d ggHZ%ied%6ed&6ed'6ed(6ed)6ed*6ed+6ed,6ed-6ed6e d6e!d/6e"d6e#d06e$d6e%d16Z&d„Z'ddfdÖdfddÖfdÕdfddÕfdÖdÖfdÖdÕfdÕdÖfdÕdÕfd    dfdd    fd×dfdd×fd    dÖfd    dÕfdÖd    fdÕd    fd×dÖfd×dÕfdÖd×fdÕd×fd    d    fd    d×fd×d    fd×d×fd dfdd fdûdfddûfd dÖfd dÕfdÖd fdÕd fdûdÖfdûdÕfdÖdûfdÕdûfd d    fd d×fd    d fd×d fdûd    fdûd×fd    dûfd×dûfd d fd dûfdûd fdûdûfd"dfdd"fdýdfddýfd"dÖfd"dÕfdÖd"fdÕd"fdýdÖfdýdÕfdÖdýfdÕdýfd"d    fd"d×fd    d"fd×d"fdýd    fdýd×fd    dýfd×dýfd"d fd"dûfd d"fdûd"fdýd fdýdûfd dýfdûdýfd"d"fd"dýfdýd"fdýdýfd$dfdd$fdÿdfddÿfd$dÖfd$dÕfdÖd$fdÕd$fdÿdÖfdÿdÕfdÖdÿfdÕdÿfd$d    fd$d×fd    d$fd×d$fdÿd    fdÿd×fd    dÿfd×dÿfd$d fd$dûfd d$fdûd$fdÿd fdÿdûfd dÿfdûdÿfd$d"fd$dýfd"d$fdýd$fdÿd"fdÿdýfd"dÿfdýdÿfd$d$fd$dÿfdÿd$fdÿdÿfd&dfdd&fddfddfd&dÖfd&dÕfdÖd&fdÕd&fddÖfddÕfdÖdfdÕdfd&d    fd&d×fd    d&fd×d&fdd    fdd×fd    dfd×dfd&d fd&dûfd d&fdûd&fdd fddûfd dfdûdfd&d"fd&dýfd"d&fdýd&fdd"fddýfd"dfdýdfd&d$fd&dÿfd$d&fdÿd&fdd$fddÿfd$dfdÿdfd&d&fd&dfdd&fddfd(dfdd(fddfddfd(dÖfd(dÕfdÖd(fdÕd(fddÖfddÕfdÖdfdÕdfd(d    fd(d×fd    d(fd×d(fdd    fdd×fd    dfd×dfd(d fd(dûfd d(fdûd(fdd fddûfd dfdûdfd(d"fd(dýfd"d(fdýd(fdd"fddýfd"dfdýdfd(d$fd(dÿfd$d(fdÿd(fdd$fddÿfd$dfdÿdfd(d&fd(dfd&d(fdd(fdd&fddfd&dfddfd(d(fd(dfdd(fddfd*dfdd*fddfddfd*dÖfd*dÕfdÖd*fdÕd*fddÖfddÕfdÖdfdÕdfd*d    fd*d×fd    d*fd×d*fdd    fdd×fd    dfd×dfd*d fd*dûfd d*fdûd*fdd fddûfd dfdûdfd*d"fd*dýfd"d*fdýd*fdd"fddýfd"dfdýdfd*d$fd*dÿfd$d*fdÿd*fdd$fddÿfd$dfdÿdfd*d&fd*dfd&d*fdd*fdd&fddfd&dfddfd*d(fd*dfd(d*fdd*fdd(fddfd(dfddfd*d*fd*dfdd*fddfd,dfdd,fddfddfd,dÖfd,dÕfdÖd,fdÕd,fddÖfddÕfdÖdfdÕdfd,d    fd,d×fd    d,fd×d,fdd    fdd×fd    dfd×dfd,d fd,dûfd d,fdûd,fdd fddûfd dfdûdfd,d"fd,dýfd"d,fdýd,fdd"fddýfd"dfdýdfd,d$fd,dÿfd$d,fdÿd,fdd$fddÿfd$dfdÿdfd,d&fd,dfd&d,fdd,fdd&fddfd&dfddfd,d(fd,dfd(d,fdd,fdd(fddfd(dfddfd,d*fd,dfd*d,fdd,fdd*fddfd*dfddfd,d,fd,dfdd,fddfd.dfdd.fddfddfd.dÖfd.dÕfdÖd.fdÕd.fddÖfddÕfdÖdfdÕdfd.d    fd.d×fd    d.fd×d.fdd    fdd×fd    dfd×dfd.d fd.dûfd d.fdûd.fdd fddûfd dfdûdfd.d"fd.dýfd"d.fdýd.fdd"fddýfd"dfdýdfd.d$fd.dÿfd$d.fdÿd.fdd$fddÿfd$dfdÿdfd.d&fd.dfd&d.fdd.fdd&fddfd&dfddfd.d(fd.dfd(d.fdd.fdd(fddfd(dfddfd.d*fd.dfd*d.fdd.fdd*fddfd*dfddfd.d,fd.dfd,d.fdd.fdd,fddfd,dfddfd.d.fd.dfdd.fddfddfddfddfddfddÖfddÕfdÖdfdÕdfddÖfddÕfdÖdfdÕdfdd    fdd×fd    dfd×dfdd    fdd×fd    dfd×dfdd fddûfd dfdûdfdd fddûfd dfdûdfdd"fddýfd"dfdýdfdd"fddýfd"dfdýdfdd$fddÿfd$dfdÿdfdd$fddÿfd$dfdÿdfdd&fddfd&dfddfdd&fddfd&dfddfdd(fddfd(dfddfdd(fddfd(dfddfdd*fddfd*dfddfdd*fddfd*dfddfdd,fddfd,dfddfdd,fddfd,dfddfdd.fddfd.dfddfdd.fddfd.dfddfddfddfddfddfgZ(d
Z)d Z*e de*ƒZ+\Z,Z-Z.Z/Z0Z1d    Z2e e2ƒ\Z3Z4Z5Z6dZ7d    Z8dZ9e ddփ\Z:Z;d Z<dÖZ=e d d,d ƒ\Z>Z?Z@ZAZBZCZDZEZFZGZHZIZJZKZLZMZNZOe d d
d ƒ\ZPZQZRe d d
d ƒ\ZSZTZUe dd$ƒ\
ZVZWZXZYZZZ[Z\Z]Z^Z_e d dÖd ƒ\Z`Zad    Zbd
Zcd Zdd Zed ZfdZgdZhdZidZjdZkdZldZmdZndZodZpdZqdZrdZsdZtdZudZvdZwdZxd Zyd!Zzd"Z{d#Z|d$Z}e d+ƒZ~\ZZ€ZZ‚ZƒZ„Z…Z†Z‡ZˆZ‰ZŠZ‹ZŒZZŽZd%Zd&Z‘d'Z’d(Z“d)Z”d*Z•d+Z–d,Z—d-Z˜d.Z™d/Zšd0Z›d1Zœd2Zd3Zžd4ZŸd5Z d6Z¡d7Z¢d8Z£d9Z¤d:Z¥d;Z¦d<Z§d=Z¨d>Z©d?Zªd@Z«dAZ¬dBZ­dCZ®dDZ¯dEZ°dFZ±dGZ²dHZ³dIZ´dJZµdKZ¶dLZ·dMZ¸dNZ¹dOZºdPZ»dQZ¼dRZ½dSZ¾dTZ¿dUZÀdVZÁdWZÂdXZÃdYZÄdZZÅd[ZÆd\ZÇd]ZÈd^ZÉd_ZÊd`ZËdaZÌdbZÍdcZÎddZÏdeZÐdfZÑdgZÒdhZÓdiZÔdjZÕdkZÖdlZ×dmZØdnZÙdoZÚdpZÛdqZÜdrZÝdsZÞdtZßduZàdvZádwZâdxZãdyZädzZåd{Zæd|Zçd}Zèd~ZédZêd€ZëdZìd‚ZídƒZîd„Zïd…Zðd†Zñd‡ZòdˆZód‰ZôdŠZõd‹ZödŒZ÷dZødŽZùdZúdZûd‘Züd’Zýd“Zþd”Zÿd•Zd–Zd—Zd˜Zd™ZdšZd›ZdœZdZdžZ    dŸZ
d Z d¡Z d¢Z d£Zd¤Zd¥Zd¦Zd§Zd¨Zd©ZdªZd«Zd¬Zd­Zd®Zd¯Zd°Zd±Zd²Zd³Zd´ZdµZ d¶Z!d·Z"d¸Z#d¹Z$dºZ%d»Z&d¼Z'd½Z(d¾Z)d¿Z*dÀZ+dÁZ,dÂZ-dÃZ.dÄZ/dÅZ0dÆZ1dÇZ2dÈZ3dÉZ4dÊZ5dËZ6dÌZ7dÍZ8dÎZ9dÏZ:dÐZ;dÑZ<dÒZ=dÓZ>dÔZ?dÕZ@dÖZAd×ZBdØZCdÙZDdÚZEdÛZFdÜZGdÝZHdÞZIdßZJdàZKdáZLdâZMdãZNdäZOdåZPdæZQdçZRdèZSdéZTdêZUdëZVdìZWdíZXdîZYdïZZe d2ƒ\Z[Z\Z]Z^Z_Z`ZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZydðZzdñZ{dòZ|dóZ}dôZ~dõZdöZ€d÷ZdøZ‚dùZƒdúZ„dûZ…düZ†dýZ‡dþZˆd"Z‰dÿZŠdZ‹dZŒdZdZŽdZdZdZ‘dZ’dZ“d    Z”d
Z•d/Z–d Z—d Z˜d Z™d.Zšd Z›dZœdZdZždZŸdZ dZ¡dZ¢dZ£dZ¤dZ¥dZ¦dZ§dZ¨dZ©dZªdZ«dZ¬dZ­d Z®d!Z¯d"Z°d#Z±d$Z²d%Z³d&Z´d'Zµd(Z¶dZ·d)Z¸d*Z¹d+Zºd,Z»d-Z¼d.Z½d/Z¾d0Z¿d1ZÀd2ZÁd3ZÂd4ZÃd5ZÄd6ZÅd7ZÆd8ZÇd9ZÈd:ZÉd;ZÊd<ZËd=ZÌd>ZÍd?ZÎd@ZÏdAZÐdBZÑdCZÒdDZÓdEZÔdFZÕdGZÖdHZ×dIZØdJZÙdKZÚdLZÛdMZÜdNZÝdOZÞdPZßdQZàdRZádSZâdTZãdUZädVZådWZædXZçdYZèdZZéd[Zêd\Zëd]Zìd^Zíd_Zîd`ZïdaZðdbZñdcZòddZódeZôdfZõdgZödhZ÷diZødjZùdkZúdlZûdmZüdnZýdoZþdpZÿdqZdrZdsZdtZduZdvZdwZdxZdyZdzZ    d{Z
d|Z d}Z d~Z dZd€ZdZd‚ZdƒZd„Zd…Zd†Zd‡ZdˆZd‰ZdŠZd‹ZdŒZdZdŽZdZdZd‘Z d’Z!d“Z"d”Z#d•Z$d–Z%d—Z&d˜Z'd™Z(dšZ)d›Z*dœZ+dZ,džZ-dŸZ.d Z/d¡Z0d¢Z1d£Z2d¤Z3d¥Z4d¦Z5d§Z6d¨Z7d©Z8dªZ9d«Z:d¬Z;d­Z<d®Z=d¯Z>d°Z?d±Z@d²ZAd³ZBd´ZCdµZDd¶ZEd·ZFd¸ZGd¹ZHdºZId»ZJd¼ZKd½ZLd¾ZMd¿ZNdÀZOdÁZPdÂZQdÃZRdÄZSdÅZTdÆZUdÇZVdÈZWdÉZXdÊZYdËZZdÌZ[dÍZ\dÎZ]dÏZ^dÐZ_dÑZ`dÒZadÓZbdÔZcdÕZddÖZed×ZfdØZgdÙZhdÚZidÛZjdÜZkdÝZldÞZmdßZndàZodáZpdâZqdãZrdäZsdåZtdæZudçZvdèZwdéZxdêZydëZzdìZ{díZ|dîZ}dïZ~dðZdñZ€dòZdóZ‚dôZƒdõZ„döZ…d÷Z†døZ‡dùZˆdúZ‰dûZŠdüZ‹dýZŒdþZdÿZŽdZdZdZ‘dZ’dZ“dZ”dZ•dZ–dZ—d    Z˜d
Z™d Zšd Z›d ZœdZdZždZŸdZ dZ¡dZ¢dZ£dZ¤dZ¥dZ¦dZ§dZ¨dZ©dZªdZ«dZ¬dZ­dZ®d Z¯d!Z°d"Z±d#Z²d$Z³d%Z´d&Zµd'Z¶d(Z·d)Z¸d*Z¹d+Zºd,Z»d-Z¼d.Z½d/Z¾d0Z¿d1ZÀd2ZÁd3ZÂd4ZÃd5ZÄd6ZÅd7ZÆd8ZÇd9ZÈd:ZÉd;ZÊd<ZËd=ZÌd>ZÍd?ZÎd@ZÏdAZÐdBZÑdCZÒdDZÓdEZÔdFZÕdGZÖdHZ×dIZØdJZÙdKZÚdLZÛdMZÜdNZÝdOZÞdPZßdQZàdRZádSZâdTZãdUZädVZådWZædXZçdYZèdZZéd[Zêd\Zëd]Zìd^Zíd_Zîd`ZïdaZðeïeðgZñdbZòdcZóddZôdeZõdfZödgZ÷dhZødiZùdjZúdkZûdlZüdmZýdnZþdoZÿdpZdqZdrZdsZdtZduZdvZdwZdxZdyZ    dzZ
d{Z d|Z d}Z d~ZdZd€ZdZd‚ZdƒZd„Zd…Zd†Zd‡ZdˆZd‰dŠd‹dŒddŽgZdZdZd‘Zd’Zd“Zd”Zd•Z d–Z!d—Z"d˜Z#d™Z$dšZ%d›Z&dœZ'dZ(džZ)dŸZ*d Z+d¡Z,d¢Z-d£Z.d¤Z/d¥Z0d¦Z1d§Z2d¨Z3d©Z4dªZ5d«Z6d¬Z7d­Z8d®Z9d¯Z:d°Z;d±Z<d²Z=d³Z>d´Z?dµZ@d¶ZAd·ZBd¸ZCd¹ZDdºZEd»ZFd¼ZGd½ZHd¾ZId¿ZJdÀZKdÁZLdÂZMdÃZNdÄZOdÅZPdÆZQdÇZRdÈZSdÉZTdÊZUdËZVdÌZWdÍZXdÎZYdÏZZdÐZ[dÑZ\dÒZ]dÓZ^dÔZ_dÕZ`dÖZad×ZbdØZcdÙZddÚZedÛZfdÜZgdÝZhdÞZidßZjdàZkdáZldâZme ddփ\ZnZoie¯eþgej6e°eÿgej    6ZpdãZqdäZrdåZsdæZtdçZudèZvdéZwdêZxdëZydìZzdíZ{dîZ|dïZ}dðZ~dñZdòZ€dóZdôZ‚dõZƒdöZ„d÷Z…døZ†dùZ‡dúZˆdûZ‰dyZŠdüZ‹dýZŒdþZdÿZŽdZdZdZ‘dZ’dZ“dZ”dZ•d¸Z–dZ—dZ˜d    Z™d
Zšd Z›d Zœd ZdZždZŸdZ dZ¡dZ¢dZ£dZ¤d¡Z¥d¢Z¦d£Z§d¤Z¨d¥Z©d¦Zªd§Z«d¨Z¬d©Z­dªZ®d«Z¯d¬Z°d­Z±d®Z²d¯Z³d°Z´dµZµd¶Z¶d·Z·d¹Z¸dºZ¹d»Zºd¼Z»dZ¼d…Z½dZ¾i­egee>geS6egee>geT6egee>geU6egee>geV6egeÁe>gej¿6egeÁe>gejÀ6e$geÁe>gejR6e&geÁe>gejÁ6e)geÁe>gejÂ6e*geÁe>gejÃ6e,geÁe>gejÄ6e%geÁe>gejÅ6e geÁe>gejÆ6e!geÁe>gejÇ6e e!geÁe>gejÈ6e!geÁe>gejQ6e"e#geÁe>gejÉ6e(geÁe>gejÊ6e?geÁe>gejË6e@geÁe>gejÌ6e5geÁe>gejÍ6e6geÁe>gejÎ6eOgeÁe>gejÏ6e.geÁe>gejÐ6e2geÁe>gejÑ6e1geÁe>gejÒ6e3geÁe>gejÓ6e`geÁe>gejÔ6e geÁe>geq6e!geÁe>ger6e"geÁe>ges6e#geÁe>get6e$geÁe>gew6e&geÁe>gex6egeÁe>ge{6egeÁe>ge|6e8geÁe>ge6e8geÁe>gejÕ6e9geÁe>ge€6e:geÁe>ge6e;geÁe>ge‚6e<geÁe>geƒ6e=geÁe>ge„6e=geÁe>gejÖ6e>geÁe>ge…6e?geÁe>ge†6e@geÁe>ge‡6eAgeÁe>geˆ6e e!geÁe>geŒ6e%geÁe>ge6e e!geÁe>geu6e"e#geÁe>gev6eXgeÁe>geŽ6eXgeÁe>gej×6e-geÁe>ge6e.geÁe>ge6e1geÁe>ge‘6e2geÁe>ge’6e4geÁe>ge­6e3geÁe>ge±6e5geÁe>ge“6e6geÁe>ge´6e7geÁe>ge°6e(geÁe>ge”6e`geÁe>ge•6eYgeÁe>ge—6eZgeÁe>ge˜6eOgeÁe>ge™6eFgeÁe>geš6eEgeÁe>gejØ6eFgeÁe>gejÙ6eBgeÁe>geŸ6eBgeÁe>gejÚ6eCgeÁe>ge 6eageÁe>ge¡6ePgeÁe>gejÛ6eRgeÁe>gejÜ6eSgeÁe>gejÝ6eageÁe>gejÞ6ebgeÁe>gejß6ecgeÁe>gejà6edgeÁe>gejá6eigeÁe>gejâ6ejgeÁe>gejã6eVgeÁe>gejä6eWgeÁe>gejå6efgeÁe>gejæ6efgeÁe>ge–6e[geÁe>ge¢6e[geÁe>gejç6e)geÁe>ge¤6e*geÁe>ge£6elgeÁe>ge¥6elgeÁe>gejè6emgeÁe>ge¦6engeÁe>ge§6eogeÁe>ge¨6epgeÁe>ge©6eqgeÁe>geª6ergeÁe>ge«6esgeÁe>ge¬6e0geÁe>ge®6e,geÁe>ge¯6e/geÁe>ge²6e+geÁe>ge³6e+geÁe>gejé6edgeÁe>ge‰6ecgeÁe>geŠ6eugeÁe>geµ6evgeÁe>ge¶6eggeÁe>gejê6ehgeÁe>gejë6eggeÁe>ge·6ehgeÁe>ge¸6ewgeÁe>ge¹6exgeÁe>geº6eygeÁe>ge»6e'geÁe>ge‹6e'geÁe>gejì6eGeHgeÁe>gejí6eGeHgeÁe>ge¼6eGgeÁe>gejî6eHgeÁe>gejï6eIgeÁe>gejð6eIgeÁe>ge¾6e•geÁe>gejñ6e•geÁe>ge½6eJgeÁe>gejò6eKgeÁe>gejó6eLgeÁe>gejô6eMgeÁe>gejõ6eNgeÁe>gejö6eŠgeÁe>gej÷6e‹geÁe>gejø6egeÁe?gejù6e$geÁe?gejú6e%geÁe?gejû6e&geÁe?gejü6e"e#geÁe?gejý6e e!geÁe?gejþ6e*geÁe?gejÿ6e'geÁe?gej    6e8geÁe?gej    6e=geÁe?gej    6e"e#geÁe?gey6e e!geÁe?gez6e e!geÁe?ge›6e&geÁe?geœ6egeÁe?ge}6egeÁe?ge~6e$geÁe?ge6e%geÁe?gež6ezgeÁe?gej    6e{geÁe?gej    6e|geÁe?gej    6e}geÁe?gej    6e~geÁe?gej    6egeÁe?gej    6ee‚eƒe„geÁe?gej        6egeÁe?gej
    6e‚geÁe?gej     6eƒgeÁe?gej     6e„geÁe?gej     6e…geÁe?gej    6e†geÁe?gej    6e‡geÁe?gej    6eˆgeÁe?gej    6e“geÁe?gej    6e”geÁe?gej    6e’geÁe?gej    6e–geÁe?gej    6e—geÁe?gej    6e˜geÁe?gej    6Z    ie e!gez6ege{6e$ge|6e%ge}6e&ge~6e e!ee$ge6e e!ee$ge€6e e!ge6e e!ge‚6egeƒ6e$ge„6ege…6e e!ge†6ege‡6e e!geˆ6e e!ee$ge“6e e!ee$ge”6e e!ge’6ege–6e e!ege—6e e!ge˜6Z    e d    ƒZ    \Z    Z    Z    Z    ie    ee>f6e    ee?f6e    eÁe>f6e    eÁe?f6Z    e d&ƒZ     \*Z!    Z"    Z#    Z$    Z%    Z&    Z'    Z(    Z)    Z*    Z+    Z,    Z-    Z.    Z/    Z0    Z1    Z2    Z3    Z4    Z5    Z6    Z7    Z8    Z9    Z:    Z;    Z<    Z=    Z>    Z?    Z@    ZA    ZB    ZC    ZD    ZE    ZF    ZG    ZH    ZI    ZJ    e3    e:    e<    eI    e8    e7    e=    e>    eA    eB    eC    g ZK    e?    e@    eE    gZL    ie!    gejM    6e5    gejN    6e&    e'    gejO    6e(    gejP    6e)    gejQ    6e*    gejR    6e+    gejS    6e,    eB    gejT    6e=    gejU    6e-    gejV    6e>    gejW    6e.    gejX    6e/    gejY    6e0    gejZ    6e1    gej[    6e2    gej\    6e3    gej]    6e:    gej^    6e<    e8    e7    gej_    6eI    gej`    6eA    geja    6eC    gejb    6eH    gejc    6eJ    gejd    6eD    eG    geje    6e6    e9    e;    gejf    6Zg    e d dƒ\BZh    Zi    Zj    Zk    Zl    Zm    Zn    Zo    Zp    Zq    Zr    Zs    Zt    Zu    Zv    Zw    Zx    Zy    Zz    Z{    Z|    Z}    Z~    Z    Z€    Z    Z‚    Zƒ    Z„    Z…    Z†    Z‡    Zˆ    Z‰    ZŠ    Z‹    ZŒ    Z    ZŽ    Z    Z    Z‘    Z’    Z“    Z”    Z•    Z–    Z—    Z˜    Z™    Zš    Z›    Zœ    Z    Zž    ZŸ    Z     Z¡    Z¢    Z£    Z¤    Z¥    Z¦    Z§    Z¨    Z©    dFZª    gZ«    gZ¬    gZ­    dgZ®    e d    ƒ\Z¯    Z°    Z±    Z²    dZ³    d Z´    dÖZµ    d
Z¶    d    Z·    dZ¸    e de¸    ƒ\Z¹    Zº    Z»    Z¼    Z½    ieº    ej¾    6e»    ej¿    6e¼    ejÀ    6e½    ejÁ    6eº    ej    6e»    ejà   6e¼    ejÄ    6e½    ejÅ    6ZÆ    e d#ƒ\    ZÇ    ZÈ    ZÉ    ZÊ    ZË    ZÌ    ZÍ    ZΠ   ZÏ    e d¦d¦dƒZР   \9ZÑ    ZÒ    ZÓ    ZÔ    ZÕ    ZÖ    Z×    ZØ    ZÙ    ZÚ    ZÛ    ZÜ    ZÝ    ZÞ    Zß    Zà    Zá    Zâ    Zã    Zä    Zå    Zæ    Zç    Zè    Zé    Zê    Zë    Zì    Zí    Zî    Zï    Zð    Zñ    Zò    Zó    Zô    Zõ    Zö    Z÷    Zø    Zù    Zú    Zû    Zü    Zý    Zþ    Zÿ    Z
Z
Z
Z
Z
Z
Z
Z
Z
Z    
dZ
 
eÜ    eÝ    eð    eí    eÑ    ddgZ
eÜ    eÝ    eÑ    ddgZ
eÜ    eÝ    eÑ    ddgZ
eÔ    eÕ    eÖ    gZ
eÜ    eí    gZ
i9deÑ    6deÒ    6deÚ    6d e×    6d!eØ    6d"eë    6d#e
6d$eÙ    6d%eî    6d&eÓ    6d'eÔ    6d(eÕ    6d)eÖ    6d*eý    6d+eþ    6d,eû    6d-eÿ    6d.eô    6d/eÛ    6d0eÜ    6d1eÝ    6d2eÞ    6d3e
6d4eà    6d5eá    6d6eâ    6d7eã    6d8eä    6d9eå    6d:eæ    6d;eç    6d<eè    6de
6d=e
6d>eß    6d?eé    6d@eê    6dAeü    6dBeï    6dCe
6dDe
6dEe
6dFe
6dGe
6dHe    
6dIeì    6dJeí    6dKeð    6dLeñ    6dMeò    6dNeó    6dOeõ    6dPeö    6dQe÷    6dReø    6dSeù    6dqeú    6Z
e dÍdÍd1ƒ\Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z
Z!
Z"
Z#
Z$
Z%
Z&
Z'
Z(
Z)
Z*
Z+
dZ,
ide
6d/e
6dTe
6dUe
6dVe
6dWe
6dXe
6d!e
6d4e
6dYe
6dZe
6d e
6d[e
6d\e
6d]e
6d^e 
6d_e!
6de"
6d`e#
6dae$
6d3e%
6dbe&
6dFe'
6dce(
6dKe)
6dOe*
6dde+
6Z-
e dÍdÍd.ƒZ.
\Z/
Z0
Z1
Z2
Z3
Z4
Z5
Z6
Z7
Z8
Z9
Z:
Z;
Z<
Z=
Z>
Z?
Z@
ZA
ZB
ide/
6dee0
6dfe1
6dge2
6dYe3
6dhe4
6d^e5
6die6
6dje7
6d"e8
6dke9
6dle:
6dme;
6dne<
6dTe=
6doe>
6dpe?
6dqe@
6dreA
6dseB
6ZC
e d¦d¦d8ƒZD
\%ZE
ZF
ZG
ZH
ZI
ZJ
ZK
ZL
ZM
ZN
ZO
ZP
ZQ
ZR
ZS
ZT
ZU
ZV
ZW
ZX
ZY
ZZ
Z[
Z\
Z]
Z^
Z_
Z`
Za
Zb
Zc
Zd
Ze
Zf
Zg
Zh
Zi
i%deE
6d`eF
6dQeG
6dteH
6dueI
6dveJ
6dweK
6dxeL
6dyeM
6dreN
6dzeO
6d{eP
6d|eQ
6d}eR
6d~eS
6deT
6d€eU
6deV
6d‚eW
6dƒeX
6dpeY
6d"eZ
6d„e[
6d…e\
6dge]
6d†e^
6d‡e_
6dae`
6dˆea
6d‰eb
6dlec
6dŠed
6d‹ee
6dLef
6dŒeg
6dreh
6dei
6Zj
e d    ƒZk
\Zl
Zm
Zn
Zo
e d
ƒZp
\Zq
Zr
Zs
e d
dƒZt
\Zu
Zv
Zw
Zx
Zy
Zz
Z{
Z|
Z}
Z~
Z
idŽeu
6de
6de‚
6d‘eƒ
6d’eŒ
6d“e
6ZŽ
ieŒ
ej
6e
ej
6Z‘
gZ’
d”Z“
e d
ƒ\Z”
e d d7ƒZ—
\#Z˜
e d/ƒ\Z»
ZfZgZ¿
e d'ƒ\ ZÐ
eEeFeGgZÝ
e dd    ƒ\ZÞ
e dփ\Zâ
iej]    eÑ
6ej^    eÒ
6ej]    eÓ
6ejM    eÔ
6ejV    eÕ
6ejT    eÖ
6ejX    e×
6Zä
e d dd ƒZå
\Zæ
gZë
gZì
dsZí
e d d%d ƒZî
\ Zï
e d&ƒ\ Zú
Zÿ
Z Z Z Z Z Z dZ e d
ƒ\Z Z Z     e d/ƒ\Z
Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z  e d d'd ƒZ! \ Z" Z# Z$ Z% Z& Z' Z( Z) Z* Z+ Z, Z- Z. e d d'd ƒZ/ \ Z0 Z1 Z2 Z3 Z4 Z5 Z6 Z7 Z8 Z9 Z: Z; Z< e d d.d ƒZ= \Z> Z? Z@ ZA ZB ZC ZD ZE ZF ZG ZH ZI ZJ ZK ZL ZM ZN ZO ZP ZQ e d d
ƒ\ZR ZS d•ZT d–ZU e d
ƒ\ZV ZW ZX e d%ƒ\ ZY ZZ Z[ Z\ Z] Z^ Z_ Z` Za Zb Zc i d—eY 6d˜eZ 6d™e[ 6dše\ 6d›e] 6d2e^ 6dœe_ 6de` 6džea 6dŸeb 6drec 6Zd dS( sVersion = 2015-08-14 11:00iÿÿÿÿNs\tScriptcCsdS(N((((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pyt
InitPythonscCstS(N(t MapServerPath(((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pyt
GetAppPath&scCstjdƒddS(NtZoneServerGroupisdb\PyMongoDataServer\(Rtsplit(((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pyt    GetDBPath-scCstjdƒdS(NRi(RR(((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pytGetServerRootPath0siii…iiˆii¤iKi˜iÙiiiiiiiiÒi¼i½i¾i]iiiii    i
i i i iiiiiiiiiiii i!i"i#i$i%i&i'i(i+i-i.i/i2i5i;i=i>i?iFiQiRi[i\i]i^ieifigihiiijikiliminioipiqirisitiuiviwixiyizi{ii€ii‚iƒi„i†i‡iˆi‰idBtRunePackageNumtGatherSoulPackCountcCsM|tjtjgkr|Sx*tjƒD]\}}||kr)|Sq)W|S(N(t ShareDefinet rptTreasuret rptTempItemtDef_PackItemTypeList_Dicttitems(titemTypet defaultPacktpackt itemTypeList((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pytGetItemPackType‡s  iÉiÊiËiÌiÍiÐiÑiÒiÕiÖi×iÜiáiãiäiåiæi{iŒ
içiéiêiëiìiíiîiïiðiñiòi€i…i†i iiÏiêi=i>i8i9i* i i iAi›iœii‘i¡iÑiÐili i i i iÎia    i@i÷i!i"i$iñiòióiôiõiöi%i&i(i°i¶i"i'i™i4i5i6i7iŠi'i'i 'i 'i 'i
'i    'ièiÝi'iº iEi>i?i¬iüit LinePlusByLViôiõtLinePlust
LineReducet
NoLinePlust NoLineReducei6Ni4Ni$Ni5Ni>NiGNi¾ið,iñ,i„NiCNixiì,iðUiZîiSNiò,iãRi\biHNi¸iü·iRiUVisVi¹ViºVi»ViÅVi+Ni*Ni,Ni(Ni1Ni)NiZi0uiÿɚ;i”5wi ¡i<iidi¸ i˜:gø?tFairyGrabBossNewPlayert CannotAtk01t
AtkModeErrtPlayerPK_Error_GoalLvLowtCadres_PK_LosttPK_lhs_0tOld_andyshao_161795t PK_lhs_861048t PK_lhs_202580t PK_lhs_272921t NotAttackabletAttackSameFactionLimittAttackSameServerLimittNocturnalProtectioni Niø*iÔ0g@@tCampTypei ˜{iaêiÅêiÀÔi€Ë¤ihspow(max(60,dayCount),-0.5)*400i*i)gš™™™™™ñ?gffffffò?g333333ó?gô?gÍÌÌÌÌÌô?i,i8ici•i`êcCs|jƒtttgkS(N(t    GetIsBosstDef_NPCType_Ogre_NormaltDef_NPCType_Ogre_SupertDef_NPCType_Ogre_Danger(tcurNPC((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pyt
IsGameBossMstGMOperForbidAcciÅÆ-iÆÆ-i2Ni0iàsmax(rate,(maxItem-curItemCount)/(maxMonsterCount+1-curMonsterCount),(baseDropCount-curItemCount)/max(1,(dropMonsterCount+1-curMonsterCount)))tbaseExps<(2 - curHP/float(maxHP) - curMP/float(maxMP))*3*pow(lv, 1.2)gš™™™™™É?gš™™™™™é?iÈi/iÂyiêyiôyihyišyi@yi– i,yi®yi¤yi†yiÖyiziþyijêiÌyiBÇi¸yizi*Ëi4Ëi”zi"yivRilzi
}i}tCrossPenglaiZonet    FamilyWart FamilyInvadet
FamilyBosst
TrialTowert
ClearDevilt MagicWeapontIceLodetDuJiet    KirinHometBZZDtBossHometGodAreat PersonalBosst FamilyPartyt MunekadoTrialt
ChaosDemont QueenRelicstElderBattlefieldtGuardt    SealDemontXMZZt CrossRealmPKt
GatherSoult ZhuXianBosst    FB_IsPasstFB_Gradet
FB_VersiontFB_VersionTeamIDtFB_VersionPlayerIDtNotifyFBHelpTicktNPCStrengthenAverageLVtNPCStrengthenMaxLVtNPCStrengthenMinLVtNPCStrengthenPlayerCnttTeamPlayerCounttDropDoCountRatetDropDoCountAddtSingleFBPlayerIDsHelpBattleFBObjID_%ssHelpBattleGoldCall_%stFBPlayerDict_EncourageLVtFBPlayerDict_IsDelTickettFBPlayerDict_IsHelpFighttFBPD_HelpBattleRefreshCounttFBPD_HelpBattleFBFightPowertFBPD_HelpBattleFBBaseHurtsNPCShowEndTick_%ssRMark_State_%ssRMark_LineOneOnly_%ssRMark_RefreshTick_%ssRMark_MaxCnt_%ssRMark_TotalMaxCnt_%ssRMark_RefreshCnt_%ssRMark_NPCListLen_%ssRMark_NPCID_%s_%ssRMark_NPCIDCnt_%s_%ssRMark_AngryCount_%ssRMark_IsRepeat_%ssRMark_ForceRefreshPoint_%stRMark_TotalForcePointCntsRMark_HasRecordPoint_%st RMark_PassCntsRMark_HasRefreshPoint_%stDef_RMark_TimePassCnttDef_RMark_RefreshSteptRandomRefreshNPCTicksRandomRefreshNPCNumTime_%st Map_FB_NTOpentMap_FB_NTStarttMap_FBDict_NotifyEndtMap_FBDict_PrevFBTimeTypetMap_FBDict_PropertyMarktLastAreaRewardTicksAreaAward_Exp%ssAreaAward_ExpPoint%ssAreaAward_SP%ssAreaAward_TechPoint%ssAreaAward_GetCnt%ssActivityBossRebornCount_%ssWorldBossLastReBornTick_%ssWorldBossDeadTick_%ssRandMapNPCID_%ssRandMapNPCPerMaxCnt_%ssRandMapNPCNeedCnt_%ssTD_RefreshStartTick_%ssTD_RefreshFileNum_%ssTD_RefreshSignKey_%ssTD_RefreshBWheelNum_%ssTD_RefreshSWheelNum_%ssTD_CurWheelStartTick_%ssTD_CurWheelIsOver_%ssTD_AllWheelIsOver_%ss TD_NPCCnt_%ssTD_NPCBossCnt_%stMapDropRateAddsMFBMapPlayerCnt_%ssMFBPlayerID_%s_%ssMFBPlayerMapID_%s_%stSummonBoostCountsSummonBoostSkillTypeID%ssSummonBoostType%ssSummonBoostEffectID%ssSummonBoostParentID%ssSummonBoostValue%st DeadSkillIDt
KillerTypetKillerIDiŸ†tpytpyciÀ'    i ¿ii t TruckSpeedUptOper_ClientActStatetOper_ServerActStatetOper_ClientSkillActStatetOper_ServerSkillActStatetuse_item_303_indexiúiþÿÿÿiýÿÿÿiüÿÿÿiûÿÿÿs%Y-%m-%d %H:%M:%Ss%Y-%m-%dimtGY_GM_PlayerDetailByIDtGY_GM_MoveToPlayerByIDtGY_GM_PullPlayerByIDtGY_GM_ViewBroadcasttGY_GM_ForbidFighttGY_GM_KickPlayertGY_GM_CloseAccIDtGY_GM_SetNoSighttGY_GM_CancelNoSighttGY_GM_ForbidTalktGY_GM_ChangeGMLVtGY_GM_SetExpRatetGY_GM_StartGametGY_GM_ViewGametGY_GM_FindPlayerByIDtGY_GM_FindPlayerByNametGY_GM_GivePlayerExptGY_GM_BroadcasttGY_GM_ViewWordExpRatetGY_GM_MapGiveExptGY_GM_Offline_FindPlayertGY_GM_Offline_ViewItemtGY_GM_Offline_ViewAttributetGY_GM_Offline_ViewSkilltGY_GM_Offline_ViewTitletGY_GM_Offline_ViewMoneytGY_GM_Offline_ViewGMOpertGY_GM_CloseBroadcasttGY_GM_Offline_UnBindtGY_GM_Offline_ViewUnBindi7iúÿÿÿiùÿÿÿiøÿÿÿi÷ÿÿÿiöÿÿÿiõÿÿÿcCssdg}d}x]t|ƒ|krn|d7}||dfd||f| |dfd| |fg}||7}d}t}xè|sj|d7}xÑ|D]É\}}|dkrÓ||}    |}
|     |
} } n|}    ||}
|    |
} } |    |
f} | | f}| |kr+||kr+t}Pqš| |krG|j| ƒn||krš|j|ƒqšqšWqƒWqW|S(s»ñÈ¡µôÂäÎïÆ··¶Î§²Î¿¼×ø±êµãÁбí
    @param needPos: ËùÐèµãÊý, Êµ¼ÊÖ§³Ö¿ÉµôÂäµÄ×î´óÎïÆ·ÊýÒ»°ã±ÈÁÐ±í³¤¶ÈС£¬¿´µØÐÎÕϰ­µãµÄ¶àÉÙ
    @param spaceDist: µã¼ä¾à
    ii(ii(tlentFalsetTruetappend(tneedPost    spaceDisttposListtroundNumtroundBasePosListtcalcNumtisEndtbasePosXtbasePosYtposAXtposAYtposBXtposBYtposAtposB((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pytGetDropItemAreaPosList s:    
"
    
 
 
    iôÿÿÿiòÿÿÿiðÿÿÿiîÿÿÿiìÿÿÿiêÿÿÿtplayerCheckCount0704tCycloneTagPosXtCycloneTagPosYtMovePointIndextQuitBattelTicktHPPerLogicMarktCollectPlayerIDtFromRefreshMarktFromRefreshValuetSummonMapNPCPlayerIDsNPCSkillUseCnt_%stUndeath_LayerLostHPtUndeath_BuffLayertLastDropOwnerTypetLastDropOwnerIDsBossMaxHurtID_%s_%stLastRefreshHurtTickt InHurtProtecttRebornPreNotifyIndextSkillWarnSkillIDt SkillWarnTimetSkillWarnPosCntsSkillWarnPosX_%ssSkillWarnPosY_%st AtkMovePosXt AtkMovePosYtSpeedPert AtkDelayTickt AtkStartTickt InheritOwnertzhanshatZXRatet    ZXHurtPert LockHPSkillIDtGWBPDt curHurtValuet DefenderObjIDt
SomersaultsCopyFuncAttr%stPlayerAttrByBufft ChangeMapIDtResetFBLinePosXtResetFBLinePosYt    FollowAtkt MoreHurtValuetBSHurttAbsorbShieldValuetAbsorbShieldMaxt AbsorbShieldt StartEquipCntt
TJGFullEatt TJGStartTimet    EquipTimet PowerPartTimetPowerPartCountt
CMaxHValuetPlayer_RefreshAttrtSendInviteCode_0tLoadMapIsLogintNotifyAllAttrStatetPlayerKey_LoginTicktCalcOLTimeTicktPlayerKey_SitForZhenQitPlayerKey_MusetPlayerKey_EfficientSitt PlayerKey_ProficiencySkillTypeIDtPlayerKey_ExpFullNotifytPickupItemPutInTemptCollectLostHPTickt
TransMapIdt    TransPosXt    TransPosYt    TransTypetTransAutoBuyItemt
TransMoneytTransMoneyTypet    TransTicktSyncVIPKillNPCLVInfotArrestQueryStatet
Frist_LocktTaskExpRewardMultiplet
BuyItemCnttSpeedValueNotBufft
SpeedValuet
SpeedHorset AtkSpeedSetsNormalAtkInterval_%ssNormalAtkTick_%stQueryOpenServerAwardStatetQueryMixServerAwardStatetQueryFamilyStoreTicktQueryMarkIdCardIndextQueryNewGuyCardTypet TradeTagNPCtLastSkillComboTickt SkillComboCnttComboSkillTypeIDtComboAddHurtPertComboBuffProcessStatetLvAwardQueryStatetStoreQueryStatet TotalExpRatet TeamExpRatet TeamMemCounttPlayerCurStatet    FaintRatet FaintDefRatetAttrAtkerFreezed_50tAttrAddAngry_51t    ComboRatet ComboDamPertSkillAtkRateReducet DropEquipPert    DamagePert DamagePerPVEt DamagePerPVPtDamagePerPVPReducet AttrHurtPert DamChanceDeft    MaxProDeft ProDefHPPert ProDefAbsorbt AttrPetMinAtkt AttrPetMaxAtkt AttrPetDamPertPetSkillAtkRatetPerLVAtkt
PerLVMaxHPtAttrShieldMPCostRatetAttrXPRestorePertLoadMapTickVIPtMTFreeOnlineRTicksMFPFightPower_%ss MFPSkill_%ssMFPEx_%stAtkWithoutBufftDefWithoutBufft HPWithoutBuffsKillPlayerCnt_%st IsInFBOnDaytFBCommendFightPowert RecordXPValuetCollectNPCObjIDtAreaRewardMultipletAttrActivatyNotifytAttrActivatyRecordStarLVtAttrActivatyRecordStoneLVtAttrActivatyRecordQualityECnttAttrActivatyRecordSuiteCnttAttrActivatyRecordQualityCnttPlayerLastHurtt AddBackHPPertReduceBackHPPert NPCHurtAddPertJobAHurtAddPertJobBHurtAddPertJobCHurtAddPertNPCAtkReducePertJobAAtkReducePertJobBAtkReducePertJobCAtkReducePertLuckyHitReducePertGreatHitReducePertSuperHitReducePertIgnoreDefReducePertLuckyHitRateReducetGreatHitRateReducetSuperHitRateReducetIgnoreDefRateReducet LastHurtValuetLastHurtNPCObjIDtReduceSkillCDPertCommMapExpRatet FinalHurtPert FuhaoHitRatet    FinalHurtt BleedDamagetFinalHurtReducet
BossIDHurttBossIDHurtAddPertDropEquipDoCountt
BaseAtkMint
BaseAtkMaxt    BaseMaxHPtBaseDeftBaseHittBaseMisst BaseAtkAddPertBaseMaxHPAddPert BaseDefAddPert BaseHitAddPertBaseMissAddPertHorcruxBasePertEquipBaseAddPertWeaponAtkAddPertRelicsAtkAddPertArmorMaxHPAddPertArmorDefAddPertGodWeaponMaxHPPertGodWeaponAtkPert StoneMaxHPPert StoneAtkPert HPCureEnhancetHadInitFruitAttrt LastReinTickt OnlyFinalHurtt PVPAtkBackHPt HitSucessRatetMissSucessRatetCurePert    BeHurtPert HorseAtkPert StoneBasePert RealmBasePert    WingHPPert SuiteBasePertPlusBaseAtkPersFruitAttr_%s_%ssFruitFightPowerEx_%st FamilyLVLeavesCalcAType_%s_%s_%ssCalcAValue_%s_%s_%stQueryTechLVUPStatet PKStateTickt BossStateTicktMapAreaExpTicktEquipTotalBaseMinAtktEquipTotalBaseMaxAtktEquipTotalBaseDeftEquipTotalBaseHPtTodayXianyuanCoinOnLogintLoginAddTodayXianyuanCoinTimetGetuiSett NoGetuiTimetTJGNPCtOnHourtOnDaytOnWeektOnMonthtOnYeartOnDayExtOnWeekExt    OnMonthExt PlayerFromPIDt account_typet    tencentPFt
FirstLogins GuideState_%ss VersionFix_%stPrestigeAwardMark_7tAutoCheckHackWait_10tAutoCheckHackSource_11tAutoCheckHackType_12tAutoCheckHackState_13tCaptchaWaitTick_14tCaptchaWaitSign_15tCaptchaErrCount_16tCaptchaAnswer_17tAutoCheckHackErrCnt_19sStoryMissionState_%stTaskLastKillNPCIDtTaskLastVisitNPCIDsLittleHelperValue%s_%st    FromMapIDtFromPosXtFromPosYt
FromLineIDtCrossRegisterMaptIsCrossPKMatchingsFamilyTechLV_%stRouteServerInitOK_33tGameWallowLV_34tGameWallowOfflineTime_35tGameWallowOnlineTime_36tCabinetCount_Pet_39tCabinetCount_WeaponCoat_40tCabinetCount_DressCoat_41tCabinetCount_Horse_42tOffDaysAward_45tCheckInviteCode_46sJM%s_OpenXw_54tPackCount_Item_72tPackCount_Warehouse_73tPlayerMapSignCnt_75tPlayerBuyZhenQiCnt_76tPlayChangeLineIDtFuncChangeLineIDtHighChangeLineIDt    FBFEntRect ReqFBFuncLinetTeamFBAverageLVt TeamFBMaxLVtTeamFBPlayerCnttReqFBMissionIDtReqFBMissionTypes FBStar_%s_%ssEnterFbCntDay_%ssBuyFbCntDay_%ssRecoverFbCnt_%ssItemAddFbCnt_%ssEnterFbCntWeek_%ssFbCntRegainStartTime_%ssFbCntRegainTotalTime_%ssFBHistoryMaxLine_%ssIceLoadLineID_%stRefurbishGoodBookPlayerLv_97sGameFuncFirstTouch_%ssGameFuncAwardState_%ssMissionFinish_%stArrestAwardState_103tOtherDayLogin_105tLoginValid_106tRequestAddFamilyCnt_107sAddFamilyID%s_108tFamilyIDChangeTimet LastFamilyIDt SingDay_115tGiveSignAward_116tActivityValueDay_117tGiveActivityAward_118tCrazyBillingVIPCoin_119t LoginType_122t
TruckRTCnttFreeRefurbishTruckCntt TruckLV_137tDestroyTruckCnt_138t AutoTruck_139sCommonNGCard_%ss IDNGCard_%ssNGCardState_%ssMediaCardState_%ss NGCardNum_%stPawnTruckLV_144tKillPlayerAddPrestige_147tRandCoinAward_148tPlayerDeadTime_149tPlayerDeadCnt_150tSignDayCnt_151tForbidFamilyAction_168tForbidFamilyAwardtHasApplyVIPClub_185tHasVIPClubNote_186tPyPlayerAction_187t FamilyLV_189tUpdatePlayerNameCnt_196tUpdatePlayerNameItemIndex_198tUpdatePlayerName_199tUpdateFamilyNameItemIndextUpdateFamilyNametFamilyDayAwardtDelPackIndex215s HasPrayCnt_%ssHistoryPrayCnt_%st FreePrayTimesFreeBuyCnt219_%ssRefineGiftCnt_%ssRefineStartTime_%ssTreasureState_%ssTreasureFreeCnt_%ssTreasureTTFreeCnt_%ssTreasureFreeCntTime_%ssTreasureFreeTime_%s_%ssTreasureCount_%s_%ssTreasureLuck_%ssLastAutoOpenPackTick219_%stVipExperienceStartTimetVipExptVipAwardRecordt VipBuyRecordt VIPLastTimetVipTimeOutRecordt    VIPKillLVt VIPKillLVExptVIPKillLVExpPointsOnlinePrizeNote%st
OnlineTimetOnlineStartTimetLVAwardGetRecordtLVAwardVIPGetRecordtCTGCountResetTimesTodayCTGCount_%ssCTGGoodsBuyCount_%stGoldGiftGetRecordtGoldGiftMailRecordtGoldGiftFirstRecordtFirstGoldRemainTimetFirstGoldTipStartTimet FirstGoldTrytDailyGoldChargeStatetDailyChargeStatetSuperGiftStartTimetSuperGiftHasOpentDailyGoldChargePrizeRecordtDailyGoldChargeCnttSingleGoldGiftIndextUnlimitedGoldGiftCnttDef_PDict_IsReBorntFamilyWarDailyRewardtFamilyContributiontHasChangeContributiontFreeGiveFlowerCnttGiveFlowerCntByDaytPackCount_FineSoultKillPlayerAddActiveByDaytFreshmanGuideDaytFreshmanGuideSpeakerCntDayt PLoginDayCnttPLoginDayAwardsCollNpcIDCollTime_%ssShopItemDayBuyCnt_%ssShopItemStartTime_%ssShopItemBuyCnt_%s_%ssShopItemOpenState_%s_%ssTimeShopRefreshCnt_%ssTimeShopLastGlobalRTime_%stHighLadderFightCnttHighLadderAddCnttHighLadderCurrencytHighLadderDayRewardGottHighLadderCDTimetHighLadderCDBeginTimetHighLadderIsRelCDtHighLadderWinningStreaktHighLadderMaxOrdertPMixLoginDayStatesFestivalLoginState_%ssPlayerCurrency_%stTJGSett TJGDeadTimetTJGDeadPayTimet
TJGDeadExpt TJGDeadExp1tLoginClientTypetReUpdBillboardSigntMSFirstLogin_UpdBillboardt MixLoginDays
ExcI_%s_%ssAttrFruitEatCnt_%ssAttrFruitAddValue_%stNobleLVsNobleEndTime_%stNobleExperStatesRecoverFBCommonCnt_%ssRecoverFBExtraCnt_%ssRecoverFBBuyCnt_%ssRecoverFBItemAddCnt_%ssRecoverFBNoBuyCnt_%ssRecoverGainData_%ssRecoverGainDataEx_%ssHaveRecover_%stRecoverGainLastTimesActionItemDropTime_%ssNPCKillDrop_%ssNPCKillCount_%stRedPacketInviteGettRedPacketGetStatetRedPacketGrabCntsItemUseCntToday_%st SignIsMultitDayLoginSignNumt TotalSignNumtDayLoginSignStatet SignStartTimesGodWeaponLV_%ssGodWeaponExp_%stGodWeaponStatesClothesSkinLV_%stClothesChestLVtClothesChestEXPt
CostVIPExptCostVIPLVRewardtCostVIPBuyItemtSpecialCostVIPLVExpMarktCostVIPGrowUpRewardsSplitExpLVCnt_%stIsAddReviveTiredsComposeMustSuccess_%ssFirstSuccMakeJobItem_%stDownloadAwardStatesChestsOpenCount_%ssRunTaskAwardState_%ssRunTaskAwardRecord_%ssRunTaskNextMissionID_%ssEPStarLV_%s_%stEquipActiveStarLVs EPProf_%s_%stEquipActiveStarss StoneID_%s_%ssEquipWashLV_%ssEquipWashV_%s_%ssEquipWashVT_%s_%st    BZZD_TExptBZZD_TExpPointtBZZD_FirstEnterExpTimesPCDFBS_%s_Times PCDFBS_%s_MIDs PCDFBS_%s_LIDs PCDFBS_%s_Cnts PCDFBS_%s_DExt FightPetIndextEquipDecomposeLVtEquipDecomposeExptEquipDecomposeSetingtEquipDecomposeCnttTrialTower_PassLVtTower_LastDayPassLVt GodArea_AngertGodArea_LastAddAngerTimetElderBattlefieldStagetFamilyPartyAnswerCntsVPackItem_%s_%stRechargeOnce_CointArrestTaskStarsArrestTaskData_%stArrestTaskAwardRecordtArrestTaskFinishCntt    FMTDoublet FMTOldDoubletFreeGoodsOpenTimesFreeGoodsBuyState_%st CostRebateIDtCostRebateTemplateIDtCostRebateGoldtCostRebateAwardRecordtTotalRechargeIDtTotalRechargeTemplateIDtTotalRechargeGoldtTotalRechargeAwardRecordt SpringSaleIDtSpringSaleMailStatetFlashGiftbagIDsFlashGiftbagBuyCount_%stFlashGiftbagMailStatet BossRebornIDtBossRebornTemplateIDsBRActionCurTimes_%ssBRActionGotTimes_%ssBRActionWorldLV_%stFairyCeremonyIDtFCActionWorldLVtFCRechargeStatesFCPartyCurCnt_%stFCPartyCurPointtFCPartyAwardRecordt
FCCostGoldtBindJadeWheelCurCnttBindJadeWheelHistoryCntt FlashSaleIDtFlashSaleStatetFlashSaleMailStatesFlashSaleYY_%st WishingWellIDtWishingWellFreeTimetWishingWellAwardTimetWishingWellRefreshCntsWishingWellItem_%s_%ssWishingWellItemCnt_%s_%ssChatBubbleBoxState_%stIceLodeStarAwardRecordtIceLodeHasSweeptIceLodeLastCheckTimet IceLodeDayLVtIceLodeIsInFBOnDaytHelpBattleCheckInCounttHelpBattleTotalCountsFBRealHelpCount_%st WeekPartyIDsWeekPartyCurTimes_%s_%ssWeekPartyGotTimes_%s_%ssWeekPartyAwardRecord_%ssWeekPartyPoint_%st LoginAwardIDsLoginAwardCurTimes_%s_%ssLoginAwardGotTimes_%s_%stZhuXianBossHelpCnttOnlinePrizeCnttOnlinePrizeTimetDayOnlinePrizeCnttDayOnlinePrizeTimetOSCBillAwardRecordsOSCTagAwardRecord_%ssOSCRecordData_%st EndMailStatesMSCAwardRecord_%ssMSCRecordData_%st MSCMailStates Horser_LV_%ds Horser_Exp_%dtHorser_MultipletRune_HoleOpenStates Rune_Data_%ssGatherSoulHoleData_%ssFamilyBossFBAwardState_%ssLastEnterFBPropertyID_%ssLastEnterFBTick_%stManorWarJoinDaytManorWarContinueTicktManorWarJoinAwardStatetManorWarDailyAwardRecordtFightPower_HighesttFightPower_TotaltFightPower_Horses%s_IDsTH_ClassUPAwardRecord_%ssTH_RechargeGotCnt_%ssTH_RechargeCanGetCnt_%ssTH_RechargeCurTotalGold_%ssTH_RechargeTotalGold_%stTH_RechargeTotalGoldtTH_LastRechargeNumsTH_RechargeRankTGold_%stTH_RechargeRankTGoldtTH_CostTotalGoldtTH_CostAwardStatetTH_LastCostIndexsTH_CostRankTGold_%stTH_CostRankTGoldsActivity_FinishCnt_%stActivity_TotalPointtActivityAwardRecordtActivity_AwardStagetActivity_RealmPointtActivity_ExtraRealmPointsDailyActionDayTimes_%ssDailyActionWeekTimes_%ssFamilyActivityFinishCnt%stFamilyActivityAwardRecordsInvest_Time_%ssInvest_Gold_%ssInvest_AwardData_%ssInvest_GotRewardValue_%s_%ssSucc_AwardRecord_%ssSucc_LastDay_%ssSu_%s_%ssSucc_FinishTime_%stSucc_CheckVersiontQQUpYellowAwardRecordtQQUpBlueAwardRecordtQQNewManAwardRecordtQQDayGiftAwardRecordsQQTaskMarketRecord_%sttencenttqzonetpengyoutqplustqqgamet3366tQzoneUpAwardRecordtQzoneNewManRecordtQQDayGiftRecordt Reinc_ReikitReinc_ChangeReikiCnttReinc_ChangeReikiAddCnttReinc_AwardRecordt
Master_ExptMaster_ExpPointtMaster_FreeSkillPointtCrossPK_TotalScoretCrossPK_OnDayScoret CrossPK_DanLVtCrossPK_PKCounttCrossPK_WinCounttCrossPK_CWinCounttCrossPK_TodayPKCounttCrossPK_TodayWinCounttCrossPK_TodayBuyCounttCrossPK_ItemAddCounttCrossPK_DayPKCountAwardStatetCrossPK_DayWinCountAwardStatetCrossPK_DanLVAwardStatetCrossPK_SeasonAwardStatetCrossPK_ZoneIDtCrossPK_SeasonIDsCrossPK_SeasonDanLV_%ssCrossPK_SeasonScore_%ssCrossPK_SeasonOrder_%ssCrossPK_SeasonAwardLV_%ssAFSetting_%s_%stWorldBoss_HurtCntsBoss_KillCnt_%ssBoss_KillCntItemAddCnt_%ssBoss_KillCntBuyCnt_%stFmlRedPacketGoldLimitsFamilyRedPacketCache%stOSRedPacketGrabMoneytOSRedPacketCanGrabCnttOSRedPacketStartTimet RealmFBIsOpensRealmFBAttrAdd_%stRealmSitAllTimetRealmSitRemainTimetRealmSitStartTimetRealmSitStopTimesMagicWeaponExp_%ssMagicWeaponIsActive_%s_%ssMagicWeaponIsClick_%s_%ssMagicWeaponIsWear_%s_%ssMagicWeaponRefineLV_%ssXBXZAwardRecord_%ssMagicWeaponLV_%ssMagicWeaponUpExp_%ssMWSoulCurValue_%ssMWSoulGotValue_%ssMWSoulGotItemState_%ssMWSoulActiveState_%ssMWFBPassLevel_%st    AlchemyLVt
AlchemyExpsAlchemyCount_%ssAlchemyCountSpec_%ssAlchemyOutputCount_%stAlchemyPrayCnts    GFP_%s_%stGFPPaget
DiceResulttDiceFreeChangeCnttTJGNExp1tTJGNExp2tTJGNTimetTJGNEatPt TJGNGiveCntt
TJGNPurpletTJGNOrgtTJGLVs TJGItemID_%st
TJGOnDayExtXMZZLastStartTimesEQPartSuiteLV_%s_%ssEQPartSuiteNotify_%s_%s_%ssDogzFightState_%stDogzBuyHelpbattleCounttMinAtktMaxAtktMinMAtktMaxMAtktAtktMAtktDeftMisst    MagAtkPertAtkPertMaxHPtMaxMPtMaxHPPertMaxMPPertIceAtktFireAtkt    PoisonAtkt
ThunderAtktWindAtktIceDeftFireDeft    PoisonDeft
ThunderDeftWindDeft    DamReducetSpeedtBothAtktHittAutoRestoreHPPert GreatHitRatetGreatHitt LuckyHitRatetLuckyHitt IgnoreDefRatetAtkSpeedt ReduceSkillCDt
KillBackHPt
KillBackMPt
DamBackPert DropMoneyPert
BothAtkPertMissPertDefPertHitPert FightExpRatet GameExpRatet SkillAtkRatet AtkBackHPPertSuperHitt SuperHitRatetPetAtkt    PetDamPeriCiói9treason_name_sont
GMSetMoneyt    WarehousetUnknownt BuyStoreItemt
BuyVIPItemt
GoldInvesttPraytTreasuret    OpenNoblet RecoverGaintEnterFBtBuyPackt
UseSpeakertRevivet FBEncouraget RefreshTruckt FinishTrucktRefreshArrestTasktRefreshTimeShoptResetTalentSkilltGMt    BourseBuyt BourseCharget    EquipWasht
HighLaddertUseItemt
AddSignDaytFBSweept    ClearFBCDt FinishFBSweept BuyFBEnergyt
MissionDeltMissionGameEventt MissionStart BuyItemBackt ItemProducet
EquipStonet    Transportt
OffLineExpt
GameServertExchangeActionItemt Reincarnationt BuyStallItemtTradetRenamet    SkillLvUptFamilyBroadcasttFamilyRedPackett    FreeGoodst DogzEquipPlustRuneHolet AlchemyPrayt BindJadeWheelt WishingWellt    GodWeapont FBHelpBattletFBGatherSoulBosstCTGtGMTCTGt
CoinToGoldtSuperAccountCreatetMissiontPickuptBoursetRecovert    RedPackett
RefineGifttMailt RuneDecomposet SellPackItemt
CollectNPCt    StallItemtTrucktGatherSoulDecomposetGMMaketBuyItemt ItemCompoundt
BourseItemt RuneCompoundt TJGDropItemt StonePickofft    EquipSuittNPCDroptOpenServerCampaigntDiceExt FamilyStoretRefinetChestst TrialExchanget EquipEnchasetAdd_LimitingBufft AddDienstgradtAddExptAddLVt    AddVIPExpt
CleanGuilttClothesCoatSkint    GiveMoneyt    PrizeCointResetAttrPointtResetBossKillCntt
GiveZhenQit    AttrFruitt AddBourseItemtEquipDecomposetWingExpt StoneUpgradetHorsetPettAlchemyt
VPack_RunetAddFBCnttAddKillBossCntt ChatBubbleBoxt CoatDecomposesδ֪s×øÆïs³á°òs¾ôλsÈÕ³£ÅÜ»·sÕ½ÃËÅÜ»·s|t1t2tRunetLVUPt EquipChanget StoneChangetSuittDelTitlet    DogzStatet
ResetPointt ResetTalent(e t__doc__tost IPY_GameWorldR
tgetcwdRt
ScriptPathR•t DelayLoadXMLRRRRtrangetDef_BuffTime_ResettDef_BuffTime_AddtDef_BuffTime_KeeptDef_BuffTime_Keep_AddValuetDef_Buff_Replace_BettertDef_Buff_Replace_NewtDef_Buff_CoexisttDef_BuffValue_CounttDef_Calc_AllAttrType_MAXtTYPE_Calc_AttrListtTYPE_Calc_AttrCurSTRtTYPE_Calc_AttrCurPNEtTYPE_Calc_AttrCurPHYtTYPE_Calc_AttrCurCONtTYPE_Calc_AttrHPtTYPE_Calc_AttrMPtTYPE_Calc_AttrMaxHPtTYPE_Calc_AttrMaxMPtTYPE_Calc_AttrATKMintTYPE_Calc_AttrATKMaxtTYPE_Calc_AttrMATKMintTYPE_Calc_AttrMATKMaxtTYPE_Calc_AttrDEFtTYPE_Calc_AttrHittTYPE_Calc_AttrMisstTYPE_Calc_AttrSpeedtTYPE_Calc_AttrAtkSpeedtTYPE_Calc_SuperHitRatetTYPE_Calc_SuperHittTYPE_Calc_SuperHitRateReducetTYPE_Calc_SuperHitReducePertTYPE_Calc_GreatHitRatetTYPE_Calc_GreatHittTYPE_Calc_GreatHitRateReducetTYPE_Calc_GreatHitReducePertTYPE_Calc_LuckyHitRatetTYPE_Calc_LuckyHittTYPE_Calc_LuckyHitRateReducetTYPE_Calc_LuckyHitReducePertTYPE_Calc_IgnoreDefRatetTYPE_Calc_IgnoreDefRateReducetTYPE_Calc_IgnoreDefReducePertTYPE_Calc_AttrIceAtktTYPE_Calc_AttrFireAtktTYPE_Calc_AttrPoisonAtktTYPE_Calc_AttrThunderAtktTYPE_Calc_AttrWindAtktTYPE_Calc_AttrIceDeftTYPE_Calc_AttrFireDeftTYPE_Calc_AttrPoisonDeftTYPE_Calc_AttrThunderDeftTYPE_Calc_AttrWindDeftTYPE_Calc_AttrFightExpRatetTYPE_Calc_AttrGameExpRatetTYPE_Calc_AttrPetExpRatetTYPE_Calc_DropEquipPertTYPE_Calc_DropMoneyPertTYPE_Calc_PetMinAtktTYPE_Calc_PetMaxAtktTYPE_Calc_PetDamPertTYPE_Calc_PerLVAtktTYPE_Calc_PerLVMaxHPtTYPE_Calc_MaxProDeftTYPE_Calc_ProDefHPPertTYPE_Calc_ProDefAbsorbtTYPE_Calc_DamBackPertTYPE_Calc_DamChanceDeftTYPE_Calc_ShieldMPCostRatetTYPE_Calc_FaintRatetTYPE_Calc_FaintDefRatetTYPE_Calc_AtkerFreezedtTYPE_Calc_AddAngrytTYPE_Calc_ComboRatetTYPE_Calc_ComboDamPertTYPE_Calc_HPRestorePertTYPE_Calc_KillBackHPtTYPE_Calc_KillBackMPtTYPE_Calc_AtkBackHPPertTYPE_Calc_AtkBackMPPertTYPE_Calc_AddBackHPPertTYPE_Calc_ReduceBackHPPertTYPE_Calc_XPRestorePertTYPE_Calc_ReduceSkillCDtTYPE_Calc_SkillAtkRatetTYPE_Calc_SkillAtkRateReducetTYPE_Calc_DamagePertTYPE_Calc_AttrDamReducetTYPE_Calc_HurtPertTYPE_Calc_BleedDamagetTYPE_Calc_FinalHurttTYPE_Calc_FinalHurtReducetTYPE_Calc_DamagePerPVPtTYPE_Calc_DamagePerPVPReducetTYPE_Calc_DamagePerPVEtTYPE_Calc_NPCHurtAddPertTYPE_Calc_JobAHurtAddPertTYPE_Calc_JobBHurtAddPertTYPE_Calc_JobCHurtAddPertTYPE_Calc_NPCAtkReducePertTYPE_Calc_JobAAtkReducePertTYPE_Calc_JobBAtkReducePertTYPE_Calc_JobCAtkReducePertTYPE_Calc_CommMapExpRatetTYPE_Calc_FinalHurtPertTYPE_Calc_FuhaoHitRatetTYPE_Calc_BossIDHurttTYPE_Calc_BossIDHurtAddPertTYPE_Calc_DropEquipDoCounttTYPE_Calc_BaseAtkAddPertTYPE_Calc_BaseMaxHPAddPertTYPE_Calc_BaseDefAddPertTYPE_Calc_BaseHitAddPertTYPE_Calc_BaseMissAddPertTYPE_Calc_HorcruxBasePertTYPE_Calc_EquipBaseAddPertTYPE_Calc_WeaponAtkAddPertTYPE_Calc_RelicsAtkAddPertTYPE_Calc_ArmorMaxHPAddPertTYPE_Calc_ArmorDefAddPertTYPE_Calc_GodWeaponMaxHPPertTYPE_Calc_GodWeaponAtkPertTYPE_Calc_StoneMaxHPPertTYPE_Calc_StoneAtkPertTYPE_Calc_HPCureEnhancetTYPE_Calc_OnlyFinalHurttTYPE_Calc_PVPAtkBackHPtTYPE_Calc_HitSucessRatetTYPE_Calc_MissSucessRatetTYPE_Calc_AtkIntervaltTYPE_Calc_FuncDeftTYPE_Calc_CurePertTYPE_Calc_BeHurtPertTYPE_Calc_HorseAtkPertTYPE_Calc_StoneBasePertTYPE_Calc_RealmBasePertTYPE_Calc_PetSkillAtkRatetTYPE_Calc_WingHPPertTYPE_Calc_SuiteBasePertTYPE_Calc_PlusBaseAtkPertTYPE_Calc_ProDeftTYPE_Calc_ZhuxianRatetTYPE_Calc_ZhuxianHurtPertTYPE_NPCAttr_CalctTYPE_Calc_DeclineListt Def_Pet_AttrtDef_PetBaseEffectListtDef_ItemID_PetSoultDef_ItemID_PetDoubleExptDef_ItemID_CompoundJiePotDef_ItemID_FineSoulGadgettDef_ItemID_LongSaleItemtDef_ItemID_ArchangelWeapontDef_ItemID_PetDatatDef_ItemID_RealmSittDef_ItemID_VIPExperiencetDef_ItemID_SilverMoneytDef_ItemID_FamilyContributiontDef_ItemID_FamilyActivet Def_ItemID_SPtDef_ItemID_GoldPapertDef_ItemID_RealmPointtDef_ItemID_BossReborntDef_ItemID_YsogtDef_ItemID_SoulDusttDef_ItemID_SoulSplinterstDef_ItemID_SoulCoretDef_ItemID_HonortDef_TransformItemIDListtDef_ItemType_AlltDef_ItemType_GiveMoneytDef_ItemType_TitletDef_ItemType_SPValuetDef_ItemType_SPBooktDef_ItemType_HPMPtDef_ItemType_AddExpBufftDef_ItemType_AddLimitBufftDef_ItemType_OnhookCardtDef_ItemType_ChangePlayerNametDef_ItemType_TransmittDef_ItemType_AddExptDef_ItemType_LevelUPtDef_ItemType_StufftDef_ItemType_ActivitytDef_ItemType_MissionItemtDef_ItemType_TransMissionItemtDef_ItemType_RealmStufftDef_ItemType_GodWeaponStufftDef_ItemType_HorseStufftDef_ItemType_HorseSoultDef_ItemType_HorseBooktDef_ItemType_MinetDef_ItemType_StonetDef_ItemType_PetItemtDef_ItemType_PetAddExptDef_ItemType_PetSoultDef_ItemType_EquipDecomposeExptDef_ItemType_RunetDef_ItemType_RuneExptDef_ItemType_RuneChiptDef_ItemType_MagicCrystaltDef_ItemType_EquipSuitStonetDef_ItemType_EquipSuitStoneChiptDef_ItemType_RefineStonetDef_ItemType_EternalStonetDef_ItemType_ColorsStonetDef_ItemType_WingStufftDef_ItemType_FairyGuardStufftDef_ItemType_MoneytDef_ItemType_Refine1tDef_ItemType_Refine2tDef_ItemType_Refine3tDef_ItemType_FamilyBossFoodtDef_ItemType_SuccessItemtDef_ItemType_ResetAttrPointtDef_ItemType_GatherSoulExptDef_ItemType_GatherSoultDef_ItemType_GatherSoulCoretDef_ItemType_DogzEquipExptDef_ItemType_TreasureBoxtDef_ItemType_TreasureBox2tDef_ItemType_WeaponCoattDef_ItemType_Weapon2CoattDef_ItemType_ClothesCoattDef_ItemType_ChangeFamilyNametDef_ItemType_retWeapontDef_ItemType_retWeapon2tDef_ItemType_retHattDef_ItemType_retClothestDef_ItemType_retBelttDef_ItemType_retTrouserstDef_ItemType_retShoestDef_ItemType_retNecktDef_ItemType_retFairyCantDef_ItemType_retFairyCan2tDef_ItemType_retWingtDef_ItemType_retGuardtDef_ItemType_retBaldric1tDef_ItemType_retBaldric2tDef_ItemType_retBaldric3tDef_ItemType_retBaldric4tDef_ItemType_retBaldric5tDef_ItemType_retBaldric6tDef_ItemType_DogzEquipHorntDef_ItemType_DogzEquipEyetDef_ItemType_DogzEquipToothtDef_ItemType_DogzEquipClawtDef_ItemType_DogzEquipScutetDef_ItemType_AddCrossRealmPKCnttDef_ItemType_ZXCloaktDef_ItemType_ZXMasktDef_ItemType_ZXGlovetDef_ItemType_ZXRuyitDef_ItemType_ZXPendanttDef_ItemType_ZXRingtDef_ItemType_ZXWeapon1tDef_ItemType_ZXWeapon2tDef_ItemType_ZXWeapon3tDef_ItemType_ZXWeapon4tDef_Item_Type_HorsetrptRunet rptGatherSoultDef_VPackCnt_Dictt rptDogzItemtrptZhuXianItemR trptItemRt    retWeapont
retWeapon2tretHatt
retClothestretBeltt retTrouserstretShoestretNeckt retFairyCant retFairyCan2tretWingtretGuardt retBaldric1t retBaldric2t retBaldric3t retBaldric4t retBaldric5t retBaldric6tDef_PlaceEquipTypet Def_Effect_GivePlayerMoneySilvertDef_Effect_GivePlayerMoneyGifttDef_Effect_GivePlayerMoneyGoldtDef_Effect_AddDienstgradtDef_Effect_UseItemGiveZhenQit!Def_Effect_ItemGiveFamilyActivityt%Def_Effect_ItemGiveFamilyContributiontDef_Effect_TJGAddTimetDef_Effect_ItemAddExptDef_Effect_ItemAddLVtDef_Effect_ItemAddExpByLVtDef_Effect_AppointItemtDef_Effect_EquipStonetDef_Effect_ReborntDef_Effect_PrizeCointDef_Effect_AddVIPExptDef_Effect_ResetBossKillCntt Def_Effect_GivePlayerSilverPapertDef_Effect_ItemSpeaktDef_Effect_CleanGuilttDef_Effect_ResetAttrPointtDef_Effect_AddFBCnttDef_Effect_AddKillBossCnttDef_Effect_DogzEquipPlusExptDef_Effect_AddMagicWeaponUpExptDef_Effect_ChatBubbleBoxtDef_Effect_ItemGiveRealmPointtDef_Effect_ItemGiveSoulDustt Def_Effect_ItemGiveSoulSplinterstDef_Effect_ItemGiveSoulCoretDef_Effect_ItemGiveHonortDef_Effect_ItemGiveGongXuntDef_Effect_ItemGiveRuneJHt Def_Effect_ItemGiveRuneSplinterstDef_Effect_SuiteMarktDef_Effect_ClothesCoatSkintDef_Max_Update_Talent_TimetDef_Effect_AddAtktDef_Effect_DeftDef_Effect_STRtDef_Effect_PNEtDef_Effect_PHYtDef_Effect_CONtDef_Effect_AddHP_OncetDef_Effect_AddMP_OncetDef_Effect_AddHP_MoretDef_Effect_AddMP_MoretDef_Effect_AddHP_LasttDef_Effect_AddMP_LasttDef_Effect_AddPetHP_PackagetDef_Effect_AddHP_PackagetDef_Effect_AddMP_PackagetDef_Effect_AddPetHP_MoretDef_Effect_Add_MaxHPtDef_Effect_Add_MaxMPtDef_Effect_Add_FreePoint_1tDef_Effect_Add_FreePoint_2tDef_Effect_Add_FreePoint_3tDef_Item_Effect_MissionMovetDef_Item_Effect_FishTooltDef_Item_Effect_ShopItemtDef_Item_Eff_HorseUpdatetDef_Item_Eff_OfficialRankUpdatetDef_Item_Eff_UseClassLVtDef_Item_Eff_BlessRangetDef_Item_Eff_GodWeaponExptDef_MissionID_FirstLogintDef_ConvoyTruckMissionIDtDef_ArrestMissionIDtDef_XML_FirstLogintDef_Skill_Effect_AddAtkByHPtDef_Skill_Effect_AbsorbShieldt!Def_Skill_Effect_AbsorbShieldXMZJtDef_Skill_Effect_BoomSeedHurttDef_Skill_Effect_AttackReplacetDef_Skill_Effect_AttacktDef_Skill_Effect_LayerCnttDef_Skill_Effect_MasterBufftDef_Skill_Effect_SummonAttrtDef_Skill_Effect_BoomSeedIDtDef_Skill_Effect_RandWarnt)Def_Skill_Effect_AttackReplaceByNPCSeriestDef_Skill_Effect_AvgHurtFMCntt!Def_Skill_Effect_AreaAttackkCounttDef_Skill_Effect_PowerParttDef_Skill_Effect_ProcessAttacktDef_Skill_Effect_BuffTicktDef_Skill_Effect_ProBloodPertDef_Skill_Effect_AttackMovetDef_Skill_Effect_RandSkilltDef_Skill_Effect_HPPerLimittDef_Skill_Effect_AppointNPCtDef_Skill_Effect_SummonMapNPCtDef_Skill_Effect_CopySelftDef_Skill_Effect_SuperLinkAtktDef_Skill_Effect_PassiveSkillIDtDef_Skill_Effect_SwordStormtDef_Skill_Effect_SuperCounttDef_Skill_Effect_SuperAtkSHittDef_Skill_Effect_AddBuffTimetDef_Skill_Effect_CureUppert!Def_Skill_Effect_RestoreZhenQiPertDef_Skill_Effect_ReEnhancet"Def_Skill_Effect_AtkBossYellowNametDef_Skill_Effect_PetHPPackagetDef_Skill_Effect_HPPackagetDef_Skill_Effect_MPPackagetDef_Skill_Effect_BuffStatetDef_SkillEffs_PettDef_BuffManager_EffectsIDtDef_BaseEffectListtDef_Skill_BuffEffectDicttDef_Skill_BuffEffectOutsidetEffCalcType_LinePlustEffCalcType_LineReducetEffCalcType_NoLinePlustEffCalcType_NoLineReducetEffCalcTypeDicttCalcBuffLevel_0tCalcBuffLevel_1tDef_Speed_EffectIDListtDef_SkillID_QueenRelicsItemBufftDef_SkillID_YellowtDef_SkillID_GraytDef_SkillID_KillYellowtDef_SkillID_RedtDef_SkillID_ReviveTiredtDef_SkillID_SkillReBorntDef_SkillID_ShopItemtDef_SkillID_LimitSuperBufftDef_SkillID_TJGSuperBufftDef_SkillID_SomersaulttDef_SkillID_DoubleExptDef_SkillID_JusticetDef_SkillID_EviltDef_SkillID_JoinExamtDef_SkillID_ActionWuDitDef_SkillID_ZhenQiRestoretDef_SkillID_TruckAiModetDef_SkillTypeID_EfficientBattletDef_SkillTypeID_EfficientSittDef_SkillID_XuanTianZhenYantDef_BuffID_XianFengYunTitDef_VIPExp_SkillTypeIDtDef_SkillID_AtkerFainttDef_SkillID_TeleporttDef_SkillID_VipBufftDef_SkillID_TeamVIPBufftDef_SkillID_CostVipBufftDef_SkillID_FBEncourageBufftDef_SkillID_GetFlagFamilyBufftDef_SkillID_FreshmanGuideBufftDef_SkillID_PoisonAtkBufftDef_SkillID_DropOwnerBufftDef_SkillID_PetSignDaytDef_SkillID_LFZt&Def_SkillID_HorsePetRobBossKillCntBufftDef_SkillID_FamilyWar_CWinBufftDef_SkillID_FamilyWar_JoinBufft!Def_SkillID_FamilyWar_ResPointAddt$Def_SkillID_FamilyWar_ResPointAddPert"Def_SkillID_FamilyWar_RandBuffAttrt#Def_SkillID_FamilyWar_OwnerlessBufftClearBuffOnMapChangeListtTJGStateNotRefreshTimeBufftDef_AreaType_SkillID_SafetDef_AreaType_SkillID_FreePKtDef_AreaType_SkillID_FamilyPKtDef_AreaType_SkillID_BosstDef_SkillID_ManorFlagAreatDef_SkillID_SitAreatDef_ChanceDefRatetDef_HurtType_NormaltDef_HurtTYpe_RecoverytDef_HurtType_BounceHurttDef_HurtType_BleedtDef_HurtType_ParrytDef_HurtType_DoubleHittDef_HurtType_SuperHittDef_HurtType_LuckyHittDef_HurtType_MisstDef_HurtType_ImmunetDef_HurtType_RealmSupresstDef_HurtType_ZhanshatDef_HurtType_ZhuxiantDef_HurtType_ZhognjiZhanshatDef_HurtType_NoDeftDef_HurtType_GreatHittDef_HurtType_FujiaHittDef_HurtType_FuhaoHittxrangetDef_EquipItemType_TJGAutoEattDef_EquipItemTypetDef_WeaponItemTypetDef_DogzEquiipTypetDef_ZhuXianEquiipTypetDef_RealAttack_Typet Def_GM_LV_GodtTYPE_Price_Gold_MoneytTYPE_Price_Gold_PapertTYPE_Price_Silver_MoneytDef_MoneyType_Allt!Def_PlayerOnLineReply_ClientReplytDef_Screen_AreatDef_PlayerTotalMoney_GoldtDef_PlayerTotalMoney_SilvertDef_DRRecord_Min_SilvertDef_LargeTrade_GoldtDef_LargeTrade_SilvertDef_PlayerTradeMaxItemCounttDef_PlayerFirstLoginOpenBackCnttDef_FirstLogin_OpenWareHouseCnttDef_PackCnt_FashiontDef_PackCnt_WeaponCoattDef_PackCnt_SeekTreasuretDef_PackCnt_ClassHorsestDef_PackCnt_HorseEquiptDef_PackCnt_HorseSkilltDef_PackCnt_OfficerSkilltDef_PackCnt_TreasuretDef_PackCnt_DogzItemtDef_PackCnt_DogzEquiptDef_PackCnt_ZhuXianItemtDef_PackCnt_ZhuXianEquiptDef_PackCnt_Equip2tDef_PackCnt_RecycletDef_PackCnt_TempSwaptDef_PackCnt_TempItemtDef_PackCnt_PettDef_PackCnt_PetEquipt$Def_PlayerFirstLoginOpenFineSoulSlottDef_PlayerLeaveBattleTicktDef_MultiKillTicktDef_TeamHornor_MoneytDef_TeamHornor_MoneyTypetDef_PlayerHurtListCounttDef_PlayerMaxMoveDisttDef_AcceptPlayerStopPlaceDisttDef_PlayerNameColorRed_BuyItemtDef_PlayerChangLine_Tickt Def_Player_InitMapSignPointCounttDef_Player_MapSignPointMaxCounttDef_PlayerSex_TypetDef_PlayerSex_AlltDef_PlayerSex_MantDef_PlayerSex_WomantDef_Stone_VipHoletDef_Stone_SaveStoneInfoXNumbertDef_Type_PyPlayerActionListt&Def_Type_PyPlayerAction_PlayerVsPlayert)Def_Type_PyPlayerAction_PlayerVsRoomSupert"Def_Type_PyPlayerAction_SpanServert!Def_Type_PyPlayerAction_FBWipeOuttpaDiet$Def_Player_Cannot_LearnLvSkill_StatetpaNulltDef_Player_StartGameEvent_StatetpaAttackt paGameEventtpaEventtpaSittDef_Player_ResetItem_StatetDef_Player_DoEquip_StatetpaDOTt    paProducetDef_Player_DoEvent_Statet paPreparingtpaTradetDef_Player_Cannot_TransStatet(Def_Player_NotCan_EnterFbPyGameEvenStatetDef_Player_PrimnessStatetDef_PlayerChangLine_StatetpvNulltpvHorsetDef_PlayerChangLine_VehicletDef_PlayerState_StoretDef_Player_Can_Transfer_StatetDef_PlayerCanAttackStatetDef_PlayerCanEnterConfrontingtDef_PlayerCancelConfrontingtDef_ItemID_LargeTradetDef_Action_Attack_BittDef_PA_MaxReasontDef_PASysMessage_NonetDef_PASysMessage_NewGuytDef_PASysMessage_IsSafeAreatDef_PASysMessage_AttackModetDef_PASysMessage_CountrySafet#Def_PASysMessage_IsSafeArea_CountrytDef_PASysMessage_NewGuyNotPKt Def_PASysMessage_NotAttackNewGuyt Def_PASysMessage_NotAttackFamilytDef_PASysMessage_NotAttackTeamtDef_PASysMessage_AttackNotPKtDef_PASysMessage_CurAreaNotPKtDef_PASysMessage_SitNotPKt!Def_PASysMessage_NotAttackFactiont Def_PASysMessage_NotAttackServertDef_PASysMessage_PKProtectTimetDef_MessageDictDef_ProcessPlayerPersistBufftDef_ProcessPersistBufft
rptRecycletrptEquipt rptAnyWhereR R trptPett rptDogzEquiptrptZhuXianEquipt Def_PlayerLoginInitPackIndexListt rptPetEquip1t rptPetEquip2t rptPetEquip3t rptPetEquip4t rptPetEquip5t rptHorseEquiptDef_Equip_Boost_PacktDef_CanTradeStatetDef_CanTradeDisttDef_CanTradeGoldItem_LVtDef_BaseAtkSpeedtDef_PlayerCanAttackBalktDef_PlayerAttackDistZoomtDef_SuperHitPercenttDef_LuckyHitValtDef_GreatHitValtDef_FuhaoHitValtDef_MaxRateValuetDef_AtkSpeedBasetType_Relation_NonetType_Relation_EnemytType_Relation_FriendtDef_NpcDictKey_CampTypetCampType_NeutraltCampType_Justicet CampType_EviltDef_CureTypeListtDef_Cure_AttacktDef_Cure_MaxHPt Def_Cure_PNEt Def_Cure_PHYtDef_Cure_HurtValuetDef_Cure_TagMaxHPtDef_RestoreTypeListtDef_Restore_MaxMPtDef_Restore_PHYtDef_Trap_Born_Idle_TimetDef_FirstLogin_InfamyValuetDef_Skill_HappenState_HitOntDef_Skill_HappenState_SuperHittDef_Skill_HappenState_LuckyHittDef_UseSkillAim_TypetDef_UseSkillAim_NonetDef_UseSkillAim_ObjtDef_UseSkillAim_GroundtDef_UseSkillTag_TypetDef_UseSkillTag_NonetDef_UseSkillTag_SelftDef_UseSkillTag_TeamtDef_UseSkillTag_FriendtDef_UseSkillTag_CanAttacktDef_UseSkillTag_SelfAndFriendtDef_UseSkillTag_PlayerAshestDef_UseSkillTag_PlayerHasHPtDef_UseSkillTag_CanAttackNPCtDef_UseSkillTag_CanAttackPlayert Def_UseSkillTag_SelfFriendAttacktDef_UseSkillTag_PetMastertDef_UseSkillTag_SummonMastert Def_UseSkillTag_CanAttackBaseNPCtDef_UseSkillTag_FriendNPCtDef_UseSkillTag_AppointNPCt    gotPlayertgotNPCtDef_Dict_UseSkillTag_ObjTypetDef_ST_CanPlayerUseSkilltDef_ST_CanNPCUseSkilltDef_AutoAtkSkillTypetDef_AutoAtkSkillType_AtktDef_AutoAtkSkillType_NonetDef_AutoAtkSkillType_SkilltDef_SkillType_CounttDef_SkillType_SpecialtDef_SkillType_AtktDef_SkillType_RstrtDef_SkillType_LstPlsBufftDef_SkillType_LstDepBufftDef_SkillType_PlsBufftDef_SkillType_DepBufftDef_SkillType_PassivetDef_SkillType_RevivetDef_SkillType_IncrementtDef_SkillType_AuratDef_SkillType_EquiptDef_SkillType_AreatDef_SkillType_SummontDef_SkillType_ActiontDef_SkillType_LstPlsBuffAtktDef_SkillType_PassivePlsBufftDef_SkillType_PassiveDepBufftDef_SkillType_PassiveActionBufftDef_SkillType_PassiveBufftDef_SkillType_AttrSkilltDef_SkillType_PassiveLstPlsBufftDef_SkillType_PassiveLstDepBufftDef_SkillType_AttrSkillNoLearnt bfProcessBufftbfProcessDeBufftbfBufftbfDeBufft btPassiveBuft    bfIncBufftbfAurat bfEquipBufft    bfMapBufft bfActionBufftDef_SkillBuffListtDef_HurtSkill_ListtDef_LstBuff_ListtDef_CanAttackSkill_ListtDef_Debuff_ListtDef_NoBattleState_ListtDef_BuffLayer_AddtDef_BuffLayer_SubtDef_ActBit_PstStatetDef_ActBit_GameEventtoalRidetpstHorset
oalCollecttpstMissionCollectingtoalCatcht pstCatchPett pstCollectingtoalFishtgeFishtoalDancetgeDancetDef_ActBit_ActiontDef_Max_Buff_RemainTimetDef_Max_Buff_CounttDef_Max_DeBuff_CounttDef_Max_Aura_CounttDef_Max_IncBuff_CounttDef_Max_EquipBuff_CounttDef_Max_MapBuff_CounttDef_Max_PassiveBuff_CounttDef_Max_ActionBuff_CounttDef_Max_ProcessBuff_CounttDef_Max_ProcessDeBuff_CounttDef_Skill_TypeID_SpeedtDef_Mission_Reward_Ratet Def_EventDistt Def_PetDisttDef_EventClearTimetDef_ShowEventTimetDef_EventRewardTimetDef_EventTotalTimetDef_EventCounttDef_EventMaxRatet Def_EventRatetDef_Item_Type_DancetDef_Item_Type_FishtDef_GameEventExpLVDifftDef_TeamMemberExptDef_ShopItem_PlayerStatetDef_ShopItem_Distt    rptResultt
rptComposet rptJewelMergetrptJewelMergeResulttDef_ComposePack_ListtrptCabinetWeaponCoattrptCabinetDressCoattrptCabinetHorsetrptPetCabinetPettDef_CollectPack_Typet rptWarehousetDef_BackpackOperate_ListtDef_RecycleReturnMoneytDef_MinChangeEquipTimetDef_OneKeyChangeEquipTimetDef_ItemPackResetIntervaltDef_HPRestoreIntervaltDef_CanItemResetPacktDef_ItemReset_WarehousePageCnttDef_RolePickupItemDisttDef_MaxSpeakerLentDef_PlayerCabinet_PacktrptTitletDef_RealityTimeItem_PacktDef_EndureRepairParametertDef_Endure_OriginaltDef_Transport_MaxCounttDef_Transport_Type_WorldtDef_Transport_Type_BigMaptDef_Transport_Type_MissiontDef_Transport_Type_BorntDef_Transport_Type_FixedPointtDef_Transport_WorldtDef_Transport_BigMaptDef_Transport_MissiontDef_PackType_TransportTypetDef_MoveToTruck_CosttDef_BuyWarehouse_TypetDef_BuyWarehouse_CosttDef_BuyItemPack_TypetDef_BuyItemPack_CosttDef_DigMaxTimetDef_RidehorseTimetDef_CatchPetPortalTimet Def_TransTimetDef_EquipReduceTypetDef_EquipReduceType_NonetDef_EquipReduceType_DEFtDef_EquipReduceType_ATKtDef_EquipReduceType_TimetDef_EquipReduceType_AttackValuetDef_EquipReduceType_HurtValuetDef_EquipReduceType_SpcltDef_EquipReduceType_HPMPValuetDef_EquipReduceType_HorsetDef_EquipReduceType_RTimeItemtDef_EquipReduceType_DaytDef_EquipReduceType_ServerDaytDef_EquipMaxHolet Def_BindTypetDef_BindType_NoBindtDef_BindType_DoEquipBindtDef_BindType_DoTradeBindtDef_BindType_DoPickUpBindtDef_ComposeState_NonetDef_ComposeState_SucesstDef_ComposeState_FailtDef_Compose_Can_Put_ListtDef_NPC_SeePlayerAddAngrytDef_NPCType_MaxR)R*tDef_NPCType_Boss_BluetDef_NPCType_Boss_PurpleR+tDef_NPCType_Boss_DarkR-tDef_GM_Oper_ForbidAcctDef_GY_GM_GameID_MapGiveExp_Tent!Def_GY_GM_GameID_MapGiveExp_FiftytDef_PysForbidByPytDef_PysForbidTalktDef_ProduceLVMintDef_SkillID_ProducetDef_ProduceBuffIDtDef_ProducePortalTimetDef_EndProductiontDef_EnterProductiontDef_Team_GetExpScreenDisttDef_NormalTeam_AddRatetDef_GetOtherPosIntervaltDef_Team_GetOtherInfoIntervaltDef_SpeakerItem_Tickt Def_TCSpeaktDef_SpeakerItem_EventTypetDef_SpeakerItem_GoldIDtDef_SpeakerItem_SilverIDtDef_SpeakerGoldMoneytDef_UseFuDai_FailtDef_UseFuDai_SucesstDef_NPC_ProcessHP_TicktDef_NPC_ProcessBattleHP_TicktDef_KillNPC_Noraml_DropGaptntElftntTraptDef_CanAddAngrySelf_SummonListtDef_ClientControlSummonNPCIDtDef_SummonPropertytDef_NormalNPCAngryCounttDef_BossAngryCounttDef_SuperFBBossAngryCounttDef_SuperBossAngryCounttDef_SummonNPC_Angry_CounttDef_Default_NPC_Angry_CounttDef_Pet_Angry_CounttDef_NPCMapDropRatet Def_NstNullt Def_NstMovingt Def_NstDeadt Def_NstAttacktDef_Event_Drop_Formulat Def_Day_Event_Exp_Reward_FormulatDef_Helth_Money_FormulatDef_TruckNotifyToOwnerTickt!Def_Day_Event_Truck_Destroy_MoneytDef_Day_Event_Truck_Destroy_Expt#Def_Day_Event_Truck_Destroy_DeposittDef_PlayerTurckBeginMoveDisttDef_PlayerTruckEventDisttDef_PlayerTruckMoveDisttDef_PlayerTruckCarryerDistt!Def_Player_RequestAddFamilyMaxCnttDef_CreatRoleMapIDListtDef_FBMapID_WeedPKtDef_FBMapID_FamilyInvadetDef_FBMapID_FamilyBossMaptDef_FBMapID_FamilyWartDef_FBMapID_BZZDtDef_FBMapID_TrialTowertDef_FBMapID_ClearDeviltDef_FBMapID_MagicWeapontDef_FBMapID_BossHometDef_FBMapID_GodAreatDef_FBMapID_IceLodetDef_FBMapID_DuJietDef_FBMapID_KirinHometDef_FBMapID_PersonalBosstDef_FBMapID_FamilyPartytDef_FBMapID_MunekadoTrialtDef_FBMapID_ChaosDemontDef_FBMapID_QueenRelicstDef_FBMapID_ElderBattlefieldtDef_FBMapID_GuardtDef_FBMapID_SealDemontDef_FBMapID_SealDemonExtDef_FBMapID_ZhuXianBosstDef_FBMapID_XMZZtDef_FBMapID_DogztDef_FBMapID_GatherSoultDef_FBMapID_CrossRealmPKtDef_FBMapID_CrossPenglait"RegisterEnter_CrossServerMapIDListtDef_CrossMapIDListtDef_CrossZoneTableNametDef_SendUnPickItemMailMapIDListtDef_GiveMoneyMapIDListtDef_DisconnectExit_FBIDtDef_MapID_NeedCamptDef_MapID_LineIDToPropertyIDtDef_MapID_SendToGameServert&Def_NoPlayerNeedProcessRefreshPointMaptDef_NoLimitEnterCntMaptDef_NoPlayerNotCloseAutoSizeMaptDef_CanNotChangeAtkModelMaptDef_ChangeFamilyCanNotEnterMaptDef_Subject_MaptDef_UnRecoverNoPassMaptDef_FBKickPlayerTimetfbtNulltDef_FBNoShowLeaveTimetDef_FBShowLeaveMapTick_MapIDtDef_EmptyFBKeepTimetDef_PlayerOfflineProtectTimet Def_FB_MapIDtDef_FB_SystemAssignMapIDListt Def_FB_IsPasst Def_FB_GradetDef_FB_VersiontDef_FB_VersionTeamIDtDef_FB_VersionPlayerIDtDef_FB_NotifyFBHelpTicktDef_FB_NPCStrengthenAverageLVtDef_FB_NPCStrengthenMaxLVtDef_FB_NPCStrengthenMinLVtDef_FB_NPCStrengthenPlayerCnttDef_FB_TeamPlayerCounttDef_FB_DropDoCountRatetDef_FB_DropDoCountAddtDef_FB_SingleFBPlayerIDtDef_FB_HelpBattleFBObjIDtDef_FB_HelpBattleGoldCallRWRXRYRZR[R\tDef_Billboard_NoQuerytDef_Billboard_GettDef_Billboard_NoIndextDef_FBDict_NPCShowEndTicktDef_RMark_StatetDef_RMark_LineOneOnlytDef_RMark_RefreshTicktDef_RMark_MaxCnttDef_RMark_TotalMaxCnttDef_RMark_RefreshCnttDef_RMark_NPCListLentDef_RMark_NPCIDtDef_RMark_NPCIDCnttDef_RMark_AngryCounttDef_RMark_IsRepeattDef_RMark_ForceRefreshPointtDef_RMark_TotalForcePointCnttDef_RMark_HasRecordPointtDef_RMark_PassCnttDef_RMark_HasRefreshPointR_R`tDef_RMark_RandomRefreshNPCTickt!Def_RMark_RandomRefreshNPCNumTimetMap_FBDict_NotifyOpentMap_FBDict_NotifyStartRdReRftMap_FBDict_LastAreaRewardTicktMap_Player_AreaReward_GetExpt!Map_Player_AreaReward_GetExpPointt$Map_Player_AreaReward_GetZhenQiTotalt"Map_Player_AreaReward_GetTechPointtMap_Player_AreaReward_GetCnttMap_NPC_ActivityBossRebornCounttMap_NPC_WorldBossLastReBornTicktMap_NPC_WorldBossDeadTicktMap_NPC_RandomMapNPCIDtMap_NPC_RandomMapNPCPerMaxCnttMap_NPC_RandomMapNPCNeedCnttMap_TDNPC_RefreshStartTicktMap_TDNPC_RefreshFileNumtMap_TDNPC_RefreshSignKeytMap_TDNPC_RefreshBigWheelNumtMap_TDNPC_RefreshSmallWheelNumtMap_TDNPC_CurWheelStartTicktMap_TDNPC_CurWheelIsOvertMap_TDNPC_AllWheelIsOvertMap_TDNPC_NPCCnttMap_TDNPC_NPCBossCnttMap_WorldKey_MapDropRateAddt Map_WorldKey_MergeFBMapPlayerCnttMap_WorldKey_MergeFBMapPlayerIDtMap_WorldKey_MergeFBPlayerMapIDtDef_SummonBoost_CounttDef_SummonBoost_SkillTypeIDtDef_SummonBoost_BoostTypetDef_SummonBoost_EffectIDtDef_SummonBoost_ParentIDtDef_SummonBoost_ValuetDef_NPCDead_ReasontDef_NPCDead_KillerTypetDef_NPCDead_KillerIDtDef_NPCFirstSightAngryValuetDef_DropItemDisttDef_SummonAppearDistt Def_NPCRefreshAngryValueIntervaltDef_NPCErrorMaxDisttDef_PlayerTalkTicktDef_PlayerTalkChannelMaxCounttDef_PlayerTalkMaxCounttDef_PlayerTalkQingTimetDef_PlayerTalkAreaTimetDef_PlayerTalkAreaLVtDef_PlayerTalkCountryTimetDef_PlayerTalkCountryLVtDef_PlayerTalkCoutryMoneytDef_PlayerTalkWorldMoneytDef_PlayerTalkWorldTimetCanNotQingTalkMapIDListtTYPE_Load_Module_Extt
TYPE_Dir_Nt
TYPE_Dir_St
TYPE_Dir_Et
TYPE_Dir_Wt TYPE_Dir_NWt TYPE_Dir_SWt TYPE_Dir_SEt TYPE_Dir_NEt TYPE_Dir_NONEtDef_Quality_GreentDef_Quality_BluetDef_Quality_PurpletDef_Quality_OrangetDef_Quality_RedtDef_NPCHurtTypePlayertDef_NPCHurtTypeTeamtDef_NPCHurtTypeNPCtDef_NPCHurtTypeAlltDef_NPCHurtTypeFactiontDef_NPCHurtTypeSpecialtDef_NPCHurtTypeFamilyt DropOwnerTypetDropOwnerType_LastHurttDropOwnerType_MaxHurttDropOwnerType_MaxAngrytDropOwnerType_AlltDropOwnerType_MaxHurtPlayertDropOwnerType_FactiontDropOwnerType_SpecialtDropOwnerType_Familyt TYPE_Lineart TYPE_NoLineart TYPE_Player_identifyManagerCountt"TYPE_Player_StoneBreakManagerCounttTYPE_Player_Tick_TimeR“tTYPE_Player_Tick_CounttTYPE_Player_Tick_BufftTYPE_Player_Tick_LineStatetTYPE_Player_Tick_PlayerRequesttTYPE_Player_Tick_CheckAuraTimet TYPE_Player_Tick_HorseChangStatetTYPE_Player_Tick_GMOpertTYPE_Player_Tick_ClearKilltTYPE_Player_Tick_GiveMapExptTYPE_Player_Tick_QueryFamilyWartTYPE_Player_Tick_QueryTruckPostTYPE_Player_Tick_MoveToTruckPostTYPE_Player_Tick_SetTruckModetTYPE_Player_Tick_WatchStoreInfotTYPE_Player_Tick_QueryCoinCounttTYPE_Player_Tick_FBHelptTYPE_Player_Tick_FBStatetTYPE_Player_Tick_NeedProcesstTYPE_Player_Tick_WorldTransporttTYPE_Player_Tick_RushtTYPE_Player_Tick_DoubleExpt!TYPE_Player_Tick_GetDoubleExpPacktTYPE_Player_Tick_ChangePetStatetTYPE_Player_Tick_Successt$TYPE_Player_Tick_ProcessPassiveSkilltTYPE_Player_Tick_XBC_HPtTYPE_Player_Tick_XBC_MPtTYPE_Player_Tick_OSRedPackettTYPE_Player_Tick_LostEnergyt!TYPE_Player_Tick_PlayerOnlineTimet"TYPE_Player_Tick_PlayerQuerySalaryt#TYPE_Player_Tick_PlayerPerExpAddFAVtTYPE_Player_Tick_MapBufftTYPE_Player_Tick_ProducetTYPE_Player_Tick_TimeItemt$TYPE_Player_Tick_ProduceMakeItemTimet#TYPE_Player_Tick_AutoCheck_SendTickt#TYPE_Player_Tick_AutoCheck_ReceTickt TYPE_Player_Tick_Captcha_Refresht TYPE_Player_Tick_PetChangePetExpt%TYPE_Player_Tick_RequestEquipShowHidetTYPE_Player_Tick_ChangeEnergytTYPE_Player_Tick_PlayerJMCDtTYPE_Player_Tick_PlayerWallowtTYPE_Player_Tick_EquipStarLvCDtTYPE_Player_Tick_OutCardstTYPE_Player_Tick_NewGuyCardtTYPE_Player_Tick_ActionThemetTYPE_Player_Tick_FamilyImpeachtTYPE_Player_Tick_PetTrainCDt TYPE_Player_Tick_WallowSeverLinet%TYPE_Player_Tick_MergeWarRegisterTimetTYPE_Player_Tick_QueryFuncDatatTYPE_Player_Tick_BeginFBWipeOuttTYPE_Player_Tick_FBTimeProcesst TYPE_Player_Tick_FamilysWarAwardtTYPE_Player_Tick_AddXPTickt TYPE_Player_Tick_QueryMapNPCInfotTYPE_Player_Tick_DienstgradtTYPE_Player_Tick_SuckBloodtTYPE_Player_Tick_SuckMagictTYPE_Player_Tick_WareHouseSorttTYPE_Player_Tick_DuJieInspiretTYPE_Player_Tick_VIPExperiencetTYPE_Player_Tick_FlashSaletTYPE_Map_Tick_MapAcPlayert!TYPE_Map_Tick_SendMsg_RouteServertTYPE_Map_Tick_Refresh_ZSMJtTYPE_Map_Tick_Refresh_NPCDroptTYPE_Map_Tick_ReloadScripttTYPE_Map_Tick_Refresh_MYDHZtTYPE_Map_Tick_Refresh_JJZDZt!TYPE_Map_Tick_Refresh_ActionThemetTYPE_Map_Tick_VsRoomSupertTYPE_Map_Tick_FamilysWartTYPE_Map_Tick_ProcessMinutetTYPE_Map_Tick_ProcessFiveMinutetTYPE_Map_Tick_BossAITicktTYPE_Map_Tick_PetAITicktTYPE_Map_Tick_TimetTYPE_Map_Tick_CounttDef_Player_ProBuff_TruckSpeedUptDef_Obj_ActState_ClientActtDef_Obj_ActState_ServerActtDef_Obj_ActState_ClientSkilltDef_Obj_ActState_ServerSkilltDef_Use_Item_303_IndextDef_PlayerSight_DefaulttDef_PlayerSight_OptimizetDef_PlayerSight_Hackt!Def_PlayerInSightObjCount_DefaulttTYPE_NPC_Tick_ProcessAItTYPE_NPC_Tick_BufftTYPE_NPC_Tick_Buff_TimelytTYPE_NPC_Tick_TimetTYPE_NPC_Tick_CounttDef_Mission_State_NoAccepttDef_Mission_State_OvertDef_Mission_State_LoseTrucktDef_Mission_State_BreakTrucktDef_Mission_State_UnMissiontDef_Mission_State_CanCompletetDef_WeaponRetListtDef_FairyCanListtDef_AttackEquipRetListtDef_DefenceEquipRetListtPack_EquipPart_CanPlusStartBaseEquipPlace_WeapontBaseEquipPlace_ArmortBaseEquipPlace_RelicstBaseEquipPlaceListt RoleEquipTypetType_Equip_CanTaketretHorset retWeaponSkintretClothesSkintretWeapon2SkintEquipItemNoRefreshStatetDef_SyncEquipStateByIndextDef_SuperBuffListtDef_Skill_PassivityTicktDef_Skill_Disappear_NoReflashtTYPE_Time_FormattTYPE_Time_Format_DaytDef_GMPower_MaxTimeR”tDef_GMPower_DisctGMTool_Offline_IndexCounttGMTool_Offline_NonetGMTool_Offline_ComposetGMTool_Offline_StarLVtGMTool_Offline_AutoBuyStarLVtGMTool_Offline_HealthReborntGMTool_Offline_IdentifyAgaintGMTool_Offline_MissiontGMTool_Offline_FarRepairtGMTool_Offline_ForgeFaBaotGMTool_Offline_WorldTransfert!GMTool_Offline_AutoBuyGoldSpeakertDef_QueryType_CounttqueryType_sqtPlayertqueryType_sqtFamilyWartqueryType_sqtTrucktqueryType_sqtPlayerByNametqueryType_sqtPlayerByAccIDtqueryType_sqtTeamCounttqueryType_sqtMission_2010031t!queryType_sqtDataServer_GMCommandtqueryType_FamilyBattletqueryType_sqtSend_Family_Itemt queryType_sqtRefresh_Family_InfotqueryType_ViewFamilyBattletqueryType_KingXiHongMingtqueryType_CheckNameHasDirtyt!queryType_DelJionFamilyBattleItemtqueryType_GoldPlatformBuyGoldtqueryType_GoldPlatformSaleGoldtqueryType_GoldPlatUnclaimedGoldtqueryType_GoldPlatOverdueGoldt queryType_SCQDBAddBillboardPointtqueryType_SCQDBGiveRewordt!queryType_AcceptOrRefuseFamilywartqueryType_JionExamtqueryType_GmOpenFBtqueryType_ViewVsRoomtqueryType_AddFamilyActiontqueryType_DelFamilyActiontqueryType_FBPassRectqueryType_FBPassInfotqueryType_FamilyArresttqueryType_UniversalGameRectqueryType_RequestIsFamilytqueryType_CanOnThreeDaytqueryType_NotePlayerFamilyInfotqueryType_CampaignPlayerFamilytqueryType_NoteTruckOwnerInfotqueryType_ActionThemePlacetqueryType_FamilyImpeacht queryType_RequestJoinVsRoomSupert"queryType_ResponsesJoinVsRoomSupertqueryType_SyncJoinVsRoomSupert queryType_SyncJoinPlayerVsPlayertqueryType_VsRoomSuperAwardtqueryType_QuerDoubleExptqueryType_BeginSpanServertqueryType_JoinSpanServert queryType_SpanServerBattleResulttqueryType_CreatPlayerVsPlayertqueryType_JoinPlayerVsPlayertqueryType_JoinMergeWarPretqueryType_UpdatePlayerNametqueryType_ServerRewardNotifytqueryType_EnterFBtqueryType_NPCInfotqueryType_NPCCnttDef_UpperLimit_DWordExtDef_UpperLimit_DWordtDef_PerPointValuet Def_HugeValuetDef_Matrix_OnetDef_Matrix_TwotDef_Matrix_ThreetDef_Matrix_FourtDef_Matrix_FivetDef_Matrix_SixtDef_Matrix_SeventDef_Matrix_EighttDef_Matrix_NinetDef_Circle_Threet
MatrixDicttDef_Straight_OnetDef_Straight_TwotDef_Straight_ThreetDef_Straight_FourtDef_Straight_FivetDef_Straight_SixtDef_Straight_SeventDef_Straight_EighttDef_Straight_NinetDef_Sector_OnetDef_Sector_TwotDef_Sector_ThreetDef_Sector_FourtDef_Sector_FivetDef_Sector_SixtDef_Sector_SeventDef_Angle_MatrixDictR¦tDef_DropItemAreaMatrixtDef_RebornPos_Area_RangetRebornTypeCounttDef_RebornTypeListtrebornType_CitytrebornType_SkilltrebornType_HealthtrebornType_UseItemtrebornType_MainCitytrebornType_SystemtDef_Action_CounttDef_Action_ClosetDef_Action_OpentDef_Action_GoingtDef_Action_PausetDef_PetRoleGapLVMaxtDef_Pet_ProcessHP_TicktDef_Player_AutoCheck_CounttDef_AutoCheck_State_SafetDef_AutoCheck_State_DangertDef_KillValue_NotorietytDef_BeKilledValue_NotorietytDef_AddPrestige_DayMissiontDef_AddPrestige_MissiontDef_AddPrestige_FamilyBattletDef_AddPrestige_FamilytDef_AddPrestige_KilltDef_AddPrestige_GMtDef_AddPrestige_SacrificetDef_AddPrestige_CardstDef_AddPrestige_JXDtDef_AddPrestige_ItemtDef_AddPrestige_ArresttDef_AddPrestige_TrucktDef_AddPrestige_GloryWartDef_AddPrestige_JLDtDef_AddPrestige_FamilystDef_AddPrestige_MYDHZtDef_AddPrestige_GiveFlowertDef_AddPrestige_NPCtDef_SubPrestige_BeKilledtDef_SubPrestige_DayUsetDef_SubPrestige_GMtDef_DoubleExpNote_StoptDef_DoubleExpNote_StopOfftDef_DoubleExpNote_OpentDef_GameWallow_LV_NonetDef_GameWallow_LV_1_1tDef_GameWallow_LV_1_2tDef_GameWallow_LV_FirsttDef_GameWallow_LV_SecondtDef_GameWallow_LV_2_1tDef_GameWallow_LV_2_2tDef_GameWallow_LV_2_3tDef_GameWallow_LV_ThirdtDef_GameWallow_LV_MaxtDef_ShopType_NpcShoptDef_ShopType_LongSaletDef_NPC_Dict_CycloneTagPosXtDef_NPC_Dict_CycloneTagPosYtDef_NPC_Dict_MovePointIndextDef_NPC_Dict_QuitBattleTicktDef_NPC_Dict_HPPerLogicMarktDef_NPC_Dict_CollectPlayerIDtDef_NPC_Dict_FromRefreshMarktDef_NPC_Dict_FromRefreshValuet!Def_NPC_Dict_SummonMapNPCPlayerIDtDef_NPC_Dict_SkillUseCntt Def_NPC_Dict_Undeath_LayerLostHPtDef_NPC_Dict_Undeath_BuffLayertDef_NPC_Dict_LastDropOwnerTypetDef_NPC_Dict_LastDropOwnerIDtDef_NPC_Dict_BossMaxHurtIDt Def_NPC_Dict_LastRefreshHurtTicktDef_NPC_Dict_InHurtProtectt!Def_NPC_Dict_RebornPreNotifyIndextDef_NPC_Dict_SkillWarnSkillIDtDef_NPC_Dict_SkillWarnTimetDef_NPC_Dict_SkillWarnPosCnttDef_NPC_Dict_SkillWarnPosXtDef_NPC_Dict_SkillWarnPosYtDef_NPC_Dict_AtkMovePosXtDef_NPC_Dict_AtkMovePosYtDef_NPC_Dict_SpeedPertDef_NPC_Dict_AtkDelayTicktDef_NPC_Dict_AtkStartTicktDef_PlayerStateListtDef_PlayerState_NormaltDef_PlayerState_FreezedtDef_PlayerState_SlowtDef_PlayerState_LoseBloodtDef_PlayerState_ShieldtDef_PlayerState_DamBackShieldtDef_PlayerState_SneertDef_PlayerState_StuntDef_PlayerState_AddAtktDef_PlayerState_WeakDeftDef_PlayerState_LimitSkilltDef_PlayerState_LimitAddHPtDef_PlayerState_BlindtDef_PlayerState_LoseBlood1tDef_PlayerState_LoseBlood2tDef_PlayerState_LoseBlood3tDef_PlayerState_MissSneerAtktDef_GameObjKey_InheritOwnertDef_PlayerKey_ZhanshatDef_PlayerKey_ZhuxianRatetDef_PlayerKey_ZhuxianHurtPertDef_PlayerKey_LockHPSkillIDt#Def_PlayerKey_GodWeaponBeforeProDeftDef_PlayerKey_curHurtValuetDef_PlayerKey_DefenderObjIDtDef_PlayerKey_SomersaultTimetDef_PlayerKey_CopyFuncAttrtDef_Player_RefreshAttrByBufftDef_PlayerKey_ChangeMapIDtDef_PlayerKey_ResetFBLinePosXtDef_PlayerKey_ResetFBLinePosYt Def_PlayerKey_AttackFollowMastertDef_PlayerKey_MoreHurtValuetDef_PlayerKey_BloodShiledHurttDef_PlayerKey_AbsorbShieldValuetDef_PlayerKey_AbsorbShieldMaxtDef_PlayerKey_AbsorbShieldtDef_PlayerKey_StartEquipCntt!Def_PlayerKey_TJGPackFullAfterEattDef_PlayerKey_TJGStartTimetDef_PlayerKey_EquipTimetDef_PlayerKey_PowerPartTimetDef_PlayerKey_PowerPartCountt Def_PlayerKey_ClientMaxHurtValuetDef_Player_RefreshAttrt%Def_Player_NoSave_Dict_SendInviteCodetDef_PlayerKey_LoadMapIsLogint Def_PlayerKey_NotifyAllAttrStatetDef_PlayerKey_LoginTicktDef_PlayerKey_CalcOLTimeTicktDef_PlayerKey_SitForZhenQitDef_PlayerKey_MusetDef_PlayerKey_EfficientSitt$Def_PlayerKey_ProficiencySkillTypeIDtDef_PlayerKey_ExpFullNotifyt!Def_PlayerKey_PickupItemPutInTemptDef_PlayerKey_CollectLostHPTicktDef_PlayerKey_TransMapIdtDef_PlayerKey_TransPosXtDef_PlayerKey_TransPosYtDef_PlayerKey_TransTypetDef_PlayerKey_TransAutoBuyItemtDef_PlayerKey_TransMoneytDef_PlayerKey_TransMoneyTypetDef_PlayerKey_TransTickt"Def_PlayerKey_SyncVIPKillNPCLVInfot$Def_PlayerKey_FamilyArrestQueryStatetDef_PlayerKey_Frist_Lockt#Def_PlayerKey_TaskExpRewardMultipletDef_PlayerKey_BuyItemCnttDef_PlayerKey_SpeedValueNotBufftDef_PlayerKey_SpeedValuetDef_PlayerKey_SpeedHorsetDef_PlayerKey_AtkSpeedSettDef_PlayerKey_AtkIntervaltDef_PlayerKey_AtkTickt'Def_PlayerKey_QueryOpenServerAwardStatet&Def_PlayerKey_QueryMixServerAwardStatet"Def_PlayerKey_QueryFamilyStoreTickt"Def_PlayerKey_QueryMarkIdCardIndext!Def_PlayerKey_QueryNewGuyCardTypetDef_PlayerKey_TradeTagNPCt Def_PlayerKey_LastSkillComboTicktDef_PlayerKey_SkillComboCnttDef_PlayerKey_ComboSkillTypeIDtDef_PlayerKey_ComboAddHurtPert#Def_PlayerKey_ComboBuffProcessStatetDef_PlayerKey_LvAwardQueryStatetDef_PlayerKey_StoreQueryStatetDef_PlayerKey_TotalExpRatetDef_PlayerKey_TeamExpRatetDef_PlayerKey_TeamMemCounttDef_PlayerKey_CurStatetDef_PlayerKey_AttrFaintRatetDef_PlayerKey_AttrFaintDefRatetDef_PlayerKey_AttrAtkerFreezedtDef_PlayerKey_AttrAddAngrytDef_PlayerKey_AttrComboRatetDef_PlayerKey_AttrComboDamPert Def_PlayerKey_SkillAtkRateReducetDef_PlayerKey_AttrDropEquipPertDef_PlayerKey_AttrDamagePertDef_PlayerKey_AttrDamagePerPVEtDef_PlayerKey_AttrDamagePerPVPt$Def_PlayerKey_AttrDamagePerPVPReducetDef_PlayerKey_AttrHurtPertDef_PlayerKey_AttrDamChanceDeftDef_PlayerKey_AttrMaxProDeftDef_PlayerKey_AttrProDefHPPertDef_PlayerKey_AttrProDefAbsorbtDef_PlayerKey_AttrPetMinAtktDef_PlayerKey_AttrPetMaxAtktDef_PlayerKey_AttrPetDamPertDef_PlayerKey_PetSkillAtkRatetDef_PlayerKey_AttrPerLVAtktDef_PlayerKey_AttrPerLVMaxHPt"Def_PlayerKey_AttrShieldMPCostRatetDef_PlayerKey_AttrXPRestorePertDef_PlayerKey_MarkLoadMapTickt%Def_PlayerKey_MTFreeOnlineRefreshTicktDef_PlayerKey_MFPFightPowertDef_PlayerKey_MFPSkilltDef_PlayerKey_MFPExtDef_PlayerKey_AtkWithoutBufftDef_PlayerKey_DefWithoutBufftDef_PlayerKey_HPWithoutBufftDef_PlayerKey_KillPlayerCnttDef_PlayerKey_IsInFBOnDayt!Def_PlayerKey_FBCommendFightPowertDef_PlayerKey_RecordXPValuetDef_PlayerKey_CollectNPCObjIDt Def_PlayerKey_AreaRewardMultiplet Def_PlayerKey_AttrActivatyNotifyt&Def_PlayerKey_AttrActivatyRecordStarLVt'Def_PlayerKey_AttrActivatyRecordStoneLVt+Def_PlayerKey_AttrActivatyRecordQualityECntt(Def_PlayerKey_AttrActivatyRecordSuiteCntt*Def_PlayerKey_AttrActivatyRecordQualityCnttDef_PlayerKey_LastHurttDef_PlayerKey_AddBackHPPertDef_PlayerKey_ReduceBackHPPertDef_PlayerKey_NPCHurtAddPertDef_PlayerKey_JobAHurtAddPertDef_PlayerKey_JobBHurtAddPertDef_PlayerKey_JobCHurtAddPertDef_PlayerKey_NPCAtkReducePertDef_PlayerKey_JobAAtkReducePertDef_PlayerKey_JobBAtkReducePertDef_PlayerKey_JobCAtkReducePertDef_PlayerKey_LuckyHitReducePertDef_PlayerKey_GreatHitReducePertDef_PlayerKey_SuperHitReducePert Def_PlayerKey_IgnoreDefReducePert Def_PlayerKey_LuckyHitRateReducet Def_PlayerKey_GreatHitRateReducet Def_PlayerKey_SuperHitRateReducet!Def_PlayerKey_IgnoreDefRateReducetDef_PlayerKey_LastHurtValuetDef_PlayerKey_LastHurtNPCObjIDtDef_PlayerKey_ReduceSkillCDPertDef_PlayerKey_CommMapExpRatetDef_PlayerKey_FinalHurtPertDef_PlayerKey_FuhaoHitRatetDef_PlayerKey_FinalHurttDef_PlayerKey_BleedDamagetDef_PlayerKey_FinalHurtReducetDef_PlayerKey_BossIDHurttDef_PlayerKey_BossIDHurtAddPertDef_PlayerKey_DropEquipDoCounttDef_PlayerKey_BaseAtkMintDef_PlayerKey_BaseAtkMaxtDef_PlayerKey_BaseMaxHPtDef_PlayerKey_BaseDeftDef_PlayerKey_BaseHittDef_PlayerKey_BaseMisstDef_PlayerKey_BaseAtkAddPertDef_PlayerKey_BaseMaxHPAddPertDef_PlayerKey_BaseDefAddPertDef_PlayerKey_BaseHitAddPertDef_PlayerKey_BaseMissAddPertDef_PlayerKey_HorcruxBasePertDef_PlayerKey_EquipBaseAddPertDef_PlayerKey_WeaponAtkAddPertDef_PlayerKey_RelicsAtkAddPertDef_PlayerKey_ArmorMaxHPAddPertDef_PlayerKey_ArmorDefAddPertDef_PlayerKey_GodWeaponMaxHPPertDef_PlayerKey_GodWeaponAtkPertDef_PlayerKey_StoneMaxHPPertDef_PlayerKey_StoneAtkPertDef_PlayerKey_HPCureEnhancetDef_PlayerKey_HadInitFruitAttrtDef_PlayerKey_LastReinTicktDef_PlayerKey_OnlyFinalHurttDef_PlayerKey_PVPAtkBackHPtDef_PlayerKey_HitSucessRatetDef_PlayerKey_MissSucessRatetDef_PlayerKey_CurePertDef_PlayerKey_BeHurtPertDef_PlayerKey_HorseAtkPertDef_PlayerKey_StoneBasePertDef_PlayerKey_RealmBasePertDef_PlayerKey_WingHPPertDef_PlayerKey_SuiteBasePertDef_PlayerKey_PlusBaseAtkPertDef_PlayerKey_FruitAttrtDef_PlayerKey_FruitFightPowerExtDef_PlayerKey_FamilyLVLeavetDef_PlayerKey_CalcAddAttrTypetDef_PlayerKey_CalcAddAttrValuetDef_PDict_QueryTechLVUPStatetDef_PDict_PKStateTicktDef_PDict_BossStateTicktDef_PDict_MapAreaExpTicktDef_PDict_EquipTotalBaseMinAtktDef_PDict_EquipTotalBaseMaxAtktDef_PDict_EquipTotalBaseDeftDef_PDict_EquipTotalBaseHPt"Def_PDict_TodayXianyuanCoinOnLogint'Def_PDict_LoginAddTodayXianyuanCoinTimetDef_PDictType_DefaulttDef_PDictType_OnlinePrizetDef_PDictType_FBWipeOuttDef_PDictType_FlashSaletDef_PDictType_TJGNotifytDef_PDictType_LVAwardtDef_PDictType_GoldGiftt Def_PDictType_OpenServerCampaigntDef_PDictType_WeekPartyt!Def_PDictType_Family_ContributiontDef_PDictType_LoginAwardtDef_PDictType_OfficialRanktDef_PDictType_HorsetDef_PDictType_WingtDef_PDictType_FBtDef_PDictType_FightPowertDef_PDictType_TeHuiActiontDef_PDictType_ActivitytDef_PDictType_GoldInvesttDef_PDictType_19tDef_PDictType_SuccesstDef_PDictType_GFPassivetDef_PDictType_TotemtDef_PDictType_GroupFRechargetDef_PDictType_ElementtDef_PDictType_ReincarnationtDef_PDictType_GreatMastertDef_PDictType_BloodElftDef_PDictType_28tDef_PDictType_29tDef_PDictType_QQtDef_PDict_GeTuiSettDef_PDict_NoGeTuiTimetDef_PlayerKey_TJGNPCtDef_PDict_OnHourtDef_PDict_OnDaytDef_PDict_OnWeektDef_PDict_OnMonthtDef_PDict_OnYeartDef_PDict_OnDayExtDef_PDict_OnWeekExtDef_PDict_OnMonthExtDef_Player_Dict_PlayerFromPIDtDef_Player_Dict_Account_TypetDef_Player_Dict_TencentPFtDef_Player_Dict_FirstLogintDef_GuideStateKeyCounttDef_Player_Dict_GuideStatetDef_Player_Dict_VersionFixt!Def_Player_Dict_PrestigeAwardMarkt"Def_Player_Dict_AutoCheckHack_Waitt$Def_Player_Dict_AutoCheckHack_Sourcet"Def_Player_Dict_AutoCheckHack_Typet#Def_Player_Dict_AutoCheckHack_Statet Def_Player_Dict_Captcha_WaitTickt Def_Player_Dict_Captcha_WaitSignt Def_Player_Dict_Captcha_ErrCounttDef_Player_Dict_Captcha_Answert$Def_Player_Dict_AutoCheckHack_ErrCnttMax_StoryMissionNumt!Def_Player_Dict_StoryMissionStatet!Def_Player_Dict_TaskLastKillNPCIDt"Def_Player_Dict_TaskLastVisitNPCIDtLittleHelperSetNumCounttLittleHelperValueCountt!Def_Player_Dict_LittleHelperValuetDef_Player_Dict_FromMapIDtDef_Player_Dict_FromPosXtDef_Player_Dict_FromPosYtDef_Player_Dict_FromLineIDtDef_PlayerKey_CrossRegisterMaptDef_PlayerKey_IsCrossPKMatchingtDef_Player_Dict_FamilyTechLVt!Def_Player_Dict_RouteServerInitOKtDef_Player_Dict_Wallow_LVt"Def_Player_Dict_Wallow_OfflineTimet!Def_Player_Dict_Wallow_OnlineTimet Def_Player_Dict_CabinetCount_Pett'Def_Player_Dict_CabinetCount_WeaponCoatt&Def_Player_Dict_CabinetCount_DressCoatt"Def_Player_Dict_CabinetCount_HorsetDef_Player_Dict_OffDaysAwardtDef_Player_Dict_CheckInviteCodetDef_Player_Dict_JM_OpenXWtDef_Player_Dict_PackCount_Itemt#Def_Player_Dict_PackCount_Warehouset Def_Player_Dict_PlayerMapSignCntt"Def_Player_Dict_PlayerBuyZhenQiCntt Def_Player_Dict_PlayChangeLineIDt Def_Player_Dict_FuncChangeLineIDt Def_Player_Dict_HighChangeLineIDt"Def_Player_Dict_FBFirstEnterRecordtDef_FBStar_MaxKeyCnttDef_Player_Dict_ReqFBFuncLinetDef_Player_Dict_TeamFBAverageLVtDef_Player_Dict_TeamFBMaxLVtDef_Player_Dict_TeamFBPlayerCnttDef_Player_Dict_ReqFBMissionIDt Def_Player_Dict_ReqFBMissionTypet"Def_Player_Dict_PlayerFBStar_MapIdtDef_Player_Dict_EnterFbCntDaytDef_Player_Dict_BuyFbCntDaytDef_Player_Dict_RecoverFbCnttDef_Player_Dict_ItemAddFbCnttDef_Player_Dict_EnterFbCntWeekt$Def_Player_Dict_FbCntRegainStartTimet$Def_Player_Dict_FbCntRegainTotalTimet Def_Player_Dict_FBHistoryMaxLinetDef_Player_Dict_IceLoadLineIDt)Def_Player_Dict_RefurbishGoodBookPlayerLvt"Def_Player_Dict_GameFuncFirstToucht"Def_Player_Dict_GameFuncAwardStatetDef_Player_Dict_MissionFinisht&Def_Player_Dict_FamilyArrestAwardStatetDef_Player_Dict_OtherDayLogintDef_Player_Dict_LoginValidt#Def_Player_Dict_RequestAddFamilyCntt"Def_Player_Dict_RequestAddFamilyIDt"Def_Player_Dict_FamilyIDChangeTimetDef_Player_Dict_LastFamilyIDtDef_Player_Dict_SingDaytDef_Player_Dict_GiveSignAwardt Def_Player_Dict_ActivityValueDayt!Def_Player_Dict_GiveActivityAwardt Def_Player_CrazyBilling_VIP_CointDef_Player_Dict_LoginTypet$Def_Player_Dict_TruckRefreshTotalCntt%Def_Player_Dict_FreeRefurbishTruckCnttDef_Player_Dict_TruckLVtDef_Player_Dict_DestroyTruckCnttDef_Player_Dict_AutoTruckt%Def_Player_Dict_CommonNewGuyCardStatet!Def_Player_Dict_IDNewGuyCardStatet"Def_Player_Dict_UseNewGuyCardStatet!Def_Player_Dict_UseMediaCardStatet Def_Player_Dict_UseNewGuyCardNumtDef_Player_Dict_PawnTruckLVt%Def_Player_Dict_KillPlayerAddPrestigetDef_Player_Dict_RandCoinAwardtDef_Player_Dict_DeadTimetDef_Player_Dict_PlayerDeadCnttDef_Player_Dict_SignDayCntt"Def_Player_Dict_ForbidFamilyActiont!Def_Player_Dict_ForbidFamilyAwardtDef_Player_Dict_HasApplyVIPClubtDef_Player_Dict_HasVIPClubNotetDef_Player_Dict_PyPlayerActiontDef_Player_Dict_FamilyLVtDef_Player_UpdatePlayerNameCntt)Def_Player_Dict_UpdatePlayerNameItemIndext Def_Player_Dict_UpdatePlayerNamet)Def_Player_Dict_UpdateFamilyNameItemIndext Def_Player_Dict_UpdateFamilyNametDef_Player_Dict_FamilyDayAwardtDef_Player_Dict_DelPackIndextDef_Player_Dict_HasPrayCnttDef_Player_Dict_HistoryPrayCnttDef_Player_Dict_FreePrayTimetDef_Player_Dict_FreeBuyCnttDef_Player_Dict_RefineGiftCnttDef_Player_Dict_RefineStartTimetDef_PDict_TreasureStatetDef_PDict_TreasureFreeCntt#Def_PDict_TreasureTodayTotalFreeCntt&Def_PDict_TreasureStartCalcFreeCntTimetDef_PDict_TreasureFreeTimetDef_PDict_TreasureCounttDef_PDict_TreasureLuckt$Def_Player_Dict_LastAutoOpenPackTickt&Def_Player_Dict_VipExperienceStartTimetDef_Player_Dict_VipExptDef_Player_Dict_VipAwardRecordtDef_Player_Dict_VipBuyRecordtDef_Player_Dict_VIPLastTimet Def_Player_Dict_VipTimeOutRecordtDef_Player_Dict_VIPKillLVtDef_Player_Dict_VIPKillLVExpt!Def_Player_Dict_VIPKillLVExpPointtDef_PDict_OnlinePrizeNotetDef_PDict_DayOnlineTimetDef_PDict_OnlineStartTicktDef_PDict_LVAwardGetRecordtDef_PDict_LVAwardVIPGetRecordtDef_PDict_CTGCountResetTimetDef_PDict_TodayCTGCounttDef_PDict_CTGGoodsBuyCounttDef_PDict_GoldGiftGetRecordtDef_PDict_GoldGiftMailRecordtDef_PDict_GoldGiftFirstRecordtDef_PDict_FirstGoldRemainTimetDef_PDict_FirstGoldTipStartTimetDef_PDict_FirstGoldTrytDef_PDict_DailyGoldChargeStatetDef_PDict_DailyChargeStatetDef_PDict_SuperGiftStartTimetDef_PDict_SuperGiftHasOpent$Def_PDict_DailyGoldChargePrizeRecordtDef_PDict_DailyGoldChargeCnttDef_PDict_SingleGoldGiftIndextDef_PDict_UnlimitedGoldGiftCntRûtDef_PDict_FamilyWarDailyRewardtDef_PDict_Family_Contributiont.Def_PDict_HasChange_FamilyActiveToContributiontDef_PDict_FreeGiveFlowerCnttDef_PDict_GiveFlowerCntByDaytDef_PDict_PackCount_FineSoultDef_PDict_KillPlayerAddActivetDef_PDict_FreshmanGuideDayt&Def_PDict_FreshmanGuideSpeakerCntTodaytDef_PDict_LoginDayCnttDef_PDict_LoginDayAwardtDef_PDict_CollNpcIDCollTimetDef_PDict_ShopItemDayBuyCnttDef_PDict_ShopItemStartTimetDef_PDict_ShopItemBuyCnttDef_PDict_ShopItemOpenStatetDef_PDict_TimeShopRefreshCntt'Def_PDict_TimeShopLastGlobalRefreshTimetDef_PDict_HighLadderFightCnttDef_PDict_HighLadderAddCnttDef_PDict_HighLadder_Currencyt!Def_PDict_HighLadder_DayRewardGottDef_PDict_HighLadder_CDTimet Def_PDict_HighLadder_CDBeginTimetDef_PDict_HighLadder_IsRelCDt"Def_PDict_HighLadder_WinningStreakt$Def_PDict_HighLadder_HistoryMaxOrdertDef_PDict_MixLoginDayStatetDef_PDict_FestivalLoginStatetDef_PDict_CurrencytDef_PDict_TJGSettDef_PDict_TJGDeadTimetDef_PDict_TJGDeadPayTimetDef_PDict_TJGDeadExptDef_PDict_TJGDeadExp1tDef_PDict_LoginClientTypetDef_PDict_ReUpdBillboardSignt#Def_PDict_MSFirstLogin_UpdBillboardtDef_PDict_MixLoginDaytDef_PDict_ExcActionItemCnttDef_PDict_AttrFruitEatCnttDef_PDict_AttrFruitAddValuetDef_PDict_NobleLVtDef_PDict_NobleEndTimetDef_PDict_NobleExperStatetDef_PDict_RecoverFBCommonCnttDef_PDict_RecoverFBExtraCnttDef_PDict_RecoverFBBuyCnttDef_PDict_RecoverFBItemAddCnttDef_PDict_RecoverFBNoBuyCnttDef_PDict_RecoverGainDatatDef_PDict_RecoverGainDataExtDef_PDict_HaveRecovertDef_PDict_RecoverGainLastTimetDef_PDict_ActionItemDropTimetDef_PDict_NPCKillCountDroptDef_PDict_NPCKillCounttDef_PDict_RedPacketInviteGettDef_PDict_RedPacketGetStatetDef_PDict_RedPacketGrabCnttDef_PDict_ItemUseCntTodaytDef_PDict_DayLoginSignIsMultitDef_PDict_DayLoginSignNumtDef_PDict_TotalSignNumtDef_PDict_DayLoginSignStatetDef_PDict_DayLoginSignStartTimetDef_PDict_GodWeaponLVtDef_PDict_GodWeaponExptDef_PDict_GodWeaponStatetDef_PDict_ClothesSkinLVtDef_PDict_ClothesChestLVtDef_PDict_ClothesChestEXPtDef_PDict_CostVIPExptDef_PDict_CostVIPLVRewardtDef_PDict_CostVIPBuyItemt!Def_PDict_SpecialCostVIPLVExpMarktDef_PDict_CostVIPGrowUpRewardtDef_PDict_SplitExpLVCnttDef_PDict_IsAddReviveTiredtDef_PDict_ComposeMustSuccesstDef_PDict_FirstSuccMakeJobItemtDef_PDict_DownloadAwardStatetDef_PDict_ChestsOpenCounttDef_PDict_RunTaskAwardStatetDef_PDict_RunTaskAwardRecordtDef_PDict_RunTaskNextMissionIDtDef_PDict_EquipPartStarLVtDef_PDict_EquipActiveStarLVtDef_PDict_EquipPartProficiencytDef_PDict_EquipActiveStarstDef_PDict_EquipPartStoneIDtDef_PDict_EquipWashLVtDef_PDict_EquipWashValuetDef_PDict_EquipWashValueTemptDef_PDict_BZZD_TotalFightExpt!Def_PDict_BZZD_TotalFightExpPointt Def_PDict_BZZD_FirstEnterExpTimetDef_PDict_PubCDFBS_TimetDef_PDict_PubCDFBS_MapIDtDef_PDict_PubCDFBS_LineIDtDef_PDict_PubCDFBS_CnttDef_PDict_PubCDFBS_DataExtDef_PDict_FightPetIndextDef_PDict_EquipDecomposeLVtDef_PDict_EquipDecomposeExptDef_PDict_EquipDecomposeSetingtDef_PDict_EquipDecomposeCntt!Def_Player_Dict_TrialTower_PassLVt(Def_Player_Dict_TrialTower_LastDayPassLVtDef_Player_Dict_GodArea_Angert(Def_Player_Dict_GodArea_LastAddAngerTimet%Def_Player_Dict_ElderBattlefieldStaget$Def_Player_Dict_FamilyPartyAnswerCnttDef_PDict_VPackItemtDef_Player_RechargeOnce_CointDef_Player_Dict_ArrestTaskStartDef_Player_Dict_ArrestTaskDatat%Def_Player_Dict_ArrestTaskAwardRecordt#Def_Player_Dict_ArrestTaskFinishCnttDef_Player_Dict_FMTDoubletDef_Player_Dict_FMTOldDoubletDef_PDict_FreeGoodsOpenTimetDef_PDict_FreeGoodsBuyStatetDef_PDict_CostRebateIDtDef_PDict_CostRebateTemplateIDtDef_PDict_CostRebateGoldtDef_PDict_CostRebateAwardRecordtDef_PDict_TotalRechargeIDt!Def_PDict_TotalRechargeTemplateIDtDef_PDict_TotalRechargeGoldt"Def_PDict_TotalRechargeAwardRecordtDef_PDict_SpringSaleIDtDef_PDict_SpringSaleMailStatetDef_PDict_FlashGiftbagIDtDef_PDict_FlashGiftbagBuyCounttDef_PDict_FlashGiftbagMailStatetDef_PDict_BossRebornIDtDef_PDict_BossRebornTemplateIDtDef_PDict_BRActionCurTimestDef_PDict_BRActionGotTimestDef_PDict_BRActionWorldLVtDef_PDict_FairyCeremonyIDtDef_PDict_FCActionWorldLVtDef_PDict_FCRechargeStatetDef_PDict_FCPartyCurCnttDef_PDict_FCPartyCurPointtDef_PDict_FCPartyAwardRecordtDef_PDict_FCCostGoldtDef_PDict_BindJadeWheelCurCntt!Def_PDict_BindJadeWheelHistoryCnttDef_PDict_FlashSaleIDtDef_PDict_FlashSaleStatetDef_PDict_FlashSaleMailStatetDef_PDict_FlashSaleYYtDef_PDict_WishingWellIDtDef_PDict_WishingWellFreeTimetDef_PDict_WishingWellAwardTimetDef_PDict_WishingWellRefreshCnttDef_PDict_WishingWellItemtDef_PDict_WishingWellItemCnttDef_PDict_ChatBubbleBoxStatet Def_PDict_IceLodeStarAwardRecordtDef_PDict_IceLodeHasSweeptDef_PDict_IceLodeLastCheckTimetDef_PDict_IceLodeDayLVtDef_PDict_IceLodeIsInFBOnDayt Def_PDict_HelpBattleCheckInCounttDef_PDict_HelpBattleTotalCounttDef_PDict_FBRealHelpCounttDef_PDict_WeekPartyIDtDef_PDict_WeekPartyCurTimestDef_PDict_WeekPartyGotTimestDef_PDict_WeekPartyAwardRecordtDef_PDict_WeekPartyPointtDef_PDict_LoginAwardIDtDef_PDict_LoginAwardCurTimestDef_PDict_LoginAwardGotTimestDef_PDict_ZhuXianBossHelpCnttDef_PDict1_OnlinePrizeCnttDef_PDict1_OnlinePrizeTimetDef_PDict1_DayOnlinePrizeCnttDef_PDict1_DayOnlinePrizeTimetDef_PDict_OSC_BillAwardRecordtDef_PDict_OSC_TagAwardRecordtDef_PDict_OSC_RecordDatatDef_PDict_OSC_EndMailStatet'Def_PDict_MixServerCampaign_AwardRecordt&Def_PDict_MixServerCampaign_RecordDatat%Def_PDict_MixServerCampaign_MailStatetDef_PDict_Horser_LVtDef_PDict_Horser_ExptDef_PDict_Horser_MultipletDef_PDict_Rune_HoleOpenStatetDef_PDict_Rune_DatatDef_PDict_GatherSoulHoleDatat Def_PDict_FamilyBossFBAwardStatetDef_PDict_LastEnterFBPropertyIDtDef_PDict_LastEnterFBTicktDef_PDict_ManorWarJoinDaytDef_PDict_ManorWarContinueTickt Def_PDict_ManorWarJoinAwardStatet"Def_PDict_ManorWarDailyAwardRecordtDef_PDict_FightPower_HighesttDef_PDict_FightPower_TotaltDef_PDict_FightPower_HorsetDef_PDict_FightPower_ListtDef_PDict_TeHui_ActionIDt"Def_PDict_TeHui_ClassUPAwardRecordtDef_PDict_TeHui_RechargeGotCntt!Def_PDict_TeHui_RechargeCanGetCntt$Def_PDict_TeHui_RechargeCurTotalGoldt!Def_PDict_TeHui_RechargeTotalGoldt#Def_PDict_TeHui_RechargeTotalGoldExtDef_PDict_TeHui_LastRechargeNumt%Def_PDict_TeHui_RechargeRankTotalGoldt'Def_PDict_TeHui_RechargeRankTotalGoldExtDef_PDict_TeHui_CostTotalGoldtDef_PDict_TeHui_CostAwardStatetDef_PDict_TeHui_LastCostIndext!Def_PDict_TeHui_CostRankTotalGoldt#Def_PDict_TeHui_CostRankTotalGoldExtDef_PDict_Activity_FinishCnttDef_PDict_Activity_TotalPointtDef_PDict_ActivityAwardRecordtDef_PDict_Activity_AwardStagetDef_PDict_Activity_RealmPointt"Def_PDict_Activity_ExtraRealmPointtDef_PDict_DailyActionDayTimestDef_PDict_DailyActionWeekTimest!Def_PDict_FamilyActivityFinishCntt#Def_PDict_FamilyActivityAwardRecordtDef_PDict_GoldInvest_TimetDef_PDict_GoldInvest_GoldtDef_PDict_GoldInvest_AwardDatat#Def_PDict_GoldInvest_GotRewardValuetDef_PDict_Success_AwardRecordtDef_PDict_Success_LastDaytDef_PDict_Success_CntValuetDef_PDict_Success_FinishTimetDef_PDict_Success_CheckVersiontDef_PDict_QQUpYellowAwardRecordtDef_PDict_QQUpBlueAwardRecordtDef_PDict_QQNewManAwardRecordtDef_PDict_QQDayGiftAwardRecordtDef_PDict_QQTaskMarketRecordtDef_Tencent_PF_ListtDef_PDict_QzoneUpAwardRecordt Def_PDict_QzoneNewManAwardRecordtDef_PDict_QzoneDayAwardRecordtDef_PDict_Reinc_ReikitDef_PDict_Reinc_ChangeReikiCntt!Def_PDict_Reinc_ChangeReikiAddCnttDef_PDict_Reinc_AwardRecordtDef_PDict_Master_ExptDef_PDict_Master_ExpPointtDef_PDict_Master_FreeSkillPointtDef_PDict_CrossPK_TotalScoretDef_PDict_CrossPK_OnDayScoretDef_PDict_CrossPK_DanLVtDef_PDict_CrossPK_PKCounttDef_PDict_CrossPK_WinCounttDef_PDict_CrossPK_CWinCounttDef_PDict_CrossPK_TodayPKCounttDef_PDict_CrossPK_TodayWinCounttDef_PDict_CrossPK_TodayBuyCounttDef_PDict_CrossPK_ItemAddCountt&Def_PDict_CrossPK_DayPKCountAwardStatet'Def_PDict_CrossPK_DayWinCountAwardStatet!Def_PDict_CrossPK_DanLVAwardStatet"Def_PDict_CrossPK_SeasonAwardStatetDef_PDict_CrossPK_ZoneIDtDef_PDict_CrossPK_SeasonIDtDef_PDict_CrossPK_SeasonDanLVtDef_PDict_CrossPK_SeasonScoretDef_PDict_CrossPK_SeasonOrdertDef_PDict_CrossPK_SeasonAwardLVtDef_PDict_AutoFightSettingtDef_PDict_WorldBoss_HurtCnttDef_PDict_Boss_KillCntt Def_PDict_Boss_KillCntItemAddCnttDef_PDict_Boss_KillCntBuyCntt"Def_PDict_FamilyRedPacketGoldLimittDef_PDict_FamilyRedPacketCachetDef_PDict_OSRedPacketGrabMoneytDef_PDict_OSRedPacketCanGrabCnttDef_PDict_OSRedPacketStartTimetDef_PDict_RealmFBIsOpentDef_PDict_RealmFBAttrAddtDef_PDict_RealmSitAllTimetDef_PDict_RealmSitRemainTimetDef_PDict_RealmSitStartTimetDef_PDict_RealmSitStopTimetDef_PDict_MagicWeaponExptDef_PDict_MagicWeaponIsActivetDef_PDict_MagicWeaponIsClicktDef_PDict_MagicWeaponIsWeartDef_PDict_MagicWeaponRefineLVtDef_PDict_XBXZAwardRecordtDef_PDict_MagicWeaponLVtDef_PDict_MagicWeaponUpExptDef_PDict_MWSoulCurValuetDef_PDict_MWSoulGotValuetDef_PDict_MWSoulGotItemStatetDef_PDict_MWSoulActiveStatetDef_PDict_MWFBPassLeveltDef_PDict_AlchemyLVtDef_PDict_AlchemyExptDef_PDict_AlchemyCounttDef_PDict_AlchemyCountSpectDef_PDict_AlchemyOutputCounttDef_PDict_AlchemyPrayCnttDef_PDict_GFPassiveIndextDef_PDict_GFPassivePagetDef_PDict_Dice_ResulttDef_PDict_Dice_FreeChangeCnttDef_PDictType_TJGNotify_Exp1tDef_PDictType_TJGNotify_Exp2tDef_PDictType_TJGNotify_Timet!Def_PDictType_TJGNotify_EatPurpletDef_PDictType_TJGNotify_GiveCnttDef_PDictType_TJGNotify_PurpletDef_PDictType_TJGNotify_OrangetDef_PDictType_TJGNotify_LVtDef_PDictType_TJGNotify_ItemIDtDef_PDictType_TJGOnDayExtDef_PDict_XMZZLastStartTimetDef_PDict_EquipPartSuiteLVtDef_PDict_EquipPartSuiteNotifytDef_PDict_DogzFightStatet Def_PDict_DogzBuyHelpbattleCounttDef_PlayerPackDict_Index_Keyt Def_PlayerPackDict_Index_InitCnttDef_Type_CanBuyPack_PlayerDicttAttrName_MinAtktAttrName_MaxAtktAttrName_MinMAtktAttrName_MaxMAtkt AttrName_Atkt AttrName_MAtkt AttrName_DeftAttrName_DefRatetAttrName_MagAtkPertAttrName_AtkPertAttrName_MaxHPtAttrName_MaxMPtAttrName_MaxHPPertAttrName_MaxMPPertAttrName_IceAtktAttrName_FireAtktAttrName_PoisonAtktAttrName_ThunderAtktAttrName_WindAtktAttrName_IceDeftAttrName_FireDeftAttrName_PoisonDeftAttrName_ThunderDeftAttrName_WindDeftAttrName_DamReducePertAttrName_DamagePertAttrName_SpeedtAttrName_BothAtkt AttrName_HittAttrName_AutoRestoreHPPertAttrName_GreatHitRatetAttrName_GreatHittAttrName_LuckyHitRatetAttrName_LuckyHittAttrName_IgnoreDefRatetAttrName_AtkSpeedtAttrName_ReduceSkillCDtAttrName_BleedDamagetAttrName_KillBackHPtAttrName_KillBackMPtAttrName_DamBackPertAttrName_DropMoneyPertAttrName_BothAtkPertAttrName_DefRatePertAttrName_DefPertAttrName_HitPertAttrName_FightExpRatetAttrName_GameExpRatetAttrName_SkillAtkRatetAttrName_AtkBackHPPertAttrName_SuperHittAttrName_SuperHitRatetAttrName_NPCHurtAddPertAttrName_JobAHurtAddPertAttrName_JobBHurtAddPertAttrName_JobCHurtAddPertAttrName_NPCAtkReducePertAttrName_JobAAtkReducePertAttrName_JobBAtkReducePertAttrName_JobCAtkReducePertAttrName_LuckyHitReducePertAttrName_GreatHitReducePertAttrName_SuperHitReducePertAttrName_IgnoreDefReducePertAttrName_LuckyHitRateReducetAttrName_GreatHitRateReducetAttrName_SuperHitRateReducetAttrName_IgnoreDefRateReducetAttrName_FinalHurtPertAttrName_FuhaoHitRatetAttrName_FinalHurttAttrName_FinalHurtReducetAttrName_BossIDHurttAttrName_BossIDHurtAddPertAttrName_DropEquipDoCounttAttrName_PetAtktAttrName_PetSkillAtkRatetAttrName_PetDamPertDef_Effect_MaxHPtDef_Effect_MaxMPtDef_Effect_MisstDef_Effect_SuperHitRatetDef_Effect_SuperHittDef_Effect_SuperHitReducetDef_Effect_HittDef_Effect_MinAtktDef_Effect_MaxAtktDef_Effect_AtktDef_Effect_AddMAtktDef_Effect_AtkSpeedtDef_Effect_ToxinDeftDef_Effect_ThunderDeftDef_Effect_IgnoreDefRatetDef_Effect_IgnoreDefRateReducetDef_Effect_DamBackPertDef_Effect_GreatHittDef_Effect_LuckyHittDef_Effect_LuckyHitRatetDef_Effect_LuckyHitRateReducetDef_Effect_ReduceSkillCDtDef_Effect_IceAtktDef_Effect_IceDeftDef_Effect_HPRestoretDef_Effect_DropEquipPertDef_Effect_DropMoneyPertDef_Effect_FightExpRatetDef_Effect_DamChanceDeftDef_Effect_FaintRatetDef_Effect_FaintDefRatetDef_Effect_SkillAtkRatetDef_Effect_SkillAtkRateReducetDef_Effect_DamagePertDef_Effect_DamReducePertDef_Effect_DamagePerPVPtDef_Effect_DamagePerPVPReducetDef_Effect_ComboRatetDef_Effect_ComboDamPertDef_Effect_BleedDamagetDef_Effect_AtkBackHPtDef_Effect_NPCHurtAddPertDef_Effect_SuperHitRateReducetDef_Effect_FinalHurttDef_Effect_FinalHurtReducetDef_Effect_SpeedtDef_Effect_PetAtktDef_Effect_PetMinAtktDef_Effect_PetMaxAtktDef_Effect_PetDamPertDef_Effect_PetSkillAtkRatetDef_Effect_PerLVAtktDef_Effect_PerLVMaxHPtDef_Effect_MaxProDeftDef_Effect_ProDefHPPertDef_Effect_ProDefAbsorbtDef_Effect_OnlyFinalHurttDef_Effect_PVPAtkBackHPtDef_Effect_MaxHPPertDef_Effect_DefPertDef_Effect_HitRatetDef_Effect_MissRatetDef_Effect_AddMAtkByPertDef_Effect_AddAtkByPertDef_Effect_SuperHitPertDef_Effect_SpeedPertDef_Effect_IceAtkPertDef_Effect_IceDefPertDef_Effect_BaseAtkAddPertDef_Effect_BaseMaxHPAddPertDef_Effect_BaseDefAddPertDef_Effect_BaseHitAddPertDef_Effect_BaseMissAddPertDef_Effect_HorcruxBasePertDef_Effect_EquipBaseAddPertDef_Effect_WeaponAtkAddPertDef_Effect_RelicsAtkAddPertDef_Effect_ArmorMaxHPAddPertDef_Effect_ArmorDefAddPertDef_Effect_GodWeaponMaxHPPertDef_Effect_GodWeaponAtkPertDef_Effect_StoneMaxHPPertDef_Effect_StoneAtkPertDef_Effect_StoneBasePertDef_Effect_RealmBasePertDef_Effect_HorseAtkPertDef_Effect_WingHPPertDef_Effect_SuiteBasePertDef_Effect_PlusBaseAtkPertItemEffect_AttrDicttFuncNoLinearAttrDicttCalcAttrIndexListt CalcAttr_BasetCalcAttr_BaseNolinetCalcAttr_BattletCalcAttr_BattleNolinetDef_CalcAttrIndexDicttCalcAttrFuncListtDef_CalcAttrFunc_RoleBaset Def_CalcAttrFunc_EquipBaseWeapontDef_CalcAttrFunc_EquipBaseArmort Def_CalcAttrFunc_EquipBaseRelicstDef_CalcAttrFunc_EquiptDef_CalcAttrFunc_PlusBasetDef_CalcAttrFunc_PlusExtDef_CalcAttrFunc_StonetDef_CalcAttrFunc_SuittDef_CalcAttrFunc_WingtDef_CalcAttrFunc_WashtDef_CalcAttrFunc_PettDef_CalcAttrFunc_HorsetDef_CalcAttrFunc_PrestigetDef_CalcAttrFunc_GodWeapontDef_CalcAttrFunc_DienstgradtDef_CalcAttrFunc_RunetDef_CalcAttrFunc_HorcruxtDef_CalcAttrFunc_MagicWeapon1t Def_CalcAttrFunc_EquipOutOfPrinttDef_CalcAttrFunc_EquipAllStarstDef_CalcAttrFunc_SuccesstDef_CalcAttrFunc_VIPtDef_CalcAttrFunc_StovetDef_CalcAttrFunc_FamilyTechtDef_CalcAttrFunc_MagicWeapon2tDef_CalcAttrFunc_EquipDecomposetDef_CalcAttrFunc_MagicWeapon3tDef_CalcAttrFunc_PetSoultDef_CalcAttrFunc_HorseSoultDef_CalcAttrFunc_HorseSkilltDef_CalcAttrFunc_PetSkilltDef_CalcAttrFunc_StoveYaotDef_CalcAttrFunc_PetSignt Def_CalcAttrFunc_MagicWeaponSoultDef_CalcAttrFunc_Dogzt Def_CalcAttrFunc_DogzBattleSkilltDef_CalcAttrFunc_DogzEquiptDef_CalcAttrFunc_DogzEquipPlustDef_CalcAttrFunc_GatherSoultDef_CalcAttrFunc_MagicWeapon4tDef_CalcAttrFunc_CoattCalcAttrExFuncListtCalcAttrExFuncListNoFightPowertDef_MFPType_RoletDef_MFPType_EquiptDef_MFPType_PlustDef_MFPType_StonetDef_MFPType_SuittDef_MFPType_WingtDef_MFPType_WashtDef_MFPType_PettDef_MFPType_PetSoultDef_MFPType_HorsetDef_MFPType_HorseSoultDef_MFPType_PrestigetDef_MFPType_GodWeapontDef_MFPType_DienstgradtDef_MFPType_RunetDef_MFPType_HorcruxtDef_MFPType_MagicWeapon1tDef_MFPType_MagicWeapon2tDef_MFPType_MagicWeapon3tDef_MFPType_MagicWeapon4tDef_MFPType_StoveYaotDef_MFPType_MagicWeaponSoultDef_MFPType_GatherSoultDef_MFPType_CoattDef_MFPType_DogztDef_MFPType_OthertMFPTypeAttrFuncIndexDicttTriggerType_BeSuperHittTriggerType_BuffStatetTriggerType_AddDamagePertTriggerType_AttackOvertTriggerType_AttackAddSkillPertTriggerType_SuperHittTriggerType_SuperHitValuetTriggerType_StormAttackOneByOnetTriggerType_ReduceCDtTriggerType_SuperHitSkillPertTriggerType_AttackAddFinalValuetTriggerType_HappenStatetTriggerType_AbsorbShieldtTriggerType_BounceHPtTriggerType_BuffDisappeartTriggerType_BuffTimetTriggerType_BounceHPPertTriggerType_AddSingleSkillPertTriggerType_SkillOverNoAttacktTriggerType_BeAttackOvertTriggerType_AddIceAtkPertTriggerType_AddIceAtktTriggerType_DebuffOfftTriggerType_AttackKilltTriggerType_WillDeadtTriggerType_BuffBoomt!TriggerType_Success_Buff_SkillPertTriggerType_HurtObjAddBufftTriggerType_BeBoomSeedtTriggerType_AttackCnttTriggerType_SuperHitOneByOnet TriggerType_Buff_AddSuperHitRatetTriggerType_TagBuffStatetTriggerType_Buff_AttackSubLayertTriggerType_Buff_SuckBloodPertTriggerType_Buff_MustBeHittTriggerType_ReduceHurtHPPertTriggerType_AddExpRatetTriggerType_DamageReducetTriggerType_DamageReducePVPtTriggerType_MissPertTriggerType_SkillDisttTriggerType_TimeCalctTriggerType_MissSkilltTriggerType_MissSuccessPertTriggerType_BloodShieldtTriggerType_AttackOverPassivet!TriggerType_Buff_BeAttackSubLayertTriggerType_OneDamagetTriggerType_LuckyHittTriggerType_ChangeHurtToHPtTriggerType_AddLayertTriggerType_ForbidenCuretTriggerType_PassiveBuffValuetTriggerType_AttackKillHappentTriggerType_AddBuffOvertTriggerType_StormAttackOvertTriggerType_StormAttackReduceCDtTriggerType_AttackAddFinalPertTriggerType_SummonDietTriggerType_GiftReduceCDtTriggerType_ProDefValuetTriggerType_LockHPtTriggerType_BeLuckyHittTriggerType_BeLuckyHitSubPertTriggerType_ZhongjiZhanshatDef_NPCFuncType_GoblintCanNotWearWingMapIDListtCanNotWearWeaponCoatMapIDListtCanNotRecoverMapIDListtForceRecoverSkillListtDef_AttrActivatyNotify_NonetDef_AttrActivatyNotify_PlustDef_AttrActivatyNotify_StonetDef_AttrActivatyNotify_EquiptDef_LoginStyle_UnknowntDef_LoginStyle_WebBrowsertDef_LoginStyle_XunLeiBoxtDef_LoginStyle_UseTooltDef_LoginStyle_OthertJOB_TYPY_COUNTt    TYPE_NONEt TYPE_WARRIORt TYPE_WIZARDt TYPE_ASSASSINt TYPE_CHAPLAINtPlayerJob_WarriortPlayerJob_WizardtPlayerJob_AssassintPlayerJob_ChaplaintPlayerJob_KnighttPlayerJob_ForceUsertPlayerJob_BowMastert PlayerJob_Maxt JOB_TYPE_DICTtDef_VerFix_ChatBubbleBoxtDef_VerFix_CTGDoublePrizetDef_VerFix_RuneSourcetDef_VerFix_FMTDoubletDef_VerFix_SuperGifttDef_VerFix_HorsetDef_VerFix_PettDef_VerFix_AddPointtDef_VerFix_GodWeaponItemtDef_CostType_ListtDef_Cost_UnknowntDef_Cost_BuyStoreItemtDef_Cost_BuyPacktDef_Cost_UseSpeakertDef_Cost_RevivetDef_Cost_FBEncouragetDef_Cost_GoldInvestt Def_Cost_PraytDef_Cost_RecoverGaintDef_Cost_BuyVIPItemt Def_Cost_GMtDef_Cost_BourseBuytDef_Cost_BourseChargetDef_Cost_EquipWashtDef_Cost_ItemProducetDef_Cost_UseItemtDef_Cost_AddSignDaytDef_Cost_FBSweeptDef_Cost_ClearFBCDtDef_Cost_FinishFBSweeptDef_Cost_BuyFBCnttDef_Cost_MissionDeltDef_Cost_MissionGameEventtDef_Cost_MissionStartDef_Cost_EquipStonetDef_Cost_TransporttDef_Cost_TreasuretDef_Cost_FamilyBroadcasttDef_Cost_FamilyRedPackettDef_Cost_EnterFBtDef_Cost_GameServertDef_Cost_FreeGoodstDef_Cost_DogzEquipPlustDef_Cost_RuneHoletDef_Cost_AlchemyPraytDef_Cost_ResetGreatMasterSkilltDef_Cost_BindJadeWheeltDef_Cost_WishingWelltDef_Cost_GodWeapontDef_Cost_FBHelpBattletDef_Cost_FBGatherSoulBosstDef_Cost_CrossRealmPKtDef_Cost_RefreshArrestTasktDef_Cost_OffLineExptDef_Cost_RefreshTrucktDef_Cost_FinishTrucktDef_Cost_RefreshTimeShoptDef_Cost_OpenNobletDef_Cost_HighLaddertDef_Cost_ReincarnationtDef_Cost_BuyStallItemtDef_Cost_WarehousetDef_Cost_BuyItemBacktDef_Cost_ExchangeActionItemtDef_Cost_TradetDef_Cost_RenametDef_Cost_SkillLvUptDef_Cost_Reason_SonKeytCostRebate_DisableTypetCostProfit_CostTypetCostVIP_CostTypetMergeServerCanCostTypetUnUseInner_CostTypetDef_CostType_DicttDef_GiveMoney_UnknowntDef_GiveMoney_GMtDef_GiveMoney_CTGtDef_GiveMoney_GMTCTGtDef_GiveMoney_CoinToGoldt Def_GiveMoney_SuperAccountCreatetDef_GiveMoney_MissiontDef_GiveMoney_PraytDef_GiveMoney_UseItemtDef_GiveMoney_PickuptDef_GiveMoney_BoursetDef_GiveMoney_GoldInvesttDef_GiveMoney_RecovertDef_GiveMoney_RedPackettDef_GiveMoney_RefineGifttDef_GiveMoney_MailtDef_GiveMoney_RuneDecomposetDef_GiveMoney_WarehousetDef_GiveMoney_SellPackItemtDef_GiveMoney_CollectNPCtDef_GiveMoney_HighLaddertDef_GiveMoney_StallItemtDef_GiveMoney_TradetDef_GiveMoney_TrucktDef_GiveMoney_FreeGoodstDef_GiveMoney_BindJadeWheelt!Def_GiveMoney_GatherSoulDecomposetDef_Give_Reason_SonKeytDef_GetType_DicttItemGiveTypeListtItemGive_UnknowntItemGive_GMMaketItemGive_BuyItemtItemGive_ItemCompoundtItemGive_PickuptItemGive_BourseItemt ItemGive_MailtItemGive_RuneCompoundtItemGive_TJGDropItemtItemGive_TreasuretItemGive_StonePickofftItemGive_EquipSuittItemGive_NPCDroptItemGive_OpenServerCampaignt ItemGive_CTGtItemGive_DiceExtItemGive_FamilyStoretItemGive_RefinetItemGive_CheststItemGive_TrialExchangetItemGiveTypeDicttItemDelTypeListtItemDel_UnknowntItemDel_SellPackItemtItemDel_GodWeapontItemDel_EquipEnchasetItemDel_Add_LimitingBufftItemDel_AddDienstgradtItemDel_AddExpt ItemDel_AddLVtItemDel_AddVIPExptItemDel_CheststItemDel_CleanGuilttItemDel_ClothesCoatSkintItemDel_GiveMoneytItemDel_PrizeCointItemDel_ResetAttrPointtItemDel_ResetBossKillCnttItemDel_GiveZhenQitItemDel_AttrFruittItemDel_AddBourseItemtItemDel_EquipDecomposetItemDel_FamilyStoretItemDel_TreasuretItemDel_WingExptItemDel_StoneUpgradetItemDel_ItemCompoundt ItemDel_Horset ItemDel_PettItemDel_MagicWeapontItemDel_Alchemyt ItemDel_RunetItemDel_EquipSuittItemDel_AddFBCnttItemDel_AddKillBossCnttItemDel_DogzEquipPlustItemDel_ChatBubbleBoxtItemDel_GatherSoultItemDel_CoatDecomposetItemDelTypeDictt FB_JoinTypetFB_JoinType_NonetFB_JoinType_SingletFB_JoinType_MultitFB_JoinType_HelptCME_Log_Type_Listt CME_Log_Startt CME_Log_EndtCME_Log_Acceptablet CME_Type_Listt    CME_Knownt CME_FB_XXX1t CME_FB_XXX2tCME_FB_3t CME_FB_XXX4t CME_FB_XXX5t CME_FB_XXX6t CME_FB_XXX7t CME_FB_XXX8t CME_FB_XXX9t CME_FB_XXX10t CME_FB_XXX11tCME_Class_HorsetCME_Class_WingtCME_Class_OfficialtCME_Class_XXX15tCME_Class_XXX16t CME_FB_XXX17t CME_FB_XXX18t CME_FB_XXX19t CME_FB_XXX20t CME_FB_XXX21t CME_FB_XXX22tCME_FB_RunDailytCME_FB_RunFamilyt CME_Type_DicttGameFuncID_RunDailytGameFuncID_RunFamilyt FuncCMEDicttCME_Ex_Log_ListtDef_Str_Montantt Def_Suit_NulltDef_Suit_ImmortaltDef_Suit_DeitytVIPPrivilegeListtVIPPrivilege_VIPKillNPCAddAtktVIPPrivilege_2tVIPPrivilege_TeamVIPBufftVIPPrivilege_BourseTaxtVIPPrivilege_5tVIPPrivilege_FreeTransporttVIPPrivilege_7tVIPPrivilege_CollTimeReduceRatetVIPPrivilege_9tVIPPrivilege_FightExpRatetVIPPrivilege_EatItemtVIPPrivilege_NPCSPRatetVIPPrivilege_MoneyPraytVIPPrivilege_ExpPraytVIPPrivilege_15tVIPPrivilege_BossHometVIPPrivilege_17tVIPPrivilege_18tVIPPrivilege_19tVIPPrivilege_20tVIPPrivilege_21tVIPPrivilege_22tVIPPrivilege_FamilyGoldPacktVIPPrivilege_BoursePwdtVIPPrivilege_25tVIPPrivilege_26tVIPPrivilege_BOSSHomeKillLimittVIPPrivilege_FMTDoubletVIPPrivilege_29tVIPPrivilege_BindJadeWheeltVIPPrivilege_PrayElixirtVIPPrivilege_32t!VIPPrivilege_XianyuanCoinUpperAddtVIPPrivilege_XianyuanCoinAddPertVIPPrivilege_35t ntFunctionNPCtntGuardt    ntMonstertntSummontntTrucktntFairytntWallt ntCollectiontntDeert ntClientUset ntDefenceMaxt ntGoldenEggtntMissionCollectt ntCanBeCatchtntPett ntTouchKillt    ntUndeathtntDestructibletntHelpBattleRobottntRobottntMaxtDef_SkillFuncType_CommontDef_SkillFuncType_FbSkillt Def_SkillFuncType_FbPassiveSkilltDef_SkillFuncType_FbSPSkilltDef_SkillFuncType_GiftSkilltDef_SkillFuncType_HorseSkilltDef_SkillFuncType_PetSkilltDef_SkillFuncType_GWSkilltDef_SkillFuncType_NormalAttacktDef_SkillFuncType_SP15tDef_SkillFuncType_SkillRolltDef_SkillFuncType_RealmSuppresstDef_SkillFuncType_DogztDef_SkillAttack_NPCIsBosstDef_BattleRelationType_CommtDef_BattleRelationType_PVPtDef_BattleRelationType_PVEt!Def_BattleRelationType_CommNoBosstExpRateLimitType_RecovertExpRateLimitType_SweeptDef_SkillFuncType_MFPTypetGoldInvestTypeListtGoldInvestType_MonthtGoldInvestType_VIPtGoldInvestType_GoldtGoldInvestType_Gold2tGoldInvestType_Gold3tCanRepeatInvestTypetInvestGoldTypeListtGuideState_BZZDShowtMWPrivilegeListtMWPrivilege_FixedAttrtMWPrivilege_SealDemonAddAttrtMWPrivilege_EquipPlustMWPrivilege_RuneDecomposetMWPrivilege_HorsetMWPrivilege_PettMWPrivilege_MWSkillUptMWPrivilege_WingHPtMWPrivilege_EquipSuittMWPrivilege_EquipWashtMWPrivilege_SignDayAddAttrt tttLeaveMapt tttWaitStartt tttTowerTaket tttFlagTakettttLeaveFamilyWart tttAddUpTimet tttFBAddTimet tttDeadTimet tttPickupItemt tttWaitPlayerttttPlayerLeavettttMaxtDef_FBPickupItemTimetSkillFail_Othert SkillFail_CDtSkillFail_AtkIntervaltDef_RewardType_ActivitytDef_RewardType_FamilyActivityt(Def_RewardType_ChampionFamilyDailyRewardtDef_RewardType_XMZZWinCnttDef_RewardType_FamilyDayAwardtDef_RewardType_LVAwardtDef_RewardType_XBXZtDef_RewardType_DayRealmPointtDef_RewardType_GoldGiftFirsttDef_RewardType_MWSoulAwardtDef_RewardType_FreeGoodstDef_RewardType_CostRebatetDef_RewardType_BossReborntDef_RewardType_FCRechargetDef_RewardType_FCPartytDef_RewardType_DownLoadtDef_RewardType_WishingWelltDef_RewardType_OpenFunctDef_RewardType_TotalRechargetDef_RewardType_IceLodeStartDef_RewardType_WeekPartyActtDef_RewardType_WeekPartyPointtDef_RewardType_ActLoginAwardActtBossRebornActIDListtDef_BRAct_VIPBOSStDef_BRAct_GodAreatDef_BRAct_MoneyPraytDef_BRAct_ExpPraytDef_BRAct_TreasuretDef_BRAct_WorldBOSStDef_BRAct_BOSSHomet Def_BRAct_FMTtDef_BRAct_RunTasktDef_BRAct_XJMJtDef_BRAct_KirinHometDef_BRAct_TowerSweeptDef_BRAct_RuneTreasuretPeoplePartyActIDListtDef_PPAct_FireworkstDef_PPAct_TreasuretDef_PPAct_RuneTreasuretDef_PPAct_GodAreatDef_PPAct_XJMJtDef_PPAct_RunTasktDef_PPAct_WorldBosst Def_PPAct_FMTtDef_PPAct_FamilyPartytDef_PPAct_RefineStovetDef_PPAct_PraytDef_PPAct_BossHometDef_PPAct_VIPBosstWeekPartyActIDListtDef_WPAct_RunTasktDef_WPAct_XJMJtDef_WPAct_KirinHometDef_WPAct_QueenRelicestDef_WPAct_IceLodetDef_WPAct_TowertDef_WPAct_WorldBOSStDef_WPAct_BOSSHomet Def_WPAct_FMTtDef_WPAct_GodAreatDef_WPAct_CrossPKtDef_WPAct_RechargetDef_WPAct_GiftBagtDef_WPAct_FamilyRobBosstDef_WPAct_SWRHtDef_WPAct_ElderBattlefieldtDef_WPAct_ChaosDemontDef_WPAct_XMZZtDef_WPAct_FamilyWartDef_WPAct_LogintEquipSuitType_NormaltEquipSuitType_PlustEquipGroupType_ArmortEquipGroupType_RelicstRune_Source_UnkowntRune_Source_DefaulttItem_Source_CompoundtPowerDownType_RunetPowerDownType_LVUPtPowerDownType_EquipChangetPowerDownType_StoneChangetPowerDownType_SuittPowerDownType_EquipWashtPowerDownType_TitletPowerDownType_DogztPowerDownType_ResetPointtPowerDownType_ResetTalenttPowerDownType_GatherSoultFightPowerDownRecordDict(((saE:\SnxxServerCode\ServerPython\ZoneServerGroup\map1_8G\MapServer\MapServerData\Script\ChConfig.pyt<module>
sD   
                     •ÿ           
                     0                             
 
             9$      
 
    
                  ?
 
                      
"?                 W
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                                   
 
 3    !    
                       
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   (        HÏ                $          *****************************- 09´            WçÿÀÿÿáÿÿÿÿKÿÿÿÿÿüÿÿÿÿÿÿÿöÿÿÿÿÿÿÿÿÿÿ9ÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ±
<{ Ãÿœ ÿö ÿÿQÿÿ«ÿÿÿ3ÿNÞÿ“ÿÿÿÿÿÿ
    *ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ±%I-C-i           
 
 
 
 
 
 
 
 
 
       /Ž                      HÕ        
 
 
 
 
 
 
 '?            
!d
S
*†
^
 
 '|Q3        
 
 
 
 
 
 & 80Q>>S-