-
Notifications
You must be signed in to change notification settings - Fork 1
/
Misc.txt
1724 lines (1724 loc) · 625 KB
/
Misc.txt
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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name *name szFlavorText compactsave version level levelreq rarity spawnable speed nodurability cost gamble cost code alternategfx namestr auto prefix component invwidth invheight hasinv gemsockets gemapplytype flippyfile invfile uniqueinvfile special Transmogrify TMogType TMogMin TMogMax useable throwable type type2 dropsound dropsfxframe usesound unique transparent transtbl lightradius belt autobelt stackable minstack maxstack spawnstack quest questdiffcheck missiletype spellicon pSpell state cstate1 cstate2 len stat1 calc1 stat2 calc2 stat3 calc3 spelldesc spelldescstr spelldesccalc durwarning qntwarning gemoffset BetterGem bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HraltiMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicMin ElzixMagicMax ElzixMagicLvl AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade mindam maxdam PermStoreItem multibuy Nameable *eol
Elixir Elixir 1 0 21 0 4 0 0 1 40000 elx elx elx 16 1 1 0 0 0 flppot invpot 0 xxx 0 0 cube item_potion 14 item_potion_drink 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Healing Potion Healing Potion 1 0 0 0 1 0 0 1 30 hpo hpo elx 16 1 1 0 0 0 flprps invrps 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Mana Potion Mana Potion 1 0 0 0 1 0 0 1 30 mpo mpo elx 16 1 1 0 0 0 flpbps invbps 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Full Healing Potion Full Healing Potion 1 0 0 0 2 0 0 1 150 hpf hpo elx 16 1 1 0 0 0 flprpl invrpl 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Full Mana Potion Full Mana Potion 1 0 0 0 2 0 0 1 150 mpf mpo elx 16 1 1 0 0 0 flpbpl invbpl 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Stamina Potion Stamina Potion 1 0 0 0 1 1 0 1 25 vps vps vps 16 1 1 0 0 0 flpwps invwps 0 xxx 1 0 spot item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 9 staminapot 2250 staminarecoverybonus 5000 0 0 0 non 0 255 255 2 4 255 255 3 5 3 5 255 255 255 3 5 255 255 255 255 2 3 255 255 2 3 255 255 255 2 3 255 0 0 0 xxx xxx 1 1 0
Antidote Potion Antidote Potion 1 0 0 0 1 1 0 1 40 yps yps yps 16 1 1 0 0 0 flpnps invnps 0 xxx 1 0 apot item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 6 antidote poison 1125 poisonresist 50 maxpoisonresist 10 0 0 0 non 0 255 255 2 4 255 255 9 15 9 15 255 255 255 8 11 255 255 255 255 8 11 255 255 3 5 255 255 255 3 5 255 0 0 0 xxx xxx 1 1 0
Rejuv Potion Rejuv Potion 1 0 0 0 2 0 0 1 400 rvs yps rvs 16 1 1 0 0 0 flpvps invvps 0 xxx 1 0 rpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 5 hitpoints 35 mana 35 1 ItemStatsrejuv1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Full Rejuv Potion Full Rejuv Potion 1 0 0 0 2 0 0 1 1500 rvl ypl rvl 16 1 1 0 0 0 flpvpl invvpl 0 xxx 1 0 rpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 5 hitpoints 100 mana 100 1 ItemStatsrejuv2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Thawing Potion Thawing Potion 1 0 0 0 2 1 0 1 25 wms yps wms 16 1 1 0 0 0 flpyps invyps 0 xxx 1 0 wpot item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 6 thawing freeze cold 1125 coldresist 50 maxcoldresist 10 0 0 0 non 0 255 255 1 2 255 255 3 5 3 5 255 255 255 6 9 255 255 255 255 6 9 255 255 2 4 255 255 255 2 4 255 0 0 0 xxx xxx 1 1 0
Town Portal Book Town Portal Book 0 0 0 0 2 1 0 1 250 tbk bbk tbk 16 1 2 0 0 0 flpbbk invbbk 0 xxx 1 0 book item_book 12 item_book 0 0 5 0 0 0 1 1 500 5 0 -1 2 0 0 0 non 0 255 255 2 255 255 255 2 4 2 4 255 255 255 2 4 2 4 255 255 255 255 255 1 2 255 255 255 1 2 255 0 0 0 xxx xxx 1 0
Identify Book Identify Book 0 0 0 0 2 1 0 1 200 ibk rbk ibk 16 1 2 0 0 0 flprbk invrbk 0 xxx 1 0 book item_book 12 item_book 0 0 5 0 0 0 1 1 500 5 0 -1 1 0 0 0 non 0 255 255 2 255 255 255 2 4 2 4 255 255 255 2 4 2 4 255 255 255 255 255 1 2 255 255 255 1 2 255 0 0 0 xxx xxx 1 0
Amulet Amulet 0 0 1 0 4 1 0 1 6300 63000 amu amu amu 16 1 1 0 0 0 flpamu invnormalamulet 0 xxx 0 0 amul item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
viper amulet viper amulet 0 0 15 0 4 0 0 1 400 vip vip vip 16 1 1 0 0 0 flpamu invvip invvip 0 xxx 0 0 vamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 10 1 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 1 xxx xxx 0
Ring Ring 0 0 1 0 4 1 0 1 5000 50000 rin rin rin 16 1 1 0 0 0 flprin invnormalring 0 xxx 0 0 ring item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
gold gold 1 0 0 0 1 1 0 1 0 gld gld gld 16 1 1 0 0 0 flpgld invgld 0 xxx 0 0 gold item_gold 12 item_gold 0 0 5 0 0 0 1 0 5000 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Bark Scroll Bark Scroll 1 0 0 0 0 0 0 1 100 bks bks bks 16 2 2 0 0 0 flpscr invscb 0 xxx 0 0 ques item_scroll 10 item_scroll 1 0 5 0 0 0 0 0 0 0 5 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
deciphered Bark Scroll deciphered Bark Scroll 1 0 0 0 0 0 0 1 12000 bkd bkd bkd 16 2 2 0 0 0 flpscr invscb 0 xxx 0 0 ques item_scroll 10 item_scroll 1 0 5 0 0 0 0 0 0 0 5 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Arrows Arrows 0 0 0 0 1 0 0 1 256 aqv aqv aqv 16 1 3 0 0 0 flpqvr invqvr 0 xxx 0 0 bowq item_quiver 12 item_quiver 0 0 5 0 0 0 1 500 500 500 0 -1 0 1 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Torch Torch 1 0 0 0 0 0 0 1 50 tch bsh tch 7 1 2 0 0 0 flptrch invtrch 0 xxx 0 0 torc item_staff 12 item_staff 0 1 3 6 0 0 0 2 10 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Bolts Bolts 0 0 0 0 1 0 0 1 256 cqv cqv cqv 16 1 3 0 0 0 flpqvr invcqv 0 xxx 0 0 xboq item_quiver 12 item_quiver 0 0 5 0 0 0 1 500 500 500 0 -1 0 1 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Town Portal Scroll Town Portal Scroll 1 0 0 0 2 1 0 1 100 tsc bsc tsc 16 1 1 0 0 0 flpbsc invbsc 0 xxx 1 0 scro item_scroll 10 item_scroll 0 0 5 0 1 0 0 0 0 0 0 -1 2 0 0 0 non 0 255 255 11 17 255 255 255 11 17 11 17 255 255 255 11 17 11 17 255 255 255 255 255 5 7 255 255 255 5 7 255 0 0 0 xxx xxx 1 1 0
Identify Scroll Identify Scroll 1 0 0 0 2 1 0 1 80 isc rsc isc 16 1 1 0 0 0 flprsc invrsc 0 xxx 1 0 scro item_scroll 10 item_scroll 0 0 5 0 1 0 0 0 0 0 0 -1 1 0 0 0 non 0 255 255 11 17 255 255 255 11 17 11 17 255 255 255 11 17 11 17 255 255 255 255 255 5 7 255 255 255 5 7 255 0 0 0 xxx xxx 1 1 0
Heart Heart 0 0 0 0 1 0 0 1 60 hrt hrt hrt 16 1 1 0 0 0 flphrt invhrt 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Brain Brain 0 0 0 0 1 0 0 1 60 brz brz brz 16 1 1 0 0 0 flpbrnz invbrnz 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Jawbone Jawbone 0 0 0 0 1 0 0 1 75 jaw jaw jaw 16 1 1 0 0 0 flpjaw invjaw 0 xxx 0 0 body item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Eye Eye 0 0 0 0 1 0 0 1 45 eyz eyz eyz 16 1 1 0 0 0 flpeye inveye 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Horn Horn 0 0 0 0 1 0 0 1 48 hrn hrn hrn 16 1 1 0 0 0 flphorn invhorn 0 xxx 0 0 body item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Tail Tail 0 0 0 0 1 0 0 1 63 tal tal tal 16 1 1 0 0 0 flptail invtail 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Flag Flag 0 0 0 0 1 0 0 1 98 flg flg flg 16 1 1 0 0 0 flpflag invflag 0 xxx 0 0 body item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Fang Fang 0 0 0 0 1 0 0 1 80 fng fng fng 16 1 1 0 0 0 flpfang invfang 0 xxx 0 0 body item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Quill Quill 0 0 0 0 1 0 0 1 32 qll qll qll 16 1 1 0 0 0 flpquil invquil 0 xxx 0 0 body item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Soul Soul 0 0 0 0 1 0 0 1 100 sol sol sol 16 1 1 0 0 0 flpsple invsol 0 xxx 0 0 body item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scalp Scalp 0 0 0 0 1 0 0 1 40 scz scz scz 16 1 1 0 0 0 flpbonr1 invbonr1 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Spleen Spleen 0 0 0 0 1 0 0 1 85 spe spe spe 16 1 1 0 0 0 flpsple invsple 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Skeleton Key Skeleton Key 0 0 0 0 1 1 0 1 45 key key key 16 1 1 0 0 0 flpkey invkey 0 xxx 0 0 key item_key 12 item_key 0 0 5 0 0 0 1 1 50 6 0 -1 0 0 0 non 0 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 6 9 6 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 5 9 5 9 255 0 0 0 xxx xxx 1 1 0
Mephisto Key Mephisto Key 0 0 0 0 1 0 0 1 99999 luv key luv 16 1 2 0 0 0 flpmph invmph 0 xxx 0 0 key item_key 12 item_key 0 0 5 0 0 0 0 0 0 0 20 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
scroll of self resurrect scroll of self resurrect 0 0 0 0 999 0 0 1 10000 xyz scr xyz 16 1 1 0 0 0 flpwps invxyz 0 xxx 1 0 ques item_potion 14 item_potion_drink 0 0 5 0 0 0 0 0 0 0 19 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
jade figurine jade figurine 1 0 0 0 0 0 0 1 100 j34 bks j34 16 1 2 0 0 0 flpjbi invjbi 0 xxx 0 0 ques item_rare 12 1 0 3 0 0 0 0 0 0 0 19 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
gold bird gold bird 1 0 0 0 0 0 0 1 100 g34 bks g34 16 1 2 0 0 0 flpgbi invgbi 0 xxx 0 0 ques item_rare 12 1 0 4 0 0 0 0 0 0 0 19 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
lam esen's tome lam esen's tome 1 0 0 0 0 0 0 1 100 bbb bbb bbb 16 2 2 0 0 0 flpbbb invbbb 0 xxx 0 0 ques item_book 12 item_book 1 0 5 0 0 0 0 0 0 0 16 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Horadric Cube Horadric Cube 0 0 0 0 0 0 0 1 0 box rbk box 16 2 2 0 0 0 flpbox invbox 0 xxx 1 0 ques item_rare 12 0 0 5 0 0 0 0 0 0 0 10 0 -1 7 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll of Horadric Quest Info Scroll of Horadric Quest Info 1 0 0 0 999 0 0 1 0 tr1 grg tr1 16 2 2 0 0 0 flphscr invhscr 0 xxx 0 0 ques item_book 12 item_book 1 0 5 0 0 0 0 0 0 0 10 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mephisto SoulStone Mephisto SoulStone 1 0 0 0 999 0 0 1 0 mss scr mss 16 1 1 0 0 0 flpmss invmss 0 xxx 0 0 ques item_gem 12 item_gem 1 0 5 0 0 0 0 0 0 0 23 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Book of Skill Book of Skill 1 0 0 0 999 0 0 1 0 ass tbk ass 16 2 2 0 0 0 flpbbk invsbk 0 xxx 1 0 ques item_book 12 item_book 1 0 5 0 0 0 0 0 0 0 15 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
KhalimEye KhalimEye 1 0 0 0 1 0 0 1 45 qey eyz qey 16 1 1 0 0 0 flpeye inveye 0 xxx 0 0 ques item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 17 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
KhalimHeart KhalimHeart 1 0 0 0 1 0 0 1 60 qhr hrt qhr 16 1 1 0 0 0 flphrt invhrt 0 xxx 0 0 ques item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 17 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
KhalimBrain KhalimBrain 1 0 0 0 1 0 0 1 60 qbr brz qbr 16 1 1 0 0 0 flpbrnz invbrnz 0 xxx 0 0 ques item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 17 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Player Ear Player Ear 1 0 0 0 1 0 0 1 0 ear ear ear 16 1 1 0 0 0 flpear invear 0 xxx 0 0 play item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Minor Healing Potion Minor Healing Potion 1 0 0 0 1 1 0 1 30 hp1 hp1 hp1 16 1 1 0 0 0 flprps invhp1 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 healthpot 256 hpregen "max(stat('maxhp'.accr)/25600*10,40)" 2 ItemStats1q 40 0 0 0 non 0 255 255 8 12 255 255 4 6 255 2 4 255 255 255 2 4 255 255 255 255 255 2 4 255 255 255 2 4 255 0 0 0 hp4 hp5 1 1 0
Light Healing Potion Light Healing Potion 1 0 0 0 1 1 0 1 75 hp2 hp2 hp2 16 1 1 0 0 0 flprps invhp2 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 healthpot 256 hpregen "max(stat('maxhp'.accr)/25600*15,80)" 2 ItemStats1q 80 0 0 0 non 0 255 255 255 255 6 8 255 4 8 255 255 255 4 6 255 255 255 255 255 2 4 255 255 255 2 4 255 0 0 0 hp4 hp5 1 1 0
Healing Potion Healing Potion 1 0 0 0 1 1 0 1 125 hp3 hp3 hp3 16 1 1 0 0 0 flprps invhp3 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 healthpot 256 hpregen "max(stat('maxhp'.accr)/25600*20,160)" 2 ItemStats1q 160 0 0 0 non 0 255 255 255 255 255 255 255 255 6 8 255 255 255 255 255 4 6 255 255 255 4 6 255 0 0 0 hp4 hp5 1 1 0
Greater Healing Potion Greater Healing Potion 1 0 0 0 1 1 0 1 250 hp4 hp4 hp4 16 1 1 0 0 0 flprpl invhp4 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 healthpot 256 hpregen "max(stat('maxhp'.accr)/25600*25,320)" 2 ItemStats1q 320 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 6 8 255 255 255 6 8 255 0 0 0 xxx hp5 1 1 0
Supeer Healing Potion Supeer Healing Potion 1 0 0 0 1 1 0 1 500 hp5 hp5 hp5 16 1 1 0 0 0 flprpl invhp5 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 healthpot 256 hpregen "max(stat('maxhp'.accr)/25600*30,640)" 2 ItemStats1q 640 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Minor Mana Potion Minor Mana Potion 1 0 0 0 1 1 0 1 30 mp1 mp1 mp1 16 1 1 0 0 0 flpbps invmp1 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 manapot 128 manarecovery "max(stat('maxmana'.accr)/25600*5,20)" 2 ItemStats1q 20 0 0 0 non 0 255 255 13 16 255 255 8 10 255 8 12 255 255 255 8 10 255 255 255 255 255 8 10 255 255 255 8 10 255 0 0 0 mp4 mp5 1 1 0
Light Mana Potion Light Mana Potion 1 0 0 0 1 1 0 1 75 mp2 mp2 mp2 16 1 1 0 0 0 flpbps invmp2 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 manapot 128 manarecovery "max(stat('maxmana'.accr)/25600*10,40)" 2 ItemStats1q 40 0 0 0 non 0 255 255 255 255 10 12 255 12 16 255 255 255 10 12 255 255 255 255 255 8 10 255 255 255 8 10 255 0 0 0 mp4 mp5 1 1 0
Mana Potion Mana Potion 1 0 0 0 1 1 0 1 125 mp3 mp3 mp3 16 1 1 0 0 0 flpbps invmp3 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 manapot 128 manarecovery "max(stat('maxmana'.accr)/25600*15,80)" 2 ItemStats1q 80 0 0 0 non 0 255 255 255 255 255 255 255 255 12 16 255 255 255 255 255 10 12 255 255 255 10 12 255 0 0 0 mp4 mp5 1 1 0
Greater Mana Potion Greater Mana Potion 1 0 0 0 1 1 0 1 250 mp4 mp4 mp4 16 1 1 0 0 0 flpbpl invmp4 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 manapot 128 manarecovery "max(stat('maxmana'.accr)/25600*20,160)" 2 ItemStats1q 160 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 12 16 255 255 255 12 16 255 0 0 0 xxx mp5 1 1 0
Super Mana Potion Super Mana Potion 1 0 0 0 1 1 0 1 500 mp5 mp5 mp5 16 1 1 0 0 0 flpbpl invmp5 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 1 1 0 0 0 0 0 -1 3 manapot 128 manarecovery "max(stat('maxmana'.accr)/25600*25,320)" 2 ItemStats1q 320 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 1 0
Chipped Amethyst Chipped Amethyst 1 0 0 1 2 1 0 1 2000 gcv gcv gcv 16 1 1 0 0 0 flpgsv invgsva 0 xxx 0 0 gema gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfv 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Amethyst Flawed Amethyst 1 0 0 7 3 1 0 1 6000 gfv gfv gfv 16 1 1 0 0 0 flpgsv invgsvb 0 xxx 0 0 gema gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsv 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Amethyst Amethyst 1 0 0 14 4 1 0 1 18000 gsv gsv gsv 16 1 1 0 0 0 flpgsv invgsvc 0 xxx 0 0 gema gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gzv 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Amethyst Flawless Amethyst 1 0 0 21 5 1 0 1 54000 gzv gzv gzv 16 1 1 0 0 0 flpgsv invgsvd 0 xxx 0 0 gema gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpv 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Amethyst Blemished Amethyst 1 0 0 28 6 1 0 1 162000 gpv gpv gpv 16 1 1 0 0 0 flpgsv invgsvf 0 xxx 0 0 gema gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gvb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Amethyst Perfect Amethyst 1 0 0 35 6 1 0 1 486000 gvb gpv gvb 16 1 1 0 0 0 flpgsv invgsve 0 xxx 0 0 gema gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Topaz Chipped Topaz 1 0 0 1 3 1 0 1 2000 gcy gcy gcy 16 1 1 0 0 0 flpgsy invgsya 0 xxx 0 0 gemt gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfy 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Topaz Flawed Topaz 1 0 0 7 4 1 0 1 6000 gfy gfy gfy 16 1 1 0 0 0 flpgsy invgsyb 0 xxx 0 0 gemt gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsy 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Topaz Topaz 1 0 0 14 5 1 0 1 18000 gsy gsy gsy 16 1 1 0 0 0 flpgsy invgsyc 0 xxx 0 0 gemt gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gly 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Topaz Flawless Topaz 1 0 0 21 6 1 0 1 54000 gly gly gly 16 1 1 0 0 0 flpgsy invgsyd 0 xxx 0 0 gemt gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpy 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Topaz Blemished Topaz 1 0 0 28 7 1 0 1 162000 gpy gpy gpy 16 1 1 0 0 0 flpgsy invgsyf 0 xxx 0 0 gemt gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gyb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Topaz Perfect Topaz 1 0 0 35 7 1 0 1 486000 gyb gpy gyb 16 1 1 0 0 0 flpgsy invgsye 0 xxx 0 0 gemt gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Saphire Chipped Saphire 1 0 0 1 4 1 0 1 2000 gcb gcb gcb 16 1 1 0 0 0 flpgsb invgsba 0 xxx 0 0 gems gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Saphire Flawed Saphire 1 0 0 7 5 1 0 1 6000 gfb gfb gfb 16 1 1 0 0 0 flpgsb invgsbb 0 xxx 0 0 gems gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Saphire Saphire 1 0 0 14 6 1 0 1 18000 gsb gsb gsb 16 1 1 0 0 0 flpgsb invgsbc 0 xxx 0 0 gems gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 glb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Saphire Flawless Saphire 1 0 0 21 7 1 0 1 54000 glb glb glb 16 1 1 0 0 0 flpgsb invgsbd 0 xxx 0 0 gems gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Saphire Blemished Saphire 1 0 0 28 8 1 0 1 162000 gpb gpb gpb 16 1 1 0 0 0 flpgsb invgsbf 0 xxx 0 0 gems gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gbb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Saphire Perfect Saphire 1 0 0 35 11 1 0 1 486000 gbb gpb gbb 16 1 1 0 0 0 flpgsb invgsbe 0 xxx 0 0 gems gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Emerald Chipped Emerald 1 0 0 1 5 1 0 1 2000 gcg gcg gcg 16 1 1 0 0 0 flpgsg invgsga 0 xxx 0 0 geme gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfg 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Emerald Flawed Emerald 1 0 0 7 6 1 0 1 6000 gfg gfg gfg 16 1 1 0 0 0 flpgsg invgsgb 0 xxx 0 0 geme gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsg 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Emerald Emerald 1 0 0 14 7 1 0 1 18000 gsg gsg gsg 16 1 1 0 0 0 flpgsg invgsgc 0 xxx 0 0 geme gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 glg 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Emerald Flawless Emerald 1 0 0 21 8 1 0 1 54000 glg glg glg 16 1 1 0 0 0 flpgsg invgsgd 0 xxx 0 0 geme gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpg 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Emerald Blemished Emerald 1 0 0 28 9 1 0 1 162000 gpg gpg gpg 16 1 1 0 0 0 flpgsg invgsgf 0 xxx 0 0 geme gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 ggb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Emerald Perfect Emerald 1 0 0 35 9 1 0 1 486000 ggb gpg ggb 16 1 1 0 0 0 flpgsg invgsge 0 xxx 0 0 geme gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Ruby Chipped Ruby 1 0 0 1 6 1 0 1 2000 gcr gcr gcr 16 1 1 0 0 0 flpgsr invgsra 0 xxx 0 0 gemr gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfr 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Ruby Flawed Ruby 1 0 0 7 7 1 0 1 6000 gfr gfr gfr 16 1 1 0 0 0 flpgsr invgsrb 0 xxx 0 0 gemr gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsr 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Ruby Ruby 1 0 0 14 8 1 0 1 18000 gsr gsr gsr 16 1 1 0 0 0 flpgsr invgsrc 0 xxx 0 0 gemr gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 glr 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Ruby Flawless Ruby 1 0 0 21 9 1 0 1 54000 glr glr glr 16 1 1 0 0 0 flpgsr invgsrd 0 xxx 0 0 gemr gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpr 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Ruby Blemished Ruby 1 0 0 28 10 1 0 1 162000 gpr gpr gpr 16 1 1 0 0 0 flpgsr invgsrf 0 xxx 0 0 gemr gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 grb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Ruby Perfect Ruby 1 0 0 35 8 1 0 1 486000 grb gpr grb 16 1 1 0 0 0 flpgsr invgsre 0 xxx 0 0 gemr gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Diamond Chipped Diamond 1 0 0 1 7 1 0 1 2000 gcw gcw gcw 16 1 1 0 0 0 flpgsw invgswa 0 xxx 0 0 gemd gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfw 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Diamond Flawed Diamond 1 0 0 7 8 1 0 1 6000 gfw gfw gfw 16 1 1 0 0 0 flpgsw invgswb 0 xxx 0 0 gemd gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsw 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Diamond Diamond 1 0 0 14 9 1 0 1 18000 gsw gsw gsw 16 1 1 0 0 0 flpgsw invgswc 0 xxx 0 0 gemd gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 glw 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Diamond Flawless Diamond 1 0 0 21 10 1 0 1 54000 glw glw glw 16 1 1 0 0 0 flpgsw invgswd 0 xxx 0 0 gemd gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpw 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Diamond Blemished Diamond 1 0 0 28 11 1 0 1 162000 gpw gpw gpw 16 1 1 0 0 0 flpgsw invgswf 0 xxx 0 0 gemd gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gwb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Diamond Perfect Diamond 1 0 0 35 11 1 0 1 486000 gwb gpw gwb 16 1 1 0 0 0 flpgsw invgswe 0 xxx 0 0 gemd gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Skull Chipped Skull 1 0 0 1 8 1 0 1 2000 skc skc skc 16 1 1 0 0 0 flpskl invskc 0 xxx 0 0 gemz gem0 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 skf 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Skull Flawed Skull 1 0 0 7 9 1 0 1 6000 skf skf skf 16 1 1 0 0 0 flpskl invskf 0 xxx 0 0 gemz gem1 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 sku 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Skull Skull 1 0 0 14 10 1 0 1 18000 sku sku sku 16 1 1 0 0 0 flpskl invsku 0 xxx 0 0 gemz gem2 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 skl 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Skull Flawless Skull 1 0 0 21 11 1 0 1 54000 skl skl skl 16 1 1 0 0 0 flpskl invskl 0 xxx 0 0 gemz gem3 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 skz 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Skull Blemished Skull 1 0 0 28 12 1 0 1 162000 skz skz skz 16 1 1 0 0 0 flpskl invskb 0 xxx 0 0 gemz gem4 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 skb 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Skull Perfect Skull 1 0 0 35 11 1 0 1 486000 skb skz skb 16 1 1 0 0 0 flpskl invskz 0 xxx 0 0 gemz gem5 item_monsterbone 12 item_monsterbone 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Chipped Obsidian Chipped Obsidian 1 0 0 1 2 1 0 1 2000 gck gcv gck 16 1 1 0 0 0 flpgsb invgska 0 xxx 0 0 gema gem0 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gfk 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawed Obsidian Flawed Obsidian 1 0 0 7 3 1 0 1 6000 gfk gfv gfk 16 1 1 0 0 0 flpgsb invgskb 0 xxx 0 0 gema gem1 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gsk 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Obsidian Obsidian 1 0 0 14 4 1 0 1 18000 gsk gsv gsk 16 1 1 0 0 0 flpgsb invgskc 0 xxx 0 0 gema gem2 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gzk 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Flawless Obsidian Flawless Obsidian 1 0 0 21 5 1 0 1 54000 gzk gzv gzk 16 1 1 0 0 0 flpgsb invgskd 0 xxx 0 0 gema gem3 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gpk 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Blemished Obsidian Blemished Obsidian 1 0 0 28 6 1 0 1 162000 gpk gpv gpk 16 1 1 0 0 0 flpgsb invgskf 0 xxx 0 0 gema gem4 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 gbk 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
Perfect Obsidian Perfect Obsidian 1 0 0 35 6 1 0 1 486000 gbk gpv gbk 16 1 1 0 0 0 flpgsb invgske 0 xxx 0 0 gema gem5 item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 1 1 255 255 255 1 1 255 255 1 1 255 255 255 255 255 255 255 1 1 255 255 1 1 255 0 0 0 xxx xxx 1 0
herb herb 0 100 3 0 3 0 0 1 75 hrb hrb hrb 16 1 1 0 0 0 flphrb invhrb 0 xxx 1 0 herb item_herb 12 item_herb 0 0 5 0 1 0 0 0 0 0 0 -1 9 innersight 1000 velocitypercent 25 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Small Charm Small Charm 0 100 14 0 4 1 0 1 1500 40000 cm1 rld cm1 16 1 1 0 0 0 flpchm1 invch1 invch7 0 xxx 0 0 scha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Large Charm Large Charm 0 100 7 0 4 1 0 1 1500 40000 cm2 rda cm2 16 1 2 0 0 0 flpchm2 invch2 invch8 0 xxx 0 0 mcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Grand Charm Grand Charm 0 100 1 0 4 1 0 1 1500 40000 cm3 rgd cm3 16 1 3 0 0 0 flpchm3 invch3 invch9 0 xxx 0 0 lcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Small Red Potion Small Red Potion 1 100 0 0 1 0 0 1 100 rps rps elx 16 1 1 0 0 0 flprps invrps 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 0 0 1 5 10 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Large Red Potion Large Red Potion 1 100 0 0 1 0 0 1 100 rpl rpl elx 16 1 1 0 0 0 flprpl invrpl 0 xxx 1 0 hpot item_potion 14 item_potion_drink 0 0 5 0 0 0 1 5 10 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Small Blue Potion Small Blue Potion 1 100 0 0 1 0 0 1 100 bps bps elx 16 1 1 0 0 0 flpbps invbps 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 0 0 1 5 10 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Large Blue Potion Large Blue Potion 1 100 0 0 1 0 0 1 100 bpl bpl elx 16 1 1 0 0 0 flpbpl invbpl 0 xxx 1 0 mpot item_potion 14 item_potion_drink 0 0 5 0 0 0 1 5 10 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
El Rune El 1 100 11 11 1 1 0 1 560 r51 r51 r51 16 1 1 0 0 0 flprun invrEl 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Eld Rune Eld 1 100 11 11 1 1 0 1 560 r52 r52 r52 16 1 1 0 0 0 flprun invrEld 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Tir Rune Tir 1 100 13 13 2 1 0 1 1260 r53 r53 r53 16 1 1 0 0 0 flprun invrTir 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Nef Rune Nef 1 100 13 13 2 1 0 1 1260 r54 r54 r54 16 1 1 0 0 0 flprun invrNef 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Eth Rune Eth 1 100 15 15 3 1 0 1 2240 r55 r55 r55 16 1 1 0 0 0 flprun invrEth 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ith Rune Ith 1 100 15 15 3 1 0 1 2240 r56 r56 r56 16 1 1 0 0 0 flprun invrIth 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Tal Rune Tal 1 100 17 17 4 1 0 1 3500 r57 r57 r57 16 1 1 0 0 0 flprun invrTal 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ral Rune Ral 1 100 19 19 5 1 0 1 5040 r58 r58 r58 16 1 1 0 0 0 flprun invrRal 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ort Rune Ort 1 100 21 21 6 1 0 1 6860 r59 r59 r59 16 1 1 0 0 0 flprun invrOrt 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Thul Rune Thul 1 100 23 23 7 1 0 1 8960 r60 r60 r60 16 1 1 0 0 0 flprun invrThul 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Amn Rune Amn 1 100 25 25 8 1 0 1 11340 r61 r61 r61 16 1 1 0 0 0 flprun invrAmn 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Sol Rune Sol 1 100 27 27 9 1 0 1 14000 r62 r62 r62 16 1 1 0 0 0 flprun invrSol 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Shael Rune Shael 1 100 29 29 10 1 0 1 16940 r63 r63 r63 16 1 1 0 0 0 flprun invrShae 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Dol Rune Dol 1 100 31 31 11 1 0 1 20160 r64 r64 r64 16 1 1 0 0 0 flprun invrDol 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Hel Rune Hel 1 100 33 0 12 1 0 1 1715 r65 r65 r65 16 1 1 0 0 0 flprun invrHel 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Io Rune Io 1 100 35 35 13 1 0 1 27440 r66 r66 r66 16 1 1 0 0 0 flprun invrIo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Lum Rune Lum 1 100 37 37 14 1 0 1 31500 r67 r67 r67 16 1 1 0 0 0 flprun invrLum 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ko Rune Ko 1 100 39 39 15 1 0 1 35840 r68 r68 r68 16 1 1 0 0 0 flprun invrKo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Fal Rune Fal 1 100 41 41 16 1 0 1 40460 r69 r69 r69 16 1 1 0 0 0 flprun invrFal 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Lem Rune Lem 1 100 43 43 17 1 0 1 45360 r70 r70 r70 16 1 1 0 0 0 flprun invrLem 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Pul Rune Pul 1 100 45 45 18 1 0 1 50540 r71 r71 r71 16 1 1 0 0 0 flprun invrPul 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Um Rune Um 1 100 47 47 19 1 0 1 56000 r72 r72 r72 16 1 1 0 0 0 flprun invrUm 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mal Rune Mal 1 100 49 49 20 1 0 1 61740 r73 r73 r73 16 1 1 0 0 0 flprun invrMal 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ist Rune Ist 1 100 51 51 21 1 0 1 67760 r74 r74 r74 16 1 1 0 0 0 flprun invrIst 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gul Rune Gul 1 100 53 53 22 1 0 1 74060 r75 r75 r75 16 1 1 0 0 0 flprun invrGul 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Vex Rune Vex 1 100 55 55 23 1 0 1 80640 r76 r76 r76 16 1 1 0 0 0 flprun invrVex 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ohm Rune Ohm 1 100 57 57 24 1 0 1 87500 r77 r77 r77 16 1 1 0 0 0 flprun invrOhm 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Lo Rune Lo 1 100 59 59 25 1 0 1 94640 r78 r78 r78 16 1 1 0 0 0 flprun invrLo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Sur Rune Sur 1 100 61 61 26 1 0 1 102060 r79 r79 r79 16 1 1 0 0 0 flprun invrSur 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ber Rune Ber 1 100 63 63 27 1 0 1 109760 r80 r80 r80 16 1 1 0 0 0 flprun invrBer 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Jah Rune Jah 1 100 65 65 28 1 0 1 117740 r81 r81 r81 16 1 1 0 0 0 flprun invrJo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Cham Rune Cham 1 100 67 67 29 1 0 1 126000 r82 r82 r82 16 1 1 0 0 0 flprun invrCham 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Zod Rune Zod 1 100 69 69 30 1 0 1 134540 r83 r83 r83 16 1 1 0 0 0 flprun invrZod 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Jewel Jewel 0 100 0 0 8 1 0 1 1000 jew gpw jew 16 1 1 0 0 0 flpgsw invnormaljuwel 0 xxx 0 0 jewl item_jewel 12 item_jewel 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Maguffin ice 1 100 0 0 999 0 0 1 10000 ice scr ice 16 1 1 0 0 0 flpwps invxyz 0 xxx 0 0 ques item_potion 14 item_potion_drink 0 0 5 0 0 0 0 0 0 0 32 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll Scroll 0 100 0 0 0 1 0 1 100 0sc rsc 0sc 16 1 1 0 0 0 flprsc invrsc 0 xxx 1 0 scro item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll of Malah - Boost Resistances Scroll of Malah - Boost Resistances 1 100 0 0 999 0 0 1 0 tr2 scr tr2 16 2 2 0 0 0 flpscr invscb 0 xxx 1 0 ques item_scroll 10 item_scroll 1 0 5 0 0 0 0 0 0 0 32 1 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Maple Leaf Maple Leaf 1 0 0 0 1 0 0 1 1000000 map map map 16 1 1 0 0 0 flpgsy invmaple 0 xxx 0 0 cube item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Spider'sSilk Spider'sSilk 1 0 0 0 1 1 0 1 20000 sss sss sss 16 1 1 0 0 0 flpgsw invsilk 1 ttt 1 1 0 0 dstn item_bow 12 item_bow 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
CrushedGem CrushedGem 1 0 0 0 1 1 0 1 20000 ggg ggg ggg 16 1 1 0 0 0 flpgsw invcrush 1 sss 1 1 0 0 dstn item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Blackmoor Blackmoor 1 0 0 0 1 1 0 1 20000 eee eee eee 16 1 1 0 0 0 flpgsw invdirt 1 hh2 1 1 0 0 dstn item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
HolySymbol HolySymbol 1 0 0 0 1 1 0 1 20000 hly hly hly 16 1 1 0 0 0 flpgsw invhly 1 eee 1 1 0 0 dstn item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Forging Hammer Forging Hammer 1 0 0 0 1 1 0 1 20000 hh2 hh2 hh2 16 1 1 0 0 0 flphmr invhmrs 1 ggg 1 1 0 0 dstn item_sword 12 item_sword 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
TyraniumOre TyraniumOre 1 0 0 0 1 1 0 1 20000 ttt ttt ttt 16 1 1 0 0 0 flpgsw invore 1 ppp 1 1 0 0 dstn item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
DragonStone DragonStone 1 0 0 0 1 1 0 1 20000 ppp ppp ppp 16 1 1 0 0 0 flpmss invppp 1 hly 1 1 0 0 dstn item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decipherer Decipherer 0 0 0 0 1 1 0 1 8000 ddd ddd ddd 16 1 1 0 0 0 flpamu invamu 0 xxx 0 0 cube item_rare 12 item_rare 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Socket Donut Socket Donut 1 100 1 1 1 1 0 1 80000 sdo sdo sdo 16 1 1 0 0 0 flprin invdonut 0 xxx 0 0 cube item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 1 sdodesc 0 0 0 non 0 1 1 255 255 255 1 1 255 255 255 1 1 255 255 255 255 255 255 1 1 255 1 1 255 255 255 255 0 0 0 xxx xxx 1 0
Randomize Stone Randomize Stone 0 0 1 0 4 1 0 1 2000 rnd rnd rnd 16 1 1 0 0 0 flpgsw invdice 0 xxx 0 0 rstn item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 9 9 1 255 255 255 255 255 255 255 255 255 255 255 255 1 1 255 1 1 255 255 0 0 0 nul nul 0
Unique Stone (nor) Unique Stone (nor) 1 0 0 0 1 1 0 1 5000 an0 an0 an0 16 1 1 0 0 0 flpgsy invustone1 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 1 an0desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Unique Stone (exc) Unique Stone (exc) 1 0 0 0 1 1 0 1 10000 an1 an1 an1 16 1 1 0 0 0 flpgsy invustone2 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 1 an1desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Unique Stone (eli) Unique Stone (eli) 1 0 0 0 1 1 0 1 20000 an2 an2 an2 16 1 1 0 0 0 flpgsy invustone3 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 1 an2desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Green Aura Stone Green Aura Stone 1 0 0 0 1 1 0 1 480000 an3 an3 an3 16 1 1 0 0 0 flpgsy invastone1 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Red Aura Stone Red Aura Stone 1 0 0 0 1 1 0 1 480000 an4 an4 an4 16 1 1 0 0 0 flpgsy invastone2 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Violet Aura Stone Violet Aura Stone 1 0 0 0 1 1 0 1 480000 an5 an5 an5 16 1 1 0 0 0 flpgsy invastone3 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Yellow Aura Stone Yellow Aura Stone 1 0 0 0 1 1 0 1 480000 an6 an6 an6 16 1 1 0 0 0 flpgsy invastone4 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Black Aura Stone Black Aura Stone 1 0 0 0 1 1 0 1 480000 an7 an7 an7 16 1 1 0 0 0 flpgsy invastone5 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
White Aura Stone White Aura Stone 1 0 0 0 1 1 0 1 480000 an8 an8 an8 16 1 1 0 0 0 flpgsy invastone6 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Blue Aura Stone Blue Aura Stone 1 0 0 0 1 1 0 1 480000 an9 an9 an9 16 1 1 0 0 0 flpgsy invastone7 0 xxx 0 0 cube item_gem 12 item_gem 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Cook Book Cook Book 0 0 0 0 1 1 0 1 20000 yyy yyy yyy 16 1 1 0 0 0 flpbbk invbook1 0 xxx 0 0 body item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Steak Steak 0 0 0 0 1 1 0 1 85 zzz zzz zzz 16 1 1 0 0 0 flpsple invzzz 0 xxx 0 0 body item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Griswold's Hand Hand 0 0 0 0 1 0 0 1 60 00g 00g 00g 16 1 1 0 0 0 flphrt inv00g 0 xxx 0 0 cube item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Treehead WoodFist's Arm Arm 0 0 0 0 1 0 0 1 60 00t 00t 00t 16 1 1 0 0 0 flphrt inv00t 0 xxx 0 0 cube item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Radament's Head Head 0 0 0 0 1 0 0 1 60 00r 00r 00r 16 1 1 0 0 0 flphrt inv00r 0 xxx 0 0 cube item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Hephasto's Hand Hand 0 0 0 0 1 0 0 1 60 00h 00h 00h 16 1 1 0 0 0 flphrt inv00h 0 xxx 0 0 cube item_monsterguts 14 item_monsterguts 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Fake Note Fake Note 1 0 0 0 1 0 0 1 300000 fkn fkn fkn 16 1 1 0 0 0 flpbbk invfaken 0 xxx 0 0 cube item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 fkndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Potion of Heroism Potion of Heroism 1 100 21 0 4 1 0 1 3000 3000 po1 po1 po1 16 1 1 0 0 0 flppot invpotr 0 xxx 1 0 poti item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 6 pot1 pot1 1125 damagepercent 100 item_maxhp_percent 50 item_allskills 1 1 po1desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Potion of Super Heroism Potion of Super Heroism 1 100 21 0 4 1 0 1 4500 4500 po2 po2 po2 16 1 1 0 0 0 flppot invpotr 0 xxx 1 0 poti item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 6 pot2 pot2 1125 damagepercent 200 item_maxhp_percent 100 item_allskills 2 1 po2desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mountain Dew Mountain Dew 1 100 21 0 4 1 0 1 3000 3000 po3 po3 po3 16 1 1 0 0 0 flppot invpoo 0 xxx 1 0 poti item_potion 14 item_potion_drink 0 0 5 0 1 0 0 0 0 0 0 -1 6 pot3 pot3 2250 velocitypercent 100 attackrate 100 item_fastercastrate 100 1 po3desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Nirvana Grass Nirvana Grass 0 100 21 0 4 1 0 1 4500 4500 po4 po4 po4 16 1 1 0 0 0 flphrb invhrb 0 xxx 1 0 poti item_herb 12 item_herb 0 0 5 0 1 0 0 0 0 0 0 -1 6 pot4 pot4 1125 item_addexperience 20 1 po4desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ring (unused) Ring 0 0 1 0 4 0 0 1 5000 50000 rn2 rin rin 16 1 1 0 0 0 flprin invnormalring 0 xxx 0 0 ring item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Amulet (unused) Amulet 0 0 1 0 4 0 0 1 6300 63000 au2 amu amu 16 1 1 0 0 0 flpamu invnormalamulet 0 xxx 0 0 amul item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
LoD Ring (soc) Ring 0 0 1 0 4 0 0 1 5000 50000 rn9 rin rin 16 1 1 1 1 1 flprin invnormalring 0 xxx 0 0 ring item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
LoD Amulet (soc) Amulet 0 0 1 0 4 0 0 1 6300 63000 au9 amu amu 16 1 1 1 1 1 flpamu invnormalamulet 0 xxx 0 0 amul item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ama Ring Amazonian Loop 0 0 1 0 4 1 0 1 5000 50000 zrn rin zrn 16 1 1 0 0 0 flprin invamazonring 0 xxx 0 0 zrin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Sor Ring Sorcerer's Band 0 0 1 0 4 1 0 1 5000 50000 srn rin srn 16 1 1 0 0 0 flprin invsorceressring 0 xxx 0 0 srin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Nec Ring Necromancer's Stone 0 0 1 0 4 1 0 1 5000 50000 nrn rin nrn 16 1 1 0 0 0 flprin invnecromancerring 0 xxx 0 0 nrin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Pal Ring Paladic Halo 0 0 1 0 4 1 0 1 5000 50000 prn rin prn 16 1 1 0 0 0 flprin invpaladinring 0 xxx 0 0 prin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Bar Ring Barbaric Knuckle 0 0 1 0 4 1 0 1 5000 50000 brg rin brg 16 1 1 0 0 0 flprin invbarbarianring 0 xxx 0 0 brin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Dru Ring Druid's Seal 0 100 1 0 4 1 0 1 5000 50000 drn rin drn 16 1 1 0 0 0 flprin invdruidring 0 xxx 0 0 drin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ass Ring Assassin's Spiral 0 100 1 0 4 1 0 1 5000 50000 arn rin arn 16 1 1 0 0 0 flprin inassassinring 0 xxx 0 0 arin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ama Amulet Amazonian Pin 0 0 1 0 4 1 0 1 6300 63000 zam amu zam 16 1 1 0 0 0 flpamu invamazonamulet 0 xxx 0 0 zamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Sor Amulet Socererer's Talisman 0 0 1 0 4 1 0 1 6300 63000 sam amu sam 16 1 1 0 0 0 flpamu invsorceressamulet 0 xxx 0 0 samu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Nec Amulet Death's Locket 0 0 1 0 4 1 0 1 6300 63000 nam amu nam 16 1 1 0 0 0 flpamu invnecromanceramulet 0 xxx 0 0 namu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Pal Amulet Holy Pendant 0 0 1 0 4 1 0 1 6300 63000 pam amu pam 16 1 1 0 0 0 flpamu invpaladinamulet 0 xxx 0 0 pamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Bar Amulet Primal Charm 0 0 1 0 4 1 0 1 6300 63000 bam amu bam 16 1 1 0 0 0 flpamu invbarbarianamulet 0 xxx 0 0 bamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Dru Amulet Druidic Necklace 0 100 1 0 4 1 0 1 6300 63000 dam amu dam 16 1 1 0 0 0 flpamu invdruidamulet 0 xxx 0 0 damu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ass Amulet Assassin's Choker 0 100 1 0 4 1 0 1 6300 63000 aam amu aam 16 1 1 0 0 0 flpamu inassassiamulet 0 xxx 0 0 aamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ring (soc) Ring 0 0 1 0 4 0 0 1 5000 50000 rn0 rin rin 16 1 1 1 1 1 flprin invnormalring 0 xxx 0 0 ring item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Amulet (soc) Amulet 0 0 1 0 4 0 0 1 6300 63000 au0 amu amu 16 1 1 1 1 1 flpamu invnormalamulet 0 xxx 0 0 amul item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Sor Ring (soc) Sorcerer's Band 0 0 1 0 4 0 0 1 5000 50000 sr0 rin srn 16 1 1 1 1 1 flprin invsorceressring 0 xxx 0 0 srin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Bar Ring (soc) Barbaric Knuckle 0 0 1 0 4 0 0 1 5000 50000 br0 rin brg 16 1 1 1 1 1 flprin invbarbarianring 0 xxx 0 0 brin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Nec Ring (soc) Necromancer's Stone 0 0 1 0 4 0 0 1 5000 50000 nr0 rin nrn 16 1 1 1 1 1 flprin invnecromancerring 0 xxx 0 0 nrin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Pal Ring (soc) Paladic Halo 0 0 1 0 4 0 0 1 5000 50000 pr0 rin prn 16 1 1 1 1 1 flprin invpaladinring 0 xxx 0 0 prin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Dru Ring (soc) Druid's Seal 0 100 1 0 4 0 0 1 5000 50000 dr0 rin drn 16 1 1 1 1 1 flprin invdruidring 0 xxx 0 0 drin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ama Ring (soc) Amazonian Loop 0 0 1 0 4 0 0 1 5000 50000 zr0 rin zrn 16 1 1 1 1 1 flprin invamazonring 0 xxx 0 0 zrin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ass Ring (soc) Assassin's Spiral 0 100 1 0 4 0 0 1 5000 50000 ar0 rin arn 16 1 1 1 1 1 flprin inassassinring 0 xxx 0 0 arin item_ring 12 item_ring 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Sor Amulet (soc) Socererer's Talisman 0 0 1 0 4 0 0 1 6300 63000 sa0 amu sam 16 1 1 1 1 1 flpamu invsorceressamulet 0 xxx 0 0 samu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Bar Amulet (soc) Primal Charm 0 0 1 0 4 0 0 1 6300 63000 ba0 amu bam 16 1 1 1 1 1 flpamu invbarbarianamulet 0 xxx 0 0 bamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Nec Amulet (soc) Death's Locket 0 0 1 0 4 0 0 1 6300 63000 na0 amu nam 16 1 1 1 1 1 flpamu invnecromanceramulet 0 xxx 0 0 namu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Pal Amulet (soc) Holy Pendant 0 0 1 0 4 0 0 1 6300 63000 pa0 amu pam 16 1 1 1 1 1 flpamu invpaladinamulet 0 xxx 0 0 pamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Dru Amulet (soc) Druidic Necklace 0 100 1 0 4 0 0 1 6300 63000 da0 amu dam 16 1 1 1 1 1 flpamu invdruidamulet 0 xxx 0 0 damu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ama Amulet (soc) Amazonian Pin 0 0 1 0 4 0 0 1 6300 63000 za0 amu zam 16 1 1 1 1 1 flpamu invamazonamulet 0 xxx 0 0 zamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Ass Amulet (soc) Assassin's Choker 0 100 1 0 4 0 0 1 6300 63000 aa0 amu aam 16 1 1 1 1 1 flpamu inassassiamulet 0 xxx 0 0 aamu item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 1 1 0 xxx xxx 0
Odd Charm Odd Charm 0 100 1 0 4 1 0 1 1500 40000 cm4 rld cm4 16 2 3 0 0 0 flpchm3 invdev invdev 0 xxx 0 0 ocha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Square Charm (soc) Square Charm 0 100 1 0 4 0 0 1 1500 40000 cm5 rgd cm5 16 2 2 1 1 1 flpchm3 invqcharm invqcharm 0 xxx 0 0 qcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Odd Charm (soc) Odd Charm 0 100 1 0 4 0 0 1 1500 40000 cm6 rld cm4 16 2 3 1 1 1 flpchm3 invdev invdev 0 xxx 0 0 ocha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Extra Odd Charm (3 soc) Extra Odd Charm 0 100 1 0 4 0 0 1 1500 40000 cm9 rld cm9 16 2 3 1 3 1 flpchm3 invdev 0 xxx 0 0 xcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 1 cm8desc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Extra Small Charm (abolished) Extra Small Charm (abolished) 0 100 14 0 4 0 0 1 1500 40000 cm0 rld cm1 16 1 11 0 0 0 flpchm1 invch10 0 xxx 0 0 xcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
I Rune I 1 100 2 2 1 1 0 1 560 r01 r01 r01 16 1 1 0 0 0 flprun invr-i 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
U Rune U 1 100 3 3 1 1 0 1 560 r02 r02 r02 16 1 1 0 0 0 flprun invr-u 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Shi Rune Shi 1 100 4 4 2 1 0 1 1260 r03 r03 r03 16 1 1 0 0 0 flprun invr-shi 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ka Rune Ka 1 100 5 5 2 1 0 1 1260 r04 r04 r04 16 1 1 0 0 0 flprun invr-ka 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
N Rune N 1 100 6 6 3 1 0 1 2240 r05 r05 r05 16 1 1 0 0 0 flprun invr-n 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ku Rune Ku 1 100 7 7 3 1 0 1 2240 r06 r06 r06 16 1 1 0 0 0 flprun invr-ku 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Yo Rune Yo 1 100 9 9 4 1 0 1 3500 r07 r07 r07 16 1 1 0 0 0 flprun invr-yo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ki Rune Ki 1 100 10 10 5 1 0 1 5040 r08 r08 r08 16 1 1 0 0 0 flprun invr-ki 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ri Rune Ri 1 100 12 12 6 1 0 1 6860 r09 r09 r09 16 1 1 0 0 0 flprun invr-ri 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mi Rune Mi 1 100 13 13 7 1 0 1 8960 r10 r10 r10 16 1 1 0 0 0 flprun invr-mi 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ya Rune Ya 1 100 15 15 8 1 0 1 11340 r11 r11 r11 16 1 1 0 0 0 flprun invr-ya 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
A Rune A 1 100 17 17 9 1 0 1 14000 r12 r12 r12 16 1 1 0 0 0 flprun invr-a 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Tsu Rune Tsu 1 100 19 19 10 1 0 1 16940 r13 r13 r13 16 1 1 0 0 0 flprun invr-tsu 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Chi Rune Chi 1 100 20 20 11 1 0 1 20160 r14 r14 r14 16 1 1 0 0 0 flprun invr-chi 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Sa Rune Sa 1 100 22 1 12 1 0 1 1715 r15 r15 r15 16 1 1 0 0 0 flprun invr-sa 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Yu Rune Yu 1 100 23 23 13 1 0 1 27440 r16 r16 r16 16 1 1 0 0 0 flprun invr-yu 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ke Rune Ke 1 100 24 24 14 1 0 1 31500 r17 r17 r17 16 1 1 0 0 0 flprun invr-ke 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
E Rune E 1 100 26 26 15 1 0 1 35840 r18 r18 r18 16 1 1 0 0 0 flprun invr-e 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ko Rune Ko 1 100 27 27 16 1 0 1 40460 r19 r19 r19 16 1 1 0 0 0 flprun invr-ko 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ra Rune Ra 1 100 28 28 17 1 0 1 45360 r20 r20 r20 16 1 1 0 0 0 flprun invr-ra 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
O Rune O 1 100 30 30 18 1 0 1 50540 r21 r21 r21 16 1 1 0 0 0 flprun invr-o 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ho Rune Ho 1 100 31 31 19 1 0 1 56000 r22 r22 r22 16 1 1 0 0 0 flprun invr-ho 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Me Rune Me 1 100 32 32 20 1 0 1 61740 r23 r23 r23 16 1 1 0 0 0 flprun invr-me 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ru Rune Ru 1 100 34 34 21 1 0 1 67760 r24 r24 r24 16 1 1 0 0 0 flprun invr-ru 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ta Rune Ta 1 100 35 35 22 1 0 1 74060 r25 r25 r25 16 1 1 0 0 0 flprun invr-ta 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
To Rune To 1 100 36 36 23 1 0 1 80640 r26 r26 r26 16 1 1 0 0 0 flprun invr-to 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Wa Rune Wa 1 100 38 38 24 1 0 1 87500 r27 r27 r27 16 1 1 0 0 0 flprun invr-wa 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ha Rune Ha 1 100 39 39 25 1 0 1 94640 r28 r28 r28 16 1 1 0 0 0 flprun invr-ha 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Na Rune Na 1 100 40 40 26 1 0 1 102060 r29 r29 r29 16 1 1 0 0 0 flprun invr-na 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ni Rune Ni 1 100 42 42 27 1 0 1 109760 r30 r30 r30 16 1 1 0 0 0 flprun invr-ni 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Se Rune Se 1 100 43 43 28 1 0 1 117740 r31 r31 r31 16 1 1 0 0 0 flprun invr-se 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Fu Rune Fu 1 100 44 44 29 1 0 1 126000 r32 r32 r32 16 1 1 0 0 0 flprun invr-fu 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ma Rune Ma 1 100 45 45 30 1 0 1 134540 r33 r33 r33 16 1 1 0 0 0 flprun invr-ma 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Hi Rune Hi 1 100 46 46 31 1 0 1 143360 r34 r21 r34 16 1 1 0 0 0 flprun invr-hi 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mo Rune Mo 1 100 47 47 32 1 0 1 152180 r35 r22 r35 16 1 1 0 0 0 flprun invr-mo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
No Rune No 1 100 48 48 33 1 0 1 161000 r36 r23 r36 16 1 1 0 0 0 flprun invr-no 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Te Rune Te 1 100 50 50 34 1 0 1 169820 r37 r24 r37 16 1 1 0 0 0 flprun invr-te 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ro Rune Ro 1 100 51 51 35 1 0 1 178640 r38 r25 r38 16 1 1 0 0 0 flprun invr-ro 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
So Rune So 1 100 52 52 36 1 0 1 187460 r39 r26 r39 16 1 1 0 0 0 flprun invr-so 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Mu Rune Mu 1 100 54 54 37 1 0 1 196280 r40 r27 r40 16 1 1 0 0 0 flprun invr-mu 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Ne Rune Ne 1 100 55 55 38 1 0 1 205100 r41 r28 r41 16 1 1 0 0 0 flprun invr-ne 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Re Rune Re 1 100 56 56 39 1 0 1 213920 r42 r29 r42 16 1 1 0 0 0 flprun invr-re 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Su Rune Su 1 100 57 57 40 1 0 1 222740 r43 r30 r43 16 1 1 0 0 0 flprun invr-su 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
He Rune He 1 100 59 59 41 1 0 1 231560 r44 r31 r44 16 1 1 0 0 0 flprun invr-he 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Nu Rune Nu 1 100 60 60 42 1 0 1 240380 r45 r32 r45 16 1 1 0 0 0 flprun invr-nu 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Wo Rune Wo 1 100 61 61 43 1 0 1 249200 r46 r33 r46 16 1 1 0 0 0 flprun invr-wo 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Qa Rune Qa 1 100 8 8 2 1 0 1 1260 r47 r04 r47 16 1 1 0 0 0 flprun invr-qa 0 xxx 0 0 rune item_rune 12 item_rune 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 1 El 0 0 1 1 1 1 0 1 448 01l 01l 01l 16 1 1 0 0 0 flpscr invdEl 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 2 Eld 0 0 1 1 1 1 0 1 448 02l 02l 02l 16 1 1 0 0 0 flpscr invdEld 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 3 Tir 0 0 1 1 1 1 0 1 1008 03l 03l 03l 16 1 1 0 0 0 flpscr invdTir 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 4 Nef 0 0 1 1 1 1 0 1 1008 04l 04l 04l 16 1 1 0 0 0 flpscr invdNef 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 5 Eth 0 0 1 1 1 1 0 1 1792 05l 05l 05l 16 1 1 0 0 0 flpscr invdEth 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 6 Ith 0 0 1 1 1 1 0 1 1792 06l 06l 06l 16 1 1 0 0 0 flpscr invdIth 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 7 Tal 0 0 1 1 1 1 0 1 2800 07l 07l 07l 16 1 1 0 0 0 flpscr invdTal 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 8 Ral 0 0 1 1 1 1 0 1 4032 08l 08l 08l 16 1 1 0 0 0 flpscr invdRal 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 9 Ort 0 0 1 1 1 1 0 1 5488 09l 09l 09l 16 1 1 0 0 0 flpscr invdOrt 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 10 Thul 0 0 1 1 1 1 0 1 7168 10l 10l 10l 16 1 1 0 0 0 flpscr invdThul 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 11 Amn 0 0 1 1 1 1 0 1 9072 11l 11l 11l 16 1 1 0 0 0 flpscr invdAmn 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 12 Sol 0 0 1 1 1 1 0 1 11200 12l 12l 12l 16 1 1 0 0 0 flpscr invdSol 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 13 Shael 0 0 1 1 1 1 0 1 13552 13l 13l 13l 16 1 1 0 0 0 flpscr invdShae 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 14 Dol 0 0 1 1 1 1 0 1 16128 14l 14l 14l 16 1 1 0 0 0 flpscr invdDol 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 15 Hel 0 0 1 1 1 1 0 1 1372 15l 15l 15l 16 1 1 0 0 0 flpscr invdHel 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 16 Io 0 0 1 1 1 1 0 1 21952 16l 16l 16l 16 1 1 0 0 0 flpscr invdIo 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 17 Lum 0 0 1 1 1 1 0 1 25200 17l 17l 17l 16 1 1 0 0 0 flpscr invdLum 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 18 Ko 0 0 1 1 1 1 0 1 28672 18l 18l 18l 16 1 1 0 0 0 flpscr invdKo 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 19 Fal 0 0 1 1 1 1 0 1 32368 19l 19l 19l 16 1 1 0 0 0 flpscr invdFal 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 20 Lem 0 0 1 1 1 1 0 1 36288 20l 20l 20l 16 1 1 0 0 0 flpscr invdLem 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 21 Pul 0 0 1 1 1 1 0 1 40432 21l 21l 21l 16 1 1 0 0 0 flpscr invdPul 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 22 Um 0 0 1 1 1 1 0 1 44800 22l 22l 22l 16 1 1 0 0 0 flpscr invdUm 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 23 Mal 0 0 1 1 1 1 0 1 49392 23l 23l 23l 16 1 1 0 0 0 flpscr invdMal 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 24 Ist 0 0 1 1 1 1 0 1 54208 24l 24l 24l 16 1 1 0 0 0 flpscr invdIst 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 25 Gul 0 0 1 1 1 1 0 1 59248 25l 25l 25l 16 1 1 0 0 0 flpscr invdGul 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 26 Vex 0 0 1 1 1 1 0 1 64512 26l 26l 26l 16 1 1 0 0 0 flpscr invdVex 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 27 Ohm 0 0 1 1 1 1 0 1 70000 27l 27l 27l 16 1 1 0 0 0 flpscr invdOhm 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 28 Lo 0 0 1 1 1 1 0 1 75712 28l 28l 28l 16 1 1 0 0 0 flpscr invdLo 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 29 Sur 0 0 1 1 1 1 0 1 81648 29l 29l 29l 16 1 1 0 0 0 flpscr invdSur 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 30 Ber 0 0 1 1 1 1 0 1 87808 30l 30l 30l 16 1 1 0 0 0 flpscr invdBer 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 31 Jah 0 0 1 1 1 1 0 1 94192 31l 31l 31l 16 1 1 0 0 0 flpscr invdJo 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 32 Cham 0 0 1 1 1 1 0 1 100800 32l 32l 32l 16 1 1 0 0 0 flpscr invdCham 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal 33 Zod 0 0 1 1 1 1 0 1 107632 33l 33l 33l 16 1 1 0 0 0 flpscr invdZod 0 xxx 0 0 coup item_scroll 10 item_scroll 0 1 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 1 Scroll 1 0 0 0 0 0 0 0 1 20000 01a 01a 01a 16 1 1 0 0 0 flpscr invsc01 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 01b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 2 Scroll 2 0 0 0 0 0 0 0 1 20000 02a 02a 02a 16 1 1 0 0 0 flpscr invsc02 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 02b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 3 Scroll 3 0 0 0 0 0 0 0 1 20000 03a 03a 03a 16 1 1 0 0 0 flpscr invsc03 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 03b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 4 Scroll 4 0 0 0 0 0 0 0 1 20000 04a 04a 04a 16 1 1 0 0 0 flpscr invsc04 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 04b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 5 Scroll 5 0 0 0 0 0 0 0 1 20000 05a 05a 05a 16 1 1 0 0 0 flpscr invsc05 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 05b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 6 Scroll 6 0 0 0 0 0 0 0 1 20000 06a 06a 06a 16 1 1 0 0 0 flpscr invsc06 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 06b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 7 Scroll 7 0 0 0 0 0 0 0 1 20000 07a 07a 07a 16 1 1 0 0 0 flpscr invsc07 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 07b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 8 Scroll 8 0 0 0 0 0 0 0 1 20000 08a 08a 08a 16 1 1 0 0 0 flpscr invsc08 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 08b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 9 Scroll 9 0 0 0 0 0 0 0 1 20000 09a 09a 09a 16 1 1 0 0 0 flpscr invsc09 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 09b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 10 Scroll 10 0 0 0 0 0 0 0 1 20000 10a 10a 10a 16 1 1 0 0 0 flpscr invsc10 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 10b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 11 Scroll 11 0 0 0 0 0 0 0 1 20000 11a 11a 11a 16 1 1 0 0 0 flpscr invsc11 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 11b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 12 Scroll 12 0 0 0 0 0 0 0 1 20000 12a 12a 12a 16 1 1 0 0 0 flpscr invsc12 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 12b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 13 Scroll 13 0 0 0 0 0 0 0 1 20000 13a 13a 13a 16 1 1 0 0 0 flpscr invsc13 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 13b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 14 Scroll 14 0 0 0 0 0 0 0 1 20000 14a 14a 14a 16 1 1 0 0 0 flpscr invsc14 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 14b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 15 Scroll 15 0 0 0 0 0 0 0 1 20000 15a 15a 15a 16 1 1 0 0 0 flpscr invsc15 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 15b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 16 Scroll 16 0 0 0 0 0 0 0 1 20000 16a 16a 16a 16 1 1 0 0 0 flpscr invsc16 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 16b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 17 Scroll 17 0 0 0 0 0 0 0 1 20000 17a 17a 17a 16 1 1 0 0 0 flpscr invsc17 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 17b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 18 Scroll 18 0 0 0 0 0 0 0 1 20000 18a 18a 18a 16 1 1 0 0 0 flpscr invsc18 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 18b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 19 Scroll 19 0 0 0 0 0 0 0 1 20000 19a 19a 19a 16 1 1 0 0 0 flpscr invsc19 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 19b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 20 Scroll 20 0 0 0 0 0 0 0 1 20000 20a 20a 20a 16 1 1 0 0 0 flpscr invsc20 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 20b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 21 Scroll 21 0 0 0 0 0 0 0 1 20000 21a 21a 21a 16 1 1 0 0 0 flpscr invsc21 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 21b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 22 Scroll 22 0 0 0 0 0 0 0 1 20000 22a 22a 22a 16 1 1 0 0 0 flpscr invsc22 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 22b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 23 Scroll 23 0 0 0 0 0 0 0 1 20000 23a 23a 23a 16 1 1 0 0 0 flpscr invsc23 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 23b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 24 Scroll 24 0 0 0 0 0 0 0 1 20000 24a 24a 24a 16 1 1 0 0 0 flpscr invsc24 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 24b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 25 Scroll 25 0 0 0 0 0 0 0 1 20000 25a 25a 25a 16 1 1 0 0 0 flpscr invsc25 0 xxx 0 0 asc1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 25b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 26 Scroll 26 0 0 0 0 0 0 0 1 20000 26a 26a 26a 16 1 1 0 0 0 flpscr invsc26 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 26b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 27 Scroll 27 0 0 0 0 0 0 0 1 20000 27a 27a 27a 16 1 1 0 0 0 flpscr invsc27 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 27b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 28 Scroll 28 0 0 0 0 0 0 0 1 20000 28a 28a 28a 16 1 1 0 0 0 flpscr invsc28 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 28b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 29 Scroll 29 0 0 0 0 0 0 0 1 20000 29a 29a 29a 16 1 1 0 0 0 flpscr invsc29 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 29b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 30 Scroll 30 0 0 0 0 0 0 0 1 20000 30a 30a 30a 16 1 1 0 0 0 flpscr invsc30 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 30b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 31 Scroll 31 0 0 0 0 0 0 0 1 20000 31a 31a 31a 16 1 1 0 0 0 flpscr invsc31 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 31b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 32 Scroll 32 0 0 0 0 0 0 0 1 20000 32a 32a 32a 16 1 1 0 0 0 flpscr invsc32 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 32b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 33 Scroll 33 0 0 0 0 0 0 0 1 20000 33a 33a 33a 16 1 1 0 0 0 flpscr invsc33 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 33b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 34 Scroll 34 0 0 0 0 0 0 0 1 20000 34a 34a 34a 16 1 1 0 0 0 flpscr invsc34 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 34b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 35 Scroll 35 0 0 0 0 0 0 0 1 20000 35a 35a 35a 16 1 1 0 0 0 flpscr invsc35 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 35b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 36 Scroll 36 0 0 0 0 0 0 0 1 20000 36a 36a 36a 16 1 1 0 0 0 flpscr invsc36 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 36b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 37 Scroll 37 0 0 0 0 0 0 0 1 20000 37a 37a 37a 16 1 1 0 0 0 flpscr invsc37 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 37b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 38 Scroll 38 0 0 0 0 0 0 0 1 20000 38a 38a 38a 16 1 1 0 0 0 flpscr invsc38 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 38b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 39 Scroll 39 0 0 0 0 0 0 0 1 20000 39a 39a 39a 16 1 1 0 0 0 flpscr invsc39 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 39b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 40 Scroll 40 0 0 0 0 0 0 0 1 20000 40a 40a 40a 16 1 1 0 0 0 flpscr invsc40 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 40b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 41 Scroll 41 0 0 0 0 0 0 0 1 20000 41a 41a 41a 16 1 1 0 0 0 flpscr invsc41 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 41b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 42 Scroll 42 0 0 0 0 0 0 0 1 20000 42a 42a 42a 16 1 1 0 0 0 flpscr invsc42 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 42b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 43 Scroll 43 0 0 0 0 0 0 0 1 20000 43a 43a 43a 16 1 1 0 0 0 flpscr invsc43 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 43b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 44 Scroll 44 0 0 0 0 0 0 0 1 20000 44a 44a 44a 16 1 1 0 0 0 flpscr invsc44 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 44b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 45 Scroll 45 0 0 0 0 0 0 0 1 20000 45a 45a 45a 16 1 1 0 0 0 flpscr invsc45 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 45b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 46 Scroll 46 0 0 0 0 0 0 0 1 20000 46a 46a 46a 16 1 1 0 0 0 flpscr invsc46 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 46b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 47 Scroll 47 0 0 0 0 0 0 0 1 20000 47a 47a 47a 16 1 1 0 0 0 flpscr invsc47 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 47b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 48 Scroll 48 0 0 0 0 0 0 0 1 20000 48a 48a 48a 16 1 1 0 0 0 flpscr invsc48 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 48b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 49 Scroll 49 0 0 0 0 0 0 0 1 20000 49a 49a 49a 16 1 1 0 0 0 flpscr invsc49 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 49b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Scroll 50 Scroll 50 0 0 0 0 0 0 0 1 20000 50a 50a 50a 16 1 1 0 0 0 flpscr invsc50 0 xxx 0 0 asc2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 50b 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 1 UnID Scroll 1 0 0 5 0 1 1 0 1 10000 01b 01b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 2 UnID Scroll 2 0 0 6 0 1 1 0 1 10000 02b 02b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 3 UnID Scroll 3 0 0 7 0 1 1 0 1 10000 03b 03b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 4 UnID Scroll 4 0 0 8 0 1 1 0 1 10000 04b 04b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 5 UnID Scroll 5 0 0 9 0 1 1 0 1 10000 05b 05b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 6 UnID Scroll 6 0 0 10 0 2 1 0 1 10000 06b 06b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 7 UnID Scroll 7 0 0 12 0 2 1 0 1 10000 07b 07b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 8 UnID Scroll 8 0 0 13 0 2 1 0 1 10000 08b 08b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 9 UnID Scroll 9 0 0 14 0 2 1 0 1 10000 09b 09b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 10 UnID Scroll 10 0 0 15 0 2 1 0 1 10000 10b 10b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 11 UnID Scroll 11 0 0 16 0 3 1 0 1 10000 11b 11b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 12 UnID Scroll 12 0 0 17 0 3 1 0 1 10000 12b 12b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 13 UnID Scroll 13 0 0 19 0 3 1 0 1 10000 13b 13b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 14 UnID Scroll 14 0 0 20 0 3 1 0 1 10000 14b 14b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 15 UnID Scroll 15 0 0 21 0 3 1 0 1 10000 15b 15b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 16 UnID Scroll 16 0 0 22 0 4 1 0 1 10000 16b 16b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 17 UnID Scroll 17 0 0 23 0 4 1 0 1 10000 17b 17b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 18 UnID Scroll 18 0 0 25 0 4 1 0 1 10000 18b 18b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 19 UnID Scroll 19 0 0 26 0 4 1 0 1 10000 19b 19b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 20 UnID Scroll 20 0 0 27 0 4 1 0 1 10000 20b 20b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 21 UnID Scroll 21 0 0 28 0 5 1 0 1 10000 21b 21b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 22 UnID Scroll 22 0 0 29 0 5 1 0 1 10000 22b 22b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 23 UnID Scroll 23 0 0 31 0 5 1 0 1 10000 23b 23b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 24 UnID Scroll 24 0 0 32 0 5 1 0 1 10000 24b 24b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 25 UnID Scroll 25 0 0 33 0 5 1 0 1 10000 25b 25b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 26 UnID Scroll 26 0 0 34 0 6 1 0 1 10000 26b 26b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 27 UnID Scroll 27 0 0 35 0 6 1 0 1 10000 27b 27b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 28 UnID Scroll 28 0 0 37 0 6 1 0 1 10000 28b 28b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 29 UnID Scroll 29 0 0 38 0 6 1 0 1 10000 29b 29b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 30 UnID Scroll 30 0 0 39 0 6 1 0 1 10000 30b 30b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 31 UnID Scroll 31 0 0 40 0 7 1 0 1 10000 31b 31b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 32 UnID Scroll 32 0 0 41 0 7 1 0 1 10000 32b 32b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 33 UnID Scroll 33 0 0 43 0 7 1 0 1 10000 33b 33b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 34 UnID Scroll 34 0 0 44 0 7 1 0 1 10000 34b 34b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 35 UnID Scroll 35 0 0 45 0 7 1 0 1 10000 35b 35b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 36 UnID Scroll 36 0 0 46 0 8 1 0 1 10000 36b 36b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 37 UnID Scroll 37 0 0 47 0 8 1 0 1 10000 37b 37b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 38 UnID Scroll 38 0 0 49 0 8 1 0 1 10000 38b 38b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 39 UnID Scroll 39 0 0 50 0 8 1 0 1 10000 39b 39b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 40 UnID Scroll 40 0 0 51 0 8 1 0 1 10000 40b 40b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 41 UnID Scroll 41 0 0 52 0 9 1 0 1 10000 41b 41b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 42 UnID Scroll 42 0 0 53 0 9 1 0 1 10000 42b 42b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 43 UnID Scroll 43 0 0 55 0 9 1 0 1 10000 43b 43b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 44 UnID Scroll 44 0 0 56 0 9 1 0 1 10000 44b 44b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 45 UnID Scroll 45 0 0 57 0 9 1 0 1 10000 45b 45b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 46 UnID Scroll 46 0 0 58 0 10 1 0 1 10000 46b 46b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 47 UnID Scroll 47 0 0 59 0 10 1 0 1 10000 47b 47b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 48 UnID Scroll 48 0 0 61 0 10 1 0 1 10000 48b 48b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 49 UnID Scroll 49 0 0 62 0 10 1 0 1 10000 49b 49b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
UnID Scroll 50 UnID Scroll 50 0 0 63 0 10 1 0 1 10000 50b 50b 00a 16 1 1 0 0 0 flpscr invscbs 0 xxx 0 0 scrl item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 1 Pelta Lunata 0 0 1 1 1 1 0 1 20000 01c 01c 01c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 2 War Bonnet 0 0 1 1 1 1 0 1 20000 02c 02c 02c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 3 The Hand of Broc 0 0 1 1 1 1 0 1 20000 03c 03c 03c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 4 Hotspur 0 0 1 1 1 1 0 1 20000 04c 04c 04c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 5 Greyform 0 0 1 1 1 1 0 1 20000 05c 05c 05c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 6 Lenyms Cord 0 0 1 1 1 1 0 1 20000 06c 06c 06c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 7 Umbral Disk 0 0 1 1 1 1 0 1 20000 07c 07c 07c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 8 Bloodfist 0 0 1 1 1 1 0 1 20000 08c 08c 08c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 9 Gorefoot 0 0 1 1 1 1 0 1 20000 09c 09c 09c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 10 Blinkbats Form 0 0 1 1 1 1 0 1 20000 10c 10c 10c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 11 Snakecord 0 0 1 1 1 1 0 1 20000 11c 11c 11c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 12 Stormguild 0 0 1 1 1 1 0 1 20000 12c 12c 12c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 13 The Centurion 0 0 1 1 1 1 0 1 20000 13c 13c 13c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 14 Coif of Glory 0 0 1 1 1 1 0 1 20000 14c 14c 14c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 15 Darkglow 0 0 1 1 1 1 0 1 20000 15c 15c 15c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 16 Tarnhelm 0 0 1 1 1 1 0 1 20000 16c 16c 16c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 17 Swordback Hold 0 0 1 1 1 1 0 1 20000 17c 17c 17c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 18 Chance Guards 0 0 1 1 1 1 0 1 20000 18c 18c 18c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 19 Treads of Cthon 0 0 1 1 1 1 0 1 20000 19c 19c 19c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 20 Hawkmail 0 0 1 1 1 1 0 1 20000 20c 20c 20c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 21 Twitchthroe 0 0 1 1 1 1 0 1 20000 21c 21c 21c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 22 Duskdeep 0 0 1 1 1 1 0 1 20000 22c 22c 22c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 23 Steelclash 0 0 1 1 1 1 0 1 20000 23c 23c 23c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 24 Sparking Mail 0 0 1 1 1 1 0 1 20000 24c 24c 24c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 25 Bverrit Keep 0 0 1 1 1 1 0 1 20000 25c 25c 25c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 26 The Face of Horror 0 0 1 1 1 1 0 1 20000 26c 26c 26c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 27 Venomsward 0 0 1 1 1 1 0 1 20000 27c 27c 27c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 28 Wall of the Eyeless 0 0 1 1 1 1 0 1 20000 28c 28c 28c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 29 Nightsmoke 0 0 1 1 1 1 0 1 20000 29c 29c 29c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 30 Wormskull 0 0 1 1 1 1 0 1 20000 30c 30c 30c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 31 Iceblink 0 0 1 1 1 1 0 1 20000 31c 31c 31c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 32 Magefist 0 0 1 1 1 1 0 1 20000 32c 32c 32c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 33 Goblin Toe 0 0 1 1 1 1 0 1 20000 33c 33c 33c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 34 Goldwrap 0 0 1 1 1 1 0 1 20000 34c 34c 34c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 35 Howltusk 0 0 1 1 1 1 0 1 20000 35c 35c 35c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 36 Boneflesh 0 0 1 1 1 1 0 1 20000 36c 36c 36c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 37 Frostburn 0 0 1 1 1 1 0 1 20000 37c 37c 37c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 38 Tearhaunch 0 0 1 1 1 1 0 1 20000 38c 38c 38c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 39 Bladebuckle 0 0 1 1 1 1 0 1 20000 39c 39c 39c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 40 Undead Crown 0 0 1 1 1 1 0 1 20000 40c 40c 40c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 41 Rockfleece 0 0 1 1 1 1 0 1 20000 41c 41c 41c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 42 The Ward 0 0 1 1 1 1 0 1 20000 42c 42c 42c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 43 Rattlecage 0 0 1 1 1 1 0 1 20000 43c 43c 43c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 44 Heavenly Garb 0 0 1 1 1 1 0 1 20000 44c 44c 44c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 45 Goldskin 0 0 1 1 1 1 0 1 20000 45c 45c 45c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Armor 46 Victors Silk 0 0 1 1 1 1 0 1 20000 46c 46c 46c 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 1 Peasent Crown 0 0 1 1 1 1 0 1 40000 01d 01d 01d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 2 The Spirit Shroud 0 0 1 1 1 1 0 1 40000 02d 02d 02d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 3 Visceratuant 0 0 1 1 1 1 0 1 40000 03d 03d 03d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 4 Venom Grip 0 0 1 1 1 1 0 1 40000 04d 04d 04d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 5 Infernostride 0 0 1 1 1 1 0 1 40000 05d 05d 05d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 6 String of Ears 0 0 1 1 1 1 0 1 40000 06d 06d 06d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 7 Skin of the Vipermagi 0 0 1 1 1 1 0 1 40000 07d 07d 07d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 8 Rockstopper 0 0 1 1 1 1 0 1 40000 08d 08d 08d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 9 Skin of the Flayerd One 0 0 1 1 1 1 0 1 40000 09d 09d 09d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 10 Mosers Blessed Circle 0 0 1 1 1 1 0 1 40000 10d 10d 10d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 11 Gravepalm 0 0 1 1 1 1 0 1 40000 11d 11d 11d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 12 Razortail 0 0 1 1 1 1 0 1 40000 12d 12d 12d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 13 Waterwalk 0 0 1 1 1 1 0 1 40000 13d 13d 13d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 14 Ironpelt 0 0 1 1 1 1 0 1 40000 14d 14d 14d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 15 Stealskull 0 0 1 1 1 1 0 1 40000 15d 15d 15d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 16 Spiritforge 0 0 1 1 1 1 0 1 40000 16d 16d 16d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 17 Stormchaser 0 0 1 1 1 1 0 1 40000 17d 17d 17d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 18 Lance Guard 0 0 1 1 1 1 0 1 40000 18d 18d 18d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 19 Ghoulhide 0 0 1 1 1 1 0 1 40000 19d 19d 19d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 20 Silkweave 0 0 1 1 1 1 0 1 40000 20d 20d 20d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 21 Crow Caw 0 0 1 1 1 1 0 1 40000 21d 21d 21d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 22 Gloomstrap 0 0 1 1 1 1 0 1 40000 22d 22d 22d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 23 Darksight Helm 0 0 1 1 1 1 0 1 40000 23d 23d 23d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 24 Shaftstop 0 0 1 1 1 1 0 1 40000 24d 24d 24d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 25 Tiamat's Rebuke 0 0 1 1 1 1 0 1 40000 25d 25d 25d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 26 Blackhorn's Face 0 0 1 1 1 1 0 1 40000 26d 26d 26d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 27 Duriel's Shell 0 0 1 1 1 1 0 1 40000 27d 27d 27d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 28 Lidless Wall 0 0 1 1 1 1 0 1 40000 28d 28d 28d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 29 Snowclash 0 0 1 1 1 1 0 1 40000 29d 29d 29d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 30 Vampiregaze 0 0 1 1 1 1 0 1 40000 30d 30d 30d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 31 Skullder's Ire 0 0 1 1 1 1 0 1 40000 31d 31d 31d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 32 Lavagout 0 0 1 1 1 1 0 1 40000 32d 32d 32d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 33 Wartraveler 0 0 1 1 1 1 0 1 40000 33d 33d 33d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 34 Arreat's Face 0 0 1 1 1 1 0 1 40000 34d 34d 34d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 35 Homunculus 0 0 1 1 1 1 0 1 40000 35d 35d 35d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 36 Herald of Zakarum 0 0 1 1 1 1 0 1 40000 36d 36d 36d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 37 Jalal's Mane 0 0 1 1 1 1 0 1 40000 37d 37d 37d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 38 Valkiry Wing 0 0 1 1 1 1 0 1 40000 38d 38d 38d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 39 Kerke's Sanctuary 0 0 1 1 1 1 0 1 40000 39d 39d 39d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 40 Guardian Angel-LOD 0 0 1 1 1 1 0 1 40000 40d 40d 40d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 41 Hellmouth 0 0 1 1 1 1 0 1 40000 41d 41d 41d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 42 Gorerider 0 0 1 1 1 1 0 1 40000 42d 42d 42d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 43 Thudergod's Vigor 0 0 1 1 1 1 0 1 40000 43d 43d 43d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 44 Toothrow 0 0 1 1 1 1 0 1 40000 44d 44d 44d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 45 Crown of Thieves 0 0 1 1 1 1 0 1 40000 45d 45d 45d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 46 Radimant's Sphere 0 0 1 1 1 1 0 1 40000 46d 46d 46d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 47 Atma's Wail 0 0 1 1 1 1 0 1 40000 47d 47d 47d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 48 Que-Hegan's Wisdon 0 0 1 1 1 1 0 1 40000 48d 48d 48d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 49 Black Hades 0 0 1 1 1 1 0 1 40000 49d 49d 49d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Armor 50 Corpsemourn 0 0 1 1 1 1 0 1 40000 50d 50d 50d 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 1 Blackoak Shield 0 0 1 1 1 1 0 1 80000 01e 01e 01e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 2 Nosferatu's Coil 0 0 1 1 1 1 0 1 80000 02e 02e 02e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 3 Harlequin Crest 0 0 1 1 1 1 0 1 80000 03e 03e 03e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 4 Demonhorn's Edge 0 0 1 1 1 1 0 1 80000 04e 04e 04e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 5 Steelshade 0 0 1 1 1 1 0 1 80000 05e 05e 05e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 6 Verdugo's Hearty Cord 0 0 1 1 1 1 0 1 80000 06e 06e 06e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 7 Cerebus 0 0 1 1 1 1 0 1 80000 07e 07e 07e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 8 Sandstorm Trek 0 0 1 1 1 1 0 1 80000 08e 08e 08e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 9 Darkforge Spawn 0 0 1 1 1 1 0 1 80000 09e 09e 09e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 10 Giantskull 0 0 1 1 1 1 0 1 80000 10e 10e 10e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 11 Leviathan 0 0 1 1 1 1 0 1 80000 11e 11e 11e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 12 Steel Carapice 0 0 1 1 1 1 0 1 80000 12e 12e 12e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 13 Marrowwalk 0 0 1 1 1 1 0 1 80000 13e 13e 13e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 14 Nightwing's Veil 0 0 1 1 1 1 0 1 80000 14e 14e 14e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 15 Spiritkeeper 0 0 1 1 1 1 0 1 80000 15e 15e 15e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 16 Spirit Ward 0 0 1 1 1 1 0 1 80000 16e 16e 16e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 17 Veil of Steel 0 0 1 1 1 1 0 1 80000 17e 17e 17e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 18 Stormshield 0 0 1 1 1 1 0 1 80000 18e 18e 18e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 19 Spike Thorn 0 0 1 1 1 1 0 1 80000 19e 19e 19e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 20 Steelrend 0 0 1 1 1 1 0 1 80000 20e 20e 20e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 21 Shadowdancer 0 0 1 1 1 1 0 1 80000 21e 21e 21e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 22 Boneflame 0 0 1 1 1 1 0 1 80000 22e 22e 22e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 23 Templar's Might 0 0 1 1 1 1 0 1 80000 23e 23e 23e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 24 Souldrain 0 0 1 1 1 1 0 1 80000 24e 24e 24e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 25 Ravenlore 0 0 1 1 1 1 0 1 80000 25e 25e 25e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 26 Ormus' Robes 0 0 1 1 1 1 0 1 80000 26e 26e 26e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 27 Headhunter's Glory 0 0 1 1 1 1 0 1 80000 27e 27e 27e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 28 Dracul's Grasp 0 0 1 1 1 1 0 1 80000 28e 28e 28e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 29 Medusa's Gaze 0 0 1 1 1 1 0 1 80000 29e 29e 29e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 30 Griffon's Eye 0 0 1 1 1 1 0 1 80000 30e 30e 30e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 31 Dragonscale 0 0 1 1 1 1 0 1 80000 31e 31e 31e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 32 Andariel's Visage 0 0 1 1 1 1 0 1 80000 32e 32e 32e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 33 The Gladiator's Bane 0 0 1 1 1 1 0 1 80000 33e 33e 33e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 34 Arkaine's Valor 0 0 1 1 1 1 0 1 80000 34e 34e 34e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 35 Kira's Guardian 0 0 1 1 1 1 0 1 80000 35e 35e 35e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 36 Wolfhowl 0 0 1 1 1 1 0 1 80000 36e 36e 36e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 37 Halaberd's Reign 0 0 1 1 1 1 0 1 80000 37e 37e 37e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 38 Alma Negra 0 0 1 1 1 1 0 1 80000 38e 38e 38e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 39 Crown of Ages 0 0 1 1 1 1 0 1 80000 39e 39e 39e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 40 Tyrael's Might 0 0 1 1 1 1 0 1 80000 40e 40e 40e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Armor 41 Arachnid Mesh 0 0 1 1 1 1 0 1 80000 41e 41e 41e 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 1 Rixots Keen 0 0 1 1 1 1 0 1 20000 01f 01f 01f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 2 Felloak 0 0 1 1 1 1 0 1 20000 02f 02f 02f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 3 Gull 0 0 1 1 1 1 0 1 20000 03f 03f 03f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 4 Iros Torch 0 0 1 1 1 1 0 1 20000 04f 04f 04f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 5 Bane Ash 0 0 1 1 1 1 0 1 20000 05f 05f 05f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 6 The Gnasher 0 0 1 1 1 1 0 1 20000 06f 06f 06f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 7 Stoutnail 0 0 1 1 1 1 0 1 20000 07f 07f 07f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 8 Knell Striker 0 0 1 1 1 1 0 1 20000 08f 08f 08f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 9 Pluckeye 0 0 1 1 1 1 0 1 20000 09f 09f 09f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 10 Blood Crescent 0 0 1 1 1 1 0 1 20000 10f 10f 10f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 11 The Dragon Chang 0 0 1 1 1 1 0 1 20000 11f 11f 11f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 12 Fechmars Axe 0 0 1 1 1 1 0 1 20000 12f 12f 12f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 13 Dimoaks Hew 0 0 1 1 1 1 0 1 20000 13f 13f 13f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 14 Deathspade 0 0 1 1 1 1 0 1 20000 14f 14f 14f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 15 Leadcrow 0 0 1 1 1 1 0 1 20000 15f 15f 15f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 16 Crushflange 0 0 1 1 1 1 0 1 20000 16f 16f 16f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 17 Serpent Lord 0 0 1 1 1 1 0 1 20000 17f 17f 17f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 18 Krintizs Skewer 0 0 1 1 1 1 0 1 20000 18f 18f 18f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 19 The Diggler 0 0 1 1 1 1 0 1 20000 19f 19f 19f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 20 Shadowfang 0 0 1 1 1 1 0 1 20000 20f 20f 20f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 21 Razortine 0 0 1 1 1 1 0 1 20000 21f 21f 21f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 22 Gleamscythe 0 0 1 1 1 1 0 1 20000 22f 22f 22f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 23 Witherstring 0 0 1 1 1 1 0 1 20000 23f 23f 23f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 24 Azurewrath 0 0 1 1 1 1 0 1 20000 24f 24f 24f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 25 Steelgoad 0 0 1 1 1 1 0 1 20000 25f 25f 25f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 26 Goreshovel 0 0 1 1 1 1 0 1 20000 26f 26f 26f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 27 Maelstromwrath 0 0 1 1 1 1 0 1 20000 27f 27f 27f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 28 Rimeraven 0 0 1 1 1 1 0 1 20000 28f 28f 28f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 29 Bloodrise 0 0 1 1 1 1 0 1 20000 29f 29f 29f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 30 Bladebone 0 0 1 1 1 1 0 1 20000 30f 30f 30f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 31 Griswolds Edge 0 0 1 1 1 1 0 1 20000 31f 31f 31f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 32 Bloodthief 0 0 1 1 1 1 0 1 20000 32f 32f 32f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 33 Rusthandle 0 0 1 1 1 1 0 1 20000 33f 33f 33f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 34 Lazarus Spire 0 0 1 1 1 1 0 1 20000 34f 34f 34f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 35 Ichorsting 0 0 1 1 1 1 0 1 20000 35f 35f 35f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 36 Soulflay 0 0 1 1 1 1 0 1 20000 36f 36f 36f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 37 Soul Harvest 0 0 1 1 1 1 0 1 20000 37f 37f 37f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 38 The Jade Tan Do 0 0 1 1 1 1 0 1 20000 38f 38f 38f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 39 The Chieftan 0 0 1 1 1 1 0 1 20000 39f 39f 39f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 40 Piercerib 0 0 1 1 1 1 0 1 20000 40f 40f 40f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 41 Gravenspine 0 0 1 1 1 1 0 1 20000 41f 41f 41f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 42 The Salamander 0 0 1 1 1 1 0 1 20000 42f 42f 42f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 43 The Generals Tan Do Li Ga 0 0 1 1 1 1 0 1 20000 43f 43f 43f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 44 Mindrend 0 0 1 1 1 1 0 1 20000 44f 44f 44f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 45 Lance of Yaggai 0 0 1 1 1 1 0 1 20000 45f 45f 45f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 46 Hellplague 0 0 1 1 1 1 0 1 20000 46f 46f 46f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 47 Stormeye 0 0 1 1 1 1 0 1 20000 47f 47f 47f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 48 Kinemils Awl 0 0 1 1 1 1 0 1 20000 48f 48f 48f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 49 Bonesob 0 0 1 1 1 1 0 1 20000 49f 49f 49f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 50 Pullspite 0 0 1 1 1 1 0 1 20000 50f 50f 50f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 51 Irices Shard 0 0 1 1 1 1 0 1 20000 51f 51f 51f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 52 The Battlebranch 0 0 1 1 1 1 0 1 20000 52f 52f 52f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 53 Brainhew 0 0 1 1 1 1 0 1 20000 53f 53f 53f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 54 Ripsaw 0 0 1 1 1 1 0 1 20000 54f 54f 54f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 55 Blacktongue 0 0 1 1 1 1 0 1 20000 55f 55f 55f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 56 Wizendraw 0 0 1 1 1 1 0 1 20000 56f 56f 56f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 57 Hellcast 0 0 1 1 1 1 0 1 20000 57f 57f 57f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 58 The Tannr Gorerod 0 0 1 1 1 1 0 1 20000 58f 58f 58f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 59 Hellclap 0 0 1 1 1 1 0 1 20000 59f 59f 59f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 60 Ironstone 0 0 1 1 1 1 0 1 20000 60f 60f 60f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 61 Rakescar 0 0 1 1 1 1 0 1 20000 61f 61f 61f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 62 Blastbark 0 0 1 1 1 1 0 1 20000 62f 62f 62f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 63 Doomspittle 0 0 1 1 1 1 0 1 20000 63f 63f 63f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 64 Woestave 0 0 1 1 1 1 0 1 20000 64f 64f 64f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 65 Umes Lament 0 0 1 1 1 1 0 1 20000 65f 65f 65f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 66 The Iron Jang Bong 0 0 1 1 1 1 0 1 20000 66f 66f 66f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 67 The Humongous 0 0 1 1 1 1 0 1 20000 67f 67f 67f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 68 Culwens Point 0 0 1 1 1 1 0 1 20000 68f 68f 68f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 69 The Grim Reaper 0 0 1 1 1 1 0 1 20000 69f 69f 69f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 70 Steeldriver 0 0 1 1 1 1 0 1 20000 70f 70f 70f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon nor Weapon 71 The Patriarch 0 0 1 1 1 1 0 1 20000 71f 71f 71f 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 1 Razorswitch 0 0 1 1 1 1 0 1 40000 01g 01g 01g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 2 Skystrike 0 0 1 1 1 1 0 1 40000 02g 02g 02g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 3 Bloodletter 0 0 1 1 1 1 0 1 40000 03g 03g 03g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 4 Riphook 0 0 1 1 1 1 0 1 40000 04g 04g 04g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 5 The Impaler 0 0 1 1 1 1 0 1 40000 05g 05g 05g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 6 Ribcracker 0 0 1 1 1 1 0 1 40000 06g 06g 06g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 7 Coldsteel Eye 0 0 1 1 1 1 0 1 40000 07g 07g 07g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 8 Spineripper 0 0 1 1 1 1 0 1 40000 08g 08g 08g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 9 Langer Briser 0 0 1 1 1 1 0 1 40000 09g 09g 09g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 10 Kelpie Snare 0 0 1 1 1 1 0 1 40000 10g 10g 10g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 11 Suicide Branch 0 0 1 1 1 1 0 1 40000 11g 11g 11g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 12 Kuko Shakaku 0 0 1 1 1 1 0 1 40000 12g 12g 12g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 13 Hexfire 0 0 1 1 1 1 0 1 40000 13g 13g 13g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 14 Dark Clan Crusher 0 0 1 1 1 1 0 1 40000 14g 14g 14g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 15 Warlord's Trust 0 0 1 1 1 1 0 1 40000 15g 15g 15g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 16 Chromatic Ire 0 0 1 1 1 1 0 1 40000 16g 16g 16g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 17 Soulfeast Tine 0 0 1 1 1 1 0 1 40000 17g 17g 17g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 18 Carin Shard 0 0 1 1 1 1 0 1 40000 18g 18g 18g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 19 Blade of Ali Baba 0 0 1 1 1 1 0 1 40000 19g 19g 19g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 20 Pus Spiter 0 0 1 1 1 1 0 1 40000 20g 20g 20g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 21 Heart Carver 0 0 1 1 1 1 0 1 40000 21g 21g 21g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 22 Coldkill 0 0 1 1 1 1 0 1 40000 22g 22g 22g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 23 Arm of King Leoric 0 0 1 1 1 1 0 1 40000 23g 23g 23g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 24 Endlesshail 0 0 1 1 1 1 0 1 40000 24g 24g 24g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 25 Hone Sundan 0 0 1 1 1 1 0 1 40000 25g 25g 25g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 26 Ginther's Rift 0 0 1 1 1 1 0 1 40000 26g 26g 26g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 27 Zakarum's Hand 0 0 1 1 1 1 0 1 40000 27g 27g 27g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 28 Blackbog's Sharp 0 0 1 1 1 1 0 1 40000 28g 28g 28g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 29 Fleshrender 0 0 1 1 1 1 0 1 40000 29g 29g 29g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 30 The Fetid Sprinkler 0 0 1 1 1 1 0 1 40000 30g 30g 30g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 31 Spire of Honor 0 0 1 1 1 1 0 1 40000 31g 31g 31g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 32 Whichwild String 0 0 1 1 1 1 0 1 40000 32g 32g 32g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 33 Warpspear 0 0 1 1 1 1 0 1 40000 33g 33g 33g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 34 Butcher's Pupil 0 0 1 1 1 1 0 1 40000 34g 34g 34g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 35 Headstriker 0 0 1 1 1 1 0 1 40000 35g 35g 35g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 36 Spellsteel 0 0 1 1 1 1 0 1 40000 36g 36g 36g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 37 Sureshrill Frost 0 0 1 1 1 1 0 1 40000 37g 37g 37g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 38 The Meat Scraper 0 0 1 1 1 1 0 1 40000 38g 38g 38g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 39 Stormrider 0 0 1 1 1 1 0 1 40000 39g 39g 39g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 40 Plague Bearer 0 0 1 1 1 1 0 1 40000 40g 40g 40g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 41 Skullcollector 0 0 1 1 1 1 0 1 40000 41g 41g 41g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 42 Cliffkiller 0 0 1 1 1 1 0 1 40000 42g 42g 42g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 43 Stormspike 0 0 1 1 1 1 0 1 40000 43g 43g 43g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 44 Blackhand Key 0 0 1 1 1 1 0 1 40000 44g 44g 44g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 45 Titan's Revenge 0 0 1 1 1 1 0 1 40000 45g 45g 45g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 46 Moonfall 0 0 1 1 1 1 0 1 40000 46g 46g 46g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 47 The Oculus 0 0 1 1 1 1 0 1 40000 47g 47g 47g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 48 Hand of Blessed Light 0 0 1 1 1 1 0 1 40000 48g 48g 48g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 49 The Atlantian 0 0 1 1 1 1 0 1 40000 49g 49g 49g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 50 Blackleach Blade 0 0 1 1 1 1 0 1 40000 50g 50g 50g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 51 Athena's Wrath 0 0 1 1 1 1 0 1 40000 51g 51g 51g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 52 Lycander's Flank 0 0 1 1 1 1 0 1 40000 52g 52g 52g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 53 Lycander's Aim 0 0 1 1 1 1 0 1 40000 53g 53g 53g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 54 Crainte Vomir 0 0 1 1 1 1 0 1 40000 54g 54g 54g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 55 Boneslayer Blade 0 0 1 1 1 1 0 1 40000 55g 55g 55g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 56 Cutthroat1 0 0 1 1 1 1 0 1 40000 56g 56g 56g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 57 Magewrath 0 0 1 1 1 1 0 1 40000 57g 57g 57g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 58 Pierre Tombale Couant 0 0 1 1 1 1 0 1 40000 58g 58g 58g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 59 Bing Sz Wang 0 0 1 1 1 1 0 1 40000 59g 59g 59g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 60 Earthshaker 0 0 1 1 1 1 0 1 40000 60g 60g 60g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 61 Islestrike 0 0 1 1 1 1 0 1 40000 61g 61g 61g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 62 Deathbit 0 0 1 1 1 1 0 1 40000 62g 62g 62g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 63 Grim's Burning Dead 0 0 1 1 1 1 0 1 40000 63g 63g 63g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 64 Husoldal Evo 0 0 1 1 1 1 0 1 40000 64g 64g 64g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 65 The Vile Husk 0 0 1 1 1 1 0 1 40000 65g 65g 65g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 66 Cloudcrack 0 0 1 1 1 1 0 1 40000 66g 66g 66g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 67 Pompe's Wrath 0 0 1 1 1 1 0 1 40000 67g 67g 67g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 68 The Minataur 0 0 1 1 1 1 0 1 40000 68g 68g 68g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 69 The Gavel of Pain 0 0 1 1 1 1 0 1 40000 69g 69g 69g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 70 Baezil's Vortex 0 0 1 1 1 1 0 1 40000 70g 70g 70g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 71 Godstrike Arch 0 0 1 1 1 1 0 1 40000 71g 71g 71g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 72 Todesfaelle Flamme 0 0 1 1 1 1 0 1 40000 72g 72g 72g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 73 Swordguard 0 0 1 1 1 1 0 1 40000 73g 73g 73g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 74 Guardian Naga 0 0 1 1 1 1 0 1 40000 74g 74g 74g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 75 Bloodtree Stump 0 0 1 1 1 1 0 1 40000 75g 75g 75g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 76 Demon Machine 0 0 1 1 1 1 0 1 40000 76g 76g 76g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 77 Buriza-Do Kyanon 0 0 1 1 1 1 0 1 40000 77g 77g 77g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon exc Weapon 78 The Scalper 0 0 1 1 1 1 0 1 40000 78g 78g 78g 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 1 Lightsabre 0 0 1 1 1 1 0 1 80000 01h 01h 01h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 2 Ironward 0 0 1 1 1 1 0 1 80000 02k 02k 02k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 3 Wizardspike 0 0 1 1 1 1 0 1 80000 03h 03h 03h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 4 Heaven's Light 0 0 1 1 1 1 0 1 80000 04h 04h 04h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 5 Bloodmoon 0 0 1 1 1 1 0 1 80000 05h 05h 05h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 6 Ghostflame 0 0 1 1 1 1 0 1 80000 06h 06h 06h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 7 Baranar's Star 0 0 1 1 1 1 0 1 80000 07h 07h 07h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 8 Hellslayer 0 0 1 1 1 1 0 1 80000 08h 08h 08h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 9 Demonlimb 0 0 1 1 1 1 0 1 80000 09h 09h 09h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 10 Cranebeak 0 0 1 1 1 1 0 1 80000 10h 10h 10h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 11 Stoneraven 0 0 1 1 1 1 0 1 80000 11h 11h 11h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 12 Bonehew 0 0 1 1 1 1 0 1 80000 12k 12k 12k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 13 Horizon's Tornado 0 0 1 1 1 1 0 1 80000 13h 13h 13h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 14 Djinnslayer 0 0 1 1 1 1 0 1 80000 14h 14h 14h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 15 Widowmaker 0 0 1 1 1 1 0 1 80000 15h 15h 15h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 16 Jadetalon 0 0 1 1 1 1 0 1 80000 16h 16h 16h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 17 Deaths's Web 0 0 1 1 1 1 0 1 80000 17h 17h 17h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 18 Ondal's Wisdom 0 0 1 1 1 1 0 1 80000 18h 18h 18h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 19 Doombringer 0 0 1 1 1 1 0 1 80000 19h 19h 19h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 20 Razoredge 0 0 1 1 1 1 0 1 80000 20h 20h 20h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 21 Messerschmidt's Reaver 0 0 1 1 1 1 0 1 80000 21h 21h 21h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 22 Firelizard's Talons 0 0 1 1 1 1 0 1 80000 22k 22k 22k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 23 Lacerator 0 0 1 1 1 1 0 1 80000 23h 23h 23h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 24 Stone Crusher 0 0 1 1 1 1 0 1 80000 24h 24h 24h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 25 Nord's Tenderizer 0 0 1 1 1 1 0 1 80000 25h 25h 25h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 26 Fleshripper 0 0 1 1 1 1 0 1 80000 26h 26h 26h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 27 Windhammer 0 0 1 1 1 1 0 1 80000 27h 27h 27h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 28 Demon's Arch 0 0 1 1 1 1 0 1 80000 28h 28h 28h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 29 Earthshifter 0 0 1 1 1 1 0 1 80000 29h 29h 29h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 30 Thunderstroke 0 0 1 1 1 1 0 1 80000 30h 30h 30h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 31 Steelpillar 0 0 1 1 1 1 0 1 80000 31h 31h 31h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 32 Eaglehorn 0 0 1 1 1 1 0 1 80000 32k 32k 32k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 33 Gimmershred 0 0 1 1 1 1 0 1 80000 33h 33h 33h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 34 Frostwind 0 0 1 1 1 1 0 1 80000 34h 34h 34h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 35 Deathcleaver 0 0 1 1 1 1 0 1 80000 35h 35h 35h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 36 Stormspire 0 0 1 1 1 1 0 1 80000 36h 36h 36h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 37 Gargoyle's Bite 0 0 1 1 1 1 0 1 80000 37h 37h 37h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 38 Gutsiphon 0 0 1 1 1 1 0 1 80000 38h 38h 38h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 39 Bloodraven's Charge 0 0 1 1 1 1 0 1 80000 39h 39h 39h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 40 Flamebellow 0 0 1 1 1 1 0 1 80000 40h 40h 40h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 41 Viperfork 0 0 1 1 1 1 0 1 80000 41h 41h 41h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 42 Runemaster 0 0 1 1 1 1 0 1 80000 42k 42k 42k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 43 Windforce 0 0 1 1 1 1 0 1 80000 43h 43h 43h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 44 The Reedeemer 0 0 1 1 1 1 0 1 80000 44h 44h 44h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 45 Eschuta's temper 0 0 1 1 1 1 0 1 80000 45h 45h 45h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 46 Fathom 0 0 1 1 1 1 0 1 80000 46h 46h 46h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 47 Ethereal Edge 0 0 1 1 1 1 0 1 80000 47h 47h 47h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 48 Schaefer's Hammer 0 0 1 1 1 1 0 1 80000 48h 48h 48h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 49 Warshrike 0 0 1 1 1 1 0 1 80000 49h 49h 49h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 50 Executioner's Justice 0 0 1 1 1 1 0 1 80000 50h 50h 50h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 51 The Reaper's Toll 0 0 1 1 1 1 0 1 80000 51h 51h 51h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 52 Boneshade 0 0 1 1 1 1 0 1 80000 52k 52k 52k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 53 Hellrack 0 0 1 1 1 1 0 1 80000 53h 53h 53h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 54 Wraithflight 0 0 1 1 1 1 0 1 80000 54h 54h 54h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 55 The Cranium Basher 0 0 1 1 1 1 0 1 80000 55h 55h 55h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 56 Shadowkiller 0 0 1 1 1 1 0 1 80000 56h 56h 56h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 57 The Grandfather-LOD 0 0 1 1 1 1 0 1 80000 57h 57h 57h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 58 Arioc's Needle 0 0 1 1 1 1 0 1 80000 58h 58h 58h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 59 Tomb Reaver 0 0 1 1 1 1 0 1 80000 59h 59h 59h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescm 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 60 Stormlash 0 0 1 1 1 1 0 1 80000 60h 60h 60h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 61 Mang Song's Lesson 0 0 1 1 1 1 0 1 80000 61h 61h 61h 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon eli Weapon 62 Azurewrath 0 0 1 1 1 1 0 1 80000 62k 62k 62k 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndesc2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 1 Nokozan Relic 0 0 1 1 1 1 0 1 20000 01i 01i 01i 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 2 The Eye of Etlich 0 0 1 1 1 1 0 1 20000 02i 02i 02i 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 3 The Mahim-Oak Curio 0 0 1 1 1 1 0 1 20000 03i 03i 03i 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 4 Saracen's Chance 0 0 1 1 1 1 0 1 40000 04i 04i 04i 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 5 The Cat's Eye 0 0 1 1 1 1 0 1 40000 05i 05i 05i 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 6 Crescent Moon 0 0 1 1 1 1 0 1 40000 06i 06i 06i 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 7 Atma's Scarab 0 0 1 1 1 1 0 1 40000 07i 07i 07i 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 8 The Rising Sun 0 0 1 1 1 1 0 1 40000 08i 08i 08i 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 9 Highlord's Wrath 0 0 1 1 1 1 0 1 80000 09i 09i 09i 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 10 Mara's Kaleidoscope 0 0 1 1 1 1 0 1 80000 10i 10i 10i 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 11 Seraph's Hymn 0 0 1 1 1 1 0 1 80000 11i 11i 11i 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Amulet 12 Metalgrid 0 0 1 1 1 1 0 1 80000 12i 12i 12i 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 1 Nagelring 0 0 1 1 1 1 0 1 20000 01j 01j 01j 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 2 Manald Heal 0 0 1 1 1 1 0 1 20000 02j 02j 02j 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 3 The Stone of Jordan 0 0 1 1 1 1 0 1 20000 03j 03j 03j 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 4 Dwarf Star 0 0 1 1 1 1 0 1 40000 04j 04j 04j 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 5 Raven Frost 0 0 1 1 1 1 0 1 40000 05j 05j 05j 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 6 Bul Katho's Wedding Band 0 0 1 1 1 1 0 1 40000 06j 06j 06j 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 7 Carrion Wind 0 0 1 1 1 1 0 1 40000 07j 07j 07j 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 8 Nature's Peace 0 0 1 1 1 1 0 1 80000 08j 08j 08j 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 9 Wisp 0 0 1 1 1 1 0 1 80000 09j 09j 09j 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Ring 10 Constricting Ring 0 0 1 1 1 1 0 1 80000 10j 10j 10j 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 cpndescj 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Blank nor Blank nor 0 0 1 1 1 1 0 1 20000 96j 96j 96j 16 1 1 0 0 0 flpscr invcpn1 0 xxx 0 0 cpn1 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 bcpdesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Blank exc Blank exc 0 0 1 1 1 1 0 1 40000 97j 97j 97j 16 1 1 0 0 0 flpscr invcpn2 0 xxx 0 0 cpn2 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 bcpdesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Blank eli Blank eli 0 0 1 1 1 1 0 1 80000 98j 98j 98j 16 1 1 0 0 0 flpscr invcpn3 0 xxx 0 0 cpn3 item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 bcpdesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Coupon Wild Card Wild Card 0 0 1 1 1 1 0 1 160000 99j 99j 99j 16 1 1 0 0 0 flpscr invcpn4 0 xxx 0 0 coup item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 wlddesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kv0 kv0 can1 16 1 1 0 0 0 flprun invgmknv 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kv0 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 ky0 ky0 can1 16 1 1 0 0 0 flprun invgmkny 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 ky0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kb0 kb0 can1 16 1 1 0 0 0 flprun invgmknb 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kb0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kg0 kg0 can1 16 1 1 0 0 0 flprun invgmkng 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kg0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kr0 kr0 can1 16 1 1 0 0 0 flprun invgmknr 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kr0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kw0 kw0 can1 16 1 1 0 0 0 flprun invgmknw 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kw0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 ks0 ks0 can1 16 1 1 0 0 0 flprun invgmkns 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 ks0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Gem Can Gem Can 0 0 0 0 1 1 0 1 500 kk0 kk0 can1 16 1 1 0 0 0 flprun invgmknk 0 xxx 0 0 can1 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 kk0 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu0 xu0 can9 16 1 1 0 0 0 flprun invxtkn0 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu0 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu1 xu1 can9 16 1 1 0 0 0 flprun invxtkn1 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu2 xu2 can9 16 1 1 0 0 0 flprun invxtkn2 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu3 xu3 can9 16 1 1 0 0 0 flprun invxtkn3 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu3 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu4 xu4 can9 16 1 1 0 0 0 flprun invxtkn4 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu4 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu5 xu5 can9 16 1 1 0 0 0 flprun invxtkn5 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu5 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu6 xu6 can9 16 1 1 0 0 0 flprun invxtkn6 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu6 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu7 xu7 can9 16 1 1 0 0 0 flprun invxtkn7 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu7 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu8 xu8 can9 16 1 1 0 0 0 flprun invxtkn8 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu8 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xu9 xu9 can9 16 1 1 0 0 0 flprun invxtkn9 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xu9 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xux xux can9 16 1 1 0 0 0 flprun invxtkn10 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xux 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Crystal Can Crystal Can 0 0 0 0 1 1 0 1 500 xuy xuy can9 16 1 1 0 0 0 flprun invxtkn11 0 xxx 0 0 can9 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 0 0 0 -1 1 xuy 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko0 ko0 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko0 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko1 ko1 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko2 ko2 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko2 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko3 ko3 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko3 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko4 ko4 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko4 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Opener Opener 0 0 0 0 1 1 0 1 50 ko5 ko5 opnr 16 1 1 0 0 0 flpkey invopener 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 ko5 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s01 s01 can2 16 1 1 0 0 0 flprun invs-i 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s01 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s02 s02 can2 16 1 1 0 0 0 flprun invs-u 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s02 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s03 s03 can2 16 1 1 0 0 0 flprun invs-shi 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s03 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s04 s04 can2 16 1 1 0 0 0 flprun invs-ka 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s04 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s05 s05 can2 16 1 1 0 0 0 flprun invs-n 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s05 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s06 s06 can2 16 1 1 0 0 0 flprun invs-ku 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s06 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s07 s07 can2 16 1 1 0 0 0 flprun invs-yo 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s07 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s08 s08 can2 16 1 1 0 0 0 flprun invs-ki 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s08 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s09 s09 can2 16 1 1 0 0 0 flprun invs-ri 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s09 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s10 s10 can2 16 1 1 0 0 0 flprun invs-mi 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s10 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s11 s11 can2 16 1 1 0 0 0 flprun invs-ya 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s11 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s12 s12 can2 16 1 1 0 0 0 flprun invs-a 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s12 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s13 s13 can2 16 1 1 0 0 0 flprun invs-tsu 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s13 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s14 s14 can2 16 1 1 0 0 0 flprun invs-chi 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s14 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s15 s15 can2 16 1 1 0 0 0 flprun invs-sa 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s15 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s16 s16 can2 16 1 1 0 0 0 flprun invs-yu 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s16 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s17 s17 can2 16 1 1 0 0 0 flprun invs-ke 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s17 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s18 s18 can2 16 1 1 0 0 0 flprun invs-e 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s18 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s19 s19 can2 16 1 1 0 0 0 flprun invs-ko 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s19 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s20 s20 can2 16 1 1 0 0 0 flprun invs-ra 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s20 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker Low Rune Stocker Low 0 0 0 0 1 1 0 1 500 s21 s21 can2 16 1 1 0 0 0 flprun invs-o 0 xxx 0 0 can2 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s21 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s22 s22 can3 16 1 1 0 0 0 flprun invs-ho 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s22 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s23 s23 can3 16 1 1 0 0 0 flprun invs-me 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s23 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s24 s24 can3 16 1 1 0 0 0 flprun invs-ru 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s24 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s25 s25 can3 16 1 1 0 0 0 flprun invs-ta 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s25 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s26 s26 can3 16 1 1 0 0 0 flprun invs-to 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s26 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s27 s27 can3 16 1 1 0 0 0 flprun invs-wa 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s27 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s28 s28 can3 16 1 1 0 0 0 flprun invs-ha 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s28 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s29 s29 can3 16 1 1 0 0 0 flprun invs-na 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s29 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s30 s30 can3 16 1 1 0 0 0 flprun invs-ni 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s30 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s31 s31 can3 16 1 1 0 0 0 flprun invs-se 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s31 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s32 s32 can3 16 1 1 0 0 0 flprun invs-fu 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s32 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s33 s33 can3 16 1 1 0 0 0 flprun invs-ma 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s33 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s34 s34 can3 16 1 1 0 0 0 flprun invs-hi 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s34 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s35 s35 can3 16 1 1 0 0 0 flprun invs-mo 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s35 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s36 s36 can3 16 1 1 0 0 0 flprun invs-no 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s36 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s37 s37 can3 16 1 1 0 0 0 flprun invs-te 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s37 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s38 s38 can3 16 1 1 0 0 0 flprun invs-ro 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s38 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s39 s39 can3 16 1 1 0 0 0 flprun invs-so 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s39 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s40 s40 can3 16 1 1 0 0 0 flprun invs-mu 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s40 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s41 s41 can3 16 1 1 0 0 0 flprun invs-ne 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s41 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s42 s42 can3 16 1 1 0 0 0 flprun invs-re 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s42 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s43 s43 can3 16 1 1 0 0 0 flprun invs-su 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s43 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s44 s44 can3 16 1 1 0 0 0 flprun invs-he 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s44 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s45 s45 can3 16 1 1 0 0 0 flprun invs-nu 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s45 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s46 s46 can3 16 1 1 0 0 0 flprun invs-wo 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s46 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rune Stocker High Rune Stocker High 0 0 0 0 1 1 0 1 500 s50 s50 can3 16 1 1 0 0 0 flprun invs-null 0 xxx 0 0 can3 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s50 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s51 s51 can4 16 1 1 0 0 0 flprun invrEl 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s51 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s52 s52 can4 16 1 1 0 0 0 flprun invrEld 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s52 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s53 s53 can4 16 1 1 0 0 0 flprun invrTir 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s53 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s54 s54 can4 16 1 1 0 0 0 flprun invrNef 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s54 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s55 s55 can4 16 1 1 0 0 0 flprun invrEth 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s55 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s56 s56 can4 16 1 1 0 0 0 flprun invrIth 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s56 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s57 s57 can4 16 1 1 0 0 0 flprun invrTal 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s57 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s58 s58 can4 16 1 1 0 0 0 flprun invrRal 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s58 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s59 s59 can4 16 1 1 0 0 0 flprun invrOrt 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s59 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s60 s60 can4 16 1 1 0 0 0 flprun invrThul 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s60 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s61 s61 can4 16 1 1 0 0 0 flprun invrAmn 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s61 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s62 s62 can4 16 1 1 0 0 0 flprun invrSol 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s62 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s63 s63 can4 16 1 1 0 0 0 flprun invrShae 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s63 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s64 s64 can4 16 1 1 0 0 0 flprun invrDol 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s64 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s65 s65 can4 16 1 1 0 0 0 flprun invrHel 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s65 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s66 s66 can4 16 1 1 0 0 0 flprun invrIo 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s66 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s67 s67 can4 16 1 1 0 0 0 flprun invrLum 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s67 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s68 s68 can4 16 1 1 0 0 0 flprun invrKo 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s68 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s69 s69 can4 16 1 1 0 0 0 flprun invrFal 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s69 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s70 s70 can4 16 1 1 0 0 0 flprun invrLem 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s70 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s71 s71 can4 16 1 1 0 0 0 flprun invrPul 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s71 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s72 s72 can4 16 1 1 0 0 0 flprun invrUm 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s72 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s73 s73 can4 16 1 1 0 0 0 flprun invrMal 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s73 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s74 s74 can4 16 1 1 0 0 0 flprun invrIst 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s74 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s75 s75 can4 16 1 1 0 0 0 flprun invrGul 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s75 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s76 s76 can4 16 1 1 0 0 0 flprun invrVex 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s76 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s77 s77 can4 16 1 1 0 0 0 flprun invrOhm 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s77 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s78 s78 can4 16 1 1 0 0 0 flprun invrLo 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s78 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s79 s79 can4 16 1 1 0 0 0 flprun invrSur 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s79 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s80 s80 can4 16 1 1 0 0 0 flprun invrBer 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s80 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s81 s81 can4 16 1 1 0 0 0 flprun invrJo 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s81 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s82 s82 can4 16 1 1 0 0 0 flprun invrCham 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s82 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Decal Stocker Decal Stocker 0 0 0 0 1 1 0 1 500 s83 s83 can4 16 1 1 0 0 0 flprun invrZod 0 xxx 0 0 can4 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 s83 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w31 w31 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w31 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w32 w32 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w32 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w33 w33 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w33 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w34 w34 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w34 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w35 w35 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w35 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w36 w36 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w36 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w37 w37 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w37 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w38 w38 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w38 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w39 w39 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w39 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w40 w40 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w40 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w41 w41 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w41 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w42 w42 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w42 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w43 w43 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w43 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w44 w44 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w44 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w45 w45 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w45 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w46 w46 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w46 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w47 w47 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w47 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w48 w48 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w48 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w49 w49 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w49 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w50 w50 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w50 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w51 w51 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w51 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w52 w52 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w52 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w53 w53 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w53 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w54 w54 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w54 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 1 Secret Tome 1 0 0 0 0 1 1 0 1 500 w55 w55 can5 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can5 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w55 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w56 w56 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w56 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w57 w57 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w57 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w58 w58 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w58 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w59 w59 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w59 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w60 w60 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w60 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w61 w61 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w61 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w62 w62 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w62 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w63 w63 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w63 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w64 w64 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w64 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w65 w65 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w65 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w66 w66 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w66 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w67 w67 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w67 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w68 w68 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w68 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w69 w69 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w69 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w70 w70 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w70 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w71 w71 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w71 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w72 w72 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w72 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w73 w73 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w73 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w74 w74 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w74 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w75 w75 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w75 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w76 w76 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w76 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w77 w77 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w77 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w78 w78 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w78 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w79 w79 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w79 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Secret Tome 2 Secret Tome 2 0 0 0 0 1 1 0 1 500 w80 w80 can6 16 1 1 0 0 0 flphscr invsstome 0 xxx 0 0 can6 item_book 12 item_book 0 0 5 0 0 0 0 0 0 0 0 -1 1 w80 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t01 t01 can7 16 1 1 0 0 0 flpgsg invjreroll 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t01 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t02 t02 can7 16 1 1 0 0 0 flpgsg invjrerollby 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t02 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t03 t03 can7 16 1 1 0 0 0 flpgsg invjrerolly 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t03 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t04 t04 can7 16 1 1 0 0 0 flpgsg invjrerollyg 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t04 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t05 t05 can7 16 1 1 0 0 0 flpgsg invjreroll 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t05 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t06 t06 can7 16 1 1 0 0 0 flpgsg invjrerollby 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t06 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t07 t07 can7 16 1 1 0 0 0 flpgsg invjrerolly 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t07 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t08 t08 can7 16 1 1 0 0 0 flpgsg invjrerollyg 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t08 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t09 t09 can7 16 1 1 0 0 0 flpgsg invjreroll 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t09 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t10 t10 can7 16 1 1 0 0 0 flpgsg invjrerollby 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t10 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t11 t11 can7 16 1 1 0 0 0 flpgsg invjrerolly 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t11 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t12 t12 can7 16 1 1 0 0 0 flpgsg invjrerollyg 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t12 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t13 t13 can7 16 1 1 0 0 0 flpgsg invjreroll 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t13 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t14 t14 can7 16 1 1 0 0 0 flpgsg invjrerollby 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t14 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t15 t15 can7 16 1 1 0 0 0 flpgsg invjrerolly 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t15 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Rerolling Orb Rerolling Orb 0 0 0 0 1 1 0 1 500 t16 t16 can7 16 1 1 0 0 0 flpgsg invjreroll 0 xxx 0 0 can7 item_gold 12 item_gold 0 0 5 0 0 0 0 0 0 0 0 -1 1 t16 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t51 t51 can8 16 1 1 0 0 0 flpgsy invs-maple 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t51 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t52 t52 can8 16 1 1 0 0 0 flpmss invs-ppp 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t52 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t53 t53 can8 16 1 1 0 0 0 flpamu invs-amu 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t53 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t54 t54 can8 16 1 1 0 0 0 flpbbk invs-book1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t54 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t55 t55 can8 16 1 1 0 0 0 flpsple invs-zzz 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t55 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t56 t56 can8 16 1 1 0 0 0 flpbrnz invs-brnz 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t56 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t57 t57 can8 16 1 1 0 0 0 flpeye invs-eye 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t57 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t58 t58 can8 16 1 1 0 0 0 flpquil invs-quil 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t58 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t59 t59 can8 16 1 1 0 0 0 flpsple invs-sple 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t59 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t60 t60 can8 16 1 1 0 0 0 flptail invs-tail 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t60 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t61 t61 can8 16 1 1 0 0 0 flpjaw invs-jaw 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t61 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t62 t62 can8 16 1 1 0 0 0 flpfang invs-fang 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t62 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t63 t63 can8 16 1 1 0 0 0 flphorn invs-horn 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t63 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t64 t64 can8 16 1 1 0 0 0 flpbonr1 invs-bonr1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t64 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t65 t65 can8 16 1 1 0 0 0 flphrt invs-hrt 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t65 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t66 t66 can8 16 1 1 0 0 0 flpsple invs-sol 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t66 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t67 t67 can8 16 1 1 0 0 0 flpear invs-ear 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t67 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t68 t68 can8 16 1 1 0 0 0 flpflag invs-flag 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t68 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t69 t69 can8 16 1 1 0 0 0 flprin invs-donut 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t69 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t70 t70 can8 16 1 1 0 0 0 flpscr invs-cpn1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t70 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t71 t71 can8 16 1 1 0 0 0 flpscr invs-cpn1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t71 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t72 t72 can8 16 1 1 0 0 0 flpscr invs-cpn1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t72 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t73 t73 can8 16 1 1 0 0 0 flpscr invs-cpn1 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t73 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Multi Stocker Multi Stocker 0 0 0 0 1 1 0 1 500 t74 t74 can8 16 1 1 0 0 0 flpvpl invs-vpl 0 xxx 0 0 can8 item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 0 0 0 -1 1 t74 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq0 fq0 fq0 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq0desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq1 fq1 fq1 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq1desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq2 fq2 fq2 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq2desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq3 fq3 fq3 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq3desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq4 fq4 fq4 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq4desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq5 fq5 fq5 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq5desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq6 fq6 fq6 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq6desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq7 fq7 fq7 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq7desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq8 fq8 fq8 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq8desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
FAQ Scroll FAQ Scroll 1 0 0 0 1 1 0 1 1 fq9 fq9 fq9 16 1 1 0 0 0 flpscr invscbsw 0 xxx 0 0 cube item_scroll 10 item_scroll 0 0 5 0 0 0 0 0 0 0 0 -1 1 fq9desc 0 0 0 non 0 255 1 1 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 1 0
Tokenizer Tokenizer 1 0 0 0 1 1 0 1 2500 tkz tkz tkz 16 1 1 0 0 0 flpkey invtknzer 0 xxx 0 0 cube item_amulet 12 item_amulet 0 0 5 0 0 0 0 0 0 0 0 -1 1 tkzdesc 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 xxx xxx 0
Small Charm Small Charm 0 100 14 0 4 1 0 1 1500 40000 cx1 rld cm1 16 1 1 0 0 0 flpchm1 invch1 0 xxx 0 0 scha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Large Charm Large Charm 0 100 7 0 4 1 0 1 1500 40000 cx2 rda cm2 16 1 2 0 0 0 flpchm2 invch2 0 xxx 0 0 mcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Grand Charm Grand Charm 0 100 1 0 4 1 0 1 1500 40000 cx3 rgd cm3 16 1 3 0 0 0 flpchm3 invch3 0 xxx 0 0 lcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Diablo's Shard Diablo's Shard 0 0 1 20 1 1 0 1 1 mc0 mc0 mc0 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Wave's Shard Wave's Shard 0 0 1 45 1 1 0 1 1 mc1 mc1 mc1 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Ihsan's Shard Ihsan's Shard 0 0 1 60 1 1 0 1 1 mc2 mc2 mc2 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Lich's Shard Lich's Shard 0 0 1 45 1 1 0 1 1 mc3 mc3 mc3 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Angel's Shard Angel's Shard 0 0 1 70 1 1 0 1 1 mc4 mc4 mc4 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Kain's Shard Kain's Shard 0 0 1 30 1 1 0 1 1 mc5 mc5 mc5 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Sarevok's Shard Sarevok's Shard 0 0 1 70 1 1 0 1 1 mc6 mc6 mc6 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Jade's Shard Jade's Shard 0 0 1 60 1 1 0 1 1 mc7 mc7 mc7 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Arion's Shard Arion's Shard 0 0 1 70 1 1 0 1 1 mc8 mc8 mc8 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Danarak's Shard Danarak's Shard 0 0 1 30 1 1 0 1 1 mc9 mc9 mc9 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Nature's Shard Nature's Shard 0 0 1 70 1 1 0 1 1 nc0 nc0 nc0 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0
Cow King's Shard Cow King's Shard 0 0 1 75 1 1 0 1 1 nc1 nc1 nc1 16 1 1 0 0 0 flpchm1 invch11 0 xxx 0 0 zcha item_charm 12 item_charm 0 0 5 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 8 0 xxx xxx 0