forked from otservme/global860
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.sql
3445 lines (3184 loc) · 209 KB
/
schema.sql
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
-- phpMyAdmin SQL Dump
-- version 4.2.8
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 02, 2014 at 11:53 PM
-- Server version: 5.5.37-0ubuntu0.13.10.1
-- PHP Version: 5.5.3-1ubuntu2.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `global860`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE IF NOT EXISTS `accounts` (
`id` int(11) NOT NULL,
`name` varchar(32) NOT NULL DEFAULT '',
`password` varchar(255) NOT NULL,
`premdays` int(11) NOT NULL DEFAULT '0',
`lastday` int(10) unsigned NOT NULL DEFAULT '0',
`email` varchar(255) NOT NULL DEFAULT '',
`key` varchar(20) NOT NULL DEFAULT '0',
`blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'internal usage',
`warnings` int(11) NOT NULL DEFAULT '0',
`group_id` int(11) NOT NULL DEFAULT '1',
`page_lastday` int(11) NOT NULL,
`email_new` varchar(255) NOT NULL,
`email_new_time` int(15) NOT NULL,
`created` int(11) NOT NULL DEFAULT '0',
`rlname` varchar(255) NOT NULL DEFAULT '',
`location` varchar(255) NOT NULL DEFAULT '',
`page_access` int(11) NOT NULL DEFAULT '0',
`email_code` varchar(255) NOT NULL DEFAULT '0',
`next_email` int(11) NOT NULL DEFAULT '0',
`premium_points` int(11) NOT NULL DEFAULT '0',
`vote` int(11) NOT NULL,
`last_post` int(11) NOT NULL DEFAULT '0',
`flag` varchar(255) NOT NULL,
`viptime` int(15) NOT NULL DEFAULT '0',
`vip_time` int(15) NOT NULL DEFAULT '0',
`vipdays` int(15) NOT NULL DEFAULT '0',
`salt` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`id`, `name`, `password`, `premdays`, `lastday`, `email`, `key`, `blocked`, `warnings`, `group_id`, `page_lastday`, `email_new`, `email_new_time`, `created`, `rlname`, `location`, `page_access`, `email_code`, `next_email`, `premium_points`, `vote`, `last_post`, `flag`, `viptime`, `vip_time`, `vipdays`, `salt`) VALUES
(1, '1', '356a192b7913b04c54574d18c28d46e6395428ab', 65535, 0, '[email protected]', 'cd3aacdb0a47c2067fed', 0, 0, 1, 1275095419, '', 0, 0, '', '', 3, '0', 0, 0, 0, 1274912789, '', 0, 0, 0, ''),
(2, '252528', 'c59b288546e1e1ef9e7728200a33f364bf592f10', 0, 0, '', '0', 0, 0, 1, 0, '', 0, 0, '', '', 0, '0', 0, 0, 0, 0, '', 0, 0, 0, '3I93RL98SczqDYgXI6C-WbP57dobOTGSFG57aSm'),
(3, '363639', '3ec8fbe5372d95fc9ade5266f182bbbc2c2b199d', 0, 0, '', '0', 0, 0, 1, 0, '', 0, 0, '', '', 0, '0', 0, 0, 0, 0, '', 0, 0, 0, ''),
(4, 'hadamo89', '0346074237aa1bd73f8c0c5e717fdc0339537690', 0, 0, '', '0', 0, 0, 1, 0, '', 0, 0, '', '', 0, '0', 0, 0, 0, 0, '', 0, 0, 0, ''),
(5, 'god', 'bdfa0acc400939819b9afc23bf462d66e57b0500', 0, 0, '', '0', 0, 0, 1, 0, '', 0, 0, '', '', 0, '0', 0, 0, 0, 0, '', 0, 0, 0, '');
--
-- Triggers `accounts`
--
DELIMITER //
CREATE TRIGGER `ondelete_accounts` BEFORE DELETE ON `accounts`
FOR EACH ROW BEGIN
DELETE FROM `bans` WHERE `type` IN (3, 4) AND `value` = OLD.`id`;
END
//
DELIMITER ;
-- --------------------------------------------------------
--
-- Table structure for table `account_viplist`
--
CREATE TABLE IF NOT EXISTS `account_viplist` (
`account_id` int(11) NOT NULL,
`world_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`player_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `bans`
--
CREATE TABLE IF NOT EXISTS `bans` (
`id` int(10) unsigned NOT NULL,
`type` tinyint(1) NOT NULL COMMENT '1 - ip banishment, 2 - namelock, 3 - account banishment, 4 - notation, 5 - deletion',
`value` int(10) unsigned NOT NULL COMMENT 'ip address (integer), player guid or account number',
`param` int(10) unsigned NOT NULL DEFAULT '4294967295' COMMENT 'used only for ip banishment mask (integer)',
`active` tinyint(1) NOT NULL DEFAULT '1',
`expires` int(11) NOT NULL,
`added` int(10) unsigned NOT NULL,
`admin_id` int(10) unsigned NOT NULL DEFAULT '0',
`comment` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `environment_killers`
--
CREATE TABLE IF NOT EXISTS `environment_killers` (
`kill_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `global_storage`
--
CREATE TABLE IF NOT EXISTS `global_storage` (
`key` varchar(32) NOT NULL DEFAULT '0',
`world_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`value` varchar(255) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `global_storage`
--
INSERT INTO `global_storage` (`key`, `world_id`, `value`) VALUES
('100075', 0, '1'),
('415029', 0, '1'),
('415030', 0, '0.19'),
('415031', 0, '1');
-- --------------------------------------------------------
--
-- Table structure for table `guilds`
--
CREATE TABLE IF NOT EXISTS `guilds` (
`id` int(11) NOT NULL,
`world_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`ownerid` int(11) NOT NULL,
`creationdata` int(11) NOT NULL,
`checkdata` int(11) NOT NULL,
`motd` varchar(255) NOT NULL,
`balance` bigint(20) unsigned NOT NULL,
`description` text NOT NULL,
`logo_gfx_name` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Triggers `guilds`
--
DELIMITER //
CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds`
FOR EACH ROW BEGIN
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('Leader', 3, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('Vice-Leader', 2, NEW.`id`);
INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('Member', 1, NEW.`id`);
END
//
DELIMITER ;
DELIMITER //
CREATE TRIGGER `ondelete_guilds` BEFORE DELETE ON `guilds`
FOR EACH ROW BEGIN
UPDATE `players` SET `guildnick` = '', `rank_id` = 0 WHERE `rank_id` IN (SELECT `id` FROM `guild_ranks` WHERE `guild_id` = OLD.`id`);
END
//
DELIMITER ;
-- --------------------------------------------------------
--
-- Table structure for table `guild_invites`
--
CREATE TABLE IF NOT EXISTS `guild_invites` (
`player_id` int(11) NOT NULL DEFAULT '0',
`guild_id` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `guild_kills`
--
CREATE TABLE IF NOT EXISTS `guild_kills` (
`id` int(11) NOT NULL,
`guild_id` int(11) NOT NULL,
`war_id` int(11) NOT NULL,
`death_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `guild_ranks`
--
CREATE TABLE IF NOT EXISTS `guild_ranks` (
`id` int(11) NOT NULL,
`guild_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`level` int(11) NOT NULL COMMENT '1 - leader, 2 - vice leader, 3 - member'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `guild_wars`
--
CREATE TABLE IF NOT EXISTS `guild_wars` (
`id` int(11) NOT NULL,
`guild_id` int(11) NOT NULL,
`enemy_id` int(11) NOT NULL,
`begin` bigint(20) NOT NULL DEFAULT '0',
`end` bigint(20) NOT NULL DEFAULT '0',
`frags` int(10) unsigned NOT NULL DEFAULT '0',
`payment` bigint(20) unsigned NOT NULL DEFAULT '0',
`guild_kills` int(10) unsigned NOT NULL DEFAULT '0',
`enemy_kills` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `houses`
--
CREATE TABLE IF NOT EXISTS `houses` (
`id` int(10) unsigned NOT NULL,
`world_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`owner` int(11) NOT NULL,
`paid` int(10) unsigned NOT NULL DEFAULT '0',
`warnings` int(11) NOT NULL DEFAULT '0',
`lastwarning` int(10) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`town` int(10) unsigned NOT NULL DEFAULT '0',
`size` int(10) unsigned NOT NULL DEFAULT '0',
`price` int(10) unsigned NOT NULL DEFAULT '0',
`rent` int(10) unsigned NOT NULL DEFAULT '0',
`doors` int(10) unsigned NOT NULL DEFAULT '0',
`beds` int(10) unsigned NOT NULL DEFAULT '0',
`tiles` int(10) unsigned NOT NULL DEFAULT '0',
`guild` tinyint(1) unsigned NOT NULL DEFAULT '0',
`clear` tinyint(1) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `houses`
--
INSERT INTO `houses` (`id`, `world_id`, `owner`, `paid`, `warnings`, `lastwarning`, `name`, `town`, `size`, `price`, `rent`, `doors`, `beds`, `tiles`, `guild`, `clear`) VALUES
(1, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 2, 9, 157, 0, 0),
(2, 0, 0, 0, 0, 0, 'Market Street 4 (Shop)', 1, 384, 393000, 5105, 12, 9, 536, 0, 0),
(3, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 2, 2, 36, 0, 0),
(4, 0, 0, 0, 0, 0, 'Market Street 3', 1, 90, 94000, 3475, 10, 4, 178, 0, 0),
(5, 0, 0, 0, 0, 0, 'Market Street 2', 1, 132, 139000, 4925, 13, 7, 251, 0, 0),
(6, 0, 0, 0, 0, 0, 'Market Street 1', 1, 149, 154000, 6680, 14, 5, 278, 0, 0),
(7, 0, 0, 0, 0, 0, 'Old Lighthouse', 1, 113, 116000, 3610, 8, 3, 221, 0, 0),
(8, 0, 0, 0, 0, 0, 'Seagull Walk 1', 1, 222, 226000, 5095, 11, 4, 332, 0, 0),
(9, 0, 0, 0, 0, 0, 'Seagull Walk 2', 1, 50, 53000, 2765, 10, 3, 132, 0, 0),
(10, 0, 0, 0, 0, 0, 'Dream Street 4', 1, 68, 72000, 3765, 12, 4, 168, 0, 0),
(11, 0, 0, 0, 0, 0, 'Elm Street 2', 1, 51, 53000, 2665, 7, 2, 112, 0, 0),
(12, 0, 0, 0, 0, 0, 'Elm Street 1', 1, 53, 55000, 2710, 6, 2, 120, 0, 0),
(13, 0, 0, 0, 0, 0, 'Elm Street 3', 1, 52, 55000, 2855, 6, 3, 126, 0, 0),
(14, 0, 0, 0, 0, 0, 'Elm Street 4', 1, 51, 53000, 3765, 6, 2, 120, 0, 0),
(15, 0, 0, 0, 0, 0, 'Dream Street 3', 1, 53, 55000, 2710, 8, 2, 117, 0, 0),
(16, 0, 0, 0, 0, 0, 'Dream Street 2', 1, 67, 69000, 3340, 8, 2, 147, 0, 0),
(17, 0, 0, 0, 0, 0, '', 0, 91, 860000, 0, 9, 8, 172, 0, 0),
(18, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 13', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(19, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 12', 1, 8, 10000, 685, 2, 2, 25, 0, 0),
(21, 0, 0, 0, 0, 0, '', 0, 36, 255000, 0, 2, 2, 51, 0, 0),
(23, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 14', 1, 10, 11000, 585, 2, 1, 24, 0, 0),
(24, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 15', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(25, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 16', 1, 10, 11000, 585, 2, 1, 29, 0, 0),
(26, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 17', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(27, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 18', 1, 4, 5000, 315, 2, 1, 20, 0, 0),
(28, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 01', 1, 6, 7000, 405, 2, 1, 24, 0, 0),
(29, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 02', 1, 7, 8000, 450, 1, 1, 25, 0, 0),
(30, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 03', 1, 6, 7000, 405, 1, 1, 20, 0, 0),
(31, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 04', 1, 8, 9000, 450, 2, 1, 25, 0, 0),
(32, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 05', 1, 4, 5000, 315, 1, 1, 15, 0, 0),
(33, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 06', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(34, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 07', 1, 8, 10000, 685, 1, 2, 23, 0, 0),
(35, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 21', 1, 5, 6000, 315, 2, 1, 20, 0, 0),
(36, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 22', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(37, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 23', 1, 10, 11000, 585, 2, 1, 30, 0, 0),
(38, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 24', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(39, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 26', 1, 7, 8000, 450, 2, 1, 20, 0, 0),
(40, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 28', 1, 4, 5000, 315, 1, 1, 15, 0, 0),
(41, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 27', 1, 8, 10000, 685, 2, 2, 25, 0, 0),
(42, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 25', 1, 10, 11000, 585, 1, 1, 20, 0, 0),
(43, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 31', 1, 16, 17000, 855, 2, 1, 40, 0, 0),
(44, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 32', 1, 18, 20000, 1135, 4, 2, 50, 0, 0),
(45, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 33', 1, 14, 15000, 765, 4, 1, 32, 0, 0),
(46, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 34', 1, 30, 32000, 1675, 4, 2, 60, 0, 0),
(47, 0, 0, 0, 0, 0, 'Salvation Street 1 (Shop)', 1, 119, 123000, 6240, 15, 4, 249, 0, 0),
(48, 0, 0, 0, 0, 0, 'Alfon Flat XI', 4, 10, 75000, 0, 1, 2, 15, 0, 0),
(49, 0, 0, 0, 0, 0, 'Dream Street 1 (Shop)', 1, 81, 83000, 4330, 13, 2, 192, 0, 0),
(50, 0, 0, 0, 0, 0, 'Blessed Shield Guildhall', 1, 126, 135000, 8090, 12, 9, 258, 0, 0),
(51, 0, 0, 0, 0, 0, 'Dagger Alley 1', 1, 52, 54000, 2665, 4, 2, 116, 0, 0),
(52, 0, 0, 0, 0, 0, 'Steel Home', 1, 219, 232000, 13845, 25, 13, 462, 0, 0),
(53, 0, 0, 0, 0, 0, 'Iron Alley 1', 1, 61, 65000, 3450, 6, 4, 120, 0, 0),
(54, 0, 0, 0, 0, 0, 'Iron Alley 2', 1, 64, 66000, 3450, 5, 2, 144, 0, 0),
(55, 0, 0, 0, 0, 0, 'Swamp Watch', 1, 179, 191000, 11090, 29, 12, 420, 0, 0),
(56, 0, 0, 0, 0, 0, 'Alfon House IV', 4, 32, 415000, 0, 1, 4, 83, 0, 0),
(57, 0, 0, 0, 0, 0, 'Salvation Street 2', 1, 76, 78000, 3790, 7, 2, 135, 0, 0),
(58, 0, 0, 0, 0, 0, 'Alfon House VI', 4, 38, 400000, 0, 2, 2, 80, 0, 0),
(59, 0, 0, 0, 0, 0, 'Alfon House VII', 4, 4, 60000, 0, 0, 2, 12, 0, 0),
(60, 0, 0, 0, 0, 0, 'Salvation Street 3', 1, 76, 78000, 3790, 7, 2, 162, 0, 0),
(61, 0, 0, 0, 0, 0, 'Silver Street 3', 1, 41, 42000, 1980, 5, 1, 84, 0, 0),
(62, 0, 0, 0, 0, 0, 'Golden Axe Guildhall', 1, 175, 185000, 10485, 27, 10, 390, 0, 0),
(63, 0, 0, 0, 0, 0, 'Silver Street 1', 1, 54, 55000, 2565, 7, 1, 129, 0, 0),
(64, 0, 0, 0, 0, 0, 'Silver Street 2', 1, 41, 42000, 1980, 4, 1, 105, 0, 0),
(65, 0, 0, 0, 0, 0, 'Mountain House I', 2, 62, 435000, 0, 2, 4, 87, 0, 0),
(66, 0, 0, 0, 0, 0, 'Silver Street 4', 1, 66, 68000, 3295, 8, 2, 153, 0, 0),
(67, 0, 0, 0, 0, 0, 'Mystic Lane 2', 1, 58, 60000, 2980, 7, 2, 137, 0, 0),
(68, 0, 0, 0, 0, 0, 'Mountain Flat C', 2, 30, 165000, 0, 1, 2, 33, 0, 0),
(69, 0, 0, 0, 0, 0, 'Mystic Lane 1', 1, 51, 54000, 2945, 8, 3, 112, 0, 0),
(70, 0, 0, 0, 0, 0, 'Loot Lane 1 (Shop)', 1, 88, 91000, 4565, 17, 3, 198, 0, 0),
(71, 0, 0, 0, 0, 0, 'Market Street 6', 1, 102, 107000, 5485, 15, 5, 217, 0, 0),
(72, 0, 0, 0, 0, 0, 'Market Street 7', 1, 44, 46000, 2305, 11, 2, 114, 0, 0),
(73, 0, 0, 0, 0, 0, 'Market Street 5 (Shop)', 1, 119, 122000, 6375, 11, 3, 243, 0, 0),
(74, 0, 0, 0, 0, 0, 'Venom Flat II', 5, 20, 110000, 0, 1, 0, 22, 0, 0),
(75, 0, 0, 0, 0, 0, 'Venom Flat III', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(76, 0, 0, 0, 0, 0, 'Venom Flat IV', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(77, 0, 0, 0, 0, 0, 'Venom Flat V', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(78, 0, 0, 0, 0, 0, 'Venom Flat VI', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(79, 0, 0, 0, 0, 0, 'Venom Flat VII', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(80, 0, 0, 0, 0, 0, 'Venom Flat VIII', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(81, 0, 0, 0, 0, 0, 'Venom Flat IX', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(82, 0, 0, 0, 0, 0, 'Venom Flat X', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(83, 0, 0, 0, 0, 0, 'Venom Flat XI', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(84, 0, 0, 0, 0, 0, 'Venom Flat XII', 5, 20, 105000, 0, 1, 0, 21, 0, 0),
(85, 0, 0, 0, 0, 0, 'Venom Castle', 5, 204, 1080000, 0, 1, 0, 216, 0, 0),
(86, 0, 0, 0, 0, 0, 'Venom House I', 5, 24, 125000, 0, 1, 0, 25, 0, 0),
(87, 0, 0, 0, 0, 0, 'Venom House II', 5, 70, 355000, 0, 1, 0, 71, 0, 0),
(88, 0, 0, 0, 0, 0, 'Venom House III', 5, 35, 180000, 0, 1, 0, 36, 0, 0),
(89, 0, 0, 0, 0, 0, 'Venom House IV', 5, 82, 420000, 0, 1, 0, 84, 0, 0),
(90, 0, 0, 0, 0, 0, 'Venom House V', 5, 42, 215000, 0, 1, 0, 43, 0, 0),
(91, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 3, 0, 0),
(92, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 3, 0, 0),
(93, 0, 0, 0, 0, 0, 'Infernium House II', 6, 36, 185000, 0, 0, 0, 37, 0, 0),
(94, 0, 0, 0, 0, 0, 'Infernium House III', 6, 52, 265000, 0, 0, 0, 53, 0, 0),
(95, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 6, 0, 0),
(96, 0, 0, 0, 0, 0, 'Infernium Flats I', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(97, 0, 0, 0, 0, 0, 'Infernium Flats II', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(98, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 4, 0, 0),
(99, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 4, 0, 0),
(100, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 4, 0, 0),
(101, 0, 0, 0, 0, 0, 'Forgotten headquarter (Flat 1, Area 42)', 0, 0, 0, 0, 0, 0, 2, 0, 0),
(102, 0, 0, 0, 0, 0, 'Infernium Flats VII', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(103, 0, 0, 0, 0, 0, 'Infernium Flats VIII', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(104, 0, 0, 0, 0, 0, 'Infernium Flats IX', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(105, 0, 0, 0, 0, 0, 'Infernium Flats X', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(106, 0, 0, 0, 0, 0, 'Infernium Flats XI', 6, 25, 130000, 0, 0, 0, 26, 0, 0),
(113, 0, 0, 0, 0, 0, '', 0, 36, 240000, 0, 1, 4, 48, 0, 0),
(114, 0, 0, 0, 0, 0, '', 0, 31, 180000, 0, 1, 4, 36, 0, 0),
(115, 0, 0, 0, 0, 0, '', 0, 55, 380000, 0, 5, 2, 76, 0, 0),
(116, 0, 0, 0, 0, 0, '', 0, 32, 185000, 0, 1, 4, 37, 0, 0),
(117, 0, 0, 0, 0, 0, '', 0, 32, 210000, 0, 1, 4, 42, 0, 0),
(118, 0, 0, 0, 0, 0, '', 0, 32, 220000, 0, 1, 4, 44, 0, 0),
(119, 0, 0, 0, 0, 0, '', 0, 50, 315000, 0, 1, 4, 63, 0, 0),
(120, 0, 0, 0, 0, 0, '', 0, 67, 425000, 0, 4, 2, 85, 0, 0),
(121, 0, 0, 0, 0, 0, '', 0, 44, 280000, 0, 1, 4, 56, 0, 0),
(122, 0, 0, 0, 0, 0, '', 0, 42, 280000, 0, 1, 6, 56, 0, 0),
(123, 0, 0, 0, 0, 0, '', 0, 48, 315000, 0, 1, 6, 63, 0, 0),
(124, 0, 0, 0, 0, 0, '', 0, 32, 210000, 0, 1, 4, 42, 0, 0),
(125, 0, 0, 0, 0, 0, '', 0, 32, 210000, 0, 1, 4, 42, 0, 0),
(126, 0, 0, 0, 0, 0, '', 0, 32, 210000, 0, 1, 4, 42, 0, 0),
(127, 0, 0, 0, 0, 0, '', 0, 31, 210000, 0, 1, 4, 42, 0, 0),
(128, 0, 0, 0, 0, 0, '', 0, 34, 240000, 0, 1, 6, 48, 0, 0),
(129, 0, 0, 0, 0, 0, '', 0, 66, 480000, 0, 2, 4, 96, 0, 0),
(130, 0, 0, 0, 0, 0, '', 0, 31, 215000, 0, 2, 4, 43, 0, 0),
(131, 0, 0, 0, 0, 0, '', 0, 17, 145000, 0, 1, 2, 29, 0, 0),
(132, 0, 0, 0, 0, 0, '', 0, 51, 400000, 0, 1, 4, 80, 0, 0),
(133, 0, 0, 0, 0, 0, '', 0, 14, 125000, 0, 1, 2, 25, 0, 0),
(134, 0, 0, 0, 0, 0, '', 0, 17, 115000, 0, 1, 2, 23, 0, 0),
(135, 0, 0, 0, 0, 0, '', 0, 51, 400000, 0, 1, 4, 80, 0, 0),
(136, 0, 0, 0, 0, 0, '', 0, 14, 95000, 0, 1, 2, 19, 0, 0),
(137, 0, 0, 0, 0, 0, '', 0, 14, 115000, 0, 1, 2, 23, 0, 0),
(138, 0, 0, 0, 0, 0, '', 0, 14, 100000, 0, 1, 2, 20, 0, 0),
(139, 0, 0, 0, 0, 0, '', 0, 26, 180000, 0, 1, 4, 36, 0, 0),
(140, 0, 0, 0, 0, 0, '', 0, 14, 105000, 0, 1, 2, 21, 0, 0),
(141, 0, 0, 0, 0, 0, '', 0, 14, 85000, 0, 1, 2, 17, 0, 0),
(142, 0, 0, 0, 0, 0, '', 0, 30, 180000, 0, 1, 2, 36, 0, 0),
(143, 0, 0, 0, 0, 0, '', 0, 30, 180000, 0, 1, 2, 36, 0, 0),
(144, 0, 0, 0, 0, 0, '', 0, 56, 330000, 0, 1, 4, 66, 0, 0),
(145, 0, 0, 0, 0, 0, '', 0, 30, 175000, 0, 1, 2, 35, 0, 0),
(146, 0, 0, 0, 0, 0, '', 0, 30, 190000, 0, 2, 2, 38, 0, 0),
(147, 0, 0, 0, 0, 0, '', 0, 44, 245000, 0, 1, 4, 49, 0, 0),
(148, 0, 0, 0, 0, 0, '', 0, 42, 230000, 0, 2, 2, 46, 0, 0),
(149, 0, 0, 0, 0, 0, '', 0, 42, 230000, 0, 2, 2, 46, 0, 0),
(150, 0, 0, 0, 0, 0, '', 0, 26, 155000, 0, 1, 4, 31, 0, 0),
(151, 0, 0, 0, 0, 0, '', 0, 20, 135000, 0, 1, 4, 27, 0, 0),
(152, 0, 0, 0, 0, 0, '', 0, 14, 120000, 0, 1, 4, 24, 0, 0),
(153, 0, 0, 0, 0, 0, '', 0, 20, 150000, 0, 1, 4, 30, 0, 0),
(154, 0, 0, 0, 0, 0, '', 0, 20, 150000, 0, 1, 4, 30, 0, 0),
(155, 0, 0, 0, 0, 0, '', 0, 38, 290000, 0, 2, 4, 58, 0, 0),
(156, 0, 0, 0, 0, 0, '', 0, 78, 445000, 0, 3, 4, 89, 0, 0),
(157, 0, 0, 0, 0, 0, '', 0, 94, 800000, 0, 6, 4, 160, 0, 0),
(158, 0, 0, 0, 0, 0, '', 0, 47, 275000, 0, 1, 3, 55, 0, 0),
(159, 0, 0, 0, 0, 0, '', 0, 33, 305000, 0, 4, 2, 61, 0, 0),
(160, 0, 0, 0, 0, 0, '', 0, 72, 575000, 0, 1, 3, 115, 0, 0),
(161, 0, 0, 0, 0, 0, '', 0, 64, 435000, 0, 1, 4, 87, 0, 0),
(162, 0, 0, 0, 0, 0, '', 0, 66, 420000, 0, 3, 2, 84, 0, 0),
(163, 0, 0, 0, 0, 0, '', 0, 39, 265000, 0, 2, 4, 53, 0, 0),
(164, 0, 0, 0, 0, 0, '', 0, 39, 285000, 0, 2, 4, 57, 0, 0),
(165, 0, 0, 0, 0, 0, '', 0, 38, 280000, 0, 2, 4, 56, 0, 0),
(166, 0, 0, 0, 0, 0, '', 0, 50, 325000, 0, 3, 4, 65, 0, 0),
(167, 0, 0, 0, 0, 0, '', 0, 50, 325000, 0, 3, 4, 65, 0, 0),
(168, 0, 0, 0, 0, 0, '', 0, 50, 335000, 0, 3, 4, 67, 0, 0),
(169, 0, 0, 0, 0, 0, '', 0, 16, 95000, 0, 1, 2, 19, 0, 0),
(170, 0, 0, 0, 0, 0, '', 0, 16, 100000, 0, 1, 2, 20, 0, 0),
(171, 0, 0, 0, 0, 0, '', 0, 16, 95000, 0, 1, 2, 19, 0, 0),
(172, 0, 0, 0, 0, 0, '', 0, 16, 95000, 0, 1, 2, 19, 0, 0),
(173, 0, 0, 0, 0, 0, '', 0, 48, 335000, 0, 3, 6, 67, 0, 0),
(174, 0, 0, 0, 0, 0, '', 0, 48, 325000, 0, 3, 6, 65, 0, 0),
(175, 0, 0, 0, 0, 0, '', 0, 51, 455000, 0, 1, 4, 91, 0, 0),
(176, 0, 0, 0, 0, 0, '', 0, 49, 270000, 0, 1, 0, 54, 0, 0),
(177, 0, 0, 0, 0, 0, '', 0, 52, 285000, 0, 1, 0, 57, 0, 0),
(178, 0, 0, 0, 0, 0, '', 0, 13, 100000, 0, 1, 2, 20, 0, 0),
(179, 0, 0, 0, 0, 0, '', 0, 17, 140000, 0, 1, 4, 28, 0, 0),
(180, 0, 0, 0, 0, 0, '', 0, 18, 120000, 0, 2, 2, 24, 0, 0),
(181, 0, 0, 0, 0, 0, '', 0, 14, 85000, 0, 1, 2, 17, 0, 0),
(182, 0, 0, 0, 0, 0, '', 0, 12, 135000, 0, 1, 2, 27, 0, 0),
(183, 0, 0, 0, 0, 0, '', 0, 16, 140000, 0, 1, 4, 28, 0, 0),
(184, 0, 0, 0, 0, 0, '', 0, 54, 340000, 0, 4, 2, 68, 0, 0),
(185, 0, 0, 0, 0, 0, '', 0, 61, 370000, 0, 3, 2, 74, 0, 0),
(186, 0, 0, 0, 0, 0, '', 0, 29, 275000, 0, 6, 2, 55, 0, 0),
(187, 0, 0, 0, 0, 0, '', 0, 36, 350000, 0, 3, 4, 70, 0, 0),
(188, 0, 0, 0, 0, 0, '', 0, 65, 510000, 0, 1, 4, 102, 0, 0),
(189, 0, 0, 0, 0, 0, '', 0, 66, 550000, 0, 3, 2, 110, 0, 0),
(190, 0, 0, 0, 0, 0, '', 0, 64, 555000, 0, 5, 4, 111, 0, 0),
(191, 0, 0, 0, 0, 0, '', 0, 4, 40000, 0, 1, 2, 8, 0, 0),
(192, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(193, 0, 0, 0, 0, 0, '', 0, 8, 55000, 0, 1, 2, 11, 0, 0),
(194, 0, 0, 0, 0, 0, 'Lucky Lane 1 (Shop)', 1, 132, 136000, 6960, 14, 4, 270, 0, 0),
(195, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(196, 0, 0, 0, 0, 0, '', 0, 4, 40000, 0, 1, 2, 8, 0, 0),
(197, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(198, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(199, 0, 0, 0, 0, 0, '', 0, 16, 165000, 0, 1, 2, 33, 0, 0),
(200, 0, 0, 0, 0, 0, '', 0, 8, 85000, 0, 1, 2, 17, 0, 0),
(201, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(202, 0, 0, 0, 0, 0, '', 0, 6, 45000, 0, 1, 2, 9, 0, 0),
(203, 0, 0, 0, 0, 0, '', 0, 8, 55000, 0, 1, 2, 11, 0, 0),
(204, 0, 0, 0, 0, 0, '', 0, 67, 555000, 0, 2, 2, 111, 0, 0),
(205, 0, 0, 0, 0, 0, '', 0, 67, 510000, 0, 3, 2, 102, 0, 0),
(206, 0, 0, 0, 0, 0, '', 0, 67, 535000, 0, 2, 2, 107, 0, 0),
(207, 0, 0, 0, 0, 0, '', 0, 87, 630000, 0, 6, 2, 126, 0, 0),
(208, 0, 0, 0, 0, 0, 'Underwood 1', 5, 26, 28000, 1495, 3, 2, 54, 0, 0),
(209, 0, 0, 0, 0, 0, 'Underwood 2', 5, 27, 29000, 1495, 4, 2, 55, 0, 0),
(210, 0, 0, 0, 0, 0, 'Underwood 5', 5, 19, 22000, 1370, 3, 3, 48, 0, 0),
(211, 0, 0, 0, 0, 0, 'Underwood 3', 5, 26, 29000, 1685, 3, 3, 57, 0, 0),
(212, 0, 0, 0, 0, 0, 'Underwood 4', 5, 35, 39000, 2235, 3, 4, 70, 0, 0),
(213, 0, 0, 0, 0, 0, 'Underwood 10', 5, 10, 11000, 585, 2, 1, 23, 0, 0),
(214, 0, 0, 0, 0, 0, 'Underwood 6', 5, 24, 27000, 1595, 3, 3, 55, 0, 0),
(215, 0, 0, 0, 0, 0, 'Great Willow 1a', 5, 7, 8000, 500, 1, 1, 25, 0, 0),
(216, 0, 0, 0, 0, 0, 'Great Willow 1b', 5, 10, 11000, 650, 1, 1, 30, 0, 0),
(217, 0, 0, 0, 0, 0, 'Great Willow 1c', 5, 10, 11000, 650, 1, 1, 20, 0, 0),
(218, 0, 0, 0, 0, 0, 'Great Willow 2d', 5, 6, 7000, 450, 2, 1, 18, 0, 0),
(219, 0, 0, 0, 0, 0, 'Great Willow 2c', 5, 10, 11000, 650, 1, 1, 24, 0, 0),
(220, 0, 0, 0, 0, 0, 'Great Willow 2b', 5, 6, 7000, 450, 3, 1, 24, 0, 0),
(221, 0, 0, 0, 0, 0, 'Great Willow 2a', 5, 11, 12000, 650, 3, 1, 30, 0, 0),
(222, 0, 0, 0, 0, 0, 'Great Willow 3d', 5, 6, 7000, 450, 2, 1, 18, 0, 0),
(223, 0, 0, 0, 0, 0, 'Great Willow 3c', 5, 10, 11000, 650, 1, 1, 24, 0, 0),
(224, 0, 0, 0, 0, 0, 'Great Willow 3b', 5, 6, 7000, 450, 3, 1, 24, 0, 0),
(225, 0, 0, 0, 0, 0, 'Great Willow 3a', 5, 10, 11000, 650, 2, 1, 30, 0, 0),
(226, 0, 0, 0, 0, 0, 'Great Willow 4b', 5, 12, 14000, 950, 2, 2, 27, 0, 0),
(227, 0, 0, 0, 0, 0, 'Great Willow 4c', 5, 12, 14000, 950, 2, 2, 31, 0, 0),
(228, 0, 0, 0, 0, 0, 'Great Willow 4d', 5, 12, 13000, 750, 3, 1, 36, 0, 0),
(229, 0, 0, 0, 0, 0, 'Great Willow 4a', 5, 12, 14000, 950, 3, 2, 36, 0, 0),
(230, 0, 0, 0, 0, 0, 'Underwood 7', 5, 21, 24000, 1460, 3, 3, 49, 0, 0),
(231, 0, 0, 0, 0, 0, 'Shadow Caves 3', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(232, 0, 0, 0, 0, 0, 'Shadow Caves 4', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(233, 0, 0, 0, 0, 0, 'Shadow Caves 2', 5, 7, 8000, 300, 1, 1, 16, 0, 0),
(234, 0, 0, 0, 0, 0, 'Shadow Caves 1', 5, 7, 8000, 300, 1, 1, 19, 0, 0),
(235, 0, 0, 0, 0, 0, 'Shadow Caves 17', 5, 7, 8000, 300, 1, 1, 25, 0, 0),
(236, 0, 0, 0, 0, 0, 'Shadow Caves 18', 5, 7, 8000, 300, 1, 1, 25, 0, 0),
(237, 0, 0, 0, 0, 0, 'Shadow Caves 15', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(238, 0, 0, 0, 0, 0, 'Shadow Caves 16', 5, 7, 8000, 300, 1, 1, 19, 0, 0),
(239, 0, 0, 0, 0, 0, 'Shadow Caves 13', 5, 7, 8000, 300, 1, 1, 19, 0, 0),
(240, 0, 0, 0, 0, 0, 'Shadow Caves 14', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(241, 0, 0, 0, 0, 0, 'Shadow Caves 11', 5, 7, 8000, 300, 1, 1, 19, 0, 0),
(242, 0, 0, 0, 0, 0, 'Shadow Caves 12', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(243, 0, 0, 0, 0, 0, 'Shadow Caves 27', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(244, 0, 0, 0, 0, 0, 'Shadow Caves 28', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(245, 0, 0, 0, 0, 0, 'Shadow Caves 25', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(246, 0, 0, 0, 0, 0, 'Shadow Caves 26', 5, 7, 8000, 300, 1, 1, 16, 0, 0),
(247, 0, 0, 0, 0, 0, 'Shadow Caves 23', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(248, 0, 0, 0, 0, 0, 'Shadow Caves 24', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(249, 0, 0, 0, 0, 0, 'Shadow Caves 21', 5, 7, 8000, 300, 1, 1, 19, 0, 0),
(250, 0, 0, 0, 0, 0, 'Shadow Caves 22', 5, 7, 8000, 300, 1, 1, 20, 0, 0),
(251, 0, 0, 0, 0, 0, 'Underwood 9', 5, 10, 11000, 585, 1, 1, 28, 0, 0),
(252, 0, 0, 0, 0, 0, 'Treetop 13', 5, 21, 23000, 1400, 3, 2, 48, 0, 0),
(254, 0, 0, 0, 0, 0, 'Underwood 8', 5, 13, 15000, 865, 3, 2, 34, 0, 0),
(255, 0, 0, 0, 0, 0, 'Mangrove 4', 5, 13, 15000, 950, 2, 2, 36, 0, 0),
(256, 0, 0, 0, 0, 0, 'Coastwood 10', 5, 19, 22000, 1630, 3, 3, 48, 0, 0),
(257, 0, 0, 0, 0, 0, 'Mangrove 1', 5, 24, 27000, 1750, 2, 3, 54, 0, 0),
(258, 0, 0, 0, 0, 0, 'Coastwood 1', 5, 11, 13000, 980, 3, 2, 34, 0, 0),
(259, 0, 0, 0, 0, 0, 'Coastwood 2', 5, 11, 13000, 980, 2, 2, 28, 0, 0),
(260, 0, 0, 0, 0, 0, 'Mangrove 2', 5, 20, 22000, 1350, 1, 2, 54, 0, 0),
(262, 0, 0, 0, 0, 0, 'Mangrove 3', 5, 16, 18000, 1150, 2, 2, 41, 0, 0),
(263, 0, 0, 0, 0, 0, 'Coastwood 9', 5, 14, 15000, 935, 3, 1, 34, 0, 0),
(264, 0, 0, 0, 0, 0, 'Coastwood 8', 5, 17, 19000, 1255, 4, 2, 41, 0, 0),
(265, 0, 0, 0, 0, 0, 'Coastwood 6 (Shop)', 5, 36, 37000, 1595, 7, 1, 64, 0, 0),
(266, 0, 0, 0, 0, 0, 'Coastwood 7', 5, 21, 22000, 660, 4, 1, 42, 0, 0),
(267, 0, 0, 0, 0, 0, 'Coastwood 5', 5, 34, 36000, 1530, 5, 2, 62, 0, 0),
(268, 0, 0, 0, 0, 0, 'Coastwood 4', 5, 14, 16000, 1145, 3, 2, 42, 0, 0),
(269, 0, 0, 0, 0, 0, 'Coastwood 3', 5, 17, 19000, 1310, 3, 2, 36, 0, 0),
(270, 0, 0, 0, 0, 0, 'Treetop 11', 5, 11, 13000, 900, 3, 2, 34, 0, 0),
(271, 0, 0, 0, 0, 0, 'Treetop 5 (Shop)', 5, 34, 35000, 1350, 6, 1, 70, 0, 0),
(272, 0, 0, 0, 0, 0, 'Treetop 7', 5, 27, 28000, 800, 3, 1, 41, 0, 0),
(273, 0, 0, 0, 0, 0, 'Treetop 6', 5, 23, 24000, 450, 4, 1, 40, 0, 0),
(274, 0, 0, 0, 0, 0, 'Treetop 8', 5, 27, 28000, 800, 4, 1, 48, 0, 0),
(275, 0, 0, 0, 0, 0, 'Treetop 9', 5, 16, 18000, 1150, 2, 2, 34, 0, 0),
(276, 0, 0, 0, 0, 0, 'Treetop 10', 5, 16, 18000, 1150, 3, 2, 42, 0, 0),
(277, 0, 0, 0, 0, 0, 'Treetop 4 (Shop)', 5, 20, 21000, 1250, 4, 1, 48, 0, 0),
(278, 0, 0, 0, 0, 0, 'Treetop 3 (Shop)', 5, 20, 21000, 1250, 6, 1, 60, 0, 0),
(279, 0, 0, 0, 0, 0, 'Treetop 2', 5, 10, 11000, 650, 2, 1, 29, 0, 0),
(280, 0, 0, 0, 0, 0, 'Treetop 1', 5, 10, 11000, 650, 2, 1, 24, 0, 0),
(281, 0, 0, 0, 0, 0, 'Treetop 12 (Shop)', 5, 20, 21000, 1350, 6, 1, 53, 0, 0),
(316, 0, 0, 0, 0, 0, '', 0, 53, 685000, 0, 0, 0, 137, 0, 0),
(317, 0, 0, 0, 0, 0, '', 0, 33, 290000, 0, 6, 4, 58, 0, 0),
(318, 0, 0, 0, 0, 0, '', 0, 48, 430000, 0, 3, 2, 86, 0, 0),
(319, 0, 0, 0, 0, 0, '', 0, 35, 320000, 0, 3, 2, 64, 0, 0),
(320, 0, 0, 0, 0, 0, '', 0, 43, 395000, 0, 5, 2, 79, 0, 0),
(321, 0, 0, 0, 0, 0, '', 0, 33, 370000, 0, 5, 2, 74, 0, 0),
(322, 0, 0, 0, 0, 0, '', 0, 51, 405000, 0, 3, 4, 81, 0, 0),
(323, 0, 0, 0, 0, 0, '', 0, 62, 605000, 0, 8, 4, 121, 0, 0),
(324, 0, 0, 0, 0, 0, '', 0, 75, 625000, 0, 8, 6, 125, 0, 0),
(325, 0, 0, 0, 0, 0, '', 0, 77, 730000, 0, 14, 8, 146, 0, 0),
(326, 0, 0, 0, 0, 0, '', 0, 26, 310000, 0, 5, 2, 62, 0, 0),
(327, 0, 0, 0, 0, 0, '', 0, 30, 270000, 0, 1, 2, 54, 0, 0),
(328, 0, 0, 0, 0, 0, '', 0, 66, 640000, 0, 3, 4, 128, 0, 0),
(329, 0, 0, 0, 0, 0, '', 0, 37, 345000, 0, 5, 2, 69, 0, 0),
(330, 0, 0, 0, 0, 0, '', 0, 38, 315000, 0, 3, 2, 63, 0, 0),
(331, 0, 0, 0, 0, 0, '', 0, 32, 300000, 0, 4, 2, 60, 0, 0),
(332, 0, 0, 0, 0, 0, '', 0, 40, 415000, 0, 4, 4, 83, 0, 0),
(336, 0, 0, 0, 0, 0, '', 0, 53, 485000, 0, 5, 4, 97, 0, 0),
(452, 0, 0, 0, 0, 0, 'Gengia House 1', 0, 10, 11000, 0, 0, 1, 15, 0, 0),
(453, 0, 0, 0, 0, 0, 'Gengia House 2', 0, 13, 14000, 0, 0, 1, 19, 0, 0),
(454, 0, 0, 0, 0, 0, 'Gengia House 4', 0, 10, 11000, 0, 0, 1, 15, 0, 0),
(455, 0, 0, 0, 0, 0, 'Gengia House 5', 0, 8, 9000, 0, 0, 1, 10, 0, 0),
(456, 0, 0, 0, 0, 0, 'Gengia House 6', 0, 8, 9000, 0, 0, 1, 10, 0, 0),
(457, 0, 0, 0, 0, 0, 'Gengia House 7', 0, 30, 31000, 0, 1, 1, 34, 0, 0),
(458, 0, 0, 0, 0, 0, 'Gengia House 8', 0, 65, 70000, 0, 5, 5, 104, 0, 0),
(459, 0, 0, 0, 0, 0, 'Gengia House 9', 0, 16, 16000, 0, 1, 0, 31, 0, 0),
(460, 0, 0, 0, 0, 0, 'Gengia House 10', 0, 33, 35000, 0, 1, 2, 48, 0, 0),
(461, 0, 0, 0, 0, 0, 'Gengia House 11', 0, 52, 56000, 0, 3, 4, 71, 0, 0),
(462, 0, 0, 0, 0, 0, 'Gengia House 12', 0, 48, 52000, 0, 3, 4, 69, 0, 0),
(463, 0, 0, 0, 0, 0, 'Gengia House 13', 0, 45, 49000, 0, 2, 4, 61, 0, 0),
(464, 0, 0, 0, 0, 0, 'Gengia House 14', 0, 42, 44000, 0, 2, 2, 51, 0, 0),
(465, 0, 0, 0, 0, 0, 'Gengia House 15', 0, 17, 19000, 0, 0, 2, 23, 0, 0),
(466, 0, 0, 0, 0, 0, 'Gengia House 16', 0, 21, 23000, 0, 1, 2, 31, 0, 0),
(467, 0, 0, 0, 0, 0, 'Gengia House 17', 0, 16, 18000, 0, 0, 2, 22, 0, 0),
(468, 0, 0, 0, 0, 0, 'Gengia House 18', 0, 43, 45000, 0, 2, 2, 54, 0, 0),
(469, 0, 0, 0, 0, 0, 'Darashia 2, Flat 07', 10, 66, 69000, 1000, 1, 3, 97, 0, 0),
(470, 0, 0, 0, 0, 0, 'Darashia 2, Flat 01', 10, 39, 41000, 1000, 1, 2, 67, 0, 0),
(471, 0, 0, 0, 0, 0, 'Darashia 2, Flat 02', 10, 37, 39000, 1000, 1, 2, 59, 0, 0),
(472, 0, 0, 0, 0, 0, 'Darashia 2, Flat 06', 10, 103, 108000, 520, 3, 5, 144, 0, 0),
(473, 0, 0, 0, 0, 0, 'Darashia 2, Flat 05', 10, 37, 40000, 1260, 1, 3, 65, 0, 0),
(474, 0, 0, 0, 0, 0, 'Darashia 2, Flat 04', 10, 44, 47000, 520, 1, 3, 67, 0, 0),
(475, 0, 0, 0, 0, 0, 'Darashia 2, Flat 03', 10, 43, 45000, 1160, 1, 2, 65, 0, 0),
(476, 0, 0, 0, 0, 0, 'Darashia 2, Flat 13', 10, 49, 52000, 1160, 3, 3, 77, 0, 0),
(477, 0, 0, 0, 0, 0, 'Darashia 2, Flat 12', 10, 20, 22000, 520, 1, 2, 40, 0, 0),
(478, 0, 0, 0, 0, 0, 'Darashia 2, Flat 11', 10, 31, 33000, 1000, 1, 2, 53, 0, 0),
(479, 0, 0, 0, 0, 0, 'Darashia 2, Flat 14', 10, 114, 123000, 520, 6, 9, 165, 0, 0),
(480, 0, 0, 0, 0, 0, 'Darashia 2, Flat 15', 10, 32, 35000, 1260, 1, 3, 58, 0, 0),
(481, 0, 0, 0, 0, 0, 'Darashia 2, Flat 16', 10, 15, 16000, 680, 1, 1, 30, 0, 0),
(482, 0, 0, 0, 0, 0, 'Darashia 2, Flat 17', 10, 34, 36000, 1000, 1, 2, 63, 0, 0),
(483, 0, 0, 0, 0, 0, 'Darashia 2, Flat 18', 10, 24, 26000, 680, 1, 2, 42, 0, 0),
(484, 0, 0, 0, 0, 0, 'Darashia 1, Flat 05', 10, 36, 39000, 1100, 1, 3, 69, 0, 0),
(485, 0, 0, 0, 0, 0, 'Darashia 1, Flat 01', 10, 40, 43000, 1100, 1, 3, 72, 0, 0),
(486, 0, 0, 0, 0, 0, 'Darashia 1, Flat 04', 10, 48, 50000, 1000, 1, 2, 72, 0, 0),
(487, 0, 0, 0, 0, 0, 'Darashia 1, Flat 03', 10, 60, 65000, 2660, 3, 5, 111, 0, 0),
(488, 0, 0, 0, 0, 0, 'Darashia 1, Flat 02', 10, 45, 48000, 1000, 1, 3, 70, 0, 0),
(489, 0, 0, 0, 0, 0, '', 0, 19, 19000, 0, 0, 0, 21, 0, 0),
(490, 0, 0, 0, 0, 0, 'Darashia 1, Flat 12', 10, 52, 55000, 1780, 2, 3, 85, 0, 0),
(491, 0, 0, 0, 0, 0, 'Darashia 1, Flat 11', 10, 34, 37000, 1100, 1, 3, 58, 0, 0),
(492, 0, 0, 0, 0, 0, 'Darashia 1, Flat 13', 10, 49, 52000, 1780, 2, 3, 86, 0, 0),
(493, 0, 0, 0, 0, 0, 'Darashia 1, Flat 14', 10, 57, 63000, 2760, 3, 6, 119, 0, 0),
(494, 0, 0, 0, 0, 0, 'Darashia 4, Flat 01', 10, 86, 90000, 1000, 4, 4, 146, 0, 0),
(495, 0, 0, 0, 0, 0, 'Darashia 4, Flat 05', 10, 28, 31000, 1100, 2, 3, 60, 0, 0),
(496, 0, 0, 0, 0, 0, 'Darashia 4, Flat 04', 10, 62, 64000, 1780, 2, 2, 99, 0, 0),
(497, 0, 0, 0, 0, 0, 'Darashia 4, Flat 03', 10, 42, 45000, 1000, 1, 3, 69, 0, 0),
(498, 0, 0, 0, 0, 0, 'Darashia 4, Flat 02', 10, 48, 51000, 1780, 2, 3, 81, 0, 0),
(499, 0, 0, 0, 0, 0, 'Darashia 4, Flat 13', 10, 37, 39000, 1780, 2, 2, 78, 0, 0),
(500, 0, 0, 0, 0, 0, 'Darashia 4, Flat 14', 10, 37, 39000, 1780, 2, 2, 72, 0, 0),
(501, 0, 0, 0, 0, 0, 'Darashia 4, Flat 11', 10, 22, 23000, 1000, 1, 1, 41, 0, 0),
(502, 0, 0, 0, 0, 0, 'Darashia 4, Flat 12', 10, 52, 55000, 2560, 3, 3, 96, 0, 0),
(503, 0, 0, 0, 0, 0, 'Darashia 7, Flat 05', 10, 20, 22000, 1225, 1, 2, 35, 0, 0),
(504, 0, 0, 0, 0, 0, 'Darashia 7, Flat 01', 10, 22, 23000, 1125, 1, 1, 40, 0, 0),
(505, 0, 0, 0, 0, 0, 'Darashia 7, Flat 02', 10, 22, 23000, 1125, 1, 1, 41, 0, 0),
(506, 0, 0, 0, 0, 0, 'Darashia 7, Flat 03', 10, 50, 54000, 2955, 3, 4, 102, 0, 0),
(507, 0, 0, 0, 0, 0, 'Darashia 7, Flat 04', 10, 23, 24000, 1125, 1, 1, 35, 0, 0),
(508, 0, 0, 0, 0, 0, 'Darashia 7, Flat 14', 10, 48, 52000, 2955, 3, 4, 108, 0, 0),
(509, 0, 0, 0, 0, 0, 'Darashia 7, Flat 13', 10, 22, 23000, 1125, 1, 1, 42, 0, 0),
(510, 0, 0, 0, 0, 0, 'Darashia 7, Flat 11', 10, 22, 23000, 1125, 1, 1, 41, 0, 0),
(511, 0, 0, 0, 0, 0, 'Darashia 7, Flat 12', 10, 49, 53000, 2955, 3, 4, 95, 0, 0),
(512, 0, 0, 0, 0, 0, 'Darashia 5, Flat 01', 10, 22, 23000, 1000, 1, 1, 48, 0, 0),
(513, 0, 0, 0, 0, 0, 'Darashia 5, Flat 05', 10, 22, 23000, 1000, 1, 1, 48, 0, 0),
(514, 0, 0, 0, 0, 0, 'Darashia 5, Flat 02', 10, 32, 34000, 1620, 2, 2, 61, 0, 0),
(515, 0, 0, 0, 0, 0, 'Darashia 5, Flat 03', 10, 22, 23000, 1000, 1, 1, 41, 0, 0),
(516, 0, 0, 0, 0, 0, 'Darashia 5, Flat 04', 10, 32, 34000, 1620, 2, 2, 66, 0, 0),
(517, 0, 0, 0, 0, 0, 'Darashia 5, Flat 11', 10, 37, 39000, 1780, 2, 2, 66, 0, 0),
(518, 0, 0, 0, 0, 0, 'Darashia 5, Flat 12', 10, 34, 36000, 1620, 2, 2, 65, 0, 0),
(519, 0, 0, 0, 0, 0, 'Darashia 5, Flat 13', 10, 37, 39000, 1780, 2, 2, 78, 0, 0),
(520, 0, 0, 0, 0, 0, 'Darashia 5, Flat 14', 10, 33, 35000, 1620, 2, 2, 66, 0, 0),
(521, 0, 0, 0, 0, 0, 'Darashia 6a', 10, 62, 64000, 3115, 3, 2, 117, 0, 0),
(522, 0, 0, 0, 0, 0, 'Darashia 6b', 10, 69, 71000, 3430, 2, 2, 139, 0, 0),
(523, 0, 0, 0, 0, 0, 'Darashia, Villa', 10, 90, 92000, 5385, 11, 2, 207, 0, 0),
(525, 0, 0, 0, 0, 0, 'Darashia, Western Guildhall', 10, 154, 168000, 10435, 16, 14, 376, 0, 0),
(526, 0, 0, 0, 0, 0, 'Darashia 3, Flat 01', 10, 22, 23000, 1100, 1, 1, 40, 0, 0),
(527, 0, 0, 0, 0, 0, 'Darashia 3, Flat 05', 10, 22, 23000, 1000, 1, 1, 40, 0, 0),
(529, 0, 0, 0, 0, 0, 'Darashia 3, Flat 02', 10, 32, 34000, 1620, 2, 2, 65, 0, 0),
(530, 0, 0, 0, 0, 0, 'Darashia 3, Flat 03', 10, 20, 22000, 1100, 1, 2, 42, 0, 0),
(531, 0, 0, 0, 0, 0, 'Darashia 3, Flat 04', 10, 35, 36000, 1620, 2, 1, 72, 0, 0),
(532, 0, 0, 0, 0, 0, 'Darashia 3, Flat 13', 10, 20, 22000, 1100, 1, 2, 42, 0, 0),
(533, 0, 0, 0, 0, 0, 'Darashia 3, Flat 14', 10, 46, 49000, 2400, 3, 3, 102, 0, 0),
(534, 0, 0, 0, 0, 0, 'Darashia 3, Flat 11', 10, 22, 23000, 1000, 1, 1, 41, 0, 0),
(535, 0, 0, 0, 0, 0, 'Darashia 3, Flat 12', 10, 42, 47000, 2600, 3, 5, 90, 0, 0),
(541, 0, 0, 0, 0, 0, 'Darashia 8, Flat 11', 10, 37, 39000, 1990, 2, 2, 66, 0, 0),
(542, 0, 0, 0, 0, 0, 'Darashia 8, Flat 12', 10, 32, 34000, 1810, 2, 2, 65, 0, 0),
(544, 0, 0, 0, 0, 0, 'Darashia 8, Flat 14', 10, 0, 0, 1810, 0, 0, 10, 0, 0),
(545, 0, 0, 0, 0, 0, 'Darashia 8, Flat 13', 10, 36, 38000, 1990, 2, 2, 78, 0, 0),
(574, 0, 0, 0, 0, 0, 'Oskahl I j', 9, 14, 15000, 680, 1, 1, 25, 0, 0),
(575, 0, 0, 0, 0, 0, 'Oskahl I f', 9, 18, 19000, 840, 1, 1, 34, 0, 0),
(576, 0, 0, 0, 0, 0, 'Oskahl I i', 9, 18, 19000, 840, 1, 1, 30, 0, 0),
(577, 0, 0, 0, 0, 0, 'Oskahl I g', 9, 21, 23000, 1140, 1, 2, 42, 0, 0),
(578, 0, 0, 0, 0, 0, 'Oskahl I h', 9, 32, 35000, 1760, 3, 3, 63, 0, 0),
(579, 0, 0, 0, 0, 0, 'Oskahl I d', 9, 21, 23000, 1140, 1, 2, 36, 0, 0),
(580, 0, 0, 0, 0, 0, 'Oskahl I b', 9, 18, 19000, 840, 1, 1, 30, 0, 0),
(581, 0, 0, 0, 0, 0, 'Oskahl I c', 9, 14, 15000, 680, 1, 1, 29, 0, 0),
(582, 0, 0, 0, 0, 0, 'Oskahl I e', 9, 18, 19000, 840, 1, 1, 33, 0, 0),
(583, 0, 0, 0, 0, 0, 'Oskahl I a', 9, 32, 34000, 1580, 1, 2, 52, 0, 0),
(584, 0, 0, 0, 0, 0, 'Chameken I', 9, 17, 18000, 850, 1, 1, 33, 0, 0),
(585, 0, 0, 0, 0, 0, 'Charsirakh III', 9, 14, 15000, 680, 1, 1, 30, 0, 0),
(586, 0, 0, 0, 0, 0, 'Murkhol I d', 9, 8, 9000, 440, 1, 1, 21, 0, 0),
(587, 0, 0, 0, 0, 0, 'Murkhol I c', 9, 8, 9000, 440, 1, 1, 18, 0, 0),
(588, 0, 0, 0, 0, 0, 'Murkhol I b', 9, 8, 9000, 440, 1, 1, 18, 0, 0),
(589, 0, 0, 0, 0, 0, 'Murkhol I a', 9, 8, 9000, 440, 1, 1, 20, 0, 0),
(590, 0, 0, 0, 0, 0, 'Charsirakh II', 9, 21, 23000, 1140, 1, 2, 39, 0, 0),
(591, 0, 0, 0, 0, 0, 'Thanah II h', 9, 21, 23000, 1400, 2, 2, 40, 0, 0),
(592, 0, 0, 0, 0, 0, 'Thanah II g', 9, 26, 28000, 1650, 1, 2, 45, 0, 0),
(593, 0, 0, 0, 0, 0, 'Thanah II f', 9, 45, 48000, 2850, 3, 3, 80, 0, 0),
(594, 0, 0, 0, 0, 0, 'Thanah II b', 9, 7, 8000, 450, 1, 1, 20, 0, 0),
(595, 0, 0, 0, 0, 0, 'Thanah II c', 9, 6, 7000, 450, 1, 1, 15, 0, 0),
(596, 0, 0, 0, 0, 0, 'Thanah II d', 9, 4, 5000, 350, 1, 1, 16, 0, 0),
(597, 0, 0, 0, 0, 0, 'Thanah II e', 9, 4, 5000, 350, 1, 1, 12, 0, 0),
(599, 0, 0, 0, 0, 0, 'Thanah II a', 9, 22, 23000, 850, 1, 1, 37, 0, 0),
(600, 0, 0, 0, 0, 0, 'Thrarhor I c (Shop)', 9, 25, 27000, 1050, 2, 2, 57, 0, 0),
(601, 0, 0, 0, 0, 0, 'Thrarhor I d (Shop)', 9, 10, 11000, 1050, 1, 1, 21, 0, 0),
(602, 0, 0, 0, 0, 0, 'Thrarhor I a (Shop)', 9, 10, 11000, 1050, 1, 1, 32, 0, 0),
(603, 0, 0, 0, 0, 0, 'Thrarhor I b (Shop)', 9, 10, 11000, 1050, 1, 1, 24, 0, 0),
(604, 0, 0, 0, 0, 0, 'Thanah I c', 9, 51, 54000, 3250, 4, 3, 91, 0, 0),
(605, 0, 0, 0, 0, 0, 'Thanah I d', 9, 42, 46000, 2900, 4, 4, 80, 0, 0),
(606, 0, 0, 0, 0, 0, 'Thanah I b', 9, 50, 53000, 3000, 3, 3, 84, 0, 0),
(607, 0, 0, 0, 0, 0, 'Thanah I a', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(608, 0, 0, 0, 0, 0, 'Harrah I', 9, 96, 106000, 5740, 7, 10, 190, 0, 0),
(609, 0, 0, 0, 0, 0, 'Charsirakh I b', 9, 32, 34000, 1580, 1, 2, 51, 0, 0),
(610, 0, 0, 0, 0, 0, 'Charsirakh I a', 9, 4, 5000, 280, 1, 1, 15, 0, 0),
(611, 0, 0, 0, 0, 0, 'Othehothep I d', 9, 34, 38000, 2020, 3, 4, 68, 0, 0),
(612, 0, 0, 0, 0, 0, 'Othehothep I c', 9, 31, 34000, 1720, 2, 3, 58, 0, 0),
(613, 0, 0, 0, 0, 0, 'Othehothep I b', 9, 26, 28000, 1380, 2, 2, 49, 0, 0),
(614, 0, 0, 0, 0, 0, 'Othehothep I a', 9, 5, 6000, 280, 1, 1, 14, 0, 0),
(615, 0, 0, 0, 0, 0, 'Othehothep II e', 9, 26, 28000, 1340, 1, 2, 44, 0, 0),
(616, 0, 0, 0, 0, 0, 'Othehothep II f', 9, 27, 29000, 1340, 1, 2, 44, 0, 0),
(617, 0, 0, 0, 0, 0, 'Othehothep II d', 9, 18, 19000, 840, 1, 1, 32, 0, 0),
(618, 0, 0, 0, 0, 0, 'Othehothep II c', 9, 18, 19000, 840, 1, 1, 30, 0, 0),
(619, 0, 0, 0, 0, 0, 'Othehothep II b', 9, 36, 39000, 1920, 3, 3, 67, 0, 0),
(620, 0, 0, 0, 0, 0, 'Othehothep II a', 9, 8, 9000, 400, 1, 1, 18, 0, 0),
(621, 0, 0, 0, 0, 0, 'Mothrem I', 9, 21, 23000, 1140, 1, 2, 38, 0, 0),
(622, 0, 0, 0, 0, 0, 'Arakmehn I', 9, 21, 24000, 1320, 1, 3, 41, 0, 0),
(623, 0, 0, 0, 0, 0, 'Othehothep III d', 9, 23, 24000, 1040, 1, 1, 36, 0, 0),
(624, 0, 0, 0, 0, 0, 'Othehothep III c', 9, 16, 18000, 940, 1, 2, 30, 0, 0),
(625, 0, 0, 0, 0, 0, 'Othehothep III e', 9, 18, 19000, 840, 1, 1, 32, 0, 0),
(626, 0, 0, 0, 0, 0, 'Othehothep III f', 9, 14, 15000, 680, 1, 1, 27, 0, 0),
(627, 0, 0, 0, 0, 0, 'Othehothep III b', 9, 26, 28000, 1340, 3, 2, 49, 0, 0),
(628, 0, 0, 0, 0, 0, 'Othehothep III a', 9, 4, 5000, 280, 1, 1, 14, 0, 0),
(629, 0, 0, 0, 0, 0, 'Unklath I d', 9, 30, 33000, 1680, 1, 3, 49, 0, 0),
(630, 0, 0, 0, 0, 0, 'Unklath I e', 9, 32, 34000, 1580, 1, 2, 51, 0, 0),
(631, 0, 0, 0, 0, 0, 'Unklath I g', 9, 34, 35000, 1480, 1, 1, 51, 0, 0),
(632, 0, 0, 0, 0, 0, 'Unklath I f', 9, 32, 34000, 1580, 1, 2, 51, 0, 0),
(633, 0, 0, 0, 0, 0, 'Unklath I c', 9, 29, 31000, 1460, 2, 2, 50, 0, 0),
(634, 0, 0, 0, 0, 0, 'Unklath I b', 9, 28, 30000, 1460, 2, 2, 50, 0, 0),
(635, 0, 0, 0, 0, 0, 'Unklath I a', 9, 21, 23000, 1140, 1, 2, 38, 0, 0),
(636, 0, 0, 0, 0, 0, 'Arakmehn II', 9, 23, 24000, 1040, 1, 1, 38, 0, 0),
(637, 0, 0, 0, 0, 0, 'Arakmehn III', 9, 21, 23000, 1140, 1, 2, 38, 0, 0),
(638, 0, 0, 0, 0, 0, 'Unklath II b', 9, 14, 15000, 680, 1, 1, 25, 0, 0),
(639, 0, 0, 0, 0, 0, 'Unklath II c', 9, 14, 15000, 680, 1, 1, 27, 0, 0),
(640, 0, 0, 0, 0, 0, 'Unklath II d', 9, 32, 34000, 1580, 1, 2, 52, 0, 0),
(641, 0, 0, 0, 0, 0, 'Unklath II a', 9, 23, 24000, 1040, 1, 1, 36, 0, 0),
(642, 0, 0, 0, 0, 0, 'Arakmehn IV', 9, 24, 26000, 1220, 1, 2, 41, 0, 0),
(643, 0, 0, 0, 0, 0, 'Rathal I b', 9, 14, 15000, 680, 1, 1, 25, 0, 0),
(644, 0, 0, 0, 0, 0, 'Rathal I c', 9, 14, 15000, 680, 1, 1, 27, 0, 0),
(645, 0, 0, 0, 0, 0, 'Rathal I e', 9, 12, 14000, 780, 1, 2, 27, 0, 0),
(646, 0, 0, 0, 0, 0, 'Rathal I d', 9, 12, 14000, 780, 1, 2, 27, 0, 0),
(647, 0, 0, 0, 0, 0, 'Rathal I a', 9, 21, 23000, 1140, 1, 2, 36, 0, 0),
(648, 0, 0, 0, 0, 0, 'Rathal II b', 9, 14, 15000, 680, 1, 1, 25, 0, 0),
(649, 0, 0, 0, 0, 0, 'Rathal II c', 9, 14, 15000, 680, 1, 1, 27, 0, 0),
(650, 0, 0, 0, 0, 0, 'Rathal II d', 9, 29, 31000, 1460, 2, 2, 52, 0, 0),
(651, 0, 0, 0, 0, 0, 'Rathal II a', 9, 24, 25000, 1040, 1, 1, 38, 0, 0),
(653, 0, 0, 0, 0, 0, 'Esuph II a', 9, 4, 5000, 280, 1, 1, 14, 0, 0),
(654, 0, 0, 0, 0, 0, 'Uthemath II', 9, 76, 84000, 4460, 3, 8, 138, 0, 0),
(655, 0, 0, 0, 0, 0, 'Uthemath I e', 9, 16, 18000, 940, 1, 2, 32, 0, 0),
(656, 0, 0, 0, 0, 0, 'Uthemath I d', 9, 18, 19000, 840, 1, 1, 30, 0, 0),
(657, 0, 0, 0, 0, 0, 'Uthemath I f', 9, 49, 52000, 2440, 4, 3, 86, 0, 0),
(658, 0, 0, 0, 0, 0, 'Uthemath I b', 9, 17, 18000, 800, 2, 1, 32, 0, 0),
(659, 0, 0, 0, 0, 0, 'Uthemath I c', 9, 15, 17000, 900, 2, 2, 34, 0, 0),
(660, 0, 0, 0, 0, 0, 'Uthemath I a', 9, 7, 8000, 400, 1, 1, 18, 0, 0),
(661, 0, 0, 0, 0, 0, 'Botham I c', 9, 26, 28000, 1700, 2, 2, 49, 0, 0),
(662, 0, 0, 0, 0, 0, 'Botham I e', 9, 27, 29000, 1650, 1, 2, 44, 0, 0),
(663, 0, 0, 0, 0, 0, 'Botham I d', 9, 50, 53000, 3050, 2, 3, 80, 0, 0),
(664, 0, 0, 0, 0, 0, 'Botham I b', 9, 47, 50000, 3000, 3, 3, 83, 0, 0),
(666, 0, 0, 0, 0, 0, 'Horakhal', 9, 174, 188000, 9420, 5, 14, 277, 0, 0),
(667, 0, 0, 0, 0, 0, 'Esuph III b', 9, 26, 28000, 1340, 3, 2, 49, 0, 0),
(668, 0, 0, 0, 0, 0, 'Esuph III a', 9, 4, 5000, 280, 1, 1, 14, 0, 0),
(669, 0, 0, 0, 0, 0, 'Esuph IV b', 9, 7, 8000, 400, 1, 1, 16, 0, 0),
(670, 0, 0, 0, 0, 0, 'Esuph IV c', 9, 7, 8000, 400, 1, 1, 18, 0, 0),
(671, 0, 0, 0, 0, 0, 'Esuph IV d', 9, 16, 17000, 800, 2, 1, 34, 0, 0),
(672, 0, 0, 0, 0, 0, 'Esuph IV a', 9, 7, 8000, 400, 1, 1, 16, 0, 0),
(673, 0, 0, 0, 0, 0, 'Botham II e', 9, 26, 28000, 1650, 1, 2, 42, 0, 0),
(674, 0, 0, 0, 0, 0, 'Botham II g', 9, 21, 23000, 1400, 1, 2, 38, 0, 0),
(675, 0, 0, 0, 0, 0, 'Botham II f', 9, 26, 28000, 1650, 1, 2, 44, 0, 0),
(676, 0, 0, 0, 0, 0, 'Botham II d', 9, 32, 34000, 1950, 1, 2, 49, 0, 0),
(677, 0, 0, 0, 0, 0, 'Botham II c', 9, 17, 19000, 1250, 2, 2, 38, 0, 0),
(678, 0, 0, 0, 0, 0, 'Botham II b', 9, 26, 28000, 1600, 2, 2, 47, 0, 0),
(679, 0, 0, 0, 0, 0, 'Botham II a', 9, 14, 15000, 850, 1, 1, 25, 0, 0),
(680, 0, 0, 0, 0, 0, 'Botham III g', 9, 26, 28000, 1650, 1, 2, 42, 0, 0),
(681, 0, 0, 0, 0, 0, 'Botham III f', 9, 36, 39000, 2350, 1, 3, 56, 0, 0),
(682, 0, 0, 0, 0, 0, 'Botham III h', 9, 64, 67000, 3750, 3, 3, 98, 0, 0),
(683, 0, 0, 0, 0, 0, 'Botham III d', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(684, 0, 0, 0, 0, 0, 'Botham III e', 9, 15, 16000, 850, 1, 1, 27, 0, 0),
(685, 0, 0, 0, 0, 0, 'Botham III b', 9, 12, 14000, 950, 1, 2, 25, 0, 0),
(686, 0, 0, 0, 0, 0, 'Botham III c', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(687, 0, 0, 0, 0, 0, 'Botham III a', 9, 22, 24000, 1400, 1, 2, 36, 0, 0),
(688, 0, 0, 0, 0, 0, 'Botham IV i', 9, 26, 29000, 1800, 2, 3, 51, 0, 0),
(689, 0, 0, 0, 0, 0, 'Botham IV h', 9, 34, 35000, 1850, 1, 1, 49, 0, 0),
(690, 0, 0, 0, 0, 0, 'Botham IV f', 9, 26, 28000, 1700, 2, 2, 49, 0, 0),
(691, 0, 0, 0, 0, 0, 'Botham IV g', 9, 24, 26000, 1650, 3, 2, 49, 0, 0),
(692, 0, 0, 0, 0, 0, 'Botham IV c', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(693, 0, 0, 0, 0, 0, 'Botham IV e', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(694, 0, 0, 0, 0, 0, 'Botham IV d', 9, 14, 15000, 850, 1, 1, 27, 0, 0),
(695, 0, 0, 0, 0, 0, 'Botham IV b', 9, 14, 15000, 850, 1, 1, 25, 0, 0),
(696, 0, 0, 0, 0, 0, 'Botham IV a', 9, 22, 24000, 1400, 1, 2, 36, 0, 0),
(697, 0, 0, 0, 0, 0, 'Ramen Tah', 9, 90, 106000, 7650, 4, 16, 182, 0, 0),
(698, 0, 0, 0, 0, 0, 'Banana Bay 1', 8, 7, 8000, 450, 2, 1, 25, 0, 0),
(699, 0, 0, 0, 0, 0, 'Banana Bay 2', 8, 14, 15000, 765, 3, 1, 36, 0, 0),
(700, 0, 0, 0, 0, 0, 'Banana Bay 3', 8, 7, 8000, 450, 2, 1, 25, 0, 0),
(701, 0, 0, 0, 0, 0, 'Banana Bay 4', 8, 7, 8000, 450, 2, 1, 25, 0, 0),
(702, 0, 0, 0, 0, 0, 'Shark Manor', 8, 127, 142000, 8780, 9, 15, 286, 0, 0),
(703, 0, 0, 0, 0, 0, 'Coconut Quay 1', 8, 32, 34000, 1765, 3, 2, 64, 0, 0),
(704, 0, 0, 0, 0, 0, 'Coconut Quay 2', 8, 16, 18000, 1045, 4, 2, 42, 0, 0),
(705, 0, 0, 0, 0, 0, 'Coconut Quay 3', 8, 32, 36000, 2145, 3, 4, 70, 0, 0),
(706, 0, 0, 0, 0, 0, 'Coconut Quay 4', 8, 36, 39000, 2135, 3, 3, 72, 0, 0),
(707, 0, 0, 0, 0, 0, 'Crocodile Bridge 3', 8, 22, 24000, 1270, 4, 2, 49, 0, 0),
(708, 0, 0, 0, 0, 0, 'Crocodile Bridge 2', 8, 12, 14000, 865, 2, 2, 36, 0, 0),
(709, 0, 0, 0, 0, 0, 'Crocodile Bridge 1', 8, 17, 19000, 1045, 4, 2, 42, 0, 0),
(710, 0, 0, 0, 0, 0, 'Bamboo Garden 1', 8, 25, 28000, 1640, 2, 3, 63, 0, 0),
(711, 0, 0, 0, 0, 0, 'Crocodile Bridge 4', 8, 88, 92000, 4755, 7, 4, 176, 0, 0),
(712, 0, 0, 0, 0, 0, 'Crocodile Bridge 5', 8, 80, 82000, 3970, 8, 2, 157, 0, 0),
(713, 0, 0, 0, 0, 0, 'Woodway 1', 8, 14, 15000, 765, 1, 1, 36, 0, 0),
(714, 0, 0, 0, 0, 0, 'Woodway 2', 8, 11, 12000, 585, 3, 1, 30, 0, 0),
(715, 0, 0, 0, 0, 0, 'Woodway 3', 8, 27, 29000, 1540, 6, 2, 65, 0, 0),
(716, 0, 0, 0, 0, 0, 'Woodway 4', 8, 6, 7000, 405, 3, 1, 24, 0, 0),
(717, 0, 0, 0, 0, 0, 'Flamingo Flats 5', 8, 38, 39000, 1845, 4, 1, 84, 0, 0),
(718, 0, 0, 0, 0, 0, 'Bamboo Fortress', 8, 381, 401000, 21970, 23, 20, 848, 0, 0),
(719, 0, 0, 0, 0, 0, 'Bamboo Garden 3', 8, 27, 29000, 1540, 3, 2, 63, 0, 0),
(720, 0, 0, 0, 0, 0, 'Bamboo Garden 2', 8, 16, 18000, 1045, 2, 2, 42, 0, 0),
(721, 0, 0, 0, 0, 0, 'Flamingo Flats 4', 8, 12, 14000, 865, 2, 2, 36, 0, 0),
(722, 0, 0, 0, 0, 0, 'Flamingo Flats 2', 8, 16, 18000, 1045, 3, 2, 42, 0, 0),
(723, 0, 0, 0, 0, 0, 'Flamingo Flats 3', 8, 8, 10000, 685, 3, 2, 30, 0, 0),
(724, 0, 0, 0, 0, 0, 'Flamingo Flats 1', 8, 8, 10000, 685, 3, 2, 30, 0, 0),
(725, 0, 0, 0, 0, 0, 'Jungle Edge 4', 8, 12, 14000, 865, 4, 2, 36, 0, 0),
(726, 0, 0, 0, 0, 0, 'Jungle Edge 5', 8, 12, 14000, 865, 3, 2, 36, 0, 0),
(727, 0, 0, 0, 0, 0, 'Jungle Edge 6', 8, 7, 8000, 450, 1, 1, 25, 0, 0),
(728, 0, 0, 0, 0, 0, 'Jungle Edge 2', 8, 59, 62000, 3170, 9, 3, 128, 0, 0),
(729, 0, 0, 0, 0, 0, 'Jungle Edge 3', 8, 12, 14000, 865, 1, 2, 36, 0, 0),
(730, 0, 0, 0, 0, 0, 'Jungle Edge 1', 8, 44, 47000, 2495, 4, 3, 98, 0, 0),
(731, 0, 0, 0, 0, 0, 'Haggler''s Hangout 6', 8, 113, 117000, 6450, 7, 4, 208, 0, 0),
(732, 0, 0, 0, 0, 0, 'Haggler''s Hangout 5 (Shop)', 8, 24, 25000, 1550, 3, 1, 56, 0, 0),
(733, 0, 0, 0, 0, 0, 'Haggler''s Hangout 4a (Shop)', 8, 30, 31000, 1850, 2, 1, 56, 0, 0),
(734, 0, 0, 0, 0, 0, 'Haggler''s Hangout 4b (Shop)', 8, 24, 25000, 1550, 4, 1, 56, 0, 0),
(735, 0, 0, 0, 0, 0, 'Haggler''s Hangout 3', 8, 137, 141000, 7550, 8, 4, 256, 0, 0),
(736, 0, 0, 0, 0, 0, 'Haggler''s Hangout 2', 8, 23, 24000, 1300, 2, 1, 49, 0, 0),
(737, 0, 0, 0, 0, 0, 'Haggler''s Hangout 1', 8, 22, 24000, 1400, 3, 2, 49, 0, 0),
(738, 0, 0, 0, 0, 0, 'River Homes 1', 8, 66, 69000, 3485, 6, 3, 128, 0, 0),
(739, 0, 0, 0, 0, 0, 'River Homes 2a', 8, 21, 23000, 1270, 4, 2, 42, 0, 0),
(740, 0, 0, 0, 0, 0, 'River Homes 2b', 8, 24, 27000, 1595, 4, 3, 56, 0, 0),
(741, 0, 0, 0, 0, 0, 'River Homes 3', 8, 82, 89000, 5055, 6, 7, 176, 0, 0),
(742, 0, 0, 0, 0, 0, 'The Treehouse', 8, 484, 507000, 24120, 11, 23, 897, 0, 0),
(743, 0, 0, 0, 0, 0, 'Corner Shop (Shop)', 12, 36, 38000, 2215, 7, 2, 96, 0, 0),
(744, 0, 0, 0, 0, 0, 'Tusk Flats 1', 12, 14, 16000, 765, 3, 2, 40, 0, 0),
(745, 0, 0, 0, 0, 0, 'Tusk Flats 2', 12, 16, 18000, 835, 2, 2, 42, 0, 0),
(746, 0, 0, 0, 0, 0, 'Tusk Flats 3', 12, 11, 13000, 660, 2, 2, 34, 0, 0),
(747, 0, 0, 0, 0, 0, 'Tusk Flats 4', 12, 6, 7000, 315, 2, 1, 24, 0, 0),
(748, 0, 0, 0, 0, 0, 'Tusk Flats 6', 12, 12, 14000, 660, 3, 2, 35, 0, 0),
(749, 0, 0, 0, 0, 0, 'Tusk Flats 5', 12, 11, 12000, 455, 2, 1, 30, 0, 0),
(750, 0, 0, 0, 0, 0, 'Shady Rocks 5', 12, 57, 59000, 2890, 4, 2, 110, 0, 0),
(751, 0, 0, 0, 0, 0, 'Shady Rocks 4 (Shop)', 12, 50, 52000, 2710, 6, 2, 110, 0, 0),
(752, 0, 0, 0, 0, 0, 'Shady Rocks 3', 12, 77, 80000, 4115, 8, 3, 154, 0, 0),
(753, 0, 0, 0, 0, 0, 'Shady Rocks 2', 12, 29, 33000, 2010, 4, 4, 77, 0, 0),
(754, 0, 0, 0, 0, 0, 'Shady Rocks 1', 12, 65, 69000, 3630, 7, 4, 132, 0, 0),
(755, 0, 0, 0, 0, 0, 'Crystal Glance', 12, 237, 261000, 19625, 16, 24, 569, 0, 0),
(756, 0, 0, 0, 0, 0, 'Arena Walk 3', 12, 59, 62000, 3550, 5, 3, 126, 0, 0),
(757, 0, 0, 0, 0, 0, 'Arena Walk 2', 12, 21, 23000, 1400, 4, 2, 54, 0, 0),
(758, 0, 0, 0, 0, 0, 'Arena Walk 1', 12, 55, 58000, 3250, 7, 3, 128, 0, 0),
(759, 0, 0, 0, 0, 0, 'Bears Paw 2', 12, 44, 46000, 2305, 6, 2, 100, 0, 0),
(760, 0, 0, 0, 0, 0, 'Bears Paw 1', 12, 33, 35000, 1810, 6, 2, 72, 0, 0),
(761, 0, 0, 0, 0, 0, 'Spirit Homes 5', 12, 21, 23000, 1450, 3, 2, 56, 0, 0),
(762, 0, 0, 0, 0, 0, 'Glacier Side 3', 12, 30, 32000, 1950, 6, 2, 75, 0, 0),
(763, 0, 0, 0, 0, 0, 'Glacier Side 2', 12, 83, 86000, 4750, 8, 3, 154, 0, 0),
(764, 0, 0, 0, 0, 0, 'Glacier Side 1', 12, 26, 28000, 1600, 6, 2, 65, 0, 0),
(765, 0, 0, 0, 0, 0, 'Spirit Homes 1', 12, 27, 29000, 1700, 3, 2, 56, 0, 0),
(766, 0, 0, 0, 0, 0, 'Spirit Homes 2', 12, 31, 33000, 1900, 5, 2, 72, 0, 0),
(767, 0, 0, 0, 0, 0, 'Spirit Homes 3', 12, 75, 78000, 4250, 4, 3, 128, 0, 0),
(768, 0, 0, 0, 0, 0, 'Spirit Homes 4', 12, 19, 20000, 1100, 3, 1, 49, 0, 0),
(770, 0, 0, 0, 0, 0, 'Glacier Side 4', 12, 38, 39000, 2050, 5, 1, 75, 0, 0),
(771, 0, 0, 0, 0, 0, 'Shelf Site', 12, 83, 86000, 4800, 8, 3, 160, 0, 0),
(772, 0, 0, 0, 0, 0, 'Raven Corner 1', 12, 15, 16000, 855, 4, 1, 45, 0, 0),
(773, 0, 0, 0, 0, 0, 'Raven Corner 2', 12, 25, 28000, 1685, 4, 3, 60, 0, 0),
(774, 0, 0, 0, 0, 0, 'Raven Corner 3', 12, 15, 16000, 855, 4, 1, 45, 0, 0),
(775, 0, 0, 0, 0, 0, 'Bears Paw 3', 12, 35, 38000, 2090, 4, 3, 82, 0, 0),
(776, 0, 0, 0, 0, 0, 'Bears Paw 4', 12, 99, 103000, 5205, 12, 4, 189, 0, 0),
(778, 0, 0, 0, 0, 0, 'Bears Paw 5', 12, 34, 37000, 2045, 5, 3, 81, 0, 0),
(779, 0, 0, 0, 0, 0, 'Trout Plaza 5 (Shop)', 12, 73, 75000, 3880, 7, 2, 144, 0, 0),
(780, 0, 0, 0, 0, 0, 'Pilchard Bin 1', 12, 8, 10000, 685, 1, 2, 30, 0, 0),
(781, 0, 0, 0, 0, 0, 'Pilchard Bin 2', 12, 8, 10000, 685, 1, 2, 24, 0, 0),
(782, 0, 0, 0, 0, 0, 'Pilchard Bin 3', 12, 10, 11000, 585, 1, 1, 24, 0, 0),
(783, 0, 0, 0, 0, 0, 'Pilchard Bin 4', 12, 10, 11000, 585, 1, 1, 24, 0, 0),
(784, 0, 0, 0, 0, 0, 'Pilchard Bin 5', 12, 8, 10000, 685, 1, 2, 24, 0, 0),
(785, 0, 0, 0, 0, 0, 'Pilchard Bin 10', 12, 7, 8000, 450, 1, 1, 20, 0, 0),
(786, 0, 0, 0, 0, 0, 'Pilchard Bin 9', 12, 7, 8000, 450, 1, 1, 20, 0, 0),
(787, 0, 0, 0, 0, 0, 'Pilchard Bin 8', 12, 6, 8000, 450, 1, 2, 20, 0, 0),
(789, 0, 0, 0, 0, 0, 'Pilchard Bin 7', 12, 7, 8000, 450, 1, 1, 20, 0, 0),
(790, 0, 0, 0, 0, 0, 'Pilchard Bin 6', 12, 7, 8000, 450, 1, 1, 25, 0, 0),
(791, 0, 0, 0, 0, 0, 'Trout Plaza 1', 12, 43, 45000, 2395, 7, 2, 112, 0, 0),
(792, 0, 0, 0, 0, 0, 'Trout Plaza 2', 12, 26, 28000, 1540, 4, 2, 64, 0, 0),
(793, 0, 0, 0, 0, 0, 'Trout Plaza 3', 12, 18, 19000, 900, 3, 1, 36, 0, 0),
(794, 0, 0, 0, 0, 0, 'Trout Plaza 4', 12, 18, 19000, 900, 4, 1, 45, 0, 0),
(795, 0, 0, 0, 0, 0, 'Skiffs End 1', 12, 28, 30000, 1540, 4, 2, 70, 0, 0),
(796, 0, 0, 0, 0, 0, 'Skiffs End 2', 12, 13, 15000, 910, 4, 2, 42, 0, 0),
(797, 0, 0, 0, 0, 0, 'Furrier Quarter 3', 12, 20, 22000, 1010, 4, 2, 54, 0, 0),
(798, 0, 0, 0, 0, 0, 'Mammoth Belly', 12, 278, 308000, 22810, 29, 30, 634, 0, 0),
(799, 0, 0, 0, 0, 0, 'Furrier Quarter 2', 12, 21, 23000, 1045, 4, 2, 56, 0, 0),
(800, 0, 0, 0, 0, 0, 'Furrier Quarter 1', 12, 34, 37000, 1635, 5, 3, 84, 0, 0),
(801, 0, 0, 0, 0, 0, 'Fimbul Shelf 3', 12, 28, 30000, 1255, 4, 2, 66, 0, 0),
(802, 0, 0, 0, 0, 0, 'Fimbul Shelf 4', 12, 22, 24000, 1045, 3, 2, 56, 0, 0),
(803, 0, 0, 0, 0, 0, 'Fimbul Shelf 2', 12, 21, 23000, 1045, 3, 2, 56, 0, 0),
(804, 0, 0, 0, 0, 0, 'Fimbul Shelf 1', 12, 20, 22000, 975, 3, 2, 48, 0, 0),
(805, 0, 0, 0, 0, 0, 'Frost Manor', 12, 382, 406000, 26370, 32, 24, 806, 0, 0),
(806, 0, 0, 0, 0, 0, 'Lower Barracks 11', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(807, 0, 0, 0, 0, 0, 'Lower Barracks 12', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(808, 0, 0, 0, 0, 0, 'Lower Barracks 9', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(809, 0, 0, 0, 0, 0, 'Lower Barracks 10', 3, 7, 8000, 300, 1, 1, 19, 0, 0),
(810, 0, 0, 0, 0, 0, 'Lower Barracks 7', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(811, 0, 0, 0, 0, 0, 'Lower Barracks 8', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(812, 0, 0, 0, 0, 0, 'Lower Barracks 5', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(813, 0, 0, 0, 0, 0, 'Lower Barracks 6', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(814, 0, 0, 0, 0, 0, 'Lower Barracks 3', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(815, 0, 0, 0, 0, 0, 'Lower Barracks 4', 3, 7, 8000, 300, 1, 1, 19, 0, 0),
(816, 0, 0, 0, 0, 0, 'Lower Barracks 1', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(817, 0, 0, 0, 0, 0, 'Lower Barracks 2', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(818, 0, 0, 0, 0, 0, 'Lower Barracks 24', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(819, 0, 0, 0, 0, 0, 'Lower Barracks 23', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(820, 0, 0, 0, 0, 0, 'Lower Barracks 22', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(821, 0, 0, 0, 0, 0, 'Lower Barracks 21', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(822, 0, 0, 0, 0, 0, 'Lower Barracks 20', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(823, 0, 0, 0, 0, 0, 'Lower Barracks 19', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(824, 0, 0, 0, 0, 0, 'Lower Barracks 18', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(825, 0, 0, 0, 0, 0, 'Lower Barracks 17', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(826, 0, 0, 0, 0, 0, 'Lower Barracks 16', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(828, 0, 0, 0, 0, 0, 'Lower Barracks 15', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(829, 0, 0, 0, 0, 0, 'Lower Barracks 14', 3, 7, 8000, 300, 1, 1, 20, 0, 0),
(830, 0, 0, 0, 0, 0, 'Lower Barracks 13', 3, 7, 8000, 300, 1, 1, 16, 0, 0),
(831, 0, 0, 0, 0, 0, 'Marble Guildhall', 3, 282, 299000, 16810, 18, 17, 540, 0, 0),
(832, 0, 0, 0, 0, 0, 'Iron Guildhall', 3, 243, 260000, 15560, 15, 17, 464, 0, 0),
(833, 0, 0, 0, 0, 0, 'The Market 1 (Shop)', 3, 8, 9000, 650, 2, 1, 25, 0, 0),
(834, 0, 0, 0, 0, 0, 'The Market 3 (Shop)', 3, 22, 23000, 1450, 2, 1, 40, 0, 0),
(835, 0, 0, 0, 0, 0, 'The Market 2 (Shop)', 3, 17, 18000, 1100, 2, 1, 40, 0, 0),
(836, 0, 0, 0, 0, 0, 'The Market 4 (Shop)', 3, 28, 29000, 1800, 2, 1, 48, 0, 0),
(837, 0, 0, 0, 0, 0, 'Granite Guildhall', 3, 296, 313000, 17845, 18, 17, 589, 0, 0),
(838, 0, 0, 0, 0, 0, 'Upper Barracks 1', 3, 4, 5000, 210, 1, 1, 20, 0, 0),
(839, 0, 0, 0, 0, 0, 'Upper Barracks 2', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(840, 0, 0, 0, 0, 0, 'Upper Barracks 3', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(841, 0, 0, 0, 0, 0, 'Upper Barracks 4', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(842, 0, 0, 0, 0, 0, 'Upper Barracks 5', 3, 4, 5000, 210, 1, 1, 12, 0, 0),
(843, 0, 0, 0, 0, 0, 'Upper Barracks 6', 3, 4, 5000, 210, 1, 1, 12, 0, 0),
(844, 0, 0, 0, 0, 0, 'Upper Barracks 7', 3, 4, 5000, 210, 1, 1, 16, 0, 0),
(845, 0, 0, 0, 0, 0, 'Upper Barracks 8', 3, 4, 5000, 210, 1, 1, 20, 0, 0),
(847, 0, 0, 0, 0, 0, 'Upper Barracks 10', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(848, 0, 0, 0, 0, 0, 'Upper Barracks 11', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(849, 0, 0, 0, 0, 0, 'Upper Barracks 12', 3, 4, 5000, 210, 1, 1, 16, 0, 0),
(850, 0, 0, 0, 0, 0, 'Upper Barracks 13', 3, 11, 13000, 580, 1, 2, 24, 0, 0),
(851, 0, 0, 0, 0, 0, 'Nobility Quarter 4', 3, 14, 15000, 765, 1, 1, 25, 0, 0),
(852, 0, 0, 0, 0, 0, 'Nobility Quarter 5', 3, 15, 16000, 765, 1, 1, 25, 0, 0),
(853, 0, 0, 0, 0, 0, 'Nobility Quarter 7', 3, 14, 15000, 765, 1, 1, 30, 0, 0),
(854, 0, 0, 0, 0, 0, 'Nobility Quarter 6', 3, 14, 15000, 765, 1, 1, 30, 0, 0),
(855, 0, 0, 0, 0, 0, 'Nobility Quarter 8', 3, 14, 15000, 765, 1, 1, 30, 0, 0),
(856, 0, 0, 0, 0, 0, 'Nobility Quarter 9', 3, 14, 15000, 765, 1, 1, 30, 0, 0),
(857, 0, 0, 0, 0, 0, 'Nobility Quarter 2', 3, 30, 33000, 1865, 1, 3, 56, 0, 0),
(858, 0, 0, 0, 0, 0, 'Nobility Quarter 3', 3, 30, 33000, 1865, 1, 3, 56, 0, 0),
(859, 0, 0, 0, 0, 0, 'Nobility Quarter 1', 3, 30, 33000, 1865, 1, 3, 62, 0, 0),
(863, 0, 0, 0, 0, 0, 'The Farms 6, Fishing Hut', 3, 16, 18000, 1255, 1, 2, 36, 0, 0),
(864, 0, 0, 0, 0, 0, 'The Farms 5', 3, 21, 23000, 1530, 1, 2, 36, 0, 0),
(865, 0, 0, 0, 0, 0, 'The Farms 4', 3, 21, 23000, 1530, 1, 2, 36, 0, 0),
(866, 0, 0, 0, 0, 0, 'The Farms 3', 3, 21, 23000, 1530, 1, 2, 36, 0, 0),
(867, 0, 0, 0, 0, 0, 'The Farms 2', 3, 21, 23000, 1530, 1, 2, 36, 0, 0),
(868, 0, 0, 0, 0, 0, 'The Farms 1', 3, 34, 37000, 2510, 2, 3, 60, 0, 0),
(869, 0, 0, 0, 0, 0, 'Outlaw Camp 12 (Shop)', 3, 6, 6000, 280, 1, 0, 12, 0, 0),
(870, 0, 0, 0, 0, 0, 'Outlaw Camp 13 (Shop)', 3, 6, 6000, 280, 1, 0, 12, 0, 0),
(871, 0, 0, 0, 0, 0, 'Outlaw Camp 14 (Shop)', 3, 16, 16000, 640, 1, 0, 30, 0, 0),
(872, 0, 0, 0, 0, 0, 'Outlaw Camp 7', 3, 12, 14000, 780, 1, 2, 38, 0, 0),
(874, 0, 0, 0, 0, 0, 'Outlaw Camp 8', 3, 5, 6000, 280, 1, 1, 20, 0, 0),
(877, 0, 0, 0, 0, 0, 'Outlaw Camp 9', 3, 3, 4000, 200, 1, 1, 12, 0, 0),
(878, 0, 0, 0, 0, 0, 'Outlaw Camp 10', 3, 2, 3000, 200, 1, 1, 12, 0, 0),
(879, 0, 0, 0, 0, 0, 'Outlaw Camp 11', 3, 2, 3000, 200, 1, 1, 16, 0, 0),
(880, 0, 0, 0, 0, 0, 'Outlaw Camp 2', 3, 4, 5000, 280, 2, 1, 20, 0, 0),
(881, 0, 0, 0, 0, 0, 'Outlaw Camp 3', 3, 11, 13000, 740, 3, 2, 35, 0, 0),
(882, 0, 0, 0, 0, 0, 'Outlaw Camp 4', 3, 2, 3000, 200, 3, 1, 12, 0, 0),
(883, 0, 0, 0, 0, 0, 'Outlaw Camp 5', 3, 2, 3000, 200, 3, 1, 12, 0, 0),
(884, 0, 0, 0, 0, 0, 'Outlaw Camp 6', 3, 2, 3000, 200, 3, 1, 16, 0, 0),
(885, 0, 0, 0, 0, 0, 'Outlaw Camp 1', 3, 46, 48000, 1660, 1, 2, 91, 0, 0),
(886, 0, 0, 0, 0, 0, 'Outlaw Castle', 3, 158, 167000, 8000, 11, 9, 410, 0, 0),
(888, 0, 0, 0, 0, 0, 'Tunnel Gardens 1', 3, 20, 23000, 1820, 1, 3, 44, 0, 0),
(889, 0, 0, 0, 0, 0, 'Tunnel Gardens 3', 3, 23, 26000, 2000, 1, 3, 48, 0, 0),
(890, 0, 0, 0, 0, 0, 'Tunnel Gardens 4', 3, 24, 27000, 2000, 1, 3, 45, 0, 0),
(891, 0, 0, 0, 0, 0, 'Tunnel Gardens 2', 3, 20, 23000, 1820, 1, 3, 47, 0, 0),
(892, 0, 0, 0, 0, 0, 'Tunnel Gardens 5', 3, 16, 18000, 1360, 1, 2, 35, 0, 0),
(893, 0, 0, 0, 0, 0, 'Tunnel Gardens 6', 3, 16, 18000, 1360, 1, 2, 38, 0, 0),
(894, 0, 0, 0, 0, 0, 'Tunnel Gardens 8', 3, 16, 18000, 1360, 1, 2, 35, 0, 0),
(895, 0, 0, 0, 0, 0, 'Tunnel Gardens 7', 3, 16, 18000, 1360, 1, 2, 35, 0, 0),
(896, 0, 0, 0, 0, 0, 'Tunnel Gardens 12', 3, 11, 13000, 1060, 1, 2, 24, 0, 0),
(897, 0, 0, 0, 0, 0, 'Tunnel Gardens 11', 3, 11, 13000, 1060, 1, 2, 32, 0, 0),
(898, 0, 0, 0, 0, 0, 'Tunnel Gardens 9', 3, 10, 12000, 1000, 1, 2, 29, 0, 0),
(899, 0, 0, 0, 0, 0, 'Tunnel Gardens 10', 3, 10, 12000, 1000, 1, 2, 29, 0, 0),
(900, 0, 0, 0, 0, 0, 'Wolftower', 3, 316, 339000, 21550, 27, 23, 699, 0, 0),
(901, 0, 0, 0, 0, 0, 'Paupers Palace, Flat 11', 1, 4, 5000, 315, 2, 1, 14, 0, 0),
(902, 0, 0, 0, 0, 0, 'Upper Barracks 9', 3, 4, 5000, 210, 1, 1, 15, 0, 0),
(905, 0, 0, 0, 0, 0, 'Botham I a', 9, 21, 22000, 950, 1, 1, 36, 0, 0),
(906, 0, 0, 0, 0, 0, 'Esuph I', 9, 18, 19000, 680, 1, 1, 39, 0, 0),
(907, 0, 0, 0, 0, 0, 'Esuph II b', 9, 26, 28000, 1380, 2, 2, 51, 0, 0),
(1268, 0, 0, 0, 0, 0, 'Unnamed House #1268', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1269, 0, 0, 0, 0, 0, 'Unnamed House #1269', 9, 0, 5000, 0, 0, 0, 1, 0, 0);
INSERT INTO `houses` (`id`, `world_id`, `owner`, `paid`, `warnings`, `lastwarning`, `name`, `town`, `size`, `price`, `rent`, `doors`, `beds`, `tiles`, `guild`, `clear`) VALUES
(1270, 0, 0, 0, 0, 0, 'Unnamed House #1270', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1271, 0, 0, 0, 0, 0, 'Unnamed House #1271', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1272, 0, 0, 0, 0, 0, 'Unnamed House #1272', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1273, 0, 0, 0, 0, 0, 'Unnamed House #1273', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1274, 0, 0, 0, 0, 0, 'Unnamed House #1274', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1275, 0, 0, 0, 0, 0, 'Unnamed House #1275', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1276, 0, 0, 0, 0, 0, 'Unnamed House #1276', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1277, 0, 0, 0, 0, 0, 'Unnamed House #1277', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1278, 0, 0, 0, 0, 0, 'Unnamed House #1278', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1279, 0, 0, 0, 0, 0, 'Unnamed House #1279', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1280, 0, 0, 0, 0, 0, 'Unnamed House #1280', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1281, 0, 0, 0, 0, 0, 'Unnamed House #1281', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1282, 0, 0, 0, 0, 0, 'Unnamed House #1282', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1284, 0, 0, 0, 0, 0, 'Unnamed House #1284', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1285, 0, 0, 0, 0, 0, 'Unnamed House #1285', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1286, 0, 0, 0, 0, 0, 'Unnamed House #1286', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1287, 0, 0, 0, 0, 0, 'Unnamed House #1287', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1288, 0, 0, 0, 0, 0, 'Unnamed House #1288', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1289, 0, 0, 0, 0, 0, 'Unnamed House #1289', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1290, 0, 0, 0, 0, 0, 'Unnamed House #1290', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1291, 0, 0, 0, 0, 0, 'Unnamed House #1291', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1292, 0, 0, 0, 0, 0, 'Unnamed House #1292', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1293, 0, 0, 0, 0, 0, 'Unnamed House #1293', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1294, 0, 0, 0, 0, 0, 'Unnamed House #1294', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1295, 0, 0, 0, 0, 0, 'Unnamed House #1295', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1296, 0, 0, 0, 0, 0, 'Unnamed House #1296', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1297, 0, 0, 0, 0, 0, 'Unnamed House #1297', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1298, 0, 0, 0, 0, 0, 'Unnamed House #1298', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1299, 0, 0, 0, 0, 0, 'Unnamed House #1299', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1300, 0, 0, 0, 0, 0, 'Unnamed House #1300', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1301, 0, 0, 0, 0, 0, 'Unnamed House #1301', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1302, 0, 0, 0, 0, 0, 'Unnamed House #1302', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1303, 0, 0, 0, 0, 0, 'Unnamed House #1303', 9, 0, 5000, 0, 0, 0, 1, 0, 0),
(1304, 0, 0, 0, 0, 0, 'Unnamed House #1304', 9, 180, 1080000, 0, 4, 4, 216, 0, 0),
(1305, 0, 0, 0, 0, 0, 'Unnamed House #1305', 9, 114, 720000, 0, 4, 4, 144, 0, 0),
(1306, 0, 0, 0, 0, 0, 'Unnamed House #1306', 9, 121, 830000, 0, 5, 8, 166, 0, 0),
(1307, 0, 0, 0, 0, 0, 'Unnamed House #1307', 9, 87, 510000, 0, 2, 4, 102, 0, 0),