-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathEObjName.csv
We can't make this file beautiful and searchable because it's too large.
14663 lines (14663 loc) · 604 KB
/
EObjName.csv
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
key,0,1,2,3,4,5,6,7
#,Singular,Adjective,Plural,PossessivePronoun,StartsWithVowel,,Pronoun,Article
int32,str,sbyte,str,sbyte,sbyte,sbyte,sbyte,sbyte
2000000,"",0,"",0,0,1,0,0
2000001,"透明君※α未使用",0,"",0,0,1,0,0
2000002,"草むらテスト※α未使用",0,"",0,0,1,0,0
2000003,"クエストツールテスト※α未使用",0,"",0,0,1,0,0
2000004,"クエストツールテスト2※α未使用",0,"",0,0,1,0,0
2000005,"",0,"",0,0,0,0,0
2000006,"草むら※α未使用",0,"",0,0,1,0,0
2000007,"草むら※α未使用",0,"",0,0,1,0,0
2000008,"Hedgetree",0,"Hedgetrees",0,0,1,0,0
2000009,"destination",0,"destinations",0,0,1,0,0
2000010,"anole egg",0,"anole eggs",0,1,1,0,0
2000011,"anole egg",0,"anole eggs",0,1,1,0,0
2000012,"anole egg",0,"anole eggs",0,1,1,0,0
2000013,"anole egg",0,"anole eggs",0,1,1,0,0
2000014,"anole egg",0,"anole eggs",0,1,1,0,0
2000015,"",0,"",0,0,1,0,0
2000016,"decaying tree",0,"decaying trees",0,0,1,0,0
2000017,"decaying tree",0,"decaying trees",0,0,1,0,0
2000018,"decaying tree",0,"decaying trees",0,0,1,0,0
2000019,"",0,"",0,0,1,0,0
2000020,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000021,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000022,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000023,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000024,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000025,"vegetable offering",0,"vegetable offerings",0,0,1,0,0
2000026,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000027,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000028,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000029,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000030,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000031,"Azeyma rose hip",0,"Azeyma rose hips",0,1,1,0,0
2000032,"",0,"",0,0,1,0,0
2000033,"埋門",0,"",0,0,1,0,0
2000034,"",0,"",0,0,1,0,0
2000035,"",0,"",0,0,1,0,0
2000036,"",0,"",0,0,0,0,0
2000037,"",0,"",0,0,1,0,0
2000038,"",0,"",0,0,1,0,0
2000039,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000040,"",0,"",0,0,1,0,0
2000041,"",0,"",0,0,1,0,0
2000042,"destination",0,"destinations",0,0,1,0,0
2000043,"moist depression",0,"moist depressions",0,0,1,0,0
2000044,"moist depression",0,"moist depressions",0,0,1,0,0
2000045,"moist depression",0,"moist depressions",0,0,1,0,0
2000046,"exit",0,"exits",0,1,1,0,0
2000047,"",0,"",0,0,1,0,0
2000048,"matter relocation device",0,"matter relocation devices",0,0,1,0,0
2000049,"",0,"",0,0,0,0,0
2000050,"",0,"",0,0,0,0,0
2000051,"",0,"",0,0,1,0,0
2000052,"",0,"",0,0,1,0,0
2000053,"warm egg",0,"warm eggs",0,0,1,0,0
2000054,"",0,"",0,0,1,0,0
2000055,"cultist rosary",0,"cultist rosaries",0,0,1,0,0
2000056,"cultist rosary",0,"cultist rosaries",0,0,1,0,0
2000057,"cultist rosary",0,"cultist rosaries",0,0,1,0,0
2000058,"sealed barrier",0,"sealed barriers",0,0,1,0,0
2000059,"sealed barrier",0,"sealed barriers",0,0,1,0,0
2000060,"sealed barrier",0,"sealed barriers",0,0,1,0,0
2000061,"cultist orb",0,"cultist orbs",0,0,1,0,0
2000062,"cultist orb",0,"cultist orbs",0,0,1,0,0
2000063,"cultist orb",0,"cultist orbs",0,0,1,0,0
2000064,"abyssal cocoon",0,"",0,0,1,0,0
2000065,"stone bridge",0,"",0,0,1,0,0
2000066,"exit",0,"exits",0,1,1,0,0
2000067,"cultist orb",0,"cultist orbs",0,0,1,0,0
2000068,"",0,"",0,0,1,0,0
2000069,"",0,"",0,0,1,0,0
2000070,"censer",0,"censers",0,0,1,0,0
2000071,"censer",0,"censers",0,0,1,0,0
2000072,"summoning bell",0,"summoning bells",0,0,1,0,0
2000073,"market board",0,"market boards",0,0,1,0,0
2000074,"",0,"",0,0,0,0,0
2000075,"destination",0,"destinations",0,0,1,0,0
2000076,"destination",0,"destinations",0,0,1,0,0
2000077,"destination",0,"destinations",0,0,1,0,0
2000078,"destination",0,"destinations",0,0,1,0,0
2000079,"",0,"",0,0,0,0,0
2000080,"",0,"",0,0,0,0,0
2000081,"",0,"",0,0,0,0,0
2000082,"",0,"",0,0,0,0,0
2000083,"",0,"",0,0,0,0,0
2000084,"",0,"",0,0,0,0,0
2000085,"",0,"",0,0,0,0,0
2000086,"",0,"",0,0,0,0,0
2000087,"heavy oaken door",0,"heavy oaken doors",0,0,1,0,0
2000088,"comfy feather bed",0,"comfy feather beds",0,0,1,0,0
2000089,"trampled earth",0,"trampled earth",0,0,1,0,0
2000090,"",0,"",0,0,0,0,0
2000091,"",0,"",0,0,0,0,0
2000092,"",0,"",0,0,0,0,0
2000093,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000094,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000095,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000096,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000097,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000098,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000099,"water-stained note",0,"water-stained notes",0,0,1,0,0
2000100,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000101,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000102,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000103,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000104,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000105,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000106,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000107,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000108,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000109,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000110,"magitek photocell",0,"magitek photocells",0,0,1,0,0
2000111,"",0,"",0,0,1,0,0
2000112,"",0,"",0,0,1,0,0
2000113,"",0,"",0,0,1,0,0
2000114,"",0,"",0,0,1,0,0
2000115,"",0,"",0,0,1,0,0
2000116,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000117,"",0,"",0,0,1,0,0
2000118,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000119,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000120,"",0,"",0,0,1,0,0
2000121,"",0,"",0,0,1,0,0
2000122,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000123,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000124,"",0,"",0,0,1,0,0
2000125,"magitek transporter",0,"magitek transporters",0,0,1,0,0
2000126,"magitek transporter",0,"magitek transporters",0,0,1,0,0
2000127,"magitek transporter",0,"magitek transporters",0,0,1,0,0
2000128,"pollen cluster",0,"pollen clusters",0,0,1,0,0
2000129,"pollen cluster",0,"pollen clusters",0,0,1,0,0
2000130,"pollen cluster",0,"pollen clusters",0,0,1,0,0
2000131,"",0,"",0,0,1,0,0
2000132,"",0,"",0,0,1,0,0
2000133,"",0,"",0,0,1,0,0
2000134,"",0,"",0,0,1,0,0
2000135,"",0,"",0,0,1,0,0
2000136,"faint footprints",0,"faint footprints",0,0,1,0,0
2000137,"",0,"",0,0,1,0,0
2000138,"",0,"",0,0,1,0,0
2000139,"exit",0,"exits",0,1,1,0,0
2000140,"tangled undergrowth",0,"tangled undergrowth",0,0,1,0,0
2000141,"survey records",0,"survey records",0,0,1,0,0
2000142,"tangled undergrowth",0,"tangled undergrowth",0,0,1,0,0
2000143,"dusty malmstone",0,"dusty malmstones",0,0,1,0,0
2000144,"dusty malmstone",0,"dusty malmstones",0,0,1,0,0
2000145,"glimshroom",0,"glimshrooms",0,0,1,0,0
2000146,"burlap sacks",0,"burlap sacks",0,0,1,0,0
2000147,"surveyor's instruments",0,"surveyor's instruments",0,0,1,0,0
2000148,"surveyor's instruments",0,"surveyor's instruments",0,0,1,0,0
2000149,"surveyor's rope",0,"surveyor's rope",0,0,1,0,0
2000150,"anole egg",0,"anole eggs",0,1,1,0,0
2000151,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000152,"tiny key",0,"tiny keys",0,0,1,0,0
2000153,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000154,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000155,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000156,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000157,"Aethernet shard",0,"Aethernet shards",0,1,1,0,0
2000158,"",0,"",0,0,1,0,0
2000159,"tiny key",0,"tiny keys",0,0,1,0,0
2000160,"sealed blasting door",0,"sealed blasting doors",0,0,1,0,0
2000161,"",0,"",0,0,1,0,0
2000162,"lift lever",0,"lift levers",0,0,1,0,0
2000163,"lift lever",0,"lift levers",0,0,1,0,0
2000164,"",0,"",0,0,1,0,0
2000165,"lift lever",0,"lift levers",0,0,1,0,0
2000166,"lift lever",0,"lift levers",0,0,1,0,0
2000167,"",0,"",0,0,1,0,0
2000168,"",0,"",0,0,1,0,0
2000169,"firesand",0,"6-onze pinches of firesand",0,0,1,0,0
2000170,"blasting device",0,"blasting devices",0,0,1,0,0
2000171,"",0,"",0,0,1,0,0
2000172,"firesand",0,"6-onze pinches of firesand",0,0,1,0,0
2000173,"sealed blasting door",0,"sealed blasting doors",0,0,1,0,0
2000174,"lift lever",0,"lift levers",0,0,1,0,0
2000175,"lift lever",0,"lift levers",0,0,1,0,0
2000176,"lift lever",0,"lift levers",0,0,1,0,0
2000177,"lift lever",0,"lift levers",0,0,1,0,0
2000178,"tiny key",0,"tiny keys",0,0,1,0,0
2000179,"firesand",0,"6-onze pinches of firesand",0,0,1,0,0
2000180,"blasting device",0,"blasting devices",0,0,1,0,0
2000181,"",0,"",0,0,1,0,0
2000182,"",0,"",0,0,1,0,0
2000183,"",0,"",0,0,1,0,0
2000184,"improved blasting device",0,"improved blasting devices",0,0,1,0,0
2000185,"",0,"",0,0,1,0,0
2000186,"",0,"",0,0,1,0,0
2000187,"exit",0,"exits",0,1,1,0,0
2000188,"",0,"",0,0,1,0,0
2000189,"",0,"",0,0,1,0,0
2000190,"",0,"",0,0,1,0,0
2000191,"",0,"",0,0,1,0,0
2000192,"",0,"",0,0,1,0,0
2000193,"",0,"",0,0,1,0,0
2000194,"",0,"",0,0,1,0,0
2000195,"",0,"",0,0,1,0,0
2000196,"",0,"",0,0,1,0,0
2000197,"",0,"",0,0,1,0,0
2000198,"",0,"",0,0,1,0,0
2000199,"",0,"",0,0,1,0,0
2000200,"",0,"",0,0,1,0,0
2000201,"",0,"",0,0,1,0,0
2000202,"",0,"",0,0,1,0,0
2000203,"",0,"",0,0,1,0,0
2000204,"",0,"",0,0,1,0,0
2000205,"",0,"",0,0,1,0,0
2000206,"",0,"",0,0,1,0,0
2000207,"",0,"",0,0,1,0,0
2000208,"",0,"",0,0,1,0,0
2000209,"iron lever",0,"iron levers",0,1,1,0,0
2000210,"",0,"",0,0,1,0,0
2000211,"",0,"",0,0,1,0,0
2000212,"bloody memo",0,"bloody memos",0,0,1,0,0
2000213,"blue coral formation",0,"formations of blue coral",0,0,1,0,0
2000214,"red coral formation",0,"formations of red coral",0,0,1,0,0
2000215,"green coral formation",0,"formations of green coral",0,0,1,0,0
2000216,"inconspicuous switch",0,"inconspicuous switches",0,1,1,0,0
2000217,"hidden door",0,"hidden doors",0,0,1,0,0
2000218,"",0,"",0,0,1,0,0
2000219,"",0,"",0,0,1,0,0
2000220,"",0,"",0,0,1,0,0
2000221,"",0,"",0,0,1,0,0
2000222,"giant clam",0,"giant clams",0,0,1,0,0
2000223,"",0,"",0,0,1,0,0
2000224,"",0,"",0,0,1,0,0
2000225,"Rambade door",0,"Rambade doors",0,0,1,0,0
2000226,"wooden door",0,"wooden doors",0,0,1,0,0
2000227,"captain's quarters",0,"captain's quarters doors",0,0,1,0,0
2000228,"wooden door",0,"wooden doors",0,0,1,0,0
2000229,"wooden door",0,"wooden doors",0,0,1,0,0
2000230,"wooden door",0,"wooden doors",0,0,1,0,0
2000231,"Waverider Gate",0,"Waverider Gates",0,0,1,0,1
2000232,"the Hole",0,"the Hole",0,0,1,0,1
2000233,"",0,"",0,0,1,0,0
2000234,"",0,"",0,0,1,0,0
2000235,"",0,"",0,0,1,0,0
2000236,"Rambade door",0,"Rambade doors",0,0,1,0,0
2000237,"",0,"",0,0,1,0,0
2000238,"",0,"",0,0,1,0,0
2000239,"",0,"",0,0,1,0,0
2000240,"",0,"",0,0,0,0,0
2000241,"",0,"",0,0,0,0,0
2000242,"",0,"",0,0,0,0,0
2000243,"",0,"",0,0,0,0,0
2000244,"",0,"",0,0,0,0,0
2000245,"",0,"",0,0,0,0,0
2000246,"",0,"",0,0,0,0,0
2000247,"",0,"",0,0,0,0,0
2000248,"",0,"",0,0,1,0,0
2000249,"",0,"",0,0,1,0,0
2000250,"captain's quarters key",0,"captain's quarters keys",0,0,1,0,0
2000251,"iron key",0,"iron keys",0,1,1,0,0
2000252,"iron key",0,"iron keys",0,1,1,0,0
2000253,"iron key",0,"iron keys",0,1,1,0,0
2000254,"iron key",0,"iron keys",0,1,1,0,0
2000255,"Waverider Gate key",0,"Waverider Gate keys",0,0,1,0,0
2000256,"key to the Hole",0,"keys to the Hole",0,0,1,0,0
2000257,"",0,"",0,0,1,0,0
2000258,"",0,"",0,0,1,0,0
2000259,"",0,"",0,0,1,0,0
2000260,"",0,"",0,0,1,0,0
2000261,"",0,"",0,0,1,0,0
2000262,"",0,"",0,0,1,0,0
2000263,"",0,"",0,0,1,0,0
2000264,"",0,"",0,0,1,0,0
2000265,"",0,"",0,0,0,0,0
2000266,"",0,"",0,0,1,0,0
2000267,"",0,"",0,0,1,0,0
2000268,"narrow fissure",0,"narrow fissures",0,0,1,0,0
2000269,"herb patch",0,"herb patches",0,1,1,0,0
2000270,"",0,"",0,0,1,0,0
2000271,"",0,"",0,0,1,0,0
2000272,"",0,"",0,0,1,0,0
2000273,"",0,"",0,0,1,0,0
2000274,"",0,"",0,0,1,0,0
2000275,"exit",0,"exits",0,1,1,0,0
2000276,"",0,"",0,0,1,0,0
2000277,"",0,"",0,0,1,0,0
2000278,"",0,"",0,0,1,0,0
2000279,"",0,"",0,0,1,0,0
2000280,"",0,"",0,0,1,0,0
2000281,"",0,"",0,0,1,0,0
2000282,"",0,"",0,0,0,0,0
2000283,"",0,"",0,0,0,0,0
2000284,"megalocrab nest",0,"megalocrab nests",0,0,1,0,0
2000285,"",0,"",0,0,0,0,0
2000286,"overturned wain",0,"overturned wains",0,0,1,0,0
2000287,"overturned wain",0,"overturned wains",0,0,1,0,0
2000288,"destination",0,"destinations",0,0,1,0,0
2000289,"Sighard's waterskin",0,"Sighard's waterskins",0,0,1,0,1
2000290,"Sighard's satchel",0,"Sighard's satchels",0,0,1,0,1
2000291,"",0,"",0,0,0,0,0
2000292,"",0,"",0,0,0,0,0
2000293,"",0,"",0,0,0,0,0
2000294,"Sighard's hatchet",0,"Sighard's hatchets",0,0,1,0,1
2000295,"×ClsExc250:待ち合わせポイント",0,"",0,0,1,0,0
2000296,"lavender pot",0,"lavender pots",0,0,1,0,0
2000297,"fruit barrel",0,"fruit barrels",0,0,1,0,0
2000298,"splintered crate",0,"splintered crates",0,0,1,0,0
2000299,"overturned wain",0,"overturned wains",0,0,1,0,0
2000300,"Amajina & Sons coffers",0,"Amajina & Sons coffer",0,1,1,0,0
2000301,"tiny key",0,"tiny keys",0,0,1,0,0
2000302,"tiny key",0,"tiny keys",0,0,1,0,0
2000303,"tiny key",0,"tiny keys",0,0,1,0,0
2000304,"tiny key",0,"tiny keys",0,0,1,0,0
2000305,"tiny key",0,"tiny keys",0,0,1,0,0
2000306,"tiny key",0,"tiny keys",0,0,1,0,0
2000307,"tiny key",0,"tiny keys",0,0,1,0,0
2000308,"tiny key",0,"tiny keys",0,0,1,0,0
2000309,"tiny key",0,"tiny keys",0,0,1,0,0
2000310,"tiny key",0,"tiny keys",0,0,1,0,0
2000311,"tiny key",0,"tiny keys",0,0,1,0,0
2000312,"tiny key",0,"tiny keys",0,0,1,0,0
2000313,"tiny key",0,"tiny keys",0,0,1,0,0
2000314,"tiny key",0,"tiny keys",0,0,1,0,0
2000315,"tiny key",0,"tiny keys",0,0,1,0,0
2000316,"tiny key",0,"tiny keys",0,0,1,0,0
2000317,"tiny key",0,"tiny keys",0,0,1,0,0
2000318,"tiny key",0,"tiny keys",0,0,1,0,0
2000319,"tiny key",0,"tiny keys",0,0,1,0,0
2000320,"tiny key",0,"tiny keys",0,0,1,0,0
2000321,"tiny key",0,"tiny keys",0,0,1,0,0
2000322,"tiny key",0,"tiny keys",0,0,1,0,0
2000323,"tiny key",0,"tiny keys",0,0,1,0,0
2000324,"green key",0,"green keys",0,0,1,0,0
2000325,"yellow key",0,"yellow keys",0,0,1,0,0
2000326,"white key",0,"white keys",0,0,1,0,0
2000327,"red key",0,"red keys",0,0,1,0,0
2000328,"locked door",0,"locked doors",0,0,1,0,0
2000329,"locked door",0,"locked doors",0,0,1,0,0
2000330,"locked door",0,"locked doors",0,0,1,0,0
2000331,"locked door",0,"locked doors",0,0,1,0,0
2000332,"locked door",0,"locked doors",0,0,1,0,0
2000333,"locked door",0,"locked doors",0,0,1,0,0
2000334,"locked door",0,"locked doors",0,0,1,0,0
2000335,"locked door",0,"locked doors",0,0,1,0,0
2000336,"locked door",0,"locked doors",0,0,1,0,0
2000337,"locked door",0,"locked doors",0,0,1,0,0
2000338,"locked door",0,"locked doors",0,0,1,0,0
2000339,"locked door",0,"locked doors",0,0,1,0,0
2000340,"locked door",0,"locked doors",0,0,1,0,0
2000341,"locked door",0,"locked doors",0,0,1,0,0
2000342,"locked door",0,"locked doors",0,0,1,0,0
2000343,"locked door",0,"locked doors",0,0,1,0,0
2000344,"locked door",0,"locked doors",0,0,1,0,0
2000345,"locked door",0,"locked doors",0,0,1,0,0
2000346,"locked door",0,"locked doors",0,0,1,0,0
2000347,"locked door",0,"locked doors",0,0,1,0,0
2000348,"locked door",0,"locked doors",0,0,1,0,0
2000349,"locked door",0,"locked doors",0,0,1,0,0
2000350,"locked door",0,"locked doors",0,0,1,0,0
2000351,"locked door",0,"locked doors",0,0,1,0,0
2000352,"locked door",0,"locked doors",0,0,1,0,0
2000353,"locked door",0,"locked doors",0,0,1,0,0
2000354,"Rose Door",0,"Rose Doors",0,0,1,0,0
2000355,"Ivy Door",0,"Ivy Doors",0,1,1,0,0
2000356,"Carnation Door",0,"Carnation Doors",0,0,1,0,0
2000357,"Lily Door",0,"Lily Doors",0,0,1,0,0
2000358,"void lamp",0,"void lamps",0,0,1,0,0
2000359,"void lamp",0,"void lamps",0,0,1,0,0
2000360,"void lamp",0,"void lamps",0,0,1,0,0
2000361,"void lamp",0,"void lamps",0,0,1,0,0
2000362,"crystal ball",0,"crystal balls",0,0,1,0,0
2000363,"crystal ball",0,"crystal balls",0,0,1,0,0
2000364,"crystal ball",0,"crystal balls",0,0,1,0,0
2000365,"crystal ball",0,"crystal balls",0,0,1,0,0
2000366,"void lamp",0,"void lamps",0,0,1,0,0
2000367,"void lamp",0,"void lamps",0,0,1,0,0
2000368,"void lamp",0,"void lamps",0,0,1,0,0
2000369,"void lamp",0,"void lamps",0,0,1,0,0
2000370,"exit",0,"exits",0,1,1,0,0
2000371,"",0,"",0,0,1,0,0
2000372,"shrewhill",0,"shrewhills",0,0,1,0,0
2000373,"shrewhill",0,"shrewhills",0,0,1,0,0
2000374,"shrewhill",0,"shrewhills",0,0,1,0,0
2000375,"",0,"",0,0,0,0,0
2000376,"",0,"",0,0,0,0,0
2000377,"pockmarked silver ore",0,"chunks of pockmarked silver ore",0,0,1,0,0
2000378,"pockmarked silver ore",0,"chunks of pockmarked silver ore",0,0,1,0,0
2000379,"pockmarked silver ore",0,"chunks of pockmarked silver ore",0,0,1,0,0
2000380,"pockmarked silver ore",0,"chunks of pockmarked silver ore",0,0,1,0,0
2000381,"",0,"",0,0,0,0,0
2000382,"マンドラアクセスその2",0,"",0,0,1,0,0
2000383,"",0,"",0,0,0,0,0
2000384,"accusation chamber door",0,"accusation chamber doors",0,1,1,0,0
2000385,"abacination chamber door",0,"abacination chamber doors",0,1,1,0,0
2000386,"",0,"",0,0,1,0,0
2000387,"",0,"",0,0,1,0,0
2000388,"",0,"",0,0,1,0,0
2000389,"",0,"",0,0,1,0,0
2000390,"",0,"",0,0,1,0,0
2000391,"",0,"",0,0,1,0,0
2000392,"",0,"",0,0,1,0,0
2000393,"",0,"",0,0,1,0,0
2000394,"×陰山テスト検索ポイント1",0,"",0,0,1,0,0
2000395,"×陰山テスト検索ポイント2",0,"",0,0,1,0,0
2000396,"×陰山テスト検索ポイント3",0,"",0,0,1,0,0
2000397,"",0,"",0,0,1,0,0
2000398,"",0,"",0,0,1,0,0
2000399,"",0,"",0,0,1,0,0
2000400,"",0,"",0,0,1,0,0
2000401,"summoning bell",0,"summoning bells",0,0,1,0,0
2000402,"market board",0,"market boards",0,0,1,0,0
2000403,"summoning bell",0,"summoning bells",0,0,1,0,0
2000404,"",0,"",0,0,1,0,0
2000405,"unnatural ripples",0,"patches of unnatural ripples",0,0,1,0,0
2000406,"unnatural ripples",0,"patches of unnatural ripples",0,0,1,0,0
2000407,"unnatural ripples",0,"patches of unnatural ripples",0,0,1,0,0
2000408,"unnatural ripples",0,"patches of unnatural ripples",0,0,1,0,0
2000409,"",0,"",0,0,1,0,0
2000410,"",0,"",0,0,1,0,0
2000411,"",0,"",0,0,1,0,0
2000412,"",0,"",0,0,1,0,0
2000413,"",0,"",0,0,1,0,0
2000414,"the Warden",0,"the Warden",0,0,1,0,1
2000415,"the Flame of Magic",0,"the Flames of Magic",0,0,1,0,1
2000416,"the Fruit of Knowledge",0,"the Fruits of Knowledge",0,0,1,0,1
2000417,"the Gem of Affluence",0,"the Gems of Affluence",0,0,1,0,1
2000418,"the Helm of Might",0,"the Helms of Might",0,0,1,0,1
2000419,"stone pedestal",0,"stone pedestals",0,0,1,0,0
2000420,"door to the Vault of Aether",0,"doors to the Vault of Aether",0,0,1,0,0
2000421,"stone pedestal",0,"stone pedestals",0,0,1,0,0
2000422,"door to the Vault of Secrets",0,"doors to the Vault of Secrets",0,0,1,0,0
2000423,"stone pedestal",0,"stone pedestals",0,0,1,0,0
2000424,"door to the Vault of Wealth",0,"doors to the Vault of Wealth",0,0,1,0,0
2000425,"stone pedestal",0,"stone pedestals",0,0,1,0,0
2000426,"door to the Vault of Steel",0,"doors to the Vault of Steel",0,0,1,0,0
2000427,"left pan",0,"left pan",0,0,1,0,0
2000428,"right pan",0,"right pan",0,0,1,0,0
2000429,"the Path to Retribution",0,"the Path to Retribution",0,0,1,0,1
2000430,"",0,"",0,0,1,0,0
2000431,"sealed door",0,"sealed doors",0,0,1,0,0
2000432,"sealed door",0,"sealed doors",0,0,1,0,0
2000433,"sealed door",0,"sealed doors",0,0,1,0,0
2000434,"sealed entryway",0,"sealed entryways",0,0,1,0,0
2000435,"sealed door",0,"sealed doors",0,0,1,0,0
2000436,"Inner Sanctum gate",0,"Inner Sanctum gates",0,0,1,0,0
2000437,"Lower Sanctum gate",0,"Lower Sanctum gates",0,0,1,0,0
2000438,"grand hall gate",0,"grand hall gates",0,0,1,0,0
2000439,"summoning bell",0,"summoning bells",0,0,1,0,0
2000440,"market board",0,"market boards",0,0,1,0,0
2000441,"summoning bell",0,"summoning bells",0,0,1,0,0
2000442,"market board",0,"market boards",0,0,1,0,0
2000443,"",0,"",0,0,1,0,0
2000444,"",0,"",0,0,1,0,0
2000445,"",0,"",0,0,1,0,0
2000446,"",0,"",0,0,1,0,0
2000447,"",0,"",0,0,1,0,0
2000448,"",0,"",0,0,1,0,0
2000449,"",0,"",0,0,1,0,0
2000450,"damaged wain",0,"damaged wains",0,0,1,0,0
2000451,"",0,"",0,0,1,0,0
2000452,"",0,"",0,0,1,0,0
2000453,"",0,"",0,0,1,0,0
2000454,"",0,"",0,0,1,0,0
2000455,"",0,"",0,0,1,0,0
2000456,"",0,"",0,0,1,0,0
2000457,"",0,"",0,0,1,0,0
2000458,"magitek transporter",0,"magitek transporters",0,0,1,0,0
2000459,"",0,"",0,0,1,0,0
2000460,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000461,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000462,"",0,"",0,0,1,0,0
2000463,"",0,"",0,0,1,0,0
2000464,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000465,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000466,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000467,"",0,"",0,0,1,0,0
2000468,"",0,"",0,0,1,0,0
2000469,"shifting sands",0,"patches of shifting sands",0,0,1,0,0
2000470,"company chest",0,"company chests",0,0,1,0,0
2000471,"",0,"",0,0,1,0,0
2000472,"",0,"",0,0,1,0,0
2000473,"",0,"",0,0,1,0,0
2000474,"magitek transporter",0,"magitek transporters",0,0,1,0,0
2000475,"",0,"",0,0,1,0,0
2000476,"magitek terminal I",0,"magitek terminals I",0,0,1,0,0
2000477,"magitek terminal II",0,"magitek terminals II",0,0,1,0,0
2000478,"magitek terminal III",0,"magitek terminals III",0,0,1,0,0
2000479,"magitek terminal IV",0,"magitek terminals IV",0,0,1,0,0
2000480,"magitek terminal V",0,"magitek terminals V",0,0,1,0,0
2000481,"magitek terminal VI",0,"magitek terminals VI",0,0,1,0,0
2000482,"magitek terminal VII",0,"magitek terminals VII",0,0,1,0,0
2000483,"magitek terminal VIII",0,"magitek terminals VIII",0,0,1,0,0
2000484,"magitek terminal IX",0,"magitek terminals IX",0,0,1,0,0
2000485,"magitek terminal X",0,"magitek terminals X",0,0,1,0,0
2000486,"",0,"",0,0,1,0,0
2000487,"",0,"",0,0,1,0,0
2000488,"",0,"",0,0,1,0,0
2000489,"×川瀬実験EOBJ",0,"",0,0,1,0,0
2000490,"",0,"",0,0,1,0,0
2000491,"",0,"",0,0,1,0,0
2000492,"",0,"",0,0,1,0,0
2000493,"exit",0,"exits",0,1,1,0,0
2000494,"",0,"",0,0,1,0,0
2000495,"",0,"",0,0,1,0,0
2000496,"",0,"",0,0,1,0,0
2000497,"",0,"",0,0,1,0,0
2000498,"",0,"",0,0,1,0,0
2000499,"",0,"",0,0,1,0,0
2000500,"aetherial flow",0,"aetherial flows",0,1,1,0,0
2000501,"aetherial flow",0,"aetherial flows",0,1,1,0,0
2000502,"Presence Chamber door",0,"Presence Chamber doors",0,0,1,0,0
2000503,"",0,"",0,0,1,0,0
2000504,"",0,"",0,0,1,0,0
2000505,"",0,"",0,0,1,0,0
2000506,"",0,"",0,0,1,0,0
2000507,"",0,"",0,0,1,0,0
2000508,"",0,"",0,0,1,0,0
2000509,"",0,"",0,0,1,0,0
2000510,"",0,"",0,0,1,0,0
2000511,"",0,"",0,0,1,0,0
2000512,"",0,"",0,0,1,0,0
2000513,"",0,"",0,0,1,0,0
2000514,"",0,"",0,0,1,0,0
2000515,"",0,"",0,0,1,0,0
2000516,"",0,"",0,0,1,0,0
2000517,"",0,"",0,0,1,0,0
2000518,"",0,"",0,0,1,0,0
2000519,"",0,"",0,0,1,0,0
2000520,"",0,"",0,0,1,0,0
2000521,"",0,"",0,0,1,0,0
2000522,"",0,"",0,0,1,0,0
2000523,"",0,"",0,0,1,0,0
2000524,"",0,"",0,0,1,0,0
2000525,"",0,"",0,0,1,0,0
2000526,"",0,"",0,0,1,0,0
2000527,"",0,"",0,0,1,0,0
2000528,"",0,"",0,0,1,0,0
2000529,"",0,"",0,0,1,0,0
2000530,"",0,"",0,0,1,0,0
2000531,"",0,"",0,0,1,0,0
2000532,"",0,"",0,0,1,0,0
2000533,"",0,"",0,0,1,0,0
2000534,"",0,"",0,0,1,0,0
2000535,"",0,"",0,0,1,0,0
2000536,"",0,"",0,0,1,0,0
2000537,"",0,"",0,0,1,0,0
2000538,"",0,"",0,0,1,0,0
2000539,"",0,"",0,0,1,0,0
2000540,"",0,"",0,0,1,0,0
2000541,"",0,"",0,0,1,0,0
2000542,"",0,"",0,0,1,0,0
2000543,"",0,"",0,0,1,0,0
2000544,"",0,"",0,0,1,0,0
2000545,"",0,"",0,0,1,0,0
2000546,"",0,"",0,0,1,0,0
2000547,"",0,"",0,0,1,0,0
2000548,"",0,"",0,0,1,0,0
2000549,"",0,"",0,0,1,0,0
2000550,"",0,"",0,0,1,0,0
2000551,"",0,"",0,0,1,0,0
2000552,"",0,"",0,0,1,0,0
2000553,"",0,"",0,0,1,0,0
2000554,"",0,"",0,0,1,0,0
2000555,"",0,"",0,0,1,0,0
2000556,"",0,"",0,0,1,0,0
2000557,"",0,"",0,0,1,0,0
2000558,"",0,"",0,0,1,0,0
2000559,"",0,"",0,0,1,0,0
2000560,"",0,"",0,0,1,0,0
2000561,"",0,"",0,0,1,0,0
2000562,"",0,"",0,0,1,0,0
2000563,"",0,"",0,0,1,0,0
2000564,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000565,"",0,"",0,0,1,0,0
2000566,"",0,"",0,0,1,0,0
2000567,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000568,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000569,"",0,"",0,0,1,0,0
2000570,"incendiary #37",0,"canisters of incendiary #37",0,0,1,0,0
2000571,"unstable paneling",0,"sheets of unstable paneling",0,1,1,0,0
2000572,"",0,"",0,0,1,0,0
2000573,"",0,"",0,0,1,0,0
2000574,"unstable paneling",0,"sheets of unstable paneling",0,1,1,0,0
2000575,"",0,"",0,0,1,0,0
2000576,"",0,"",0,0,1,0,0
2000577,"",0,"",0,0,1,0,0
2000578,"",0,"",0,0,1,0,0
2000579,"",0,"",0,0,1,0,0
2000580,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000581,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000582,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000583,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000584,"",0,"",0,0,1,0,0
2000585,"",0,"",0,0,1,0,0
2000586,"",0,"",0,0,1,0,0
2000587,"",0,"",0,0,1,0,0
2000588,"",0,"",0,0,1,0,0
2000589,"",0,"",0,0,1,0,0
2000590,"",0,"",0,0,1,0,0
2000591,"",0,"",0,0,1,0,0
2000592,"",0,"",0,0,1,0,0
2000593,"",0,"",0,0,1,0,0
2000594,"",0,"",0,0,1,0,0
2000595,"Mark XLIII anti-aircraft cannon",0,"Mark XLIII anti-aircraft cannons",0,0,1,0,0
2000596,"exit",0,"exits",0,1,1,0,0
2000597,"disposal chute",0,"disposal chutes",0,0,1,0,0
2000598,"",0,"",0,0,1,0,0
2000599,"",0,"",0,0,1,0,0
2000600,"Mark XLIII anti-aircraft cannon",0,"Mark XLIII anti-aircraft cannons",0,0,1,0,0
2000601,"Mark XLIII anti-aircraft cannon",0,"Mark XLIII anti-aircraft cannons",0,0,1,0,0
2000602,"",0,"",0,0,1,0,0
2000603,"shortcut",0,"shortcuts",0,0,1,0,0
2000604,"",0,"",0,0,1,0,0
2000605,"exit",0,"exits",0,1,1,0,0
2000606,"",0,"",0,0,1,0,0
2000607,"",0,"",0,0,1,0,0
2000608,"",0,"",0,0,1,0,0
2000609,"rich soil",0,"patches of rich soil",0,0,1,0,0
2000610,"prime location",0,"prime locations",0,0,1,0,0
2000611,"",0,"",0,0,1,0,0
2000612,"",0,"",0,0,1,0,0
2000613,"",0,"",0,0,1,0,0
2000614,"",0,"",0,0,1,0,0
2000615,"",0,"",0,0,1,0,0
2000616,"",0,"",0,0,1,0,0
2000617,"",0,"",0,0,1,0,0
2000618,"",0,"",0,0,1,0,0
2000619,"",0,"",0,0,1,0,0
2000620,"",0,"",0,0,1,0,0
2000621,"",0,"",0,0,1,0,0
2000622,"",0,"",0,0,1,0,0
2000623,"",0,"",0,0,1,0,0
2000624,"",0,"",0,0,1,0,0
2000625,"hexalift",0,"hexalifts",0,0,1,0,0
2000626,"hexalift",0,"hexalifts",0,0,1,0,0
2000627,"",0,"",0,0,1,0,0
2000628,"",0,"",0,0,1,0,0
2000629,"",0,"",0,0,1,0,0
2000630,"",0,"",0,0,1,0,0
2000631,"",0,"",0,0,1,0,0
2000632,"",0,"",0,0,1,0,0
2000633,"silent terminal",0,"silent terminals",0,0,1,0,0
2000634,"silent terminal",0,"silent terminals",0,0,1,0,0
2000635,"",0,"",0,0,1,0,0
2000636,"",0,"",0,0,1,0,0
2000637,"",0,"",0,0,1,0,0
2000638,"",0,"",0,0,1,0,0
2000639,"",0,"",0,0,1,0,0
2000640,"",0,"",0,0,1,0,0
2000641,"",0,"",0,0,1,0,0
2000642,"",0,"",0,0,1,0,0
2000643,"",0,"",0,0,1,0,0
2000644,"",0,"",0,0,1,0,0
2000645,"",0,"",0,0,1,0,0
2000646,"",0,"",0,0,1,0,0
2000647,"",0,"",0,0,1,0,0
2000648,"",0,"",0,0,1,0,0
2000649,"",0,"",0,0,1,0,0
2000650,"",0,"",0,0,1,0,0
2000651,"",0,"",0,0,1,0,0
2000652,"",0,"",0,0,1,0,0
2000653,"",0,"",0,0,1,0,0
2000654,"",0,"",0,0,1,0,0
2000655,"",0,"",0,0,1,0,0
2000656,"",0,"",0,0,1,0,0
2000657,"",0,"",0,0,1,0,0
2000658,"the Scales of Judgment",0,"the Scales of Judgment",0,0,1,0,1
2000659,"",0,"",0,0,1,0,0
2000660,"",0,"",0,0,1,0,0
2000661,"summoning bell",0,"summoning bells",0,0,1,0,0
2000662,"magitek missile",0,"magitek missiles",0,0,1,0,0
2000663,"magitek missile",0,"magitek missiles",0,0,1,0,0
2000664,"magitek missile",0,"magitek missiles",0,0,1,0,0
2000665,"magitek missile",0,"magitek missiles",0,0,1,0,0
2000666,"",0,"",0,0,1,0,0
2000667,"",0,"",0,0,1,0,0
2000668,"",0,"",0,0,1,0,0
2000669,"",0,"",0,0,1,0,0
2000670,"",0,"",0,0,1,0,0
2000671,"",0,"",0,0,1,0,0
2000672,"",0,"",0,0,1,0,0
2000673,"",0,"",0,0,1,0,0
2000674,"",0,"",0,0,1,0,0
2000675,"",0,"",0,0,1,0,0
2000676,"",0,"",0,0,1,0,0
2000677,"",0,"",0,0,1,0,0
2000678,"",0,"",0,0,1,0,0
2000679,"",0,"",0,0,1,0,0
2000680,"",0,"",0,0,1,0,0
2000681,"",0,"",0,0,1,0,0
2000682,"",0,"",0,0,1,0,0
2000683,"exit",0,"exits",0,1,1,0,0
2000684,"",0,"",0,0,1,0,0
2000685,"well-worn fishing rod",0,"well-worn fishing rods",0,0,1,0,0
2000686,"",0,"",0,0,0,0,0
2000687,"Bloody Transept door",0,"Bloody Transept doors",0,0,1,0,0
2000688,"gutted campfire",0,"gutted campfires",0,0,1,0,0
2000689,"worn leather bag",0,"worn leather bags",0,0,1,0,0
2000690,"thousand-year plum",0,"thousand-year plums",0,0,1,0,0
2000691,"exposed wall",0,"exposed walls",0,1,1,0,0
2000692,"exposed wall",0,"exposed walls",0,1,1,0,0
2000693,"exposed wall",0,"exposed walls",0,1,1,0,0
2000694,"",0,"",0,0,0,0,0
2000695,"dropped gil",0,"piles of dropped gil",0,0,1,0,0
2000696,"dropped gil",0,"piles of dropped gil",0,0,1,0,0
2000697,"dropped gil",0,"piles of dropped gil",0,0,1,0,0
2000698,"",0,"",0,0,1,0,0
2000699,"",0,"",0,0,1,0,0
2000700,"shortcut",0,"shortcuts",0,0,1,0,0
2000701,"",0,"",0,0,1,0,0
2000702,"",0,"",0,0,0,0,0
2000703,"",0,"",0,0,0,0,0
2000704,"",0,"",0,0,0,0,0
2000705,"",0,"",0,0,0,0,0
2000706,"",0,"",0,0,0,0,0
2000707,"",0,"",0,0,1,0,0
2000708,"(仮)木材",0,"",0,0,1,0,0
2000709,"destination",0,"destinations",0,0,1,0,0
2000710,"",0,"",0,0,0,0,0
2000711,"destination",0,"destinations",0,0,1,0,0
2000712,"",0,"",0,0,0,0,0
2000713,"",0,"",0,0,0,0,0
2000714,"",0,"",0,0,0,0,0
2000715,"",0,"",0,0,0,0,0
2000716,"",0,"",0,0,0,0,0
2000717,"Twin Adder standard",0,"Twin Adder standards",0,0,1,0,0
2000718,"Twin Adder standard",0,"Twin Adder standards",0,0,1,0,0
2000719,"Twin Adder standard",0,"Twin Adder standards",0,0,1,0,0
2000720,"destination",0,"destinations",0,0,1,0,0
2000721,"destination",0,"destinations",0,0,1,0,0
2000722,"destination",0,"destinations",0,0,1,0,0
2000723,"silk strand",0,"silk strands",0,0,1,0,0
2000724,"",0,"",0,0,0,0,0
2000725,"",0,"",0,0,0,0,0
2000726,"",0,"",0,0,0,0,0
2000727,"muddy potsherd",0,"muddy potsherds",0,0,1,0,0
2000728,"muddy potsherd",0,"muddy potsherds",0,0,1,0,0
2000729,"muddy potsherd",0,"muddy potsherds",0,0,1,0,0
2000730,"",0,"",0,0,0,0,0
2000731,"",0,"",0,0,0,0,0
2000732,"",0,"",0,0,1,0,0
2000733,"",0,"",0,0,1,0,0
2000734,"",0,"",0,0,1,0,0
2000735,"",0,"",0,0,1,0,0
2000736,"",0,"",0,0,1,0,0
2000737,"",0,"",0,0,1,0,0
2000738,"EATC cargo crate",0,"EATC cargo crates",0,1,1,0,0
2000739,"EATC cargo crate",0,"EATC cargo crates",0,1,1,0,0
2000740,"EATC cargo crate",0,"EATC cargo crates",0,1,1,0,0
2000741,"barrel trap",0,"barrel traps",0,0,1,0,0
2000742,"barrel trap",0,"barrel traps",0,0,1,0,0
2000743,"",0,"",0,0,0,0,0
2000744,"",0,"",0,0,0,0,0
2000745,"",0,"",0,0,0,0,0
2000746,"",0,"",0,0,1,0,0
2000747,"",0,"",0,0,0,0,0
2000748,"blue trumpet",0,"blue trumpets",0,0,1,0,0
2000749,"blue trumpet",0,"blue trumpets",0,0,1,0,0
2000750,"blue trumpet",0,"blue trumpets",0,0,1,0,0
2000751,"blue trumpet",0,"blue trumpets",0,0,1,0,0
2000752,"",0,"",0,0,0,0,0
2000753,"Amajina & Sons coffer",0,"Amajina & Sons coffers",0,1,1,0,0
2000754,"Amajina & Sons coffer",0,"Amajina & Sons coffers",0,1,1,0,0
2000755,"",0,"",0,0,0,0,0
2000756,"×SubSea110:荷車1",0,"",0,0,1,0,0
2000757,"",0,"",0,0,0,0,0
2000758,"",0,"",0,0,0,0,0
2000759,"×SubSea110:荷車4",0,"",0,0,1,0,0
2000760,"forecastle planks",0,"bundles of forecastle planks",0,0,1,0,0
2000761,"quarterdeck logs",0,"stack of quarterdeck logs",0,0,1,0,0
2000762,"packed lunch",0,"packed lunches",0,0,1,0,0
2000763,"packed lunch",0,"packed lunches",0,0,1,0,0
2000764,"forecastle planks",0,"bundles of forecastle planks",0,0,1,0,0
2000765,"forecastle planks",0,"bundles of forecastle planks",0,0,1,0,0
2000766,"×SubSea116:焚火1",0,"",0,0,1,0,0
2000767,"×SubSea116:焚火2",0,"",0,0,1,0,0
2000768,"×SubSea116:焚火3",0,"",0,0,1,0,0
2000769,"brass helm wheel",0,"brass helm wheels",0,0,1,0,0
2000770,"tangled rigging",0,"tangled rigging",0,0,1,0,0
2000771,"folded sailcloth",0,"folded sailcloths",0,0,1,0,0
2000772,"suspicious mound",0,"suspicious mounds",0,0,1,0,0
2000773,"suspicious mound",0,"suspicious mounds",0,0,1,0,0
2000774,"suspicious mound",0,"suspicious mounds",0,0,1,0,0
2000775,"La Noscean lilybell",0,"La Noscean lilybells",0,0,1,0,0
2000776,"La Noscean lilybell",0,"La Noscean lilybells",0,0,1,0,0
2000777,"La Noscean lilybell",0,"La Noscean lilybells",0,0,1,0,0
2000778,"morbol fruit",0,"pieces of morbol fruit",0,0,1,0,0
2000779,"",0,"",0,0,1,0,0
2000780,"",0,"",0,0,1,0,0
2000781,"",0,"",0,0,1,0,0
2000782,"",0,"",0,0,1,0,0
2000783,"",0,"",0,0,1,0,0
2000784,"",0,"",0,0,1,0,0
2000785,"",0,"",0,0,1,0,0
2000786,"",0,"",0,0,1,0,0
2000787,"",0,"",0,0,1,0,0
2000788,"exit",0,"exits",0,1,1,0,0
2000789,"shortcut",0,"shortcuts",0,0,1,0,0
2000790,"",0,"",0,0,1,0,0
2000791,"",0,"",0,0,1,0,0
2000792,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000793,"",0,"",0,0,1,0,0
2000794,"",0,"",0,0,1,0,0
2000795,"",0,"",0,0,1,0,0
2000796,"",0,"",0,0,1,0,0
2000797,"",0,"",0,0,1,0,0
2000798,"",0,"",0,0,1,0,0
2000799,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000800,"",0,"",0,0,1,0,0
2000801,"",0,"",0,0,1,0,0
2000802,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000803,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000804,"",0,"",0,0,1,0,0
2000805,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000806,"(仮)シド指令",0,"",0,0,1,0,0
2000807,"",0,"",0,0,1,0,0
2000808,"identification key reader",0,"identification key readers",0,1,1,0,0
2000809,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000810,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000811,"",0,"",0,0,1,0,0
2000812,"",0,"",0,0,1,0,0
2000813,"",0,"",0,0,1,0,0
2000814,"",0,"",0,0,1,0,0
2000815,"",0,"",0,0,1,0,0
2000816,"",0,"",0,0,1,0,0
2000817,"",0,"",0,0,1,0,0
2000818,"",0,"",0,0,1,0,0
2000819,"",0,"",0,0,1,0,0
2000820,"",0,"",0,0,1,0,0
2000821,"",0,"",0,0,1,0,0
2000822,"",0,"",0,0,1,0,0
2000823,"",0,"",0,0,1,0,0
2000824,"",0,"",0,0,1,0,0
2000825,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000826,"",0,"",0,0,1,0,0
2000827,"",0,"",0,0,1,0,0
2000828,"",0,"",0,0,1,0,0
2000829,"",0,"",0,0,1,0,0
2000830,"",0,"",0,0,1,0,0
2000831,"",0,"",0,0,1,0,0
2000832,"",0,"",0,0,1,0,0
2000833,"",0,"",0,0,1,0,0
2000834,"",0,"",0,0,1,0,0
2000835,"",0,"",0,0,1,0,0
2000836,"",0,"",0,0,1,0,0
2000837,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000838,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000839,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000840,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000841,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000842,"",0,"",0,0,1,0,0
2000843,"",0,"",0,0,1,0,0
2000844,"",0,"",0,0,1,0,0
2000845,"",0,"",0,0,1,0,0
2000846,"shortcut",0,"shortcuts",0,0,1,0,0
2000847,"shortcut",0,"shortcuts",0,0,1,0,0
2000848,"shortcut",0,"shortcuts",0,0,1,0,0
2000849,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000850,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000851,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000852,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000853,"shortcut",0,"shortcuts",0,0,1,0,0
2000854,"",0,"",0,0,1,0,0
2000855,"",0,"",0,0,1,0,0
2000856,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000857,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000858,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000859,"",0,"",0,0,1,0,0
2000860,"",0,"",0,0,1,0,0
2000861,"",0,"",0,0,1,0,0
2000862,"",0,"",0,0,1,0,0
2000863,"",0,"",0,0,1,0,0
2000864,"",0,"",0,0,1,0,0
2000865,"",0,"",0,0,1,0,0
2000866,"",0,"",0,0,1,0,0
2000867,"",0,"",0,0,1,0,0
2000868,"",0,"",0,0,1,0,0
2000869,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000870,"imperial identification key",0,"imperial identification keys",0,1,1,0,0
2000871,"",0,"",0,0,1,0,0
2000872,"magitek armor",0,"suits of magitek armor",0,0,1,0,0
2000873,"searchlight terminal",0,"searchlight terminals",0,0,1,0,0
2000874,"",0,"",0,0,1,0,0
2000875,"",0,"",0,0,1,0,0
2000876,"",0,"",0,0,1,0,0
2000877,"",0,"",0,0,1,0,0
2000878,"",0,"",0,0,1,0,0
2000879,"",0,"",0,0,1,0,0
2000880,"",0,"",0,0,1,0,0
2000881,"",0,"",0,0,1,0,0
2000882,"",0,"",0,0,1,0,0
2000883,"corrupted soil",0,"patches of corrupted soil",0,0,1,0,0
2000884,"",0,"",0,0,0,0,0
2000885,"destination",0,"destinations",0,0,1,0,0
2000886,"",0,"",0,0,0,0,0
2000887,"corrupted air",0,"patches of corrupted air",0,0,1,0,0
2000888,"",0,"",0,0,0,0,0
2000889,"corrupted water",0,"patches of corrupted water",0,0,1,0,0
2000890,"",0,"",0,0,0,0,0
2000891,"corrupted soil",0,"patches of corrupted soil",0,0,1,0,0
2000892,"",0,"",0,0,0,0,0
2000893,"corrupted air",0,"patches of corrupted air",0,0,1,0,0
2000894,"",0,"",0,0,0,0,0
2000895,"corrupted water",0,"patches of corrupted water",0,0,1,0,0
2000896,"",0,"",0,0,0,0,0
2000897,"",0,"",0,0,0,0,0
2000898,"",0,"",0,0,0,0,0
2000899,"corrupted soil",0,"patches of corrupted soil",0,0,1,0,0
2000900,"",0,"",0,0,0,0,0
2000901,"corrupted soil",0,"patches of corrupted soil",0,0,1,0,0
2000902,"",0,"",0,0,1,0,0
2000903,"",0,"",0,0,1,0,0
2000904,"magitek terminal",0,"magitek terminals",0,0,1,0,0
2000905,"",0,"",0,0,0,0,0
2000906,"corrupted soil",0,"patches of corrupted soil",0,0,1,0,0
2000907,"",0,"",0,0,0,0,0
2000908,"yarzon nest",0,"yarzon nests",0,0,1,0,0
2000909,"yarzon nest",0,"yarzon nests",0,0,1,0,0
2000910,"yarzon nest",0,"yarzon nests",0,0,1,0,0
2000911,"yarzon nest",0,"yarzon nests",0,0,1,0,0
2000912,"",0,"",0,0,0,0,0
2000913,"",0,"",0,0,0,0,0
2000914,"collapsed pillar",0,"collapsed pillars",0,0,1,0,0
2000915,"collapsed pillar",0,"collapsed pillars",0,0,1,0,0
2000916,"collapsed pillar",0,"collapsed pillars",0,0,1,0,0
2000917,"Stone of Courage",0,"Stones of Courage",0,0,1,0,0
2000918,"Stone of Courage",0,"Stones of Courage",0,0,1,0,0
2000919,"exposed roots",0,"patches of exposed roots",0,0,1,0,0
2000920,"destination",0,"destinations",0,0,1,0,0
2000921,"Mistalle's Lance",0,"Mistalle's Lance",0,0,1,0,1
2000922,"gutted campfire",0,"gutted campfire",0,0,1,0,0
2000923,"gutted campfire",0,"gutted campfire",0,0,1,0,0
2000924,"scarred lance",0,"scarred lances",0,0,1,0,0
2000925,"archery butt",0,"archery butts",0,1,1,0,0
2000926,"archery butt",0,"archery butts",0,1,1,0,0
2000927,"archery butt",0,"archery butts",0,1,1,0,0
2000928,"archery butt",0,"archery butts",0,1,1,0,0
2000929,"archery butt",0,"archery butts",0,1,1,0,0
2000930,"archery butt",0,"archery butts",0,1,1,0,0
2000931,"archery butt",0,"archery butts",0,1,1,0,0
2000932,"",0,"",0,0,0,0,0
2000933,"",0,"",0,0,0,0,0
2000934,"archery butt",0,"archery butts",0,1,1,0,0
2000935,"",0,"",0,0,0,0,0
2000936,"archery butt",0,"archery butts",0,1,1,0,0
2000937,"archery butt",0,"archery butts",0,1,1,0,0
2000938,"archery butt",0,"archery butts",0,1,1,0,0
2000939,"archery butt",0,"archery butts",0,1,1,0,0
2000940,"archery butt",0,"archery butts",0,1,1,0,0
2000941,"archery butt",0,"archery butts",0,1,1,0,0
2000942,"archery butt",0,"archery butts",0,1,1,0,0
2000943,"archery butt",0,"archery butts",0,1,1,0,0
2000944,"archery butt",0,"archery butts",0,1,1,0,0
2000945,"archery butt",0,"archery butts",0,1,1,0,0
2000946,"archery butt",0,"archery butts",0,1,1,0,0
2000947,"iron leg trap",0,"iron leg traps",0,0,1,0,0
2000948,"poacher's arrow",0,"poacher's arrows",0,0,1,0,0
2000949,"empty mead bottles",0,"piles of empty mead bottles",0,1,1,0,0
2000950,"",0,"",0,0,0,0,0
2000951,"destination",0,"destinations",0,0,1,0,0
2000952,"",0,"",0,0,0,0,0
2000953,"magicked blade",0,"magicked blades",0,0,1,0,0
2000954,"",0,"",0,0,0,0,0
2000955,"archery butt",0,"archery butts",0,1,1,0,0
2000956,"archery butt",0,"archery butts",0,1,1,0,0
2000957,"archery butt",0,"archery butts",0,1,1,0,0
2000958,"archery butt",0,"archery butts",0,1,1,0,0
2000959,"archery butt",0,"archery butts",0,1,1,0,0
2000960,"",0,"",0,0,0,0,0
2000961,"",0,"",0,0,0,0,0
2000962,"destination",0,"destinations",0,0,1,0,0
2000963,"destination",0,"destinations",0,0,1,0,0
2000964,"×イベントオブジェクト君1",0,"",0,0,1,0,0
2000965,"×イベントオブジェクト君2",0,"",0,0,1,0,0
2000966,"Stone of Courage",0,"Stones of Courage",0,0,1,0,0
2000967,"Stone of Courage",0,"Stones of Courage",0,0,1,0,0
2000968,"",0,"",0,0,0,0,0
2000969,"",0,"",0,0,0,0,0
2000970,"",0,"",0,0,0,0,0
2000971,"",0,"",0,0,0,0,0
2000972,"guild-issue echo drops",0,"bottles of guild-issue echo drops",0,0,1,0,0
2000973,"guild-issue antidote",0,"bottles of guild-issue antidote",0,0,1,0,0
2000974,"guild-issue smelling salts",0,"bottles of guild-issue smelling salts",0,0,1,0,0
2000975,"guild-issue eye drops",0,"bottles of guild-issue eye drops",0,0,1,0,0
2000976,"",0,"",0,0,1,0,0
2000977,"destination",0,"destinations",0,0,1,0,0
2000978,"bloody boar tusks",0,"piles of bloody boar tusks",0,0,1,0,0
2000979,"",0,"",0,0,0,0,0
2000980,"",0,"",0,0,0,0,0
2000981,"",0,"",0,0,0,0,0
2000982,"",0,"",0,0,0,0,0
2000983,"silk strand",0,"silk strands",0,0,1,0,0
2000984,"",0,"",0,0,0,0,0
2000985,"",0,"",0,0,0,0,0
2000986,"",0,"",0,0,0,0,0
2000987,"",0,"",0,0,0,0,0
2000988,"",0,"",0,0,1,0,0
2000989,"",0,"",0,0,1,0,0
2000990,"Leia's egg",0,"Leia's eggs",0,0,1,0,1
2000991,"",0,"",0,0,1,0,0
2000992,"",0,"",0,0,1,0,0
2000993,"",0,"",0,0,1,0,0
2000994,"",0,"",0,0,1,0,0
2000995,"",0,"",0,0,1,0,0
2000996,"",0,"",0,0,1,0,0