From b8fd6101ef372149594d5ab5c6741eedf0e59905 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Wed, 2 Jul 2025 20:33:51 -0500 Subject: [PATCH] ls sql refactor --- database/{world => common}/appearances.sql | 109 +- database/{login => common}/bug_notes.sql | 0 database/{login => common}/bugs.sql | 0 database/{login => common}/opcodes.sql | 100 +- database/{world => common}/visual_states.sql | 93 +- database/common/web_users.sql | 7 + database/{world => common}/zones.sql | 455 +- database/login/appearances.sql | 21556 ----------------- database/login/char_colors.sql | 11 - database/login/character_pictures.sql | 9 + database/login/login_char_colors.sql | 11 + database/login/login_characters.sql | 71 +- database/login/login_config.sql | 92 +- database/login/login_equipment.sql | 76 +- database/login/login_versions.sql | 91 +- database/login/login_worldservers.sql | 81 - database/login/login_worldservers_reset.sql | 90 - database/login/login_worldservers_verify.sql | 88 - database/login/login_worldstats.sql | 58 - database/login/ls_character_picture.sql | 55 - database/login/ls_world_zones.sql | 57 - database/login/test.db | Bin 1871872 -> 0 bytes database/login/visual_states.sql | 20210 ---------------- database/login/web_routes.sql | 50 - database/login/web_users.sql | 53 - database/login/world_zones.sql | 9 + database/login/worldservers.sql | 33 + database/login/worldservers_reset.sql | 10 + database/login/worldservers_verify.sql | 8 + database/login/worldstats.sql | 11 + database/login/zones.sql | 766 - database/world/web_routes.sql | 83 - database/world/web_users.sql | 53 - 33 files changed, 382 insertions(+), 44014 deletions(-) rename database/{world => common}/appearances.sql (99%) rename database/{login => common}/bug_notes.sql (100%) rename database/{login => common}/bugs.sql (100%) rename database/{login => common}/opcodes.sql (99%) rename database/{world => common}/visual_states.sql (99%) create mode 100644 database/common/web_users.sql rename database/{world => common}/zones.sql (89%) delete mode 100644 database/login/appearances.sql delete mode 100644 database/login/char_colors.sql create mode 100644 database/login/character_pictures.sql create mode 100644 database/login/login_char_colors.sql delete mode 100644 database/login/login_worldservers.sql delete mode 100644 database/login/login_worldservers_reset.sql delete mode 100644 database/login/login_worldservers_verify.sql delete mode 100644 database/login/login_worldstats.sql delete mode 100644 database/login/ls_character_picture.sql delete mode 100644 database/login/ls_world_zones.sql delete mode 100644 database/login/test.db delete mode 100644 database/login/visual_states.sql delete mode 100644 database/login/web_routes.sql delete mode 100644 database/login/web_users.sql create mode 100644 database/login/world_zones.sql create mode 100644 database/login/worldservers.sql create mode 100644 database/login/worldservers_reset.sql create mode 100644 database/login/worldservers_verify.sql create mode 100644 database/login/worldstats.sql delete mode 100644 database/login/zones.sql delete mode 100644 database/world/web_routes.sql delete mode 100644 database/world/web_users.sql diff --git a/database/world/appearances.sql b/database/common/appearances.sql similarity index 99% rename from database/world/appearances.sql rename to database/common/appearances.sql index b6fffc7..4a0b697 100644 --- a/database/world/appearances.sql +++ b/database/common/appearances.sql @@ -1,77 +1,12 @@ --- Table: `appearances` -USE `eq2emu`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS appearances; +CREATE TABLE appearances ( + id INTEGER PRIMARY KEY, + appearance_id INTEGER NOT NULL UNIQUE, + name TEXT NOT NULL, + min_client_version INTEGER NOT NULL DEFAULT 0 +); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `appearances` --- - -DROP TABLE IF EXISTS `appearances`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `appearances` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `appearance_id` int(10) unsigned NOT NULL, - `name` varchar(250) NOT NULL, - `min_client_version` int(10) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `AppIDX` (`appearance_id`) -) ENGINE=InnoDB AUTO_INCREMENT=37005 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `appearances` --- - -LOCK TABLES `appearances` WRITE; -/*!40000 ALTER TABLE `appearances` DISABLE KEYS */; -INSERT INTO `appearances` VALUES +INSERT INTO appearances VALUES (1,1,'staticobjects/encounter_chest',283), (2,2,'staticobjects/everling_portrait',283), (3,3,'staticobjects/bed_single',283), @@ -6393,7 +6328,7 @@ INSERT INTO `appearances` VALUES (6319,7445,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr',843), (6320,7446,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature',843), (6321,7447,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon',843), -(6322,7448,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn\'s_fist',843), +(6322,7448,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist',843), (6323,7449,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity',843), (6324,7450,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher',843), (6325,7451,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_mirage_star',843), @@ -8148,7 +8083,7 @@ INSERT INTO `appearances` VALUES (8074,8028,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr_raid',1008), (8075,8029,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature_raid',1008), (8076,8030,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon_raid',1008), -(8077,8031,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn\'s_fist_raid',1008), +(8077,8031,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist_raid',1008), (8078,8032,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity_raid',1008), (8079,8033,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher_raid',1008), (8080,8034,'staticobjects/rugs/dpo_char_rug02',1008), @@ -9578,11 +9513,11 @@ INSERT INTO `appearances` VALUES (9504,9492,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_base_dpo',1008), (9505,9493,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_shaft_dpo',1008), (9506,9494,'_exp05/zones/objects/exp05_rgn_innothule/boat_platform_innothule',1008), -(9507,9495,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_atrebe',1008), -(9508,9496,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_fighter',1008), -(9509,9497,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_mage',1008), -(9510,9498,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_priest',1008), -(9511,9499,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_scout',1008), +(9507,9495,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_atrebe',1008), +(9508,9496,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_fighter',1008), +(9509,9497,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_mage',1008), +(9510,9498,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_priest',1008), +(9511,9499,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_scout',1008), (9512,9500,'_exp05/zones/objects/exp05_dun_nuroga/drogan_crystal',1008), (9513,9501,'accessories/wearable_items/sallet_helmet/galvanized/head',1008), (9514,9502,'accessories/wearable_items/vanguard/uncommon/high/pauldron02_vanguard_ridged_left',1008), @@ -36889,17 +36824,3 @@ INSERT INTO `appearances` VALUES (37002,36920,'_exp17/objects/exp17_rgn_savage_weald/saw_grimcave_door_dpo',67804), (37003,36921,'_exp17/objects/vex_thal/shissar_staff_statue_01',67804), (37004,36922,'_exp17/objects/vex_thal/shissar_sword_statue_01',67804); -/*!40000 ALTER TABLE `appearances` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/bug_notes.sql b/database/common/bug_notes.sql similarity index 100% rename from database/login/bug_notes.sql rename to database/common/bug_notes.sql diff --git a/database/login/bugs.sql b/database/common/bugs.sql similarity index 100% rename from database/login/bugs.sql rename to database/common/bugs.sql diff --git a/database/login/opcodes.sql b/database/common/opcodes.sql similarity index 99% rename from database/login/opcodes.sql rename to database/common/opcodes.sql index 316fff7..bda1f3e 100644 --- a/database/login/opcodes.sql +++ b/database/common/opcodes.sql @@ -1,79 +1,15 @@ --- Table: `opcodes` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS opcodes; +CREATE TABLE opcodes ( + id INTEGER PRIMARY KEY, + version_range1 INTEGER NOT NULL DEFAULT 0, + version_range2 INTEGER NOT NULL DEFAULT 0, + name TEXT NOT NULL DEFAULT '', + opcode INTEGER NOT NULL DEFAULT 0, + table_data_version INTEGER NOT NULL DEFAULT 1, + UNIQUE(version_range1, name, version_range2) +); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `opcodes` --- - -DROP TABLE IF EXISTS `opcodes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `opcodes` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `version_range1` smallint(5) unsigned NOT NULL DEFAULT 0, - `version_range2` smallint(5) unsigned NOT NULL DEFAULT 0, - `name` varchar(255) NOT NULL DEFAULT '', - `opcode` smallint(5) unsigned NOT NULL DEFAULT 0, - `table_data_version` smallint(5) unsigned NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `newindex` (`version_range1`,`name`,`version_range2`) -) ENGINE=InnoDB AUTO_INCREMENT=30943 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `opcodes` --- - -LOCK TABLES `opcodes` WRITE; -/*!40000 ALTER TABLE `opcodes` DISABLE KEYS */; -INSERT INTO `opcodes` VALUES +INSERT INTO opcodes VALUES (1,547,838,'OP_LoginRequestMsg',0,1), (2,547,838,'OP_LoginByNumRequestMsg',1,1), (3,547,838,'OP_WSLoginRequestMsg',2,1), @@ -21936,17 +21872,3 @@ INSERT INTO `opcodes` VALUES (30299,540,546,'OP_EqGuildBankEventActionCmd',492,1), (30300,540,546,'OP_EqGuildBankExamineInfoCmd',493,1), (30301,540,546,'OP_EqHearSpellNoLandCmd',494,1); -/*!40000 ALTER TABLE `opcodes` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/world/visual_states.sql b/database/common/visual_states.sql similarity index 99% rename from database/world/visual_states.sql rename to database/common/visual_states.sql index 8b3a39f..281169d 100644 --- a/database/world/visual_states.sql +++ b/database/common/visual_states.sql @@ -1,76 +1,11 @@ --- Table: `visual_states` -USE `eq2emu`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS visual_states; +CREATE TABLE visual_states ( + id INTEGER PRIMARY KEY, + visual_state_id INTEGER NOT NULL DEFAULT 0 UNIQUE, + name TEXT NOT NULL DEFAULT 'None', + min_client_version INTEGER NOT NULL DEFAULT 0 +); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `visual_states` --- - -DROP TABLE IF EXISTS `visual_states`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `visual_states` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `visual_state_id` int(10) unsigned NOT NULL DEFAULT 0, - `name` varchar(250) NOT NULL DEFAULT 'None', - `min_client_version` smallint(5) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `VisIDX` (`visual_state_id`) -) ENGINE=InnoDB AUTO_INCREMENT=21671 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `visual_states` --- - -LOCK TABLES `visual_states` WRITE; -/*!40000 ALTER TABLE `visual_states` DISABLE KEYS */; INSERT INTO `visual_states` VALUES (1,16,'1h_sword_idle',0), (2,50,'2h_sword_enter',0), @@ -21742,17 +21677,3 @@ INSERT INTO `visual_states` VALUES (21668,65408,'kill_design_zone_blast_fx',57000), (21669,65462,'kill_vulakk_breathe_fire',57000), (21670,65469,'kill_cast_heal_ball_gather',57000); -/*!40000 ALTER TABLE `visual_states` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/common/web_users.sql b/database/common/web_users.sql new file mode 100644 index 0000000..be701b6 --- /dev/null +++ b/database/common/web_users.sql @@ -0,0 +1,7 @@ +DROP TABLE IF EXISTS web_users; +CREATE TABLE web_users ( + id INTEGER PRIMARY KEY, + username TEXT NOT NULL DEFAULT '', + password TEXT NOT NULL DEFAULT '', + status INTEGER NOT NULL DEFAULT 0 +); diff --git a/database/world/zones.sql b/database/common/zones.sql similarity index 89% rename from database/world/zones.sql rename to database/common/zones.sql index feb5457..1e813e4 100644 --- a/database/world/zones.sql +++ b/database/common/zones.sql @@ -1,116 +1,51 @@ --- Table: `zones` -USE `eq2emu`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS zones; +CREATE TABLE zones ( + id INTEGER PRIMARY KEY, + expansion_id INTEGER NOT NULL DEFAULT 0, + name TEXT NOT NULL DEFAULT '' UNIQUE, + file TEXT NOT NULL DEFAULT '', + description TEXT NOT NULL DEFAULT 'Describe me in the zones table! :)', + safe_x REAL NOT NULL DEFAULT 0, + safe_y REAL NOT NULL DEFAULT 0, + safe_z REAL NOT NULL DEFAULT 0, + safe_heading REAL NOT NULL DEFAULT 0, + underworld REAL NOT NULL DEFAULT -1000000, + xp_modifier REAL NOT NULL DEFAULT 0, + min_recommended INTEGER NOT NULL DEFAULT 0, + max_recommended INTEGER NOT NULL DEFAULT 0, + zone_type TEXT DEFAULT '', + always_loaded INTEGER NOT NULL DEFAULT 0, + city_zone INTEGER NOT NULL DEFAULT 0, + weather_allowed INTEGER NOT NULL DEFAULT 0, + min_status INTEGER NOT NULL DEFAULT 0, + min_level INTEGER NOT NULL DEFAULT 0, + max_level INTEGER NOT NULL DEFAULT 0, + start_zone INTEGER NOT NULL DEFAULT 0, + instance_type TEXT NOT NULL DEFAULT 'NONE', + default_reenter_time INTEGER NOT NULL DEFAULT 0, + default_reset_time INTEGER NOT NULL DEFAULT 0, + default_lockout_time INTEGER NOT NULL DEFAULT 0, + force_group_to_zone INTEGER NOT NULL DEFAULT 0, + lua_script TEXT DEFAULT '', + shutdown_timer INTEGER NOT NULL DEFAULT 300, + zone_motd TEXT DEFAULT '', + ruleset_id INTEGER NOT NULL DEFAULT 0, + login_checksum INTEGER NOT NULL DEFAULT 0, + sky_file TEXT NOT NULL DEFAULT '', + can_bind INTEGER DEFAULT 0, + can_gate INTEGER DEFAULT 1, + can_evac INTEGER DEFAULT 1, + peer_priority INTEGER NOT NULL DEFAULT 0 +); +CREATE INDEX idx_zones_description ON zones(description); +CREATE INDEX idx_zones_file ON zones(file); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `zones` --- - -DROP TABLE IF EXISTS `zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `zones` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `expansion_id` tinyint(3) unsigned NOT NULL DEFAULT 0, - `name` varchar(64) NOT NULL DEFAULT '', - `file` varchar(64) NOT NULL DEFAULT '', - `description` varchar(255) NOT NULL DEFAULT 'Describe me in the zones table! :)', - `safe_x` float NOT NULL DEFAULT 0, - `safe_y` float NOT NULL DEFAULT 0, - `safe_z` float NOT NULL DEFAULT 0, - `safe_heading` float NOT NULL DEFAULT 0, - `underworld` float NOT NULL DEFAULT -1000000, - `xp_modifier` float NOT NULL DEFAULT 0, - `min_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0, - `max_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0, - `zone_type` varchar(64) DEFAULT '', - `always_loaded` tinyint(3) unsigned NOT NULL DEFAULT 0, - `city_zone` tinyint(3) unsigned NOT NULL DEFAULT 0, - `weather_allowed` tinyint(3) unsigned NOT NULL DEFAULT 0, - `min_status` int(10) NOT NULL DEFAULT 0, - `min_level` int(10) NOT NULL DEFAULT 0, - `max_level` int(10) NOT NULL DEFAULT 0, - `start_zone` tinyint(3) NOT NULL DEFAULT 0, - `instance_type` enum('NONE','GROUP_LOCKOUT_INSTANCE','GROUP_PERSIST_INSTANCE','RAID_LOCKOUT_INSTANCE','RAID_PERSIST_INSTANCE','SOLO_LOCKOUT_INSTANCE','SOLO_PERSIST_INSTANCE','TRADESKILL_INSTANCE','PUBLIC_INSTANCE','PERSONAL_HOUSE_INSTANCE','GUILD_HOUSE_INSTANCE','QUEST_INSTANCE') NOT NULL DEFAULT 'NONE', - `default_reenter_time` int(10) unsigned NOT NULL DEFAULT 0, - `default_reset_time` int(10) unsigned NOT NULL DEFAULT 0, - `default_lockout_time` int(10) unsigned NOT NULL DEFAULT 0, - `force_group_to_zone` smallint(5) unsigned NOT NULL DEFAULT 0, - `lua_script` varchar(255) DEFAULT '', - `shutdown_timer` int(10) unsigned NOT NULL DEFAULT 300 COMMENT 'In seconds', - `zone_motd` varchar(250) DEFAULT '', - `ruleset_id` int(10) unsigned NOT NULL DEFAULT 0, - `login_checksum` int(10) unsigned NOT NULL DEFAULT 0, - `sky_file` varchar(64) NOT NULL DEFAULT '', - `can_bind` int(11) DEFAULT 0, - `can_gate` int(11) DEFAULT 1, - `can_evac` int(11) DEFAULT 1, - `peer_priority` smallint(5) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `ZoneNameIDX` (`name`), - KEY `ZoneDescIDX` (`description`), - KEY `ZoneFileIDX` (`file`) -) ENGINE=InnoDB AUTO_INCREMENT=854 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `zones` --- - -LOCK TABLES `zones` WRITE; -/*!40000 ALTER TABLE `zones` DISABLE KEYS */; INSERT INTO `zones` VALUES (1,30,'GMHall','qey_guildhall_tier3','Game Masters Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,1,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'ZoneScripts/GMHall.lua',300,'',0,1486945888,'',0,1,1,0), (2,0,'Splitpaw1','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Alone in the Dark',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2642218879,'',0,1,1,0), (3,0,'SplitpawDen','adv02_dun_sundered_splitpaw_hub','Sundered Splitpaw: Splitpaw Den ',7.13,-69.56,-311.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2078270933,'',0,1,1,0), (4,0,'CrustaceanCave','adv04_crab_cave','Cavern of the Crustaceans',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/CrustaceanCave.lua',300,'',0,1437304064,'',0,1,1,0), -(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux\'laio\'s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1679741196,'',0,1,1,0), +(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux''laio''s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1679741196,'',0,1,1,0), (6,0,'Antechamber','adv04_dun_drgn_temple','Antechamber of Fate',-11.35,0.4,-34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3992515775,'',0,1,1,0), (7,0,'ForsakenCity','adv04_dun_endless','The Forsaken City',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,587354683,'',0,1,1,0), (8,0,'the Sepulcher of Zan Fi','adv04_dun_temple','The Sepulcher of Zan Fi',-1,0.7,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3337851530,'',0,1,1,0), @@ -131,7 +66,7 @@ INSERT INTO `zones` VALUES (23,0,'The Burning Cauldron','boat_06p_lavastorm','The Burning Cauldron',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,2280441737,'',0,1,1,0), (24,0,'PrizePrexus','boat_06p_orcishwastes','The Prize of Prexus',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,687197178,'',0,1,1,0), (25,0,'JourneyQeynos','boat_06p_qeynos','Journey to Qeynos',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1629504455,'',0,1,1,0), -(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,180.6,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Welcome to the EQ2EMU! The Farseas Journey needs some tweaks . Please be sure to test the Queen\'s Colony and other 1-10 content!',0,2933294842,'',0,1,1,0), +(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,180.6,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Welcome to the EQ2EMU! The Farseas Journey needs some tweaks . Please be sure to test the Queen''s Colony and other 1-10 content!',0,2933294842,'',0,1,1,0), (27,0,'FarJourneyFreeport','boat_06p_tutorial02','The Far Journey',2.14,1.21,-15.81,180,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/FarJourneyFreeport.lua',300,'Welcome to the EQ2EMU! Hail Captain Varlos or the helmsman to access the classic Isle of Refuge.',0,3521329369,'',0,0,1,0), (28,0,'CazicThule1','cazicthule','The Temple of Cazic-Thule',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,953361327,'',0,1,1,0), (29,0,'The Sanctum of Fear','cazicthule_epic01_sanctum','The Sanctum of Fear',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1429227948,'',0,1,1,0), @@ -144,37 +79,37 @@ INSERT INTO `zones` VALUES (36,0,'DrownedCaverns1','adv02_dun_drowned_caverns','The Drowned Caverns: Arena of Heroes',95.83,22.83,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2606878460,'',0,1,1,0), (37,1,'ModelDemo','commonlands','GM Model Demos',-614.67,-47.53,-239.79,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1045650867,'',0,1,1,0), (38,0,'The Tower of the Drafling','drafling_tower','The Tower of the Drafling',-2.81,0,-8.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1661815009,'',0,1,1,0), -(39,0,'EnchantedLands','enchanted','Enchanted Lands',-0.67,4.48,88.42,359.06,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/EnchantedLands.lua',300,'If you\'re seeing this, the zone is in progress! Yay!',0,692296008,'',0,1,1,0), +(39,0,'EnchantedLands','enchanted','Enchanted Lands',-0.67,4.48,88.42,359.06,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/EnchantedLands.lua',300,'If you''re seeing this, the zone is in progress! Yay!',0,692296008,'',0,1,1,0), (40,0,'TangledWeeds','enchanted_mini01','Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2125525214,'',0,1,1,0), (41,0,'Everfrost','everfrost','Everfrost ',-40.27,-1.5,-1183.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Everfrost.lua',300,'',0,2971640549,'',0,1,1,0), -(42,0,'MiragulsMenagerie','everfrost_epic01_menagerie','Miragul\'s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1758894691,'',0,1,1,0), +(42,0,'MiragulsMenagerie','everfrost_epic01_menagerie','Miragul''s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1758894691,'',0,1,1,0), (45,0,'Haven','exile_city','Haven ',-50,-82.8,-145.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3194957246,'',0,1,1,0), -(46,10,'Majdul','exp01_cty_majdul','Maj\'Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,247471241,'',1,1,1,0), -(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj\'Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1297812899,'',0,1,1,0), -(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj\'Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2829996334,'',0,1,1,0), -(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3134471404,'',0,1,1,0), -(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4034869404,'',0,1,1,0), -(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj\'Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3517135728,'',0,1,1,0), -(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj\'Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3142330392,'',0,1,1,0), -(53,10,'Arena','exp01_cty_majdul_arena01','Maj\'Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1193689160,'',0,1,1,0), +(46,10,'Majdul','exp01_cty_majdul','Maj''Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,247471241,'',1,1,1,0), +(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj''Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1297812899,'',0,1,1,0), +(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj''Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2829996334,'',0,1,1,0), +(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj''Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3134471404,'',0,1,1,0), +(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj''Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4034869404,'',0,1,1,0), +(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj''Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3517135728,'',0,1,1,0), +(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj''Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3142330392,'',0,1,1,0), +(53,10,'Arena','exp01_cty_majdul_arena01','Maj''Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1193689160,'',0,1,1,0), (54,10,'Arena2','exp01_cty_majdul_arena02','The Arena v2',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,913624109,'',0,1,1,0), (55,10,'CourtBlades','exp01_cty_majdul_blades','The Court of the Blades',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2914789014,'',0,1,1,0), (56,10,'CourtCoin','exp01_cty_majdul_coin','The Court of the Coin',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4244223063,'',0,1,1,0), (57,10,'LibraryLight','exp01_cty_majdul_library','The Library of Light',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,520408650,'',0,1,1,0), (58,10,'TowerMoon','exp01_cty_majdul_moon','The Tower of the Moon',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1392070889,'',0,1,1,0), (59,10,'CourtTears','exp01_cty_majdul_tears','The Court of Tears',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2026106351,'',0,1,1,0), -(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj\'Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3952194529,'',0,1,1,0), +(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj''Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3952194529,'',0,1,1,0), (61,10,'CleftsRujark','exp01_dun_clefts_of_rujark','The Clefts of Rujark',147.16,-7.76,-90.58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4246189845,'',0,1,1,0), (62,10,'LivingTombs','exp01_dun_living_tombs','The Living Tombs',-293.72,15.23,291.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1490971066,'',0,1,1,0), (63,0,'PedestalSky','exp01_dun_pedestal_of_sky','Pedestal of Sky',0,-0.5475,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_LOCKOUT_INSTANCE',43200,0,504000,0,'',300,'',0,2258780775,'',0,1,1,0), (64,10,'PoetPalace','exp01_dun_poets_palace','The Poets Palace',-94,147,39,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1460452816,'',0,1,1,0), (65,10,'ShimmeringCitadel','exp01_dun_shimmering_citadel','The Shimmering Citadel',58.94,98.3,-129.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3499314672,'',0,1,1,0), (66,10,'UnusualBottle','exp01_dun_shimmering_citadel_epic01_bottle','An Unusual Bottle',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2238196469,'',0,1,1,0), -(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master\'s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3131802491,'',0,1,1,0), +(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master''s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3131802491,'',0,1,1,0), (68,10,'SilentCity','exp01_dun_silent_city','The Silent City',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3364154278,'',0,1,1,0), (69,10,'The Fountain of Life','exp01_dun_silent_city_epic01_temple','The Fountain of Life',0,-6.71,22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,700073650,'',0,1,1,0), (70,10,'PillarsFlame','exp01_rgn_pillars_of_flame','The Pillars of Flame',1382,-147,-854,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/PillarsFlame.lua',300,'',0,464322516,'',0,1,1,0), -(71,10,'Cazel\'s Mesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel\'s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1811477067,'',0,1,1,0), +(71,10,'Cazel''s Mesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel''s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1811477067,'',0,1,1,0), (72,10,'Halls of Discipline','exp01_rgn_pillars_of_flame_epic02_discipline','Halls of Discipline',-11,-5.6,-4.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,113234899,'',0,1,1,0), (73,10,'SinkingSands','exp01_rgn_sinking_sands','The Sinking Sands',-1508.64,-214.09,-395.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SinkingSands.lua',300,'',0,1641630735,'',0,1,1,0), (74,10,'The Vault of Dust','exp01_rgn_sinking_sands_epic01_lockjaw','The Vault of Dust',-10,8,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2519335673,'',0,1,1,0), @@ -186,25 +121,25 @@ INSERT INTO `zones` VALUES (80,20,'HallsSeeing','exp02_dun_lair_of_scale_epic01_seeing','Halls of the Seeing',-628.06,159.68,-234.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2782224465,'',0,1,1,0), (81,20,'LyceumAbhorrence','exp02_dun_lair_of_scale_epic02_hallowed','The Lyceum of Abhorrence',26.73,157.56,-571.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,984615617,'',0,1,1,0), (82,20,'PalaceAwakened','exp02_dun_shrines_of_sky','Palace of the Awakened',44,0,-101,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2129470810,'',0,1,1,0), -(83,20,'The Vaults of El\'Arad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El\'Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3297558346,'',0,1,1,0), +(83,20,'The Vaults of El''Arad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El''Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3297558346,'',0,1,1,0), (84,20,'The Nest of the Great Egg','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2751514428,'',0,1,1,0), (85,20,'BarrenSky','exp02_rgn_realm_of_dawn','The Barren Sky',506.75,-114.37,10.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4122226678,'',0,1,1,0), (86,20,'exp02_rgn_realm_of_dawn_arena','exp02_rgn_realm_of_dawn_arena','Describe me in the zones table! :)',0,-2.85,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1445881603,'',0,1,1,0), (87,20,'Bonemire','exp02_rgn_realm_of_night','The Bonemire',963.37,-108.17,469.1,0,-1000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2461862690,'',0,1,1,0), (88,20,'TenebrousTangle','exp02_rgn_realm_of_twilight','Tenebrous Tangle',-496.78,-60.1,-853.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3365769829,'',0,1,1,0), (89,30,'CastleMistmoore','exp03_dun_castle_mistmoore','Castle Mistmoore',81,43,-4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,715932856,'',0,1,1,0), -(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore\'s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,54440071,'',0,1,1,0), +(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore''s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,54440071,'',0,1,1,0), (91,30,'Crushbone','exp03_dun_crushbone_keep','Crushbone Keep',7,-16,-78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3963117417,'',0,1,1,0), -(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D\'Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,480928156,'',0,1,1,0), +(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D''Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,480928156,'',0,1,1,0), (93,30,'Acadechism','exp03_dun_crushbone_keep_epic02_boss','The Acadechism ',-0.52,-0.16,-12.01,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1318370063,'',0,1,1,0), (94,30,'The Estate of Unrest','exp03_dun_estate_of_unrest','The Estate of Unrest',7.91,0.3,-88.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,126000,0,'',300,'',0,1085768541,'',0,1,1,0), (95,30,'NewTunaria','exp03_dun_felwithe','New Tunaria',-1038,55,-1379,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2465751372,'',0,1,1,0), (96,30,'ThroneNewTunaria','exp03_dun_felwithe_epic01_throne','Throne of New Tunaria',-73.91,67.02,-879.01,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2494575554,'',0,1,1,0), -(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender\'s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3140052190,'',0,1,1,0), +(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender''s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3140052190,'',0,1,1,0), (98,30,'ChamberTruthbringer','exp03_dun_hollow_stump2','The Chamber of the Truthbringer',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2495251601,'',0,1,1,0), (99,30,'Kaladim','exp03_dun_kaladim','Kaladim ',5,-1,-27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2172437289,'',0,1,1,0), (100,30,'Stormguard','exp03_dun_kaladim_stormguard_hall','Stormguard Hall',157,17.5,-65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1517940891,'',0,1,1,0), -(101,30,'Klakanon','exp03_dun_klakanon','Klak\'Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,738715765,'',0,1,1,0), +(101,30,'Klakanon','exp03_dun_klakanon','Klak''Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,738715765,'',0,1,1,0), (102,30,'ClockworkMenace','exp03_dun_klakanon_epic01_menace','The Clockwork Menace Factory',132.31,22.75,-65.73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,274925249,'',0,1,1,0), (103,30,'CourtInnovation','exp03_dun_klakanon_epic02_court','Court of Innovation',-15.13,6.83,81.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2766743326,'',0,1,1,0), (104,30,'MistmooreCatacombs','exp03_dun_mistmoore_catacombs','Mistmoore Catacombs',12.99,-159.06,-109.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,263748089,'',0,1,1,0), @@ -223,7 +158,7 @@ INSERT INTO `zones` VALUES (117,30,'Steamfont','exp03_rgn_steamfont','Steamfont Mountains ',-492,125,596,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3355489122,'',0,1,1,0), (118,30,'MinesMeldrath','exp03_rgn_steamfont_epic01_mines','The Mines of Meldrath ',12.53,-0.6,-4.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3273265723,'',0,1,1,0), (119,0,'FallenGate','fallengate','Fallen Gate ',-19.57,20,149.02,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/FallenGate.lua',300,'',0,380935007,'',0,1,1,0), -(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda\'loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1848001339,'',0,1,1,0), +(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda''loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1848001339,'',0,1,1,0), (121,0,'Feerrott','feerrott','The Feerrott',110.81,-1.02,-135.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Feerrott.lua',300,'',0,1328033086,'',0,1,1,0), (122,0,'The Trembling Lagoon','feerrott_epic01_temple','The Trembling Lagoon',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,4007615914,'',0,1,1,0), (123,0,'Kugup','feerrott_epic02_froglok','The Lost Village of Kugup',-138.47,13.27,140.24,245,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Kugup.lua',300,'',0,1262464412,'',0,1,1,0), @@ -232,7 +167,7 @@ INSERT INTO `zones` VALUES (126,0,'Sprawl','fprt_adv03_sprawl','The Sprawl (Kingdom of Sky)',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Sprawl.lua',300,'',0,505391798,'',0,1,1,0), (127,0,'Ruins','fprt_adv04_ruins','The Ruins (Kingdom of Sky)',-178.54,-1,79.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,780530840,'',0,1,1,0), (128,0,'EastFreeport','fprt_east','East Freeport',-305.04,-56.07,73.57,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3673921062,'',1,1,1,0), -(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3155501257,'',0,1,1,0), +(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger''s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3155501257,'',0,1,1,0), (130,0,'fprt_epic02_a01_dungeon01','fprt_epic02_a01_dungeon01','A Musty Dungeon',0.89,-0.13,0.1,265,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4177944262,'',0,1,1,0), (131,0,'fprt_epic03_a01_dungeon02','fprt_epic03_a01_dungeon02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3101595178,'',0,1,1,0), (132,0,'DuelingChamber','fprt_epic04_a04_academy01','The Dueling Chamber',0,-0.6,1.2,0,-1000000,0,0,0,'Instanced Outdoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',15,'',0,510719646,'',0,1,1,0), @@ -240,7 +175,7 @@ INSERT INTO `zones` VALUES (134,0,'BigBend','fprt_hood01','Big Bend',-26.67,-4.64,102.43,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BigBend.lua',300,'Big Bend: Some classic quests have been rebuilt here. Freeport is a major work in progress. Play here at your own risk!',0,578827427,'',1,1,1,0), (135,0,'Stonestair','fprt_hood02','Stonestair Byway',-101.2,-4.65,-26.78,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Stonestair.lua',300,'Stonestair Byway: Some classic quests have been rebuilt here. This zone has many underlying issues. Freeport is a major work in progress. Play at your own risk!',0,202759038,'',1,1,1,0), (136,0,'TempleSt','fprt_hood03','Temple Street',-60.93,2.86,128.21,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TempleSt.lua',300,'Temple Street: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,2595880091,'',1,1,1,0), -(137,0,'BeggarsCourt','fprt_hood04','Beggar\'s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BeggarsCourt.lua',300,'Beggar\'s Court: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,3536645693,'',1,1,1,0), +(137,0,'BeggarsCourt','fprt_hood04','Beggar''s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BeggarsCourt.lua',300,'Beggar''s Court: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,3536645693,'',1,1,1,0), (138,0,'Longshadow','fprt_hood05','Longshadow Alley',-50.84,-4.67,-85.43,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Longshadow.lua',300,'Longshadow Alley: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,449901455,'',1,1,1,0), (139,0,'ScaleYard','fprt_hood06','Scale Yard',0.1,-4.5,105,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ScaleYard.lua',300,'Scale Yard: Some classic quests have been rebuilt here. Freeport is a major work in progress.Play here at your own risk!',0,3728081010,'',1,1,1,0), (140,0,'fprt_hood_epic01','fprt_hood_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1624467568,'',0,1,1,0), @@ -257,17 +192,17 @@ INSERT INTO `zones` VALUES (151,0,'Freeport4Room3','fprt_ph_3r03','a four room house, version 3',-9.5,1,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4069184774,'',0,1,1,0), (152,0,'Freeport6Room1','fprt_ph_5r01','a six room house, version 1',-3.62,-0.5,-2.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2279293680,'',0,1,1,0), (153,0,'Freeport6Room2','fprt_ph_5r02','a six room house, version 2',28.75,-0.5,5.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4249795054,'',0,1,1,0), -(154,0,'ThievesWay','fprt_sewer01','The Thieves\' Way (Kingdom of Sky)',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThievesWay.lua',300,'',0,3869765643,'',0,1,1,0), +(154,0,'ThievesWay','fprt_sewer01','The Thieves'' Way (Kingdom of Sky)',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThievesWay.lua',300,'',0,3869765643,'',0,1,1,0), (155,0,'SerpentSewer','fprt_sewer02','The Serpent Sewer ',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SerpentSewer.lua',300,'',0,2853519654,'',0,1,1,0), (156,0,'Edgewater','fprt_sewer03','Edgewater Drains',29,32,73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938776093,'',0,1,1,0), (157,0,'fprt_sewer_epic01','fprt_sewer_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4065867901,'',0,1,1,0), (158,0,'fprt_sewer_epic02','fprt_sewer_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3904734492,'',0,1,1,0), -(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2729254407,'',0,1,1,0), +(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent''s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2729254407,'',0,1,1,0), (160,0,'DarkbladeDen','fprt_sewer_epic04','The Darkblade Den of Assassins',-8.53,-0.62,12.68,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',300,300,300,0,'ZoneScripts/DarkbladeDen.lua',1,'',0,2374182736,'',0,1,1,0), (161,0,'fprt_sewer_epic05','fprt_sewer_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,867121339,'',0,1,1,0), (162,0,'fprt_sewer_epic06','fprt_sewer_epic06','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1116256801,'',0,1,1,0), (163,0,'fprt_sewer_epic07','fprt_sewer_epic07','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1321185,'',0,1,1,0), -(164,1,'FreeportCitizenshipTrialChamber','fprt_sewer_epic08','Uncovered Traitors\' Hideout',20.37,0.71,17.57,90,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',5,'',0,4027848774,'',0,1,1,0), +(164,1,'FreeportCitizenshipTrialChamber','fprt_sewer_epic08','Uncovered Traitors'' Hideout',20.37,0.71,17.57,90,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',5,'',0,4027848774,'',0,1,1,0), (165,0,'fprt_sewer_epic09','fprt_sewer_epic09','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2664820379,'',0,1,1,0), (166,0,'SouthFreeport','fprt_south','South Freeport',-175,-57,148,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,190556331,'',1,1,1,0), (167,0,'BroodLostTongue','fprt_tradeskill01','The Brood of the Lost Tongue',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4020093839,'',0,1,1,0), @@ -276,10 +211,10 @@ INSERT INTO `zones` VALUES (170,0,'PrisonGrimgadget','holdofprexus','The Prison of Admiral Grimgadget ',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1598578194,'',0,1,1,0), (171,0,'Lavastorm','lavastorm','Lavastorm ',84.73,-33.09,138.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Lavastorm.lua',300,'',0,4134789718,'',0,1,1,0), (172,0,'The Sanctum of Fire','lavastorm_epic01_sanctum','The Sanctum of Fire',-332,-80,-675,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,25894733,'',0,1,1,0), -(173,0,'Maiden\'s Gulch','lavastorm_epic02_gulch','Maiden\'s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,356037497,'',0,1,1,0), +(173,0,'Maiden''s Gulch','lavastorm_epic02_gulch','Maiden''s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,356037497,'',0,1,1,0), (174,0,'HauntedHouse','live_haunted_mansion','The Haunted House',-2.75,0,9.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3627449501,'',0,1,1,0), (175,0,'BarBrell','live_irontoes','Bar of Brell',352,-20,143,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1695982209,'',0,1,1,0), -(176,0,'Crypt of T\'Haen','mod01_dun_crypt_of_thaen','Crypt of T\'Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3148941725,'',0,1,1,0), +(176,0,'Crypt of T''Haen','mod01_dun_crypt_of_thaen','Crypt of T''Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3148941725,'',0,1,1,0), (177,0,'TombNight','mod01_dun_tombs_of_night','The Tombs of Night',116.64,-1.26,128.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1645287631,'',0,1,1,0), (178,0,'NektroposCastle','nektropos_castle','Nektropos Castle',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/NektroposCastle.lua',300,'',0,1679330818,'',0,1,1,0), (179,0,'Nektulos','nektulos','Nektulos Forest',-344.65,0.66,-1264.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Nektulos.lua',300,'',0,1475203678,'',0,1,1,0), @@ -296,16 +231,16 @@ INSERT INTO `zones` VALUES (190,0,'Zek','orcishwastes','Zek, the Orcish Wastes',509.44,-41.31,289.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Zek.lua',300,'',0,3094052578,'',0,1,1,0), (191,0,'SullonMines','orcishwastes_mini01','Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2610132812,'',0,1,1,0), (192,0,'Permafrost','permafrost','Permafrost',-5,0,-83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3961969058,'',0,1,1,0), -(193,0,'Drayek\'s Chamber','permafrost_epic01_icebound','Drayek\'s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2321145713,'',0,1,1,0), +(193,0,'Drayek''s Chamber','permafrost_epic01_icebound','Drayek''s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2321145713,'',0,1,1,0), (194,0,'CryptVox','permafrost_epic02_crypt','The Crypt of Vox',-2.49,10.63,-404.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1626179814,'',0,1,1,0), (195,1,'Oakmyst','qey_adv01_oakmyst','Oakmyst Forest (Kingdom of Sky)',1093.17,-10.15,-382.08,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Oakmyst.lua',300,'Oakmyst: Monster abilities & HP values in progress. Side quests complete. TODO: Complete main questline scripting. TODO: Harvest node control. Post bugs of existing quests on Discord.',0,4215822688,'',0,1,1,0), (196,20,'ForestRuins','qey_adv02_ruins','The Forest Ruins (Kingdom of Sky)',897,-14.5,-575,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ForestRuins.lua',300,'Forest Ruins: Monster abilities & HP values in progress. Side quests complete. TODO: Complete main questline scripting. Post bugs of existing quests on Discord.',0,1855488194,'',0,1,1,0), (197,20,'CavesKoS','qey_adv03_caves','The Caves (Kingdom of Sky)',1.5,3.62,-23.42,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Caves.lua',300,'Caves: Monster HP values in place. TODO: Main questline & Mob abilities. Post bugs of existing quests on Discord.',0,2601398236,'',0,1,1,0), (198,20,'PeatBog','qey_adv04_bog','The Peat Bog (Kingdom of Sky)',561.65,-27.41,417.99,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/PeatBog.lua',300,'Peat Bog: Monster abilities in progress. Main questline needs testing. Post bugs of existing quests on Discord.',0,32653985,'',0,1,1,0), (199,0,'DownBelow','qey_catacomb01','The Down Below (Kingdom of Sky)',-195.98,-0.1,-200.16,0,-1000000,1.1,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/DownBelow.lua',300,'DownBelow: Monster abilities in progress. Side quests complete. Post bugs of existing quests on Discord.',0,2145814903,'',0,1,1,0), -(200,0,'VerminSnye_KoS','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2670803123,'',0,1,1,0), +(200,0,'VerminSnye_KoS','qey_catacomb02','Vermin''s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2670803123,'',0,1,1,0), (201,0,'CryptBetrayal','qey_catacomb03','The Crypt of Betrayal ',120.88,7.02,-49.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,964742035,'',0,1,1,0), -(202,0,'CrowsTomb','qey_catacomb_epic01','Crow\'s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2271733143,'',0,1,1,0), +(202,0,'CrowsTomb','qey_catacomb_epic01','Crow''s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2271733143,'',0,1,1,0), (203,0,'ADecrepitCrypt','qey_catacomb_epic02','A Decrepit Crypt',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',5400,0,259200,0,'',10,'',0,1907479580,'',0,1,1,0), (204,0,'ScarabHive','qey_catacomb_epic03','The Deathly Scarab Hive ',-20,3.37,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1044089428,'',0,1,1,0), (205,0,'qey_catacomb_epic04','qey_catacomb_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3211469419,'',0,1,1,0), @@ -315,13 +250,13 @@ INSERT INTO `zones` VALUES (209,0,'StarcrestBank','qey_epic02_village02_bank','Starcrest: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1552498994,'',0,1,1,0), (211,0,'WillowWoodBank','qey_epic04_village05_bank','Willow Wood: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2824516912,'',0,1,1,0), (212,0,'qey_epic05_village06_scribe','qey_epic05_village06_scribe','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,730617311,'',0,1,1,0), -(213,0,'Cusader_IrontoeInn','qey_epic06_p12_irontoes','Brigand\'s Hideout',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Crusader class quest',0,1053477178,'',0,1,1,0), +(213,0,'Cusader_IrontoeInn','qey_epic06_p12_irontoes','Brigand''s Hideout',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Crusader class quest',0,1053477178,'',0,1,1,0), (214,1,'TroubledHaunt','qey_epic07_p08_sneeds','The Troubled Haunt',2.37,-0.33,2.8,71,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/TroubledHaunt.lua',300,'',0,2375380469,'',0,1,1,0), -(215,1,'WayfarersRest','qey_epic08_p06_voleens','Wayfarer\'s Rest',0,0,0,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/WayfarersRest.lua',300,'',0,998680089,'',0,1,1,0), +(215,1,'WayfarersRest','qey_epic08_p06_voleens','Wayfarer''s Rest',0,0,0,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/WayfarersRest.lua',300,'',0,998680089,'',0,1,1,0), (216,0,'qey_epic09_l02_steel','qey_epic09_l02_steel','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864565992,'',0,1,1,0), -(217,0,'SummonersTest','qey_epic10_p01_bank','The Summoner\'s Test',-1.78,-0.34,-5.85,185,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'Summoner Class Trial',0,1714285425,'',0,0,1,0), +(217,0,'SummonersTest','qey_epic10_p01_bank','The Summoner''s Test',-1.78,-0.34,-5.85,185,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'Summoner Class Trial',0,1714285425,'',0,0,1,0), (218,1,'BurningAbode','qey_epic11_l10_arbor','Burning Abode',6.94,-0.2,3.21,348,-1000000,0,0,0,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/qey_epic11_l10_arbor.lua',300,'',0,2535452508,'',0,1,1,0), -(219,1,'BrawlersDojo','qey_epic12_l08_sanctum','Brawler\'s Dojo',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BrawlersDojo.lua',300,'',0,683658674,'',0,1,1,0), +(219,1,'BrawlersDojo','qey_epic12_l08_sanctum','Brawler''s Dojo',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BrawlersDojo.lua',300,'',0,683658674,'',0,1,1,0), (220,0,'QeynosMageTower','qey_epic13_l04_towers','Qeynos: Mage Tower',719,48,114,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,374794994,'',0,1,1,0), (221,0,'QeynosHarbor','qey_harbor','Qeynos Harbor',999.14,-25.79,27.04,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/QeynosHarbor.lua',300,'Qeynos Harbor: Most Quests rebuilt & Housing is in progress. TODO: Betrayal Quests. Report bugs/issues on Discord!',0,1739788496,'',1,1,1,0), (222,0,'NorthQeynos','qey_north','North Qeynos',267.77,-21.55,-19.88,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NorthQeynos.lua',300,'North Qeynos: Quests rebuilt & Housing is in progress. TODO: Faction Writs. Report bugs/issues on Discord!',0,1841518510,'',1,1,1,0), @@ -346,18 +281,18 @@ INSERT INTO `zones` VALUES (241,0,'rivervale_epic02_ph02','rivervale_epic02_ph02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,897144292,'',0,1,1,0), (242,0,'Runnyeye','runnyeye','Runnyeye',-58,0.11,57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Runnyeye.lua',300,'',0,2485707951,'',0,1,1,0), (243,0,'The Chamber of Rulgax','runnyeye_epic01_eye','The Chamber of Rulgax',65.43,-34.31,192.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1805900580,'',0,1,1,0), -(244,0,'The Overlord\'s Throne Room','runnyeye_epic02_goblin','The Overlord\'s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2587316584,'',0,1,1,0), -(245,0,'SolEye','solusekseye','Solusek\'s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1322389444,'',0,1,1,0), -(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen\'s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3381789812,'',0,1,1,0), +(244,0,'The Overlord''s Throne Room','runnyeye_epic02_goblin','The Overlord''s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2587316584,'',0,1,1,0), +(245,0,'SolEye','solusekseye','Solusek''s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1322389444,'',0,1,1,0), +(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen''s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3381789812,'',0,1,1,0), (247,0,'The Bastion of Flames','solusekseye_epic02_bastion','The Bastion of Flames',-147.93,-414.98,-290.9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,216735829,'',0,1,1,0), (248,0,'The Oratorium of Thyr','solusekseye_epic03_thyr','The Oratorium of Thyr',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3712382977,'',0,1,1,0), (249,0,'ThunderingSteppes','steppes','The Thundering Steppes',-606.14,-23.11,-402.91,268.76,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThunderingSteppes.lua',300,'',0,1442587250,'',0,1,1,0), (250,0,'The Cove of Decay','steppes_epic01_cove','The Cove of Decay',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,199981466,'',0,1,1,0), -(251,0,'PirateStash','steppes_mini01','A Pirate\'s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2597747579,'',0,1,1,0), +(251,0,'PirateStash','steppes_mini01','A Pirate''s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2597747579,'',0,1,1,0), (252,0,'thunderdome','thunderdome','Thunderdome',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2770022842,'',0,1,1,0), -(253,0,'QueensColony','tutorial_island02','Queen\'s Colony',-17.24,-5.4,223,0,-1000000,3.75,0,0,'Outdoor',0,0,0,0,0,0,1,'NONE',0,0,0,0,'ZoneScripts/QueensColony.lua',300,'',0,235639746,'',0,1,1,0), +(253,0,'QueensColony','tutorial_island02','Queen''s Colony',-17.24,-5.4,223,0,-1000000,3.75,0,0,'Outdoor',0,0,0,0,0,0,1,'NONE',0,0,0,0,'ZoneScripts/QueensColony.lua',300,'',0,235639746,'',0,1,1,0), (254,0,'SourceEvil','tutorial_island02_epic01','The Source of Evil',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_LOCKOUT_INSTANCE',0,0,0,0,'',300,'',0,1139089258,'',0,1,1,0), -(255,0,'MizansCellar','tutorial_island02_epic02','Mizan\'s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,853356513,'',0,1,1,0), +(255,0,'MizansCellar','tutorial_island02_epic02','Mizan''s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,853356513,'',0,1,1,0), (256,0,'RuinsVarsoon','varsoon','The Ruins of Varsoon',95,17.9,-96.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,783825492,'',0,1,1,0), (257,0,'Chamber of Immortality','vrsn_epic01_boss','Chamber of Immortality',203.16,-12.14,138.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,3431125307,'',0,1,1,0), (258,0,'WailingCaves','wailingcaves','The Wailing Caves',-103,-33,-138,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3367326908,'',0,1,1,0), @@ -369,21 +304,21 @@ INSERT INTO `zones` VALUES (264,40,'FensNathsar','exp04_rgn_fens_of_nathsar','Fens of Nathsar',489.5,12.6,1509.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,189371831,'',0,1,1,0), (265,40,'JarsathWastes','exp04_rgn_jarsath_wastes','Jarsath Wastes',-1057,-83,-560,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1721963361,'',0,1,1,0), (267,40,'Chelsith','exp04_dun_chelsith','Chelsith',-75,30.3,510,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,1080201912,'',0,1,1,0), -(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor\'s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1170290470,'',0,1,1,0), +(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor''s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1170290470,'',0,1,1,0), (270,40,'Sebilis','exp04_dun_sebilis','Sebilis',18,0,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1873729493,'',0,1,1,0), -(271,40,'Veeshan\'s Peak','exp04_dun_veeshans_peak','Veeshan\'s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,13238552,'',0,1,1,0), +(271,40,'Veeshan''s Peak','exp04_dun_veeshans_peak','Veeshan''s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,13238552,'',0,1,1,0), (272,40,'TombThuuga','exp04_dun_charasis_epic01_queens','The Tomb of Thuuga',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2482499672,'',0,1,1,0), (273,40,'Chardok','exp04_dun_chardok','Chardok',27.44,-29.78,-340.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,758372554,'',0,1,1,0), (274,40,'Gorowyn3Room','exp04_rgn_gorowyn_ph_3room','Gorowyn 3 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207940048,'',0,1,1,0), (275,40,'Gorowyn5Room','exp04_rgn_gorowyn_ph_5room','Gorowyn 5 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3852789577,'',0,1,1,0), (276,40,'The Execution Throne Room','exp04_dun_karnors_castle_epic01_pawbuster','The Execution Throne Room',-12.86,1.95,29.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1099086004,'',0,1,1,0), -(277,40,'The Protector\'s Realm','exp04_dun_sebilis_epic01_crypt','The Protector\'s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,388677814,'',0,1,1,0), +(277,40,'The Protector''s Realm','exp04_dun_sebilis_epic01_crypt','The Protector''s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,388677814,'',0,1,1,0), (278,0,'OutpostOverlord','tutorial_island02','Outpost of the Overlord',-12.43,-4.94,222.26,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,2,'NONE',0,0,0,0,'ZoneScripts/OutpostOverlord.lua',300,'',0,2331579180,'',0,1,1,0), (279,0,'Truthbringer','qey_tradeskill01','The Charter of the Truthbringer',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2254477089,'',0,1,1,0), (280,0,'Deductive','qey_tradeskill01','The Deductive Directory',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2963804548,'',0,1,1,0), (281,0,'Ironforge','qey_tradeskill01','The Ironforge Exchange',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3822793044,'',0,1,1,0), -(282,0,'Wayfarers','qey_tradeskill01','Wayfarer\'s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3109275695,'',0,1,1,0), -(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller\'s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2442508618,'',0,1,1,0), +(282,0,'Wayfarers','qey_tradeskill01','Wayfarer''s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3109275695,'',0,1,1,0), +(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller''s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2442508618,'',0,1,1,0), (284,0,'The Cove of Decay: A Treaty for Treasure','steppes_epic01_cove','The Cove of Decay: A Treaty for Treasure',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2833734499,'',0,1,1,0), (285,0,'CircleVaniki','fprt_tradeskill01','The Circle of Vaniki',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1207827539,'',0,1,1,0), (286,0,'Wanderlust','fprt_tradeskill01','The Ring of Wanderlust',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1815400861,'',0,1,1,0), @@ -391,48 +326,48 @@ INSERT INTO `zones` VALUES (288,0,'DarkBargainers','fprt_tradeskill01','The Dark Bargainers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2653325751,'',0,1,1,0), (289,0,'WarHagglers','fprt_tradeskill01','The War Hagglers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,87161584,'',0,1,1,0), (290,0,'NepetaCataria','fprt_tradeskill01','Nepeta Cataria',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1918315345,'',0,1,1,0), -(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter\'s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,760423874,'',0,1,1,0), +(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter''s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,760423874,'',0,1,1,0), (292,0,'Luminary','qey_tradeskill01','The Luminary Cache',8.39294,0,-10.6062,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3429099711,'',0,1,1,0), (293,0,'Runnyeye: The Gathering','runnyeye_advanced','Runnyeye: The Gathering',-93.4526,-27.4416,58.496,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3904072694,'',0,1,1,0), (294,50,'Veksar: The Invasion','exp05_dun_veksar','Veksar: The Invasion',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,3342653665,'',0,1,1,0), (295,40,'Charasis: Vault of Eternal Sleep','exp04_dun_charasis_north','Charasis: Vault of Eternal Sleep',0,0,23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,4097729086,'',0,1,1,0), -(296,40,'Charasis: Maiden\'s Chamber','exp04_dun_charasis_south','Charasis: Maiden\'s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,865256506,'',0,1,1,0), +(296,40,'Charasis: Maiden''s Chamber','exp04_dun_charasis_south','Charasis: Maiden''s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,865256506,'',0,1,1,0), (297,40,'The Temple of Kor-Sha','exp04_dun_chardok_epic01_throne','The Temple of Kor-Sha',816,-27,206,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,4104758969,'',0,1,1,0), (298,40,'Court of Korucust','exp04_dun_chardok_epic02_prison','Court of Korucust',-650,-66,204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',10800,0,19800,0,'',300,'',0,868476451,'',0,1,1,0), (299,40,'The Chamber of Destiny','exp04_dun_chelsith_epic01_behemoth','The Chamber of Destiny',192,-10,29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1536365742,'',0,1,1,0), -(300,40,'Venril Sathir\'s Lair','exp04_dun_sebilis_epic02_venril','Venril Sathir\'s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2242643152,'',0,1,1,0), -(301,40,'Trakanon\'s Lair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,157215189,'',0,1,1,0), +(300,40,'Venril Sathir''s Lair','exp04_dun_sebilis_epic02_venril','Venril Sathir''s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2242643152,'',0,1,1,0), +(301,40,'Trakanon''s Lair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon''s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,157215189,'',0,1,1,0), (302,0,'Shard of Hate','shard_of_hate','Shard of Hate',45,0.2,290,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2411297627,'',0,1,1,0), (303,40,'The Crypt of Agony','exp04_dun_sebilis_epic01_crypt','The Crypt of Agony',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,2468739761,'',0,1,1,0), -(305,0,'Ar\'Ticae\'s Lair','everfrost_epic01_menagerie','Ar\'ticae\'s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1314076501,'',0,1,1,0), -(306,0,'MaulicsStronghold','cmmn_epic01_orc','Bloodskull Valley: Maulic\'s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/BloodSkullValleyMaulicsStronghold.lua',300,'',0,859935955,'',0,1,1,0), +(305,0,'Ar''Ticae''s Lair','everfrost_epic01_menagerie','Ar''ticae''s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1314076501,'',0,1,1,0), +(306,0,'MaulicsStronghold','cmmn_epic01_orc','Bloodskull Valley: Maulic''s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/BloodSkullValleyMaulicsStronghold.lua',300,'',0,859935955,'',0,1,1,0), (307,0,'Bloodskull3','cmmn_epic01_orc','Bloodskull Valley: Righting the Scales',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1939902408,'',0,1,1,0), (308,0,'BloodSkull Valley: The Excavation Site','cmmn_epic01_orc','Bloodskull Valley: The Excavation Site',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/BloodSkullValleyExcavationSite.lua',300,'',0,3024679344,'',0,1,1,0), (309,0,'Bloodskull5','cmmn_epic01_orc','Bloodskull Valley: The Training Grounds',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Bloodskull5.lua',300,'',0,3502321105,'',0,1,1,0), (310,0,'Trembling Lagoon: Cleansing of the Cove','feerrott_epic01_temple','Trembling Lagoon: Cleansing of the Cove',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2787903198,'',0,1,1,0), (311,0,'The Cove of Decay: Epic Angler','steppes_epic01_cove','The Cove of Decay: Epic Angler',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/TheCoveOfDecayEpicAngler.lua',300,'',0,1471074570,'',0,1,1,0), (312,0,'CoveDecay3','steppes_epic01_cove','Cove of Decay: Horror Beneath the Waves',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1282445722,'',0,1,1,0), -(313,0,'Cove of Decay: Mjolni\'s Lair','steppes_epic01_cove','Cove of Decay: Mjolni\'s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,1209600,0,'',300,'',0,470947005,'',0,1,1,0), -(314,0,'IsleRefuge2','tutorial_island02','Darathar\'s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3299576964,'',0,1,1,0), +(313,0,'Cove of Decay: Mjolni''s Lair','steppes_epic01_cove','Cove of Decay: Mjolni''s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,1209600,0,'',300,'',0,470947005,'',0,1,1,0), +(314,0,'IsleRefuge2','tutorial_island02','Darathar''s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3299576964,'',0,1,1,0), (315,0,'Deathfist2','deathfist','Deathfist Citadel: Assault',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1875388458,'',0,1,1,0), (316,0,'Deathfist3','deathfist','Deathfist Citadel: Onslaught',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1654839403,'',0,1,1,0), (317,0,'Deathfist4','deathfist','Deathfist Citadel: The Arena of Zek',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2388724028,'',0,1,1,0), -(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek\'s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1179826618,'',0,1,1,0), -(319,0,'Trembling Lagoon: Dythra\'s Lair','feerrott_epic01_temple','Trembling Lagoon: Dythra\'s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,976300801,'',0,1,1,0), +(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek''s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1179826618,'',0,1,1,0), +(319,0,'Trembling Lagoon: Dythra''s Lair','feerrott_epic01_temple','Trembling Lagoon: Dythra''s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,976300801,'',0,1,1,0), (320,0,'EchoesTime1','cmmn_epic02_mage','Echoes of Time',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,710155441,'',0,1,1,0), (321,0,'The Firemyst Gully: A Gallant Confrontation','antonica_epic02_firemyst','The Firemyst Gully: A Gallant Confrontation',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1214546326,'',0,1,1,0), (322,0,'Firemyst3','antonica_epic02_firemyst','The Firemyst Gully: In Pursuit',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1877036992,'',0,1,1,0), -(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon\'s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2192926045,'',0,1,1,0), -(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash\'s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'ZoneScripts/GrimgashsLair.lua',10,'',0,2942727750,'',0,0,1,0), +(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon''s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2192926045,'',0,1,1,0), +(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash''s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'ZoneScripts/GrimgashsLair.lua',10,'',0,2942727750,'',0,0,1,0), (325,0,'IsleRefuge1','tutorial_island02','Isle of Refuge',1.56,-7.97,243.45,92,-1000000,1.05,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/IsleRefuge1.lua',300,'',0,2252985298,'',0,0,1,0), (326,0,'Icespire Summit','everfrost_epic02_icespire','Icespire Summit',-63.16,58.9,-885.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2868499059,'',0,1,1,0), (327,0,'DruidRing','antonica_epic01_vale','Imperiled Druid Ring',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4155975111,'',0,1,1,0), (328,0,'ShatteredVale3','antonica_epic01_vale','Invasion of the Vale',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3338713433,'',0,1,1,0), -(329,0,'MaidenGulchRescue','lavastorm_epic02_gulch','Maiden\'s Gulch: Rescue of the Sage',-190.18,1.6,-338.64,245,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161340403,'',0,1,1,0), +(329,0,'MaidenGulchRescue','lavastorm_epic02_gulch','Maiden''s Gulch: Rescue of the Sage',-190.18,1.6,-338.64,245,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161340403,'',0,1,1,0), (330,0,'Nektropos2','nektropos_castle','Nektropos Castle: Craftsman Errands',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1334746619,'',0,1,1,0), (331,0,'Nektropos3','nektropos_castle','Nektropos Castle: The Return',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3051981584,'',0,1,1,0), (332,0,'Nektropos4','nektropos_castle','Nektropos Castle: Tribulation',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3927417108,'',0,1,1,0), -(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith\'s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4089148686,'',0,1,1,0), +(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith''s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4089148686,'',0,1,1,0), (334,0,'ShatteredStillness','antonica_epic02_firemyst','Shattered Stillness',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3520240139,'',0,1,1,0), (335,0,'The Shattered Vale: A Bold Confrontation','antonica_epic01_vale','The Shattered Vale: A Bold Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3514726670,'',0,1,1,0), (336,0,'The Shattered Vale: Lordly Confrontation','antonica_epic01_vale','The Shattered Vale: Lordly Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,231154179,'',0,1,1,0), @@ -442,19 +377,19 @@ INSERT INTO `zones` VALUES (340,0,'CaveWonder1','enchanted_mini01','The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1409486089,'',0,1,1,0), (341,0,'CaveWonder2','enchanted_mini01','Heroic: The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3221976462,'',0,1,1,0), (342,0,'SanctumFear2','cazicthule_epic01_sanctum ','Sanctum of Fear: Chamber of the Keeper',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,507325671,'',0,1,1,0), -(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden\'s Gulch: Commune of K\'Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048492947,'',0,1,1,0), +(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden''s Gulch: Commune of K''Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048492947,'',0,1,1,0), (344,0,'The Cove of Decay: A Heroic Confrontation','steppes_epic01_cove','The Cove of Decay: A Heroic Confrontation',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2618666032,'',0,1,1,0), (345,0,'TombValor2','befallen_epic01','Tomb of Valor: Defiled',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1782317725,'',0,1,1,0), (346,0,'The Eternal Gorge: A Daring Confrontation','cmmn_epic02_mage','The Eternal Gorge: A Daring Confrontation',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2498016461,'',0,1,1,0), (347,0,'EternalGorge3','cmmn_epic02_mage','The Eternal Gorge: Tears of the Daughters',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1153144978,'',0,1,1,0), (348,0,'CircleElders','tutorial_island02_epic01','The Circle of Elders',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3366202526,'',0,1,1,0), -(349,0,'Gobblerock\'s Hideout','fprt_sewer02','Gobblerock\'s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/GobblerocksHideout.lua',300,'',0,1583063371,'',0,1,1,0), -(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller\'s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3046659043,'',0,1,1,0), -(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K\'Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2136244020,'',0,1,1,0), +(349,0,'Gobblerock''s Hideout','fprt_sewer02','Gobblerock''s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/GobblerocksHideout.lua',300,'',0,1583063371,'',0,1,1,0), +(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller''s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3046659043,'',0,1,1,0), +(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K''Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2136244020,'',0,1,1,0), (352,0,'The Lair of the Necromancer','fallengate_epic01_boss','The Lair of the Necromancer',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,196425230,'',0,1,1,0), (353,10,'LibraryLight2','exp01_cty_majdul_library','The Library of Light: Scholar Errands',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2219248866,'',0,1,1,0), (354,20,'NestGreatEgg2','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg: Outfitter Errands',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2124039412,'',0,1,1,0), -(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim\'s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,402095699,'',0,1,1,0), +(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim''s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,402095699,'',0,1,1,0), (356,0,'The QSS Bootstrutter','boat_06p_feerrott','The QSS Bootstrutter',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,3743881793,'',0,1,1,0), (357,0,'RumblerCaves','steppes_mini01','The Rumbler Caves',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4050420393,'',0,1,1,0), (358,0,'SeaBiscuit1','boat_06p_enchanted','The Sea Biscuit: Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1980603774,'',0,1,1,0), @@ -468,11 +403,11 @@ INSERT INTO `zones` VALUES (366,0,'DrownedCaverns3','adv02_dun_drowned_caverns','The Drowned Caverns: Flammable Fur',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366967768,'',0,1,1,0), (367,0,'DrownedCaverns4','adv02_dun_drowned_caverns','The Drowned Caverns: Hot Water',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,817852260,'',0,1,1,0), (368,0,'DrownedCaverns5','adv02_dun_drowned_caverns','The Drowned Caverns: Outer Grotto',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1358293133,'',0,1,1,0), -(369,0,'Sundered Splitpaw: Anvilpaw\'s Grotto','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw\'s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2952940347,'',0,1,1,0), +(369,0,'Sundered Splitpaw: Anvilpaw''s Grotto','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw''s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2952940347,'',0,1,1,0), (370,0,'Splitpaw3','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Captive Audience',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1406658297,'',0,1,1,0), (371,0,'Splitpaw4','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Crawler Nest',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2072242411,'',0,1,1,0), (372,0,'Splitpaw5','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Delving into the Darkness',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1568159668,'',0,1,1,0), -(373,0,'Sundered Splitpaw: Gladiator\'s Triumph','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator\'s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,308776385,'',0,1,1,0), +(373,0,'Sundered Splitpaw: Gladiator''s Triumph','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator''s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,308776385,'',0,1,1,0), (374,0,'Splitpaw7','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Hideout',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4160317729,'',0,1,1,0), (375,0,'Sundered Splitpaw: Trial of Harclave','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Trial of Harclave',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2940940235,'',0,1,1,0), (376,0,'Splitpaw9','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Upper Tunnels',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1849807013,'',0,1,1,0), @@ -490,53 +425,53 @@ INSERT INTO `zones` VALUES (388,0,'BefallenHalls','exp05_dun_befallen_forsaken','Befallen: Halls of the Forsaken',7.25,0.25,0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2787554569,'',0,1,1,0), (389,50,'The Ruins of Guk: Halls of the Fallen','exp05_dun_guk_upper','The Ruins of Guk: Halls of the Fallen',-33.5,0.2,12.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1343179064,'',0,1,1,0), (390,50,'The Ruins of Guk: The Lower Corridors','exp05_dun_guk_lower','The Ruins of Guk: The Lower Corridors',3.33,-2,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,367609577,'',0,1,1,0), -(391,50,'The Ruins of Guk: Ykesha\'s Outer Stronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha\'s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1823532970,'',0,1,1,0), -(392,50,'Ykesha\'s Inner Stronghold','exp05_dun_guk_stronghold_raid','Ykesha\'s Inner Stronghold',44,-10,-384,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,1609995901,'',0,1,1,0), -(393,50,'Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha','exp05_dun_korsha','Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4140986635,'',0,1,1,0), +(391,50,'The Ruins of Guk: Ykesha''s Outer Stronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha''s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1823532970,'',0,1,1,0), +(392,50,'Ykesha''s Inner Stronghold','exp05_dun_guk_stronghold_raid','Ykesha''s Inner Stronghold',44,-10,-384,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,1609995901,'',0,1,1,0), +(393,50,'Emperor Atrebe''s Laboratory: The Fabled City of Kor-sha','exp05_dun_korsha','Emperor Atrebe''s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4140986635,'',0,1,1,0), (394,50,'Veksar: The Sunken Theater','exp05_dun_veksar','Veksar: The Sunken Theater',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3065176712,'',0,1,1,0), (395,50,'MiragulEpic','exp05_dun_miragul_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,9398401,'',0,1,1,0), -(396,0,'Anathema','exp05_dun_miragul_lower','Miragul\'s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,914478188,'',0,1,1,0), -(397,0,'Crucible','exp05_dun_miragul_shard','Miragul\'s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,877807456,'',0,1,1,0), -(398,0,'ScionOfIce','exp05_dun_miragul_upper','Miragul\'s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3608846391,'',0,1,1,0), +(396,0,'Anathema','exp05_dun_miragul_lower','Miragul''s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,914478188,'',0,1,1,0), +(397,0,'Crucible','exp05_dun_miragul_shard','Miragul''s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,877807456,'',0,1,1,0), +(398,0,'ScionOfIce','exp05_dun_miragul_upper','Miragul''s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3608846391,'',0,1,1,0), (399,50,'Evernight Abbey','exp05_dun_mistmoore_abbey','Evernight Abbey',0,-0.25,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,469017869,'',0,1,1,0), -(400,50,'Zarrakon\'s Abyssal Chamber','exp05_dun_mistmoore_dragon','Zarrakon\'s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2010690328,'',0,1,1,0), +(400,50,'Zarrakon''s Abyssal Chamber','exp05_dun_mistmoore_dragon','Zarrakon''s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2010690328,'',0,1,1,0), (401,0,'MistmyrManor','exp05_dun_mistmoore_manor','Mistmyr Manor',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4049258268,'',0,1,1,0), (402,50,'Ravenscale Repository','exp05_dun_mistmoore_repository','Ravenscale Repository',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1421299292,'',0,1,1,0), (403,50,'Ward of Elements','exp05_dun_najena_atheneum','Ward of Elements',-67,-354,106,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',64800,0,604800,0,'',300,'',0,1606010574,'',0,1,1,0), (404,50,'The Deep Forge','exp05_dun_najena_forge','The Deep Forge',-0.25,0.15,24,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,111043148,'',0,1,1,0), -(405,0,'NajenasHollowTower','exp05_dun_najena_hollow','Najena\'s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4230709901,'',0,1,1,0), +(405,0,'NajenasHollowTower','exp05_dun_najena_hollow','Najena''s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4230709901,'',0,1,1,0), (406,50,'Anchor of Bazzul','exp05_dun_void_anchor','Anchor of Bazzul',-515.3,-0.6,657.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,84854578,'',0,1,1,0), (407,0,'Ferzhul','exp05_dun_void_palace','Palace of Ferzhul',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,274203338,'',0,1,1,0), (408,0,'PotAO','exp05_dun_void_palace','Palace of the Ancient One',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2935583788,'',0,1,1,0), (409,0,'Ahkzul','exp05_dun_void_pit','Obelisk of Ahkzul',546.15,6.1,-318.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2367932411,'',0,1,1,0), -(410,0,'NuRoga','exp04_dun_droga_nurga','Nu\'Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2653575693,'',0,1,1,0), +(410,0,'NuRoga','exp04_dun_droga_nurga','Nu''Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2653575693,'',0,1,1,0), (411,0,'IcyKeep1','permafrost','The Icy Keep (Easy)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2057982584,'',0,1,1,0), (412,0,'Frostfell','everfrost_frostfell','Frostfell Wonderland Village',65,-3,-1200,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3311558711,'',0,1,1,0), (413,0,'TheFuture','everfrost_frostfell','The Future',-502.92,-6,-355.49,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4130976405,'',0,1,1,0), -(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat\'s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2297313179,'',0,1,1,0), -(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle\'s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2876833616,'',0,1,1,0), -(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle\'s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4197602164,'',0,1,1,0), +(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat''s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2297313179,'',0,1,1,0), +(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle''s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2876833616,'',0,1,1,0), +(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle''s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4197602164,'',0,1,1,0), (417,30,'McScroogleHQ','exp03_dun_klakanon_epic01_menace','McScroogle Corp. HQ',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1634382156,'',0,1,1,0), (418,0,'IcyKeep2','permafrost','The Icy Keep (Hard)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,431849093,'',0,1,1,0), -(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle\'s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3301442772,'',0,1,1,0), +(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle''s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3301442772,'',0,1,1,0), (420,0,'The Firemyst Gully: Supply Shortage','antonica_epic02_firemyst','The Firemyst Gully: Supply Shortage',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',64800,0,126000,0,'',300,'',0,3010767940,'',0,1,1,0), -(421,30,'Rilgor Plegnog\'s Chambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog\'s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,1078781744,'',0,1,1,0), +(421,30,'Rilgor Plegnog''s Chambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog''s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,1078781744,'',0,1,1,0), (422,30,'The Clockwork Workshop','exp03_dun_klakanon ','The Clockwork Workshop',130,9,52,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,126000,0,'',300,'',0,1627421757,'',0,1,1,0), (423,0,'EndlessCatacombs','adv04_dun_endless','The Endless Catacombs',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2483512159,'',0,1,1,0), -(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord\'s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3243271695,'',0,1,1,0), +(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord''s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3243271695,'',0,1,1,0), (425,50,'Tomb of the Mad Crusader','exp05_dun_befallen_cavern','Tomb of the Mad Crusader',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,140494800,'',0,1,1,0), -(426,0,'The Cauldron Hollow: The Witches\' Cove','nektulos_epic01_cauldroncove','The Cauldron Hollow: The Witches\' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,590443115,'',0,1,1,0), +(426,0,'The Cauldron Hollow: The Witches'' Cove','nektulos_epic01_cauldroncove','The Cauldron Hollow: The Witches'' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,590443115,'',0,1,1,0), (427,0,'Firemyst','antonica_epic02_firemyst','The Firemyst Gully',-1189.55,-13.24,705.52,0,-1000000,0,0,0,'Instanced Outdoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'',300,'',0,1001393294,'',0,1,1,0), (428,50,'Enchanted Dryad Grotto','exp05_dun_guk_upper_epic01_cave','Enchanted Dryad Grotto',13.8052,-32.8927,-322.195,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',2102400,0,2160000,0,'',300,'',0,1520991678,'',0,1,1,0), (429,10,'PoetsPalace2','exp01_dun_poets_palace_community','Describe me in the zones table! :)',57,305,-54,95,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3656598577,'',0,1,1,0), -(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor\'s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,241278901,'',0,1,1,0), -(432,0,'KurnsTower','exp04_dun_kurns_tower','Kurn\'s Tower',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159751852,'',0,1,1,0), +(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor''s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,241278901,'',0,1,1,0), +(432,0,'KurnsTower','exp04_dun_kurns_tower','Kurn''s Tower',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159751852,'',0,1,1,0), (433,40,'MoppetShoppe','exp04_dun_sebilis_quarters','The Moppet Shoppe',-17.4,31,479.8,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1525821771,'',0,1,1,0), (434,50,'LowerGuk1','exp05_dun_guk_lower_epic01_cave','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2474119725,'',0,1,1,0), (435,0,'Mystic','live_epic_mystic','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1533911469,'',0,1,1,0), (436,0,'HauntedUnrest','live_haunted_unrest','The Estate of Unrest',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,269999116,'',0,1,1,0), (437,0,'RodcetDiety','live_rodcet_diety','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1148846749,'',0,1,1,0), -(438,0,'BuccaneersRest','befallen_epic01','The Buccaneer\'s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4085832737,'',0,1,1,0), +(438,0,'BuccaneersRest','befallen_epic01','The Buccaneer''s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4085832737,'',0,1,1,0), (439,0,'TombNight2','mod01_dun_tombs_of_night','The Tombs of Night: A Search For Answers',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2581166184,'',0,1,1,0), (440,50,'LegendsMuseum','qey_guildhall_tier1','Legends of Norrath Museum',1.13356,1,-0.742676,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4025127940,'',0,1,1,0), (441,10,'Enchanted Zygomyd Grotto','exp01_rgn_sinking_sands_epic01_lockjaw','Enchanted Zygomyd Grotto',213.457,-4.79144,-46.9508,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',212400,0,216000,0,'',300,'',0,2596566845,'',0,1,1,0), @@ -547,34 +482,34 @@ INSERT INTO `zones` VALUES (446,0,'RitePassage','fprt_epic05_a02_temple01','Rite of Passage',9.72787,1,1.13225,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3789732280,'',0,1,1,0), (447,0,'The Condemned Catacomb','qey_catacomb01','The Condemned Catacomb',-217.584,0.5,-56.58,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,539868059,'',0,1,1,0), (448,0,'PrivateLounge','qey_ph_1r01','Bar of Brell: Private Lounge',-6.21334,0.0025,-0.20449,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2145600684,'',0,1,1,0), -(449,0,'Blumbles','steppes_mini01','Blumble\'s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,2556324114,'',0,1,1,0), +(449,0,'Blumbles','steppes_mini01','Blumble''s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,2556324114,'',0,1,1,0), (450,0,'SmallHideout','tutorial_island02_epic02','a small hideout',-4.89851,-8,161.891,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1266491077,'',0,1,1,0), (451,0,'LibraryErudin','exp06_dun_erudin_erudin01','Library of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2187208939,'',0,1,1,0), (452,60,'Erudin Research Halls','exp06_dun_erudin_erudin02','Erudin Research Halls',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3855503282,'',0,1,1,0), (453,60,'Royal Palace of Erudin','exp06_dun_erudin_erudin03','Royal Palace of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,656532006,'',0,1,1,0), (454,60,'The Vigilant: Final Destruction','exp06_dun_sentinal','The Vigilant: Final Destruction',0,72.5,-179,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3639764601,'',0,1,1,0), (455,60,'TheHole','exp06_dun_thehole','The Hole',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4112900241,'',0,1,1,0), -(456,60,'Demitrik\'s Bastion','exp06_dun_thehole_wing1','Demitrik\'s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,30053559,'',0,1,1,0), +(456,60,'Demitrik''s Bastion','exp06_dun_thehole_wing1','Demitrik''s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,30053559,'',0,1,1,0), (457,60,'The Outer Vault','exp06_dun_thehole_wing2','The Outer Vault',-48,102,-37,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2780385483,'',0,1,1,0), -(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit\'s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,356553526,'',0,1,1,0), +(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit''s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,356553526,'',0,1,1,0), (459,0,'LairoftheDragonQueen','exp06_dun_toxxulia_mound01','Lair of the Dragon Queen',12.9,148.77,2427.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161715072,'',0,1,1,0), (460,60,'Conservatory','exp06_dun_vastydeep01','Vasty Deep: The Conservatory',-9.24,-7,-30.71,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,954080035,'',0,1,1,0), (461,60,'AbandonedLabs','exp06_dun_vastydeep02','Vasty Deep: The Abandoned Labs',-0.89,-1.57,-1.28,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2073480066,'',0,1,1,0), (462,60,'VestigialCella','exp06_dun_vastydeep03','Vasty Deep: The Vestigial Cella',-12.9,-10,-3.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1092966222,'',0,1,1,0), -(463,60,'Perah\'Celsis\' Abominable Laboratory','exp06_dun_vastydeep02','Perah\'Celsis\' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2839605531,'',0,1,1,0), +(463,60,'Perah''Celsis'' Abominable Laboratory','exp06_dun_vastydeep02','Perah''Celsis'' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2839605531,'',0,1,1,0), (464,60,'StonebruntHighlands','exp06_rgn_odus_north','The Stonebrunt Highlands',-481.65,370.17,1513.09,45,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2369118810,'',0,1,1,0), (465,60,'SunderedFrontier','exp06_rgn_odus_south','The Sundered Frontier',2213.66,-210.17,2469.19,90,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,168443344,'',0,1,1,0), (466,60,'exp06_rgn_odus_south_epic01_panda','exp06_rgn_odus_south_epic01_panda','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1822966042,'',0,1,1,0), (467,0,'BG_Ganak','battleground_ctf','Battlefield of Ganak',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2342906850,'',0,1,1,0), (468,0,'BG_Smugglers','battleground_nodes','Smugglers Den',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2939036782,'',0,1,1,0), -(469,0,'BG_Gears','battleground_relic01','Gears of Klak\'Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1385404002,'',0,1,1,0), +(469,0,'BG_Gears','battleground_relic01','Gears of Klak''Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1385404002,'',0,1,1,0), (470,61,'FrostfangSea','halas','Frostfang Sea',-229.542,34.6202,-725.879,0,-1000000,0,1,80,'Outdoor',0,1,0,0,0,0,32,'NONE',0,0,0,0,'ZoneScripts/FrostfangSea.lua',300,'',0,2507711489,'',1,1,1,0), (472,0,'cmmn_epic01_orc','cmmn_epic01_orc','KaljanarsLair',-8.26939,-46,733.468,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4069880593,'',0,1,1,0), (473,0,'fprt_ph_5r01','fprt_ph_5r01','the Thexian Meeting',-3.87325,-0.497519,-2.07887,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1293060228,'',0,1,1,0), (474,0,'solusekseye_epic03_thyr','solusekseye_epic03_thyr','The Oratorium of Thyr: Deserted',-205.749,-617,-189.786,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1724471149,'',0,1,1,0), (475,0,'MurkwaterNook','fprt_sewer_epic03','The Murkwater Nook',3.80113,0.5,-17.8084,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2224401447,'',0,1,1,0), (476,0,'ShatteredStillnessEpic','antonica_epic02_firemyst','Shattered Stillness: Epic',-1187.3,-1187.3,-1187.3,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,19001049,'',0,1,1,0), -(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate\'s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2609903017,'',0,1,1,0), +(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate''s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2609903017,'',0,1,1,0), (478,0,'RumblerCavesHeroic','steppes_mini01','Heroic: Rumbler Caves',955.493,-22,1192.34,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2259272861,'',0,1,1,0), (479,0,'HollowHedge','live_haunted_cauldroncove','The Hollow Hedge',884.89,7.44304,-476.69,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,697470619,'',0,1,1,0), (480,70,'GreatDivide','exp07_rgn_great_divide','Great Divide',-1422.07,-510.27,-2275.1,35.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2941246892,'',0,1,1,0), @@ -584,24 +519,24 @@ INSERT INTO `zones` VALUES (484,70,'Iceshard Keep','exp07_dun_kael_iceshard_keep','Iceshard Keep',-563.9,73.3,-25.17,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1810346508,'',0,1,1,0), (485,70,'The Temple of Rallos Zek','exp07_dun_kael_temple_zek','The Temple of Rallos Zek',-618.54,76.9,-1110.49,20,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1762357401,'',0,1,1,0), (486,70,'Throne of Storms','exp07_dun_kael_throne','Throne of Storms',153.28,20.17,1614.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3130420047,'',0,1,1,0), -(487,0,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3842703654,'',0,1,1,0), +(487,0,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc''s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3842703654,'',0,1,1,0), (488,70,'Tower of Frozen Shadow: Shadowed Corridors','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Shadowed Corridors',2,-2,18.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2210333543,'',0,1,1,0), (489,70,'Forgotten Pools','exp07_dun_velks_forgotten_pools','Forgotten Pools',0,0,0,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2467121774,'',0,1,1,0), (490,70,'TheAscent','exp07_dun_velks_the_ascent','The Ascent',-448,115,-285,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,737340354,'',0,1,1,0), (491,0,'ShatteredVale6','antonica_epic01_vale_gu54','Describe me in the zones table! :)',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1733527721,'',0,1,1,0), -(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4258451007,'',0,1,1,0), +(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth''s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4258451007,'',0,1,1,0), (493,0,'PotAOTradeskill','exp05_dun_void_palace_crafter','Palace of the Ancient One (Tradeskill)',-145,2,-3,268,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2629848730,'',0,1,1,0), (494,60,'Underfoot Depths','exp06_dun_thehole_raid','Underfoot Depths',0,32,-63,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,3937794584,'',0,1,1,0), -(495,70,'Sullon\'s Spire','exp07_dun_drunder_sullon_spire','Sullon\'s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1889953215,'',0,1,1,0), -(496,70,'Tallon\'s Stronghold','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2477908764,'',0,1,1,0), -(497,70,'Vallon\'s Tower','exp07_dun_drunder_vallon_tower','Vallon\'s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159879625,'',0,1,1,0), +(495,70,'Sullon''s Spire','exp07_dun_drunder_sullon_spire','Sullon''s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1889953215,'',0,1,1,0), +(496,70,'Tallon''s Stronghold','exp07_dun_drunder_tallon_stronghold','Tallon''s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2477908764,'',0,1,1,0), +(497,70,'Vallon''s Tower','exp07_dun_drunder_vallon_tower','Vallon''s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159879625,'',0,1,1,0), (498,70,'OuterKael','exp07_dun_kael_drakkel_hub','Outer Kael',-2135,57.36,-1200,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2607747591,'',0,1,1,0), (499,70,'Thurgadin','exp_07_thurgadin_velious','Thurgadin, City of the Coldain',985,-308,367,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3581557641,'',0,1,1,0), (501,61,'Halas1Room','halas_ph_1room','Halas One Room Housing',51.16,49.48,138.12,179,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,802201839,'',0,1,1,0), (502,61,'Halas3Room','halas_ph_3room','New Halas Three Room Housing',34.38,49.48,-3.1,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2463865530,'',0,1,1,0), (503,61,'Halas5Room','halas_ph_5room','New Halas Five Room Housing',33.78,49.48,-154.57,270,-1000000,0,0,0,'Player Housing',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3741636536,'',0,1,1,0), (504,0,'SummerHome','home_everfrost_menagerie','Everfrost Summer Home',-105,-23,-349,185,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1539707629,'',0,1,1,0), -(505,10,'VacationSuite','home_majdul_bottle','Maj\'Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1540644614,'',0,1,1,0), +(505,10,'VacationSuite','home_majdul_bottle','Maj''Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1540644614,'',0,1,1,0), (506,10,'PersonalLibrary','home_majdul_library','Personal Library',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3298151362,'',0,1,1,0), (507,0,'OperaHouse','home_neriak_opera','Private Opera House',-665,29,-25,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,834698580,'',0,1,1,0), (508,0,'Dojo','home_qeynos_dojo','Personal Dojo',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3841277655,'',0,1,1,0), @@ -627,14 +562,14 @@ INSERT INTO `zones` VALUES (532,0,'Icy Keep: Retribution','permafrost_frostfell','Icy Keep: Retribution',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',432000,0,777600,0,'',300,'',0,2780150587,'',0,1,1,0), (533,0,'Acquisition','nektulos_mini01','Acquisition',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,233219426,'',0,1,1,0), (534,0,'QinLo1','adv04_dun_endless','Trial of Qin Lo: Solo',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3975257256,'',0,1,1,0), -(535,80,'ChampionsRespite','battleground_lobby','Champion\'s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'',0,1,1,0), +(535,80,'ChampionsRespite','battleground_lobby','Champion''s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'',0,1,1,0), (536,80,'TenebrousRefuge','home_floating_island','Tenebrous Island Refuge',-41.4936,-1.48073,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,912708921,'',0,1,1,0), -(537,80,'Sleeper\'s Tomb: the Awakening','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1230803961,'',0,1,1,0), -(538,80,'Sleeper\'s Tomb: Unearthed [Raid]','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2882959844,'',0,1,1,0), -(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'',0,1,1,0), -(540,80,'Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2478476480,'',0,1,1,0), -(541,80,'Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,802506635,'',0,1,1,0), -(542,80,'Sleeper\'s Tomb: a Temporal Leap [Raid]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,381322104,'',0,1,1,0), +(537,80,'Sleeper''s Tomb: the Awakening','exp08_dun_sleepers_tomb','Sleeper''s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1230803961,'',0,1,1,0), +(538,80,'Sleeper''s Tomb: Unearthed [Raid]','exp08_dun_sleepers_tomb_destroyed','Sleeper''s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2882959844,'',0,1,1,0), +(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper''s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'',0,1,1,0), +(540,80,'Sleeper''s Tomb: The Forgotten Catacombs [Advanced Solo]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2478476480,'',0,1,1,0), +(541,80,'Sleeper''s Tomb: The Forgotten Catacombs [Heroic]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,802506635,'',0,1,1,0), +(542,80,'Sleeper''s Tomb: a Temporal Leap [Raid]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,381322104,'',0,1,1,0), (543,70,'Temple of Rallos Zek: Foundations of Stone','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone',-603.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1789287425,'',0,1,1,0), (544,70,'Temple of Rallos Zek: Foundations of Stone [Challenge]','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone [Challenge]',-621.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,80646324,'',0,1,1,0), (545,70,'Throne of Storms: Hall of Legends','exp07_dun_kael_throne','Throne of Storms: Hall of Legends',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,4105157939,'',0,1,1,0), @@ -644,12 +579,12 @@ INSERT INTO `zones` VALUES (549,70,'FortressDrunder','exp07_dun_drunder_fortress','The Fortress of Drunder',-2.1,-0.21,23.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,611439565,'',0,1,1,0), (550,0,'The Deserted Mine','orcishwastes_mini01','The Deserted Mine',382.376,8,-95.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3133936487,'',0,1,1,0), (551,70,'Tower of Frozen Shadow: Umbral Halls','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Umbral Halls',-68.33,293.5,-7.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4253130900,'',0,1,1,0), -(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl\'Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'',0,1,1,0), +(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl''Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'',0,1,1,0), (553,0,'HiddenVillage','feerrott_epic02_froglok','The Hidden Village of Kugup',-140.131,14,142.309,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/HiddenVillage.lua',300,'',0,3407712702,'',0,1,1,0), -(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al\'Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'',0,1,1,0), +(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al''Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'',0,1,1,0), (555,0,'The Gates of Ahket Aken','exp01_dun_living_tombs','The Gates of Ahket Aken',-633.189,5,371.191,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,717528266,'',0,1,1,0), (556,0,'A Meeting of the Minds','feerrott_epic01_temple','A Meeting of the Minds',-905.273,-8,220.462,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/MeetingOfTheMinds.lua',300,'',0,1842738791,'',0,1,1,0), -(557,0,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw\'s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3439770280,'',0,1,1,0), +(557,0,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw''s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3439770280,'',0,1,1,0), (558,0,'Meditation','adv04_tower_cave','The Mediation Chamber',-13.8528,0.0025,-2.60848,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3350653370,'',0,1,1,0), (559,80,'Freeport','freeport_combined','The City of Freeport',-232.028,-56.065,172.565,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Freeport.lua',300,'',0,716469914,'',0,1,1,0), (560,0,'Nizara','adv04_dun_endless','Nizara, City of the Nayad',-48.9533,-89,-8.30118,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,729645890,'',0,1,1,0), @@ -668,44 +603,44 @@ INSERT INTO `zones` VALUES (573,0,'LinVo1','adv04_dun_endless','Trial of Lin Vo: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3776901092,'',0,1,1,0), (574,0,'LinVo2','adv04_dun_endless','Trial of Lin Vo: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3124172364,'',0,1,1,0), (575,0,'QinLo2','adv04_dun_endless','Trial of Qin Lo: Heroic',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3728328101,'',0,1,1,0), -(576,0,'Munzoks','exp05_dun_void_anchor','Munzok\'s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1140436936,'',0,1,1,0), +(576,0,'Munzoks','exp05_dun_void_anchor','Munzok''s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1140436936,'',0,1,1,0), (577,0,'CommuneKDal','lavastorm_epic02_gulch','Commune of K`Dal',-189.774,4,-338.747,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,603402304,'',0,1,1,0), (578,0,'ForgeOfAges','lavastorm_epic01_sanctum','The Infernal Forge of Ages',-313.356,-48,-744.563,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1977557393,'',0,1,1,0), (584,70,'ThurgadinGrandHall','thurgadin_prestige_home','Thurgadin Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1249872435,'',0,1,1,0), (585,70,'Crystalline Breaks','exp07_dun_crystalcavern','Crystalline Breaks',23.9496,-33,92.1147,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,396208633,'',0,1,1,0), (586,70,'Hold of Rime: The Ascent','exp07_dun_velks_the_ascent','Hold of Rime: The Ascent',1.28,-5,-2.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,941265492,'',0,1,1,0), (587,70,'Hold of Rime: The Fortress Spire','exp07_dun_kraytocs_fortress','Hold of Rime: The Fortress Spire',-53.72,1,-25.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1872281253,'',0,1,1,0), -(588,0,'KraytocsFortressHardMode','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,122053753,'',0,1,1,0), +(588,0,'KraytocsFortressHardMode','exp07_dun_kraytocs_fortress','Kraytoc''s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,122053753,'',0,1,1,0), (589,80,'qeynos_combined01','qeynos_combined01','Qeynos Capitol District',396.938,-20.9182,-175.205,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/QeynosCapitalDistrict.lua',300,'',0,1372323775,'',1,1,1,0), (590,0,'UnkemptVale','antonica_epic01_vale','The Unkempt Vale: A Lordly Confrontation',-2358.17,11,-53.2353,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938907661,'',0,1,1,0), (591,0,'The Far Pelican','boat_06p_feerrott','The Far Pelican',0.912209,2,-18.9637,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,20942085,'',0,1,1,0), -(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub\'s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'',0,1,1,0), +(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub''s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'',0,1,1,0), (593,0,'The Chamber of the Keeper','cazicthule_epic01_sanctum','The Chamber of the Keeper',0.464886,-9.9975,-179.077,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/The Chamber of the Keeper.lua',300,'',0,510571427,'',0,1,1,0), (594,0,'Gnoll Cave','enchanted_mini01','A Gnoll Cave',-340.291,3.79318,-628.419,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1114078370,'',0,1,1,0), (595,0,'The Forbidden Sepulcher','everfrost_epic02_icespire','The Forbidden Sepulcher',-75.0322,60,-893.966,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1334967479,'',0,1,1,0), -(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj\'Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1613383542,'',0,1,1,0), -(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar\'s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'',0,1,1,0), +(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj''Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1613383542,'',0,1,1,0), +(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar''s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'',0,1,1,0), (598,10,'PalaceSabaron','exp01_dun_shimmering_citadel_epic02_prism','The Palace of Sabaron',-19.5178,-6.1451,-26.9855,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,39282643,'',0,1,1,0), -(599,10,'Ancient\'s Table','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient\'s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2078528578,'',0,1,1,0), +(599,10,'Ancient''s Table','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient''s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2078528578,'',0,1,1,0), (600,10,'Scornfeather Roost','exp01_rgn_pillars_of_flame_epic01_cazel','Scornfeather Roost',2.83403,1,5.48852,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,4256169197,'',0,1,1,0), (601,10,'The Hidden Cache','exp01_rgn_sinking_sands_epic01_lockjaw','The Hidden Cache',111.747,-10,-109.677,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2054476845,'',0,1,1,0), (602,10,'The Sanctorium','exp01_rgn_sinking_sands_epic01_lockjaw','The Sanctorium',-8.69045,8,7.14274,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1063191088,'',0,1,1,0), (603,20,'LaboratoryLordVyemm','exp02_dun_halls_of_fate','The Laboratory of Lord Vyemm',-124.634,-68,451.577,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,598407856,'',0,1,1,0), (604,20,'AscentAwakened','exp02_dun_shrines_of_sky','Ascent of the Awakened',-66.3987,0.5,1.96815,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,931857537,'',0,1,1,0), (605,30,'HauntedVaults','exp03_dun_kaladim_stormguard_hall','The Haunted Vaults',157.515,18,-61.1178,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,759321130,'',0,1,1,0), -(606,40,'EmperorsAthenaeum(Duplicated?)','exp04_dun_charasis_west','Emperor\'s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3574873323,'',0,1,1,0), +(606,40,'EmperorsAthenaeum(Duplicated?)','exp04_dun_charasis_west','Emperor''s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3574873323,'',0,1,1,0), (607,40,'TempleCabilis','exp04_dun_sebilis_quarters','Lost Temple of Cabilis',109.789,-10.4975,219.764,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2450210553,'',0,1,1,0), -(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'',0,1,1,0), -(609,0,'MiragulsPlanarShard','exp05_dun_miragul_shard','Miragul\'s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3082106730,'',0,1,1,0), +(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth''s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'',0,1,1,0), +(609,0,'MiragulsPlanarShard','exp05_dun_miragul_shard','Miragul''s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3082106730,'',0,1,1,0), (610,60,'The Vigilant: Incursion','exp06_dun_sentinal','The Vigilant: Incursion',0.86,3,126.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4148131641,'',0,1,1,0), (611,60,'Vigilant3','exp06_dun_sentinal','The Vigilant: Infiltration',4.27,85,-23.32,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1121019415,'',0,1,1,0), (612,60,'The Vigilant: Rescue','exp06_dun_sentinal','The Vigilant: Rescue',0.06,62,-116.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3900422267,'',0,1,1,0), (613,60,'DarkCave','exp06_rgn_odus_north','A Dark Cave',191.68,239,255.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,70815476,'',0,1,1,0), (614,70,'Spire of Rage','exp07_dun_drunder_sullon_spire','Spire of Rage',2.12005,0,-6.13393,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2307600024,'',0,1,1,0), -(615,70,'Sullon\'s Spire [Challenge]','exp07_dun_drunder_sullon_spire','Sullon\'s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3128598947,'',0,1,1,0), -(616,70,'Citadel of V\'uul','exp07_dun_drunder_tallon_stronghold','Citadel of V\'uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3716709206,'',0,1,1,0), -(617,70,'Tallon\'s Stronghold [Challenge]','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,456754750,'',0,1,1,0), -(618,70,'Vallon\'s Tower [Challenge]','exp07_dun_drunder_vallon_tower','Vallon\'s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3784641944,'',0,1,1,0), +(615,70,'Sullon''s Spire [Challenge]','exp07_dun_drunder_sullon_spire','Sullon''s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3128598947,'',0,1,1,0), +(616,70,'Citadel of V''uul','exp07_dun_drunder_tallon_stronghold','Citadel of V''uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3716709206,'',0,1,1,0), +(617,70,'Tallon''s Stronghold [Challenge]','exp07_dun_drunder_tallon_stronghold','Tallon''s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,456754750,'',0,1,1,0), +(618,70,'Vallon''s Tower [Challenge]','exp07_dun_drunder_vallon_tower','Vallon''s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3784641944,'',0,1,1,0), (619,70,'Elements of War','exp07_dun_plane_of_war','Elements of War',-61.5,102,-104.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3104613921,'',0,1,1,0), (620,70,'Elements of War [Challenge]','exp07_dun_plane_of_war','Elements of War [Challenge]',-60.5,102,-101.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2562014133,'',0,1,1,0), (621,70,'PlaneWar','exp07_dun_plane_of_war','Plane of War',-60.7,56,818.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4064403794,'',0,1,1,0), @@ -713,8 +648,8 @@ INSERT INTO `zones` VALUES (623,80,'WitheredLands','exp08_rgn_withered_lands','The Withered Lands',-555.08,-685.734,367.063,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1535573742,'',0,1,1,0), (624,90,'Chelsith: The Ancient Vault','exp09_dun_deepchelsith','Chelsith: The Ancient Vault',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2809552448,'',0,1,1,0), (625,90,'Chelsith: The Ancient Vault [Advanced Solo]','exp09_dun_deepchelsith','Chelsith: The Ancient Vault [Advanced Solo]',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2085057283,'',0,1,1,0), -(626,90,'Harrow\'s End (Raid)','exp09_dun_drinals_castle','Harrow\'s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1655488815,'',0,1,1,0), -(627,90,'Harrow\'s End: Baleful Dominion (Heroic)','exp09_dun_drinals_castle','Harrow\'s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,988708542,'',0,1,1,0), +(626,90,'Harrow''s End (Raid)','exp09_dun_drinals_castle','Harrow''s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1655488815,'',0,1,1,0), +(627,90,'Harrow''s End: Baleful Dominion (Heroic)','exp09_dun_drinals_castle','Harrow''s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,988708542,'',0,1,1,0), (628,90,'Dreadcutter','exp09_dun_drinals_ferry','The Dreadcutter',-6.17,24,74.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,302382115,'',0,1,1,0), (629,90,'The Dreadcutter [Advanced Solo]','exp09_dun_drinals_ferry','The Dreadcutter [Advanced Solo]',-6.29,24,74.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1764171761,'',0,1,1,0), (630,90,'AltarAbhorrence24','exp09_dun_temple_of_faceless','Altar of Abhorrence (Raid)',-405.79,2,464.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,324758579,'',0,1,1,0), @@ -723,36 +658,36 @@ INSERT INTO `zones` VALUES (633,90,'Throne of Fear (Heroic)','exp09_dun_throne_of_fear','Throne of Fear (Heroic)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3593629100,'',0,1,1,0), (634,90,'Throne of Fear: Ascension (Advanced Solo)','exp09_dun_throne_of_fear','Throne of Fear: Ascension (Advanced Solo)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,99545403,'',0,1,1,0), (635,90,'ThroneFear2','exp09_dun_throne_of_fear','Throne of Fear: The Fear Gate',210.733,72.34,44.4457,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3648292296,'',0,1,1,0), -(636,0,'Wurmbone\'s End','exp09_dun_wurmbones_end','Wurmbone\'s End',-16.89,-128,335.57,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3371006638,'',0,1,1,0), -(637,0,'Wurmbone\'s End [Advanced Solo]','exp09_dun_wurmbones_end','Wurmbone\'s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2047415502,'',0,1,1,0), +(636,0,'Wurmbone''s End','exp09_dun_wurmbones_end','Wurmbone''s End',-16.89,-128,335.57,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3371006638,'',0,1,1,0), +(637,0,'Wurmbone''s End [Advanced Solo]','exp09_dun_wurmbones_end','Wurmbone''s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2047415502,'',0,1,1,0), (638,90,'WurmboneCrag','exp09_dun_wurmbone_gulch','Wurmbone Crag',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,4070843496,'',0,1,1,0), (639,90,'WurmboneCrag1','exp09_dun_wurmbone_gulch','Wurmbone Crag [Advanced Solo]',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1585901758,'',0,1,1,0), (640,90,'EidolonJungle','exp09_rgn_eidolon_jungle','The Eidolon Jungle',-2159.75,222.393,768.29,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,545027572,'',0,1,1,0), (641,90,'ObolPlains','exp09_rgn_plains_of_obol','Obol Plains',64.8961,13.5217,965.592,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126142372,'',0,1,1,0), (642,0,'The Vault of the Fallen','fallengate_epic01_boss','The Vault of the Fallen',35.3134,-26.21,-189.683,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3181807316,'',0,1,1,0), -(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'',0,1,1,0), +(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger''s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'',0,1,1,0), (644,0,'BigBend2','fprt_hood01','Big Bend: Sanctum of Spirits',-4.04,3,-69.27,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366221557,'',1,1,1,0), (645,0,'StonestairByway2','fprt_hood02','Stonestair Byway: The Animus Corridors',9.07333,-4,-101.943,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4205698383,'',1,1,1,0), (646,0,'TempleStreet2','fprt_hood03','Temple Street: Vault of Necromechanica',17.7,3.5,23.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1757098077,'',1,1,1,0), (647,0,'BeggarsCourt2','fprt_hood04','SweatStainedCobbles',67.1062,-6.5,112.909,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1229760122,'',1,1,1,0), (648,0,'LongshadowAlley2','fprt_hood05','Longshadow Alley: Daeneth Cloister',13.8144,3.5,74.3103,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2777048224,'',1,1,1,0), -(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors\' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'',1,1,1,0), +(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors'' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'',1,1,1,0), (650,0,'Court','home_citadel','Court',98.3708,146.589,-58.8835,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864808754,'',0,1,1,0), (651,0,'FelwitheMansion','home_felwithe_throne','Felwithe Mansion',-76.8586,69.2698,-888.608,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2163020640,'',0,1,1,0), (652,0,'ArcaneAcademy','home_freeport','Arcane Academy',-5.84555,-6.23708,-123.799,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2085328324,'',0,1,1,0), (653,0,'TowerofKnowledge','home_magetower','Tower of Knowledge',-19.8019,-1.08077,-0.287789,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,979361544,'',0,1,1,0), -(654,10,'AstronomersTower','home_majdul_moon','Maj\'Dul Astronomer\'s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2077481292,'',0,1,1,0), +(654,10,'AstronomersTower','home_majdul_moon','Maj''Dul Astronomer''s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2077481292,'',0,1,1,0), (655,0,'PersonalPlanetarium','home_poets_pedestal','Personal Planetarium',-48.9755,-0.570557,-0.313724,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2895880348,'',0,1,1,0), (656,0,'StormTowerIsle','home_stormy_isle','Storm Tower Isle',35.6977,44.7829,-101.576,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,457594060,'',0,1,1,0), (657,0,'SecludedSanctum','home_sullon_spire','Secluded Sanctum',117.699,356.786,-54.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2665644280,'',0,1,1,0), (658,0,'UncannyEstate','home_unrest','Uncanny Estate',-0.011612,-0.064752,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2261834051,'',0,1,1,0), (659,0,'ResearchSanctum','home_vasty_library','Research Sanctum',21.2437,-14.9975,-383.902,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2580496839,'',0,1,1,0), (660,90,'qeynos_combined02','qeynos_combined02','Qeynos Province District',819.286,-23.3299,65.9943,0,-1000000,0,0,0,'Outdoor',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/qeynos_combined02.lua',300,'Welcome to Qeynos',0,4243691597,'',1,1,1,0), -(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers\' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/BuccaneersHideout.lua',300,'',0,1813992810,'',0,1,1,0), +(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers'' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/BuccaneersHideout.lua',300,'',0,1813992810,'',0,1,1,0), (662,0,'SeedTunarbos','qey_ph_3r01','The Seed of Tunarbos',0.066109,-2,7.9765,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,597408693,'',0,1,1,0), (663,0,'FightClub','qey_ph_3r03','Fight Club',1.60767,-1.99737,7.14355,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,902117370,'',0,1,1,0), (664,80,'GrandHall','thurgadin_prestige_home','Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1066222316,'',0,1,1,0), -(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar\'s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'',0,1,1,0), +(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar''s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'',0,1,1,0), (666,0,'PermafrostCrypt','permafrost_frostfell','Permafrost Crypt: Decorating Retribution',-35.4254,2.72433,-575.952,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3906013280,'',0,1,1,0), (667,0,'IcyKeep4','permafrost_frostfell','The Icy Keep (Hard)',0.995131,1,3.07628,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3727147705,'',0,1,1,0), (668,110,'antonica_epic03_prelude','antonica_epic03_prelude','Rings of Karana',-2351,9,-60,114,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1658334079,'',0,1,1,0), @@ -794,7 +729,7 @@ INSERT INTO `zones` VALUES (704,110,'exp08_rgn_velious_withered_lands','exp08_rgn_velious_withered_lands','Describe me in the zones table! :)',-3699,-779,-218,268,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,913238763,'',0,1,1,0), (705,110,'exp08_rgn_withered_lands_epic01','exp08_rgn_withered_lands_epic01','Describe me in the zones table! :)',-24,-627,-667,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3384724582,'',0,1,1,0), (706,110,'exp08_rgn_withered_lands_epic02','exp08_rgn_withered_lands_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3654988134,'',0,1,1,0), -(707,110,'Wurmbone\'s End: Nox Incessit','exp09_dun_wurmbones_end_x2','Wurmbone\'s End: Nox Incessit',-14,-130,315,351,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1841844596,'',0,1,1,0), +(707,110,'Wurmbone''s End: Nox Incessit','exp09_dun_wurmbones_end_x2','Wurmbone''s End: Nox Incessit',-14,-130,315,351,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1841844596,'',0,1,1,0), (708,110,'exp10_dun_bixie_hive','exp10_dun_bixie_hive','Describe me in the zones table! :)',102,-28,-177,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3279878396,'',0,1,1,0), (709,110,'exp10_dun_highkeep','exp10_dun_highkeep','Describe me in the zones table! :)',5,-36,10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3869064488,'',0,1,1,0), (710,110,'exp10_dun_highkeep_contested','exp10_dun_highkeep_contested','Describe me in the zones table! :)',5,-36,10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,840435318,'',0,1,1,0), @@ -834,7 +769,7 @@ INSERT INTO `zones` VALUES (744,110,'home_enchanted','home_enchanted','Vale of Halfpint Delight',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3307770916,'',0,1,1,0), (745,110,'home_fearshard','home_fearshard','Fearful Retreat',0,40,-63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3705144549,'',0,1,1,0), (746,110,'home_ferry','home_ferry','Galleon of Dreams',0,20,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3928190995,'',0,1,1,0), -(747,110,'home_gnome','home_gnome','Tinkerer\'s Isle',-647,128,844,202,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3333216512,'',0,1,1,0), +(747,110,'home_gnome','home_gnome','Tinkerer''s Isle',-647,128,844,202,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3333216512,'',0,1,1,0), (748,110,'home_kael_iceshard','home_kael_iceshard','Thurgadin Grand Hall',2,1,6,178,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1820373561,'',0,1,1,0), (749,110,'home_lavastorm','home_lavastorm','Lavastorm Winter Retreat',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3983744396,'',0,1,1,0), (750,110,'home_majdul_blades','home_majdul_blades','Residence of the Blades',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1975960357,'',0,1,1,0), @@ -857,7 +792,7 @@ INSERT INTO `zones` VALUES (767,110,'snow_dwelling','snow_dwelling','Frostfell Workshop',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1964928994,'',0,1,1,0), (768,110,'solusekeye_epic04_elemental_nagafen','solusekeye_epic04_elemental_nagafen','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3340372210,'',0,1,1,0), (769,110,'avatar_arena','avatar_arena','Arena of the Gods',0,4,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1457316413,'',0,1,1,0), -(770,0,'GrozmagsTrial','tutorial_island02_epic01','Grozmag\'s Trial',-12.7713,1,-0.996791,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126984764,'',0,1,1,0), +(770,0,'GrozmagsTrial','tutorial_island02_epic01','Grozmag''s Trial',-12.7713,1,-0.996791,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126984764,'',0,1,1,0), (771,0,'AnOpenGrave','steppes_mini01','An Open Grave',746.48,-26.93,1070,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2951589884,'',0,1,1,0), (772,0,'AnOpenGraveHeroic','steppes_mini01','Heroic: An Open Grave',746.48,-26.93,1070,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3147956527,'',0,1,1,0), (773,81,'exp11_dun_rum_cellar_02','exp11_dun_rum_cellar_02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2948619023,'',0,1,1,0), @@ -890,7 +825,7 @@ INSERT INTO `zones` VALUES (800,0,'home_estate_of_unrest_empty','home_estate_of_unrest_empty','Estate of Unrest',0,0.54,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1845306138,'',0,1,1,0), (801,81,'home_pirate','home_pirate','Rum Runners Cove',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2238491326,'',0,1,1,0), (802,81,'home_relictinker','home_relictinker','Relic Tinker Prestige Home',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1934903381,'',0,1,1,0), -(803,0,'home_sentinal','home_sentinal','Sentinel\'s Respite',-1.37,80.85,-111.62,175.5,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2048889528,'',0,1,1,0), +(803,0,'home_sentinal','home_sentinal','Sentinel''s Respite',-1.37,80.85,-111.62,175.5,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2048889528,'',0,1,1,0), (804,0,'home_tutorial','home_tutorial','Isle of Refuge Prestige Home',-22.3,-5.82,220.21,337.97,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,943210387,'',0,1,1,0), (805,81,'orcishwastes_siege','orcishwastes_siege','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1381991000,'',0,1,1,0), (806,81,'orcishwastes_siege_01','orcishwastes_siege_01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,791164179,'',0,1,1,0), @@ -904,11 +839,11 @@ INSERT INTO `zones` VALUES (814,0,'Valley of the Rogue Magi','cmmn_epic02_mage','Valley of the Rogue Magi',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1837594295,'',0,1,1,0), (815,0,'Hold of Prexus','qey_guildhall_tier2','Hold of Prexus',-0.188056,0.005529,-4.87351,178,-1000000,0,0,0,'Indoor',0,0,0,1,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'ZoneScripts/HoldOfPrexus.lua',600,'Welcome to the Hold.',0,2911024295,'',0,1,1,0), (816,1,'DoF_design_path_script','design_path_script','Path Scripting (DoF Only)',-2.67,-0.74,0.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/MemorialIsland.lua',30,'',0,910324560,'',0,1,1,0), -(817,0,'houseofroachie','home_majdul_bottle','Roachie\'s Workshop',49,1.24,10.27,178,-1000000,0,0,0,'Indoor',0,0,0,255,0,0,0,'NONE',0,0,0,0,'',0,'Anything here will get nuked. Have fun breaking stuff!',0,3086350807,'',0,1,1,0), -(818,0,'RylecsTest','home_floating_island','Rylec\'s Fun House',-41.4936,-1,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2861217323,'',0,1,1,0), +(817,0,'houseofroachie','home_majdul_bottle','Roachie''s Workshop',49,1.24,10.27,178,-1000000,0,0,0,'Indoor',0,0,0,255,0,0,0,'NONE',0,0,0,0,'',0,'Anything here will get nuked. Have fun breaking stuff!',0,3086350807,'',0,1,1,0), +(818,0,'RylecsTest','home_floating_island','Rylec''s Fun House',-41.4936,-1,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2861217323,'',0,1,1,0), (819,0,'RylecsTest2','qey_guildhall_tier2','Rylecs Fun House 2',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',300,'',0,4070746645,'',0,1,1,0), (820,0,'The Sepulcher of Jahnda','qey_catacomb_epic02','The Sepulcher of Jahnda',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2585184836,'',0,1,1,0), -(821,0,'Sir Wemblys Tomb','qey_catacomb_epic02','Sir Wembly\'s Tomb',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',0,'',0,3963196399,'',0,1,1,0), +(821,0,'Sir Wemblys Tomb','qey_catacomb_epic02','Sir Wembly''s Tomb',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',0,'',0,3963196399,'',0,1,1,0), (822,0,'The Chamber of Suffering','fprt_epic01_storeroom01','The Chamber of Suffering',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2507279950,'',0,1,1,0), (823,0,'GMPetCemetary','enchanted','GM Hall of Pets',31.72,-0.1,17.72,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2844471636,'',0,1,1,0), (824,0,'CleansingoftheCove','feerrott_epic01_temple','Cleansing of the Cove',-908.872,-9.5,256.359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3015617679,'',0,1,1,0), @@ -918,40 +853,26 @@ INSERT INTO `zones` VALUES (828,0,'ClassicFarJourney','boat_06p_tutorial02','Classic Far Journey',2.14,1.21,-15.81,180,-1000000,10,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2068437971,'',0,1,1,0), (829,1,'Peatbog_Classic','qey_adv04_bog','The Peat Bog',561.65,-27.41,417.99,0,-1000000,1.1,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Peatbog_Classic.lua',300,'',0,492727144,'',0,1,1,0), (830,1,'Oakmyst_Classic','qey_adv01_oakmyst','Oakmyst Forest',1093.17,-10.15,-382.08,0,-1000000,1.1,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Oakmyst_Classic.lua',300,'',0,3136177894,'',0,1,1,0), -(831,0,'SorcerersTrial','qey_epic10_p01_bank','The Sorcerer\'s Trial',-2.34,-0.34,-6.45,180,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,381282991,'',0,0,1,0), +(831,0,'SorcerersTrial','qey_epic10_p01_bank','The Sorcerer''s Trial',-2.34,-0.34,-6.45,180,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,381282991,'',0,0,1,0), (832,1,'MakeshiftArena','qey_epic01_p19_cache','The Makeshift Arena',-26.15,-0.24,-21.77,230,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/MakeshiftArena.lua',300,'',0,3732062082,'',0,1,1,0), (833,1,'FermentedGrape','qey_epic03_village03_ph','The Fermented Grape',15.57,-0.5,-9.18,164,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',3,'',0,4028837414,'',0,1,1,0), (834,1,'DownBelow_Classic','qey_catacomb01','The Down Below',-195.98,-0.1,-200.16,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/DownBelow_Classic.lua',300,'',0,2167795500,'',0,1,1,0), (835,0,'SummonerPets','home_floating_island','Summoner Pets',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3714125027,'',0,1,1,0), (836,1,'TheDisconcertingMeditation','befallen_epic01','The Disconcerting Meditation',-47.02,-45.79,-49.3,272,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/TheDisconcertingMeditation.lua',300,'',0,2219147910,'',0,1,1,0), (837,1,'Rogue_IrontoeInn','qey_epic06_p12_irontoes','The Cache',2.29,-0.28,-2.03,131,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3860603756,'',0,1,1,0), -(838,0,'GaranelRestingPlace','tutorial_island02_epic02','Garanel\'s resting place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/GaranelRestingPlace.lua',0,'',0,1269386908,'',0,1,1,0), +(838,0,'GaranelRestingPlace','tutorial_island02_epic02','Garanel''s resting place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/GaranelRestingPlace.lua',0,'',0,1269386908,'',0,1,1,0), (839,1,'TheGraveyard_Classic','fprt_adv02_graveyard','The Graveyard',-98.43,-15.73,-92.53,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheGraveyard_Classic.lua',300,'',0,443333195,'',0,1,1,0), (840,1,'TheSprawl_Classic','fprt_adv03_sprawl','The Sprawl',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/The Sprawl.lua',300,'',0,1627087142,'',0,1,1,0), (841,1,'SunkenCity_Classic','fprt_adv01_sunken','Sunken City',-61,-0.15,60.35,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheSunkenCity_Classic.lua',300,'',0,3702520072,'',0,1,1,0), (842,1,'TheRuins_Classic','fprt_adv04_ruins','The Ruins',-178.54,-1,79.41,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheRuins_Classic.lua',300,'',0,4176201660,'',0,1,1,0), -(843,1,'TheThievesWay_Classic','fprt_sewer01','The Thieves\' Way',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheThievesWay_Classic.lua',300,'',0,2074019275,'',0,1,1,0), -(844,1,'QueensPrivateChamber','qey_ph_3r03','The Queen\'s Private Chamber',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1052909120,'',0,1,1,0), +(843,1,'TheThievesWay_Classic','fprt_sewer01','The Thieves'' Way',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheThievesWay_Classic.lua',300,'',0,2074019275,'',0,1,1,0), +(844,1,'QueensPrivateChamber','qey_ph_3r03','The Queen''s Private Chamber',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1052909120,'',0,1,1,0), (845,1,'FreeportBetrayal','fprt_ph_3r03','The Private Meeting Chambers',3.87,0.33,9.64,44,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,978744734,'',0,1,1,0), -(846,0,'LCP','tutorial_island02_epic02','Llama\'s Crafty Place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,622973577,'',0,1,1,0), -(847,0,'LlamasCraftyPlace','','Llama\'s Crafty Place',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1095022620,'',0,1,1,0), -(848,0,'VerminsSnye_Classic','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2747084251,'',0,1,1,0), -(849,0,'BadlizardsIsland','home_floating_island','Badlizard\'s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707926026,'',0,1,1,0), -(850,0,'MontaasIsland','home_floating_island','Montaa\'s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3255547491,'',0,1,1,0), +(846,0,'LCP','tutorial_island02_epic02','Llama''s Crafty Place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,622973577,'',0,1,1,0), +(847,0,'LlamasCraftyPlace','','Llama''s Crafty Place',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1095022620,'',0,1,1,0), +(848,0,'VerminsSnye_Classic','qey_catacomb02','Vermin''s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2747084251,'',0,1,1,0), +(849,0,'BadlizardsIsland','home_floating_island','Badlizard''s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707926026,'',0,1,1,0), +(850,0,'MontaasIsland','home_floating_island','Montaa''s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3255547491,'',0,1,1,0), (851,0,'SummoningResearchChamber','fprt_epic05_a02_temple01','an Academy research center',0,0,0,183,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',15,'',0,3609921384,'',0,1,1,0), -(852,0,'NektulosClassic','nektulos','Nektulos Classic',845,1.2,-22,26,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NektulosClassic.lua',300,'Because fuck you, that\'s why.',2,3622193584,'',0,1,1,0), +(852,0,'NektulosClassic','nektulos','Nektulos Classic',845,1.2,-22,26,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NektulosClassic.lua',300,'Because fuck you, that''s why.',2,3622193584,'',0,1,1,0), (853,0,'SerpentSewerClassic','fprt_sewer02','The Serpent Sewer Classic',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SerpentSewerClassic.lua',300,'',0,2325092859,'',0,1,1,0); -/*!40000 ALTER TABLE `zones` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/appearances.sql b/database/login/appearances.sql deleted file mode 100644 index 33134b4..0000000 --- a/database/login/appearances.sql +++ /dev/null @@ -1,21556 +0,0 @@ -DROP TABLE IF EXISTS appearances; -CREATE TABLE appearances ( - id INTEGER PRIMARY KEY, - appearance_id INTEGER NOT NULL UNIQUE, - name TEXT NOT NULL, - min_client_version INTEGER NOT NULL DEFAULT 0 -); - -INSERT INTO `appearances` VALUES -(1,1,'staticobjects/encounter_chest',0), -(2,2,'staticobjects/everling_portrait',0), -(3,3,'staticobjects/bed_single',0), -(4,4,'staticobjects/chair_1',0), -(5,5,'staticobjects/chandalier_iron',0), -(6,6,'staticobjects/table_1',0), -(7,7,'staticobjects/mirror_1',0), -(8,8,'staticobjects/crate_smallopen',0), -(9,9,'staticobjects/cask_upright',0), -(10,10,'_exp06/characters/tool_users/coldaine/coldaine_vendor',1096), -(11,11,'_exp06/characters/tool_users/coldaine/coldaine_boss',1096), -(12,12,'staticobjects/respawn_tent',0), -(13,13,'staticobjects/fprt_sewer_entrance',0), -(14,14,'staticobjects/boat_temp',0), -(15,15,'staticobjects/encounter_chest_animated',0), -(16,16,'staticobjects/mariners_bell',0), -(17,17,'staticobjects/chessboard',0), -(18,18,'staticobjects/tutorial_drake',0), -(19,19,'staticobjects/signs/freeport/sign_post',0), -(20,20,'staticobjects/signs/freeport/sign_post_arrow',0), -(21,21,'staticobjects/signs/freeport/hood_sign_post',0), -(22,22,'staticobjects/signs/freeport/hood_sign_post_arrow_beggarscourt',0), -(23,23,'staticobjects/signs/freeport/hood_sign_post_arrow_bigbend',0), -(24,24,'staticobjects/signs/freeport/hood_sign_post_arrow_longshadow',0), -(25,25,'staticobjects/signs/freeport/hood_sign_post_arrow_templestreet',0), -(26,26,'staticobjects/signs/freeport/hood_sign_wall_large',0), -(27,27,'staticobjects/signs/freeport/hood_sign_wall_medium',0), -(28,28,'staticobjects/signs/freeport/hood_sign_wall_small',0), -(29,29,'staticobjects/signs/general/orc_stump_signpost',0), -(30,30,'staticobjects/signs/qeynos/qey_roadsign_post01',0), -(31,31,'staticobjects/signs/qeynos/qey_roadsign_sign01',0), -(32,32,'staticobjects/qey_elddar/tree_big',0), -(33,33,'staticobjects/qey_elddar/tree_small',0), -(34,34,'staticobjects/qey_elddar/eye_of_ro',0), -(35,35,'staticobjects/qey_village01/testvase',0), -(36,36,'staticobjects/qeynos/qey_roadsign_post01',0), -(37,37,'staticobjects/qeynos/qey_roadsign_sign01',0), -(38,38,'staticobjects/qeynos/qey_catacomb_entrance01',0), -(39,39,'staticobjects/general/orc_generic_signpost02_nektulos',0), -(40,40,'staticobjects/general/orc_generic_signpost_03_freeport_nektulos',0), -(41,41,'staticobjects/blacksmith/qey_blacksmith_anvil001',0), -(42,42,'staticobjects/blacksmith/qey_blacksmith_bellows001',0), -(43,43,'staticobjects/blacksmith/qey_blacksmith_hammer001',0), -(44,44,'staticobjects/blacksmith/qey_blacksmith_oven001',0), -(45,45,'staticobjects/blacksmith/qey_blacksmith_pliers001',0), -(46,46,'staticobjects/blacksmith/qey_blacksmith_table001',0), -(47,47,'staticobjects/poppies/qey_blacksmith_oven001',0), -(48,48,'staticobjects/poppies/fprt_poppies_a',0), -(49,49,'code/unknown',0), -(50,50,'code/defaultapp',0), -(51,51,'_exp06/characters/tool_users/coldaine/coldaine_caster',1096), -(52,52,'_exp06/characters/tool_users/coldaine/coldaine_guard01',1096), -(53,53,'ec/pc/ratonga/ratonga_male',0), -(54,54,'ec/pc/ratonga/ratonga_female',0), -(55,55,'ec/pc/ratonga/ratonga_female_01',0), -(56,56,'ec/pc/ratonga/ratonga_female_02',0), -(57,57,'ec/pc/ratonga/ratonga_female_03',0), -(58,58,'ec/pc/ratonga/ratonga_female_04',0), -(59,59,'ec/pc/ratonga/ratonga_female_05',0), -(60,60,'ec/pc/ratonga/ratonga_male_01',0), -(61,61,'ec/pc/ratonga/ratonga_male_02',0), -(62,62,'ec/pc/ratonga/ratonga_male_03',0), -(63,63,'ec/pc/ratonga/ratonga_male_04',0), -(64,64,'ec/pc/ratonga/ratonga_male_05',0), -(65,65,'ec/pc/ratonga/ratonga_male_06',0), -(66,66,'ec/pc/ratonga/ratonga_male_07',0), -(67,67,'ec/pc/ratonga/ratonga_male_08',0), -(68,68,'ec/pc/ratonga/ratonga_male_09',0), -(69,69,'ec/pc/ratonga/ratonga_male_10',0), -(70,70,'ec/pc/ratonga/ratonga_male_11',0), -(71,71,'ec/pc/ratonga/ratonga_male_12',0), -(72,72,'ec/pc/ratonga/ratonga_male_13',0), -(73,73,'ec/pc/ratonga/ratonga_male_14',0), -(74,74,'_exp06/characters/tool_users/coldaine/coldaine_guard02',1096), -(75,75,'_exp06/characters/tool_users/coldaine/coldaine_heavy',1096), -(76,76,'ec/pc/froglok/froglok_female',0), -(77,77,'ec/pc/froglok/froglok_male',0), -(78,78,'ec/pc/halfelf/halfelf_male',0), -(79,79,'ec/pc/halfelf/halfelf_female',0), -(80,80,'_exp06/characters/tool_users/coldaine/coldaine_female_vendor',1096), -(81,81,'ec/pc/kerra/kerra_female',0), -(82,82,'ec/pc/kerra/kerra_male',0), -(83,83,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_mirror_floor1_event',1096), -(84,84,'_exp04/monsters/phara_dar_ghost',1096), -(85,85,'_exp07/zones/exp07_dun_velks_the_ascent/static_veeshans_shard_centered',1096), -(86,86,'_exp06/characters/tool_users/giant_frost_kurn_tower/ghost_giant_frost_medium',1096), -(87,87,'_exp06/characters/tool_users/giant_frost_kurn_tower/ghost_giant_frost_chubby',1096), -(88,88,'_exp06/characters/tool_users/giant_frost_kurn_tower/ghost_giant_frost_heavy',1096), -(89,89,'_exp06/characters/tool_users/giant_frost_kurn_tower/ghost_giant_frost_light',1096), -(90,90,'_exp07/characters/monsters/timber_wolf/timber_wolf_white_sniff',1096), -(91,91,'ec/pc/kerra/kerra_female_01',0), -(92,92,'ec/pc/kerra/kerra_female_02',0), -(93,93,'ec/pc/kerra/kerra_female_03',0), -(94,94,'ec/pc/kerra/kerra_female_04',0), -(95,95,'ec/pc/kerra/kerra_female_05',0), -(96,96,'ec/pc/kerra/kerra_female_06',0), -(97,97,'ec/pc/kerra/kerra_male_01',0), -(98,98,'ec/pc/kerra/kerra_male_02',0), -(99,99,'ec/pc/kerra/kerra_male_03',0), -(100,100,'ec/pc/kerra/kerra_male_05',0), -(101,101,'ec/pc/kerra/kerra_male_06',0), -(102,102,'ec/pc/kerra/kerra_male_04',0), -(103,103,'ec/pc/iksar/iksar_male',0), -(104,104,'ec/pc/iksar/iksar_female',0), -(105,105,'ec/pc/troll/troll_female',0), -(106,106,'ec/pc/troll/troll_male',0), -(107,107,'ec/pc/halfling/halfling_female',0), -(108,108,'ec/pc/halfling/halfling_male',0), -(109,109,'ec/pc/dwarf/dwarf_female',0), -(110,110,'ec/pc/dwarf/dwarf_male',0), -(111,111,'ec/pc/barbarian/barbarian_female',0), -(112,112,'ec/pc/barbarian/barbarian_male',0), -(113,113,'ec/pc/woodelf/woodelf_female',0), -(114,114,'ec/pc/woodelf/woodelf_male',0), -(115,115,'ec/pc/darkelf/darkelf_male',0), -(116,116,'ec/pc/darkelf/darkelf_female',0), -(117,117,'_exp06/characters/tool_users/coldaine/ghosts/coldaine_ghost_vendor',1096), -(118,118,'_exp06/characters/tool_users/coldaine/ghosts/coldaine_ghost_caster',1096), -(119,119,'ec/pc/erudite/erudite_male',0), -(120,120,'ec/pc/erudite/erudite_female',0), -(121,121,'ec/pc/gnome/gnome_male',0), -(122,122,'ec/pc/gnome/gnome_female',0), -(123,123,'ec/pc/ogre/ogre_female',0), -(124,124,'ec/pc/ogre/ogre_male',0), -(125,125,'_exp06/characters/tool_users/coldaine/ghosts/coldaine_ghost_guard01',1096), -(126,126,'_exp06/characters/tool_users/coldaine/ghosts/coldaine_ghost_guard02',1096), -(127,127,'_exp06/characters/tool_users/coldaine/ghosts/coldaine_ghost_heavy',1096), -(128,128,'_exp06/characters/tool_users/coldaine/coldaine_female_heavy',1096), -(129,129,'_exp06/characters/tool_users/coldaine/coldaine_female_caster',1096), -(130,130,'staticobjects/_exp07/exp07_dun_kael_drakkel/kd_statue_zek_half',1096), -(131,131,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/chest',1096), -(132,132,'ec/pc/human/human_female',0), -(133,133,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/feet',1096), -(134,134,'ec/pc/human/human_male',0), -(135,135,'ec/pc/highelf/highelf_female',0), -(136,136,'ec/pc/highelf/highelf_male',0), -(137,137,'ec/npc/orc',0), -(138,138,'ec/npc/skeleton',0), -(139,139,'ec/npc/skeletonorc',0), -(140,140,'ec/npc/zombie',0), -(141,141,'ec/npc/orcshaman',0), -(142,142,'ec/npc/zombie_fresh_female',0), -(143,143,'ec/npc/zombie_fresh_male',0), -(144,144,'ec/npc/helmsman_wheel',0), -(145,145,'ec/npc/goblin',0), -(146,146,'ec/npc/flaming_skeleton',0), -(147,147,'creatures/boss/fallengate',0), -(148,148,'creatures/tu/livingstatue',0), -(149,149,'creatures/tu/mysticdoll',0), -(150,150,'creatures/tu/bixie',0), -(151,151,'creatures/tu/troglodyte',0), -(152,152,'creatures/tu/earth_elem',0), -(153,153,'creatures/tu/obsidian_earth_elem',0), -(154,154,'creatures/tu/riverrock_earth_elem',0), -(155,155,'creatures/tu/stone_earth_elem',0), -(156,156,'creatures/tu/elementalair',0), -(157,157,'creatures/tu/minotaur',0), -(158,158,'creatures/tu/minotaur_albino',0), -(159,159,'creatures/tu/minotaur_undead',0), -(160,160,'creatures/tu/golem_clay',0), -(161,161,'creatures/tu/golem_flesh',0), -(162,162,'creatures/tu/golem_stone',0), -(163,163,'creatures/tu/bixie_small',0), -(164,164,'creatures/tu/fairy',0), -(165,165,'creatures/tu/mermaid',0), -(166,166,'creatures/tu/ettin',0), -(167,167,'creatures/tu/ettin_darker',0), -(168,168,'creatures/tu/lizardman',0), -(169,169,'creatures/tu/lavastatue',0), -(170,170,'creatures/tu/boarfiend',0), -(171,171,'creatures/tu/elementalfire',0), -(172,172,'creatures/tu/elementalfire_demo',0), -(173,173,'creatures/tu/nymph_dryad',0), -(174,174,'creatures/tu/nymph_dryad_corrupt',0), -(175,175,'creatures/tu/gelatinouscube',0), -(176,176,'creatures/tu/amygdalan_dreadknight',0), -(177,177,'creatures/tu/amygdalan_knight',0), -(178,178,'creatures/tu/amygdalan_warrior',0), -(179,179,'creatures/tu/gelatinouscube_refract',0), -(180,180,'creatures/tu/siren',0), -(181,181,'creatures/tu/dragonfly_faerie',0), -(182,182,'creatures/tu/valkyrie',0), -(183,183,'creatures/tu/tentacleterror',0), -(184,184,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/forearms',1096), -(185,185,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/hands',1096), -(186,186,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/head',1096), -(187,187,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/legs',1096), -(188,188,'creatures/tu/additionalmodels/valkyrie_skirt',0), -(189,189,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/legs_noskirt',1096), -(190,190,'creatures/monsters/monitorlizard',0), -(191,191,'creatures/monsters/beam',0), -(192,192,'creatures/monsters/beam2',0), -(193,193,'creatures/monsters/icky_bat',0), -(194,194,'creatures/monsters/barracuda',0), -(195,195,'creatures/monsters/elementalwater',0), -(196,196,'creatures/monsters/rat',0), -(197,197,'creatures/monsters/flyingsnake',0), -(198,198,'creatures/monsters/bear',0), -(199,199,'creatures/monsters/monitorlizard_black',0), -(200,200,'creatures/monsters/monitorlizard_blue',0), -(201,201,'creatures/monsters/monitorlizard_orange',0), -(202,202,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/pauldron_left',1096), -(203,203,'creatures/monsters/vox',0), -(204,204,'creatures/monsters/pihrana',0), -(205,205,'creatures/monsters/spider',0), -(206,206,'creatures/monsters/dikdik',0), -(207,207,'creatures/monsters/beaver',0), -(208,208,'creatures/monsters/beetle',0), -(209,209,'creatures/monsters/goo',0), -(210,210,'creatures/monsters/octopus',0), -(211,211,'creatures/monsters/crab',0), -(212,212,'creatures/monsters/treeent',0), -(213,213,'creatures/monsters/snake',0), -(214,214,'creatures/monsters/seaturtle_gold',0), -(215,215,'creatures/monsters/turtle',0), -(216,216,'creatures/monsters/wolf',0), -(217,217,'creatures/monsters/bee',0), -(218,218,'creatures/monsters/seaturtle',0), -(219,219,'creatures/monsters/mantaray',0), -(220,220,'creatures/monsters/armadillo',0), -(221,221,'creatures/monsters/beetlefire',0), -(222,222,'creatures/monsters/beetleglow',0), -(223,223,'creatures/monsters/beetlegold',0), -(224,224,'creatures/monsters/frog',0), -(225,225,'creatures/monsters/griffin',0), -(226,226,'creatures/monsters/mimic',0), -(227,227,'creatures/monsters/albinosnake',0), -(228,228,'creatures/monsters/flying_dragon',0), -(229,229,'creatures/monsters/ground_dragon',0), -(230,230,'creatures/monsters/iron_guardian',0), -(231,231,'creatures/monsters/kholrat',0), -(232,232,'creatures/monsters/molerat',0), -(233,233,'creatures/monsters/plague_rat',0), -(234,234,'creatures/monsters/redsnake',0), -(235,235,'creatures/monsters/rustmonster',0), -(236,236,'creatures/monsters/thoughtbleeder',0), -(237,237,'creatures/monsters/blue_frog',0), -(238,238,'creatures/monsters/drake',0), -(239,239,'creatures/monsters/bat',0), -(240,240,'creatures/monsters/voidbeast',0), -(241,241,'creatures/monsters/swordfish',0), -(242,242,'creatures/monsters/shark',0), -(243,243,'creatures/monsters/spider_cave',0), -(244,244,'creatures/monsters/spider_fat',0), -(245,245,'creatures/monsters/spider_fat_green',0), -(246,246,'creatures/monsters/spider_fat_ice',0), -(247,247,'creatures/monsters/evileye',0), -(248,248,'creatures/monsters/bee_giant',0), -(249,249,'creatures/monsters/crab_fire',0), -(250,250,'creatures/monsters/scorpion_yellow',0), -(251,251,'creatures/monsters/scorpion_black',0), -(252,252,'creatures/monsters/slug',0), -(253,253,'creatures/monsters/mantaray_dark',0), -(254,254,'creatures/monsters/mantaray_darkblue',0), -(255,255,'creatures/monsters/mantaray_undead',0), -(256,256,'creatures/monsters/centipede',0), -(257,257,'creatures/monsters/centipede_blue',0), -(258,258,'creatures/monsters/centipede_bluegreen',0), -(259,259,'creatures/monsters/cow',0), -(260,260,'creatures/monsters/hawk',0), -(261,261,'creatures/monsters/scarecrow',0), -(262,262,'creatures/monsters/hoovedcarnivore',0), -(263,263,'creatures/monsters/hoovedcarnivorebrown',0), -(264,264,'creatures/monsters/elephant',0), -(265,265,'creatures/monsters/elephantgrey',0), -(266,266,'creatures/monsters/rhino',0), -(267,267,'creatures/monsters/badger',0), -(268,268,'creatures/monsters/unicorn',0), -(269,269,'creatures/monsters/duck',0), -(270,270,'creatures/monsters/owlbear',0), -(271,271,'creatures/monsters/pig',0), -(272,272,'creatures/monsters/pigspotted',0), -(273,273,'creatures/monsters/willowisp',0), -(274,274,'creatures/monsters/root_horror',0), -(275,275,'creatures/monsters/nagafen',0), -(276,276,'creatures/monsters/wasp',0), -(277,277,'creatures/monsters/flyingsnake_cave',0), -(278,278,'creatures/monsters/hyena',0), -(279,279,'creatures/monsters/book_minion',0), -(280,280,'creatures/monsters/book_minion_gardening',0), -(281,281,'creatures/monsters/book_minion_griffin_to_molerat',0), -(282,282,'creatures/monsters/book_minion_reading_for_dummies',0), -(283,283,'creatures/monsters/book_minion_squirrel_to_walrusman',0), -(284,284,'creatures/monsters/catoplebas',0), -(285,285,'creatures/monsters/watertentacle',0), -(286,286,'creatures/monsters/watertentacle_watery',0), -(287,287,'creatures/monsters/crystal_dragon',0), -(288,288,'creatures/monsters/octopus_boss',0), -(289,289,'creatures/monsters/seaturtle_boss',0), -(290,290,'creatures/monsters/skeleton_boss',0), -(291,291,'creatures/monsters/cow_boss',0), -(292,292,'creatures/monsters/wasp_small',0), -(293,293,'creatures/monsters/manticore',0), -(294,294,'creatures/monsters/goo_bubblegum',0), -(295,295,'creatures/monsters/goo_fire',0), -(296,296,'creatures/monsters/goo_lectric',0), -(297,297,'creatures/monsters/goo_snot',0), -(298,298,'creatures/monsters/goo_black',0), -(299,299,'creatures/monsters/goo_mud',0), -(300,300,'creatures/monsters/goo_red',0), -(301,301,'creatures/monsters/goo_slug',0), -(302,302,'creatures/monsters/dragon_ice',0), -(303,303,'creatures/monsters/lion',0), -(304,304,'creatures/monsters/cat_orange',0), -(305,305,'creatures/monsters/cat_gray',0), -(306,306,'creatures/monsters/cat',0), -(307,307,'creatures/monsters/dervish',0), -(308,308,'creatures/monsters/dervish_fire',0), -(309,309,'creatures/monsters/dervish_glass',0), -(310,310,'creatures/monsters/wyrm',0), -(311,311,'creatures/monsters/dervish_ice',0), -(312,312,'creatures/monsters/dervish_iron',0), -(313,313,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/pauldron_right',1096), -(314,314,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/shoulders',1096), -(315,315,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/shoulders_with_pauldrons',1096), -(316,316,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_chain/skirt',1096), -(317,317,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/skirt',1096), -(318,318,'accessories/wearable_items/cloak/exp07/cloak_heritage_coldain',1096), -(319,319,'accessories/wearable_items/cloak/exp07/cloak_heritage_coldain2',1096), -(320,320,'accessories/wearable_items/cloak/exp07/cloak_dragonskin2',1096), -(321,321,'accessories/wearable_items/cloak/exp07/cloak_dragonskin2_diamond',1096), -(322,322,'accessories/wearable_items/cloak/exp07/cloak_dragonskin',1096), -(323,323,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_incense_burner',1096), -(324,324,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_snowglobe',1096), -(325,325,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_metaltile',1096), -(326,326,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_stonetile',1096), -(327,327,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_velium_jar',1096), -(328,328,'accessories/wearable_items/cloak/exp07/cloak_black_lightning',1096), -(329,329,'_exp07/zones/exp07_dun_kraytocs_fortress/orb01',1096), -(330,330,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_summoning_crystal',1096), -(331,331,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/chest',1096), -(332,332,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/skirt',1096), -(333,333,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/feet',1096), -(334,334,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/hands',1096), -(335,335,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/head',1096), -(336,336,'_exp06/characters/monsters/erudite_lich/erudite_lich_black',1096), -(337,337,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/legs',1096), -(338,338,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/skirt',1096), -(339,339,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/chest',1096), -(340,340,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/feet',1096), -(341,341,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/hands',1096), -(342,342,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/head',1096), -(343,343,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/shoulders',1096), -(344,344,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/legs',1096), -(345,345,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/skirt',1096), -(346,346,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/chest',1096), -(347,347,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/feet',1096), -(348,348,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/hands',1096), -(349,349,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/head',1096), -(350,350,'_exp07/characters/monsters/lord_yelinak/lord_yelinak_test',1096), -(351,351,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/legs',1096), -(352,352,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/red/skirt',1096), -(353,353,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/red/chest',1096), -(354,354,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/red/head',1096), -(355,355,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_speed02',1096), -(356,356,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/red/legs',1096), -(357,357,'accessories/wearable_items/_exp07/asian_goth_armor/chain/skirt',1096), -(358,358,'accessories/wearable_items/_exp07/asian_goth_armor/chain/chest',1096), -(359,359,'accessories/wearable_items/_exp07/asian_goth_armor/chain/feet',1096), -(360,360,'accessories/wearable_items/_exp07/asian_goth_armor/chain/forearms',1096), -(361,361,'accessories/wearable_items/_exp07/asian_goth_armor/chain/hands',1096), -(362,362,'accessories/wearable_items/_exp07/asian_goth_armor/chain/head',1096), -(363,363,'accessories/wearable_items/_exp07/asian_goth_armor/chain/legs',1096), -(364,364,'accessories/wearable_items/_exp07/asian_goth_armor/chain/legs_noskirt',1096), -(365,365,'accessories/wearable_items/_exp07/asian_goth_armor/chain/shoulders',1096), -(366,366,'accessories/wearable_items/_exp07/asian_goth_armor/chain/shoulders_no_pauldrons',1096), -(367,367,'accessories/wearable_items/_exp07/asian_goth_armor/chain/shoulders_snapons',1096), -(368,368,'accessories/wearable_items/_exp07/asian_goth_armor/chain/snapons/head_asian_goth_chain_helm',1096), -(369,369,'accessories/wearable_items/_exp07/asian_goth_armor/chain/snapons/asian_goth_chain_pauldrons_left',1096), -(370,370,'accessories/wearable_items/_exp07/asian_goth_armor/chain/snapons/asian_goth_chain_pauldrons_right',1096), -(371,371,'ec/pc/vampire/bat_swarm_vampire_mount',1096), -(372,372,'accessories/wieldable_items/weapons/exp07/vampire_appearance/exp07_vampire_unarmed_nofx',1096), -(373,373,'_exp07/characters/monsters/lich_bride/lich_bride',1096), -(374,374,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2h_specter_scythe_usable_fx',1096), -(375,375,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_weaponrack04',1096), -(376,376,'_exp07/characters/tool_users/drolvarg_snow_warrior/drolvarg_snow_warrior_03',1096), -(377,377,'_exp07/characters/tool_users/drolvarg_snow_warrior/drolvarg_snow_warrior_02',1096), -(378,378,'accessories/hair/hair037',1096), -(379,379,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_thur_gnome_multi_gear_02',1096), -(380,380,'accessories/wearable_items/cloak/exp07/cloak_dain',1096), -(381,381,'accessories/wearable_items/cloak/exp07/cloak_dragon_hoard',1096), -(382,382,'creatures/mounts/griffin_mount/griffin_mount_stormfeather',1096), -(383,383,'creatures/mounts/griffin_mount/griffin_mount_tintable',1096), -(384,384,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tfs_floor04_lightsource_floortorch01',1096), -(385,385,'creatures/pets/wolf_pup/wolf_pup_loyal',1096), -(386,386,'staticobjects/_exp07/exp07_rgn_great_divide/gd_dpo_icesphere_bobbing',1096), -(387,387,'_exp07/characters/monsters/griffin_new/highland_griffin_saddle',1096), -(388,388,'_exp06/zones/objects/exp06_dun_the_hole_raid/platform_debris0',1096), -(389,389,'_exp06/zones/objects/exp06_dun_the_hole_raid/platform_debris1',1096), -(390,390,'_exp06/zones/objects/exp06_dun_the_hole_raid/platform_debris2',1096), -(391,391,'_exp07/characters/monsters/dragon_hoard/dragon_hoard',1096), -(392,392,'_exp07/zones/exp07_dun_crystalcavern/exp07_dun_crystalcavern_blocker01',1096), -(393,393,'_exp07/zones/exp07_dun_crystalcavern/exp07_dun_crystalcavern_blocker01_green',1096), -(394,394,'_exp07/zones/exp07_dun_crystalcavern/exp07_dun_crystalcavern_blocker01_purple',1096), -(395,395,'_exp07/zones/exp07_dun_crystalcavern/exp07_dun_crystalcavern_crevice01_floor01',1096), -(396,396,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel_rope',1096), -(397,397,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel',1096), -(398,398,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel_barrel',1096), -(399,399,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel_bucket',1096), -(400,400,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel_cage',1096), -(401,401,'staticobjects/_exp07/vel_snowpile01',1096), -(402,402,'staticobjects/_exp07/exp07_rgn_great_divide/vel_huge_fire_nobase_nofire',1096), -(403,403,'staticobjects/_exp07/exp07_rgn_great_divide/goahmari_village_firepit01',1096), -(404,404,'staticobjects/_exp07/exp07_rgn_great_divide/goahmari_village_firepit01_burning',1096), -(405,405,'staticobjects/_exp07/exp07_rgn_great_divide/goahmari_village_light01',1096), -(406,406,'staticobjects/_exp07/exp07_rgn_great_divide/goahmari_village_light01_nosnow01',1096), -(407,407,'accessories/wearable_items/_exp07/cryomantic_armor/upperchest',1096), -(408,408,'accessories/wearable_items/_exp07/cryomantic_armor/chest',1096), -(409,409,'accessories/wearable_items/_exp07/cryomantic_armor/feet',1096), -(410,410,'accessories/wearable_items/_exp07/cryomantic_armor/forearms',1096), -(411,411,'accessories/wearable_items/_exp07/cryomantic_armor/hands',1096), -(412,412,'accessories/wearable_items/_exp07/cryomantic_armor/head',1096), -(413,413,'accessories/wearable_items/woven/uncommon/medium/chest',0), -(414,414,'accessories/wearable_items/woven/uncommon/medium/feet',0), -(415,415,'accessories/wearable_items/woven/uncommon/medium/forearms',0), -(416,416,'accessories/wearable_items/woven/uncommon/medium/hands',0), -(417,417,'accessories/wearable_items/woven/uncommon/medium/head',0), -(418,418,'accessories/wearable_items/woven/uncommon/medium/legs',0), -(419,419,'accessories/wearable_items/woven/uncommon/medium/shoulders',0), -(420,420,'accessories/wearable_items/woven/uncommon/medium/skirt',0), -(421,421,'accessories/wearable_items/woven/uncommon/low/chest',0), -(422,422,'accessories/wearable_items/woven/uncommon/low/feet',0), -(423,423,'accessories/wearable_items/woven/uncommon/low/forearms',0), -(424,424,'accessories/wearable_items/woven/uncommon/low/hands',0), -(425,425,'accessories/wearable_items/woven/uncommon/low/head',0), -(426,426,'accessories/wearable_items/woven/uncommon/low/legs',0), -(427,427,'accessories/wearable_items/woven/uncommon/low/shoulders',0), -(428,428,'accessories/wearable_items/woven/uncommon/low/skirt',0), -(429,429,'accessories/wearable_items/woven/uncommon/high/chest',0), -(430,430,'accessories/wearable_items/woven/uncommon/high/feet',0), -(431,431,'accessories/wearable_items/woven/uncommon/high/forearms',0), -(432,432,'accessories/wearable_items/woven/uncommon/high/hands',0), -(433,433,'accessories/wearable_items/woven/uncommon/high/head',0), -(434,434,'accessories/wearable_items/woven/uncommon/high/legs',0), -(435,435,'accessories/wearable_items/woven/uncommon/high/shoulders',0), -(436,436,'accessories/wearable_items/woven/uncommon/high/skirt',0), -(437,437,'accessories/wearable_items/_exp07/cryomantic_armor/left',1096), -(438,438,'accessories/wearable_items/_exp07/cryomantic_armor/legs',1096), -(439,439,'accessories/wearable_items/_exp07/cryomantic_armor/legs_noskirt',1096), -(440,440,'accessories/wearable_items/_exp07/cryomantic_armor/pauldron05_vanguard_heavy_left',1096), -(441,441,'accessories/wearable_items/_exp07/cryomantic_armor/pauldron05_vanguard_heavy_right',1096), -(442,442,'accessories/wearable_items/_exp07/cryomantic_armor/right',1096), -(443,443,'accessories/wearable_items/_exp07/cryomantic_armor/shoulders',1096), -(444,444,'accessories/wearable_items/_exp07/cryomantic_armor/shoulders_epic',1096), -(445,445,'accessories/wearable_items/woven/rare/low/chest',0), -(446,446,'accessories/wearable_items/woven/rare/low/feet',0), -(447,447,'accessories/wearable_items/woven/rare/low/forearms',0), -(448,448,'accessories/wearable_items/woven/rare/low/hands',0), -(449,449,'accessories/wearable_items/woven/rare/low/head',0), -(450,450,'accessories/wearable_items/woven/rare/low/legs',0), -(451,451,'accessories/wearable_items/woven/rare/low/shoulders',0), -(452,452,'accessories/wearable_items/woven/rare/low/skirt',0), -(453,453,'accessories/wearable_items/_exp07/cryomantic_armor/shoulders_nopauldrons',1096), -(454,454,'accessories/wearable_items/_exp07/cryomantic_armor/shoulders_pauldron05_both',1096), -(455,455,'accessories/wearable_items/_exp07/cryomantic_armor/skirt',1096), -(456,456,'accessories/wearable_items/_exp07/cryomantic_armor/snapons/head_spike',1096), -(457,457,'accessories/wearable_items/_exp07/cryomantic_armor/snapons/toe_spike_left',1096), -(458,458,'accessories/wearable_items/_exp07/cryomantic_armor/snapons/toe_spike_right',1096), -(459,459,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_cryomantic',1096), -(460,460,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_cryomantic',1096), -(461,461,'accessories/wearable_items/woven/common/medium/chest',0), -(462,462,'accessories/wearable_items/woven/common/medium/feet',0), -(463,463,'accessories/wearable_items/woven/common/medium/forearms',0), -(464,464,'accessories/wearable_items/woven/common/medium/hands',0), -(465,465,'accessories/wearable_items/woven/common/medium/head',0), -(466,466,'accessories/wearable_items/woven/common/medium/legs',0), -(467,467,'accessories/wearable_items/woven/common/medium/shoulders',0), -(468,468,'accessories/wearable_items/woven/common/medium/skirt',0), -(469,469,'accessories/wearable_items/woven/common/low/chest',0), -(470,470,'accessories/wearable_items/woven/common/low/feet',0), -(471,471,'accessories/wearable_items/woven/common/low/forearms',0), -(472,472,'accessories/wearable_items/woven/common/low/hands',0), -(473,473,'accessories/wearable_items/woven/common/low/head',0), -(474,474,'accessories/wearable_items/woven/common/low/legs',0), -(475,475,'accessories/wearable_items/woven/common/low/shoulders',0), -(476,476,'accessories/wearable_items/woven/common/low/skirt',0), -(477,477,'accessories/wearable_items/woven/common/high/chest',0), -(478,478,'accessories/wearable_items/woven/common/high/feet',0), -(479,479,'accessories/wearable_items/woven/common/high/forearms',0), -(480,480,'accessories/wearable_items/woven/common/high/hands',0), -(481,481,'accessories/wearable_items/woven/common/high/head',0), -(482,482,'accessories/wearable_items/woven/common/high/legs',0), -(483,483,'accessories/wearable_items/woven/common/high/shoulders',0), -(484,484,'accessories/wearable_items/woven/common/high/skirt',0), -(485,485,'accessories/wearable_items/snapons/backpacks/backpack_velious_swivel/backpack_velious_swivel_skillet',1096), -(486,486,'staticobjects/_exp07/exp07_dun_crystalcaverns/dpo_exp07_dun_crystalcavern_blocker01',1096), -(487,487,'staticobjects/_exp07/exp07_dun_crystalcaverns/dpo_exp07_dun_crystalcavern_blocker01_green',1096), -(488,488,'staticobjects/_exp07/exp07_dun_crystalcaverns/dpo_exp07_dun_crystalcavern_blocker01_purple',1096), -(489,489,'accessories/wearable_items/_exp07/pirate_heavycloth/skirt',1096), -(490,490,'accessories/wearable_items/_exp07/pirate_heavycloth/chest',1096), -(491,491,'accessories/wearable_items/_exp07/pirate_heavycloth/feet',1096), -(492,492,'accessories/wearable_items/_exp07/pirate_heavycloth/hands',1096), -(493,493,'accessories/wearable_items/_exp07/pirate_heavycloth/legs',1096), -(494,494,'accessories/wearable_items/_exp07/pirate_heavycloth/shoulders',1096), -(495,495,'accessories/wearable_items/_exp07/pirate_heavycloth/belt/skirt',1096), -(496,496,'accessories/wearable_items/_exp07/pirate_heavycloth/head/head',1096), -(497,497,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/teleport_vision_tofs_throne',1096), -(498,498,'staticobjects/eig/exp03_eig_harvest_location_rare_dark',1096), -(499,499,'staticobjects/eig/eig_harvest_location_dark',1096), -(500,500,'accessories/wearable_items/_exp07/pirate_heavycloth_alt/shoulders',1096), -(501,501,'accessories/wearable_items/_exp07/pirate_heavycloth_alt/chest',1096), -(502,502,'accessories/wearable_items/_exp07/pirate_heavycloth_alt/feet',1096), -(503,503,'accessories/wearable_items/_exp07/pirate_heavycloth_alt/hands',1096), -(504,504,'accessories/wearable_items/_exp07/pirate_heavycloth_alt/legs',1096), -(505,505,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tfs_floor04_lightsource_wall01_nolight',1096), -(506,506,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_crush_nipiks_cane_sm_npc_only_side',1096), -(507,507,'creatures/mounts/plague_cloud_housing',1096), -(508,508,'creatures/mounts/storm_cloud_raf_housing',1096), -(509,509,'accessories/wearable_items/vanguard/uncommon/medium/chest',0), -(510,510,'accessories/wearable_items/vanguard/uncommon/medium/feet',0), -(511,511,'accessories/wearable_items/vanguard/uncommon/medium/forearms',0), -(512,512,'accessories/wearable_items/vanguard/uncommon/medium/hands',0), -(513,513,'accessories/wearable_items/vanguard/uncommon/medium/head',0), -(514,514,'accessories/wearable_items/vanguard/uncommon/medium/legs',0), -(515,515,'accessories/wearable_items/vanguard/uncommon/medium/shoulders',0), -(516,516,'accessories/wearable_items/vanguard/uncommon/medium/left',0), -(517,517,'accessories/wearable_items/vanguard/uncommon/medium/right',0), -(518,518,'accessories/wearable_items/vanguard/uncommon/low/chest',0), -(519,519,'accessories/wearable_items/vanguard/uncommon/low/feet',0), -(520,520,'accessories/wearable_items/vanguard/uncommon/low/forearms',0), -(521,521,'accessories/wearable_items/vanguard/uncommon/low/hands',0), -(522,522,'accessories/wearable_items/vanguard/uncommon/low/head',0), -(523,523,'accessories/wearable_items/vanguard/uncommon/low/legs',0), -(524,524,'accessories/wearable_items/vanguard/uncommon/low/shoulders',0), -(525,525,'accessories/wearable_items/vanguard/uncommon/low/left',0), -(526,526,'accessories/wearable_items/vanguard/uncommon/low/right',0), -(527,527,'accessories/wearable_items/vanguard/uncommon/high/chest',0), -(528,528,'accessories/wearable_items/vanguard/uncommon/high/feet',0), -(529,529,'accessories/wearable_items/vanguard/uncommon/high/forearms',0), -(530,530,'accessories/wearable_items/vanguard/uncommon/high/hands',0), -(531,531,'accessories/wearable_items/vanguard/uncommon/high/head',0), -(532,532,'accessories/wearable_items/vanguard/uncommon/high/legs',0), -(533,533,'accessories/wearable_items/vanguard/uncommon/high/shoulders',0), -(534,534,'accessories/wearable_items/vanguard/uncommon/high/left',0), -(535,535,'accessories/wearable_items/vanguard/uncommon/high/right',0), -(536,536,'accessories/wearable_items/vanguard/rare/medium/chest',0), -(537,537,'accessories/wearable_items/vanguard/rare/medium/feet',0), -(538,538,'accessories/wearable_items/vanguard/rare/medium/forearms',0), -(539,539,'accessories/wearable_items/vanguard/rare/medium/hands',0), -(540,540,'accessories/wearable_items/vanguard/rare/medium/head',0), -(541,541,'accessories/wearable_items/vanguard/rare/medium/legs',0), -(542,542,'accessories/wearable_items/vanguard/rare/medium/shoulders',0), -(543,543,'accessories/wearable_items/vanguard/rare/medium/right',0), -(544,544,'accessories/wearable_items/vanguard/rare/medium/left',0), -(545,545,'accessories/wearable_items/vanguard/rare/low/chest',0), -(546,546,'accessories/wearable_items/vanguard/rare/low/feet',0), -(547,547,'accessories/wearable_items/vanguard/rare/low/forearms',0), -(548,548,'accessories/wearable_items/vanguard/rare/low/hands',0), -(549,549,'accessories/wearable_items/vanguard/rare/low/head',0), -(550,550,'accessories/wearable_items/vanguard/rare/low/legs',0), -(551,551,'accessories/wearable_items/vanguard/rare/low/shoulders',0), -(552,552,'accessories/wearable_items/vanguard/rare/low/left',0), -(553,553,'accessories/wearable_items/vanguard/rare/low/right',0), -(554,554,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tfs_floor06_mirror_emptyframe01',1096), -(555,555,'_exp07/zones/exp07_rgn_great_divide/dock_construction_beams',1096), -(556,556,'_exp07/zones/exp07_rgn_great_divide/dock_construction_boat',1096), -(557,557,'_exp07/zones/exp07_rgn_great_divide/dock_construction_dingy',1096), -(558,558,'accessories/wearable_items/_exp07/othmir_gi/shoulders',1096), -(559,559,'accessories/wearable_items/_exp07/othmir_gi/chest',1096), -(560,560,'accessories/wearable_items/_exp07/othmir_gi/feet',1096), -(561,561,'accessories/wearable_items/_exp07/othmir_gi/legs',1096), -(562,562,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/collar',1096), -(563,563,'accessories/wearable_items/vanguard/common/medium/chest',0), -(564,564,'accessories/wearable_items/vanguard/common/medium/feet',0), -(565,565,'accessories/wearable_items/vanguard/common/medium/forearms',0), -(566,566,'accessories/wearable_items/vanguard/common/medium/hands',0), -(567,567,'accessories/wearable_items/vanguard/common/medium/head',0), -(568,568,'accessories/wearable_items/vanguard/common/medium/legs',0), -(569,569,'accessories/wearable_items/vanguard/common/medium/shoulders',0), -(570,570,'accessories/wearable_items/vanguard/common/medium/left',0), -(571,571,'accessories/wearable_items/vanguard/common/medium/right',0), -(572,572,'accessories/wearable_items/vanguard/common/low/chest',0), -(573,573,'accessories/wearable_items/vanguard/common/low/feet',0), -(574,574,'accessories/wearable_items/vanguard/common/low/forearms',0), -(575,575,'accessories/wearable_items/vanguard/common/low/hands',0), -(576,576,'accessories/wearable_items/vanguard/common/low/head',0), -(577,577,'accessories/wearable_items/vanguard/common/low/legs',0), -(578,578,'accessories/wearable_items/vanguard/common/low/shoulders',0), -(579,579,'accessories/wearable_items/vanguard/common/low/right',0), -(580,580,'accessories/wearable_items/vanguard/common/low/left',0), -(581,581,'accessories/wearable_items/vanguard/common/high/chest',0), -(582,582,'accessories/wearable_items/vanguard/common/high/feet',0), -(583,583,'accessories/wearable_items/vanguard/common/high/forearms',0), -(584,584,'accessories/wearable_items/vanguard/common/high/hands',0), -(585,585,'accessories/wearable_items/vanguard/common/high/head',0), -(586,586,'accessories/wearable_items/vanguard/common/high/legs',0), -(587,587,'accessories/wearable_items/vanguard/common/high/shoulders',0), -(588,588,'accessories/wearable_items/vanguard/common/high/left',0), -(589,589,'accessories/wearable_items/vanguard/common/high/right',0), -(590,590,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/charcoal/collar',1096), -(591,591,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/green/collar',1096), -(592,592,'accessories/wearable_items/_exp07/station_cash_armor/robe_wyrmskin/red/collar',1096), -(593,593,'staticobjects/promo_items/exp07_portalpaintings_wakeninglands',1096), -(594,594,'staticobjects/promo_items/exp07_portalpaintings_nipikshaven',1096), -(595,595,'staticobjects/promo_items/exp07_portalpaintings_ringwar',1096), -(596,596,'staticobjects/promo_items/exp07_portalpaintings_thurgadin',1096), -(597,597,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/doorknob',1096), -(598,598,'accessories/wieldable_items/weapons/fist/monk_1h_glow_sun',1096), -(599,599,'accessories/wieldable_items/weapons/exp07/1h_sword/goth_dagger_01_fx',1096), -(600,600,'accessories/wieldable_items/weapons/exp07/shield/goth_shield_01_fx',1096), -(601,601,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_right',1096), -(602,602,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_both',1096), -(603,603,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_left',1096), -(604,604,'staticobjects/statues/dpo_menagerie_scrying_cube',1096), -(605,605,'accessories/wieldable_items/shields/exp07/dragon_shield',1096), -(606,606,'staticobjects/promo_items/exp07_tserrina_tofs_houseitem',1096), -(607,607,'creatures/mounts/warhog_mount/warhog',1096), -(608,608,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_kraytok',1096), -(609,609,'accessories/wieldable_items/weapons/exp07/shield/exp07_buckler_celestial',1096), -(610,610,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_celestial',1096), -(611,611,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_diabolic',1096), -(612,612,'accessories/wieldable_items/weapons/exp07/shield/exp07_buckler_diabolic',1096), -(613,613,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_diabolic',1096), -(614,614,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_arcane',1096), -(615,615,'accessories/wieldable_items/weapons/exp07/shield/exp07_buckler_kraytok',1096), -(616,616,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_cross_kraytok',1096), -(617,617,'creatures/mounts/bear_mount_undead/bear_mount_undead',1096), -(618,618,'creatures/mounts/warhog_mount/warhog_mount',1096), -(619,619,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_shaman',1096), -(620,620,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_chief',1096), -(621,621,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_common01',1096), -(622,622,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_common02',1096), -(623,623,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_common03',1096), -(624,624,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_common04',1096), -(625,625,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_heavy01',1096), -(626,626,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_heavy02',1096), -(627,627,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_heavy03',1096), -(628,628,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_hunter01',1096), -(629,629,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_hunter02',1096), -(630,630,'_exp06/characters/tool_users/snow_orc/snow_orc_ghosts/snow_orc_ghost_hunter03',1096), -(631,631,'creatures/mounts/warhog_mount/warhog_drunder',1096), -(632,632,'_exp07/characters/monsters/warhog/warhog_drunder',1096), -(633,633,'_exp07/characters/monsters/warhog/warhog',1096), -(634,634,'creatures/mounts/horse_heavy/horse_stallion_ice',1096), -(635,635,'accessories/wearable_items/tradesman/common/medium/arms',0), -(636,636,'accessories/wearable_items/tradesman/common/medium/chest',0), -(637,637,'accessories/wearable_items/tradesman/common/medium/legs',0), -(638,638,'accessories/wearable_items/tradesman/common/low/arms',0), -(639,639,'accessories/wearable_items/tradesman/common/low/chest',0), -(640,640,'accessories/wearable_items/tradesman/common/low/legs',0), -(641,641,'staticobjects/flora/dpo_ew_plant_red01',1096), -(642,642,'staticobjects/flora/dpo_ew_plant_red02',1096), -(643,643,'staticobjects/flora/dpo_ew_plant_red03',1096), -(644,644,'staticobjects/flora/dpo_ew_plant_red04',1096), -(645,645,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_pure_rage_pc',1096), -(646,646,'creatures/mounts/griffin_mount/griffin_mount_red',1096), -(647,647,'staticobjects/_exp07/kael/kd_ballista',1096), -(648,648,'staticobjects/_exp07/kael/kd_banner_swinging_long',1096), -(649,649,'staticobjects/_exp07/kael/kd_banner_swinging_shinvet',1096), -(650,650,'staticobjects/_exp07/kael/kd_banner_swinging_shpoint',1096), -(651,651,'staticobjects/_exp07/kael/kd_bar',1096), -(652,652,'staticobjects/_exp07/kael/kd_barrel',1096), -(653,653,'accessories/wearable_items/plate/uncommon/medium/chest',0), -(654,654,'accessories/wearable_items/plate/uncommon/medium/feet',0), -(655,655,'accessories/wearable_items/plate/uncommon/medium/forearms',0), -(656,656,'accessories/wearable_items/plate/uncommon/medium/hands',0), -(657,657,'accessories/wearable_items/plate/uncommon/medium/head',0), -(658,658,'accessories/wearable_items/plate/uncommon/medium/legs',0), -(659,659,'accessories/wearable_items/plate/uncommon/medium/shoulders',0), -(660,660,'accessories/wearable_items/plate/uncommon/low/chest',0), -(661,661,'accessories/wearable_items/plate/uncommon/low/feet',0), -(662,662,'accessories/wearable_items/plate/uncommon/low/forearms',0), -(663,663,'accessories/wearable_items/plate/uncommon/low/hands',0), -(664,664,'accessories/wearable_items/plate/uncommon/low/head',0), -(665,665,'accessories/wearable_items/plate/uncommon/low/legs',0), -(666,666,'accessories/wearable_items/plate/uncommon/low/shoulders',0), -(667,667,'staticobjects/_exp07/kael/kd_barrel_broken',1096), -(668,668,'staticobjects/_exp07/kael/kd_bed_lrg',1096), -(669,669,'staticobjects/_exp07/kael/kd_bed_sml',1096), -(670,670,'staticobjects/_exp07/kael/kd_boiling_pot',1096), -(671,671,'staticobjects/_exp07/kael/kd_bookcase',1096), -(672,672,'staticobjects/_exp07/kael/kd_chair',1096), -(673,673,'staticobjects/_exp07/kael/kd_chest_lrg',1096), -(674,674,'staticobjects/_exp07/kael/kd_dragonbone_ancient',1096), -(675,675,'staticobjects/_exp07/kael/kd_fence_link',1096), -(676,676,'staticobjects/_exp07/kael/kd_fighting_ring',1096), -(677,677,'staticobjects/_exp07/kael/kd_firebowl',1096), -(678,678,'staticobjects/_exp07/kael/kd_forge_orc',1096), -(679,679,'staticobjects/_exp07/kael/kd_fountain_sml',1096), -(680,680,'staticobjects/_exp07/kael/kd_keg',1096), -(681,681,'staticobjects/_exp07/kael/kd_mapboard',1096), -(682,682,'staticobjects/_exp07/kael/kd_mug',1096), -(683,683,'staticobjects/_exp07/kael/kd_podium',1096), -(684,684,'staticobjects/_exp07/kael/kd_powerball',1096), -(685,685,'staticobjects/_exp07/kael/kd_statue_tormax_point',1096), -(686,686,'staticobjects/_exp07/kael/kd_statue_tormax_pose',1096), -(687,687,'staticobjects/_exp07/kael/kd_statue_zek_crch',1096), -(688,688,'accessories/wieldable_items/weapons/exp07/vampire_appearance/exp07_vampire_unarmed',1096), -(689,689,'staticobjects/_exp07/kael/kd_statue_zek_half',1096), -(690,690,'staticobjects/_exp07/kael/kd_statue_zek_stnd',1096), -(691,691,'staticobjects/_exp07/kael/kd_swinging_hanglamp',1096), -(692,692,'staticobjects/_exp07/kael/kd_table_sml',1096), -(693,693,'staticobjects/_exp07/kael/kd_weapons_rack',1096), -(694,694,'staticobjects/_exp07/orc/vel_island03_peltdoor01_nosnow',1096), -(695,695,'accessories/wearable_items/plate/common/medium/chest',0), -(696,696,'accessories/wearable_items/plate/common/medium/feet',0), -(697,697,'accessories/wearable_items/plate/common/medium/forearms',0), -(698,698,'accessories/wearable_items/plate/common/medium/hands',0), -(699,699,'accessories/wearable_items/plate/common/medium/head',0), -(700,700,'accessories/wearable_items/plate/common/medium/legs',0), -(701,701,'accessories/wearable_items/plate/common/medium/shoulders',0), -(702,702,'accessories/wearable_items/plate/common/low/chest',0), -(703,703,'accessories/wearable_items/plate/common/low/feet',0), -(704,704,'accessories/wearable_items/plate/common/low/forearms',0), -(705,705,'accessories/wearable_items/plate/common/low/hands',0), -(706,706,'accessories/wearable_items/plate/common/low/head',0), -(707,707,'accessories/wearable_items/plate/common/low/legs',0), -(708,708,'accessories/wearable_items/plate/common/low/shoulders',0), -(709,709,'accessories/wearable_items/plate/common/high/chest',0), -(710,710,'accessories/wearable_items/plate/common/high/feet',0), -(711,711,'accessories/wearable_items/plate/common/high/forearms',0), -(712,712,'accessories/wearable_items/plate/common/high/hands',0), -(713,713,'accessories/wearable_items/plate/common/high/head',0), -(714,714,'accessories/wearable_items/plate/common/high/legs',0), -(715,715,'accessories/wearable_items/plate/common/high/shoulders',0), -(716,716,'staticobjects/_exp07/orc/vel_orc_bench01',1096), -(717,717,'staticobjects/_exp07/orc/vel_orc_camp_bear_trap_open',1096), -(718,718,'staticobjects/_exp07/orc/vel_orc_camp_brazier01',1096), -(719,719,'staticobjects/_exp07/orc/vel_orc_chair01',1096), -(720,720,'staticobjects/_exp07/orc/vel_orc_chest_shoddy',1096), -(721,721,'staticobjects/_exp07/orc/vel_orc_throne',1096), -(722,722,'staticobjects/_exp07/orc/vel_orc_wheelbarrow_orc01',1096), -(723,723,'staticobjects/_exp07/orc/vel_throne_orc01',1096), -(724,724,'staticobjects/_exp07/othmir/dpo_exp07_1h_club_nipiks_cane',1096), -(725,725,'staticobjects/_exp07/othmir/vel_iceclad_othmir_shell01_dpo',1096), -(726,726,'staticobjects/_exp07/othmir/vel_othmir_basket01_nosnow',1096), -(727,727,'staticobjects/_exp07/othmir/vel_othmir_basket02',1096), -(728,728,'staticobjects/_exp07/othmir/vel_othmir_basket04',1096), -(729,729,'staticobjects/_exp07/othmir/vel_othmir_basket04_shells_nosnow',1096), -(730,730,'staticobjects/_exp07/othmir/vel_othmir_bed01_nosnow',1096), -(731,731,'staticobjects/_exp07/othmir/vel_othmir_candle_holder01_dpo',1096), -(732,732,'staticobjects/_exp07/othmir/vel_othmir_chair01_red',1096), -(733,733,'staticobjects/_exp07/othmir/vel_othmir_chair01_woven',1096), -(734,734,'staticobjects/_exp07/othmir/vel_othmir_crab_pot_floater02',1096), -(735,735,'staticobjects/_exp07/othmir/vel_othmir_fish_rack01_nosnow',1096), -(736,736,'staticobjects/_exp07/othmir/vel_othmir_fish_skeleton01',1096), -(737,737,'accessories/wearable_items/magus/uncommon/medium/chest',0), -(738,738,'staticobjects/_exp07/othmir/vel_othmir_floor_tray01',1096), -(739,739,'accessories/wearable_items/magus/uncommon/medium/skirt',0), -(740,740,'staticobjects/_exp07/othmir/vel_othmir_hanging_fish01',1096), -(741,741,'accessories/wearable_items/magus/uncommon/medium/pants',0), -(742,742,'staticobjects/_exp07/othmir/vel_othmir_lightsource01_nosnow',1096), -(743,743,'accessories/wearable_items/magus/uncommon/low/chest',0), -(744,744,'staticobjects/_exp07/othmir/vel_othmir_lightsource_hanging01_nosnow',1096), -(745,745,'accessories/wearable_items/magus/uncommon/low/skirt',0), -(746,746,'staticobjects/_exp07/othmir/vel_othmir_net_basket01_nosnow',1096), -(747,747,'staticobjects/_exp07/othmir/vel_othmir_nipiks_memorial_01',1096), -(748,748,'staticobjects/_exp07/othmir/vel_othmir_prexus_shrine_01_dpo',1096), -(749,749,'accessories/wearable_items/magus/uncommon/high/chest',0), -(750,750,'staticobjects/_exp07/othmir/vel_othmir_throne01_nosnow',1096), -(751,751,'accessories/wearable_items/magus/uncommon/high/skirt',0), -(752,752,'staticobjects/_exp07/snowfang/vel_iceclad_gnoll_banner01',1096), -(753,753,'staticobjects/_exp07/snowfang/vel_iceclad_gnoll_chair01_nosnow',1096), -(754,754,'accessories/wearable_items/magus/uncommon/high/pants',0), -(755,755,'accessories/wearable_items/magus/rare/medium/chest',0), -(756,756,'staticobjects/_exp07/snowfang/vel_iceclad_gnoll_dreamcatcher01_green_dpo',1096), -(757,757,'staticobjects/_exp07/snowfang/vel_iceclad_shaman_drum01',1096), -(758,758,'staticobjects/_exp07/snowfang/vel_iceclad_shaman_drum02',1096), -(759,759,'accessories/wearable_items/magus/rare/medium/pants',0), -(760,760,'staticobjects/_exp07/thurgadin/banner_thur_01_left',1096), -(761,761,'accessories/wearable_items/magus/rare/low/chest',0), -(762,762,'staticobjects/_exp07/thurgadin/banner_thur_01_right',1096), -(763,763,'accessories/wearable_items/magus/rare/low/skirt',0), -(764,764,'staticobjects/_exp07/thurgadin/banner_thur_02_left',1096), -(765,765,'accessories/wearable_items/magus/rare/low/pants',0), -(766,766,'accessories/wearable_items/magus/rare/low/hood',0), -(767,767,'accessories/wearable_items/magus/rare/high/chest',0), -(768,768,'staticobjects/_exp07/thurgadin/banner_thur_02_right',1096), -(769,769,'accessories/wearable_items/magus/rare/high/skirt',0), -(770,770,'staticobjects/_exp07/thurgadin/banner_thur_03_left',1096), -(771,771,'accessories/wearable_items/magus/rare/high/pants',0), -(772,772,'staticobjects/_exp07/thurgadin/banner_thur_03_right',1096), -(773,773,'accessories/wearable_items/magus/common/medium/chest',0), -(774,774,'staticobjects/_exp07/thurgadin/thur_blue_lamp_01',1096), -(775,775,'accessories/wearable_items/magus/common/medium/skirt',0), -(776,776,'staticobjects/_exp07/thurgadin/thur_chair_01',1096), -(777,777,'staticobjects/_exp07/thurgadin/thur_chair_02',1096), -(778,778,'staticobjects/_exp07/thurgadin/thur_chair_03',1096), -(779,779,'accessories/wearable_items/magus/common/medium/hood',0), -(780,780,'accessories/wearable_items/magus/common/medium/pants',0), -(781,781,'staticobjects/_exp07/thurgadin/thur_table_01',1096), -(782,782,'accessories/wearable_items/magus/common/low/chest',0), -(783,783,'accessories/wearable_items/magus/common/low/skirt',0), -(784,784,'staticobjects/_exp07/thurgadin/thur_table_02',1096), -(785,785,'staticobjects/_exp07/thurgadin/thur_table_03',1096), -(786,786,'staticobjects/_exp07/thurgadin/thur_table_04',1096), -(787,787,'staticobjects/_exp07/thurgadin/torch_single_blue_fire_01',1096), -(788,788,'accessories/wearable_items/_exp07/deepwater_knight/robe/skirt',1096), -(789,789,'accessories/wearable_items/_exp07/deepwater_knight/robe/chest',1096), -(790,790,'accessories/wearable_items/magus/common/low/pants',0), -(791,791,'accessories/wearable_items/magus/common/low/hood',0), -(792,792,'accessories/wearable_items/_exp07/deepwater_knight/robe/epic_pauldron_left',1096), -(793,793,'accessories/wearable_items/magus/common/high/skirt',0), -(794,794,'accessories/wearable_items/_exp07/deepwater_knight/robe/epic_pauldron_right',1096), -(795,795,'accessories/wearable_items/magus/common/high/chest',0), -(796,796,'accessories/wearable_items/_exp07/deepwater_knight/robe/feet',1096), -(797,797,'accessories/wearable_items/magus/common/high/pants',0), -(798,798,'accessories/wearable_items/_exp07/deepwater_knight/robe/hands',1096), -(799,799,'accessories/wearable_items/magus/artifact/medium/chest',0), -(800,800,'accessories/wearable_items/_exp07/deepwater_knight/robe/head',1096), -(801,801,'accessories/wearable_items/magus/artifact/medium/skirt',0), -(802,802,'accessories/wearable_items/_exp07/deepwater_knight/robe/head_collar',1096), -(803,803,'accessories/wearable_items/magus/artifact/low/chest',0), -(804,804,'accessories/wearable_items/_exp07/deepwater_knight/robe/head_epic',1096), -(805,805,'accessories/wearable_items/magus/artifact/low/skirt',0), -(806,806,'accessories/wearable_items/_exp07/deepwater_knight/robe/pants',1096), -(807,807,'accessories/wearable_items/magus/artifact/high/chest',0), -(808,808,'accessories/wearable_items/_exp07/deepwater_knight/robe/pauldron_left',1096), -(809,809,'accessories/wearable_items/magus/artifact/high/skirt',0), -(810,810,'accessories/wearable_items/_exp07/deepwater_knight/robe/pauldron_right',1096), -(811,811,'accessories/wearable_items/chain/uncommon/medium/chest',0), -(812,812,'accessories/wearable_items/chain/uncommon/medium/feet',0), -(813,813,'accessories/wearable_items/chain/uncommon/medium/forearms',0), -(814,814,'accessories/wearable_items/chain/uncommon/medium/hands',0), -(815,815,'accessories/wearable_items/chain/uncommon/medium/head',0), -(816,816,'accessories/wearable_items/chain/uncommon/medium/legs',0), -(817,817,'accessories/wearable_items/chain/uncommon/medium/shoulders',0), -(818,818,'accessories/wearable_items/chain/uncommon/medium/skirt',0), -(819,819,'accessories/wearable_items/chain/uncommon/low/chest',0), -(820,820,'accessories/wearable_items/chain/uncommon/low/feet',0), -(821,821,'accessories/wearable_items/chain/uncommon/low/forearms',0), -(822,822,'accessories/wearable_items/chain/uncommon/low/hands',0), -(823,823,'accessories/wearable_items/chain/uncommon/low/head',0), -(824,824,'accessories/wearable_items/chain/uncommon/low/legs',0), -(825,825,'accessories/wearable_items/chain/uncommon/low/shoulders',0), -(826,826,'staticobjects/_exp07/kael/kd_table_lrg',1096), -(827,827,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_messhall01_tablepart01_chair01_big01_dpo',1096), -(828,828,'staticobjects/_exp07/velks/exp07_dun_velks_forgotten_pools_hallway03_light01_dpo',1096), -(829,829,'staticobjects/_exp07/velks/exp07_dun_velks_forgotten_pools_pod01',1096), -(830,830,'staticobjects/_exp07/velks/exp07_dun_velks_forgotten_pools_shapery01_plant01_blue01',1096), -(831,831,'staticobjects/_exp07/velks/exp07_dun_velks_forgotten_pools_shapery01_plant01_red01',1096), -(832,832,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_banner05_single01',1096), -(833,833,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_banner06_single01',1096), -(834,834,'creatures/monsters/bat_crystal_cave_green',1096), -(835,835,'creatures/monsters/bat_crystal_cave_blue',1096), -(836,836,'_exp07/characters/tool_users/othmir/othmir_male_speaker_osh',1096), -(837,837,'_exp07/characters/tool_users/othmir/othmir_female_peasent_03_spotted',1096), -(838,838,'_exp07/characters/tool_users/othmir/othmir_female_peasent_04_dark_blue',1096), -(839,839,'_exp07/characters/tool_users/othmir/othmir_male_chief',1096), -(840,840,'accessories/wearable_items/snapons/backpacks/crossblades',1096), -(841,841,'accessories/wieldable_items/weapons/staff/djinn_staff/djinn_staff_blue',1096), -(842,842,'creatures/mounts/flying_disc/gnome_racemount01',1096), -(843,843,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_cave_small01_glow01',1096), -(844,844,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_cave_small01_glow02',1096), -(845,845,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_cave_small02_glow01',1096), -(846,846,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_cave_small02_glow02',1096), -(847,847,'staticobjects/containers/slove_basket01_pom01',1096), -(848,848,'staticobjects/books/cm_book01',1096), -(849,849,'staticobjects/books/cm_book02',1096), -(850,850,'staticobjects/chairs/cm_chair_dining01',1096), -(851,851,'staticobjects/chairs/cm_chair_dining02',1096), -(852,852,'staticobjects/tables/cm_table_coffee01',1096), -(853,853,'staticobjects/bottles/sen_potions03',1096), -(854,854,'staticobjects/liveevent/erollisi_objects/errolisi_yellowroses_fatcandle_white',1096), -(855,855,'staticobjects/liveevent/erollisi_objects/errolisi_redroses_fatcandle_white',1096), -(856,856,'staticobjects/liveevent/erollisi_objects/errolisi_purpleroses_fatcandle_white',1096), -(857,857,'staticobjects/liveevent/erollisi_objects/errolisi_pinkroses_fatcandle_white',1096), -(858,858,'staticobjects/liveevent/erollisi_objects/errolisi_wood_gazebo_pfx',1096), -(859,859,'accessories/wearable_items/chain/common/medium/chest',0), -(860,860,'accessories/wearable_items/chain/common/medium/feet',0), -(861,861,'accessories/wearable_items/chain/common/medium/forearms',0), -(862,862,'accessories/wearable_items/chain/common/medium/hands',0), -(863,863,'accessories/wearable_items/chain/common/medium/head',0), -(864,864,'accessories/wearable_items/chain/common/medium/legs',0), -(865,865,'accessories/wearable_items/chain/common/medium/shoulders',0), -(866,866,'staticobjects/liveevent/erollisi_objects/sen_divider_01_purple',1096), -(867,867,'accessories/wearable_items/chain/common/low/chest',0), -(868,868,'accessories/wearable_items/chain/common/low/feet',0), -(869,869,'accessories/wearable_items/chain/common/low/forearms',0), -(870,870,'accessories/wearable_items/chain/common/low/hands',0), -(871,871,'accessories/wearable_items/chain/common/low/head',0), -(872,872,'accessories/wearable_items/chain/common/low/legs',0), -(873,873,'accessories/wearable_items/chain/common/low/shoulders',0), -(874,874,'accessories/wearable_items/profesion_hats/firiona_vie_tiara_lon/head_firiona_vie_tiara_lon',1096), -(875,875,'accessories/wearable_items/chain/common/high/chest',0), -(876,876,'accessories/wearable_items/chain/common/high/feet',0), -(877,877,'accessories/wearable_items/chain/common/high/forearms',0), -(878,878,'accessories/wearable_items/chain/common/high/hands',0), -(879,879,'accessories/wearable_items/chain/common/high/head',0), -(880,880,'accessories/wearable_items/chain/common/high/legs',0), -(881,881,'accessories/wearable_items/chain/common/high/shoulders',0), -(882,882,'accessories/wearable_items/_exp07/robe_darkmetal/skirt',1096), -(883,883,'accessories/wearable_items/_exp07/robe_darkmetal/chest',1096), -(884,884,'accessories/wearable_items/_exp07/robe_darkmetal/feet',1096), -(885,885,'staticobjects/_exp07/velious/ew_bush_purp',1096), -(886,886,'staticobjects/_exp07/velious/ew_dead_stump_01',1096), -(887,887,'staticobjects/_exp07/velious/ew_grass01',1096), -(888,888,'staticobjects/_exp07/velious/ew_rotted_tree',1096), -(889,889,'staticobjects/_exp07/velious/ew_shell_nautilus01_dpo',1096), -(890,890,'staticobjects/_exp07/velious/goahmari_village_light01_nosnow01',1096), -(891,891,'staticobjects/_exp07/velious/vel_lightsource_lantern01_swinging',1096), -(892,892,'staticobjects/_exp07/velious/vel_rime_banner01_snow01',1096), -(893,893,'accessories/wearable_items/_exp07/robe_darkmetal/hands',1096), -(894,894,'accessories/wearable_items/_exp07/robe_darkmetal/head',1096), -(895,895,'accessories/wearable_items/_exp07/robe_darkmetal/head_collar',1096), -(896,896,'accessories/wearable_items/_exp07/robe_darkmetal/pants',1096), -(897,897,'staticobjects/guildhall/trophies/floor_kraytoc',1096), -(898,898,'staticobjects/guildhall/trophies/floor_king_tormax',1096), -(899,899,'staticobjects/guildhall/trophies/floor_statue_of_rallos_zek',1096), -(900,900,'staticobjects/_exp07/kael/kd_chair_grand',1096), -(901,901,'staticobjects/_exp07/tizmak/vel_iceclad_gnoll_chair01_nosnow',1096), -(902,902,'staticobjects/_exp07/tizmak/vel_iceclad_lantern01',1096), -(903,903,'staticobjects/_exp07/tizmak/vel_lightsource_lantern01_swinging',1096), -(904,904,'staticobjects/_exp07/tizmak/vel_tizmak_items01_barrel01',1096), -(905,905,'staticobjects/_exp07/tizmak/vel_tizmak_items01_bed01',1096), -(906,906,'staticobjects/_exp07/tizmak/vel_tizmak_items01_bench01',1096), -(907,907,'accessories/wearable_items/brigandine/uncommon/medium/chest',0), -(908,908,'accessories/wearable_items/brigandine/uncommon/medium/feet',0), -(909,909,'accessories/wearable_items/brigandine/uncommon/medium/forearms',0), -(910,910,'accessories/wearable_items/brigandine/uncommon/medium/hands',0), -(911,911,'accessories/wearable_items/brigandine/uncommon/medium/head',0), -(912,912,'accessories/wearable_items/brigandine/uncommon/medium/legs',0), -(913,913,'accessories/wearable_items/brigandine/uncommon/medium/shoulders',0), -(914,914,'accessories/wearable_items/brigandine/uncommon/low/chest',0), -(915,915,'accessories/wearable_items/brigandine/uncommon/low/feet',0), -(916,916,'accessories/wearable_items/brigandine/uncommon/low/forearms',0), -(917,917,'accessories/wearable_items/brigandine/uncommon/low/hands',0), -(918,918,'accessories/wearable_items/brigandine/uncommon/low/head',0), -(919,919,'accessories/wearable_items/brigandine/uncommon/low/legs',0), -(920,920,'accessories/wearable_items/brigandine/uncommon/low/shoulders',0), -(921,921,'accessories/wearable_items/brigandine/uncommon/high/chest',0), -(922,922,'accessories/wearable_items/brigandine/uncommon/high/feet',0), -(923,923,'accessories/wearable_items/brigandine/uncommon/high/forearms',0), -(924,924,'accessories/wearable_items/brigandine/uncommon/high/hands',0), -(925,925,'accessories/wearable_items/brigandine/uncommon/high/head',0), -(926,926,'accessories/wearable_items/brigandine/uncommon/high/legs',0), -(927,927,'accessories/wearable_items/brigandine/uncommon/high/shoulders',0), -(928,928,'accessories/wearable_items/brigandine/rare/medium/chest',0), -(929,929,'accessories/wearable_items/brigandine/rare/medium/feet',0), -(930,930,'accessories/wearable_items/brigandine/rare/medium/forearms',0), -(931,931,'accessories/wearable_items/brigandine/rare/medium/hands',0), -(932,932,'accessories/wearable_items/brigandine/rare/medium/head',0), -(933,933,'accessories/wearable_items/brigandine/rare/medium/legs',0), -(934,934,'accessories/wearable_items/brigandine/rare/medium/shoulders',0), -(935,935,'accessories/wearable_items/brigandine/rare/low/chest',0), -(936,936,'accessories/wearable_items/brigandine/rare/low/feet',0), -(937,937,'accessories/wearable_items/brigandine/rare/low/forearms',0), -(938,938,'accessories/wearable_items/brigandine/rare/low/hands',0), -(939,939,'accessories/wearable_items/brigandine/rare/low/head',0), -(940,940,'accessories/wearable_items/brigandine/rare/low/legs',0), -(941,941,'accessories/wearable_items/brigandine/rare/low/shoulders',0), -(942,942,'accessories/wearable_items/brigandine/rare/high/chest',0), -(943,943,'accessories/wearable_items/brigandine/rare/high/feet',0), -(944,944,'accessories/wearable_items/brigandine/rare/high/forearms',0), -(945,945,'accessories/wearable_items/brigandine/rare/high/hands',0), -(946,946,'accessories/wearable_items/brigandine/rare/high/head',0), -(947,947,'accessories/wearable_items/brigandine/rare/high/legs',0), -(948,948,'accessories/wearable_items/brigandine/rare/high/shoulders',0), -(949,949,'accessories/wearable_items/brigandine/common/medium/chest',0), -(950,950,'accessories/wearable_items/brigandine/common/medium/feet',0), -(951,951,'accessories/wearable_items/brigandine/common/medium/forearms',0), -(952,952,'accessories/wearable_items/brigandine/common/medium/hands',0), -(953,953,'accessories/wearable_items/brigandine/common/medium/head',0), -(954,954,'accessories/wearable_items/brigandine/common/medium/legs',0), -(955,955,'accessories/wearable_items/brigandine/common/medium/shoulders',0), -(956,956,'accessories/wearable_items/brigandine/common/low/chest',0), -(957,957,'accessories/wearable_items/brigandine/common/low/feet',0), -(958,958,'accessories/wearable_items/brigandine/common/low/forearms',0), -(959,959,'accessories/wearable_items/brigandine/common/low/hands',0), -(960,960,'accessories/wearable_items/brigandine/common/low/head',0), -(961,961,'accessories/wearable_items/brigandine/common/low/legs',0), -(962,962,'accessories/wearable_items/brigandine/common/low/shoulders',0), -(963,963,'accessories/wearable_items/brigandine/common/high/chest',0), -(964,964,'accessories/wearable_items/brigandine/common/high/feet',0), -(965,965,'accessories/wearable_items/brigandine/common/high/forearms',0), -(966,966,'accessories/wearable_items/brigandine/common/high/hands',0), -(967,967,'accessories/wearable_items/brigandine/common/high/head',0), -(968,968,'accessories/wearable_items/brigandine/common/high/legs',0), -(969,969,'accessories/wearable_items/brigandine/common/high/shoulders',0), -(970,970,'staticobjects/_exp07/tizmak/vel_tizmak_items01_brazier01',1096), -(971,971,'staticobjects/_exp07/tizmak/vel_tizmak_items01_chair01',1096), -(972,972,'staticobjects/_exp07/tizmak/vel_tizmak_items01_drum01',1096), -(973,973,'staticobjects/_exp07/tizmak/vel_tizmak_items01_light01',1096), -(974,974,'staticobjects/_exp07/tizmak/vel_tizmak_items01_marker01',1096), -(975,975,'staticobjects/_exp07/tizmak/vel_tizmak_items01_marker02',1096), -(976,976,'staticobjects/_exp07/tizmak/vel_tizmak_items01_partition01',1096), -(977,977,'accessories/wearable_items/brigandine/artifact/low/chest',0), -(978,978,'accessories/wearable_items/brigandine/artifact/low/feet',0), -(979,979,'accessories/wearable_items/brigandine/artifact/low/forearms',0), -(980,980,'accessories/wearable_items/brigandine/artifact/low/hands',0), -(981,981,'accessories/wearable_items/brigandine/artifact/low/head',0), -(982,982,'accessories/wearable_items/brigandine/artifact/low/legs',0), -(983,983,'accessories/wearable_items/brigandine/artifact/low/shoulders',0), -(984,984,'staticobjects/_exp07/tizmak/vel_tizmak_items01_walllight01',1096), -(985,985,'creatures/mounts/griffin_mount/griffin_mount_green',1096), -(986,986,'creatures/mounts/griffin_mount/griffin_mount_black_evil',1096), -(987,987,'staticobjects/_exp07/orc/vel_orc_lightsource_wall_sconce02',1096), -(988,988,'staticobjects/_exp07/othmir/vel_othmir_bucket01_fish',1096), -(989,989,'staticobjects/_exp07/othmir/vel_othmir_basket01_shells',1096), -(990,990,'creatures/mounts/griffin_mount/griffin_mount_arctic',1096), -(991,991,'accessories/wearable_items/leather/uncommon/medium/chest',0), -(992,992,'accessories/wearable_items/leather/uncommon/medium/feet',0), -(993,993,'accessories/wearable_items/leather/uncommon/medium/forearms',0), -(994,994,'accessories/wearable_items/leather/uncommon/medium/hands',0), -(995,995,'accessories/wearable_items/leather/uncommon/medium/head',0), -(996,996,'accessories/wearable_items/leather/uncommon/medium/legs',0), -(997,997,'accessories/wearable_items/leather/uncommon/medium/shoulders',0), -(998,998,'accessories/wearable_items/leather/uncommon/medium/skirt',0), -(999,999,'accessories/wearable_items/leather/uncommon/low/chest',0), -(1000,1000,'accessories/wearable_items/leather/uncommon/low/feet',0), -(1001,1001,'accessories/wearable_items/leather/uncommon/low/forearms',0), -(1002,1002,'accessories/wearable_items/leather/uncommon/low/hands',0), -(1003,1003,'accessories/wearable_items/leather/uncommon/low/head',0), -(1004,1004,'accessories/wearable_items/leather/uncommon/low/legs',0), -(1005,1005,'accessories/wearable_items/leather/uncommon/low/shoulders',0), -(1006,1006,'accessories/wearable_items/leather/uncommon/low/skirt',0), -(1007,1007,'accessories/wearable_items/leather/uncommon/high/chest',0), -(1008,1008,'accessories/wearable_items/leather/uncommon/high/feet',0), -(1009,1009,'accessories/wearable_items/leather/uncommon/high/forearms',0), -(1010,1010,'accessories/wearable_items/leather/uncommon/high/hands',0), -(1011,1011,'accessories/wearable_items/leather/uncommon/high/head',0), -(1012,1012,'accessories/wearable_items/leather/uncommon/high/legs',0), -(1013,1013,'accessories/wearable_items/leather/uncommon/high/shoulders',0), -(1014,1014,'accessories/wearable_items/leather/uncommon/high/skirt',0), -(1015,1015,'accessories/wearable_items/leather/rare/medium/chest',0), -(1016,1016,'accessories/wearable_items/leather/rare/medium/feet',0), -(1017,1017,'accessories/wearable_items/leather/rare/medium/forearms',0), -(1018,1018,'accessories/wearable_items/leather/rare/medium/hands',0), -(1019,1019,'accessories/wearable_items/leather/rare/medium/head',0), -(1020,1020,'accessories/wearable_items/leather/rare/medium/legs',0), -(1021,1021,'accessories/wearable_items/leather/rare/medium/shoulders',0), -(1022,1022,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_banner07_single01',1096), -(1023,1023,'accessories/wearable_items/leather/rare/low/chest',0), -(1024,1024,'accessories/wearable_items/leather/rare/low/feet',0), -(1025,1025,'accessories/wearable_items/leather/rare/low/forearms',0), -(1026,1026,'accessories/wearable_items/leather/rare/low/hands',0), -(1027,1027,'accessories/wearable_items/leather/rare/low/head',0), -(1028,1028,'accessories/wearable_items/leather/rare/low/legs',0), -(1029,1029,'accessories/wearable_items/leather/rare/low/shoulders',0), -(1030,1030,'staticobjects/_exp07/othmir/vel_iceclad_othmir_shell01_dpo',1096), -(1031,1031,'accessories/wearable_items/leather/rare/high/chest',0), -(1032,1032,'accessories/wearable_items/leather/rare/high/feet',0), -(1033,1033,'accessories/wearable_items/leather/rare/high/forearms',0), -(1034,1034,'accessories/wearable_items/leather/rare/high/hands',0), -(1035,1035,'accessories/wearable_items/leather/rare/high/head',0), -(1036,1036,'accessories/wearable_items/leather/rare/high/legs',0), -(1037,1037,'accessories/wearable_items/leather/rare/high/shoulders',0), -(1038,1038,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_chandelier01',1096), -(1039,1039,'accessories/wearable_items/leather/artifact/medium/chest',0), -(1040,1040,'accessories/wearable_items/leather/artifact/medium/feet',0), -(1041,1041,'accessories/wearable_items/leather/artifact/medium/forearms',0), -(1042,1042,'accessories/wearable_items/leather/artifact/medium/hands',0), -(1043,1043,'accessories/wearable_items/leather/artifact/medium/head',0), -(1044,1044,'accessories/wearable_items/leather/artifact/medium/legs',0), -(1045,1045,'accessories/wearable_items/leather/artifact/medium/shoulders',0), -(1046,1046,'accessories/wearable_items/leather/artifact/medium/skirt',0), -(1047,1047,'accessories/wearable_items/leather/artifact/low/chest',0), -(1048,1048,'accessories/wearable_items/leather/artifact/low/feet',0), -(1049,1049,'accessories/wearable_items/leather/artifact/low/forearms',0), -(1050,1050,'accessories/wearable_items/leather/artifact/low/hands',0), -(1051,1051,'accessories/wearable_items/leather/artifact/low/head',0), -(1052,1052,'accessories/wearable_items/leather/artifact/low/legs',0), -(1053,1053,'accessories/wearable_items/leather/artifact/low/shoulders',0), -(1054,1054,'accessories/wearable_items/leather/artifact/low/skirt',0), -(1055,1055,'accessories/wearable_items/leather/artifact/high/chest',0), -(1056,1056,'accessories/wearable_items/leather/artifact/high/feet',0), -(1057,1057,'accessories/wearable_items/leather/artifact/high/forearms',0), -(1058,1058,'accessories/wearable_items/leather/artifact/high/hands',0), -(1059,1059,'accessories/wearable_items/leather/artifact/high/head',0), -(1060,1060,'accessories/wearable_items/leather/artifact/high/legs',0), -(1061,1061,'accessories/wearable_items/leather/artifact/high/shoulders',0), -(1062,1062,'staticobjects/_exp07/velks/exp07_dun_velkslab_fortress_banner08_single01',1096), -(1063,1063,'accessories/wearable_items/leather/common/high/chest',0), -(1064,1064,'accessories/wearable_items/leather/common/high/feet',0), -(1065,1065,'accessories/wearable_items/leather/common/high/forearms',0), -(1066,1066,'accessories/wearable_items/leather/common/high/hands',0), -(1067,1067,'accessories/wearable_items/leather/common/high/head',0), -(1068,1068,'accessories/wearable_items/leather/common/high/legs',0), -(1069,1069,'accessories/wearable_items/leather/common/high/shoulders',0), -(1070,1070,'accessories/wearable_items/leather/common/high/skirt',0), -(1071,1071,'accessories/wearable_items/leather/common/medium/chest',0), -(1072,1072,'accessories/wearable_items/leather/common/medium/feet',0), -(1073,1073,'accessories/wearable_items/leather/common/medium/forearms',0), -(1074,1074,'accessories/wearable_items/leather/common/medium/hands',0), -(1075,1075,'accessories/wearable_items/leather/common/medium/head',0), -(1076,1076,'accessories/wearable_items/leather/common/medium/legs',0), -(1077,1077,'accessories/wearable_items/leather/common/medium/shoulders',0), -(1078,1078,'accessories/wearable_items/leather/common/medium/skirt',0), -(1079,1079,'accessories/wearable_items/leather/common/low/chest',0), -(1080,1080,'accessories/wearable_items/leather/common/low/feet',0), -(1081,1081,'accessories/wearable_items/leather/common/low/forearms',0), -(1082,1082,'accessories/wearable_items/leather/common/low/hands',0), -(1083,1083,'accessories/wearable_items/leather/common/low/head',0), -(1084,1084,'accessories/wearable_items/leather/common/low/legs',0), -(1085,1085,'accessories/wearable_items/leather/common/low/shoulders',0), -(1086,1086,'accessories/wearable_items/leather/common/low/skirt',0), -(1087,1087,'staticobjects/_exp07/tofs/tfs_table_glass_cathedral02_with_runner_dpo',1096), -(1088,1088,'staticobjects/_exp07/tofs/tfs_floor05_tserrina_statue_pedestal01',1096), -(1089,1089,'staticobjects/_exp07/tofs/tofs_statue_tserrina_cathedral01',1096), -(1090,1090,'staticobjects/_exp07/tofs/tfs_banner_military_01',1096), -(1091,1091,'staticobjects/_exp07/tofs/tfs_banner_military_01_wide',1096), -(1092,1092,'staticobjects/_exp07/tofs/tfs_banner_military_02',1096), -(1093,1093,'staticobjects/_exp07/tofs/tfs_bed_bunk_01',1096), -(1094,1094,'staticobjects/_exp07/tofs/tfs_bed_maid01',1096), -(1095,1095,'staticobjects/_exp07/tofs/tfs_bed_officer01',1096), -(1096,1096,'staticobjects/_exp07/tofs/tfs_bed_twin01',1096), -(1097,1097,'staticobjects/_exp07/tofs/tfs_bench_blue01',1096), -(1098,1098,'staticobjects/_exp07/tofs/tfs_bench_maroon01',1096), -(1099,1099,'staticobjects/_exp07/tofs/tfs_bench_military01',1096), -(1100,1100,'staticobjects/_exp07/tofs/tfs_bench_military02',1096), -(1101,1101,'staticobjects/_exp07/tofs/tfs_bookcase_low01',1096), -(1102,1102,'staticobjects/_exp07/tofs/tfs_bookcase_low01_empty',1096), -(1103,1103,'staticobjects/_exp07/tofs/tfs_bookcase_tall01',1096), -(1104,1104,'staticobjects/_exp07/tofs/tfs_bookcase_tall01_empty',1096), -(1105,1105,'staticobjects/_exp07/tofs/tfs_books_single01',1096), -(1106,1106,'staticobjects/_exp07/tofs/tfs_books_single_ornate01',1096), -(1107,1107,'staticobjects/_exp07/tofs/tfs_chair_blue01',1096), -(1108,1108,'staticobjects/_exp07/tofs/tfs_chair_red01',1096), -(1109,1109,'staticobjects/_exp07/tofs/tfs_coffin01',1096), -(1110,1110,'staticobjects/_exp07/tofs/tfs_couch_blue01',1096), -(1111,1111,'staticobjects/_exp07/tofs/tfs_couch_red01',1096), -(1112,1112,'staticobjects/_exp07/tofs/tfs_desk_military01',1096), -(1113,1113,'accessories/hair/hair000',0), -(1114,1114,'accessories/hair/hair019',0), -(1115,1115,'accessories/hair/hair018',0), -(1116,1116,'accessories/hair/hair020',0), -(1117,1117,'staticobjects/_exp07/tofs/tfs_floor01_lightsource_wall01',1096), -(1118,1118,'staticobjects/_exp07/tofs/tfs_floor03_lightsource_chandelier01',1096), -(1119,1119,'accessories/hair/hair021',0), -(1120,1120,'accessories/hair/hair022',0), -(1121,1121,'accessories/hair/hair024',0), -(1122,1122,'accessories/hair/hair025',0), -(1123,1123,'accessories/hair/hair023',0), -(1124,1124,'accessories/hair/hair013',0), -(1125,1125,'accessories/hair/hair012',0), -(1126,1126,'accessories/hair/hair011',0), -(1127,1127,'accessories/hair/hair010',0), -(1128,1128,'accessories/hair/hair009',0), -(1129,1129,'accessories/hair/hair014',0), -(1130,1130,'accessories/hair/hair015',0), -(1131,1131,'accessories/hair/hair016',0), -(1132,1132,'accessories/hair/hair017',0), -(1133,1133,'accessories/hair/hair001',0), -(1134,1134,'accessories/hair/hair007',0), -(1135,1135,'accessories/hair/hair008',0), -(1136,1136,'accessories/hair/hair002',0), -(1137,1137,'accessories/hair/hair003',0), -(1138,1138,'accessories/hair/hair004',0), -(1139,1139,'accessories/hair/hair005',0), -(1140,1140,'accessories/hair/hair006',0), -(1141,1141,'staticobjects/_exp07/tofs/tfs_floor03_lightsource_wall01',1096), -(1142,1142,'staticobjects/_exp07/tofs/tfs_floor04_coffin_rest01',1096), -(1143,1143,'staticobjects/_exp07/tofs/tfs_floor04_lightsource_floortorch01',1096), -(1144,1144,'staticobjects/_exp07/tofs/tfs_floor04_lightsource_wall01',1096), -(1145,1145,'staticobjects/_exp07/tofs/tfs_floor04_podium01',1096), -(1146,1146,'staticobjects/_exp07/tofs/tfs_floor05_cake_pedestal01',1096), -(1147,1147,'staticobjects/_exp07/tofs/tfs_floor05_lightsource_floor01',1096), -(1148,1148,'staticobjects/_exp07/tofs/tfs_floor06_mirror_floating',1096), -(1149,1149,'staticobjects/_exp07/tofs/tfs_floor07_lightsource_chandelier01',1096), -(1150,1150,'staticobjects/_exp07/tofs/tfs_floor07_lightsource_floor01',1096), -(1151,1151,'staticobjects/_exp07/tofs/tfs_floor07_lightsource_wall01',1096), -(1152,1152,'staticobjects/_exp07/tofs/tfs_kitchen_chalice_blood02',1096), -(1153,1153,'staticobjects/_exp07/tofs/tfs_mirror_boss01',1096), -(1154,1154,'staticobjects/_exp07/tofs/tfs_painting_mayong01',1096), -(1155,1155,'staticobjects/_exp07/tofs/tfs_piano_open01',1096), -(1156,1156,'staticobjects/_exp07/tofs/tfs_rug_cathedral01',1096), -(1157,1157,'staticobjects/_exp07/tofs/tfs_rug_cathedral02',1096), -(1158,1158,'staticobjects/_exp07/tofs/tfs_rug_military01',1096), -(1159,1159,'staticobjects/_exp07/tofs/tfs_rug_military02',1096), -(1160,1160,'staticobjects/_exp07/tofs/tfs_table_bedside01',1096), -(1161,1161,'staticobjects/_exp07/tofs/tfs_table_dining_military01',1096), -(1162,1162,'staticobjects/_exp07/tofs/tfs_table_glass_cathedral01_with_runner_dpo',1096), -(1163,1163,'staticobjects/_exp07/tofs/tfs_table_glass_cathedral02',1096), -(1164,1164,'accessories/hair/face/face008',0), -(1165,1165,'accessories/hair/face/face009',0), -(1166,1166,'accessories/hair/face/face010',0), -(1167,1167,'accessories/hair/face/face011',0), -(1168,1168,'accessories/hair/face/face012',0), -(1169,1169,'accessories/hair/face/face013',0), -(1170,1170,'accessories/hair/face/face014',0), -(1171,1171,'accessories/hair/face/face015',0), -(1172,1172,'accessories/hair/face/face016',0), -(1173,1173,'accessories/hair/face/face017',0), -(1174,1174,'accessories/hair/face/face018',0), -(1175,1175,'accessories/hair/face/face019',0), -(1176,1176,'accessories/hair/face/face020',0), -(1177,1177,'accessories/hair/face/face021',0), -(1178,1178,'accessories/hair/face/face022',0), -(1179,1179,'accessories/hair/face/face023',0), -(1180,1180,'accessories/hair/face/face024',0), -(1181,1181,'accessories/hair/face/face025',0), -(1182,1182,'accessories/hair/face/face026',0), -(1183,1183,'accessories/hair/face/face027',0), -(1184,1184,'accessories/hair/face/face000',0), -(1185,1185,'accessories/hair/face/face001',0), -(1186,1186,'accessories/hair/face/face002',0), -(1187,1187,'accessories/hair/face/face003',0), -(1188,1188,'accessories/hair/face/face004',0), -(1189,1189,'accessories/hair/face/face005',0), -(1190,1190,'accessories/hair/face/face006',0), -(1191,1191,'accessories/hair/face/face007',0), -(1192,1192,'staticobjects/_exp07/tofs/tfs_table_marble_blue01',1096), -(1193,1193,'staticobjects/_exp07/tofs/tfs_table_marble_blue02',1096), -(1194,1194,'staticobjects/_exp07/tofs/tfs_table_marble_maroon01',1096), -(1195,1195,'staticobjects/_exp07/tofs/tfs_table_marble_maroon02',1096), -(1196,1196,'staticobjects/_exp07/tofs/tfs_weaponrack_wall01',1096), -(1197,1197,'staticobjects/_exp07/tofs/tofs_floor08_crystal_orbit01_all_houseitem',1096), -(1198,1198,'staticobjects/_exp07/tofs/tofs_statue_mayong01',1096), -(1199,1199,'staticobjects/_exp07/tofs/tofs_statue_tserrina01',1096), -(1200,1200,'accessories/wearable_items/_exp07/leather_overland_armor/skirt',1096), -(1201,1201,'accessories/wearable_items/_exp07/leather_overland_armor/chest',1096), -(1202,1202,'accessories/wearable_items/_exp07/leather_overland_armor/feet',1096), -(1203,1203,'accessories/wearable_items/_exp07/leather_overland_armor/forearms',1096), -(1204,1204,'accessories/wearable_items/_exp07/leather_overland_armor/hands',1096), -(1205,1205,'accessories/wearable_items/_exp07/leather_overland_armor/head',1096), -(1206,1206,'accessories/wearable_items/_exp07/leather_overland_armor/leather_overland_collar',1096), -(1207,1207,'accessories/wearable_items/_exp07/leather_overland_armor/legs',1096), -(1208,1208,'accessories/wearable_items/_exp07/leather_overland_armor/legs_noskirt',1096), -(1209,1209,'accessories/wearable_items/_exp07/leather_overland_armor/pauldron_left',1096), -(1210,1210,'accessories/wearable_items/_exp07/leather_overland_armor/pauldron_right',1096), -(1211,1211,'accessories/wearable_items/_exp07/leather_overland_armor/shoulders',1096), -(1212,1212,'accessories/wearable_items/_exp07/leather_overland_armor/shoulders_nopauldrons',1096), -(1213,1213,'accessories/wearable_items/cloak/exp07/cloak_leather_overland',1096), -(1214,1214,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/skirt',1096), -(1215,1215,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/chest',1096), -(1216,1216,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/feet',1096), -(1217,1217,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/forearms',1096), -(1218,1218,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/hands',1096), -(1219,1219,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/head',1096), -(1220,1220,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/legs',1096), -(1221,1221,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/legs_noskirt',1096), -(1222,1222,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/rallos_zek_chain_pauldron_left',1096), -(1223,1223,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/rallos_zek_chain_pauldron_right',1096), -(1224,1224,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/rallos_zek_chain_pauldron_small_left',1096), -(1225,1225,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/rallos_zek_chain_pauldron_small_right',1096), -(1226,1226,'staticobjects/_exp07/tradeskill_coldain_prayershawl_hq_houseitem',1096), -(1227,1227,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/shoulders_nopauldrons',1096), -(1228,1228,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/shoulders_rallos_zek_epic_pauldrons',1096), -(1229,1229,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_tintable/shoulders_rallos_zek_small_pauldrons',1096), -(1230,1230,'accessories/wieldable_items/shields/exp07/lodizal_shield',1096), -(1231,1231,'staticobjects/guildhall/trophies/floor_statue_of_rallos_zek_fx',1096), -(1232,1232,'staticobjects/guildhall/trophies/floor_king_tormax_fx',1096), -(1233,1233,'staticobjects/guildhall/trophies/floor_kraytoc_fx',1096), -(1234,1234,'staticobjects/_exp07/tenth_ring_hq_houseitem',1096), -(1235,1235,'_exp07/characters/monsters/ice_dragon/ice_dragon',1096), -(1236,1236,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_goth',1096), -(1237,1237,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/skirt',1096), -(1238,1238,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/chest',1096), -(1239,1239,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/feet',1096), -(1240,1240,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/forearms',1096), -(1241,1241,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/hands',1096), -(1242,1242,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/head',1096), -(1243,1243,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/legs',1096), -(1244,1244,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/legs_noskirt',1096), -(1245,1245,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/shoulders_nopauldrons',1096), -(1246,1246,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/shoulders_rallos_zek_epic_pauldrons',1096), -(1247,1247,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_tintable/shoulders_rallos_zek_small_pauldrons',1096), -(1248,1248,'accessories/wieldable_items/weapons/fist/qeynos_wraps/qeynos_wraps_skulls',1096), -(1249,1249,'_exp07/characters/tool_users/tserrina/tserrina_darkelf',1096), -(1250,1250,'accessories/npc_wearables/tserrina/forearms_dark_elf',1096), -(1251,1251,'accessories/npc_wearables/tserrina/feet_dark_elf_shin',1096), -(1252,1252,'accessories/wieldable_items/weapons/exp07/talisman/exp07_totem_yawningmaw_velium',1096), -(1253,1253,'accessories/wieldable_items/weapons/exp07/talisman/exp07_totem_yawningmaw',1096), -(1254,1254,'accessories/wieldable_items/weapons/exp07/talisman/exp07_totem_yawningmaw_stone',1096), -(1255,1255,'accessories/wieldable_items/weapons/exp07/talisman/exp07_totem_yawningmaw_ruby',1096), -(1256,1256,'accessories/wieldable_items/weapons/exp07/talisman/exp07_scepter_brightstar',1096), -(1257,1257,'accessories/wieldable_items/weapons/exp07/talisman/exp07_scepter_brightstar_iron',1096), -(1258,1258,'accessories/wieldable_items/weapons/exp07/talisman/exp07_totem_bristlebane',1096), -(1259,1259,'accessories/wieldable_items/weapons/exp07/talisman/book_antique',1096), -(1260,1260,'accessories/wieldable_items/weapons/exp07/talisman/book_caged',1096), -(1261,1261,'accessories/wieldable_items/weapons/exp07/talisman/book_caged_monster',1096), -(1262,1262,'accessories/wieldable_items/weapons/exp07/talisman/book_caged_monster_undead',1096), -(1263,1263,'accessories/wieldable_items/weapons/exp07/talisman/book_antique_blueglow',1096), -(1264,1264,'accessories/wieldable_items/weapons/exp07/talisman/book_antique_orangeglow',1096), -(1265,1265,'accessories/wieldable_items/weapons/exp07/talisman/book_songbook',1096), -(1266,1266,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_wooden',1096), -(1267,1267,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_dragon_red',1096), -(1268,1268,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_dragon_green',1096), -(1269,1269,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_dragon_dark',1096), -(1270,1270,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_dragon',1096), -(1271,1271,'accessories/wieldable_items/weapons/exp07/shield/exp05_shield06_bloodstone',1096), -(1272,1272,'accessories/wieldable_items/weapons/exp07/shield/exp05_shield06_velium',1096), -(1273,1273,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_woodburl',1096), -(1274,1274,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_metal_iron',1096), -(1275,1275,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_kite_metal_bronze',1096), -(1276,1276,'staticobjects/tcg/tcg_tapestry_arbor',1096), -(1277,1277,'staticobjects/tcg/tcg_painting57_impetuousrover',1096), -(1278,1278,'staticobjects/tcg/tcg_painting55_bloodforgehammer',1096), -(1279,1279,'staticobjects/tcg/tcg_painting54_shieldmaster',1096), -(1280,1280,'staticobjects/tcg/tcg_painting53_retiredhero',1096), -(1281,1281,'staticobjects/tcg/tcg_painting52_vengeance',1096), -(1282,1282,'staticobjects/tcg/tcg_tapestry_dragonslayer',1096), -(1283,1283,'staticobjects/tcg/tcg_tapestry_guardian',1096), -(1284,1284,'staticobjects/tcg/tcg_tapestry_clearing',1096), -(1285,1285,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/chest',1096), -(1286,1286,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/feet',1096), -(1287,1287,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/forearms',1096), -(1288,1288,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/hands',1096), -(1289,1289,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/head',1096), -(1290,1290,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/legs',1096), -(1291,1291,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/legs_noskirt',1096), -(1292,1292,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/rallos_zek_vanguard_pauldron_epic_left',1096), -(1293,1293,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/rallos_zek_vanguard_pauldron_epic_right',1096), -(1294,1294,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/rallos_zek_vanguard_pauldron_small_left',1096), -(1295,1295,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/rallos_zek_vanguard_pauldron_small_right',1096), -(1296,1296,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/right',1096), -(1297,1297,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/shoulders_nopauldrons',1096), -(1298,1298,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/shoulders_rallos_zek_epic_pauldrons',1096), -(1299,1299,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/shoulders_rallos_zek_small_pauldrons',1096), -(1300,1300,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_tintable/skirt',1096), -(1301,1301,'staticobjects/tapestry/gh_freeport_carpenter_tapestry_dpo',1096), -(1302,1302,'staticobjects/tapestry/gh_qeynos_carpenter_tapestry_dpo',1096), -(1303,1303,'staticobjects/liveevent/brew_day/vel_distillery_stage_01_01',1096), -(1304,1304,'staticobjects/liveevent/brew_day/vel_distillery_stage_02_01',1096), -(1305,1305,'staticobjects/liveevent/brew_day/vel_distillery_stage_03_01',1096), -(1306,1306,'staticobjects/liveevent/bristlebane_day/dpo_djn_steel_painting04_tree',1096), -(1307,1307,'staticobjects/liveevent/bristlebane_day/dpo_runny_anvil01',1096), -(1308,1308,'staticobjects/liveevent/bristlebane_day/dpo_runny_brazier03',1096), -(1309,1309,'staticobjects/liveevent/bristlebane_day/dpo_runny_bucketforge01',1096), -(1310,1310,'staticobjects/liveevent/bristlebane_day/dpo_halfing_barrel01_fish',1096), -(1311,1311,'staticobjects/liveevent/bristlebane_day/dpo_hafling_wheelbarrow01',1096), -(1312,1312,'staticobjects/liveevent/brew_day/dpo_eu_winebottle_green01',1096), -(1313,1313,'staticobjects/liveevent/brew_day/dpo_hal_cup_01',1096), -(1314,1314,'staticobjects/liveevent/brew_day/dpo_hal_cup_02',1096), -(1315,1315,'staticobjects/liveevent/brew_day/dpo_hal_ironpot_01',1096), -(1316,1316,'staticobjects/panels/dpo_panel_bristlebane_coin',1096), -(1317,1317,'staticobjects/panels/dpo_panel_groundclover',1096), -(1318,1318,'staticobjects/panels/dpo_panel_stainedglass_blue',1096), -(1319,1319,'staticobjects/panels/dpo_panel_stainedglass_green',1096), -(1320,1320,'staticobjects/panels/dpo_panel_stainedglass_purple',1096), -(1321,1321,'staticobjects/panels/dpo_panel_stainedglass_red',1096), -(1322,1322,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_crush_nipiks_cane_sm_npc_only',1096), -(1323,1323,'accessories/wearable_items/cloak/exp07/cloak_dragonskin_fl',1096), -(1324,1324,'accessories/wearable_items/cloak/exp07/cloak_compass_movingclouds',1096), -(1325,1325,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_flail_cinder_big',1096), -(1326,1326,'creatures/mounts/horse_heavy/horse_heavy_brown_evil',1096), -(1327,1327,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_hand_mirror_01',1096), -(1328,1328,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_hairbrush_01',1096), -(1329,1329,'_exp07/objects/tofs/tofs_rock_group01',1096), -(1330,1330,'creatures/monsters/gnomerace_twister_blaster',1096), -(1331,1331,'staticobjects/liveevent/bristlebane_day/tradeskill_collection_golden_meat_bucket',1096), -(1332,1332,'staticobjects/liveevent/bristlebane_day/bristlebane_day_totem_01',1096), -(1333,1333,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/skirt',1096), -(1334,1334,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/chest',1096), -(1335,1335,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/feet',1096), -(1336,1336,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/hands',1096), -(1337,1337,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/head',1096), -(1338,1338,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/pants',1096), -(1339,1339,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_tintable/rallos_zek_robe_belt_plate',1096), -(1340,1340,'accessories/wearable_items/_exp07/vanguard_overland/skirt',1096), -(1341,1341,'accessories/wearable_items/_exp07/vanguard_overland/chest',1096), -(1342,1342,'accessories/wearable_items/_exp07/vanguard_overland/feet',1096), -(1343,1343,'accessories/wearable_items/_exp07/vanguard_overland/hands',1096), -(1344,1344,'accessories/wearable_items/_exp07/vanguard_overland/head',1096), -(1345,1345,'accessories/wearable_items/_exp07/vanguard_overland/legs',1096), -(1346,1346,'creatures/tu/aqua_goblin',0), -(1347,1347,'staticobjects/crypt/comland_cem_mausoleum003',0), -(1348,1348,'accessories/wearable_items/_exp07/vanguard_overland/legs_noskirt',1096), -(1349,1349,'accessories/wearable_items/_exp07/vanguard_overland/right',1096), -(1350,1350,'accessories/wearable_items/_exp07/vanguard_overland/shoulders',1096), -(1351,1351,'accessories/wearable_items/_exp07/vanguard_overland/shoulders_nopauldrons',1096), -(1352,1352,'staticobjects/liveevent/brew_day/dpo_drv_keg_large01',1096), -(1353,1353,'staticobjects/liveevent/brew_day/dpo_drv_kegstand_double01',1096), -(1354,1354,'staticobjects/liveevent/bristlebane_day/dpo_cr_beermug_orc01',1096), -(1355,1355,'staticobjects/liveevent/bristlebane_day/dpo_cr_stein_orc01',1096), -(1356,1356,'staticobjects/liveevent/bristlebane_day/dpo_cr_plate_orc_withgrub01',1096), -(1357,1357,'staticobjects/liveevent/bristlebane_day/dpo_cr_bowl_orc_with_grub02',1096), -(1358,1358,'staticobjects/liveevent/bristlebane_day/dpo_djn_steel_painting02',1096), -(1359,1359,'staticobjects/liveevent/bristlebane_day/dpo_drv_pillow_seat01',1096), -(1360,1360,'staticobjects/liveevent/bristlebane_day/dpo_drv_pillow_seat02',1096), -(1361,1361,'staticobjects/liveevent/bristlebane_day/dpo_djn_wine_bottle_gold01',1096), -(1362,1362,'staticobjects/liveevent/bristlebane_day/dpo_djn_cup_brass01',1096), -(1363,1363,'staticobjects/liveevent/bristlebane_day/dpo_djn_cup_blue01',1096), -(1364,1364,'staticobjects/liveevent/bristlebane_day/dpo_djn_plate_blue01',1096), -(1365,1365,'staticobjects/liveevent/bristlebane_day/dpo_djn_plate_gold01',1096), -(1366,1366,'staticobjects/liveevent/bristlebane_day/dpo_djn_bowl_blue01',1096), -(1367,1367,'staticobjects/befallen_epic01/coffin_box_1',0), -(1368,1368,'staticobjects/befallen_epic01/coffin_lid_1',0), -(1369,1369,'creatures/mounts/carpet',0), -(1370,1370,'creatures/monsters/gargoyle',0), -(1371,1371,'creatures/monsters/gargoyle_fiendish',0), -(1372,1372,'creatures/monsters/lioness',0), -(1373,1373,'creatures/monsters/manticore_ebon',0), -(1374,1374,'creatures/monsters/wolf_dire',0), -(1375,1375,'creatures/monsters/wyrm_fire',0), -(1376,1376,'creatures/monsters/wyrm_ice',0), -(1377,1377,'staticobjects/liveevent/bristlebane_day/dpo_djn_bowl_gold01',1096), -(1378,1378,'creatures/tu/succubus',0), -(1379,1379,'staticobjects/nektulos/trailor01',0), -(1380,1380,'staticobjects/nektulos/wagon01',0), -(1381,1381,'staticobjects/ecology/bed_single',0), -(1382,1382,'staticobjects/ecology/elfbed01',0), -(1383,1383,'staticobjects/ecology/qst_unseenhand_evilchest',0), -(1384,1384,'creatures/tu/gnoll',0), -(1385,1385,'staticobjects/ecology/qst_unseenhand_bunkbead_1',0), -(1386,1386,'staticobjects/ecology/qst_unseenhand_card_table',0), -(1387,1387,'staticobjects/ecology/qst_unseenhand_operating_table',0), -(1388,1388,'staticobjects/ecology/qst_unseenhand_painting_1',0), -(1389,1389,'staticobjects/ecology/qst_unseenhand_barrel_1',0), -(1390,1390,'staticobjects/ecology/qst_unseenhand_bookcase_1',0), -(1391,1391,'staticobjects/ecology/qst_unseenhand_chair_1',0), -(1392,1392,'staticobjects/ecology/qst_unseenhand_chest_1',0), -(1393,1393,'staticobjects/ecology/qst_unseenhand_crate_1',0), -(1394,1394,'staticobjects/ecology/qst_unseenhand_fireplace_1',0), -(1395,1395,'staticobjects/ecology/qst_unseenhand_firewood_1',0), -(1396,1396,'staticobjects/ecology/qst_unseenhand_firewood_2',0), -(1397,1397,'staticobjects/ecology/qst_unseenhand_floorlight_1',0), -(1398,1398,'staticobjects/ecology/qst_unseenhand_keg_1',0), -(1399,1399,'staticobjects/ecology/qst_unseenhand_kitchen_1',0), -(1400,1400,'staticobjects/ecology/qst_unseenhand_mug_1',0), -(1401,1401,'staticobjects/ecology/qst_unseenhand_table_1',0), -(1402,1402,'staticobjects/ecology/qst_unseenhand_table_2',0), -(1403,1403,'staticobjects/ecology/qst_unseenhand_wine_1',0), -(1404,1404,'staticobjects/maps/commonlandsmap01',0), -(1405,1405,'staticobjects/maps/placeholder',0), -(1406,1406,'staticobjects/ecology/qst_galintos_bedframe_1',0), -(1407,1407,'staticobjects/ecology/qst_galintos_bedroll_1',0), -(1408,1408,'staticobjects/ecology/qst_galintos_bed_1',0), -(1409,1409,'staticobjects/ecology/qst_galintos_bookcase_1',0), -(1410,1410,'staticobjects/ecology/qst_galintos_bookcase_2',0), -(1411,1411,'staticobjects/ecology/qst_galintos_brazier_1',0), -(1412,1412,'staticobjects/ecology/qst_galintos_candelabra_1',0), -(1413,1413,'staticobjects/ecology/qst_galintos_chess_1',0), -(1414,1414,'staticobjects/ecology/qst_galintos_dresser_1',0), -(1415,1415,'staticobjects/ecology/qst_galintos_fairy_bath_1',0), -(1416,1416,'staticobjects/ecology/qst_galintos_globe_1',0), -(1417,1417,'staticobjects/ecology/qst_galintos_mage_1',0), -(1418,1418,'staticobjects/ecology/qst_galintos_ogre_chair_1',0), -(1419,1419,'staticobjects/ecology/qst_galintos_ogre_food_1',0), -(1420,1420,'staticobjects/ecology/qst_galintos_ogre_mug_1',0), -(1421,1421,'staticobjects/ecology/qst_galintos_ogre_soup_1',0), -(1422,1422,'staticobjects/ecology/qst_galintos_ogre_table_1',0), -(1423,1423,'staticobjects/ecology/qst_galintos_stove_1',0), -(1424,1424,'staticobjects/ecology/qst_galintos_table_1',0), -(1425,1425,'staticobjects/ecology/qst_galintos_vase_1',0), -(1426,1426,'staticobjects/ecology/qst_unseenhand_picture_1',0), -(1427,1427,'staticobjects/ecology/qst_unseenhand_smashed_1',0), -(1428,1428,'staticobjects/ecology/qst_unseenhand_smashed_barrel_1',0), -(1429,1429,'creatures/tu/ice_giant_warrior',0), -(1430,1430,'ec/pc/froglok/froglok_male_blackgoo',0), -(1431,1431,'ec/pc/froglok/froglok_male_leopard',0), -(1432,1432,'staticobjects/fallengate/doors/boss_door_left',0), -(1433,1433,'staticobjects/torches/elise_wall_scontz',0), -(1434,1434,'staticobjects/jumjum_jar_01',0), -(1435,1435,'staticobjects/chairs/orcish_throne',0), -(1436,1436,'staticobjects/doors/huge_skull_door_left',0), -(1437,1437,'staticobjects/doors/huge_skull_door_right',0), -(1438,1438,'staticobjects/doors/orcish_wooden_door',0), -(1439,1439,'staticobjects/doorways/heavy_stone_archway',0), -(1440,1440,'ec/pc/woodelf/woodelf_female_tattoo01',0), -(1441,1441,'ec/pc/woodelf/woodelf_female_tattoo02',0), -(1442,1442,'ec/pc/woodelf/woodelf_female_tattoo03',0), -(1443,1443,'ec/pc/woodelf/woodelf_female_tattoo04',0), -(1444,1444,'ec/pc/woodelf/woodelf_female_tattoo05',0), -(1445,1445,'ec/pc/woodelf/woodelf_female_tattoo06',0), -(1446,1446,'ec/pc/woodelf/woodelf_female_tattoo07',0), -(1447,1447,'ec/pc/woodelf/woodelf_male_tattoo01',0), -(1448,1448,'ec/pc/woodelf/woodelf_male_tattoo02',0), -(1449,1449,'ec/pc/woodelf/woodelf_male_tattoo03',0), -(1450,1450,'ec/pc/woodelf/woodelf_male_tattoo04',0), -(1451,1451,'ec/pc/woodelf/woodelf_male_tattoo05',0), -(1452,1452,'ec/pc/woodelf/woodelf_male_tattoo06',0), -(1453,1453,'staticobjects/books/flat_brown_goldtrim_01',0), -(1454,1454,'staticobjects/doors/cazicthule/door_stone_new',0), -(1455,1455,'staticobjects/doors/cazicthule/door_stone_worn',0), -(1456,1456,'staticobjects/chairs/fprt_hood_chair_broken01',0), -(1457,1457,'staticobjects/chairs/qst_broken_chair_warrior_cap',0), -(1458,1458,'staticobjects/weapons/longsword_uncommon_nektropos',0), -(1459,1459,'staticobjects/tableware/halfling_tablejunk01',0), -(1460,1460,'staticobjects/tree/deadtrunk',0), -(1461,1461,'staticobjects/portals/rallos_zek_portal',1096), -(1462,1462,'ec/pc/barbarian/barbarian_female_tattoo01',0), -(1463,1463,'ec/pc/barbarian/barbarian_female_tattoo02',0), -(1464,1464,'ec/pc/barbarian/barbarian_female_tattoo03',0), -(1465,1465,'ec/pc/barbarian/barbarian_female_tattoo04',0), -(1466,1466,'ec/pc/barbarian/barbarian_female_tattoo05',0), -(1467,1467,'ec/pc/barbarian/barbarian_male_tattoo01',0), -(1468,1468,'ec/pc/barbarian/barbarian_male_tattoo02',0), -(1469,1469,'ec/pc/barbarian/barbarian_male_tattoo03',0), -(1470,1470,'ec/pc/barbarian/barbarian_male_tattoo04',0), -(1471,1471,'ec/pc/barbarian/barbarian_male_tattoo05',0), -(1472,1472,'staticobjects/beds/singlebed001',0), -(1473,1473,'staticobjects/chests/chest_coll_01',0), -(1474,1474,'staticobjects/sacks/qey_floursacksgroup003',0), -(1475,1475,'ec/pc/dwarf/dwarf_female_tattoo01',0), -(1476,1476,'ec/pc/dwarf/dwarf_female_tattoo02',0), -(1477,1477,'ec/pc/dwarf/dwarf_female_tattoo03',0), -(1478,1478,'ec/pc/dwarf/dwarf_female_tattoo04',0), -(1479,1479,'ec/pc/dwarf/dwarf_female_tattoo05',0), -(1480,1480,'ec/pc/dwarf/dwarf_male_tattoo01',0), -(1481,1481,'ec/pc/dwarf/dwarf_male_tattoo02',0), -(1482,1482,'ec/pc/dwarf/dwarf_male_tattoo03',0), -(1483,1483,'ec/pc/dwarf/dwarf_male_tattoo04',0), -(1484,1484,'ec/pc/dwarf/dwarf_male_tattoo05',0), -(1485,1485,'ec/pc/dwarf/dwarf_male_tattoo06',0), -(1486,1486,'ec/pc/woodelf/woodelf_female_tattoo08',0), -(1487,1487,'ec/pc/woodelf/woodelf_male_tattoo07',0), -(1488,1488,'ec/pc/woodelf/woodelf_male_tattoo08',0), -(1489,1489,'staticobjects/sewer_grate_01',0), -(1490,1490,'staticobjects/white_tombstone_01',0), -(1491,1491,'staticobjects/bookcases/hum_shelf_simple_01',0), -(1492,1492,'staticobjects/chairs/fprt_bench_plainlong01',0), -(1493,1493,'staticobjects/chests/qey_birdcage001',0), -(1494,1494,'staticobjects/chests/qey_birdcage002',0), -(1495,1495,'staticobjects/chests/qey_cage001',0), -(1496,1496,'staticobjects/chests/qey_cage002',0), -(1497,1497,'staticobjects/containers/crate_large_long001',0), -(1498,1498,'staticobjects/containers/fprt_chest_large_plain01',0), -(1499,1499,'staticobjects/counters/fprt_counter_cornerornatemedium01',0), -(1500,1500,'staticobjects/counters/fprt_counter_cornerplainlong01',0), -(1501,1501,'staticobjects/counters/fprt_counter_straightornatelong01',0), -(1502,1502,'staticobjects/counters/fprt_counter_straightornatemedium01',0), -(1503,1503,'staticobjects/counters/fprt_counter_straightornatesmall01',0), -(1504,1504,'staticobjects/counters/fprt_counter_straightplainlong01',0), -(1505,1505,'staticobjects/counters/fprt_counter_straightplainmedium01',0), -(1506,1506,'staticobjects/counters/fprt_hood_counter_wood_2mlong001',0), -(1507,1507,'staticobjects/counters/fprt_hood_counter_wood_3mlong001',0), -(1508,1508,'staticobjects/counters/fprt_hood_counter_wood_4mlong001',0), -(1509,1509,'staticobjects/counters/fprt_hood_counter_wood_corner001',0), -(1510,1510,'staticobjects/counters/qey_bar_elbow',0), -(1511,1511,'staticobjects/doors/cazicthule/door_stone_ornate',0), -(1512,1512,'staticobjects/qeynos/qey_bank_vault',0), -(1513,1513,'staticobjects/qeynos/qey_crystal_globe',0), -(1514,1514,'staticobjects/relics/cazic_bowl_green',0), -(1515,1515,'staticobjects/tables/fprt_hood_table_large01',0), -(1516,1516,'staticobjects/tables/fprt_hood_table_small01',0), -(1517,1517,'staticobjects/tables/fprt_tables_scribedesk01',0), -(1518,1518,'staticobjects/tables/qey_butcherblock',0), -(1519,1519,'staticobjects/tables/qey_table_desk_plain',0), -(1520,1520,'staticobjects/soe_wallet/roulette_table_dpo',1096), -(1521,1521,'creatures/tu/skeleton',0), -(1522,1522,'staticobjects/relics/cazic_bowl_purple',0), -(1523,1523,'staticobjects/tree/nekf_mushroom_a_mature',0), -(1524,1524,'staticobjects/tree/nekf_mushroom_a_young',0), -(1525,1525,'staticobjects/tree/nekf_mushroom_blue',0), -(1526,1526,'staticobjects/cages/goblin_broken_cage01',0), -(1527,1527,'staticobjects/cages/goblin_broken_cage02',0), -(1528,1528,'staticobjects/cages/goblin_cage01',0), -(1529,1529,'staticobjects/chairs/goblin_chairs01',0), -(1530,1530,'staticobjects/flags/goblin_flag01',0), -(1531,1531,'staticobjects/flags/goblin_flag02',0), -(1532,1532,'staticobjects/flags/goblin_flag03',0), -(1533,1533,'staticobjects/goblin_misc/hanging_meat01',0), -(1534,1534,'staticobjects/racks/weaponrack001',0), -(1535,1535,'staticobjects/rubble/goblin_rubble01',0), -(1536,1536,'staticobjects/rubble/goblin_rubble02',0), -(1537,1537,'staticobjects/rubble/goblin_rubble03',0), -(1538,1538,'staticobjects/scafolds/goblin_scafold01',0), -(1539,1539,'staticobjects/scafolds/goblin_scafold02',0), -(1540,1540,'staticobjects/tables/goblin_cage01',0), -(1541,1541,'staticobjects/tables/goblin_table01',0), -(1542,1542,'staticobjects/tables/goblin_torture_table01',0), -(1543,1543,'staticobjects/targets/training_dummy001',0), -(1544,1544,'staticobjects/tents/goblin_tent01',0), -(1545,1545,'staticobjects/tents/goblin_tent02',0), -(1546,1546,'staticobjects/fallengate_epic01_boss/fallen_wall_01',0), -(1547,1547,'staticobjects/fires/goblin_brazier01',0), -(1548,1548,'_exp08/characters/monsters/warboar/warboar_drunder',1096), -(1549,1549,'staticobjects/gravestones/gravestone01',0), -(1550,1550,'staticobjects/rocks/rock01',0), -(1551,1551,'staticobjects/tree/stump01',0), -(1552,1552,'staticobjects/books/halfling_bookstand01',0), -(1553,1553,'staticobjects/tables/cr_librariansdesk001',0), -(1554,1554,'staticobjects/barricades/barricade_corner_left',0), -(1555,1555,'staticobjects/barricades/barricade_corner_right',0), -(1556,1556,'staticobjects/barricades/barricade_long',0), -(1557,1557,'staticobjects/barricades/barricade_short',0), -(1558,1558,'staticobjects/trainingdummy/training_dummy',0), -(1559,1559,'_exp08/characters/tool_users/chitari/chitari_base',1096), -(1560,1560,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_blue-gold',1096), -(1561,1561,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_blue-iron',1096), -(1562,1562,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_red-gold',1096), -(1563,1563,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_red-iron',1096), -(1564,1564,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_bloodstone',1096), -(1565,1565,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_blue-bluemetal',1096), -(1566,1566,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_blue-gold',1096), -(1567,1567,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_obsidian',1096), -(1568,1568,'accessories/wearable_items/cloak/exp07/cloak_gothic3',1096), -(1569,1569,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_red-bluemetal',1096), -(1570,1570,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_red-gold',1096), -(1571,1571,'staticobjects/chests/broken_orc_treasure_chest',0), -(1572,1572,'ec/pc/iksar/iksar_female_blk',0), -(1573,1573,'ec/pc/iksar/iksar_female_giraf',0), -(1574,1574,'ec/pc/iksar/iksar_male2',0), -(1575,1575,'ec/pc/iksar/iksar_male3',0), -(1576,1576,'staticobjects/crates/interactive_crate',0), -(1577,1577,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_velium',1096), -(1578,1578,'staticobjects/freeport/fprt_sewer01_gears01',0), -(1579,1579,'staticobjects/freeport/fprt_sewer01_gears02',0), -(1580,1580,'staticobjects/freeport/fprt_sewer01_gears03',0), -(1581,1581,'staticobjects/pictures/castle_painting_01',0), -(1582,1582,'staticobjects/trainingdummy/dummy_hanging',0), -(1583,1583,'staticobjects/crates/animated_crate',0), -(1584,1584,'creatures/monsters/shadowedman',0), -(1585,1585,'creatures/tu/nightbloodwarrior',0), -(1586,1586,'staticobjects/marinerbell/marinersbell001',0), -(1587,1587,'ec/pc/erudite/erudite_female_tattooevil01',0), -(1588,1588,'ec/pc/erudite/erudite_female_tattooevil02',0), -(1589,1589,'ec/pc/erudite/erudite_female_tattooevil03',0), -(1590,1590,'ec/pc/erudite/erudite_female_tattooevil04',0), -(1591,1591,'ec/pc/erudite/erudite_female_tattooevil05',0), -(1592,1592,'ec/pc/erudite/erudite_female_tattoogood01',0), -(1593,1593,'ec/pc/erudite/erudite_female_tattoogood02',0), -(1594,1594,'ec/pc/erudite/erudite_female_tattoogood03',0), -(1595,1595,'ec/pc/erudite/erudite_female_tattoogood04',0), -(1596,1596,'ec/pc/erudite/erudite_female_tattoogood05',0), -(1597,1597,'ec/pc/erudite/erudite_male_tattooevil01',0), -(1598,1598,'ec/pc/erudite/erudite_male_tattooevil02',0), -(1599,1599,'ec/pc/erudite/erudite_male_tattooevil03',0), -(1600,1600,'ec/pc/erudite/erudite_male_tattooevil04',0), -(1601,1601,'ec/pc/erudite/erudite_male_tattooevil05',0), -(1602,1602,'ec/pc/erudite/erudite_male_tattoogood01',0), -(1603,1603,'ec/pc/erudite/erudite_male_tattoogood02',0), -(1604,1604,'ec/pc/erudite/erudite_male_tattoogood03',0), -(1605,1605,'ec/pc/erudite/erudite_male_tattoogood04',0), -(1606,1606,'ec/pc/erudite/erudite_male_tattoogood05',0), -(1607,1607,'staticobjects/books/halfling_bkstack01',0), -(1608,1608,'staticobjects/lighting/halfling_candle_log01',0), -(1609,1609,'staticobjects/lighting/halfling_lantern01_handledown',0), -(1610,1610,'staticobjects/lighting/halfling_wall_light01_single',0), -(1611,1611,'staticobjects/lighting/halfling_wall_light02_metal',0), -(1612,1612,'staticobjects/lighting/halfling_wall_light02_wood',0), -(1613,1613,'staticobjects/lighting/orc_candle_01',0), -(1614,1614,'staticobjects/lighting/troll_candle_01',0), -(1615,1615,'staticobjects/statues/edk_hand_eye',0), -(1616,1616,'staticobjects/statues/hum_rallosmarker01',0), -(1617,1617,'staticobjects/statues/nekf_darkelf_foci001',0), -(1618,1618,'staticobjects/statues/prexus_minaret01',0), -(1619,1619,'staticobjects/statues/solro_dragontorch01',0), -(1620,1620,'staticobjects/statues/trl_tiki001',0), -(1621,1621,'staticobjects/containers/halfling_bucket01',0), -(1622,1622,'staticobjects/tree/fprt_flowers_purple',0), -(1623,1623,'staticobjects/tree/nbhum_branches_leafy_d',0), -(1624,1624,'staticobjects/tree/river_flowertree_01',0), -(1625,1625,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_bloodstone',1096), -(1626,1626,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_blue-bluemetal',1096), -(1627,1627,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_blue-gold',1096), -(1628,1628,'creatures/monsters/venekor',0), -(1629,1629,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_obsidian',1096), -(1630,1630,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_red-bluemetal',1096), -(1631,1631,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_red-gold',1096), -(1632,1632,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_tallonite_velium',1096), -(1633,1633,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_obsidian',1096), -(1634,1634,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_blue',1096), -(1635,1635,'accessories/wieldable_items/tools/fisherman/common001',0), -(1636,1636,'accessories/wieldable_items/tools/fisherman/uncommon001',0), -(1637,1637,'creatures/tu/lizardman_shaman',0), -(1638,1638,'creatures/tu/lizardman_warrior',0), -(1639,1639,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_blue_bluemetal',1096), -(1640,1640,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_red',1096), -(1641,1641,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_red_bluemetal',1096), -(1642,1642,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_obsidian',1096), -(1643,1643,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_blue',1096), -(1644,1644,'accessories/wearable_items/magus/artifact/low/hood',0), -(1645,1645,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_blue_bluemetal',1096), -(1646,1646,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_red',1096), -(1647,1647,'accessories/wearable_items/magus/artifact/low/pants',0), -(1648,1648,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_red_bluemetal',1096), -(1649,1649,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_blue-gold',1096), -(1650,1650,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_blue-iron',1096), -(1651,1651,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_gem_obsidian',1096), -(1652,1652,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_red-gold',1096), -(1653,1653,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_red-iron',1096), -(1654,1654,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_bloodstone',1096), -(1655,1655,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_blue-gold',1096), -(1656,1656,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_blue-iron',1096), -(1657,1657,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_obsidian',1096), -(1658,1658,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_red-gold',1096), -(1659,1659,'staticobjects/chairs/fprt_chair_stool_military01',0), -(1660,1660,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_red-iron',1096), -(1661,1661,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_velium',1096), -(1662,1662,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_bloodstone',1096), -(1663,1663,'staticobjects/containers/fprt_bucket_plainlarge001',0), -(1664,1664,'staticobjects/containers/fprt_planter_e',0), -(1665,1665,'staticobjects/containers/fprt_vase_ornateface01',0), -(1666,1666,'staticobjects/fish/fish_01',0), -(1667,1667,'staticobjects/relics/egg_ice_01',0), -(1668,1668,'staticobjects/rocks/rock02',0), -(1669,1669,'staticobjects/rugs/qey_rug_blackcurveslarge001',0), -(1670,1670,'staticobjects/shrub/fanplantgroup_001',0), -(1671,1671,'staticobjects/shrub/nbhum_cropplant02',0), -(1672,1672,'staticobjects/tables/fprt_crucible_table_01_smoke_fire_crucible_03',0), -(1673,1673,'staticobjects/tree/tree_log_01',0), -(1674,1674,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_blue-gold',1096), -(1675,1675,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_blue-iron',1096), -(1676,1676,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_obsidian',1096), -(1677,1677,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_red-gold',1096), -(1678,1678,'staticobjects/tree/feer_plant_pitcher',0), -(1679,1679,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_red-iron',1096), -(1680,1680,'creatures/monsters/dragon_test',0), -(1681,1681,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_velium',1096), -(1682,1682,'_exp07/characters/tool_users/tallonite_female/tallonite_female_queen',1096), -(1683,1683,'_exp08/characters/monsters/warboar/warboar',1096), -(1684,1684,'accessories/wearable_items/_exp07/storm_giant_chain_armor/storm_giant_pauldron_right',1096), -(1685,1685,'accessories/wearable_items/_exp07/storm_giant_chain_armor/chest',1096), -(1686,1686,'accessories/wearable_items/_exp07/storm_giant_chain_armor/feet',1096), -(1687,1687,'accessories/wearable_items/_exp07/storm_giant_chain_armor/forearms',1096), -(1688,1688,'accessories/wearable_items/_exp07/storm_giant_chain_armor/hands',1096), -(1689,1689,'accessories/wearable_items/_exp07/storm_giant_chain_armor/head',1096), -(1690,1690,'accessories/wearable_items/_exp07/storm_giant_chain_armor/legs',1096), -(1691,1691,'accessories/wearable_items/_exp07/storm_giant_chain_armor/legs_noskirt',1096), -(1692,1692,'accessories/wearable_items/_exp07/storm_giant_chain_armor/shoulders',1096), -(1693,1693,'accessories/wearable_items/_exp07/storm_giant_chain_armor/shoulders_nopauldrons',1096), -(1694,1694,'accessories/wearable_items/magus/uncommon/low/legs',0), -(1695,1695,'accessories/wearable_items/_exp07/storm_giant_chain_armor/skirt',1096), -(1696,1696,'ec/pc/barbarian/barbarian_male_tattoo06',0), -(1697,1697,'ec/pc/barbarian/barbarian_male_tattoo07',0), -(1698,1698,'ec/pc/barbarian/barbarian_male_tattoo08',0), -(1699,1699,'ec/pc/barbarian/barbarian_male_tattoo09',0), -(1700,1700,'ec/pc/barbarian/barbarian_male_tattoo10',0), -(1701,1701,'accessories/wearable_items/_exp07/storm_giant_chain_armor/storm_giant_pauldron_left',1096), -(1702,1702,'staticobjects/boats/boat',0), -(1703,1703,'staticobjects/boats/boat2',0), -(1704,1704,'staticobjects/statues/binding_shrine',0), -(1705,1705,'staticobjects/statues/greatsword_magic',0), -(1706,1706,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_tintable/skirt',1096), -(1707,1707,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_tintable/arms',1096), -(1708,1708,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_tintable/chest',1096), -(1709,1709,'staticobjects/switches/pull_switch_round',0), -(1710,1710,'creatures/tu/bixie_figher',0), -(1711,1711,'creatures/tu/bixie_worker',0), -(1712,1712,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_tintable/head',1096), -(1713,1713,'staticobjects/signs/general/barrel_single',0), -(1714,1714,'staticobjects/signs/general/road_sign_post',0), -(1715,1715,'staticobjects/signs/general/sign_wall',0), -(1716,1716,'staticobjects/transports/boats/elizabella_default',0), -(1717,1717,'staticobjects/transports/boats/elizabella_orcish',0), -(1718,1718,'staticobjects/transports/doors/cazicthule/door_stone_ornate',0), -(1719,1719,'staticobjects/transports/doors/cazicthule/door_stone_worn',0), -(1720,1720,'staticobjects/transports/relics/cazic_bowl_green',0), -(1721,1721,'staticobjects/transports/relics/cazic_bowl_purple',0), -(1722,1722,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_tintable/legs',1096), -(1723,1723,'staticobjects/respawn_tent02',0), -(1724,1724,'staticobjects/rocks/qey_boulder02',0), -(1725,1725,'staticobjects/rocks/qey_boulder03',0), -(1726,1726,'staticobjects/shrub/cazic_roota001',0), -(1727,1727,'staticobjects/shrub/cazic_rootb001',0), -(1728,1728,'staticobjects/shrub/cazic_rootc001',0), -(1729,1729,'staticobjects/shrub/cazic_rootd001',0), -(1730,1730,'staticobjects/shrub/cazic_roote001',0), -(1731,1731,'staticobjects/shrub/cazic_rootg001',0), -(1732,1732,'staticobjects/shrub/cazic_rooth001',0), -(1733,1733,'staticobjects/shrub/cazic_rootj001',0), -(1734,1734,'staticobjects/shrub/cazic_rootk001',0), -(1735,1735,'staticobjects/shrub/feer_plant_bigleaf',0), -(1736,1736,'staticobjects/shrub/feer_plant_fern1',0), -(1737,1737,'staticobjects/shrub/feer_plant_reid',0), -(1738,1738,'staticobjects/shrub/flower',0), -(1739,1739,'staticobjects/shrub/mushroom01',0), -(1740,1740,'staticobjects/shrub/mushroom01_grp5',0), -(1741,1741,'staticobjects/shrub/mushroom01_sk_green',0), -(1742,1742,'staticobjects/shrub/mushroom01_sk_purple',0), -(1743,1743,'staticobjects/shrub/mushroom02',0), -(1744,1744,'staticobjects/shrub/mushroom02_sk_green',0), -(1745,1745,'staticobjects/shrub/mushroom02_sk_purple',0), -(1746,1746,'staticobjects/shrub/mushroom03',0), -(1747,1747,'staticobjects/shrub/mushroom04',0), -(1748,1748,'staticobjects/shrub/nekf_mushroom_009',0), -(1749,1749,'staticobjects/statues/holysymbol01',0), -(1750,1750,'staticobjects/tree/bb_stump01',0), -(1751,1751,'staticobjects/tree/bb_stump02',0), -(1752,1752,'staticobjects/tree/qey_adv04_log01',0), -(1753,1753,'staticobjects/tree/qey_adv04_log03',0), -(1754,1754,'staticobjects/tree/qey_adv04_stump01',0), -(1755,1755,'staticobjects/tree/qey_adv04_stump02',0), -(1756,1756,'staticobjects/tree/qey_adv04_stump03',0), -(1757,1757,'staticobjects/tree/qey_adv04_stump04',0), -(1758,1758,'staticobjects/tree/qey_adv04_stumpcut01',0), -(1759,1759,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_red-gold_fx',1096), -(1760,1760,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_blue-gold_fx',1096), -(1761,1761,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_blue-iron_fx',1096), -(1762,1762,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_fighting_tallonite_red-iron_fx',1096), -(1763,1763,'projectiles/spell_mug',1096), -(1764,1764,'accessories/wearable_items/snapons/backpacks/backpack_othmir_swivel/backpack_othmir_turquoise',1096), -(1765,1765,'accessories/wearable_items/snapons/backpacks/backpack_othmir_swivel/backpack_othmir_blue',1096), -(1766,1766,'accessories/wearable_items/snapons/backpacks/backpack_othmir_swivel/backpack_othmir_green',1096), -(1767,1767,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_nature_frost',1096), -(1768,1768,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_nature',1096), -(1769,1769,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_nature_evil',1096), -(1770,1770,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_nature_frost',1096), -(1771,1771,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_nature',1096), -(1772,1772,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_nature_evil',1096), -(1773,1773,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_nature_frost',1096), -(1774,1774,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_nature',1096), -(1775,1775,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_nature_evil',1096), -(1776,1776,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_nature_frost',1096), -(1777,1777,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_nature',1096), -(1778,1778,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_nature_evil',1096), -(1779,1779,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_nature_dark_red',1096), -(1780,1780,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_nature',1096), -(1781,1781,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_nature_dark',1096), -(1782,1782,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_nature_frost',1096), -(1783,1783,'accessories/wieldable_items/weapons/exp08/staff/exp08_spear_nature',1096), -(1784,1784,'accessories/wieldable_items/weapons/exp08/staff/exp08_spear_nature_evil',1096), -(1785,1785,'accessories/wieldable_items/weapons/exp08/staff/exp08_spear_nature_frost',1096), -(1786,1786,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_nature',1096), -(1787,1787,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_nature_evil',1096), -(1788,1788,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_gem_obsidian',1096), -(1789,1789,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_gem_bloodstone',1096), -(1790,1790,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_tallonite_gem_frost',1096), -(1791,1791,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_nature_frost_fx',1096), -(1792,1792,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_nature_evil_fx',1096), -(1793,1793,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_nature_frost_fx',1096), -(1794,1794,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_nature_evil_fx',1096), -(1795,1795,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_nature_frost_fx',1096), -(1796,1796,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_nature_evil_fx',1096), -(1797,1797,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_nature_frost_fx',1096), -(1798,1798,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_nature_evil_fx',1096), -(1799,1799,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_nature_dark_red_fx',1096), -(1800,1800,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_nature_dark_fx',1096), -(1801,1801,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_nature_frost_fx',1096), -(1802,1802,'accessories/wieldable_items/weapons/exp08/staff/exp08_spear_nature_evil_fx',1096), -(1803,1803,'accessories/wieldable_items/weapons/exp08/staff/exp08_spear_nature_frost_fx',1096), -(1804,1804,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_nature_evil_fx',1096), -(1805,1805,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_02',1096), -(1806,1806,'creatures/mounts/flying_disc/flying_disc_tinker_01',1096), -(1807,1807,'creatures/mounts/flying_disc/flying_disc_tinker_02',1096), -(1808,1808,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_01',1096), -(1809,1809,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_01green',1096), -(1810,1810,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_01red',1096), -(1811,1811,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_02blue',1096), -(1812,1812,'creatures/mounts/flying_disc/flying_disc_tinker_deluxe_02green',1096), -(1813,1813,'staticobjects/blacksmith/wall_wallchain_dwarf_forge_dpo',1096), -(1814,1814,'creatures/mounts/pegasus_mount/pegasus_mount_base',1096), -(1815,1815,'staticobjects/soe_wallet/wheel_of_chance_dpo',1096), -(1816,1816,'staticobjects/soe_wallet/slot_machine_dpo',1096), -(1817,1817,'staticobjects/tools/vastydeep01_objects01_shovel01',1096), -(1818,1818,'staticobjects/tools/vastydeep01_objects01_rake01',1096), -(1819,1819,'staticobjects/liveevent/tinkerfest/dpo_tinkerfest_distillery_stage03',1096), -(1820,1820,'staticobjects/liveevent/tinkerfest/dpo_tinkerfest_distillery_stage02',1096), -(1821,1821,'accessories/wearable_items/_exp08/robe_elemental/fire/chest',1096), -(1822,1822,'accessories/wearable_items/_exp08/robe_elemental/fire/feet',1096), -(1823,1823,'accessories/wearable_items/_exp08/robe_elemental/fire/hands',1096), -(1824,1824,'accessories/wearable_items/_exp08/robe_elemental/fire/head',1096), -(1825,1825,'accessories/wearable_items/_exp08/robe_elemental/fire/head_collar',1096), -(1826,1826,'accessories/wearable_items/_exp08/robe_elemental/fire/pants',1096), -(1827,1827,'accessories/wearable_items/_exp08/robe_elemental/fire/skirt',1096), -(1828,1828,'accessories/wearable_items/_exp08/robe_elemental/water/chest',1096), -(1829,1829,'accessories/wearable_items/_exp08/robe_elemental/water/feet',1096), -(1830,1830,'accessories/wearable_items/_exp08/robe_elemental/water/hands',1096), -(1831,1831,'accessories/wearable_items/_exp08/robe_elemental/water/head',1096), -(1832,1832,'accessories/wearable_items/_exp08/robe_elemental/water/head_collar',1096), -(1833,1833,'accessories/wearable_items/_exp08/robe_elemental/water/pants',1096), -(1834,1834,'accessories/wearable_items/_exp08/robe_elemental/water/skirt',1096), -(1835,1835,'staticobjects/soe_wallet/craps_table_dpo',1096), -(1836,1836,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_elemental_stormblade',1096), -(1837,1837,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_elemental_thunderhammer',1096), -(1838,1838,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_elemental_windblade',1096), -(1839,1839,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_axe_elemental_earthshatter',1096), -(1840,1840,'accessories/wearable_items/cloak/exp08/cloak_feathered_raven',1096), -(1841,1841,'accessories/wearable_items/cloak/exp08/cloak_feathered_white',1096), -(1842,1842,'accessories/wearable_items/cloak/exp08/cloak_gothic01',1096), -(1843,1843,'code/test',0), -(1844,1844,'accessories/wearable_items/cloak/exp08/cloak_powered01',1096), -(1845,1845,'staticobjects/cauldron/cauldron',0), -(1846,1846,'accessories/wearable_items/magus/uncommon/low/forearms',0), -(1847,1847,'staticobjects/bones/human_skeleton_bones',0), -(1848,1848,'staticobjects/hay/haybail_1',0), -(1849,1849,'accessories/wearable_items/cloak/exp08/cloak_feathered_white_short',1096), -(1850,1850,'accessories/wearable_items/cloak/exp08/cloak_feathered_raven_short',1096), -(1851,1851,'accessories/wearable_items/cloak/exp08/cloak_tinkered01',1096), -(1852,1852,'accessories/wearable_items/magus/artifact/medium/hood',0), -(1853,1853,'accessories/wearable_items/magus/artifact/medium/pants',0), -(1854,1854,'staticobjects/gravestones/gravestone02',0), -(1855,1855,'staticobjects/urns/small_urn',0), -(1856,1856,'staticobjects/coffins_and_sarcophagus/simple_wooden_coffin',0), -(1857,1857,'staticobjects/doors/wooden_door01',0), -(1858,1858,'staticobjects/statues/monk_statue',0), -(1859,1859,'staticobjects/world_devices/trdskl_qey_forge01',0), -(1860,1860,'staticobjects/weapons/dagger',0), -(1861,1861,'accessories/wearable_items/cloak/exp08/cloak_tinkered01_copper',1096), -(1862,1862,'accessories/wearable_items/magus/uncommon/medium/hood',0), -(1863,1863,'accessories/wearable_items/cloak/exp08/cloak_tinkered01_treadmill_copper',1096), -(1864,1864,'accessories/wearable_items/magus/artifact/high/arms',0), -(1865,1865,'accessories/wearable_items/magus/rare/medium/shoulders',0), -(1866,1866,'accessories/wearable_items/cloak/exp08/cloak_tinkered01_treadmill_tin',1096), -(1867,1867,'accessories/wearable_items/cloak/exp08/cloak_tinkered02_copper',1096), -(1868,1868,'accessories/wearable_items/cloak/exp08/cloak_tinkered02_tin',1096), -(1869,1869,'accessories/wearable_items/clothing/common/high/arms',0), -(1870,1870,'accessories/wearable_items/clothing/common/high/chest',0), -(1871,1871,'accessories/wearable_items/clothing/common/high/legs',0), -(1872,1872,'accessories/wearable_items/clothing/common/low/arms',0), -(1873,1873,'accessories/wearable_items/clothing/common/low/chest',0), -(1874,1874,'accessories/wearable_items/clothing/common/low/legs',0), -(1875,1875,'accessories/wearable_items/clothing/common/medium/arms',0), -(1876,1876,'accessories/wearable_items/clothing/common/medium/chest',0), -(1877,1877,'accessories/wearable_items/clothing/common/medium/legs',0), -(1878,1878,'accessories/wearable_items/clothing/uncommon/high/arms',0), -(1879,1879,'accessories/wearable_items/clothing/uncommon/high/chest',0), -(1880,1880,'accessories/wearable_items/clothing/uncommon/high/legs',0), -(1881,1881,'staticobjects/doors/stormhold_door01',0), -(1882,1882,'accessories/wearable_items/_exp08/robe_elemental/air/skirt',1096), -(1883,1883,'staticobjects/relics/magic_globe',0), -(1884,1884,'accessories/wearable_items/journeyman/journeyman_leather/chest',0), -(1885,1885,'accessories/wearable_items/journeyman/journeyman_leather/feet',0), -(1886,1886,'accessories/wearable_items/journeyman/journeyman_leather/forearms',0), -(1887,1887,'accessories/wearable_items/journeyman/journeyman_leather/hands',0), -(1888,1888,'accessories/wearable_items/journeyman/journeyman_leather/head',0), -(1889,1889,'accessories/wearable_items/journeyman/journeyman_leather/legs',0), -(1890,1890,'accessories/wearable_items/journeyman/journeyman_leather/shoulders',0), -(1891,1891,'accessories/wearable_items/brigandine/common/low/skirt',0), -(1892,1892,'accessories/wearable_items/leather/plain/stitched/chest',0), -(1893,1893,'accessories/wearable_items/leather/plain/stitched/feet',0), -(1894,1894,'accessories/wearable_items/leather/plain/stitched/forearms',0), -(1895,1895,'accessories/wearable_items/leather/plain/stitched/hands',0), -(1896,1896,'accessories/wearable_items/leather/plain/stitched/head',0), -(1897,1897,'accessories/wearable_items/leather/plain/stitched/legs',0), -(1898,1898,'accessories/wearable_items/leather/plain/stitched/shoulders',0), -(1899,1899,'accessories/wearable_items/leather/plain/stitched/skirt',0), -(1900,1900,'staticobjects/banners/gnoll_banner_spear',0), -(1901,1901,'accessories/wearable_items/_exp08/robe_elemental/air/chest',1096), -(1902,1902,'accessories/wearable_items/_exp08/robe_elemental/air/feet',1096), -(1903,1903,'staticobjects/benches/floor_bench_human_militia',0), -(1904,1904,'staticobjects/boats/canoe',0), -(1905,1905,'staticobjects/brazier/floor_brazier_erudite_steam',0), -(1906,1906,'staticobjects/carts/covered_cart',0), -(1907,1907,'staticobjects/chairs/floor_chair_halfling_rocking',0), -(1908,1908,'staticobjects/chests/gnoll_bone_chest',0), -(1909,1909,'staticobjects/containers/barrel_small_light',0), -(1910,1910,'staticobjects/crystals/crystals_01',0), -(1911,1911,'staticobjects/crystals/crystals_02',0), -(1912,1912,'staticobjects/crystals/crystals_03',0), -(1913,1913,'staticobjects/dressers/floor_dresser_elf_elddar',0), -(1914,1914,'staticobjects/lighting/ceiling_chandelier_darkelf_candle',0), -(1915,1915,'accessories/wearable_items/_exp08/robe_elemental/air/hands',1096), -(1916,1916,'staticobjects/pictures/wall_painting_orc_oil',0), -(1917,1917,'staticobjects/relics/diamond_ring',0), -(1918,1918,'staticobjects/trainingdummy/scarecrow',0), -(1919,1919,'staticobjects/blacksmith/floor_anvil_any_blacksmith',0), -(1920,1920,'staticobjects/blacksmith/floor_bellows_any_blacksmith',0), -(1921,1921,'staticobjects/blacksmith/floor_oven_any_blacksmith',0), -(1922,1922,'staticobjects/blacksmith/floor_table_any_blacksmith',0), -(1923,1923,'staticobjects/clothspinners/floor_clothrack_any_clothspinners',0), -(1924,1924,'staticobjects/barrels/floor_barrel01_any_wood',0), -(1925,1925,'staticobjects/barrels/floor_barrel02_any_wood',0), -(1926,1926,'staticobjects/barrels/floor_barrel03_any_wood',0), -(1927,1927,'staticobjects/beds/floor_bed_halfling_wood',0), -(1928,1928,'staticobjects/cages/ceiling_birdcage01_any_wood',0), -(1929,1929,'staticobjects/cages/ceiling_birdcage02_any_wood',0), -(1930,1930,'staticobjects/cages/ceiling_birdcage03_any_wood',0), -(1931,1931,'staticobjects/cages/ceiling_birdcage04_any_wood',0), -(1932,1932,'staticobjects/cages/ceiling_birdcage05_any_wood',0), -(1933,1933,'staticobjects/cages/ceiling_birdcage06_any_wood',0), -(1934,1934,'staticobjects/chests/floor_chest01_any_ironband',0), -(1935,1935,'staticobjects/chests/floor_chest01_any_wood',0), -(1936,1936,'staticobjects/chests/floor_chest02_any_ironband',0), -(1937,1937,'staticobjects/chests/floor_chest02_any_wood',0), -(1938,1938,'staticobjects/clothspinners/floor_loom_any_clothspinners',0), -(1939,1939,'staticobjects/clothspinners/floor_sewingtable_any_clothspinners',0), -(1940,1940,'staticobjects/clothspinners/floor_spinningwheel_any_clothspinners',0), -(1941,1941,'staticobjects/containers/floor_bucket_any_wood',0), -(1942,1942,'staticobjects/containers/floor_trough01_any_wood',0), -(1943,1943,'staticobjects/containers/floor_trough02_any_wood',0), -(1944,1944,'staticobjects/containers/floor_tub_any_wood',0), -(1945,1945,'staticobjects/containers/floor_vase01_any_clay',0), -(1946,1946,'staticobjects/containers/floor_vase02_any_clay',0), -(1947,1947,'staticobjects/containers/floor_vase03_any_clay',0), -(1948,1948,'staticobjects/containers/floor_vase04_any_clay',0), -(1949,1949,'staticobjects/crates/floor_crate01_any_wood',0), -(1950,1950,'staticobjects/crates/floor_crate02_any_wood',0), -(1951,1951,'staticobjects/crates/floor_crate03_any_wood',0), -(1952,1952,'staticobjects/crates/floor_crate04_any_wood',0), -(1953,1953,'staticobjects/crystals/floor_globe_any_crystal',0), -(1954,1954,'staticobjects/dressers/floor_dresser_halfling_wood',0), -(1955,1955,'staticobjects/kegs/floor_keg01_any_wood',0), -(1956,1956,'staticobjects/kegs/floor_keg02_any_wood',0), -(1957,1957,'staticobjects/nautical/floor_steeringwheelstand_any_wood',0), -(1958,1958,'staticobjects/pictures/wall_painting_halfling_milestoners',0), -(1959,1959,'staticobjects/urns/floor_urn01_any_clay',0), -(1960,1960,'staticobjects/urns/floor_urn02_any_clay',0), -(1961,1961,'creatures/tu/lord_everling',0), -(1962,1962,'staticobjects/beds/floor_bed01_any_farmer',0), -(1963,1963,'staticobjects/beds/floor_bed02_any_farmer',0), -(1964,1964,'staticobjects/beds/floor_bed_any_bunks',0), -(1965,1965,'staticobjects/beds/floor_bed_any_merchant',0), -(1966,1966,'staticobjects/bookcases/floor_bookcase_any_fancy',0), -(1967,1967,'staticobjects/bookcases/floor_bookcase_any_wood',0), -(1968,1968,'staticobjects/chairs/floor_chair_any_fancy',0), -(1969,1969,'staticobjects/chairs/floor_chair_any_judicial',0), -(1970,1970,'staticobjects/chairs/floor_chair_any_leather',0), -(1971,1971,'staticobjects/chairs/floor_chair_any_wood',0), -(1972,1972,'staticobjects/chairs/floor_stool_any_leather',0), -(1973,1973,'staticobjects/chairs/floor_stool_any_wood',0), -(1974,1974,'staticobjects/counters/floor_counter_any_2mlong',0), -(1975,1975,'staticobjects/counters/floor_counter_any_3mlong',0), -(1976,1976,'staticobjects/counters/floor_counter_any_4mlong',0), -(1977,1977,'staticobjects/counters/floor_counter_any_5mlong',0), -(1978,1978,'staticobjects/counters/floor_counter_any_corner',0), -(1979,1979,'staticobjects/dressers/floor_dresser_any_fancy',0), -(1980,1980,'staticobjects/dressers/floor_dresser_any_tall',0), -(1981,1981,'staticobjects/dressers/floor_dresser_any_wood',0), -(1982,1982,'staticobjects/shelfs/wall_shelf_any_2mlong',0), -(1983,1983,'staticobjects/shelfs/wall_shelf_any_4mlong',0), -(1984,1984,'staticobjects/shelfs/wall_shelf_any_corner',0), -(1985,1985,'staticobjects/signs/general/base_sign',0), -(1986,1986,'staticobjects/statues/floor_statue_human_erudin',0), -(1987,1987,'staticobjects/statues/odd_creature',0), -(1988,1988,'staticobjects/tables/floor_table01_any_fancy',0), -(1989,1989,'staticobjects/tables/floor_table01_any_marble',0), -(1990,1990,'staticobjects/tables/floor_table02_any_fancy',0), -(1991,1991,'staticobjects/tables/floor_table02_any_marble',0), -(1992,1992,'staticobjects/tables/floor_table03_any_marble',0), -(1993,1993,'staticobjects/tables/floor_table04_any_marble',0), -(1994,1994,'staticobjects/tables/floor_table_any_judicial',0), -(1995,1995,'staticobjects/tables/floor_table_any_long',0), -(1996,1996,'staticobjects/tables/floor_table_any_short',0), -(1997,1997,'staticobjects/beds/floor_bedroll01_any_dirty',0), -(1998,1998,'staticobjects/beds/floor_bedroll02_any_dirty',0), -(1999,1999,'staticobjects/beds/floor_bed_human_step',0), -(2000,2000,'staticobjects/beds/floor_bed_human_wood',0), -(2001,2001,'staticobjects/benches/floor_bench01_human_plain',0), -(2002,2002,'staticobjects/benches/floor_bench02_human_plain',0), -(2003,2003,'staticobjects/benches/floor_bench03_human_plain',0), -(2004,2004,'staticobjects/benches/floor_bench04_human_plain',0), -(2005,2005,'staticobjects/benches/floor_bench05_human_plain',0), -(2006,2006,'staticobjects/bookcases/floor_bookcase01_human_step',0), -(2007,2007,'staticobjects/bookcases/floor_bookcase02_human_step',0), -(2008,2008,'staticobjects/bookcases/floor_bookcase_any_slayer',0), -(2009,2009,'staticobjects/chairs/floor_chair01_gnome_plain',0), -(2010,2010,'staticobjects/chairs/floor_chair01_human_hood',0), -(2011,2011,'staticobjects/chairs/floor_chair01_human_plain',0), -(2012,2012,'staticobjects/chairs/floor_chair02_gnome_plain',0), -(2013,2013,'staticobjects/chairs/floor_chair02_human_plain',0), -(2014,2014,'staticobjects/chairs/floor_chair_human_weathered',0), -(2015,2015,'staticobjects/chairs/floor_stool01_human_plain',0), -(2016,2016,'staticobjects/chairs/floor_stool02_human_plain',0), -(2017,2017,'staticobjects/containers/floor_bucket01_human_wood',0), -(2018,2018,'staticobjects/containers/floor_bucket02_human_wood',0), -(2019,2019,'staticobjects/fires/small_ring_fire',0), -(2020,2020,'staticobjects/tents/grey_lean_to',0), -(2021,2021,'staticobjects/barrels/floor_barrel_any_wood01',0), -(2022,2022,'staticobjects/barrels/floor_barrel_any_wood02',0), -(2023,2023,'staticobjects/barrels/floor_barrel_any_wood03',0), -(2024,2024,'accessories/wearable_items/_exp08/robe_elemental/air/head',1096), -(2025,2025,'staticobjects/brazier/floor_brazier_human_military',0), -(2026,2026,'staticobjects/chairs/floor_chair_human_plain01',0), -(2027,2027,'staticobjects/chairs/floor_stool_human_plain01',0), -(2028,2028,'staticobjects/chests/floor_chest_human_step01',0), -(2029,2029,'staticobjects/chests/floor_chest_human_step02',0), -(2030,2030,'staticobjects/chests/floor_chest_human_wood',0), -(2031,2031,'staticobjects/doors/fprt_door_plain',0), -(2032,2032,'staticobjects/shelves/wall_shelf_any_2mlong',0), -(2033,2033,'staticobjects/shelves/wall_shelf_any_4mlong',0), -(2034,2034,'staticobjects/shelves/wall_shelf_any_corner',0), -(2035,2035,'staticobjects/shelves/wall_shelf_human_2mlong',0), -(2036,2036,'staticobjects/shelves/wall_shelf_human_simple01',0), -(2037,2037,'staticobjects/tables/floor_table_gnome_plain01',0), -(2038,2038,'staticobjects/tables/floor_table_gnome_plain02',0), -(2039,2039,'staticobjects/tables/floor_table_human_generic01',0), -(2040,2040,'staticobjects/tables/floor_table_human_generic02',0), -(2041,2041,'staticobjects/tables/floor_table_human_hood01',0), -(2042,2042,'staticobjects/tables/floor_table_human_hood02',0), -(2043,2043,'staticobjects/tables/floor_table_human_hood03',0), -(2044,2044,'staticobjects/tables/floor_table_human_hood04',0), -(2045,2045,'staticobjects/tables/floor_table_human_hood05',0), -(2046,2046,'staticobjects/tables/floor_table_human_hood06',0), -(2047,2047,'staticobjects/tables/floor_table_human_plain01',0), -(2048,2048,'staticobjects/tables/floor_table_human_plain02',0), -(2049,2049,'staticobjects/tables/floor_table_human_plain03',0), -(2050,2050,'staticobjects/tables/floor_table_human_step01',0), -(2051,2051,'staticobjects/tables/floor_table_human_step02',0), -(2052,2052,'staticobjects/beds/floor_bed_highelf_ornate',0), -(2053,2053,'staticobjects/beds/floor_bed_woodelf_single',0), -(2054,2054,'staticobjects/chairs/floor_chair_darkelf_wood',0), -(2055,2055,'staticobjects/chairs/floor_chair_ogre_rock',0), -(2056,2056,'staticobjects/chairs/floor_chair_troll_wood',0), -(2057,2057,'staticobjects/chairs/floor_chair_woodelf_hood',0), -(2058,2058,'staticobjects/chairs/floor_stool_any_wood01',0), -(2059,2059,'staticobjects/chairs/floor_stool_highelf_wood',0), -(2060,2060,'staticobjects/crates/floor_crate_troll_wood',0), -(2061,2061,'staticobjects/lighting/floor_torch_ogre_rock',0), -(2062,2062,'staticobjects/racks/floor_rack_darkelf_wine',0), -(2063,2063,'staticobjects/tables/floor_table_darkelf_hood',0), -(2064,2064,'staticobjects/tables/floor_table_gnome_round',0), -(2065,2065,'staticobjects/tables/floor_table_highelf_tavern01',0), -(2066,2066,'staticobjects/tables/floor_table_highelf_tavern02',0), -(2067,2067,'staticobjects/tables/floor_table_ogre_rock',0), -(2068,2068,'staticobjects/tables/floor_table_troll_small',0), -(2069,2069,'staticobjects/tables/floor_table_woodelf_hood',0), -(2070,2070,'staticobjects/blacksmith/wall_wallchain_dwarf_forge',0), -(2071,2071,'staticobjects/key/key_oversized',0), -(2072,2072,'staticobjects/lighting/floor_lantern_dwarf_oil',0), -(2073,2073,'staticobjects/containers/floor_bucket_barbarian_wood',0), -(2074,2074,'staticobjects/containers/floor_bucket_dwarf_wood',0), -(2075,2075,'staticobjects/containers/floor_pod_barbarian_iron',0), -(2076,2076,'staticobjects/containers/floor_vase_froglok_clay',0), -(2077,2077,'staticobjects/containers/floor_vase_halfelf_clay01',0), -(2078,2078,'staticobjects/containers/floor_vase_halfelf_clay02',0), -(2079,2079,'staticobjects/containers/floor_vase_halfelf_clay03',0), -(2080,2080,'staticobjects/lighting/floor_floorlamp_human_candle',0), -(2081,2081,'staticobjects/light_sources_player_housing_only/ceiling_chandelier_darkelf_candle',0), -(2082,2082,'staticobjects/light_sources_player_housing_only/floor_brazier_human_military',0), -(2083,2083,'staticobjects/light_sources_player_housing_only/floor_floorlamp_human_candle',0), -(2084,2084,'staticobjects/light_sources_player_housing_only/halfling_candle_log01',0), -(2085,2085,'staticobjects/light_sources_player_housing_only/halfling_lantern01_handledown',0), -(2086,2086,'staticobjects/light_sources_player_housing_only/halfling_wall_light01_single',0), -(2087,2087,'staticobjects/light_sources_player_housing_only/halfling_wall_light02_metal',0), -(2088,2088,'staticobjects/light_sources_player_housing_only/halfling_wall_light02_wood',0), -(2089,2089,'staticobjects/light_sources_player_housing_only/orc_candle_01',0), -(2090,2090,'staticobjects/light_sources_player_housing_only/qst_galintos_candelabra_1',0), -(2091,2091,'staticobjects/light_sources_player_housing_only/troll_candle_01',0), -(2092,2092,'staticobjects/musical/floor_drum_halfling_wood',0), -(2093,2093,'accessories/wearable_items/_exp08/robe_elemental/air/head_collar',1096), -(2094,2094,'staticobjects/tables/floor_table_barbarian_wood',0), -(2095,2095,'staticobjects/tables/floor_table_halfling_wood',0), -(2096,2096,'staticobjects/beds/floor_bed_human_ornate',0), -(2097,2097,'staticobjects/beds/floor_bed_human_ornate01',0), -(2098,2098,'staticobjects/chairs/floor_chair_human_ornate01',0), -(2099,2099,'staticobjects/chairs/floor_chair_human_ornate02',0), -(2100,2100,'staticobjects/chairs/floor_chair_kerra_wood',0), -(2101,2101,'staticobjects/chests/floor_chest_iksar_skulls',0), -(2102,2102,'staticobjects/chests/floor_chest_ratonga_wood',0), -(2103,2103,'staticobjects/containers/floor_bucket_froglok_wood',0), -(2104,2104,'staticobjects/containers/floor_vase_erudite_marble',0), -(2105,2105,'staticobjects/dressers/floor_dresser_kerra_wood',0), -(2106,2106,'staticobjects/dressers/floor_dresser_ratonga_wood',0), -(2107,2107,'staticobjects/kegs/floor_keg_ratonga_small',0), -(2108,2108,'staticobjects/kitchen/floor_stove_human_iron',0), -(2109,2109,'staticobjects/lighting/floor_floorlamp_kerra_ornate',0), -(2110,2110,'staticobjects/lighting/floor_lamp_erudite_plain',0), -(2111,2111,'staticobjects/mounts/wall_mount_iksar_boarhead',0), -(2112,2112,'staticobjects/posts/floor_post_iksar_skull',0), -(2113,2113,'staticobjects/shelves/wall_shelf_froglok_ironwood',0), -(2114,2114,'staticobjects/tables/floor_table_human_ornate01',0), -(2115,2115,'staticobjects/tables/floor_table_human_ornate02',0), -(2116,2116,'staticobjects/urns/floor_urn_erudite_brazier',0), -(2117,2117,'staticobjects/beds/floor_bed_human_bunks',0), -(2118,2118,'staticobjects/beds/floor_bed_human_double',0), -(2119,2119,'staticobjects/beds/floor_bed_human_double01',0), -(2120,2120,'staticobjects/beds/floor_bed_human_king',0), -(2121,2121,'staticobjects/beds/floor_bed_human_king01',0), -(2122,2122,'staticobjects/beds/floor_bed_human_single',0), -(2123,2123,'staticobjects/beds/floor_bed_human_single01',0), -(2124,2124,'staticobjects/benches/floor_bench_human_ornate01',0), -(2125,2125,'staticobjects/benches/floor_bench_human_ornate02',0), -(2126,2126,'staticobjects/bookcases/floor_bookcase_human_ornate01',0), -(2127,2127,'staticobjects/bookcases/floor_bookcase_human_ornate02',0), -(2128,2128,'staticobjects/bookcases/floor_bookcase_human_plain01',0), -(2129,2129,'staticobjects/bookcases/floor_bookcase_human_stone',0), -(2130,2130,'staticobjects/bookcases/floor_bookcase_human_stone01',0), -(2131,2131,'staticobjects/chairs/floor_chair_human_fancy01',0), -(2132,2132,'staticobjects/chairs/floor_chair_human_fancy02',0), -(2133,2133,'staticobjects/chairs/floor_chair_human_fancy03',0), -(2134,2134,'staticobjects/chairs/floor_chair_human_ornate03',0), -(2135,2135,'staticobjects/chairs/floor_chair_human_ornate04',0), -(2136,2136,'staticobjects/chairs/floor_chair_human_wood01',0), -(2137,2137,'staticobjects/chairs/floor_chair_human_wood02',0), -(2138,2138,'staticobjects/chairs/floor_chair_human_wood03',0), -(2139,2139,'staticobjects/chairs/floor_chair_human_wood04',0), -(2140,2140,'staticobjects/chairs/floor_stool_human_military01',0), -(2141,2141,'staticobjects/chairs/floor_stool_human_ornate01',0), -(2142,2142,'staticobjects/chairs/floor_stool_human_wood01',0), -(2143,2143,'staticobjects/chests/floor_chest_human_wood01',0), -(2144,2144,'staticobjects/containers/floor_vase_human_marble01',0), -(2145,2145,'staticobjects/containers/floor_vase_human_ornate01',0), -(2146,2146,'staticobjects/containers/floor_vase_human_ornate02',0), -(2147,2147,'staticobjects/counters/floor_counter_human_corner01',0), -(2148,2148,'staticobjects/counters/floor_counter_human_round01',0), -(2149,2149,'staticobjects/dressers/floor_dresser_human_ornate01',0), -(2150,2150,'staticobjects/dressers/floor_dresser_human_plain01',0), -(2151,2151,'staticobjects/lighting/ceiling_ceilinglamp_any_fancy',0), -(2152,2152,'staticobjects/lighting/floor_floorlamp_human_ornate01',0), -(2153,2153,'staticobjects/lighting/floor_floorlamp_human_ornate02',0), -(2154,2154,'staticobjects/lighting/floor_floorlamp_human_ornate03',0), -(2155,2155,'staticobjects/lighting/floor_floorlamp_human_stone01',0), -(2156,2156,'staticobjects/lighting/floor_tablelamp_human_ornate01',0), -(2157,2157,'staticobjects/lighting/floor_tablelamp_human_plain01',0), -(2158,2158,'staticobjects/lighting/floor_tablelamp_human_plain02',0), -(2159,2159,'staticobjects/musical/fprt_music_bonechimes001',0), -(2160,2160,'staticobjects/musical/fprt_music_bonexylophone001',0), -(2161,2161,'staticobjects/musical/fprt_music_drum001',0), -(2162,2162,'staticobjects/musical/fprt_music_harp001',0), -(2163,2163,'staticobjects/musical/fprt_music_mandolin001',0), -(2164,2164,'staticobjects/shelves/wall_shelf_human_double01',0), -(2165,2165,'staticobjects/shelves/wall_shelf_human_double02',0), -(2166,2166,'staticobjects/shelves/wall_shelf_human_double03',0), -(2167,2167,'staticobjects/shelves/wall_shelf_human_military01',0), -(2168,2168,'staticobjects/shelves/wall_shelf_human_ornate01',0), -(2169,2169,'staticobjects/tables/floor_endtable_human_ornate',0), -(2170,2170,'staticobjects/tables/floor_endtable_human_plain',0), -(2171,2171,'staticobjects/tables/floor_table_human_bedside01',0), -(2172,2172,'staticobjects/tables/floor_table_human_bedside02',0), -(2173,2173,'staticobjects/tables/floor_table_human_butcherblock',0), -(2174,2174,'staticobjects/tables/floor_table_human_circular01',0), -(2175,2175,'staticobjects/tables/floor_table_human_circular02',0), -(2176,2176,'staticobjects/tables/floor_table_human_desk01',0), -(2177,2177,'staticobjects/tables/floor_table_human_desk02',0), -(2178,2178,'staticobjects/tables/floor_table_human_ornate03',0), -(2179,2179,'staticobjects/tables/floor_table_human_ornate04',0), -(2180,2180,'staticobjects/tables/floor_table_human_oval01',0), -(2181,2181,'staticobjects/tables/floor_table_human_plain04',0), -(2182,2182,'staticobjects/urns/floor_urn_human_ornate01',0), -(2183,2183,'staticobjects/urns/floor_urn_human_plain01',0), -(2184,2184,'staticobjects/urns/floor_urn_human_plain02',0), -(2185,2185,'staticobjects/archery/archery_target',0), -(2186,2186,'staticobjects/chairs/floor_stool_any_simple01',0), -(2187,2187,'staticobjects/chests/floor_chest_barbarian_ornate01',0), -(2188,2188,'staticobjects/containers/floor_bucket_any_handle01',0), -(2189,2189,'staticobjects/counters/floor_counter_any_generic01',0), -(2190,2190,'staticobjects/pictures/wall_painting_human_billportrait',0), -(2191,2191,'staticobjects/pictures/wall_painting_human_brickbuilding',0), -(2192,2192,'staticobjects/pictures/wall_painting_human_castle',0), -(2193,2193,'staticobjects/pictures/wall_painting_human_cathedral',0), -(2194,2194,'staticobjects/pictures/wall_painting_human_claymore',0), -(2195,2195,'staticobjects/pictures/wall_painting_human_cliffs',0), -(2196,2196,'staticobjects/pictures/wall_painting_human_hillbuilding',0), -(2197,2197,'staticobjects/pictures/wall_painting_human_horseknight',0), -(2198,2198,'staticobjects/pictures/wall_painting_human_knight',0), -(2199,2199,'staticobjects/pictures/wall_painting_human_qeynoscastle',0), -(2200,2200,'staticobjects/pictures/wall_painting_human_stonebuilding01',0), -(2201,2201,'staticobjects/pictures/wall_painting_human_stonebuilding02',0), -(2202,2202,'staticobjects/pictures/wall_painting_human_sun',0), -(2203,2203,'staticobjects/pictures/wall_painting_human_trees',0), -(2204,2204,'staticobjects/relics/floor_orb_erudite_warding01',0), -(2205,2205,'staticobjects/rugs/floor_rug_kerra_ornate01',0), -(2206,2206,'staticobjects/rugs/floor_rug_kerra_ornate02',0), -(2207,2207,'staticobjects/tables/floor_table_any_bedside01',0), -(2208,2208,'staticobjects/tables/floor_table_any_coffee01',0), -(2209,2209,'staticobjects/carts/damaged_wood_cart',0), -(2210,2210,'staticobjects/rocks/steppes_flatrock',0), -(2211,2211,'staticobjects/shelves/wall_shelf_human_hook',0), -(2212,2212,'staticobjects/tools/shovel_steppes',0), -(2213,2213,'accessories/wieldable_items/weapons/dagger/dagger/dagger001_ornate',0), -(2214,2214,'accessories/wieldable_items/weapons/dagger/dagger/dagger001_plain',0), -(2215,2215,'accessories/wieldable_items/weapons/dagger/dagger/dagger001_runic',0), -(2216,2216,'accessories/wieldable_items/weapons/dagger/dirk/dirk001_plain',0), -(2217,2217,'accessories/wieldable_items/weapons/dagger/stiletto/stiletto001_rusty',0), -(2218,2218,'accessories/wieldable_items/weapons/dagger/stiletto/stiletto002_runic',0), -(2219,2219,'accessories/wieldable_items/weapons/great_axe/bardiche/bardiche02_ornate',0), -(2220,2220,'accessories/wieldable_items/weapons/great_axe/executioner_axe/executioner_axe003_runic',0), -(2221,2221,'accessories/wieldable_items/weapons/great_axe/halberd/halberd003_plain',0), -(2222,2222,'staticobjects/fires/qey_adv04_stumpcut01',0), -(2223,2223,'staticobjects/statues/goblin_totem',0), -(2224,2224,'accessories/wearable_items/chain/common/low/skirt',0), -(2225,2225,'accessories/wieldable_items/weapons/dagger/dagger/dagger002_rusty',0), -(2226,2226,'accessories/wieldable_items/weapons/dagger/dirk/dirk002_runic',0), -(2227,2227,'accessories/wieldable_items/weapons/great_axe/assault_axe/assault_axe001_ornate',0), -(2228,2228,'accessories/wieldable_items/weapons/great_axe/assault_axe/assault_axe002_plain',0), -(2229,2229,'accessories/wieldable_items/weapons/great_axe/bardiche/bardiche01_runic',0), -(2230,2230,'accessories/wieldable_items/weapons/great_axe/bardiche/bardiche03_rusty',0), -(2231,2231,'accessories/wieldable_items/weapons/great_axe/military_pick/military_pick002_ornate',0), -(2232,2232,'accessories/wearable_items/vanguard/common/low/skirt',0), -(2233,2233,'accessories/wearable_items/vanguard/rare/low/skirt',0), -(2234,2234,'accessories/wearable_items/_exp08/robe_elemental/air/left_shoulder_effect',1096), -(2235,2235,'accessories/wearable_items/_exp08/robe_elemental/air/pants',1096), -(2236,2236,'accessories/wieldable_items/weapons/great_axe/executioner_axe/executioner_axe001_plain',0), -(2237,2237,'accessories/wieldable_items/weapons/great_axe/executioner_axe/executioner_axe001_rusty',0), -(2238,2238,'accessories/wieldable_items/weapons/great_axe/halberd/halberd001_runic',0), -(2239,2239,'accessories/wieldable_items/weapons/great_axe/halberd/halberd002_rusty',0), -(2240,2240,'accessories/wieldable_items/weapons/great_axe/military_pick/military_pick001_rusty',0), -(2241,2241,'staticobjects/banners/centaur_banner_steppes',0), -(2242,2242,'staticobjects/carts/damaged_wood_cart_2',0), -(2243,2243,'staticobjects/carts/wood_cart',0), -(2244,2244,'staticobjects/eig/eig_harvest_location',0), -(2245,2245,'staticobjects/freeport/fprt_citizenship_sign',0), -(2246,2246,'staticobjects/qeynos/clear_appearance_plane',0), -(2247,2247,'accessories/wearable_items/_exp08/robe_elemental/air/right_shoulder_effect',1096), -(2248,2248,'accessories/wieldable_items/weapons/axe/hand_axe/hand_axe001_ornate',0), -(2249,2249,'accessories/wieldable_items/weapons/axe/hand_axe/hand_axe001_plain',0), -(2250,2250,'accessories/wieldable_items/weapons/axe/hatchet/hatchet001_ornate',0), -(2251,2251,'accessories/wieldable_items/weapons/axe/hatchet/hatchet001_plain',0), -(2252,2252,'accessories/wieldable_items/weapons/axe/hatchet/hatchet002_runic',0), -(2253,2253,'accessories/wieldable_items/weapons/axe/hatchet/hatchet002_rusty',0), -(2254,2254,'accessories/wieldable_items/weapons/great_sword/flamberge/flamberge001_runic',0), -(2255,2255,'accessories/wieldable_items/weapons/great_sword/flamberge/flamberge002_ornate',0), -(2256,2256,'accessories/wieldable_items/weapons/great_sword/tulwar/tulwar001_ornate',0), -(2257,2257,'accessories/wieldable_items/weapons/great_sword/tulwar/tulwar001_plain',0), -(2258,2258,'accessories/wieldable_items/weapons/sword/long_sword/long_sword001_runic',0), -(2259,2259,'accessories/wieldable_items/weapons/sword/long_sword/long_sword002_ornate',0), -(2260,2260,'accessories/wieldable_items/weapons/sword/scimitar/scimitar001_runic',0), -(2261,2261,'accessories/wieldable_items/weapons/sword/scimitar/scimitar002_plain',0), -(2262,2262,'accessories/wieldable_items/weapons/sword/short_sword/short_sword001_runic',0), -(2263,2263,'accessories/wieldable_items/weapons/sword/short_sword/short_sword002_plain',0), -(2264,2264,'accessories/wieldable_items/weapons/sword/short_sword/short_sword002_rusty',0), -(2265,2265,'staticobjects/rocks/rubble_chunks',0), -(2266,2266,'accessories/wieldable_items/weapons/axe/hand_axe/hand_axe001_runic',0), -(2267,2267,'accessories/wieldable_items/weapons/axe/hand_axe/hand_axe002_rusty',0), -(2268,2268,'accessories/wieldable_items/weapons/fist/cestus/spiked_cestus001_plain',0), -(2269,2269,'accessories/wearable_items/vanguard/common/high/skirt',0), -(2270,2270,'accessories/wearable_items/vanguard/common/medium/skirt',0), -(2271,2271,'accessories/wearable_items/vanguard/uncommon/high/skirt',0), -(2272,2272,'accessories/wearable_items/vanguard/uncommon/low/skirt',0), -(2273,2273,'accessories/wearable_items/vanguard/uncommon/medium/skirt',0), -(2274,2274,'accessories/wieldable_items/weapons/fist/claws/claws001_plain',0), -(2275,2275,'accessories/wieldable_items/weapons/fist/katar/katar001_plain',0), -(2276,2276,'_exp07/zones/exp07_dun_drunder/dpo_tallon_pedestal',1096), -(2277,2277,'_exp07/zones/exp07_dun_drunder/dpo_tallon_pedestal_w_bow',1096), -(2278,2278,'accessories/wieldable_items/weapons/great_sword/greatsword/greatsword001_ornate',0), -(2279,2279,'accessories/wieldable_items/weapons/great_sword/greatsword/greatsword002_runic',0), -(2280,2280,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword001_ornate',0), -(2281,2281,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword002_plain',0), -(2282,2282,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword002_rusty',0), -(2283,2283,'staticobjects/mushroom/mushroom_small',0), -(2284,2284,'accessories/wieldable_items/weapons/fist/cestus/spiked_cestus002_ornate',0), -(2285,2285,'accessories/wieldable_items/weapons/fist/cestus/spiked_cestus002_runic',0), -(2286,2286,'accessories/wieldable_items/weapons/hammer/cudgel/cudgel001_plain',0), -(2287,2287,'accessories/wieldable_items/weapons/hammer/cudgel/cudgel002_rusty',0), -(2288,2288,'accessories/wieldable_items/weapons/fist/katar/katar002_runic',0), -(2289,2289,'accessories/wieldable_items/weapons/great_spear/trident/trident001_plain',0), -(2290,2290,'accessories/wieldable_items/weapons/spear/javelin/javeling001_plain',0), -(2291,2291,'accessories/wieldable_items/weapons/spear/spear/spear001_ornate',0), -(2292,2292,'accessories/wieldable_items/weapons/spear/spear/spear001_plain',0), -(2293,2293,'staticobjects/tents/nektulos_small_red01',0), -(2294,2294,'accessories/wieldable_items/weapons/axe/waraxe/waraxe001_ornate',0), -(2295,2295,'accessories/wieldable_items/weapons/axe/waraxe/waraxe001_plain',0), -(2296,2296,'accessories/wieldable_items/weapons/axe/waraxe/waraxe001_rusty',0), -(2297,2297,'accessories/wieldable_items/weapons/axe/waraxe/waraxe002_runic',0), -(2298,2298,'accessories/wieldable_items/weapons/great_hammer/maul/maul001_plain',0), -(2299,2299,'accessories/wieldable_items/weapons/great_hammer/maul/maul002_runic',0), -(2300,2300,'accessories/wieldable_items/weapons/great_spear/great_spear/great_spear001_plain',0), -(2301,2301,'accessories/wieldable_items/weapons/great_spear/trident/trident002_runic',0), -(2302,2302,'accessories/wieldable_items/weapons/spear/leaf_blade/leaf_blade001_plain',0), -(2303,2303,'accessories/wieldable_items/weapons/spear/leaf_blade/leaf_blade001_rusty',0), -(2304,2304,'accessories/wieldable_items/weapons/spear/short_spear/short_spear001_plain',0), -(2305,2305,'accessories/wieldable_items/weapons/sword/falchion_sword/falchion_sword001_plain',0), -(2306,2306,'staticobjects/dpo_invisible_cube/dpo_invisible_cube',0), -(2307,2307,'accessories/wearable_items/tradesman/clothing/plainbluelacey/shoulders',0), -(2308,2308,'accessories/wearable_items/tradesman/clothing/plainbluelacey/chest',0), -(2309,2309,'accessories/wearable_items/tradesman/clothing/plainbluelacey/legs',0), -(2310,2310,'accessories/wieldable_items/weapons/axe/cresent_axe/cresent_axe001_plain',0), -(2311,2311,'accessories/wieldable_items/weapons/axe/cresent_axe/cresent_axe001_runic',0), -(2312,2312,'accessories/wieldable_items/weapons/axe/cresent_axe/cresent_axe001_rusty',0), -(2313,2313,'accessories/wieldable_items/weapons/axe/cresent_axe/cresent_axe002_ornate',0), -(2314,2314,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe001_good',0), -(2315,2315,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe001_ornate',0), -(2316,2316,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe001_plain',0), -(2317,2317,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe001_runic',0), -(2318,2318,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe002_evil',0), -(2319,2319,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe002_rusty',0), -(2320,2320,'accessories/wieldable_items/weapons/hammer/battlehammer/battlehammer001_runic',0), -(2321,2321,'accessories/wieldable_items/weapons/hammer/battlehammer/battlehammer002_rusty',0), -(2322,2322,'accessories/wieldable_items/weapons/hammer/mace/mace01_runic',0), -(2323,2323,'accessories/wieldable_items/weapons/hammer/mace/mace02_plain',0), -(2324,2324,'accessories/wieldable_items/weapons/hammer/mace/mace02_rusty',0), -(2325,2325,'accessories/wieldable_items/weapons/hammer/mace/mace03_ornate',0), -(2326,2326,'staticobjects/tableware/floor_mug_any_dirty',0), -(2327,2327,'_exp07/zones/exp07_dun_drunder/dpo_vallon_pedestal',1096), -(2328,2328,'staticobjects/lab/floor_flask_iksar_lab',0), -(2329,2329,'staticobjects/artisan/floor_easel_human_wooden01',0), -(2330,2330,'accessories/wearable_items/tradesman/clothing/ornateshinygold/chest',0), -(2331,2331,'accessories/wearable_items/tradesman/clothing/ornateshinygold/legs',0), -(2332,2332,'accessories/wearable_items/tradesman/clothing/ornateshinygold/shoulders',0), -(2333,2333,'accessories/wieldable_items/weapons/axe/tomahawk/tomahawk001_plain',0), -(2334,2334,'accessories/wieldable_items/weapons/axe/tomahawk/tomahawk002_ornate',0), -(2335,2335,'creatures/monsters/seagull',0), -(2336,2336,'creatures/monsters/sheep',0), -(2337,2337,'staticobjects/catapult/catapult_broken',0), -(2338,2338,'staticobjects/world_devices/trdskl_fprt_chemistrytable01',0), -(2339,2339,'staticobjects/world_devices/trdskl_fprt_engraveddesk01',0), -(2340,2340,'staticobjects/world_devices/trdskl_fprt_stoveandkeg01',0), -(2341,2341,'staticobjects/world_devices/trdskl_fprt_woodworkingtable01',0), -(2342,2342,'staticobjects/world_devices/trdskl_fprt_workbench01',0), -(2343,2343,'staticobjects/world_devices/trdskl_qey_chemistrytable01',0), -(2344,2344,'staticobjects/world_devices/trdskl_qey_engraveddesk01',0), -(2345,2345,'staticobjects/world_devices/trdskl_qey_stoveandkeg01',0), -(2346,2346,'staticobjects/world_devices/trdskl_qey_woodworkingtable01',0), -(2347,2347,'accessories/wieldable_items/weapons/dagger/parrying_blade/parrying_blade001_plain',0), -(2348,2348,'accessories/wieldable_items/weapons/dagger/parrying_blade/parrying_blade002_runic',0), -(2349,2349,'accessories/wieldable_items/weapons/dagger/sai/sai001_plain',0), -(2350,2350,'accessories/wieldable_items/weapons/rapier/cutlass/cutlass001_runic',0), -(2351,2351,'accessories/wieldable_items/weapons/rapier/epee/epee001_runic',0), -(2352,2352,'accessories/wieldable_items/weapons/rapier/foil/foil001_ornate',0), -(2353,2353,'accessories/wieldable_items/weapons/rapier/karabela/karabela001_runic',0), -(2354,2354,'accessories/wieldable_items/weapons/rapier/saber/saber001_runic',0), -(2355,2355,'accessories/wieldable_items/weapons/staff/scorcerers_staff/scorcerers_staff001_ornate',0), -(2356,2356,'accessories/wieldable_items/weapons/staff/scorcerers_staff/scorcerers_staff002_runic',0), -(2357,2357,'accessories/wieldable_items/weapons/throwing_weapons/throwing_hammer/throwing_hammer001_runic',0), -(2358,2358,'creatures/monsters/hawk_redtail',0), -(2359,2359,'creatures/pets/diseases_servant',0), -(2360,2360,'creatures/pets/elemental_fire',0), -(2361,2361,'creatures/pets/factor_earth',0), -(2362,2362,'creatures/pets/factor_fire',0), -(2363,2363,'creatures/pets/form_earth',0), -(2364,2364,'creatures/pets/horse',0), -(2365,2365,'creatures/pets/icebone_skeleton',0), -(2366,2366,'staticobjects/bones/bones_weapons',0), -(2367,2367,'staticobjects/bones/bones_weapons_1',0), -(2368,2368,'staticobjects/bones/bone_collection_large',0), -(2369,2369,'staticobjects/bones/jumbled_bones08',0), -(2370,2370,'staticobjects/bones/speared_skeleton',0), -(2371,2371,'staticobjects/carcase/barnyard_dead_dog',0), -(2372,2372,'staticobjects/carcase/horse_carcase',0), -(2373,2373,'staticobjects/catapult/orc_batteringram',0), -(2374,2374,'staticobjects/catapult/orc_siegetower',0), -(2375,2375,'staticobjects/catapult/orc_siegetower_damaged',0), -(2376,2376,'staticobjects/dervish/dervish_outhouse_1',0), -(2377,2377,'staticobjects/gravestones/spreadtombs_1',0), -(2378,2378,'staticobjects/rocks/rock_formation',0), -(2379,2379,'staticobjects/tents/orc_tent_large',0), -(2380,2380,'staticobjects/tree/barricade_corner_left',0), -(2381,2381,'staticobjects/tree/log_dead',0), -(2382,2382,'staticobjects/tree/tree_savanah_dry',0), -(2383,2383,'staticobjects/tree/trunk_tree_dead',0), -(2384,2384,'accessories/wieldable_items/weapons/dagger/kris/kris001_runic',0), -(2385,2385,'accessories/wieldable_items/weapons/great_spear/pike/pike001_plain',0), -(2386,2386,'accessories/wieldable_items/weapons/great_spear/pike/pike001_runic',0), -(2387,2387,'accessories/wieldable_items/weapons/great_spear/voulge/voulge001_ornate',0), -(2388,2388,'accessories/wieldable_items/weapons/spear/ornate_spear/ornate_spear001_ornate',0), -(2389,2389,'creatures/monsters/dragonfly',0), -(2390,2390,'creatures/pets/elemental_water',0), -(2391,2391,'creatures/pets/essence_water',0), -(2392,2392,'creatures/pets/factor_water',0), -(2393,2393,'creatures/pets/form_fire',0), -(2394,2394,'creatures/pets/form_water',0), -(2395,2395,'staticobjects/blacksmith/df_armorhook01',0), -(2396,2396,'accessories/wieldable_items/weapons/spear/tribal_spear/tribal_spear001_plain',0), -(2397,2397,'creatures/monsters/turkey',0), -(2398,2398,'projectiles/spell_spiral',0), -(2399,2399,'staticobjects/nest',0), -(2400,2400,'staticobjects/nests/nest',0), -(2401,2401,'staticobjects/rubble/ratpile',0), -(2402,2402,'accessories/wearable_items/vanguard/rare/medium/skirt',0), -(2403,2403,'accessories/wieldable_items/weapons/great_sword/bastard_sword/bastard_sword001_plain',0), -(2404,2404,'accessories/wieldable_items/weapons/great_sword/bastard_sword/bastard_sword001_runic',0), -(2405,2405,'accessories/wieldable_items/weapons/great_sword/bastard_sword/bastard_sword002_ornate',0), -(2406,2406,'accessories/wieldable_items/weapons/great_sword/broad_sword/broad_sword001_ornate',0), -(2407,2407,'accessories/wieldable_items/weapons/great_sword/broad_sword/broad_sword001_plain',0), -(2408,2408,'accessories/wieldable_items/weapons/great_sword/broad_sword/broad_sword002_runic',0), -(2409,2409,'accessories/wieldable_items/weapons/great_sword/broad_sword/broad_sword002_rusty',0), -(2410,2410,'accessories/wieldable_items/weapons/rapier/rapier/rapier001_ornate',0), -(2411,2411,'creatures/monsters/rumbler_coal',0), -(2412,2412,'creatures/monsters/rumbler_rocky',0), -(2413,2413,'creatures/monsters/rumbler_slimey',0), -(2414,2414,'creatures/monsters/stagg',0), -(2415,2415,'creatures/monsters/tiger',0), -(2416,2416,'creatures/pets/elemental_air',0), -(2417,2417,'staticobjects/gears/gears_table00',0), -(2418,2418,'accessories/wearable_items/magus/robes/fancy_goldburgundy/chest',0), -(2419,2419,'accessories/wearable_items/magus/robes/fancy_goldburgundy/hood',0), -(2420,2420,'accessories/wearable_items/magus/robes/fancy_goldburgundy/pants',0), -(2421,2421,'accessories/wearable_items/magus/robes/fancy_goldburgundy/skirt',0), -(2422,2422,'accessories/wieldable_items/weapons/staff/bo_staff/bo_staff001_plain',0), -(2423,2423,'accessories/wieldable_items/weapons/staff/bo_staff/bo_staff002_ornate',0), -(2424,2424,'accessories/wieldable_items/weapons/staff/fighting_batons/fighting_batons001_runic',0), -(2425,2425,'accessories/wieldable_items/weapons/staff/great_staff/great_staff001_runic',0), -(2426,2426,'accessories/wieldable_items/weapons/staff/great_staff/great_staff002_plain',0), -(2427,2427,'accessories/wieldable_items/weapons/staff/metal_rod/metal_rod001_runic',0), -(2428,2428,'accessories/wieldable_items/weapons/staff/quarterstaff/quarterstaff001_runic',0), -(2429,2429,'projectiles/spell_shriek',0), -(2430,2430,'staticobjects/bones/bone_pile',0), -(2431,2431,'staticobjects/bones/seated_skeleton',0), -(2432,2432,'staticobjects/bones/skull_single',0), -(2433,2433,'staticobjects/containers/mugs_and_plates',0), -(2434,2434,'staticobjects/pictures/halfling_blueprint',0), -(2435,2435,'staticobjects/plants/stump01',0), -(2436,2436,'staticobjects/plants/weeds01',0), -(2437,2437,'staticobjects/plants/weeds02',0), -(2438,2438,'staticobjects/smoking_utensils/waterpipe',0), -(2439,2439,'_exp07/zones/exp07_dun_drunder/dpo_vallon_pedestal_w_scimitar',1096), -(2440,2440,'accessories/wieldable_items/weapons/exp07/talisman/book_caged_monster_undead_fx',1096), -(2441,2441,'accessories/wieldable_items/shields/buckler_shield/metal_buckler/metal_buckler001_ornate',0), -(2442,2442,'accessories/wieldable_items/shields/buckler_shield/streatched_leather_buckler/streatched_leather_buckler001_plain',0), -(2443,2443,'accessories/wieldable_items/shields/buckler_shield/wooden_buckler/wooden_buckler001_plain',0), -(2444,2444,'accessories/wieldable_items/weapons/exp07/talisman/book_songbook_fx',1096), -(2445,2445,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched001_plain',0), -(2446,2446,'accessories/wieldable_items/shields/round_shield/wooden_round/wooden_round_shield001_plain',0), -(2447,2447,'accessories/wieldable_items/shields/tower_shield/tower_shield_freeport/tower_shield_freeport001',0), -(2448,2448,'accessories/wieldable_items/shields/tower_shield/tower_shield_qeynos/tower_shield_qeynos001',0), -(2449,2449,'accessories/wieldable_items/weapons/axe/tomahawk/tomahawk001_rusty',0), -(2450,2450,'accessories/wieldable_items/weapons/axe/tomahawk/tomahawk002_runic',0), -(2451,2451,'staticobjects/dpo_invisible_cube/cage_collision',0), -(2452,2452,'accessories/wieldable_items/shields/buckler_shield/metal_buckler/metal_buckler001_plain',0), -(2453,2453,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield001_ornate',0), -(2454,2454,'accessories/wieldable_items/shields/round_shield/metal_round/metal_round_shield001_plain',0), -(2455,2455,'accessories/wieldable_items/shields/round_shield/wooden_round/wooden_round_shield001_runic',0), -(2456,2456,'creatures/monsters/cow_bell',0), -(2457,2457,'staticobjects/musical/plain_flute',1096), -(2458,2458,'accessories/wieldable_items/shields/kite_shield/kite_shield_freeport/kite_shield_freeport001',0), -(2459,2459,'accessories/wieldable_items/shields/kite_shield/kite_shield_qeynos/kite_shield_qeynos001',0), -(2460,2460,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield001_ornate',0), -(2461,2461,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_ornate',0), -(2462,2462,'creatures/pets/elemental_earth',0), -(2463,2463,'creatures/pets/essence_earth',0), -(2464,2464,'accessories/wieldable_items/shields/tower_shield/metal_tower_shield/metal_tower_shield001_ornate',0), -(2465,2465,'accessories/wieldable_items/weapons/great_axe/military_pick/military_pick002_runic',0), -(2466,2466,'accessories/wieldable_items/weapons/great_axe/military_pick/military_pick001_plain',0), -(2467,2467,'staticobjects/tents/gnoll_tent',0), -(2468,2468,'staticobjects/liveevent/guides/guide_drum',1096), -(2469,2469,'projectiles/arrow_simple_plain',0), -(2470,2470,'projectiles/spell_blue_star',0), -(2471,2471,'accessories/wearable_items/chain/plain/low/chest',0), -(2472,2472,'accessories/wearable_items/chain/plain/low/feet',0), -(2473,2473,'accessories/wearable_items/chain/plain/low/forearms',0), -(2474,2474,'accessories/wearable_items/chain/plain/low/hands',0), -(2475,2475,'accessories/wearable_items/chain/plain/low/head',0), -(2476,2476,'accessories/wearable_items/chain/plain/low/legs',0), -(2477,2477,'accessories/wearable_items/chain/plain/low/shoulders',0), -(2478,2478,'accessories/wearable_items/chain/plain/low/skirt',0), -(2479,2479,'accessories/wieldable_items/tools/alchemist/beaker',0), -(2480,2480,'accessories/wieldable_items/tools/alchemist/testtube',0), -(2481,2481,'accessories/wieldable_items/tools/cook/pot',0), -(2482,2482,'accessories/wieldable_items/tools/cook/spoon',0), -(2483,2483,'accessories/wieldable_items/tools/jeweler/gem',0), -(2484,2484,'accessories/wieldable_items/tools/jeweler/magnifying_glass',0), -(2485,2485,'accessories/wieldable_items/tools/smith/hammer',0), -(2486,2486,'accessories/wieldable_items/tools/smith/tongs_wmetal',0), -(2487,2487,'accessories/wieldable_items/tools/tailor/cloth',0), -(2488,2488,'accessories/wieldable_items/tools/tailor/needle',0), -(2489,2489,'accessories/wieldable_items/tools/woodworker/saw',0), -(2490,2490,'accessories/wieldable_items/tools/woodworker/wood',0), -(2491,2491,'staticobjects/liveevent/tinkerfest/dpo_tinkerfest_distillery_pipe_single',1096), -(2492,2492,'staticobjects/_exp07/othmir/othmir_firepit02',1096), -(2493,2493,'staticobjects/_exp07/othmir/othmir_firepit01',1096), -(2494,2494,'staticobjects/halloween/ark01_broken',1096), -(2495,2495,'staticobjects/halloween/bef_asylum_lamp_swinging01',1096), -(2496,2496,'staticobjects/halloween/bef_cave_torch_light01',1096), -(2497,2497,'staticobjects/halloween/bef_claypot01_tall_broken01',1096), -(2498,2498,'staticobjects/halloween/fprt_ext_tombstonee001',1096), -(2499,2499,'staticobjects/halloween/fprt_ext_tombstoneg001',1096), -(2500,2500,'staticobjects/flying_mount_platform/antonica',0), -(2501,2501,'staticobjects/rubble/rubble_pile01',0), -(2502,2502,'staticobjects/halloween/halfing_display_traps01',1096), -(2503,2503,'staticobjects/halloween/holiday_skull_candy_dispenser_01',1096), -(2504,2504,'staticobjects/halloween/lp_lightsource_somborn_double_post01',1096), -(2505,2505,'staticobjects/halloween/oblost_pot01_brkn_w_organs',1096), -(2506,2506,'accessories/wieldable_items/tools/tailor/tanning_cloth',0), -(2507,2507,'accessories/wearable_items/tradesman/clothing/plain_brown_female/chest',0), -(2508,2508,'accessories/wearable_items/tradesman/clothing/plain_brown_female/legs',0), -(2509,2509,'accessories/wieldable_items/shields/round_shield/metal_round/metal_round_shield001_rusty',0), -(2510,2510,'staticobjects/halloween/oth_bones_wall_04',1096), -(2511,2511,'staticobjects/halloween/pf_haypile01',1096), -(2512,2512,'staticobjects/doorways/qey_tradeskill_entrance01',0), -(2513,2513,'accessories/wieldable_items/shields/tower_shield/metal_tower_shield/metal_tower_shield001_rusty',0), -(2514,2514,'accessories/wieldable_items/weapons/great_axe/executioner_axe/executioner_axe002_evil',0), -(2515,2515,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace001_plain',0), -(2516,2516,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace002_rusty',0), -(2517,2517,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club001_plain',0), -(2518,2518,'staticobjects/halloween/tfs_present02_big',1096), -(2519,2519,'accessories/wieldable_items/weapons/great_hammer/maul/maul001_rusty',0), -(2520,2520,'accessories/wieldable_items/weapons/great_hammer/maul/maul002_ornate',0), -(2521,2521,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer001_ornate',0), -(2522,2522,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer001_plain',0), -(2523,2523,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer001_runic',0), -(2524,2524,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer002_ornate',0), -(2525,2525,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer002_rusty',0), -(2526,2526,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer003_evil',0), -(2527,2527,'accessories/wieldable_items/weapons/sword/scimitar/scimitar002_rusty',0), -(2528,2528,'staticobjects/doors/qey_scribe_village06_door01',0), -(2529,2529,'staticobjects/world_devices/trdskl_fprt_forge01',0), -(2530,2530,'staticobjects/world_devices/trdskl_fprt_sewingtable_mannequin_loom01',0), -(2531,2531,'staticobjects/world_devices/trdskl_qey_workbench01',0), -(2532,2532,'accessories/wieldable_items/weapons/fist/knuckles/knuckles001_ornate',0), -(2533,2533,'accessories/wieldable_items/weapons/fist/knuckles/knuckles001_plain',0), -(2534,2534,'accessories/wieldable_items/weapons/fist/knuckles/knuckles001_rusty',0), -(2535,2535,'accessories/wieldable_items/weapons/fist/knuckles/knuckles002_runic',0), -(2536,2536,'accessories/wieldable_items/weapons/fist/knuckles/knuckles002_rusty',0), -(2537,2537,'accessories/wieldable_items/weapons/great_axe/assault_axe/assault_axe002_rusty',0), -(2538,2538,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star001_rusty',0), -(2539,2539,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star002_plain',0), -(2540,2540,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star002_runic',0), -(2541,2541,'accessories/wieldable_items/weapons/great_sword/claymore_sword/claymore_sword001_ornate',0), -(2542,2542,'accessories/wieldable_items/weapons/great_sword/claymore_sword/claymore_sword001_plain',0), -(2543,2543,'creatures/pets/hawk_ghost',0), -(2544,2544,'staticobjects/scrolls/scroll01',0), -(2545,2545,'staticobjects/world_devices/trdskl_qey_sewingtable_mannequin_loom01',0), -(2546,2546,'accessories/wieldable_items/weapons/fist/katar/katar001_rusty',0), -(2547,2547,'accessories/wieldable_items/weapons/fist/katar/katar002_ornate',0), -(2548,2548,'accessories/wieldable_items/weapons/sword/falchion_sword/falchion_sword002_rusty',0), -(2549,2549,'accessories/wieldable_items/weapons/throwing_weapons/throwing_axe/throwing_axe001_ornate',0), -(2550,2550,'accessories/wieldable_items/weapons/throwing_weapons/throwing_axe/throwing_axe001_rusty',0), -(2551,2551,'accessories/wieldable_items/weapons/throwing_weapons/throwing_axe/throwing_axe002_plain',0), -(2552,2552,'accessories/wieldable_items/weapons/throwing_weapons/throwing_hammer/throwing_hammer001_ornate',0), -(2553,2553,'creatures/tu/golem_ice',0), -(2554,2554,'creatures/tu/siren_queen',0), -(2555,2555,'creatures/tu/tentacleterror_crystal',0), -(2556,2556,'projectiles/spell_electric_ball',0), -(2557,2557,'staticobjects/boats/travel_boat',0), -(2558,2558,'ec/pc/barbarian/barbarian_female_ghost',0), -(2559,2559,'staticobjects/cages/ceiling_petcage_any_wood01',0), -(2560,2560,'staticobjects/fx/icicles',0), -(2561,2561,'staticobjects/artisan/floor_easel_human_canvas01',0), -(2562,2562,'staticobjects/barrels/floor_barrel_any_cask01',0), -(2563,2563,'staticobjects/barrels/floor_barrel_any_ornate01',0), -(2564,2564,'staticobjects/barrels/floor_barrel_any_ornate02',0), -(2565,2565,'staticobjects/barrels/floor_barrel_any_small01',0), -(2566,2566,'staticobjects/barrels/floor_barrel_any_small02',0), -(2567,2567,'staticobjects/barrels/floor_barrel_any_small03',0), -(2568,2568,'staticobjects/barrels/floor_barrel_any_storage01',0), -(2569,2569,'staticobjects/barrels/floor_barrel_any_storage02',0), -(2570,2570,'staticobjects/barrels/floor_barrel_any_wine01',0), -(2571,2571,'staticobjects/barrels/floor_barrel_elf_ornate01',0), -(2572,2572,'staticobjects/beds/floor_bed_any_bunks01',0), -(2573,2573,'staticobjects/beds/floor_bed_any_plain01',0), -(2574,2574,'staticobjects/beds/floor_bed_any_torture01',0), -(2575,2575,'staticobjects/beds/floor_bed_any_torture02',0), -(2576,2576,'staticobjects/beds/floor_bed_darkelf_bunks01',0), -(2577,2577,'staticobjects/bookcases/floor_bookcase_any_plain01',0), -(2578,2578,'staticobjects/bookcases/floor_bookcase_any_stone01',0), -(2579,2579,'staticobjects/bookcases/floor_bookcase_any_stone02',0), -(2580,2580,'staticobjects/bookcases/floor_bookcase_any_wood01',0), -(2581,2581,'staticobjects/bookcases/floor_bookcase_any_wood02',0), -(2582,2582,'staticobjects/bookcases/floor_bookcase_any_wood03',0), -(2583,2583,'staticobjects/bookcases/floor_bookcase_any_wood04',0), -(2584,2584,'staticobjects/bookcases/floor_bookcase_any_wood05',0), -(2585,2585,'staticobjects/bookcases/floor_bookcase_any_wood06',0), -(2586,2586,'staticobjects/bookcases/floor_bookcase_bixie_ornate01',0), -(2587,2587,'staticobjects/bookcases/floor_bookcase_darkelf_ornate01',0), -(2588,2588,'staticobjects/bookcases/floor_bookcase_darkelf_ornate03',0), -(2589,2589,'staticobjects/bookcases/floor_bookcase_darkelf_ornate04',0), -(2590,2590,'staticobjects/bookcases/floor_bookcase_darkelf_ornate05',0), -(2591,2591,'staticobjects/books/floor_books_any_mixed01',0), -(2592,2592,'staticobjects/books/floor_books_any_mixed02',0), -(2593,2593,'staticobjects/books/floor_books_any_mixed03',0), -(2594,2594,'staticobjects/books/floor_books_any_mixed04',0), -(2595,2595,'staticobjects/books/floor_books_any_mixed05',0), -(2596,2596,'staticobjects/books/floor_book_any_cazic01',0), -(2597,2597,'staticobjects/books/floor_book_any_cazic02',0), -(2598,2598,'staticobjects/books/floor_book_any_cazic03',0), -(2599,2599,'staticobjects/books/floor_book_any_cazic04',0), -(2600,2600,'staticobjects/books/floor_book_any_cazic05',0), -(2601,2601,'staticobjects/books/floor_book_darkelf_plain01',0), -(2602,2602,'staticobjects/books/floor_book_darkelf_plain02',0), -(2603,2603,'staticobjects/books/floor_book_darkelf_plain03',0), -(2604,2604,'staticobjects/books/floor_book_darkelf_plain04',0), -(2605,2605,'staticobjects/bottles/floor_bottle_any_fermentation01',0), -(2606,2606,'staticobjects/bottles/floor_bottle_any_potion01',0), -(2607,2607,'staticobjects/bottles/floor_bottle_darkelf_bar01',0), -(2608,2608,'staticobjects/bottles/floor_bottle_darkelf_bar02',0), -(2609,2609,'staticobjects/bottles/floor_bottle_darkelf_bar03',0), -(2610,2610,'staticobjects/bottles/floor_bottle_darkelf_lab01',0), -(2611,2611,'staticobjects/bottles/floor_bottle_darkelf_lab02',0), -(2612,2612,'staticobjects/bottles/floor_bottle_darkelf_lab03',0), -(2613,2613,'staticobjects/bottles/floor_bottle_darkelf_lab04',0), -(2614,2614,'staticobjects/bottles/floor_potionbottle_any_large01',0), -(2615,2615,'staticobjects/bottles/floor_potionbottle_any_large02',0), -(2616,2616,'staticobjects/bottles/floor_potionbottle_any_large03',0), -(2617,2617,'staticobjects/bottles/floor_potionbottle_any_large04',0), -(2618,2618,'staticobjects/bottles/floor_potionbottle_any_large05',0), -(2619,2619,'staticobjects/bottles/floor_potionbottle_any_medium01',0), -(2620,2620,'staticobjects/bottles/floor_potionbottle_any_medium02',0), -(2621,2621,'staticobjects/bottles/floor_potionbottle_any_medium03',0), -(2622,2622,'staticobjects/bottles/floor_potionbottle_any_medium04',0), -(2623,2623,'staticobjects/bottles/floor_potionbottle_any_small01',0), -(2624,2624,'staticobjects/bottles/floor_potionbottle_any_small02',0), -(2625,2625,'staticobjects/bottles/floor_potionbottle_any_small03',0), -(2626,2626,'staticobjects/bottles/floor_potionbottle_any_small04',0), -(2627,2627,'staticobjects/bottles/floor_potionbottle_any_small05',0), -(2628,2628,'staticobjects/cages/floor_cage_any_bone01',0), -(2629,2629,'staticobjects/cauldron/floor_pot_darkelf_cauldron01',0), -(2630,2630,'staticobjects/chairs/floor_bench_any_simple01',0), -(2631,2631,'staticobjects/chairs/floor_bench_darkelf_ornate01',0), -(2632,2632,'staticobjects/chairs/floor_chair_any_bar01',0), -(2633,2633,'staticobjects/chairs/floor_chair_any_bar02',0), -(2634,2634,'staticobjects/chairs/floor_chair_any_dining01',0), -(2635,2635,'staticobjects/chairs/floor_chair_any_dining02',0), -(2636,2636,'staticobjects/chairs/floor_chair_any_dining03',0), -(2637,2637,'staticobjects/chairs/floor_chair_any_office01',0), -(2638,2638,'staticobjects/chairs/floor_chair_any_office02',0), -(2639,2639,'staticobjects/chairs/floor_chair_any_office03',0), -(2640,2640,'staticobjects/chairs/floor_chair_any_stone01',0), -(2641,2641,'staticobjects/chairs/floor_chair_any_stone02',0), -(2642,2642,'staticobjects/chairs/floor_chair_darkelf_ornate01',0), -(2643,2643,'staticobjects/chairs/floor_chair_darkelf_ornate02',0), -(2644,2644,'staticobjects/chairs/floor_chair_darkelf_weathered01',0), -(2645,2645,'staticobjects/chairs/floor_chair_darkelf_wood01',0), -(2646,2646,'staticobjects/chairs/floor_chair_woodelf_hood01',0), -(2647,2647,'staticobjects/chairs/floor_chair_woodelf_hood02',0), -(2648,2648,'staticobjects/chairs/floor_stool_darkelf_ornate01',0), -(2649,2649,'staticobjects/chairs/floor_stool_darkelf_simple01',0), -(2650,2650,'staticobjects/chairs/floor_stool_darkelf_thorny01',0), -(2651,2651,'staticobjects/chairs/floor_stool_darkelf_thorny02',0), -(2652,2652,'staticobjects/chairs/floor_stool_darkelf_wood01',0), -(2653,2653,'staticobjects/chairs/floor_stool_halfling_wood01',0), -(2654,2654,'staticobjects/chests/floor_chest_any_ornate01',0), -(2655,2655,'staticobjects/chests/floor_chest_any_wood01',0), -(2656,2656,'staticobjects/chests/floor_chest_darkelf_ornate01',0), -(2657,2657,'staticobjects/chests/floor_chest_darkelf_ornate02',0), -(2658,2658,'staticobjects/chests/floor_chest_elf_wood01',0), -(2659,2659,'staticobjects/containers/floor_bucket_any_simple01',0), -(2660,2660,'staticobjects/containers/floor_bucket_any_wood01',0), -(2661,2661,'staticobjects/containers/floor_bucket_darkelf_metal01',0), -(2662,2662,'staticobjects/containers/floor_pot_any_canopic01',0), -(2663,2663,'staticobjects/containers/floor_pot_any_ornate01',0), -(2664,2664,'staticobjects/containers/floor_pot_any_ornate02',0), -(2665,2665,'staticobjects/containers/floor_pot_any_ornate03',0), -(2666,2666,'staticobjects/containers/floor_pot_any_ornate04',0), -(2667,2667,'staticobjects/containers/floor_pot_any_ornate05',0), -(2668,2668,'staticobjects/containers/floor_trough_any_wood01',0), -(2669,2669,'staticobjects/containers/floor_trough_darkelf_ornate01',0), -(2670,2670,'staticobjects/containers/floor_vase01_any_capped01',0), -(2671,2671,'staticobjects/containers/floor_vase01_any_capped02',0), -(2672,2672,'staticobjects/containers/floor_vase01_any_capped03',0), -(2673,2673,'staticobjects/containers/floor_vase01_any_capped04',0), -(2674,2674,'staticobjects/counters/floor_counter_any_corner01',0), -(2675,2675,'staticobjects/counters/floor_counter_any_generic02',0), -(2676,2676,'staticobjects/counters/floor_counter_darkelf_bar01',0), -(2677,2677,'staticobjects/crates/floor_crate_darkelf_wood01',0), -(2678,2678,'staticobjects/crates/floor_crate_darkelf_wood02',0), -(2679,2679,'staticobjects/crates/floor_crate_darkelf_wood03',0), -(2680,2680,'staticobjects/crates/floor_crate_darkelf_wood04',0), -(2681,2681,'staticobjects/crystals/floor_sphere_any_crystal',0), -(2682,2682,'staticobjects/diode/floor_diode_any_enchanter',0), -(2683,2683,'staticobjects/diode/floor_diode_any_sorcerer',0), -(2684,2684,'staticobjects/diode/floor_diode_any_summoner',0), -(2685,2685,'staticobjects/dressers/floor_dresser_any_ornate01',0), -(2686,2686,'staticobjects/dressers/floor_dresser_darkelf_ornate01',0), -(2687,2687,'staticobjects/dressers/floor_dresser_darkelf_ornate02',0), -(2688,2688,'staticobjects/dressers/floor_dresser_darkelf_ornate03',0), -(2689,2689,'staticobjects/kitchen/floor_pan_any_frying01',0), -(2690,2690,'staticobjects/kitchen/floor_pan_any_frying02',0), -(2691,2691,'staticobjects/kitchen/floor_pot_any_cooking01',0), -(2692,2692,'staticobjects/kitchen/floor_pot_any_cooking02',0), -(2693,2693,'staticobjects/kitchen/wall_breadholder_any_wood01',0), -(2694,2694,'staticobjects/lighting/ceiling_chandalier_any_antler',0), -(2695,2695,'staticobjects/lighting/ceiling_chandelier_any_skull01',0), -(2696,2696,'staticobjects/lighting/ceiling_chandelier_darkelf_ornate01',0), -(2697,2697,'staticobjects/lighting/ceiling_chandelier_darkelf_ornate02',0), -(2698,2698,'staticobjects/lighting/ceiling_chandelier_darkelf_ornate03',0), -(2699,2699,'staticobjects/lighting/ceiling_lamp_bixie_crystal01',0), -(2700,2700,'staticobjects/lighting/ceiling_lamp_bixie_crystal02',0), -(2701,2701,'staticobjects/lighting/ceiling_lamp_darkelf_skull01',0), -(2702,2702,'staticobjects/lighting/floor_brazier_any_cazic01',0), -(2703,2703,'staticobjects/lighting/floor_brazier_any_cazic02',0), -(2704,2704,'staticobjects/lighting/floor_candelabra_any_table01',0), -(2705,2705,'staticobjects/lighting/floor_candlelamp_any_skull01',0), -(2706,2706,'staticobjects/lighting/floor_candlelamp_any_skull02',0), -(2707,2707,'staticobjects/lighting/floor_candlelamp_any_skull03',0), -(2708,2708,'staticobjects/lighting/floor_candlelamp_any_skull04',0), -(2709,2709,'staticobjects/lighting/floor_candlelamp_any_skull05',0), -(2710,2710,'staticobjects/lighting/floor_candles_any_group01',0), -(2711,2711,'staticobjects/lighting/floor_candles_any_group02',0), -(2712,2712,'staticobjects/lighting/floor_candles_any_group03',0), -(2713,2713,'staticobjects/lighting/floor_lamp_any_table01',0), -(2714,2714,'staticobjects/lighting/floor_lamp_any_table02',0), -(2715,2715,'staticobjects/lighting/floor_lamp_bixie_crystal01',0), -(2716,2716,'staticobjects/lighting/floor_lamp_darkelf_candle01',0), -(2717,2717,'staticobjects/lighting/floor_lamp_darkelf_candle02',0), -(2718,2718,'staticobjects/lighting/floor_lamp_darkelf_globe01',0), -(2719,2719,'staticobjects/lighting/floor_lamp_darkelf_globe02',0), -(2720,2720,'staticobjects/lighting/floor_lamp_darkelf_globe03',0), -(2721,2721,'staticobjects/lighting/floor_lamp_darkelf_globe04',0), -(2722,2722,'staticobjects/lighting/floor_lamp_darkelf_globe05',0), -(2723,2723,'staticobjects/lighting/floor_lamp_darkelf_globe06',0), -(2724,2724,'staticobjects/lighting/floor_lamp_darkelf_ornate01',0), -(2725,2725,'staticobjects/lighting/floor_lamp_elf_candle01',0), -(2726,2726,'staticobjects/lighting/wall_lamp_any_cazic01',0), -(2727,2727,'staticobjects/lighting/wall_lamp_any_cazic02',0), -(2728,2728,'staticobjects/lighting/wall_lamp_any_fancy01',0), -(2729,2729,'staticobjects/lighting/wall_lamp_any_fancy02',0), -(2730,2730,'staticobjects/lighting/wall_lamp_any_militia01',0), -(2731,2731,'staticobjects/lighting/wall_lamp_any_militia02',0), -(2732,2732,'staticobjects/lighting/wall_lamp_bixie_crystal01',0), -(2733,2733,'staticobjects/lighting/wall_lamp_bixie_crystal02',0), -(2734,2734,'staticobjects/lighting/wall_lamp_bixie_ornate01',0), -(2735,2735,'staticobjects/lighting/wall_lamp_bixie_ornate02',0), -(2736,2736,'staticobjects/lighting/wall_lamp_darkelf_candle01',0), -(2737,2737,'staticobjects/lighting/wall_lamp_darkelf_globe01',0), -(2738,2738,'staticobjects/lighting/wall_lamp_darkelf_globe02',0), -(2739,2739,'staticobjects/lighting/wall_lamp_darkelf_globe03',0), -(2740,2740,'staticobjects/lighting/wall_lamp_darkelf_torchbowl01',0), -(2741,2741,'staticobjects/lighting/wall_lamp_elf_candle01',0), -(2742,2742,'staticobjects/lighting/wall_walllamp_any_figurehead01',0), -(2743,2743,'staticobjects/lighting/wall_walllamp_darkelf_ornate01',0), -(2744,2744,'staticobjects/lighting/wall_walllamp_darkelf_ornate02',0), -(2745,2745,'staticobjects/mounts/wall_mount_any_sharkhead',0), -(2746,2746,'staticobjects/nautical/ceiling_shippulley_any_hanging01',0), -(2747,2747,'staticobjects/nautical/floor_shippulley_any_wood01',0), -(2748,2748,'staticobjects/nautical/wall_steeringwheel_any_wood01',0), -(2749,2749,'staticobjects/pillow/floor_pillow_any_display01',0), -(2750,2750,'staticobjects/pillow/floor_pillow_any_display02',0), -(2751,2751,'staticobjects/pillow/floor_pillow_any_display03',0), -(2752,2752,'staticobjects/pillow/floor_pillow_any_display04',0), -(2753,2753,'staticobjects/pillow/floor_pillow_any_display05',0), -(2754,2754,'staticobjects/racks/floor_rack_elf_firewood01',0), -(2755,2755,'staticobjects/relics/floor_offeringbowl_any_cazic01',0), -(2756,2756,'staticobjects/relics/floor_offeringbowl_any_cazic02',0), -(2757,2757,'staticobjects/relics/floor_offeringbowl_any_cazic03',0), -(2758,2758,'staticobjects/rugs/floor_mat_any_dirty01',0), -(2759,2759,'staticobjects/rugs/floor_mat_any_display01',0), -(2760,2760,'staticobjects/shelves/floor_shelf_any_floor01',0), -(2761,2761,'staticobjects/shelves/wall_shelf_any_display01',0), -(2762,2762,'staticobjects/shelves/wall_shelf_any_display02',0), -(2763,2763,'staticobjects/shelves/wall_shelf_any_skull01',0), -(2764,2764,'staticobjects/shelves/wall_shelf_any_skull02',0), -(2765,2765,'staticobjects/shelves/wall_shelf_any_skull03',0), -(2766,2766,'staticobjects/shelves/wall_shelf_any_weathered01',0), -(2767,2767,'staticobjects/shelves/wall_shelf_halfling_wooden01',0), -(2768,2768,'staticobjects/shelves/wall_shelf_halfling_wooden02',0), -(2769,2769,'staticobjects/shelves/wall_shelf_halfling_wooden03',0), -(2770,2770,'staticobjects/shelves/wall_shelf_halfling_wooden04',0), -(2771,2771,'staticobjects/shop/floor_display_darkelf_wooden01',0), -(2772,2772,'staticobjects/shop/floor_display_darkelf_wooden02',0), -(2773,2773,'staticobjects/statues/floor_skeleton_human_display01',0), -(2774,2774,'staticobjects/statues/wall_statue_any_figurehead01',0), -(2775,2775,'staticobjects/tables/floor_desk_any_librarian01',0), -(2776,2776,'staticobjects/tables/floor_desk_any_office01',0), -(2777,2777,'staticobjects/tables/floor_desk_any_ornate01',0), -(2778,2778,'staticobjects/tables/floor_desk_halfling_wood01',0), -(2779,2779,'staticobjects/tables/floor_table_any_bedside02',0), -(2780,2780,'staticobjects/tables/floor_table_any_dining01',0), -(2781,2781,'staticobjects/tables/floor_table_any_dining02',0), -(2782,2782,'staticobjects/tables/floor_table_any_generic01',0), -(2783,2783,'staticobjects/tables/floor_table_any_generic02',0), -(2784,2784,'staticobjects/tables/floor_table_any_generic03',0), -(2785,2785,'staticobjects/tables/floor_table_any_ornate01',0), -(2786,2786,'staticobjects/tables/floor_table_any_ornate02',0), -(2787,2787,'staticobjects/tables/floor_table_any_plain01',0), -(2788,2788,'staticobjects/tables/floor_table_any_plain02',0), -(2789,2789,'staticobjects/tables/floor_table_any_torture01',0), -(2790,2790,'staticobjects/tables/floor_table_any_torture02',0), -(2791,2791,'staticobjects/tables/floor_table_any_torture03',0), -(2792,2792,'staticobjects/tables/floor_table_any_wood01',0), -(2793,2793,'staticobjects/tables/floor_table_any_wood02',0), -(2794,2794,'staticobjects/tables/floor_table_bixie_ornate01',0), -(2795,2795,'staticobjects/tables/floor_table_darkelf_ornate01',0), -(2796,2796,'staticobjects/tables/floor_table_darkelf_ornate02',0), -(2797,2797,'staticobjects/tables/floor_table_darkelf_ornate03',0), -(2798,2798,'staticobjects/tables/floor_table_darkelf_wooden01',0), -(2799,2799,'staticobjects/tables/floor_table_elf_ornate01',0), -(2800,2800,'staticobjects/tables/floor_table_elf_wood01',0), -(2801,2801,'staticobjects/tables/floor_table_halfling_wood01',0), -(2802,2802,'staticobjects/tableware/floor_bowl_darkelf_dining01',0), -(2803,2803,'staticobjects/tableware/floor_bowl_halfling_simple01',0), -(2804,2804,'staticobjects/tableware/floor_bowl_halfling_simple02',0), -(2805,2805,'staticobjects/tableware/floor_cup_any_coffee01',0), -(2806,2806,'staticobjects/tableware/floor_cup_any_coffee02',0), -(2807,2807,'staticobjects/tableware/floor_cup_any_wood01',0), -(2808,2808,'staticobjects/tableware/floor_cup_darkelf_glass01',0), -(2809,2809,'staticobjects/tableware/floor_cup_darkelf_glass02',0), -(2810,2810,'staticobjects/tableware/floor_fork_darkelf_dining01',0), -(2811,2811,'staticobjects/tableware/floor_glass_darkelf_cocktail01',0), -(2812,2812,'staticobjects/tableware/floor_knife_darkelf_dining01',0), -(2813,2813,'staticobjects/tableware/floor_plate_any_dining01',0), -(2814,2814,'staticobjects/tableware/floor_plate_darkelf_dining01',0), -(2815,2815,'staticobjects/tableware/floor_spoon_darkelf_dining01',0), -(2816,2816,'staticobjects/tents/grey_tent_large01',0), -(2817,2817,'staticobjects/tents/grey_tent_small01',0), -(2818,2818,'staticobjects/tools/floor_hammer_darkelf_crafting01',0), -(2819,2819,'staticobjects/tools/floor_handsaw_darkelf_crafting01',0), -(2820,2820,'staticobjects/tools/floor_kiln_darkelf_crafting01',0), -(2821,2821,'staticobjects/tools/floor_pick_darkelf_crafting01',0), -(2822,2822,'staticobjects/tools/floor_pitchfork_darkelf_crafting01',0), -(2823,2823,'staticobjects/tools/floor_potterywheel_darkelf_crafting01',0), -(2824,2824,'staticobjects/tools/floor_scythe_darkelf_crafting01',0), -(2825,2825,'staticobjects/world_devices/temp_alchemy',0), -(2826,2826,'staticobjects/world_devices/temp_desk',0), -(2827,2827,'staticobjects/world_devices/temp_keg',0), -(2828,2828,'staticobjects/world_devices/temp_loom',0), -(2829,2829,'staticobjects/world_devices/temp_rune',0), -(2830,2830,'staticobjects/world_devices/temp_sawhorse',0), -(2831,2831,'staticobjects/world_devices/temp_scribe',0), -(2832,2832,'staticobjects/world_devices/temp_stove',0), -(2833,2833,'creatures/monsters/bat_ghost',0), -(2834,2834,'creatures/monsters/bear_ghost',0), -(2835,2835,'creatures/monsters/wolf_ghost',0), -(2836,2836,'ec/pc/barbarian/barbarian_male_ghost',0), -(2837,2837,'ec/pc/darkelf/darkelf_female_ghost',0), -(2838,2838,'ec/pc/darkelf/darkelf_male_ghost',0), -(2839,2839,'ec/pc/dwarf/dwarf_female_ghost',0), -(2840,2840,'ec/pc/dwarf/dwarf_male_ghost',0), -(2841,2841,'ec/pc/erudite/erudite_female_ghost',0), -(2842,2842,'ec/pc/erudite/erudite_male_ghost',0), -(2843,2843,'ec/pc/gnome/gnome_female_ghost',0), -(2844,2844,'ec/pc/gnome/gnome_male_ghost',0), -(2845,2845,'ec/pc/halfelf/halfelf_female_ghost',0), -(2846,2846,'ec/pc/halfelf/halfelf_male_ghost',0), -(2847,2847,'ec/pc/halfling/halfling_female_ghost',0), -(2848,2848,'ec/pc/halfling/halfling_male_ghost',0), -(2849,2849,'ec/pc/highelf/highelf_female_ghost',0), -(2850,2850,'ec/pc/highelf/highelf_male_ghost',0), -(2851,2851,'ec/pc/human/human_female_ghost',0), -(2852,2852,'ec/pc/human/human_male_ghost',0), -(2853,2853,'ec/pc/iksar/iksar_female_ghost',0), -(2854,2854,'ec/pc/iksar/iksar_male_ghost',0), -(2855,2855,'ec/pc/kerra/kerra_female_ghost',0), -(2856,2856,'ec/pc/kerra/kerra_male_ghost',0), -(2857,2857,'ec/pc/ogre/ogre_female_ghost',0), -(2858,2858,'ec/pc/ogre/ogre_male_ghost',0), -(2859,2859,'ec/pc/ratonga/ratonga_female_ghost',0), -(2860,2860,'ec/pc/ratonga/ratonga_male_ghost',0), -(2861,2861,'ec/pc/troll/troll_female_ghost',0), -(2862,2862,'ec/pc/troll/troll_male_ghost',0), -(2863,2863,'ec/pc/woodelf/woodelf_female_ghost',0), -(2864,2864,'ec/pc/woodelf/woodelf_male_ghost',0), -(2865,2865,'staticobjects/scrolls/obelisk_scroll_case',0), -(2866,2866,'accessories/wearable_items/magus/robes/plain_quilted/chest',0), -(2867,2867,'accessories/wearable_items/magus/robes/plain_quilted/hood',0), -(2868,2868,'accessories/wearable_items/magus/robes/plain_quilted/pants',0), -(2869,2869,'accessories/wearable_items/magus/robes/plain_quilted/skirt',0), -(2870,2870,'staticobjects/barrels/six_barrels',0), -(2871,2871,'staticobjects/candles/evil_skull_flaming',0), -(2872,2872,'staticobjects/canopicjars/large_broken',0), -(2873,2873,'staticobjects/canopicjars/large_broken_laying',0), -(2874,2874,'staticobjects/canopicjars/medium_whole',0), -(2875,2875,'staticobjects/canopicjars/small_whole',0), -(2876,2876,'staticobjects/cobwebs/cobwebs',0), -(2877,2877,'staticobjects/coffins_and_sarcophagus/nektropos_coffin',0), -(2878,2878,'staticobjects/coffins_and_sarcophagus/nektropos_coffin_lid',0), -(2879,2879,'staticobjects/coffins_and_sarcophagus/plain_grey',0), -(2880,2880,'staticobjects/coffins_and_sarcophagus/shroud',0), -(2881,2881,'accessories/wearable_items/magus/robes/plain_quilted_patches/chest',0), -(2882,2882,'accessories/wearable_items/magus/robes/plain_quilted_patches/hood',0), -(2883,2883,'accessories/wearable_items/magus/robes/plain_quilted_patches/pants',0), -(2884,2884,'accessories/wearable_items/magus/robes/plain_quilted_patches/skirt',0), -(2885,2885,'accessories/wearable_items/tradesman/clothing/brawler/brawler_wrapped/chest',0), -(2886,2886,'staticobjects/halloween/tfs_present02_medium',1096), -(2887,2887,'accessories/wearable_items/tradesman/clothing/brawler/brawler_wrapped/pants',0), -(2888,2888,'accessories/wearable_items/tradesman/clothing/brawler/brawler_wrapped/shoulders',0), -(2889,2889,'staticobjects/halloween/th_skeletons_skell01',1096), -(2890,2890,'accessories/wieldable_items/weapons/rapier/cutlass/cutlass001_plain',0), -(2891,2891,'accessories/wieldable_items/weapons/rapier/cutlass/cutlass001_rusty',0), -(2892,2892,'accessories/wieldable_items/weapons/rapier/epee/epee001_ornate',0), -(2893,2893,'accessories/wieldable_items/weapons/rapier/epee/epee001_plain',0), -(2894,2894,'accessories/wieldable_items/weapons/rapier/epee/epee001_rusty',0), -(2895,2895,'creatures/monsters/gargoyle_graveyard',0), -(2896,2896,'creatures/pets/factor_order',0), -(2897,2897,'creatures/pets/form_order',0), -(2898,2898,'creatures/pets/fragment_order',0), -(2899,2899,'creatures/tu/golem_lava',0), -(2900,2900,'ec/npc/goblin_lava',0), -(2901,2901,'ec/npc/skeleton_darkbone',0), -(2902,2902,'staticobjects/chests/orc_chest_locked',0), -(2903,2903,'staticobjects/pillars/large_pillar',0), -(2904,2904,'staticobjects/pillars/small_pillar',0), -(2905,2905,'staticobjects/racks/gnoll_weapon_rack01',0), -(2906,2906,'staticobjects/trapdoor/trapdoor_frame',0), -(2907,2907,'staticobjects/trapdoor/trapdoor_lid',0), -(2908,2908,'accessories/wieldable_items/weapons/rapier/foil/foil001_plain',0), -(2909,2909,'accessories/wieldable_items/weapons/rapier/foil/foil001_rusty',0), -(2910,2910,'accessories/wieldable_items/weapons/rapier/karabela/karabela001_plain',0), -(2911,2911,'accessories/wieldable_items/weapons/rapier/karabela/karabela001_rusty',0), -(2912,2912,'creatures/monsters/lioness_ghost',0), -(2913,2913,'creatures/monsters/lion_ghost',0), -(2914,2914,'creatures/monsters/mimic_ghost',0), -(2915,2915,'creatures/monsters/thoughtbleeder_ghost',0), -(2916,2916,'staticobjects/gravestones/gravedirt01',0), -(2917,2917,'staticobjects/gravestones/gravedirt02',0), -(2918,2918,'staticobjects/gravestones/gravestone03',0), -(2919,2919,'staticobjects/gravestones/gravestone04',0), -(2920,2920,'staticobjects/gravestones/gravestone05',0), -(2921,2921,'staticobjects/gravestones/gravestone06',0), -(2922,2922,'staticobjects/gravestones/gravestone07',0), -(2923,2923,'staticobjects/gravestones/gravestone08',0), -(2924,2924,'staticobjects/gravestones/gravestone09',0), -(2925,2925,'staticobjects/gravestones/gravestone10',0), -(2926,2926,'accessories/wearable_items/tradesman/clothing/brawler/brawler_wrapped/feet',0), -(2927,2927,'accessories/wieldable_items/weapons/rapier/rapier/rapier001_plain',0), -(2928,2928,'accessories/wieldable_items/weapons/rapier/rapier/rapier001_runic',0), -(2929,2929,'accessories/wieldable_items/weapons/rapier/rapier/rapier001_rusty',0), -(2930,2930,'creatures/monsters/spider_cave_ghost',0), -(2931,2931,'accessories/wieldable_items/weapons/talisman/censer/censer001_ornate',0), -(2932,2932,'staticobjects/halloween/vel_rock_ettin_skull01',1096), -(2933,2933,'ec/npc/skeleton_ghost',0), -(2934,2934,'ec/npc/skeleton_icebone',0), -(2935,2935,'ec/npc/skeleton_meaty',0), -(2936,2936,'ec/npc/skeleton_stone_servant',0), -(2937,2937,'ec/npc/skeleton_terminator',0), -(2938,2938,'staticobjects/alter/floor_alter_any_crucifixion01',0), -(2939,2939,'staticobjects/barrels/floor_barrel_human_ornate01',0), -(2940,2940,'staticobjects/barrels/floor_barrel_human_ornate02',0), -(2941,2941,'staticobjects/barrels/floor_barrel_human_plain01',0), -(2942,2942,'staticobjects/barrels/floor_barrel_human_plain02',0), -(2943,2943,'staticobjects/barrels/floor_barrel_human_weathered01',0), -(2944,2944,'staticobjects/barrels/floor_barrel_human_weathered02',0), -(2945,2945,'staticobjects/barrels/floor_barrel_human_wood01',0), -(2946,2946,'staticobjects/barrels/floor_barrel_human_wood02',0), -(2947,2947,'staticobjects/barrels/floor_barrel_human_wood03',0), -(2948,2948,'staticobjects/beds/floor_bedframe_elf_broken01',0), -(2949,2949,'staticobjects/beds/floor_bedframe_elf_broken02',0), -(2950,2950,'staticobjects/beds/floor_bedframe_human_wood01',0), -(2951,2951,'staticobjects/beds/floor_bed_elf_dirty01',0), -(2952,2952,'staticobjects/beds/floor_bed_human_jail01',0), -(2953,2953,'staticobjects/beds/floor_bed_human_warped01',0), -(2954,2954,'staticobjects/beds/floor_bed_human_warped02',0), -(2955,2955,'staticobjects/beds/floor_bed_human_warped03',0), -(2956,2956,'staticobjects/beds/floor_bed_human_warped04',0), -(2957,2957,'staticobjects/beds/floor_bed_human_warped05',0), -(2958,2958,'staticobjects/beds/floor_bed_human_warped06',0), -(2959,2959,'staticobjects/beds/floor_bed_human_warped07',0), -(2960,2960,'staticobjects/beds/floor_bed_human_warped08',0), -(2961,2961,'staticobjects/beds/floor_bed_human_warped09',0), -(2962,2962,'staticobjects/beds/floor_bed_human_warped10',0), -(2963,2963,'staticobjects/beds/floor_bunkbed_human_step01',0), -(2964,2964,'staticobjects/beds/floor_doublebed_human_grand01',0), -(2965,2965,'staticobjects/beds/floor_doublebed_human_grand02',0), -(2966,2966,'staticobjects/beds/floor_doublebed_human_ornate01',0), -(2967,2967,'staticobjects/beds/floor_doublebed_human_plain01',0), -(2968,2968,'staticobjects/beds/floor_singlebed_human_ornate01',0), -(2969,2969,'staticobjects/beds/floor_singlebed_human_ornate02',0), -(2970,2970,'staticobjects/beds/floor_singlebed_human_ornate03',0), -(2971,2971,'staticobjects/beds/floor_singlebed_human_ornate04',0), -(2972,2972,'staticobjects/beds/floor_singlebed_human_ornate05',0), -(2973,2973,'staticobjects/beds/floor_singlebed_human_ornate06',0), -(2974,2974,'staticobjects/beds/floor_singlebed_human_ornate07',0), -(2975,2975,'staticobjects/beds/floor_singlebed_human_plain01',0), -(2976,2976,'staticobjects/beds/wall_bed_human_jail01',0), -(2977,2977,'staticobjects/bell/floor_bell_human_large01',0), -(2978,2978,'staticobjects/bell/floor_bell_human_large02',0), -(2979,2979,'staticobjects/benches/floor_bench_human_bench01',0), -(2980,2980,'staticobjects/benches/floor_bench_human_bench02',0), -(2981,2981,'staticobjects/benches/floor_bench_human_ornate03',0), -(2982,2982,'staticobjects/benches/floor_bench_human_stone01',0), -(2983,2983,'staticobjects/bixie/floor_den_bixie_ornate01',0), -(2984,2984,'staticobjects/blacksmith/floor_anvil_any_plain01',0), -(2985,2985,'staticobjects/bones/floor_bones_human_eroded01',0), -(2986,2986,'staticobjects/bones/floor_bones_human_eroded02',0), -(2987,2987,'staticobjects/bones/floor_bones_human_eroded03',0), -(2988,2988,'staticobjects/bones/floor_bones_human_eroded04',0), -(2989,2989,'staticobjects/bones/floor_bones_human_plain01',0), -(2990,2990,'staticobjects/bones/floor_bones_human_plain02',0), -(2991,2991,'staticobjects/bones/floor_bones_human_plain03',0), -(2992,2992,'staticobjects/bones/floor_bones_human_plain04',0), -(2993,2993,'staticobjects/bones/floor_bone_human_skull01',0), -(2994,2994,'staticobjects/bones/floor_bone_human_skull02',0), -(2995,2995,'staticobjects/bones/floor_bone_human_skull03',0), -(2996,2996,'staticobjects/bones/floor_bone_iksar_skull01',0), -(2997,2997,'staticobjects/bones/floor_bone_iksar_skull02',0), -(2998,2998,'staticobjects/bones/floor_bone_orc_skull01',0), -(2999,2999,'staticobjects/bones/floor_skull_human_bashed01',0), -(3000,3000,'staticobjects/bones/floor_skull_human_bashed02',0), -(3001,3001,'staticobjects/bones/floor_skull_human_row01',0), -(3002,3002,'staticobjects/bookcases/floor_bookcase_any_tall01',0), -(3003,3003,'staticobjects/bookcases/floor_bookcase_any_tall02',0), -(3004,3004,'staticobjects/bookcases/floor_bookcase_any_tall03',0), -(3005,3005,'staticobjects/bookcases/floor_bookcase_any_tall04',0), -(3006,3006,'staticobjects/bookcases/floor_bookcase_darkelf_broken01',0), -(3007,3007,'staticobjects/bookcases/floor_bookcase_human_ornate03',0), -(3008,3008,'staticobjects/bookcases/floor_bookcase_human_ornate04',0), -(3009,3009,'staticobjects/bookcases/floor_bookcase_human_ornate05',0), -(3010,3010,'staticobjects/bookcases/floor_bookcase_human_ornate06',0), -(3011,3011,'staticobjects/bookcases/floor_bookcase_human_ornate07',0), -(3012,3012,'staticobjects/bookcases/floor_bookcase_human_ornate08',0), -(3013,3013,'staticobjects/bookcases/floor_bookcase_human_plain02',0), -(3014,3014,'staticobjects/bookcases/floor_bookcase_human_plain03',0), -(3015,3015,'staticobjects/bookcases/floor_bookcase_human_plain04',0), -(3016,3016,'staticobjects/bookcases/floor_bookcase_human_plain05',0), -(3017,3017,'staticobjects/bookcases/floor_bookcase_human_preserves01',0), -(3018,3018,'staticobjects/bookcases/floor_bookcase_human_preserves02',0), -(3019,3019,'staticobjects/bookcases/floor_bookcase_human_refined01',0), -(3020,3020,'staticobjects/bookcases/floor_bookcase_human_stone02',0), -(3021,3021,'staticobjects/bookcases/floor_bookcase_human_stone03',0), -(3022,3022,'staticobjects/books/floor_books_human_row01',0), -(3023,3023,'staticobjects/books/floor_books_human_row02',0), -(3024,3024,'staticobjects/books/floor_books_human_row03',0), -(3025,3025,'staticobjects/books/floor_books_human_row04',0), -(3026,3026,'staticobjects/books/floor_books_human_stack01',0), -(3027,3027,'staticobjects/books/floor_books_human_stack02',0), -(3028,3028,'staticobjects/books/floor_books_human_stack03',0), -(3029,3029,'staticobjects/books/floor_books_human_stack04',0), -(3030,3030,'staticobjects/books/floor_book_human_open01',0), -(3031,3031,'staticobjects/books/floor_book_human_ornate01',0), -(3032,3032,'staticobjects/books/floor_book_human_ornate02',0), -(3033,3033,'staticobjects/books/floor_book_human_ornate03',0), -(3034,3034,'staticobjects/books/floor_book_human_plain01',0), -(3035,3035,'staticobjects/books/floor_book_human_plain02',0), -(3036,3036,'staticobjects/books/floor_book_human_plain03',0), -(3037,3037,'staticobjects/books/floor_book_human_plain04',0), -(3038,3038,'staticobjects/cages/ceiling_cage_any_steel01',0), -(3039,3039,'staticobjects/cages/floor_cage_any_stabbing01',0), -(3040,3040,'staticobjects/chairs/floor_chair_darkelf_broken01',0), -(3041,3041,'staticobjects/chairs/floor_chair_darkelf_broken02',0), -(3042,3042,'staticobjects/chairs/floor_chair_darkelf_broken03',0), -(3043,3043,'staticobjects/chairs/floor_chair_darkelf_broken04',0), -(3044,3044,'staticobjects/chairs/floor_chair_darkelf_broken05',0), -(3045,3045,'staticobjects/chairs/floor_chair_gnome_ornate01',0), -(3046,3046,'staticobjects/chairs/floor_chair_human_elite01',0), -(3047,3047,'staticobjects/chairs/floor_chair_human_elite02',0), -(3048,3048,'staticobjects/chairs/floor_chair_human_elite03',0), -(3049,3049,'staticobjects/chairs/floor_chair_human_elite04',0), -(3050,3050,'staticobjects/chairs/floor_chair_human_hood01',0), -(3051,3051,'staticobjects/chairs/floor_chair_human_mahogany01',0), -(3052,3052,'staticobjects/chairs/floor_chair_human_mahogany02',0), -(3053,3053,'staticobjects/chairs/floor_chair_human_mahogany03',0), -(3054,3054,'staticobjects/chairs/floor_chair_human_mahogany04',0), -(3055,3055,'staticobjects/chairs/floor_chair_human_mahogany05',0), -(3056,3056,'staticobjects/chairs/floor_chair_human_mahogany06',0), -(3057,3057,'staticobjects/chairs/floor_chair_human_militia01',0), -(3058,3058,'staticobjects/chairs/floor_chair_human_militia02',0), -(3059,3059,'staticobjects/chairs/floor_chair_human_missingleg01',0), -(3060,3060,'staticobjects/chairs/floor_chair_human_plain03',0), -(3061,3061,'staticobjects/chairs/floor_chair_human_twisted01',0), -(3062,3062,'staticobjects/chairs/floor_chair_human_wooden01',0), -(3063,3063,'staticobjects/chairs/floor_chair_human_wooden02',0), -(3064,3064,'staticobjects/chairs/floor_chair_human_wooden03',0), -(3065,3065,'staticobjects/chairs/floor_chair_woodelf_broken',0), -(3066,3066,'staticobjects/chairs/floor_chair_woodelf_broken01',0), -(3067,3067,'staticobjects/chairs/floor_couch_bixie_ornate01',0), -(3068,3068,'staticobjects/chairs/floor_couch_bixie_ornate02',0), -(3069,3069,'staticobjects/chairs/floor_stool_darkelf_broken01',0), -(3070,3070,'staticobjects/chairs/floor_stool_human_elite01',0), -(3071,3071,'staticobjects/chairs/floor_stool_human_leather01',0), -(3072,3072,'staticobjects/chairs/floor_stool_human_mahogany01',0), -(3073,3073,'staticobjects/chairs/floor_stool_human_simple01',0), -(3074,3074,'staticobjects/chests/floor_chest_human_apothecary01',0), -(3075,3075,'staticobjects/chests/floor_chest_human_apothecary02',0), -(3076,3076,'staticobjects/chests/floor_chest_human_hood01',0), -(3077,3077,'staticobjects/chests/floor_chest_human_hood02',0), -(3078,3078,'staticobjects/chests/floor_chest_human_hood03',0), -(3079,3079,'staticobjects/chests/floor_chest_human_hood04',0), -(3080,3080,'staticobjects/chests/floor_chest_human_militia01',0), -(3081,3081,'staticobjects/chests/floor_chest_human_militia02',0), -(3082,3082,'staticobjects/chests/floor_chest_human_ornate01',0), -(3083,3083,'staticobjects/chests/floor_chest_human_ornate02',0), -(3084,3084,'staticobjects/chests/floor_chest_human_plain01',0), -(3085,3085,'staticobjects/chests/floor_chest_human_plain02',0), -(3086,3086,'staticobjects/chests/floor_chest_human_plain03',0), -(3087,3087,'staticobjects/chests/floor_chest_human_wood02',0), -(3088,3088,'staticobjects/chests/floor_chest_human_wood03',0), -(3089,3089,'staticobjects/clothspinners/floor_loom_any_wooden01',0), -(3090,3090,'staticobjects/clothspinners/floor_spinningwheel_any_wood01',0), -(3091,3091,'staticobjects/coffins_and_sarcophagus/floor_ark_any_sacred01',0), -(3092,3092,'staticobjects/coffins_and_sarcophagus/floor_casket_any_cadaver01',0), -(3093,3093,'staticobjects/coffins_and_sarcophagus/floor_casket_any_ornate01',0), -(3094,3094,'staticobjects/containers/floor_basin_any_ornate01',0), -(3095,3095,'staticobjects/containers/floor_bottle_human_milk01',0), -(3096,3096,'staticobjects/containers/floor_bottle_human_pill01',0), -(3097,3097,'staticobjects/containers/floor_bottle_human_potion01',0), -(3098,3098,'staticobjects/containers/floor_bottle_human_potion02',0), -(3099,3099,'staticobjects/containers/floor_bottle_human_preservation01',0), -(3100,3100,'staticobjects/containers/floor_bottle_human_preservation02',0), -(3101,3101,'staticobjects/containers/floor_bottle_human_preservation03',0), -(3102,3102,'staticobjects/containers/floor_box_any_wood01',0), -(3103,3103,'staticobjects/containers/floor_bucket_any_winepress01',0), -(3104,3104,'staticobjects/containers/floor_bucket_barbarian_wood01',0), -(3105,3105,'staticobjects/containers/floor_bucket_human_ornate01',0), -(3106,3106,'staticobjects/containers/floor_bucket_human_ornate02',0), -(3107,3107,'staticobjects/containers/floor_bucket_human_plain01',0), -(3108,3108,'staticobjects/containers/floor_bucket_human_plain02',0), -(3109,3109,'staticobjects/containers/floor_bucket_human_plain03',0), -(3110,3110,'staticobjects/containers/floor_bucket_human_wood01',0), -(3111,3111,'staticobjects/containers/floor_flask_human_leather01',0), -(3112,3112,'staticobjects/containers/floor_flask_human_leather02',0), -(3113,3113,'staticobjects/containers/floor_jar_any_canopic01',0), -(3114,3114,'staticobjects/containers/floor_jar_any_canopic02',0), -(3115,3115,'staticobjects/containers/floor_jar_any_canopic03',0), -(3116,3116,'staticobjects/containers/floor_jar_halfling_ornate01',0), -(3117,3117,'staticobjects/containers/floor_jar_halfling_ornate02',0), -(3118,3118,'staticobjects/containers/floor_jar_halfling_plain01',0), -(3119,3119,'staticobjects/containers/floor_jar_halfling_plain02',0), -(3120,3120,'staticobjects/containers/floor_trough_human_wood01',0), -(3121,3121,'staticobjects/containers/floor_trough_human_wood02',0), -(3122,3122,'staticobjects/containers/floor_trough_human_wood03',0), -(3123,3123,'staticobjects/containers/floor_urn_any_cazic01',0), -(3124,3124,'staticobjects/containers/floor_urn_any_cazic02',0), -(3125,3125,'staticobjects/containers/wall_flask_human_leather01',0), -(3126,3126,'staticobjects/counters/floor_barcounter_human_ornate01',0), -(3127,3127,'staticobjects/counters/floor_cornercounter_human_plain01',0), -(3128,3128,'staticobjects/counters/floor_cornercounter_human_plain02',0), -(3129,3129,'staticobjects/counters/floor_cornercounter_human_stone01',0), -(3130,3130,'staticobjects/counters/floor_cornercounter_human_stone02',0), -(3131,3131,'staticobjects/counters/floor_counter_human_corner02',0), -(3132,3132,'staticobjects/counters/floor_counter_human_ornate01',0), -(3133,3133,'staticobjects/counters/floor_counter_human_ornate02',0), -(3134,3134,'staticobjects/counters/floor_counter_human_ornate03',0), -(3135,3135,'staticobjects/counters/floor_counter_human_plain01',0), -(3136,3136,'staticobjects/counters/floor_counter_human_plain02',0), -(3137,3137,'staticobjects/counters/floor_counter_human_stone01',0), -(3138,3138,'staticobjects/counters/floor_counter_human_stone02',0), -(3139,3139,'staticobjects/counters/floor_counter_human_wood01',0), -(3140,3140,'staticobjects/counters/floor_counter_human_wood02',0), -(3141,3141,'staticobjects/counters/floor_counter_human_wood03',0), -(3142,3142,'staticobjects/counters/floor_counter_human_wood04',0), -(3143,3143,'staticobjects/counters/floor_counter_human_wood05',0), -(3144,3144,'staticobjects/counters/floor_roundcounter_human_plain01',0), -(3145,3145,'staticobjects/counters/floor_roundcounter_human_stone01',0), -(3146,3146,'staticobjects/crates/floor_crate_human_boarded01',0), -(3147,3147,'staticobjects/crates/floor_crate_human_boarded02',0), -(3148,3148,'staticobjects/crates/floor_crate_human_boarded03',0), -(3149,3149,'staticobjects/crates/floor_crate_human_boarded04',0), -(3150,3150,'staticobjects/crates/floor_crate_human_boarded05',0), -(3151,3151,'staticobjects/crates/floor_crate_human_hood01',0), -(3152,3152,'staticobjects/crates/floor_crate_human_hood02',0), -(3153,3153,'staticobjects/crates/floor_crate_human_hood03',0), -(3154,3154,'staticobjects/crates/floor_crate_human_hood04',0), -(3155,3155,'staticobjects/crates/floor_crate_human_plain01',0), -(3156,3156,'staticobjects/crates/floor_crate_human_plain02',0), -(3157,3157,'staticobjects/crates/floor_crate_human_plain03',0), -(3158,3158,'staticobjects/crystals/floor_crystal_any_gem01',0), -(3159,3159,'staticobjects/crystals/floor_crystal_any_gem02',0), -(3160,3160,'staticobjects/crystals/floor_crystal_any_gem03',0), -(3161,3161,'staticobjects/crystals/floor_crystal_any_gem04',0), -(3162,3162,'staticobjects/crystals/floor_crystal_any_gem05',0), -(3163,3163,'staticobjects/crystals/floor_crystal_any_gem06',0), -(3164,3164,'staticobjects/dressers/floor_cabinet_bixie_ornate01',0), -(3165,3165,'staticobjects/dressers/floor_dresser_human_elite01',0), -(3166,3166,'staticobjects/dressers/floor_dresser_human_warped01',0), -(3167,3167,'staticobjects/dressers/floor_dresser_human_warped02',0), -(3168,3168,'staticobjects/dressers/floor_dresser_human_warped03',0), -(3169,3169,'staticobjects/dressers/floor_dresser_human_warped04',0), -(3170,3170,'staticobjects/dressers/floor_dresser_human_warped05',0), -(3171,3171,'staticobjects/dressers/floor_dresser_human_warped06',0), -(3172,3172,'staticobjects/games/floor_gamecards_human_spread01',0), -(3173,3173,'staticobjects/games/floor_gamecards_human_spread02',0), -(3174,3174,'staticobjects/games/floor_gamecards_human_spread03',0), -(3175,3175,'staticobjects/games/floor_gamecards_human_stack01',0), -(3176,3176,'staticobjects/games/floor_gamechips_human_stack01',0), -(3177,3177,'staticobjects/games/floor_gamechips_human_stack02',0), -(3178,3178,'staticobjects/gears/floor_gear_any_cogwheel01',0), -(3179,3179,'staticobjects/gears/gear_single',0), -(3180,3180,'staticobjects/general/floor_pedestal_any_ornate01',0), -(3181,3181,'staticobjects/kegs/floor_keg_halfing_factory01',0), -(3182,3182,'staticobjects/kegs/floor_keg_halfling_wood01',0), -(3183,3183,'staticobjects/kegs/floor_keg_human_basic01',0), -(3184,3184,'staticobjects/kegs/floor_keg_human_basic02',0), -(3185,3185,'staticobjects/kegs/floor_keg_human_ornate01',0), -(3186,3186,'staticobjects/kegs/floor_keg_human_ornate02',0), -(3187,3187,'staticobjects/kegs/floor_keg_human_plain01',0), -(3188,3188,'staticobjects/kegs/floor_keg_human_plain02',0), -(3189,3189,'staticobjects/kegs/floor_keg_human_wood01',0), -(3190,3190,'staticobjects/kegs/floor_keg_human_wood02',0), -(3191,3191,'staticobjects/kegs/floor_keg_ogre_wood01',0), -(3192,3192,'staticobjects/kegs/floor_keg_ogre_wood02',0), -(3193,3193,'staticobjects/lighting/ceiling_torch_any_flaming01',0), -(3194,3194,'staticobjects/lighting/floor_torch_any_flaming01',0), -(3195,3195,'staticobjects/lighting/floor_torch_any_flaming02',0), -(3196,3196,'staticobjects/lighting/floor_torch_any_horizontal01',0), -(3197,3197,'staticobjects/lighting/wall_torch_any_flaming01',0), -(3198,3198,'staticobjects/lighting/wall_torch_any_palm01',0), -(3199,3199,'staticobjects/maps/floor_globe_any_map01',0), -(3200,3200,'staticobjects/pictures/wall_portrait_human_girl01',0), -(3201,3201,'staticobjects/pictures/wall_portrait_human_girl02',0), -(3202,3202,'staticobjects/pictures/wall_portrait_human_girl03',0), -(3203,3203,'staticobjects/pictures/wall_portrait_human_girl04',0), -(3204,3204,'staticobjects/pictures/wall_portrait_human_girl05',0), -(3205,3205,'staticobjects/pictures/wall_portrait_human_girl06',0), -(3206,3206,'staticobjects/pictures/wall_portrait_human_girl07',0), -(3207,3207,'staticobjects/podium/floor_podium_any_chanting01',0), -(3208,3208,'staticobjects/racks/floor_rack_any_firewood01',0), -(3209,3209,'staticobjects/riser/floor_riser_human_wood01',0), -(3210,3210,'staticobjects/riser/floor_riser_human_wood02',0), -(3211,3211,'staticobjects/rugs/floor_rug_any_ornate01',0), -(3212,3212,'staticobjects/sacks/floor_sack_any_flour01',0), -(3213,3213,'staticobjects/scrolls/floor_scroll_any_cazic01',0), -(3214,3214,'staticobjects/scrolls/floor_scroll_any_cazic02',0), -(3215,3215,'staticobjects/scrolls/floor_scroll_any_cazic03',0), -(3216,3216,'staticobjects/scrolls/floor_scroll_any_cazic04',0), -(3217,3217,'staticobjects/scrolls/floor_scroll_any_plain01',0), -(3218,3218,'staticobjects/scrolls/floor_scroll_any_plain02',0), -(3219,3219,'staticobjects/scrolls/floor_scroll_any_plain03',0), -(3220,3220,'staticobjects/shop/floor_window_any_teller01',0), -(3221,3221,'staticobjects/statues/wall_statue_any_stoneface01',0), -(3222,3222,'staticobjects/tables/floor_chesstable_human_ornate01',0), -(3223,3223,'staticobjects/tables/floor_gametable_gnome_round01',0), -(3224,3224,'staticobjects/tables/floor_gametable_gnome_round02',0), -(3225,3225,'staticobjects/tables/floor_gametable_human_card01',0), -(3226,3226,'staticobjects/tables/floor_gametable_human_missingleg01',0), -(3227,3227,'staticobjects/tables/floor_gametable_human_missingleg02',0), -(3228,3228,'staticobjects/tables/floor_gametable_human_ornate01',0), -(3229,3229,'staticobjects/tables/floor_gametable_human_round01',0), -(3230,3230,'staticobjects/tables/floor_gametable_human_round02',0), -(3231,3231,'staticobjects/tools/floor_grindingwheel_any_wood01',0), -(3232,3232,'staticobjects/tools/floor_scale_any_table01',0), -(3233,3233,'staticobjects/tools/floor_tools_any_torture01',0), -(3234,3234,'staticobjects/tools/floor_tools_any_torture02',0), -(3235,3235,'staticobjects/tools/floor_tool_any_compass01',0), -(3236,3236,'staticobjects/tools/floor_tool_any_rollingpin01',0), -(3237,3237,'staticobjects/tools/wall_spoon_any_wooden01',0), -(3238,3238,'staticobjects/torture_chamber/wall_shackes_any_plain01',0), -(3239,3239,'staticobjects/weapons/floor_cannonball_any_ballistabolt01',0), -(3240,3240,'accessories/wieldable_items/weapons/great_sword/flamberge/flamberge001_plain',0), -(3241,3241,'accessories/wieldable_items/weapons/great_sword/flamberge/flamberge001_rusty',0), -(3242,3242,'accessories/wieldable_items/weapons/great_sword/tulwar/tulwar001_rusty',0), -(3243,3243,'accessories/wieldable_items/weapons/rapier/saber/saber001_plain',0), -(3244,3244,'accessories/wieldable_items/weapons/rapier/saber/saber001_rusty',0), -(3245,3245,'accessories/wieldable_items/weapons/sword/long_sword/long_sword001_rusty',0), -(3246,3246,'accessories/wieldable_items/weapons/sword/long_sword/long_sword002_plain',0), -(3247,3247,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol001_plain',0), -(3248,3248,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol001_rusty',0), -(3249,3249,'accessories/wieldable_items/weapons/talisman/tablet/tablet001_rusty',0), -(3250,3250,'accessories/wieldable_items/weapons/throwing_weapons/throwing_hammer/throwing_hammer001_plain',0), -(3251,3251,'accessories/wieldable_items/weapons/throwing_weapons/throwing_hammer/throwing_hammer001_rusty',0), -(3252,3252,'staticobjects/gnomish_devices/globe_device',0), -(3253,3253,'staticobjects/light_sources_player_housing_only/wall_sewer_torch_01',0), -(3254,3254,'accessories/wieldable_items/shields/buckler_shield/metal_buckler/metal_buckler001_runic',0), -(3255,3255,'accessories/wieldable_items/shields/buckler_shield/metal_buckler/metal_buckler001_rusty',0), -(3256,3256,'accessories/wieldable_items/shields/buckler_shield/streatched_leather_buckler/streatched_leather_buckler001_ornate',0), -(3257,3257,'accessories/wieldable_items/shields/buckler_shield/streatched_leather_buckler/streatched_leather_buckler001_rusty',0), -(3258,3258,'accessories/wieldable_items/shields/buckler_shield/wooden_buckler/wooden_buckler001_ornate',0), -(3259,3259,'accessories/wieldable_items/shields/buckler_shield/wooden_buckler/wooden_buckler001_rusty',0), -(3260,3260,'accessories/wieldable_items/shields/kite_shield/kite_shield_freeport001',0), -(3261,3261,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield001_plain',0), -(3262,3262,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield001_runic',0), -(3263,3263,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield001_rusty',0), -(3264,3264,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield001_plain',0), -(3265,3265,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield001_runic',0), -(3266,3266,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield001_rusty',0), -(3267,3267,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched001_ornate',0), -(3268,3268,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched001_runic',0), -(3269,3269,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched001_rusty',0), -(3270,3270,'accessories/wieldable_items/shields/round_shield/wooden_round/wooden_round_shield001_ornate',0), -(3271,3271,'accessories/wieldable_items/shields/round_shield/wooden_round/wooden_round_shield001_rusty',0), -(3272,3272,'accessories/wieldable_items/shields/tower_shield/metal_tower_shield/metal_tower_shield001_plain',0), -(3273,3273,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_plain',0), -(3274,3274,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_runic',0), -(3275,3275,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_rusty',0), -(3276,3276,'accessories/wieldable_items/weapons/great_sword/greatsword/greatsword001_plain',0), -(3277,3277,'accessories/wieldable_items/weapons/great_sword/greatsword/greatsword001_rusty',0), -(3278,3278,'accessories/wieldable_items/weapons/hammer/sceptre/sceptre001_plain',0), -(3279,3279,'accessories/wieldable_items/weapons/hammer/sceptre/sceptre001_runic',0), -(3280,3280,'accessories/wieldable_items/weapons/hammer/sceptre/sceptre002_ornate',0), -(3281,3281,'accessories/wieldable_items/weapons/hammer/sceptre/sceptre003_rusty',0), -(3282,3282,'accessories/wearable_items/tradesman/clothing/ornateshinygold/sleeves',0), -(3283,3283,'accessories/wearable_items/tradesman/clothing/plainbluelacey/sleeves',0), -(3284,3284,'accessories/wearable_items/tradesman/common/low/sleeves',0), -(3285,3285,'accessories/wearable_items/tradesman/common/medium/sleeves',0), -(3286,3286,'accessories/wieldable_items/weapons/dagger/dirk/dirk001_rusty',0), -(3287,3287,'accessories/wieldable_items/weapons/dagger/kris/kris001_plain',0), -(3288,3288,'accessories/wieldable_items/weapons/dagger/kris/kris001_rusty',0), -(3289,3289,'accessories/wieldable_items/weapons/dagger/sai/sai001_rusty',0), -(3290,3290,'accessories/wieldable_items/weapons/fist/cestus/spiked_cestus001_rusty',0), -(3291,3291,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club001_runic',0), -(3292,3292,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club002_rusty',0), -(3293,3293,'accessories/wieldable_items/weapons/talisman/idol/idol001_rusty',0), -(3294,3294,'ec/npc/fire_soldier',0), -(3295,3295,'ec/npc/illusionary_soldier',0), -(3296,3296,'accessories/wieldable_items/weapons/dagger/stiletto/stiletto001_plain',0), -(3297,3297,'accessories/wieldable_items/weapons/talisman/orb/orb001_plain',0), -(3298,3298,'accessories/wieldable_items/weapons/talisman/orb/orb001_rusty',0), -(3299,3299,'accessories/wieldable_items/weapons/talisman/wand/wand001_plain',0), -(3300,3300,'accessories/wieldable_items/weapons/talisman/wand/wand001_rusty',0), -(3301,3301,'staticobjects/artisan/floor_bowl_human_jewel01',0), -(3302,3302,'staticobjects/artisan/floor_crucible_human_artisan01',0), -(3303,3303,'staticobjects/artisan/floor_easel_human_painting01',0), -(3304,3304,'staticobjects/artisan/floor_pot_human_iron01',0), -(3305,3305,'staticobjects/artisan/floor_pot_human_iron02',0), -(3306,3306,'staticobjects/barrels/floor_barrel_human_broken01',0), -(3307,3307,'staticobjects/barrels/floor_barrel_human_broken02',0), -(3308,3308,'staticobjects/barrels/floor_barrel_human_broken03',0), -(3309,3309,'staticobjects/barrels/floor_barrel_human_broken04',0), -(3310,3310,'staticobjects/barrels/floor_barrel_human_broken05',0), -(3311,3311,'staticobjects/barrels/floor_barrel_human_broken06',0), -(3312,3312,'staticobjects/benches/floor_bench_human_broken01',0), -(3313,3313,'staticobjects/benches/floor_bench_human_broken02',0), -(3314,3314,'staticobjects/blacksmith/floor_anvil_human_blacksmith01',0), -(3315,3315,'staticobjects/blacksmith/floor_anvil_human_blacksmith02',0), -(3316,3316,'staticobjects/blacksmith/floor_anvil_human_large01',0), -(3317,3317,'staticobjects/blacksmith/floor_forge_human_blacksmith01',0), -(3318,3318,'staticobjects/blacksmith/floor_forge_human_blacksmith02',0), -(3319,3319,'staticobjects/blacksmith/floor_forge_human_blacksmith03',0), -(3320,3320,'staticobjects/blacksmith/floor_grindingwheel_any_wood02',0), -(3321,3321,'staticobjects/blacksmith/floor_tongs_human_iron01',0), -(3322,3322,'staticobjects/books/floor_book_human_artisan01',0), -(3323,3323,'staticobjects/books/floor_book_human_open02',0), -(3324,3324,'staticobjects/chairs/floor_chair_human_broken01',0), -(3325,3325,'staticobjects/chairs/floor_chair_human_broken02',0), -(3326,3326,'staticobjects/chairs/floor_chair_human_broken03',0), -(3327,3327,'staticobjects/chairs/floor_chair_human_broken04',0), -(3328,3328,'staticobjects/chairs/floor_chair_human_broken05',0), -(3329,3329,'staticobjects/chairs/floor_chair_human_broken06',0), -(3330,3330,'staticobjects/coffins_and_sarcophagus/floor_sacophagus_human_nektropos01',0), -(3331,3331,'staticobjects/coffins_and_sarcophagus/floor_sacophagus_human_nektropos02',0), -(3332,3332,'staticobjects/coffins_and_sarcophagus/floor_sacophagus_human_nektropos03',0), -(3333,3333,'staticobjects/coffins_and_sarcophagus/floor_sacophagus_human_nektropos04',0), -(3334,3334,'staticobjects/coffins_and_sarcophagus/floor_sacophagus_human_nektropos05',0), -(3335,3335,'staticobjects/containers/floor_bucket_human_iron01',0), -(3336,3336,'staticobjects/containers/floor_bucket_human_iron02',0), -(3337,3337,'staticobjects/containers/floor_trough_human_stable01',0), -(3338,3338,'staticobjects/containers/floor_trough_human_stable02',0), -(3339,3339,'staticobjects/containers/floor_trough_human_wood04',0), -(3340,3340,'staticobjects/containers/floor_vase_elf_broken01',0), -(3341,3341,'staticobjects/containers/floor_vase_elf_broken02',0), -(3342,3342,'staticobjects/containers/floor_vase_elf_broken03',0), -(3343,3343,'staticobjects/containers/floor_vase_elf_broken04',0), -(3344,3344,'staticobjects/fireplace_items/floor_firering_human_stone01',0), -(3345,3345,'staticobjects/fireplace_items/floor_rack_human_wood01',0), -(3346,3346,'staticobjects/fireplace_items/floor_wood_human_stack01',0), -(3347,3347,'staticobjects/fireplace_items/floor_wood_human_stack02',0), -(3348,3348,'staticobjects/fireplace_items/floor_wood_human_stack03',0), -(3349,3349,'staticobjects/fireplace_items/floor_wood_human_stack04',0), -(3350,3350,'staticobjects/fireplace_items/floor_wood_human_stack05',0), -(3351,3351,'staticobjects/gravestones/floor_gravestone_human_plain01',0), -(3352,3352,'staticobjects/kitchen/floor_bowl_human_iron01',0), -(3353,3353,'staticobjects/kitchen/floor_bowl_human_ornate01',0), -(3354,3354,'staticobjects/kitchen/floor_bowl_human_ornate02',0), -(3355,3355,'staticobjects/kitchen/floor_bowl_human_square01',0), -(3356,3356,'staticobjects/kitchen/floor_bowl_human_square02',0), -(3357,3357,'staticobjects/kitchen/floor_bowl_human_wood01',0), -(3358,3358,'staticobjects/kitchen/floor_breadholder_human_wood01',0), -(3359,3359,'staticobjects/kitchen/floor_bread_human_french01',0), -(3360,3360,'staticobjects/kitchen/floor_bread_human_loaf01',0), -(3361,3361,'staticobjects/kitchen/floor_chalice_human_plain01',0), -(3362,3362,'staticobjects/kitchen/floor_fork_human_wood01',0), -(3363,3363,'staticobjects/kitchen/floor_fork_human_wood02',0), -(3364,3364,'staticobjects/kitchen/floor_kitchenpan_human_bake01',0), -(3365,3365,'staticobjects/kitchen/floor_kitchenpan_human_bread01',0), -(3366,3366,'staticobjects/kitchen/floor_kitchenpan_human_bread02',0), -(3367,3367,'staticobjects/kitchen/floor_kitchenpan_human_muffin01',0), -(3368,3368,'staticobjects/kitchen/floor_knife_human_butcher01',0), -(3369,3369,'staticobjects/kitchen/floor_knife_human_butcher02',0), -(3370,3370,'staticobjects/kitchen/floor_knife_human_butcher03',0), -(3371,3371,'staticobjects/kitchen/floor_knife_human_butcher04',0), -(3372,3372,'staticobjects/kitchen/floor_knife_human_kitchen01',0), -(3373,3373,'staticobjects/kitchen/floor_knife_human_kitchen02',0), -(3374,3374,'staticobjects/kitchen/floor_knife_human_kitchen03',0), -(3375,3375,'staticobjects/kitchen/floor_muffin_human_single01',0), -(3376,3376,'staticobjects/kitchen/floor_muffin_human_stack01',0), -(3377,3377,'staticobjects/kitchen/floor_mug_human_ornate01',0), -(3378,3378,'staticobjects/kitchen/floor_mug_human_ornate02',0), -(3379,3379,'staticobjects/kitchen/floor_mug_human_ornate03',0), -(3380,3380,'staticobjects/kitchen/floor_mug_human_ornate04',0), -(3381,3381,'staticobjects/kitchen/floor_mug_human_ornate05',0), -(3382,3382,'staticobjects/kitchen/floor_mug_human_plain01',0), -(3383,3383,'staticobjects/kitchen/floor_mug_human_plain02',0), -(3384,3384,'staticobjects/kitchen/floor_pan_human_bake01',0), -(3385,3385,'staticobjects/kitchen/floor_pan_human_bread01',0), -(3386,3386,'staticobjects/kitchen/floor_pan_human_bread02',0), -(3387,3387,'staticobjects/kitchen/floor_pan_human_muffin01',0), -(3388,3388,'staticobjects/kitchen/floor_pie_human_single01',0), -(3389,3389,'staticobjects/kitchen/floor_pitcher_human_ornate01',0), -(3390,3390,'staticobjects/kitchen/floor_pitcher_human_ornate02',0), -(3391,3391,'staticobjects/kitchen/floor_pitcher_human_plain01',0), -(3392,3392,'staticobjects/kitchen/floor_pitcher_human_plain02',0), -(3393,3393,'staticobjects/kitchen/floor_plate_human_muffin01',0), -(3394,3394,'staticobjects/kitchen/floor_pot_human_cooking01',0), -(3395,3395,'staticobjects/kitchen/floor_pot_human_cooking02',0), -(3396,3396,'staticobjects/kitchen/floor_pot_human_cooking03',0), -(3397,3397,'staticobjects/kitchen/floor_pot_human_cooking04',0), -(3398,3398,'staticobjects/kitchen/floor_pot_human_cooking05',0), -(3399,3399,'staticobjects/kitchen/floor_rollingpin_human_kitchen01',0), -(3400,3400,'staticobjects/kitchen/floor_rollingpin_human_kitchen02',0), -(3401,3401,'staticobjects/kitchen/floor_spatula_human_wooden01',0), -(3402,3402,'staticobjects/kitchen/floor_spoon_human_kitchen01',0), -(3403,3403,'staticobjects/kitchen/floor_spoon_human_kitchen02',0), -(3404,3404,'staticobjects/kitchen/floor_stove_human_kitchen01',0), -(3405,3405,'staticobjects/kitchen/floor_stove_human_kitchen02',0), -(3406,3406,'staticobjects/lab/floor_beaker_human_lab01',0), -(3407,3407,'staticobjects/lab/floor_beaker_human_lab02',0), -(3408,3408,'staticobjects/lab/floor_crucible_human_lab01',0), -(3409,3409,'staticobjects/lab/floor_crucible_human_lab02',0), -(3410,3410,'staticobjects/lab/floor_distillery_human_crucible01',0), -(3411,3411,'staticobjects/lab/floor_distillery_human_crucible02',0), -(3412,3412,'staticobjects/lab/floor_distillery_human_kitchen01',0), -(3413,3413,'staticobjects/lab/floor_distillery_human_lab01',0), -(3414,3414,'staticobjects/lab/floor_distillery_human_lab02',0), -(3415,3415,'staticobjects/lab/floor_distillery_human_lab03',0), -(3416,3416,'staticobjects/lab/floor_distillery_human_lab04',0), -(3417,3417,'staticobjects/lab/floor_egg_human_crystal01',0), -(3418,3418,'staticobjects/lab/floor_egg_human_crystal02',0), -(3419,3419,'staticobjects/lab/floor_egg_human_crystal03',0), -(3420,3420,'staticobjects/lab/floor_stand_human_egg01',0), -(3421,3421,'staticobjects/lab/floor_stand_human_egg02',0), -(3422,3422,'staticobjects/lab/floor_stand_human_egg03',0), -(3423,3423,'staticobjects/lab/floor_stand_human_egg04',0), -(3424,3424,'staticobjects/lab/floor_table_human_lab01',0), -(3425,3425,'staticobjects/lab/floor_table_human_lab02',0), -(3426,3426,'staticobjects/lab/floor_tool_human_compass01',0), -(3427,3427,'staticobjects/lighting/ceiling_chandelier_human_iron01',0), -(3428,3428,'staticobjects/lighting/ceiling_chandelier_human_militia01',0), -(3429,3429,'staticobjects/lighting/ceiling_chandelier_human_ornate01',0), -(3430,3430,'staticobjects/lighting/ceiling_chandelier_human_ornate02',0), -(3431,3431,'staticobjects/lighting/ceiling_chandelier_human_plain01',0), -(3432,3432,'staticobjects/lighting/ceiling_chandelier_human_plain02',0), -(3433,3433,'staticobjects/lighting/ceiling_chandelier_human_plain03',0), -(3434,3434,'staticobjects/lighting/ceiling_lamp_human_ornate01',0), -(3435,3435,'staticobjects/lighting/ceiling_lamp_human_ornate02',0), -(3436,3436,'staticobjects/lighting/ceiling_lamp_human_plain01',0), -(3437,3437,'staticobjects/lighting/ceiling_lamp_human_plain02',0), -(3438,3438,'staticobjects/lighting/ceiling_lantern_human_hanging01',0), -(3439,3439,'staticobjects/lighting/floor_candelabra_human_ornate01',0), -(3440,3440,'staticobjects/lighting/floor_candelabra_human_plain01',0), -(3441,3441,'staticobjects/lighting/floor_candleholder_human_ornate01',0), -(3442,3442,'staticobjects/lighting/floor_candleholder_human_ornate02',0), -(3443,3443,'staticobjects/lighting/floor_candleholder_human_ornate03',0), -(3444,3444,'staticobjects/lighting/floor_candleholder_human_ornate04',0), -(3445,3445,'staticobjects/lighting/floor_candleholder_human_ornate05',0), -(3446,3446,'staticobjects/lighting/floor_candleholder_human_plain01',0), -(3447,3447,'staticobjects/lighting/floor_candleholder_human_plain02',0), -(3448,3448,'staticobjects/lighting/floor_candleholder_human_plain03',0), -(3449,3449,'staticobjects/lighting/floor_candles_human_group01',0), -(3450,3450,'staticobjects/lighting/floor_candle_human_single01',0), -(3451,3451,'staticobjects/lighting/floor_candle_human_single02',0), -(3452,3452,'staticobjects/lighting/floor_candle_human_single03',0), -(3453,3453,'staticobjects/lighting/floor_floorbrazier_human_mililtia01',0), -(3454,3454,'staticobjects/lighting/floor_floorbrazier_human_plain01',0), -(3455,3455,'staticobjects/lighting/floor_floorbrazier_human_plain02',0), -(3456,3456,'staticobjects/lighting/floor_floorbrazier_human_stone01',0), -(3457,3457,'staticobjects/lighting/floor_floorlamp_human_plain01',0), -(3458,3458,'staticobjects/lighting/floor_lamppost_darkelf_globe01',0), -(3459,3459,'staticobjects/lighting/floor_lamppost_darkelf_globe02',0), -(3460,3460,'staticobjects/lighting/floor_lamppost_darkelf_globe03',0), -(3461,3461,'staticobjects/lighting/floor_lamppost_darkelf_globe04',0), -(3462,3462,'staticobjects/lighting/floor_lamppost_darkelf_wingskull01',0), -(3463,3463,'staticobjects/lighting/floor_lamp_human_stoop01',0), -(3464,3464,'staticobjects/lighting/floor_lantern_human_standing01',0), -(3465,3465,'staticobjects/lighting/floor_pot_human_fire01',0), -(3466,3466,'staticobjects/lighting/floor_tablebrazier_human_broken01',0), -(3467,3467,'staticobjects/lighting/floor_tablebrazier_human_coal01',0), -(3468,3468,'staticobjects/lighting/wall_lamp_human_hanging01',0), -(3469,3469,'staticobjects/lighting/wall_sconce_human_iron01',0), -(3470,3470,'staticobjects/lighting/wall_sconce_human_militia01',0), -(3471,3471,'staticobjects/lighting/wall_sconce_human_ornate01',0), -(3472,3472,'staticobjects/lighting/wall_sconce_human_ornate02',0), -(3473,3473,'staticobjects/lighting/wall_sconce_human_ornate03',0), -(3474,3474,'staticobjects/lighting/wall_sconce_human_plain01',0), -(3475,3475,'staticobjects/lighting/wall_sconce_human_plain02',0), -(3476,3476,'staticobjects/lighting/wall_sconce_human_plain03',0), -(3477,3477,'staticobjects/monuments/floor_fountain_human_dragonhead01',0), -(3478,3478,'staticobjects/monuments/floor_fountain_human_griffin01',0), -(3479,3479,'staticobjects/monuments/floor_fountain_human_griffin02',0), -(3480,3480,'staticobjects/monuments/floor_fountain_human_griffin03',0), -(3481,3481,'staticobjects/monuments/floor_marker_human_eaglehead01',0), -(3482,3482,'staticobjects/monuments/floor_marker_human_generic01',0), -(3483,3483,'staticobjects/monuments/floor_marker_human_generic02',0), -(3484,3484,'staticobjects/monuments/floor_marker_human_generic03',0), -(3485,3485,'staticobjects/monuments/floor_marker_human_head01',0), -(3486,3486,'staticobjects/monuments/floor_marker_human_head02',0), -(3487,3487,'staticobjects/monuments/floor_marker_human_head03',0), -(3488,3488,'staticobjects/monuments/floor_marker_human_pail01',0), -(3489,3489,'staticobjects/monuments/floor_pool_human_recreational01',0), -(3490,3490,'staticobjects/musical/floor_chime_human_bone01',0), -(3491,3491,'staticobjects/musical/floor_drumhammers_human_plain01',0), -(3492,3492,'staticobjects/musical/floor_drumhammers_human_plain02',0), -(3493,3493,'staticobjects/musical/floor_drum_human_plain01',0), -(3494,3494,'staticobjects/musical/floor_mandolin_human_wood01',0), -(3495,3495,'staticobjects/musical/floor_xylophone_human_bone01',0), -(3496,3496,'staticobjects/papers/floor_paper_human_blank01',0), -(3497,3497,'staticobjects/papers/floor_paper_human_stack01',0), -(3498,3498,'staticobjects/papers/floor_paper_human_written01',0), -(3499,3499,'staticobjects/papers/floor_paper_human_written02',0), -(3500,3500,'staticobjects/pen_and_ink/floor_inkwell_human_ornate01',0), -(3501,3501,'staticobjects/pen_and_ink/floor_inkwell_human_ornate02',0), -(3502,3502,'staticobjects/pen_and_ink/floor_inkwell_human_plain01',0), -(3503,3503,'staticobjects/pen_and_ink/floor_inkwell_human_plain02',0), -(3504,3504,'staticobjects/pen_and_ink/floor_pen_human_bone01',0), -(3505,3505,'staticobjects/pictures/wall_painting_human_girl01',0), -(3506,3506,'staticobjects/pictures/wall_painting_human_girl02',0), -(3507,3507,'staticobjects/pictures/wall_painting_human_girl03',0), -(3508,3508,'staticobjects/pictures/wall_painting_human_girl04',0), -(3509,3509,'staticobjects/pictures/wall_painting_human_girl05',0), -(3510,3510,'staticobjects/pictures/wall_painting_human_girl06',0), -(3511,3511,'staticobjects/pictures/wall_painting_human_girl07',0), -(3512,3512,'staticobjects/rugs/floor_carpet_human_ornate01',0), -(3513,3513,'staticobjects/rugs/floor_carpet_human_ornate02',0), -(3514,3514,'staticobjects/rugs/floor_carpet_human_ornate03',0), -(3515,3515,'staticobjects/rugs/floor_rug_human_fancy01',0), -(3516,3516,'staticobjects/rugs/floor_rug_human_fancy02',0), -(3517,3517,'staticobjects/rugs/floor_rug_human_fancy03',0), -(3518,3518,'staticobjects/rugs/floor_rug_human_fancy04',0), -(3519,3519,'staticobjects/rugs/floor_rug_human_fancy05',0), -(3520,3520,'staticobjects/rugs/floor_rug_human_fancy06',0), -(3521,3521,'staticobjects/rugs/floor_rug_human_fancy07',0), -(3522,3522,'staticobjects/rugs/floor_rug_human_fancy08',0), -(3523,3523,'staticobjects/rugs/floor_rug_human_fancy09',0), -(3524,3524,'staticobjects/rugs/floor_rug_human_fancy10',0), -(3525,3525,'staticobjects/rugs/floor_rug_human_fancy11',0), -(3526,3526,'staticobjects/rugs/floor_rug_human_fancy12',0), -(3527,3527,'staticobjects/rugs/floor_rug_human_fancy13',0), -(3528,3528,'staticobjects/rugs/floor_rug_human_ornate01',0), -(3529,3529,'staticobjects/rugs/floor_rug_human_ornate02',0), -(3530,3530,'staticobjects/rugs/floor_rug_human_ornate03',0), -(3531,3531,'staticobjects/sacks/floor_sack_human_flour01',0), -(3532,3532,'staticobjects/sacks/floor_sack_human_flour02',0), -(3533,3533,'staticobjects/sacks/floor_sack_human_flour03',0), -(3534,3534,'staticobjects/sacks/floor_sack_human_flour04',0), -(3535,3535,'staticobjects/sacks/floor_sack_human_grain01',0), -(3536,3536,'staticobjects/sacks/floor_sack_human_grain02',0), -(3537,3537,'staticobjects/sacks/floor_sack_human_grain03',0), -(3538,3538,'staticobjects/sacks/floor_sack_human_grain04',0), -(3539,3539,'staticobjects/sacks/floor_sack_human_large01',0), -(3540,3540,'staticobjects/sacks/floor_sack_human_large02',0), -(3541,3541,'staticobjects/sacks/floor_sack_human_large03',0), -(3542,3542,'staticobjects/sacks/floor_sack_human_large04',0), -(3543,3543,'staticobjects/sacks/floor_sack_human_large05',0), -(3544,3544,'staticobjects/sacks/floor_sack_human_large06',0), -(3545,3545,'staticobjects/sacks/floor_sack_human_small01',0), -(3546,3546,'staticobjects/sacks/floor_sack_human_small02',0), -(3547,3547,'staticobjects/sacks/floor_sack_human_small03',0), -(3548,3548,'staticobjects/scrolls/floor_scrollpaper_human_stack01',0), -(3549,3549,'staticobjects/scrolls/floor_scroll_human_ornate01',0), -(3550,3550,'staticobjects/scrolls/floor_scroll_human_ornate02',0), -(3551,3551,'staticobjects/scrolls/floor_scroll_human_ornate03',0), -(3552,3552,'staticobjects/scrolls/floor_scroll_human_paper01',0), -(3553,3553,'staticobjects/scrolls/floor_scroll_human_stack01',0), -(3554,3554,'staticobjects/shelves/wall_shelf_human_double04',0), -(3555,3555,'staticobjects/shelves/wall_shelf_human_double05',0), -(3556,3556,'staticobjects/shelves/wall_shelf_human_hooks01',0), -(3557,3557,'staticobjects/shelves/wall_shelf_human_ironwood01',0), -(3558,3558,'staticobjects/shelves/wall_shelf_human_ironwood02',0), -(3559,3559,'staticobjects/shelves/wall_shelf_human_militia01',0), -(3560,3560,'staticobjects/shelves/wall_shelf_human_multideck01',0), -(3561,3561,'staticobjects/shelves/wall_shelf_human_multideck02',0), -(3562,3562,'staticobjects/shelves/wall_shelf_human_ornate02',0), -(3563,3563,'staticobjects/shelves/wall_shelf_human_ornate03',0), -(3564,3564,'staticobjects/shelves/wall_shelf_human_pegs01',0), -(3565,3565,'staticobjects/shelves/wall_shelf_human_plain01',0), -(3566,3566,'staticobjects/shelves/wall_shelf_human_plain02',0), -(3567,3567,'staticobjects/shop/floor_cabinet_human_display01',0), -(3568,3568,'staticobjects/shop/floor_cabinet_human_display02',0), -(3569,3569,'staticobjects/stable_items/ceiling_hook_human_hanging01',0), -(3570,3570,'staticobjects/stable_items/floor_cultivator_human_stable01',0), -(3571,3571,'staticobjects/stable_items/floor_cultivator_human_stable02',0), -(3572,3572,'staticobjects/stable_items/floor_haybail_human_stable01',0), -(3573,3573,'staticobjects/stable_items/floor_haybail_human_stack01',0), -(3574,3574,'staticobjects/stable_items/floor_rope_human_stable01',0), -(3575,3575,'staticobjects/stable_items/wall_hook_human_iron01',0), -(3576,3576,'staticobjects/stable_items/wall_horseshoe_human_stable01',0), -(3577,3577,'staticobjects/stable_items/wall_rein_human_stable01',0), -(3578,3578,'staticobjects/stable_items/wall_rein_human_stable02',0), -(3579,3579,'staticobjects/stable_items/wall_rope_human_stable01',0), -(3580,3580,'staticobjects/stable_items/wall_rope_human_stable02',0), -(3581,3581,'staticobjects/statues/death',0), -(3582,3582,'staticobjects/statues/valkyrie',0), -(3583,3583,'staticobjects/tables/floor_brokentable_darkelf_hood01',0), -(3584,3584,'staticobjects/tables/floor_brokentable_elf_hood01',0), -(3585,3585,'staticobjects/tables/floor_desk_gnome_wood01',0), -(3586,3586,'staticobjects/tables/floor_endtable_human_mahogany01',0), -(3587,3587,'staticobjects/tables/floor_endtable_human_wood01',0), -(3588,3588,'staticobjects/tables/floor_table_darkelf_broken01',0), -(3589,3589,'staticobjects/tables/floor_table_darkelf_broken02',0), -(3590,3590,'staticobjects/tables/floor_table_darkelf_broken03',0), -(3591,3591,'staticobjects/tables/floor_table_darkelf_broken04',0), -(3592,3592,'staticobjects/tables/floor_table_elf_broken01',0), -(3593,3593,'staticobjects/tables/floor_table_elf_broken02',0), -(3594,3594,'staticobjects/tables/floor_table_elf_broken03',0), -(3595,3595,'staticobjects/tables/floor_table_elf_broken04',0), -(3596,3596,'staticobjects/tables/floor_table_gnome_ornate01',0), -(3597,3597,'staticobjects/tables/floor_table_human_bedside03',0), -(3598,3598,'staticobjects/tables/floor_table_human_desk03',0), -(3599,3599,'staticobjects/tables/floor_table_human_dining01',0), -(3600,3600,'staticobjects/tables/floor_table_human_fancy01',0), -(3601,3601,'staticobjects/tables/floor_table_human_fancy02',0), -(3602,3602,'staticobjects/tables/floor_table_human_militia01',0), -(3603,3603,'staticobjects/tables/floor_table_human_militia02',0), -(3604,3604,'staticobjects/tables/floor_table_human_ornate05',0), -(3605,3605,'staticobjects/tables/floor_table_human_ornate06',0), -(3606,3606,'staticobjects/tables/floor_table_human_ornate07',0), -(3607,3607,'staticobjects/tables/floor_table_human_plain05',0), -(3608,3608,'staticobjects/tables/floor_table_human_plain06',0), -(3609,3609,'staticobjects/tables/floor_table_human_plank01',0), -(3610,3610,'staticobjects/tables/floor_table_human_plank02',0), -(3611,3611,'staticobjects/tables/floor_table_human_riser01',0), -(3612,3612,'staticobjects/tables/floor_table_human_twisted01',0), -(3613,3613,'staticobjects/tables/floor_table_human_twisted02',0), -(3614,3614,'staticobjects/tables/floor_table_human_wood01',0), -(3615,3615,'staticobjects/tables/floor_table_human_wood02',0), -(3616,3616,'staticobjects/tables/floor_table_human_wood03',0), -(3617,3617,'staticobjects/tables/floor_table_human_wood04',0), -(3618,3618,'staticobjects/tables/floor_table_human_wood05',0), -(3619,3619,'staticobjects/tables/floor_table_human_workbench01',0), -(3620,3620,'staticobjects/tableware/floor_fork_human_dining01',0), -(3621,3621,'staticobjects/tableware/floor_knife_human_dining01',0), -(3622,3622,'staticobjects/tableware/floor_mug_human_wood01',0), -(3623,3623,'staticobjects/tableware/floor_pitcher_human_wood01',0), -(3624,3624,'staticobjects/tableware/floor_spoon_human_dining01',0), -(3625,3625,'staticobjects/tools/floor_hammer_human_blacksmith01',0), -(3626,3626,'staticobjects/tools/floor_hammer_human_crafting01',0), -(3627,3627,'staticobjects/tools/floor_handsaw_human_crafting01',0), -(3628,3628,'staticobjects/tools/floor_iron_human_plain01',0), -(3629,3629,'staticobjects/tools/floor_potterywheel_human_crafting01',0), -(3630,3630,'staticobjects/tools/floor_scale_human_table01',0), -(3631,3631,'accessories/wieldable_items/weapons/talisman/doll/doll001_plain',0), -(3632,3632,'accessories/wieldable_items/weapons/talisman/doll/doll001_rusty',0), -(3633,3633,'accessories/wieldable_items/weapons/talisman/book/book001_plain',0), -(3634,3634,'accessories/wieldable_items/weapons/talisman/stringed_instrument/string_instrument001_plain',0), -(3635,3635,'accessories/wieldable_items/weapons/talisman/stringed_instrument/string_instrument001_rusty',0), -(3636,3636,'ec/npc/mistman',0), -(3637,3637,'accessories/wearable_items/tradesman/clothing/plain_green_vest/chest',0), -(3638,3638,'accessories/wearable_items/tradesman/clothing/plain_green_vest/legs',0), -(3639,3639,'accessories/wearable_items/tradesman/clothing/plain_green_vest/arms',0), -(3640,3640,'accessories/wieldable_items/weapons/dagger/wizards_dagger/wizards_dagger001_runic',0), -(3641,3641,'accessories/wieldable_items/weapons/dagger/wizards_dagger/wizards_dagger002_plain',0), -(3642,3642,'accessories/wieldable_items/weapons/dagger/wizards_dagger/wizards_dagger002_rusty',0), -(3643,3643,'accessories/wieldable_items/weapons/talisman/drum/drum001_plain',0), -(3644,3644,'accessories/wieldable_items/weapons/talisman/drum/drum001_rusty',0), -(3645,3645,'creatures/tu/fire_soldier_tu',0), -(3646,3646,'creatures/tu/illusionary_soldier_tu',0), -(3647,3647,'creatures/tu/mistman_tu',0), -(3648,3648,'staticobjects/halloween/vel_rock_feedstone_skull',1096), -(3649,3649,'accessories/wieldable_items/weapons/throwing_weapons/boomerang/boomerang001_plain',0), -(3650,3650,'accessories/wieldable_items/weapons/throwing_weapons/boomerang/boomerang001_rusty',0), -(3651,3651,'accessories/wieldable_items/weapons/throwing_weapons/spike/spike001_plain',0), -(3652,3652,'accessories/wieldable_items/weapons/throwing_weapons/spike/spike001_rusty',0), -(3653,3653,'creatures/monsters/vox_ice',0), -(3654,3654,'ec/npc/skeleton_greenfire',0), -(3655,3655,'staticobjects/scrolls/wantedposter',0), -(3656,3656,'accessories/wieldable_items/weapons/staff/bo_staff/bo_staff001_rusty',0), -(3657,3657,'accessories/wieldable_items/weapons/staff/fighting_batons/fighting_batons001_plain',0), -(3658,3658,'accessories/wieldable_items/weapons/staff/fighting_batons/fighting_batons001_rusty',0), -(3659,3659,'accessories/wieldable_items/weapons/staff/great_staff/great_staff002_rusty',0), -(3660,3660,'accessories/wieldable_items/weapons/staff/scorcerers_staff/scorcerers_staff001_plain',0), -(3661,3661,'accessories/wieldable_items/weapons/staff/scorcerers_staff/scorcerers_staff002_rusty',0), -(3662,3662,'accessories/wieldable_items/weapons/throwing_weapons/dart/dart001_plain',0), -(3663,3663,'accessories/wieldable_items/weapons/throwing_weapons/dart/dart001_rusty',0), -(3664,3664,'accessories/wearable_items/tradesman/clothing/smith/common_good/chest',0), -(3665,3665,'accessories/wearable_items/tradesman/clothing/smith/common_good/feet',0), -(3666,3666,'accessories/wearable_items/tradesman/clothing/smith/common_good/hands',0), -(3667,3667,'accessories/wearable_items/tradesman/clothing/smith/common_good/legs',0), -(3668,3668,'accessories/wearable_items/tradesman/clothing/smith/common_good/skirt',0), -(3669,3669,'accessories/wieldable_items/weapons/spear/javelin/javeling001_rusty',0), -(3670,3670,'accessories/wieldable_items/weapons/spear/ornate_spear/ornate_spear001_plain',0), -(3671,3671,'accessories/wieldable_items/weapons/spear/ornate_spear/ornate_spear001_rusty',0), -(3672,3672,'accessories/wieldable_items/weapons/spear/short_spear/short_spear001_rusty',0), -(3673,3673,'accessories/wieldable_items/weapons/spear/spear/spear001_rusty',0), -(3674,3674,'accessories/wieldable_items/weapons/spear/tribal_spear/tribal_spear001_rusty',0), -(3675,3675,'accessories/wieldable_items/weapons/staff/quarterstaff/quarterstaff002_rusty',0), -(3676,3676,'accessories/wieldable_items/weapons/sword/kukri_sword/kukri_sword001_plain',0), -(3677,3677,'accessories/wieldable_items/weapons/throwing_weapons/boomerang/boomerang001_ornate',0), -(3678,3678,'accessories/wieldable_items/weapons/throwing_weapons/boomerang/boomerang001_runic',0), -(3679,3679,'accessories/wieldable_items/weapons/throwing_weapons/glass_vial/glass_vial001_plain',0), -(3680,3680,'accessories/wieldable_items/weapons/throwing_weapons/glass_vial/glass_vial001_rusty',0), -(3681,3681,'accessories/wieldable_items/weapons/throwing_weapons/glass_vial/glass_vial002_ornate',0), -(3682,3682,'accessories/wieldable_items/weapons/throwing_weapons/glass_vial/glass_vial002_runic',0), -(3683,3683,'creatures/monsters/armadillo_ghost',0), -(3684,3684,'creatures/monsters/badger_ghost',0), -(3685,3685,'creatures/monsters/barracuda_ghost',0), -(3686,3686,'creatures/monsters/cow_ghost',0), -(3687,3687,'creatures/monsters/dervish_chaosform',0), -(3688,3688,'creatures/monsters/dervish_ghost',0), -(3689,3689,'creatures/monsters/frog_ghost',0), -(3690,3690,'creatures/monsters/gargoyle_ghost',0), -(3691,3691,'creatures/monsters/goo_chaosform',0), -(3692,3692,'creatures/monsters/goo_ghost',0), -(3693,3693,'creatures/monsters/goo_slime_chaosform',0), -(3694,3694,'creatures/monsters/ground_dragon_ghost',0), -(3695,3695,'creatures/monsters/hawk_ghost_red',0), -(3696,3696,'creatures/monsters/hyena_ghost',0), -(3697,3697,'creatures/monsters/iron_guardian_ghost',0), -(3698,3698,'creatures/monsters/mantaray_ghost',0), -(3699,3699,'creatures/monsters/manticore_ghost',0), -(3700,3700,'creatures/monsters/pihrana_ghost',0), -(3701,3701,'creatures/monsters/rat_ghost',0), -(3702,3702,'creatures/monsters/root_horror_ghost',0), -(3703,3703,'creatures/monsters/rustmonster_ghost',0), -(3704,3704,'creatures/monsters/slug_ghost',0), -(3705,3705,'creatures/monsters/snake_ghost',0), -(3706,3706,'creatures/monsters/tiger_white',0), -(3707,3707,'creatures/monsters/treeent_ghost',0), -(3708,3708,'staticobjects/halloween/wc_gravemarker04',1096), -(3709,3709,'creatures/monsters/wasp_ghost',0), -(3710,3710,'creatures/monsters/willowisp_cloudofsouls',0), -(3711,3711,'creatures/monsters/wolf_white',0), -(3712,3712,'creatures/monsters/wolf_winter',0), -(3713,3713,'creatures/mounts/carpet_ghost',0), -(3714,3714,'staticobjects/weapons/dpo_tablet001_ornate',1096), -(3715,3715,'staticobjects/weapons/dpo_tablet001_runic',1096), -(3716,3716,'creatures/pets/element_order',0), -(3717,3717,'creatures/pets/essence_chaos',0), -(3718,3718,'creatures/tu/bixie_figher_ghost',0), -(3719,3719,'creatures/tu/bixie_ghost',0), -(3720,3720,'creatures/tu/bixie_worker_ghost',0), -(3721,3721,'creatures/tu/dragonfly_faerie_ghost',0), -(3722,3722,'creatures/tu/earth_elem_ghost',0), -(3723,3723,'creatures/tu/gnoll_ghost',0), -(3724,3724,'creatures/tu/livingstatue_ghost',0), -(3725,3725,'creatures/tu/lizardman_ghost',0), -(3726,3726,'creatures/tu/lizardman_shaman_ghost',0), -(3727,3727,'creatures/tu/lizardman_warrior_ghost',0), -(3728,3728,'creatures/tu/shadow',0), -(3729,3729,'creatures/tu/succubus_ghost',0), -(3730,3730,'creatures/tu/tentacleterror_crystal_ghost',0), -(3731,3731,'creatures/tu/tentacleterror_ghost',0), -(3732,3732,'creatures/tu/troglodyte_ghost',0), -(3733,3733,'ec/npc/orcshaman_ghost',0), -(3734,3734,'ec/npc/orc_ghost',0), -(3735,3735,'ec/npc/skeleton_diseased',0), -(3736,3736,'ec/npc/zombie_diseased',0), -(3737,3737,'ec/npc/zombie_ghost',0), -(3738,3738,'staticobjects/doors/fprt_academy_doubledoor_01',0), -(3739,3739,'accessories/wieldable_items/weapons/throwing_weapons/dart/dart002_ornate',0), -(3740,3740,'accessories/wieldable_items/weapons/throwing_weapons/dart/dart002_runic',0), -(3741,3741,'accessories/wieldable_items/weapons/throwing_weapons/spike/spike003_ornate',0), -(3742,3742,'accessories/wearable_items/ghost/ghost_leather/chest',0), -(3743,3743,'accessories/wearable_items/ghost/ghost_leather/feet',0), -(3744,3744,'accessories/wearable_items/ghost/ghost_leather/forearms',0), -(3745,3745,'accessories/wearable_items/ghost/ghost_leather/hands',0), -(3746,3746,'accessories/wearable_items/ghost/ghost_leather/head',0), -(3747,3747,'accessories/wearable_items/ghost/ghost_leather/legs',0), -(3748,3748,'accessories/wearable_items/ghost/ghost_leather/shoulders',0), -(3749,3749,'accessories/wearable_items/ghost/ghost_leather/skirt',0), -(3750,3750,'accessories/wearable_items/ghost/ghost_vanguard/chest',0), -(3751,3751,'accessories/wearable_items/ghost/ghost_vanguard/feet',0), -(3752,3752,'accessories/wearable_items/ghost/ghost_vanguard/forearms',0), -(3753,3753,'accessories/wearable_items/ghost/ghost_vanguard/hands',0), -(3754,3754,'accessories/wearable_items/ghost/ghost_vanguard/head',0), -(3755,3755,'accessories/wearable_items/ghost/ghost_vanguard/left',0), -(3756,3756,'accessories/wearable_items/ghost/ghost_vanguard/legs',0), -(3757,3757,'accessories/wearable_items/ghost/ghost_vanguard/right',0), -(3758,3758,'accessories/wearable_items/ghost/ghost_vanguard/shoulders',0), -(3759,3759,'accessories/wearable_items/ghost/ghost_vanguard/skirt',0), -(3760,3760,'accessories/wearable_items/vanguard/common/high/upperchest',0), -(3761,3761,'accessories/wearable_items/vanguard/common/low/upperchest',0), -(3762,3762,'accessories/wearable_items/vanguard/common/medium/upperchest',0), -(3763,3763,'accessories/wearable_items/vanguard/rare/low/upperchest',0), -(3764,3764,'accessories/wearable_items/vanguard/rare/medium/upperchest',0), -(3765,3765,'accessories/wearable_items/vanguard/uncommon/high/upperchest',0), -(3766,3766,'accessories/wearable_items/vanguard/uncommon/low/upperchest',0), -(3767,3767,'accessories/wearable_items/vanguard/uncommon/medium/upperchest',0), -(3768,3768,'accessories/wieldable_items/shields/buckler_shield/streatched_leather_buckler/streatched_leather_buckler001_runic',0), -(3769,3769,'accessories/wieldable_items/shields/buckler_shield/wooden_buckler/wooden_buckler001_runic',0), -(3770,3770,'accessories/wieldable_items/shields/tower_shield/metal_tower_shield/metal_tower_shield001_runic',0), -(3771,3771,'accessories/wieldable_items/weapons/great_spear/great_spear/great_spear001_rusty',0), -(3772,3772,'accessories/wieldable_items/weapons/great_spear/harpoon/harpoon001_plain',0), -(3773,3773,'accessories/wieldable_items/weapons/great_spear/harpoon/harpoon001_rusty',0), -(3774,3774,'accessories/wieldable_items/weapons/great_spear/lance/lance001_ornate',0), -(3775,3775,'accessories/wieldable_items/weapons/great_spear/lance/lance001_plain',0), -(3776,3776,'accessories/wieldable_items/weapons/great_spear/lance/lance001_rusyt',0), -(3777,3777,'accessories/wieldable_items/weapons/great_spear/pike/pike001_rusty',0), -(3778,3778,'accessories/wieldable_items/weapons/great_spear/trident/trident001_rusty',0), -(3779,3779,'accessories/wieldable_items/weapons/great_spear/voulge/voulge001_plain',0), -(3780,3780,'accessories/wieldable_items/weapons/great_spear/voulge/voulge001_rusty',0), -(3781,3781,'accessories/wieldable_items/weapons/spear/javelin/javeling001_runic',0), -(3782,3782,'accessories/wieldable_items/weapons/talisman/orb/orb001_ornate',0), -(3783,3783,'accessories/wieldable_items/weapons/talisman/orb/orb001_runic',0), -(3784,3784,'accessories/wieldable_items/weapons/throwing_weapons/spike/spike004_runic',0), -(3785,3785,'creatures/pets/enevenomed_servant',0), -(3786,3786,'creatures/pets/essence_order',0), -(3787,3787,'ec/pc/froglok/froglok_male_albino',0), -(3788,3788,'ec/pc/froglok/froglok_male_black1',0), -(3789,3789,'ec/pc/froglok/froglok_male_black2',0), -(3790,3790,'ec/pc/froglok/froglok_male_blackglove',0), -(3791,3791,'ec/pc/froglok/froglok_male_rainbow',0), -(3792,3792,'ec/pc/froglok/froglok_male_toad',0), -(3793,3793,'ec/pc/froglok/froglok_male_toadplain',0), -(3794,3794,'staticobjects/weapons/dpo_tablet001_rusty',1096), -(3795,3795,'staticobjects/panels/dpo_panel_fog_red',1096), -(3796,3796,'accessories/wieldable_items/weapons/great_axe/doubleheaded_axe/double_axe001_ornate',0), -(3797,3797,'accessories/wieldable_items/weapons/great_axe/doubleheaded_axe/double_axe002_runic',0), -(3798,3798,'accessories/wieldable_items/weapons/staff/metal_rod/metal_rod001_plain',0), -(3799,3799,'accessories/wieldable_items/weapons/staff/metal_rod/metal_rod001_rusty',0), -(3800,3800,'accessories/wieldable_items/weapons/talisman/idol/idol001_ornate',0), -(3801,3801,'accessories/wieldable_items/weapons/talisman/idol/idol001_runic',0), -(3802,3802,'accessories/wieldable_items/weapons/talisman/tablet/tablet002_ornate',0), -(3803,3803,'creatures/monsters/dikdik_undead',0), -(3804,3804,'creatures/monsters/mammoth',0), -(3805,3805,'creatures/tu/giant_hill',0), -(3806,3806,'staticobjects/chests/gnoll_ark_ornate01',0), -(3807,3807,'accessories/wieldable_items/weapons/spear/javelin/javeling001_ornate',0), -(3808,3808,'accessories/wieldable_items/weapons/spear/ornate_spear/ornate_spear001_runic',0), -(3809,3809,'accessories/wieldable_items/weapons/spear/spear/spear001_runic',0), -(3810,3810,'accessories/wieldable_items/weapons/spear/tribal_spear/tribal_spear001_ornate',0), -(3811,3811,'accessories/wieldable_items/weapons/spear/tribal_spear/tribal_spear001_runic',0), -(3812,3812,'creatures/tu/giant_hill_bald',0), -(3813,3813,'creatures/tu/giant_hill_captain',0), -(3814,3814,'creatures/tu/gnoll_guard1',0), -(3815,3815,'creatures/tu/gnoll_guard2',0), -(3816,3816,'creatures/tu/gnoll_paw',0), -(3817,3817,'accessories/wieldable_items/weapons/great_axe/assault_axe/assault_axe001_runic',0), -(3818,3818,'accessories/wieldable_items/weapons/great_axe/executioner_axe/executioner_axe002_ornate',0), -(3819,3819,'accessories/wieldable_items/weapons/great_spear/great_spear/great_spear001_ornate',0), -(3820,3820,'accessories/wieldable_items/weapons/great_spear/great_spear/great_spear001_runic',0), -(3821,3821,'accessories/wieldable_items/weapons/great_spear/harpoon/harpoon001_ornate',0), -(3822,3822,'accessories/wieldable_items/weapons/great_spear/harpoon/harpoon001_runic',0), -(3823,3823,'accessories/wieldable_items/weapons/great_spear/lance/lance001_runic',0), -(3824,3824,'accessories/wieldable_items/weapons/great_spear/lance/lance001_rusty',0), -(3825,3825,'accessories/wieldable_items/weapons/great_spear/pike/pike001_ornate',0), -(3826,3826,'accessories/wieldable_items/weapons/great_spear/trident/trident002_ornate',0), -(3827,3827,'accessories/wieldable_items/weapons/great_spear/voulge/voulge001_runic',0), -(3828,3828,'accessories/wieldable_items/weapons/great_sword/bastard_sword/bastard_sword002_rusty',0), -(3829,3829,'accessories/wieldable_items/weapons/sword/scimitar/scimitar001_ornate',0), -(3830,3830,'accessories/wieldable_items/weapons/throwing_weapons/throwing_axe/throwing_axe002_runic',0), -(3831,3831,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star001_ornate',0), -(3832,3832,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star001_plain',0), -(3833,3833,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star001_runic',0), -(3834,3834,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star001_rusty',0), -(3835,3835,'creatures/monsters/raven',0), -(3836,3836,'creatures/monsters/white_bear',0), -(3837,3837,'accessories/wieldable_items/weapons/great_axe/bardiche/bardiche01_plain',0), -(3838,3838,'accessories/wieldable_items/weapons/great_axe/halberd/halberd003_ornate',0), -(3839,3839,'accessories/wieldable_items/weapons/great_hammer/great_flail/great_flail001_plain',0), -(3840,3840,'accessories/wieldable_items/weapons/great_hammer/great_flail/great_flail001_runic',0), -(3841,3841,'accessories/wieldable_items/weapons/great_hammer/great_flail/great_flail002_ornate',0), -(3842,3842,'accessories/wieldable_items/weapons/great_hammer/great_flail/great_flail002_rusty',0), -(3843,3843,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club001_rusty',0), -(3844,3844,'accessories/wieldable_items/weapons/great_sword/claymore_sword/claymore_sword001_runic',0), -(3845,3845,'accessories/wieldable_items/weapons/great_sword/claymore_sword/claymore_sword002_rusty',0), -(3846,3846,'accessories/wieldable_items/weapons/great_sword/tulwar/tulwar001_runic',0), -(3847,3847,'accessories/wieldable_items/weapons/rapier/cutlass/cutlass001_ornate',0), -(3848,3848,'accessories/wieldable_items/weapons/spear/leaf_blade/leaf_blade001_ornate',0), -(3849,3849,'accessories/wieldable_items/weapons/spear/leaf_blade/leaf_blade001_runic',0), -(3850,3850,'accessories/wieldable_items/weapons/spear/short_spear/short_spear001_ornate',0), -(3851,3851,'accessories/wieldable_items/weapons/spear/short_spear/short_spear001_runic',0), -(3852,3852,'accessories/wieldable_items/weapons/sword/falchion_sword/falchion_sword001_ornate',0), -(3853,3853,'accessories/wieldable_items/weapons/sword/falchion_sword/falchion_sword002_runic',0), -(3854,3854,'accessories/wieldable_items/weapons/sword/kukri_sword/kukri_sword001_rusty',0), -(3855,3855,'accessories/wieldable_items/weapons/sword/kukri_sword/kukri_sword002_ornate',0), -(3856,3856,'accessories/wieldable_items/weapons/sword/kukri_sword/kukri_sword002_runic',0), -(3857,3857,'accessories/wieldable_items/weapons/sword/short_sword/short_sword002_ornate',0), -(3858,3858,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword002_runic',0), -(3859,3859,'accessories/wieldable_items/weapons/sword/whip/whip001_ornate',0), -(3860,3860,'accessories/wieldable_items/weapons/sword/whip/whip001_plain',0), -(3861,3861,'accessories/wieldable_items/weapons/sword/whip/whip001_runic',0), -(3862,3862,'accessories/wieldable_items/weapons/sword/whip/whip001_rusty',0), -(3863,3863,'accessories/wieldable_items/weapons/talisman/book/book001_ornate',0), -(3864,3864,'accessories/wieldable_items/weapons/talisman/book/book001_runic',0), -(3865,3865,'accessories/wieldable_items/weapons/talisman/book/book001_rustu',0), -(3866,3866,'accessories/wieldable_items/weapons/talisman/censer/censer001_plain',0), -(3867,3867,'accessories/wieldable_items/weapons/talisman/censer/censer001_runic',0), -(3868,3868,'accessories/wieldable_items/weapons/talisman/censer/censer001_rusty',0), -(3869,3869,'accessories/wieldable_items/weapons/talisman/doll/doll001_ornate',0), -(3870,3870,'accessories/wieldable_items/weapons/talisman/doll/doll001_runic',0), -(3871,3871,'accessories/wieldable_items/weapons/talisman/drum/drum001_ornate',0), -(3872,3872,'accessories/wieldable_items/weapons/talisman/drum/drum001_runic',0), -(3873,3873,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_sybol001_rusty',0), -(3874,3874,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_fear001',0), -(3875,3875,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_love001',0), -(3876,3876,'accessories/wieldable_items/weapons/talisman/stringed_instrument/string_instrument001_ornate',0), -(3877,3877,'accessories/wieldable_items/weapons/talisman/stringed_instrument/string_instrument001_runic',0), -(3878,3878,'accessories/wieldable_items/weapons/talisman/tablet/tablet002_runic',0), -(3879,3879,'accessories/wieldable_items/weapons/talisman/wand/wand001_ornate',0), -(3880,3880,'accessories/wieldable_items/weapons/talisman/wand/wand001_runic',0), -(3881,3881,'creatures/monsters/goo_ice',0), -(3882,3882,'creatures/monsters/undead_dog',0), -(3883,3883,'staticobjects/panels/dpo_panel_fog_blue',1096), -(3884,3884,'ec/npc/goblin_ice',0), -(3885,3885,'accessories/wieldable_items/weapons/bow/long_bow/long_bow001_ornate',0), -(3886,3886,'accessories/wieldable_items/weapons/bow/long_bow/long_bow001_plain',0), -(3887,3887,'accessories/wieldable_items/weapons/bow/long_bow/long_bow001_runic',0), -(3888,3888,'accessories/wieldable_items/weapons/bow/long_bow/long_bow001_rusty',0), -(3889,3889,'accessories/wieldable_items/weapons/bow/short_bow/short_bow001_ornate',0), -(3890,3890,'accessories/wieldable_items/weapons/bow/short_bow/short_bow001_plain',0), -(3891,3891,'accessories/wieldable_items/weapons/bow/short_bow/short_bow001_runic',0), -(3892,3892,'accessories/wieldable_items/weapons/bow/short_bow/short_bow001_rusty',0), -(3893,3893,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club001_ornate',0), -(3894,3894,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star001_ornate',0), -(3895,3895,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_hate001',0), -(3896,3896,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_tranquility001',0), -(3897,3897,'accessories/wieldable_items/weapons/talisman/idol/idol001_plain',0), -(3898,3898,'accessories/wieldable_items/weapons/talisman/tablet/tablet001_plain',0), -(3899,3899,'accessories/wieldable_items/weapons/throwing_weapons/rock/rock001_ornate',0), -(3900,3900,'accessories/wieldable_items/weapons/throwing_weapons/rock/rock001_plain',0), -(3901,3901,'accessories/wieldable_items/weapons/throwing_weapons/rock/rock001_runic',0), -(3902,3902,'accessories/wieldable_items/weapons/throwing_weapons/rock/rock001_rusty',0), -(3903,3903,'accessories/wieldable_items/weapons/throwing_weapons/throwing_knife/throwing_knife001_ornate',0), -(3904,3904,'accessories/wieldable_items/weapons/throwing_weapons/throwing_knife/throwing_knife001_plain',0), -(3905,3905,'accessories/wieldable_items/weapons/throwing_weapons/throwing_knife/throwing_knife001_runic',0), -(3906,3906,'accessories/wieldable_items/weapons/throwing_weapons/throwing_knife/throwing_knife001_rusty',0), -(3907,3907,'ec/npc/lucan_statue',0), -(3908,3908,'staticobjects/harvested/bushes/hrvst_bush_healthygreenanaconda01',0), -(3909,3909,'staticobjects/harvested/bushes/hrvst_bush_healthygreenanaconda_berries01',0), -(3910,3910,'staticobjects/harvested/coral/hrvst_coral_group001',0), -(3911,3911,'staticobjects/harvested/coral/hrvst_coral_group002',0), -(3912,3912,'staticobjects/harvested/coral/hrvst_coral_single001',0), -(3913,3913,'staticobjects/harvested/coral/hrvst_coral_single002',0), -(3914,3914,'staticobjects/harvested/crystals/hrvst_crystals_roundformation001',0), -(3915,3915,'staticobjects/harvested/crystals/hrvst_crystals_roundformation002',0), -(3916,3916,'staticobjects/harvested/crystals/hrvst_crystals_roundformation003',0), -(3917,3917,'staticobjects/harvested/crystals/hrvst_stalagmite01',0), -(3918,3918,'staticobjects/harvested/crystals/hrvst_stalagmite02',0), -(3919,3919,'staticobjects/harvested/crystals/hrvst_stalagmite03',0), -(3920,3920,'staticobjects/harvested/crystals/hrvst_stalagmite04',0), -(3921,3921,'staticobjects/harvested/debris/hrvst_debris01',0), -(3922,3922,'staticobjects/harvested/debris/hrvst_debris02',0), -(3923,3923,'staticobjects/harvested/debris/hrvst_debris03',0), -(3924,3924,'staticobjects/harvested/debris/hrvst_debris04',0), -(3925,3925,'staticobjects/harvested/logs/hrvst_log_ant_blossom01',0), -(3926,3926,'staticobjects/harvested/logs/hrvst_log_ant_pine01',0), -(3927,3927,'staticobjects/harvested/logs/hrvst_log_ant_pine02',0), -(3928,3928,'staticobjects/harvested/logs/hrvst_log_cmmn_oak01',0), -(3929,3929,'staticobjects/harvested/logs/hrvst_log_cmmn_oak02',0), -(3930,3930,'staticobjects/harvested/logs/hrvst_log_cmmn_savannah01',0), -(3931,3931,'staticobjects/harvested/logs/hrvst_log_ench_blossom01',0), -(3932,3932,'staticobjects/harvested/logs/hrvst_log_ench_jaggedpine01',0), -(3933,3933,'staticobjects/harvested/logs/hrvst_log_ench_jaggedpine02',0), -(3934,3934,'staticobjects/harvested/logs/hrvst_log_jaggedpine_scorched01',0), -(3935,3935,'staticobjects/harvested/logs/hrvst_log_jaggedpine_scorched02',0), -(3936,3936,'staticobjects/harvested/logs/hrvst_log_jaggedpine_scorched03',0), -(3937,3937,'staticobjects/harvested/logs/hrvst_log_nbhum_eucalyptus01',0), -(3938,3938,'staticobjects/harvested/logs/hrvst_log_nbhum_eucalyptus02',0), -(3939,3939,'staticobjects/harvested/logs/hrvst_log_nbhum_pine01',0), -(3940,3940,'staticobjects/harvested/logs/hrvst_log_nekf_twistedfungus01',0), -(3941,3941,'staticobjects/harvested/logs/hrvst_log_nekf_twistedfungus02',0), -(3942,3942,'staticobjects/harvested/logs/hrvst_log_nekf_twistedfungus03',0), -(3943,3943,'staticobjects/harvested/logs/hrvst_log_ow_jaggedpine01',0), -(3944,3944,'staticobjects/harvested/logs/hrvst_log_ow_torreypine01',0), -(3945,3945,'staticobjects/harvested/logs/hrvst_log_ow_torreypine02',0), -(3946,3946,'staticobjects/harvested/logs/hrvst_log_step_jaggedpine01',0), -(3947,3947,'staticobjects/harvested/logs/hrvst_log_step_jaggedpine02',0), -(3948,3948,'staticobjects/harvested/logs/hrvst_log_step_oak01',0), -(3949,3949,'staticobjects/harvested/mushrooms/hrvst_mushrooms_cluster01',0), -(3950,3950,'staticobjects/harvested/mushrooms/hrvst_mushrooms_cluster02',0), -(3951,3951,'staticobjects/harvested/mushrooms/hrvst_mushrooms_cluster03',0), -(3952,3952,'staticobjects/harvested/mushrooms/hrvst_mushrooms_fairyring01',0), -(3953,3953,'staticobjects/harvested/mushrooms/hrvst_mushrooms_fairyring02',0), -(3954,3954,'staticobjects/harvested/mushrooms/hrvst_mushrooms_fairyring03',0), -(3955,3955,'staticobjects/harvested/rocks/hrvst_rocks_mineralveins01',0), -(3956,3956,'staticobjects/harvested/rocks/hrvst_rocks_mineralveins02',0), -(3957,3957,'staticobjects/harvested/rocks/hrvst_rocks_mineralveins03',0), -(3958,3958,'staticobjects/harvested/shells/hrvst_shells_abalone01',0), -(3959,3959,'staticobjects/harvested/shells/hrvst_shells_abalone02',0), -(3960,3960,'staticobjects/harvested/shells/hrvst_shells_abaloneunderside02',0), -(3961,3961,'staticobjects/harvested/shells/hrvst_shells_beach01',0), -(3962,3962,'staticobjects/harvested/shells/hrvst_shells_beachunderside01',0), -(3963,3963,'staticobjects/harvested/shells/hrvst_shells_conch01',0), -(3964,3964,'staticobjects/harvested/shells/hrvst_shells_nautilus01',0), -(3965,3965,'staticobjects/harvested/shells/hrvst_shells_oyster01',0), -(3966,3966,'staticobjects/harvested/shells/hrvst_shells_oyster02',0), -(3967,3967,'staticobjects/harvested/shells/hrvst_shells_oysterunderside01',0), -(3968,3968,'staticobjects/harvested/shells/hrvst_shells_sanddollar01',0), -(3969,3969,'staticobjects/harvested/shells/hrvst_shells_sanddollarunderside01',0), -(3970,3970,'staticobjects/harvested/trapping/hrvst_trapping_ant_dirtmound01',0), -(3971,3971,'staticobjects/harvested/trapping/hrvst_trapping_ant_dirtmound02',0), -(3972,3972,'staticobjects/harvested/trapping/hrvst_trapping_cmmn_dirtmound01',0), -(3973,3973,'staticobjects/harvested/trapping/hrvst_trapping_cmmn_dirtmound02',0), -(3974,3974,'staticobjects/panels/dpo_panel_fog_cloud',1096), -(3975,3975,'staticobjects/panels/dpo_bonetower_wall',1096), -(3976,3976,'staticobjects/panels/dpo_antonica_bone',1096), -(3977,3977,'staticobjects/harvested/trapping/hrvst_trapping_dirtmound01',0), -(3978,3978,'staticobjects/harvested/trapping/hrvst_trapping_dirtmound02',0), -(3979,3979,'staticobjects/harvested/trapping/hrvst_trapping_dirtmound03',0), -(3980,3980,'staticobjects/harvested/trapping/hrvst_trapping_ench_dirtmound01',0), -(3981,3981,'staticobjects/harvested/trapping/hrvst_trapping_ench_dirtmound02',0), -(3982,3982,'staticobjects/harvested/trapping/hrvst_trapping_feer_dirtmound01',0), -(3983,3983,'staticobjects/harvested/trapping/hrvst_trapping_feer_dirtmound02',0), -(3984,3984,'staticobjects/harvested/trapping/hrvst_trapping_fprtadv_dirtmound01',0), -(3985,3985,'staticobjects/harvested/trapping/hrvst_trapping_fprtadv_dirtmound02',0), -(3986,3986,'staticobjects/harvested/trapping/hrvst_trapping_ls_dirtmound01',0), -(3987,3987,'staticobjects/harvested/trapping/hrvst_trapping_ls_dirtmound02',0), -(3988,3988,'staticobjects/harvested/trapping/hrvst_trapping_nbhum_dirtmound01',0), -(3989,3989,'staticobjects/harvested/trapping/hrvst_trapping_nbhum_dirtmound02',0), -(3990,3990,'staticobjects/harvested/trapping/hrvst_trapping_nekf_dirtmound01',0), -(3991,3991,'staticobjects/harvested/trapping/hrvst_trapping_nekf_dirtmound02',0), -(3992,3992,'staticobjects/harvested/trapping/hrvst_trapping_ow_dirtmound01',0), -(3993,3993,'staticobjects/harvested/trapping/hrvst_trapping_ow_dirtmound02',0), -(3994,3994,'staticobjects/harvested/trapping/hrvst_trapping_qey_dirtmound01',0), -(3995,3995,'staticobjects/harvested/trapping/hrvst_trapping_qey_dirtmound02',0), -(3996,3996,'staticobjects/harvested/trapping/hrvst_trapping_rockden001',0), -(3997,3997,'staticobjects/harvested/trapping/hrvst_trapping_rockden002',0), -(3998,3998,'staticobjects/harvested/trapping/hrvst_trapping_rockden003',0), -(3999,3999,'staticobjects/harvested/trapping/hrvst_trapping_rockden004',0), -(4000,4000,'staticobjects/harvested/trapping/hrvst_trapping_step_dirtmound01',0), -(4001,4001,'staticobjects/harvested/trapping/hrvst_trapping_step_dirtmound02',0), -(4002,4002,'staticobjects/harvested/trapping/hrvst_trapping_thicket001',0), -(4003,4003,'staticobjects/harvested/trapping/hrvst_trapping_thicket002',0), -(4004,4004,'staticobjects/harvested/trapping/hrvst_trapping_thicket003',0), -(4005,4005,'accessories/wieldable_items/weapons/fist/claws/claws001_ornate',0), -(4006,4006,'accessories/wieldable_items/weapons/fist/claws/claws001_runic',0), -(4007,4007,'accessories/wieldable_items/weapons/fist/claws/claws001_rusty',0), -(4008,4008,'accessories/wieldable_items/weapons/talisman/flute/flute001_plain',0), -(4009,4009,'accessories/wieldable_items/weapons/talisman/flute/flute002_rusty',0), -(4010,4010,'accessories/wieldable_items/weapons/talisman/flute/flute003_ornate',0), -(4011,4011,'accessories/wieldable_items/weapons/talisman/flute/flute004_runic',0), -(4012,4012,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_nature001',0), -(4013,4013,'accessories/wieldable_items/weapons/talisman/holy_symbol/holy_symbol_valor001',0), -(4014,4014,'creatures/tu/giant_frost_captain',0), -(4015,4015,'staticobjects/chests/chest_animated_large',0), -(4016,4016,'staticobjects/chests/chest_animated_medium',0), -(4017,4017,'accessories/wieldable_items/misc/stein001_runic',0), -(4018,4018,'accessories/wieldable_items/misc/stein002_plain',0), -(4019,4019,'accessories/wieldable_items/misc/stein002_rusty',0), -(4020,4020,'accessories/wieldable_items/misc/stein003_ornate',0), -(4021,4021,'accessories/wearable_items/_exp08/robe_elemental/earth/skirt',1096), -(4022,4022,'accessories/wearable_items/_exp08/robe_elemental/earth/chest',1096), -(4023,4023,'accessories/wieldable_items/weapons/hammer/flail/flail001_ornate',0), -(4024,4024,'accessories/wieldable_items/weapons/hammer/flail/flail001_rusty',0), -(4025,4025,'accessories/wieldable_items/weapons/hammer/flail/flail002_plain',0), -(4026,4026,'accessories/wieldable_items/weapons/hammer/flail/flail002_runic',0), -(4027,4027,'accessories/wieldable_items/weapons/hammer/scourge/scourge001_runic',0), -(4028,4028,'accessories/wieldable_items/weapons/hammer/scourge/scourge001_rusty',0), -(4029,4029,'accessories/wieldable_items/weapons/hammer/scourge/scourge002_ornate',0), -(4030,4030,'accessories/wieldable_items/weapons/hammer/scourge/scourge002_plain',0), -(4031,4031,'accessories/wieldable_items/weapons/rapier/karabela/karabela001_ornate',0), -(4032,4032,'accessories/wieldable_items/weapons/rapier/saber/saber001_ornate',0), -(4033,4033,'creatures/tu/lesser_efreeti',0), -(4034,4034,'staticobjects/chests/chest_animated_small',0), -(4035,4035,'accessories/wearable_items/magus/robes/dragon_ornate/chest',0), -(4036,4036,'accessories/wearable_items/magus/robes/dragon_ornate/pants',0), -(4037,4037,'accessories/wearable_items/magus/robes/dragon_ornate/skirt',0), -(4038,4038,'accessories/wearable_items/tradesman/clothing/brawler/med_studded/arms',0), -(4039,4039,'accessories/wearable_items/tradesman/clothing/brawler/med_studded/chest',0), -(4040,4040,'accessories/wearable_items/_exp08/robe_elemental/earth/feet',1096), -(4041,4041,'accessories/wearable_items/tradesman/clothing/brawler/med_studded/legs',0), -(4042,4042,'accessories/wieldable_items/misc/treeclub001_plain',0), -(4043,4043,'accessories/wieldable_items/weapons/dagger/dirk/dirk002_ornate',0), -(4044,4044,'accessories/wieldable_items/weapons/dagger/kris/kris001_ornate',0), -(4045,4045,'accessories/wieldable_items/weapons/dagger/parrying_blade/parrying_blade001_ornate',0), -(4046,4046,'accessories/wieldable_items/weapons/dagger/parrying_blade/parrying_blade002_rusty',0), -(4047,4047,'accessories/wieldable_items/weapons/dagger/sai/sai001_ornate',0), -(4048,4048,'accessories/wieldable_items/weapons/dagger/sai/sai001_runic',0), -(4049,4049,'accessories/wieldable_items/weapons/dagger/stiletto/stiletto002_ornate',0), -(4050,4050,'accessories/wieldable_items/weapons/dagger/wizards_dagger/wizards_dagger001_ornate',0), -(4051,4051,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace001_ornate',0), -(4052,4052,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace001_runic',0), -(4053,4053,'accessories/wieldable_items/weapons/hammer/cudgel/cudgel002_ornate',0), -(4054,4054,'accessories/wieldable_items/weapons/hammer/cudgel/cudgel002_runic',0), -(4055,4055,'accessories/wieldable_items/weapons/staff/bo_staff/bo_staff002_runic',0), -(4056,4056,'accessories/wieldable_items/weapons/staff/fighting_batons/fighting_batons001_ornate',0), -(4057,4057,'accessories/wieldable_items/weapons/staff/great_staff/great_staff001_ornate',0), -(4058,4058,'accessories/wieldable_items/weapons/staff/metal_rod/metal_rod001_ornate',0), -(4059,4059,'accessories/wieldable_items/weapons/staff/quarterstaff/quarterstaff001_plain',0), -(4060,4060,'accessories/wieldable_items/weapons/staff/quarterstaff/quarterstaff002_ornate',0), -(4061,4061,'accessories/wieldable_items/weapons/staff/quarterstaff/quarterstaff002_runic',0), -(4062,4062,'creatures/tu/giant_frost_helmet',0), -(4063,4063,'ec/npc/antonia_statue',0), -(4064,4064,'staticobjects/qeynos/qey_citizenship_plain',0), -(4065,4065,'accessories/wieldable_items/weapons/great_axe/doubleheaded_axe/double_axe001_plain',0), -(4066,4066,'accessories/wieldable_items/weapons/great_axe/doubleheaded_axe/double_axe002_rusty',0), -(4067,4067,'staticobjects/market_object/market_object',0), -(4068,4068,'accessories/wearable_items/_exp08/robe_elemental/earth/hands',1096), -(4069,4069,'projectiles/spell_shriek_wave',0), -(4070,4070,'projectiles/spell_fire_ball',0), -(4071,4071,'projectiles/spell_fire_ball_blue',0), -(4072,4072,'projectiles/spell_fire_ball_green',0), -(4073,4073,'projectiles/spell_fuliginous_ball',0), -(4074,4074,'projectiles/spell_skull',0), -(4075,4075,'staticobjects/harvested/bushes/hrvst_bush_anaconda_brown01',0), -(4076,4076,'staticobjects/harvested/bushes/hrvst_bush_healthygreenoak01',0), -(4077,4077,'staticobjects/harvested/bushes/hrvst_bush_healthygreenoak_berries01',0), -(4078,4078,'staticobjects/harvested/bushes/hrvst_bush_oak_brown01',0), -(4079,4079,'accessories/wearable_items/_exp08/robe_elemental/earth/head',1096), -(4080,4080,'accessories/wearable_items/_exp08/robe_elemental/earth/head_collar',1096), -(4081,4081,'accessories/wearable_items/_exp08/robe_elemental/earth/pants',1096), -(4082,4082,'accessories/wearable_items/_exp08/robe_elemental/earth/right_shoulder_effect',1096), -(4083,4083,'accessories/wearable_items/_exp08/robe_elemental/earth/left_shoulder_effect',1096), -(4084,4084,'accessories/wearable_items/snapons/backpacks/backpack_tinkered_tin',1096), -(4085,4085,'accessories/wearable_items/snapons/backpacks/backpack_tinkered_rusty',1096), -(4086,4086,'accessories/wieldable_items/shields/exp08/exp08_shield_tinkered_gear_tin',1096), -(4087,4087,'accessories/wieldable_items/shields/exp08/exp08_buckler_tinkered_gear_rusty',1096), -(4088,4088,'accessories/wieldable_items/shields/exp08/exp08_buckler_tinkered_gear_tin',1096), -(4089,4089,'accessories/wieldable_items/shields/exp08/exp08_shield_tinkered_gear_rusty',1096), -(4090,4090,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tinkered_wrench_tin',1096), -(4091,4091,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tinkered_wrench_detailed_rusty',1096), -(4092,4092,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tinkered_wrench_detailed_tin',1096), -(4093,4093,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tinkered_wrench_rusty',1096), -(4094,4094,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tinkered_drill_tin',1096), -(4095,4095,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tinkered_drill_rusty',1096), -(4096,4096,'creatures/pets/baby_dragon',0), -(4097,4097,'accessories/wieldable_items/weapons/rapier/foil/foil001_runic',0), -(4098,4098,'creatures/tu/centaur_male',0), -(4099,4099,'creatures/tu/gnoll_mage',0), -(4100,4100,'projectiles/spell_icy_comet',0), -(4101,4101,'projectiles/spell_poison_spore',0), -(4102,4102,'staticobjects/eye/cazic_eye_red_glow',0), -(4103,4103,'staticobjects/ladders/ladder01',0), -(4104,4104,'staticobjects/ladders/ladder_long01',0), -(4105,4105,'staticobjects/ladders/ladder_short01',0), -(4106,4106,'creatures/tu/centaur_female',0), -(4107,4107,'projectiles/spell_mindblast',0), -(4108,4108,'staticobjects/harvested/crystals/hrvst_crystals_roundformation001_dirty',0), -(4109,4109,'staticobjects/harvested/crystals/hrvst_crystals_roundformation003_purple',0), -(4110,4110,'creatures/tu/giant_fire',0), -(4111,4111,'ec/npc/antonia',0), -(4112,4112,'ec/npc/lucan',0), -(4113,4113,'accessories/wearable_items/npcskirts/antonia_skirt',0), -(4114,4114,'accessories/wearable_items/npcskirts/lucan_skirt',0), -(4115,4115,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tinkered_tin',1096), -(4116,4116,'creatures/tu/giant_fire_lord',0), -(4117,4117,'creatures/tu/lesser_water_elemental',0), -(4118,4118,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tinkered_buzzgear_copper',1096), -(4119,4119,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tinkered_buzzgear_tin',1096), -(4120,4120,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tinkered_rusty',1096), -(4121,4121,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tinkered_lantern_tin',1096), -(4122,4122,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tinkered_lantern_rusty',1096), -(4123,4123,'accessories/wearable_items/cloak/exp08/cloak_artisan_water_blue',1096), -(4124,4124,'accessories/wearable_items/cloak/exp08/cloak_artisan_water_red',1096), -(4125,4125,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_mage_tallonite_blue-iron_fx',1096), -(4126,4126,'ec/npc/goblin_cave',0), -(4127,4127,'staticobjects/doors/qey_l04_int01_r01_door01',0), -(4128,4128,'staticobjects/oop_buff_widgets/brew_barrel',0), -(4129,4129,'staticobjects/oop_buff_widgets/chest_full_of_skulls',0), -(4130,4130,'staticobjects/oop_buff_widgets/evil_face_cauldron',0), -(4131,4131,'staticobjects/oop_buff_widgets/evil_offering_pedistal',0), -(4132,4132,'staticobjects/oop_buff_widgets/evil_skull_post',0), -(4133,4133,'staticobjects/oop_buff_widgets/evil_skull_with_dagger',0), -(4134,4134,'staticobjects/oop_buff_widgets/evil_statue',0), -(4135,4135,'staticobjects/oop_buff_widgets/gnoll_bone_ark',0), -(4136,4136,'staticobjects/oop_buff_widgets/gnoll_wood_ark',0), -(4137,4137,'staticobjects/oop_buff_widgets/goblin_totem',0), -(4138,4138,'staticobjects/oop_buff_widgets/human_skull_pile',0), -(4139,4139,'staticobjects/oop_buff_widgets/magical_sphere_podium',0), -(4140,4140,'staticobjects/oop_buff_widgets/orc_skull_torch',0), -(4141,4141,'staticobjects/oop_buff_widgets/pottery_bowl_purple',0), -(4142,4142,'staticobjects/oop_buff_widgets/urn_large',0), -(4143,4143,'staticobjects/oop_buff_widgets/urn_three_tier_elf',0), -(4144,4144,'staticobjects/oop_buff_widgets/witches_cauldron',0), -(4145,4145,'projectiles/arrow_ornate',0), -(4146,4146,'projectiles/arrow_ornate_fire',0), -(4147,4147,'projectiles/arrow_plain',0), -(4148,4148,'projectiles/arrow_plain_fire',0), -(4149,4149,'projectiles/arrow_runic',0), -(4150,4150,'projectiles/arrow_runic_fire',0), -(4151,4151,'projectiles/arrow_rusty',0), -(4152,4152,'projectiles/arrow_rusty_fire',0), -(4153,4153,'projectiles/arrow_simple_plain_fire',0), -(4154,4154,'projectiles/spell_fire_ball_purple',0), -(4155,4155,'staticobjects/harvested/fish/hrvst_fish_deep',0), -(4156,4156,'staticobjects/harvested/fish/hrvst_fish_deep_koi',0), -(4157,4157,'staticobjects/harvested/fish/hrvst_fish_medium',0), -(4158,4158,'staticobjects/harvested/fish/hrvst_fish_medium_koi',0), -(4159,4159,'staticobjects/harvested/fish/hrvst_fish_shallow',0), -(4160,4160,'staticobjects/harvested/fish/hrvst_fish_shallow_koi',0), -(4161,4161,'staticobjects/doorways/fprt_tradeskill_entrance01',0), -(4162,4162,'staticobjects/draconic_widgets/armorcollection003',0), -(4163,4163,'staticobjects/draconic_widgets/booknarrow001',0), -(4164,4164,'staticobjects/draconic_widgets/booknarrow003',0), -(4165,4165,'staticobjects/draconic_widgets/cazic_bookblackleather001',0), -(4166,4166,'staticobjects/draconic_widgets/cazic_bookbrownleather001',0), -(4167,4167,'staticobjects/draconic_widgets/cazic_bookcrackedleather001',0), -(4168,4168,'staticobjects/draconic_widgets/cazic_bookredleather001',0), -(4169,4169,'staticobjects/draconic_widgets/cazic_bookwface001',0), -(4170,4170,'staticobjects/draconic_widgets/cazic_lizardmansckullwhole001',0), -(4171,4171,'staticobjects/draconic_widgets/cazic_scroll_leather001',0), -(4172,4172,'staticobjects/draconic_widgets/cazic_scroll_magic001',0), -(4173,4173,'staticobjects/draconic_widgets/cazic_scroll_parchmentbone001',0), -(4174,4174,'staticobjects/draconic_widgets/cazic_scroll_skinbone001',0), -(4175,4175,'staticobjects/draconic_widgets/edk_book001',0), -(4176,4176,'staticobjects/draconic_widgets/edk_book003',0), -(4177,4177,'staticobjects/draconic_widgets/fprt_books_singlethickornate01',0), -(4178,4178,'staticobjects/draconic_widgets/fprt_books_singlethickornate02',0), -(4179,4179,'staticobjects/draconic_widgets/fprt_books_singlethinornate01',0), -(4180,4180,'staticobjects/draconic_widgets/oblost_scroll_lrg_cld',0), -(4181,4181,'staticobjects/draconic_widgets/oblost_scroll_lrg_plain',0), -(4182,4182,'staticobjects/draconic_widgets/oblost_scroll_pile02',0), -(4183,4183,'staticobjects/draconic_widgets/oblost_scroll_pil_l0',0), -(4184,4184,'staticobjects/draconic_widgets/orc_chest_closed001',0), -(4185,4185,'staticobjects/draconic_widgets/qey_3tower_scroll001',0), -(4186,4186,'staticobjects/draconic_widgets/qey_backpack001',0), -(4187,4187,'staticobjects/draconic_widgets/scroll002',0), -(4188,4188,'staticobjects/draconic_widgets/scroll003',0), -(4189,4189,'staticobjects/draconic_widgets/vrsn_book02',0), -(4190,4190,'staticobjects/draconic_widgets/vrsn_book03',0), -(4191,4191,'staticobjects/draconic_widgets/vrsn_scrool01',0), -(4192,4192,'staticobjects/draconic_widgets/vrsn_scrool02',0), -(4193,4193,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal01_guardsmonument_l0',0), -(4194,4194,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal02_dragon_l0',0), -(4195,4195,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal03_hallwayguards_l0',0), -(4196,4196,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal04_evilhouse_l0',0), -(4197,4197,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal05_redbuilding_l0',0), -(4198,4198,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal06_reddragon_l0',0), -(4199,4199,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal07_blackburrow_l0',0), -(4200,4200,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal08_treehouse_l0',0), -(4201,4201,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal09_bluecastle_l0',0), -(4202,4202,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal10_redcourtyard_l0',0), -(4203,4203,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal11_redfountain_l0',0), -(4204,4204,'staticobjects/pictures/fprt_ph_painting_eq1_horizontal12_temple_l0',0), -(4205,4205,'staticobjects/pictures/fprt_ph_painting_eq1_square25_castleonmountain_l0',0), -(4206,4206,'staticobjects/pictures/fprt_ph_painting_eq1_square26_purpleskull_l0',0), -(4207,4207,'staticobjects/pictures/fprt_ph_painting_eq1_square27_rainonguards_l0',0), -(4208,4208,'staticobjects/pictures/fprt_ph_painting_eq1_square28_halassign_l0',0), -(4209,4209,'staticobjects/pictures/fprt_ph_painting_eq1_square29_bluedragon_l0',0), -(4210,4210,'staticobjects/pictures/fprt_ph_painting_eq1_square30_bloodyfrogs_l0',0), -(4211,4211,'staticobjects/pictures/fprt_ph_painting_eq1_square31_torchincave_l0',0), -(4212,4212,'staticobjects/pictures/fprt_ph_painting_eq1_square32_elephanthuts_l0',0), -(4213,4213,'staticobjects/pictures/fprt_ph_painting_eq1_square33_buildingwithvines_l0',0), -(4214,4214,'staticobjects/pictures/fprt_ph_painting_eq1_square34_qeynosentrance_l0',0), -(4215,4215,'staticobjects/pictures/fprt_ph_painting_eq1_square35_catwalk_l0',0), -(4216,4216,'staticobjects/pictures/fprt_ph_painting_eq1_square36_skullentrance_l0',0), -(4217,4217,'staticobjects/pictures/fprt_ph_painting_eq1_vertical13_candleswithsymbol_l0',0), -(4218,4218,'staticobjects/pictures/fprt_ph_painting_eq1_vertical14_sumoguard_l0',0), -(4219,4219,'staticobjects/pictures/fprt_ph_painting_eq1_vertical15_lizardwithape_l0',0), -(4220,4220,'staticobjects/pictures/fprt_ph_painting_eq1_vertical16_manatdock_l0',0), -(4221,4221,'staticobjects/pictures/fprt_ph_painting_eq1_vertical17_eyetemple_l0',0), -(4222,4222,'staticobjects/pictures/fprt_ph_painting_eq1_vertical18_floatingbuilding_l0',0), -(4223,4223,'staticobjects/pictures/fprt_ph_painting_eq1_vertical19_floatingbuildingchains_l0',0), -(4224,4224,'staticobjects/pictures/fprt_ph_painting_eq1_vertical20_evildragonentrance_l0',0), -(4225,4225,'staticobjects/pictures/fprt_ph_painting_eq1_vertical21_hangingcorpse_l0',0), -(4226,4226,'staticobjects/pictures/fprt_ph_painting_eq1_vertical22_citadel_l0',0), -(4227,4227,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_purple',1096), -(4228,4228,'staticobjects/pictures/fprt_ph_painting_eq1_vertical24_statuewithclaymore_l0',0), -(4229,4229,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal01_falls_l0',0), -(4230,4230,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal02_treessunset_l0',0), -(4231,4231,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal03_trolllizard_l0',0), -(4232,4232,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal04_lakefish_l0',0), -(4233,4233,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal05_towerssunset_l0',0), -(4234,4234,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal06_sunsetlaketrees_l0',0), -(4235,4235,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal07_sunsettrees_l0',0), -(4236,4236,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal08_freeportskyline_l0',0), -(4237,4237,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal09_fightingfountain_l0',0), -(4238,4238,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal10_foreststream_l0',0), -(4239,4239,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal11_nightsky_l0',0), -(4240,4240,'staticobjects/pictures/fprt_ph_painting_eq2_horizontal12_troops_l0',0), -(4241,4241,'staticobjects/pictures/fprt_ph_painting_eq2_square25_wasps_l0',0), -(4242,4242,'staticobjects/pictures/fprt_ph_painting_eq2_square26_moat_l0',0), -(4243,4243,'staticobjects/pictures/fprt_ph_painting_eq2_square27_ratogre_l0',0), -(4244,4244,'staticobjects/pictures/fprt_ph_painting_eq2_square28_zombie_l0',0), -(4245,4245,'staticobjects/pictures/fprt_ph_painting_eq2_square29_wolfrivervale_l0',0), -(4246,4246,'staticobjects/pictures/fprt_ph_painting_eq2_square30_waterhouse_l0',0), -(4247,4247,'staticobjects/pictures/fprt_ph_painting_eq2_square31_guardhouse_l0',0), -(4248,4248,'staticobjects/pictures/fprt_ph_painting_eq2_square32_lizard_l0',0), -(4249,4249,'staticobjects/pictures/fprt_ph_painting_eq2_square33_treeisland_l0',0), -(4250,4250,'staticobjects/pictures/fprt_ph_painting_eq2_square34_kneelingattorch_l0',0), -(4251,4251,'staticobjects/pictures/fprt_ph_painting_eq2_square35_spire_l0',0), -(4252,4252,'staticobjects/pictures/fprt_ph_painting_eq2_square36_qeynoscottage_l0',0), -(4253,4253,'staticobjects/pictures/fprt_ph_painting_eq2_vertical13_forest_l0',0), -(4254,4254,'staticobjects/pictures/fprt_ph_painting_eq2_vertical14_kerraaquaduct_l0',0), -(4255,4255,'staticobjects/pictures/fprt_ph_painting_eq2_vertical15_forestwoodelf_l0',0), -(4256,4256,'staticobjects/pictures/fprt_ph_painting_eq2_vertical16_ogrewithfairy_l0',0), -(4257,4257,'staticobjects/pictures/fprt_ph_painting_eq2_vertical17_statuewithcandles_l0',0), -(4258,4258,'staticobjects/pictures/fprt_ph_painting_eq2_vertical18_kerranpurplerobe_l0',0), -(4259,4259,'staticobjects/pictures/fprt_ph_painting_eq2_vertical19_ratonga_l0',0), -(4260,4260,'staticobjects/pictures/fprt_ph_painting_eq2_vertical20_skeleton_l0',0), -(4261,4261,'staticobjects/pictures/fprt_ph_painting_eq2_vertical21_troll_l0',0), -(4262,4262,'staticobjects/pictures/fprt_ph_painting_eq2_vertical22_iskar_l0',0), -(4263,4263,'staticobjects/pictures/fprt_ph_painting_eq2_vertical23_highelf_l0',0), -(4264,4264,'staticobjects/pictures/fprt_ph_painting_eq2_vertical24_iskarbystream_l0',0), -(4265,4265,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_blue',1096), -(4266,4266,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_green',1096), -(4267,4267,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_purple',1096), -(4268,4268,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_blue',1096), -(4269,4269,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_green',1096), -(4270,4270,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_purple',1096), -(4271,4271,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_blue',1096), -(4272,4272,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_green',1096), -(4273,4273,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_purple',1096), -(4274,4274,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_blue',1096), -(4275,4275,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_green',1096), -(4276,4276,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal01_cecilwhale_l0',0), -(4277,4277,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal02_scuffle_l0',0), -(4278,4278,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal03_triptich_l0',0), -(4279,4279,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal04_diagram_l0',0), -(4280,4280,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal05_skullbatteringram_l0',0), -(4281,4281,'staticobjects/pictures/fprt_ph_painting_prestige_horizontal06_halloftruth_l0',0), -(4282,4282,'staticobjects/pictures/fprt_ph_painting_prestige_square07_centmale_l0',0), -(4283,4283,'staticobjects/pictures/fprt_ph_painting_prestige_square08_bixiequeen_l0',0), -(4284,4284,'staticobjects/pictures/fprt_ph_painting_prestige_square09_avatarstorms_l0',0), -(4285,4285,'staticobjects/pictures/fprt_ph_painting_prestige_square10_rjtree_l0',0), -(4286,4286,'staticobjects/pictures/fprt_ph_painting_prestige_square11_fireydragon_l0',0), -(4287,4287,'staticobjects/pictures/fprt_ph_painting_prestige_square12_succubus_l0',0), -(4288,4288,'staticobjects/pictures/fprt_ph_painting_prestige_vertical13_treefort_l0',0), -(4289,4289,'staticobjects/pictures/fprt_ph_painting_prestige_vertical14_angryfalls_l0',0), -(4290,4290,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_emerald_dawn_corrupt',1096), -(4291,4291,'staticobjects/pictures/fprt_ph_painting_prestige_vertical15_warrior_l0',0), -(4292,4292,'staticobjects/pictures/fprt_ph_painting_prestige_vertical16_qeynosmap_l0',0), -(4293,4293,'staticobjects/pictures/fprt_ph_painting_prestige_vertical17_freeportmap_l0',0), -(4294,4294,'staticobjects/pictures/fprt_ph_painting_prestige_vertical18_fiestyhalfling_l0',0), -(4295,4295,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_purple_fx',1096), -(4296,4296,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_blue_fx',1096), -(4297,4297,'accessories/wieldable_items/weapons/exp08/1h_crush/club_crystalline_green_fx',1096), -(4298,4298,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_purple_fx',1096), -(4299,4299,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_blue_fx',1096), -(4300,4300,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline_green_fx',1096), -(4301,4301,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_purple_fx',1096), -(4302,4302,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_blue_fx',1096), -(4303,4303,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_crystalline_green_fx',1096), -(4304,4304,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_purple_fx',1096), -(4305,4305,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_blue_fx',1096), -(4306,4306,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_crystalline_green_fx',1096), -(4307,4307,'accessories/wearable_items/cloak/exp08/cloak_artisan_fire',1096), -(4308,4308,'creatures/mounts/pegasus_mount/pegasus_mount_black',1096), -(4309,4309,'_exp04/tool_users/drachnid_queen_drunder',1096), -(4310,4310,'_exp04/tool_users/drachnid_female_brown_chain',1096), -(4311,4311,'creatures/monsters/roper_crystal_green',1096), -(4312,4312,'creatures/monsters/roper_crystal_blue',1096), -(4313,4313,'creatures/monsters/roper_crystal_blue_epic',1096), -(4314,4314,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_light_04',1096), -(4315,4315,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_king_armored_dark',1096), -(4316,4316,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_king_armored_light',1096), -(4317,4317,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_dark_01',1096), -(4318,4318,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_dark_02',1096), -(4319,4319,'staticobjects/pictures/qey_ph_painting_eq1_horizontal01_guardsmonument_l0',0), -(4320,4320,'staticobjects/pictures/qey_ph_painting_eq1_horizontal02_dragon_l0',0), -(4321,4321,'staticobjects/pictures/qey_ph_painting_eq1_horizontal03_hallwayguards_l0',0), -(4322,4322,'staticobjects/pictures/qey_ph_painting_eq1_horizontal04_evilhouse_l0',0), -(4323,4323,'staticobjects/pictures/qey_ph_painting_eq1_horizontal05_redbuilding_l0',0), -(4324,4324,'staticobjects/pictures/qey_ph_painting_eq1_horizontal06_reddragon_l0',0), -(4325,4325,'staticobjects/pictures/qey_ph_painting_eq1_horizontal07_blackburrow_l0',0), -(4326,4326,'staticobjects/pictures/qey_ph_painting_eq1_horizontal08_treehouse_l0',0), -(4327,4327,'staticobjects/pictures/qey_ph_painting_eq1_horizontal09_bluecastle_l0',0), -(4328,4328,'staticobjects/pictures/qey_ph_painting_eq1_horizontal10_redcourtyard_l0',0), -(4329,4329,'staticobjects/pictures/qey_ph_painting_eq1_horizontal11_redfountain_l0',0), -(4330,4330,'staticobjects/pictures/qey_ph_painting_eq1_horizontal12_temple_l0',0), -(4331,4331,'staticobjects/pictures/qey_ph_painting_eq1_square25_castleonmountain_l0',0), -(4332,4332,'staticobjects/pictures/qey_ph_painting_eq1_square26_purpleskull_l0',0), -(4333,4333,'staticobjects/pictures/qey_ph_painting_eq1_square27_rainonguards_l0',0), -(4334,4334,'staticobjects/pictures/qey_ph_painting_eq1_square28_halassign_l0',0), -(4335,4335,'staticobjects/pictures/qey_ph_painting_eq1_square29_bluedragon_l0',0), -(4336,4336,'staticobjects/pictures/qey_ph_painting_eq1_square30_bloodyfrogs_l0',0), -(4337,4337,'staticobjects/pictures/qey_ph_painting_eq1_square31_torchincave_l0',0), -(4338,4338,'staticobjects/pictures/qey_ph_painting_eq1_square32_elephanthuts_l0',0), -(4339,4339,'staticobjects/pictures/qey_ph_painting_eq1_square33_buildingwithvines_l0',0), -(4340,4340,'staticobjects/pictures/qey_ph_painting_eq1_square34_qeynosentrance_l0',0), -(4341,4341,'staticobjects/pictures/qey_ph_painting_eq1_square35_catwalk_l0',0), -(4342,4342,'staticobjects/pictures/qey_ph_painting_eq1_square36_skullentrance_l0',0), -(4343,4343,'staticobjects/pictures/qey_ph_painting_eq1_vertical13_candleswithsymbol_l0',0), -(4344,4344,'staticobjects/pictures/qey_ph_painting_eq1_vertical14_sumoguard_l0',0), -(4345,4345,'staticobjects/pictures/qey_ph_painting_eq1_vertical15_lizardwithape_l0',0), -(4346,4346,'staticobjects/pictures/qey_ph_painting_eq1_vertical16_manatdock_l0',0), -(4347,4347,'staticobjects/pictures/qey_ph_painting_eq1_vertical17_eyetemple_l0',0), -(4348,4348,'staticobjects/pictures/qey_ph_painting_eq1_vertical18_floatingbuilding_l0',0), -(4349,4349,'staticobjects/pictures/qey_ph_painting_eq1_vertical19_floatingbuildingchains_l0',0), -(4350,4350,'staticobjects/pictures/qey_ph_painting_eq1_vertical20_evildragonentrance_l0',0), -(4351,4351,'staticobjects/pictures/qey_ph_painting_eq1_vertical21_hangingcorpse_l0',0), -(4352,4352,'staticobjects/pictures/qey_ph_painting_eq1_vertical22_citadel_l0',0), -(4353,4353,'staticobjects/pictures/qey_ph_painting_eq1_vertical23_greenmonument_l0',0), -(4354,4354,'staticobjects/pictures/qey_ph_painting_eq1_vertical24_statuewithclaymore_l0',0), -(4355,4355,'staticobjects/pictures/qey_ph_painting_eq2_horizontal01_falls_l0',0), -(4356,4356,'staticobjects/pictures/qey_ph_painting_eq2_horizontal02_treessunset_l0',0), -(4357,4357,'staticobjects/pictures/qey_ph_painting_eq2_horizontal03_trolllizard_l0',0), -(4358,4358,'staticobjects/pictures/qey_ph_painting_eq2_horizontal04_lakefish_l0',0), -(4359,4359,'staticobjects/pictures/qey_ph_painting_eq2_horizontal05_towerssunset_l0',0), -(4360,4360,'staticobjects/pictures/qey_ph_painting_eq2_horizontal06_sunsetlaketrees_l0',0), -(4361,4361,'staticobjects/pictures/qey_ph_painting_eq2_horizontal07_sunsettrees_l0',0), -(4362,4362,'staticobjects/pictures/qey_ph_painting_eq2_horizontal08_freeportskyline_l0',0), -(4363,4363,'staticobjects/pictures/qey_ph_painting_eq2_horizontal09_fightingfountain_l0',0), -(4364,4364,'staticobjects/pictures/qey_ph_painting_eq2_horizontal10_foreststream_l0',0), -(4365,4365,'staticobjects/pictures/qey_ph_painting_eq2_horizontal11_nightsky_l0',0), -(4366,4366,'staticobjects/pictures/qey_ph_painting_eq2_horizontal12_troops_l0',0), -(4367,4367,'staticobjects/pictures/qey_ph_painting_eq2_square25_wasps_l0',0), -(4368,4368,'staticobjects/pictures/qey_ph_painting_eq2_square26_moat_l0',0), -(4369,4369,'staticobjects/pictures/qey_ph_painting_eq2_square27_ratogre_l0',0), -(4370,4370,'staticobjects/pictures/qey_ph_painting_eq2_square28_zombie_l0',0), -(4371,4371,'staticobjects/pictures/qey_ph_painting_eq2_square29_wolfrivervale_l0',0), -(4372,4372,'staticobjects/pictures/qey_ph_painting_eq2_square30_waterhouse_l0',0), -(4373,4373,'staticobjects/pictures/qey_ph_painting_eq2_square31_guardhouse_l0',0), -(4374,4374,'staticobjects/pictures/qey_ph_painting_eq2_square32_lizard_l0',0), -(4375,4375,'staticobjects/pictures/qey_ph_painting_eq2_square33_treeisland_l0',0), -(4376,4376,'staticobjects/pictures/qey_ph_painting_eq2_square34_kneelingattorch_l0',0), -(4377,4377,'staticobjects/pictures/qey_ph_painting_eq2_square35_spire_l0',0), -(4378,4378,'staticobjects/pictures/qey_ph_painting_eq2_square36_qeynoscottage_l0',0), -(4379,4379,'staticobjects/pictures/qey_ph_painting_eq2_vertical13_forest_l0',0), -(4380,4380,'staticobjects/pictures/qey_ph_painting_eq2_vertical14_kerraaquaduct_l0',0), -(4381,4381,'staticobjects/pictures/qey_ph_painting_eq2_vertical15_forestwoodelf_l0',0), -(4382,4382,'staticobjects/pictures/qey_ph_painting_eq2_vertical16_ogrewithfairy_l0',0), -(4383,4383,'staticobjects/pictures/qey_ph_painting_eq2_vertical17_statuewithcandles_l0',0), -(4384,4384,'staticobjects/pictures/qey_ph_painting_eq2_vertical18_kerranpurplerobe_l0',0), -(4385,4385,'staticobjects/pictures/qey_ph_painting_eq2_vertical19_ratonga_l0',0), -(4386,4386,'staticobjects/pictures/qey_ph_painting_eq2_vertical20_skeleton_l0',0), -(4387,4387,'staticobjects/pictures/qey_ph_painting_eq2_vertical21_troll_l0',0), -(4388,4388,'staticobjects/pictures/qey_ph_painting_eq2_vertical22_iskar_l0',0), -(4389,4389,'staticobjects/pictures/qey_ph_painting_eq2_vertical23_highelf_l0',0), -(4390,4390,'staticobjects/pictures/qey_ph_painting_eq2_vertical24_iskarbystream_l0',0), -(4391,4391,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_dark_03',1096), -(4392,4392,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_dark_04',1096), -(4393,4393,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_light_01',1096), -(4394,4394,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_light_02',1096), -(4395,4395,'_exp08/characters/tool_users/aviak_armored/aviak_eagle_warrior_armored_light_03',1096), -(4396,4396,'_exp04/tool_users/drachnid_male_crystal',1096), -(4397,4397,'accessories/wieldable_items/weapons/exp07/2h_sword/goth_scythe_2_hand_01_pc',1096), -(4398,4398,'creatures/monsters/hoovedcarnivore_demonic',1096), -(4399,4399,'_exp07/objects/crystalcaverns/exp07_dun_crystalcavern_crystal_dpo01_blue',1096), -(4400,4400,'_exp07/objects/crystalcaverns/exp07_dun_crystalcavern_crystal_dpo01_green',1096), -(4401,4401,'_exp07/objects/crystalcaverns/exp07_dun_crystalcavern_crystal_dpo01_purple',1096), -(4402,4402,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_silver_scimitar',1096), -(4403,4403,'accessories/wieldable_items/weapons/exp08/1h_pierce/pick_snowchipper',1096), -(4404,4404,'staticobjects/pictures/qey_ph_painting_prestige_horizontal01_cecilwhale_l0',0), -(4405,4405,'staticobjects/pictures/qey_ph_painting_prestige_horizontal02_scuffle_l0',0), -(4406,4406,'staticobjects/pictures/qey_ph_painting_prestige_horizontal03_triptich_l0',0), -(4407,4407,'staticobjects/pictures/qey_ph_painting_prestige_horizontal04_diagram_l0',0), -(4408,4408,'staticobjects/pictures/qey_ph_painting_prestige_horizontal05_skullbatteringram_l0',0), -(4409,4409,'staticobjects/pictures/qey_ph_painting_prestige_horizontal06_halloftruth_l0',0), -(4410,4410,'staticobjects/pictures/qey_ph_painting_prestige_square07_centmale_l0',0), -(4411,4411,'staticobjects/pictures/qey_ph_painting_prestige_square08_bixiequeen_l0',0), -(4412,4412,'staticobjects/pictures/qey_ph_painting_prestige_square09_avatarstorms_l0',0), -(4413,4413,'staticobjects/pictures/qey_ph_painting_prestige_square10_rjtree_l0',0), -(4414,4414,'staticobjects/containers/dpo_oblost_pot01_brkn_pice1',1096), -(4415,4415,'staticobjects/pictures/qey_ph_painting_prestige_square11_fireydragon_l0',0), -(4416,4416,'staticobjects/containers/dpo_oblost_pot02_brkn_piec2',1096), -(4417,4417,'staticobjects/pictures/qey_ph_painting_prestige_square12_succubus_l0',0), -(4418,4418,'accessories/wearable_items/cloak/exp08/cloak_tartan_greenred',1096), -(4419,4419,'staticobjects/pictures/qey_ph_painting_prestige_vertical13_treefort_l0',0), -(4420,4420,'staticobjects/pictures/qey_ph_painting_prestige_vertical14_angryfalls_l0',0), -(4421,4421,'staticobjects/pictures/qey_ph_painting_prestige_vertical15_warrior_l0',0), -(4422,4422,'staticobjects/pictures/qey_ph_painting_prestige_vertical16_qeynosmap_l0',0), -(4423,4423,'staticobjects/pictures/qey_ph_painting_prestige_vertical17_freeportmap_l0',0), -(4424,4424,'staticobjects/pictures/qey_ph_painting_prestige_vertical18_fiestyhalfling_l0',0), -(4425,4425,'projectiles/spell_rock_ball',0), -(4426,4426,'projectiles/spell_skull_dark',0), -(4427,4427,'staticobjects/wizard_spires/base_circle_1',0), -(4428,4428,'staticobjects/wizard_spires/chunk_glow_1',0), -(4429,4429,'staticobjects/wizard_spires/chunk_glow_2',0), -(4430,4430,'staticobjects/wizard_spires/chunk_glow_3',0), -(4431,4431,'staticobjects/wizard_spires/chunk_pointy_1',0), -(4432,4432,'staticobjects/wizard_spires/fully_destroyed',0), -(4433,4433,'staticobjects/wizard_spires/single_spire_1',0), -(4434,4434,'staticobjects/bottles/floor_bottle_any_distiller01',0), -(4435,4435,'staticobjects/carts/floor_cart_any_display01',0), -(4436,4436,'staticobjects/cauldron/floor_cauldron_any_black01',0), -(4437,4437,'staticobjects/cauldron/floor_cauldron_any_face01',0), -(4438,4438,'staticobjects/chairs/floor_chair_any_skeletal01',0), -(4439,4439,'staticobjects/chests/floor_box_any_collection01',0), -(4440,4440,'staticobjects/chests/floor_box_any_collection02',0), -(4441,4441,'staticobjects/containers/floor_tray_human_incenseburner01',0), -(4442,4442,'staticobjects/containers/floor_vase_any_reflective01',0), -(4443,4443,'staticobjects/containers/floor_vase_any_weaponholder01',0), -(4444,4444,'staticobjects/crystals/floor_orb_human_ornate01',0), -(4445,4445,'staticobjects/games/floor_chessboard_any_ornate01',0), -(4446,4446,'staticobjects/general/floor_pedestal_any_lionpalm01',0), -(4447,4447,'staticobjects/mirrors/floor_mirror_any_desktop01',0), -(4448,4448,'staticobjects/mirrors/wall_mirror_any_ornate01',0), -(4449,4449,'staticobjects/mirrors/wall_mirror_any_ornate02',0), -(4450,4450,'staticobjects/monuments/floor_marker_any_windstalker01',0), -(4451,4451,'staticobjects/monuments/floor_pool_human_divin01',0), -(4452,4452,'staticobjects/musical/floor_harpl_human_ornate01',0), -(4453,4453,'staticobjects/podium/floor_podium_any_chanting02',0), -(4454,4454,'staticobjects/posts/floor_post_any_skulls01',0), -(4455,4455,'staticobjects/racks/floor_rack_any_weapon01',0), -(4456,4456,'staticobjects/relics/floor_box_any_puzzle01',0), -(4457,4457,'staticobjects/relics/floor_orb_any_holder01',0), -(4458,4458,'staticobjects/relics/floor_ornament_any_daggerskull01',0), -(4459,4459,'staticobjects/relics/floor_sword_any_magic01',0), -(4460,4460,'staticobjects/rugs/floor_rug_any_bear01',0), -(4461,4461,'staticobjects/shop/floor_displalycase_any_ornate01',0), -(4462,4462,'staticobjects/statues/floor_statue_any_fiend01',0), -(4463,4463,'staticobjects/statues/floor_statue_any_soldier01',0), -(4464,4464,'staticobjects/statues/floor_statue_orc_kight01',0), -(4465,4465,'staticobjects/statues/floor_statue_troll_tiki01',0), -(4466,4466,'staticobjects/torture_chamber/floor_casket_any_ironmaiden01',0), -(4467,4467,'staticobjects/trainingdummy/floor_dummy_any_training01',0), -(4468,4468,'staticobjects/weapons/floor_staff_any_eagle01',0), -(4469,4469,'staticobjects/weapons/wall_bow_any_ornate01',0), -(4470,4470,'staticobjects/containers/floor_flask_any_glass01',0), -(4471,4471,'projectiles/spell_wavey_neg',0), -(4472,4472,'staticobjects/cages/solusekseye_hanging_cage_open',0), -(4473,4473,'staticobjects/rubble/debris_sewer_00',0), -(4474,4474,'staticobjects/rubble/debris_sewer_01',0), -(4475,4475,'staticobjects/rubble/debris_sewer_02',0), -(4476,4476,'staticobjects/rubble/debris_sewer_03',0), -(4477,4477,'staticobjects/rubble/debris_sewer_04',0), -(4478,4478,'staticobjects/transports/platform',0), -(4479,4479,'staticobjects/artifact/artifact_location',0), -(4480,4480,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_capped_ornate',0), -(4481,4481,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_capped_plain',0), -(4482,4482,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_capped_runic',0), -(4483,4483,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_capped_rusty',0), -(4484,4484,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_ornate',0), -(4485,4485,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_plain',0), -(4486,4486,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_runic',0), -(4487,4487,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_rusty',0), -(4488,4488,'accessories/wieldable_items/weapons/spear/one_handed_spear/assegai_ornate',0), -(4489,4489,'accessories/wieldable_items/weapons/spear/one_handed_spear/assegai_plain',0), -(4490,4490,'accessories/wieldable_items/weapons/spear/one_handed_spear/assegai_runic',0), -(4491,4491,'accessories/wieldable_items/weapons/spear/one_handed_spear/assegai_rusty',0), -(4492,4492,'accessories/wieldable_items/weapons/spear/one_handed_spear/barbed_spear_ornate',0), -(4493,4493,'accessories/wieldable_items/weapons/spear/one_handed_spear/barbed_spear_plain',0), -(4494,4494,'accessories/wieldable_items/weapons/spear/one_handed_spear/barbed_spear_runic',0), -(4495,4495,'accessories/wieldable_items/weapons/spear/one_handed_spear/barbed_spear_rusty',0), -(4496,4496,'creatures/monsters/darathar',0), -(4497,4497,'staticobjects/rocks/solusekseye_cluster',0), -(4498,4498,'staticobjects/solusekseye_elevator/base',0), -(4499,4499,'staticobjects/solusekseye_elevator/handle',0), -(4500,4500,'staticobjects/fires/plane_of_fire',0), -(4501,4501,'staticobjects/fires/plane_of_fire_boat',0), -(4502,4502,'accessories/wieldable_items/weapons/great_sword/claymore_sword/claymore_sword_magic_prismatic_uber',0), -(4503,4503,'accessories/wieldable_items/weapons/hammer/sceptre/sceptre_magic_prismatic_uber',0), -(4504,4504,'accessories/wieldable_items/weapons/staff/fighting_batons/fighting_batons_magic_prismatic_uber',0), -(4505,4505,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_acid_uber',0), -(4506,4506,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_electric_uber',0), -(4507,4507,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_fire_uber',0), -(4508,4508,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_glow_white_uber',0), -(4509,4509,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_ice_uber',0), -(4510,4510,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_lava_uber',0), -(4511,4511,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_plasma_uber',0), -(4512,4512,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_poison_green_uber',0), -(4513,4513,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_prismatic_uber',0), -(4514,4514,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_runes_uber',0), -(4515,4515,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_sparks_green_uber',0), -(4516,4516,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_sparks_red_uber',0), -(4517,4517,'accessories/wearable_items/cloak/exp08/cloak_tartan_bluefur',1096), -(4518,4518,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_stone_uber',0), -(4519,4519,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_water_uber',0), -(4520,4520,'accessories/wieldable_items/weapons/sword/short_sword/short_sword_magic_prismatic_uber',0), -(4521,4521,'accessories/wieldable_items/weapons/talisman/wand/wand_magic_prismatic_uber',0), -(4522,4522,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe_magic_prismatic_uber',0), -(4523,4523,'accessories/wieldable_items/weapons/great_axe/doubleheaded_axe/double_axe_magic_prismatic_uber',0), -(4524,4524,'accessories/wieldable_items/weapons/hammer/battlehammer/battlehammer_magic_prismatic_uber',0), -(4525,4525,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_magic_prismatic_uber',0), -(4526,4526,'accessories/wieldable_items/weapons/hammer/mace/mace_magic_prismatic_uber',0), -(4527,4527,'creatures/monsters/hellhound',0), -(4528,4528,'creatures/monsters/hellhound_lava',0), -(4529,4529,'staticobjects/lab/floor_beaker_iksar_capped_redgoo01',0), -(4530,4530,'staticobjects/liveevent/tinkerfest/dpo_panel_porthole',1096), -(4531,4531,'_exp01/characters/monsters/beetle_dune',0), -(4532,4532,'_exp01/characters/monsters/scorpion_dune',0), -(4533,4533,'_exp01/characters/monsters/scorpion_fire',0), -(4534,4534,'_exp01/characters/monsters/spider_dune',0), -(4535,4535,'creatures/tu/skeleton_mage',0), -(4536,4536,'creatures/tu/skeleton_mystic',0), -(4537,4537,'creatures/tu/skeleton_paladin',0), -(4538,4538,'creatures/tu/skeleton_priest',0), -(4539,4539,'creatures/tu/skeleton_sergeant',0), -(4540,4540,'creatures/tu/skeleton_sergeant_paladin',0), -(4541,4541,'creatures/tu/skeleton_sergeant_rusty',0), -(4542,4542,'creatures/tu/skeleton_warrior',0), -(4543,4543,'creatures/tu/skeleton_warrior_rusty',0), -(4544,4544,'staticobjects/dpo_invisible_wall/invisible_wall_thick',0), -(4545,4545,'creatures/monsters/fleshgoyle',0), -(4546,4546,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_blood_uber',0), -(4547,4547,'creatures/tu/reverant',0), -(4548,4548,'creatures/tu/reverant_lesser',0), -(4549,4549,'staticobjects/liveevent/tinkerfest/dpo_panel_rusty_quarters',1096), -(4550,4550,'staticobjects/mushroom/mushroom_spotted_green',0), -(4551,4551,'staticobjects/mushroom/mushroom_spotted_purple',0), -(4552,4552,'staticobjects/vines/vines_01',0), -(4553,4553,'staticobjects/vines/vines_02',0), -(4554,4554,'staticobjects/vines/vines_03',0), -(4555,4555,'staticobjects/vines/vines_04',0), -(4556,4556,'staticobjects/vines/vines_up_01',0), -(4557,4557,'creatures/tu/skeleton_king_greater',0), -(4558,4558,'creatures/tu/skeleton_king_lesser',0), -(4559,4559,'creatures/tu/skeleton_king_paladin_greater',0), -(4560,4560,'creatures/tu/skeleton_king_paladin_lesser',0), -(4561,4561,'creatures/tu/skeleton_king_ranger_greater',0), -(4562,4562,'creatures/tu/skeleton_king_ranger_lesser',0), -(4563,4563,'accessories/wieldable_items/weapons/sword/vampire_sword/vampire_sword_plain',0), -(4564,4564,'animatedobjects/vases/ton_vase_breakable',0), -(4565,4565,'accessories/wearable_items/leather/artifact/low/legs_noskirt',0), -(4566,4566,'accessories/wearable_items/leather/artifact/medium/legs_noskirt',0), -(4567,4567,'accessories/wearable_items/leather/common/high/legs_noskirt',0), -(4568,4568,'accessories/wearable_items/leather/common/low/legs_noskirt',0), -(4569,4569,'accessories/wearable_items/leather/common/medium/legs_noskirt',0), -(4570,4570,'accessories/wearable_items/leather/uncommon/high/legs_noskirt',0), -(4571,4571,'accessories/wearable_items/leather/uncommon/low/legs_noskirt',0), -(4572,4572,'accessories/wearable_items/leather/uncommon/medium/legs_noskirt',0), -(4573,4573,'accessories/wearable_items/vanguard/common/high/legs_noskirt',0), -(4574,4574,'accessories/wearable_items/vanguard/common/high/shoulders_nopauldrons',0), -(4575,4575,'accessories/wearable_items/vanguard/common/low/legs_noskirt',0), -(4576,4576,'accessories/wearable_items/vanguard/common/low/shoulders_nopauldrons',0), -(4577,4577,'accessories/wearable_items/vanguard/common/medium/legs_noskirt',0), -(4578,4578,'accessories/wearable_items/vanguard/common/medium/shoulders_nopauldrons',0), -(4579,4579,'accessories/wearable_items/vanguard/rare/low/legs_noskirt',0), -(4580,4580,'accessories/wearable_items/vanguard/rare/low/shoulders_nopauldrons',0), -(4581,4581,'accessories/wearable_items/vanguard/rare/medium/legs_noskirt',0), -(4582,4582,'accessories/wearable_items/vanguard/rare/medium/shoulders_nopauldrons',0), -(4583,4583,'accessories/wearable_items/vanguard/uncommon/high/legs_noskirt',0), -(4584,4584,'accessories/wearable_items/vanguard/uncommon/high/shoulders_nopauldrons',0), -(4585,4585,'accessories/wearable_items/vanguard/uncommon/low/legs_noskirt',0), -(4586,4586,'accessories/wearable_items/vanguard/uncommon/low/shoulders_nopauldrons',0), -(4587,4587,'accessories/wearable_items/vanguard/uncommon/medium/legs_noskirt',0), -(4588,4588,'accessories/wearable_items/vanguard/uncommon/medium/shoulders_nopauldrons',0), -(4589,4589,'accessories/wearable_items/woven/common/high/legs_noskirt',0), -(4590,4590,'accessories/wearable_items/woven/common/low/legs_noskirt',0), -(4591,4591,'accessories/wearable_items/woven/common/medium/legs_noskirt',0), -(4592,4592,'accessories/wearable_items/woven/rare/low/legs_noskirt',0), -(4593,4593,'accessories/wearable_items/woven/uncommon/high/legs_noskirt',0), -(4594,4594,'accessories/wearable_items/woven/uncommon/low/legs_noskirt',0), -(4595,4595,'accessories/wearable_items/woven/uncommon/medium/legs_noskirt',0), -(4596,4596,'accessories/wieldable_items/weapons/axe/kopesh/kopesh_axe_plain',0), -(4597,4597,'accessories/wieldable_items/weapons/sword/khanda_sword/khanda_sword001_plain',0), -(4598,4598,'accessories/wieldable_items/weapons/sword/khanda_sword/khanda_sword002_plain',0), -(4599,4599,'accessories/wieldable_items/weapons/sword/vampire_sword/vampire_sword_ornate',0), -(4600,4600,'staticobjects/liveevent/tinkerfest/dpo_panel_striped_quarters',1096), -(4601,4601,'animatedobjects/sarcophagus/ton_sarcophagus_breakable_boss',0), -(4602,4602,'animatedobjects/sarcophagus/ton_sarcophagus_breakable_common',0), -(4603,4603,'animatedobjects/sarcophagus/ton_sarcophagus_breakable_noble',0), -(4604,4604,'staticobjects/bottles/floor_bottle_any_wine01',0), -(4605,4605,'staticobjects/boxes/floor_storagebox_any_wooden01',0), -(4606,4606,'staticobjects/cauldron/floor_cauldron_darkelf_campfire01',0), -(4607,4607,'staticobjects/chests/floor_treasurechest_any_clean01',0), -(4608,4608,'staticobjects/containers/floor_bucket_orc_bloodore01',0), -(4609,4609,'staticobjects/containers/floor_vase_human_clay03',0), -(4610,4610,'staticobjects/lab/floor_sphereflask_iksar_redgoo01',0), -(4611,4611,'staticobjects/lab/floor_testtuberack_iksar_redgoo01',0), -(4612,4612,'staticobjects/racks/floor_rack_any_clothing01',0), -(4613,4613,'staticobjects/racks/floor_rack_any_clothing02',0), -(4614,4614,'staticobjects/racks/floor_rack_any_weapon02',0), -(4615,4615,'staticobjects/shop/floor_case_any_display01',0), -(4616,4616,'staticobjects/tents/floor_tent_human_closed01',0), -(4617,4617,'staticobjects/tents/floor_tent_human_open01',0), -(4618,4618,'accessories/wieldable_items/weapons/great_sword/scimitar_broad_sword/scimitar_broad_sword001_plain',0), -(4619,4619,'accessories/wieldable_items/weapons/great_sword/scimitar_broad_sword/scimitar_broad_sword001_rusty',0), -(4620,4620,'creatures/monsters/frog_illusion',0), -(4621,4621,'_exp01/characters/tool_users/lizardman_desert_plain',0), -(4622,4622,'_exp01/characters/tool_users/lizardman_desert_priest',0), -(4623,4623,'_exp01/characters/tool_users/lizardman_desert_warrior',0), -(4624,4624,'animatedobjects/walls/breakable_wall_brick',0), -(4625,4625,'staticobjects/statues/statue_of_marr',0), -(4626,4626,'_exp01/characters/tool_users/lizardman_desert_wizard',0), -(4627,4627,'staticobjects/housing_portal_objects/vision_home_skyblade01',1096), -(4628,4628,'staticobjects/housing_portal_objects/vision_home_everfrost_menagerie01',1096), -(4629,4629,'accessories/wieldable_items/weapons/axe/small_dwarf/small_dwarf_axe_plain',0), -(4630,4630,'accessories/wieldable_items/weapons/great_axe/large_dwarf_axe/large_dwarf_axe_plain',0), -(4631,4631,'creatures/tu/vampire_darkelf_female_captain',0), -(4632,4632,'creatures/tu/vampire_darkelf_female_mage',0), -(4633,4633,'creatures/tu/vampire_darkelf_female_warrior',0), -(4634,4634,'creatures/tu/vampire_darkelf_male_captain',0), -(4635,4635,'creatures/tu/vampire_darkelf_male_lord',0), -(4636,4636,'creatures/tu/vampire_darkelf_male_mage',0), -(4637,4637,'creatures/tu/vampire_darkelf_male_warrior',0), -(4638,4638,'staticobjects/coffins_and_sarcophagus/shroud_only',0), -(4639,4639,'staticobjects/tables/pedestal_table',0), -(4640,4640,'_exp01/characters/tool_users/lizardman_desert_king',0), -(4641,4641,'accessories/wieldable_items/weapons/hammer/eagle_sceptre/eagle_sceptre_plain',0), -(4642,4642,'animatedobjects/walls/breakable_wall_plain',0), -(4643,4643,'staticobjects/barrels/floor_barrel_any_water01',0), -(4644,4644,'staticobjects/boats/floor_boat_human_fishing01',0), -(4645,4645,'staticobjects/books/floor_books_halfling_stack01',0), -(4646,4646,'staticobjects/books/floor_books_halfling_stack02',0), -(4647,4647,'staticobjects/boxes/floor_collectionbox_any_wood01',0), -(4648,4648,'staticobjects/carts/floor_displaycart_any_closed01',0), -(4649,4649,'staticobjects/containers/floor_bucket_halfling_fish01',0), -(4650,4650,'staticobjects/containers/floor_bucket_orc_ore01',0), -(4651,4651,'staticobjects/racks/floor_rack_any_weapon03',0), -(4652,4652,'staticobjects/rocks/fallengate_rock01',0), -(4653,4653,'staticobjects/rocks/floor_stones_any_wall01',0), -(4654,4654,'staticobjects/shop/floor_display_halfling_armor01',0), -(4655,4655,'staticobjects/signs/general/floor_signs_elf_roadmarker01',0), -(4656,4656,'staticobjects/tents/nekf_tent_large_purple001',0), -(4657,4657,'staticobjects/dpo_invisible_wall/invisible_bridge',0), -(4658,4658,'staticobjects/chests/floor_chest_any_fancybox01',0), -(4659,4659,'staticobjects/chests/floor_chest_any_flattop01',0), -(4660,4660,'_exp01/characters/monsters/cobra_bone',0), -(4661,4661,'_exp01/characters/monsters/cobra_desert',0), -(4662,4662,'_exp01/characters/monsters/cobra_iron',0), -(4663,4663,'staticobjects/rocks/floor_stones_any_pile01',0), -(4664,4664,'_exp01/characters/monsters/snake_bone',0), -(4665,4665,'staticobjects/ap1_mini_entrances/door01',0), -(4666,4666,'staticobjects/ap1_mini_entrances/door02',0), -(4667,4667,'staticobjects/ap1_mini_entrances/door03vdl',0), -(4668,4668,'staticobjects/ap1_mini_entrances/mound01',0), -(4669,4669,'staticobjects/ap1_mini_entrances/mound02',0), -(4670,4670,'staticobjects/ap1_mini_entrances/mound03',0), -(4671,4671,'animatedobjects/walls/breakable_wall_plain_small',0), -(4672,4672,'ec/npc/goblin_zombie',0), -(4673,4673,'ec/npc/goblin_zombie_aqua',0), -(4674,4674,'staticobjects/rocks/brown_rock_large',0), -(4675,4675,'staticobjects/wood/wood_plank01',0), -(4676,4676,'staticobjects/wood/wood_plank02',0), -(4677,4677,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield_magic_ether_flame_medium',0), -(4678,4678,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield_magic_ice_lesser',0), -(4679,4679,'accessories/wieldable_items/shields/kite_shield/metal_kite/metal_kite_shield_magic_ice_medium',0), -(4680,4680,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield_magic_prismatic_lesser',0), -(4681,4681,'accessories/wieldable_items/shields/kite_shield/wooden_kite/wooden_kite_shield_magic_prismatic_uber',0), -(4682,4682,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched_magic_fire_lesser',0), -(4683,4683,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched_magic_fire_medium',0), -(4684,4684,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched_magic_fire_uber',0), -(4685,4685,'animatedobjects/walls/breakable_wall_plain_collision',0), -(4686,4686,'animatedobjects/walls/breakable_wall_plain_small_collision',0), -(4687,4687,'accessories/wieldable_items/shields/ghost_shields/metal_kite_shield001_ghost',0), -(4688,4688,'accessories/wieldable_items/shields/ghost_shields/round_shield_etched001_ghost',0), -(4689,4689,'accessories/wieldable_items/shields/ghost_shields/streatched_leather_buckler001_ghost',0), -(4690,4690,'accessories/wieldable_items/shields/ghost_shields/wooden_tower_shield001_ghost',0), -(4691,4691,'accessories/wieldable_items/weapons/ghost_weapons/battlehammer001_ghost',0), -(4692,4692,'accessories/wieldable_items/weapons/ghost_weapons/claws001_ghost',0), -(4693,4693,'accessories/wieldable_items/weapons/ghost_weapons/dagger001_ghost',0), -(4694,4694,'accessories/wieldable_items/weapons/ghost_weapons/double_axe001_ghost',0), -(4695,4695,'accessories/wieldable_items/weapons/ghost_weapons/greatsword001_ghost',0), -(4696,4696,'accessories/wieldable_items/weapons/ghost_weapons/great_spear001_ghost',0), -(4697,4697,'accessories/wieldable_items/weapons/ghost_weapons/hand_axe001_ghost',0), -(4698,4698,'accessories/wieldable_items/weapons/ghost_weapons/long_bow001_ghost',0), -(4699,4699,'accessories/wieldable_items/weapons/ghost_weapons/quarterstaff001_ghost',0), -(4700,4700,'accessories/wieldable_items/weapons/ghost_weapons/rapier001_ghost',0), -(4701,4701,'accessories/wieldable_items/weapons/ghost_weapons/short_spear001_ghost',0), -(4702,4702,'accessories/wieldable_items/weapons/ghost_weapons/short_sword002_ghost',0), -(4703,4703,'accessories/wieldable_items/weapons/ghost_weapons/throwing_hammer001_ghost',0), -(4704,4704,'accessories/wieldable_items/weapons/ghost_weapons/wand001_ghost',0), -(4705,4705,'accessories/wieldable_items/weapons/ghost_weapons/war_hammer001_ghost',0), -(4706,4706,'accessories/wieldable_items/weapons/great_hammer/orc_hammer/orc_hammer_plain',0), -(4707,4707,'staticobjects/artifact/mailboxes/mailbox_home',0), -(4708,4708,'staticobjects/artifact/mailboxes/mailbox_kisok',0), -(4709,4709,'staticobjects/mailboxes/mailbox_home',0), -(4710,4710,'staticobjects/mailboxes/mailbox_kisok',0), -(4711,4711,'_exp01/characters/monsters/cobra_metallic',0), -(4712,4712,'accessories/wieldable_items/weapons/hammer/club_stone/club_stone_plain',0), -(4713,4713,'staticobjects/helmet/crown_tranix_chain_uncommon_medium',0), -(4714,4714,'staticobjects/shield/shiny_brass_shield_round_shield_etched001_runic',0), -(4715,4715,'staticobjects/stein/stein_of_moggok_stein001_runic',0), -(4716,4716,'projectiles/spell_electric_ball_red',0), -(4717,4717,'staticobjects/fences/ant_qeynos_fencepiece01',0), -(4718,4718,'staticobjects/fences/ant_qeynos_fencepiece02',0), -(4719,4719,'staticobjects/fences/ant_qeynos_fencepiece03',0), -(4720,4720,'staticobjects/fences/ant_qeynos_fencepiece04',0), -(4721,4721,'staticobjects/rocks/commonlands_rock',0), -(4722,4722,'staticobjects/tree/fprt_datepalm_02',0), -(4723,4723,'accessories/wearable_items/monk/monk_plain/chest',0), -(4724,4724,'accessories/wearable_items/monk/monk_plain/feet',0), -(4725,4725,'accessories/wearable_items/monk/monk_plain/forearms',0), -(4726,4726,'accessories/wearable_items/monk/monk_plain/head',0), -(4727,4727,'staticobjects/housing_portal_objects/vision_home_gorowyn_5room01',1096), -(4728,4728,'accessories/wearable_items/monk/monk_plain/shoulders',0), -(4729,4729,'staticobjects/rocks/lavastorm_black_rock_pile',0), -(4730,4730,'accessories/wieldable_items/weapons/axe/axe_curved_handle/axe_curved_handle_plain',0), -(4731,4731,'accessories/wearable_items/monk/monk_plain/legs',0), -(4732,4732,'creatures/tu/gnoll_skeleton',0), -(4733,4733,'staticobjects/relics/magic_globe_red',0), -(4734,4734,'staticobjects/ap2_ss_rockslide/rockslide_01',0), -(4735,4735,'staticobjects/ap2_ss_rockslide/rockslide_wall_01',0), -(4736,4736,'accessories/wieldable_items/weapons/great_sword/vampire_greatsword/vampire_greatsword_ornate',0), -(4737,4737,'accessories/wieldable_items/weapons/great_sword/vampire_greatsword/vampire_greatsword_plain',0), -(4738,4738,'designdummy/designdummy',0), -(4739,4739,'_exp01/characters/tool_users/giant_sand_plain_beard',0), -(4740,4740,'_exp01/characters/tool_users/giant_sand_plain_goatee',0), -(4741,4741,'_exp01/characters/tool_users/giant_sand_plain_mustache',0), -(4742,4742,'_exp01/characters/tool_users/giant_sand_plain_none',0), -(4743,4743,'staticobjects/majdul_temp_ph_objects/awning_small001',0), -(4744,4744,'staticobjects/majdul_temp_ph_objects/tapestry001_longceiling',0), -(4745,4745,'_exp01/characters/monsters/crocodile',0), -(4746,4746,'animatedobjects/walls/dc_breakable_wall_plain',0), -(4747,4747,'animatedobjects/walls/dc_breakable_wall_plain_small',0), -(4748,4748,'staticobjects/plants/feerrott_plant_bigleaf',0), -(4749,4749,'staticobjects/plants/feerrott_plant_redtop',0), -(4750,4750,'staticobjects/housing_portal_objects/vision_home_majdul_bottle01',1096), -(4751,4751,'staticobjects/housing_portal_objects/vision_home_majdul_library01',1096), -(4752,4752,'staticobjects/housing_portal_objects/vision_home_mistmoore_5room01',1096), -(4753,4753,'staticobjects/housing_portal_objects/vision_home_neriak_opera01',1096), -(4754,4754,'staticobjects/housing_portal_objects/vision_home_qeynos_dojo01',1096), -(4755,4755,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/skirt',1096), -(4756,4756,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/chest',1096), -(4757,4757,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/feet',1096), -(4758,4758,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/forearms',1096), -(4759,4759,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/hands',1096), -(4760,4760,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/head',1096), -(4761,4761,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/legs',1096), -(4762,4762,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/legs_noskirt',1096), -(4763,4763,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/right',1096), -(4764,4764,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/shoulders',1096), -(4765,4765,'accessories/wearable_items/_exp08/unkown_faction_armor/vanguard/shoulders_nopauldrons',1096), -(4766,4766,'creatures/monsters/wolf_shade_green',1096), -(4767,4767,'ec/npc/goblin_burglar',1096), -(4768,4768,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_goblin1',1096), -(4769,4769,'_exp07/zones/exp07_dun_drunder/dpo_dru_drunder_sullon_sconce01_on',1096), -(4770,4770,'_exp07/zones/exp07_dun_drunder/dpo_dru_drunder_sullon_sconce01_off',1096), -(4771,4771,'accessories/wearable_items/cloak/exp08/cloak_feathered_red',1096), -(4772,4772,'accessories/wearable_items/cloak/exp08/cloak_feathered_parrot1',1096), -(4773,4773,'accessories/wearable_items/cloak/exp08/cloak_feathered_parrot2',1096), -(4774,4774,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_pink_whiteears_bunny_hat',1096), -(4775,4775,'staticobjects/soe_wallet/wheel_of_chance_table_01',1096), -(4776,4776,'staticobjects/soe_wallet/card_table_01',1096), -(4777,4777,'staticobjects/soe_wallet/card_table_empty_01',1096), -(4778,4778,'staticobjects/soe_wallet/cue_ball_black_01',1096), -(4779,4779,'staticobjects/soe_wallet/cue_ball_blue_solid_01',1096), -(4780,4780,'staticobjects/soe_wallet/cue_ball_blue_stripe_01',1096), -(4781,4781,'staticobjects/soe_wallet/cue_ball_green_solid_01',1096), -(4782,4782,'staticobjects/soe_wallet/cue_ball_green_stripe_01',1096), -(4783,4783,'staticobjects/soe_wallet/cue_ball_magenta_solid_01',1096), -(4784,4784,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/pants',1096), -(4785,4785,'staticobjects/soe_wallet/cue_ball_magenta_stripe_01',1096), -(4786,4786,'staticobjects/soe_wallet/cue_ball_orange_solid_01',1096), -(4787,4787,'staticobjects/soe_wallet/cue_ball_orange_stripe_01',1096), -(4788,4788,'staticobjects/soe_wallet/cue_ball_purple_solid_01',1096), -(4789,4789,'staticobjects/soe_wallet/cue_ball_purple_stripe_01',1096), -(4790,4790,'staticobjects/soe_wallet/cue_ball_red_solid_01',1096), -(4791,4791,'staticobjects/soe_wallet/cue_ball_red_stripe_01',1096), -(4792,4792,'staticobjects/soe_wallet/cue_ball_white_01',1096), -(4793,4793,'staticobjects/soe_wallet/cue_ball_yellow_solid_01',1096), -(4794,4794,'staticobjects/soe_wallet/cue_ball_yellow_stripe_01',1096), -(4795,4795,'staticobjects/soe_wallet/cue_rack_01',1096), -(4796,4796,'staticobjects/soe_wallet/cue_stick_01',1096), -(4797,4797,'staticobjects/soe_wallet/deck_of_cards_01',1096), -(4798,4798,'staticobjects/soe_wallet/poker_chips_01',1096), -(4799,4799,'staticobjects/soe_wallet/pool_table_01',1096), -(4800,4800,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_platecupcakes01',1096), -(4801,4801,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_white_chocolate_box',1096), -(4802,4802,'staticobjects/liveevent/frostfell/dpo_bauble_bell_string_lights_green_ceiling',1096), -(4803,4803,'staticobjects/liveevent/frostfell/dpo_bauble_glass_icicle01_blue',1096), -(4804,4804,'staticobjects/liveevent/frostfell/dpo_bauble_glass_icicle01_green',1096), -(4805,4805,'staticobjects/liveevent/frostfell/dpo_bauble_glass_icicle01_red',1096), -(4806,4806,'staticobjects/liveevent/frostfell/dpo_bauble_oblong_bluesilver01',1096), -(4807,4807,'staticobjects/liveevent/frostfell/dpo_bauble_oblong_purplegold01',1096), -(4808,4808,'staticobjects/liveevent/frostfell/dpo_bauble_oblong_redgreen01',1096), -(4809,4809,'staticobjects/liveevent/frostfell/dpo_snowglobe_halas01',1096), -(4810,4810,'staticobjects/liveevent/frostfell/dpo_snowglobe_thurgadin01',1096), -(4811,4811,'staticobjects/liveevent/halloween/dpo_banner_notd_fire',1096), -(4812,4812,'staticobjects/liveevent/halloween/dpo_banner_notd_nightsky',1096), -(4813,4813,'staticobjects/liveevent/halloween/dpo_banner_notd_web_spider',1096), -(4814,4814,'staticobjects/liveevent/halloween/dpo_halloween_hanging_spider01_swinging',1096), -(4815,4815,'staticobjects/liveevent/halloween/holiday_skull_candy_dispenser_01',1096), -(4816,4816,'staticobjects/liveevent/halloween/halfing_display_traps01',1096), -(4817,4817,'staticobjects/halloween/fprt_tombstonea001',1096), -(4818,4818,'staticobjects/soe_wallet/slot_machine_reward_coin',1096), -(4819,4819,'staticobjects/housing_portal_objects/vision_home_freeport01',1096), -(4820,4820,'staticobjects/housing_portal_objects/vision_home_halas01',1096), -(4821,4821,'staticobjects/housing_portal_objects/vision_home_kelethin01',1096), -(4822,4822,'staticobjects/housing_portal_objects/vision_home_majdul01',1096), -(4823,4823,'staticobjects/housing_portal_objects/vision_home_neriak01',1096), -(4824,4824,'staticobjects/housing_portal_objects/vision_home_qeynos01',1096), -(4825,4825,'staticobjects/housing_portal_objects/vision_home_veteran_mistmoore01',1096), -(4826,4826,'_exp08/characters/monsters/wuoshi_decay/wuoshi_decay',1096), -(4827,4827,'_exp08/characters/tool_users/war_generals/war_general_male',1096), -(4828,4828,'staticobjects/mushroom/lf_flora_mushroom_small01',1096), -(4829,4829,'staticobjects/mushroom/lf_flora_mushroom_small02',1096), -(4830,4830,'staticobjects/mushroom/lf_flora_mushroom_small03',1096), -(4831,4831,'staticobjects/mushroom/lf_flora_mushroom_small04',1096), -(4832,4832,'_exp07/zones/exp07_rgn_eastern_wastes/teleport_vision_eastern_wastes_spires',1096), -(4833,4833,'staticobjects/barrels/floor_barrel_any_small02triplesize',1096), -(4834,4834,'staticobjects/weapons/great_spear_ornate001_uprightx10_dpo',1096), -(4835,4835,'creatures/mounts/flying_disc/tinkered_skiff_01',1096), -(4836,4836,'_exp07/objects/vel_dragon_ring_broken',1096), -(4837,4837,'_exp07/objects/vel_dragon_ring_fixed',1096), -(4838,4838,'staticobjects/halloween/dpo_halloween_candy_corn',1096), -(4839,4839,'staticobjects/halloween/dpo_halloween_light_candy_corn',1096), -(4840,4840,'staticobjects/liveevent/frostfell/dpo_holiday_candy_bowl01',1096), -(4841,4841,'staticobjects/liveevent/frostfell/dpo_candy_peppermint01',1096), -(4842,4842,'staticobjects/liveevent/frostfell/dpo_candy_peppermint02',1096), -(4843,4843,'staticobjects/liveevent/frostfell/dpo_candy_rectangle01',1096), -(4844,4844,'staticobjects/liveevent/frostfell/dpo_candy_rectangle01_red',1096), -(4845,4845,'staticobjects/liveevent/frostfell/dpo_candy_rectangle_blue',1096), -(4846,4846,'staticobjects/liveevent/frostfell/dpo_candy_rectangle_green',1096), -(4847,4847,'staticobjects/liveevent/frostfell/dpo_candy_rectangle_red02',1096), -(4848,4848,'staticobjects/liveevent/frostfell/dpo_candy_rectangle_red03',1096), -(4849,4849,'staticobjects/liveevent/frostfell/dpo_candy_rectangle_silver',1096), -(4850,4850,'staticobjects/liveevent/frostfell/dpo_candy_round_blue',1096), -(4851,4851,'staticobjects/liveevent/frostfell/dpo_candy_round_gold',1096), -(4852,4852,'staticobjects/liveevent/frostfell/dpo_candy_round_green',1096), -(4853,4853,'staticobjects/liveevent/frostfell/dpo_candy_round_red',1096), -(4854,4854,'staticobjects/liveevent/frostfell/dpo_candy_round_silver',1096), -(4855,4855,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/skirt',1096), -(4856,4856,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/chest',1096), -(4857,4857,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/feet',1096), -(4858,4858,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/forearms',1096), -(4859,4859,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/hands',1096), -(4860,4860,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/head',1096), -(4861,4861,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/legs',1096), -(4862,4862,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/legs_noskirt',1096), -(4863,4863,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/shoulders',1096), -(4864,4864,'accessories/wearable_items/_exp08/dragon_armor/chain_blue/shoulders_epic',1096), -(4865,4865,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/skirt',1096), -(4866,4866,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/chest',1096), -(4867,4867,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/feet',1096), -(4868,4868,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/forearms',1096), -(4869,4869,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/hands',1096), -(4870,4870,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/head',1096), -(4871,4871,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/legs',1096), -(4872,4872,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/legs_noskirt',1096), -(4873,4873,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/shoulders',1096), -(4874,4874,'accessories/wearable_items/_exp08/dragon_armor/chain_brown/shoulders_epic',1096), -(4875,4875,'accessories/wearable_items/_exp08/dragon_armor/chain_green/skirt',1096), -(4876,4876,'accessories/wearable_items/_exp08/dragon_armor/chain_green/chest',1096), -(4877,4877,'accessories/wearable_items/_exp08/dragon_armor/chain_green/feet',1096), -(4878,4878,'accessories/wearable_items/_exp08/dragon_armor/chain_green/forearms',1096), -(4879,4879,'accessories/wearable_items/_exp08/dragon_armor/chain_green/hands',1096), -(4880,4880,'accessories/wearable_items/_exp08/dragon_armor/chain_green/head',1096), -(4881,4881,'accessories/wearable_items/_exp08/dragon_armor/chain_green/legs',1096), -(4882,4882,'accessories/wearable_items/_exp08/dragon_armor/chain_green/legs_noskirt',1096), -(4883,4883,'accessories/wearable_items/_exp08/dragon_armor/chain_green/shoulders',1096), -(4884,4884,'accessories/wearable_items/_exp08/dragon_armor/chain_green/shoulders_epic',1096), -(4885,4885,'accessories/wearable_items/_exp08/dragon_armor/chain_red/skirt',1096), -(4886,4886,'accessories/wearable_items/_exp08/dragon_armor/chain_red/chest',1096), -(4887,4887,'accessories/wearable_items/_exp08/dragon_armor/chain_red/feet',1096), -(4888,4888,'accessories/wearable_items/_exp08/dragon_armor/chain_red/forearms',1096), -(4889,4889,'accessories/wearable_items/_exp08/dragon_armor/chain_red/hands',1096), -(4890,4890,'accessories/wearable_items/_exp08/dragon_armor/chain_red/head',1096), -(4891,4891,'accessories/wearable_items/_exp08/dragon_armor/chain_red/legs',1096), -(4892,4892,'accessories/wearable_items/_exp08/dragon_armor/chain_red/legs_noskirt',1096), -(4893,4893,'accessories/wearable_items/_exp08/dragon_armor/chain_red/shoulders',1096), -(4894,4894,'_exp01/zones/animated_objects/djn_mirror_translocation',0), -(4895,4895,'_exp01/zones/animated_objects/djn_mirror_translocation_base',0), -(4896,4896,'accessories/wieldable_items/weapons/hammer/mace_obsidian_edged/mace_obsidian_edged_plain',0), -(4897,4897,'_exp01/characters/monsters/dragon_siyamak',0), -(4898,4898,'staticobjects/feerrott_epic02_froglok/firefly_particles',0), -(4899,4899,'staticobjects/feerrott_epic02_froglok/froglok_totem',0), -(4900,4900,'staticobjects/feerrott_epic02_froglok/ogre_pillar_1',0), -(4901,4901,'staticobjects/feerrott_epic02_froglok/ogre_tower',0), -(4902,4902,'staticobjects/feerrott_epic02_froglok/ogre_wall_1',0), -(4903,4903,'staticobjects/feerrott_epic02_froglok/ogre_wall_2',0), -(4904,4904,'staticobjects/feerrott_epic02_froglok/ogre_wall_3',0), -(4905,4905,'staticobjects/feerrott_epic02_froglok/ogre_wall_low_1',0), -(4906,4906,'staticobjects/feerrott_epic02_froglok/ogre_wall_low_2',0), -(4907,4907,'staticobjects/feerrott_epic02_froglok/ogre_wall_low_3',0), -(4908,4908,'staticobjects/feerrott_epic02_froglok/ogre_wall_low_4',0), -(4909,4909,'staticobjects/feerrott_epic02_froglok/ogre_wall_low_5',0), -(4910,4910,'staticobjects/feerrott_epic02_froglok/tent_large',0), -(4911,4911,'staticobjects/feerrott_epic02_froglok/tent_small',0), -(4912,4912,'staticobjects/feerrott_epic02_froglok/tiki_torch',0), -(4913,4913,'staticobjects/feerrott_epic02_froglok/wall_large_1',0), -(4914,4914,'accessories/wieldable_items/weapons/great_spear/scythe/scythe_plain',0), -(4915,4915,'staticobjects/relics/nekcas_eviltrinket_brokentablet001',0), -(4916,4916,'_exp01/characters/monsters/dragon_barakah',0), -(4917,4917,'_exp01/characters/tool_users/dervish_male_peasant',0), -(4918,4918,'_exp01/characters/tool_users/giant_sand_wizard_beard',0), -(4919,4919,'_exp01/characters/tool_users/giant_sand_wizard_combo',0), -(4920,4920,'_exp01/characters/tool_users/giant_sand_wizard_mustache',0), -(4921,4921,'_exp01/characters/tool_users/giant_sand_wizard_plain',0), -(4922,4922,'_exp01/characters/tool_users/dervish_male_peasant_beard',0), -(4923,4923,'staticobjects/ap2/terraporter',0), -(4924,4924,'staticobjects/tables/floor_table_troll_large',0), -(4925,4925,'accessories/wieldable_items/weapons/hammer/mace_eagle_prongs/mace_eagle_prongs_plain',0), -(4926,4926,'staticobjects/brazier/floor_brazier_gnoll',0), -(4927,4927,'_exp01/characters/tool_users/dervish_female_peasant',0), -(4928,4928,'accessories/wearable_items/magus/common/high/hood',0), -(4929,4929,'accessories/wearable_items/_exp08/dragon_armor/chain_red/shoulders_epic',1096), -(4930,4930,'accessories/wearable_items/magus/rare/high/hood',0), -(4931,4931,'staticobjects/ap2/gnoll_totem',0), -(4932,4932,'staticobjects/ap2/gnoll_wall_teeth1',0), -(4933,4933,'staticobjects/ap2/gnoll_wall_teeth2',0), -(4934,4934,'staticobjects/ap2/gnoll_wall_teeth3',0), -(4935,4935,'staticobjects/chairs/gnoll_chair',0), -(4936,4936,'ec/pc/froglok/froglok_female_toadplain',0), -(4937,4937,'ec/pc/froglok/froglok_female_toad',0), -(4938,4938,'ec/pc/froglok/froglok_female_rainbow',0), -(4939,4939,'ec/pc/froglok/froglok_female_leopard',0), -(4940,4940,'ec/pc/froglok/froglok_female_blackgoo',0), -(4941,4941,'ec/pc/froglok/froglok_female_blackglove',0), -(4942,4942,'ec/pc/froglok/froglok_female_black2',0), -(4943,4943,'ec/pc/froglok/froglok_female_black1',0), -(4944,4944,'ec/pc/froglok/froglok_female_albino',0), -(4945,4945,'_exp01/characters/tool_users/orc_desert_worker',0), -(4946,4946,'accessories/wearable_items/ghost/ghost_plate/chest',0), -(4947,4947,'accessories/wearable_items/ghost/ghost_plate/legs',0), -(4948,4948,'accessories/wearable_items/ghost/ghost_plate/feet',0), -(4949,4949,'accessories/wearable_items/ghost/ghost_plate/forearms',0), -(4950,4950,'accessories/wearable_items/ghost/ghost_plate/hands',0), -(4951,4951,'accessories/wearable_items/ghost/ghost_plate/head',0), -(4952,4952,'accessories/wearable_items/ghost/ghost_plate/shoulders',0), -(4953,4953,'ec/pc/froglok/froglok_male_zombie',0), -(4954,4954,'accessories/wearable_items/ghost/ghost_mage/arms',0), -(4955,4955,'accessories/wearable_items/ghost/ghost_mage/chest',0), -(4956,4956,'accessories/wearable_items/ghost/ghost_mage/skirt',0), -(4957,4957,'accessories/wearable_items/ghost/ghost_robes/chest',0), -(4958,4958,'accessories/wearable_items/ghost/ghost_robes/pants',0), -(4959,4959,'accessories/wearable_items/ghost/ghost_robes/skirt',0), -(4960,4960,'accessories/wearable_items/magus/robes/dragon_ornate/hood',0), -(4961,4961,'accessories/wieldable_items/weapons/dagger/embalming_blade/embalming_blade_plain',0), -(4962,4962,'accessories/wieldable_items/weapons/axe/ratskull_hatchet/ratskull_hatchet_plain',0), -(4963,4963,'ec/pc/barbarian/soga_barbarian_female',0), -(4964,4964,'ec/pc/barbarian/soga_barbarian_male',0), -(4965,4965,'ec/pc/darkelf/soga_darkelf_female',0), -(4966,4966,'ec/pc/darkelf/soga_darkelf_male',0), -(4967,4967,'ec/pc/dwarf/soga_dwarf_female',0), -(4968,4968,'ec/pc/dwarf/soga_dwarf_male',0), -(4969,4969,'ec/pc/erudite/soga_erudite_female',0), -(4970,4970,'ec/pc/erudite/soga_erudite_male',0), -(4971,4971,'ec/pc/gnome/soga_gnome_female',0), -(4972,4972,'ec/pc/gnome/soga_gnome_male',0), -(4973,4973,'ec/pc/halfelf/soga_halfelf_female',0), -(4974,4974,'ec/pc/halfelf/soga_halfelf_female_scar01',0), -(4975,4975,'ec/pc/halfelf/soga_halfelf_female_scar02',0), -(4976,4976,'ec/pc/halfelf/soga_halfelf_female_scar03',0), -(4977,4977,'ec/pc/halfelf/soga_halfelf_female_scar04',0), -(4978,4978,'ec/pc/halfelf/soga_halfelf_female_scar05',0), -(4979,4979,'ec/pc/halfelf/soga_halfelf_male',0), -(4980,4980,'ec/pc/halfelf/soga_halfelf_male_scar01',0), -(4981,4981,'ec/pc/halfelf/soga_halfelf_male_scar02',0), -(4982,4982,'ec/pc/halfelf/soga_halfelf_male_scar03',0), -(4983,4983,'ec/pc/halfelf/soga_halfelf_male_scar04',0), -(4984,4984,'ec/pc/halfelf/soga_halfelf_male_scar05',0), -(4985,4985,'ec/pc/halfling/soga_halfling_female',0), -(4986,4986,'ec/pc/halfling/soga_halfling_male',0), -(4987,4987,'ec/pc/highelf/soga_highelf_female',0), -(4988,4988,'ec/pc/highelf/soga_highelf_male',0), -(4989,4989,'ec/pc/human/soga_human_female',0), -(4990,4990,'ec/pc/human/soga_human_male',0), -(4991,4991,'ec/pc/woodelf/soga_woodelf_female',0), -(4992,4992,'ec/pc/woodelf/soga_woodelf_male',0), -(4993,4993,'ec/pc/ogre/soga_ogre_female',0), -(4994,4994,'ec/pc/ogre/soga_ogre_male',0), -(4995,4995,'staticobjects/ladders/orc_tilted_ladder01',0), -(4996,4996,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/skirt',1096), -(4997,4997,'staticobjects/doors/evefrost_snow_large_door',0), -(4998,4998,'staticobjects/doorways/evefrost_snow_large_archway',0), -(4999,4999,'_exp01/characters/tool_users/dervish_male_guard',0), -(5000,5000,'_exp01/characters/tool_users/specter_phantom',0), -(5001,5001,'_exp01/characters/tool_users/specter_phantom_ghost',0), -(5002,5002,'_exp01/characters/tool_users/specter_skeleton',0), -(5003,5003,'_exp01/characters/tool_users/specter_skeleton_ghost',0), -(5004,5004,'_exp01/characters/monsters/dragon_barakah_flying',0), -(5005,5005,'_exp01/characters/monsters/dragon_siyamak_flying',0), -(5006,5006,'_exp01/characters/monsters/monkey',0), -(5007,5007,'staticobjects/land/icefloat',0), -(5008,5008,'animatedobjects/barrels/barrel_plainlarge',0), -(5009,5009,'accessories/wieldable_items/weapons/great_spear/scythe_dragon_tooth/scythe_dragon_tooth_plain',0), -(5010,5010,'_exp01/characters/tool_users/dervish_female_guard',0), -(5011,5011,'animatedobjects/walls/perm_breakable_wall_plain_small',0), -(5012,5012,'animatedobjects/walls/perm_breakable_wall_plain',0), -(5013,5013,'staticobjects/statues/floor_statue_nagafen',0), -(5014,5014,'staticobjects/rocks/perm_boulder01',0), -(5015,5015,'staticobjects/dueling_banner/dueling_banner',0), -(5016,5016,'_exp01/characters/tool_users/cyclops',0), -(5017,5017,'_exp01/characters/tool_users/cyclops_horn1',0), -(5018,5018,'_exp01/characters/tool_users/cyclops_horn2',0), -(5019,5019,'ap02/gnoll_dobermann',0), -(5020,5020,'ap02/rock_crawler',0), -(5021,5021,'_exp01/characters/tool_users/orc_desert_worker_bald',0), -(5022,5022,'_exp01/characters/tool_users/orc_desert_warrior_bald',0), -(5023,5023,'_exp01/characters/tool_users/orc_desert_warrior_bald_round',0), -(5024,5024,'_exp01/characters/tool_users/orc_desert_warrior_bald_square',0), -(5025,5025,'_exp01/characters/tool_users/orc_desert_warrior_helm',0), -(5026,5026,'_exp01/characters/tool_users/orc_desert_warrior_helm_round',0), -(5027,5027,'_exp01/characters/tool_users/orc_desert_warrior_helm_square',0), -(5028,5028,'ec/pc/barbarian/soga_barbarian_female_tattoo01',0), -(5029,5029,'ec/pc/barbarian/soga_barbarian_female_tattoo02',0), -(5030,5030,'ec/pc/barbarian/soga_barbarian_female_tattoo03',0), -(5031,5031,'ec/pc/barbarian/soga_barbarian_female_tattoo04',0), -(5032,5032,'ec/pc/barbarian/soga_barbarian_female_tattoo05',0), -(5033,5033,'ec/pc/barbarian/soga_barbarian_male_tattoo01',0), -(5034,5034,'ec/pc/barbarian/soga_barbarian_male_tattoo02',0), -(5035,5035,'ec/pc/barbarian/soga_barbarian_male_tattoo03',0), -(5036,5036,'ec/pc/barbarian/soga_barbarian_male_tattoo04',0), -(5037,5037,'ec/pc/barbarian/soga_barbarian_male_tattoo05',0), -(5038,5038,'ec/pc/dwarf/soga_dwarf_female_tattoo01',0), -(5039,5039,'ec/pc/dwarf/soga_dwarf_female_tattoo02',0), -(5040,5040,'ec/pc/dwarf/soga_dwarf_female_tattoo03',0), -(5041,5041,'ec/pc/dwarf/soga_dwarf_female_tattoo04',0), -(5042,5042,'ec/pc/dwarf/soga_dwarf_female_tattoo05',0), -(5043,5043,'ec/pc/dwarf/soga_dwarf_male_tattoo01',0), -(5044,5044,'ec/pc/dwarf/soga_dwarf_male_tattoo02',0), -(5045,5045,'ec/pc/dwarf/soga_dwarf_male_tattoo03',0), -(5046,5046,'ec/pc/dwarf/soga_dwarf_male_tattoo04',0), -(5047,5047,'ec/pc/dwarf/soga_dwarf_male_tattoo05',0), -(5048,5048,'ec/pc/dwarf/soga_dwarf_male_tattoo06',0), -(5049,5049,'ec/pc/erudite/soga_erudite_female_tattooevil01',0), -(5050,5050,'ec/pc/erudite/soga_erudite_female_tattooevil02',0), -(5051,5051,'ec/pc/erudite/soga_erudite_female_tattooevil03',0), -(5052,5052,'ec/pc/erudite/soga_erudite_female_tattooevil04',0), -(5053,5053,'ec/pc/erudite/soga_erudite_female_tattooevil05',0), -(5054,5054,'ec/pc/erudite/soga_erudite_female_tattoogood01',0), -(5055,5055,'ec/pc/erudite/soga_erudite_female_tattoogood02',0), -(5056,5056,'ec/pc/erudite/soga_erudite_female_tattoogood03',0), -(5057,5057,'ec/pc/erudite/soga_erudite_female_tattoogood04',0), -(5058,5058,'ec/pc/erudite/soga_erudite_female_tattoogood05',0), -(5059,5059,'ec/pc/erudite/soga_erudite_male_tattooevil01',0), -(5060,5060,'ec/pc/erudite/soga_erudite_male_tattooevil02',0), -(5061,5061,'ec/pc/erudite/soga_erudite_male_tattooevil03',0), -(5062,5062,'ec/pc/erudite/soga_erudite_male_tattooevil04',0), -(5063,5063,'ec/pc/erudite/soga_erudite_male_tattooevil05',0), -(5064,5064,'ec/pc/erudite/soga_erudite_male_tattoogood01',0), -(5065,5065,'ec/pc/erudite/soga_erudite_male_tattoogood02',0), -(5066,5066,'ec/pc/erudite/soga_erudite_male_tattoogood03',0), -(5067,5067,'ec/pc/erudite/soga_erudite_male_tattoogood04',0), -(5068,5068,'ec/pc/erudite/soga_erudite_male_tattoogood05',0), -(5069,5069,'ec/pc/woodelf/soga_woodelf_female_tattoo01',0), -(5070,5070,'ec/pc/woodelf/soga_woodelf_female_tattoo02',0), -(5071,5071,'ec/pc/woodelf/soga_woodelf_female_tattoo03',0), -(5072,5072,'ec/pc/woodelf/soga_woodelf_female_tattoo04',0), -(5073,5073,'ec/pc/woodelf/soga_woodelf_female_tattoo05',0), -(5074,5074,'ec/pc/woodelf/soga_woodelf_female_tattoo06',0), -(5075,5075,'ec/pc/woodelf/soga_woodelf_female_tattoo07',0), -(5076,5076,'ec/pc/woodelf/soga_woodelf_female_tattoo08',0), -(5077,5077,'ec/pc/woodelf/soga_woodelf_male_tattoo01',0), -(5078,5078,'ec/pc/woodelf/soga_woodelf_male_tattoo02',0), -(5079,5079,'ec/pc/woodelf/soga_woodelf_male_tattoo03',0), -(5080,5080,'ec/pc/woodelf/soga_woodelf_male_tattoo04',0), -(5081,5081,'ec/pc/woodelf/soga_woodelf_male_tattoo05',0), -(5082,5082,'ec/pc/woodelf/soga_woodelf_male_tattoo06',0), -(5083,5083,'ec/pc/woodelf/soga_woodelf_male_tattoo07',0), -(5084,5084,'ec/pc/woodelf/soga_woodelf_male_tattoo08',0), -(5085,5085,'_exp01/zones/dungeons/living_tombs/lt_rm02/lt_rm02_fountain01_symbol',0), -(5086,5086,'staticobjects/wood/wood_plank03',0), -(5087,5087,'staticobjects/ap2/gnoll_crystal_wheelbarrow',0), -(5088,5088,'_exp01/zones/regions/sinking_sands/ss_objects/ss_rocks/ss_rocks_group03',0), -(5089,5089,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/chest',1096), -(5090,5090,'_exp01/zones/regions/pillars_of_flame/pf_objects/pf_rock/pf_rock_medium05',0), -(5091,5091,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/feet',1096), -(5092,5092,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/forearms',1096), -(5093,5093,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/hands',1096), -(5094,5094,'_exp01/zones/regions/pillars_of_flame/pf_objects/pf_rock/pf_rock_medium04',0), -(5095,5095,'ap02/hellboar',0), -(5096,5096,'ap02/fungusman',0), -(5097,5097,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/head',1096), -(5098,5098,'ap02/gnoll_overlord',0), -(5099,5099,'_exp01/zones/animated_objects/cr_vase_breakable',0), -(5100,5100,'_exp01/zones/animated_objects/md_vase_breakable',0), -(5101,5101,'_exp01/zones/animated_objects/pf_vase_breakable',0), -(5102,5102,'_exp01/zones/animated_objects/sc_vase_breakable',0), -(5103,5103,'_exp01/zones/animated_objects/ss_vase_breakable',0), -(5104,5104,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/legs',1096), -(5105,5105,'_exp01/zones/regions/sinking_sands/ss_objects/ss_rocks/ss_rocks_group01',0), -(5106,5106,'_exp01/zones/regions/sinking_sands/ss_objects/ss_rocks/ss_rocks_group02',0), -(5107,5107,'_exp01/characters/tool_users/orc_desert_shaman',0), -(5108,5108,'_exp01/characters/tool_users/orc_desert_shaman_bald',0), -(5109,5109,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/legs_noskirt',1096), -(5110,5110,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/shoulders',1096), -(5111,5111,'accessories/wearable_items/_exp08/dragon_armor/chain_shadow/shoulders_epic',1096), -(5112,5112,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/skirt',1096), -(5113,5113,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/chest',1096), -(5114,5114,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/feet',1096), -(5115,5115,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/forearms',1096), -(5116,5116,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/hands',1096), -(5117,5117,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/head',1096), -(5118,5118,'_exp01/characters/tool_users/cyclops_berserker_heavy',0), -(5119,5119,'_exp01/characters/tool_users/cyclops_berserker_light',0), -(5120,5120,'_exp01/characters/tool_users/cyclops_berserker_medium',0), -(5121,5121,'staticobjects/staff/sorcerers_staff001_ornate_upright',0), -(5122,5122,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/legs',1096), -(5123,5123,'ap02/gnoll_overlord_armored',0), -(5124,5124,'ap02/gnoll_dobermann_ghost',0), -(5125,5125,'ap02/gnoll_overlord_armored_ghost',0), -(5126,5126,'ap02/gnoll_overlord_ghost',0), -(5127,5127,'_exp01/zones/objects/mirrors/djin_mirror_teleporter01',0), -(5128,5128,'staticobjects/interiors/scenes/dungeons/adv02/objects/adv02_debris001',0), -(5129,5129,'accessories/wieldable_items/weapons/dagger/dagger/dpo_housing/dagger001_plain_upright',0), -(5130,5130,'_exp01/characters/tool_users/mummy',0), -(5131,5131,'_exp01/characters/tool_users/mummy_pharoh1',0), -(5132,5132,'_exp01/characters/tool_users/mummy_pharoh2',0), -(5133,5133,'_exp01/characters/tool_users/mummy_priest',0), -(5134,5134,'_exp01/characters/tool_users/mummy_soldier',0), -(5135,5135,'_exp01/characters/tool_users/mummy_zombie',0), -(5136,5136,'_exp01/characters/tool_users/mummy_zombie_pharoh1',0), -(5137,5137,'_exp01/characters/tool_users/mummy_zombie_pharoh2',0), -(5138,5138,'_exp01/characters/tool_users/mummy_zombie_priest',0), -(5139,5139,'_exp01/characters/tool_users/mummy_zombie_soldier',0), -(5140,5140,'staticobjects/cobwebs/dpo_spiderweb_corner01',0), -(5141,5141,'staticobjects/cobwebs/dpo_spiderweb_large01',0), -(5142,5142,'staticobjects/cobwebs/dpo_spiderweb_large02',0), -(5143,5143,'staticobjects/cobwebs/dpo_spiderweb_small01',0), -(5144,5144,'staticobjects/cobwebs/dpo_spiderweb_small02',0), -(5145,5145,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/legs_noskirt',1096), -(5146,5146,'_exp01/zones/regions/pillars_of_flame/pf_objects/pf_rock/pf_rock_small01',0), -(5147,5147,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/shoulders',1096), -(5148,5148,'_exp01/zones/objects/containers/drv_container_merch_basketshort01',0), -(5149,5149,'_exp01/zones/objects/containers/ss_crate_small01',0), -(5150,5150,'_exp01/zones/flora/cacti/ss_flora_cacti_med01',0), -(5151,5151,'_exp01/zones/flora/cacti/ss_flora_cacti_multi01',0), -(5152,5152,'_exp01/zones/flora/cacti/ss_flora_cacti_round01',0), -(5153,5153,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_blue/shoulders_epic',1096), -(5154,5154,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/skirt',1096), -(5155,5155,'_exp01/zones/objects/tents/drv_tent_merchant_blue',0), -(5156,5156,'_exp01/zones/objects/tents/drv_tent_merchant_orange',0), -(5157,5157,'_exp01/zones/objects/tents/drv_tent_merchant_red',0), -(5158,5158,'_exp01/zones/objects/tents/drv_tent_merchant_teal',0), -(5159,5159,'_exp01/zones/objects/tents/pf_tent_monk01',0), -(5160,5160,'_exp01/zones/objects/tents/sc_tent_bard01',0), -(5161,5161,'_exp01/zones/objects/tents/ss_tent_nomad_double01',0), -(5162,5162,'_exp01/zones/objects/tents/pf_tent/pf_tent_crude_nomad01',0), -(5163,5163,'_exp01/zones/objects/tents/pf_tent/pf_tent_crude_nomad02',0), -(5164,5164,'_exp01/zones/objects/tents/pf_tent/pf_tent_purple_nomad01',0), -(5165,5165,'_exp01/zones/objects/buckets/cr_bucket_orc_full_meat',0), -(5166,5166,'_exp01/zones/objects/butcher_tools/cr_meat_hanger_orc',0), -(5167,5167,'_exp01/zones/objects/chairs/cr_stool_orc_wood01',0), -(5168,5168,'_exp01/zones/objects/firepits/cr_firepit_orc01',0), -(5169,5169,'_exp01/zones/objects/firepits/cr_signal_fire',0), -(5170,5170,'_exp01/zones/objects/mats/cr_straw_mat_worn01',0), -(5171,5171,'_exp01/zones/objects/mats/cr_straw_mat_worn02',0), -(5172,5172,'_exp01/zones/objects/rubbish/cr_orc_rubbishpile01',0), -(5173,5173,'_exp01/zones/objects/rubbish/cr_orc_rubbishpile02',0), -(5174,5174,'_exp01/zones/objects/eggs/pf_scorpion_egg_group',0), -(5175,5175,'_exp01/zones/objects/eggs/pf_scorpion_egg_group_broken',0), -(5176,5176,'_exp01/characters/tool_users/cyclops_shaman1',0), -(5177,5177,'_exp01/characters/tool_users/cyclops_shaman1_tattoo1',0), -(5178,5178,'_exp01/characters/tool_users/cyclops_shaman1_tattoo2',0), -(5179,5179,'_exp01/characters/tool_users/cyclops_shaman1_tattoo3',0), -(5180,5180,'_exp01/characters/tool_users/cyclops_shaman2',0), -(5181,5181,'_exp01/characters/tool_users/cyclops_shaman2_tattoo1',0), -(5182,5182,'_exp01/characters/tool_users/cyclops_shaman2_tattoo2',0), -(5183,5183,'_exp01/characters/tool_users/cyclops_shaman2_tattoo3',0), -(5184,5184,'_exp01/characters/tool_users/cyclops_shaman3',0), -(5185,5185,'_exp01/characters/tool_users/cyclops_shaman3_tattoo1',0), -(5186,5186,'_exp01/characters/tool_users/cyclops_shaman3_tattoo2',0), -(5187,5187,'_exp01/characters/tool_users/cyclops_shaman3_tattoo3',0), -(5188,5188,'_exp01/zones/objects/musical_instruments/djn_music_mandolin01',0), -(5189,5189,'_exp01/zones/objects/musical_instruments/djn_music_harp01',0), -(5190,5190,'_exp01/characters/tool_users/sand_goblin_worker',0), -(5191,5191,'_exp01/characters/monsters/sphinx',0), -(5192,5192,'_exp01/characters/monsters/sphinx_crio',0), -(5193,5193,'_exp01/characters/monsters/sphinx_hieraco',0), -(5194,5194,'_exp01/characters/monsters/sphinx_zombie',0), -(5195,5195,'_exp01/characters/tool_users/gnolll_anubis',0), -(5196,5196,'_exp01/characters/tool_users/gnolll_anubis_mummy',0), -(5197,5197,'_exp01/zones/objects/doorknocker/md_doorknocker01',0), -(5198,5198,'_exp01/zones/objects/eggs/pf_falconeggs_broken',0), -(5199,5199,'_exp01/zones/objects/eggs/pf_falconeggs_mixed',0), -(5200,5200,'_exp01/zones/objects/eggs/pf_falconeggs_unbroken',0), -(5201,5201,'_exp01/zones/objects/nests/pf_nest_harpy01',0), -(5202,5202,'_exp01/zones/objects/climbables/md_p20_lattice_large01',0), -(5203,5203,'_exp01/zones/objects/climbables/md_p20_oh_med01',0), -(5204,5204,'_exp01/zones/objects/climbables/md_p20_oh_med02',0), -(5205,5205,'_exp01/zones/objects/climbables/md_p20_oh_med03',0), -(5206,5206,'_exp01/zones/objects/climbables/md_p20_oh_small01',0), -(5207,5207,'_exp01/zones/objects/climbables/md_p20_plank_large01',0), -(5208,5208,'_exp01/zones/objects/climbables/md_p20_plank_small01',0), -(5209,5209,'staticobjects/gnomish_devices/cog_table',0), -(5210,5210,'staticobjects/gnomish_devices/crank_machine',0), -(5211,5211,'staticobjects/gnomish_devices/sproket_cluster',0), -(5212,5212,'_exp01/zones/objects/tower_banners/court_banner_blades',0), -(5213,5213,'_exp01/zones/objects/tower_banners/court_banner_dagger',0), -(5214,5214,'_exp01/zones/objects/tower_banners/court_banner_suncoin',0), -(5215,5215,'_exp01/zones/objects/tower_banners/court_banner_truth',0), -(5216,5216,'_exp01/characters/tool_users/minotaur_golden',0), -(5217,5217,'_exp01/characters/monsters/monkey_golden',0), -(5218,5218,'_exp01/characters/tool_users/sand_goblin_warrior',0), -(5219,5219,'_exp01/characters/monsters/harpy',0), -(5220,5220,'_exp01/zones/objects/pottery/drv_vase_ornate_porcelain_large02',0), -(5221,5221,'_exp01/zones/objects/training_items/drv_lashingboard',0), -(5222,5222,'_exp01/zones/objects/rugs/drv_rug_round01',0), -(5223,5223,'_exp01/zones/objects/rugs/drv_rug_square01',0), -(5224,5224,'_exp01/zones/objects/potted_plants/djn_pottedplant_palm01_small_blue',0), -(5225,5225,'_exp01/zones/objects/pillows/djn_pillow_floor_group01',0), -(5226,5226,'_exp01/zones/objects/urns/drv_urn_large02',0), -(5227,5227,'_exp01/zones/objects/urns/drv_urn_small01',0), -(5228,5228,'_exp01/zones/objects/urns/drv_urn_small02',0), -(5229,5229,'_exp01/characters/monsters/naga',0), -(5230,5230,'_exp01/characters/monsters/naga_guardian',0), -(5231,5231,'_exp01/characters/monsters/naga_mummy',0), -(5232,5232,'_exp01/characters/monsters/naga_zombie',0), -(5233,5233,'_exp01/characters/tool_users/genie_male',0), -(5234,5234,'_exp01/characters/tool_users/genie_female',0), -(5235,5235,'_exp01/characters/tool_users/genie_female_bluegold',0), -(5236,5236,'_exp01/characters/tool_users/genie_female_purplepink',0), -(5237,5237,'_exp01/characters/monsters/velociraptor',0), -(5238,5238,'_exp01/zones/objects/pillows/drv_pillow_seat_weights01',0), -(5239,5239,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/chest',1096), -(5240,5240,'_exp01/zones/objects/vases/djn_vase_gold02',0), -(5241,5241,'_exp01/zones/objects/vases/djn_vase_brass02',0), -(5242,5242,'_exp01/zones/objects/basins/djn_basin_water_goldbrass01',0), -(5243,5243,'_exp01/zones/objects/basins/djn_basin_water_steel01',0), -(5244,5244,'_exp01/zones/objects/urns/lt_urn01',0), -(5245,5245,'_exp01/zones/objects/pottery/drv_vase_ornate_large01',0), -(5246,5246,'_exp01/zones/objects/musical_instruments/djn_music_mandolin_broken01',0), -(5247,5247,'_exp01/zones/objects/roomdivider/drv_divider_ornate01',0), -(5248,5248,'_exp01/zones/dungeons/shimmering_citadel/objects/shim_obj_liftplatform01',0), -(5249,5249,'_exp01/characters/monsters/sabertooth',0), -(5250,5250,'_exp01/zones/objects/tables/drv_table_coffee_ornate01',0), -(5251,5251,'_exp01/zones/objects/tapestries/drv_tapestry_short01',0), -(5252,5252,'_exp01/zones/objects/tapestries/drv_tapestry_short02',0), -(5253,5253,'_exp01/zones/objects/tapestries/drv_tapestry_tall01',0), -(5254,5254,'_exp01/zones/objects/tapestries/drv_tapestry_tall02',0), -(5255,5255,'_exp01/zones/objects/chairs/drv_bench_brass_ornate01',0), -(5256,5256,'_exp01/zones/objects/chairs/drv_stool_wicker_plain01',0), -(5257,5257,'_exp01/zones/objects/pillows/drv_pillow_bench_pattern01',0), -(5258,5258,'_exp01/zones/objects/light_sources/drv_lightsource_int_lantern_ornate01',0), -(5259,5259,'_exp01/zones/objects/rugs/drv_rug_rect_palaceblue01',0), -(5260,5260,'_exp01/zones/objects/rugs/drv_rug_rect_palacered01',0), -(5261,5261,'staticobjects/papers/floor_paper_human_written01_slightly_raised',0), -(5262,5262,'_exp01/characters/tool_users/dervish_male_noble',0), -(5263,5263,'_exp01/characters/tool_users/dervish_female_noble',0), -(5264,5264,'_exp01/zones/objects/orbs/drv_orb_gazing01',0), -(5265,5265,'_exp01/zones/objects/orbs/djn_orb_elevatorswitch01',0), -(5266,5266,'_exp01/zones/objects/arena/arena_flag_and_stand_blue01',0), -(5267,5267,'_exp01/zones/objects/arena/arena_flag_and_stand_red01',0), -(5268,5268,'_exp01/zones/objects/arena/arena_flag_captured_blue01',0), -(5269,5269,'_exp01/zones/objects/arena/arena_flag_captured_red01',0), -(5270,5270,'_exp01/zones/objects/arena/arena_flag_stand_base01',0), -(5271,5271,'staticobjects/pictures/fprt_ph_painting_eq2exp01_horizontal01_poetsforestroom_l0',0), -(5272,5272,'staticobjects/pictures/fprt_ph_painting_eq2exp01_horizontal02_palmcastledawn_l0',0), -(5273,5273,'staticobjects/pictures/fprt_ph_painting_eq2exp01_horizontal03_palmatsunset_l0',0), -(5274,5274,'staticobjects/pictures/fprt_ph_painting_eq2exp01_horizontal04_sinkingsandsfacade_l0',0), -(5275,5275,'staticobjects/pictures/qey_ph_painting_eq2exp01_horizontal01_poetsforestroom_l0',0), -(5276,5276,'staticobjects/pictures/qey_ph_painting_eq2exp01_horizontal02_palmcastledawn_l0',0), -(5277,5277,'staticobjects/pictures/qey_ph_painting_eq2exp01_horizontal03_palmatsunset_l0',0), -(5278,5278,'staticobjects/pictures/qey_ph_painting_eq2exp01_horizontal04_sinkingsandsfacade_l0',0), -(5279,5279,'_exp01/zones/objects/mats/pf_monk_mat02',0), -(5280,5280,'_exp01/zones/objects/musical_instruments/djn_music_harp_broken01',0), -(5281,5281,'_exp01/zones/objects/mats/pf_monk_mat01',0), -(5282,5282,'_exp01/zones/objects/vases/djn_vase_gold_broken01',0), -(5283,5283,'_exp01/zones/objects/pillows/drv_pillow_floor_square_worn01',0), -(5284,5284,'_exp01/zones/dungeons/poets_palace/objects/poet_hallofdoors_door01',0), -(5285,5285,'_exp01/zones/objects/beds/djn_bed_gold01',0), -(5286,5286,'_exp01/zones/objects/barrels/drv_barrel_large01',0), -(5287,5287,'_exp01/zones/objects/barrels/cr_barrel_orc_large01',0), -(5288,5288,'_exp01/zones/objects/barrels/drv_barrel_small01',0), -(5289,5289,'_exp01/zones/objects/barrels/drv_barrels_group01',0), -(5290,5290,'_exp01/zones/objects/barrels/drv_barrels_group02',0), -(5291,5291,'_exp01/zones/objects/barrels/drv_barrels_group03',0), -(5292,5292,'_exp01/zones/objects/barrels/pf_barrels_sandfang_group01',0), -(5293,5293,'_exp01/zones/objects/barrels/pf_barrels_sandfang_single01',0), -(5294,5294,'_exp01/zones/objects/barricades/pf_goblin_barricade_long01',0), -(5295,5295,'_exp01/zones/objects/carts/pf_cart_nomad01',0), -(5296,5296,'_exp01/zones/objects/chairs/cr_chair_orc_wood01',0), -(5297,5297,'_exp01/zones/objects/chairs/djn_chair_artiststool_brass01',0), -(5298,5298,'_exp01/zones/objects/chairs/djn_chair_artiststool_steel01',0), -(5299,5299,'_exp01/zones/objects/chairs/djn_chair_high_brass01',0), -(5300,5300,'_exp01/zones/objects/chairs/djn_chair_high_gold01',0), -(5301,5301,'_exp01/zones/objects/chairs/djn_chair_high_platinum01',0), -(5302,5302,'_exp01/zones/objects/chairs/drv_bench_wicker_plain01',0), -(5303,5303,'_exp01/zones/objects/chairs/drv_bench_wood_ornate01',0), -(5304,5304,'_exp01/zones/objects/chairs/drv_chair_sultan_ornate01',0), -(5305,5305,'_exp01/zones/objects/chairs/drv_chair_wood_octagonal01',0), -(5306,5306,'_exp01/zones/objects/chairs/drv_stool_brass_ornate01',0), -(5307,5307,'_exp01/zones/objects/chests/cr_chest_orc_closed01',0), -(5308,5308,'_exp01/zones/objects/chests/cr_treasurechest_orc01',0), -(5309,5309,'_exp01/zones/objects/chests/cr_treasurechest_orc_open01',0), -(5310,5310,'_exp01/zones/objects/chests/drv_chest_ornate02',0), -(5311,5311,'_exp01/zones/objects/chests/drv_chest_wood01',0), -(5312,5312,'_exp01/zones/objects/chests/drv_chest_wood02',0), -(5313,5313,'_exp01/zones/objects/containers/drv_container_merch_basketlong_open01',0), -(5314,5314,'_exp01/zones/objects/containers/drv_container_merch_basketshort_open01',0), -(5315,5315,'_exp01/zones/objects/containers/drv_container_merch_basketshort_open02',0), -(5316,5316,'_exp01/zones/objects/containers/drv_container_merch_bowl01',0), -(5317,5317,'_exp01/zones/objects/containers/drv_container_merch_bowl02',0), -(5318,5318,'_exp01/zones/objects/firepits/cr_firepit_orc_withutensils01',0), -(5319,5319,'_exp01/zones/objects/incense_burners/djn_genielamp_gold01',0), -(5320,5320,'_exp01/zones/objects/incense_burners/djn_incenseburner_brass01',0), -(5321,5321,'_exp01/zones/objects/incense_burners/djn_genielamp_rusty01',0), -(5322,5322,'_exp01/zones/objects/incense_burners/djn_incenseburner_gold01',0), -(5323,5323,'_exp01/zones/objects/kegs/drv_keg_large01',0), -(5324,5324,'_exp01/zones/objects/kegs/drv_keg_small01',0), -(5325,5325,'_exp01/zones/objects/kegs/drv_kegstand01',0), -(5326,5326,'_exp01/zones/objects/kegs/drv_kegstand_base01',0), -(5327,5327,'_exp01/zones/objects/kegs/drv_kegstand_double01',0), -(5328,5328,'_exp01/zones/objects/kegs/drv_kegstand_keg01',0), -(5329,5329,'_exp01/zones/objects/kegs/drv_kegstand_keg01_swinging',0), -(5330,5330,'_exp01/zones/objects/light_sources/cr_lightsource_orc_torch_ornate01',0), -(5331,5331,'_exp01/zones/objects/light_sources/drv_lightsource_candles_group01',0), -(5332,5332,'_exp01/zones/objects/light_sources/drv_lightsource_ext_lantern01',0), -(5333,5333,'_exp01/zones/objects/light_sources/drv_lightsource_ext_lantern01_swinging',0), -(5334,5334,'_exp01/zones/objects/mirrors/drv_mirror_ornate01',0), -(5335,5335,'_exp01/zones/objects/mirrors/drv_mirror_plain01',0), -(5336,5336,'_exp01/zones/objects/pillows/djn_pillow_floor_redsquare01',0), -(5337,5337,'_exp01/zones/objects/pillows/drv_pillow_bench_pattern02',0), -(5338,5338,'_exp01/zones/objects/pillows/drv_pillow_floor_palace_oval01',0), -(5339,5339,'_exp01/zones/objects/pillows/drv_pillow_floor_palace_round01',0), -(5340,5340,'_exp01/zones/objects/pillows/drv_pillow_floor_palace_square01',0), -(5341,5341,'_exp01/zones/objects/pillows/drv_pillow_floor_palace_square02',0), -(5342,5342,'_exp01/zones/objects/pillows/drv_pillow_floor_round_worn01',0), -(5343,5343,'_exp01/zones/objects/pillows/drv_pillow_floor_round_worn02',0), -(5344,5344,'_exp01/zones/objects/pillows/drv_pillow_floor_square_worn02',0), -(5345,5345,'_exp01/zones/objects/pillows/drv_pillow_seat01',0), -(5346,5346,'_exp01/zones/objects/pillows/drv_pillow_seat02',0), -(5347,5347,'_exp01/zones/objects/pillows/drv_pillow_seat_weights_worn02',0), -(5348,5348,'_exp01/zones/objects/pillows/drv_pillow_seat_worn01',0), -(5349,5349,'_exp01/zones/objects/pillows/drv_pillow_seat_worn02',0), -(5350,5350,'_exp01/zones/objects/pillows/drv_pillow_bench_pattern01_worn',0), -(5351,5351,'_exp01/zones/objects/pillows/drv_pillow_bench_dirty01',0), -(5352,5352,'_exp01/zones/objects/pillows/drv_pillow_bench_clean01',0), -(5353,5353,'_exp01/zones/objects/pillows/drv_pillow_floor_oval_worn02',0), -(5354,5354,'_exp01/zones/objects/pillows/drv_pillow_floor_oval_worn01',0), -(5355,5355,'_exp01/zones/objects/podiums/sc_podium_nosphinx_small01',0), -(5356,5356,'_exp01/zones/objects/potted_plants/djn_pottedplant_palm02_med_blue',0), -(5357,5357,'_exp01/zones/objects/pottery/djn_vase_brokenpieces_group01',0), -(5358,5358,'_exp01/zones/objects/pottery/djn_vase_brokenpieces_group02',0), -(5359,5359,'_exp01/zones/objects/pottery/djn_vase_gold_broken01',0), -(5360,5360,'_exp01/zones/objects/pottery/drv_vase_brass_broken02',0), -(5361,5361,'_exp01/zones/objects/pottery/drv_vase_broken01',0), -(5362,5362,'_exp01/zones/objects/pottery/drv_vase_broken02',0), -(5363,5363,'_exp01/zones/objects/pottery/drv_vase_brokenpieces_group01',0), -(5364,5364,'_exp01/zones/objects/pottery/drv_vase_brokenpieces_group02',0), -(5365,5365,'_exp01/zones/objects/pottery/drv_vase_brokenpieces_group03',0), -(5366,5366,'_exp01/zones/objects/pottery/drv_vase_brokenpieces_group04',0), -(5367,5367,'_exp01/zones/objects/pottery/drv_vase_brokenpieces_group05',0), -(5368,5368,'_exp01/zones/objects/pottery/drv_vase_ornate01',0), -(5369,5369,'_exp01/zones/objects/pottery/drv_vase_ornate02',0), -(5370,5370,'_exp01/zones/objects/pottery/drv_vase_ornate_large02',0), -(5371,5371,'_exp01/zones/objects/pottery/drv_vase_ornate_porcelain_large01',0), -(5372,5372,'_exp01/zones/objects/pottery/drv_vase_plain01',0), -(5373,5373,'_exp01/zones/objects/pottery/drv_vase_porcelain_ornate01',0), -(5374,5374,'_exp01/zones/objects/pottery/drv_vase_porcelain_ornate02',0), -(5375,5375,'_exp01/zones/objects/rocks/pf_rocks_gnollboulders_painted01',0), -(5376,5376,'_exp01/zones/objects/roomdivider/drv_divider_plain01',0), -(5377,5377,'_exp01/zones/objects/rugs/cr_animal_hide_rug',0), -(5378,5378,'_exp01/zones/objects/rugs/drv_rug_group01',0), -(5379,5379,'_exp01/zones/objects/rugs/drv_rug_group02',0), -(5380,5380,'_exp01/zones/objects/rugs/drv_rug_group03',0), -(5381,5381,'_exp01/zones/objects/rugs/drv_rug_rect_worn01',0), -(5382,5382,'_exp01/zones/objects/rugs/drv_rug_rect_worn02',0), -(5383,5383,'_exp01/zones/objects/rugs/drv_rug_rolled_worn01',0), -(5384,5384,'_exp01/zones/objects/rugs/drv_rug_rolled_worn02',0), -(5385,5385,'_exp01/zones/objects/rugs/drv_rug_round02',0), -(5386,5386,'_exp01/zones/objects/rugs/drv_rug_round_worn01',0), -(5387,5387,'_exp01/zones/objects/rugs/drv_rug_round_worn02',0), -(5388,5388,'_exp01/zones/objects/rugs/drv_rug_square02',0), -(5389,5389,'_exp01/zones/objects/rugs/drv_rug_square03',0), -(5390,5390,'_exp01/zones/objects/rugs/drv_rug_square04',0), -(5391,5391,'_exp01/zones/objects/rugs/drv_rug_square_worn01',0), -(5392,5392,'_exp01/zones/objects/rugs/drv_rug_square_worn02',0), -(5393,5393,'_exp01/zones/objects/rugs/drv_rug_square_worn03',0), -(5394,5394,'_exp01/zones/objects/rugs/drv_rugs_rolled_group01',0), -(5395,5395,'_exp01/zones/objects/rugs/drv_rugs_rolled_group02',0), -(5396,5396,'_exp01/zones/objects/rugs/drv_rugs_rolled_worn_group01',0), -(5397,5397,'_exp01/zones/objects/scrolls/djn_scriptorium_scrollracks_6m',0), -(5398,5398,'_exp01/zones/objects/tables/djn_table_bedside01',0), -(5399,5399,'_exp01/zones/objects/tables/djn_table_floating02',0), -(5400,5400,'_exp01/zones/objects/tables/drv_table_coffee_plain01',0), -(5401,5401,'_exp01/zones/objects/tables/drv_table_dining_ornate01',0), -(5402,5402,'_exp01/zones/objects/tables/drv_table_dining_ornate02',0), -(5403,5403,'_exp01/zones/objects/tables/drv_table_dining_roundplain01',0), -(5404,5404,'_exp01/zones/objects/tables/drv_table_dining_squareplain01',0), -(5405,5405,'_exp01/zones/objects/tables/drv_table_end_round01',0), -(5406,5406,'_exp01/zones/objects/tables/drv_table_merchant01',0), -(5407,5407,'_exp01/zones/objects/tables/drv_table_merchant_long01',0), -(5408,5408,'_exp01/zones/objects/tablets/lt_tablet01',0), -(5409,5409,'_exp01/zones/objects/tablets/pf_tablet_broken01',0), -(5410,5410,'_exp01/zones/objects/tablets/pf_tablet_broken02',0), -(5411,5411,'_exp01/zones/objects/tapestries/drv_tapestry_4m_brasstrim_beige01_swinging',0), -(5412,5412,'_exp01/zones/objects/tapestries/drv_tapestry_4m_woodtrim_beige01_swinging',0), -(5413,5413,'_exp01/zones/objects/tapestries/drv_tapestry_4m_woodtrim_purple01_swinging',0), -(5414,5414,'_exp01/zones/objects/tapestries/drv_tapestry_6m_brasstrim_purple01_swinging',0), -(5415,5415,'_exp01/zones/objects/tapestries/drv_tapestry_6m_brasstrim_red01_swinging',0), -(5416,5416,'_exp01/zones/objects/tapestries/drv_tapestry_6m_wood_purple01_swinging',0), -(5417,5417,'_exp01/zones/objects/tapestries/drv_tapestry_6m_wood_red01_swinging',0), -(5418,5418,'_exp01/zones/objects/tapestries/drv_tapestry_apparatus01',0), -(5419,5419,'_exp01/zones/objects/tapestries/drv_tapestry_brass_apparatus02',0), -(5420,5420,'_exp01/zones/objects/tapestries/drv_tapestry_brass_ceilingmount01',0), -(5421,5421,'_exp01/zones/objects/tapestries/drv_tapestry_brass_dualhooks01',0), -(5422,5422,'_exp01/zones/objects/tapestries/drv_tapestry_wood_apparatus02',0), -(5423,5423,'_exp01/zones/objects/tapestries/drv_tapestry_wood_ceilingmount01',0), -(5424,5424,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/feet',1096), -(5425,5425,'_exp01/zones/objects/tents/drv_tent_merchant_hanging_blue',0), -(5426,5426,'_exp01/zones/objects/tents/drv_tent_merchant_hanging_orange',0), -(5427,5427,'_exp01/zones/objects/tents/drv_tent_merchant_hanging_red',0), -(5428,5428,'_exp01/zones/objects/tents/drv_tent_merchant_hanging_teal',0), -(5429,5429,'_exp01/zones/objects/tents/pf_goblin_tent',0), -(5430,5430,'_exp01/zones/objects/tents/pf_tent',0), -(5431,5431,'_exp01/zones/objects/tents/pf_tent_sandgiant',0), -(5432,5432,'_exp01/zones/objects/tents/ss_tent_lizardmen',0), -(5433,5433,'_exp01/zones/objects/tents/ss_tent_gnoll_anubis01',0), -(5434,5434,'_exp01/zones/objects/tents/ss_tent_nomad_double_group01',0), -(5435,5435,'_exp01/zones/objects/tents/ss_tent_orc01',0), -(5436,5436,'_exp01/zones/objects/tools/cr_tool_orc_forge_anvil',0), -(5437,5437,'_exp01/zones/objects/urns/drv_urn_large01',0), -(5438,5438,'_exp01/zones/objects/vases/djn_vase_brass01',0), -(5439,5439,'_exp01/zones/objects/vases/djn_vase_brass_broken01',0), -(5440,5440,'_exp01/zones/objects/vases/djn_vase_gold01',0), -(5441,5441,'_exp01/zones/objects/wallchargers/drv_wallcharger_brass01',0), -(5442,5442,'_exp01/zones/objects/wallchargers/drv_wallcharger_brass02',0), -(5443,5443,'_exp01/zones/objects/wallchargers/drv_wallcharger_ceramic01',0), -(5444,5444,'_exp01/zones/objects/wallchargers/drv_wallcharger_ceramic02',0), -(5445,5445,'_exp01/zones/objects/wallchargers/drv_wallcharger_porcelain01',0), -(5446,5446,'_exp01/zones/objects/pillows/djn_pillow_floor_bluesquare01',0), -(5447,5447,'_exp01/zones/objects/tables/djn_table_artist_brass01',0), -(5448,5448,'_exp01/zones/objects/arena/powerups/arena_powerup_potion_red',0), -(5449,5449,'_exp01/zones/objects/arena/powerups/arena_powerup_potion_blue',0), -(5450,5450,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_blue',0), -(5451,5451,'_exp01/zones/objects/arena/powerups/arena_powerup_star_orange',0), -(5452,5452,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_red',0), -(5453,5453,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_yellow',0), -(5454,5454,'_exp01/zones/objects/doorknocker/md_doorknocker01',0), -(5455,5455,'_exp01/zones/objects/columns/prism_column01',0), -(5456,5456,'accessories/wearable_items/starter_clothes/barbarian_female/arms',0), -(5457,5457,'accessories/wearable_items/starter_clothes/barbarian_female/chest',0), -(5458,5458,'accessories/wearable_items/starter_clothes/barbarian_female/legs',0), -(5459,5459,'accessories/wearable_items/starter_clothes/barbarian_female/sleeves',0), -(5460,5460,'accessories/wearable_items/starter_clothes/barbarian_male/arms',0), -(5461,5461,'accessories/wearable_items/starter_clothes/barbarian_male/chest',0), -(5462,5462,'accessories/wearable_items/starter_clothes/barbarian_male/legs',0), -(5463,5463,'accessories/wearable_items/starter_clothes/barbarian_male/sleeves',0), -(5464,5464,'accessories/wearable_items/starter_clothes/darkelf_female/arms',0), -(5465,5465,'accessories/wearable_items/starter_clothes/darkelf_female/chest',0), -(5466,5466,'accessories/wearable_items/starter_clothes/darkelf_female/legs',0), -(5467,5467,'accessories/wearable_items/starter_clothes/darkelf_female/sleeves',0), -(5468,5468,'accessories/wearable_items/starter_clothes/darkelf_male/arms',0), -(5469,5469,'accessories/wearable_items/starter_clothes/darkelf_male/chest',0), -(5470,5470,'accessories/wearable_items/starter_clothes/darkelf_male/legs',0), -(5471,5471,'accessories/wearable_items/starter_clothes/darkelf_male/sleeves',0), -(5472,5472,'accessories/wearable_items/starter_clothes/dwarf_female/arms',0), -(5473,5473,'accessories/wearable_items/starter_clothes/dwarf_female/chest',0), -(5474,5474,'accessories/wearable_items/starter_clothes/dwarf_female/legs',0), -(5475,5475,'accessories/wearable_items/starter_clothes/dwarf_female/sleeves',0), -(5476,5476,'accessories/wearable_items/starter_clothes/dwarf_male/arms',0), -(5477,5477,'accessories/wearable_items/starter_clothes/dwarf_male/chest',0), -(5478,5478,'accessories/wearable_items/starter_clothes/dwarf_male/legs',0), -(5479,5479,'accessories/wearable_items/starter_clothes/dwarf_male/sleeves',0), -(5480,5480,'accessories/wearable_items/starter_clothes/erudite_female/arms',0), -(5481,5481,'accessories/wearable_items/starter_clothes/erudite_female/chest',0), -(5482,5482,'accessories/wearable_items/starter_clothes/erudite_female/legs',0), -(5483,5483,'accessories/wearable_items/starter_clothes/erudite_female/sleeves',0), -(5484,5484,'accessories/wearable_items/starter_clothes/erudite_male/arms',0), -(5485,5485,'accessories/wearable_items/starter_clothes/erudite_male/chest',0), -(5486,5486,'accessories/wearable_items/starter_clothes/erudite_male/legs',0), -(5487,5487,'accessories/wearable_items/starter_clothes/erudite_male/sleeves',0), -(5488,5488,'accessories/wearable_items/starter_clothes/froglok_female/arms',0), -(5489,5489,'accessories/wearable_items/starter_clothes/froglok_female/chest',0), -(5490,5490,'accessories/wearable_items/starter_clothes/froglok_female/legs',0), -(5491,5491,'accessories/wearable_items/starter_clothes/froglok_female/sleeves',0), -(5492,5492,'accessories/wearable_items/starter_clothes/froglok_male/arms',0), -(5493,5493,'accessories/wearable_items/starter_clothes/froglok_male/chest',0), -(5494,5494,'accessories/wearable_items/starter_clothes/froglok_male/legs',0), -(5495,5495,'accessories/wearable_items/starter_clothes/froglok_male/sleeves',0), -(5496,5496,'accessories/wearable_items/starter_clothes/gnome_female/arms',0), -(5497,5497,'accessories/wearable_items/starter_clothes/gnome_female/chest',0), -(5498,5498,'accessories/wearable_items/starter_clothes/gnome_female/legs',0), -(5499,5499,'accessories/wearable_items/starter_clothes/gnome_female/sleeves',0), -(5500,5500,'accessories/wearable_items/starter_clothes/gnome_male/arms',0), -(5501,5501,'accessories/wearable_items/starter_clothes/gnome_male/chest',0), -(5502,5502,'accessories/wearable_items/starter_clothes/gnome_male/legs',0), -(5503,5503,'accessories/wearable_items/starter_clothes/gnome_male/sleeves',0), -(5504,5504,'accessories/wearable_items/starter_clothes/halfelf_female/arms',0), -(5505,5505,'accessories/wearable_items/starter_clothes/halfelf_female/chest',0), -(5506,5506,'accessories/wearable_items/starter_clothes/halfelf_female/legs',0), -(5507,5507,'accessories/wearable_items/starter_clothes/halfelf_female/sleeves',0), -(5508,5508,'accessories/wearable_items/starter_clothes/halfelf_male/arms',0), -(5509,5509,'accessories/wearable_items/starter_clothes/halfelf_male/chest',0), -(5510,5510,'accessories/wearable_items/starter_clothes/halfelf_male/legs',0), -(5511,5511,'accessories/wearable_items/starter_clothes/halfelf_male/sleeves',0), -(5512,5512,'accessories/wearable_items/starter_clothes/halfling_female/arms',0), -(5513,5513,'accessories/wearable_items/starter_clothes/halfling_female/chest',0), -(5514,5514,'accessories/wearable_items/starter_clothes/halfling_female/legs',0), -(5515,5515,'accessories/wearable_items/starter_clothes/halfling_female/sleeves',0), -(5516,5516,'accessories/wearable_items/starter_clothes/halfling_male/arms',0), -(5517,5517,'accessories/wearable_items/starter_clothes/halfling_male/chest',0), -(5518,5518,'accessories/wearable_items/starter_clothes/halfling_male/legs',0), -(5519,5519,'accessories/wearable_items/starter_clothes/halfling_male/sleeves',0), -(5520,5520,'accessories/wearable_items/starter_clothes/highelf_female/arms',0), -(5521,5521,'accessories/wearable_items/starter_clothes/highelf_female/chest',0), -(5522,5522,'accessories/wearable_items/starter_clothes/highelf_female/legs',0), -(5523,5523,'accessories/wearable_items/starter_clothes/highelf_female/sleeves',0), -(5524,5524,'accessories/wearable_items/starter_clothes/highelf_male/arms',0), -(5525,5525,'accessories/wearable_items/starter_clothes/highelf_male/chest',0), -(5526,5526,'accessories/wearable_items/starter_clothes/highelf_male/legs',0), -(5527,5527,'accessories/wearable_items/starter_clothes/highelf_male/sleeves',0), -(5528,5528,'accessories/wearable_items/starter_clothes/human_female/arms',0), -(5529,5529,'accessories/wearable_items/starter_clothes/human_female/chest',0), -(5530,5530,'accessories/wearable_items/starter_clothes/human_female/legs',0), -(5531,5531,'accessories/wearable_items/starter_clothes/human_female/sleeves',0), -(5532,5532,'accessories/wearable_items/starter_clothes/human_male/arms',0), -(5533,5533,'accessories/wearable_items/starter_clothes/human_male/chest',0), -(5534,5534,'accessories/wearable_items/starter_clothes/human_male/legs',0), -(5535,5535,'accessories/wearable_items/starter_clothes/human_male/sleeves',0), -(5536,5536,'accessories/wearable_items/starter_clothes/iksar_female/arms',0), -(5537,5537,'accessories/wearable_items/starter_clothes/iksar_female/chest',0), -(5538,5538,'accessories/wearable_items/starter_clothes/iksar_female/legs',0), -(5539,5539,'accessories/wearable_items/starter_clothes/iksar_female/sleeves',0), -(5540,5540,'accessories/wearable_items/starter_clothes/iksar_male/arms',0), -(5541,5541,'accessories/wearable_items/starter_clothes/iksar_male/chest',0), -(5542,5542,'accessories/wearable_items/starter_clothes/iksar_male/legs',0), -(5543,5543,'accessories/wearable_items/starter_clothes/iksar_male/sleeves',0), -(5544,5544,'accessories/wearable_items/starter_clothes/kerra_female/arms',0), -(5545,5545,'accessories/wearable_items/starter_clothes/kerra_female/chest',0), -(5546,5546,'accessories/wearable_items/starter_clothes/kerra_female/legs',0), -(5547,5547,'accessories/wearable_items/starter_clothes/kerra_female/sleeves',0), -(5548,5548,'accessories/wearable_items/starter_clothes/kerra_male/arms',0), -(5549,5549,'accessories/wearable_items/starter_clothes/kerra_male/chest',0), -(5550,5550,'accessories/wearable_items/starter_clothes/kerra_male/legs',0), -(5551,5551,'accessories/wearable_items/starter_clothes/kerra_male/sleeves',0), -(5552,5552,'accessories/wearable_items/starter_clothes/ogre_female/arms',0), -(5553,5553,'accessories/wearable_items/starter_clothes/ogre_female/chest',0), -(5554,5554,'accessories/wearable_items/starter_clothes/ogre_female/legs',0), -(5555,5555,'accessories/wearable_items/starter_clothes/ogre_female/sleeves',0), -(5556,5556,'accessories/wearable_items/starter_clothes/ogre_male/arms',0), -(5557,5557,'accessories/wearable_items/starter_clothes/ogre_male/chest',0), -(5558,5558,'accessories/wearable_items/starter_clothes/ogre_male/legs',0), -(5559,5559,'accessories/wearable_items/starter_clothes/ogre_male/sleeves',0), -(5560,5560,'accessories/wearable_items/starter_clothes/ratonga_female/arms',0), -(5561,5561,'accessories/wearable_items/starter_clothes/ratonga_female/chest',0), -(5562,5562,'accessories/wearable_items/starter_clothes/ratonga_female/legs',0), -(5563,5563,'accessories/wearable_items/starter_clothes/ratonga_female/sleeves',0), -(5564,5564,'accessories/wearable_items/starter_clothes/troll_female/arms',0), -(5565,5565,'accessories/wearable_items/starter_clothes/troll_female/chest',0), -(5566,5566,'accessories/wearable_items/starter_clothes/troll_female/legs',0), -(5567,5567,'accessories/wearable_items/starter_clothes/troll_female/sleeves',0), -(5568,5568,'accessories/wearable_items/starter_clothes/troll_male/arms',0), -(5569,5569,'accessories/wearable_items/starter_clothes/troll_male/chest',0), -(5570,5570,'accessories/wearable_items/starter_clothes/troll_male/legs',0), -(5571,5571,'accessories/wearable_items/starter_clothes/troll_male/sleeves',0), -(5572,5572,'accessories/wearable_items/starter_clothes/woodelf_female/arms',0), -(5573,5573,'accessories/wearable_items/starter_clothes/woodelf_female/chest',0), -(5574,5574,'accessories/wearable_items/starter_clothes/woodelf_female/legs',0), -(5575,5575,'accessories/wearable_items/starter_clothes/woodelf_female/sleeves',0), -(5576,5576,'accessories/wearable_items/starter_clothes/woodelf_male/arms',0), -(5577,5577,'accessories/wearable_items/starter_clothes/woodelf_male/chest',0), -(5578,5578,'accessories/wearable_items/starter_clothes/woodelf_male/legs',0), -(5579,5579,'accessories/wearable_items/starter_clothes/woodelf_male/sleeves',0), -(5580,5580,'_exp01/zones/objects/arena/arena_poi_tower01',0), -(5581,5581,'_exp01/zones/objects/arena/arena_poi_wallspike01',0), -(5582,5582,'_exp01/zones/objects/arena/arena_poi_arch01',0), -(5583,5583,'_exp01/zones/objects/arena/arena_poi_bridge01',0), -(5584,5584,'_exp01/zones/objects/arena/arena_poi_pillar01',0), -(5585,5585,'_exp01/zones/objects/arena/arena_poi_platform01',0), -(5586,5586,'_exp01/zones/objects/arena/arena_poi_wall01',0), -(5587,5587,'_exp01/zones/objects/arena/arena_poi_dugout01',0), -(5588,5588,'_exp01/zones/objects/beds/djn_bed_brass01',0), -(5589,5589,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/forearms',1096), -(5590,5590,'creatures/tu/noteman_tu',0), -(5591,5591,'_exp01/zones/cities/majdul/md_p11/md_p11_int_truth_door04',0), -(5592,5592,'_exp01/zones/dungeons/clefts_of_rujark/clefts_int2/clefts_int2_door_dead01',0), -(5593,5593,'_exp01/zones/dungeons/clefts_of_rujark/clefts_int2/clefts_int2_door_frsme_dead01',0), -(5594,5594,'_exp01/zones/objects/arena/arena_flag_team_red',0), -(5595,5595,'_exp01/zones/objects/arena/arena_flag_team_blue',0), -(5596,5596,'_exp01/characters/monsters/devil_dust',0), -(5597,5597,'_exp01/characters/monsters/devil_fire',0), -(5598,5598,'_exp01/zones/objects/mobile_barricades/drv_mobile_barricade',0), -(5599,5599,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/hands',1096), -(5600,5600,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/head',1096), -(5601,5601,'_exp01/zones/objects/md_doors/md_doors_03_02_l',0), -(5602,5602,'_exp01/characters/tool_users/orc_desert_warrior_bald_ghost',0), -(5603,5603,'_exp01/characters/tool_users/orc_desert_warrior_bald_square_ghost',0), -(5604,5604,'_exp01/characters/tool_users/orc_desert_warrior_helm_round_ghost',0), -(5605,5605,'_exp01/characters/tool_users/orc_desert_warrior_helm_square_ghost',0), -(5606,5606,'_exp01/characters/monsters/camel',0), -(5607,5607,'_exp01/characters/monsters/camel_pack',0), -(5608,5608,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/legs',1096), -(5609,5609,'_exp01/zones/objects/light_sources/drv_lightsource_candlestick_plain01',0), -(5610,5610,'_exp01/zones/objects/chairs/drv_bench_wood_plain01',0), -(5611,5611,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/chest',0), -(5612,5612,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/feet',0), -(5613,5613,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/forearms',0), -(5614,5614,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/hands',0), -(5615,5615,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/head',0), -(5616,5616,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/legs',0), -(5617,5617,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/shoulders',0), -(5618,5618,'_exp01/characters/tool_users/mummy_godking_anuk',0), -(5619,5619,'staticobjects/fx/medium_fire',0), -(5620,5620,'staticobjects/fx/wind_smoke',0), -(5621,5621,'staticobjects/fx/smoke_medium_thin',0), -(5622,5622,'_exp01/zones/objects/beds/drv_bed_doubleplain001',0), -(5623,5623,'_exp01/zones/objects/beds/drv_bed_kingplain001',0), -(5624,5624,'_exp01/zones/objects/beds/drv_bed_singleplain001',0), -(5625,5625,'_exp01/zones/objects/bookcases/drv_bookcase_ornate_short01',0), -(5626,5626,'_exp01/zones/objects/bookcases/drv_bookcase_ornate_tall01',0), -(5627,5627,'_exp01/characters/monsters/spider_terrorantula',0), -(5628,5628,'accessories/wieldable_items/weapons/axe/cobra_hatchet/cobra_hatchet_plain',0), -(5629,5629,'accessories/wieldable_items/weapons/dagger/jambiya/jambiya_plain',0), -(5630,5630,'accessories/wieldable_items/weapons/staff/cobra_staff/cobra_staff_plain',0), -(5631,5631,'accessories/wieldable_items/weapons/hammer/lotus_sceptre/lotus_sceptre_plain',0), -(5632,5632,'accessories/wieldable_items/weapons/hammer/amber_sceptre/amber_sceptre_plain',0), -(5633,5633,'accessories/wieldable_items/weapons/hammer/crab_sceptre/crab_sceptre_plain',0), -(5634,5634,'_exp01/characters/monsters/devil_dust_tornado',0), -(5635,5635,'_exp01/characters/monsters/camel_dromedary',0), -(5636,5636,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/legs_noskirt',1096), -(5637,5637,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/shoulders',1096), -(5638,5638,'_exp01/zones/objects/bottle/bottle_with_ship01',0), -(5639,5639,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_green/shoulders_epic',1096), -(5640,5640,'staticobjects/bookcases/scrollcase01',0), -(5641,5641,'staticobjects/bookcases/scrollcase01_brkn',0), -(5642,5642,'_exp01/zones/objects/doors_doorways/drv_manhole_cover',0), -(5643,5643,'_exp01/zones/animated_objects/djn_mirror_translocation_citadelexterior',0), -(5644,5644,'_exp01/zones/animated_objects/djn_mirror_translocation_firstfloor_sphinx',0), -(5645,5645,'_exp01/zones/animated_objects/djn_mirror_translocation_fourthfloor',0), -(5646,5646,'_exp01/zones/animated_objects/djn_mirror_translocation_hallofdoors',0), -(5647,5647,'_exp01/zones/animated_objects/djn_mirror_translocation_pillars',0), -(5648,5648,'_exp01/zones/animated_objects/djn_mirror_translocation_secondfloor',0), -(5649,5649,'_exp01/zones/objects/bench/lt_stonebench01',0), -(5650,5650,'_exp01/zones/objects/light_sources/sc_lightsource_flamingfeather01',0), -(5651,5651,'_exp01/zones/objects/light_sources/sc_lightsource_glassvessel01',0), -(5652,5652,'_exp01/zones/objects/urns/lt_vase01',0), -(5653,5653,'_exp01/zones/objects/urns/lt_vase02',0), -(5654,5654,'_exp01/zones/objects/urns/lt_vase03',0), -(5655,5655,'_exp01/zones/objects/lights/md_light_5m00',0), -(5656,5656,'_exp01/zones/objects/lights/md_light_5m01',0), -(5657,5657,'_exp01/zones/objects/lights/md_light_2m00',0), -(5658,5658,'_exp01/zones/objects/lights/md_light_2m01',0), -(5659,5659,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/skirt',1096), -(5660,5660,'_exp01/zones/objects/kitchen_tools/drv_cup_ornate_brass',0), -(5661,5661,'_exp01/zones/objects/kitchen_tools/drv_cup_ornate_pewter',0), -(5662,5662,'_exp01/zones/objects/kitchen_tools/drv_wine_bottle_ornate_brass',0), -(5663,5663,'_exp01/zones/objects/kitchen_tools/drv_wine_bottle_ornate_pewter',0), -(5664,5664,'_exp01/zones/objects/light_sources/sc_lightsource_flamingfeather01_no_lightsource',0), -(5665,5665,'_exp01/zones/objects/light_sources/drv_lightsource_int_lanternhanging_plain01',0), -(5666,5666,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_01_pink',0), -(5667,5667,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_02_yellow',0), -(5668,5668,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_03_orange',0), -(5669,5669,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_04_green',0), -(5670,5670,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_05_blue',0), -(5671,5671,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_06_purple',0), -(5672,5672,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_07_red',0), -(5673,5673,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_08_white',0), -(5674,5674,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_symbol_09_black',0), -(5675,5675,'_exp01/zones/objects/banners/ss_orc_tribalbanner01_l0',0), -(5676,5676,'_exp01/zones/objects/beetle/ss_dunebeetle_carapace01',0), -(5677,5677,'_exp01/zones/objects/crates/ss_crate_boarded_long01',0), -(5678,5678,'_exp01/zones/objects/crates/ss_crate_large01',0), -(5679,5679,'_exp01/zones/objects/crates/ss_crate_small01',0), -(5680,5680,'_exp01/zones/objects/switches/sc_objects_puzzlebox_switch01',0), -(5681,5681,'_exp01/zones/objects/urns/lt_urn02',0), -(5682,5682,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_ewer',0), -(5683,5683,'_exp01/zones/dungeons/silent_city/sc_temple/sc_temple_int_waterfall02_up',0), -(5684,5684,'_exp01/characters/monsters/leopard_yellow',0), -(5685,5685,'_exp01/characters/monsters/leopard_black',0), -(5686,5686,'_exp01/characters/tool_users/djinn_master',0), -(5687,5687,'_exp01/zones/objects/light_sources/drv_lightsource_ext_torch01',0), -(5688,5688,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_blue',0), -(5689,5689,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_green',0), -(5690,5690,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_orange',0), -(5691,5691,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_purple',0), -(5692,5692,'_exp01/zones/objects/arena/powerups/arena_powerup_bolt_red',0), -(5693,5693,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_green',0), -(5694,5694,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_orange',0), -(5695,5695,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_purple',0), -(5696,5696,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_red',0), -(5697,5697,'_exp01/zones/objects/arena/powerups/arena_powerup_star_blue',0), -(5698,5698,'_exp01/zones/objects/arena/powerups/arena_powerup_star_green',0), -(5699,5699,'_exp01/zones/objects/arena/powerups/arena_powerup_star_purple',0), -(5700,5700,'_exp01/zones/objects/arena/powerups/arena_powerup_star_red',0), -(5701,5701,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_blue',0), -(5702,5702,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_green',0), -(5703,5703,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_purple',0), -(5704,5704,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_yellow',0), -(5705,5705,'accessories/wearable_items/white_robe/chest',0), -(5706,5706,'accessories/wearable_items/white_robe/hood',0), -(5707,5707,'accessories/wearable_items/white_robe/pants',0), -(5708,5708,'accessories/wearable_items/white_robe/skirt',0), -(5709,5709,'accessories/wearable_items/heavy_plate/plain/chest',0), -(5710,5710,'accessories/wearable_items/heavy_plate/plain/feet',0), -(5711,5711,'accessories/wearable_items/heavy_plate/plain/forearms',0), -(5712,5712,'accessories/wearable_items/heavy_plate/plain/hands',0), -(5713,5713,'accessories/wearable_items/heavy_plate/plain/head',0), -(5714,5714,'accessories/wearable_items/heavy_plate/plain/left',0), -(5715,5715,'accessories/wearable_items/heavy_plate/plain/legs',0), -(5716,5716,'accessories/wearable_items/heavy_plate/plain/legs_noskirt',0), -(5717,5717,'accessories/wearable_items/heavy_plate/plain/shoulders',0), -(5718,5718,'accessories/wearable_items/heavy_plate/plain/shoulders_nopauldrons',0), -(5719,5719,'accessories/wearable_items/heavy_plate/plain/skirt',0), -(5720,5720,'accessories/wearable_items/heavy_plate/plain/upperchest',0), -(5721,5721,'creatures/mounts/carpet_sun',0), -(5722,5722,'_exp01/characters/tool_users/orc_desert_warrior_helm_ghost',0), -(5723,5723,'accessories/wearable_items/heavy_plate/plain/right',0), -(5724,5724,'accessories/wearable_items/starter_clothes/ratonga_male/arms',0), -(5725,5725,'accessories/wearable_items/starter_clothes/ratonga_male/chest',0), -(5726,5726,'accessories/wearable_items/starter_clothes/ratonga_male/legs',0), -(5727,5727,'accessories/wearable_items/starter_clothes/ratonga_male/sleeves',0), -(5728,5728,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/chest',1096), -(5729,5729,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/feet',1096), -(5730,5730,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/forearms',1096), -(5731,5731,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/hands',1096), -(5732,5732,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/head',1096), -(5733,5733,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/legs',1096), -(5734,5734,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/legs_noskirt',1096), -(5735,5735,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/shoulders',1096), -(5736,5736,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_red/shoulders_epic',1096), -(5737,5737,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/skirt',1096), -(5738,5738,'_exp01/zones/objects/arena/powerups/arena_powerup_shield_yellow',0), -(5739,5739,'_exp01/zones/objects/arena/powerups/arena_powerup_star_yellow',0), -(5740,5740,'_exp01/zones/objects/arena/powerups/arena_powerup_axe_orange',0), -(5741,5741,'_exp01/zones/objects/firepits/pf_campfire_spit_sandfang01',0), -(5742,5742,'_exp01/zones/objects/hay/pf_haypile01',0), -(5743,5743,'_exp01/zones/regions/pillars_of_flame/pf_objects/pf_rock/pf_rock_pillar01',0), -(5744,5744,'accessories/wieldable_items/weapons/hammer/battle_spoon/battle_spoon',0), -(5745,5745,'staticobjects/fish/fishing_pole_00',0), -(5746,5746,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/chest',1096), -(5747,5747,'_exp01/zones/objects/lights/md_light_10m00',0), -(5748,5748,'_exp01/zones/objects/lights/md_light_10m01',0), -(5749,5749,'_exp01/zones/objects/arena/arenaflag_ph_500win',0), -(5750,5750,'_exp01/zones/objects/arena/arenaflag_ph_1000win',0), -(5751,5751,'_exp01/zones/objects/arena/arenaflag_ph_championship_win',0), -(5752,5752,'_exp01/zones/objects/arena/arenaflag_ph_perfect_game',0), -(5753,5753,'_exp01/zones/objects/arena/arenaflag_ph_tournament_win',0), -(5754,5754,'_exp01/zones/objects/arena/arenaflag_ph_undefeated',0), -(5755,5755,'accessories/wieldable_items/weapons/staff/cobra_staff/cobra_staff_special',0), -(5756,5756,'_exp01/zones/objects/tapestries/drv_tapestry_wall_jollyroger',0), -(5757,5757,'_exp02/characters/tool_users/insectoid_worker',0), -(5758,5758,'staticobjects/banners/drv_tapestries_wall_jollyroger',0), -(5759,5759,'creatures/monsters/stagg_deer_female',0), -(5760,5760,'accessories/wearable_items/chain/common/low/legs_noskirt',0), -(5761,5761,'accessories/wearable_items/chain/plain/low/legs_noskirt',0), -(5762,5762,'accessories/wieldable_items/weapons/staff/cobra_staff/cobra_staff_ornate',0), -(5763,5763,'staticobjects/chests/chest_animated_ornate_highbrass',0), -(5764,5764,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/feet',1096), -(5765,5765,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/forearms',1096), -(5766,5766,'staticobjects/chests/chest_animated_ornate_woodgold',0), -(5767,5767,'staticobjects/chests/chest_animated_ornate_silvergold',0), -(5768,5768,'staticobjects/chests/chest_animated_ornate_woodsilver',0), -(5769,5769,'_exp02/characters/monsters/beholder_undead',0), -(5770,5770,'_exp02/characters/monsters/beholder_undead_bloody',0), -(5771,5771,'creatures/tu/golem_water',0), -(5772,5772,'_exp01/characters/monsters/cobra_water_elemental',0), -(5773,5773,'accessories/wearable_items/halloween_masks/antonia_mask/head',0), -(5774,5774,'accessories/wearable_items/halloween_masks/cat_mask/head',0), -(5775,5775,'accessories/wearable_items/halloween_masks/goblin_mask/head',0), -(5776,5776,'accessories/wearable_items/halloween_masks/hatchet_mask/head',0), -(5777,5777,'accessories/wearable_items/halloween_masks/lucan_mask/head',0), -(5778,5778,'accessories/wearable_items/halloween_masks/mask_mask/head',0), -(5779,5779,'accessories/wearable_items/halloween_masks/scarecrow_mask/head',0), -(5780,5780,'accessories/wearable_items/halloween_masks/skeleton_mask/head',0), -(5781,5781,'staticobjects/statues/holysymbol01_localpivot',0), -(5782,5782,'projectiles/spell_fire_ball_long_trail',0), -(5783,5783,'staticobjects/interiors/scenes/objects_race/human/halloween/le_evilpitchfork01',0), -(5784,5784,'staticobjects/interiors/scenes/objects_race/human/halloween/le_hanging_bat01_swinging',0), -(5785,5785,'staticobjects/interiors/scenes/objects_race/human/halloween/le_jackolantern01',0), -(5786,5786,'staticobjects/interiors/scenes/objects_race/human/halloween/le_jackolantern02',0), -(5787,5787,'staticobjects/interiors/scenes/objects_race/human/halloween/le_jackolantern03',0), -(5788,5788,'staticobjects/rocks/ant_p5_meteor01',0), -(5789,5789,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/hands',1096), -(5790,5790,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/head',1096), -(5791,5791,'staticobjects/gravestones/gravestone11',0), -(5792,5792,'staticobjects/beds/sleepingrollleather02',0), -(5793,5793,'accessories/wearable_items/chain/chain_tint01/chest',0), -(5794,5794,'accessories/wearable_items/chain/chain_tint01/feet',0), -(5795,5795,'accessories/wearable_items/chain/chain_tint01/forearms',0), -(5796,5796,'accessories/wearable_items/chain/chain_tint01/hands',0), -(5797,5797,'accessories/wearable_items/chain/chain_tint01/head',0), -(5798,5798,'accessories/wearable_items/chain/chain_tint01/legs',0), -(5799,5799,'accessories/wearable_items/chain/chain_tint01/legs_noskirt',0), -(5800,5800,'accessories/wearable_items/chain/chain_tint01/shoulders',0), -(5801,5801,'accessories/wearable_items/chain/chain_tint01/skirt',0), -(5802,5802,'accessories/wearable_items/brigandine/brigandine_tint01/chest',0), -(5803,5803,'accessories/wearable_items/brigandine/brigandine_tint01/feet',0), -(5804,5804,'accessories/wearable_items/brigandine/brigandine_tint01/forearms',0), -(5805,5805,'accessories/wearable_items/brigandine/brigandine_tint01/hands',0), -(5806,5806,'accessories/wearable_items/brigandine/brigandine_tint01/head',0), -(5807,5807,'accessories/wearable_items/brigandine/brigandine_tint01/legs',0), -(5808,5808,'accessories/wearable_items/brigandine/brigandine_tint01/shoulders',0), -(5809,5809,'accessories/wearable_items/plate/plate_tint02/chest',0), -(5810,5810,'accessories/wearable_items/plate/plate_tint02/feet',0), -(5811,5811,'accessories/wearable_items/plate/plate_tint02/forearms',0), -(5812,5812,'accessories/wearable_items/plate/plate_tint02/hands',0), -(5813,5813,'accessories/wearable_items/plate/plate_tint02/head',0), -(5814,5814,'accessories/wearable_items/plate/plate_tint02/legs',0), -(5815,5815,'accessories/wearable_items/plate/plate_tint02/shoulders',0), -(5816,5816,'accessories/wearable_items/leather/leather_tint01/chest',0), -(5817,5817,'accessories/wearable_items/leather/leather_tint01/feet',0), -(5818,5818,'accessories/wearable_items/leather/leather_tint01/forearms',0), -(5819,5819,'accessories/wearable_items/leather/leather_tint01/hands',0), -(5820,5820,'accessories/wearable_items/leather/leather_tint01/head',0), -(5821,5821,'accessories/wearable_items/leather/leather_tint01/legs',0), -(5822,5822,'accessories/wearable_items/leather/leather_tint01/shoulders',0), -(5823,5823,'accessories/wearable_items/leather/leather_tint01/skirt',0), -(5824,5824,'accessories/wearable_items/leather/leather_tint01/legs_noskirt',0), -(5825,5825,'accessories/wearable_items/magus/uncommon/high/hood',0), -(5826,5826,'accessories/wearable_items/vanguard/vanguard_tint01/chest',0), -(5827,5827,'accessories/wearable_items/vanguard/vanguard_tint01/feet',0), -(5828,5828,'accessories/wearable_items/vanguard/vanguard_tint01/forearms',0), -(5829,5829,'accessories/wearable_items/vanguard/vanguard_tint01/hands',0), -(5830,5830,'accessories/wearable_items/vanguard/vanguard_tint01/head',0), -(5831,5831,'accessories/wearable_items/vanguard/vanguard_tint01/legs',0), -(5832,5832,'accessories/wearable_items/vanguard/vanguard_tint01/right',0), -(5833,5833,'accessories/wearable_items/vanguard/vanguard_tint01/shoulders',0), -(5834,5834,'accessories/wearable_items/vanguard/vanguard_tint01/shoulders_nopauldrons',0), -(5835,5835,'staticobjects/platforms/fstc_flying_mount_station',0), -(5836,5836,'staticobjects/platforms/fstc_flying_mount_station_build01',0), -(5837,5837,'staticobjects/platforms/fstc_flying_mount_station_build02',0), -(5838,5838,'accessories/wearable_items/heavy_chain/plain/chest',0), -(5839,5839,'accessories/wearable_items/heavy_chain/plain/feet',0), -(5840,5840,'accessories/wearable_items/heavy_chain/plain/forearms',0), -(5841,5841,'accessories/wearable_items/heavy_chain/plain/hands',0), -(5842,5842,'accessories/wearable_items/heavy_chain/plain/head',0), -(5843,5843,'accessories/wearable_items/heavy_chain/plain/legs',0), -(5844,5844,'accessories/wearable_items/heavy_chain/plain/legs_noskirt',0), -(5845,5845,'accessories/wearable_items/heavy_chain/plain/pauldrons',0), -(5846,5846,'accessories/wearable_items/heavy_chain/plain/shoulders',0), -(5847,5847,'accessories/wearable_items/heavy_chain/plain/shoulders_no_pauldrons',0), -(5848,5848,'accessories/wearable_items/heavy_chain/plain/skirt',0), -(5849,5849,'accessories/wearable_items/plate/plate_tint01/chest',0), -(5850,5850,'accessories/wearable_items/plate/plate_tint01/feet',0), -(5851,5851,'accessories/wearable_items/plate/plate_tint01/forearms',0), -(5852,5852,'accessories/wearable_items/plate/plate_tint01/hands',0), -(5853,5853,'accessories/wearable_items/plate/plate_tint01/head',0), -(5854,5854,'accessories/wearable_items/plate/plate_tint01/legs',0), -(5855,5855,'accessories/wearable_items/plate/plate_tint01/shoulders',0), -(5856,5856,'_exp02/characters/tool_users/insectoid_worker_white',0), -(5857,5857,'_exp02/characters/tool_users/insectoid_warlord_noarmor_white',0), -(5858,5858,'_exp02/characters/tool_users/insectoid_warlord_white',0), -(5859,5859,'_exp02/characters/tool_users/insectoid_spellcaster',0), -(5860,5860,'_exp02/characters/tool_users/insectoid_warlord',0), -(5861,5861,'_exp02/characters/tool_users/insectoid_warlord_noarmor',0), -(5862,5862,'_exp02/characters/monsters/basilisk',0), -(5863,5863,'_exp02/characters/monsters/otyugh',0), -(5864,5864,'staticobjects/chests/chest_animated_treasured',0), -(5865,5865,'staticobjects/chests/chest_animated_legendary',0), -(5866,5866,'staticobjects/statues/idol_rusty_upright',0), -(5867,5867,'staticobjects/shelves/wall_shelf_halfling_wooden02_houseitem',0), -(5868,5868,'staticobjects/shelves/wall_shelf_halfling_wooden03_houseitem',0), -(5869,5869,'staticobjects/lighting/wall_sconce_human_iron02',0), -(5870,5870,'accessories/wieldable_items/weapons/bow/long_bow/long_bow001_ornate_house_item',0), -(5871,5871,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star001_ornate_houseitem',0), -(5872,5872,'accessories/wieldable_items/weapons/talisman/orb/orb001_rusty_houseitem',0), -(5873,5873,'staticobjects/trophies/griffon_tower_trophy',0), -(5874,5874,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/legs_noskirt',0), -(5875,5875,'accessories/wearable_items/heavy_cloth/heavy_cloth_dervish_plain/skirt',0), -(5876,5876,'accessories/wearable_items/profesion_hats/illusionist/illusionist_01/head',0), -(5877,5877,'staticobjects/clock_akanon',0), -(5878,5878,'_exp02/zones/objects/banners/ls_banner_minion01',0), -(5879,5879,'_exp02/zones/objects/beds/hf_bed_guard_ornate01',0), -(5880,5880,'_exp02/zones/objects/books/hf_book_single01',0), -(5881,5881,'_exp02/zones/objects/books/ls_tome_dragon_brass01',0), -(5882,5882,'_exp02/zones/objects/books/ls_tome_dragon_brass02',0), -(5883,5883,'_exp02/zones/objects/books/ls_tome_dragon_group01',0), -(5884,5884,'_exp02/zones/objects/books/ls_tome_dragon_group02',0), -(5885,5885,'_exp02/zones/objects/books/ls_tome_dragon_purple01',0), -(5886,5886,'_exp02/zones/objects/books/ls_tome_dragon_purple02',0), -(5887,5887,'_exp02/zones/objects/chairs_benches/hf_bench_ornate01',0), -(5888,5888,'_exp02/zones/objects/chests/ls_chest_metal01',0), -(5889,5889,'_exp02/zones/objects/crude_tools/hf_tools_excavation_drill',0), -(5890,5890,'_exp02/zones/objects/crude_tools/hf_tools_excavation_group01',0), -(5891,5891,'_exp02/zones/objects/crude_tools/hf_tools_excavation_hammer',0), -(5892,5892,'_exp02/zones/objects/crude_tools/hf_tools_excavation_pick',0), -(5893,5893,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/legs',1096), -(5894,5894,'_exp02/zones/objects/crude_tools/hf_tools_excavation_toolbox',0), -(5895,5895,'_exp02/zones/objects/decorations/hf_decoration_scrimshawfang_floor01',0), -(5896,5896,'_exp02/zones/objects/decorations/hf_decoration_scrimshawfang_floor02',0), -(5897,5897,'_exp02/zones/objects/decorations/hf_decoration_scrimshawfang_wall01',0), -(5898,5898,'_exp02/zones/objects/desks/hf_desk_ornate01',0), -(5899,5899,'_exp02/zones/objects/dragon_bones/rn_bones_dragon01',0), -(5900,5900,'_exp02/zones/objects/dragon_bones/rn_bones_dragon02',0), -(5901,5901,'_exp02/zones/objects/plants/rn_stinkweed_group01',0), -(5902,5902,'_exp02/zones/objects/plants/rn_stinkweed_group02',0), -(5903,5903,'_exp02/zones/objects/plants/rn_stinkweed_group03',0), -(5904,5904,'_exp02/zones/objects/plants/rn_stinkweed_intertwined01',0), -(5905,5905,'_exp02/zones/objects/plants/rn_stinkweed_intertwined02',0), -(5906,5906,'_exp02/zones/objects/plants/rn_stinkweed_single01',0), -(5907,5907,'_exp02/characters/tool_users/aviak_eagle_warrior_dark',0), -(5908,5908,'_exp02/characters/tool_users/aviak_eagle_king_dark',0), -(5909,5909,'_exp02/characters/tool_users/aviak_eagle_king_light',0), -(5910,5910,'_exp02/characters/tool_users/aviak_eagle_warrior_light',0), -(5911,5911,'_exp02/characters/tool_users/hooluk_owl_mystic',0), -(5912,5912,'accessories/wieldable_items/weapons/staff/anubis_staff/anubis_staff_plain',0), -(5913,5913,'accessories/wearable_items/profesion_hats/shadowknight/shadowknight_01/head',0), -(5914,5914,'creatures/pets/wyrm_fire',0), -(5915,5915,'_exp02/characters/monsters/dragon_evil_tint01',0), -(5916,5916,'_exp02/characters/monsters/dragon_good_albino',0), -(5917,5917,'_exp02/characters/monsters/dragon_good_tint01',0), -(5918,5918,'_exp02/characters/monsters/beholder',0), -(5919,5919,'_exp02/characters/monsters/tarranax',0), -(5920,5920,'accessories/wieldable_items/weapons/great_sword/qeynos_claymore_sword/qeynos_claymore_sword',0), -(5921,5921,'accessories/wearable_items/profesion_hats/wizard/wizard_01/head',0), -(5922,5922,'staticobjects/interiors/scenes/objects_race/dp_objects/nests/beehive01',0), -(5923,5923,'staticobjects/interiors/scenes/objects_race/dp_objects/nests/beehive02',0), -(5924,5924,'staticobjects/interiors/scenes/objects_race/dp_objects/nests/beehive03',0), -(5925,5925,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/legs_noskirt',1096), -(5926,5926,'projectiles/exp02/hof_molotov_cocktail',0), -(5927,5927,'_exp02/characters/tool_users/vultak_vulture_spellcaster',0), -(5928,5928,'staticobjects/flora/rocks/commonlands/commonlands_central/scenes/nbhum_rock01',0), -(5929,5929,'_exp02/zones/objects/jail_cells/los_jail_cell_piece01',0), -(5930,5930,'accessories/wieldable_items/weapons/great_spear/wyrmslayer/exp02_wyrmslayer',0), -(5931,5931,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/shoulders',1096), -(5932,5932,'accessories/wieldable_items/weapons/staff/djinn_staff/djinn_staff_plain',0), -(5933,5933,'accessories/wieldable_items/weapons/sword/katana/katana_plain',0), -(5934,5934,'accessories/wieldable_items/weapons/sword/katana/katana_ornate',0), -(5935,5935,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_plain',0), -(5936,5936,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_ornate',0), -(5937,5937,'accessories/wieldable_items/weapons/staff/escrima/escrima001_plain',0), -(5938,5938,'accessories/wieldable_items/weapons/staff/escrima/escrima002_ornate',0), -(5939,5939,'_exp02/characters/tool_users/aviak_eagle_white',0), -(5940,5940,'_exp02/characters/tool_users/aviak_eagle_dark',0), -(5941,5941,'_exp02/zones/objects/dragon_statues/ls_statue_dragon_bust01',0), -(5942,5942,'accessories/wearable_items/profesion_hats/swashbuckler/swashbuckler_01/head',0), -(5943,5943,'accessories/wearable_items/_exp08/dragon_armor/chain-scale_shadow/shoulders_epic',1096), -(5944,5944,'accessories/wearable_items/_exp08/dragon_armor/leather1/skirt',1096), -(5945,5945,'_exp02/characters/tool_users/vultak_vulture_king',0), -(5946,5946,'_exp02/characters/monsters/carnivorous_plant',0), -(5947,5947,'_exp02/characters/tool_users/draconian',0), -(5948,5948,'_exp02/zones/objects/bottles/glass_vial001_rusty',0), -(5949,5949,'accessories/wearable_items/profesion_hats/inquisitor/inquisitor_01/head',0), -(5950,5950,'accessories/wearable_items/_exp08/dragon_armor/leather1/chest',1096), -(5951,5951,'accessories/wearable_items/christmas_hats/santa_hat/head',0), -(5952,5952,'_exp02/zones/objects/lift/sos_lift_platform',0), -(5953,5953,'_exp02/characters/tool_users/vultak_vulture_warrior',0), -(5954,5954,'_exp02/zones/objects/dragon_statues/ls_statue_dragon01',0), -(5955,5955,'_exp02/characters/monsters/harla_dar',0), -(5956,5956,'staticobjects/liveevent/rainbow_bridge',0), -(5957,5957,'staticobjects/liveevent/dpo_bucket_snowballs01',0), -(5958,5958,'staticobjects/liveevent/dpo_holiday05_stocking_green',0), -(5959,5959,'staticobjects/liveevent/dpo_holiday05_stocking_red',0), -(5960,5960,'staticobjects/liveevent/dpo_holiday05_stocking_redgold',0), -(5961,5961,'staticobjects/liveevent/dpo_holiday_candlegroup01_bluesilver',0), -(5962,5962,'staticobjects/liveevent/dpo_holiday_candlegroup01_redgreen',0), -(5963,5963,'staticobjects/liveevent/dpo_holiday_candlegroup02_bluesilver',0), -(5964,5964,'staticobjects/liveevent/dpo_holiday_wallcandles01_gold',0), -(5965,5965,'staticobjects/liveevent/dpo_holiday_wallcandles01_silver',0), -(5966,5966,'accessories/wearable_items/_exp08/dragon_armor/leather1/feet',1096), -(5967,5967,'staticobjects/liveevent/dpo_present01_medium',0), -(5968,5968,'staticobjects/liveevent/dpo_present01_small',0), -(5969,5969,'staticobjects/liveevent/dpo_present02_big',0), -(5970,5970,'staticobjects/liveevent/dpo_present02_medium',0), -(5971,5971,'staticobjects/liveevent/dpo_present_group01',0), -(5972,5972,'staticobjects/liveevent/dpo_present_group02',0), -(5973,5973,'staticobjects/liveevent/dpo_snowglobe_freeport01',0), -(5974,5974,'staticobjects/liveevent/dpo_snowglobe_qeynos01',0), -(5975,5975,'staticobjects/liveevent/dpo_snowman01',0), -(5976,5976,'staticobjects/liveevent/dpo_snowwoman01',0), -(5977,5977,'staticobjects/liveevent/dpo_present01_big',0), -(5978,5978,'staticobjects/boxes/floor_collectionbox_any_ornate01',0), -(5979,5979,'staticobjects/boxes/floor_collectionbox_any_ornate02',0), -(5980,5980,'staticobjects/boxes/floor_collectionbox_any_rough01',0), -(5981,5981,'staticobjects/boxes/floor_collectionbox_any_wood02',0), -(5982,5982,'staticobjects/liveevent/dpo_everfrost_wonderlandwalls01',0), -(5983,5983,'staticobjects/liveevent/dpo_holiday_candycane_large01',0), -(5984,5984,'staticobjects/liveevent/dpo_holiday_candycane_large02',0), -(5985,5985,'staticobjects/liveevent/dpo_holiday_candycane_small01',0), -(5986,5986,'staticobjects/liveevent/dpo_holiday_candycane_small02',0), -(5987,5987,'creatures/tu/invisible_soldier_tu',0), -(5988,5988,'accessories/wearable_items/pauldrons/evil01/pauldron_evil01',0), -(5989,5989,'accessories/wearable_items/pauldrons/evil01/shoulders_pauldron_evil01',0), -(5990,5990,'staticobjects/liveevent/christmas_tree01',0), -(5991,5991,'staticobjects/weapons/dpo_voulge001_ornate',0), -(5992,5992,'_exp02/characters/monsters/gold_flyingsnake',0), -(5993,5993,'_exp02/characters/tool_users/draconian_skeleton',0), -(5994,5994,'creatures/monsters/wyrm_undead',0), -(5995,5995,'creatures/monsters/drake_undead',0), -(5996,5996,'staticobjects/dpo_invisible_wall/invisible_platform',0), -(5997,5997,'creatures/mounts/carpet_nodraw',0), -(5998,5998,'_exp02/zones/objects/bookcases/ss_bookcase_ornate_ceiling01',0), -(5999,5999,'_exp02/zones/objects/bookcases/ss_bookcase_ornate01',0), -(6000,6000,'_exp02/zones/objects/chairs_benches/ls_chair_metal02',0), -(6001,6001,'_exp02/zones/objects/decorations/ls_decoration_wall_dragonhead01',0), -(6002,6002,'accessories/wearable_items/_exp02/heavy_cloth_heroic/legs',0), -(6003,6003,'creatures/monsters/flyingsnake_undead',0), -(6004,6004,'creatures/monsters/drake_goowater',0), -(6005,6005,'accessories/wearable_items/_exp02/heavy_cloth_heroic/shoulders',0), -(6006,6006,'accessories/wearable_items/_exp08/dragon_armor/leather1/forearms',1096), -(6007,6007,'accessories/wearable_items/_exp08/dragon_armor/leather1/hands',1096), -(6008,6008,'_exp02/characters/monsters/lord_vyemm',0), -(6009,6009,'projectiles/spell_snowball',0), -(6010,6010,'_exp02/zones/objects/tents/dn_tent_red',0), -(6011,6011,'_exp02/characters/monsters/dragon_good_essence',0), -(6012,6012,'accessories/wearable_items/pauldrons/evil02/pauldron_evil02',0), -(6013,6013,'accessories/wearable_items/pauldrons/evil02/shoulders_pauldron_evil02',0), -(6014,6014,'_exp02/characters/tool_users/draconian_assassin',0), -(6015,6015,'_exp02/characters/tool_users/draconian_warlord',0), -(6016,6016,'_exp02/characters/tool_users/draconian_wizard',0), -(6017,6017,'_exp02/characters/tool_users/draconian_undead',0), -(6018,6018,'creatures/monsters/ground_dragon_ghost_pc',0), -(6019,6019,'_exp02/zones/objects/lift/rd_ter_palace_floater',0), -(6020,6020,'accessories/wearable_items/_exp08/dragon_armor/leather1/head',1096), -(6021,6021,'accessories/wearable_items/profesion_hats/animal_hide/animal_hide_01/head',0), -(6022,6022,'accessories/wearable_items/profesion_hats/ranger/ranger_01/head',0), -(6023,6023,'staticobjects/monuments/fprt_lucanstatue_pedestal',0), -(6024,6024,'_exp02/zones/objects/plants/rn_stinkweed_bud01',0), -(6025,6025,'staticobjects/spires/spire_construction_1',0), -(6026,6026,'staticobjects/spires/spire_construction_2',0), -(6027,6027,'staticobjects/spires/spire_construction_3',0), -(6028,6028,'staticobjects/spires/spire_construction_4',0), -(6029,6029,'staticobjects/spires/spire_construction_5',0), -(6030,6030,'_exp02/zones/objects/eggs/ls_dragoneggs_broken',0), -(6031,6031,'_exp02/zones/objects/eggs/ls_dragoneggs_mixed',0), -(6032,6032,'_exp02/zones/objects/eggs/ls_dragoneggs_unbroken',0), -(6033,6033,'_exp02/characters/monsters/basilisk_undead',0), -(6034,6034,'accessories/wearable_items/magus/robes/robe_newbie_tint01/chest',0), -(6035,6035,'accessories/wearable_items/magus/robes/robe_newbie_tint01/hood',0), -(6036,6036,'accessories/wearable_items/magus/robes/robe_newbie_tint01/pants',0), -(6037,6037,'accessories/wearable_items/magus/robes/robe_newbie_tint01/skirt',0), -(6038,6038,'_exp02/zones/objects/doors/sos_wood_door',0), -(6039,6039,'accessories/wearable_items/profesion_hats/paladin/paladin_01/head',0), -(6040,6040,'_exp02/characters/tool_users/hooluk_owl',0), -(6041,6041,'_exp02/characters/tool_users/hooluk_owl_hood',0), -(6042,6042,'_exp02/zones/objects/doors/hf_door01',0), -(6043,6043,'_exp02/zones/objects/doors/hf_door02',0), -(6044,6044,'_exp02/zones/objects/eggs/hf_egg_single_blue_upright01',0), -(6045,6045,'_exp02/zones/objects/eggs/hf_egg_single_bronze_upright01',0), -(6046,6046,'accessories/wieldable_items/weapons/fist/chakram/chakram_plain',0), -(6047,6047,'accessories/wearable_items/_exp02/leather_heavy/chest',0), -(6048,6048,'accessories/wearable_items/_exp02/leather_heavy/feet',0), -(6049,6049,'accessories/wearable_items/_exp02/leather_heavy/forearms',0), -(6050,6050,'accessories/wearable_items/_exp02/leather_heavy/hands',0), -(6051,6051,'accessories/wearable_items/_exp02/leather_heavy/head',0), -(6052,6052,'accessories/wearable_items/_exp02/leather_heavy/legs',0), -(6053,6053,'accessories/wearable_items/_exp02/leather_heavy/legs_noskirt',0), -(6054,6054,'accessories/wearable_items/_exp02/leather_heavy/shoulders',0), -(6055,6055,'accessories/wearable_items/_exp02/leather_heavy/skirt',0), -(6056,6056,'staticobjects/mirrors/dpo_djn_mirror_translocation01',0), -(6057,6057,'accessories/wieldable_items/weapons/great_sword/dragon_katana/exp02_dragon_katana_ornate_fire',0), -(6058,6058,'_exp02/zones/objects/dragon_bones/rn_bones_dragon_skullfull01',0), -(6059,6059,'_exp02/zones/objects/dragon_bones/rn_bones_dragon_verte01',0), -(6060,6060,'accessories/wearable_items/_exp02/vanguard_chitin/legs_noskirt',0), -(6061,6061,'accessories/wearable_items/_exp02/vanguard_chitin/right',0), -(6062,6062,'accessories/wearable_items/_exp02/vanguard_chitin/shoulders',0), -(6063,6063,'accessories/wearable_items/_exp02/vanguard_chitin/shoulders_nopauldrons',0), -(6064,6064,'accessories/wearable_items/_exp02/vanguard_chitin/skirt',0), -(6065,6065,'accessories/wearable_items/_exp02/vanguard_chitin/head',0), -(6066,6066,'accessories/wearable_items/_exp02/vanguard_chitin/legs',0), -(6067,6067,'accessories/wearable_items/_exp02/vanguard_chitin/feet',0), -(6068,6068,'accessories/wearable_items/_exp02/vanguard_chitin/forearms',0), -(6069,6069,'accessories/wearable_items/_exp02/vanguard_chitin/chest',0), -(6070,6070,'accessories/wearable_items/_exp02/vanguard_chitin/hands',0), -(6071,6071,'accessories/wieldable_items/weapons/ghost_weapons/exp02_wand001_ghost_magic',0), -(6072,6072,'accessories/wieldable_items/weapons/dagger/dirk/exp02_dirk002_magic',0), -(6073,6073,'accessories/wieldable_items/weapons/staff/djinn_staff/exp02_djinn_staff_fire',0), -(6074,6074,'accessories/wieldable_items/weapons/hammer/lotus_sceptre/exp02_lotus_sceptre_red_sparkles',0), -(6075,6075,'_exp02/zones/objects/chests/hf_chest_reliquary_bones01',0), -(6076,6076,'_exp02/zones/objects/chests/hf_chest_reliquary_bones02',0), -(6077,6077,'accessories/wieldable_items/weapons/axe/pick_axe/pick_axe01',0), -(6078,6078,'accessories/wearable_items/_exp08/dragon_armor/leather1/legs',1096), -(6079,6079,'_exp02/zones/objects/light_sources/dn_lightsource_orb01_purple',0), -(6080,6080,'staticobjects/pictures/fprt_ph_painting_eq1_vertical23_greenmonument_l0',0), -(6081,6081,'accessories/wearable_items/_exp02/plate_heroic/shoulders',0), -(6082,6082,'accessories/wearable_items/_exp02/plate_heroic/chest',0), -(6083,6083,'accessories/wearable_items/_exp02/plate_heroic/feet',0), -(6084,6084,'accessories/wearable_items/_exp02/plate_heroic/forearms',0), -(6085,6085,'accessories/wearable_items/_exp02/plate_heroic/hands',0), -(6086,6086,'accessories/wearable_items/_exp02/plate_heroic/head',0), -(6087,6087,'accessories/wearable_items/_exp02/plate_heroic/legs',0), -(6088,6088,'_exp02/zones/objects/eggs/sos_dragoneggs_broken_blue',0), -(6089,6089,'_exp02/zones/objects/gears/gear_single',0), -(6090,6090,'_exp02/characters/monsters/beholder_illusion',0), -(6091,6091,'_exp02/characters/monsters/carnivorous_plant_illusion',0), -(6092,6092,'_exp02/zones/objects/bookcases/hf_bookcase_largeornate01',0), -(6093,6093,'_exp02/zones/objects/bookcases/hf_bookcase_largeornate02',0), -(6094,6094,'_exp02/zones/objects/chairs_benches/hf_bench_ornate01_global',0), -(6095,6095,'_exp02/zones/objects/chairs_benches/ls_chair_metal01',0), -(6096,6096,'_exp02/zones/objects/chairs_benches/rd_chair_vulture_papasan01',0), -(6097,6097,'_exp02/zones/objects/chairs_benches/ls_chair_metal02_global',0), -(6098,6098,'_exp02/zones/objects/chests/ls_chest_metal01_global',0), -(6099,6099,'_exp02/zones/objects/desks/hf_desk_ornate01_global',0), -(6100,6100,'_exp02/zones/objects/fountain/sos_fountain_birdbath_floor',0), -(6101,6101,'_exp02/zones/objects/fountain/sos_fountain_birdbath_wall',0), -(6102,6102,'_exp02/zones/objects/light_sources/ls_lamp_metal_blue',0), -(6103,6103,'_exp02/zones/objects/light_sources/ls_lightsource_walltorch02',0), -(6104,6104,'_exp02/zones/objects/rugs/ls_ring_scales01',0), -(6105,6105,'_exp02/zones/objects/sculptures/hf_decoration_scrimshawfang_floor01',0), -(6106,6106,'_exp02/zones/objects/sculptures/hf_decoration_scrimshawfang_floor02',0), -(6107,6107,'_exp02/zones/objects/sculptures/ls_sculpture_glass02',0), -(6108,6108,'_exp02/zones/objects/sculptures/ls_sculpture_glass03',0), -(6109,6109,'_exp02/zones/objects/sculptures/ls_sculpture_glass_double01',0), -(6110,6110,'_exp02/zones/objects/sculptures/ls_sculpture_glass_double02',0), -(6111,6111,'_exp02/zones/objects/sculptures/sos_orb_gazing01',0), -(6112,6112,'_exp02/zones/objects/statues/ls_statue_dragon01',0), -(6113,6113,'_exp02/zones/objects/statues/ls_statue_dragon02',0), -(6114,6114,'_exp02/zones/objects/statues/ls_statue_dragon_bust01',0), -(6115,6115,'_exp02/zones/objects/tables/ls_table_long01',0), -(6116,6116,'_exp02/zones/objects/tables/ls_table_long02',0), -(6117,6117,'_exp02/zones/objects/tables/ls_table_short01',0), -(6118,6118,'_exp02/zones/objects/tables/ls_table_short02',0), -(6119,6119,'_exp02/zones/objects/tables/sos_aviak_table01',0), -(6120,6120,'_exp02/zones/objects/tapestry/ls_tapestry_awakened_cult01',0), -(6121,6121,'_exp02/zones/objects/tapestry/ls_tapestry_kerafyrm_apocalypse01',0), -(6122,6122,'_exp02/zones/objects/tapestry/ls_tapestry_kerafyrm_awakening01',0), -(6123,6123,'accessories/wearable_items/_exp02/woven_monk/chest',0), -(6124,6124,'accessories/wearable_items/_exp02/woven_monk/feet',0), -(6125,6125,'accessories/wearable_items/_exp02/woven_monk/forearms',0), -(6126,6126,'accessories/wearable_items/_exp02/woven_monk/hands',0), -(6127,6127,'accessories/wearable_items/_exp02/woven_monk/head',0), -(6128,6128,'accessories/wearable_items/_exp02/woven_monk/legs',0), -(6129,6129,'accessories/wearable_items/_exp02/woven_monk/legs_noskirt',0), -(6130,6130,'accessories/wearable_items/_exp02/woven_monk/shoulders',0), -(6131,6131,'accessories/wearable_items/_exp02/woven_monk/skirt',0), -(6132,6132,'accessories/wieldable_items/weapons/bow/long_bow/exp02_long_bow001_runic_soulseeker',0), -(6133,6133,'accessories/wieldable_items/weapons/great_spear/scythe_dragon_tooth/exp02_scythe_dragon_tooth_spine',0), -(6134,6134,'accessories/wieldable_items/weapons/hammer/crab_sceptre/exp02_crab_sceptre_destruction',0), -(6135,6135,'accessories/wieldable_items/weapons/talisman/tablet/exp02_tablet002_ornate_runes',0), -(6136,6136,'accessories/wieldable_items/shields/kite_shield/kite_shield_freeport/exp02_kite_shield_flesh',0), -(6137,6137,'accessories/wieldable_items/weapons/bow/short_bow/exp02_short_bow001_runic_heartstinger',0), -(6138,6138,'accessories/wearable_items/_exp02/brigandine_heavy/chest',0), -(6139,6139,'accessories/wearable_items/_exp02/brigandine_heavy/feet',0), -(6140,6140,'accessories/wearable_items/_exp02/brigandine_heavy/forearms',0), -(6141,6141,'accessories/wearable_items/_exp02/brigandine_heavy/hands',0), -(6142,6142,'accessories/wearable_items/_exp02/brigandine_heavy/head',0), -(6143,6143,'accessories/wearable_items/_exp02/brigandine_heavy/legs',0), -(6144,6144,'accessories/wearable_items/_exp02/brigandine_heavy/shoulders',0), -(6145,6145,'staticobjects/spires/spire_construction_6',0), -(6146,6146,'creatures/monsters/root_horror_exp02',0), -(6147,6147,'staticobjects/spires/dpo_teleportspires_houseitem01',0), -(6148,6148,'projectiles/bone_human_skull01',0), -(6149,6149,'accessories/wieldable_items/weapons/great_axe/executioner_axe/exp02_executioner_axe002_helmsplitter',0), -(6150,6150,'accessories/wieldable_items/weapons/great_axe/halberd/halberd001_runic_anuk',0), -(6151,6151,'accessories/wieldable_items/weapons/staff/cobra_staff/cobra_staff_plain_anuk',0), -(6152,6152,'accessories/wieldable_items/weapons/hammer/eagle_sceptre/eagle_sceptre_plain_anuk',0), -(6153,6153,'accessories/wieldable_items/weapons/rapier/epee/epee001_runic_anuk',0), -(6154,6154,'accessories/wieldable_items/weapons/hammer/amber_sceptre/amber_sceptre_plain_anuk',0), -(6155,6155,'accessories/wearable_items/_exp02/robe_fire/chest',0), -(6156,6156,'accessories/wearable_items/_exp02/robe_fire/hood',0), -(6157,6157,'accessories/wearable_items/_exp02/robe_fire/pants',0), -(6158,6158,'accessories/wearable_items/_exp02/robe_fire/skirt',0), -(6159,6159,'staticobjects/dpo_invisible_cube/dpo_invisible_cube_cached',0), -(6160,6160,'accessories/wearable_items/_exp02/heavy_cloth_heroic/chest',0), -(6161,6161,'accessories/wearable_items/_exp02/heavy_cloth_heroic/feet',0), -(6162,6162,'accessories/wearable_items/_exp02/heavy_cloth_heroic/forearms',0), -(6163,6163,'accessories/wearable_items/_exp02/heavy_cloth_heroic/hands',0), -(6164,6164,'accessories/wearable_items/_exp08/dragon_armor/leather1/legs_noskirt',1096), -(6165,6165,'accessories/wieldable_items/weapons/great_spear/droag_butchering_tools/droag_butcher01',0), -(6166,6166,'accessories/wieldable_items/weapons/great_spear/droag_butchering_tools/droag_butcher02',0), -(6167,6167,'accessories/wieldable_items/weapons/great_spear/droag_butchering_tools/droag_butcher03',0), -(6168,6168,'_exp02/zones/objects/light_sources/hf_lightsource_brazier_blue01',0), -(6169,6169,'accessories/wearable_items/_exp02/chain_heroic/chest',0), -(6170,6170,'accessories/wearable_items/_exp02/chain_heroic/feet',0), -(6171,6171,'accessories/wearable_items/_exp02/chain_heroic/forearms',0), -(6172,6172,'accessories/wearable_items/_exp02/chain_heroic/hands',0), -(6173,6173,'accessories/wearable_items/_exp02/chain_heroic/head',0), -(6174,6174,'accessories/wearable_items/_exp02/chain_heroic/legs',0), -(6175,6175,'accessories/wearable_items/_exp02/chain_heroic/legs_noskirt',0), -(6176,6176,'accessories/wearable_items/_exp02/chain_heroic/shoulders',0), -(6177,6177,'accessories/wearable_items/_exp02/chain_heroic/skirt',0), -(6178,6178,'accessories/wieldable_items/weapons/sword/long_sword/exp02_long_sword_of_rage',0), -(6179,6179,'accessories/wieldable_items/weapons/dagger/embalming_blade/exp02_embalming_blade_vyemms_fang',0), -(6180,6180,'accessories/wieldable_items/weapons/great_sword/vampire_greatsword/exp02_vampire_greatsword_gaudralek',0), -(6181,6181,'accessories/wieldable_items/weapons/hammer/mace_obsidian_edged/exp02_mace_dragonrib_club',0), -(6182,6182,'accessories/wieldable_items/weapons/great_hammer/war_hammer/exp02_war_hammer001_sledge_of_smashing',0), -(6183,6183,'accessories/wieldable_items/weapons/axe/small_dwarf/exp02_dwarf_axe_frostwrath',0), -(6184,6184,'accessories/wieldable_items/weapons/bow/short_bow/exp02_short_bow001_wurm_destroyer',0), -(6185,6185,'accessories/wieldable_items/weapons/staff/scorcerers_staff/exp02_staff_of_the_silent_star',0), -(6186,6186,'_exp02/zones/objects/crystals/dp_crystal_shard01',0), -(6187,6187,'_exp01/zones/objects/containers/dpo_brownweave_basket01',0), -(6188,6188,'accessories/wearable_items/_exp02/vanguard_chitin/exp02_chest_parasite',0), -(6189,6189,'accessories/wieldable_items/misc/stein002_ichor',0), -(6190,6190,'accessories/wieldable_items/shields/buckler_shield/streatched_leather_buckler/streatched_leather_buckler001_spikes',0), -(6191,6191,'accessories/wieldable_items/shields/ghost_shields/round_shield_etched001_mists',0), -(6192,6192,'accessories/wieldable_items/shields/round_shield/metal_etched_round/round_shield_etched001_retina',0), -(6193,6193,'accessories/wieldable_items/shields/round_shield/metal_round/metal_round_shield001_flameshield',0), -(6194,6194,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_viscera',0), -(6195,6195,'accessories/wieldable_items/weapons/axe/axe_curved_handle/axe_curved_handle_ascendant',0), -(6196,6196,'accessories/wieldable_items/weapons/great_sword/scimitar_broad_sword/scimitar_broad_sword001_runic',0), -(6197,6197,'accessories/wieldable_items/weapons/great_sword/scimitar_broad_sword/scimitar_broad_sword001_pride',0), -(6198,6198,'accessories/wieldable_items/weapons/throwing_weapons/spike/exp02_spike004_spine',0), -(6199,6199,'_exp02/zones/objects/aviak_totems/sos_totem_aviak_dualwieldaxe01',0), -(6200,6200,'_exp02/zones/objects/aviak_totems/sos_totem_aviak_dualwieldswordshield01',0), -(6201,6201,'_exp02/zones/regions/realm_of_dawn/rd_rock_small01',0), -(6202,6202,'_exp02/zones/regions/realm_of_dawn/rd_rock_small04',0), -(6203,6203,'accessories/wearable_items/profesion_hats/brigand_hat/head',0), -(6204,6204,'_exp02/zones/regions/realm_of_dawn/rd_arena_warp_cylinder01',0), -(6205,6205,'accessories/wieldable_items/weapons/dagger/parrying_blade/exp02_parrying_blade001_talon',0), -(6206,6206,'accessories/wieldable_items/weapons/talisman/orb/orb001_soulless',0), -(6207,6207,'accessories/wieldable_items/weapons/fist/cestus/spiked_cestus002_bone',0), -(6208,6208,'accessories/wieldable_items/weapons/great_spear/droag_butchering_tools/droag_butcher_render',0), -(6209,6209,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star001_dominance',0), -(6210,6210,'accessories/wieldable_items/weapons/bow/short_bow/exp02_short_bow001_ichorstrand',0), -(6211,6211,'accessories/wieldable_items/weapons/great_hammer/orc_hammer/exp02_orc_hammer_spinesnapper',0), -(6212,6212,'accessories/wieldable_items/weapons/great_sword/broad_sword/exp02_broad_sword002_runic',0), -(6213,6213,'accessories/wieldable_items/shields/buckler_shield/buckler_fae/buckler_fae_01',0), -(6214,6214,'accessories/wieldable_items/weapons/dagger/embalming_blade/exp02_embalming_blade_dragonfang',0), -(6215,6215,'accessories/wieldable_items/weapons/dagger/kris/exp02_kris001_absolution',0), -(6216,6216,'accessories/wieldable_items/weapons/great_spear/droag_butchering_tools/droag_butcher_manslayer',0), -(6217,6217,'accessories/wieldable_items/weapons/great_sword/greatsword/exp02_greatsword002_runeblade',0), -(6218,6218,'accessories/wieldable_items/weapons/fist/katar/exp02_katar002_twin_calamities1',0), -(6219,6219,'accessories/wieldable_items/weapons/hammer/crab_sceptre/exp02_crab_sceptre_doomsworn',0), -(6220,6220,'accessories/wieldable_items/weapons/spear/one_handed_spear/exp02_barbed_spear_skewer',0), -(6221,6221,'accessories/wieldable_items/weapons/rapier/rapier/exp02_rapier001_conflagrant',0), -(6222,6222,'accessories/wieldable_items/weapons/sword/long_sword/exp02_long_sword_annealed_defender',0), -(6223,6223,'accessories/wieldable_items/weapons/sword/katana/exp02_katana_oblivions_edge',0), -(6224,6224,'accessories/wieldable_items/weapons/hammer/battlehammer/exp02_battlehammer_doomhammer',0), -(6225,6225,'accessories/wieldable_items/weapons/sword/scimitar/exp02_scimitar001_accord_blade',0), -(6226,6226,'_exp02/zones/objects/orbs/sos_orb_gazing01',0), -(6227,6227,'accessories/wieldable_items/weapons/great_spear/wyrmslayer/exp02_wyrmslayer_magic',0), -(6228,6228,'accessories/wieldable_items/weapons/great_spear/wyrmslayer/exp02_wyrmslayer_rusty',0), -(6229,6229,'_exp03/characters/tool_users/orc_crushbone/orc_crushbone_soldier_bald',0), -(6230,6230,'accessories/wearable_items/_exp08/dragon_armor/leather1/shoulders',1096), -(6231,6231,'ec/pc/fae_wings/fae_wing01',0), -(6232,6232,'ec/pc/fae_wings/fae_wing02',0), -(6233,6233,'ec/pc/fae_wings/fae_wing03',0), -(6234,6234,'accessories/wearable_items/_exp08/dragon_armor/leather1/shoulders_epic',1096), -(6235,6235,'accessories/wearable_items/profesion_hats/troubadour/troubadour_01/head',0), -(6236,6236,'_exp02/zones/objects/weapon_racks_displays/ls_minion_weapons_armorstand01',0), -(6237,6237,'accessories/wieldable_items/weapons/bow/long_bow/exp02_long_bow001_dragonhorn_recurve',0), -(6238,6238,'accessories/wieldable_items/weapons/dagger/dirk/exp02_dirk002_mordiggian',0), -(6239,6239,'accessories/wieldable_items/weapons/dagger/jambiya/exp02_jambiya_blade_numinos',0), -(6240,6240,'accessories/wieldable_items/weapons/fist/cestus/exp02_spiked_cestus002_fist',0), -(6241,6241,'accessories/wieldable_items/weapons/great_axe/bardiche/exp02_bardiche01_ashbringer',0), -(6242,6242,'accessories/wieldable_items/weapons/hammer/mace_obsidian_edged/exp02_mace_obsidian_obscenity',0), -(6243,6243,'accessories/wieldable_items/weapons/sword/scimitar/exp02_scimitar001_hierophant',0), -(6244,6244,'_exp03/characters/tool_users/orc_crushbone/orc_crushbone_warlord',0), -(6245,6245,'accessories/wearable_items/profesion_hats/templar/templar_helm_01/head',0), -(6246,6246,'accessories/wieldable_items/weapons/ghost_weapons/war_hammer002_ornate_ghost',0), -(6247,6247,'accessories/wieldable_items/shields/tower_shield/qeynos_guard_tower_shield/exp02_qeynos_guard_tower_shield_plain',0), -(6248,6248,'accessories/wieldable_items/weapons/hammer/cudgel/exp02_cudgel002_ornate',0), -(6249,6249,'accessories/wieldable_items/weapons/sword/qeynos_cutlass/exp02_qeynos_cutlass',0), -(6250,6250,'accessories/wearable_items/profesion_hats/berserker/berserker_helm_01/head',0), -(6251,6251,'accessories/wieldable_items/shields/buckler_shield/qeynos_buckler/exp02_qeynos_buckler',0), -(6252,6252,'accessories/wearable_items/profesion_hats/berserker/berserker_helm_02/head',0), -(6253,6253,'_exp03/characters/tool_users/orc_crushbone/orc_crushbone_scout',0), -(6254,6254,'accessories/wieldable_items/weapons/fist/qeynos_wraps/exp02_qeynos_wraps',0), -(6255,6255,'accessories/wieldable_items/shields/buckler_shield/qeynos_buckler/exp02_qeynos_buckler_red',0), -(6256,6256,'creatures/monsters/goo_spikes',0), -(6257,6257,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/skirt',1096), -(6258,6258,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/chest',1096), -(6259,6259,'_exp03/characters/tool_users/orc_crushbone/orc_crushbone_mystic',0), -(6260,6260,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/feet',1096), -(6261,6261,'accessories/wearable_items/profesion_hats/dirge/dirge_01/head',0), -(6262,6262,'staticobjects/racks/fprt_weaponrack_sword001',0), -(6263,6263,'staticobjects/containers/fprt_crate_large_militaryboarded01',0), -(6264,6264,'staticobjects/containers/fprt_crate_small_military01',0), -(6265,6265,'staticobjects/weapons/fprt_weapons_arrowgroup01',0), -(6266,6266,'staticobjects/weapons/fprt_weapons_tableshortbow01',0), -(6267,6267,'staticobjects/weapons/fprt_weapons_tablethrowaxe01',0), -(6268,6268,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/forearms',1096), -(6269,6269,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/hands',1096), -(6270,6270,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/head',1096), -(6271,6271,'ec/pc/fae_wings/fae_wing04',0), -(6272,6272,'ec/pc/fae_wings/fae_wing05',0), -(6273,6273,'ec/pc/fae_wings/fae_wing06',0), -(6274,6274,'ec/pc/fae_wings/fae_wing07',0), -(6275,6275,'ec/pc/fae_wings/fae_wing08',0), -(6276,6276,'ec/pc/fae_wings/fae_wing09',0), -(6277,6277,'ec/pc/fae_wings/fae_wing10',0), -(6278,6278,'ec/pc/fae_wings/fae_wing11',0), -(6279,6279,'ec/pc/fae_wings/fae_wing12',0), -(6280,6280,'_exp03/characters/monsters/golem_crystal',0), -(6281,6281,'_exp03/characters/monsters/golem_magma',0), -(6282,6282,'_exp03/characters/monsters/golem_shambling_mound',0), -(6283,6283,'_exp03/characters/monsters/golem_marble',0), -(6284,6284,'_exp03/characters/monsters/golem_stone',0), -(6285,6285,'_exp03/characters/monsters/clockwork_menace',0), -(6286,6286,'_exp03/characters/monsters/copter_enforcer',0), -(6287,6287,'_exp03/characters/monsters/copter_fixer',0), -(6288,6288,'_exp03/characters/monsters/copter_welder',0), -(6289,6289,'_exp03/characters/monsters/stirge',0), -(6290,6290,'_exp03/characters/monsters/werewolf',0), -(6291,6291,'_exp03/characters/monsters/wood_elemental',0), -(6292,6292,'accessories/wearable_items/starter_clothes/fae_male/arms',0), -(6293,6293,'accessories/wearable_items/starter_clothes/fae_male/chest',0), -(6294,6294,'accessories/wearable_items/starter_clothes/fae_male/legs',0), -(6295,6295,'accessories/wearable_items/starter_clothes/fae_male/sleeves',0), -(6296,6296,'accessories/wearable_items/starter_clothes/fae_female/arms',0), -(6297,6297,'accessories/wearable_items/starter_clothes/fae_female/chest',0), -(6298,6298,'accessories/wearable_items/starter_clothes/fae_female/legs',0), -(6299,6299,'accessories/wearable_items/starter_clothes/fae_female/sleeves',0), -(6300,6300,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/legs',1096), -(6301,6301,'ap04/adv04_dun_end_of_endless/end_r143_int_door04',0), -(6302,6302,'ap04/adv04_dun_end_of_endless/end_r149_int_backdoor01',0), -(6303,6303,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/legs_noskirt',1096), -(6304,6304,'staticobjects/tents/qey_tent03',0), -(6305,6305,'soga_appearances/ec/npc/ghost_soga_vl_child_female01_h1',0), -(6306,6306,'soga_appearances/ec/npc/ghost_soga_vl_child_male01_h2',0), -(6307,6307,'soga_appearances/ec/npc/ghost_soga_vl_old_female01_h2',0), -(6308,6308,'soga_appearances/ec/npc/ghost_soga_vl_old_male01_h1_b1',0), -(6309,6309,'soga_appearances/ec/npc/ghost_soga_vl_young_female01_h2',0), -(6310,6310,'soga_appearances/ec/npc/ghost_soga_vl_young_female02_h3',0), -(6311,6311,'soga_appearances/ec/npc/ghost_soga_vl_young_male01_h1_b0',0), -(6312,6312,'soga_appearances/ec/npc/ghost_soga_vl_young_male02_h2_b3',0), -(6313,6313,'staticobjects/dpo_invisible_cube/dpo_invisible_cube_big',0), -(6314,6314,'staticobjects/crystals/crystals_04',0), -(6315,6315,'_exp03/characters/monsters/bone_golem',0), -(6316,6316,'accessories/wearable_items/profesion_hats/guardian/guardian_01/head',0), -(6317,6317,'soga_appearances/ec/npc/tc_soga_vl_young_female01_h1',0), -(6318,6318,'soga_appearances/ec/npc/tc_soga_vl_young_female01_h3',0), -(6319,6319,'soga_appearances/ec/npc/tc_soga_vl_young_female03',0), -(6320,6320,'soga_appearances/ec/npc/tc_soga_vl_young_male01_h0_b1',0), -(6321,6321,'soga_appearances/ec/npc/tc_soga_vl_young_male01_h0_b2',0), -(6322,6322,'soga_appearances/ec/npc/tc_soga_vl_young_male01_h1_b0',0), -(6323,6323,'soga_appearances/ec/npc/tc_soga_vl_young_male01_h2_b0',0), -(6324,6324,'staticobjects/freeport/fprt_a04_floatingplatform01',0), -(6325,6325,'accessories/wieldable_items/weapons/great_hammer/morning_star/morning_star01_2h',0), -(6326,6326,'accessories/wearable_items/profesion_hats/jester/jester_01/head',0), -(6327,6327,'staticobjects/liveevent/diamond_ring_april',0), -(6328,6328,'_exp03/zones/objects/banners/sfm_kobold_banner01',0), -(6329,6329,'_exp03/zones/objects/beds/sfm_bed_single01',0), -(6330,6330,'_exp03/zones/objects/chairs/sfm_bench_ornate01',0), -(6331,6331,'_exp03/zones/objects/chairs/sfm_bench_ornate01_long',0), -(6332,6332,'_exp03/zones/objects/mechanical_parts/sfm_gear_panel01',0), -(6333,6333,'_exp03/zones/objects/mechanical_parts/sfm_gear_panel02',0), -(6334,6334,'_exp03/zones/objects/mechanical_parts/sfm_wrench01',0), -(6335,6335,'_exp03/zones/objects/tables/sfm_table_wood01',0), -(6336,6336,'_exp03/zones/objects/tables/sfm_table_woodround01',0), -(6337,6337,'_exp03/zones/objects/tents/sf_tent_kobold01',0), -(6338,6338,'staticobjects/doors/arch_iron_grid',0), -(6339,6339,'accessories/wieldable_items/soga_weapons/fighter/blade_of_fist',0), -(6340,6340,'accessories/wieldable_items/soga_weapons/fighter/calamity_of_sky',0), -(6341,6341,'accessories/wieldable_items/soga_weapons/fighter/destroyer',0), -(6342,6342,'accessories/wieldable_items/soga_weapons/fighter/invincibility_of_eight',0), -(6343,6343,'accessories/wieldable_items/soga_weapons/fighter/sword_of_nova',0), -(6344,6344,'accessories/wieldable_items/soga_weapons/fighter/sword_of_serpent',0), -(6345,6345,'accessories/wieldable_items/soga_weapons/mage/staff_of_blackwind',0), -(6346,6346,'accessories/wieldable_items/soga_weapons/mage/staff_of_bloody',0), -(6347,6347,'accessories/wieldable_items/soga_weapons/mage/staff_of_creator',0), -(6348,6348,'accessories/wieldable_items/soga_weapons/mage/staff_of_elemental',0), -(6349,6349,'accessories/wieldable_items/soga_weapons/mage/staff_of_octahedral',0), -(6350,6350,'accessories/wieldable_items/soga_weapons/mage/staff_of_phenix',0), -(6351,6351,'accessories/wieldable_items/soga_weapons/priest/deadman_call',0), -(6352,6352,'accessories/wieldable_items/soga_weapons/priest/eternal_flame',0), -(6353,6353,'accessories/wieldable_items/soga_weapons/priest/massive_hammer',0), -(6354,6354,'accessories/wieldable_items/soga_weapons/priest/seal_of_templar',0), -(6355,6355,'accessories/wieldable_items/soga_weapons/priest/the_holy_spirit',0), -(6356,6356,'accessories/wieldable_items/soga_weapons/priest/thunder_blade',0), -(6357,6357,'accessories/wieldable_items/soga_weapons/scout/dragon_sharp',0), -(6358,6358,'accessories/wieldable_items/soga_weapons/scout/great_shark',0), -(6359,6359,'accessories/wieldable_items/soga_weapons/scout/misty_silver',0), -(6360,6360,'accessories/wieldable_items/soga_weapons/scout/silver_moon',0), -(6361,6361,'accessories/wieldable_items/soga_weapons/scout/traceless',0), -(6362,6362,'accessories/wieldable_items/soga_weapons/scout/wannish_dream',0), -(6363,6363,'accessories/wieldable_items/soga_weapons/unique4/decree_executor',0), -(6364,6364,'accessories/wieldable_items/soga_weapons/unique4/demon_eye_black',0), -(6365,6365,'accessories/wieldable_items/soga_weapons/unique4/demon_eye_red',0), -(6366,6366,'accessories/wieldable_items/soga_weapons/unique4/dragon_flame',0), -(6367,6367,'accessories/wieldable_items/soga_weapons/unique4/flame_of_truth',0), -(6368,6368,'accessories/wearable_items/clothing/common_tint01/chest',0), -(6369,6369,'accessories/wearable_items/clothing/common_tint01/legs',0), -(6370,6370,'accessories/wearable_items/clothing/common_tint01/shoulders',0), -(6371,6371,'ec/npc/curt_schilling',0), -(6372,6372,'ec/npc/curt_schilling_helm',0), -(6373,6373,'staticobjects/adv04/end_r143_int_obj_brazier01',0), -(6374,6374,'staticobjects/adv04/furniture/objects_004_bottle',0), -(6375,6375,'staticobjects/adv04/furniture/objects_008_bottle',0), -(6376,6376,'staticobjects/adv04/furniture/objects_009_bottle',0), -(6377,6377,'staticobjects/adv04/furniture/objects_bamboo_capboard',0), -(6378,6378,'staticobjects/adv04/furniture/objects_bamboo_chair',0), -(6379,6379,'staticobjects/adv04/furniture/objects_bed',0), -(6380,6380,'staticobjects/adv04/furniture/objects_bed_2',0), -(6381,6381,'staticobjects/adv04/furniture/objects_big_square_desk',0), -(6382,6382,'staticobjects/adv04/furniture/objects_circledesk',0), -(6383,6383,'staticobjects/adv04/furniture/objects_circledesk_chair',0), -(6384,6384,'staticobjects/adv04/furniture/objects_cupboard02',0), -(6385,6385,'staticobjects/adv04/furniture/objects_desk_lamp',0), -(6386,6386,'staticobjects/adv04/furniture/objects_small_square_chair',0), -(6387,6387,'staticobjects/adv04/furniture/objects_small_square_desk',0), -(6388,6388,'staticobjects/adv04/furniture/objects_wood_capboard',0), -(6389,6389,'staticobjects/adv04/furniture/potted_bonsai_1',0), -(6390,6390,'staticobjects/adv04/furniture/potted_bonsai_2',0), -(6391,6391,'ap04/adv04_rgn_mystic_lake/lake_obj_humanstatue_01',0), -(6392,6392,'creatures/tu/livingstatue_tc',0), -(6393,6393,'accessories/wieldable_items/weapons/talisman/orb/adv04_orb001_necromantic',0), -(6394,6394,'staticobjects/traps/befallen_spikes_trap',0), -(6395,6395,'staticobjects/traps/cmmn_orccatpult_weight',0), -(6396,6396,'accessories/wearable_items/profesion_hats/bruiser/bruiser_01/head',0), -(6397,6397,'accessories/wieldable_items/misc/bottle_invisibleman',0), -(6398,6398,'staticobjects/walls/nektropos_basement',0), -(6399,6399,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_elven_scepter_plain',0), -(6400,6400,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_human_skull_scepter_plain',0), -(6401,6401,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_ivy_shrouded_glowing_orb',0), -(6402,6402,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_kama_plain',0), -(6403,6403,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_long_plain_wand',0), -(6404,6404,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_particle_battlehammer_plain',0), -(6405,6405,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_zombie_arm_club_animated',0), -(6406,6406,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_zombie_arm_club_plain',0), -(6407,6407,'accessories/wieldable_items/weapons/exp03/1h_pierce/exp03_1hp_unicorn_horn_dagger_plain',0), -(6408,6408,'accessories/wieldable_items/weapons/exp03/1h_pierce/exp03_1hp_vampiric_sacrificial_dagger',0), -(6409,6409,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_orc_machete_plain',0), -(6410,6410,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_ornate_elven_rapier',0), -(6411,6411,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_wakizashi_plain',0), -(6412,6412,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_bugbear_rock_club',0), -(6413,6413,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_bugbear_rock_sword',0), -(6414,6414,'accessories/wieldable_items/weapons/exp03/bow/exp03_bow_giant_wooden_bow',0), -(6415,6415,'accessories/wieldable_items/shields/exp03/exp03_diamond_shaped_round_shield_plain',0), -(6416,6416,'accessories/wieldable_items/shields/exp03/exp03_high_elven_kite_shield_plain',0), -(6417,6417,'staticobjects/liveevent/exp03/dpo_fear_gate',0), -(6418,6418,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_wooden_vine_scepter_plain',0), -(6419,6419,'staticobjects/containers/floor_vase_human_qey_lovingcup01',0), -(6420,6420,'staticobjects/containers/floor_vase_human_marbleblack_med02',0), -(6421,6421,'staticobjects/containers/floor_vase_human_obsidian_med01',0), -(6422,6422,'staticobjects/chairs/floor_chair_solro_chair01',0), -(6423,6423,'staticobjects/chairs/floor_chair_solro_chair02_wide',0), -(6424,6424,'staticobjects/chests/floor_chest_orc_treasurechest01',0), -(6425,6425,'staticobjects/torches/floor_torch_solro_tabletorch01',0), -(6426,6426,'staticobjects/tables/floor_table_solro_square01',0), -(6427,6427,'staticobjects/tables/floor_table_solro_long01',0), -(6428,6428,'staticobjects/tables/floor_table_befallen_round01',0), -(6429,6429,'staticobjects/chairs/floor_chair_befallen_office01',0), -(6430,6430,'staticobjects/dressers/floor_closet_befallen_02',0), -(6431,6431,'staticobjects/dressers/floor_armoire_befallen_01',0), -(6432,6432,'staticobjects/beds/floor_bed_befallen_lord01',0), -(6433,6433,'staticobjects/dressers/floor_closet_befallen_01',0), -(6434,6434,'staticobjects/tables/floor_table_befallen_office01',0), -(6435,6435,'staticobjects/tables/floor_table_befallen_square01',0), -(6436,6436,'accessories/wieldable_items/soga_weapons/scout/dragon_sharp_magic_poison',0), -(6437,6437,'accessories/wieldable_items/soga_weapons/scout/wannish_dream_smoking',0), -(6438,6438,'accessories/wieldable_items/soga_weapons/fighter/invincibility_of_eight_magic_ninja',0), -(6439,6439,'accessories/wieldable_items/soga_weapons/fighter/calamity_of_sky_magic',0), -(6440,6440,'accessories/wieldable_items/soga_weapons/scout/silver_moon_magic_poison',0), -(6441,6441,'creatures/tu/gelatinouscube_crate',0), -(6442,6442,'staticobjects/liveevent/exp03/life_statue',0), -(6443,6443,'staticobjects/liveevent/exp03/valor_statue',0), -(6444,6444,'staticobjects/gravestones/gravestone12',0), -(6445,6445,'creatures/monsters/dervish_stone',0), -(6446,6446,'_exp03/characters/tool_users/clockwork_protector',0), -(6447,6447,'_exp03/characters/tool_users/clockwork_soldier',0), -(6448,6448,'_exp03/characters/tool_users/kobold_caster_base',0), -(6449,6449,'_exp03/characters/tool_users/kobold_caster_hyena',0), -(6450,6450,'_exp03/characters/tool_users/kobold_caster_leopard',0), -(6451,6451,'_exp03/characters/tool_users/kobold_chieftan',0), -(6452,6452,'_exp03/characters/tool_users/kobold_soldier_base',0), -(6453,6453,'_exp03/characters/tool_users/kobold_soldier_hyena',0), -(6454,6454,'_exp03/characters/tool_users/kobold_soldier_leopard',0), -(6455,6455,'_exp03/characters/tool_users/kobold_woker_base',0), -(6456,6456,'_exp03/characters/tool_users/kobold_woker_hyena',0), -(6457,6457,'_exp03/characters/tool_users/kobold_woker_leopard',0), -(6458,6458,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_wrench01',0), -(6459,6459,'ec/pc/fae_wings/fae_wing01_t',0), -(6460,6460,'ec/pc/fae_wings/fae_wing02_t',0), -(6461,6461,'ec/pc/fae_wings/fae_wing03_t',0), -(6462,6462,'ec/pc/fae_wings/fae_wing04_t',0), -(6463,6463,'ec/pc/fae_wings/fae_wing05_t',0), -(6464,6464,'ec/pc/fae_wings/fae_wing06_t',0), -(6465,6465,'ec/pc/fae_wings/fae_wing07_t',0), -(6466,6466,'ec/pc/fae_wings/fae_wing08_t',0), -(6467,6467,'ec/pc/fae_wings/fae_wing09_t',0), -(6468,6468,'ec/pc/fae_wings/fae_wing10_t',0), -(6469,6469,'accessories/wearable_items/cloak/exp03/cloak_sq_01',0), -(6470,6470,'staticobjects/doors/df_jaildoor01',0), -(6471,6471,'staticobjects/crates/floor_crate05_any_wood',0), -(6472,6472,'staticobjects/shop/floor_display_any_bags01',0), -(6473,6473,'accessories/wearable_items/profesion_hats/assassin/assassin_01/head',0), -(6474,6474,'staticobjects/gong/ogr_gong001',0), -(6475,6475,'staticobjects/lighting/wall_walllamp_darkelf_ornate01_tradeskill',0), -(6476,6476,'accessories/wearable_items/cloak/exp03/cloak_di_01',0), -(6477,6477,'accessories/wearable_items/cloak/exp03/cloak_dt_01',0), -(6478,6478,'staticobjects/switches/door_switchfloor1',0), -(6479,6479,'staticobjects/switches/door_switchfloor01_handle',0), -(6480,6480,'staticobjects/switches/door_switchwall01',0), -(6481,6481,'staticobjects/switches/door_switchwall01_handle',0), -(6482,6482,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/shoulders',1096), -(6483,6483,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_soulfire',0), -(6484,6484,'staticobjects/adv04/furniture/objects_wood_capboard_dpo',0), -(6485,6485,'ec/pc/fae_silvani/fae_silvani',0), -(6486,6486,'ec/pc/fae/fae_dark_female',0), -(6487,6487,'ec/pc/fae/fae_dark_male',0), -(6488,6488,'ec/pc/fae/fae_light_female',0), -(6489,6489,'ec/pc/fae/fae_light_male',0), -(6490,6490,'_exp03/characters/tool_users/vampire_greater/vampire_greater_male01',0), -(6491,6491,'_exp03/characters/tool_users/vampire_greater/vampire_greater_male02',0), -(6492,6492,'accessories/wearable_items/profesion_hats/evil_helm/evil_helm_01/head',0), -(6493,6493,'_exp03/zones/objects/weapon_rack/cbk_weapon_rack_floor02',0), -(6494,6494,'_exp03/zones/objects/weapon_rack/cbk_weapon_rack_floor02_blue',0), -(6495,6495,'_exp03/zones/objects/weapon_rack/cbk_weapon_rack_floor',0), -(6496,6496,'_exp03/zones/objects/weapon_rack/cbk_weapon_rack_floor_blue',0), -(6497,6497,'_exp03/zones/objects/rubbish/cbk_rubbish_muckbones01',0), -(6498,6498,'_exp03/zones/objects/rubbish/cbk_rubbish_muckbones02',0), -(6499,6499,'_exp03/zones/objects/tables/cbk_table_small01',0), -(6500,6500,'_exp03/zones/objects/tables/cbk_table_small01_blue',0), -(6501,6501,'_exp03/zones/objects/tables/cbk_table_long',0), -(6502,6502,'_exp03/zones/objects/tables/cbk_table_long_blue',0), -(6503,6503,'_exp03/zones/objects/chests/cbk_chest_metal01',0), -(6504,6504,'_exp03/zones/objects/chests/cbk_chest_metal02',0), -(6505,6505,'_exp03/zones/objects/chests/cbk_trunk_shoddy',0), -(6506,6506,'_exp03/zones/objects/weapon_rack/cbk_weaponsrack_wall01',0), -(6507,6507,'_exp03/zones/objects/weapon_rack/cbk_weaponsrack_wall01_blue',0), -(6508,6508,'_exp03/zones/objects/weapon_rack/cbk_weaponsrack_wall02',0), -(6509,6509,'_exp03/zones/objects/weapon_rack/cbk_weaponsrack_wall02_blue',0), -(6510,6510,'_exp03/zones/objects/bookcases/cbk_bookcase01',0), -(6511,6511,'_exp03/zones/objects/bookcases/cbk_bookcase02',0), -(6512,6512,'_exp03/zones/objects/bookcases/cbk_potionsack',0), -(6513,6513,'_exp03/zones/objects/chairs/cbk_chair01',0), -(6514,6514,'_exp03/zones/objects/chairs/cbk_chair01_blue',0), -(6515,6515,'accessories/wieldable_items/misc/pillow_invisibleman',0), -(6516,6516,'_exp03/characters/tool_users/goblin_aqua_exp03',0), -(6517,6517,'_exp03/zones/exp03_dun_klakanon/recharging_station',0), -(6518,6518,'_exp03/zones/exp03_rgn_greater_faydark/gf_rock_medium02',0), -(6519,6519,'accessories/wieldable_items/weapons/hammer/fighting_stick/fighting_stick_capped_flaming',0), -(6520,6520,'_exp03/characters/tool_users/vampire_greater/vampire_greater_female01',0), -(6521,6521,'_exp03/characters/tool_users/vampire_greater/vampire_greater_female02',0), -(6522,6522,'_exp03/zones/exp03_dun_klakanon/recharging_station_cm',0), -(6523,6523,'accessories/wieldable_items/weapons/hammer/wine_bottle/winebottle01_blue',0), -(6524,6524,'_exp03/characters/monsters/clockwork_worker',0), -(6525,6525,'_exp03/characters/tool_users/myrdal_chieftain',0), -(6526,6526,'_exp03/characters/tool_users/myrdal_mystic',0), -(6527,6527,'_exp03/characters/tool_users/myrdal_warrior',0), -(6528,6528,'_exp03/characters/tool_users/myrdal_worker',0), -(6529,6529,'_exp03/characters/monsters/fairy_drake',0), -(6530,6530,'_exp03/zones/objects/switches/klakanon_large_switch_base',0), -(6531,6531,'_exp03/zones/objects/switches/klakanon_large_switch_lever',0), -(6532,6532,'_exp03/zones/objects/switches/klakanon_small_switch_base',0), -(6533,6533,'_exp03/zones/objects/switches/klakanon_small_switch_lever',0), -(6534,6534,'projectiles/spell_electric_ball_eyepoint',0), -(6535,6535,'_exp03/characters/monsters/clockwork_dustpan',0), -(6536,6536,'_exp03/characters/monsters/fairy_drake01',0), -(6537,6537,'_exp03/characters/tool_users/vampire_greater/mayong_mistmoore',0), -(6538,6538,'_exp03/characters/tool_users/satyr',0), -(6539,6539,'_exp03/characters/tool_users/satyr01',0), -(6540,6540,'_exp03/characters/monsters/rumbler_shambler',0), -(6541,6541,'accessories/wieldable_items/weapons/great_sword/dragon_katana/exp03_dragon_katana_plain_mist',0), -(6542,6542,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1h_orc_machete_maestro',0), -(6543,6543,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_wakizashi_plain_cyphermist',0), -(6544,6544,'_exp03/zones/objects/idols/kal_idol_kobold_sitting',0), -(6545,6545,'_exp03/zones/objects/idols/kal_idol_kobold_standing',0), -(6546,6546,'_exp03/zones/objects/door/kal_obj_hatch01',0), -(6547,6547,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_massive_hammer_miststrike',0), -(6548,6548,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_staff_of_elemental_fiery',0), -(6549,6549,'accessories/wieldable_items/weapons/exp03/talisman/exp03_book_ornate_penta',0), -(6550,6550,'accessories/wearable_items/_exp03/chain_heroic_pristine/chest',0), -(6551,6551,'accessories/wearable_items/_exp03/chain_heroic_pristine/feet',0), -(6552,6552,'accessories/wearable_items/_exp03/chain_heroic_pristine/forearms',0), -(6553,6553,'accessories/wearable_items/_exp03/chain_heroic_pristine/hands',0), -(6554,6554,'accessories/wearable_items/_exp03/chain_heroic_pristine/head',0), -(6555,6555,'accessories/wearable_items/_exp03/chain_heroic_pristine/legs',0), -(6556,6556,'accessories/wearable_items/_exp03/chain_heroic_pristine/legs_noskirt',0), -(6557,6557,'accessories/wearable_items/_exp03/chain_heroic_pristine/shoulders',0), -(6558,6558,'accessories/wearable_items/_exp03/chain_heroic_pristine/skirt',0), -(6559,6559,'_exp03/zones/objects/altar/kal_altar_paladin',0), -(6560,6560,'accessories/wieldable_items/shields/exp03/exp03_high_elven_kite_shield_defender',0), -(6561,6561,'accessories/wearable_items/_exp03/faydark_leather_01/chest',0), -(6562,6562,'accessories/wearable_items/_exp03/faydark_leather_01/feet',0), -(6563,6563,'accessories/wearable_items/_exp03/faydark_leather_01/forearms',0), -(6564,6564,'accessories/wearable_items/_exp03/faydark_leather_01/hands',0), -(6565,6565,'accessories/wearable_items/_exp03/faydark_leather_01/head',0), -(6566,6566,'accessories/wearable_items/_exp03/faydark_leather_01/legs',0), -(6567,6567,'accessories/wearable_items/_exp03/faydark_leather_01/legs_noskirt',0), -(6568,6568,'accessories/wearable_items/_exp03/faydark_leather_01/shoulders',0), -(6569,6569,'accessories/wearable_items/_exp03/faydark_leather_01/skirt',0), -(6570,6570,'_exp03/zones/objects/greater_faydark/lightsources/gf_lightsource_lamppost03',0), -(6571,6571,'_exp03/zones/objects/lesser_faydark/lightsources/lf_lightsource_nybright_torch01',0), -(6572,6572,'_exp03/zones/objects/lesser_faydark/tents/lf_satyr_tent01',0), -(6573,6573,'_exp03/zones/objects/lesser_faydark/tents/lf_satyr_wall_tent01',0), -(6574,6574,'_exp03/zones/objects/banners/gf_crushbone_post01',0), -(6575,6575,'_exp03/zones/objects/firepits/gf_firepit_bugbear01',0), -(6576,6576,'_exp03/zones/objects/lesser_faydark/tents/lf_tent_nybright01',0), -(6577,6577,'staticobjects/halloween/le_jackolantern01',0), -(6578,6578,'staticobjects/halloween/le_jackolantern02',0), -(6579,6579,'staticobjects/halloween/le_jackolantern03',0), -(6580,6580,'_exp03/zones/objects/kelethin/tents/kel_fae_tent_merchant01',0), -(6581,6581,'_exp03/zones/objects/kelethin/tents/kel_fae_tent_merchant02',0), -(6582,6582,'_exp03/zones/objects/kelethin/forge/kel_fae_forge01',0), -(6583,6583,'_exp03/zones/objects/kelethin/containers/kel_container_basket02',0), -(6584,6584,'_exp03/zones/objects/kelethin/containers/kel_container_basket03',0), -(6585,6585,'_exp03/zones/objects/kelethin/banners/kel_banner_standing_sylvanhunters01',0), -(6586,6586,'_exp03/zones/objects/kelethin/banners/kel_banner_post',0), -(6587,6587,'_exp03/zones/objects/kelethin/banners/kel_banner_scout01',0), -(6588,6588,'_exp02/zones/objects/eggs/sos_dragoneggs_broken_pink',0), -(6589,6589,'_exp02/zones/objects/eggs/sos_dragoneggs_broken_purple',0), -(6590,6590,'_exp02/zones/objects/eggs/sos_dragoneggs_unbroken_blue',0), -(6591,6591,'_exp02/zones/objects/eggs/sos_dragoneggs_unbroken_pink',0), -(6592,6592,'_exp02/zones/objects/eggs/sos_dragoneggs_mixed_purple',0), -(6593,6593,'_exp03/zones/regions/greater_faydark/gf_flora/gf_flora_mushroom_huge03',0), -(6594,6594,'_exp03/zones/objects/lesser_faydark/lightsources/lf_lightsource_monk_torch_withbase01',0), -(6595,6595,'staticobjects/tree/tree_pine_jagged01',0), -(6596,6596,'_exp03/zones/regions/lesser_faydark/lf_flora/lf_flora_mushroom_bent02',0), -(6597,6597,'_exp03/zones/regions/lesser_faydark/lf_flora/lf_flora_mushroom_bent01',0), -(6598,6598,'projectiles/exp03/pumpkin_flaming',0), -(6599,6599,'accessories/wieldable_items/soga_weapons/mage/dpo_housing/staff_of_creator_dpo',0), -(6600,6600,'_exp03/zones/objects/emerald_halls/eh_flora_wuoshi_victim02',0), -(6601,6601,'_exp03/zones/objects/firepits/cbk_lightsource_firepot_small01',0), -(6602,6602,'_exp03/zones/objects/signs/lp_roadsign_post01',0), -(6603,6603,'_exp03/zones/objects/signs/lp_roadsign_post_double01',0), -(6604,6604,'_exp03/zones/objects/signs/lp_roadsign_post_doubleangle01',0), -(6605,6605,'_exp03/zones/objects/signs/lp_roadsign_post_triple01',0), -(6606,6606,'_exp03/zones/objects/signs/lp_roadsign_sign01',0), -(6607,6607,'_exp03/zones/objects/signs/lp_roadsign_sign02',0), -(6608,6608,'accessories/wearable_items/_exp08/dragon_armor/leather1_blue/shoulders_epic',1096), -(6609,6609,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/skirt',1096), -(6610,6610,'accessories/wieldable_items/weapons/exp03/bostaff/exp03_bws_tribal_spear_frost',0), -(6611,6611,'_exp03/characters/tool_users/vampire_greater/vampire_greater_armored_female01',0), -(6612,6612,'_exp03/characters/tool_users/vampire_greater/vampire_greater_armored_male01',0), -(6613,6613,'_exp03/characters/monsters/wuoshi',0), -(6614,6614,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_elven_wizard_staff',0), -(6615,6615,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_elven_wizard_staff_princess',0), -(6616,6616,'accessories/wieldable_items/weapons/exp03/bow/exp03_bow_wannish_dreams_raincaller',0), -(6617,6617,'_exp03/zones/exp03_dun_klakanon_epic02_court/power_cell',0), -(6618,6618,'_exp03/zones/objects/mechanical_parts/clockwork_gear',0), -(6619,6619,'accessories/wieldable_items/shields/exp03/exp03_gnomish_shield',0), -(6620,6620,'accessories/wieldable_items/shields/exp03/exp03_mistmoore_shield',0), -(6621,6621,'accessories/wieldable_items/shields/exp03/exp03_orc_round_shield',0), -(6622,6622,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol',0), -(6623,6623,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_blue',0), -(6624,6624,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_gold',0), -(6625,6625,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_green',0), -(6626,6626,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_red',0), -(6627,6627,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_violet',0), -(6628,6628,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_white',0), -(6629,6629,'accessories/wearable_items/_exp03/kaladim_chain_01/chest',0), -(6630,6630,'accessories/wearable_items/_exp03/kaladim_chain_01/feet',0), -(6631,6631,'accessories/wearable_items/_exp03/kaladim_chain_01/forearms',0), -(6632,6632,'accessories/wearable_items/_exp03/kaladim_chain_01/hands',0), -(6633,6633,'accessories/wearable_items/_exp03/kaladim_chain_01/head',0), -(6634,6634,'accessories/wearable_items/_exp03/kaladim_chain_01/legs',0), -(6635,6635,'accessories/wearable_items/_exp03/kaladim_chain_01/legs_noskirt',0), -(6636,6636,'accessories/wearable_items/_exp03/kaladim_chain_01/shoulders',0), -(6637,6637,'accessories/wearable_items/_exp03/kaladim_chain_01/skirt',0), -(6638,6638,'accessories/wieldable_items/weapons/staff/bo_staff/bo_staff002_ornate_fiery',0), -(6639,6639,'accessories/wieldable_items/shields/exp03/exp03_fae_buckler',0), -(6640,6640,'accessories/wearable_items/_exp03/kaladim_vanguard_01/chest',0), -(6641,6641,'accessories/wearable_items/_exp03/kaladim_vanguard_01/feet',0), -(6642,6642,'accessories/wearable_items/_exp03/kaladim_vanguard_01/forearms',0), -(6643,6643,'accessories/wearable_items/_exp03/kaladim_vanguard_01/hands',0), -(6644,6644,'accessories/wearable_items/_exp03/kaladim_vanguard_01/head',0), -(6645,6645,'accessories/wearable_items/_exp03/kaladim_vanguard_01/legs',0), -(6646,6646,'accessories/wearable_items/_exp03/kaladim_vanguard_01/legs_noskirt',0), -(6647,6647,'accessories/wearable_items/_exp03/kaladim_vanguard_01/right',0), -(6648,6648,'accessories/wearable_items/_exp03/kaladim_vanguard_01/shoulders',0), -(6649,6649,'accessories/wearable_items/_exp03/kaladim_vanguard_01/shoulders_nopauldrons',0), -(6650,6650,'accessories/wearable_items/_exp03/kaladim_vanguard_01/skirt',0), -(6651,6651,'_exp03/zones/objects/mechanical_parts/clockwork_gear2',0), -(6652,6652,'staticobjects/liveevent/exp03/dpo_houseitem_solusekro',0), -(6653,6653,'staticobjects/dock_items/fprt_hood_fish01',0), -(6654,6654,'staticobjects/dock_items/fprt_hood_fish_bucket01',0), -(6655,6655,'accessories/wieldable_items/shields/exp03/exp03_decaying_tower_shield',0), -(6656,6656,'_exp03/zones/objects/kelethin/dresser/kel_dresser01',0), -(6657,6657,'staticobjects/papers/hanging_clipboard',0), -(6658,6658,'accessories/wieldable_items/weapons/exp03/bostaff/exp03_bws_elven_wizard_staff',0), -(6659,6659,'accessories/wearable_items/_exp03/faydark_robe_01/chest',0), -(6660,6660,'accessories/wearable_items/_exp03/faydark_robe_01/hood',0), -(6661,6661,'accessories/wearable_items/_exp03/faydark_robe_01/pants',0), -(6662,6662,'accessories/wearable_items/_exp03/faydark_robe_01/skirt',0), -(6663,6663,'_exp03/characters/monsters/mcp',0), -(6664,6664,'_exp03/zones/regions/greater_faydark/gf_door/gf_door_rock_frame01',0), -(6665,6665,'_exp03/zones/regions/greater_faydark/gf_door/gf_door_wood_door01',0), -(6666,6666,'_exp03/zones/regions/greater_faydark/gf_door/gf_door_wood_frame01',0), -(6667,6667,'_exp03/zones/objects/idols/holy_symbol_nature001',0), -(6668,6668,'staticobjects/halloween/lavastorm_fire_bridge',0), -(6669,6669,'_exp03/characters/tool_users/clockwork_gnome_female',0), -(6670,6670,'_exp03/characters/tool_users/clockwork_gnome_male',0), -(6671,6671,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/chest',1096), -(6672,6672,'accessories/wearable_items/halloween_masks/nightblood_mask/head',0), -(6673,6673,'creatures/mounts/hover_pad',0), -(6674,6674,'staticobjects/eig/exp03_eig_harvest_location_rare',0), -(6675,6675,'staticobjects/doors/qey_ph_int_5r01_rm06_door01',0), -(6676,6676,'accessories/wearable_items/halloween_masks/arrow_mask/head',0), -(6677,6677,'accessories/wieldable_items/weapons/exp03/pike/exp03_pik_solusekro',0), -(6678,6678,'accessories/wearable_items/halloween_masks/amygdalan_mask/head',0), -(6679,6679,'_exp03/characters/monsters/clockwork_spider',0), -(6680,6680,'_exp03/zones/regions/steamfont_mountains/sfm_epic01/sfm_epic01_mainroom_bridge01',0), -(6681,6681,'_exp03/zones/regions/steamfont_mountains/sfm_epic01/sfm_epic01_mainroom_bridge02',0), -(6682,6682,'_exp03/zones/regions/steamfont_mountains/sfm_epic01/sfm_epic01_mainroom_bridge03',0), -(6683,6683,'accessories/wearable_items/cloak/exp03/cloak_sq_02',0), -(6684,6684,'staticobjects/liveevent/halloween/cazic_bonefetisha001',0), -(6685,6685,'staticobjects/liveevent/halloween/cazic_bonefetishb001',0), -(6686,6686,'staticobjects/liveevent/halloween/cazic_bonefetishc001',0), -(6687,6687,'_exp03/zones/objects/tents/gf_tent_fprtexile_red01',0), -(6688,6688,'_exp03/zones/objects/tents/gf_tent_fprtexile_yellow01',0), -(6689,6689,'_exp03/zones/objects/kaladim/barricade/kal_barricade_dwarf01',0), -(6690,6690,'_exp03/zones/objects/kaladim/chairs/kal_chair_dwarf',0), -(6691,6691,'_exp03/zones/objects/kaladim/chairs/kal_stool_dwarf',0), -(6692,6692,'_exp03/zones/objects/kaladim/stein/kal_stein_dwarf01',0), -(6693,6693,'_exp03/zones/objects/kaladim/tables/kal_table_dwarf_large',0), -(6694,6694,'_exp03/zones/objects/kaladim/tables/kal_table_dwarf_sm',0), -(6695,6695,'_exp03/zones/objects/kaladim/throne/kal_throne_dwarf',0), -(6696,6696,'_exp03/zones/objects/kaladim/bookcases/bbm_bookcase_dwarf01',0), -(6697,6697,'_exp03/zones/objects/kaladim/chests/bbm_crate_wood01',0), -(6698,6698,'_exp03/zones/objects/kaladim/chests/bbm_crate_wood02',0), -(6699,6699,'_exp03/zones/objects/kaladim/doors/kal_obj_door_static01',0), -(6700,6700,'_exp03/zones/objects/kaladim/signs/kal_obj_sign01',0), -(6701,6701,'_exp03/zones/objects/kaladim/doors/kal_obj_stormguard_door_solid01',0), -(6702,6702,'_exp03/zones/objects/kaladim/doors/kal_obj_stormguard_doorframe_solid01',0), -(6703,6703,'_exp03/zones/objects/kaladim/pillars/kal_obj_wallbrace01',0), -(6704,6704,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_mithanielmarr',0), -(6705,6705,'staticobjects/halloween/halloween_greenblack_candles01',0), -(6706,6706,'staticobjects/halloween/halloween_orangeblack_candles01',0), -(6707,6707,'_exp03/characters/monsters/bugbear_mystic',0), -(6708,6708,'accessories/wieldable_items/weapons/exp03/npc_only/bugbear_mystic_staff',0), -(6709,6709,'staticobjects/bucket/orc_bucket_full_meat001',0), -(6710,6710,'_exp03/zones/objects/food_items/mc_meat_piece',0), -(6711,6711,'_exp03/characters/tool_users/honor_elf/honor_elf_female',0), -(6712,6712,'_exp03/characters/tool_users/honor_elf/honor_elf_male',0), -(6713,6713,'accessories/wearable_items/_exp03/kaladim_bruiser_gi_01/chest',0), -(6714,6714,'accessories/wearable_items/_exp03/kaladim_bruiser_gi_01/pants',0), -(6715,6715,'accessories/wearable_items/_exp03/kaladim_bruiser_gi_01/shoulders',0), -(6716,6716,'creatures/tu/gods_brell_serilis',0), -(6717,6717,'creatures/tu/gods_innoruuk',0), -(6718,6718,'creatures/tu/gods_mithaniel_marr',0), -(6719,6719,'creatures/tu/gods_quellious',0), -(6720,6720,'creatures/tu/gods_rallos_zek',0), -(6721,6721,'creatures/tu/gods_solusek_ro',0), -(6722,6722,'creatures/tu/gods_tunare',0), -(6723,6723,'_exp03/zones/objects/greater_faydark/roadsigns/gf_roadsign_post',0), -(6724,6724,'_exp03/zones/objects/greater_faydark/roadsigns/gf_roadsign01',0), -(6725,6725,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_ralloszek',0), -(6726,6726,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_bishop',0), -(6727,6727,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_king',0), -(6728,6728,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_knight',0), -(6729,6729,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_pawn',0), -(6730,6730,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_queen',0), -(6731,6731,'_exp03/characters/tool_users/skeleton_marble/exp03_marble_skeleton_rook',0), -(6732,6732,'accessories/wearable_items/_exp03/faydark_plate_01/chest',0), -(6733,6733,'accessories/wearable_items/_exp03/faydark_plate_01/feet',0), -(6734,6734,'accessories/wearable_items/_exp03/faydark_plate_01/forearms',0), -(6735,6735,'accessories/wearable_items/_exp03/faydark_plate_01/hands',0), -(6736,6736,'accessories/wearable_items/_exp03/faydark_plate_01/head',0), -(6737,6737,'accessories/wearable_items/_exp03/faydark_plate_01/legs',0), -(6738,6738,'accessories/wearable_items/_exp03/faydark_plate_01/shoulders',0), -(6739,6739,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/chest',0), -(6740,6740,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/feet',0), -(6741,6741,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/forearms',0), -(6742,6742,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/hands',0), -(6743,6743,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/head',0), -(6744,6744,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/legs',0), -(6745,6745,'accessories/wearable_items/_exp03/mistmoore_brigandine_01/shoulders',0), -(6746,6746,'accessories/wearable_items/_exp03/mistmoore_chain_01/chest',0), -(6747,6747,'accessories/wearable_items/_exp03/mistmoore_chain_01/feet',0), -(6748,6748,'accessories/wearable_items/_exp03/mistmoore_chain_01/forearms',0), -(6749,6749,'accessories/wearable_items/_exp03/mistmoore_chain_01/hands',0), -(6750,6750,'accessories/wearable_items/_exp03/mistmoore_chain_01/head',0), -(6751,6751,'accessories/wearable_items/_exp03/mistmoore_chain_01/legs',0), -(6752,6752,'accessories/wearable_items/_exp03/mistmoore_chain_01/legs_noskirt',0), -(6753,6753,'accessories/wearable_items/_exp03/mistmoore_chain_01/shoulders',0), -(6754,6754,'accessories/wearable_items/_exp03/mistmoore_chain_01/skirt',0), -(6755,6755,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/chest',0), -(6756,6756,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/feet',0), -(6757,6757,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/forearms',0), -(6758,6758,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/hands',0), -(6759,6759,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/feet',1096), -(6760,6760,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/legs',0), -(6761,6761,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/legs_noskirt',0), -(6762,6762,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/shoulders',0), -(6763,6763,'accessories/wearable_items/_exp03/mistmoore_heavy_cloth_01/skirt',0), -(6764,6764,'accessories/wearable_items/_exp03/mistmoore_leather_01/chest',0), -(6765,6765,'accessories/wearable_items/_exp03/mistmoore_leather_01/feet',0), -(6766,6766,'accessories/wearable_items/_exp03/mistmoore_leather_01/forearms',0), -(6767,6767,'accessories/wearable_items/_exp03/mistmoore_leather_01/hands',0), -(6768,6768,'accessories/wearable_items/_exp03/mistmoore_leather_01/head',0), -(6769,6769,'accessories/wearable_items/_exp03/mistmoore_leather_01/legs',0), -(6770,6770,'accessories/wearable_items/_exp03/mistmoore_leather_01/legs_noskirt',0), -(6771,6771,'accessories/wearable_items/_exp03/mistmoore_leather_01/shoulders',0), -(6772,6772,'accessories/wearable_items/_exp03/mistmoore_leather_01/skirt',0), -(6773,6773,'accessories/wearable_items/_exp03/mistmoore_plate_01/chest',0), -(6774,6774,'accessories/wearable_items/_exp03/mistmoore_plate_01/feet',0), -(6775,6775,'accessories/wearable_items/_exp03/mistmoore_plate_01/forearms',0), -(6776,6776,'accessories/wearable_items/_exp03/mistmoore_plate_01/hands',0), -(6777,6777,'accessories/wearable_items/_exp03/mistmoore_plate_01/head',0), -(6778,6778,'accessories/wearable_items/_exp03/mistmoore_plate_01/legs',0), -(6779,6779,'accessories/wearable_items/_exp03/mistmoore_plate_01/shoulders',0), -(6780,6780,'accessories/wearable_items/_exp03/mistmoore_robe_01/chest',0), -(6781,6781,'accessories/wearable_items/_exp03/mistmoore_robe_01/hood',0), -(6782,6782,'accessories/wearable_items/_exp03/mistmoore_robe_01/pants',0), -(6783,6783,'accessories/wearable_items/_exp03/mistmoore_robe_01/skirt',0), -(6784,6784,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/chest',0), -(6785,6785,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/feet',0), -(6786,6786,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/forearms',0), -(6787,6787,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/hands',0), -(6788,6788,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/head',0), -(6789,6789,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/legs',0), -(6790,6790,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/legs_noskirt',0), -(6791,6791,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/right',0), -(6792,6792,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/shoulders',0), -(6793,6793,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/shoulders_nopauldrons',0), -(6794,6794,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/skirt',0), -(6795,6795,'accessories/wearable_items/_exp03/mistmoore_woven_01/chest',0), -(6796,6796,'accessories/wearable_items/_exp03/mistmoore_woven_01/feet',0), -(6797,6797,'accessories/wearable_items/_exp03/mistmoore_woven_01/forearms',0), -(6798,6798,'accessories/wearable_items/_exp03/mistmoore_woven_01/hands',0), -(6799,6799,'accessories/wearable_items/_exp03/mistmoore_woven_01/head',0), -(6800,6800,'accessories/wearable_items/_exp03/mistmoore_woven_01/legs',0), -(6801,6801,'accessories/wearable_items/_exp03/mistmoore_woven_01/legs_noskirt',0), -(6802,6802,'accessories/wearable_items/_exp03/mistmoore_woven_01/shoulders',0), -(6803,6803,'accessories/wearable_items/_exp03/mistmoore_woven_01/skirt',0), -(6804,6804,'accessories/wearable_items/_exp03/faydark_chain_01/chest',0), -(6805,6805,'accessories/wearable_items/_exp03/faydark_chain_01/feet',0), -(6806,6806,'accessories/wearable_items/_exp03/faydark_chain_01/forearms',0), -(6807,6807,'accessories/wearable_items/_exp03/faydark_chain_01/hands',0), -(6808,6808,'accessories/wearable_items/_exp03/faydark_chain_01/head',0), -(6809,6809,'accessories/wearable_items/_exp03/faydark_chain_01/legs',0), -(6810,6810,'accessories/wearable_items/_exp03/faydark_chain_01/legs_noskirt',0), -(6811,6811,'accessories/wearable_items/_exp03/faydark_chain_01/shoulders',0), -(6812,6812,'accessories/wearable_items/_exp03/faydark_chain_01/skirt',0), -(6813,6813,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/forearms',1096), -(6814,6814,'_exp03/zones/objects/idols/kal_totem_brell',0), -(6815,6815,'accessories/wieldable_items/weapons/exp03/pike/exp03_pik_tunare',0), -(6816,6816,'accessories/wieldable_items/soga_weapons/priest/exp03_deadman_call_countenance',0), -(6817,6817,'_exp03/zones/regions/emeraldhalls/eh_flora/eh_flora_rm05_bloom_of_growth',0), -(6818,6818,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin',0), -(6819,6819,'_exp03/characters/tool_users/honor_elf/honor_elf_female_wizard',0), -(6820,6820,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/hands',1096), -(6821,6821,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_brellserilis',0), -(6822,6822,'_exp03/zones/objects/lesser_faydark/stones/lf_obj_game_stone_dark01',0), -(6823,6823,'_exp03/zones/objects/lesser_faydark/stones/lf_obj_game_stone_light01',0), -(6824,6824,'_exp03/characters/monsters/imp',0), -(6825,6825,'_exp03/characters/monsters/carnivorous_ape',0), -(6826,6826,'_exp03/characters/tool_users/orc_crushbone/orc_crushbone_crush',0), -(6827,6827,'_exp03/zones/exp03_dun_klakanon_epic02_court/power_cell_collision_cylinder',0), -(6828,6828,'creatures/mounts/horse_armor01/horse01_armor01_appoloosa',0), -(6829,6829,'creatures/mounts/horse_armor01/horse01_armor01_misty',0), -(6830,6830,'creatures/mounts/horse_armor01/horse01_armor01_morgan',0), -(6831,6831,'creatures/mounts/horse_armor01/horse01_armor01_nightmare',0), -(6832,6832,'creatures/mounts/horse_armor01/horse01_armor01_paint',0), -(6833,6833,'creatures/mounts/horse_armor01/horse01_armor01_palomino',0), -(6834,6834,'creatures/mounts/horse_armor01/horse01_armor01_pinto',0), -(6835,6835,'creatures/mounts/horse_armor01/horse01_armor01_solid',0), -(6836,6836,'creatures/mounts/horse_armor02/horse01_armor02_appoloosa',0), -(6837,6837,'creatures/mounts/horse_armor02/horse01_armor02_morgan',0), -(6838,6838,'creatures/mounts/horse_armor02/horse01_armor02_palomino',0), -(6839,6839,'creatures/mounts/horse_armor02/horse01_armor02_pinto',0), -(6840,6840,'creatures/mounts/horse_armor02/horse01_armor02_solid',0), -(6841,6841,'creatures/mounts/horse_base/horse01_appoloosa',0), -(6842,6842,'creatures/mounts/horse_base/horse01_morgan',0), -(6843,6843,'creatures/mounts/horse_base/horse01_paint',0), -(6844,6844,'creatures/mounts/horse_base/horse01_palomino',0), -(6845,6845,'creatures/mounts/horse_base/horse01_pinto',0), -(6846,6846,'creatures/mounts/horse_base/horse01_solid',0), -(6847,6847,'creatures/mounts/horse_saddle01/horse01_sadle01_appoloosa',0), -(6848,6848,'creatures/mounts/horse_saddle01/horse01_sadle01_morgan',0), -(6849,6849,'creatures/mounts/horse_saddle01/horse01_sadle01_paint',0), -(6850,6850,'creatures/mounts/horse_saddle01/horse01_sadle01_palomino',0), -(6851,6851,'creatures/mounts/horse_saddle01/horse01_sadle01_pinto',0), -(6852,6852,'creatures/mounts/horse_saddle01/horse01_sadle01_solid',0), -(6853,6853,'creatures/mounts/horse_saddle02/horse01_sadle02_appoloosa',0), -(6854,6854,'creatures/mounts/horse_saddle02/horse01_sadle02_morgan',0), -(6855,6855,'creatures/mounts/horse_saddle02/horse01_sadle02_paint',0), -(6856,6856,'creatures/mounts/horse_saddle02/horse01_sadle02_palomino',0), -(6857,6857,'creatures/mounts/horse_saddle02/horse01_sadle02_pinto',0), -(6858,6858,'creatures/mounts/horse_saddle02/horse01_sadle02_solid',0), -(6859,6859,'_exp03/characters/monsters/werewolf_01',0), -(6860,6860,'accessories/wearable_items/character_create/chest',0), -(6861,6861,'creatures/tu/gods_cazic_thule',0), -(6862,6862,'_exp03/zones/objects/kelethin/mailbox/kel_obj_mail_kiosk01',0), -(6863,6863,'_exp03/zones/objects/banners/fel_banner_fallingstar01',0), -(6864,6864,'staticobjects/deity_altars/altar_brellserilis_basic',0), -(6865,6865,'staticobjects/deity_altars/altar_brellserilis_crafted',0), -(6866,6866,'staticobjects/deity_altars/altar_brellserilis_exceptional',0), -(6867,6867,'staticobjects/deity_altars/altar_cazicthule_basic02',0), -(6868,6868,'staticobjects/deity_altars/altar_cazicthule_crafted02',0), -(6869,6869,'staticobjects/deity_altars/altar_cazicthule_exceptional02',0), -(6870,6870,'staticobjects/deity_altars/altar_innoruuk_basic01',0), -(6871,6871,'staticobjects/deity_altars/altar_innoruuk_crafted01',0), -(6872,6872,'staticobjects/deity_altars/altar_innoruuk_exceptional01',0), -(6873,6873,'staticobjects/deity_altars/altar_mithanielmarr_basic',0), -(6874,6874,'staticobjects/deity_altars/altar_mithanielmarr_crafted',0), -(6875,6875,'staticobjects/deity_altars/altar_mithanielmarr_exceptional',0), -(6876,6876,'staticobjects/deity_altars/altar_quellious_basic',0), -(6877,6877,'staticobjects/deity_altars/altar_quellious_crafted',0), -(6878,6878,'staticobjects/deity_altars/altar_quellious_exceptional',0), -(6879,6879,'staticobjects/deity_altars/altar_ralloszek_basic',0), -(6880,6880,'staticobjects/deity_altars/altar_ralloszek_crafted',0), -(6881,6881,'staticobjects/deity_altars/altar_ralloszek_exceptional',0), -(6882,6882,'staticobjects/deity_altars/altar_solusekro_basic',0), -(6883,6883,'staticobjects/deity_altars/altar_solusekro_crafted',0), -(6884,6884,'staticobjects/deity_altars/altar_solusekro_exceptional',0), -(6885,6885,'staticobjects/deity_altars/altar_tunare_basic',0), -(6886,6886,'staticobjects/deity_altars/altar_tunare_crafted',0), -(6887,6887,'staticobjects/deity_altars/altar_tunare_exceptional',0), -(6888,6888,'staticobjects/statues/binding_shrine_no_fx',0), -(6889,6889,'_exp03/characters/tool_users/bugbear',0), -(6890,6890,'accessories/wieldable_items/weapons/exp03/bostaff/exp03_bws_elven_wizard_staff_princess',0), -(6891,6891,'_exp03/characters/tool_users/bugbear_mystic_tu',0), -(6892,6892,'_exp03/characters/tool_users/bugbear_warrior_tu',0), -(6893,6893,'staticobjects/harvested/gems_mining/exp03_harvesting_gems_tier01',0), -(6894,6894,'staticobjects/harvested/gems_mining/exp03_harvesting_gems_tier02',0), -(6895,6895,'staticobjects/harvested/gems_mining/exp03_harvesting_gems_tier03',0), -(6896,6896,'staticobjects/harvested/lairs_trapping/exp03_harvesting_trapping_tier01',0), -(6897,6897,'staticobjects/harvested/lairs_trapping/exp03_harvesting_trapping_tier02',0), -(6898,6898,'staticobjects/harvested/lairs_trapping/exp03_harvesting_trapping_tier03',0), -(6899,6899,'staticobjects/harvested/logs_foresting/exp03_harvesting_logs_tier01',0), -(6900,6900,'staticobjects/harvested/logs_foresting/exp03_harvesting_logs_tier02',0), -(6901,6901,'staticobjects/harvested/logs_foresting/exp03_harvesting_logs_tier03',0), -(6902,6902,'staticobjects/harvested/ore_mining/exp03_harvesting_ore_tier01',0), -(6903,6903,'staticobjects/harvested/ore_mining/exp03_harvesting_ore_tier02',0), -(6904,6904,'staticobjects/harvested/ore_mining/exp03_harvesting_ore_tier03',0), -(6905,6905,'staticobjects/harvested/roots_gathering/exp03_harvesting_roots_tier01',0), -(6906,6906,'staticobjects/harvested/roots_gathering/exp03_harvesting_roots_tier02',0), -(6907,6907,'staticobjects/harvested/roots_gathering/exp03_harvesting_roots_tier03',0), -(6908,6908,'_exp03/zones/objects/mistmoore_catacombs/pedestal/mc_pedestal_statue01',0), -(6909,6909,'creatures/mounts/horse_armor01/horse01_armor01_good',0), -(6910,6910,'creatures/monsters/vulwretch',0), -(6911,6911,'creatures/monsters/horse01',0), -(6912,6912,'staticobjects/dock_items/fprt_hood_fish02',0), -(6913,6913,'_exp03/zones/exp03_dun_klakanon/energy_cell_menace_factory_key',0), -(6914,6914,'_exp03/zones/objects/chests/cm_chest_treasure02',0), -(6915,6915,'_exp03/zones/objects/vases/cm_vase_large01',0), -(6916,6916,'_exp03/zones/objects/mechanical_parts/clockwork_gear_small',0), -(6917,6917,'creatures/mounts/horse_armor01/horse01_armor01_ghost',0), -(6918,6918,'creatures/mounts/horse_armor02/horse01_armor02_ghost',0), -(6919,6919,'creatures/mounts/horse_base/horse01_ghost',0), -(6920,6920,'creatures/mounts/horse_saddle01/horse01_sadle01_ghost',0), -(6921,6921,'creatures/mounts/horse_saddle02/horse01_sadle02_ghost',0), -(6922,6922,'accessories/wearable_items/_exp03/newbee_cloth_01/chest',0), -(6923,6923,'accessories/wearable_items/_exp03/newbee_cloth_01/feet',0), -(6924,6924,'accessories/wearable_items/_exp03/newbee_cloth_01/forearms',0), -(6925,6925,'accessories/wearable_items/_exp03/newbee_cloth_01/hands',0), -(6926,6926,'accessories/wearable_items/_exp03/newbee_cloth_01/head',0), -(6927,6927,'accessories/wearable_items/_exp03/newbee_cloth_01/legs',0), -(6928,6928,'accessories/wearable_items/_exp03/newbee_cloth_01/legs_noskirt',0), -(6929,6929,'accessories/wearable_items/_exp03/newbee_cloth_01/shoulders',0), -(6930,6930,'accessories/wearable_items/_exp03/newbee_cloth_01/skirt',0), -(6931,6931,'_exp03/characters/monsters/bugbear_warrior',0), -(6932,6932,'accessories/wieldable_items/weapons/exp03/npc_only/bugbear_warrior_sword',0), -(6933,6933,'accessories/wieldable_items/weapons/exp03/npc_only/crush_sword',0), -(6934,6934,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_crush',0), -(6935,6935,'_exp03/zones/objects/crushbone_keep/tents/cbk_tent_orc01',0), -(6936,6936,'_exp03/zones/objects/crushbone_keep/tents/cbk_tent_orc02',0), -(6937,6937,'_exp03/zones/objects/crushbone_keep/chests/cbk_chest_metal01',0), -(6938,6938,'_exp03/zones/objects/crushbone_keep/chests/cbk_chest_metal02',0), -(6939,6939,'_exp03/zones/objects/crushbone_keep/chests/cbk_trunk_shoddy',0), -(6940,6940,'_exp03/zones/objects/crushbone_keep/banners/cbk_post_orc_crushbone',0), -(6941,6941,'_exp03/zones/objects/crushbone_keep/beds/cbk_bunk_orc01',0), -(6942,6942,'staticobjects/pumpkin_flaming/pumpkin_flaming',0), -(6943,6943,'_exp03/zones/objects/kelethin/signpost_signs/kel_roadsign_post01',0), -(6944,6944,'_exp03/zones/objects/kelethin/signpost_signs/kel_roadsign_sign01',0), -(6945,6945,'staticobjects/lighting/halfling_wall_light02_metal_dpo',0), -(6946,6946,'_exp03/zones/objects/oil_can/eu_oil_can01',0), -(6947,6947,'_exp03/zones/objects/gaming/eu_gaming_pawnpiece01',0), -(6948,6948,'_exp03/zones/objects/key/eu_key_single01',0), -(6949,6949,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1h_crescent_axe_hope_devourer',0), -(6950,6950,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_short_sword002_eitholi',0), -(6951,6951,'accessories/wearable_items/cloak/exp03/cloak_sq_01_flames',0), -(6952,6952,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/chest',0), -(6953,6953,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/feet',0), -(6954,6954,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/forearms',0), -(6955,6955,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/hands',0), -(6956,6956,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/legs',0), -(6957,6957,'accessories/wearable_items/heavy_cloth/heavy_cloth_commoner_plain/shoulders',0), -(6958,6958,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/head',1096), -(6959,6959,'accessories/wearable_items/_exp03/npc_only/cloak_mayong_sq_01',0), -(6960,6960,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/cbk_torture_chair01',0), -(6961,6961,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/cm_piano_bench01',0), -(6962,6962,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/cm_piano_open01',0), -(6963,6963,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/eu_gaming_chesstable01',0), -(6964,6964,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/fel_bonsaitree_planter01',0), -(6965,6965,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/fel_trinket_fireice_twisted01',0), -(6966,6966,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/kal_altar_paladin',0), -(6967,6967,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/kel_distillery_hanging01',0), -(6968,6968,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/kel_globe_fallingstar01',0), -(6969,6969,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/kel_incense_burner01',0), -(6970,6970,'accessories/wearable_items/cloak/exp03/cloak_dt_01_dark_lord',0), -(6971,6971,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_battlehammer_plain',0), -(6972,6972,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_ivy_shrouded_orb',0), -(6973,6973,'accessories/wieldable_items/weapons/exp03/bostaff/exp03_bws_elven_staff',0), -(6974,6974,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_elven_staff',0), -(6975,6975,'_exp03/zones/objects/firepits/eu_fireplace_andiron01',0), -(6976,6976,'_exp03/zones/objects/signs/sfm_roadsign_post01',0), -(6977,6977,'_exp03/zones/objects/signs/sfm_roadsign_sign01',0), -(6978,6978,'_exp03/zones/objects/signs/sfm_sign_wall01',0), -(6979,6979,'accessories/wearable_items/_exp03/npc_only/cloak_innoruuk_sq_01',0), -(6980,6980,'_exp03/zones/exp03_dun_klakanon_epic02_court/power_cell_dead',0), -(6981,6981,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_orc_cudgel01',0), -(6982,6982,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_orc_hammer01',0), -(6983,6983,'accessories/wieldable_items/weapons/exp03/1h_pierce/exp03_1hp_orc_stake01',0), -(6984,6984,'accessories/wieldable_items/weapons/exp03/bostaff/exp03_bws_orc_spear01',0), -(6985,6985,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_orc_halberd01',0), -(6986,6986,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_orc_halberd02',0), -(6987,6987,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_orc_halberd03',0), -(6988,6988,'accessories/wieldable_items/weapons/exp03/pike/exp03_pke_orc_trident03',0), -(6989,6989,'accessories/wieldable_items/shields/exp03/exp03_gnomish_shield_electrified',0), -(6990,6990,'accessories/wieldable_items/shields/exp03/exp03_high_elven_kite_shield_grove',0), -(6991,6991,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_electrified',0), -(6992,6992,'accessories/wieldable_items/weapons/axe/small_dwarf/exp03_small_dwarf_axe_natural',0), -(6993,6993,'accessories/wieldable_items/weapons/dagger/dirk/exp03_dirk002_balanced',0), -(6994,6994,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_battlehammer_emerald',0), -(6995,6995,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_long_plain_wand_particle',0), -(6996,6996,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_ornate_elven_rapier_tunarian',0), -(6997,6997,'accessories/wieldable_items/weapons/great_spear/harpoon/exp03_harpoon001_tunare',0), -(6998,6998,'_exp03/zones/objects/coffins/lp_coffin_stone01_closed',0), -(6999,6999,'_exp03/zones/objects/coffins/lp_coffin_stone01_open01',0), -(7000,7000,'_exp03/zones/objects/coffins/lp_coffin_stone01_open02',0), -(7001,7001,'_exp03/zones/objects/kelethin/crates/kel_crate_fay01',0), -(7002,7002,'_exp03/zones/objects/kelethin/crates/kel_crate_fay02',0), -(7003,7003,'_exp03/zones/objects/kelethin/crates/kel_crate_fay03',0), -(7004,7004,'_exp03/zones/objects/graveyard_crypts/lp_graveyard_crypt_plaque',0), -(7005,7005,'accessories/wieldable_items/weapons/exp03/fist/exp03_monk_1h_glow',0), -(7006,7006,'accessories/wieldable_items/soga_weapons/mage/staff_of_the_observers',0), -(7007,7007,'accessories/wieldable_items/shields/exp03/exp03_small_held_symbol_prismatic',0), -(7008,7008,'ui_fx/fx/systems/environment/any/instance_portal',0), -(7009,7009,'_exp03/zones/objects/coffins/cm_coffin_mistmoore01',0), -(7010,7010,'_exp03/zones/objects/coffins/cm_coffin_stone01',0), -(7011,7011,'_exp03/zones/objects/coffins/cm_pedestal_coffin_mistmoore01',0), -(7012,7012,'staticobjects/nests/nest_harpy01',0), -(7013,7013,'_exp03/zones/objects/lesser_faydark/eggs/lf_drake_eggs_unbroken_blue',0), -(7014,7014,'_exp03/zones/objects/statues/gf_statue_fey',0), -(7015,7015,'accessories/wieldable_items/weapons/sword/long_sword/exp03_long_sword001_balance',0), -(7016,7016,'accessories/wieldable_items/weapons/sword/scimitar/exp03_scimitar001_grove',0), -(7017,7017,'accessories/wieldable_items/shields/exp03/exp03_qeynos_buckler',0), -(7018,7018,'accessories/wieldable_items/soga_weapons/scout/exp03_traceless_wounding',0), -(7019,7019,'accessories/wearable_items/starter_clothes/fae_dark_male/arms',0), -(7020,7020,'accessories/wearable_items/starter_clothes/fae_dark_male/chest',0), -(7021,7021,'accessories/wearable_items/starter_clothes/fae_dark_male/legs',0), -(7022,7022,'accessories/wearable_items/starter_clothes/fae_dark_male/sleeves',0), -(7023,7023,'accessories/wearable_items/starter_clothes/fae_dark_female/arms',0), -(7024,7024,'accessories/wearable_items/starter_clothes/fae_dark_female/chest',0), -(7025,7025,'accessories/wearable_items/starter_clothes/fae_dark_female/legs',0), -(7026,7026,'accessories/wearable_items/starter_clothes/fae_dark_female/sleeves',0), -(7027,7027,'accessories/wearable_items/starter_clothes/fae_light_male/arms',0), -(7028,7028,'accessories/wearable_items/starter_clothes/fae_light_male/chest',0), -(7029,7029,'accessories/wearable_items/starter_clothes/fae_light_male/legs',0), -(7030,7030,'accessories/wearable_items/starter_clothes/fae_light_male/sleeves',0), -(7031,7031,'accessories/wearable_items/starter_clothes/fae_light_female/arms',0), -(7032,7032,'accessories/wearable_items/starter_clothes/fae_light_female/chest',0), -(7033,7033,'accessories/wearable_items/starter_clothes/fae_light_female/legs',0), -(7034,7034,'accessories/wearable_items/starter_clothes/fae_light_female/sleeves',0), -(7035,7035,'projectiles/spell_fruitcake',0), -(7036,7036,'accessories/wieldable_items/weapons/sword/candy_cane_1hs/candy_cane_1hs_01',0), -(7037,7037,'accessories/wearable_items/christmas_hats/santa_hat_02/head',0), -(7038,7038,'_exp03/characters/tool_users/satyr_snow',0), -(7039,7039,'ec/npc/goblin_snow',0), -(7040,7040,'creatures/monsters/snowman01',0), -(7041,7041,'creatures/monsters/snowwoman01',0), -(7042,7042,'projectiles/spell_snowball_big',0), -(7043,7043,'_exp03/characters/monsters/carnivorous_ape_boss',0), -(7044,7044,'staticobjects/shelves/wall_shelf_halfling_wooden01_houseitem',0), -(7045,7045,'staticobjects/lighting/wall_lamp_darkelf_torchbowl01_dpohousing',0), -(7046,7046,'accessories/wieldable_items/weapons/dagger/dirk/exp02_dirk002_nightfall',0), -(7047,7047,'staticobjects/liveevent/frostfell/dpo_holiday_candlegroup01_greensilver',0), -(7048,7048,'staticobjects/liveevent/frostfell/dpo_holiday_candlegroup01_redsilver',0), -(7049,7049,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large03_blue',0), -(7050,7050,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large04_green',0), -(7051,7051,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large05_redpink',0), -(7052,7052,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_small03_blue',0), -(7053,7053,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_small04_green',0), -(7054,7054,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_small05_redpink',0), -(7055,7055,'staticobjects/liveevent/frostfell/dpo_holiday_wallcandles02_goldgreen',0), -(7056,7056,'staticobjects/liveevent/frostfell/dpo_holiday_wallcandles02_silverred',0), -(7057,7057,'staticobjects/liveevent/frostfell/dpo_snowglobe_cazicthule01',0), -(7058,7058,'staticobjects/liveevent/frostfell/dpo_snowglobe_drafling01',0), -(7059,7059,'staticobjects/liveevent/frostfell/dpo_snowglobe_frostfelltree01',0), -(7060,7060,'staticobjects/liveevent/frostfell/dpo_snowglobe_kelethin01',0), -(7061,7061,'staticobjects/liveevent/frostfell/dpo_snowglobe_lavastorm01',0), -(7062,7062,'staticobjects/liveevent/frostfell/dpo_snowglobe_majdul01',0), -(7063,7063,'staticobjects/liveevent/frostfell/dpo_snowglobe_nektropos01',0), -(7064,7064,'staticobjects/liveevent/frostfell/dpo_snowglobe_pagoda01',0), -(7065,7065,'staticobjects/liveevent/frostfell/dpo_snowglobe_qeyclamore01',0), -(7066,7066,'staticobjects/liveevent/frostfell/dpo_snowman01_sad',0), -(7067,7067,'staticobjects/liveevent/frostfell/dpo_snowwoman01_sad',0), -(7068,7068,'staticobjects/liveevent/frostfell/dpo_xmas_apples',0), -(7069,7069,'staticobjects/liveevent/frostfell/dpo_xmas_candy',0), -(7070,7070,'staticobjects/liveevent/frostfell/dpo_xmas_eggnog',0), -(7071,7071,'staticobjects/liveevent/frostfell/holiday_fruitcake',0), -(7072,7072,'staticobjects/liveevent/frostfell/holiday_turkey',0), -(7073,7073,'staticobjects/liveevent/frostfell/holiday_wreath01',0), -(7074,7074,'staticobjects/liveevent/frostfell/dpo_bow01_gold',0), -(7075,7075,'staticobjects/liveevent/frostfell/dpo_bow01_green',0), -(7076,7076,'staticobjects/liveevent/frostfell/dpo_bow01_red',0), -(7077,7077,'staticobjects/liveevent/frostfell/dpo_present03_big',0), -(7078,7078,'staticobjects/liveevent/frostfell/dpo_present03_medium',0), -(7079,7079,'staticobjects/liveevent/frostfell/dpo_bow01_gold_wall',0), -(7080,7080,'staticobjects/liveevent/frostfell/dpo_bow01_green_wall',0), -(7081,7081,'staticobjects/liveevent/frostfell/dpo_bow01_red_wall',0), -(7082,7082,'staticobjects/liveevent/frostfell/ice_throne',0), -(7083,7083,'staticobjects/liveevent/frostfell/dpo_christmas_tree_small01_houseitem',0), -(7084,7084,'staticobjects/liveevent/frostfell/dpo_christmas_tree_small01_kelethin',0), -(7085,7085,'staticobjects/liveevent/frostfell/lamp_post',0), -(7086,7086,'accessories/wieldable_items/weapons/great_spear/voulge/voulge001_ornate_pike',0), -(7087,7087,'staticobjects/fireplaces/dpo_fireplace01_houseitem',0), -(7088,7088,'staticobjects/fireplaces/dpo_fireplace02_houseitem',0), -(7089,7089,'staticobjects/fireplaces/dpo_fireplace03_houseitem',0), -(7090,7090,'staticobjects/liveevent/frostfell/holiday_cranberrie_plate',0), -(7091,7091,'accessories/wieldable_items/weapons/exp03/fist/exp03_quellious_1h_glow',0), -(7092,7092,'staticobjects/stoves/floor_stove_halfling_round01',0), -(7093,7093,'staticobjects/liveevent/frostfell/dpo_holiday_snowpile01',0), -(7094,7094,'_exp03/zones/objects/crib/eu_crib01',0), -(7095,7095,'_exp04/monsters/apopheli',0), -(7096,7096,'ec/pc/fae_wings/fae_d_wing01',0), -(7097,7097,'ec/pc/fae_wings/fae_d_wing01_t',0), -(7098,7098,'ec/pc/fae_wings/fae_d_wing02',0), -(7099,7099,'ec/pc/fae_wings/fae_d_wing02_t',0), -(7100,7100,'ec/pc/fae_wings/fae_d_wing03',0), -(7101,7101,'ec/pc/fae_wings/fae_d_wing03_t',0), -(7102,7102,'ec/pc/fae_wings/fae_d_wing04',0), -(7103,7103,'ec/pc/fae_wings/fae_d_wing04_t',0), -(7104,7104,'ec/pc/fae_wings/fae_d_wing05',0), -(7105,7105,'ec/pc/fae_wings/fae_d_wing05_t',0), -(7106,7106,'ec/pc/fae_wings/fae_d_wing06',0), -(7107,7107,'ec/pc/fae_wings/fae_d_wing06_t',0), -(7108,7108,'ec/pc/fae_wings/fae_d_wing07',0), -(7109,7109,'ec/pc/fae_wings/fae_d_wing07_t',0), -(7110,7110,'ec/pc/fae_wings/fae_d_wing08',0), -(7111,7111,'ec/pc/fae_wings/fae_d_wing08_t',0), -(7112,7112,'ec/pc/fae_wings/fae_d_wing09',0), -(7113,7113,'ec/pc/fae_wings/fae_d_wing09_t',0), -(7114,7114,'ec/pc/fae_wings/fae_d_wing10',0), -(7115,7115,'ec/pc/fae_wings/fae_d_wing10_t',0), -(7116,7116,'ec/pc/fae_wings/fae_d_wing11',0), -(7117,7117,'ec/pc/fae_wings/fae_d_wing11_t',0), -(7118,7118,'ec/pc/fae_wings/fae_d_wing12',0), -(7119,7119,'ec/pc/fae_wings/fae_d_wing12_t',0), -(7120,7120,'staticobjects/liveevent/erollisi_objects/errolisi_box0choclates',0), -(7121,7121,'staticobjects/liveevent/erollisi_objects/errolisi_goodheartvase01',0), -(7122,7122,'staticobjects/liveevent/erollisi_objects/errolisi_goodheartvase02',0), -(7123,7123,'staticobjects/liveevent/erollisi_objects/errolisi_heartpillow',0), -(7124,7124,'staticobjects/liveevent/erollisi_objects/errolisi_heartvase01',0), -(7125,7125,'staticobjects/liveevent/erollisi_objects/errolisi_heartvase02',0), -(7126,7126,'staticobjects/liveevent/erollisi_objects/errolisi_multithreeroses01',0), -(7127,7127,'staticobjects/liveevent/erollisi_objects/errolisi_pink_purplerose_ovalvase01',0), -(7128,7128,'staticobjects/liveevent/erollisi_objects/errolisi_pink_redrosevase01',0), -(7129,7129,'staticobjects/liveevent/erollisi_objects/errolisi_pinkrose01',0), -(7130,7130,'staticobjects/liveevent/erollisi_objects/errolisi_pinkrose_ovalvase01',0), -(7131,7131,'staticobjects/liveevent/erollisi_objects/errolisi_pinkrosevase01',0), -(7132,7132,'staticobjects/liveevent/erollisi_objects/errolisi_pinkthreeroses01',0), -(7133,7133,'staticobjects/liveevent/erollisi_objects/errolisi_purple_redrose_ovalvase01',0), -(7134,7134,'staticobjects/liveevent/erollisi_objects/errolisi_purple_redrosevase01',0), -(7135,7135,'staticobjects/liveevent/erollisi_objects/errolisi_purplerose01',0), -(7136,7136,'staticobjects/liveevent/erollisi_objects/errolisi_purplerose_ovalvase01',0), -(7137,7137,'staticobjects/liveevent/erollisi_objects/errolisi_purplerosevase01',0), -(7138,7138,'staticobjects/liveevent/erollisi_objects/errolisi_purplethreeroses01',0), -(7139,7139,'staticobjects/liveevent/erollisi_objects/errolisi_red_pinkrose_ovalvase01',0), -(7140,7140,'staticobjects/liveevent/erollisi_objects/errolisi_red_whiterose_ovalvase01',0), -(7141,7141,'staticobjects/liveevent/erollisi_objects/errolisi_red_whiterosevase01',0), -(7142,7142,'staticobjects/liveevent/erollisi_objects/errolisi_redrose01',0), -(7143,7143,'staticobjects/liveevent/erollisi_objects/errolisi_redrose_ovalvase01',0), -(7144,7144,'staticobjects/liveevent/erollisi_objects/errolisi_redrosevase01',0), -(7145,7145,'staticobjects/liveevent/erollisi_objects/errolisi_redthreeroses01',0), -(7146,7146,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/legs',1096), -(7147,7147,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/legs_noskirt',1096), -(7148,7148,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/shoulders',1096), -(7149,7149,'staticobjects/liveevent/erollisi_objects/errolisi_whiterose01',0), -(7150,7150,'staticobjects/liveevent/erollisi_objects/errolisi_whiterose_ovalvase01',0), -(7151,7151,'staticobjects/liveevent/erollisi_objects/errolisi_whiterosevase01',0), -(7152,7152,'staticobjects/liveevent/erollisi_objects/errolisi_whitethreeroses01',0), -(7153,7153,'accessories/wearable_items/profesion_hats/warden/warden_01/head',0), -(7154,7154,'accessories/wearable_items/profesion_hats/fury/fury_01/head',0), -(7155,7155,'accessories/wearable_items/profesion_hats/necromancer/necromancer_01/head',0), -(7156,7156,'accessories/wearable_items/profesion_hats/warlock/warlock_01/head',0), -(7157,7157,'_exp04/tool_users/sarnak',0), -(7158,7158,'accessories/wieldable_items/soga_weapons/priest/exp03_thunder_blade_waning_moon',0), -(7159,7159,'accessories/wieldable_items/soga_weapons/scout/exp03_great_shark_sariks_fang',0), -(7160,7160,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_battlehammer_inlaid_rock',0), -(7161,7161,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_ivy_shrouded_orb_sparkling',0), -(7162,7162,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_wooden_vine_scepter_knotted_pine',0), -(7163,7163,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_orc_machete_clearcutter',0), -(7164,7164,'accessories/wieldable_items/weapons/exp03/bow/exp03_bow_giant_wooden_grove',0), -(7165,7165,'accessories/wieldable_items/weapons/fist/claws/claws001_thorn_wrapped',0), -(7166,7166,'accessories/wieldable_items/weapons/rapier/epee/exp03_epee001_bixie_sticker',0), -(7167,7167,'accessories/wieldable_items/weapons/rapier/saber/exp03_saber001_bisected_saber',0), -(7168,7168,'accessories/wieldable_items/weapons/spear/one_handed_spear/exp03_barbed_spear_bee_sting',0), -(7169,7169,'staticobjects/shield/exp03_mistmoore_shield_heritage_housteitem',0), -(7170,7170,'staticobjects/shelves/houseitems/wall_shelf_any_skull01',0), -(7171,7171,'staticobjects/shelves/houseitems/wall_shelf_any_skull02',0), -(7172,7172,'staticobjects/shelves/houseitems/wall_shelf_any_skull03',0), -(7173,7173,'staticobjects/statues/wall_statue_any_figurehead01_housedpo',0), -(7174,7174,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_ornate_elven_rapier_beeswarm',0), -(7175,7175,'_exp04/monsters/fishman',0), -(7176,7176,'staticobjects/world_devices/trdskl_fprt_chemistrytable_summoned',0), -(7177,7177,'staticobjects/world_devices/trdskl_fprt_engraveddesk_summoned',0), -(7178,7178,'staticobjects/world_devices/trdskl_fprt_forge_summoned',0), -(7179,7179,'staticobjects/world_devices/trdskl_fprt_sewingtable_mannequin_loom_summoned',0), -(7180,7180,'staticobjects/world_devices/trdskl_fprt_stoveandkeg_summoned',0), -(7181,7181,'staticobjects/world_devices/trdskl_fprt_woodworkingtable_summoned',0), -(7182,7182,'staticobjects/world_devices/trdskl_fprt_workbench_summoned',0), -(7183,7183,'creatures/mounts/horse_armor01/horse01_armor01_nightmare_blue',0), -(7184,7184,'staticobjects/catapult/catapult',0), -(7185,7185,'_exp04/monsters/wyvern',0), -(7186,7186,'_exp04/tool_users/fishman_tu',0), -(7187,7187,'accessories/wieldable_items/misc/stein001_runic_tumpy_tankard',0), -(7188,7188,'accessories/wieldable_items/soga_weapons/fighter/invincibility_of_eight_flowing_blood',0), -(7189,7189,'accessories/wieldable_items/soga_weapons/fighter/sword_of_nova_infirmity',0), -(7190,7190,'accessories/wieldable_items/soga_weapons/mage/staff_of_elemental_wand_of_crystalized_plasma',0), -(7191,7191,'accessories/wieldable_items/soga_weapons/scout/wannish_dream_torn_ligament',0), -(7192,7192,'accessories/wearable_items/cloak/exp03/cloak_sq_01_unrest_vapor',0), -(7193,7193,'accessories/wieldable_items/weapons/great_axe/large_dwarf_axe/large_dwarf_axe_plain_bloodbath',0), -(7194,7194,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer002_ornate_torklars',0), -(7195,7195,'accessories/wieldable_items/weapons/sword/vampire_sword/vampire_sword_plain_modinthalis',0), -(7196,7196,'accessories/wieldable_items/weapons/exp03/1h_pierce/exp03_1hp_vampiric_sacrificial_dagger_cold_blooded',0), -(7197,7197,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_ornate_elven_rapier_bloodspiller',0), -(7198,7198,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_wrench01_cogturner',0), -(7199,7199,'_exp03/zones/objects/castle_mistmoore/cm_statues_mayong_bust',0), -(7200,7200,'_exp03/zones/objects/greater_faydark/lightsources/gf_lamppost_flower01',0), -(7201,7201,'accessories/wearable_items/profesion_hats/conjuror/conjuror_01/head',0), -(7202,7202,'accessories/wearable_items/profesion_hats/coercer/coercer_01/head',0), -(7203,7203,'staticobjects/world_devices/orc_forge',0), -(7204,7204,'accessories/wearable_items/profesion_hats/coercer/coercer_02/head',0), -(7205,7205,'accessories/wearable_items/_exp08/dragon_armor/leather1_green/shoulders_epic',1096), -(7206,7206,'creatures/mounts/rhino_mount/rhino_armor01',0), -(7207,7207,'creatures/monsters/elephant_white',0), -(7208,7208,'staticobjects/plants/dw_objects_plant_tree01',0), -(7209,7209,'staticobjects/plants/dw_objects_planttreebark01',0), -(7210,7210,'_exp03/zones/felwithe_castle/fel_rod_crystal',0), -(7211,7211,'_exp04/monsters/fishman_warrior',0), -(7212,7212,'_exp04/tool_users/fishman_warrior_tu',0), -(7213,7213,'creatures/mounts/warg_mount/warg',0), -(7214,7214,'creatures/mounts/warg_mount/warg_armor01',0), -(7215,7215,'creatures/mounts/warg_mount/warg_armor02',0), -(7216,7216,'creatures/mounts/warg_mount/warg_saddle01',0), -(7217,7217,'_exp04/monsters/erollisi',0), -(7218,7218,'creatures/mounts/warg_mount/warg_armor01_spotted',0), -(7219,7219,'creatures/mounts/warg_mount/warg_armor01_twotoned',0), -(7220,7220,'creatures/mounts/warg_mount/warg_armor02_spotted',0), -(7221,7221,'creatures/mounts/warg_mount/warg_armor02_twotoned',0), -(7222,7222,'creatures/mounts/warg_mount/warg_spotted',0), -(7223,7223,'creatures/mounts/warg_mount/warg_twotoned',0), -(7224,7224,'staticobjects/brazier/floor_brazier_erudite_smoke',0), -(7225,7225,'_exp03/zones/felwithe_castle/fel_rod_crystal_dropped',0), -(7226,7226,'_exp04/tool_users/drachnid_female',0), -(7227,7227,'_exp04/tool_users/drachnid_queen',0), -(7228,7228,'creatures/mounts/warg_mount/warg_saddle01_spotted',0), -(7229,7229,'creatures/mounts/warg_mount/warg_saddle01_twotoned',0), -(7230,7230,'creatures/monsters/willowisp_dark',0), -(7231,7231,'accessories/wieldable_items/weapons/staff/felwithe_staff/felwithe_bws_staff',0), -(7232,7232,'_exp03/zones/felwithe_castle/dpo_invisible_cube_felwithe',0), -(7233,7233,'_exp03/zones/regions/greater_faydark/gf_flora/gf_flora_mushroom_limecap_dpo',0), -(7234,7234,'_exp04/monsters/xygoz',0), -(7235,7235,'_exp04/monsters/cockatrice',0), -(7236,7236,'_exp04/monsters/skorpikis',0), -(7237,7237,'staticobjects/dpo_invisible_wall/invisible_wall_dw_shadow_oak_drwy',0), -(7238,7238,'staticobjects/dpo_invisible_wall/invisible_wall_dw_tower_of_bone_drwy',0), -(7239,7239,'staticobjects/dpo_invisible_wall/invisible_wall_nk_seagate_teleporter',0), -(7240,7240,'creatures/monsters/hellhound_blue',0), -(7241,7241,'creatures/monsters/willowisp_ball_lightning',0), -(7242,7242,'creatures/mounts/warg_mount/warg_armor02_blue',0), -(7243,7243,'creatures/mounts/warg_mount/warg_armor02_fire',0), -(7244,7244,'creatures/mounts/warg_mount/warg_armor02_misty',0), -(7245,7245,'projectiles/nightmare_ghost',0), -(7246,7246,'_exp04/monsters/clay_golem',0), -(7247,7247,'_exp04/monsters/clay_keeper',0), -(7248,7248,'creatures/monsters/willowisp_vampire_orb',0), -(7249,7249,'ec/npc/nightmare_ghost',0), -(7250,7250,'_exp04/monsters/cinder_wasp',0), -(7251,7251,'_exp04/monsters/clay_shackled',0), -(7252,7252,'_exp04/monsters/carrion_crawler',0), -(7253,7253,'_exp04/monsters/sokokar',0), -(7254,7254,'_exp04/tool_users/spiroc',0), -(7255,7255,'_exp04/monsters/succulent',0), -(7256,7256,'staticobjects/rugs/qey_rug_beigeblacklarge',0), -(7257,7257,'_exp04/monsters/yeti',0), -(7258,7258,'_exp04/monsters/brute',0), -(7259,7259,'staticobjects/lighting/torchsword001',0), -(7260,7260,'staticobjects/chairs/vrsn_chair03_dpo',0), -(7261,7261,'staticobjects/globes/globe001',0), -(7262,7262,'staticobjects/lighting/bonetorch001',0), -(7263,7263,'staticobjects/lighting/candleholderlarge001',0), -(7264,7264,'staticobjects/musical/halfling_drum03_dpo',0), -(7265,7265,'staticobjects/lighting/tablelamp002',0), -(7266,7266,'staticobjects/lighting/tablelamp003',0), -(7267,7267,'staticobjects/kitchen/fprt_kitchen_chaliceshort001_dpo',0), -(7268,7268,'staticobjects/pillars/column001',0), -(7269,7269,'staticobjects/pillars/columnsmall002',0), -(7270,7270,'staticobjects/kitchen/muffin_pan_dpo',0), -(7271,7271,'staticobjects/racks/winerack001_assembly001',0), -(7272,7272,'staticobjects/tapestry/tapestry001_longcealing_dirty',0), -(7273,7273,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/skirt',1096), -(7274,7274,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_soulfire_hammer',0), -(7275,7275,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_soulfire_kama',0), -(7276,7276,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_soulfire_bastard',0), -(7277,7277,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_soulfire_gladius',0), -(7278,7278,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_soulfire_sabre',0), -(7279,7279,'accessories/wieldable_items/weapons/exp03/pike/exp03_pike_soulfire_staff',0), -(7280,7280,'staticobjects/lighting/chandelier001_dpo',0), -(7281,7281,'staticobjects/lighting/torchsword001_dpo',0), -(7282,7282,'creatures/tu/gods_bristlebane',0), -(7283,7283,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_triblade_dagger',0), -(7284,7284,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_truncheon',0), -(7285,7285,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_lamentation',0), -(7286,7286,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_truncheon_koadavie',0), -(7287,7287,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_triblade_dagger_koadavie',0), -(7288,7288,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_vampiric_sacrificial_dagger_koadavie',0), -(7289,7289,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_lamentation_koadavie',0), -(7290,7290,'accessories/wieldable_items/shields/buckler_shield/wooden_buckler/wooden_buckler001_runic_koadavie',0), -(7291,7291,'accessories/wieldable_items/shields/round_shield/wooden_round/wooden_round_shield001_ornate_koadavie',0), -(7292,7292,'accessories/wieldable_items/shields/tower_shield/wooden_tower_shield/wooden_tower_shield001_koadavie',0), -(7293,7293,'_exp04/monsters/devourer',0), -(7294,7294,'accessories/wieldable_items/shields/buckler_shield/buckler_fae/buckler_fae_01_koadavie',0), -(7295,7295,'code/spawn_ring',0), -(7296,7296,'_exp04/tool_users/goblin_shaman',0), -(7297,7297,'_exp04/monsters/wurm',0), -(7298,7298,'staticobjects/armor/undead_iksar_male_breastplate',0), -(7299,7299,'accessories/wieldable_items/soga_weapons/fighter/sword_of_serpent_koadavie',0), -(7300,7300,'_exp04/tool_users/drachnid_female_chain',0), -(7301,7301,'_exp04/tool_users/drachnid_male',0), -(7302,7302,'_exp04/tool_users/drachnid_male_plate',0), -(7303,7303,'staticobjects/mirrors/mirror001_wallmnt_dpo',0), -(7304,7304,'_exp04/monsters/devil_dust_tornado_timorous',0), -(7305,7305,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_lucanic_hammer',0), -(7306,7306,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_lucanic_kama',0), -(7307,7307,'accessories/wieldable_items/weapons/exp03/pike/exp03_pike_lucanic_staff',0), -(7308,7308,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_lucanic_bastard',0), -(7309,7309,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_lucanic_gladius',0), -(7310,7310,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_lucanic_sabre',0), -(7311,7311,'_exp04/tool_users/goblin_warrior',0), -(7312,7312,'staticobjects/musical/floor_horn_halfling',0), -(7313,7313,'creatures/mounts/warg_mount/warg_armor02_albino',0), -(7314,7314,'accessories/wearable_items/cloak/exp03/cloak_sq_01_water',0), -(7315,7315,'ec/pc01/sarnak_male/sarnak_male_thin',0), -(7316,7316,'accessories/wearable_items/cloak/exp03/cloak_sq_01_chelsith',0), -(7317,7317,'accessories/wearable_items/cloak/exp03/cloak_sq_01_disguise',0), -(7318,7318,'accessories/wearable_items/cloak/exp03/cloak_sq_01_lon',0), -(7319,7319,'accessories/wieldable_items/weapons/sword/long_sword/long_sword_magic_uber',0), -(7320,7320,'creatures/mounts/carpet_lon',0), -(7321,7321,'_exp04/monsters/chokidai_armoured',0), -(7322,7322,'creatures/mounts/carpet_lon02',0), -(7323,7323,'_exp04/monsters/chokidai',0), -(7324,7324,'_exp04/tool_users/goblin_scout',0), -(7325,7325,'code/target_aoe_ring',0), -(7326,7326,'staticobjects/lighting/halfling_lantern01_handledown_dpo',0), -(7327,7327,'staticobjects/lighting/halfling_lantern01_handleup_dpo',0), -(7328,7328,'staticobjects/tables/halfing_desk01_dpo',0), -(7329,7329,'staticobjects/benches/floor_bench_halfing_paded01_ltwd_dpo',0), -(7330,7330,'staticobjects/chairs/floor_loveseat_halfing_paded01',0), -(7331,7331,'staticobjects/chairs/halfling_chair_padded_dpo',0), -(7332,7332,'staticobjects/beds/halfing_bed01_wdlt_dpo',0), -(7333,7333,'staticobjects/lighting/halfling_candle_log01_dpo',0), -(7334,7334,'staticobjects/counters/halfing_counter_merchant01_dpo',0), -(7335,7335,'staticobjects/stoves/floor_stove_halfling_square01_dpo',0), -(7336,7336,'staticobjects/musical/halfling_zylophone_dpo',0), -(7337,7337,'staticobjects/musical/halfling_music_chimes01_dpo',0), -(7338,7338,'staticobjects/plants/halfling_hangingpot01_dpo',0), -(7339,7339,'staticobjects/rugs/halfing_rugcircle01_dpo',0), -(7340,7340,'staticobjects/rugs/halfing_rugsquare01_dpo',0), -(7341,7341,'staticobjects/fountains_and_pools/sos_fountain_birdbath_floor_small_dpo',0), -(7342,7342,'staticobjects/musical/halfling_jimba01_dpo',0), -(7343,7343,'staticobjects/plants/potted_shrub_dpo',0), -(7344,7344,'staticobjects/plants/potted_shrub_berries_dpo',0), -(7345,7345,'staticobjects/chairs/floor_chair_halfing_paded02',0), -(7346,7346,'staticobjects/kitchen/qey_kitchen_breadpan_withbread001_dpo',0), -(7347,7347,'staticobjects/kitchen/bowl_steam02_dpo',0), -(7348,7348,'staticobjects/kitchen/bowl_steam03_dpo',0), -(7349,7349,'staticobjects/stoves/qey_kitchen_stoveornate001_dpo',0), -(7350,7350,'staticobjects/fountains_and_pools/sos_fountain_birdbath_floor_dpo',0), -(7351,7351,'staticobjects/fountains_and_pools/sos_fountain_birdbath_wall_dpo',0), -(7352,7352,'accessories/hair/hair026',0), -(7353,7353,'accessories/wearable_items/cloak/exp03/cloak_sq_01_iksar',0), -(7354,7354,'_exp04/zones/objects/timorous_deep/sarnak_spear_phalanx',0), -(7355,7355,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_lucanic',0), -(7356,7356,'_exp04/tool_users/sarnak_caster',0), -(7357,7357,'accessories/wieldable_items/weapons/exp03/2h_sword/exp03_2hs_soulfire',0), -(7358,7358,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_lucanic_staff',0), -(7359,7359,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_soulfire_staff',0), -(7360,7360,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_solusekro',0), -(7361,7361,'_exp04/monsters/leech',0), -(7362,7362,'_exp04/monsters/stoneent',0), -(7363,7363,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_cardcase01',0), -(7364,7364,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting01',0), -(7365,7365,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting02',0), -(7366,7366,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting03',0), -(7367,7367,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_paintingarray01',0), -(7368,7368,'_exp04/tool_users/sarnak_warrior',0), -(7369,7369,'ec/pc01/sarnak_male/sarnak_male_thin02',0), -(7370,7370,'ec/pc01/sarnak_male/sarnak_male_thin03',0), -(7371,7371,'ec/pc01/sarnak_male/sarnak_male_thin04',0), -(7372,7372,'ec/pc01/sarnak_male/sarnak_male_thin05',0), -(7373,7373,'ec/pc01/sarnak_male/sarnak_male_thin06',0), -(7374,7374,'ec/pc01/sarnak_male/sarnak_male_thin07',0), -(7375,7375,'ec/pc01/sarnak_male/sarnak_male_thin08',0), -(7376,7376,'ec/pc01/sarnak_male/sarnak_male_thin09',0), -(7377,7377,'ec/pc01/sarnak_female/sarnak_female_thin',0), -(7378,7378,'staticobjects/fountains_and_pools/griffin_fountain_dpo',0), -(7379,7379,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/chest',1096), -(7380,7380,'staticobjects/fish/swordfish_dpo',0), -(7381,7381,'staticobjects/fountains_and_pools/sundial_pool_dpo',0), -(7382,7382,'staticobjects/fountains_and_pools/oracle_fountain_dpo',0), -(7383,7383,'staticobjects/fountains_and_pools/thunder_fountain_dpo',0), -(7384,7384,'staticobjects/lighting/darklight_crystal',0), -(7385,7385,'staticobjects/banners/indigo_brotherhood_banner_dpo',0), -(7386,7386,'staticobjects/arches/forest_archway',0), -(7387,7387,'staticobjects/fountains_and_pools/neriak_fountain_dpo',0), -(7388,7388,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_sharktooth_mace',0), -(7389,7389,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_spiked_mace',0), -(7390,7390,'ec/pc01/sarnak_female/sarnak_female_thin04',0), -(7391,7391,'ec/pc01/sarnak_female/sarnak_female_thin05',0), -(7392,7392,'_exp04/monsters/raptor',0), -(7393,7393,'_exp04/monsters/skyfiredrake',0), -(7394,7394,'_exp04/tool_users/burynai',0), -(7395,7395,'_exp04/tool_users/froglok_kunark',0), -(7396,7396,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_linked',0), -(7397,7397,'_exp04/zones/objects/timorous_deep/tablets/deep_tablet_iksar02',0), -(7398,7398,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_kunzar',0), -(7399,7399,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_reaver',0), -(7400,7400,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_jagged',0), -(7401,7401,'accessories/wieldable_items/weapons/exp04/bow/exp04_bow_dragon_bow',0), -(7402,7402,'accessories/wieldable_items/weapons/exp04/pike/exp04_pike_spiney_spear',0), -(7403,7403,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_dragonhead_shield',0), -(7404,7404,'accessories/wieldable_items/weapons/exp04/fist/exp04_fist_ornate_knuckledusters',0), -(7405,7405,'accessories/wieldable_items/weapons/exp04/2h_crush/exp04_2hc_sarnak_skull_staff',0), -(7406,7406,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dual_bladed_stiletto',0), -(7407,7407,'accessories/wieldable_items/weapons/exp04/staff/exp04_staff_spiked_staff',0), -(7408,7408,'accessories/wieldable_items/weapons/exp04/pike/exp04_pike_fisherman_trident',0), -(7409,7409,'accessories/wieldable_items/weapons/exp04/bow/exp04_bow_ornate_bow',0), -(7410,7410,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_spiney_shield_shield',0), -(7411,7411,'accessories/wieldable_items/weapons/exp04/fist/exp04_fist_dull_ulak',0), -(7412,7412,'accessories/wieldable_items/weapons/exp04/2h_crush/exp04_2hc_iksar_skull_staff',0), -(7413,7413,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_dragon_axe',0), -(7414,7414,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_jagged_mace',0), -(7415,7415,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dragonhilt_dagger',0), -(7416,7416,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_cleaver_sword',0), -(7417,7417,'accessories/wieldable_items/weapons/exp04/2h_crush/exp04_2hc_spiked_hammer',0), -(7418,7418,'accessories/wieldable_items/weapons/exp04/pike/exp04_pike_spikey_spear',0), -(7419,7419,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_sebilisian_shield',0), -(7420,7420,'accessories/wieldable_items/weapons/exp04/2h_sword/exp04_2hs_jagged_sword',0), -(7421,7421,'accessories/wearable_items01/_exp03/kaladim_bruiser_gi_01/feet',0), -(7422,7422,'accessories/wieldable_items/weapons/exp04/2h_sword/exp04_2hs_cleaver_sword',0), -(7423,7423,'_exp04/tool_users/drolvarg_berserker',0), -(7424,7424,'_exp04/tool_users/drolvarg_priest',0), -(7425,7425,'_exp04/tool_users/drolvarg_warrior',0), -(7426,7426,'projectiles/lava_rock_burning',0), -(7427,7427,'staticobjects/pictures/df_painting04_dpo',0), -(7428,7428,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_cudgel_of_obviation',0), -(7429,7429,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_dragons_marrow',0), -(7430,7430,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_elemental_dominance',0), -(7431,7431,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_eye_of_siren',0), -(7432,7432,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_penitents_absolution',0), -(7433,7433,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_the_impact_of_the_sacrosanct',0), -(7434,7434,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_torrid_gore',0), -(7435,7435,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_charms_way',0), -(7436,7436,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_deaths_grip',0), -(7437,7437,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_fang_of_ichor',0), -(7438,7438,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_ayonic_axe',0), -(7439,7439,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_dragons_temper',0), -(7440,7440,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_fire_of_the_stalwart',0), -(7441,7441,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_lamentation_of_the_intrepid',0), -(7442,7442,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_night_terror',0), -(7443,7443,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_sedition',0), -(7444,7444,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_bite_of_the_wolf',0), -(7445,7445,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr',0), -(7446,7446,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature',0), -(7447,7447,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon',0), -(7448,7448,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist',0), -(7449,7449,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity',0), -(7450,7450,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher',0), -(7451,7451,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_mirage_star',0), -(7452,7452,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/feet',1096), -(7453,7453,'accessories/wieldable_items/weapons/exp04/2h_sword/exp04_2hs_dragon',0), -(7454,7454,'_exp04/tool_users/golem_jade',0), -(7455,7455,'staticobjects/pictures/df_painting01_dpo',0), -(7456,7456,'staticobjects/pictures/df_painting02_dpo',0), -(7457,7457,'staticobjects/pictures/df_painting03_dpo',0), -(7458,7458,'staticobjects/pictures/df_painting05_dpo',0), -(7459,7459,'staticobjects/pictures/df_painting06_dpo',0), -(7460,7460,'staticobjects/light_sources_player_housing_only/dt_bee_walllamp01_dpo',0), -(7461,7461,'staticobjects/light_sources_player_housing_only/dt_wall_lamp01_dpo',0), -(7462,7462,'staticobjects/plants/dt_flowerpot01_dpo',0), -(7463,7463,'staticobjects/plants/dt_flowerpot02_dpo',0), -(7464,7464,'staticobjects/dpo_invisible_wall/invisible_wall_sof_well_drwy',0), -(7465,7465,'_exp04/tool_users/golem_iron',0), -(7466,7466,'staticobjects/dpo_invisible_cube/wisp_collision',0), -(7467,7467,'accessories/wearable_items/_exp04/dragon_chain/chest',0), -(7468,7468,'accessories/wearable_items/_exp04/dragon_chain/feet',0), -(7469,7469,'accessories/wearable_items/_exp04/dragon_chain/forearms',0), -(7470,7470,'accessories/wearable_items/_exp04/dragon_chain/hands',0), -(7471,7471,'accessories/wearable_items/_exp04/dragon_chain/head',0), -(7472,7472,'accessories/wearable_items/_exp04/dragon_chain/legs',0), -(7473,7473,'accessories/wearable_items/_exp04/dragon_chain/legs_noskirt',0), -(7474,7474,'accessories/wearable_items/_exp04/dragon_chain/shoulders',0), -(7475,7475,'accessories/wearable_items/_exp04/dragon_chain/skirt',0), -(7476,7476,'accessories/wearable_items/_exp04/dragon_gi/chest',0), -(7477,7477,'accessories/wearable_items/_exp04/dragon_gi/pants',0), -(7478,7478,'accessories/wearable_items/_exp04/dragon_gi/shoulders',0), -(7479,7479,'accessories/wearable_items/_exp04/dragon_leather/chest',0), -(7480,7480,'accessories/wearable_items/_exp04/dragon_leather/feet',0), -(7481,7481,'accessories/wearable_items/_exp04/dragon_leather/forearms',0), -(7482,7482,'accessories/wearable_items/_exp04/dragon_leather/hands',0), -(7483,7483,'accessories/wearable_items/_exp04/dragon_leather/head',0), -(7484,7484,'accessories/wearable_items/_exp04/dragon_leather/legs',0), -(7485,7485,'accessories/wearable_items/_exp04/dragon_leather/legs_noskirt',0), -(7486,7486,'accessories/wearable_items/_exp04/dragon_leather/shoulders',0), -(7487,7487,'accessories/wearable_items/_exp04/dragon_leather/skirt',0), -(7488,7488,'accessories/wearable_items/_exp04/dragon_robe/chest',0), -(7489,7489,'accessories/wearable_items/_exp04/dragon_robe/hood',0), -(7490,7490,'accessories/wearable_items/_exp04/dragon_robe/pants',0), -(7491,7491,'accessories/wearable_items/_exp04/dragon_robe/skirt',0), -(7492,7492,'accessories/wearable_items/_exp04/dragon_vanguard/chest',0), -(7493,7493,'accessories/wearable_items/_exp04/dragon_vanguard/feet',0), -(7494,7494,'accessories/wearable_items/_exp04/dragon_vanguard/forearms',0), -(7495,7495,'accessories/wearable_items/_exp04/dragon_vanguard/hands',0), -(7496,7496,'accessories/wearable_items/_exp04/dragon_vanguard/head',0), -(7497,7497,'accessories/wearable_items/_exp04/dragon_vanguard/legs',0), -(7498,7498,'accessories/wearable_items/_exp04/dragon_vanguard/legs_noskirt',0), -(7499,7499,'accessories/wearable_items/_exp04/dragon_vanguard/shoulders',0), -(7500,7500,'accessories/wearable_items/_exp04/dragon_vanguard/shoulders_nopauldrons',0), -(7501,7501,'accessories/wearable_items/_exp04/dragon_vanguard/skirt',0), -(7502,7502,'accessories/wearable_items/_exp04/dragon_vanguard_priest/chest',0), -(7503,7503,'accessories/wearable_items/_exp04/dragon_vanguard_priest/feet',0), -(7504,7504,'accessories/wearable_items/_exp04/dragon_vanguard_priest/forearms',0), -(7505,7505,'accessories/wearable_items/_exp04/dragon_vanguard_priest/hands',0), -(7506,7506,'accessories/wearable_items/_exp04/dragon_vanguard_priest/head',0), -(7507,7507,'accessories/wearable_items/_exp04/dragon_vanguard_priest/legs',0), -(7508,7508,'accessories/wearable_items/_exp04/dragon_vanguard_priest/legs_noskirt',0), -(7509,7509,'accessories/wearable_items/_exp04/dragon_vanguard_priest/shoulders',0), -(7510,7510,'accessories/wearable_items/_exp04/dragon_vanguard_priest/shoulders_nopauldrons',0), -(7511,7511,'accessories/wearable_items/_exp04/dragon_vanguard_priest/skirt',0), -(7512,7512,'accessories/wearable_items/_exp04/iksar_chain/chest',0), -(7513,7513,'accessories/wearable_items/_exp04/iksar_chain/feet',0), -(7514,7514,'accessories/wearable_items/_exp04/iksar_chain/forearms',0), -(7515,7515,'accessories/wearable_items/_exp04/iksar_chain/hands',0), -(7516,7516,'accessories/wearable_items/_exp04/iksar_chain/head',0), -(7517,7517,'accessories/wearable_items/_exp04/iksar_chain/legs',0), -(7518,7518,'accessories/wearable_items/_exp04/iksar_chain/legs_noskirt',0), -(7519,7519,'accessories/wearable_items/_exp04/iksar_chain/shoulders',0), -(7520,7520,'accessories/wearable_items/_exp04/iksar_chain/skirt',0), -(7521,7521,'accessories/wearable_items/_exp04/iksar_gi/chest',0), -(7522,7522,'accessories/wearable_items/_exp04/iksar_gi/pants',0), -(7523,7523,'accessories/wearable_items/_exp04/iksar_gi/shoulders',0), -(7524,7524,'accessories/wearable_items/_exp04/iksar_leather/chest',0), -(7525,7525,'accessories/wearable_items/_exp04/iksar_leather/feet',0), -(7526,7526,'accessories/wearable_items/_exp04/iksar_leather/forearms',0), -(7527,7527,'accessories/wearable_items/_exp04/iksar_leather/hands',0), -(7528,7528,'accessories/wearable_items/_exp04/iksar_leather/head',0), -(7529,7529,'accessories/wearable_items/_exp04/iksar_leather/legs',0), -(7530,7530,'accessories/wearable_items/_exp04/iksar_leather/legs_noskirt',0), -(7531,7531,'accessories/wearable_items/_exp04/iksar_leather/shoulders',0), -(7532,7532,'accessories/wearable_items/_exp04/iksar_leather/skirt',0), -(7533,7533,'accessories/wearable_items/_exp04/iksar_robe/chest',0), -(7534,7534,'accessories/wearable_items/_exp04/iksar_robe/hood',0), -(7535,7535,'accessories/wearable_items/_exp04/iksar_robe/pants',0), -(7536,7536,'accessories/wearable_items/_exp04/iksar_robe/skirt',0), -(7537,7537,'accessories/wearable_items/_exp04/iksar_vanguard/chest',0), -(7538,7538,'accessories/wearable_items/_exp04/iksar_vanguard/feet',0), -(7539,7539,'accessories/wearable_items/_exp04/iksar_vanguard/forearms',0), -(7540,7540,'accessories/wearable_items/_exp04/iksar_vanguard/hands',0), -(7541,7541,'accessories/wearable_items/_exp04/iksar_vanguard/head',0), -(7542,7542,'accessories/wearable_items/_exp04/iksar_vanguard/legs',0), -(7543,7543,'accessories/wearable_items/_exp04/iksar_vanguard/legs_noskirt',0), -(7544,7544,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/forearms',1096), -(7545,7545,'accessories/wearable_items/_exp04/iksar_vanguard/shoulders',0), -(7546,7546,'accessories/wearable_items/_exp04/iksar_vanguard/shoulders_nopauldrons',0), -(7547,7547,'accessories/wearable_items/_exp04/iksar_vanguard/skirt',0), -(7548,7548,'accessories/wearable_items/_exp04/sarnak_chain/chest',0), -(7549,7549,'accessories/wearable_items/_exp04/sarnak_chain/feet',0), -(7550,7550,'accessories/wearable_items/_exp04/sarnak_chain/forearms',0), -(7551,7551,'accessories/wearable_items/_exp04/sarnak_chain/hands',0), -(7552,7552,'accessories/wearable_items/_exp04/sarnak_chain/head',0), -(7553,7553,'accessories/wearable_items/_exp04/sarnak_chain/legs',0), -(7554,7554,'accessories/wearable_items/_exp04/sarnak_chain/legs_noskirt',0), -(7555,7555,'accessories/wearable_items/_exp04/sarnak_chain/shoulders',0), -(7556,7556,'accessories/wearable_items/_exp04/sarnak_chain/skirt',0), -(7557,7557,'accessories/wearable_items/_exp04/sarnak_chain_caster/chest',0), -(7558,7558,'accessories/wearable_items/_exp04/sarnak_chain_caster/feet',0), -(7559,7559,'accessories/wearable_items/_exp04/sarnak_chain_caster/forearms',0), -(7560,7560,'accessories/wearable_items/_exp04/sarnak_chain_caster/hands',0), -(7561,7561,'accessories/wearable_items/_exp04/sarnak_chain_caster/head',0), -(7562,7562,'accessories/wearable_items/_exp04/sarnak_chain_caster/legs',0), -(7563,7563,'accessories/wearable_items/_exp04/sarnak_chain_caster/legs_noskirt',0), -(7564,7564,'accessories/wearable_items/_exp04/sarnak_chain_caster/shoulders',0), -(7565,7565,'accessories/wearable_items/_exp04/sarnak_chain_caster/skirt',0), -(7566,7566,'accessories/wearable_items/_exp04/sarnak_leather/chest',0), -(7567,7567,'accessories/wearable_items/_exp04/sarnak_leather/feet',0), -(7568,7568,'accessories/wearable_items/_exp04/sarnak_leather/forearms',0), -(7569,7569,'accessories/wearable_items/_exp04/sarnak_leather/hands',0), -(7570,7570,'accessories/wearable_items/_exp04/sarnak_leather/head',0), -(7571,7571,'accessories/wearable_items/_exp04/sarnak_leather/legs',0), -(7572,7572,'accessories/wearable_items/_exp04/sarnak_leather/legs_noskirt',0), -(7573,7573,'accessories/wearable_items/_exp04/sarnak_leather/shoulders',0), -(7574,7574,'accessories/wearable_items/_exp04/sarnak_leather/skirt',0), -(7575,7575,'accessories/wearable_items/_exp04/sarnak_robe/chest',0), -(7576,7576,'accessories/wearable_items/_exp04/sarnak_robe/hood',0), -(7577,7577,'accessories/wearable_items/_exp04/sarnak_robe/pants',0), -(7578,7578,'accessories/wearable_items/_exp04/sarnak_robe/skirt',0), -(7579,7579,'accessories/wearable_items/_exp04/sarnak_vanguard/chest',0), -(7580,7580,'accessories/wearable_items/_exp04/sarnak_vanguard/feet',0), -(7581,7581,'accessories/wearable_items/_exp04/sarnak_vanguard/forearms',0), -(7582,7582,'accessories/wearable_items/_exp04/sarnak_vanguard/hands',0), -(7583,7583,'accessories/wearable_items/_exp04/sarnak_vanguard/head',0), -(7584,7584,'accessories/wearable_items/_exp04/sarnak_vanguard/legs',0), -(7585,7585,'accessories/wearable_items/_exp04/sarnak_vanguard/legs_noskirt',0), -(7586,7586,'accessories/wearable_items/_exp04/sarnak_vanguard/shoulders',0), -(7587,7587,'accessories/wearable_items/_exp04/sarnak_vanguard/shoulders_nopauldrons',0), -(7588,7588,'accessories/wearable_items/_exp04/sarnak_vanguard/skirt',0), -(7589,7589,'projectiles/cow_launched',0), -(7590,7590,'_exp04/zones/objects/jarsath_wastes/jw_barricade01_iksar',0), -(7591,7591,'_exp04/monsters/trakanon',0), -(7592,7592,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/hands',1096), -(7593,7593,'projectiles/spell_beehive',0), -(7594,7594,'_exp04/zones/objects/veeshans_peak/field_generator/vp_fieldgenerator_base01',0), -(7595,7595,'_exp04/zones/objects/veeshans_peak/weapon_rack/vp_weapon_rack01',0), -(7596,7596,'_exp04/zones/objects/timorous_deep/spiroc_cage',0), -(7597,7597,'_exp04/zones/objects/timorous_deep/spiroc_cagedoor',0), -(7598,7598,'_exp04/tool_users/drolvarg_pawbuster',0), -(7599,7599,'accessories/wieldable_items/weapons/staff/escrima/escrima002_bristlebane',0), -(7600,7600,'_exp04/monsters/clay_golem_magma',0), -(7601,7601,'staticobjects/deity_altars/altar_bristlebane_basic',0), -(7602,7602,'staticobjects/deity_altars/altar_bristlebane_crafted',0), -(7603,7603,'staticobjects/deity_altars/altar_bristlebane_exceptional',0), -(7604,7604,'staticobjects/bookcases/qey_bookcase_ornate001_dpo',0), -(7605,7605,'staticobjects/bookcases/qey_bookcase_plain001_dpo',0), -(7606,7606,'staticobjects/games/qey_gametable_card_withcards001_dpo',0), -(7607,7607,'staticobjects/light_sources_player_housing_only/vrsn_candelabra01_skel_dpo',0), -(7608,7608,'staticobjects/light_sources_player_housing_only/vrsn_torch01_wall_green_dpo',0), -(7609,7609,'staticobjects/light_sources_player_housing_only/vrsn_torch02_wall_green_dpo',0), -(7610,7610,'staticobjects/pictures/qey_painting_billportrait001_dpo',0), -(7611,7611,'staticobjects/pictures/qey_painting_claymore001_dpo',0), -(7612,7612,'staticobjects/pictures/qey_painting_horseknight001_dpo',0), -(7613,7613,'staticobjects/bookcases/fprt_bookcase_smallornate03_dpo',0), -(7614,7614,'staticobjects/bookcases/nk_obj_bookcase_large01_dpo',0), -(7615,7615,'staticobjects/counters/nk_obj_counterlarge01_dpo',0), -(7616,7616,'staticobjects/counters/nk_obj_counterlarge03_dpo',0), -(7617,7617,'staticobjects/counters/nk_obj_counternormal01_dpo',0), -(7618,7618,'staticobjects/chairs/nk_obj_chair_ornate_metal01_dpo',0), -(7619,7619,'staticobjects/tables/nk_obj_table_ornate01_dpo',0), -(7620,7620,'staticobjects/beds/nk_obj_ornate_metal_bed01_dpo',0), -(7621,7621,'staticobjects/beds/nk_obj_darklight_palace_bed01_dpo',0), -(7622,7622,'staticobjects/chairs/nk_obj_brotherhood_dpo',0), -(7623,7623,'staticobjects/light_sources_player_housing_only/dw_obj_chandelier_gothic01_red_dpo',0), -(7624,7624,'staticobjects/light_sources_player_housing_only/dw_obj_chandelier_crystal01_green_dpo',0), -(7625,7625,'_exp04/zones/objects/misc/hitching_post',0), -(7626,7626,'staticobjects/games/qey_gametable_roundcard_withcards001_dpo',0), -(7627,7627,'_exp04/monsters/skyfiredrake_cinder',0), -(7628,7628,'_exp04/zones/objects/veeshans_peak/field_generator/vp_fieldgenerator_base02',0), -(7629,7629,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/head',1096), -(7630,7630,'_exp04/zones/objects/veeshans_peak/vp_teleporter',0), -(7631,7631,'_exp04/monsters/dragon_skeleton',0), -(7632,7632,'_exp04/monsters/hoshkar',0), -(7633,7633,'_exp04/monsters/nexona',0), -(7634,7634,'_exp04/monsters/phara_dar',0), -(7635,7635,'_exp04/monsters/silverwing',0), -(7636,7636,'_exp04/tool_users/burynai_caster',0), -(7637,7637,'_exp04/tool_users/burynai_warrior',0), -(7638,7638,'_exp04/tool_users/iksar_skeleton',0), -(7639,7639,'_exp04/tool_users/mountain_giant',0), -(7640,7640,'_exp04/tool_users/xalgoz',0), -(7641,7641,'_exp04/monsters/behemoth_medusa',0), -(7642,7642,'ec/npc/zombie_fresh_male_halfling',0), -(7643,7643,'_exp04/zones/objects/misc/sebilis_obj_gate02',0), -(7644,7644,'staticobjects/boats/fullboat',0), -(7645,7645,'_exp04/monsters/fishman_scout',0), -(7646,7646,'_exp04/tool_users/fishman_scout_tu',0), -(7647,7647,'staticobjects/dpo_invisible_cube/dpo_invisible_cube_bigger',0), -(7648,7648,'_exp04/tool_users/froglok_kunark_chain',0), -(7649,7649,'_exp04/zones/objects/chardok/char_totem',0), -(7650,7650,'staticobjects/crates/floor_crate_sebilis_closed01',0), -(7651,7651,'_exp04/zones/objects/charasis/cha_crystal_purple01',0), -(7652,7652,'_exp04/zones/objects/charasis/cha_crystal_turquoise01',0), -(7653,7653,'_exp04/zones/objects/charasis/cha_crystal01_invisiblepurple',0), -(7654,7654,'_exp04/zones/objects/charasis/cha_crystal01_invisibleturquoise',0), -(7655,7655,'_exp04/zones/objects/sebilis/desk_torch',0), -(7656,7656,'staticobjects/eig/eig_harvest_location_green',0), -(7657,7657,'staticobjects/eig/eig_harvest_location_purple',0), -(7658,7658,'staticobjects/eig/eig_harvest_location_red',0), -(7659,7659,'_exp04/zones/objects/fens_of_nathsar/riliss_pen_fence',0), -(7660,7660,'staticobjects/candles/df_candelabra02_dpo',0), -(7661,7661,'staticobjects/torture_chamber/df_bars01_dpo',0), -(7662,7662,'staticobjects/torture_chamber/df_shackle03_dpo',0), -(7663,7663,'staticobjects/torture_chamber/bef_stolentorturechair001_dpo',0), -(7664,7664,'staticobjects/platforms/df_banquetplatform_dpo',0), -(7665,7665,'staticobjects/torture_chamber/df_torturestockade01_dpo',0), -(7666,7666,'staticobjects/torture_chamber/df_torturetable01_dpo',0), -(7667,7667,'staticobjects/torture_chamber/df_torturechair01_dpo',0), -(7668,7668,'staticobjects/light_sources_player_housing_only/orc_roadsign_dpo',0), -(7669,7669,'staticobjects/platforms/df_dais02_dpo',0), -(7670,7670,'staticobjects/pillars/df_thronepillar01_dpo',0), -(7671,7671,'staticobjects/light_sources_player_housing_only/df_columnfire_dpo',0), -(7672,7672,'staticobjects/light_sources_player_housing_only/orc_brazier02_dpo',0), -(7673,7673,'staticobjects/beds/df_emperorbed01_dpo',0), -(7674,7674,'staticobjects/tapestry/df_drapes01_dpo',0), -(7675,7675,'staticobjects/light_sources_player_housing_only/df_torch02_dpo',0), -(7676,7676,'staticobjects/candles/df_candle03_dpo',0), -(7677,7677,'staticobjects/torture_chamber/df_skeletonbox01_dpo',0), -(7678,7678,'staticobjects/torture_chamber/df_skeletonbox006_dpo',0), -(7679,7679,'staticobjects/torture_chamber/df_skeletonbox03_dpo',0), -(7680,7680,'staticobjects/torture_chamber/df_spearedskele02_dpo',0), -(7681,7681,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/legs',1096), -(7682,7682,'_exp04/monsters/behemoth_piercer',0), -(7683,7683,'_exp04/tool_users/drusella_sathir',0), -(7684,7684,'_exp04/zones/objects/jarsath_wastes/lava_hrvst_fish_shallow',0), -(7685,7685,'accessories/wearable_items01/_exp00/magus/artifact/high/legs',0), -(7686,7686,'accessories/wearable_items01/_exp00/magus/artifact/high/feet',0), -(7687,7687,'_exp04/monsters/clay_golem_storm',0), -(7688,7688,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/legs_noskirt',1096), -(7689,7689,'ec/pc01/sarnak_female/sarnak_female_thin02',0), -(7690,7690,'ec/pc01/sarnak_female/sarnak_female_thin03',0), -(7691,7691,'staticobjects/armor/brigandine_iksar_male_chest',0), -(7692,7692,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_translucent_sword',0), -(7693,7693,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_flailcensor',0), -(7694,7694,'accessories/wieldable_items/weapons/exp04/2h_sword/exp04_2hs_translucent_greatsword',0), -(7695,7695,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_hook_dagger',0), -(7696,7696,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_pronged_sword',0), -(7697,7697,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_flame_dagger',0), -(7698,7698,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_dragonscale_shield',0), -(7699,7699,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_hooked_sword',0), -(7700,7700,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_tiki_shield',0), -(7701,7701,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_vampiric_sacrificial_dagger',0), -(7702,7702,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_diamond_shield',0), -(7703,7703,'staticobjects/plants/qey_objects_treeplanter01_dpo',0), -(7704,7704,'staticobjects/light_sources_player_housing_only/halfling_streetlamp01_sm_dpo',0), -(7705,7705,'staticobjects/light_sources_player_housing_only/halfling_streetlamp01_pot_lrg_dpo',0), -(7706,7706,'staticobjects/light_sources_player_housing_only/halfling_streetlamp01_lrg_dpo',0), -(7707,7707,'staticobjects/light_sources_player_housing_only/halfling_streetlamp01_pot_sm_dpo',0), -(7708,7708,'staticobjects/tools/qey_3towers_hourglass001_dpo',0), -(7709,7709,'staticobjects/tools/fprt_scribe_inkwellornate01_dpo',0), -(7710,7710,'staticobjects/tools/fprt_bank_scalestipped01_dpo',0), -(7711,7711,'_exp04/zones/objects/sebilis/audiencechamber_door',0), -(7712,7712,'_exp04/zones/objects/veeshans_peak/vp_light_game_door_barrier',0), -(7713,7713,'_exp04/tool_users/venril_sathir',0), -(7714,7714,'ui_fx/fx/systems/wieldables/1h_sword_invisible',0), -(7715,7715,'ui_fx/fx/systems/wieldables/1h_crush_invisible',0), -(7716,7716,'accessories/wieldable_items/weapons/exp04/2h_crush/exp04_2hc_mage_staff',0), -(7717,7717,'_exp04/zones/objects/veeshans_peak/eggs/vp_dragoneggs_broken01',0), -(7718,7718,'_exp04/zones/objects/veeshans_peak/eggs/vp_dragoneggs_broken02',0), -(7719,7719,'_exp04/zones/objects/veeshans_peak/eggs/vp_dragoneggs_unbroken01',0), -(7720,7720,'_exp04/zones/objects/veeshans_peak/eggs/vp_dragoneggs_unbroken02',0), -(7721,7721,'_exp04/zones/objects/veeshans_peak/switch_block/vp_switchblock_base',0), -(7722,7722,'_exp04/zones/objects/veeshans_peak/switch_block/vp_switchblock_switch',0), -(7723,7723,'_exp04/zones/objects/chardok/chardok_bunks01',0), -(7724,7724,'_exp04/zones/objects/chardok/chardok_bunks02',0), -(7725,7725,'_exp04/monsters/behemoth_basher',0), -(7726,7726,'_exp04/monsters/behemoth_eyestalk',0), -(7727,7727,'_exp04/monsters/behemoth_main',0), -(7728,7728,'_exp04/monsters/behemoth_spitter',0), -(7729,7729,'_exp04/zones/objects/veeshans_peak/statues/vp_ring_of_scale01',0), -(7730,7730,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_crystal_wand',0), -(7731,7731,'accessories/wearable_items/starter_clothes/sarnak_male/chest',0), -(7732,7732,'accessories/wearable_items/starter_clothes/sarnak_male/legs',0), -(7733,7733,'accessories/wearable_items/starter_clothes/sarnak_female/chest',0), -(7734,7734,'accessories/wearable_items/starter_clothes/sarnak_female/legs',0), -(7735,7735,'_exp04/zones/objects/charasis/cha_totem_south',0), -(7736,7736,'_exp04/zones/objects/charasis/cha_canopic_vase02',0), -(7737,7737,'accessories/wieldable_items/weapons/exp04/talisman/exp04_tribal_idol',0), -(7738,7738,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_golden_wand',0), -(7739,7739,'creatures/tu/gods_tribunal',0), -(7740,7740,'accessories/wieldable_items/weapons/exp04/orb/exp04_orb_multicolored_glass_ball',0), -(7741,7741,'creatures/monsters/crab_timorous',0), -(7742,7742,'creatures/monsters/griffin_tintable',0), -(7743,7743,'_exp04/zones/objects/chardok/char_lever_wall_base01',0), -(7744,7744,'_exp04/zones/objects/chardok/char_lever_wall_switch01',0), -(7745,7745,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_venril_painting01',0), -(7746,7746,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_sarnak_shield',0), -(7747,7747,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_unusual_shield',0), -(7748,7748,'_exp04/zones/objects/chardok/sarnak_barricade',0), -(7749,7749,'accessories/wieldable_items/shields/exp04/exp04_small_held_symbol_green_praetor',0), -(7750,7750,'accessories/wieldable_items/shields/exp04/exp04_small_held_symbol_blue_ice',0), -(7751,7751,'accessories/wieldable_items/shields/exp04/exp04_small_held_symbol_green_poison',0), -(7752,7752,'accessories/wieldable_items/shields/exp04/exp04_small_held_symbol_red_fire',0), -(7753,7753,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/shoulders',1096), -(7754,7754,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_shipwheel_shield01',0), -(7755,7755,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_shipwheel_shield02',0), -(7756,7756,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_shipwheel_shield03',0), -(7757,7757,'staticobjects/deity_altars/altar_bertoxxulous_basic',0), -(7758,7758,'staticobjects/deity_altars/altar_bertoxxulous_crafted',0), -(7759,7759,'staticobjects/deity_altars/altar_bertoxxulous_exceptional',0), -(7760,7760,'staticobjects/deity_altars/altar_karana_basic',0), -(7761,7761,'staticobjects/deity_altars/altar_karana_crafted',0), -(7762,7762,'staticobjects/deity_altars/altar_karana_exceptional',0), -(7763,7763,'staticobjects/deity_altars/altar_tribunal_basic',0), -(7764,7764,'staticobjects/deity_altars/altar_tribunal_crafted',0), -(7765,7765,'staticobjects/deity_altars/altar_tribunal_exceptional',0), -(7766,7766,'accessories/wearable_items01/_exp04/dragon_chain/chest',0), -(7767,7767,'accessories/wearable_items01/_exp04/dragon_chain/feet',0), -(7768,7768,'accessories/wearable_items01/_exp04/dragon_chain/forearms',0), -(7769,7769,'accessories/wearable_items01/_exp04/dragon_chain/hands',0), -(7770,7770,'accessories/wearable_items01/_exp04/dragon_chain/head',0), -(7771,7771,'accessories/wearable_items01/_exp04/dragon_chain/legs',0), -(7772,7772,'accessories/wearable_items01/_exp04/dragon_chain/legs_noskirt',0), -(7773,7773,'accessories/wearable_items01/_exp04/dragon_chain/shoulders',0), -(7774,7774,'accessories/wearable_items01/_exp04/dragon_chain/skirt',0), -(7775,7775,'accessories/wearable_items01/_exp04/dragon_gi/chest',0), -(7776,7776,'accessories/wearable_items01/_exp04/dragon_gi/pants',0), -(7777,7777,'accessories/wearable_items01/_exp04/dragon_gi/shoulders',0), -(7778,7778,'accessories/wearable_items01/_exp04/dragon_leather/chest',0), -(7779,7779,'accessories/wearable_items01/_exp04/dragon_leather/feet',0), -(7780,7780,'accessories/wearable_items01/_exp04/dragon_leather/forearms',0), -(7781,7781,'accessories/wearable_items01/_exp04/dragon_leather/hands',0), -(7782,7782,'accessories/wearable_items01/_exp04/dragon_leather/head',0), -(7783,7783,'accessories/wearable_items01/_exp04/dragon_leather/legs',0), -(7784,7784,'accessories/wearable_items01/_exp04/dragon_leather/legs_noskirt',0), -(7785,7785,'accessories/wearable_items01/_exp04/dragon_leather/shoulders',0), -(7786,7786,'accessories/wearable_items01/_exp04/dragon_leather/skirt',0), -(7787,7787,'accessories/wearable_items01/_exp04/dragon_robe/chest',0), -(7788,7788,'accessories/wearable_items01/_exp04/dragon_robe/hood',0), -(7789,7789,'accessories/wearable_items01/_exp04/dragon_robe/pants',0), -(7790,7790,'accessories/wearable_items01/_exp04/dragon_robe/skirt',0), -(7791,7791,'accessories/wearable_items01/_exp04/dragon_vanguard/chest',0), -(7792,7792,'accessories/wearable_items01/_exp04/dragon_vanguard/feet',0), -(7793,7793,'accessories/wearable_items01/_exp04/dragon_vanguard/forearms',0), -(7794,7794,'accessories/wearable_items01/_exp04/dragon_vanguard/hands',0), -(7795,7795,'accessories/wearable_items01/_exp04/dragon_vanguard/head',0), -(7796,7796,'accessories/wearable_items01/_exp04/dragon_vanguard/legs',0), -(7797,7797,'accessories/wearable_items01/_exp04/dragon_vanguard/legs_noskirt',0), -(7798,7798,'accessories/wearable_items01/_exp04/dragon_vanguard/right',0), -(7799,7799,'accessories/wearable_items01/_exp04/dragon_vanguard/shoulders',0), -(7800,7800,'accessories/wearable_items01/_exp04/dragon_vanguard/shoulders_nopauldrons',0), -(7801,7801,'accessories/wearable_items01/_exp04/dragon_vanguard/skirt',0), -(7802,7802,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/chest',0), -(7803,7803,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/feet',0), -(7804,7804,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/forearms',0), -(7805,7805,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/hands',0), -(7806,7806,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/head',0), -(7807,7807,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/legs',0), -(7808,7808,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/legs_noskirt',0), -(7809,7809,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/right',0), -(7810,7810,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/shoulders',0), -(7811,7811,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/shoulders_nopauldrons',0), -(7812,7812,'accessories/wearable_items01/_exp04/dragon_vanguard_priest/skirt',0), -(7813,7813,'accessories/wearable_items01/_exp04/iksar_chain/chest',0), -(7814,7814,'accessories/wearable_items01/_exp04/iksar_chain/feet',0), -(7815,7815,'accessories/wearable_items01/_exp04/iksar_chain/forearms',0), -(7816,7816,'accessories/wearable_items01/_exp04/iksar_chain/hands',0), -(7817,7817,'accessories/wearable_items01/_exp04/iksar_chain/head',0), -(7818,7818,'accessories/wearable_items01/_exp04/iksar_chain/legs',0), -(7819,7819,'accessories/wearable_items01/_exp04/iksar_chain/legs_noskirt',0), -(7820,7820,'accessories/wearable_items01/_exp04/iksar_chain/shoulders',0), -(7821,7821,'accessories/wearable_items01/_exp04/iksar_chain/skirt',0), -(7822,7822,'accessories/wearable_items01/_exp04/iksar_gi/chest',0), -(7823,7823,'accessories/wearable_items01/_exp04/iksar_gi/pants',0), -(7824,7824,'accessories/wearable_items01/_exp04/iksar_gi/shoulders',0), -(7825,7825,'accessories/wearable_items01/_exp04/iksar_leather/chest',0), -(7826,7826,'accessories/wearable_items01/_exp04/iksar_leather/feet',0), -(7827,7827,'accessories/wearable_items01/_exp04/iksar_leather/forearms',0), -(7828,7828,'accessories/wearable_items01/_exp04/iksar_leather/hands',0), -(7829,7829,'accessories/wearable_items01/_exp04/iksar_leather/head',0), -(7830,7830,'accessories/wearable_items01/_exp04/iksar_leather/legs',0), -(7831,7831,'accessories/wearable_items01/_exp04/iksar_leather/legs_noskirt',0), -(7832,7832,'accessories/wearable_items01/_exp04/iksar_leather/shoulders',0), -(7833,7833,'accessories/wearable_items01/_exp04/iksar_leather/skirt',0), -(7834,7834,'accessories/wearable_items01/_exp04/iksar_robe/chest',0), -(7835,7835,'accessories/wearable_items01/_exp04/iksar_robe/hood',0), -(7836,7836,'accessories/wearable_items01/_exp04/iksar_robe/pants',0), -(7837,7837,'accessories/wearable_items01/_exp04/iksar_robe/skirt',0), -(7838,7838,'accessories/wearable_items01/_exp04/iksar_vanguard/chest',0), -(7839,7839,'accessories/wearable_items01/_exp04/iksar_vanguard/feet',0), -(7840,7840,'accessories/wearable_items01/_exp04/iksar_vanguard/forearms',0), -(7841,7841,'accessories/wearable_items01/_exp04/iksar_vanguard/hands',0), -(7842,7842,'accessories/wearable_items01/_exp04/iksar_vanguard/head',0), -(7843,7843,'accessories/wearable_items01/_exp04/iksar_vanguard/legs',0), -(7844,7844,'accessories/wearable_items01/_exp04/iksar_vanguard/legs_noskirt',0), -(7845,7845,'accessories/wearable_items01/_exp04/iksar_vanguard/right',0), -(7846,7846,'accessories/wearable_items01/_exp04/iksar_vanguard/shoulders',0), -(7847,7847,'accessories/wearable_items01/_exp04/iksar_vanguard/shoulders_nopauldrons',0), -(7848,7848,'accessories/wearable_items01/_exp04/iksar_vanguard/skirt',0), -(7849,7849,'accessories/wearable_items01/_exp04/sarnak_chain/chest',0), -(7850,7850,'accessories/wearable_items01/_exp04/sarnak_chain/feet',0), -(7851,7851,'accessories/wearable_items01/_exp04/sarnak_chain/forearms',0), -(7852,7852,'accessories/wearable_items01/_exp04/sarnak_chain/hands',0), -(7853,7853,'accessories/wearable_items01/_exp04/sarnak_chain/head',0), -(7854,7854,'accessories/wearable_items01/_exp04/sarnak_chain/legs',0), -(7855,7855,'accessories/wearable_items01/_exp04/sarnak_chain/legs_noskirt',0), -(7856,7856,'accessories/wearable_items01/_exp04/sarnak_chain/shoulders',0), -(7857,7857,'accessories/wearable_items01/_exp04/sarnak_chain/skirt',0), -(7858,7858,'accessories/wearable_items01/_exp04/sarnak_chain_caster/chest',0), -(7859,7859,'accessories/wearable_items01/_exp04/sarnak_chain_caster/feet',0), -(7860,7860,'accessories/wearable_items01/_exp04/sarnak_chain_caster/forearms',0), -(7861,7861,'accessories/wearable_items01/_exp04/sarnak_chain_caster/hands',0), -(7862,7862,'accessories/wearable_items01/_exp04/sarnak_chain_caster/head',0), -(7863,7863,'accessories/wearable_items01/_exp04/sarnak_chain_caster/legs',0), -(7864,7864,'accessories/wearable_items01/_exp04/sarnak_chain_caster/legs_noskirt',0), -(7865,7865,'accessories/wearable_items01/_exp04/sarnak_chain_caster/shoulders',0), -(7866,7866,'accessories/wearable_items01/_exp04/sarnak_chain_caster/skirt',0), -(7867,7867,'accessories/wearable_items01/_exp04/sarnak_leather/chest',0), -(7868,7868,'accessories/wearable_items01/_exp04/sarnak_leather/feet',0), -(7869,7869,'accessories/wearable_items01/_exp04/sarnak_leather/forearms',0), -(7870,7870,'accessories/wearable_items01/_exp04/sarnak_leather/hands',0), -(7871,7871,'accessories/wearable_items01/_exp04/sarnak_leather/head',0), -(7872,7872,'accessories/wearable_items01/_exp04/sarnak_leather/legs',0), -(7873,7873,'accessories/wearable_items01/_exp04/sarnak_leather/legs_noskirt',0), -(7874,7874,'accessories/wearable_items01/_exp04/sarnak_leather/shoulders',0), -(7875,7875,'accessories/wearable_items01/_exp04/sarnak_leather/skirt',0), -(7876,7876,'accessories/wearable_items01/_exp04/sarnak_robe/chest',0), -(7877,7877,'accessories/wearable_items01/_exp04/sarnak_robe/hood',0), -(7878,7878,'accessories/wearable_items01/_exp04/sarnak_robe/pants',0), -(7879,7879,'accessories/wearable_items01/_exp04/sarnak_robe/skirt',0), -(7880,7880,'accessories/wearable_items01/_exp04/sarnak_vanguard/chest',0), -(7881,7881,'accessories/wearable_items01/_exp04/sarnak_vanguard/feet',0), -(7882,7882,'accessories/wearable_items01/_exp04/sarnak_vanguard/forearms',0), -(7883,7883,'accessories/wearable_items01/_exp04/sarnak_vanguard/hands',0), -(7884,7884,'accessories/wearable_items01/_exp04/sarnak_vanguard/head',0), -(7885,7885,'accessories/wearable_items01/_exp04/sarnak_vanguard/legs',0), -(7886,7886,'accessories/wearable_items01/_exp04/sarnak_vanguard/legs_noskirt',0), -(7887,7887,'accessories/wearable_items01/_exp04/sarnak_vanguard/right',0), -(7888,7888,'accessories/wearable_items01/_exp04/sarnak_vanguard/shoulders',0), -(7889,7889,'accessories/wearable_items01/_exp04/sarnak_vanguard/shoulders_nopauldrons',0), -(7890,7890,'accessories/wearable_items01/_exp04/sarnak_vanguard/skirt',0), -(7891,7891,'_exp04/zones/objects/chelsith/water_barrier_1a',0), -(7892,7892,'_exp04/zones/objects/chelsith/water_barrier_1b',0), -(7893,7893,'_exp04/zones/objects/timorous_deep/mail/mail_kiosk_outdoor',0), -(7894,7894,'_exp04/zones/objects/timorous_deep/mail/mail_kiosk_indoor',0), -(7895,7895,'staticobjects/mirrors/dpo_cha_mirror01_north',0), -(7896,7896,'staticobjects/rugs/dpo_cha_rug_square03',0), -(7897,7897,'staticobjects/exp04_collections/dpo_cha_rug_square04',0), -(7898,7898,'staticobjects/exp04_collections/dpo_cha_stand_scroll',0), -(7899,7899,'staticobjects/tables/dpo_cha_table_sm01_north',0), -(7900,7900,'staticobjects/exp04_collections/dpo_cha_bowl_jewels',0), -(7901,7901,'staticobjects/light_sources_player_housing_only/dpo_char_lantern_antibat',0), -(7902,7902,'staticobjects/light_sources_player_housing_only/dpo_char_lightsource_brazier',0), -(7903,7903,'staticobjects/exp04_collections/dpo_char_lightsource_iksarskull',0), -(7904,7904,'staticobjects/dressers/dpo_kc_locker_standing_closed',0), -(7905,7905,'staticobjects/rugs/dpo_kc_rug01',0), -(7906,7906,'staticobjects/exp04_collections/dpo_kc_scrying_pool',0), -(7907,7907,'staticobjects/light_sources_player_housing_only/dpo_kp_lightsource_iksar_temple',0), -(7908,7908,'staticobjects/pillow/dpo_seb_bed_froglok_slave',0), -(7909,7909,'staticobjects/tables/dpo_seb_table_bedside01',0), -(7910,7910,'staticobjects/light_sources_player_housing_only/dpo_seb_lightsource_firepot',0), -(7911,7911,'staticobjects/exp04_collections/dpo_seb_lightsource_floor',0), -(7912,7912,'staticobjects/light_sources_player_housing_only/dpo_seb_lightsource_table01',0), -(7913,7913,'staticobjects/chairs/dpo_deep_stool_sarnak01',0), -(7914,7914,'staticobjects/bookcases/dpo_goro_scrollcase_empty',0), -(7915,7915,'staticobjects/tables/dpo_deep_table_sarnak01',0), -(7916,7916,'staticobjects/statues/dpo_vp_statue_trakanon04',0), -(7917,7917,'ec/pc01/sarnak_male/sarnak_male_thin12',0), -(7918,7918,'ec/pc01/sarnak_female/sarnak_female_thin15',0), -(7919,7919,'ec/pc01/sarnak_female/sarnak_female_thin14',0), -(7920,7920,'accessories/wearable_items/_exp08/dragon_armor/leather1_red/shoulders_epic',1096), -(7921,7921,'ec/pc01/sarnak_male/sarnak_male_thin13',0), -(7922,7922,'ec/pc01/sarnak_male/sarnak_male_thin10',0), -(7923,7923,'_exp04/zones/objects/fens_of_nathsar/fon_table_riliss01_dpo',0), -(7924,7924,'ec/pc01/sarnak_female/sarnak_female_thin11',0), -(7925,7925,'_exp04/zones/objects/kylong_plains/mail/klp_obj_mail_kiosk01',0), -(7926,7926,'_exp04/zones/objects/fens_of_nathsar/fon_obj_mail_kiosk01',0), -(7927,7927,'_exp04/zones/objects/kunzar_jungle/mail/kj_obj_mail_kiosk01',0), -(7928,7928,'staticobjects/fountains_and_pools/round_griffin_fountain_dpo',0), -(7929,7929,'projectiles/spell_barracuda',0), -(7930,7930,'code/lights_for_screenshots',0), -(7931,7931,'code/lights_for_screenshots_bright',0), -(7932,7932,'ec/pc01/sarnak_female/sarnak_female_thin07',0), -(7933,7933,'_exp04/monsters/jaled_dar_ghost',0), -(7934,7934,'_exp04/zones/objects/veeshans_peak/statues/vp_ring_of_scale01_fx',0), -(7935,7935,'_exp04/zones/objects/veeshans_peak/trakanons_orb',0), -(7936,7936,'accessories/wearable_items/_exp04/dragon_vanguard/right',0), -(7937,7937,'accessories/wearable_items/_exp04/dragon_vanguard_priest/right',0), -(7938,7938,'accessories/wearable_items/_exp04/iksar_vanguard/right',0), -(7939,7939,'accessories/wearable_items/_exp04/sarnak_vanguard/right',0), -(7940,7940,'staticobjects/boats/travel_boat_freeport',0), -(7941,7941,'staticobjects/boats/travel_boat_magic',0), -(7942,7942,'_exp04/zones/objects/karnors/capacitor_nub01',0), -(7943,7943,'_exp04/zones/objects/karnors/capacitor_nub02',0), -(7944,7944,'_exp04/zones/objects/karnors/capacitor_nub03',0), -(7945,7945,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_crystal_wand_blueflame',0), -(7946,7946,'_exp04/zones/objects/fens_of_nathsar/fon_crate_small_closed02_dpo',0), -(7947,7947,'_exp04/zones/objects/jarsath_wastes/mail/jw_obj_mail_kiosk01',0), -(7948,7948,'_exp04/zones/objects/misc/dpo_chelsith_stone',0), -(7949,7949,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large_greenblk01',0), -(7950,7950,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large_purpleblk01',0), -(7951,7951,'staticobjects/liveevent/frostfell/dpo_holiday_candycane_large_redblk01',0), -(7952,7952,'accessories/wieldable_items/weapons/sword/whip/whip002_ornate',0), -(7953,7953,'accessories/wieldable_items/weapons/sword/whip/whip002_plain',0), -(7954,7954,'accessories/wieldable_items/weapons/sword/whip/whip002_runic',0), -(7955,7955,'accessories/wieldable_items/weapons/sword/whip/whip002_rusty',0), -(7956,7956,'staticobjects/general/tcg_neriak_teleporter',0), -(7957,7957,'staticobjects/general/tcg_scryingcube_everfrost',0), -(7958,7958,'accessories/wieldable_items/weapons/great_sword/greatsword/tunaria_greatsword',0), -(7959,7959,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting04_warelf',0), -(7960,7960,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting05_chosen',0), -(7961,7961,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting06_basilisk',0), -(7962,7962,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting07_lucan',0), -(7963,7963,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting08_nagafen',0), -(7964,7964,'staticobjects/books/frostfell_card01_dpo',0), -(7965,7965,'staticobjects/books/frostfell_card02_dpo',0), -(7966,7966,'staticobjects/books/frostfell_card03_dpo',0), -(7967,7967,'staticobjects/books/frostfell_card04_dpo',0), -(7968,7968,'staticobjects/liveevent/frostfell/dpo_cookie_plate01',0), -(7969,7969,'staticobjects/liveevent/frostfell/dpo_cookie_plate02',0), -(7970,7970,'staticobjects/liveevent/frostfell/dpo_snowglobe_gorowynn01',0), -(7971,7971,'staticobjects/liveevent/frostfell/dpo_snowglobe_neriak01',0), -(7972,7972,'staticobjects/liveevent/frostfell/holiday_custard_pie',0), -(7973,7973,'staticobjects/liveevent/frostfell/holiday_mistletoe',0), -(7974,7974,'staticobjects/liveevent/frostfell/holliday_fatcandle_green',0), -(7975,7975,'staticobjects/liveevent/frostfell/holliday_fatcandle_red',0), -(7976,7976,'staticobjects/liveevent/frostfell/holliday_fatcandle_white',0), -(7977,7977,'staticobjects/lighting/ceiling_goro_obj_lantern01_blue',0), -(7978,7978,'staticobjects/lighting/ceiling_goro_obj_lantern01_purple',0), -(7979,7979,'staticobjects/lighting/ceiling_goro_obj_lantern01_yellow',0), -(7980,7980,'creatures/mounts/rhino_mount/rhino_armor01_fire',0), -(7981,7981,'creatures/mounts/rhino_mount/rhino_armor01_fire_purple',0), -(7982,7982,'projectiles/spell_pie',0), -(7983,7983,'accessories/wearable_items/cloak/exp03/cloak_sq_01_dragon',0), -(7984,7984,'accessories/wearable_items/cloak/exp03/cloak_sq_01_iksar_01',0), -(7985,7985,'accessories/wearable_items/cloak/exp03/cloak_sq_01_pirate',0), -(7986,7986,'accessories/wearable_items/cloak/exp03/cloak_sq_01_sarnak',0), -(7987,7987,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_tribunal',0), -(7988,7988,'accessories/wieldable_items/weapons/exp04/2h_crush/exp04_2hc_tribunal',0), -(7989,7989,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_innoruukarm_goblin_thrower',0), -(7990,7990,'accessories/wearable_items/profesion_hats/jester/jester_02/head',0), -(7991,7991,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_cudgel_of_obviation_raid',0), -(7992,7992,'accessories/wearable_items/profesion_hats/pirate/pirate_01/head',0), -(7993,7993,'projectiles/spell_glob',0), -(7994,7994,'accessories/wearable_items/profesion_hats/ninja/ninja_01/head',0), -(7995,7995,'staticobjects/liveevent/frostfell/dpo_plain_tree_small01',0), -(7996,7996,'projectiles/spell_bread',0), -(7997,7997,'accessories/wearable_items/_exp03/npc_only/cloak_tribunal_sq_01',0), -(7998,7998,'staticobjects/bookcases/nekcas_int_library_bookcase01_dpo',0), -(7999,7999,'staticobjects/bookcases/nekcas_int_library_bookcase02_dpo',0), -(8000,8000,'staticobjects/bookcases/nekcas_int_library_bookcase03_dpo',0), -(8001,8001,'staticobjects/scrolls/nekcas_eviltrinket_fancyscroll_dpo',0), -(8002,8002,'staticobjects/weapons/drafling_tower_giant_arrow',0), -(8003,8003,'creatures/tu/gods_karna',0), -(8004,8004,'accessories/wearable_items/_exp03/npc_only/cloak_karana_sq_01',0), -(8005,8005,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_karana',0), -(8006,8006,'accessories/wieldable_items/weapons/exp04/pike/exp04_pike_karana',0), -(8007,8007,'staticobjects/books/nekcas_eviltrinket_book001_vertical_dpo',0), -(8008,8008,'creatures/tu/gods_bertoxxulous',0), -(8009,8009,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_dragons_marrow_raid',0), -(8010,8010,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_elemental_dominance_raid',0), -(8011,8011,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_eye_of_siren_raid',0), -(8012,8012,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_mirage_star_raid',0), -(8013,8013,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_the_impact_of_the_sacrosanct_raid',0), -(8014,8014,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_torrid_gore_raid',0), -(8015,8015,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_penitents_absolution_raid',0), -(8016,8016,'_exp04/zones/objects/kunzar_jungle/kp_weaponrack_iksar01',0), -(8017,8017,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_charms_way_raid',0), -(8018,8018,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_deaths_grip_raid',0), -(8019,8019,'accessories/wieldable_items/weapons/exp04/_epic/1h_pierce/exp04_1hp_fang_of_ichor_raid',0), -(8020,8020,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_bertox',0), -(8021,8021,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_ayonic_axe_raid',0), -(8022,8022,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_dragons_temper_raid',0), -(8023,8023,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_fire_of_the_stalwart_raid',0), -(8024,8024,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_lamentation_of_the_intrepid_raid',0), -(8025,8025,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_night_terror_raid',0), -(8026,8026,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_sedition_raid',0), -(8027,8027,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_bite_of_the_wolf_raid',0), -(8028,8028,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr_raid',0), -(8029,8029,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature_raid',0), -(8030,8030,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon_raid',0), -(8031,8031,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist_raid',0), -(8032,8032,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity_raid',0), -(8033,8033,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher_raid',0), -(8034,8034,'staticobjects/rugs/dpo_char_rug02',0), -(8035,8035,'staticobjects/banners/dpo_jw_banner_droag01',0), -(8036,8036,'staticobjects/light_sources_player_housing_only/dpo_jw_lightsource_firepot_iksar',0), -(8037,8037,'staticobjects/torture_chamber/dpo_char_chain_hook_skull_swinging',0), -(8038,8038,'staticobjects/light_sources_player_housing_only/dpo_kj_lightsource_iksar_lantern01',0), -(8039,8039,'staticobjects/canopicjars/dpo_cha_iksar_skull_bobbing',0), -(8040,8040,'staticobjects/rugs/dpo_goro_rug_round01',0), -(8041,8041,'staticobjects/coffins_and_sarcophagus/dpo_cha_sarcophagi_ornate',0), -(8042,8042,'staticobjects/rugs/dpo_seb_rug01',0), -(8043,8043,'staticobjects/banners/dpo_char_banner_dizok02',0), -(8044,8044,'staticobjects/statues/dpo_kp_statue_iksar_kneel',0), -(8045,8045,'staticobjects/statues/dpo_vp_statue_sarnak01',0), -(8046,8046,'staticobjects/banners/dpo_cha_banner_iksar_hanging',0), -(8047,8047,'staticobjects/statues/dpo_kp_statue_iksar_standing02',0), -(8048,8048,'staticobjects/chairs/dpo_cha_stool_ornate01',0), -(8049,8049,'soga_appearances/ec/npc/ghost_soga_vl_young_male02_pet',0), -(8050,8050,'creatures/tu/armor_dummy',0), -(8051,8051,'accessories/armor_dummy/armor_dummy_idle',0), -(8052,8052,'accessories/armor_dummy/armor_dummy_female_idle',0), -(8053,8053,'creatures/tu/armor_dummy_female',0), -(8054,8054,'staticobjects/lighting/dpo_goro_obj_lantern03_red_pfx',0), -(8055,8055,'accessories/equipment_display/equipment_display_01',0), -(8056,8056,'accessories/equipment_display/equipment_display_02',0), -(8057,8057,'accessories/equipment_display/equipment_display_03',0), -(8058,8058,'creatures/monsters/willowisp_air_elemental',0), -(8059,8059,'creatures/monsters/willowisp_earth_elemental',0), -(8060,8060,'creatures/monsters/willowisp_fire_elemental',0), -(8061,8061,'creatures/monsters/willowisp_water_elemental',0), -(8062,8062,'accessories/wearable_items/profesion_hats/turtleshell_helm/turtleshell_helm01/head',0), -(8063,8063,'creatures/tu/sarnak_skeleton',0), -(8064,8064,'projectiles/spell_book',0), -(8065,8065,'staticobjects/mirrors/dpo_cha_mirror01_south',0), -(8066,8066,'staticobjects/chairs/dpo_cm_chair_chaise01',0), -(8067,8067,'staticobjects/chairs/dpo_cm_chair_chaise02',0), -(8068,8068,'accessories/wearable_items/cloak/exp03/cloak_dir_01_fur',0), -(8069,8069,'accessories/wearable_items/cloak/exp03/cloak_sq_01_armorer',0), -(8070,8070,'accessories/wearable_items/cloak/exp03/cloak_sq_01_chain',0), -(8071,8071,'accessories/wearable_items/cloak/exp03/cloak_sq_01_hanging_chain',0), -(8072,8072,'accessories/wearable_items/cloak/exp03/cloak_sq_01_leather_fur',0), -(8073,8073,'accessories/wearable_items/cloak/exp03/cloak_sq_01_shreaded',0), -(8074,8074,'accessories/wearable_items/cloak/exp03/cloak_sq_01_weaponsmith',0), -(8075,8075,'accessories/wearable_items/cloak/exp03/cloak_sq_01_woodworker',0), -(8076,8076,'accessories/wearable_items/cloak/exp03/cloak_sq_01_alchemist',0), -(8077,8077,'accessories/wearable_items/cloak/exp03/cloak_sq_01_provisioner',0), -(8078,8078,'accessories/wearable_items/cloak/exp03/cloak_sq_01_sage',0), -(8079,8079,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_plate0cookies01',0), -(8080,8080,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_plate0marrsipan01',0), -(8081,8081,'staticobjects/liveevent/erollisi_objects/errolisi_gold_threeroses01',0), -(8082,8082,'staticobjects/liveevent/erollisi_objects/errolisi_heartpillow_purple_whiteribbon',0), -(8083,8083,'staticobjects/liveevent/erollisi_objects/errolisi_heartpillow_white_redribbon',0), -(8084,8084,'staticobjects/liveevent/erollisi_objects/errolisi_heartpillow_yellow_whiteribbon',0), -(8085,8085,'staticobjects/liveevent/erollisi_objects/errolisi_silver_threeroses01',0), -(8086,8086,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_teddyburynai',0), -(8087,8087,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_purfume_closed01',0), -(8088,8088,'staticobjects/liveevent/erollisi_objects/dpo_erollosi_purfume_open01',0), -(8089,8089,'staticobjects/gears/gnome_mech03_gears_01_dpo',0), -(8090,8090,'accessories/wearable_items/cloak/exp03/cloak_sq_01_carpenter',0), -(8091,8091,'accessories/wearable_items/cloak/exp03/cloak_sq_01_jeweler',0), -(8092,8092,'accessories/wearable_items/cloak/exp03/cloak_sq_01_tailer',0), -(8093,8093,'accessories/armor_dummy/armor_dummy_dwarf_female_idle',0), -(8094,8094,'accessories/armor_dummy/armor_dummy_dwarf_male_idle',0), -(8095,8095,'creatures/tu/armor_dummy_dwarf_female',0), -(8096,8096,'creatures/tu/armor_dummy_dwarf_male',0), -(8097,8097,'accessories/armor_dummy/armor_dummy_froglok_female_idle',0), -(8098,8098,'accessories/armor_dummy/armor_dummy_froglok_male_idle',0), -(8099,8099,'creatures/tu/armor_dummy_froglok_female',0), -(8100,8100,'creatures/tu/armor_dummy_froglok_male',0), -(8101,8101,'accessories/wearable_items/cloak/exp03/cloak_sq_01_beerfest',0), -(8102,8102,'staticobjects/counters/qey_bar_singleplain001_dpo',0), -(8103,8103,'accessories/wieldable_items/weapons/misc/metalpoker',0), -(8104,8104,'accessories/wieldable_items/weapons/staff/woodenhand/woodenhand',0), -(8105,8105,'_exp01/zones/dungeons/poets_palace/objects/drv_lightsource_candles_group01_dpo',0), -(8106,8106,'_exp01/zones/dungeons/poets_palace/objects/djn_pillow_floor_blue_round02_dpo',0), -(8107,8107,'_exp01/zones/dungeons/poets_palace/objects/djn_pillow_floor_blue_square02_dpo',0), -(8108,8108,'_exp01/zones/dungeons/poets_palace/objects/djn_scriptorium_scrollracks_3m_dpo',0), -(8109,8109,'_exp01/zones/dungeons/poets_palace/objects/djn_scrollrack_bookcase_6m_dpo',0), -(8110,8110,'_exp01/zones/dungeons/poets_palace/objects/djn_vase_gold01_dpo',0), -(8111,8111,'_exp01/zones/objects/display_stands/djn_display_stand_platinum',0), -(8112,8112,'accessories/wieldable_items/shields/round_shield/wood_shield/shld_spikedwood_bathezid_shield',0), -(8113,8113,'accessories/wieldable_items/shields/round_shield/wood_shield/shld_spikedwood_sarnak_shield',0), -(8114,8114,'accessories/wieldable_items/shields/round_shield/wood_shield/shld_wood_shield',0), -(8115,8115,'accessories/wieldable_items/shields/buckler_shield/spikedwood_buckler/spikedwood_bathezid_buckler',0), -(8116,8116,'accessories/wieldable_items/shields/buckler_shield/spikedwood_buckler/spikedwood_sarnak_buckler',0), -(8117,8117,'accessories/wieldable_items/shields/buckler_shield/spikedwood_buckler/wood_buckler',0), -(8118,8118,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_cardcase02',0), -(8119,8119,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_drinkcart',0), -(8120,8120,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_foodcart',0), -(8121,8121,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting09_cristanos',0), -(8122,8122,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting10_clockwork',0), -(8123,8123,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting11_mayong',0), -(8124,8124,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting12_musicians',0), -(8125,8125,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting14_vox',0), -(8126,8126,'creatures/tu/froglok_skeleton',0), -(8127,8127,'_exp01/zones/objects/pillows/djn_pillow_floor_bluesquare02_small_dpo',0), -(8128,8128,'creatures/mounts/warg_mount/warg_armor02_spirit',0), -(8129,8129,'creatures/mounts/warg_mount/warg_armor02_fire_spirit',0), -(8130,8130,'staticobjects/liveevent/bristlebane_day/dpo_gigglegibber_crateofcomfort',0), -(8131,8131,'accessories/wearable_items/halloween_masks/mask_fire/head',0), -(8132,8132,'staticobjects/liveevent/brew_day/dpo_brewday_tumpy_tonic',0), -(8133,8133,'staticobjects/liveevent/bristlebane_day/qey_kitchen_ironpotlarge001_dpo',0), -(8134,8134,'staticobjects/promo_items/dpo_vp_treasure_chest01',0), -(8135,8135,'accessories/wearable_items01/_exp00/halloween_masks/mask_fire/head',0), -(8136,8136,'creatures/mounts/warg_mount/warg_armor03',0), -(8137,8137,'accessories/wieldable_items/weapons/talisman/orb/orb001_eyeball',0), -(8138,8138,'accessories/wieldable_items/shields/kite_shield/righteous_barrier_devotion',0), -(8139,8139,'accessories/wieldable_items/shields/buckler_shield/brace_corporeal_darklight',0), -(8140,8140,'accessories/wieldable_items/weapons/dagger/dagger/dagger_deadly_seduction',0), -(8141,8141,'creatures/mounts/warg_mount/warg_armor02_gold',0), -(8142,8142,'creatures/mounts/warg_mount/warg_armor02_silver',0), -(8143,8143,'creatures/tu/froglok_zombie_kunark',0), -(8144,8144,'staticobjects/fires/soh_firepit_houseitem',0), -(8145,8145,'accessories/wieldable_items/weapons/axe/battleaxe/battleaxe_venom',0), -(8146,8146,'accessories/wieldable_items/weapons/talisman/censer/censer001_runic_darkfx',0), -(8147,8147,'accessories/wieldable_items/weapons/talisman/book/book001_runic_poisonfx',0), -(8148,8148,'accessories/wieldable_items/shields/exp03/exp03_mistmoore_shield_cloudfx',0), -(8149,8149,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_zombie_arm_club_animated_fx',0), -(8150,8150,'accessories/wieldable_items/weapons/great_hammer/knotted_club/knotted_club001_runic_bugs',0), -(8151,8151,'accessories/wieldable_items/weapons/exp04/bow/exp04_bow_dragon_bow_spikes_fx',0), -(8152,8152,'accessories/wieldable_items/weapons/exp04/1h_sword/exp04_1hs_hooked_sword_darkfx',0), -(8153,8153,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/skirt',1096), -(8154,8154,'creatures/monsters/gargoyle_bronze',0), -(8155,8155,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_flailcensor_darkfx',0), -(8156,8156,'accessories/wieldable_items/weapons/exp03/1h_sword/exp03_1hs_ornate_elven_rapier_bardfx',0), -(8157,8157,'staticobjects/fires/soh_firepit_houseitem_tranquil',0), -(8158,8158,'_exp05/zones/objects/exp05_dun_veksar/vek_mirror01',0), -(8159,8159,'_exp05/zones/objects/exp05_dun_veksar/golem_head',0), -(8160,8160,'_exp05/zones/objects/exp05_dun_veksar/golem_left_leg',0), -(8161,8161,'_exp05/zones/objects/exp05_dun_veksar/golem_right_leg',0), -(8162,8162,'_exp05/zones/objects/exp05_dun_veksar/golem_torso',0), -(8163,8163,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/chest',1096), -(8164,8164,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/feet',1096), -(8165,8165,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/forearms',1096), -(8166,8166,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/hands',1096), -(8167,8167,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/head',1096), -(8168,8168,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/legs',1096), -(8169,8169,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/legs_noskirt',1096), -(8170,8170,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/shoulders',1096), -(8171,8171,'creatures/tu/fungusman_02_big',0), -(8172,8172,'creatures/tu/fungusman_02_big_white',0), -(8173,8173,'creatures/tu/fungusman_02_burly',0), -(8174,8174,'creatures/tu/fungusman_02_burly_white',0), -(8175,8175,'creatures/tu/fungusman_02_skinny',0), -(8176,8176,'creatures/tu/fungusman_02_skinny_white',0), -(8177,8177,'accessories/wearable_items/magus/common/low/pants_tintable',0), -(8178,8178,'accessories/wearable_items/magus/common/high/chest_tintpants',0), -(8179,8179,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_dragonscale_buckler',0), -(8180,8180,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dragonhilt_dagger_blood',0), -(8181,8181,'accessories/wieldable_items/soga_weapons/unique4/flame_of_truth_02',0), -(8182,8182,'accessories/wearable_items/cloak/exp03/cloak_sq_01_vampire_regalia',0), -(8183,8183,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_sebilisian_metal_shield',0), -(8184,8184,'accessories/wearable_items/cloak/exp03/cloak_sq_01_eye_in_dark',0), -(8185,8185,'ui_fx/fx/systems/environment/shard_of_hate/teleport_vision_shard_of_hate',0), -(8186,8186,'accessories/wearable_items/cloak/exp03/cloak_sq_01_death',0), -(8187,8187,'staticobjects/books/cazic_bookwface001_flat_dpo',0), -(8188,8188,'projectiles/spell_netting',0), -(8189,8189,'creatures/mounts/warg_mount/warg_armor03_albino',0), -(8190,8190,'creatures/mounts/warg_mount/warg_armor03_fire_spirit',0), -(8191,8191,'creatures/mounts/warg_mount/warg_armor03_spotted',0), -(8192,8192,'creatures/mounts/warg_mount/warg_armor03_twotoned',0), -(8193,8193,'creatures/mounts/warg_mount/warg_armor03_spirit',0), -(8194,8194,'staticobjects/weapons/great_spear_ornate001_dpo',0), -(8195,8195,'_exp05/monsters/elemental_wave_dirt',0), -(8196,8196,'_exp05/monsters/elemental_wave_electro',0), -(8197,8197,'_exp05/monsters/elemental_wave_jello',0), -(8198,8198,'_exp05/monsters/elemental_wave_magma',0), -(8199,8199,'_exp05/monsters/elemental_wave_mercury',0), -(8200,8200,'_exp05/monsters/elemental_wave_oil',0), -(8201,8201,'_exp05/monsters/elemental_wave_snow',0), -(8202,8202,'_exp05/monsters/elemental_wave_vomit',0), -(8203,8203,'_exp05/monsters/elemental_wave_water',0), -(8204,8204,'_exp05/monsters/elemental_wave_sand',0), -(8205,8205,'_exp03/zones/exp03_dun_klakanon_craftingdemo/sfm_housing_door_smallbuilding01_dpo',0), -(8206,8206,'_exp03/zones/exp03_dun_klakanon_craftingdemo/sfm_gear_medium02_yellow_dpo',0), -(8207,8207,'_exp03/zones/exp03_dun_klakanon_craftingdemo/sfm_mine_cart_ore01_dpo',0), -(8208,8208,'creatures/tu/gods_anashti_sul',0), -(8209,8209,'accessories/wearable_items/cloak/exp03/cloak_sq_01_anashti_sul',0), -(8210,8210,'creatures/mounts/horse_armor01/horse01_armor01_misty_purple',0), -(8211,8211,'creatures/mounts/horse_armor01/horse01_armor01_nightmare_purple',0), -(8212,8212,'_exp03/zones/objects/kitchen_tools/eu_winebottle_red01',0), -(8213,8213,'staticobjects/harvested/fish/hrvst_fish_shallow_rainbow_koi',0), -(8214,8214,'projectiles/spell_brick',0), -(8215,8215,'_exp05/monsters/elemental_wave_ice',0), -(8216,8216,'_exp05/monsters/elemental_wave_light',0), -(8217,8217,'_exp05/monsters/elemental_wave_magma02',0), -(8218,8218,'_exp05/monsters/elemental_wave_magma03',0), -(8219,8219,'_exp05/monsters/elemental_wave_wisp',0), -(8220,8220,'_exp05/monsters/void_beast_01',0), -(8221,8221,'_exp05/monsters/void_beast_02',0), -(8222,8222,'_exp05/monsters/void_beast_03',0), -(8223,8223,'_exp05/monsters/void_beast_04',0), -(8224,8224,'_exp05/monsters/void_beast_05',0), -(8225,8225,'_exp05/monsters/void_beast_06',0), -(8226,8226,'creatures/mounts/horse_armor01/horse01_armor01_firespirit',0), -(8227,8227,'creatures/mounts/horse_armor01/horse01_armor01_manaspirit',0), -(8228,8228,'_exp05/zones/objects/exp05_dun_nuroga/dun_nuroga_skull_brazier',0), -(8229,8229,'staticobjects/tcg/tcg_boomerang',0), -(8230,8230,'_exp03/zones/objects/crib/eu_crib_rattle',0), -(8231,8231,'accessories/wearable_items/jester_hat/head',0), -(8232,8232,'accessories/wearable_items/profesion_hats/clockwork/clockwork_hat_01/head',0), -(8233,8233,'creatures/tu/valkyrie_greater',0), -(8234,8234,'creatures/tu/valkyrie_icemaiden',0), -(8235,8235,'accessories/wearable_items/_exp08/dragon_armor/leather1_shadow/shoulders_epic',1096), -(8236,8236,'_exp03/zones/objects/door/unrest_door',0), -(8237,8237,'creatures/pets/gigglegibber_crate',0), -(8238,8238,'_exp05/zones/objects/exp05_dun_miragul_upper/glass_orb',0), -(8239,8239,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/skirt',1096), -(8240,8240,'_exp05/zones/objects/exp05_dun_miragul_upper/glass_orb_ped_real',0), -(8241,8241,'staticobjects/clothing/wedding_veil',0), -(8242,8242,'accessories/wearable_items/cloak/exp05/cloak_sq_01_bertoxxulous_01',0), -(8243,8243,'accessories/wearable_items/cloak/exp05/cloak_sq_01_comfort_01',0), -(8244,8244,'accessories/wearable_items/cloak/exp05/cloak_sq_01_fizzlethorpebristlebane',0), -(8245,8245,'accessories/wearable_items/cloak/exp05/cloak_sq_01_generic_floral',0), -(8246,8246,'creatures/tu/skeleton_king_greater_ice',0), -(8247,8247,'staticobjects/kitchen/floor_muffin_plate_dpo',0), -(8248,8248,'staticobjects/kitchen/floor_pie_plate_steaming_dpo',0), -(8249,8249,'staticobjects/kitchen/ornate_fork_dpo',0), -(8250,8250,'staticobjects/kitchen/ornate_knife_dpo',0), -(8251,8251,'staticobjects/kitchen/tableware_wooden_set',0), -(8252,8252,'staticobjects/clothing/wedding_veil_01',0), -(8253,8253,'accessories/wearable_items/cloak/exp05/cloak_sq_01_dark_energy',0), -(8254,8254,'accessories/wearable_items/cloak/exp05/cloak_sq_01_dark_water',0), -(8255,8255,'accessories/wearable_items/cloak/exp05/cloak_sq_01_sludge',0), -(8256,8256,'accessories/wearable_items/cloak/exp05/cloak_sq_01_traveler',0), -(8257,8257,'accessories/wearable_items/cloak/exp05/cloak_sq_01_vile_putridness',0), -(8258,8258,'staticobjects/kitchen/ornate_spoon_dpo',0), -(8259,8259,'staticobjects/books/tcg_book_volume01',0), -(8260,8260,'staticobjects/books/tcg_book_volume02',0), -(8261,8261,'staticobjects/books/tcg_book_volume03',0), -(8262,8262,'staticobjects/books/tcg_book_volume04',0), -(8263,8263,'staticobjects/books/tcg_book_volume05',0), -(8264,8264,'_exp05/monsters/void_storm_tornado',0), -(8265,8265,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_chelsith',0), -(8266,8266,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_dragon',0), -(8267,8267,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_flowingwater',0), -(8268,8268,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_iksar',0), -(8269,8269,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_sarnak',0), -(8270,8270,'accessories/wearable_items/cloak/exp05/cloak_sq_01_anashti_sul_undead',0), -(8271,8271,'creatures/tu/gods_anashti_sul_undead',0), -(8272,8272,'accessories/npc_wearables/fungusman_02_appearances/chest_fungusman_02_armor',0), -(8273,8273,'accessories/npc_wearables/fungusman_02_appearances/chest_fungusman_02_armor_white',0), -(8274,8274,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_flat',0), -(8275,8275,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_flat_white',0), -(8276,8276,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_pointy',0), -(8277,8277,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_pointy_white',0), -(8278,8278,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_round',0), -(8279,8279,'accessories/npc_wearables/fungusman_02_appearances/head_fungusman_02_round_white',0), -(8280,8280,'accessories/wieldable_items/weapons/exp05/1h_void_sword01',0), -(8281,8281,'accessories/wieldable_items/weapons/exp05/1hc_void_axe01',0), -(8282,8282,'accessories/wieldable_items/weapons/exp05/1hc_void_hammer01',0), -(8283,8283,'accessories/wieldable_items/weapons/exp05/2h_void_staff01',0), -(8284,8284,'accessories/wieldable_items/weapons/exp05/void_bow01',0), -(8285,8285,'accessories/wearable_items/cloak/exp05/cloak_sq_01_oathbreaker',0), -(8286,8286,'accessories/wearable_items/cloak/exp05/cloak_sq_01_brellserilis',0), -(8287,8287,'accessories/wearable_items/cloak/exp05/cloak_sq_01_cazicthule',0), -(8288,8288,'accessories/wearable_items/cloak/exp05/cloak_sq_01_innoruuk',0), -(8289,8289,'staticobjects/interiors/scenes/objects_race/dp_objects/exp03_objects/cm_piano_closed01',0), -(8290,8290,'_exp05/monsters/bat_swarm',0), -(8291,8291,'accessories/wearable_items/halloween_masks/mask_evil_fire/head',0), -(8292,8292,'accessories/wearable_items/cloak/exp05/cloak_sq_01_tunare',0), -(8293,8293,'accessories/wearable_items/cloak/exp05/cloak_sq_01_ralloszek',0), -(8294,8294,'accessories/wearable_items/cloak/exp05/cloak_sq_01_tribunal',0), -(8295,8295,'accessories/wearable_items/cloak/exp05/cloak_sq_01_quellious',0), -(8296,8296,'accessories/wearable_items/cloak/exp05/cloak_sq_01_solusekro',0), -(8297,8297,'accessories/wearable_items/cloak/exp05/cloak_sq_01_mithanielmarr',0), -(8298,8298,'accessories/wearable_items/cloak/exp05/cloak_sq_01_karana',0), -(8299,8299,'accessories/wearable_items01/_exp00/halloween_masks/mask_evil_fire/head',0), -(8300,8300,'accessories/wearable_items/cloak/exp05/cloak_sq_01_void_energy',0), -(8301,8301,'creatures/tu/gods_rodcet_nife',0), -(8302,8302,'_exp04/monsters/clay_golem_pet',0), -(8303,8303,'creatures/tu/earth_elem_pet',0), -(8304,8304,'creatures/tu/riverrock_earth_elem_pet',0), -(8305,8305,'_exp03/characters/monsters/golem_magma_pet',0), -(8306,8306,'_exp04/monsters/clay_keeper_pet',0), -(8307,8307,'_exp04/tool_users/golem_jade_pet',0), -(8308,8308,'creatures/tu/obsidian_earth_elem_pet',0), -(8309,8309,'_exp05/monsters/skull_wisp',0), -(8310,8310,'_exp04/zones/objects/sebilis/desk_torch',0), -(8311,8311,'accessories/wieldable_items/weapons/talisman/censer/censer001_runic_cloudfx',0), -(8312,8312,'staticobjects/books/floor_booknarrow002_dpo',0), -(8313,8313,'staticobjects/books/floor_bookwide01_dpo',0), -(8314,8314,'staticobjects/books/floor_bookwide02_dpo',0), -(8315,8315,'staticobjects/books/floor_bookwide03_dpo',0), -(8316,8316,'staticobjects/books/floor_df_book01_dpo',0), -(8317,8317,'staticobjects/books/floor_df_book03_dpo',0), -(8318,8318,'staticobjects/books/floor_df_book04_dpo',0), -(8319,8319,'staticobjects/books/floor_vrsn_book01_dpo',0), -(8320,8320,'staticobjects/books/floor_vrsn_book04_dpo',0), -(8321,8321,'staticobjects/books/floor_vrsn_book05_dpo',0), -(8322,8322,'staticobjects/books/floor_vrsn_book06_dpo',0), -(8323,8323,'staticobjects/banners/dpo_kel_banner_royal01',0), -(8324,8324,'staticobjects/benches/dpo_eu_bench_long02_wcushion',0), -(8325,8325,'staticobjects/benches/dpo_eu_bench_short_wcushion01',0), -(8326,8326,'staticobjects/chairs/dpo_eu_chair_dining03',0), -(8327,8327,'staticobjects/chairs/dpo_eu_chair_dining06',0), -(8328,8328,'staticobjects/chairs/dpo_eu_chair_head_dining01',0), -(8329,8329,'staticobjects/chairs/dpo_eu_couch01',0), -(8330,8330,'staticobjects/chairs/dpo_eu_couch02',0), -(8331,8331,'staticobjects/chairs/dpo_eu_gaming_cardtable01_empty',0), -(8332,8332,'staticobjects/chairs/dpo_eu_stool_round01',0), -(8333,8333,'staticobjects/chairs/dpo_kel_chair_wood02',0), -(8334,8334,'staticobjects/chairs/dpo_kel_tavern_stool01_green',0), -(8335,8335,'staticobjects/counters/dpo_kel_tavern_counter01',0), -(8336,8336,'staticobjects/dividers/dpo_drv_divider_ornate01',0), -(8337,8337,'staticobjects/dividers/dpo_drv_divider_plain01',0), -(8338,8338,'staticobjects/light_sources_player_housing_only/dpo_gf_lightsource_lampppost01',0), -(8339,8339,'staticobjects/light_sources_player_housing_only/dpo_gf_lightsource_wall_flower02',0), -(8340,8340,'staticobjects/light_sources_player_housing_only/dpo_kel_lightsource_chandelier_crystal01',0), -(8341,8341,'staticobjects/light_sources_player_housing_only/dpo_kel_lightsource_wisplantern_wall01',0), -(8342,8342,'staticobjects/musical/dpo_eu_piano_open01',0), -(8343,8343,'staticobjects/plants/dpo_gf_lamppost_flower02',0), -(8344,8344,'staticobjects/rugs/dpo_kel_rug_blue_round01',0), -(8345,8345,'staticobjects/rugs/dpo_kel_rug_green_round02',0), -(8346,8346,'staticobjects/rugs/dpo_kel_rug_leaf',0), -(8347,8347,'staticobjects/shelves/dpo_kel_tavern_shelves01',0), -(8348,8348,'staticobjects/tables/desk_with_book_and_candle_dpo',0), -(8349,8349,'staticobjects/tables/dpo_eu_gaming_cardtable01_empty',0), -(8350,8350,'staticobjects/tables/dpo_eu_gaming_cardtable02',0), -(8351,8351,'staticobjects/tables/dpo_eu_table_bedside01',0), -(8352,8352,'staticobjects/tables/dpo_eu_table_coffee01',0), -(8353,8353,'staticobjects/tables/dpo_eu_table_long01',0), -(8354,8354,'staticobjects/tableware/dpo_kel_tavern_cup02',0), -(8355,8355,'staticobjects/tableware/dpo_kel_tavern_jar_honey01',0), -(8356,8356,'staticobjects/tableware/dpo_kel_tavern_mug02',0), -(8357,8357,'staticobjects/tableware/dpo_kel_tavern_mug03',0), -(8358,8358,'staticobjects/tapestry/dpo_kel_tapestry_starchart01',0), -(8359,8359,'staticobjects/walls/dpo_gf_kel_int_divider_wall01',0), -(8360,8360,'projectiles/spell_barrel',0), -(8361,8361,'_exp05/monsters/book_dervish',0), -(8362,8362,'projectiles/spell_book_trail',0), -(8363,8363,'accessories/wearable_items/leather/common/low/pauldron01_leather_heavy_left',0), -(8364,8364,'accessories/wearable_items/leather/common/low/pauldron01_leather_heavy_right',0), -(8365,8365,'accessories/wearable_items/leather/common/low/shoulders_pauldron01_both',0), -(8366,8366,'accessories/wearable_items/leather/common/low/shoulders_pauldron01_left',0), -(8367,8367,'accessories/wearable_items/leather/common/low/shoulders_pauldron01_right',0), -(8368,8368,'accessories/wearable_items/_exp02/woven_monk/pauldron01_leather_heavy_left',0), -(8369,8369,'accessories/wearable_items/_exp02/woven_monk/pauldron01_leather_heavy_right',0), -(8370,8370,'accessories/wearable_items/_exp02/woven_monk/shoulders_pauldron01_both',0), -(8371,8371,'accessories/wearable_items/_exp02/woven_monk/shoulders_pauldron01_left',0), -(8372,8372,'accessories/wearable_items/_exp02/woven_monk/shoulders_pauldron01_right',0), -(8373,8373,'accessories/wearable_items/_exp03/chain_heroic_pristine/pauldron01_leather_heavy_left',0), -(8374,8374,'accessories/wearable_items/_exp03/chain_heroic_pristine/pauldron01_leather_heavy_right',0), -(8375,8375,'accessories/wearable_items/_exp03/chain_heroic_pristine/shoulders_pauldron01_both',0), -(8376,8376,'accessories/wearable_items/_exp03/chain_heroic_pristine/shoulders_pauldron01_left',0), -(8377,8377,'accessories/wearable_items/_exp03/chain_heroic_pristine/shoulders_pauldron01_right',0), -(8378,8378,'accessories/wearable_items/chain/chain_tint01/pauldron01_leather_heavy_left',0), -(8379,8379,'accessories/wearable_items/chain/chain_tint01/pauldron01_leather_heavy_right',0), -(8380,8380,'accessories/wearable_items/chain/chain_tint01/shoulders_pauldron01_both',0), -(8381,8381,'accessories/wearable_items/chain/chain_tint01/shoulders_pauldron01_left',0), -(8382,8382,'accessories/wearable_items/chain/chain_tint01/shoulders_pauldron01_right',0), -(8383,8383,'accessories/wearable_items/heavy_plate/plain02/pauldron02_vanguard_ridged_left',0), -(8384,8384,'accessories/wearable_items/heavy_plate/plain02/pauldron02_vanguard_ridged_right',0), -(8385,8385,'accessories/wearable_items/heavy_plate/plain02/pauldron03_vanguard_flared_left',0), -(8386,8386,'accessories/wearable_items/heavy_plate/plain02/pauldron03_vanguard_flared_right',0), -(8387,8387,'accessories/wearable_items/heavy_plate/plain02/pauldron04_vanguard_medium_left',0), -(8388,8388,'accessories/wearable_items/heavy_plate/plain02/pauldron04_vanguard_medium_right',0), -(8389,8389,'accessories/wearable_items/heavy_plate/plain02/pauldron05_vanguard_heavy_left',0), -(8390,8390,'accessories/wearable_items/heavy_plate/plain02/pauldron05_vanguard_heavy_right',0), -(8391,8391,'accessories/wearable_items/heavy_plate/plain02/pauldron06_vanguard_horns_left',0), -(8392,8392,'accessories/wearable_items/heavy_plate/plain02/pauldron06_vanguard_horns_right',0), -(8393,8393,'accessories/wearable_items/heavy_plate/plain02/pauldron07_vanguard_gothic_left',0), -(8394,8394,'accessories/wearable_items/heavy_plate/plain02/pauldron07_vanguard_gothic_right',0), -(8395,8395,'accessories/wearable_items/heavy_plate/plain02/pauldron08_vanguard_horns_skulls_left',0), -(8396,8396,'accessories/wearable_items/heavy_plate/plain02/pauldron08_vanguard_horns_skulls_right',0), -(8397,8397,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron02_both',0), -(8398,8398,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron02_left',0), -(8399,8399,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron02_right',0), -(8400,8400,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron03_both',0), -(8401,8401,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron03_left',0), -(8402,8402,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron03_right',0), -(8403,8403,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron04_both',0), -(8404,8404,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron04_left',0), -(8405,8405,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron04_right',0), -(8406,8406,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron05_both',0), -(8407,8407,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron05_left',0), -(8408,8408,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron05_right',0), -(8409,8409,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron06_both',0), -(8410,8410,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron06_left',0), -(8411,8411,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron06_right',0), -(8412,8412,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron07_both',0), -(8413,8413,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron07_left',0), -(8414,8414,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron07_right',0), -(8415,8415,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron08_both',0), -(8416,8416,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron08_left',0), -(8417,8417,'accessories/wearable_items/heavy_plate/plain02/shoulders_pauldron08_right',0), -(8418,8418,'accessories/wearable_items/_exp04/sarnak_vanguard/pauldron02_vanguard_ridged_left',0), -(8419,8419,'accessories/wearable_items/_exp04/sarnak_vanguard/pauldron02_vanguard_ridged_right',0), -(8420,8420,'accessories/wearable_items/_exp04/sarnak_vanguard/shoulders_pauldron02_both',0), -(8421,8421,'accessories/wearable_items/_exp04/sarnak_vanguard/shoulders_pauldron02_left',0), -(8422,8422,'accessories/wearable_items/_exp04/sarnak_vanguard/shoulders_pauldron02_right',0), -(8423,8423,'accessories/wearable_items/_exp02/vanguard_chitin/pauldron02_vanguard_ridged_left',0), -(8424,8424,'accessories/wearable_items/_exp02/vanguard_chitin/pauldron02_vanguard_ridged_right',0), -(8425,8425,'accessories/wearable_items/_exp02/vanguard_chitin/shoulders_pauldron02_both',0), -(8426,8426,'accessories/wearable_items/_exp02/vanguard_chitin/shoulders_pauldron02_left',0), -(8427,8427,'accessories/wearable_items/_exp02/vanguard_chitin/shoulders_pauldron02_right',0), -(8428,8428,'accessories/wearable_items/heavy_plate/plain_white/pauldron03_vanguard_flared_left',0), -(8429,8429,'accessories/wearable_items/heavy_plate/plain_white/pauldron03_vanguard_flared_right',0), -(8430,8430,'accessories/wearable_items/heavy_plate/plain_white/pauldron05_vanguard_heavy_left',0), -(8431,8431,'accessories/wearable_items/heavy_plate/plain_white/pauldron05_vanguard_heavy_right',0), -(8432,8432,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron03_both',0), -(8433,8433,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron03_left',0), -(8434,8434,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron03_right',0), -(8435,8435,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron05_both',0), -(8436,8436,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron05_left',0), -(8437,8437,'accessories/wearable_items/heavy_plate/plain_white/shoulders_pauldron05_right',0), -(8438,8438,'accessories/wearable_items/_exp03/kaladim_vanguard_01/pauldron03_vanguard_flared_left',0), -(8439,8439,'accessories/wearable_items/_exp03/kaladim_vanguard_01/pauldron03_vanguard_flared_right',0), -(8440,8440,'accessories/wearable_items/_exp03/kaladim_vanguard_01/shoulders_pauldron03_both',0), -(8441,8441,'accessories/wearable_items/_exp03/kaladim_vanguard_01/shoulders_pauldron03_left',0), -(8442,8442,'accessories/wearable_items/_exp03/kaladim_vanguard_01/shoulders_pauldron03_right',0), -(8443,8443,'accessories/wearable_items/vanguard/common/low/pauldron03_vanguard_flared_left',0), -(8444,8444,'accessories/wearable_items/vanguard/common/low/pauldron03_vanguard_flared_right',0), -(8445,8445,'accessories/wearable_items/vanguard/common/low/shoulders_pauldron03_both',0), -(8446,8446,'accessories/wearable_items/vanguard/common/low/shoulders_pauldron03_left',0), -(8447,8447,'accessories/wearable_items/vanguard/common/low/shoulders_pauldron03_right',0), -(8448,8448,'accessories/wearable_items/heavy_plate/plain/pauldron03_vanguard_flared_left',0), -(8449,8449,'accessories/wearable_items/heavy_plate/plain/pauldron03_vanguard_flared_right',0), -(8450,8450,'accessories/wearable_items/heavy_plate/plain/shoulders_pauldron03_both',0), -(8451,8451,'accessories/wearable_items/heavy_plate/plain/shoulders_pauldron03_left',0), -(8452,8452,'accessories/wearable_items/heavy_plate/plain/shoulders_pauldron03_right',0), -(8453,8453,'accessories/wearable_items/vanguard/vanguard_tint01/pauldron04_vanguard_medium_left',0), -(8454,8454,'accessories/wearable_items/vanguard/vanguard_tint01/pauldron04_vanguard_medium_right',0), -(8455,8455,'accessories/wearable_items/vanguard/vanguard_tint01/shoulders_pauldron04_both',0), -(8456,8456,'accessories/wearable_items/vanguard/vanguard_tint01/shoulders_pauldron04_left',0), -(8457,8457,'accessories/wearable_items/vanguard/vanguard_tint01/shoulders_pauldron04_right',0), -(8458,8458,'accessories/wearable_items/vanguard/common/high/pauldron06_vanguard_horns_left',0), -(8459,8459,'accessories/wearable_items/vanguard/common/high/pauldron06_vanguard_horns_right',0), -(8460,8460,'accessories/wearable_items/vanguard/common/high/shoulders_pauldron06_both',0), -(8461,8461,'accessories/wearable_items/vanguard/common/high/shoulders_pauldron06_left',0), -(8462,8462,'accessories/wearable_items/vanguard/common/high/shoulders_pauldron06_right',0), -(8463,8463,'accessories/wearable_items/vanguard/uncommon/low/pauldron06_vanguard_horns_left',0), -(8464,8464,'accessories/wearable_items/vanguard/uncommon/low/pauldron06_vanguard_horns_right',0), -(8465,8465,'accessories/wearable_items/vanguard/uncommon/low/shoulders_pauldron06_both',0), -(8466,8466,'accessories/wearable_items/vanguard/uncommon/low/shoulders_pauldron06_left',0), -(8467,8467,'accessories/wearable_items/vanguard/uncommon/low/shoulders_pauldron06_right',0), -(8468,8468,'accessories/wearable_items/heavy_plate/plain02/chest',0), -(8469,8469,'accessories/wearable_items/heavy_plate/plain02/feet',0), -(8470,8470,'accessories/wearable_items/heavy_plate/plain02/forearms',0), -(8471,8471,'accessories/wearable_items/heavy_plate/plain02/hands',0), -(8472,8472,'accessories/wearable_items/heavy_plate/plain02/head',0), -(8473,8473,'accessories/wearable_items/heavy_plate/plain02/left',0), -(8474,8474,'accessories/wearable_items/heavy_plate/plain02/legs',0), -(8475,8475,'accessories/wearable_items/heavy_plate/plain02/legs_noskirt',0), -(8476,8476,'accessories/wearable_items/heavy_plate/plain02/right',0), -(8477,8477,'accessories/wearable_items/heavy_plate/plain02/shoulders',0), -(8478,8478,'accessories/wearable_items/heavy_plate/plain02/shoulders_nopauldrons',0), -(8479,8479,'accessories/wearable_items/heavy_plate/plain02/skirt',0), -(8480,8480,'accessories/wearable_items/heavy_plate/plain02/upperchest',0), -(8481,8481,'accessories/wearable_items/heavy_plate/plain_white/chest',0), -(8482,8482,'accessories/wearable_items/heavy_plate/plain_white/feet',0), -(8483,8483,'accessories/wearable_items/heavy_plate/plain_white/forearms',0), -(8484,8484,'accessories/wearable_items/heavy_plate/plain_white/hands',0), -(8485,8485,'accessories/wearable_items/heavy_plate/plain_white/head',0), -(8486,8486,'accessories/wearable_items/heavy_plate/plain_white/left',0), -(8487,8487,'accessories/wearable_items/heavy_plate/plain_white/legs',0), -(8488,8488,'accessories/wearable_items/heavy_plate/plain_white/legs_noskirt',0), -(8489,8489,'accessories/wearable_items/heavy_plate/plain_white/right',0), -(8490,8490,'accessories/wearable_items/heavy_plate/plain_white/shoulders',0), -(8491,8491,'accessories/wearable_items/heavy_plate/plain_white/shoulders_nopauldrons',0), -(8492,8492,'accessories/wearable_items/heavy_plate/plain_white/skirt',0), -(8493,8493,'accessories/wearable_items/heavy_plate/plain_white/upperchest',0), -(8494,8494,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_both',0), -(8495,8495,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_left',0), -(8496,8496,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_right',0), -(8497,8497,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/chest',0), -(8498,8498,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/feet',0), -(8499,8499,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/forearms',0), -(8500,8500,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/hands',0), -(8501,8501,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/head',0), -(8502,8502,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/left',0), -(8503,8503,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/legs',0), -(8504,8504,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/legs_noskirt',0), -(8505,8505,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/right',0), -(8506,8506,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/shoulders',0), -(8507,8507,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/shoulders_nopauldrons',0), -(8508,8508,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/skirt',0), -(8509,8509,'accessories/wearable_items/heavy_plate/plain_white_sun_symbol/upperchest',0), -(8510,8510,'accessories/wearable_items01/_exp00/heavy_plate/plain02/chest',0), -(8511,8511,'accessories/wearable_items01/_exp00/heavy_plate/plain02/feet',0), -(8512,8512,'accessories/wearable_items01/_exp00/heavy_plate/plain02/forearms',0), -(8513,8513,'accessories/wearable_items01/_exp00/heavy_plate/plain02/hands',0), -(8514,8514,'accessories/wearable_items01/_exp00/heavy_plate/plain02/left',0), -(8515,8515,'accessories/wearable_items01/_exp00/heavy_plate/plain02/legs',0), -(8516,8516,'accessories/wearable_items01/_exp00/heavy_plate/plain02/legs_noskirt',0), -(8517,8517,'accessories/wearable_items01/_exp00/heavy_plate/plain02/right',0), -(8518,8518,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders',0), -(8519,8519,'accessories/wearable_items01/_exp00/heavy_plate/plain02/skirt',0), -(8520,8520,'accessories/wearable_items01/_exp00/heavy_plate/plain02/upperchest',0), -(8521,8521,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/chest',0), -(8522,8522,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/feet',0), -(8523,8523,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/forearms',0), -(8524,8524,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/hands',0), -(8525,8525,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/head',0), -(8526,8526,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/left',0), -(8527,8527,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/legs',0), -(8528,8528,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/legs_noskirt',0), -(8529,8529,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/right',0), -(8530,8530,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders',0), -(8531,8531,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/skirt',0), -(8532,8532,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/upperchest',0), -(8533,8533,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/chest',0), -(8534,8534,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/feet',0), -(8535,8535,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/forearms',0), -(8536,8536,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/hands',0), -(8537,8537,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/head',0), -(8538,8538,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/left',0), -(8539,8539,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/legs',0), -(8540,8540,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/legs_noskirt',0), -(8541,8541,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/right',0), -(8542,8542,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_nopauldrons',0), -(8543,8543,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron03_both',0), -(8544,8544,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron03_left',0), -(8545,8545,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron03_right',0), -(8546,8546,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron05_both',0), -(8547,8547,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron05_left',0), -(8548,8548,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders_pauldron05_right',0), -(8549,8549,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/skirt',0), -(8550,8550,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/upperchest',0), -(8551,8551,'accessories/wearable_items01/_exp00/chain/chain_tint01/shoulders_pauldron01_both',0), -(8552,8552,'accessories/wearable_items01/_exp00/chain/chain_tint01/shoulders_pauldron01_left',0), -(8553,8553,'accessories/wearable_items01/_exp00/chain/chain_tint01/shoulders_pauldron01_right',0), -(8554,8554,'accessories/wearable_items01/_exp00/heavy_plate/plain/shoulders_pauldron03_both',0), -(8555,8555,'accessories/wearable_items01/_exp00/heavy_plate/plain/shoulders_pauldron03_left',0), -(8556,8556,'accessories/wearable_items01/_exp00/heavy_plate/plain/shoulders_pauldron03_right',0), -(8557,8557,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron02_both',0), -(8558,8558,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron02_left',0), -(8559,8559,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron02_right',0), -(8560,8560,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron03_both',0), -(8561,8561,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron03_left',0), -(8562,8562,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron03_right',0), -(8563,8563,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron04_both',0), -(8564,8564,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron04_left',0), -(8565,8565,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron04_right',0), -(8566,8566,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron05_both',0), -(8567,8567,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron05_left',0), -(8568,8568,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron05_right',0), -(8569,8569,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron06_both',0), -(8570,8570,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron06_left',0), -(8571,8571,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron06_right',0), -(8572,8572,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron07_both',0), -(8573,8573,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron07_left',0), -(8574,8574,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron07_right',0), -(8575,8575,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron08_both',0), -(8576,8576,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron08_left',0), -(8577,8577,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_pauldron08_right',0), -(8578,8578,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron03_both',0), -(8579,8579,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron03_left',0), -(8580,8580,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron03_right',0), -(8581,8581,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron05_both',0), -(8582,8582,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron05_left',0), -(8583,8583,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_pauldron05_right',0), -(8584,8584,'accessories/wearable_items01/_exp00/leather/common/low/shoulders_pauldron01_both',0), -(8585,8585,'accessories/wearable_items01/_exp00/leather/common/low/shoulders_pauldron01_left',0), -(8586,8586,'accessories/wearable_items01/_exp00/leather/common/low/shoulders_pauldron01_right',0), -(8587,8587,'accessories/wearable_items01/_exp00/vanguard/common/low/shoulders_pauldron03_both',0), -(8588,8588,'accessories/wearable_items01/_exp00/vanguard/common/low/shoulders_pauldron03_left',0), -(8589,8589,'accessories/wearable_items01/_exp00/vanguard/common/low/shoulders_pauldron03_right',0), -(8590,8590,'accessories/wearable_items01/_exp00/vanguard/common/high/shoulders_pauldron06_both',0), -(8591,8591,'accessories/wearable_items01/_exp00/vanguard/common/high/shoulders_pauldron06_left',0), -(8592,8592,'accessories/wearable_items01/_exp00/vanguard/common/high/shoulders_pauldron06_right',0), -(8593,8593,'accessories/wearable_items01/_exp02/vanguard_chitin/shoulders_pauldron02_both',0), -(8594,8594,'accessories/wearable_items01/_exp02/vanguard_chitin/shoulders_pauldron02_left',0), -(8595,8595,'accessories/wearable_items01/_exp02/vanguard_chitin/shoulders_pauldron02_right',0), -(8596,8596,'accessories/wearable_items01/_exp02/woven_monk/shoulders_pauldron01_both',0), -(8597,8597,'accessories/wearable_items01/_exp02/woven_monk/shoulders_pauldron01_left',0), -(8598,8598,'accessories/wearable_items01/_exp02/woven_monk/shoulders_pauldron01_right',0), -(8599,8599,'accessories/wearable_items01/_exp03/chain_heroic_pristine/shoulders_pauldron01_both',0), -(8600,8600,'accessories/wearable_items01/_exp03/chain_heroic_pristine/shoulders_pauldron01_left',0), -(8601,8601,'accessories/wearable_items01/_exp03/chain_heroic_pristine/shoulders_pauldron01_right',0), -(8602,8602,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/shoulders_pauldron03_both',0), -(8603,8603,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/shoulders_pauldron03_left',0), -(8604,8604,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/shoulders_pauldron03_right',0), -(8605,8605,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_both',0), -(8606,8606,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_left',0), -(8607,8607,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/shoulders_pauldron02_right',0), -(8608,8608,'accessories/wearable_items01/_exp04/sarnak_vanguard/shoulders_pauldron02_both',0), -(8609,8609,'accessories/wearable_items01/_exp04/sarnak_vanguard/shoulders_pauldron02_left',0), -(8610,8610,'accessories/wearable_items01/_exp04/sarnak_vanguard/shoulders_pauldron02_right',0), -(8611,8611,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/shoulders_pauldron06_both',0), -(8612,8612,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/shoulders_pauldron06_left',0), -(8613,8613,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/shoulders_pauldron06_right',0), -(8614,8614,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin02',0), -(8615,8615,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin03',0), -(8616,8616,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin04',0), -(8617,8617,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin05',0), -(8618,8618,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin06',0), -(8619,8619,'_exp03/characters/tool_users/honor_elf/honor_elf_male_paladin07',0), -(8620,8620,'accessories/wieldable_items/misc/pillow01',0), -(8621,8621,'staticobjects/tapestry/dpo_tapestry_design_flames',0), -(8622,8622,'staticobjects/tapestry/runny_standflag01_fire_blue_dpo',0), -(8623,8623,'staticobjects/cauldron/runnyeye_meltingpot_with_eyes_dpo',0), -(8624,8624,'staticobjects/torture_chamber/hanging_evileye_dpo',0), -(8625,8625,'staticobjects/tapestry/dpo_tapestry_design_vampire',0), -(8626,8626,'staticobjects/tapestry/dpo_tapestry_design_death',0), -(8627,8627,'staticobjects/tapestry/dpo_tapestry_design_eyesdark',0), -(8628,8628,'staticobjects/containers/dpo_kel_container_basket02',0), -(8629,8629,'staticobjects/chairs/dpo_kel_chair_wood01',0), -(8630,8630,'staticobjects/tableware/dpo_lt_cup01',0), -(8631,8631,'staticobjects/tableware/dpo_lt_jug01',0), -(8632,8632,'staticobjects/crystals/dpo_kel_crystal_cylinder_growing01',0), -(8633,8633,'staticobjects/pillow/dpo_drv_pillow_floor_round_worn01',0), -(8634,8634,'staticobjects/pillow/dpo_djn_pillow_floor_bluesquare02',0), -(8635,8635,'staticobjects/carcase/dpo_ss_dunebeetle_carapace01',0), -(8636,8636,'staticobjects/tables/dpo_drv_table_end_round01',0), -(8637,8637,'staticobjects/tools/dpo_djn_artist_inkbottle01',0), -(8638,8638,'accessories/wieldable_items/shields/exp05/tribal_shield',0), -(8639,8639,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting13_sporali',0), -(8640,8640,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting15_cyndras',0), -(8641,8641,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting16_greaves',0), -(8642,8642,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting17_bunny',0), -(8643,8643,'staticobjects/tableware/dpo_lt_openbowl01',0), -(8644,8644,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/chest',1096), -(8645,8645,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/feet',1096), -(8646,8646,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/forearms',1096), -(8647,8647,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/hands',1096), -(8648,8648,'creatures/tu/gods_varsoon',0), -(8649,8649,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/shoulders_pauldron04_right',0), -(8650,8650,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/shoulders_pauldron04_left',0), -(8651,8651,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/shoulders_pauldron04_both',0), -(8652,8652,'accessories/wearable_items01/_exp00/profesion_hats/clockwork/clockwork_hat_01/head',0), -(8653,8653,'accessories/wearable_items01/_exp00/heavy_plate/plain02/head',0), -(8654,8654,'accessories/wearable_items01/_exp00/heavy_plate/plain02/shoulders_nopauldrons',0), -(8655,8655,'accessories/wearable_items01/_exp00/heavy_plate/plain_white/shoulders_nopauldrons',0), -(8656,8656,'_exp01/characters/tool_users/genie_male_warterlord',0), -(8657,8657,'ec/pc/darkelf/darkelf_male_vampire',0), -(8658,8658,'ec/pc/darkelf/darkelf_female_vampire',0), -(8659,8659,'accessories/wearable_items/sallet_helmet/heavy_plate_plain/head',0), -(8660,8660,'accessories/wearable_items01/_exp00/sallet_helmet/heavy_plate_plain/head',0), -(8661,8661,'_exp05/tool_users/troll_male_pirate',0), -(8662,8662,'accessories/npc_wearables/pirates/troll_male_pirate_hat',0), -(8663,8663,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/pauldron02_vanguard_ridged_left',0), -(8664,8664,'accessories/wearable_items/_exp03/mistmoore_vanguard_01/pauldron02_vanguard_ridged_right',0), -(8665,8665,'ec/pc/ogre/fire_ogre_male',0), -(8666,8666,'_exp05/zones/objects/exp05_dun_najena_forge/nh_spin_wheel_gold',0), -(8667,8667,'_exp05/zones/objects/exp05_dun_najena_forge/nh_wheel_control_panel',0), -(8668,8668,'creatures/monsters/wolf_shade',0), -(8669,8669,'_exp01/characters/tool_users/water_djinn_master',0), -(8670,8670,'_exp02/characters/monsters/basilisk_ice',0), -(8671,8671,'ec/pc/ogre/green_mist_ogre_female',0), -(8672,8672,'ec/pc/ogre/green_mist_ogre_male',0), -(8673,8673,'staticobjects/weapons/dpo_zombie_club_animated02',0), -(8674,8674,'accessories/wearable_items/heavy_plate/plain02/pauldron08_vanguard_skulls_sarnak_left',0), -(8675,8675,'accessories/wearable_items/heavy_plate/plain02/pauldron08_vanguard_skulls_sarnak_right',0), -(8676,8676,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/chest',0), -(8677,8677,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/feet',0), -(8678,8678,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/forearms',0), -(8679,8679,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/hands',0), -(8680,8680,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/head',0), -(8681,8681,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/left',0), -(8682,8682,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/legs',0), -(8683,8683,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/legs_noskirt',0), -(8684,8684,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/pauldron07_vanguard_gothic_left',0), -(8685,8685,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/pauldron07_vanguard_gothic_right',0), -(8686,8686,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/right',0), -(8687,8687,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/shoulders',0), -(8688,8688,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/shoulders_nopauldrons',0), -(8689,8689,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_both',0), -(8690,8690,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_left',0), -(8691,8691,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_right',0), -(8692,8692,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/skirt',0), -(8693,8693,'accessories/wearable_items/vanguard/vanguard_chitin_fresnel/upperchest',0), -(8694,8694,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/chest',0), -(8695,8695,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/feet',0), -(8696,8696,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/forearms',0), -(8697,8697,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/hands',0), -(8698,8698,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/head',0), -(8699,8699,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/legs',0), -(8700,8700,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/legs_noskirt',0), -(8701,8701,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/right',0), -(8702,8702,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/shoulders',0), -(8703,8703,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/shoulders_nopauldrons',0), -(8704,8704,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_both',0), -(8705,8705,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_left',0), -(8706,8706,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/shoulders_pauldron07_right',0), -(8707,8707,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/skirt',0), -(8708,8708,'accessories/wearable_items01/_exp00/vanguard/vanguard_chitin_fresnel/upperchest',0), -(8709,8709,'creatures/tu/iksar_skeleton__bruiser_01_female',0), -(8710,8710,'creatures/tu/iksar_skeleton__mage_01_female',0), -(8711,8711,'creatures/tu/iksar_skeleton_female',0), -(8712,8712,'creatures/tu/iksar_skeleton_mage_01',0), -(8713,8713,'creatures/tu/iksar_skeleton_miniboss_01',0), -(8714,8714,'creatures/tu/iksar_skeleton_warrior_01',0), -(8715,8715,'creatures/tu/iksar_skeleton_warrior_01_female',0), -(8716,8716,'creatures/tu/iksar_skeleton_warrior_02',0), -(8717,8717,'creatures/tu/iksar_skeleton_warrior_02_female',0), -(8718,8718,'creatures/tu/iksar_skeleton_warrior_03',0), -(8719,8719,'accessories/wearable_items/sallet_helmet/vanguard_chitin_fresnel/head',0), -(8720,8720,'staticobjects/liveevent/frostfell/dpo_apple_pie',0), -(8721,8721,'staticobjects/liveevent/frostfell/dpo_apple_pie2',0), -(8722,8722,'staticobjects/liveevent/frostfell/dpo_bauble_blue01',0), -(8723,8723,'staticobjects/liveevent/frostfell/dpo_bauble_glass_blue01',0), -(8724,8724,'staticobjects/liveevent/frostfell/dpo_bauble_glass_green01',0), -(8725,8725,'staticobjects/liveevent/frostfell/dpo_bauble_glass_red01',0), -(8726,8726,'staticobjects/liveevent/frostfell/dpo_bauble_gold01',0), -(8727,8727,'staticobjects/liveevent/frostfell/dpo_bauble_green01',0), -(8728,8728,'staticobjects/liveevent/frostfell/dpo_bauble_red01',0), -(8729,8729,'staticobjects/liveevent/frostfell/dpo_bauble_silver01',0), -(8730,8730,'staticobjects/liveevent/frostfell/dpo_candle_darkver_black01',0), -(8731,8731,'staticobjects/liveevent/frostfell/dpo_candle_darkver_black02',0), -(8732,8732,'staticobjects/liveevent/frostfell/dpo_candle_darkver_floating01',0), -(8733,8733,'staticobjects/liveevent/frostfell/dpo_candle_darkver_purple01',0), -(8734,8734,'staticobjects/liveevent/frostfell/dpo_candle_darkver_purple02',0), -(8735,8735,'staticobjects/liveevent/frostfell/dpo_candlegroup_darkver_greenblack',0), -(8736,8736,'staticobjects/liveevent/frostfell/dpo_candlegroup_darkver_greensilver',0), -(8737,8737,'staticobjects/liveevent/frostfell/dpo_candlegroup_darkver_purpleblack',0), -(8738,8738,'staticobjects/liveevent/frostfell/dpo_candlegroup_darkver_purplesilver',0), -(8739,8739,'staticobjects/liveevent/frostfell/dpo_ham01',0), -(8740,8740,'staticobjects/liveevent/frostfell/dpo_pastries01',0), -(8741,8741,'staticobjects/liveevent/frostfell/dpo_present_darkver_black_big',0), -(8742,8742,'staticobjects/liveevent/frostfell/dpo_present_darkver_black_medium',0), -(8743,8743,'staticobjects/liveevent/frostfell/dpo_present_darkver_leather_cracked_large',0), -(8744,8744,'staticobjects/liveevent/frostfell/dpo_present_darkver_leather_group01',0), -(8745,8745,'staticobjects/liveevent/frostfell/dpo_present_darkver_leather_patched_medium',0), -(8746,8746,'staticobjects/liveevent/frostfell/dpo_present_darkver_leather_small',0), -(8747,8747,'staticobjects/liveevent/frostfell/dpo_present_darkver_purple_big',0), -(8748,8748,'staticobjects/liveevent/frostfell/dpo_present_darkver_purple_group01',0), -(8749,8749,'staticobjects/liveevent/frostfell/dpo_present_darkver_purple_small',0), -(8750,8750,'staticobjects/liveevent/frostfell/dpo_sack_of_coal01',0), -(8751,8751,'staticobjects/liveevent/frostfell/dpo_snowflake01',0), -(8752,8752,'staticobjects/liveevent/frostfell/dpo_snowflake01_rotate',0), -(8753,8753,'staticobjects/liveevent/frostfell/dpo_snowflake02',0), -(8754,8754,'staticobjects/liveevent/frostfell/dpo_snowflake02_rotate',0), -(8755,8755,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_female_purple',0), -(8756,8756,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_female_warg_spotted',0), -(8757,8757,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_female_warg_striped',0), -(8758,8758,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_green_elven',0), -(8759,8759,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_green_elven_female',0), -(8760,8760,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_leathercracked',0), -(8761,8761,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_leatherpatch',0), -(8762,8762,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_purple_large',0), -(8763,8763,'staticobjects/liveevent/frostfell/dpo_stocking_darkver_purple_small',0), -(8764,8764,'staticobjects/liveevent/frostfell/dpo_wallcandles01_darkver_gold',0), -(8765,8765,'staticobjects/liveevent/frostfell/dpo_wallcandles01_darkver_iron',0), -(8766,8766,'staticobjects/liveevent/frostfell/dpo_wallcandles01_darkver_silver',0), -(8767,8767,'staticobjects/liveevent/halloween/dpo_pumpkin_pie',0), -(8768,8768,'_exp05/tool_users/lich_knight',0), -(8769,8769,'_exp05/tool_users/lich_mage_01',0), -(8770,8770,'_exp05/tool_users/lich_mage_02',0), -(8771,8771,'_exp05/tool_users/lich_specter_01',0), -(8772,8772,'_exp05/tool_users/lich_specter_02',0), -(8773,8773,'_exp05/tool_users/lich_wizard',0), -(8774,8774,'_exp04/monsters/clay_golem_water',0), -(8775,8775,'creatures/monsters/rumbler_water',0), -(8776,8776,'accessories/wieldable_items/weapons/great_sword/greatsword/greatsword002_runic_ice',0), -(8777,8777,'accessories/wieldable_items/weapons/sword/long_sword/long_sword001_runic_ice',0), -(8778,8778,'accessories/wieldable_items/weapons/great_axe/large_dwarf_axe/large_dwarf_axe_ice',0), -(8779,8779,'accessories/wieldable_items/weapons/hammer/mace/mace01_runic_ice',0), -(8780,8780,'accessories/wieldable_items/weapons/great_hammer/war_hammer/war_hammer001_runic_ice',0), -(8781,8781,'accessories/wieldable_items/weapons/axe/waraxe/waraxe002_runic_ice',0), -(8782,8782,'creatures/tu/froglok_kunark_king',0), -(8783,8783,'staticobjects/crates/floor_crate_darkelf_pile',0), -(8784,8784,'creatures/tu/froglok_undead_guard',0), -(8785,8785,'_exp05/monsters/animatedhand_01',0), -(8786,8786,'_exp05/monsters/animatedhand_01_bracers',0), -(8787,8787,'_exp05/monsters/animatedhand_02',0), -(8788,8788,'_exp05/monsters/animatedhand_02_bracers',0), -(8789,8789,'staticobjects/liveevent/erollisi_objects/vase_with_gold_roses',0), -(8790,8790,'staticobjects/liveevent/erollisi_objects/vase_with_red_roses',0), -(8791,8791,'staticobjects/urns/fprt_vase_glass01_dpo',0), -(8792,8792,'accessories/wearable_items01/_exp00/sallet_helmet/vanguard_chitin_fresnel/head',0), -(8793,8793,'accessories/wieldable_items/weapons/staff/anashti_sul_staff/anashti_sul_staff',0), -(8794,8794,'accessories/wieldable_items/weapons/staff/anashti_sul_staff/anashti_sul_staff_undead',0), -(8795,8795,'staticobjects/dressers/floor_mayong_dresser',0), -(8796,8796,'staticobjects/beds/floor_mayong_bed',0), -(8797,8797,'staticobjects/dressers/floor_mayong_desk',0), -(8798,8798,'staticobjects/statues/female_suit_of_armor',0), -(8799,8799,'staticobjects/chairs/floor_chair_mayong_desk',0), -(8800,8800,'staticobjects/chairs/floor_couch_mayong_blue_double',0), -(8801,8801,'staticobjects/chairs/floor_couch_mayong_blue_single',0), -(8802,8802,'staticobjects/chairs/floor_couch_mayong_gold_double',0), -(8803,8803,'staticobjects/chairs/floor_couch_mayong_gold_single',0), -(8804,8804,'staticobjects/bookcases/floor_mayong_bookcase',0), -(8805,8805,'staticobjects/beds/floor_bed_mayong_blue',0), -(8806,8806,'staticobjects/beds/floor_bed_mayong_purple',0), -(8807,8807,'staticobjects/brazier/floor_basin',0), -(8808,8808,'staticobjects/dressers/floor_mayong_dresser02',0), -(8809,8809,'staticobjects/weapons/dpo_axe_curved_handle_plain',0), -(8810,8810,'staticobjects/weapons/dpo_battleaxe_uncom',0), -(8811,8811,'staticobjects/weapons/dpo_battleaxe_uncom3_dwarven',0), -(8812,8812,'staticobjects/weapons/dpo_cobra_hatchet_plain',0), -(8813,8813,'staticobjects/weapons/dpo_crescentaxe_uncom',0), -(8814,8814,'staticobjects/weapons/dpo_executioners_axe',0), -(8815,8815,'staticobjects/weapons/dpo_executioners_axe_com',0), -(8816,8816,'staticobjects/weapons/dpo_executioners_cleaver',0), -(8817,8817,'staticobjects/weapons/dpo_pickaxe_uncommon1',0), -(8818,8818,'_exp05/monsters/dire_bear01_warmor01',0), -(8819,8819,'_exp05/monsters/dire_bear01_warmor02',0), -(8820,8820,'_exp05/monsters/dire_bear01_wsaddle',0), -(8821,8821,'_exp05/monsters/dire_bear01_wsaddle_armor01',0), -(8822,8822,'_exp05/monsters/dire_bear01_wsaddle_armor02',0), -(8823,8823,'_exp05/monsters/dire_bear02_warmor01',0), -(8824,8824,'_exp05/monsters/dire_bear02_warmor02',0), -(8825,8825,'_exp05/monsters/dire_bear02_wsaddle',0), -(8826,8826,'_exp05/monsters/dire_bear02_wsaddle_armor01',0), -(8827,8827,'_exp05/monsters/dire_bear02_wsaddle_armor02',0), -(8828,8828,'_exp05/monsters/dire_bear03_warmor01',0), -(8829,8829,'_exp05/monsters/dire_bear03_warmor02',0), -(8830,8830,'_exp05/monsters/dire_bear03_wsaddle',0), -(8831,8831,'_exp05/monsters/dire_bear03_wsaddle_armor01',0), -(8832,8832,'_exp05/monsters/dire_bear03_wsaddle_armor02',0), -(8833,8833,'_exp05/monsters/dire_bear04_warmor01',0), -(8834,8834,'_exp05/monsters/dire_bear04_warmor02',0), -(8835,8835,'_exp05/monsters/dire_bear04_wsaddle',0), -(8836,8836,'_exp05/monsters/dire_bear04_wsaddle_armor01',0), -(8837,8837,'_exp05/monsters/dire_bear04_wsaddle_armor02',0), -(8838,8838,'_exp05/tool_users/troll_female_pirate',0), -(8839,8839,'accessories/wearable_items01/_exp00/magus/common/low/pants_tintable',0), -(8840,8840,'accessories/wearable_items01/_exp00/magus/common/high/chest_tintpants',0), -(8841,8841,'staticobjects/transports/carriage',0), -(8842,8842,'accessories/wieldable_items/weapons/exp03/1h_pierce/exp03_1hp_unicorn_horn_dagger_ice',0), -(8843,8843,'_exp05/monsters/animatedhand_03',0), -(8844,8844,'_exp05/monsters/animatedhand_03_bracers',0), -(8845,8845,'_exp05/zones/objects/exp05_dun_mistmoore_repository/projector_base',0), -(8846,8846,'_exp05/zones/objects/exp05_dun_mistmoore_repository/projector_coin',0), -(8847,8847,'creatures/monsters/drake_fire',0), -(8848,8848,'staticobjects/chairs/dpo_djn_chair_artiststool_brass01',0), -(8849,8849,'staticobjects/chairs/dpo_djn_chair_high_brass01',0), -(8850,8850,'staticobjects/dressers/dpo_kel_dresser01',0), -(8851,8851,'staticobjects/pillow/dpo_djn_pillow_floor_redround02',0), -(8852,8852,'staticobjects/tables/dpo_djn_table_bedside02_brass01',0), -(8853,8853,'staticobjects/tables/dpo_drv_bench_brass_ornate01',0), -(8854,8854,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/head',1096), -(8855,8855,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/legs',1096), -(8856,8856,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/legs_noskirt',1096), -(8857,8857,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/head',0), -(8858,8858,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/straight_crest_shiny',0), -(8859,8859,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/transverse_crest_shiny',0), -(8860,8860,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/shoulders',1096), -(8861,8861,'accessories/wearable_items/_exp08/dragon_armor/leather2_green/shoulders_epic',1096), -(8862,8862,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/skirt',1096), -(8863,8863,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/head',0), -(8864,8864,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/straight_crest_shiny',0), -(8865,8865,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/chest',1096), -(8866,8866,'ec/pc/cyclops/cyclops_male',0), -(8867,8867,'ec/pc/cyclops/cyclops_male_fire',0), -(8868,8868,'accessories/wearable_items/cloak/exp05/cloak_void_01',0), -(8869,8869,'_exp05/monsters/dire_bear01',0), -(8870,8870,'_exp05/monsters/dire_bear02',0), -(8871,8871,'_exp05/monsters/dire_bear03',0), -(8872,8872,'_exp05/monsters/dire_bear04',0), -(8873,8873,'creatures/pets/pet_rock01',0), -(8874,8874,'creatures/pets/pet_rock02',0), -(8875,8875,'creatures/pets/pet_rock03',0), -(8876,8876,'creatures/pets/pet_rock04',0), -(8877,8877,'creatures/pets/pet_rock05',0), -(8878,8878,'creatures/pets/pet_rock01_copperspots',0), -(8879,8879,'creatures/pets/pet_rock01_purplespots',0), -(8880,8880,'creatures/pets/pet_rock02_copperspots',0), -(8881,8881,'creatures/pets/pet_rock02_purplespots',0), -(8882,8882,'creatures/pets/pet_rock03_copperspots',0), -(8883,8883,'creatures/pets/pet_rock03_purplespots',0), -(8884,8884,'creatures/pets/pet_rock04_copperspots',0), -(8885,8885,'creatures/pets/pet_rock04_purplespots',0), -(8886,8886,'creatures/pets/pet_rock05_coppespots',0), -(8887,8887,'creatures/pets/pet_rock05_purplespots',0), -(8888,8888,'accessories/wearable_items/cloak/exp05/cloak_sq_01_beer_stained_01',0), -(8889,8889,'creatures/monsters/mantaray_shadow',0), -(8890,8890,'_exp05/tool_users/lich_shadow_01',0), -(8891,8891,'_exp05/tool_users/lich_shadow_02',0), -(8892,8892,'_exp05/tool_users/lich_knight_ghost',0), -(8893,8893,'_exp05/tool_users/lich_shadow_03',0), -(8894,8894,'_exp05/tool_users/lich_shadow_04',0), -(8895,8895,'accessories/npc_wearables/voidman_armor/voidman_chest_01',0), -(8896,8896,'accessories/npc_wearables/voidman_armor/voidman_head_01',0), -(8897,8897,'accessories/npc_wearables/voidman_armor/voidman_head_02',0), -(8898,8898,'accessories/npc_wearables/voidman_armor/voidman_head_03',0), -(8899,8899,'accessories/npc_wearables/voidman_armor/voidman_head_04',0), -(8900,8900,'accessories/npc_wearables/voidman_armor/voidman_legs_01',0), -(8901,8901,'accessories/npc_wearables/voidman_armor/voidman_legs_02',0), -(8902,8902,'accessories/npc_wearables/voidman_armor/voidman_legs_03',0), -(8903,8903,'accessories/npc_wearables/voidman_armor/voidman_legs_04',0), -(8904,8904,'accessories/npc_wearables/voidman_armor/voidman_legs_06',0), -(8905,8905,'accessories/npc_wearables/voidman_armor/voidman_shoulders_01',0), -(8906,8906,'accessories/npc_wearables/voidman_armor/voidman_shoulders_02',0), -(8907,8907,'accessories/npc_wearables/voidman_armor/voidman_shoulders_03',0), -(8908,8908,'accessories/npc_wearables/voidman_armor/voidman_shoulders_04',0), -(8909,8909,'accessories/npc_wearables/voidman_armor/runes/all_orbs',0), -(8910,8910,'accessories/npc_wearables/voidman_armor/runes/all_runes',0), -(8911,8911,'accessories/npc_wearables/voidman_armor/runes/orb01',0), -(8912,8912,'accessories/npc_wearables/voidman_armor/runes/orb02',0), -(8913,8913,'accessories/npc_wearables/voidman_armor/runes/orb03',0), -(8914,8914,'accessories/npc_wearables/voidman_armor/runes/orb04',0), -(8915,8915,'accessories/npc_wearables/voidman_armor/runes/orb05',0), -(8916,8916,'accessories/npc_wearables/voidman_armor/runes/orb06',0), -(8917,8917,'accessories/npc_wearables/voidman_armor/runes/rune01',0), -(8918,8918,'accessories/npc_wearables/voidman_armor/runes/rune02',0), -(8919,8919,'accessories/npc_wearables/voidman_armor/runes/rune03',0), -(8920,8920,'accessories/npc_wearables/voidman_armor/runes/rune04',0), -(8921,8921,'accessories/npc_wearables/voidman_armor/runes/rune05',0), -(8922,8922,'accessories/npc_wearables/voidman_armor/runes/rune06',0), -(8923,8923,'_exp05/tool_users/voidman',0), -(8924,8924,'_exp05/tool_users/voidman_commoner_01',0), -(8925,8925,'_exp05/tool_users/voidman_commoner_02',0), -(8926,8926,'_exp05/tool_users/voidman_mage_01',0), -(8927,8927,'_exp05/tool_users/voidman_mage_02',0), -(8928,8928,'_exp05/tool_users/voidman_warrior_01',0), -(8929,8929,'_exp05/tool_users/voidman_warrior_02',0), -(8930,8930,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_no_crest',0), -(8931,8931,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_straight_crest',0), -(8932,8932,'accessories/wearable_items/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_transverse_crest',0), -(8933,8933,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_no_crest',0), -(8934,8934,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_straight_crest',0), -(8935,8935,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/feet',1096), -(8936,8936,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_dock_dpo',0), -(8937,8937,'_exp01/characters/tool_users/specter_shade',0), -(8938,8938,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/transverse_crest_shiny',0), -(8939,8939,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/shiny/centurion_helmet_shiny_head_transverse_crest',0), -(8940,8940,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/centurion_helmet_plain01_head_no_crest',0), -(8941,8941,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/centurion_helmet_plain01_head_straight_crest',0), -(8942,8942,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/centurion_helmet_plain01_head_transverse_crest',0), -(8943,8943,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/head',0), -(8944,8944,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/straight_crest_plain01',0), -(8945,8945,'accessories/wearable_items/profesion_hats/centurion_helm/plain01/transverse_crest_plain01',0), -(8946,8946,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/centurion_helmet_plain01_head_no_crest',0), -(8947,8947,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/centurion_helmet_plain01_head_straight_crest',0), -(8948,8948,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/centurion_helmet_plain01_head_transverse_crest',0), -(8949,8949,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/head',0), -(8950,8950,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/straight_crest_plain01',0), -(8951,8951,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/plain_01/transverse_crest_plain01',0), -(8952,8952,'staticobjects/kitchen/spoon_wall_dpo',0), -(8953,8953,'_exp05/tool_users/ogre_male_pirate',0), -(8954,8954,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_side_supports01_dpo',0), -(8955,8955,'ec/pc/troll/troll_female_void',0), -(8956,8956,'ec/pc/troll/troll_male_void',0), -(8957,8957,'creatures/monsters/thoughtbleeder_shade',0), -(8958,8958,'creatures/tu/illusionary_soldier_void',0), -(8959,8959,'_exp05/tool_users/grummus_01',0), -(8960,8960,'accessories/wearable_items/profesion_hats/proffiddlewiz_cap/head',0), -(8961,8961,'accessories/wearable_items01/_exp00/profesion_hats/miners_helm/head',0), -(8962,8962,'accessories/wearable_items/profesion_hats/miners_helm/head',0), -(8963,8963,'accessories/wieldable_items/weapons/exp05/shld_nurgg_shield',0), -(8964,8964,'accessories/wieldable_items/weapons/exp05/exp05_1hs_kruzz_sword',0), -(8965,8965,'accessories/wieldable_items/weapons/exp05/exp05_1hp_asharae_dagger',0), -(8966,8966,'staticobjects/guildhall/gh_loot_cm_coffin_mistmoore01',0), -(8967,8967,'staticobjects/guildhall/gh_loot_darathar_head_floor',0), -(8968,8968,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/forearms',1096), -(8969,8969,'staticobjects/guildhall/gh_loot_gnoll_head_floor',0), -(8970,8970,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/hands',1096), -(8971,8971,'staticobjects/guildhall/gh_loot_godking_anuk01',0), -(8972,8972,'staticobjects/guildhall/gh_loot_tarinax_head_floor',0), -(8973,8973,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/head',1096), -(8974,8974,'staticobjects/guildhall/gh_loot_venekor_head_floor',0), -(8975,8975,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/legs',1096), -(8976,8976,'staticobjects/guildhall/gh_loot_vox_head_floor',0), -(8977,8977,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/legs_noskirt',1096), -(8978,8978,'staticobjects/guildhall/fprt_obj_landmarkstatue01',0), -(8979,8979,'staticobjects/guildhall/fprt_obj_squarestatue01',0), -(8980,8980,'staticobjects/guildhall/qey_obj_landmarkstatue01',0), -(8981,8981,'staticobjects/guildhall/qey_obj_squarestatue01',0), -(8982,8982,'_exp05/zones/objects/exp05_dun_mistmoore_repository/projector_complete',0), -(8983,8983,'accessories/wieldable_items/weapons/exp05/exp05_1hc_eylee_drum',0), -(8984,8984,'accessories/wieldable_items/weapons/exp05/exp05_1hs_claymore_bayle',0), -(8985,8985,'accessories/wieldable_items/weapons/exp05/exp05_bow_illisia_bow',0), -(8986,8986,'accessories/wieldable_items/shields/tower_shield/marrowguts_blocker/marrowguts_blocker',0), -(8987,8987,'accessories/wearable_items/crown_of_tearis/head',0), -(8988,8988,'accessories/wearable_items/crown_of_tearis/head_crown_unbroken',0), -(8989,8989,'accessories/wearable_items01/_exp00/crown_of_tearis/head',0), -(8990,8990,'accessories/wearable_items01/_exp00/crown_of_tearis/head_crown_unbroken',0), -(8991,8991,'accessories/wieldable_items/weapons/exp05/exp05_1hc_katluk_censor',0), -(8992,8992,'accessories/wearable_items/cloak/exp05/cloak_sq_01_roadyle_mage',0), -(8993,8993,'_exp05/tool_users/proto_myrdal_01',0), -(8994,8994,'staticobjects/racks/winerack_assembly_dpo',0), -(8995,8995,'accessories/wearable_items/profesion_hats/centurion_helm/fire_crest/centurion_helmet_shiny_head_straight_fire_crest',0), -(8996,8996,'accessories/wearable_items/profesion_hats/centurion_helm/fire_crest/centurion_helmet_shiny_head_transverse_fire_crest',0), -(8997,8997,'accessories/wearable_items/profesion_hats/centurion_helm/fire_crest/straight_fire_crest_shiny',0), -(8998,8998,'accessories/wearable_items/profesion_hats/centurion_helm/fire_crest/transverse_fire_crest_shiny',0), -(8999,8999,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/fire_crest/centurion_helmet_shiny_head_straight_fire_crest',0), -(9000,9000,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/fire_crest/centurion_helmet_shiny_head_transverse_fire_crest',0), -(9001,9001,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/fire_crest/straight_fire_crest_shiny',0), -(9002,9002,'accessories/wearable_items01/_exp00/profesion_hats/centurion_helm/fire_crest/transverse_fire_crest_shiny',0), -(9003,9003,'staticobjects/dressers/dpo_kel_container_merch_acorn02',0), -(9004,9004,'accessories/wieldable_items/shields/exp05/ethernaut_shield',0), -(9005,9005,'creatures/tu/nightbloodwarrior_shade',0), -(9006,9006,'_exp05/zones/objects/exp05_dun_mistmoore_manor/man_portrait_big_goldblack',0), -(9007,9007,'_exp05/tool_users/lich_light_spirit',0), -(9008,9008,'_exp05/tool_users/lich_specter_02_negativelight',0), -(9009,9009,'accessories/wearable_items/cloak/exp05/cloak_sq_01_ethernaut',0), -(9010,9010,'creatures/mounts/carpet_ethernaut',0), -(9011,9011,'_exp05/zones/objects/exp05_dun_miragul_shard/miragul_obj_crystal',0), -(9012,9012,'staticobjects/tapestry/dpo_tapestry_beer_stained_fan_faire_2008',0), -(9013,9013,'accessories/npc_wearables/dire_bear_armor/direbear_armor01_chest',0), -(9014,9014,'accessories/npc_wearables/dire_bear_armor/direbear_armor01_hands',0), -(9015,9015,'accessories/npc_wearables/dire_bear_armor/direbear_armor01_head',0), -(9016,9016,'accessories/npc_wearables/dire_bear_armor/direbear_armor01_legs',0), -(9017,9017,'accessories/npc_wearables/dire_bear_armor/direbear_armor01_shoulders',0), -(9018,9018,'accessories/npc_wearables/dire_bear_armor/direbear_armor02_chest',0), -(9019,9019,'accessories/npc_wearables/dire_bear_armor/direbear_armor02_hands',0), -(9020,9020,'accessories/npc_wearables/dire_bear_armor/direbear_armor02_head',0), -(9021,9021,'accessories/npc_wearables/dire_bear_armor/direbear_armor02_legs',0), -(9022,9022,'accessories/npc_wearables/dire_bear_armor/direbear_armor02_shoulders',0), -(9023,9023,'accessories/npc_wearables/dire_bear_armor/direbear_saddle01_chest',0), -(9024,9024,'creatures/mounts/horse_armor01/horse01_armor01_shadow',0), -(9025,9025,'ec/npc/skeletonorc_shadow',0), -(9026,9026,'ec/npc/skeletonorc_shadow_negativelight',0), -(9027,9027,'creatures/tu/nightbloodwarrior_shade_negativelight',0), -(9028,9028,'creatures/tu/skeleton_king_greater_shade_negativelight',0), -(9029,9029,'creatures/tu/froglok_skeleton_redeyes',0), -(9030,9030,'_exp01/characters/monsters/harpy_raven',0), -(9031,9031,'creatures/mounts/horse_saddle_bags_01/horse01_sadle_bags_01_appoloosa',0), -(9032,9032,'creatures/mounts/horse_saddle_bags_01/horse01_sadle_bags_01_palomino',0), -(9033,9033,'creatures/mounts/horse_saddle_bags_01/horse01_sadle_bags_01_solid',0), -(9034,9034,'creatures/monsters/dervish_glass_tintable',0), -(9035,9035,'ec/pc/human/human_female_ghost_loop',0), -(9036,9036,'ec/pc/human/human_male_ghost_loop',0), -(9037,9037,'creatures/monsters/gargoyle_shade',0), -(9038,9038,'_exp05/tool_users/gynok_moltor_shade',0), -(9039,9039,'staticobjects/tcg/tcg_tempest_teacup',0), -(9040,9040,'accessories/wearable_items/_exp05/guk_heavycloth/chest',0), -(9041,9041,'accessories/wearable_items/_exp05/guk_heavycloth/feet',0), -(9042,9042,'accessories/wearable_items/_exp05/guk_heavycloth/forearms',0), -(9043,9043,'accessories/wearable_items/_exp05/guk_heavycloth/hands',0), -(9044,9044,'accessories/wearable_items/_exp05/guk_heavycloth/legs',0), -(9045,9045,'accessories/wearable_items/_exp05/guk_heavycloth/shoulders',0), -(9046,9046,'accessories/wearable_items/_exp05/guk_leather/chest',0), -(9047,9047,'accessories/wearable_items/_exp05/guk_leather/feet',0), -(9048,9048,'accessories/wearable_items/_exp05/guk_leather/forearms',0), -(9049,9049,'accessories/wearable_items/_exp05/guk_leather/hands',0), -(9050,9050,'accessories/wearable_items/_exp05/guk_leather/legs',0), -(9051,9051,'accessories/wearable_items/_exp05/guk_leather/legs_noskirt',0), -(9052,9052,'accessories/wearable_items/_exp05/guk_leather/shoulders',0), -(9053,9053,'accessories/wearable_items/_exp05/guk_leather/skirt',0), -(9054,9054,'accessories/wearable_items/_exp05/guk_vanguard/chest',0), -(9055,9055,'accessories/wearable_items/_exp05/guk_vanguard/feet',0), -(9056,9056,'accessories/wearable_items/_exp05/guk_vanguard/forearms',0), -(9057,9057,'accessories/wearable_items/_exp05/guk_vanguard/hands',0), -(9058,9058,'accessories/wearable_items/_exp05/guk_vanguard/legs',0), -(9059,9059,'accessories/wearable_items/_exp05/guk_vanguard/legs_noskirt',0), -(9060,9060,'accessories/wearable_items/_exp05/guk_vanguard/right',0), -(9061,9061,'accessories/wearable_items/_exp05/guk_vanguard/shoulders',0), -(9062,9062,'accessories/wearable_items/_exp05/guk_vanguard/shoulders_nopauldrons',0), -(9063,9063,'accessories/wearable_items/_exp05/guk_vanguard/skirt',0), -(9064,9064,'_exp05/tool_users/troll_female_pirate_skimpy',0), -(9065,9065,'_exp05/tool_users/troll_male_pirate_pegleg',0), -(9066,9066,'staticobjects/guildhall/majdul_derv_orrey01',0), -(9067,9067,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_stone_bench_01',0), -(9068,9068,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_stone_bench_02',0), -(9069,9069,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_stone_table_01',0), -(9070,9070,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_stone_table_long_01',0), -(9071,9071,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_canopic_jar_01',0), -(9072,9072,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_bar_counter_broken_01',0), -(9073,9073,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_bar_counter_broken_02',0), -(9074,9074,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_bench_broken_01',0), -(9075,9075,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_chair_broken_01',0), -(9076,9076,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_chair_broken_02',0), -(9077,9077,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_chair_broken_03',0), -(9078,9078,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_table_large_broken_01',0), -(9079,9079,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_table_large_broken_02',0), -(9080,9080,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_table_small_broken_01',0), -(9081,9081,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fprt_hood_table_small_broken_02',0), -(9082,9082,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_stone_chair_01',0), -(9083,9083,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_clay_pot_tall_01',0), -(9084,9084,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fallengate_swordrack_01',0), -(9085,9085,'_exp05/zones/objects/exp05_dun_befallen_forsaken/fallengate_swordrack_busted_01',0), -(9086,9086,'accessories/wearable_items/cloak/exp05/cloak_sq_01_ethernaut_asharae',0), -(9087,9087,'accessories/wearable_items/cloak/exp05/cloak_sq_01_ethernaut_illisia',0), -(9088,9088,'accessories/wearable_items/_exp05/guk_magus/chest',0), -(9089,9089,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/shoulders',1096), -(9090,9090,'accessories/wearable_items/_exp08/dragon_armor/leather2_red/shoulders_epic',1096), -(9091,9091,'accessories/wearable_items/_exp05/guk_robe/chest',0), -(9092,9092,'accessories/wearable_items/_exp05/guk_robe/pants',0), -(9093,9093,'accessories/wearable_items/_exp05/guk_robe/skirt',0), -(9094,9094,'staticobjects/guildhall/fprt_obj_landmarkstatue01_nobirds',0), -(9095,9095,'staticobjects/guildhall/qey_obj_landmarkstatue01_nobirds',0), -(9096,9096,'_exp05/tool_users/gynok_moltor',0), -(9097,9097,'_exp05/tool_users/mummy_variant_mage_01',0), -(9098,9098,'_exp05/zones/objects/exp05_dun_guk_lower/banners/guk_lower_banner01_wall01',0), -(9099,9099,'_exp05/zones/objects/exp05_dun_guk_lower/banners/guk_lower_banner01_wall02',0), -(9100,9100,'accessories/wieldable_items/weapons/hammer/rolling_pin/rolling_pin_01',0), -(9101,9101,'accessories/wieldable_items/weapons/hammer/rolling_pin/rolling_pin_metal',0), -(9102,9102,'_exp05/tool_users/proto_drachnid_01',0), -(9103,9103,'accessories/wearable_items/cloak/exp05/cloak_sq_01_ethernaut_bayle',0), -(9104,9104,'staticobjects/tcg/tcg_ice_cream_cart_01',0), -(9105,9105,'accessories/wieldable_items/misc/npc_torch_01',0), -(9106,9106,'_exp01/characters/monsters/naga_shade',0), -(9107,9107,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_statue_mounted_knight',0), -(9108,9108,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_statue_mounted_knight_headless',0), -(9109,9109,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_statue_knight',0), -(9110,9110,'staticobjects/liveevent/dpo_temple_of_life',0), -(9111,9111,'accessories/wieldable_items/weapons/exp05/2h_void_staff01_bubbles',0), -(9112,9112,'creatures/mounts/unicorn/unicorn_saddle01',0), -(9113,9113,'creatures/mounts/unicorn/unicorn_saddle02',0), -(9114,9114,'creatures/mounts/unicorn/unicorn_saddle_bags_01',0), -(9115,9115,'_exp05/tool_users/boarfiend_armor_light',0), -(9116,9116,'_exp05/tool_users/boarfiend_armor_medium',0), -(9117,9117,'_exp05/tool_users/boarfiend_armor_heavy',0), -(9118,9118,'_exp05/zones/objects/exp05_dun_befallen_forsaken/befallen_hourglass',0), -(9119,9119,'accessories/wearable_items/_exp05/guk_heavycloth/guk_pauldron01_left',0), -(9120,9120,'accessories/wearable_items/_exp05/guk_heavycloth/guk_pauldron01_right',0), -(9121,9121,'accessories/wearable_items/_exp05/guk_heavycloth/guk_pauldron02_left',0), -(9122,9122,'accessories/wearable_items/_exp05/guk_heavycloth/guk_pauldron02_right',0), -(9123,9123,'accessories/wearable_items/_exp05/guk_heavycloth/guk_wrist01_left',0), -(9124,9124,'accessories/wearable_items/_exp05/guk_heavycloth/guk_wrist01_right',0), -(9125,9125,'accessories/wearable_items/_exp05/guk_heavycloth/guk_wrist02_left',0), -(9126,9126,'accessories/wearable_items/_exp05/guk_heavycloth/guk_wrist02_right',0), -(9127,9127,'accessories/wearable_items/_exp05/guk_heavycloth/hands_wrist01_both',0), -(9128,9128,'accessories/wearable_items/_exp05/guk_heavycloth/hands_wrist02_both',0), -(9129,9129,'accessories/wearable_items/_exp05/guk_heavycloth/shoulders_pauldron01_both',0), -(9130,9130,'accessories/wearable_items/_exp05/guk_heavycloth/shoulders_pauldron02_both',0), -(9131,9131,'accessories/wearable_items/_exp05/guk_helms/guk_hat01',0), -(9132,9132,'accessories/wearable_items/_exp05/guk_helms/guk_hat02',0), -(9133,9133,'accessories/wearable_items/_exp05/guk_leather/hands_wrist01_both',0), -(9134,9134,'accessories/wearable_items/_exp05/guk_leather/hands_wrist02_both',0), -(9135,9135,'accessories/wearable_items/_exp05/guk_leather/shoulders_pauldron01_both',0), -(9136,9136,'accessories/wearable_items/_exp05/guk_leather/shoulders_pauldron02_both',0), -(9137,9137,'accessories/wearable_items/_exp05/guk_magus/chest_pauldrons01_both',0), -(9138,9138,'accessories/wearable_items/_exp05/guk_magus/chest_pauldrons02_both',0), -(9139,9139,'accessories/wearable_items/_exp05/guk_robe/chest_pauldrons01_both',0), -(9140,9140,'accessories/wearable_items/_exp05/guk_robe/chest_pauldrons02_both',0), -(9141,9141,'accessories/wearable_items/_exp05/guk_vanguard/hands_wrist01_both',0), -(9142,9142,'accessories/wearable_items/_exp05/guk_vanguard/hands_wrist02_both',0), -(9143,9143,'accessories/wearable_items/_exp05/guk_vanguard/shoulders_pauldrons01_both',0), -(9144,9144,'accessories/wearable_items/_exp05/guk_vanguard/shoulders_pauldrons02_both',0), -(9145,9145,'creatures/tu/lavastatue_boss',0), -(9146,9146,'accessories/wieldable_items/shields/tower_shield/turtle_shield/turtle_shield01',0), -(9147,9147,'accessories/wearable_items/_exp05/void_heavycloth/chest',0), -(9148,9148,'accessories/wearable_items/_exp05/void_heavycloth/feet',0), -(9149,9149,'accessories/wearable_items/_exp05/void_heavycloth/forearms',0), -(9150,9150,'accessories/wearable_items/_exp05/void_heavycloth/hands',0), -(9151,9151,'accessories/wearable_items/_exp05/void_heavycloth/head',0), -(9152,9152,'accessories/wearable_items/_exp05/void_heavycloth/legs',0), -(9153,9153,'accessories/wearable_items/_exp05/void_heavycloth/shoulders',0), -(9154,9154,'accessories/wearable_items/_exp05/void_leather/chest',0), -(9155,9155,'accessories/wearable_items/_exp05/void_leather/feet',0), -(9156,9156,'accessories/wearable_items/_exp05/void_leather/forearms',0), -(9157,9157,'accessories/wearable_items/_exp05/void_leather/hands',0), -(9158,9158,'accessories/wearable_items/_exp05/void_leather/head',0), -(9159,9159,'accessories/wearable_items/_exp05/void_leather/legs',0), -(9160,9160,'accessories/wearable_items/_exp05/void_leather/legs_noskirt',0), -(9161,9161,'accessories/wearable_items/_exp05/void_leather/shoulders',0), -(9162,9162,'accessories/wearable_items/_exp05/void_leather/skirt',0), -(9163,9163,'accessories/wearable_items/_exp05/void_magus/chest',0), -(9164,9164,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/skirt',1096), -(9165,9165,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/chest',1096), -(9166,9166,'accessories/wearable_items/_exp05/void_robe/chest',0), -(9167,9167,'accessories/wearable_items/_exp05/void_robe/hood',0), -(9168,9168,'accessories/wearable_items/_exp05/void_robe/pants',0), -(9169,9169,'accessories/wearable_items/_exp05/void_robe/skirt',0), -(9170,9170,'accessories/wearable_items/_exp05/void_vanguard/chest',0), -(9171,9171,'accessories/wearable_items/_exp05/void_vanguard/feet',0), -(9172,9172,'accessories/wearable_items/_exp05/void_vanguard/forearms',0), -(9173,9173,'accessories/wearable_items/_exp05/void_vanguard/hands',0), -(9174,9174,'accessories/wearable_items/_exp05/void_vanguard/head',0), -(9175,9175,'accessories/wearable_items/_exp05/void_vanguard/legs',0), -(9176,9176,'accessories/wearable_items/_exp05/void_vanguard/legs_noskirt',0), -(9177,9177,'accessories/wearable_items/_exp05/void_vanguard/right',0), -(9178,9178,'accessories/wearable_items/_exp05/void_vanguard/shoulders',0), -(9179,9179,'accessories/wearable_items/_exp05/void_vanguard/shoulders_nopauldrons',0), -(9180,9180,'accessories/wearable_items/_exp05/void_vanguard/skirt',0), -(9181,9181,'accessories/wieldable_items/weapons/staff/staff_of_theer/staff_of_theer',0), -(9182,9182,'_exp05/zones/objects/exp05_dun_mistmoore_manor/female_suit_of_armor',0), -(9183,9183,'_exp05/zones/objects/exp05_dun_void_anchor/void_lamp01',0), -(9184,9184,'_exp05/tool_users/mummy_variant_warrior_01',0), -(9185,9185,'accessories/npc_wearables/voidman_armor/voidman_legs_05',0), -(9186,9186,'accessories/wearable_items/cloak/exp05/cloak_sq_01_antonia',0), -(9187,9187,'accessories/wearable_items/cloak/exp05/cloak_sq_01_lucan',0), -(9188,9188,'_exp05/zones/objects/exp05_dun_befallen_forsaken/bef_shield_statue01',0), -(9189,9189,'_exp05/zones/objects/exp05_dun_befallen_forsaken/bef_statue_warrior_shield01',0), -(9190,9190,'_exp05/zones/objects/exp05_dun_befallen_forsaken/bef_statue_warrior01',0), -(9191,9191,'_exp05/tool_users/boarfiend_chieftan',0), -(9192,9192,'_exp05/tool_users/trollzombie_male',0), -(9193,9193,'accessories/wearable_items/cloak/nights_of_the_dead/notd_fire_cloak',0), -(9194,9194,'accessories/wearable_items/cloak/nights_of_the_dead/notd_night_sky_cloak',0), -(9195,9195,'accessories/wearable_items/cloak/nights_of_the_dead/notd_web_spider_cloak',0), -(9196,9196,'_exp05/tool_users/mummy_variant_toturer_01',0), -(9197,9197,'_exp05/tool_users/mummy_variant_toturer_full_armor',0), -(9198,9198,'_exp05/tool_users/mummy_variant_toturer_no_armor',0), -(9199,9199,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/feet',1096), -(9200,9200,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/forearms',1096), -(9201,9201,'accessories/wearable_items/_exp05/guk_heavycloth/shoulders_turtle_both',0), -(9202,9202,'accessories/wearable_items/_exp05/guk_magus/arms',0), -(9203,9203,'accessories/wearable_items/_exp05/guk_magus/skirt',0), -(9204,9204,'accessories/wearable_items/_exp05/guk_robe/hood',0), -(9205,9205,'accessories/wearable_items/_exp05/void_magus/arms',0), -(9206,9206,'accessories/wearable_items/_exp05/void_magus/skirt',0), -(9207,9207,'creatures/tu/livingstatue_blackmarble',0), -(9208,9208,'creatures/tu/livingstatue_whitemarble',0), -(9209,9209,'staticobjects/boats/shipwreck',0), -(9210,9210,'accessories/wearable_items/cloak/frostfell/frostfell_cloak_gigglegibber',0), -(9211,9211,'staticobjects/liveevent/halloween/halloween_alchemist_flasks',0), -(9212,9212,'staticobjects/liveevent/halloween/halloween_butcher_block',0), -(9213,9213,'staticobjects/liveevent/halloween/halloween_candelabra_skel',0), -(9214,9214,'staticobjects/liveevent/halloween/halloween_cauldron',0), -(9215,9215,'staticobjects/liveevent/halloween/halloween_iron_maiden',0), -(9216,9216,'staticobjects/liveevent/halloween/halloween_orangegreen_pillows',0), -(9217,9217,'staticobjects/liveevent/halloween/halloween_orb_chandelier',0), -(9218,9218,'staticobjects/liveevent/halloween/halloween_shackled_skeleton01',0), -(9219,9219,'staticobjects/liveevent/halloween/halloween_shackled_skeleton02',0), -(9220,9220,'staticobjects/liveevent/halloween/halloween_shackles',0), -(9221,9221,'staticobjects/liveevent/halloween/halloween_skeleton_cage',0), -(9222,9222,'staticobjects/liveevent/halloween/halloween_skull_chandelier',0), -(9223,9223,'staticobjects/liveevent/halloween/halloween_skull_drapery',0), -(9224,9224,'staticobjects/liveevent/halloween/halloween_wall_candle',0), -(9225,9225,'accessories/wearable_items/cloak/frostfell/frostfell_cloak_giftwrap_01',0), -(9226,9226,'accessories/wieldable_items/weapons/exp05/claymore_sword001_ornate_epic',0), -(9227,9227,'_exp05/tool_users/mummy_variant_priest_01',0), -(9228,9228,'accessories/wearable_items/cloak/frostfell/frostfell_cloak_giftwrap_02',0), -(9229,9229,'staticobjects/liveevent/halloween/halloween_spider_eggs',0), -(9230,9230,'_exp05/tool_users/trollzombie_female',0), -(9231,9231,'_exp05/tool_users/mummy_variant_captain',0), -(9232,9232,'_exp05/tool_users/mummy_variant_brawler',0), -(9233,9233,'accessories/wearable_items/cloak/frostfell/frostfell_cloak_snowflakes',0), -(9234,9234,'staticobjects/kitchen/floor_plate_of_rats',0), -(9235,9235,'staticobjects/rubble/boarfiend_garbage',0), -(9236,9236,'accessories/wearable_items/cloak/frostfell/frostfell_cloak_candy_canes',0), -(9237,9237,'staticobjects/guildhall/druidring_drystone',0), -(9238,9238,'accessories/wieldable_items/weapons/exp05/exp05_1hc_thex_mallet',0), -(9239,9239,'staticobjects/liveevent/frostfell/dpo_christmas_snowtree_small01_houseitem',0), -(9240,9240,'accessories/wieldable_items/weapons/exp05/exp05_2hc_thex_mallet',0), -(9241,9241,'accessories/wearable_items/cloak/exp05/cloak_sq_01_akella_01',0), -(9242,9242,'accessories/wieldable_items/weapons/exp05/exp05_1hs_greenmist_katana',0), -(9243,9243,'staticobjects/liveevent/frostfell/dpo_christmas_evil_tree_small01_houseitem',0), -(9244,9244,'accessories/wieldable_items/weapons/exp05/1hc_battlehammer_shadow',0), -(9245,9245,'accessories/wieldable_items/weapons/exp05/1hc_human_skull_scepter_shadow',0), -(9246,9246,'accessories/wieldable_items/weapons/exp05/1hp_dual_bladed_stiletto_shadow',0), -(9247,9247,'accessories/wieldable_items/weapons/exp05/1hs_lamentation_shadow',0), -(9248,9248,'accessories/wieldable_items/weapons/exp05/1hs_ornate_elven_rapier_shadow',0), -(9249,9249,'accessories/wieldable_items/weapons/exp05/battleaxe001_shadow',0), -(9250,9250,'accessories/wieldable_items/weapons/exp05/blade_of_fist_shadow',0), -(9251,9251,'accessories/wieldable_items/weapons/exp05/bow_giant_wooden_bow_shadow',0), -(9252,9252,'accessories/wieldable_items/weapons/exp05/claymore_sword001_shadow',0), -(9253,9253,'accessories/wieldable_items/weapons/exp05/cobra_staff_shadow',0), -(9254,9254,'accessories/wieldable_items/weapons/exp05/crab_sceptre_shadow',0), -(9255,9255,'accessories/wieldable_items/weapons/exp05/deadman_call_shadow',0), -(9256,9256,'accessories/wieldable_items/weapons/exp05/dragon_flame_shadow',0), -(9257,9257,'accessories/wieldable_items/weapons/exp05/dragon_katana_shadow',0), -(9258,9258,'accessories/wieldable_items/weapons/exp05/holy_symbol001_shadow',0), -(9259,9259,'accessories/wieldable_items/weapons/exp05/orb001_shadow',0), -(9260,9260,'accessories/wieldable_items/weapons/exp05/silver_moon_shadow',0), -(9261,9261,'accessories/wieldable_items/weapons/exp05/staff_of_bloody_shadow',0), -(9262,9262,'accessories/wieldable_items/weapons/exp05/sword_of_nova_shadow',0), -(9263,9263,'accessories/wieldable_items/weapons/exp05/wannish_dream_shadow',0), -(9264,9264,'accessories/wieldable_items/weapons/exp05/waraxe002_shadow',0), -(9265,9265,'accessories/wieldable_items/weapons/exp05/wizards_dagger001_shadow',0), -(9266,9266,'_exp05/tool_users/humanzombie_male',0), -(9267,9267,'_exp05/zones/objects/exp05_rgn_innothule/fungusman_husk_01',0), -(9268,9268,'_exp05/zones/objects/exp05_rgn_innothule/fungusman_husk_02',0), -(9269,9269,'_exp05/zones/objects/exp05_rgn_innothule/fungusman_husk_03',0), -(9270,9270,'_exp05/zones/objects/exp05_rgn_innothule/fungusman_husk_04',0), -(9271,9271,'_exp05/zones/objects/exp05_rgn_innothule/fungusman_husk_05',0), -(9272,9272,'accessories/wearable_items/leather/plain/plain/chest',0), -(9273,9273,'accessories/wearable_items/leather/plain/plain/feet',0), -(9274,9274,'accessories/wearable_items/leather/plain/plain/forearms',0), -(9275,9275,'accessories/wearable_items/leather/plain/plain/hands',0), -(9276,9276,'accessories/wearable_items/leather/plain/plain/head',0), -(9277,9277,'accessories/wearable_items/leather/plain/plain/legs',0), -(9278,9278,'accessories/wearable_items/leather/plain/plain/legs_noskirt',0), -(9279,9279,'accessories/wearable_items/leather/plain/plain/shoulders',0), -(9280,9280,'accessories/wearable_items/leather/plain/plain/skirt',0), -(9281,9281,'accessories/wearable_items/leather/plain/plain_studded/chest',0), -(9282,9282,'accessories/wearable_items/leather/plain/plain_studded/feet',0), -(9283,9283,'accessories/wearable_items/leather/plain/plain_studded/forearms',0), -(9284,9284,'accessories/wearable_items/leather/plain/plain_studded/hands',0), -(9285,9285,'accessories/wearable_items/leather/plain/plain_studded/head',0), -(9286,9286,'accessories/wearable_items/leather/plain/plain_studded/legs',0), -(9287,9287,'accessories/wearable_items/leather/plain/plain_studded/pauldron01_leather_heavy_right',0), -(9288,9288,'accessories/wearable_items/leather/plain/plain_studded/pauldron01_leather_heavy_left',0), -(9289,9289,'accessories/wearable_items/leather/plain/plain_studded/legs_noskirt',0), -(9290,9290,'accessories/wearable_items/leather/plain/plain_studded/shoulders',0), -(9291,9291,'accessories/wearable_items/leather/plain/plain_studded/shoulders_pauldron01_both',0), -(9292,9292,'accessories/wearable_items/leather/plain/plain_studded/skirt',0), -(9293,9293,'accessories/wearable_items/leather/plain/unseen_hand/chest',0), -(9294,9294,'accessories/wearable_items/leather/plain/unseen_hand/feet',0), -(9295,9295,'accessories/wearable_items/leather/plain/unseen_hand/forearms',0), -(9296,9296,'accessories/wearable_items/leather/plain/unseen_hand/head',0), -(9297,9297,'accessories/wearable_items/leather/plain/unseen_hand/hands',0), -(9298,9298,'accessories/wearable_items/leather/plain/unseen_hand/legs',0), -(9299,9299,'accessories/wearable_items/leather/plain/unseen_hand/legs_noskirt',0), -(9300,9300,'accessories/wearable_items/leather/plain/unseen_hand/shoulders',0), -(9301,9301,'accessories/wearable_items/leather/plain/unseen_hand/skirt',0), -(9302,9302,'accessories/wieldable_items/misc/ice_cream_cone01',0), -(9303,9303,'accessories/wearable_items/profesion_hats/ice_cream_hat/ice_cream_hat01',0), -(9304,9304,'accessories/wearable_items/christmas_hats/santa_hat_03/head',0), -(9305,9305,'accessories/wearable_items01/_exp00/christmas_hats/santa_hat_03/head',0), -(9306,9306,'accessories/wearable_items/_exp05/flowing_black_robe/chest',0), -(9307,9307,'accessories/wearable_items/_exp05/flowing_black_robe/hood',0), -(9308,9308,'accessories/wearable_items/_exp05/flowing_black_robe/pants',0), -(9309,9309,'accessories/wearable_items/_exp05/flowing_black_robe/skirt',0), -(9310,9310,'accessories/wearable_items/cloak/exp05/cloak_sq_01_flowing_black_cloak',0), -(9311,9311,'creatures/monsters/flyingsnake_ghost',0), -(9312,9312,'_exp03/characters/monsters/bone_golem_spirit',0), -(9313,9313,'_exp04/monsters/xygoz_spirit',0), -(9314,9314,'staticobjects/plants/dpo_gf_lamppost_flower01',0), -(9315,9315,'staticobjects/plants/dpo_kel_fae_arbor',0), -(9316,9316,'staticobjects/light_sources_player_housing_only/dpo_wallflower_pink',0), -(9317,9317,'staticobjects/light_sources_player_housing_only/dpo_wallflower_yellow',0), -(9318,9318,'accessories/wieldable_items/weapons/exp05/1h_void_sword02',0), -(9319,9319,'accessories/wieldable_items/weapons/exp05/1hc_void_axe02',0), -(9320,9320,'accessories/wieldable_items/weapons/exp05/1hc_void_hammer02',0), -(9321,9321,'accessories/wieldable_items/weapons/exp05/2h_void_staff02',0), -(9322,9322,'accessories/wieldable_items/weapons/exp05/void_bow02',0), -(9323,9323,'_exp05/tool_users/trollzombie_female_ec',0), -(9324,9324,'accessories/wieldable_items/shields/peppermint_shield/peppermint_shield',0), -(9325,9325,'_exp01/zones/regions/sinking_sands/ss_objects/ss_landing_dock/dpo_ss_landing_dock_phase1',0), -(9326,9326,'staticobjects/mirrors/vampire_mirror',0), -(9327,9327,'_exp05/tool_users/trollzombie_male_ec',0), -(9328,9328,'staticobjects/liveevent/community/dpo_assembly_campfire',0), -(9329,9329,'staticobjects/liveevent/community/dpo_assembly_curved_stone_bar_01',0), -(9330,9330,'staticobjects/liveevent/community/dpo_assembly_curved_wooden_bar_01',0), -(9331,9331,'staticobjects/liveevent/community/dpo_assembly_evil_lamppost_with_pillows',0), -(9332,9332,'staticobjects/liveevent/community/dpo_assembly_evil_military_bench_and_wine',0), -(9333,9333,'staticobjects/liveevent/community/dpo_assembly_evil_purple_tent_01',0), -(9334,9334,'staticobjects/liveevent/community/dpo_assembly_evil_red_tent_01',0), -(9335,9335,'staticobjects/liveevent/community/dpo_assembly_evil_stone_bench_and_lamps',0), -(9336,9336,'staticobjects/liveevent/community/dpo_assembly_good_blue_tent_01',0), -(9337,9337,'staticobjects/liveevent/community/dpo_assembly_good_maroon_tent_01',0), -(9338,9338,'staticobjects/liveevent/community/dpo_assembly_good_wooden_bench_and_lamps',0), -(9339,9339,'_exp05/tool_users/humanzombie_male_ec',0), -(9340,9340,'_exp05/tool_users/humanzombie_female',0), -(9341,9341,'_exp05/tool_users/humanzombie_female_ec',0), -(9342,9342,'accessories/wearable_items/_exp05/shinny_metallic_robe/chest',0), -(9343,9343,'accessories/wearable_items/_exp05/shinny_metallic_robe/hood',0), -(9344,9344,'accessories/wearable_items/_exp05/shinny_metallic_robe/pants',0), -(9345,9345,'accessories/wearable_items/_exp05/shinny_metallic_robe/skirt',0), -(9346,9346,'accessories/wearable_items/cloak/exp05/cloak_sq_01_shinny_metallic_cloak',0), -(9347,9347,'staticobjects/brazier/dpo_tablebrazier001_lit',0), -(9348,9348,'staticobjects/brazier/dpo_tablebrazier001_unlit',0), -(9349,9349,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting18_nurgg',0), -(9350,9350,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting19_illisia',0), -(9351,9351,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting20_bayle',0), -(9352,9352,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting21_asharae',0), -(9353,9353,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting22_detonation',0), -(9354,9354,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting23_flight',0), -(9355,9355,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting24_stamina',0), -(9356,9356,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting25_mermaid',0), -(9357,9357,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting26_kaltuk',0), -(9358,9358,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting27_chestplate',0), -(9359,9359,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting28_fetid',0), -(9360,9360,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_painting29_lightning',0), -(9361,9361,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_asharae',0), -(9362,9362,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_bayle',0), -(9363,9363,'staticobjects/interiors/scenes/objects_race/dp_objects/tcg_items/tcg_tapestry01_design_illisia',0), -(9364,9364,'accessories/wearable_items/cloak/exp05/cloak_sq_01_harvester',0), -(9365,9365,'accessories/wieldable_items/weapons/exp05/exp04_orb_of_tishan',0), -(9366,9366,'accessories/wearable_items/cloak/exp05/cloak_sq_01_white_dragonscale_cloak',0), -(9367,9367,'accessories/wieldable_items/weapons/exp05/whip001_rusty_shadow',0), -(9368,9368,'_exp05/zones/objects/exp05_dun_guk_stronghold/dun_guk_stronghold_statues_statue01',0), -(9369,9369,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_boat_stage1_dpo',0), -(9370,9370,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_boat_stage2_dpo',0), -(9371,9371,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_boat_stage3_dpo',0), -(9372,9372,'_exp05/zones/objects/tradeskill_dungeons/shipyard/shipyard_boat_complete_dpo',0), -(9373,9373,'_exp01/zones/regions/sinking_sands/ss_objects/ss_landing_dock/ss_landing_dock_complete',0), -(9374,9374,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/chest',0), -(9375,9375,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/feet',0), -(9376,9376,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/forearms',0), -(9377,9377,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/hands',0), -(9378,9378,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/head',0), -(9379,9379,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/legs',0), -(9380,9380,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/legs_noskirt',0), -(9381,9381,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/pauldron02_vanguard_ridged_left',0), -(9382,9382,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/pauldron02_vanguard_ridged_right',0), -(9383,9383,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/pauldron04_vanguard_medium_left',0), -(9384,9384,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/pauldron04_vanguard_medium_right',0), -(9385,9385,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/right',0), -(9386,9386,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders',0), -(9387,9387,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders_nopauldrons',0), -(9388,9388,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders_pauldron02_both',0), -(9389,9389,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders_pauldron02_left',0), -(9390,9390,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders_pauldron02_right',0), -(9391,9391,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/shoulders_pauldron04_both',0), -(9392,9392,'accessories/wearable_items/_exp03/mistmoore_vanguard_01_golden/skirt',0), -(9393,9393,'accessories/wearable_items/cloak/exp05/cloak_sq_01_twiddy_cloudskipper_cloak',0), -(9394,9394,'ec/pc/troll/troll_male_golden',0), -(9395,9395,'creatures/monsters/gargoyle_guk',0), -(9396,9396,'staticobjects/halloween/dpo_halloween_hanging_bat_ghost_swinging',0), -(9397,9397,'ec/npc/gigglegibber_goblin',0), -(9398,9398,'staticobjects/liveevent/dpo_anashti_sul_staff_houseitem',0), -(9399,9399,'staticobjects/liveevent/dpo_anashti_sul_staff_undead_houseitem',0), -(9400,9400,'staticobjects/tapestry/dpo_tapestry_design_ethernaut',0), -(9401,9401,'_exp05/tool_users/troll_strategist',0), -(9402,9402,'_exp05/tool_users/troll_guard_captain',0), -(9403,9403,'creatures/tu/froglok_skeleton_armor',0), -(9404,9404,'creatures/tu/froglok_skeleton_chain',0), -(9405,9405,'creatures/tu/froglok_skeleton_guard',0), -(9406,9406,'creatures/tu/froglok_zombie_chain',0), -(9407,9407,'staticobjects/liveevent/guides/dpo_guide_lizard_cage',0), -(9408,9408,'staticobjects/liveevent/guides/dpo_guide_lizard_cage_reward',0), -(9409,9409,'staticobjects/deity_altars/altar_anashtisul_basic',0), -(9410,9410,'staticobjects/deity_altars/altar_anashtisul_crafted',0), -(9411,9411,'staticobjects/deity_altars/altar_anashtisul_exceptional',0), -(9412,9412,'staticobjects/deity_altars/altar_rodcetnife_basic',0), -(9413,9413,'staticobjects/deity_altars/altar_rodcetnife_crafted',0), -(9414,9414,'staticobjects/deity_altars/altar_rodcetnife_exceptional',0), -(9415,9415,'accessories/wearable_items/cloak/exp05/cloak_sq_01_magmatic_bronze_splinted',0), -(9416,9416,'accessories/wieldable_items/weapons/exp05/exp05_2hs_bone_blade_claymore',0), -(9417,9417,'accessories/wieldable_items/weapons/exp05/exp05_2hs_bone_blade_claymore_epic',0), -(9418,9418,'staticobjects/books/floor_book_any_thex01',0), -(9419,9419,'staticobjects/doors/dpo_comland_gate',0), -(9420,9420,'staticobjects/doors/dpo_comland_wallsection',0), -(9421,9421,'_exp05/monsters/iksar_greenmist_boss',0), -(9422,9422,'_exp05/tool_users/troll_guard_ykesha',0), -(9423,9423,'accessories/wieldable_items/weapons/exp05/exp05_2hc_zombie_shovel',0), -(9424,9424,'creatures/tu/froglok_undead_executioner',0), -(9425,9425,'creatures/pets/baby_dragon_ice',0), -(9426,9426,'accessories/wieldable_items/weapons/exp05/exp05_1hs_froglok_executioner',0), -(9427,9427,'accessories/wearable_items/cloak/exp05/cloak_pirate_01',0), -(9428,9428,'accessories/wearable_items/cloak/exp05/cloak_icecream_01',0), -(9429,9429,'accessories/wieldable_items/weapons/exp05/shld_guk_tower_shield',0), -(9430,9430,'staticobjects/pictures/dpo_man_portrait_big_goldred',0), -(9431,9431,'accessories/wieldable_items/weapons/exp05/shld_shield_01',0), -(9432,9432,'accessories/wieldable_items/weapons/exp05/shld_shield_02',0), -(9433,9433,'accessories/wieldable_items/weapons/exp05/shld_shield_03',0), -(9434,9434,'accessories/wieldable_items/weapons/exp05/shld_shield_04',0), -(9435,9435,'accessories/wieldable_items/weapons/exp05/shld_shield_05',0), -(9436,9436,'accessories/wieldable_items/weapons/exp05/shld_shield_06',0), -(9437,9437,'accessories/wieldable_items/weapons/exp05/shld_shield_07',0), -(9438,9438,'accessories/wieldable_items/weapons/exp05/shld_shield_08',0), -(9439,9439,'accessories/wieldable_items/weapons/exp05/shld_shield_09',0), -(9440,9440,'accessories/wieldable_items/weapons/exp05/shld_shield_10',0), -(9441,9441,'staticobjects/pictures/dpo_man_portrait_big_goldblack',0), -(9442,9442,'staticobjects/liveevent/frostfell/holiday_custard_pie_flambe',0), -(9443,9443,'accessories/wieldable_items/weapons/exp05/exp05_1hp_guk_dagger',0), -(9444,9444,'accessories/wieldable_items/weapons/exp05/shld_guk_buckler',0), -(9445,9445,'accessories/wieldable_items/weapons/exp05/exp05_bow_guk_bow',0), -(9446,9446,'staticobjects/boats/skyblade_full',0), -(9447,9447,'accessories/wieldable_items/weapons/exp05/exp05_1hs_guk_axe',0), -(9448,9448,'accessories/wieldable_items/weapons/exp05/exp05_guk_totem',0), -(9449,9449,'accessories/wieldable_items/weapons/exp05/exp05_guk_orb',0), -(9450,9450,'accessories/wearable_items/leather/plain/unseen_hand/pauldron01_leather_heavy_left',0), -(9451,9451,'accessories/wearable_items/leather/plain/unseen_hand/pauldron01_leather_heavy_right',0), -(9452,9452,'accessories/wearable_items/leather/plain/unseen_hand/shoulders_leather_heavy_both',0), -(9453,9453,'accessories/wieldable_items/misc/exp05_stein_guk',0), -(9454,9454,'staticobjects/liveevent/frostfell/dpo_peppermint_shield',0), -(9455,9455,'creatures/mounts/zeppelin_01',0), -(9456,9456,'staticobjects/tapestry/torn_hangingcloth',0), -(9457,9457,'staticobjects/scrolls/wantedposter02',0), -(9458,9458,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/hands',1096), -(9459,9459,'_exp05/zones/objects/exp05_rgn_innothule/dpo_inna_high_container_tall01_stone',0), -(9460,9460,'_exp05/zones/objects/tradeskill_dungeons/adv04_rgn_village/dpo_innb_obj_barnacle01',0), -(9461,9461,'staticobjects/pirate/dpo_inna_pirate_floater_globes01',0), -(9462,9462,'accessories/wieldable_items/weapons/exp05/exp05_korsha_staff2h',0), -(9463,9463,'accessories/wieldable_items/weapons/exp05/exp05_korsha_longbow',0), -(9464,9464,'accessories/wieldable_items/weapons/exp05/exp05_korsha_claymore2h',0), -(9465,9465,'accessories/wieldable_items/weapons/exp05/exp05_korsha_axe1h',0), -(9466,9466,'accessories/wieldable_items/weapons/exp05/exp05_korsha_hammer1h',0), -(9467,9467,'accessories/wieldable_items/shields/exp05/exp05_korsha_kiteshield',0), -(9468,9468,'accessories/wieldable_items/shields/exp05/exp05_korsha_roundshield',0), -(9469,9469,'accessories/wearable_items/heavy_chain/plain02/chest',0), -(9470,9470,'accessories/wearable_items/heavy_chain/plain02/feet',0), -(9471,9471,'accessories/wearable_items/heavy_chain/plain02/forearms',0), -(9472,9472,'accessories/wearable_items/heavy_chain/plain02/hands',0), -(9473,9473,'accessories/wearable_items/heavy_chain/plain02/head',0), -(9474,9474,'accessories/wearable_items/heavy_chain/plain02/legs',0), -(9475,9475,'accessories/wearable_items/heavy_chain/plain02/legs_noskirt',0), -(9476,9476,'accessories/wearable_items/heavy_chain/plain02/pauldron_leahter_light_left',0), -(9477,9477,'accessories/wearable_items/heavy_chain/plain02/pauldron_leahter_light_right',0), -(9478,9478,'accessories/wearable_items/heavy_chain/plain02/shoulders',0), -(9479,9479,'accessories/wearable_items/heavy_chain/plain02/shoulders_no_pauldrons',0), -(9480,9480,'accessories/wearable_items/heavy_chain/plain02/skirt',0), -(9481,9481,'accessories/wearable_items/cloak/exp05/cloak_water_01',0), -(9482,9482,'_exp04/tool_users/golem_jade_ice',0), -(9483,9483,'_exp05/tool_users/mummy_variant_toturer_full_armor_ice',0), -(9484,9484,'_exp05/monsters/dragon_vampire',0), -(9485,9485,'projectiles/spear_ornate',0), -(9486,9486,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/head',1096), -(9487,9487,'staticobjects/pirate/plate_of_dead_rats',0), -(9488,9488,'staticobjects/flora/fungusmen_flowerpot',0), -(9489,9489,'_exp05/zones/objects/exp05_rgn_innothule/dpo_seb_mushroom_cave_wall01',0), -(9490,9490,'_exp05/zones/objects/exp05_dun_guk_upper/guk_upper_table01_sacrifice01_dpo',0), -(9491,9491,'_exp05/zones/objects/exp05_dun_guk_lower/keyhole/dun_guk_lower_keyhole01_dpo',0), -(9492,9492,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_base_dpo',0), -(9493,9493,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_shaft_dpo',0), -(9494,9494,'_exp05/zones/objects/exp05_rgn_innothule/boat_platform_innothule',0), -(9495,9495,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_atrebe',0), -(9496,9496,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_fighter',0), -(9497,9497,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_mage',0), -(9498,9498,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_priest',0), -(9499,9499,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_scout',0), -(9500,9500,'_exp05/zones/objects/exp05_dun_nuroga/drogan_crystal',0), -(9501,9501,'accessories/wearable_items/sallet_helmet/galvanized/head',0), -(9502,9502,'accessories/wearable_items/vanguard/uncommon/high/pauldron02_vanguard_ridged_left',0), -(9503,9503,'accessories/wearable_items/vanguard/uncommon/high/pauldron02_vanguard_ridged_right',0), -(9504,9504,'accessories/wearable_items/vanguard/uncommon/high/pauldron05_vanguard_heavy_left',0), -(9505,9505,'accessories/wearable_items/vanguard/uncommon/high/pauldron05_vanguard_heavy_right',0), -(9506,9506,'accessories/wearable_items/vanguard/uncommon/high/pauldron07_vanguard_gothic_left',0), -(9507,9507,'accessories/wearable_items/vanguard/uncommon/high/pauldron07_vanguard_gothic_right',0), -(9508,9508,'accessories/wearable_items/vanguard/uncommon/high/shoulders_pauldron02_both',0), -(9509,9509,'accessories/wearable_items/vanguard/uncommon/high/shoulders_pauldron05_both',0), -(9510,9510,'accessories/wearable_items/vanguard/uncommon/high/shoulders_pauldron07_both',0), -(9511,9511,'accessories/wearable_items/_exp05/token_reward_01_robe/chest',0), -(9512,9512,'accessories/wearable_items/_exp05/token_reward_01_robe/hood',0), -(9513,9513,'accessories/wearable_items/_exp05/token_reward_01_robe/pants',0), -(9514,9514,'accessories/wearable_items/_exp05/token_reward_01_robe/skirt',0), -(9515,9515,'accessories/wearable_items/_exp05/token_reward_02_robe/chest',0), -(9516,9516,'accessories/wearable_items/_exp05/token_reward_02_robe/hood',0), -(9517,9517,'accessories/wearable_items/_exp05/token_reward_02_robe/pants',0), -(9518,9518,'accessories/wearable_items/_exp05/token_reward_02_robe/skirt',0), -(9519,9519,'accessories/wearable_items/_exp05/token_reward_03_robe/chest',0), -(9520,9520,'accessories/wearable_items/_exp05/token_reward_03_robe/hood',0), -(9521,9521,'accessories/wearable_items/_exp05/token_reward_03_robe/pants',0), -(9522,9522,'accessories/wearable_items/_exp05/token_reward_03_robe/skirt',0), -(9523,9523,'accessories/wearable_items/_exp05/token_reward_04_robe/chest',0), -(9524,9524,'accessories/wearable_items/_exp05/token_reward_04_robe/hood',0), -(9525,9525,'accessories/wearable_items/_exp05/token_reward_04_robe/pants',0), -(9526,9526,'accessories/wearable_items/_exp05/token_reward_04_robe/skirt',0), -(9527,9527,'staticobjects/creatures/slug_dpo',0), -(9528,9528,'_exp05/monsters/void_beast_case',0), -(9529,9529,'accessories/wearable_items01/_exp00/profesion_hats/priest_helm/heavy_plate_plain/head',0), -(9530,9530,'accessories/wearable_items/profesion_hats/priest_helm/heavy_plate_plain/head',0), -(9531,9531,'creatures/mounts/horse_pack/horse_pack',0), -(9532,9532,'_exp05/monsters/golem_shambling_mound_swamp',0), -(9533,9533,'accessories/wearable_items/cloak/exp05/cloak_sq_01_unseen_hand',0), -(9534,9534,'_exp05/zones/objects/exp05_rgn_innothule/boat_platform_innothule_02',0), -(9535,9535,'accessories/wearable_items/cloak/exp05/cloak_sq_01_far_seas_trader',0), -(9536,9536,'accessories/wearable_items01/_exp00/sallet_helmet/galvanized/head',0), -(9537,9537,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/shoulders_pauldron02_both',0), -(9538,9538,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/shoulders_pauldron05_both',0), -(9539,9539,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/shoulders_pauldron07_both',0), -(9540,9540,'accessories/wearable_items/_exp05/guk_leather/shoulders_turtle_pauldron_both',0), -(9541,9541,'accessories/wearable_items/_exp05/guk_magus/chest_turtle_pauldrons_both',0), -(9542,9542,'accessories/wearable_items/_exp05/guk_robe/chest_turtle_pauldrons_both',0), -(9543,9543,'accessories/wearable_items/_exp05/guk_vanguard/shoulders_turtle_pauldrons_both',0), -(9544,9544,'accessories/wieldable_items/weapons/exp05/shld_congealed_gore_buckler',0), -(9545,9545,'accessories/wieldable_items/weapons/exp05/exp05_talisman_undead_idol',0), -(9546,9546,'staticobjects/light_sources_player_housing_only/dpo_bef_asylum_wall_lamp_small',0), -(9547,9547,'staticobjects/tapestry/dpo_bef_banner_asylum02',0), -(9548,9548,'staticobjects/tapestry/dpo_bef_banner_forsaken01',0), -(9549,9549,'staticobjects/tapestry/dpo_bef_banner_forsaken02',0), -(9550,9550,'staticobjects/light_sources_player_housing_only/dpo_bef_lightsource_candelabra_hanging01',0), -(9551,9551,'staticobjects/light_sources_player_housing_only/dpo_bef_lightsource_floor01',0), -(9552,9552,'staticobjects/light_sources_player_housing_only/dpo_bef_lightsource_wall_asylum',0), -(9553,9553,'staticobjects/light_sources_player_housing_only/dpo_bef_lightsource_wallsconce01',0), -(9554,9554,'staticobjects/light_sources_player_housing_only/dpo_inna_high_lightsource_wall01_grobb',0), -(9555,9555,'staticobjects/statues/dpo_bef_lion_statue01',0), -(9556,9556,'staticobjects/rugs/dpo_bef_rug_blue01',0), -(9557,9557,'staticobjects/tableware/dpo_sfm_gnome_cup01',0), -(9558,9558,'staticobjects/rugs/dpo_bef_rug_yellow01',0), -(9559,9559,'staticobjects/banners/dpo_dn_banners001_wallbrace07',0), -(9560,9560,'staticobjects/statues/dpo_dun_guk_stronghold_statues_statue01',0), -(9561,9561,'staticobjects/banners/dpo_guk_lower_banner01_wall01',0), -(9562,9562,'staticobjects/banners/dpo_guk_lower_banner01_wall02',0), -(9563,9563,'staticobjects/flora/dpo_guk_lower_foliage_bush01',0), -(9564,9564,'staticobjects/flora/dpo_guk_stronghold_foliage_bush01',0), -(9565,9565,'staticobjects/flora/dpo_guk_upper_foliage_bush02',0), -(9566,9566,'staticobjects/dressers/dpo_inna_bank_vault01',0), -(9567,9567,'staticobjects/benches/dpo_inna_high_bench01_grobb',0), -(9568,9568,'staticobjects/chairs/dpo_inna_high_chair01_grobb',0), -(9569,9569,'staticobjects/chairs/dpo_inna_high_chair_troll01',0), -(9570,9570,'staticobjects/chairs/dpo_inna_high_chair_troll02',0), -(9571,9571,'staticobjects/containers/dpo_inna_high_container_tall01_stone',0), -(9572,9572,'staticobjects/tables/dpo_inna_high_table02_grobb',0), -(9573,9573,'staticobjects/tables/dpo_inna_high_table_troll01',0), -(9574,9574,'staticobjects/light_sources_player_housing_only/dpo_inna_lightsource_pirate_lantern',0), -(9575,9575,'staticobjects/pirate/dpo_inna_pirate_net_floaters01_swinging',0), -(9576,9576,'staticobjects/light_sources_player_housing_only/dpo_inna_lightsource_tupta_hangingvine01',0), -(9577,9577,'staticobjects/light_sources_player_housing_only/dpo_inna_lightsource_tupta_lamppost01',0), -(9578,9578,'staticobjects/light_sources_player_housing_only/dpo_inna_lightsource_tupta_wall01',0), -(9579,9579,'staticobjects/light_sources_player_housing_only/dpo_miragul_obj_coldflamebrazier',0), -(9580,9580,'staticobjects/tableware/dpo_inna_low_bowl01_fungusmen',0), -(9581,9581,'staticobjects/tableware/dpo_inna_low_shells01',0), -(9582,9582,'staticobjects/tableware/dpo_inna_pirate_cup_gold01',0), -(9583,9583,'staticobjects/urns/dpo_inna_vase_clay04',0), -(9584,9584,'staticobjects/tableware/dpo_inna_pirate_jug_gold01',0), -(9585,9585,'staticobjects/tableware/dpo_inna_pirate_stein_blue02',0), -(9586,9586,'staticobjects/tableware/dpo_inna_pirate_stein_gold01',0), -(9587,9587,'staticobjects/fountains_and_pools/dpo_inna_tupta_tadpole_bowl01',0), -(9588,9588,'staticobjects/banners/dpo_inna_tupta_wall_banner01',0), -(9589,9589,'staticobjects/urns/dpo_inna_vase_clay02',0), -(9590,9590,'staticobjects/urns/dpo_inna_vase_clay_tall01',0), -(9591,9591,'staticobjects/pictures/dpo_man_portrait2_big_purple',0), -(9592,9592,'staticobjects/pictures/dpo_man_portrait3_big_purple',0), -(9593,9593,'staticobjects/pictures/dpo_man_portrait4_big_purple',0), -(9594,9594,'staticobjects/pictures/dpo_man_portrait5_big_purple',0), -(9595,9595,'staticobjects/chairs/dpo_miragul_chair01',0), -(9596,9596,'staticobjects/light_sources_player_housing_only/dpo_miragul_obj_chandellier',0), -(9597,9597,'staticobjects/light_sources_player_housing_only/dpo_miragul_obj_chandellier_large',0), -(9598,9598,'staticobjects/statues/dpo_miragul_obj_statue01',0), -(9599,9599,'staticobjects/statues/dpo_miragul_obj_statue02',0), -(9600,9600,'staticobjects/tapestry/dpo_na_banner01',0), -(9601,9601,'staticobjects/banners/dpo_na_banner02',0), -(9602,9602,'staticobjects/tapestry/dpo_ols_hangingcloth_airship01',0), -(9603,9603,'staticobjects/tapestry/dpo_ols_hangingcloth_bow01',0), -(9604,9604,'staticobjects/tapestry/dpo_seb_banner_iksar01',0), -(9605,9605,'staticobjects/artifact/dpo_vek_headpiece01',0), -(9606,9606,'staticobjects/artifact/dpo_vek_headpiece02',0), -(9607,9607,'staticobjects/light_sources_player_housing_only/dpo_vek_lightsource_jar_fireflies01_fx',0), -(9608,9608,'staticobjects/light_sources_player_housing_only/dpo_vek_lightsource_jar_standalone',0), -(9609,9609,'accessories/wieldable_items/weapons/exp05/exp05_befallen_book',0), -(9610,9610,'accessories/wieldable_items/weapons/exp05/exp05_bow_befallen_bow',0), -(9611,9611,'accessories/wieldable_items/weapons/exp05/shld_shield_10_ice',0), -(9612,9612,'staticobjects/tapestry/dpo_tapestry_design_white_dragonscale_hq',0), -(9613,9613,'accessories/wieldable_items/weapons/exp05/exp05_1hs_befallen_sabre',0), -(9614,9614,'creatures/pets/dice/eight_sided_dice_black_marble',0), -(9615,9615,'creatures/pets/dice/four_sided_dice_black_marble',0), -(9616,9616,'creatures/pets/dice/four_sided_dice_cyanblack_marble',0), -(9617,9617,'creatures/pets/dice/four_sided_dice_golden_marble',0), -(9618,9618,'creatures/pets/dice/four_sided_dice_green_marble',0), -(9619,9619,'creatures/pets/dice/four_sided_dice_grey_marble',0), -(9620,9620,'creatures/pets/dice/four_sided_dice_orange_marble',0), -(9621,9621,'creatures/pets/dice/four_sided_dice_plastic_tint',0), -(9622,9622,'creatures/pets/dice/four_sided_dice_white_marble',0), -(9623,9623,'creatures/pets/dice/twelve_sided_dice_black_marble',0), -(9624,9624,'creatures/pets/dice/twelve_sided_dice_cyanblack_marble',0), -(9625,9625,'creatures/pets/dice/twelve_sided_dice_golden_marble',0), -(9626,9626,'creatures/pets/dice/twelve_sided_dice_green_marble',0), -(9627,9627,'creatures/pets/dice/twelve_sided_dice_grey_marble',0), -(9628,9628,'creatures/pets/dice/twelve_sided_dice_orange_marble',0), -(9629,9629,'creatures/pets/dice/twelve_sided_dice_plastic_tint',0), -(9630,9630,'creatures/pets/dice/twelve_sided_dice_red_marble',0), -(9631,9631,'creatures/pets/dice/twelve_sided_dice_white_marble',0), -(9632,9632,'creatures/pets/dice/twenty_sided_dice_black_marble',0), -(9633,9633,'creatures/pets/dice/twenty_sided_dice_cyanblack_marble',0), -(9634,9634,'creatures/pets/dice/twenty_sided_dice_golden_marble',0), -(9635,9635,'creatures/pets/dice/twenty_sided_dice_green_marble',0), -(9636,9636,'creatures/pets/dice/twenty_sided_dice_grey_marble',0), -(9637,9637,'creatures/pets/dice/twenty_sided_dice_orange_marble',0), -(9638,9638,'creatures/pets/dice/twenty_sided_dice_plastic_tint',0), -(9639,9639,'creatures/pets/dice/twenty_sided_dice_red_marble',0), -(9640,9640,'creatures/pets/dice/twenty_sided_dice_white_marble',0), -(9641,9641,'creatures/monsters/wall_slug',0), -(9642,9642,'accessories/wieldable_items/weapons/exp05/exp05_1hs_befallen_rapier',0), -(9643,9643,'accessories/wieldable_items/weapons/exp05/exp05_orb_of_earth',0), -(9644,9644,'accessories/wieldable_items/weapons/exp05/exp05_orb_of_fire',0), -(9645,9645,'accessories/wieldable_items/weapons/exp05/exp05_orb_of_fire_sun',0), -(9646,9646,'accessories/wieldable_items/weapons/exp05/exp05_orb_of_ice',0), -(9647,9647,'accessories/wieldable_items/shields/buckler_shield/metal_buckler/metal_buckler001_ice',0), -(9648,9648,'accessories/wieldable_items/shields/tower_shield/metal_tower_shield/planar_tower_shield',0), -(9649,9649,'accessories/wieldable_items/weapons/bow/long_bow/dreadnaughts_longbow',0), -(9650,9650,'_exp05/zones/objects/exp05_rgn_innothule/rubbish_pile',0), -(9651,9651,'staticobjects/gnomish_devices/zeppelin_mobile',0), -(9652,9652,'accessories/wieldable_items/weapons/exp05/exp05_befallen_censor',0), -(9653,9653,'accessories/wieldable_items/weapons/exp05/exp05_lance_of_dreams',0), -(9654,9654,'staticobjects/gnomish_devices/zeppelin_mobile_03',0), -(9655,9655,'creatures/pets/dice/four_sided_dice_red_marble',0), -(9656,9656,'_exp01/characters/tool_users/djinn_master_fire',0), -(9657,9657,'_exp01/characters/tool_users/genie_male_efreeti',0), -(9658,9658,'_exp01/characters/tool_users/genie_male_evil',0), -(9659,9659,'_exp01/characters/tool_users/genie_male_evil_hair',0), -(9660,9660,'_exp01/characters/tool_users/genie_male_lesser',0), -(9661,9661,'_exp01/characters/tool_users/genie_male_lesser_hair',0), -(9662,9662,'accessories/wearable_items/_exp05/far_seas_trader_leather/chest',0), -(9663,9663,'accessories/wearable_items/_exp05/far_seas_trader_leather/feet',0), -(9664,9664,'accessories/wearable_items/_exp05/far_seas_trader_leather/hands',0), -(9665,9665,'accessories/wearable_items/_exp05/far_seas_trader_leather/forearms',0), -(9666,9666,'accessories/wearable_items/_exp05/far_seas_trader_leather/head',0), -(9667,9667,'accessories/wearable_items/_exp05/far_seas_trader_leather/legs',0), -(9668,9668,'accessories/wearable_items/_exp05/far_seas_trader_leather/legs_noskirt',0), -(9669,9669,'accessories/wearable_items/_exp05/far_seas_trader_leather/shoulders',0), -(9670,9670,'accessories/wearable_items/_exp05/far_seas_trader_leather/skirt',0), -(9671,9671,'staticobjects/urns/dpo_inna_vase_clay_tall02',0), -(9672,9672,'staticobjects/statues/unicorn_statue',0), -(9673,9673,'accessories/wearable_items/cloak/exp05/cloak_sq_01_bechoi',0), -(9674,9674,'accessories/wearable_items/cloak/exp05/cloak_sq_01_lubesh',0), -(9675,9675,'accessories/wearable_items/cloak/exp05/cloak_sq_01_rajadevi',0), -(9676,9676,'accessories/wearable_items/cloak/exp05/cloak_sq_01_yciid',0), -(9677,9677,'accessories/wearable_items/cloak/exp05/cloak_sq_01_vashota',0), -(9678,9678,'staticobjects/liveevent/frostfell/goblinpop01',0), -(9679,9679,'staticobjects/liveevent/frostfell/goblinpop02',0), -(9680,9680,'staticobjects/liveevent/frostfell/goblinpop03',0), -(9681,9681,'accessories/wearable_items/profesion_hats/priest_helm/heavy_plate_white/head',0), -(9682,9682,'accessories/wearable_items01/_exp00/profesion_hats/priest_helm/heavy_plate_white/head',0), -(9683,9683,'staticobjects/tapestry/dpo_tapestry_design_unseen',0), -(9684,9684,'staticobjects/weapons/dpo_battle_spoon',0), -(9685,9685,'staticobjects/weapons/dpo_rolling_pin',0), -(9686,9686,'staticobjects/light_sources_player_housing_only/dpo_gf_lightsource_lampppost01',0), -(9687,9687,'staticobjects/carts/damaged_wood_cart_no_collide',0), -(9688,9688,'staticobjects/liveevent/frostfell/dpo_greeting_card_frostfell01',0), -(9689,9689,'staticobjects/liveevent/frostfell/dpo_greeting_card_frostfell02',0), -(9690,9690,'staticobjects/liveevent/frostfell/dpo_greeting_card_frostfell03',0), -(9691,9691,'staticobjects/liveevent/frostfell/dpo_greeting_card_frostfell04',0), -(9692,9692,'_exp05/zones/objects/exp05_dun_void_palace/fx_void_teleporter',0), -(9693,9693,'_exp05/zones/objects/exp05_dun_void_palace/void_case',0), -(9694,9694,'staticobjects/signs/neriak/dpo_sign_small_business01',0), -(9695,9695,'accessories/wearable_items/_exp05/tradeskill_magus_low/chest',0), -(9696,9696,'accessories/wearable_items/_exp05/tradeskill_magus_low/arms',0), -(9697,9697,'accessories/wearable_items/_exp05/tradeskill_magus_low/skirt',0), -(9698,9698,'_exp05/zones/objects/exp05_dun_veksar/vek_container_egg_bobbing',0), -(9699,9699,'staticobjects/tapestry/dpo_tapestry_design_water',0), -(9700,9700,'_exp05/zones/objects/exp05_dun_void_palace/fx_glowing_blue_sphere',0), -(9701,9701,'accessories/wearable_items/cloak/exp05/cloak_sq_01_guide',0), -(9702,9702,'_exp01/zones/dungeons/silent_city/sc_temple/sc_ewer_exp5_quest',0), -(9703,9703,'_exp05/zones/objects/exp05_dun_miragul_shard/miragul_amygdalan_scaled',0), -(9704,9704,'_exp05/zones/objects/exp05_dun_miragul_shard/miragul_tree_scaled',0), -(9705,9705,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web01',0), -(9706,9706,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web02',0), -(9707,9707,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web03',0), -(9708,9708,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web04',0), -(9709,9709,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web05',0), -(9710,9710,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web06',0), -(9711,9711,'_exp05/zones/objects/exp05_dun_befallen_forsaken/spider_web07',0), -(9712,9712,'staticobjects/lighting/floor_lamp_ice',0), -(9713,9713,'creatures/tu/froglok_skeleton_ghost',0), -(9714,9714,'_exp05/zones/objects/exp05_dun_guk_upper/dn_guk_upper_shinlordtower01_poison01',0), -(9715,9715,'_exp05/monsters/dire_bear01_wsaddle_armor03',0), -(9716,9716,'_exp05/monsters/dire_bear01_wsaddle_armor04',0), -(9717,9717,'_exp05/monsters/dire_bear01_wsaddle_armor05',0), -(9718,9718,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_airship_stage1',0), -(9719,9719,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_airship_stage2',0), -(9720,9720,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_airship_stage3',0), -(9721,9721,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_airship_stage4',0), -(9722,9722,'_exp05/zones/objects/tradeskill_dungeons/void/tinkered_workstation_dpo',0), -(9723,9723,'staticobjects/beds/dpo_cm_bed_twin01',0), -(9724,9724,'staticobjects/beds/dpo_cm_bed_twin02',0), -(9725,9725,'staticobjects/beds/dpo_kel_bed_inn01',0), -(9726,9726,'staticobjects/cages/dpo_drv_cage_gilded01_swinging',0), -(9727,9727,'staticobjects/scrolls/dpo_goro_scrolls_stack01',0), -(9728,9728,'staticobjects/scrolls/dpo_goro_scrolls_stack02',0), -(9729,9729,'staticobjects/tables/dpo_djn_table_brass02',0), -(9730,9730,'accessories/wearable_items/halloween_masks/skull_circlet/skull_circlet_head',0), -(9731,9731,'accessories/wearable_items/christmas_hats/ice_crown/ice_crown_head',0), -(9732,9732,'creatures/mounts/dire_bear/dire_bear01',0), -(9733,9733,'creatures/mounts/dire_bear/dire_bear01_wsaddle',0), -(9734,9734,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor01',0), -(9735,9735,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor02',0), -(9736,9736,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor03',0), -(9737,9737,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor04',0), -(9738,9738,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor05',0), -(9739,9739,'creatures/mounts/dire_bear/dire_bear02_wsaddle',0), -(9740,9740,'creatures/mounts/dire_bear/dire_bear02_wsaddle_armor01',0), -(9741,9741,'creatures/mounts/dire_bear/dire_bear02_wsaddle_armor02',0), -(9742,9742,'creatures/mounts/dire_bear/dire_bear03_wsaddle',0), -(9743,9743,'creatures/mounts/dire_bear/dire_bear03_wsaddle_armor01',0), -(9744,9744,'creatures/mounts/dire_bear/dire_bear03_wsaddle_armor02',0), -(9745,9745,'creatures/mounts/dire_bear/dire_bear04_wsaddle',0), -(9746,9746,'creatures/mounts/dire_bear/dire_bear04_wsaddle_armor01',0), -(9747,9747,'creatures/mounts/dire_bear/dire_bear04_wsaddle_armor02',0), -(9748,9748,'accessories/wearable_items/_exp06/elf_armor_vanguard/chest',0), -(9749,9749,'accessories/wearable_items/_exp06/elf_armor_vanguard/elf_armor_pauldron_left',0), -(9750,9750,'accessories/wearable_items/_exp06/elf_armor_vanguard/elf_armor_pauldron_right',0), -(9751,9751,'accessories/wearable_items/_exp06/elf_armor_vanguard/feet',0), -(9752,9752,'accessories/wearable_items/_exp06/elf_armor_vanguard/forearms',0), -(9753,9753,'accessories/wearable_items/_exp06/elf_armor_vanguard/hands',0), -(9754,9754,'accessories/wearable_items/_exp06/elf_armor_vanguard/head',0), -(9755,9755,'accessories/wearable_items/_exp06/elf_armor_vanguard/head_elf_armor',0), -(9756,9756,'accessories/wearable_items/_exp06/elf_armor_vanguard/legs',0), -(9757,9757,'accessories/wearable_items/_exp06/elf_armor_vanguard/legs_noskirt',0), -(9758,9758,'accessories/wearable_items/_exp06/elf_armor_vanguard/right',0), -(9759,9759,'accessories/wearable_items/_exp06/elf_armor_vanguard/shoulders',0), -(9760,9760,'accessories/wearable_items/_exp06/elf_armor_vanguard/shoulders_elf_amor',0), -(9761,9761,'accessories/wearable_items/_exp06/elf_armor_vanguard/shoulders_nopauldrons',0), -(9762,9762,'accessories/wearable_items/_exp06/elf_armor_vanguard/skirt',0), -(9763,9763,'staticobjects/liveevent/guides/dpo_guide_halfling_table',0), -(9764,9764,'staticobjects/liveevent/guides/dpo_guide_hanging_light',0), -(9765,9765,'staticobjects/liveevent/guides/dpo_guide_rolling_pin_metal',0), -(9766,9766,'accessories/wearable_items/_exp06/elf_armor_chain/chest',0), -(9767,9767,'accessories/wearable_items/_exp06/elf_armor_chain/elf_armor_pauldron_left',0), -(9768,9768,'accessories/wearable_items/_exp06/elf_armor_chain/elf_armor_pauldron_right',0), -(9769,9769,'accessories/wearable_items/_exp06/elf_armor_chain/feet',0), -(9770,9770,'accessories/wearable_items/_exp06/elf_armor_chain/forearms',0), -(9771,9771,'accessories/wearable_items/_exp06/elf_armor_chain/hands',0), -(9772,9772,'accessories/wearable_items/_exp06/elf_armor_chain/head',0), -(9773,9773,'accessories/wearable_items/_exp06/elf_armor_chain/head_elf_armor',0), -(9774,9774,'accessories/wearable_items/_exp06/elf_armor_chain/legs',0), -(9775,9775,'accessories/wearable_items/_exp06/elf_armor_chain/legs_noskirt',0), -(9776,9776,'accessories/wearable_items/_exp06/elf_armor_chain/shoulders',0), -(9777,9777,'accessories/wearable_items/_exp06/elf_armor_chain/shoulders_nopauldrons',0), -(9778,9778,'accessories/wearable_items/_exp06/elf_armor_chain/skirt',0), -(9779,9779,'_exp04/monsters/xygoz_fire',0), -(9780,9780,'_exp04/monsters/xygoz_shade',0), -(9781,9781,'_exp05/monsters/ice_dervish',0), -(9782,9782,'creatures/tu/elementalfire_greater',0), -(9783,9783,'creatures/tu/void_stalker',0), -(9784,9784,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor01_firespirit',0), -(9785,9785,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor01_void',0), -(9786,9786,'creatures/mounts/dire_bear/dire_bear01_wsaddle_armor01_icepirit',0), -(9787,9787,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/legs',1096), -(9788,9788,'accessories/wearable_items/elemental_crowns/elemental_crown_fire',0), -(9789,9789,'accessories/wearable_items/elemental_crowns/elemental_crown_ice',0), -(9790,9790,'accessories/wearable_items/elemental_crowns/sparkle_crown',0), -(9791,9791,'accessories/wearable_items/elemental_crowns/star_crown',0), -(9792,9792,'creatures/tu/gelatinouscube_comfort_spring',0), -(9793,9793,'creatures/tu/gelatinouscube_spring',0), -(9794,9794,'accessories/wearable_items/_exp06/elf_armor_leather/chest',0), -(9795,9795,'accessories/wearable_items/_exp06/elf_armor_leather/elf_armor_pauldron_right',0), -(9796,9796,'accessories/wearable_items/_exp06/elf_armor_leather/feet',0), -(9797,9797,'accessories/wearable_items/_exp06/elf_armor_leather/forearms',0), -(9798,9798,'accessories/wearable_items/_exp06/elf_armor_leather/hands',0), -(9799,9799,'accessories/wearable_items/_exp06/elf_armor_leather/head',0), -(9800,9800,'accessories/wearable_items/_exp06/elf_armor_leather/head_elf_armor',0), -(9801,9801,'accessories/wearable_items/_exp06/elf_armor_leather/legs',0), -(9802,9802,'accessories/wearable_items/_exp06/elf_armor_leather/legs_noskirt',0), -(9803,9803,'accessories/wearable_items/_exp06/elf_armor_leather/shoulders',0), -(9804,9804,'accessories/wearable_items/_exp06/elf_armor_leather/shoulders_nopauldrons',0), -(9805,9805,'accessories/wearable_items/_exp06/elf_armor_leather/skirt',0), -(9806,9806,'creatures/tu/nightbloodwarrior_golden',0), -(9807,9807,'accessories/wearable_items/robe_02/chest',0), -(9808,9808,'accessories/wearable_items/robe_02/head',0), -(9809,9809,'accessories/wearable_items/robe_02/hood',0), -(9810,9810,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/legs_noskirt',1096), -(9811,9811,'accessories/wearable_items/robe_02/skirt',0), -(9812,9812,'accessories/wearable_items/cloak/exp06/cloak_kaltuk',0), -(9813,9813,'accessories/wearable_items/_exp06/dwarf_armor_chain/breastplate_disc',0), -(9814,9814,'accessories/wearable_items/_exp06/dwarf_armor_chain/chest',0), -(9815,9815,'accessories/wearable_items/_exp06/dwarf_armor_chain/chest_disc_chain_dwarf',0), -(9816,9816,'accessories/wearable_items/_exp06/dwarf_armor_chain/crest_boar_01',0), -(9817,9817,'accessories/wearable_items/_exp06/dwarf_armor_chain/feet',0), -(9818,9818,'accessories/wearable_items/_exp06/dwarf_armor_chain/forearms',0), -(9819,9819,'accessories/wearable_items/_exp06/dwarf_armor_chain/hands',0), -(9820,9820,'accessories/wearable_items/_exp06/dwarf_armor_chain/head',0), -(9821,9821,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/shoulders',1096), -(9822,9822,'accessories/wearable_items/_exp08/dragon_armor/leather2_shadow/shoulders_epic',1096), -(9823,9823,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/skirt',1096), -(9824,9824,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_01_left',0), -(9825,9825,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_01_right',0), -(9826,9826,'accessories/wearable_items/_exp06/dwarf_armor_chain/legs',0), -(9827,9827,'accessories/wearable_items/_exp06/dwarf_armor_chain/legs_noskirt',0), -(9828,9828,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_flat_boar_left',0), -(9829,9829,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_flat_boar_right',0), -(9830,9830,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_flat_left',0), -(9831,9831,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_flat_right',0), -(9832,9832,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_light_left',0), -(9833,9833,'accessories/wearable_items/_exp06/dwarf_armor_chain/pauldron_leather_light_right',0), -(9834,9834,'accessories/wearable_items/_exp06/dwarf_armor_chain/shoulders',0), -(9835,9835,'accessories/wearable_items/_exp06/dwarf_armor_chain/shoulders_leather_flat_boar_pauldrons_both',0), -(9836,9836,'accessories/wearable_items/_exp06/dwarf_armor_chain/shoulders_leather_flat_pauldrons_both',0), -(9837,9837,'accessories/wearable_items/_exp06/dwarf_armor_chain/shoulders_no_pauldrons',0), -(9838,9838,'accessories/wearable_items/_exp06/dwarf_armor_chain/skirt',0), -(9839,9839,'accessories/wearable_items/cloak/exp06/cloak_nurgg',0), -(9840,9840,'accessories/wearable_items/cloak/exp06/cloak_journeyman',0), -(9841,9841,'accessories/wearable_items/cloak/exp06/cloak_journeyman_blue',0), -(9842,9842,'accessories/wearable_items/cloak/exp06/cloak_journeyman_green',0), -(9843,9843,'accessories/wearable_items/cloak/exp06/cloak_journeyman_red',0), -(9844,9844,'creatures/tu/water_elemental_soldier',0), -(9845,9845,'creatures/tu/fire_elemental_soldier',0), -(9846,9846,'creatures/tu/poison_elemental_soldier_',0), -(9847,9847,'creatures/tu/snow_flake_soldier',0), -(9848,9848,'creatures/tu/storm_elemental_soldier',0), -(9849,9849,'accessories/wearable_items/_exp06/mayan_robe/chest',0), -(9850,9850,'accessories/wearable_items/_exp06/mayan_robe/head',0), -(9851,9851,'accessories/wearable_items/_exp06/mayan_robe/pants',0), -(9852,9852,'accessories/wearable_items/_exp06/mayan_robe/skirt',0), -(9853,9853,'staticobjects/bank/dpo_inna_chest_treasure_open01',0), -(9854,9854,'staticobjects/bank/dpo_inna_coin_pile_large01',0), -(9855,9855,'staticobjects/bank/dpo_inna_crate_closed01_single',0), -(9856,9856,'staticobjects/bank/dpo_inna_crate_treasure_open01',0), -(9857,9857,'staticobjects/bank/dpo_inna_gold_coin_pile01',0), -(9858,9858,'staticobjects/bank/dpo_inna_gold_coin_pile02',0), -(9859,9859,'accessories/wearable_items/_exp06/dwarf_armor_chain/crest_horns_01',0), -(9860,9860,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_boarcrest',0), -(9861,9861,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_boarcrest_horns_01',0), -(9862,9862,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_boarcrest_horns_02',0), -(9863,9863,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_boarcrest_horns_03',0), -(9864,9864,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_boarcrest_horns_04',0), -(9865,9865,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_hornedcrest_horns_03',0), -(9866,9866,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_02_left',0), -(9867,9867,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_02_right',0), -(9868,9868,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_03_left',0), -(9869,9869,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_03_right',0), -(9870,9870,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_04_left',0), -(9871,9871,'accessories/wearable_items/_exp06/dwarf_armor_chain/horn_04_right',0), -(9872,9872,'accessories/wearable_items/_exp06/elf_armor_robe/chest',0), -(9873,9873,'accessories/wearable_items/_exp06/elf_armor_robe/elf_armor_pauldron_left',0), -(9874,9874,'accessories/wearable_items/_exp06/elf_armor_robe/elf_armor_pauldron_right',0), -(9875,9875,'accessories/wearable_items/_exp06/elf_armor_robe/head',0), -(9876,9876,'accessories/wearable_items/_exp06/elf_armor_robe/hood',0), -(9877,9877,'accessories/wearable_items/_exp06/elf_armor_robe/pants',0), -(9878,9878,'accessories/wearable_items/_exp06/elf_armor_robe/skirt',0), -(9879,9879,'_exp05/zones/objects/exp05_dun_najena_atheneum/gold_bar',0), -(9880,9880,'accessories/wearable_items/_exp06/plain_01_robe/chest',0), -(9881,9881,'accessories/wearable_items/_exp06/plain_01_robe/head',0), -(9882,9882,'accessories/wearable_items/_exp06/plain_01_robe/pants',0), -(9883,9883,'accessories/wearable_items/_exp06/plain_01_robe/skirt',0), -(9884,9884,'accessories/wearable_items01/_exp00/heavy_plate/plain_white_sun_symbol/shoulders',0), -(9885,9885,'_exp05/zones/objects/exp05_dun_najena_atheneum/lava_boulder_01',0), -(9886,9886,'_exp05/zones/objects/exp05_dun_najena_atheneum/lava_boulder_02',0), -(9887,9887,'_exp05/zones/objects/exp05_dun_najena_atheneum/lava_boulder_03',0), -(9888,9888,'_exp05/zones/objects/exp05_dun_najena_atheneum/lava_boulder_04',0), -(9889,9889,'staticobjects/doors/qey_obj_door_type05_1',0), -(9890,9890,'staticobjects/doors/qey_obj_door_type05_2',0), -(9891,9891,'accessories/wearable_items/cloak/exp06/cloak_erollisi_sister',0), -(9892,9892,'accessories/wearable_items/cloak/exp06/erollisi_head',0), -(9893,9893,'accessories/wearable_items/profesion_hats/wizard_hat_merlin/wizard_hat_merlin',0), -(9894,9894,'accessories/wearable_items/cloak/exp06/fae_d_wing01_void',0), -(9895,9895,'accessories/wearable_items/heavy_plate/lava/chest',0), -(9896,9896,'accessories/wearable_items/heavy_plate/lava/feet',0), -(9897,9897,'accessories/wearable_items/heavy_plate/lava/forearms',0), -(9898,9898,'accessories/wearable_items/heavy_plate/lava/hands',0), -(9899,9899,'accessories/wearable_items/heavy_plate/lava/head',0), -(9900,9900,'accessories/wearable_items/heavy_plate/lava/left',0), -(9901,9901,'accessories/wearable_items/heavy_plate/lava/legs',0), -(9902,9902,'accessories/wearable_items/heavy_plate/lava/legs_noskirt',0), -(9903,9903,'accessories/wearable_items/heavy_plate/lava/pauldron03_vanguard_flared_left',0), -(9904,9904,'accessories/wearable_items/heavy_plate/lava/pauldron03_vanguard_flared_right',0), -(9905,9905,'accessories/wearable_items/heavy_plate/lava/pauldron_plain_left',0), -(9906,9906,'accessories/wearable_items/heavy_plate/lava/pauldron_plain_right',0), -(9907,9907,'accessories/wearable_items/heavy_plate/lava/right',0), -(9908,9908,'accessories/wearable_items/heavy_plate/lava/shoulders',0), -(9909,9909,'accessories/wearable_items/heavy_plate/lava/shoulders_flared_both',0), -(9910,9910,'accessories/wearable_items/heavy_plate/lava/shoulders_nopauldrons',0), -(9911,9911,'accessories/wearable_items/heavy_plate/lava/skirt',0), -(9912,9912,'accessories/wearable_items/heavy_plate/lava/upperchest',0), -(9913,9913,'ec/pc/darkelf/darkelf_female_voidtainted',0), -(9914,9914,'ec/pc/ogre/fire_ogre_male_voidtainted',0), -(9915,9915,'_exp04/tool_users/burynai_warrior_voidtainted',0), -(9916,9916,'_exp01/characters/tool_users/water_djinn_master_voidtainted',0), -(9917,9917,'accessories/wearable_items/profesion_hats/vampire_hunter/vampire_hunter',0), -(9918,9918,'accessories/wearable_items/_exp06/elf_armor_robe/chest_with_pauldrons',0), -(9919,9919,'accessories/wearable_items/profesion_hats/executioner_helm/head',0), -(9920,9920,'accessories/wearable_items/_exp06/varsoon_robe/chest_with_skull_pauldrons',0), -(9921,9921,'accessories/wearable_items/_exp06/varsoon_robe/chest',0), -(9922,9922,'accessories/wearable_items/_exp06/varsoon_robe/head',0), -(9923,9923,'accessories/wearable_items/_exp06/varsoon_robe/pants',0), -(9924,9924,'accessories/wearable_items/_exp06/varsoon_robe/pauldron_varsoon_left',0), -(9925,9925,'accessories/wearable_items/_exp06/varsoon_robe/pauldron_varsoon_right',0), -(9926,9926,'accessories/wearable_items/_exp06/varsoon_robe/skirt',0), -(9927,9927,'accessories/wearable_items/profesion_hats/priest_helm/priest_templar_helm/head',0), -(9928,9928,'accessories/wearable_items/profesion_hats/warrior_helm/warrior_helm',0), -(9929,9929,'staticobjects/liveevent/erollisi_objects/errolisi_grass_patch_butterflies_01',0), -(9930,9930,'staticobjects/liveevent/erollisi_objects/errolisi_grass_patch_fireflies_01',0), -(9931,9931,'accessories/wearable_items/_exp06/elf_armor_robe_red/chest',0), -(9932,9932,'accessories/wearable_items/_exp06/elf_armor_robe_red/chest_with_pauldrons',0), -(9933,9933,'accessories/wearable_items/_exp06/elf_armor_robe_red/elf_armor_pauldron_left',0), -(9934,9934,'accessories/wearable_items/_exp06/elf_armor_robe_red/elf_armor_pauldron_right',0), -(9935,9935,'accessories/wearable_items/_exp06/elf_armor_robe_red/head',0), -(9936,9936,'accessories/wearable_items/_exp06/elf_armor_robe_red/hood',0), -(9937,9937,'accessories/wearable_items/_exp06/elf_armor_robe_red/pants',0), -(9938,9938,'accessories/wearable_items/_exp06/elf_armor_robe_red/skirt',0), -(9939,9939,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_horns_01',0), -(9940,9940,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_horns_02',0), -(9941,9941,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_horns_03',0), -(9942,9942,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_horns_04',0), -(9943,9943,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_bone_spike',0), -(9944,9944,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_double_fang',0), -(9945,9945,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_dragon_eater',0), -(9946,9946,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_emerald_ripper',0), -(9947,9947,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_golden_eagle_talon',0), -(9948,9948,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_golden_sun',0), -(9949,9949,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_holey_defiler',0), -(9950,9950,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_jagged_diamond',0), -(9951,9951,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_mayan_smasher',0), -(9952,9952,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_quad_impaler',0), -(9953,9953,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_arasai_slicer',0), -(9954,9954,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_crystal_blade_of_chaos',0), -(9955,9955,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_necrobone',0), -(9956,9956,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_serpent_tongue',0), -(9957,9957,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_silver_tip',0), -(9958,9958,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_skewed_escargo',0), -(9959,9959,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_soulleach',0), -(9960,9960,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_spirit_of_the_forest',0), -(9961,9961,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_tangler',0), -(9962,9962,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_toothed_cleaver',0), -(9963,9963,'creatures/mounts/horse_armor02/horse01_armor02_lava',0), -(9964,9964,'creatures/mounts/horse_armor02/horse01_armor02_ice',0), -(9965,9965,'accessories/wearable_items/elemental_crowns/elemental_crown_fire_purple',0), -(9966,9966,'accessories/wearable_items/elemental_crowns/elemental_crown_ice_green',0), -(9967,9967,'accessories/wearable_items/elemental_crowns/elemental_crown_ice_purple',0), -(9968,9968,'accessories/wearable_items/elemental_crowns/sparkle_crown_purple',0), -(9969,9969,'accessories/wearable_items/elemental_crowns/star_crown_purple',0), -(9970,9970,'creatures/mounts/horse_armor_warhorse/horse01_armor_warhorse_pinto',0), -(9971,9971,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_black',0), -(9972,9972,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_blue',0), -(9973,9973,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_bronze',0), -(9974,9974,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_gold',0), -(9975,9975,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_purple',0), -(9976,9976,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_red',0), -(9977,9977,'creatures/mounts/horse_armor_cataphract/horse_armor_cataphract_silver',0), -(9978,9978,'creatures/mounts/horse_demon/horse_demon',0), -(9979,9979,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_transport_stage1',0), -(9980,9980,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_transport_stage2',0), -(9981,9981,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_transport_stage3',0), -(9982,9982,'_exp05/zones/objects/tradeskill_dungeons/void/dpo_transport_stage4',0), -(9983,9983,'accessories/wearable_items/profesion_hats/centurion_helm/ice_crest/head_centurion_ice_crest',0), -(9984,9984,'accessories/wearable_items/profesion_hats/centurion_helm/ice_crest/ice_crest',0), -(9985,9985,'accessories/wearable_items/profesion_hats/centurion_helm/lightning_crest/head_centurion_lightning_crest',0), -(9986,9986,'accessories/wearable_items/profesion_hats/centurion_helm/lightning_crest/lightning_crest',0), -(9987,9987,'accessories/wearable_items/profesion_hats/centurion_helm/poison_crest/head_centurion_poison_crest',0), -(9988,9988,'accessories/wearable_items/profesion_hats/centurion_helm/poison_crest/poison_crest',0), -(9989,9989,'creatures/mounts/unicorn/unicorn_saddle01_love',0), -(9990,9990,'accessories/wearable_items/profesion_hats/tin_foil_helm/tin_foil_helm_dome',0), -(9991,9991,'accessories/wearable_items/profesion_hats/tin_foil_helm/tin_foil_helm_pointy',0), -(9992,9992,'accessories/wearable_items/cloak/exp06/cloak_community_team',0), -(9993,9993,'staticobjects/liveevent/brew_day/dpo_kal_jug_dwarf01',0), -(9994,9994,'staticobjects/liveevent/bristlebane_day/dpo_cm_arcane_bottle_glass02',0), -(9995,9995,'staticobjects/liveevent/bristlebane_day/dpo_fprt_kitchen_winebottleplain001',0), -(9996,9996,'staticobjects/liveevent/bristlebane_day/dpo_vp_jar0202',0), -(9997,9997,'creatures/monsters/shadowedman_void',0), -(9998,9998,'accessories/wearable_items/cloak/exp06/cloak_burning_dead',0), -(9999,9999,'staticobjects/adv04/vessel_ice',0), -(10000,10000,'staticobjects/bookcases/floor_bookcase_any_fancy_ice',0), -(10001,10001,'staticobjects/brazier/floor_brazier_erudite_steam_ice',0), -(10002,10002,'staticobjects/dressers/floor_dresser_any_fancy_ice',0), -(10003,10003,'staticobjects/pillars/columnsmall002_ice',0), -(10004,10004,'staticobjects/statues/binding_shrine_ice',0), -(10005,10005,'staticobjects/walls/dpo_gf_kel_int_divider_wall01_ice',0), -(10006,10006,'staticobjects/portals/lavastorm_teleporter_ring',0), -(10007,10007,'staticobjects/torches/solro_dragontorch',0), -(10008,10008,'staticobjects/bookcases/solro_bookcase01_dpo',0), -(10009,10009,'staticobjects/bookcases/solro_bookcase02_dpo',0), -(10010,10010,'staticobjects/bookcases/solro_bookcase03_dpo',0), -(10011,10011,'staticobjects/books/solro_book01_dpo',0), -(10012,10012,'staticobjects/books/solro_book01_flat_dpo',0), -(10013,10013,'staticobjects/papers/solro_page01_dpo',0), -(10014,10014,'staticobjects/papers/solro_page02_dpo',0), -(10015,10015,'staticobjects/papers/solro_page03_dpo',0), -(10016,10016,'staticobjects/tables/solro_desk_dpo',0), -(10017,10017,'accessories/wieldable_items/weapons/exp05/1hp_dual_bladed_stiletto_blue',0), -(10018,10018,'staticobjects/cages/sol_cage_closed01',0), -(10019,10019,'staticobjects/crystals/dpo_lavastorm_crystals_group',0), -(10020,10020,'_exp06/characters/tool_users/erudite_classic_female/erudite_classic_female',0), -(10021,10021,'_exp06/characters/tool_users/erudite_classic_male/erudite_classic_male',0), -(10022,10022,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/chest',0), -(10023,10023,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/elf_armor_pauldron_left',0), -(10024,10024,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/elf_armor_pauldron_right',0), -(10025,10025,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/feet',0), -(10026,10026,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/forearms',0), -(10027,10027,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/hands',0), -(10028,10028,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/head',0), -(10029,10029,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/head_elf_armor',0), -(10030,10030,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/legs',0), -(10031,10031,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/legs_noskirt',0), -(10032,10032,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/shoulders',0), -(10033,10033,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/shoulders_nopauldrons',0), -(10034,10034,'accessories/wearable_items/_exp06/elf_armor_chain_black_red/skirt',0), -(10035,10035,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/chest',0), -(10036,10036,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/elf_armor_pauldron_left',0), -(10037,10037,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/elf_armor_pauldron_right',0), -(10038,10038,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/feet',0), -(10039,10039,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/forearms',0), -(10040,10040,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/hands',0), -(10041,10041,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/head',0), -(10042,10042,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/head_elf_armor',0), -(10043,10043,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/legs',0), -(10044,10044,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/legs_noskirt',0), -(10045,10045,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/right',0), -(10046,10046,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/shoulders',0), -(10047,10047,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/shoulders_elf_amor',0), -(10048,10048,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/shoulders_nopauldrons',0), -(10049,10049,'accessories/wearable_items/_exp06/elf_armor_vanguard_purple_gold/skirt',0), -(10050,10050,'staticobjects/tables/dpo_dn_table_books',0), -(10051,10051,'staticobjects/tables/dpo_dn_table_empty',0), -(10052,10052,'staticobjects/torches/floor_torch_solro_tabletorch01',0), -(10053,10053,'accessories/wearable_items/_exp06/predator_chain/chest',0), -(10054,10054,'accessories/wearable_items/_exp06/predator_chain/feet',0), -(10055,10055,'accessories/wearable_items/_exp06/predator_chain/forearms',0), -(10056,10056,'accessories/wearable_items/_exp06/predator_chain/hands',0), -(10057,10057,'accessories/wearable_items/_exp06/predator_chain/head',0), -(10058,10058,'accessories/wearable_items/_exp06/predator_chain/head_predator',0), -(10059,10059,'accessories/wearable_items/_exp06/predator_chain/legs',0), -(10060,10060,'accessories/wearable_items/_exp06/predator_chain/legs_noskirt',0), -(10061,10061,'accessories/wearable_items/_exp06/predator_chain/predator_pauldron_left',0), -(10062,10062,'accessories/wearable_items/_exp06/predator_chain/predator_pauldron_right',0), -(10063,10063,'accessories/wearable_items/_exp06/predator_chain/shoulders',0), -(10064,10064,'accessories/wearable_items/_exp06/predator_chain/shoulders_nopauldrons',0), -(10065,10065,'accessories/wearable_items/_exp06/predator_chain/shoulders_pauldrons_only',0), -(10066,10066,'accessories/wearable_items/_exp06/predator_chain/skirt',0), -(10067,10067,'accessories/wearable_items/_exp06/raven_armor_vanguard/chest',0), -(10068,10068,'accessories/wearable_items/_exp06/raven_armor_vanguard/feet',0), -(10069,10069,'accessories/wearable_items/_exp06/raven_armor_vanguard/forearms',0), -(10070,10070,'accessories/wearable_items/_exp06/raven_armor_vanguard/hands',0), -(10071,10071,'accessories/wearable_items/_exp06/raven_armor_vanguard/head',0), -(10072,10072,'accessories/wearable_items/_exp06/raven_armor_vanguard/head_raven_armor',0), -(10073,10073,'accessories/wearable_items/_exp06/raven_armor_vanguard/legs',0), -(10074,10074,'accessories/wearable_items/_exp06/raven_armor_vanguard/legs_noskirt',0), -(10075,10075,'accessories/wearable_items/_exp06/raven_armor_vanguard/raven_shoulder_left',0), -(10076,10076,'accessories/wearable_items/_exp06/raven_armor_vanguard/raven_shoulder_right',0), -(10077,10077,'accessories/wearable_items/_exp06/raven_armor_vanguard/right',0), -(10078,10078,'accessories/wearable_items/_exp06/raven_armor_vanguard/shoulders',0), -(10079,10079,'accessories/wearable_items/_exp06/raven_armor_vanguard/shoulders_nopauldrons',0), -(10080,10080,'accessories/wearable_items/_exp06/raven_armor_vanguard/shoulders_raven_both',0), -(10081,10081,'accessories/wearable_items/_exp06/raven_armor_vanguard/skirt',0), -(10082,10082,'staticobjects/armor/armor_collection03_dpo',0), -(10083,10083,'staticobjects/goblin_misc/goblin_smokestack03_dpo',0), -(10084,10084,'staticobjects/goblin_misc/goblin_wallsmokestack01_dpo',0), -(10085,10085,'staticobjects/goblin_misc/runnyeye_anvil02_dpo',0), -(10086,10086,'staticobjects/goblin_misc/runnyeye_boxforge01_dpo',0), -(10087,10087,'staticobjects/goblin_misc/runnyeye_coalbin01_dpo',0), -(10088,10088,'staticobjects/goblin_misc/runnyeye_coalbin01_spill_dpo',0), -(10089,10089,'staticobjects/goblin_misc/runnyeye_wallforge02_dpo',0), -(10090,10090,'staticobjects/tools/nbhum_forge01_dpo',0), -(10091,10091,'staticobjects/goblin_misc/goblin_smokestack02_dpo',0), -(10092,10092,'staticobjects/carts/dpo_na_lava_cart01',0), -(10093,10093,'staticobjects/carts/dpo_solro_mincart_rocks',0), -(10094,10094,'staticobjects/flora/dpo_jw_sporepod01',0), -(10095,10095,'staticobjects/rocks/dpo_nh_rock_large01',0), -(10096,10096,'staticobjects/rocks/dpo_nh_rock_large02',0), -(10097,10097,'staticobjects/statues/dpo_nh_statue01',0), -(10098,10098,'staticobjects/torture_chamber/dpo_nh_bone_wall',0), -(10099,10099,'staticobjects/fish/barracuda_dpo',0), -(10100,10100,'_exp05/zones/objects/exp05_dun_miragul_upper/glass_orb_ped_collision',0), -(10101,10101,'staticobjects/blacksmith/orc_forge_houseitem',0), -(10102,10102,'staticobjects/guildhall/trophies/floor_aiden',0), -(10103,10103,'staticobjects/guildhall/trophies/floor_behemoth',0), -(10104,10104,'staticobjects/guildhall/trophies/floor_cheldrak',0), -(10105,10105,'staticobjects/guildhall/trophies/floor_clockwork',0), -(10106,10106,'staticobjects/guildhall/trophies/floor_darathar_head',0), -(10107,10107,'staticobjects/guildhall/trophies/floor_djinn_master',0), -(10108,10108,'staticobjects/guildhall/trophies/floor_godking_anuk_head',0), -(10109,10109,'staticobjects/guildhall/trophies/floor_gynok',0), -(10110,10110,'staticobjects/guildhall/trophies/floor_mayong_coffin',0), -(10111,10111,'staticobjects/guildhall/trophies/floor_munzok',0), -(10112,10112,'staticobjects/guildhall/trophies/floor_tarinax_head',0), -(10113,10113,'staticobjects/guildhall/trophies/floor_venekor_head',0), -(10114,10114,'staticobjects/guildhall/trophies/floor_trakanon_head',0), -(10115,10115,'staticobjects/guildhall/trophies/floor_venril',0), -(10116,10116,'staticobjects/guildhall/trophies/floor_vox_head_full',0), -(10117,10117,'staticobjects/guildhall/trophies/floor_vyemm_head',0), -(10118,10118,'staticobjects/guildhall/trophies/floor_wuoshi_head',0), -(10119,10119,'staticobjects/guildhall/trophies/floor_ykesha',0), -(10120,10120,'staticobjects/guildhall/trophies/floor_zarakon_head',0), -(10121,10121,'staticobjects/alter/le_lavastorm_altar01_dpo',0), -(10122,10122,'staticobjects/cages/sol_cage_closed01',0), -(10123,10123,'staticobjects/carts/na_lava_cart01_dpo',0), -(10124,10124,'staticobjects/statues/le_lavastorm_forge01_dpo',0), -(10125,10125,'staticobjects/statues/le_lavastorm_pedestal01_dpo',0), -(10126,10126,'staticobjects/statues/na_statue_01_dpo',0), -(10127,10127,'staticobjects/statues/nh_bone_wall_dpo',0), -(10128,10128,'staticobjects/statues/nh_statue_01_dpo',0), -(10129,10129,'accessories/wieldable_items/misc/weaponsmith_forged_sword',0), -(10130,10130,'accessories/wieldable_items/misc/alchemist_flask',0), -(10131,10131,'accessories/wieldable_items/misc/armorer_tongs',0), -(10132,10132,'accessories/wieldable_items/misc/carpenter_hammer',0), -(10133,10133,'accessories/wieldable_items/misc/jewelers_tongs',0), -(10134,10134,'accessories/wieldable_items/misc/provisioner_skillet',0), -(10135,10135,'accessories/wieldable_items/misc/sage_scroll',0), -(10136,10136,'accessories/wieldable_items/misc/tailor_long_needle',0), -(10137,10137,'accessories/wieldable_items/misc/woodworker_saw',0), -(10138,10138,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/chest',0), -(10139,10139,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/feet',0), -(10140,10140,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/forearms',0), -(10141,10141,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/hands',0), -(10142,10142,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/head',0), -(10143,10143,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/head_shadowknight_skull_vanguard',0), -(10144,10144,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/legs',0), -(10145,10145,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/legs_noskirt',0), -(10146,10146,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/right',0), -(10147,10147,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shadowknight_skull_pauldrons_left',0), -(10148,10148,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shadowknight_skull_pauldrons_right',0), -(10149,10149,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shoulders',0), -(10150,10150,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shoulders_nopauldrons',0), -(10151,10151,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shoulders_shadowknight_skull_vanguard',0), -(10152,10152,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/skirt',0), -(10153,10153,'accessories/wearable_items/_exp06/white_paladin_vanguard/chest',0), -(10154,10154,'accessories/wearable_items/_exp06/white_paladin_vanguard/feet',0), -(10155,10155,'accessories/wearable_items/_exp06/white_paladin_vanguard/forearms',0), -(10156,10156,'accessories/wearable_items/_exp06/white_paladin_vanguard/hands',0), -(10157,10157,'accessories/wearable_items/_exp06/white_paladin_vanguard/head',0), -(10158,10158,'accessories/wearable_items/_exp06/white_paladin_vanguard/head_white_paladin_vanguard',0), -(10159,10159,'accessories/wearable_items/_exp06/white_paladin_vanguard/legs',0), -(10160,10160,'accessories/wearable_items/_exp06/white_paladin_vanguard/legs_noskirt',0), -(10161,10161,'accessories/wearable_items/_exp06/white_paladin_vanguard/right',0), -(10162,10162,'accessories/wearable_items/_exp06/white_paladin_vanguard/shoulders',0), -(10163,10163,'accessories/wearable_items/_exp06/white_paladin_vanguard/shoulders_nopauldrons',0), -(10164,10164,'accessories/wearable_items/_exp06/white_paladin_vanguard/shoulders_white_paladin_vanguard',0), -(10165,10165,'accessories/wearable_items/_exp06/white_paladin_vanguard/skirt',0), -(10166,10166,'accessories/wearable_items/_exp06/white_paladin_vanguard/white_paladin_vanguard_pauldron_left',0), -(10167,10167,'accessories/wearable_items/_exp06/white_paladin_vanguard/white_paladin_vanguard_pauldron_right',0), -(10168,10168,'staticobjects/flora/dpo_jw_sporepod01',0), -(10169,10169,'creatures/mounts/warg_mount/warg_armor03_ice',0), -(10170,10170,'creatures/mounts/warg_mount/warg_armor03_lava',0), -(10171,10171,'creatures/mounts/warg_mount/warg_armor03_void',0), -(10172,10172,'creatures/mounts/carpet_lava',0), -(10173,10173,'creatures/mounts/carpet_void',0), -(10174,10174,'creatures/mounts/rhino_mount/rhino_armor01_void',0), -(10175,10175,'creatures/mounts/rhino_mount/rhino_armor01_lava',0), -(10176,10176,'creatures/mounts/rhino_mount/rhino_armor01_ice',0), -(10177,10177,'creatures/mounts/rhino_mount/rhino_armor01_golden',0), -(10178,10178,'creatures/mounts/rhino_mount/rhino_armor01_chrome',0), -(10179,10179,'staticobjects/weapons/dpo_felwithe_bws_staff',0), -(10180,10180,'staticobjects/pictures/eq2book_painting_venekor_dpo',0), -(10181,10181,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/head_shadowknight_elf_armor',0), -(10182,10182,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shadowknight_elf_pauldrons_left',0), -(10183,10183,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shadowknight_elf_pauldrons_right',0), -(10184,10184,'accessories/wearable_items/_exp06/shadowknight_skull_vanguard/shoulders_shadowknight_elf_armor',0), -(10185,10185,'accessories/wearable_items/_exp06/elf_armor_leather/shoulders_elf_pauldrons',0), -(10186,10186,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head',0), -(10187,10187,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/chest',0), -(10188,10188,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/chest_with_pauldrons',0), -(10189,10189,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/elf_armor_pauldron_left',0), -(10190,10190,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/elf_armor_pauldron_right',0), -(10191,10191,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/head',0), -(10192,10192,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/hood',0), -(10193,10193,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/pants',0), -(10194,10194,'accessories/wearable_items/_exp06/elf_armor_robe_black_red/skirt',0), -(10195,10195,'accessories/wearable_items/_exp06/elf_armor_robe_blue/chest',0), -(10196,10196,'accessories/wearable_items/_exp06/elf_armor_robe_blue/chest_with_pauldrons',0), -(10197,10197,'accessories/wearable_items/_exp06/elf_armor_robe_blue/elf_armor_pauldron_left',0), -(10198,10198,'accessories/wearable_items/_exp06/elf_armor_robe_blue/elf_armor_pauldron_right',0), -(10199,10199,'accessories/wearable_items/_exp06/elf_armor_robe_blue/head',0), -(10200,10200,'accessories/wearable_items/_exp06/elf_armor_robe_blue/hood',0), -(10201,10201,'accessories/wearable_items/_exp06/elf_armor_robe_blue/pants',0), -(10202,10202,'accessories/wearable_items/_exp06/elf_armor_robe_blue/skirt',0), -(10203,10203,'staticobjects/promo_items/equipment_display_01_nagaefen_dpo',0), -(10204,10204,'accessories/wearable_items/_exp06/elf_armor_chain_gold/chest',0), -(10205,10205,'accessories/wearable_items/_exp06/elf_armor_chain_gold/elf_armor_pauldron_left',0), -(10206,10206,'accessories/wearable_items/_exp06/elf_armor_chain_gold/elf_armor_pauldron_right',0), -(10207,10207,'accessories/wearable_items/_exp06/elf_armor_chain_gold/feet',0), -(10208,10208,'accessories/wearable_items/_exp06/elf_armor_chain_gold/forearms',0), -(10209,10209,'accessories/wearable_items/_exp06/elf_armor_chain_gold/hands',0), -(10210,10210,'accessories/wearable_items/_exp06/elf_armor_chain_gold/head',0), -(10211,10211,'accessories/wearable_items/_exp06/elf_armor_chain_gold/head_elf_armor',0), -(10212,10212,'accessories/wearable_items/_exp06/elf_armor_chain_gold/legs',0), -(10213,10213,'accessories/wearable_items/_exp06/elf_armor_chain_gold/legs_noskirt',0), -(10214,10214,'accessories/wearable_items/_exp06/elf_armor_chain_gold/shoulders',0), -(10215,10215,'accessories/wearable_items/_exp06/elf_armor_chain_gold/shoulders_nopauldrons',0), -(10216,10216,'accessories/wearable_items/_exp06/elf_armor_chain_gold/skirt',0), -(10217,10217,'staticobjects/promo_items/equipment_display_01_nagaefen_dpo',0), -(10218,10218,'staticobjects/soe_wallet/cherry_armoire_dpo',0), -(10219,10219,'staticobjects/soe_wallet/cherry_bench_dpo',0), -(10220,10220,'staticobjects/soe_wallet/cherry_cabinet_dpo',0), -(10221,10221,'staticobjects/soe_wallet/cherry_chair_dpo',0), -(10222,10222,'staticobjects/soe_wallet/cherry_dresser_dpo',0), -(10223,10223,'staticobjects/soe_wallet/cherry_nightstand_dpo',0), -(10224,10224,'staticobjects/soe_wallet/cherry_sleigh_bed_dpo',0), -(10225,10225,'staticobjects/soe_wallet/cherry_table_dpo',0), -(10226,10226,'accessories/wieldable_items/weapons/fist/fist_of_lava',0), -(10227,10227,'accessories/wieldable_items/shields/buckler_shield/brace_wall_of_air',0), -(10228,10228,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/chest',0), -(10229,10229,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/elf_armor_pauldron_left',0), -(10230,10230,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/elf_armor_pauldron_right',0), -(10231,10231,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/feet',0), -(10232,10232,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/forearms',0), -(10233,10233,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/hands',0), -(10234,10234,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/head',0), -(10235,10235,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/head_elf_armor',0), -(10236,10236,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/legs',0), -(10237,10237,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/legs_noskirt',0), -(10238,10238,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/shoulders',0), -(10239,10239,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/shoulders_nopauldrons',0), -(10240,10240,'accessories/wearable_items/_exp06/elf_armor_chain_black_blue/skirt',0), -(10241,10241,'accessories/wieldable_items/shields/buckler_shield/void_portal_buckler',0), -(10242,10242,'accessories/wieldable_items/shields/buckler_shield/brace_void_portal_buckler',0), -(10243,10243,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/chest',0), -(10244,10244,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/head',0), -(10245,10245,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/head_for_classic_erudite',0), -(10246,10246,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/hood',0), -(10247,10247,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/pants',0), -(10248,10248,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/skirt',0), -(10249,10249,'accessories/wearable_items/_exp06/predator_chain/head_predator_no_mask',0), -(10250,10250,'accessories/wearable_items/_exp06/ornate_leather01/chest',0), -(10251,10251,'accessories/wearable_items/_exp06/ornate_leather01/feet',0), -(10252,10252,'accessories/wearable_items/_exp06/ornate_leather01/forearms',0), -(10253,10253,'accessories/wearable_items/_exp06/ornate_leather01/hands',0), -(10254,10254,'accessories/wearable_items/_exp06/ornate_leather01/head',0), -(10255,10255,'accessories/wearable_items/_exp06/ornate_leather01/legs',0), -(10256,10256,'accessories/wearable_items/_exp06/ornate_leather01/legs_noskirt',0), -(10257,10257,'accessories/wearable_items/_exp06/ornate_leather01/shoulders',0), -(10258,10258,'accessories/wearable_items/_exp06/ornate_leather01/skirt',0), -(10259,10259,'accessories/wearable_items/_exp06/ornate_chain01/chest',0), -(10260,10260,'accessories/wearable_items/_exp06/ornate_chain01/feet',0), -(10261,10261,'accessories/wearable_items/_exp06/ornate_chain01/forearms',0), -(10262,10262,'accessories/wearable_items/_exp06/ornate_chain01/head',0), -(10263,10263,'accessories/wearable_items/_exp06/ornate_chain01/legs',0), -(10264,10264,'accessories/wearable_items/_exp06/ornate_chain01/legs_noskirt',0), -(10265,10265,'accessories/wearable_items/_exp06/ornate_chain01/shoulders',0), -(10266,10266,'accessories/wearable_items/_exp06/ornate_chain01/skirt',0), -(10267,10267,'accessories/wearable_items/_exp06/ornate_vanguard01/chest',0), -(10268,10268,'accessories/wearable_items/_exp06/ornate_vanguard01/feet',0), -(10269,10269,'accessories/wearable_items/_exp06/ornate_vanguard01/forearms',0), -(10270,10270,'accessories/wearable_items/_exp06/ornate_vanguard01/hands',0), -(10271,10271,'accessories/wearable_items/_exp06/ornate_vanguard01/head',0), -(10272,10272,'accessories/wearable_items/_exp06/ornate_vanguard01/legs',0), -(10273,10273,'accessories/wearable_items/_exp06/ornate_vanguard01/legs_noskirt',0), -(10274,10274,'accessories/wearable_items/_exp06/ornate_vanguard01/right',0), -(10275,10275,'accessories/wearable_items/_exp06/ornate_vanguard01/shoulders',0), -(10276,10276,'accessories/wearable_items/_exp06/ornate_vanguard01/shoulders_nopauldrons',0), -(10277,10277,'accessories/wearable_items/_exp06/ornate_vanguard01/skirt',0), -(10278,10278,'accessories/wearable_items/_exp06/elf_armor_leather/head_elf_armor_no_mask',0), -(10279,10279,'accessories/wearable_items/leather/plain/unseen_hand_specfx/chest',0), -(10280,10280,'accessories/wearable_items/leather/plain/unseen_hand_specfx/feet',0), -(10281,10281,'accessories/wearable_items/leather/plain/unseen_hand_specfx/forearms',0), -(10282,10282,'accessories/wearable_items/leather/plain/unseen_hand_specfx/hands',0), -(10283,10283,'accessories/wearable_items/leather/plain/unseen_hand_specfx/head',0), -(10284,10284,'accessories/wearable_items/leather/plain/unseen_hand_specfx/legs',0), -(10285,10285,'accessories/wearable_items/leather/plain/unseen_hand_specfx/legs_noskirt',0), -(10286,10286,'accessories/wearable_items/leather/plain/unseen_hand_specfx/pauldron01_leather_heavy_left',0), -(10287,10287,'accessories/wearable_items/leather/plain/unseen_hand_specfx/pauldron01_leather_heavy_right',0), -(10288,10288,'accessories/wearable_items/leather/plain/unseen_hand_specfx/shoulders',0), -(10289,10289,'accessories/wearable_items/leather/plain/unseen_hand_specfx/shoulders_leather_heavy_both',0), -(10290,10290,'accessories/wearable_items/leather/plain/unseen_hand_specfx/skirt',0), -(10291,10291,'accessories/wearable_items/_exp06/ornate_magus01/arms',0), -(10292,10292,'accessories/wearable_items/_exp06/ornate_magus01/chest',0), -(10293,10293,'accessories/wearable_items/_exp06/ornate_magus01/skirt',0), -(10294,10294,'accessories/wearable_items/_exp06/vanguard_iceknight/chest',0), -(10295,10295,'accessories/wearable_items/_exp06/vanguard_iceknight/feet',0), -(10296,10296,'accessories/wearable_items/_exp06/vanguard_iceknight/forearms',0), -(10297,10297,'accessories/wearable_items/_exp06/vanguard_iceknight/hands',0), -(10298,10298,'accessories/wearable_items/_exp06/vanguard_iceknight/head',0), -(10299,10299,'accessories/wearable_items/_exp06/vanguard_iceknight/head_vanguard_iceknight_skull_vanguard',0), -(10300,10300,'accessories/wearable_items/_exp06/vanguard_iceknight/legs',0), -(10301,10301,'accessories/wearable_items/_exp06/vanguard_iceknight/legs_noskirt',0), -(10302,10302,'accessories/wearable_items/_exp06/vanguard_iceknight/right',0), -(10303,10303,'accessories/wearable_items/_exp06/vanguard_iceknight/shoulders',0), -(10304,10304,'accessories/wearable_items/_exp06/vanguard_iceknight/shoulders_nopauldrons',0), -(10305,10305,'accessories/wearable_items/_exp06/vanguard_iceknight/shoulders_vanguard_ice_skull_pauldrons',0), -(10306,10306,'accessories/wearable_items/_exp06/vanguard_iceknight/skirt',0), -(10307,10307,'accessories/wearable_items/_exp06/vanguard_iceknight/vanguard_iceknight_skull_pauldrons_left',0), -(10308,10308,'accessories/wearable_items/_exp06/vanguard_iceknight/vanguard_iceknight_skull_pauldrons_right',0), -(10309,10309,'accessories/wearable_items/profesion_hats/flower_circlet/daisy_circlet_head',0), -(10310,10310,'accessories/wearable_items/profesion_hats/flower_circlet/daisy_red_circlet_head',0), -(10311,10311,'accessories/wearable_items/profesion_hats/flower_circlet/flower_circlet_full_head',0), -(10312,10312,'accessories/wearable_items/profesion_hats/flower_circlet/flower_circlet_full_head1',0), -(10313,10313,'accessories/wearable_items/profesion_hats/flower_circlet/mum_circlet_head',0), -(10314,10314,'accessories/wearable_items/profesion_hats/flower_circlet/mum_green_circlet_head',0), -(10315,10315,'staticobjects/statues/firiona_vie_fanfaire_dpo',0), -(10316,10316,'accessories/wearable_items/profesion_hats/flower_circlet/mum_orange_circlet_head',0), -(10317,10317,'accessories/wearable_items/profesion_hats/flower_circlet/flower_circlet_black',0), -(10318,10318,'accessories/wearable_items/profesion_hats/flower_circlet/mum_red_circlet_head',0), -(10319,10319,'accessories/wearable_items/profesion_hats/flower_circlet/mum_pink_yellow_circlet_head',0), -(10320,10320,'accessories/wearable_items/profesion_hats/flower_circlet/mum_pink_white_circlet_head',0), -(10321,10321,'accessories/wearable_items/profesion_hats/flower_circlet/daisy_yellow_circlet_head',0), -(10322,10322,'accessories/wearable_items/profesion_hats/flower_circlet/daisy_blue_circlet_head',0), -(10323,10323,'accessories/wearable_items/profesion_hats/flower_circlet/daisy_pink_circlet_head',0), -(10324,10324,'staticobjects/crystals/dpo_crystals_02',0), -(10325,10325,'staticobjects/flora/dpo_jw_firecactus',0), -(10326,10326,'staticobjects/tree/dpo_jw_tree_oak_green',0), -(10327,10327,'staticobjects/tree/dpo_ant_ext_oaktree',0), -(10328,10328,'staticobjects/mushroom/mushroom_spotted_lavender',0), -(10329,10329,'staticobjects/portals/dpo_mushroom_ring',0), -(10330,10330,'accessories/wearable_items/_exp06/magic_rune_leather01/chest',0), -(10331,10331,'accessories/wearable_items/_exp06/magic_rune_leather01/feet',0), -(10332,10332,'accessories/wearable_items/_exp06/magic_rune_leather01/forearms',0), -(10333,10333,'accessories/wearable_items/_exp06/magic_rune_leather01/hands',0), -(10334,10334,'accessories/wearable_items/_exp06/magic_rune_leather01/head',0), -(10335,10335,'accessories/wearable_items/_exp06/magic_rune_leather01/legs',0), -(10336,10336,'accessories/wearable_items/_exp06/magic_rune_leather01/legs_noskirt',0), -(10337,10337,'accessories/wearable_items/_exp06/magic_rune_leather01/shoulders',0), -(10338,10338,'accessories/wearable_items/_exp06/magic_rune_leather01/skirt',0), -(10339,10339,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/chest',0), -(10340,10340,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/feet',0), -(10341,10341,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/forearms',0), -(10342,10342,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/frostrune_pauldron_left',0), -(10343,10343,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/frostrune_pauldron_right',0), -(10344,10344,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/hands',0), -(10345,10345,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/head',0), -(10346,10346,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/head_frostrune_epic',0), -(10347,10347,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/legs',0), -(10348,10348,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/legs_noskirt',0), -(10349,10349,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/right',0), -(10350,10350,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/shoulders',0), -(10351,10351,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/shoulders_frostrune_epic',0), -(10352,10352,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/shoulders_nopauldrons',0), -(10353,10353,'accessories/wearable_items/_exp06/frostrune_armor_vanguard/skirt',0), -(10354,10354,'_exp05/monsters/skull_wisp_blue',0), -(10355,10355,'_exp05/monsters/skull_wisp_green',0), -(10356,10356,'_exp05/monsters/skull_wisp_purple',0), -(10357,10357,'staticobjects/portals/gorowyn_teleporter',0), -(10358,10358,'accessories/wearable_items/profesion_hats/dwarf_vanguard_helm/head_dwarf_armor_vanguard',0), -(10359,10359,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_black_bunny_hat',0), -(10360,10360,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_green_bunny_hat',0), -(10361,10361,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_grey_bunny_hat',0), -(10362,10362,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_pink_bunny_hat',0), -(10363,10363,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_red_bunny_hat',0), -(10364,10364,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_snow_bunny_hat',0), -(10365,10365,'accessories/wearable_items/profesion_hats/snow_bunny_hat/head_tan_bunny_hat',0), -(10366,10366,'accessories/wearable_items/_exp06/ornate_chain01/hands',0), -(10367,10367,'accessories/wearable_items/_exp06/magic_rune_chain01/chest',0), -(10368,10368,'accessories/wearable_items/_exp06/magic_rune_chain01/feet',0), -(10369,10369,'accessories/wearable_items/_exp06/magic_rune_chain01/forearms',0), -(10370,10370,'accessories/wearable_items/_exp06/magic_rune_chain01/hands',0), -(10371,10371,'accessories/wearable_items/_exp06/magic_rune_chain01/head',0), -(10372,10372,'accessories/wearable_items/_exp06/magic_rune_chain01/legs',0), -(10373,10373,'accessories/wearable_items/_exp06/magic_rune_chain01/legs_noskirt',0), -(10374,10374,'accessories/wearable_items/_exp06/magic_rune_chain01/shoulders',0), -(10375,10375,'accessories/wearable_items/_exp06/magic_rune_chain01/skirt',0), -(10376,10376,'staticobjects/liveevent/cityfestivals/dpo_dw_obj_chandelier_gothic01',0), -(10377,10377,'staticobjects/liveevent/cityfestivals/dpo_floating_lantern_blue',0), -(10378,10378,'staticobjects/liveevent/cityfestivals/dpo_floating_lantern_green',0), -(10379,10379,'staticobjects/liveevent/cityfestivals/dpo_floating_lantern_purple',0), -(10380,10380,'staticobjects/liveevent/cityfestivals/dpo_floating_lantern_red',0), -(10381,10381,'staticobjects/liveevent/cityfestivals/dpo_floating_lantern_yellow',0), -(10382,10382,'staticobjects/liveevent/cityfestivals/dpo_nk_obj_banner_cloth',0), -(10383,10383,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/chest',1096), -(10384,10384,'staticobjects/liveevent/cityfestivals/gf_elf_bed01',0), -(10385,10385,'staticobjects/liveevent/cityfestivals/gf_elf_chair02',0), -(10386,10386,'staticobjects/liveevent/cityfestivals/gf_elf_chair02_yellow',0), -(10387,10387,'staticobjects/liveevent/cityfestivals/gf_elf_table_bedside01',0), -(10388,10388,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/feet',1096), -(10389,10389,'staticobjects/liveevent/cityfestivals/kel_banner_guild_protectors01',0), -(10390,10390,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/forearms',1096), -(10391,10391,'staticobjects/liveevent/cityfestivals/kel_banner_standing_protectors01',0), -(10392,10392,'staticobjects/liveevent/cityfestivals/nk_obj_chair_bar_stool01',0), -(10393,10393,'staticobjects/liveevent/cityfestivals/nk_obj_chair_simple01',0), -(10394,10394,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/hands',1096), -(10395,10395,'accessories/wearable_items/_exp06/frostrune_armor_leather/chest',0), -(10396,10396,'accessories/wearable_items/_exp06/frostrune_armor_leather/feet',0), -(10397,10397,'accessories/wearable_items/_exp06/frostrune_armor_leather/forearms',0), -(10398,10398,'accessories/wearable_items/_exp06/frostrune_armor_leather/frostrune_leather_epic_pauldron_left',0), -(10399,10399,'accessories/wearable_items/_exp06/frostrune_armor_leather/frostrune_leather_epic_pauldron_right',0), -(10400,10400,'accessories/wearable_items/_exp06/frostrune_armor_leather/hands',0), -(10401,10401,'accessories/wearable_items/_exp06/frostrune_armor_leather/head',0), -(10402,10402,'accessories/wearable_items/_exp06/frostrune_armor_leather/head_frostrune_leather_epic',0), -(10403,10403,'accessories/wearable_items/_exp06/frostrune_armor_leather/legs',0), -(10404,10404,'accessories/wearable_items/_exp06/frostrune_armor_leather/legs_noskirt',0), -(10405,10405,'accessories/wearable_items/_exp06/frostrune_armor_leather/shoulders',0), -(10406,10406,'accessories/wearable_items/_exp06/frostrune_armor_leather/shoulders_nopauldrons',0), -(10407,10407,'accessories/wearable_items/_exp06/frostrune_armor_leather/skirt',0), -(10408,10408,'accessories/wearable_items/_exp06/frostrune_armor_chain/chest',0), -(10409,10409,'accessories/wearable_items/_exp06/frostrune_armor_chain/feet',0), -(10410,10410,'accessories/wearable_items/_exp06/frostrune_armor_chain/forearms',0), -(10411,10411,'accessories/wearable_items/_exp06/frostrune_armor_chain/frostrune_chain_epic_pauldron_left',0), -(10412,10412,'accessories/wearable_items/_exp06/frostrune_armor_chain/frostrune_chain_epic_pauldron_right',0), -(10413,10413,'accessories/wearable_items/_exp06/frostrune_armor_chain/hands',0), -(10414,10414,'accessories/wearable_items/_exp06/frostrune_armor_chain/head',0), -(10415,10415,'accessories/wearable_items/_exp06/frostrune_armor_chain/head_frostrune_chain_epic',0), -(10416,10416,'accessories/wearable_items/_exp06/frostrune_armor_chain/legs',0), -(10417,10417,'accessories/wearable_items/_exp06/frostrune_armor_chain/legs_noskirt',0), -(10418,10418,'accessories/wearable_items/_exp06/frostrune_armor_chain/shoulders',0), -(10419,10419,'accessories/wearable_items/_exp06/frostrune_armor_chain/shoulders_nopauldrons',0), -(10420,10420,'accessories/wearable_items/_exp06/frostrune_armor_chain/skirt',0), -(10421,10421,'accessories/wearable_items/_exp06/frostrune_armor_robe/chest',0), -(10422,10422,'accessories/wearable_items/_exp06/frostrune_armor_robe/chest_with_pauldrons',0), -(10423,10423,'accessories/wearable_items/_exp06/frostrune_armor_robe/frostrune_armor_pauldron_left',0), -(10424,10424,'accessories/wearable_items/_exp06/frostrune_armor_robe/frostrune_armor_pauldron_right',0), -(10425,10425,'accessories/wearable_items/_exp06/frostrune_armor_robe/head',0), -(10426,10426,'accessories/wearable_items/_exp06/frostrune_armor_robe/hood',0), -(10427,10427,'accessories/wearable_items/_exp06/frostrune_armor_robe/pants',0), -(10428,10428,'accessories/wearable_items/_exp06/frostrune_armor_robe/skirt',0), -(10429,10429,'accessories/wearable_items/robe_02/pants',0), -(10430,10430,'creatures/monsters/lion_snow',0), -(10431,10431,'creatures/monsters/lioness_snow',0), -(10432,10432,'staticobjects/rocks/dpo_eh_rock_medium05',0), -(10433,10433,'accessories/wieldable_items/weapons/staff/firiona_vie_style_wand/firiona_vie_style_wand',0), -(10434,10434,'accessories/wearable_items/_exp06/magic_rune_robe01/chest',0), -(10435,10435,'accessories/wearable_items/_exp06/magic_rune_robe01/head',0), -(10436,10436,'accessories/wearable_items/_exp06/magic_rune_robe01/hood',0), -(10437,10437,'accessories/wearable_items/_exp06/magic_rune_robe01/pants',0), -(10438,10438,'accessories/wearable_items/_exp06/magic_rune_robe01/skirt',0), -(10439,10439,'accessories/wearable_items/profesion_hats/firiona_vie_tiara/head_firiona_vie_tiara',0), -(10440,10440,'creatures/mounts/carpet_shamrock',0), -(10441,10441,'creatures/mounts/carpet_leaf',0), -(10442,10442,'creatures/mounts/unicorn/unicorn_saddle01_autumnstrider',0), -(10443,10443,'creatures/mounts/unicorn/unicorn_saddle01_springstrider',0), -(10444,10444,'staticobjects/liveevent/cityfestivals/dw_hehome_streetlamp01',0), -(10445,10445,'staticobjects/liveevent/cityfestivals/dpo_tapestry_design_void_energy',0), -(10446,10446,'staticobjects/liveevent/cityfestivals/goro_obj_lantern_green_pfx_col',0), -(10447,10447,'staticobjects/liveevent/cityfestivals/goro_obj_lantern_pink_pfx_col',0), -(10448,10448,'staticobjects/tcg/tcg_ice_cream_tapestry',0), -(10449,10449,'staticobjects/tcg/tcg_tapestry_kaltuk',0), -(10450,10450,'staticobjects/tcg/tcg_tapestry_nurgg',0), -(10451,10451,'staticobjects/crystals/dpo_crystals_03',0), -(10452,10452,'staticobjects/flora/dpo_ceiling_harvesting_roots_tier03',0), -(10453,10453,'staticobjects/flora/dpo_gf_flora_mushroom_huge02',0), -(10454,10454,'staticobjects/flora/dpo_gf_flora_mushroom_small01',0), -(10455,10455,'staticobjects/flora/dpo_ow_stumpwell01',0), -(10456,10456,'staticobjects/flora/dpo_wall_gf_flora_r02_vine01',0), -(10457,10457,'staticobjects/flora/dpo_ceiling_lf_flora_rm04_vine01',0), -(10458,10458,'staticobjects/flora/dpo_lf_flora_rm04_vine01',0), -(10459,10459,'staticobjects/flora/dpo_gf_flora_r02_vine02_flowers03',0), -(10460,10460,'staticobjects/flora/dpo_lf_flora_rm01_vine01',0), -(10461,10461,'staticobjects/flora/dpo_lf_flora_rm08_vine02_flower',0), -(10462,10462,'accessories/wearable_items/_exp06/magic_rune_magus01/arms',0), -(10463,10463,'accessories/wearable_items/_exp06/magic_rune_magus01/chest',0), -(10464,10464,'accessories/wearable_items/_exp06/magic_rune_magus01/legs',0), -(10465,10465,'accessories/wearable_items/_exp06/magic_rune_magus01/skirt',0), -(10466,10466,'_exp04/zones/objects/kurns_tower/kt_elevator_switch_01',0), -(10467,10467,'creatures/mounts/horse_frost_unicorn/horse_frost_unicorn',0), -(10468,10468,'creatures/pets/baby_dragon_evil_black',0), -(10469,10469,'creatures/pets/baby_dragon_evil_dark',0), -(10470,10470,'creatures/pets/baby_dragon_evil_red',0), -(10471,10471,'creatures/pets/baby_dragon_good_blue',0), -(10472,10472,'creatures/pets/baby_dragon_good_green',0), -(10473,10473,'creatures/pets/baby_dragon_good_pink',0), -(10474,10474,'accessories/wearable_items/_exp06/ornate_magus01/legs',0), -(10475,10475,'accessories/wearable_items/cloak/exp06/cloak_kaladim_brew',0), -(10476,10476,'accessories/wearable_items/cloak/exp06/cloak_shard_of_love',0), -(10477,10477,'accessories/wearable_items/cloak/exp06/cloak_arachnid',0), -(10478,10478,'accessories/wearable_items/cloak/exp06/cloak_cityfest_reward',0), -(10479,10479,'accessories/wearable_items/_exp06/magic_rune_vanguard01/chest',0), -(10480,10480,'accessories/wearable_items/_exp06/magic_rune_vanguard01/feet',0), -(10481,10481,'accessories/wearable_items/_exp06/magic_rune_vanguard01/forearms',0), -(10482,10482,'accessories/wearable_items/_exp06/magic_rune_vanguard01/hands',0), -(10483,10483,'accessories/wearable_items/_exp06/magic_rune_vanguard01/head',0), -(10484,10484,'accessories/wearable_items/_exp06/magic_rune_vanguard01/legs',0), -(10485,10485,'accessories/wearable_items/_exp06/magic_rune_vanguard01/legs_noskirt',0), -(10486,10486,'accessories/wearable_items/_exp06/magic_rune_vanguard01/right',0), -(10487,10487,'accessories/wearable_items/_exp06/magic_rune_vanguard01/shoulders',0), -(10488,10488,'accessories/wearable_items/_exp06/magic_rune_vanguard01/shoulders_nopauldrons',0), -(10489,10489,'accessories/wearable_items/_exp06/magic_rune_vanguard01/skirt',0), -(10490,10490,'accessories/wearable_items/cloak/exp06/cloak_dark_rider',0), -(10491,10491,'accessories/wearable_items/cloak/exp06/cloak_boots_and_wings',0), -(10492,10492,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/chest',0), -(10493,10493,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/feet',0), -(10494,10494,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/forearms',0), -(10495,10495,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/hands',0), -(10496,10496,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/head',0), -(10497,10497,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/legs',0), -(10498,10498,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/legs_noskirt',0), -(10499,10499,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/right',0), -(10500,10500,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/shoulders',0), -(10501,10501,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/shoulders_nopauldrons',0), -(10502,10502,'accessories/wearable_items/_exp06/magic_rune_vanguard_plain/skirt',0), -(10503,10503,'creatures/tu/dragonfly_faerie_white',0), -(10504,10504,'accessories/wearable_items/cloak/void_cloaks/void_cloak_fighter',0), -(10505,10505,'accessories/wearable_items/cloak/void_cloaks/void_cloak_mage',0), -(10506,10506,'accessories/wearable_items/cloak/void_cloaks/void_cloak_priest',0), -(10507,10507,'accessories/wearable_items/cloak/void_cloaks/void_cloak_range_scout',0), -(10508,10508,'accessories/wearable_items/cloak/void_cloaks/void_cloak_scout',0), -(10509,10509,'accessories/wearable_items/cloak/void_cloaks/void_cloak_summoner',0), -(10510,10510,'creatures/monsters/willowisp_arasi_spirit_bud',0), -(10511,10511,'creatures/monsters/willowisp_fae_spirit_bud',0), -(10512,10512,'creatures/monsters/willowisp_sparkle_purple',0), -(10513,10513,'creatures/monsters/willowisp_sparkle_red',0), -(10514,10514,'creatures/monsters/willowisp_clockwork',0), -(10515,10515,'creatures/monsters/willowisp_faydark_autumn',0), -(10516,10516,'creatures/monsters/willowisp_faydark_spring',0), -(10517,10517,'creatures/monsters/willowisp_rose_petal_red',0), -(10518,10518,'creatures/monsters/willowisp_rose_petal_yellow',0), -(10519,10519,'accessories/wearable_items/_exp06/magic_rune_robe_plain/chest',0), -(10520,10520,'accessories/wearable_items/_exp06/magic_rune_robe_plain/head',0), -(10521,10521,'accessories/wearable_items/_exp06/magic_rune_robe_plain/hood',0), -(10522,10522,'accessories/wearable_items/_exp06/magic_rune_robe_plain/pants',0), -(10523,10523,'accessories/wearable_items/_exp06/magic_rune_robe_plain/skirt',0), -(10524,10524,'accessories/wearable_items/_exp06/magic_rune_magus_plain/arms',0), -(10525,10525,'accessories/wearable_items/_exp06/magic_rune_magus_plain/chest',0), -(10526,10526,'accessories/wearable_items/_exp06/magic_rune_magus_plain/legs',0), -(10527,10527,'accessories/wearable_items/_exp06/magic_rune_magus_plain/skirt',0), -(10528,10528,'creatures/monsters/clockwork_gazer',0), -(10529,10529,'creatures/monsters/clockwork_rustysteel_gazer',0), -(10530,10530,'creatures/monsters/clockwork_steel_gazer',0), -(10531,10531,'creatures/monsters/mummified_gazer',0), -(10532,10532,'creatures/monsters/gazer',0), -(10533,10533,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_ornate_blue_fx',0), -(10534,10534,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_ornate_green_fx',0), -(10535,10535,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_ornate_purple_fx',0), -(10536,10536,'accessories/wieldable_items/weapons/great_sword/dragon_katana/dragon_katana_ornate_yellow_fx',0), -(10537,10537,'accessories/wearable_items/_exp06/magic_rune_leather_plain/chest',0), -(10538,10538,'accessories/wearable_items/_exp06/magic_rune_leather_plain/feet',0), -(10539,10539,'accessories/wearable_items/_exp06/magic_rune_leather_plain/forearms',0), -(10540,10540,'accessories/wearable_items/_exp06/magic_rune_leather_plain/hands',0), -(10541,10541,'accessories/wearable_items/_exp06/magic_rune_leather_plain/head',0), -(10542,10542,'accessories/wearable_items/_exp06/magic_rune_leather_plain/legs',0), -(10543,10543,'accessories/wearable_items/_exp06/magic_rune_leather_plain/legs_noskirt',0), -(10544,10544,'accessories/wearable_items/_exp06/magic_rune_leather_plain/shoulders',0), -(10545,10545,'accessories/wearable_items/_exp06/magic_rune_leather_plain/skirt',0), -(10546,10546,'staticobjects/liveevent/tinkerfest/dpo_sfm_bed_single01',0), -(10547,10547,'staticobjects/liveevent/tinkerfest/dpo_sfm_bench_ornate01',0), -(10548,10548,'staticobjects/liveevent/tinkerfest/dpo_sfm_bench_ornate01_long',0), -(10549,10549,'staticobjects/liveevent/tinkerfest/dpo_sfm_bookcase_wood01',0), -(10550,10550,'staticobjects/liveevent/tinkerfest/dpo_sfm_chair_ornate01',0), -(10551,10551,'staticobjects/liveevent/tinkerfest/dpo_sfm_chair_ornate02',0), -(10552,10552,'staticobjects/liveevent/tinkerfest/dpo_sfm_chest_ornate01',0), -(10553,10553,'staticobjects/liveevent/tinkerfest/dpo_sfm_chest_ornate02',0), -(10554,10554,'staticobjects/flora/dpo_gf_plant_cattail02',0), -(10555,10555,'staticobjects/liveevent/tinkerfest/dpo_inna_landing_governor01',0), -(10556,10556,'staticobjects/liveevent/tinkerfest/dpo_orcishwastes_smokestack01',0), -(10557,10557,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_large01_grey',0), -(10558,10558,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_large01_red',0), -(10559,10559,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_large01_red_rotating',0), -(10560,10560,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_large02_ronium_upright',0), -(10561,10561,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_large02_yellow_upright',0), -(10562,10562,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/head',1096), -(10563,10563,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/legs',1096), -(10564,10564,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium01_red',0), -(10565,10565,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_grey',0), -(10566,10566,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_red',0), -(10567,10567,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_red_rotating',0), -(10568,10568,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_yellow',0), -(10569,10569,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_yellow_rotating',0), -(10570,10570,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_small01_red',0), -(10571,10571,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_small01_red_rotating',0), -(10572,10572,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_small01_yellow',0), -(10573,10573,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_small01_yellow_rotating',0), -(10574,10574,'staticobjects/liveevent/tinkerfest/dpo_sfm_gearpiece01_yellow',0), -(10575,10575,'staticobjects/liveevent/tinkerfest/dpo_sfm_lights_gnome_lamp01',0), -(10576,10576,'staticobjects/liveevent/tinkerfest/dpo_sfm_lights_gnome_lantern01',0), -(10577,10577,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_freestanding01',0), -(10578,10578,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_freestanding02',0), -(10579,10579,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_freestanding03',0), -(10580,10580,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_freestanding04',0), -(10581,10581,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_lantern01',0), -(10582,10582,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_lantern02',0), -(10583,10583,'staticobjects/liveevent/tinkerfest/dpo_sfm_spring_upright01_red',0), -(10584,10584,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_mine01',0), -(10585,10585,'staticobjects/liveevent/tinkerfest/dpo_sfm_lightsource_mine02',0), -(10586,10586,'staticobjects/liveevent/tinkerfest/dpo_soleye_gnome_rockpick02',0), -(10587,10587,'staticobjects/liveevent/tinkerfest/dpo_soleye_lightpost01',0), -(10588,10588,'staticobjects/liveevent/tinkerfest/dpo_soleye_standlamp01',0), -(10589,10589,'staticobjects/liveevent/tinkerfest/dpo_soleye_walllamp01',0), -(10590,10590,'staticobjects/scrolls/dpo_gf_scroll_single01',0), -(10591,10591,'staticobjects/scrolls/dpo_gf_scrolls_parchmentcombo01',0), -(10592,10592,'staticobjects/liveevent/tinkerfest/dpo_sfm_table_wood01',0), -(10593,10593,'staticobjects/liveevent/tinkerfest/dpo_sfm_table_woodround01',0), -(10594,10594,'staticobjects/liveevent/tinkerfest/dpo_sfm_gnome_mug01',0), -(10595,10595,'accessories/wieldable_items/weapons/exp06/2h_sword/exp06_2h_axe_jagged_frostrune',0), -(10596,10596,'accessories/wieldable_items/soga_weapons/unique4/demon_eye_red_purple',0), -(10597,10597,'accessories/wearable_items/cloak/exp06/cloak_magic_rune',0), -(10598,10598,'accessories/wearable_items/cloak/exp06/cloak_frostrune',0), -(10599,10599,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/chest',0), -(10600,10600,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/chest_dwarf_vanguard_plate',0), -(10601,10601,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/dwarf_armor_vanguard_pauldron_left',0), -(10602,10602,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/dwarf_armor_vanguard_pauldron_right',0), -(10603,10603,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/dwarf_vanguard_chest_plate',0), -(10604,10604,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/feet',0), -(10605,10605,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/forearms',0), -(10606,10606,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/hands',0), -(10607,10607,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/head',0), -(10608,10608,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/legs',0), -(10609,10609,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/legs_noskirt',0), -(10610,10610,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/right',0), -(10611,10611,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/shoulders',0), -(10612,10612,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/shoulders_dwarf_armor_vanguard',0), -(10613,10613,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/shoulders_nopauldrons',0), -(10614,10614,'accessories/wearable_items/_exp06/dwarf_armor_vanguard/skirt',0), -(10615,10615,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/legs_noskirt',1096), -(10616,10616,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/shoulders',1096), -(10617,10617,'staticobjects/liveevent/cityfestivals/dpo_fprt_door_expensive01',0), -(10618,10618,'staticobjects/liveevent/cityfestivals/dpo_fprt_door_fancy01',0), -(10619,10619,'accessories/wearable_items/_exp08/dragon_armor/leather2_slate/shoulders_epic',1096), -(10620,10620,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/skirt',1096), -(10621,10621,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/chest',1096), -(10622,10622,'staticobjects/liveevent/tinkerfest/dpo_gnome_mech03_gears_01',0), -(10623,10623,'staticobjects/liveevent/tinkerfest/dpo_hum_genericmarker003',0), -(10624,10624,'staticobjects/liveevent/tinkerfest/dpo_hum_genericmarker003_wall',0), -(10625,10625,'staticobjects/liveevent/tinkerfest/dpo_qey_cog_flat',0), -(10626,10626,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium01_red_rotating',0), -(10627,10627,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium01_red_rotating',0), -(10628,10628,'staticobjects/liveevent/tinkerfest/dpo_sfm_gear_medium02_grey_rotating',0), -(10629,10629,'staticobjects/liveevent/tinkerfest/dpo_sfm_table_wood01',0), -(10630,10630,'staticobjects/liveevent/tinkerfest/dpo_soleye_rotating_sprocket01',0), -(10631,10631,'staticobjects/liveevent/tinkerfest/dpo_soleye_rotating_sprocket02',0), -(10632,10632,'staticobjects/liveevent/tinkerfest/dpo_soleye_sprocket01',0), -(10633,10633,'staticobjects/liveevent/tinkerfest/dpo_soleye_sprocket02',0), -(10634,10634,'staticobjects/liveevent/tinkerfest/eig_tinkerfest_sparkly',0), -(10635,10635,'staticobjects/plants/houseitem_feerrott_plant_fern1',0), -(10636,10636,'staticobjects/liveevent/tinkerfest/gnome_cog_cup',0), -(10637,10637,'accessories/wearable_items/_exp06/raven_armor_chain/chest',0), -(10638,10638,'accessories/wearable_items/_exp06/raven_armor_chain/feet',0), -(10639,10639,'accessories/wearable_items/_exp06/raven_armor_chain/forearms',0), -(10640,10640,'accessories/wearable_items/_exp06/raven_armor_chain/hands',0), -(10641,10641,'accessories/wearable_items/_exp06/raven_armor_chain/head',0), -(10642,10642,'accessories/wearable_items/_exp06/raven_armor_chain/head_raven_armor_chain',0), -(10643,10643,'accessories/wearable_items/_exp06/raven_armor_chain/legs',0), -(10644,10644,'accessories/wearable_items/_exp06/raven_armor_chain/legs_noskirt',0), -(10645,10645,'accessories/wearable_items/_exp06/raven_armor_chain/raven_shoulder_left',0), -(10646,10646,'accessories/wearable_items/_exp06/raven_armor_chain/raven_shoulder_right',0), -(10647,10647,'accessories/wearable_items/_exp06/raven_armor_chain/shoulders',0), -(10648,10648,'accessories/wearable_items/_exp06/raven_armor_chain/shoulders_raven_chain',0), -(10649,10649,'accessories/wearable_items/_exp06/raven_armor_chain/skirt',0), -(10650,10650,'accessories/wearable_items/_exp06/raven_armor_leather/chest',0), -(10651,10651,'accessories/wearable_items/_exp06/raven_armor_leather/feet',0), -(10652,10652,'accessories/wearable_items/_exp06/raven_armor_leather/forearms',0), -(10653,10653,'accessories/wearable_items/_exp06/raven_armor_leather/hands',0), -(10654,10654,'accessories/wearable_items/_exp06/raven_armor_leather/head',0), -(10655,10655,'accessories/wearable_items/_exp06/raven_armor_leather/head_raven_armor_leather',0), -(10656,10656,'accessories/wearable_items/_exp06/raven_armor_leather/legs',0), -(10657,10657,'accessories/wearable_items/_exp06/raven_armor_leather/legs_noskirt',0), -(10658,10658,'accessories/wearable_items/_exp06/raven_armor_leather/raven_shoulder_left',0), -(10659,10659,'accessories/wearable_items/_exp06/raven_armor_leather/raven_shoulder_right',0), -(10660,10660,'accessories/wearable_items/_exp06/raven_armor_leather/shoulders',0), -(10661,10661,'accessories/wearable_items/_exp06/raven_armor_leather/shoulders_raven_leather',0), -(10662,10662,'accessories/wearable_items/_exp06/raven_armor_leather/skirt',0), -(10663,10663,'accessories/wearable_items/_exp06/raven_robe/chest',0), -(10664,10664,'accessories/wearable_items/_exp06/raven_robe/head',0), -(10665,10665,'accessories/wearable_items/_exp06/raven_robe/pants',0), -(10666,10666,'accessories/wearable_items/_exp06/raven_robe/skirt',0), -(10667,10667,'accessories/wearable_items/cloak/exp06/cloak_kruzz_fur',0), -(10668,10668,'creatures/monsters/mantaray_frost',0), -(10669,10669,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/chest_epic',1096), -(10670,10670,'staticobjects/liveevent/cityfestivals/dpo_gf_kel_int_divider_wall01_blackmarble',0), -(10671,10671,'staticobjects/liveevent/cityfestivals/dpo_gf_kel_int_divider_wall01_bluemarble',0), -(10672,10672,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/feet',1096), -(10673,10673,'staticobjects/liveevent/cityfestivals/dpo_gf_kel_int_divider_wall01_redmarble',0), -(10674,10674,'staticobjects/liveevent/cityfestivals/dpo_gf_kel_int_divider_wall01_whitemarble',0), -(10675,10675,'staticobjects/liveevent/tinkerfest/dpo_gf_kel_int_divider_wall01_goldpatternedmetal',0), -(10676,10676,'staticobjects/liveevent/tinkerfest/dpo_gf_kel_int_divider_wall01_patternedmetal',0), -(10677,10677,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_altarwood',0), -(10678,10678,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_ashwood',0), -(10679,10679,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_blondwood',0), -(10680,10680,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_brownwood',0), -(10681,10681,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_fairy_woodbrownmoss',0), -(10682,10682,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_marrplanks',0), -(10683,10683,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_wavywood',0), -(10684,10684,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_weatheredplanks',0), -(10685,10685,'creatures/monsters/lion_ghost_red',0), -(10686,10686,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_metalwood',0), -(10687,10687,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_redwood',0), -(10688,10688,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_rosewood',0), -(10689,10689,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_sandalwood',0), -(10690,10690,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_tablenoplanks',0), -(10691,10691,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_tableplanks',0), -(10692,10692,'staticobjects/plants/houseitem_feerrott_plant_bigleaf',0), -(10693,10693,'accessories/wearable_items/cloak/exp06/cloak_roadyle_terethe_yol',0), -(10694,10694,'ec/pc/human/human_male_headless',0), -(10695,10695,'creatures/monsters/willowisp_seaweed',0), -(10696,10696,'_exp03/characters/monsters/golem_shambling_mound_pet',0), -(10697,10697,'ec/pc/human/human_male_air_elemental',0), -(10698,10698,'staticobjects/books_user/userbook_common_blackred',0), -(10699,10699,'staticobjects/books_user/userbook_common_blacksilverblue',0), -(10700,10700,'staticobjects/books_user/userbook_common_browngold',0), -(10701,10701,'staticobjects/books_user/userbook_common_goldblue',0), -(10702,10702,'staticobjects/books_user/userbook_common_goldwhitepurple',0), -(10703,10703,'staticobjects/books_user/userbook_common_greenteal',0), -(10704,10704,'staticobjects/books_user/userbook_common_purpleblack',0), -(10705,10705,'staticobjects/books_user/userbook_common_purplegreen',0), -(10706,10706,'staticobjects/books_user/userbook_common_redgold',0), -(10707,10707,'staticobjects/books_user/userbook_common_whitesilverblue',0), -(10708,10708,'staticobjects/books_user/userbook_fancy_blackgold01',0), -(10709,10709,'staticobjects/books_user/userbook_fancy_blackgreen01',0), -(10710,10710,'staticobjects/books_user/userbook_fancy_blackred01',0), -(10711,10711,'staticobjects/books_user/userbook_fancy_bluered01',0), -(10712,10712,'staticobjects/books_user/userbook_fancy_goldbrown01',0), -(10713,10713,'staticobjects/books_user/userbook_fancy_green01',0), -(10714,10714,'staticobjects/books_user/userbook_fancy_purple01',0), -(10715,10715,'staticobjects/books_user/userbook_fancy_red01',0), -(10716,10716,'staticobjects/books_user/userbook_fancy_silverblue01',0), -(10717,10717,'staticobjects/books_user/userbook_fancy_silverred01',0), -(10718,10718,'staticobjects/books_user/userbook_fancy_whiteblue01',0), -(10719,10719,'staticobjects/books_user/userbook_fancy_whitegold01',0), -(10720,10720,'accessories/wearable_items/heavy_cloth/new_halas/chest',0), -(10721,10721,'accessories/wearable_items/heavy_cloth/new_halas/feet',0), -(10722,10722,'accessories/wearable_items/heavy_cloth/new_halas/forearms',0), -(10723,10723,'accessories/wearable_items/heavy_cloth/new_halas/hands',0), -(10724,10724,'accessories/wearable_items/heavy_cloth/new_halas/legs',0), -(10725,10725,'accessories/wearable_items/heavy_cloth/new_halas/shoulders',0), -(10726,10726,'staticobjects/benches/dpo_blue_bench_long02_wcushion',0), -(10727,10727,'staticobjects/benches/dpo_blue_bench_short_wcushion01',0), -(10728,10728,'staticobjects/chairs/dpo_blue_chair_dining01',0), -(10729,10729,'staticobjects/chairs/dpo_blue_chair_dining02',0), -(10730,10730,'staticobjects/chairs/dpo_blue_chair_head_dining01',0), -(10731,10731,'staticobjects/chairs/dpo_blue_couch01',0), -(10732,10732,'staticobjects/chairs/dpo_blue_couch02',0), -(10733,10733,'staticobjects/chairs/dpo_blue_stool_round01',0), -(10734,10734,'staticobjects/pillars/dpo_column001_blackmarble',0), -(10735,10735,'staticobjects/pillars/dpo_column001_bluemarble',0), -(10736,10736,'staticobjects/pillars/dpo_column001_redmarble',0), -(10737,10737,'staticobjects/pillars/dpo_column001_whitemarble',0), -(10738,10738,'staticobjects/tables/dpo_blue_gaming_cardtable01_empty',0), -(10739,10739,'staticobjects/tables/dpo_blue_gaming_cardtable02',0), -(10740,10740,'staticobjects/tables/dpo_blue_table_bedside01',0), -(10741,10741,'staticobjects/tables/dpo_blue_table_coffee01',0), -(10742,10742,'staticobjects/tables/dpo_blue_table_long01',0), -(10743,10743,'staticobjects/tcg/tcg_painting_servant',0), -(10744,10744,'staticobjects/tcg/tcg_painting_fangshield',0), -(10745,10745,'staticobjects/tcg/tcg_painting_favor',0), -(10746,10746,'staticobjects/tcg/tcg_painting_paradox',0), -(10747,10747,'staticobjects/tcg/tcg_painting_sporali',0), -(10748,10748,'staticobjects/tcg/tcg_painting_faith',0), -(10749,10749,'staticobjects/tcg/tcg_painting_malevolence',0), -(10750,10750,'staticobjects/tcg/tcg_painting_engineer',0), -(10751,10751,'staticobjects/tcg/tcg_painting_defiler',0), -(10752,10752,'staticobjects/liveevent/guides/guide_diamondring',0), -(10753,10753,'_exp06/characters/tool_users/giant_frost_kurn_tower/giant_frost_chubby',0), -(10754,10754,'_exp06/characters/tool_users/giant_frost_kurn_tower/giant_frost_muscular',0), -(10755,10755,'accessories/npc_wearables/giant_frost_kurn_tower/beards/beard_01',0), -(10756,10756,'accessories/npc_wearables/giant_frost_kurn_tower/beards/beard_02',0), -(10757,10757,'accessories/npc_wearables/giant_frost_kurn_tower/beards/beard_03_mustache',0), -(10758,10758,'accessories/npc_wearables/giant_frost_kurn_tower/beards/beard_04_lamb_chops',0), -(10759,10759,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/chest_armor_heavy',0), -(10760,10760,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/chest_armor_heavy_nopauldrons',0), -(10761,10761,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/chest_armor_medium',0), -(10762,10762,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/chest_armor_medium_nopauldrons',0), -(10763,10763,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/chest_armor_medium_pauldronsonly',0), -(10764,10764,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/feet_armor_heavy',0), -(10765,10765,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/feet_armor_medium',0), -(10766,10766,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/hands_armor_heavy',0), -(10767,10767,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/hands_armor_light',0), -(10768,10768,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/hands_armor_medium',0), -(10769,10769,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/head_armor_heavy',0), -(10770,10770,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/head_armor_horn_crown',0), -(10771,10771,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/head_armor_medium',0), -(10772,10772,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/legs_armor_heavy',0), -(10773,10773,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/legs_armor_medium',0), -(10774,10774,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/shoulders_armor_heavy',0), -(10775,10775,'accessories/npc_wearables/giant_frost_kurn_tower/glowing_armor_pieces/shoulders_armor_medium',0), -(10776,10776,'accessories/npc_wearables/giant_frost_kurn_tower/hair/hair_01_einstien',0), -(10777,10777,'accessories/npc_wearables/giant_frost_kurn_tower/hair/hair_02_full',0), -(10778,10778,'accessories/npc_wearables/giant_frost_kurn_tower/hair/hair_03_pony_tail',0), -(10779,10779,'accessories/npc_wearables/giant_frost_kurn_tower/velious_armor_peices/chest_armor_light',0), -(10780,10780,'accessories/npc_wearables/giant_frost_kurn_tower/velious_armor_peices/feet_armor_light',0), -(10781,10781,'accessories/npc_wearables/giant_frost_kurn_tower/velious_armor_peices/hands_armor_light',0), -(10782,10782,'accessories/npc_wearables/giant_frost_kurn_tower/velious_armor_peices/head_armor_light',0), -(10783,10783,'accessories/npc_wearables/giant_frost_kurn_tower/velious_armor_peices/legs_armor_light',0), -(10784,10784,'creatures/monsters/roper_moss',0), -(10785,10785,'accessories/wearable_items/_exp06/demonic_chain/chest',0), -(10786,10786,'accessories/wearable_items/_exp06/demonic_chain/feet',0), -(10787,10787,'accessories/wearable_items/_exp06/demonic_chain/forearms',0), -(10788,10788,'accessories/wearable_items/_exp06/demonic_chain/hands',0), -(10789,10789,'accessories/wearable_items/_exp06/demonic_chain/head',0), -(10790,10790,'accessories/wearable_items/_exp06/demonic_chain/legs',0), -(10791,10791,'accessories/wearable_items/_exp06/demonic_chain/shoulders',0), -(10792,10792,'accessories/wearable_items/_exp06/demonic_chain/skirt',0), -(10793,10793,'accessories/wieldable_items/shields/tinkerfest_shield/tinkerfest_shield',0), -(10794,10794,'accessories/wieldable_items/weapons/fist/fist_of_lightining',0), -(10795,10795,'accessories/wieldable_items/weapons/fist/fist_of_the_void',0), -(10796,10796,'accessories/wieldable_items/weapons/fist/monk_1h_glow_cold',0), -(10797,10797,'accessories/wieldable_items/weapons/fist/monk_1h_glow_divine',0), -(10798,10798,'accessories/wieldable_items/weapons/fist/monk_1h_glow_poison',0), -(10799,10799,'accessories/wieldable_items/weapons/fist/monk_1h_glow_prismatic',0), -(10800,10800,'accessories/wieldable_items/weapons/fist/qeynos_wraps/qeynos_wraps_heat',0), -(10801,10801,'accessories/wieldable_items/weapons/fist/qeynos_wraps/qeynos_wraps_magic',0), -(10802,10802,'accessories/wieldable_items/weapons/fist/qeynos_wraps/qeynos_wraps_poison',0), -(10803,10803,'accessories/wieldable_items/weapons/fist/qeynos_wraps/qeynos_wraps_prismatic',0), -(10804,10804,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dragonhilt_dagger_ice',0), -(10805,10805,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_crystal_wand_ice',0), -(10806,10806,'_exp06/zones/dun_eru_research/dpo_eru_cable_plugs',0), -(10807,10807,'accessories/wieldable_items/weapons/exp04/fist/exp04_fist_ornate_knuckledusters_ice',0), -(10808,10808,'accessories/wieldable_items/weapons/hammer/tinkerfest_wrench/tinkerfest_wrench',0), -(10809,10809,'creatures/monsters/shambling_mound',0), -(10810,10810,'creatures/monsters/scarecrow_new',0), -(10811,10811,'creatures/monsters/wickerman',0), -(10812,10812,'creatures/monsters/roper',0), -(10813,10813,'creatures/monsters/animated_bonepile',0), -(10814,10814,'creatures/monsters/bull_stone',0), -(10815,10815,'creatures/monsters/bull_standard',0), -(10816,10816,'creatures/monsters/bull_skeleton',0), -(10817,10817,'creatures/monsters/catoplebas_new',0), -(10818,10818,'creatures/monsters/catoplebas_skeletal',0), -(10819,10819,'creatures/monsters/chimera',0), -(10820,10820,'creatures/monsters/chimera_skeletal',0), -(10821,10821,'accessories/wearable_items/_exp06/magic_rune_chain_plain/chest',0), -(10822,10822,'accessories/wearable_items/_exp06/magic_rune_chain_plain/feet',0), -(10823,10823,'accessories/wearable_items/_exp06/magic_rune_chain_plain/forearms',0), -(10824,10824,'accessories/wearable_items/_exp06/magic_rune_chain_plain/hands',0), -(10825,10825,'accessories/wearable_items/_exp06/magic_rune_chain_plain/head',0), -(10826,10826,'accessories/wearable_items/_exp06/magic_rune_chain_plain/legs',0), -(10827,10827,'accessories/wearable_items/_exp06/magic_rune_chain_plain/legs_noskirt',0), -(10828,10828,'accessories/wearable_items/_exp06/magic_rune_chain_plain/shoulders',0), -(10829,10829,'accessories/wearable_items/_exp06/magic_rune_chain_plain/skirt',0), -(10830,10830,'_exp06/characters/tool_users/giant_frost_kurn_tower/giant_frost_kraytok',0), -(10831,10831,'creatures/monsters/centipede_water',0), -(10832,10832,'creatures/monsters/roper_beige_marble',0), -(10833,10833,'creatures/monsters/roper_vine',0), -(10834,10834,'accessories/wieldable_items/weapons/great_sword/dragon_katana/evileye_katana',0), -(10835,10835,'projectiles/spell_fruit',0), -(10836,10836,'accessories/wearable_items/profesion_hats/priest_helm/heavy_plate_plain02/head',0), -(10837,10837,'creatures/monsters/willowisp_bubble_leaf',0), -(10838,10838,'accessories/wearable_items/_exp06/plain_robe01_evil/skirt',0), -(10839,10839,'accessories/wearable_items/_exp06/plain_robe01_evil/chest',0), -(10840,10840,'accessories/wearable_items/_exp06/plain_robe01_evil/head',0), -(10841,10841,'accessories/wearable_items/_exp06/plain_robe01_evil/hood',0), -(10842,10842,'accessories/wearable_items/_exp06/plain_robe01_evil/pants',0), -(10843,10843,'accessories/wearable_items/_exp06/frostrune_armor_robe/chest_left_pauldron_only',0), -(10844,10844,'accessories/wearable_items/_exp06/black_rivet_vanguard/skirt',0), -(10845,10845,'accessories/wearable_items/_exp06/black_rivet_vanguard/chest',0), -(10846,10846,'accessories/wearable_items/_exp06/black_rivet_vanguard/feet',0), -(10847,10847,'accessories/wearable_items/_exp06/black_rivet_vanguard/forearms',0), -(10848,10848,'accessories/wearable_items/_exp06/black_rivet_vanguard/hands',0), -(10849,10849,'accessories/wearable_items/_exp06/black_rivet_vanguard/head',0), -(10850,10850,'accessories/wearable_items/_exp06/black_rivet_vanguard/legs',0), -(10851,10851,'accessories/wearable_items/_exp06/black_rivet_vanguard/legs_noskirt',0), -(10852,10852,'accessories/wearable_items/_exp06/black_rivet_vanguard/right',0), -(10853,10853,'accessories/wearable_items/_exp06/black_rivet_vanguard/shoulders',0), -(10854,10854,'accessories/wearable_items/_exp06/black_rivet_vanguard/shoulders_nopauldrons',0), -(10855,10855,'accessories/wearable_items/_exp06/plain_robe01/skirt',0), -(10856,10856,'accessories/wearable_items/_exp06/plain_robe01/chest',0), -(10857,10857,'accessories/wearable_items/_exp06/plain_robe01/head',0), -(10858,10858,'accessories/wearable_items/_exp06/plain_robe01/hood',0), -(10859,10859,'accessories/wearable_items/_exp06/plain_robe01/pants',0), -(10860,10860,'accessories/wearable_items/heavy_cloth/new_halas/new_halas_helm',0), -(10861,10861,'accessories/wearable_items/heavy_cloth/new_halas/new_halas_pauldron_left',0), -(10862,10862,'accessories/wearable_items/heavy_cloth/new_halas/new_halas_pauldron_right',0), -(10863,10863,'accessories/wearable_items/heavy_cloth/new_halas/new_halas_pauldrons',0), -(10864,10864,'accessories/wearable_items/heavy_cloth/new_halas/shoulders_no_pauldrons',0), -(10865,10865,'staticobjects/globes/quest_iksar_snowglobe',0), -(10866,10866,'accessories/wearable_items/cloak/exp06/cloak_ward_of_the_elements_spirit',0), -(10867,10867,'accessories/wearable_items/cloak/exp06/cloak_ward_of_the_elements_daggers',0), -(10868,10868,'accessories/wearable_items/cloak/exp06/cloak_ward_of_the_elements_magma',0), -(10869,10869,'accessories/wearable_items/cloak/exp06/cloak_ward_of_the_elements_nature',0), -(10870,10870,'accessories/wieldable_items/weapons/sword/tinkerfest_sprocketspinner/tinkerfest_sprocketspinner',0), -(10871,10871,'_exp06/characters/tool_users/roekillik_female/roekillik_female',0), -(10872,10872,'staticobjects/bookcases/dpo_eu_bookend02',0), -(10873,10873,'staticobjects/nursery/dpo_crib_rattle',0), -(10874,10874,'_exp06/characters/tool_users/roekillik_male/roekillik_male',0), -(10875,10875,'accessories/wearable_items/_exp06/vanguard_iceknight_black/skirt',0), -(10876,10876,'accessories/wearable_items/_exp06/vanguard_iceknight_black/chest',0), -(10877,10877,'accessories/wearable_items/_exp06/vanguard_iceknight_black/feet',0), -(10878,10878,'accessories/wearable_items/_exp06/vanguard_iceknight_black/forearms',0), -(10879,10879,'accessories/wearable_items/_exp06/vanguard_iceknight_black/hands',0), -(10880,10880,'accessories/wearable_items/_exp06/vanguard_iceknight_black/head',0), -(10881,10881,'accessories/wearable_items/_exp06/vanguard_iceknight_black/legs',0), -(10882,10882,'accessories/wearable_items/_exp06/vanguard_iceknight_black/legs_noskirt',0), -(10883,10883,'accessories/wearable_items/_exp06/vanguard_iceknight_black/right',0), -(10884,10884,'accessories/wearable_items/_exp06/vanguard_iceknight_black/shoulders',0), -(10885,10885,'accessories/wearable_items/_exp06/vanguard_iceknight_black/shoulders_nopauldrons',0), -(10886,10886,'accessories/wearable_items/_exp06/nature_leather/skirt',0), -(10887,10887,'accessories/wearable_items/_exp06/nature_leather/chest',0), -(10888,10888,'accessories/wearable_items/_exp06/nature_leather/feet',0), -(10889,10889,'accessories/wearable_items/_exp06/nature_leather/forearms',0), -(10890,10890,'accessories/wearable_items/_exp06/nature_leather/hands',0), -(10891,10891,'accessories/wearable_items/_exp06/nature_leather/head',0), -(10892,10892,'accessories/wearable_items/_exp06/nature_leather/legs',0), -(10893,10893,'accessories/wearable_items/_exp06/nature_leather/legs_noskirt',0), -(10894,10894,'accessories/wearable_items/_exp06/nature_leather/shoulders',0), -(10895,10895,'accessories/wearable_items/_exp06/frostrune_armor_robe/chest_left_pauldron_only',0), -(10896,10896,'staticobjects/soe_wallet/cheery_coffee_table_dpo',0), -(10897,10897,'staticobjects/soe_wallet/cheery_couch_pillows_dpo',0), -(10898,10898,'staticobjects/soe_wallet/cheery_end_table_dpo',0), -(10899,10899,'staticobjects/soe_wallet/cheery_loveseat_pillows_dpo',0), -(10900,10900,'staticobjects/soe_wallet/cheery_office_bookshelf_small_dpo',0), -(10901,10901,'staticobjects/soe_wallet/cheery_office_bookshelf_tall_dpo',0), -(10902,10902,'staticobjects/soe_wallet/cheery_office_chair_dpo',0), -(10903,10903,'staticobjects/soe_wallet/cheery_office_chest_lid_dpo',0), -(10904,10904,'staticobjects/soe_wallet/cheery_office_desk_dpo',0), -(10905,10905,'staticobjects/soe_wallet/cheery_vanity_drawers_dpo',0), -(10906,10906,'staticobjects/soe_wallet/cheery_vanity_mirror_dpo',0), -(10907,10907,'staticobjects/soe_wallet/cheery_vanity_stool_dpo',0), -(10908,10908,'staticobjects/soe_wallet/cheery_vanity_table_mirror_dpo',0), -(10909,10909,'staticobjects/soe_wallet/cheery_vanity_washing_table_dpo',0), -(10910,10910,'accessories/wearable_items/_exp06/demonic_vanguard/skirt',0), -(10911,10911,'accessories/wearable_items/_exp06/demonic_vanguard/chest',0), -(10912,10912,'accessories/wearable_items/_exp06/demonic_vanguard/feet',0), -(10913,10913,'accessories/wearable_items/_exp06/demonic_vanguard/forearms',0), -(10914,10914,'accessories/wearable_items/_exp06/demonic_vanguard/hands',0), -(10915,10915,'accessories/wearable_items/_exp06/demonic_vanguard/head',0), -(10916,10916,'accessories/wearable_items/_exp06/demonic_vanguard/legs',0), -(10917,10917,'accessories/wearable_items/_exp06/demonic_vanguard/legs_noskirt',0), -(10918,10918,'accessories/wearable_items/_exp06/demonic_vanguard/right',0), -(10919,10919,'accessories/wearable_items/_exp06/demonic_vanguard/shoulders',0), -(10920,10920,'accessories/wearable_items/_exp06/demonic_vanguard/shoulders_nopauldrons',0), -(10921,10921,'accessories/wearable_items/_exp06/priest_armor/chest',0), -(10922,10922,'accessories/wearable_items/_exp06/priest_armor/feet',0), -(10923,10923,'accessories/wearable_items/_exp06/priest_armor/forearms',0), -(10924,10924,'accessories/wearable_items/_exp06/priest_armor/hands',0), -(10925,10925,'accessories/wearable_items/_exp06/priest_armor/head',0), -(10926,10926,'accessories/wearable_items/_exp06/priest_armor/legs',0), -(10927,10927,'accessories/wearable_items/_exp06/priest_armor/legs_noskirt',0), -(10928,10928,'accessories/wearable_items/_exp06/priest_armor/priest_flared_left',0), -(10929,10929,'accessories/wearable_items/_exp06/priest_armor/priest_flared_right',0), -(10930,10930,'accessories/wearable_items/_exp06/priest_armor/right',0), -(10931,10931,'accessories/wearable_items/_exp06/priest_armor/shoulders',0), -(10932,10932,'accessories/wearable_items/_exp06/priest_armor/shoulders_epic',0), -(10933,10933,'accessories/wearable_items/_exp06/priest_armor/shoulders_nopauldrons',0), -(10934,10934,'accessories/wearable_items/_exp06/priest_armor/skirt',0), -(10935,10935,'accessories/wearable_items/leather/plain/plain_banded/skirt',0), -(10936,10936,'accessories/wearable_items/leather/plain/plain_banded/chest',0), -(10937,10937,'accessories/wearable_items/leather/plain/plain_banded/feet',0), -(10938,10938,'accessories/wearable_items/leather/plain/plain_banded/forearms',0), -(10939,10939,'accessories/wearable_items/leather/plain/plain_banded/hands',0), -(10940,10940,'accessories/wearable_items/leather/plain/plain_banded/head',0), -(10941,10941,'accessories/wearable_items/leather/plain/plain_banded/legs',0), -(10942,10942,'accessories/wearable_items/leather/plain/plain_banded/legs_noskirt',0), -(10943,10943,'accessories/wearable_items/leather/plain/plain_banded/pauldron_plain_banded_left',0), -(10944,10944,'accessories/wearable_items/leather/plain/plain_banded/pauldron_plain_banded_right',0), -(10945,10945,'accessories/wearable_items/leather/plain/plain_banded/shoulders',0), -(10946,10946,'accessories/wearable_items/leather/plain/plain_banded/shoulders_pauldrons_plain',0), -(10947,10947,'_exp04/monsters/cockatrice_golden',0), -(10948,10948,'accessories/wearable_items/_exp06/assassin_leather/skirt',0), -(10949,10949,'accessories/wearable_items/_exp06/assassin_leather/chest',0), -(10950,10950,'accessories/wearable_items/_exp06/assassin_leather/feet',0), -(10951,10951,'accessories/wearable_items/_exp06/assassin_leather/forearms',0), -(10952,10952,'accessories/wearable_items/_exp06/assassin_leather/hands',0), -(10953,10953,'accessories/wearable_items/_exp06/assassin_leather/head',0), -(10954,10954,'accessories/wearable_items/_exp06/assassin_leather/legs',0), -(10955,10955,'accessories/wearable_items/_exp06/assassin_leather/legs_noskirt',0), -(10956,10956,'accessories/wearable_items/_exp06/assassin_leather/shoulders',0), -(10957,10957,'accessories/wearable_items/_exp06/conjurer_robe/skirt',0), -(10958,10958,'accessories/wearable_items/_exp06/conjurer_robe/chest',0), -(10959,10959,'accessories/wearable_items/_exp06/conjurer_robe/head',0), -(10960,10960,'accessories/wearable_items/_exp06/conjurer_robe/pants',0), -(10961,10961,'creatures/monsters/stagg_ice',0), -(10962,10962,'creatures/monsters/turtle_ice',0), -(10963,10963,'creatures/monsters/badger_ice',0), -(10964,10964,'creatures/monsters/boar_ice',0), -(10965,10965,'creatures/monsters/crab_ice',0), -(10966,10966,'accessories/wearable_items/_exp06/demonic_chain/demonic_pauldron_left',0), -(10967,10967,'accessories/wearable_items/_exp06/demonic_chain/demonic_pauldron_right',0), -(10968,10968,'accessories/wearable_items/_exp06/demonic_chain/head_mask',0), -(10969,10969,'accessories/wearable_items/_exp06/demonic_chain/legs_noskirt',0), -(10970,10970,'accessories/wearable_items/_exp06/demonic_chain/shoulders_pauldrons',0), -(10971,10971,'staticobjects/containers/dpo_fon_ruins_phylactery01',0), -(10972,10972,'staticobjects/plants/dpo_fon_plant_cattail02',0), -(10973,10973,'staticobjects/crystals/dpo_fon_crystals_formation03',0), -(10974,10974,'staticobjects/crystals/dpo_fon_crystals_formation01',0), -(10975,10975,'staticobjects/crystals/dpo_fon_crystals_formation02',0), -(10976,10976,'soga_appearances/ec/npc/soga_dragon_turtle_northern',0), -(10977,10977,'accessories/wearable_items/cloak/exp06/cloak_repair',0), -(10978,10978,'creatures/mounts/flying_disc/flying_disc_evil_01',0), -(10979,10979,'staticobjects/racks/dpo_seb_weaponrack_floor02',0), -(10980,10980,'staticobjects/barrels/dpo_fon_gu53_barrel01',0), -(10981,10981,'staticobjects/crates/dpo_fen_gu53_crate01',0), -(10982,10982,'staticobjects/crates/dpo_fen_gu53_crate01_short',0), -(10983,10983,'creatures/mounts/flying_disc/flying_disc_good_02',0), -(10984,10984,'creatures/mounts/flying_disc/flying_disc_evil_02',0), -(10985,10985,'creatures/mounts/flying_disc/flying_disc_good_01',0), -(10986,10986,'staticobjects/tcg/tcg_golden_egg',0), -(10987,10987,'staticobjects/beds/dpo_blue_eu_bed_queen',0), -(10988,10988,'staticobjects/dressers/dpo_eu_dresser_single',0), -(10989,10989,'staticobjects/nursery/dpo_blue_eu_crib',0), -(10990,10990,'staticobjects/pillow/dpo_blue_eu_bed_pillow',0), -(10991,10991,'staticobjects/brazier/dpo_fon_gu53_firepit01',0), -(10992,10992,'staticobjects/fires/dpo_fen_gu53_forge',0), -(10993,10993,'staticobjects/barrels/dpo_jw_gu53_barrel01',0), -(10994,10994,'staticobjects/crates/dpo_jw_gu53_crate01',0), -(10995,10995,'staticobjects/crates/dpo_jw_gu53_crate01_short',0), -(10996,10996,'staticobjects/tents/dpo_fon_gu53_tent01',0), -(10997,10997,'staticobjects/tents/dpo_jw_gu53_tent02',0), -(10998,10998,'staticobjects/tents/dpo_jw_gu53_tent',0), -(10999,10999,'staticobjects/banners/dpo_fon_gu53_tapestry01',0), -(11000,11000,'staticobjects/banners/dpo_fon_gu53_tapestry01_frosted',0), -(11001,11001,'_exp04/zones/objects/fens_of_nathsar/fon_shinies_aqua_burnyai01',0), -(11002,11002,'_exp04/zones/objects/fens_of_nathsar/fon_shinies_green_burnyai01',0), -(11003,11003,'_exp04/zones/objects/fens_of_nathsar/fon_shinies_purple_burnyai01',0), -(11004,11004,'_exp04/zones/objects/fens_of_nathsar/fon_shinies_red_burnyai01',0), -(11005,11005,'_exp04/zones/objects/kunzar_jungle/dpo_kj_egg',0), -(11006,11006,'_exp04/zones/objects/kunzar_jungle/dpo_kj_eggs02',0), -(11007,11007,'_exp04/zones/objects/kunzar_jungle/dpo_kj_eggs04',0), -(11008,11008,'accessories/wearable_items/_exp06/roekillik_vanguard/skirt',0), -(11009,11009,'accessories/wearable_items/_exp06/roekillik_vanguard/chest',0), -(11010,11010,'accessories/wearable_items/_exp06/roekillik_vanguard/feet',0), -(11011,11011,'accessories/wearable_items/_exp06/roekillik_vanguard/forearms',0), -(11012,11012,'accessories/wearable_items/_exp06/roekillik_vanguard/hands',0), -(11013,11013,'accessories/wearable_items/_exp06/roekillik_vanguard/head',0), -(11014,11014,'accessories/wearable_items/_exp06/roekillik_vanguard/legs',0), -(11015,11015,'accessories/wearable_items/_exp06/roekillik_vanguard/legs_noskirt',0), -(11016,11016,'accessories/wearable_items/_exp06/roekillik_vanguard/right',0), -(11017,11017,'accessories/wearable_items/_exp06/roekillik_vanguard/shoulders',0), -(11018,11018,'accessories/wearable_items/_exp06/roekillik_vanguard/shoulders_nopauldrons',0), -(11019,11019,'accessories/wearable_items/_exp06/roekillik_vanguard02/skirt',0), -(11020,11020,'accessories/wearable_items/_exp06/roekillik_vanguard02/chest',0), -(11021,11021,'accessories/wearable_items/_exp06/roekillik_vanguard02/feet',0), -(11022,11022,'accessories/wearable_items/_exp06/roekillik_vanguard02/forearms',0), -(11023,11023,'accessories/wearable_items/_exp06/roekillik_vanguard02/hands',0), -(11024,11024,'accessories/wearable_items/_exp06/roekillik_vanguard02/head',0), -(11025,11025,'accessories/wearable_items/_exp06/roekillik_vanguard02/legs',0), -(11026,11026,'accessories/wearable_items/_exp06/roekillik_vanguard02/legs_noskirt',0), -(11027,11027,'accessories/wearable_items/_exp06/roekillik_vanguard02/right',0), -(11028,11028,'accessories/wearable_items/_exp06/roekillik_vanguard02/roekillik_pauldron_left',0), -(11029,11029,'accessories/wearable_items/_exp06/roekillik_vanguard02/roekillik_pauldron_right',0), -(11030,11030,'accessories/wearable_items/_exp06/roekillik_vanguard02/shoulders',0), -(11031,11031,'accessories/wearable_items/_exp06/roekillik_vanguard02/shoulders_epicpauldrons',0), -(11032,11032,'accessories/wearable_items/_exp06/roekillik_vanguard02/shoulders_nopauldrons',0), -(11033,11033,'staticobjects/bookcases/dpo_fon_riliss_bookcase01',0), -(11034,11034,'staticobjects/chairs/dpo_cha_bench_square',0), -(11035,11035,'staticobjects/chairs/dpo_kp_throne_iksar',0), -(11036,11036,'staticobjects/coffins_and_sarcophagus/dpo_fon_ruins_tomb01',0), -(11037,11037,'staticobjects/crates/dpo_fon_crate_ruins_openlid02',0), -(11038,11038,'staticobjects/kitchen/floor_plate_of_fish',0), -(11039,11039,'staticobjects/nautical/dpo_fon_restaurant_crossedoars01',0), -(11040,11040,'staticobjects/pillars/dpo_cha_column_large01',0), -(11041,11041,'staticobjects/pillars/dpo_cha_column_small01',0), -(11042,11042,'staticobjects/platforms/dpo_charasiswest_r04_platform',0), -(11043,11043,'staticobjects/platforms/dpo_charasiswest_r04_platform_fx',0), -(11044,11044,'staticobjects/rugs/dpo_cha_rugs_rolled_group02',0), -(11045,11045,'staticobjects/torches/dpo_fon_shinies_aqua_burynai01',0), -(11046,11046,'staticobjects/torches/dpo_fon_shinies_green_burynai01',0), -(11047,11047,'staticobjects/torches/dpo_fon_shinies_purple_burynai01',0), -(11048,11048,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/hands',1096), -(11049,11049,'staticobjects/urns/dpo_cha_canopic_vase02_south',0), -(11050,11050,'creatures/monsters/cerberus_skeletal',0), -(11051,11051,'creatures/monsters/cerberus',0), -(11052,11052,'creatures/monsters/cerberus_ice',0), -(11053,11053,'staticobjects/rocks/dpo_fon_rock_small_field02',0), -(11054,11054,'staticobjects/panels/dpo_grass_panel',0), -(11055,11055,'accessories/wearable_items/_exp06/conjurer_robe/feet',0), -(11056,11056,'accessories/wearable_items/_exp06/conjurer_robe/hands',0), -(11057,11057,'staticobjects/torches/dpo_fon_shinies_red_burynai01a',0), -(11058,11058,'staticobjects/containers/dpo_cockatrice_egg_basket',0), -(11059,11059,'creatures/mounts/flying_disc/flying_disc_good_03',0), -(11060,11060,'accessories/wearable_items/_exp06/varsoon_robe/chest_with_skull_pauldrons_head_piece',0), -(11061,11061,'_exp06/characters/monsters/vasty_guardian/vasty_guardian',0), -(11062,11062,'_exp06/characters/monsters/vasty_guardian_rusty/vasty_guardian_rusty',0), -(11063,11063,'staticobjects/feathers/dpo_flamingfeather01',0), -(11064,11064,'creatures/monsters/pegasus',0), -(11065,11065,'_exp06/characters/monsters/bookminion_erudin01/bookminion_erudin01',0), -(11066,11066,'_exp06/characters/monsters/bookminion_erudin02/bookminion_erudin02',0), -(11067,11067,'_exp06/characters/monsters/bookminion_erudin03/bookminion_erudin03',0), -(11068,11068,'staticobjects/globes/quest_iksar_snowglobe02',0), -(11069,11069,'accessories/wearable_items/_exp06/demonic_leather/skirt',0), -(11070,11070,'accessories/wearable_items/_exp06/demonic_leather/chest',0), -(11071,11071,'accessories/wearable_items/_exp06/demonic_leather/feet',0), -(11072,11072,'accessories/wearable_items/_exp06/demonic_leather/forearms',0), -(11073,11073,'accessories/wearable_items/_exp06/demonic_leather/hands',0), -(11074,11074,'accessories/wearable_items/_exp06/demonic_leather/head',0), -(11075,11075,'accessories/wearable_items/_exp06/demonic_leather/legs',0), -(11076,11076,'accessories/wearable_items/_exp06/demonic_leather/legs_noskirt',0), -(11077,11077,'accessories/wearable_items/_exp06/demonic_leather/shoulders',0), -(11078,11078,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/head',1096), -(11079,11079,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/skirt',0), -(11080,11080,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/chest',0), -(11081,11081,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/head',0), -(11082,11082,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/head_for_classic_erudite',0), -(11083,11083,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/hood',0), -(11084,11084,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_violet/pants',0), -(11085,11085,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/skirt',0), -(11086,11086,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/chest',0), -(11087,11087,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/head',0), -(11088,11088,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/head_for_classic_erudite',0), -(11089,11089,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/hood',0), -(11090,11090,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_red/pants',0), -(11091,11091,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/skirt',0), -(11092,11092,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/chest',0), -(11093,11093,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/head',0), -(11094,11094,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/head_for_classic_erudite',0), -(11095,11095,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/hood',0), -(11096,11096,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_orange/pants',0), -(11097,11097,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/skirt',0), -(11098,11098,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/chest',0), -(11099,11099,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/head',0), -(11100,11100,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/head_for_classic_erudite',0), -(11101,11101,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/hood',0), -(11102,11102,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_blue/pants',0), -(11103,11103,'staticobjects/helmet/head_armor_heavy',0), -(11104,11104,'staticobjects/tcg/tcg_tapestry_repair',0), -(11105,11105,'staticobjects/tcg/tcg_tapestry_loab',0), -(11106,11106,'staticobjects/tcg/tcg_tapestry_arachnid',0), -(11107,11107,'staticobjects/tcg/tcg_tapestry_roadyle',0), -(11108,11108,'staticobjects/tcg/tcg_tapestry_kruzz',0), -(11109,11109,'accessories/wearable_items/_exp06/demonic_vanguard/head_demonic',0), -(11110,11110,'staticobjects/halloween/dpo_gf_kel_int_divider_wall01_bones',0), -(11111,11111,'accessories/wearable_items/_exp06/defender_of_light_vanguard/skirt',0), -(11112,11112,'accessories/wearable_items/_exp06/defender_of_light_vanguard/chest',0), -(11113,11113,'accessories/wearable_items/_exp06/defender_of_light_vanguard/feet',0), -(11114,11114,'accessories/wearable_items/_exp06/defender_of_light_vanguard/forearms',0), -(11115,11115,'accessories/wearable_items/_exp06/defender_of_light_vanguard/hands',0), -(11116,11116,'accessories/wearable_items/_exp06/defender_of_light_vanguard/head',0), -(11117,11117,'accessories/wearable_items/_exp06/defender_of_light_vanguard/legs',0), -(11118,11118,'accessories/wearable_items/_exp06/defender_of_light_vanguard/legs_noskirt',0), -(11119,11119,'accessories/wearable_items/_exp06/defender_of_light_vanguard/right',0), -(11120,11120,'accessories/wearable_items/_exp06/defender_of_light_vanguard/shoulders',0), -(11121,11121,'accessories/wearable_items/_exp06/defender_of_light_vanguard/shoulders_nopauldrons',0), -(11122,11122,'_exp05/zones/objects/exp05_dun_miragul_shard/miragul_firebolt_zapper',0), -(11123,11123,'_exp05/zones/objects/exp05_dun_miragul_shard/miragul_ghost_trapper',0), -(11124,11124,'accessories/wearable_items/_exp06/demonic_robe/skirt',0), -(11125,11125,'accessories/wearable_items/_exp06/demonic_robe/chest',0), -(11126,11126,'accessories/wearable_items/_exp06/demonic_robe/head',0), -(11127,11127,'accessories/wearable_items/_exp06/demonic_robe/hood',0), -(11128,11128,'accessories/wearable_items/_exp06/demonic_robe/pants',0), -(11129,11129,'staticobjects/liveevent/halloween/halloween_hedge',0), -(11130,11130,'_exp06/characters/monsters/moss_grathok/moss_grathok',0), -(11131,11131,'staticobjects/liveevent/halloween/halloween_tapestry_fire',0), -(11132,11132,'staticobjects/liveevent/halloween/halloween_tapestry_sky',0), -(11133,11133,'staticobjects/liveevent/halloween/halloween_tapestry_spider',0), -(11134,11134,'accessories/wieldable_items/shields/ice_shield/non_ice_shield_metal',0), -(11135,11135,'accessories/wieldable_items/shields/ice_shield/crusted_ice_shield',0), -(11136,11136,'accessories/wieldable_items/shields/ice_shield/crusted_ice_shield_metal',0), -(11137,11137,'accessories/wieldable_items/shields/ice_shield/ice_shield',0), -(11138,11138,'accessories/wieldable_items/shields/ice_shield/ice_shield_greater',0), -(11139,11139,'accessories/wieldable_items/shields/ice_shield/non_ice_shield',0), -(11140,11140,'accessories/wieldable_items/shields/exp06/metal_round_shield',0), -(11141,11141,'accessories/wieldable_items/shields/exp06/golden_round_shield',0), -(11142,11142,'accessories/wieldable_items/shields/exp06/metal_tower_shield',0), -(11143,11143,'accessories/wieldable_items/shields/exp06/golden_tower_shield',0), -(11144,11144,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/head_collar',1096), -(11145,11145,'accessories/wearable_items/_exp06/demonic_gi/chest',0), -(11146,11146,'accessories/wearable_items/_exp06/demonic_gi/feet',0), -(11147,11147,'accessories/wearable_items/_exp06/demonic_gi/hands',0), -(11148,11148,'accessories/wearable_items/_exp08/dragon_armor/robe_blue/pants',1096), -(11149,11149,'accessories/wearable_items/_exp06/demonic_gi/pants',0), -(11150,11150,'accessories/wieldable_items/weapons/exp06/2h_sword/exp06_2h_rhoen_theer_good',0), -(11151,11151,'accessories/wieldable_items/weapons/exp06/2h_sword/exp06_2h_rhoen_theer_evil',0), -(11152,11152,'accessories/wearable_items/_exp06/magic_rune_vanguard01/magic_rune_vanguard_pauldron_left',0), -(11153,11153,'accessories/wearable_items/_exp06/magic_rune_vanguard01/magic_rune_vanguard_pauldron_right',0), -(11154,11154,'accessories/wearable_items/_exp06/magic_rune_vanguard01/shoulders_fancy_pauldrons',0), -(11155,11155,'accessories/wearable_items/_exp06/defender_of_light_vanguard/shoulders_defender_of_light_pauldrons',0), -(11156,11156,'accessories/wearable_items/_exp06/defender_of_light_vanguard/defender_of_light_pauldron_left',0), -(11157,11157,'accessories/wearable_items/_exp06/defender_of_light_vanguard/defender_of_light_pauldron_right',0), -(11158,11158,'accessories/wearable_items/profesion_hats/defender_of_light_helm/defender_of_light_head',0), -(11159,11159,'accessories/wearable_items/_exp06/defender_of_light_vanguard/defender_of_light_belt',0), -(11160,11160,'accessories/wearable_items/_exp06/defender_of_light_vanguard/legs_belt',0), -(11161,11161,'accessories/wearable_items/_exp06/defender_of_light_vanguard/legs_noskirt_belt',0), -(11162,11162,'accessories/wearable_items/profesion_hats/defender_of_light_helm/defender_of_light_crest',0), -(11163,11163,'accessories/wearable_items/profesion_hats/defender_of_light_helm/defender_of_light_head_crest',0), -(11164,11164,'_exp06/characters/monsters/sea_dragon/sea_dragon',0), -(11165,11165,'accessories/wieldable_items/shields/exp06/void_claw_shield',0), -(11166,11166,'accessories/wieldable_items/shields/exp06/crystal_star_shield',0), -(11167,11167,'accessories/wieldable_items/shields/exp06/frost_scale_shield',0), -(11168,11168,'accessories/wieldable_items/shields/exp06/hades_mouth_shield',0), -(11169,11169,'accessories/wieldable_items/shields/exp06/kraag_the_undying_shield',0), -(11170,11170,'accessories/wieldable_items/shields/exp06/rhino_skull_shield',0), -(11171,11171,'accessories/wieldable_items/shields/exp06/viny_bulb_shield',0), -(11172,11172,'accessories/wieldable_items/shields/exp06/violet_spike_shield',0), -(11173,11173,'accessories/wearable_items/_exp06/demonic_leather/head_demonic_leather_no_mask',0), -(11174,11174,'accessories/wearable_items/_exp06/demonic_leather/shoulders_pauldrons',0), -(11175,11175,'accessories/wearable_items/_exp06/demonic_leather/demonic_pauldron_left',0), -(11176,11176,'accessories/wearable_items/_exp06/demonic_leather/demonic_pauldron_right',0), -(11177,11177,'accessories/wearable_items/_exp06/demonic_robe/chest_pauldrons',0), -(11178,11178,'accessories/wearable_items/_exp06/demonic_robe/demonic_pauldron_left',0), -(11179,11179,'accessories/wearable_items/_exp06/demonic_robe/demonic_pauldron_right',0), -(11180,11180,'accessories/wearable_items/_exp06/demonic_robe/feet',0), -(11181,11181,'accessories/wearable_items/_exp06/demonic_robe/hands',0), -(11182,11182,'accessories/wearable_items/_exp06/demonic_vanguard/demonic_vanguard_pauldron_left',0), -(11183,11183,'accessories/wearable_items/_exp06/demonic_vanguard/demonic_vanguard_pauldron_right',0), -(11184,11184,'accessories/wearable_items/_exp06/demonic_vanguard/shoulders_demonic_pauldrons',0), -(11185,11185,'accessories/wearable_items/profesion_hats/proffiddlewiz_cap_black/head',0), -(11186,11186,'accessories/wearable_items/profesion_hats/werewolf_mask/head',0), -(11187,11187,'accessories/wearable_items/cloak/exp06/cloak_miragul_icicle',0), -(11188,11188,'accessories/wearable_items/cloak/exp06/cloak_miragul_glacial',0), -(11189,11189,'accessories/wearable_items/cloak/exp06/cloak_miragul_glittering_cloak',0), -(11190,11190,'accessories/wearable_items/cloak/exp06/cloak_miragul_ice_comet',0), -(11191,11191,'ui_fx/fx/systems/environment/shard_of_love/teleport_vision_shard_of_love',0), -(11192,11192,'staticobjects/benches/slove_flame_bench01',0), -(11193,11193,'staticobjects/candles/slove_p04_incense_chalice01_swinging',0), -(11194,11194,'staticobjects/containers/slove_basket01_pom02',0), -(11195,11195,'staticobjects/containers/slove_basket01_pom02_rotten',0), -(11196,11196,'staticobjects/kitchen/slove_pomegranate_piece_rotted01',0), -(11197,11197,'staticobjects/kitchen/slove_pomegranate_whole_dark01',0), -(11198,11198,'staticobjects/pillow/slove_drapery01_destroyed01',0), -(11199,11199,'staticobjects/rubble/slove_rubblepiece_purple01',0), -(11200,11200,'staticobjects/rubble/slove_rubblepiece_trim01',0), -(11201,11201,'staticobjects/statues/slove_statue_arrow01',0), -(11202,11202,'staticobjects/statues/slove_statue_bow_arrow01_covered',0), -(11203,11203,'staticobjects/statues/slove_statue_bow_arrow02_covered',0), -(11204,11204,'staticobjects/statues/slove_statue_bow_arrow03_covered',0), -(11205,11205,'staticobjects/tapestry/dpo_tapestry_design_erollisi_sister',0), -(11206,11206,'accessories/wearable_items/snapons/backpacks/backpack',0), -(11207,11207,'accessories/wearable_items/snapons/backpacks/backpack_pandamen',0), -(11208,11208,'accessories/wearable_items/snapons/backpacks/backpack_adventurer',0), -(11209,11209,'staticobjects/cannon/tinkered_cannon_dpo',0), -(11210,11210,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/skirt',1096), -(11211,11211,'creatures/monsters/displacer_beast',0), -(11212,11212,'creatures/monsters/displacer_beast_skeletal',0), -(11213,11213,'creatures/monsters/drake_flight_path_dawn',0), -(11214,11214,'creatures/monsters/gorgon',0), -(11215,11215,'creatures/monsters/gorgon_golden',0), -(11216,11216,'creatures/monsters/gorgon_rusty',0), -(11217,11217,'creatures/monsters/pegasus_transport',0), -(11218,11218,'_exp06/characters/tool_users/erudite_classic_female/erudite_classic_female_ghost_loop',0), -(11219,11219,'_exp06/characters/tool_users/erudite_classic_male/erudite_classic_male_ghost_loop',0), -(11220,11220,'_exp06/characters/monsters/sea_nayad_good/sea_nayad_good',0), -(11221,11221,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/upperchest',0), -(11222,11222,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/chest',0), -(11223,11223,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/feet',0), -(11224,11224,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/forearms',0), -(11225,11225,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/hands',0), -(11226,11226,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/head',0), -(11227,11227,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/left',0), -(11228,11228,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/legs',0), -(11229,11229,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/legs_noskirt',0), -(11230,11230,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/pauldron02_vanguard_ridged_left',0), -(11231,11231,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/pauldron02_vanguard_ridged_right',0), -(11232,11232,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/pauldron03_vanguard_flared_left',0), -(11233,11233,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/pauldron03_vanguard_flared_right',0), -(11234,11234,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/right',0), -(11235,11235,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/shoulders',0), -(11236,11236,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/shoulders_nopauldrons',0), -(11237,11237,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/shoulders_pauldrons_flared',0), -(11238,11238,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/shoulders_pauldrons_ridged',0), -(11239,11239,'accessories/wearable_items/vanguard/vanguard_chitin_black_golden/skirt',0), -(11240,11240,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/chest',1096), -(11241,11241,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/chest_epic',1096), -(11242,11242,'creatures/tu/pandaman_warrior',0), -(11243,11243,'creatures/tu/pandaman',0), -(11244,11244,'creatures/tu/pandaman_monk',0), -(11245,11245,'creatures/tu/pandaman_traveler',0), -(11246,11246,'creatures/tu/pandaman_warlord',0), -(11247,11247,'creatures/tu/pandaman_warrior_ghost_loop',0), -(11248,11248,'_exp06/characters/monsters/sea_nayad_evil/sea_nayad_evil',0), -(11249,11249,'accessories/wearable_items/snapons/backpacks/backpack_provisioner',0), -(11250,11250,'staticobjects/eig/eig_harvest_location_love',0), -(11251,11251,'creatures/monsters/stagg_glass',0), -(11252,11252,'creatures/tu/pandaman_warlord_ghost_loop',0), -(11253,11253,'staticobjects/halloween/bef_banner_burned02',0), -(11254,11254,'staticobjects/halloween/bef_bone_pile01',0), -(11255,11255,'staticobjects/halloween/bef_bone_totem01',0), -(11256,11256,'staticobjects/halloween/bef_bone_totem02',0), -(11257,11257,'staticobjects/halloween/bef_statue_warrior_brokenarm01',0), -(11258,11258,'staticobjects/halloween/cbk_plate_withbone',0), -(11259,11259,'staticobjects/halloween/cbk_plate_withrats',0), -(11260,11260,'staticobjects/halloween/cbk_torch001_skull',0), -(11261,11261,'staticobjects/halloween/cbk_torture_stockade01',0), -(11262,11262,'staticobjects/halloween/cm_manacles_double_wall01',0), -(11263,11263,'staticobjects/halloween/kp_cocoon_ground02_w_coll',0), -(11264,11264,'staticobjects/halloween/lp_coffin_stone01_open01',0), -(11265,11265,'staticobjects/halloween/vek_bottle01',0), -(11266,11266,'staticobjects/halloween/vek_sarcophagi_broken01',0), -(11267,11267,'staticobjects/halloween/vek_sarcophagi_lid',0), -(11268,11268,'staticobjects/halloween/vek_sarcophagi_lower_half',0), -(11269,11269,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/shoulders_nopauldrons',0), -(11270,11270,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/skirt',0), -(11271,11271,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/chest',0), -(11272,11272,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/defender_of_light_belt',0), -(11273,11273,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/defender_of_light_pauldron_left',0), -(11274,11274,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/defender_of_light_pauldron_right',0), -(11275,11275,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/feet',0), -(11276,11276,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/forearms',0), -(11277,11277,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/hands',0), -(11278,11278,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/head',0), -(11279,11279,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/legs',0), -(11280,11280,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/legs_belt',0), -(11281,11281,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/legs_noskirt',0), -(11282,11282,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/legs_noskirt_belt',0), -(11283,11283,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/right',0), -(11284,11284,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/shoulders',0), -(11285,11285,'accessories/wearable_items/_exp06/defender_of_light_vanguard_gold/shoulders_defender_of_light_pauldrons',0), -(11286,11286,'ec/npc/orc_ghost_loop',0), -(11287,11287,'accessories/wieldable_items/weapons/exp06/talisman/book/ice_tome_frost',0), -(11288,11288,'accessories/armor_dummy/armor_dummy_female_idle_hologram',0), -(11289,11289,'accessories/armor_dummy/armor_dummy_idle_hologram',0), -(11290,11290,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister',0), -(11291,11291,'staticobjects/portals/void_portal',0), -(11292,11292,'accessories/wearable_items/cloak/exp06/cloak_quellthulian_symbol',0), -(11293,11293,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/skirt',0), -(11294,11294,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/chest',0), -(11295,11295,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/feet',0), -(11296,11296,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/forearms',0), -(11297,11297,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/hands',0), -(11298,11298,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/head',0), -(11299,11299,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/head_quellthulian',0), -(11300,11300,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/legs',0), -(11301,11301,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/legs_noskirt',0), -(11302,11302,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/quellthulian_pauldrons_left',0), -(11303,11303,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/quellthulian_pauldrons_right',0), -(11304,11304,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/quellthulian_shoulders',0), -(11305,11305,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/right',0), -(11306,11306,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/shoulders',0), -(11307,11307,'accessories/wearable_items/_exp06/quellthulian_symbol_vanguard/shoulders_nopauldrons',0), -(11308,11308,'_exp06/characters/tool_users/yael_eyes/yael_eyes',0), -(11309,11309,'accessories/wearable_items/cloak/exp06/cloak_achievement_moon',0), -(11310,11310,'staticobjects/guildhall/trophies/floor_headless',0), -(11311,11311,'accessories/wearable_items/profesion_hats/defender_of_light_helm/defender_of_light_head_gold',0), -(11312,11312,'accessories/wearable_items/profesion_hats/defender_of_light_helm/defender_of_light_head_gold_crest',0), -(11313,11313,'accessories/wearable_items/cloak/exp06/fae_d_wing02_love',0), -(11314,11314,'staticobjects/kitchen/slove_pomegranate_piece_fresh01',0), -(11315,11315,'staticobjects/kitchen/slove_pomegranate_whole01',0), -(11316,11316,'accessories/wearable_items/_exp06/order_of_nature_leather/skirt',0), -(11317,11317,'accessories/wearable_items/_exp06/order_of_nature_leather/chest',0), -(11318,11318,'accessories/wearable_items/_exp06/order_of_nature_leather/demonic_pauldron_left',0), -(11319,11319,'accessories/wearable_items/_exp06/order_of_nature_leather/demonic_pauldron_right',0), -(11320,11320,'accessories/wearable_items/_exp06/order_of_nature_leather/feet',0), -(11321,11321,'accessories/wearable_items/_exp06/order_of_nature_leather/forearms',0), -(11322,11322,'accessories/wearable_items/_exp06/order_of_nature_leather/hands',0), -(11323,11323,'accessories/wearable_items/_exp06/order_of_nature_leather/head',0), -(11324,11324,'accessories/wearable_items/_exp06/order_of_nature_leather/head_demonic_leather_no_mask',0), -(11325,11325,'accessories/wearable_items/_exp06/order_of_nature_leather/legs',0), -(11326,11326,'accessories/wearable_items/_exp06/order_of_nature_leather/legs_noskirt',0), -(11327,11327,'accessories/wearable_items/_exp06/order_of_nature_leather/shoulders',0), -(11328,11328,'accessories/wearable_items/_exp06/order_of_nature_leather/shoulders_nopauldrons',0), -(11329,11329,'accessories/wearable_items/_exp06/order_of_nature_leather/shoulders_pauldrons',0), -(11330,11330,'accessories/wieldable_items/weapons/exp06/2h_sword/exp06_2h_korsha_claymore_ice',0), -(11331,11331,'_exp05/monsters/book_dervish_plain',0), -(11332,11332,'accessories/wearable_items/elemental_crowns/shard_of_love_crown_fire',0), -(11333,11333,'accessories/wearable_items/elemental_crowns/shard_of_love_crown_petals',0), -(11334,11334,'staticobjects/chests/tinkered_harvest_depot',0), -(11335,11335,'staticobjects/globes/shard_of_love_flower_snowglobe',0), -(11336,11336,'_exp04/monsters/erollisi_dead_open',0), -(11337,11337,'staticobjects/flora/exp06_toxxulia_flower',0), -(11338,11338,'staticobjects/flora/exp06_bamboo_plant',0), -(11339,11339,'staticobjects/flora/exp06_toxxulia_plant',0), -(11340,11340,'staticobjects/_exp06/paineel_chair_01',0), -(11341,11341,'staticobjects/_exp06/paineel_chair_02',0), -(11342,11342,'staticobjects/_exp06/paineel_divider_small',0), -(11343,11343,'staticobjects/_exp06/paineel_divider_triple',0), -(11344,11344,'staticobjects/_exp06/paineel_vase',0), -(11345,11345,'staticobjects/_exp06/paineel_table',0), -(11346,11346,'ui_fx/fx/systems/environment/shard_of_love/teleport_vision_everfrost',0), -(11347,11347,'creatures/mounts/flying_disc/hotwired_gnomish_hoverpad',0), -(11348,11348,'creatures/tu/gods_mithaniel_marr_sword',0), -(11349,11349,'accessories/wieldable_items/weapons/dagger/sai/sai001_ornate_sol',0), -(11350,11350,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace001_ornate_sol',0), -(11351,11351,'accessories/wieldable_items/weapons/sword/whip/whip002_runic_sol',0), -(11352,11352,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword001_ornate_sol',0), -(11353,11353,'accessories/wieldable_items/weapons/staff/djinn_staff/djinn_staff_plain_sol',0), -(11354,11354,'accessories/wieldable_items/weapons/dagger/sai/sai001_ornate_love',0), -(11355,11355,'accessories/wieldable_items/weapons/great_hammer/great_mace/great_mace001_ornate_love',0), -(11356,11356,'accessories/wieldable_items/weapons/staff/djinn_staff/djinn_staff_plain_love',0), -(11357,11357,'accessories/wieldable_items/weapons/sword/spatha_sword/spatha_sword001_ornate_love',0), -(11358,11358,'accessories/wieldable_items/weapons/sword/whip/whip002_runic_love',0), -(11359,11359,'staticobjects/bookcases/bixie_bookcase01_full_dpo',0), -(11360,11360,'staticobjects/books/nekcas_eviltrinket_book001_dpo',0), -(11361,11361,'accessories/wieldable_items/weapons/exp03/bow/exp03_bow_giant_wooden_grove_love',0), -(11362,11362,'accessories/wieldable_items/weapons/exp03/bow/exp03_bow_giant_wooden_grove_sol',0), -(11363,11363,'_exp06/characters/tool_users/crystaline_folk/crystaline_folk',0), -(11364,11364,'staticobjects/liveevent/frostfell/dpo_klp_icycles_group01',0), -(11365,11365,'staticobjects/liveevent/frostfell/dpo_klp_icycles_group02',0), -(11366,11366,'staticobjects/liveevent/frostfell/dpo_klp_icycles_group03',0), -(11367,11367,'accessories/wearable_items/_exp06/order_of_nature_chain/skirt',0), -(11368,11368,'accessories/wearable_items/_exp06/order_of_nature_chain/chest',0), -(11369,11369,'accessories/wearable_items/_exp06/order_of_nature_chain/feet',0), -(11370,11370,'accessories/wearable_items/_exp06/order_of_nature_chain/forearms',0), -(11371,11371,'accessories/wearable_items/_exp06/order_of_nature_chain/hands',0), -(11372,11372,'accessories/wearable_items/_exp06/order_of_nature_chain/head',0), -(11373,11373,'accessories/wearable_items/_exp06/order_of_nature_chain/legs',0), -(11374,11374,'accessories/wearable_items/_exp06/order_of_nature_chain/legs_noskirt',0), -(11375,11375,'accessories/wearable_items/_exp06/order_of_nature_chain/shoulders',0), -(11376,11376,'staticobjects/tables/librariansdesk_dark',0), -(11377,11377,'staticobjects/racks/towelrack_dark',0), -(11378,11378,'staticobjects/pillow/qey_gemdisplaypillow_dark',0), -(11379,11379,'staticobjects/beds/df_emperorbed02_dark',0), -(11380,11380,'staticobjects/beds/qey_bed_ornateking001_dark',0), -(11381,11381,'staticobjects/bookcases/bixie_bookcase01_dark',0), -(11382,11382,'staticobjects/chairs/bd_judicialchair_dark',0), -(11383,11383,'staticobjects/chairs/cm_chair_chaise01_dark',0), -(11384,11384,'staticobjects/chairs/cm_couch01_dark',0), -(11385,11385,'staticobjects/benches/edk_bench001_fancy_dark',0), -(11386,11386,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/feet',1096), -(11387,11387,'staticobjects/chairs/halfling_stool_square_padded_dark',0), -(11388,11388,'staticobjects/cupboards/bixie_cabinet_dark',0), -(11389,11389,'staticobjects/cupboards/dresser001_dark',0), -(11390,11390,'staticobjects/pillow/slove_rose_couch',0), -(11391,11391,'staticobjects/tables/bixie_table01_dark',0), -(11392,11392,'staticobjects/tapestry/slove_tapestry_red',0), -(11393,11393,'staticobjects/weapons/slove_arrow_houseitem',0), -(11394,11394,'staticobjects/beds/dpo_miragul_bed_ice01',0), -(11395,11395,'staticobjects/bookcases/dpo_miragul_scrollrack_single01',0), -(11396,11396,'staticobjects/tables/dpo_miragul_table_round01',0), -(11397,11397,'staticobjects/brazier/floor_brazier_erudite',0), -(11398,11398,'staticobjects/hitching_posts/fprt_hitchingpostsingle01',0), -(11399,11399,'staticobjects/hitching_posts/qey_hitchingpost_fancy01',0), -(11400,11400,'staticobjects/hitching_posts/qey_hitchingpost_plain01',0), -(11401,11401,'staticobjects/fences/qey_fence_wroughtiron_main01',0), -(11402,11402,'staticobjects/tapestry/dpo_tapestry_design_holiday_canes',0), -(11403,11403,'staticobjects/tapestry/dpo_tapestry_design_holiday_gigglegibber',0), -(11404,11404,'staticobjects/tapestry/dpo_tapestry_design_holiday_snowflakes',0), -(11405,11405,'accessories/wieldable_items/shields/exp06/shard_of_love_gold_shield',0), -(11406,11406,'accessories/wieldable_items/shields/exp06/shard_of_love_white_shield',0), -(11407,11407,'accessories/wieldable_items/weapons/exp04/shield/exp04_shld_dragonhead_ice_composite_shield',0), -(11408,11408,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_final_globe_prop_dpo',0), -(11409,11409,'staticobjects/sacks/step_sack_small_open01',0), -(11410,11410,'staticobjects/tables/hum_largetablefancy001_dark',0), -(11411,11411,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/hands',1096), -(11412,11412,'accessories/wearable_items/cloak/exp06/cloak_sol',0), -(11413,11413,'accessories/wieldable_items/tools/fisherman/common001_right_for_panda',0), -(11414,11414,'accessories/wieldable_items/shields/exp06/broken_heart_shield',0), -(11415,11415,'accessories/wieldable_items/shields/exp06/shard_of_love_tower_shield',0), -(11416,11416,'accessories/wearable_items/cloak/exp06/cloak_sunset',0), -(11417,11417,'staticobjects/liveevent/frostfell/dpo_holiday_bones_cazic',0), -(11418,11418,'staticobjects/liveevent/frostfell/dpo_xmas_bowl_skull_apple',0), -(11419,11419,'staticobjects/liveevent/frostfell/dpo_snowman01_dagger',0), -(11420,11420,'staticobjects/liveevent/frostfell/dpo_holiday_skullrow_candycane',0), -(11421,11421,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires_ghosted_ulteran',0), -(11422,11422,'staticobjects/dressers/washbasin_dresser_dpo',0), -(11423,11423,'staticobjects/liveevent/contest_painting_aug09/contest_painting_valeric',0), -(11424,11424,'staticobjects/liveevent/contest_painting_aug09/contest_painting_bramdar',0), -(11425,11425,'staticobjects/liveevent/contest_painting_aug09/contest_painting_citadelli_1stplace',0), -(11426,11426,'staticobjects/liveevent/contest_painting_aug09/contest_painting_crabbok',0), -(11427,11427,'staticobjects/liveevent/contest_painting_aug09/contest_painting_elquinjena',0), -(11428,11428,'staticobjects/liveevent/contest_painting_aug09/contest_painting_enna',0), -(11429,11429,'staticobjects/liveevent/contest_painting_aug09/contest_painting_nahdia',0), -(11430,11430,'staticobjects/liveevent/contest_painting_aug09/contest_painting_ryusaru',0), -(11431,11431,'staticobjects/liveevent/contest_painting_aug09/contest_painting_saisha',0), -(11432,11432,'staticobjects/liveevent/contest_painting_aug09/contest_painting_sucuri',0), -(11433,11433,'staticobjects/panels/dpo_blueglass_panel',0), -(11434,11434,'staticobjects/panels/dpo_darkplank_panel',0), -(11435,11435,'staticobjects/panels/dpo_purpleflower_panel',0), -(11436,11436,'staticobjects/panels/dpo_sand_panel',0), -(11437,11437,'staticobjects/panels/dpo_wavysand_panel',0), -(11438,11438,'staticobjects/chairs/dpo_queenscouch_dark',0), -(11439,11439,'staticobjects/chests/dpo_treasurechest_clean003_dark',0), -(11440,11440,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_sumac',0), -(11441,11441,'staticobjects/dividers/dpo_drv_divider_plain01_dark2',0), -(11442,11442,'staticobjects/dividers/dpo_drv_divider_plain01_dark',0), -(11443,11443,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_freeport',0), -(11444,11444,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_gorowyn',0), -(11445,11445,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_kelethin',0), -(11446,11446,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_neriak',0), -(11447,11447,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_qeynos',0), -(11448,11448,'creatures/monsters/goo_glass_green',0), -(11449,11449,'_exp06/monsters/skull_green',0), -(11450,11450,'staticobjects/liveevent/frostfell/dpo_holiday_orcskull_candycane',0), -(11451,11451,'staticobjects/chairs/miragul_obj_dias01',0), -(11452,11452,'staticobjects/benches/miragul_obj_dias02',0), -(11453,11453,'accessories/wieldable_items/weapons/exp06/1h_crush/exp06_1h_crush_erolissi_censer',0), -(11454,11454,'staticobjects/tcg/tcg_tapestry_boots_wings',0), -(11455,11455,'accessories/wearable_items/cloak/exp06/cloak_solid_black_rune',0), -(11456,11456,'accessories/wearable_items/cloak/exp06/cloak_master_assassin',0), -(11457,11457,'creatures/monsters/willowisp_branches',0), -(11458,11458,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/skirt',0), -(11459,11459,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/chest',0), -(11460,11460,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/feet',0), -(11461,11461,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/forearms',0), -(11462,11462,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/hands',0), -(11463,11463,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/head',0), -(11464,11464,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/legs',0), -(11465,11465,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/legs_noskirt',0), -(11466,11466,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/pauldron_defender_of_light_left',0), -(11467,11467,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/pauldron_defender_of_light_right',0), -(11468,11468,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/shoulders',0), -(11469,11469,'accessories/wearable_items/_exp06/defender_of_light_armor_leather/shoulders_nopauldrons',0), -(11470,11470,'accessories/wearable_items/_exp06/achievement_fire_chain/skirt',0), -(11471,11471,'accessories/wearable_items/_exp06/achievement_fire_chain/chest',0), -(11472,11472,'accessories/wearable_items/_exp06/achievement_fire_chain/feet',0), -(11473,11473,'accessories/wearable_items/_exp06/achievement_fire_chain/forearms',0), -(11474,11474,'accessories/wearable_items/_exp06/achievement_fire_chain/hands',0), -(11475,11475,'accessories/wearable_items/_exp06/achievement_fire_chain/head',0), -(11476,11476,'accessories/wearable_items/_exp06/achievement_fire_chain/legs',0), -(11477,11477,'accessories/wearable_items/_exp06/achievement_fire_chain/legs_noskirt',0), -(11478,11478,'accessories/wearable_items/_exp06/achievement_fire_chain/shoulders',0), -(11479,11479,'accessories/wearable_items/_exp06/achievement_forest_chain/skirt',0), -(11480,11480,'accessories/wearable_items/_exp06/achievement_forest_chain/chest',0), -(11481,11481,'accessories/wearable_items/_exp06/achievement_forest_chain/feet',0), -(11482,11482,'accessories/wearable_items/_exp06/achievement_forest_chain/forearms',0), -(11483,11483,'accessories/wearable_items/_exp06/achievement_forest_chain/hands',0), -(11484,11484,'accessories/wearable_items/_exp06/achievement_forest_chain/head',0), -(11485,11485,'accessories/wearable_items/_exp06/achievement_forest_chain/legs',0), -(11486,11486,'accessories/wearable_items/_exp06/achievement_forest_chain/legs_noskirt',0), -(11487,11487,'accessories/wearable_items/_exp06/achievement_forest_chain/shoulders',0), -(11488,11488,'accessories/wearable_items/_exp06/achievement_sky_leather/skirt',0), -(11489,11489,'accessories/wearable_items/_exp06/achievement_sky_leather/chest',0), -(11490,11490,'accessories/wearable_items/_exp06/achievement_sky_leather/feet',0), -(11491,11491,'accessories/wearable_items/_exp06/achievement_sky_leather/forearms',0), -(11492,11492,'accessories/wearable_items/_exp06/achievement_sky_leather/hands',0), -(11493,11493,'accessories/wearable_items/_exp06/achievement_sky_leather/head',0), -(11494,11494,'accessories/wearable_items/_exp06/achievement_sky_leather/legs',0), -(11495,11495,'accessories/wearable_items/_exp06/achievement_sky_leather/legs_noskirt',0), -(11496,11496,'accessories/wearable_items/_exp06/achievement_sky_leather/shoulders',0), -(11497,11497,'accessories/wearable_items/_exp06/achievement_sky_vanguard/skirt',0), -(11498,11498,'accessories/wearable_items/_exp06/achievement_sky_vanguard/chest',0), -(11499,11499,'accessories/wearable_items/_exp06/achievement_sky_vanguard/feet',0), -(11500,11500,'accessories/wearable_items/_exp06/achievement_sky_vanguard/forearms',0), -(11501,11501,'accessories/wearable_items/_exp06/achievement_sky_vanguard/hands',0), -(11502,11502,'accessories/wearable_items/_exp06/achievement_sky_vanguard/head',0), -(11503,11503,'accessories/wearable_items/_exp06/achievement_sky_vanguard/legs',0), -(11504,11504,'accessories/wearable_items/_exp06/achievement_sky_vanguard/legs_noskirt',0), -(11505,11505,'accessories/wearable_items/_exp06/achievement_sky_vanguard/right',0), -(11506,11506,'accessories/wearable_items/_exp06/achievement_sky_vanguard/shoulders',0), -(11507,11507,'accessories/wearable_items/_exp06/achievement_sky_vanguard/shoulders_nopauldrons',0), -(11508,11508,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/skirt',0), -(11509,11509,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/chest',0), -(11510,11510,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/feet',0), -(11511,11511,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/forearms',0), -(11512,11512,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/hands',0), -(11513,11513,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/head',0), -(11514,11514,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/legs',0), -(11515,11515,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/legs_noskirt',0), -(11516,11516,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/right',0), -(11517,11517,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/shoulders',0), -(11518,11518,'accessories/wearable_items/_exp06/achievement_swamp_vanguard/shoulders_nopauldrons',0), -(11519,11519,'creatures/tu/gods_mithaniel_marr_beard_helm',0), -(11520,11520,'creatures/tu/gods_mithaniel_marr_helm_beard_sword',0), -(11521,11521,'staticobjects/mirrors/vampire_mirror_nocol',0), -(11522,11522,'accessories/wearable_items/_exp06/achievement_fire_robe/skirt',0), -(11523,11523,'accessories/wearable_items/_exp06/achievement_fire_robe/chest',0), -(11524,11524,'accessories/wearable_items/_exp06/achievement_fire_robe/head',0), -(11525,11525,'accessories/wearable_items/_exp06/achievement_fire_robe/hood',0), -(11526,11526,'accessories/wearable_items/_exp06/achievement_fire_robe/pants',0), -(11527,11527,'accessories/wearable_items/_exp06/achievement_forest_robe/skirt',0), -(11528,11528,'accessories/wearable_items/_exp06/achievement_forest_robe/chest',0), -(11529,11529,'accessories/wearable_items/_exp06/achievement_forest_robe/head',0), -(11530,11530,'accessories/wearable_items/_exp06/achievement_forest_robe/hood',0), -(11531,11531,'accessories/wearable_items/_exp06/achievement_forest_robe/pants',0), -(11532,11532,'accessories/wearable_items/_exp06/achievement_swamp_robe/skirt',0), -(11533,11533,'accessories/wearable_items/_exp06/achievement_swamp_robe/chest',0), -(11534,11534,'accessories/wearable_items/_exp06/achievement_swamp_robe/head',0), -(11535,11535,'accessories/wearable_items/_exp06/achievement_swamp_robe/hood',0), -(11536,11536,'accessories/wearable_items/_exp06/achievement_swamp_robe/pants',0), -(11537,11537,'accessories/wieldable_items/shields/exp06/mithaniel_round_shield',0), -(11538,11538,'accessories/wearable_items/cloak/exp06/cloak_crystal_shard',0), -(11539,11539,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_spiked_mace_love',0), -(11540,11540,'accessories/wieldable_items/weapons/exp04/1h_crush/exp04_1hc_spiked_mace_sol',0), -(11541,11541,'accessories/wearable_items/_exp06/order_of_nature_vanguard/skirt',0), -(11542,11542,'accessories/wearable_items/_exp06/order_of_nature_vanguard/chest',0), -(11543,11543,'accessories/wearable_items/_exp06/order_of_nature_vanguard/feet',0), -(11544,11544,'accessories/wearable_items/_exp06/order_of_nature_vanguard/forearms',0), -(11545,11545,'accessories/wearable_items/_exp06/order_of_nature_vanguard/hands',0), -(11546,11546,'accessories/wearable_items/_exp06/order_of_nature_vanguard/head',0), -(11547,11547,'accessories/wearable_items/_exp06/order_of_nature_vanguard/legs',0), -(11548,11548,'accessories/wearable_items/_exp06/order_of_nature_vanguard/legs_noskirt',0), -(11549,11549,'accessories/wearable_items/_exp06/order_of_nature_vanguard/right',0), -(11550,11550,'accessories/wearable_items/_exp06/order_of_nature_vanguard/shoulders',0), -(11551,11551,'accessories/wearable_items/_exp06/order_of_nature_vanguard/shoulders_nopauldrons',0), -(11552,11552,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase01_everfrost',0), -(11553,11553,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase02_everfrost',0), -(11554,11554,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase03_everfrost',0), -(11555,11555,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase04_everfrost',0), -(11556,11556,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase05_everfrost',0), -(11557,11557,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase06_everfrost_final',0), -(11558,11558,'staticobjects/liveevent/frostfell/floortile_ice',0), -(11559,11559,'staticobjects/liveevent/frostfell/pedestal_table_ice',0), -(11560,11560,'staticobjects/liveevent/frostfell/mirror_ice',0), -(11561,11561,'staticobjects/liveevent/cityfestivals/freeport_floortile_black',0), -(11562,11562,'staticobjects/liveevent/cityfestivals/qeynos_roundcounter',0), -(11563,11563,'staticobjects/liveevent/cityfestivals/travelling_cart_twowheel',0), -(11564,11564,'staticobjects/liveevent/cityfestivals/travelling_cart_fourwheel',0), -(11565,11565,'staticobjects/liveevent/cityfestivals/freeport_candeholder',0), -(11566,11566,'staticobjects/liveevent/cityfestivals/freeport_candelabra',0), -(11567,11567,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_plain_red',0), -(11568,11568,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_plain_purple',0), -(11569,11569,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_plain_green',0), -(11570,11570,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_plain_blue',0), -(11571,11571,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_purple',0), -(11572,11572,'staticobjects/liveevent/cityfestivals/neriak_streetlamp_blue',0), -(11573,11573,'staticobjects/liveevent/cityfestivals/neriak_streetlamp',0), -(11574,11574,'staticobjects/liveevent/cityfestivals/neriak_table_large',0), -(11575,11575,'staticobjects/liveevent/cityfestivals/kelethin_chair_royal',0), -(11576,11576,'staticobjects/liveevent/cityfestivals/kelethin_table_round_fancy',0), -(11577,11577,'staticobjects/liveevent/cityfestivals/kelethin_table_round_inlaid',0), -(11578,11578,'staticobjects/liveevent/cityfestivals/kelethin_table_curvy',0), -(11579,11579,'staticobjects/liveevent/cityfestivals/kelethin_table_long',0), -(11580,11580,'staticobjects/liveevent/cityfestivals/kelethin_table_bedside',0), -(11581,11581,'staticobjects/liveevent/cityfestivals/kelethin_desk',0), -(11582,11582,'staticobjects/liveevent/cityfestivals/kelethin_chair_leaf',0), -(11583,11583,'staticobjects/liveevent/cityfestivals/kelethin_banner_royal',0), -(11584,11584,'staticobjects/liveevent/cityfestivals/kelethin_basket_gourd_mixedberry',0), -(11585,11585,'staticobjects/liveevent/cityfestivals/kelethin_basket_gourd_raspberry',0), -(11586,11586,'staticobjects/liveevent/cityfestivals/kelethin_basket_gourd_cranberry',0), -(11587,11587,'staticobjects/liveevent/cityfestivals/kelethin_basket_gourd_blueberry',0), -(11588,11588,'staticobjects/liveevent/cityfestivals/kelethin_basket_cranberry',0), -(11589,11589,'staticobjects/liveevent/cityfestivals/kelethin_basket_blueberry_short',0), -(11590,11590,'staticobjects/liveevent/cityfestivals/kelethin_basket_raspberry',0), -(11591,11591,'staticobjects/liveevent/cityfestivals/kelethin_basket_blueberry',0), -(11592,11592,'staticobjects/liveevent/cityfestivals/kelethin_shelf_shroom_blue',0), -(11593,11593,'staticobjects/liveevent/cityfestivals/kelethin_shelf_shroom',0), -(11594,11594,'staticobjects/liveevent/cityfestivals/gorowyn_bankvault',0), -(11595,11595,'staticobjects/liveevent/cityfestivals/gorowyn_cauldron',0), -(11596,11596,'staticobjects/liveevent/cityfestivals/gorowyn_weaponrack',0), -(11597,11597,'staticobjects/liveevent/cityfestivals/gorowyn_scrollcase_dual',0), -(11598,11598,'staticobjects/liveevent/cityfestivals/gorowyn_counter',0), -(11599,11599,'staticobjects/liveevent/cityfestivals/gorowyn_weathervane',0), -(11600,11600,'staticobjects/liveevent/cityfestivals/qeynos_sconce',0), -(11601,11601,'staticobjects/liveevent/cityfestivals/freeport_candle',0), -(11602,11602,'staticobjects/liveevent/cityfestivals/qeynos_table_pedestal',0), -(11603,11603,'staticobjects/liveevent/cityfestivals/gorowyn_table_pedestal',0), -(11604,11604,'staticobjects/liveevent/cityfestivals/kelethin_table_pedestal',0), -(11605,11605,'staticobjects/liveevent/cityfestivals/neriak_table_pedestal',0), -(11606,11606,'staticobjects/liveevent/cityfestivals/freeport_table_pedestal',0), -(11607,11607,'staticobjects/liveevent/cityfestivals/qeynos_post',0), -(11608,11608,'staticobjects/liveevent/cityfestivals/neriak_post',0), -(11609,11609,'staticobjects/liveevent/cityfestivals/kelethin_post',0), -(11610,11610,'staticobjects/liveevent/cityfestivals/gorowyn_post',0), -(11611,11611,'staticobjects/liveevent/cityfestivals/freeport_post',0), -(11612,11612,'staticobjects/liveevent/cityfestivals/qeynos_wallsconce_fancy',0), -(11613,11613,'staticobjects/liveevent/cityfestivals/gorowyn_floorlamp_plain',0), -(11614,11614,'staticobjects/liveevent/cityfestivals/kelethin_floorlamp_plain',0), -(11615,11615,'staticobjects/liveevent/cityfestivals/qeynos_candlestick',0), -(11616,11616,'staticobjects/liveevent/cityfestivals/qeynos_quad_lamppost',0), -(11617,11617,'staticobjects/liveevent/cityfestivals/qeynos_dual_lamppost',0), -(11618,11618,'staticobjects/liveevent/cityfestivals/qeynos_short_lamp',0), -(11619,11619,'staticobjects/liveevent/cityfestivals/qeynos_wallhanging_lamp',0), -(11620,11620,'staticobjects/liveevent/cityfestivals/gorowyn_brazier',0), -(11621,11621,'staticobjects/liveevent/cityfestivals/qeynos_mirror',0), -(11622,11622,'staticobjects/liveevent/cityfestivals/neriak_mirror',0), -(11623,11623,'staticobjects/liveevent/cityfestivals/kelethin_mirror',0), -(11624,11624,'staticobjects/liveevent/cityfestivals/gorowyn_mirror',0), -(11625,11625,'staticobjects/liveevent/cityfestivals/freeport_mirror',0), -(11626,11626,'staticobjects/liveevent/cityfestivals/freeport_lantern_post_short',0), -(11627,11627,'staticobjects/liveevent/cityfestivals/freeport_lantern_post',0), -(11628,11628,'staticobjects/liveevent/cityfestivals/freeport_lamppost',0), -(11629,11629,'staticobjects/liveevent/cityfestivals/neriak_roundcounter',0), -(11630,11630,'staticobjects/liveevent/cityfestivals/kelethin_roundcounter',0), -(11631,11631,'staticobjects/liveevent/cityfestivals/gorowyn_roundcounter',0), -(11632,11632,'staticobjects/liveevent/cityfestivals/freeport_roundcounter',0), -(11633,11633,'staticobjects/liveevent/cityfestivals/freeport_banner',0), -(11634,11634,'staticobjects/liveevent/cityfestivals/neriak_candelabra',0), -(11635,11635,'staticobjects/liveevent/cityfestivals/neriak_sign',0), -(11636,11636,'staticobjects/liveevent/cityfestivals/qeynos_sign',0), -(11637,11637,'staticobjects/liveevent/cityfestivals/freeport_sign',0), -(11638,11638,'staticobjects/liveevent/cityfestivals/gorowyn_sign',0), -(11639,11639,'staticobjects/liveevent/cityfestivals/kelethin_sign',0), -(11640,11640,'staticobjects/liveevent/cityfestivals/neriak_wallsign',0), -(11641,11641,'staticobjects/liveevent/cityfestivals/qeynos_largecolumn',0), -(11642,11642,'staticobjects/liveevent/cityfestivals/gorowyn_largecolumn',0), -(11643,11643,'staticobjects/liveevent/cityfestivals/kelethin_largecolumn',0), -(11644,11644,'staticobjects/liveevent/cityfestivals/neriak_largecolumn',0), -(11645,11645,'staticobjects/liveevent/cityfestivals/freeport_largecolumn',0), -(11646,11646,'staticobjects/liveevent/cityfestivals/qeynos_displaycounter',0), -(11647,11647,'staticobjects/liveevent/cityfestivals/neriak_displaycounter',0), -(11648,11648,'staticobjects/liveevent/cityfestivals/kelethin_displaycounter',0), -(11649,11649,'staticobjects/liveevent/cityfestivals/gorowyn_displaycounter',0), -(11650,11650,'staticobjects/liveevent/cityfestivals/freeport_displaycounter',0), -(11651,11651,'staticobjects/liveevent/cityfestivals/qeynos_floortile_white',0), -(11652,11652,'staticobjects/liveevent/cityfestivals/gorowyn_floortile_red',0), -(11653,11653,'staticobjects/liveevent/cityfestivals/kelethin_floortile_wood',0), -(11654,11654,'staticobjects/liveevent/cityfestivals/neriak_floortile_blue',0), -(11655,11655,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/head',1096), -(11656,11656,'staticobjects/liveevent/cityfestivals/qeynos_banner',0), -(11657,11657,'staticobjects/tapestry/dpo_tapestry_design_shardoflove1',0), -(11658,11658,'staticobjects/tapestry/dpo_tapestry_design_shardoflove2',0), -(11659,11659,'staticobjects/globes/sol_globe01',0), -(11660,11660,'staticobjects/liveevent/eq2anniversary_moon_tapestry01',0), -(11661,11661,'staticobjects/liveevent/eq2anniversary_claymore01',0), -(11662,11662,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_01',0), -(11663,11663,'staticobjects/_exp06/bamboo_stalk_small',0), -(11664,11664,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_blue',0), -(11665,11665,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_green',0), -(11666,11666,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_print01',0), -(11667,11667,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_print02',0), -(11668,11668,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_print03',0), -(11669,11669,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_print04',0), -(11670,11670,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_red',0), -(11671,11671,'staticobjects/tradeskill_objects/vrsn_fabricbolt01_yellow',0), -(11672,11672,'staticobjects/tradeskill_objects/vrsn_loom01',0), -(11673,11673,'staticobjects/tradeskill_objects/vrsn_spinningwheel01',0), -(11674,11674,'staticobjects/tradeskill_objects/vrsn_table06_sewing',0), -(11675,11675,'creatures/tu/rhoen_theer',0), -(11676,11676,'creatures/tu/rhoen_theer_evil',0), -(11677,11677,'staticobjects/_exp06/dpo_panda_skull',0), -(11678,11678,'_exp06/characters/tool_users/crystaline_folk_blue/crystaline_folk_blue',0), -(11679,11679,'_exp06/characters/tool_users/crystaline_folk_red/crystaline_folk_red',0), -(11680,11680,'accessories/npc_wearables/crystaline_folk/shoulders_right_large',0), -(11681,11681,'accessories/npc_wearables/crystaline_folk/chest_huge_back',0), -(11682,11682,'accessories/npc_wearables/crystaline_folk/head_crystal_crown',0), -(11683,11683,'accessories/npc_wearables/crystaline_folk/legs_both_lower',0), -(11684,11684,'accessories/npc_wearables/crystaline_folk/legs_left_lower',0), -(11685,11685,'accessories/npc_wearables/crystaline_folk/legs_right_lower',0), -(11686,11686,'accessories/npc_wearables/crystaline_folk/shoulders_both_claw',0), -(11687,11687,'accessories/npc_wearables/crystaline_folk/shoulders_both_hook',0), -(11688,11688,'accessories/npc_wearables/crystaline_folk/shoulders_both_hook_claw',0), -(11689,11689,'accessories/npc_wearables/crystaline_folk/shoulders_both_hook_large',0), -(11690,11690,'accessories/npc_wearables/crystaline_folk/shoulders_both_large',0), -(11691,11691,'accessories/npc_wearables/crystaline_folk/shoulders_left_claw',0), -(11692,11692,'accessories/npc_wearables/crystaline_folk/shoulders_left_hook',0), -(11693,11693,'accessories/npc_wearables/crystaline_folk/shoulders_left_large',0), -(11694,11694,'accessories/npc_wearables/crystaline_folk/shoulders_right_claw',0), -(11695,11695,'accessories/npc_wearables/crystaline_folk/shoulders_right_hook',0), -(11696,11696,'accessories/npc_wearables/crystaline_folk_blue/shoulders_right_large_blue',0), -(11697,11697,'accessories/npc_wearables/crystaline_folk_blue/chest_huge_back_blue',0), -(11698,11698,'accessories/npc_wearables/crystaline_folk_blue/legs_both_lower_blue',0), -(11699,11699,'accessories/npc_wearables/crystaline_folk_blue/legs_left_lower_blue',0), -(11700,11700,'accessories/npc_wearables/crystaline_folk_blue/legs_right_lower_blue',0), -(11701,11701,'accessories/npc_wearables/crystaline_folk_blue/shoulders_both_claw_blue',0), -(11702,11702,'accessories/npc_wearables/crystaline_folk_blue/shoulders_both_hook_blue',0), -(11703,11703,'accessories/npc_wearables/crystaline_folk_blue/shoulders_both_hook_claw_blue',0), -(11704,11704,'accessories/npc_wearables/crystaline_folk_blue/shoulders_both_hook_large_blue',0), -(11705,11705,'accessories/npc_wearables/crystaline_folk_blue/shoulders_both_large_blue',0), -(11706,11706,'accessories/npc_wearables/crystaline_folk_blue/shoulders_left_claw_blue',0), -(11707,11707,'accessories/npc_wearables/crystaline_folk_blue/shoulders_left_hook_blue',0), -(11708,11708,'accessories/npc_wearables/crystaline_folk_blue/shoulders_left_large_blue',0), -(11709,11709,'accessories/npc_wearables/crystaline_folk_blue/shoulders_right_claw_blue',0), -(11710,11710,'accessories/npc_wearables/crystaline_folk_blue/shoulders_right_hook_blue',0), -(11711,11711,'accessories/npc_wearables/crystaline_folk_red/shoulders_right_large_red',0), -(11712,11712,'accessories/npc_wearables/crystaline_folk_red/chest_huge_back_red',0), -(11713,11713,'accessories/npc_wearables/crystaline_folk_red/legs_both_lower_red',0), -(11714,11714,'accessories/npc_wearables/crystaline_folk_red/legs_left_lower_red',0), -(11715,11715,'accessories/npc_wearables/crystaline_folk_red/legs_right_lower_red',0), -(11716,11716,'accessories/npc_wearables/crystaline_folk_red/shoulders_both_claw_red',0), -(11717,11717,'accessories/npc_wearables/crystaline_folk_red/shoulders_both_hook_claw_red',0), -(11718,11718,'accessories/npc_wearables/crystaline_folk_red/shoulders_both_hook_large_red',0), -(11719,11719,'accessories/npc_wearables/crystaline_folk_red/shoulders_both_hook_red',0), -(11720,11720,'accessories/npc_wearables/crystaline_folk_red/shoulders_both_large_red',0), -(11721,11721,'accessories/npc_wearables/crystaline_folk_red/shoulders_left_claw_red',0), -(11722,11722,'accessories/npc_wearables/crystaline_folk_red/shoulders_left_hook_red',0), -(11723,11723,'accessories/npc_wearables/crystaline_folk_red/shoulders_left_large_red',0), -(11724,11724,'accessories/npc_wearables/crystaline_folk_red/shoulders_right_claw_red',0), -(11725,11725,'accessories/npc_wearables/crystaline_folk_red/shoulders_right_hook_red',0), -(11726,11726,'creatures/monsters/skeletal_pegasus',0), -(11727,11727,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/skirt',0), -(11728,11728,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/chest',0), -(11729,11729,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/feet',0), -(11730,11730,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/forearms',0), -(11731,11731,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/hands',0), -(11732,11732,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/head',0), -(11733,11733,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/legs',0), -(11734,11734,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/legs_noskirt',0), -(11735,11735,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/pauldron_defender_of_light_left',0), -(11736,11736,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/pauldron_defender_of_light_right',0), -(11737,11737,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/shoulders',0), -(11738,11738,'accessories/wearable_items/_exp06/defender_of_light_armor_chain/shoulders_nopauldrons',0), -(11739,11739,'accessories/wearable_items/_exp06/order_of_nature_robe/skirt',0), -(11740,11740,'accessories/wearable_items/_exp06/order_of_nature_robe/chest',0), -(11741,11741,'accessories/wearable_items/_exp06/order_of_nature_robe/feet',0), -(11742,11742,'accessories/wearable_items/_exp06/order_of_nature_robe/hands',0), -(11743,11743,'accessories/wearable_items/_exp06/order_of_nature_robe/head',0), -(11744,11744,'accessories/wearable_items/_exp06/order_of_nature_robe/pants',0), -(11745,11745,'creatures/tu/goatman',0), -(11746,11746,'creatures/tu/goatman_priest',0), -(11747,11747,'creatures/tu/goatman_warlord',0), -(11748,11748,'creatures/tu/goatman_warrior',0), -(11749,11749,'creatures/tu/goatman_wizard',0), -(11750,11750,'_exp06/characters/tool_users/talonite/talonite_male/talonite_male_base_tattoo_thorn_left',0), -(11751,11751,'_exp06/characters/tool_users/talonite/talonite_male/talonite_male_base',0), -(11752,11752,'_exp06/characters/tool_users/talonite/talonite_male/talonite_male_base_tatto_swirl_left',0), -(11753,11753,'_exp06/characters/tool_users/talonite/talonite_male/talonite_male_base_tattoo_swirl_both',0), -(11754,11754,'_exp06/characters/tool_users/talonite/talonite_male/talonite_male_base_tattoo_thorn_both',0), -(11755,11755,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/added_armor_pieces/shoulders_armor_plate_left',0), -(11756,11756,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/added_armor_pieces/shoulders_armor_cloth_left',0), -(11757,11757,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_plate_right_cloth_left',0), -(11758,11758,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/chest_collar_cloth',0), -(11759,11759,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/chest_shoulders_cloth',0), -(11760,11760,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/feet_armor_plate',0), -(11761,11761,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/head_mask_cloth',0), -(11762,11762,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/legs_armor_cloth',0), -(11763,11763,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/legs_armor_sash',0), -(11764,11764,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_cloth_both',0), -(11765,11765,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_plate_both',0), -(11766,11766,'accessories/npc_wearables/talonite_wearables/talonite_male/hair/hair_topknot',0), -(11767,11767,'accessories/npc_wearables/talonite_wearables/talonite_male/hair/hair_braid',0), -(11768,11768,'accessories/npc_wearables/talonite_wearables/talonite_male/hair/hair_long',0), -(11769,11769,'accessories/npc_wearables/talonite_wearables/talonite_male/hair/hair_ponytail',0), -(11770,11770,'_exp06/monsters/toxxulia',0), -(11771,11771,'creatures/monsters/rustmonster_new',0), -(11772,11772,'_exp06/characters/monsters/sea_eel/sea_eel',0), -(11773,11773,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_02_evil',0), -(11774,11774,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_urn',0), -(11775,11775,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_wreath_evil',0), -(11776,11776,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_skull',0), -(11777,11777,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_snowbucket_evil',0), -(11778,11778,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_stocking_evil',0), -(11779,11779,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_divider_tunnel',0), -(11780,11780,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_divider',0), -(11781,11781,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_divider_short',0), -(11782,11782,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_divider_flat',0), -(11783,11783,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_divider_frzr',0), -(11784,11784,'staticobjects/lighting/dpo_floating_candles_for_cshome',0), -(11785,11785,'staticobjects/bottles/vek_bottle02',0), -(11786,11786,'staticobjects/bottles/vek_bottle03',0), -(11787,11787,'staticobjects/bottles/vek_bottle04_square',0), -(11788,11788,'staticobjects/pillow/mistmoore_manor_man_pillow01',0), -(11789,11789,'staticobjects/pillow/mistmoore_manor_man_pillow02',0), -(11790,11790,'staticobjects/pillow/mistmoore_manor_man_pillow_round01',0), -(11791,11791,'staticobjects/rugs/mistmoore_manor_man_rug02',0), -(11792,11792,'staticobjects/rugs/mistmoore_manor_man_rug03',0), -(11793,11793,'staticobjects/rugs/mistmoore_manor_man_runner01',0), -(11794,11794,'_exp05/tool_users/lich_hologram_01',0), -(11795,11795,'_exp03/characters/monsters/bone_golem_soot',0), -(11796,11796,'_exp05/tool_users/grummus_01_soot',0), -(11797,11797,'_exp06/monsters/skull_yellow',0), -(11798,11798,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/chest_plate',0), -(11799,11799,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/head_plate',0), -(11800,11800,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/added_armor_pieces/shoulders_armor_glove_left',0), -(11801,11801,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_gloves',0), -(11802,11802,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_plate_glove_left_tatonly',0), -(11803,11803,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/shoulders_armor_cloth_globe_left_tatonly',0), -(11804,11804,'accessories/wearable_items/halloween_masks/mask_mask/head_white_tintable',0), -(11805,11805,'_exp06/characters/monsters/sea_nayad_boss/sea_nayad_boss',0), -(11806,11806,'accessories/npc_wearables/sea_nayad_boss/head_eel_hair',0), -(11807,11807,'accessories/npc_wearables/sea_nayad_boss/chest_choker',0), -(11808,11808,'accessories/wearable_items/_exp06/sea_nayad_boss/sea_nayad_boss_head',0), -(11809,11809,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_cage_02_dpo',0), -(11810,11810,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_cage_door_02_dpo',0), -(11811,11811,'staticobjects/tents/qey_tent01',0), -(11812,11812,'staticobjects/liveevent/cityfestivals/dpo_container_beans',0), -(11813,11813,'staticobjects/liveevent/cityfestivals/dpo_container_chili',0), -(11814,11814,'staticobjects/liveevent/cityfestivals/dpo_container_chili_open',0), -(11815,11815,'staticobjects/liveevent/cityfestivals/dpo_container_grain',0), -(11816,11816,'staticobjects/liveevent/cityfestivals/dpo_container_orange',0), -(11817,11817,'staticobjects/liveevent/cityfestivals/dpo_container_tall_wicker',0), -(11818,11818,'staticobjects/boats/farseas_boat_dpo',0), -(11819,11819,'accessories/wearable_items/profesion_hats/defender_of_light_helmet_chain/head',0), -(11820,11820,'accessories/wearable_items/profesion_hats/defender_of_light_helmet_chain/crest_01',0), -(11821,11821,'accessories/wearable_items/profesion_hats/defender_of_light_helmet_chain/crest_03',0), -(11822,11822,'accessories/wearable_items/profesion_hats/defender_of_light_helmet_chain/crest_05',0), -(11823,11823,'_exp06/characters/monsters/frostfell_cube/frostfell_cube',0), -(11824,11824,'accessories/npc_wearables/frostfell_cube/frostfell_cube_goblin',0), -(11825,11825,'accessories/npc_wearables/frostfell_cube/frostfell_cube_candycane',0), -(11826,11826,'accessories/npc_wearables/frostfell_cube/frostfell_cube_cap',0), -(11827,11827,'accessories/npc_wearables/frostfell_cube/frostfell_cube_darkelf',0), -(11828,11828,'_exp06/zones/objects/incense_burner_fx',0), -(11829,11829,'accessories/wearable_items/profesion_hats/defender_of_light_helmet_leather/head',0), -(11830,11830,'creatures/monsters/tyrannosaurus',0), -(11831,11831,'creatures/monsters/stegosaurus',0), -(11832,11832,'accessories/wearable_items/_exp06/dragon_leather/skirt',0), -(11833,11833,'accessories/wearable_items/_exp06/dragon_leather/chest',0), -(11834,11834,'accessories/wearable_items/_exp06/dragon_leather/feet',0), -(11835,11835,'accessories/wearable_items/_exp06/dragon_leather/forearms',0), -(11836,11836,'accessories/wearable_items/_exp06/dragon_leather/hands',0), -(11837,11837,'accessories/wearable_items/_exp06/dragon_leather/head',0), -(11838,11838,'accessories/wearable_items/_exp06/dragon_leather/legs',0), -(11839,11839,'accessories/wearable_items/_exp06/dragon_leather/legs_noskirt',0), -(11840,11840,'accessories/wearable_items/_exp06/dragon_leather/shoulders',0), -(11841,11841,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_container_side',0), -(11842,11842,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_forcefield',0), -(11843,11843,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_switch_base_02',0), -(11844,11844,'_exp06/zones/objects/exp06_dun_the_sentinel/swith_sphere_bobbing_01',0), -(11845,11845,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_switch_base_01',0), -(11846,11846,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_symbol_card_01',0), -(11847,11847,'_exp06/zones/objects/exp06_dun_vastydeep02/vasrtydeep02_objects_teleportpad01',0), -(11848,11848,'accessories/wearable_items/_exp06/dragon_chain/skirt',0), -(11849,11849,'accessories/wearable_items/_exp06/dragon_chain/chest',0), -(11850,11850,'accessories/wearable_items/_exp06/dragon_chain/feet',0), -(11851,11851,'accessories/wearable_items/_exp06/dragon_chain/forearms',0), -(11852,11852,'accessories/wearable_items/_exp06/dragon_chain/hands',0), -(11853,11853,'accessories/wearable_items/_exp06/dragon_chain/head',0), -(11854,11854,'accessories/wearable_items/_exp06/dragon_chain/head_mask',0), -(11855,11855,'accessories/wearable_items/_exp06/dragon_chain/legs',0), -(11856,11856,'accessories/wearable_items/_exp06/dragon_chain/legs_noskirt',0), -(11857,11857,'accessories/wearable_items/_exp06/dragon_chain/shoulders',0), -(11858,11858,'accessories/wearable_items/_exp06/dragon_chain/shoulders_pauldrons',0), -(11859,11859,'accessories/wearable_items/_exp06/defender_of_light_armor_magus/skirt',0), -(11860,11860,'accessories/wearable_items/_exp06/defender_of_light_armor_magus/arms',0), -(11861,11861,'accessories/wearable_items/_exp06/defender_of_light_armor_magus/chest',0), -(11862,11862,'accessories/wearable_items/_exp06/defender_of_light_armor_magus/legs',0), -(11863,11863,'creatures/tu/livingstatue_tooluser',0), -(11864,11864,'_exp01/characters/tool_users/water_djinn_avatar',0), -(11865,11865,'ec/pc/erudite/erudite_zombie_male',0), -(11866,11866,'_exp06/zones/objects/exp06_dun_vastydeep01/generic01_barrier01_combo01',0), -(11867,11867,'staticobjects/_exp06/bamboo_woodpiles',0), -(11868,11868,'_exp06/characters/tool_users/coldaine/coldaine_male',0), -(11869,11869,'accessories/npc_wearables/coldaine/legs_basic_pants',0), -(11870,11870,'accessories/npc_wearables/coldaine/beard_basic_01',0), -(11871,11871,'accessories/npc_wearables/coldaine/chest_utility_both',0), -(11872,11872,'accessories/npc_wearables/coldaine/chest_utility_both_fur',0), -(11873,11873,'accessories/npc_wearables/coldaine/chest_utility_left01',0), -(11874,11874,'accessories/npc_wearables/coldaine/chest_utility_left_fur',0), -(11875,11875,'accessories/npc_wearables/coldaine/chest_utility_right01',0), -(11876,11876,'accessories/npc_wearables/coldaine/chest_utility_right_fur',0), -(11877,11877,'accessories/npc_wearables/coldaine/feet_basic_boots',0), -(11878,11878,'accessories/npc_wearables/coldaine/forearms_both_armstraps',0), -(11879,11879,'accessories/npc_wearables/coldaine/forearms_both_fur',0), -(11880,11880,'accessories/npc_wearables/coldaine/forearms_both_fur_armstraps',0), -(11881,11881,'accessories/npc_wearables/coldaine/forearms_left_armstrap',0), -(11882,11882,'accessories/npc_wearables/coldaine/forearms_left_fur',0), -(11883,11883,'accessories/npc_wearables/coldaine/forearms_left_fur_armstrap',0), -(11884,11884,'accessories/npc_wearables/coldaine/forearms_right_armstrap',0), -(11885,11885,'accessories/npc_wearables/coldaine/forearms_right_fur',0), -(11886,11886,'accessories/npc_wearables/coldaine/forearms_right_fur_armstrap',0), -(11887,11887,'accessories/npc_wearables/coldaine/hair_basic_01',0), -(11888,11888,'accessories/npc_wearables/coldaine/hair_basic_02',0), -(11889,11889,'accessories/npc_wearables/coldaine/hair_basic_03',0), -(11890,11890,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/skirt',0), -(11891,11891,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/chest',0), -(11892,11892,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/feet',0), -(11893,11893,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/hands',0), -(11894,11894,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/head',0), -(11895,11895,'accessories/wearable_items/_exp06/defender_of_light_armor_robe/pants',0), -(11896,11896,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_apple_plate_dpo',0), -(11897,11897,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_cantelope_plate_dpo',0), -(11898,11898,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_eaten_plate_05_dpo',0), -(11899,11899,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_main_mix_plate_dpo',0), -(11900,11900,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_mix_fruit_plate_dpo',0), -(11901,11901,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_plate_fish_dpo',0), -(11902,11902,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_plate_orange_dpo',0), -(11903,11903,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_small_apple_plate_dpo',0), -(11904,11904,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_appleholder_dpo',0), -(11905,11905,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_desertholder_dpo',0), -(11906,11906,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_jello_dpo',0), -(11907,11907,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_orangeholder_dpo',0), -(11908,11908,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_piegroup_dpo',0), -(11909,11909,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_pot_dpo',0), -(11910,11910,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_punchbowl_dpo',0), -(11911,11911,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinal_obj_turkeyplatter_dpo',0), -(11912,11912,'accessories/npc_wearables/coldaine/shoulders_basic_right',0), -(11913,11913,'accessories/npc_wearables/coldaine/shoulders_basic_both',0), -(11914,11914,'accessories/npc_wearables/coldaine/shoulders_basic_left',0), -(11915,11915,'staticobjects/shield/broken_heart_shield_dpo',0), -(11916,11916,'staticobjects/shield/shard_of_love_tower_shield_dpo',0), -(11917,11917,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/skirt',0), -(11918,11918,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/chest',0), -(11919,11919,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/feet',0), -(11920,11920,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/forearms',0), -(11921,11921,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/hands',0), -(11922,11922,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/head',0), -(11923,11923,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/legs',0), -(11924,11924,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/legs_noskirt',0), -(11925,11925,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/right',0), -(11926,11926,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/shoulders',0), -(11927,11927,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_black/shoulders_nopauldrons',0), -(11928,11928,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/skirt',0), -(11929,11929,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/chest',0), -(11930,11930,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/feet',0), -(11931,11931,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/forearms',0), -(11932,11932,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/hands',0), -(11933,11933,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/head',0), -(11934,11934,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/legs',0), -(11935,11935,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/legs_noskirt',0), -(11936,11936,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/right',0), -(11937,11937,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/shoulders',0), -(11938,11938,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_gold/shoulders_nopauldrons',0), -(11939,11939,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/skirt',0), -(11940,11940,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/chest',0), -(11941,11941,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/feet',0), -(11942,11942,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/forearms',0), -(11943,11943,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/hands',0), -(11944,11944,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/head',0), -(11945,11945,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/legs',0), -(11946,11946,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/legs_noskirt',0), -(11947,11947,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/right',0), -(11948,11948,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/shoulders',0), -(11949,11949,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_red/shoulders_nopauldrons',0), -(11950,11950,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/skirt',0), -(11951,11951,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/chest',0), -(11952,11952,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/feet',0), -(11953,11953,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/forearms',0), -(11954,11954,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/hands',0), -(11955,11955,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/head',0), -(11956,11956,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/legs',0), -(11957,11957,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/legs_noskirt',0), -(11958,11958,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/right',0), -(11959,11959,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/shoulders',0), -(11960,11960,'accessories/wearable_items/_exp06/elf_armor_vanguard_kaborite_silver/shoulders_nopauldrons',0), -(11961,11961,'accessories/wearable_items/_exp06/plain_robe_cloth_tradeskill/pants',0), -(11962,11962,'accessories/wearable_items/_exp06/plain_robe_cloth_tradeskill/chest',0), -(11963,11963,'_exp06/characters/tool_users/erudite_classic_male/erudite_classic_male_ghost',0), -(11964,11964,'accessories/wearable_items/_exp06/token_reward_tradeskill_robe/skirt',0), -(11965,11965,'accessories/wearable_items/_exp06/token_reward_tradeskill_robe/chest',0), -(11966,11966,'accessories/wearable_items/_exp06/token_reward_tradeskill_robe/hood',0), -(11967,11967,'accessories/wearable_items/_exp06/token_reward_tradeskill_robe/pants',0), -(11968,11968,'_exp06/characters/tool_users/coldaine/coldaine_female',0), -(11969,11969,'accessories/npc_wearables/coldaine/coldaine_female/legs_basic_pants',0), -(11970,11970,'accessories/npc_wearables/coldaine/coldaine_female/chest_basic_strap',0), -(11971,11971,'accessories/npc_wearables/coldaine/coldaine_female/chest_basic_strap_fur',0), -(11972,11972,'accessories/npc_wearables/coldaine/coldaine_female/feet_basic_boots',0), -(11973,11973,'accessories/npc_wearables/coldaine/coldaine_female/feet_basic_fur_cuff',0), -(11974,11974,'accessories/npc_wearables/coldaine/coldaine_female/forearms_both_fur_wrap',0), -(11975,11975,'accessories/npc_wearables/coldaine/coldaine_female/forearms_both_leather',0), -(11976,11976,'accessories/npc_wearables/coldaine/coldaine_female/forearms_both_upper_leather',0), -(11977,11977,'accessories/npc_wearables/coldaine/coldaine_female/forearms_left_fur_wrap',0), -(11978,11978,'accessories/npc_wearables/coldaine/coldaine_female/forearms_left_leather',0), -(11979,11979,'accessories/npc_wearables/coldaine/coldaine_female/forearms_left_upper_leather',0), -(11980,11980,'accessories/npc_wearables/coldaine/coldaine_female/forearms_right_fur_wrap',0), -(11981,11981,'accessories/npc_wearables/coldaine/coldaine_female/forearms_right_leather',0), -(11982,11982,'accessories/npc_wearables/coldaine/coldaine_female/forearms_right_upper_leather',0), -(11983,11983,'accessories/npc_wearables/coldaine/coldaine_female/hair_basic_01',0), -(11984,11984,'accessories/npc_wearables/coldaine/coldaine_female/head_basic_hood',0), -(11985,11985,'accessories/wearable_items/_exp06/dragon_robe/skirt',0), -(11986,11986,'accessories/wearable_items/_exp06/dragon_robe/chest',0), -(11987,11987,'accessories/wearable_items/_exp06/dragon_robe/feet',0), -(11988,11988,'accessories/wearable_items/_exp06/dragon_robe/head',0), -(11989,11989,'accessories/wearable_items/_exp06/dragon_robe/hood',0), -(11990,11990,'accessories/wearable_items/_exp06/dragon_robe/legs',0), -(11991,11991,'accessories/wearable_items/_exp06/dragon_robe/pants',0), -(11992,11992,'staticobjects/world_devices/trdskl_achievement_workbench',0), -(11993,11993,'staticobjects/world_devices/trdskl_achievement_chemistrytable',0), -(11994,11994,'staticobjects/world_devices/trdskl_achievement_engraveddesk',0), -(11995,11995,'staticobjects/world_devices/trdskl_achievement_forge',0), -(11996,11996,'staticobjects/world_devices/trdskl_achievement_sewingtable_mannequin_loom',0), -(11997,11997,'staticobjects/world_devices/trdskl_achievement_stoveandkeg',0), -(11998,11998,'staticobjects/world_devices/trdskl_achievement_woodworkingtable',0), -(11999,11999,'accessories/npc_wearables/coldaine/hands_basic_ice',0), -(12000,12000,'accessories/npc_wearables/coldaine/hands_spiked_ice',0), -(12001,12001,'accessories/npc_wearables/coldaine/chest_keg_basic',0), -(12002,12002,'staticobjects/_exp06/kerra_spirit_totem_dpo',0), -(12003,12003,'_exp06/characters/tool_users/coldaine/coldaine_male_with_keg_walk',0), -(12004,12004,'accessories/wieldable_items/shields/exp06/coldaine_ice_shield',0), -(12005,12005,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_coldaine_ice',0), -(12006,12006,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_symbol_card_02',0), -(12007,12007,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/skirt',0), -(12008,12008,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/chest',0), -(12009,12009,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/feet',0), -(12010,12010,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/forearms',0), -(12011,12011,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/hands',0), -(12012,12012,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/hands_chaos_gauntlets',0), -(12013,12013,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/head',0), -(12014,12014,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/head_chaos_helm',0), -(12015,12015,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/legs',0), -(12016,12016,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/legs_chaos_shins',0), -(12017,12017,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/legs_noskirt',0), -(12018,12018,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/right',0), -(12019,12019,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/shoulders',0), -(12020,12020,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/shoulders_chaos_armor_all',0), -(12021,12021,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/shoulders_nopauldrons',0), -(12022,12022,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_shin_right',0), -(12023,12023,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_forearm_left',0), -(12024,12024,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_forearm_right',0), -(12025,12025,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_pauldrons_lower_left',0), -(12026,12026,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_pauldrons_lower_right',0), -(12027,12027,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_pauldrons_upper_left',0), -(12028,12028,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_pauldrons_upper_right',0), -(12029,12029,'accessories/wearable_items/_exp06/chaos_armor/vanguard_armor/snap_ons/chaos_shin_left',0), -(12030,12030,'staticobjects/_exp06/erudin_palace_symbol',0), -(12031,12031,'staticobjects/_exp06/kerra_vagabond_feather',0), -(12032,12032,'accessories/wearable_items/_exp06/dragon_robe/hands',0), -(12033,12033,'staticobjects/beds/drv_bed_double_dpo',0), -(12034,12034,'staticobjects/bones/bones_cobra_dead',0), -(12035,12035,'staticobjects/display_stands/djn_display_stand_steel_large_dpo',0), -(12036,12036,'staticobjects/tables/drv_table_dining_ornate02_blue_dpo',0), -(12037,12037,'staticobjects/tables/cr_table_map_red_and_black_dpo',0), -(12038,12038,'staticobjects/tableware/djn_plate_brass_blue_dpo',0), -(12039,12039,'staticobjects/urns/djn_vase_gold02_dpo',0), -(12040,12040,'staticobjects/urns/djn_incense_platinum_dpo',0), -(12041,12041,'staticobjects/chests/drv_chest_glass',0), -(12042,12042,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/shoulders',0), -(12043,12043,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/chest',0), -(12044,12044,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/feet',0), -(12045,12045,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/forearms',0), -(12046,12046,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/hands',0), -(12047,12047,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/head',0), -(12048,12048,'accessories/wearable_items/_exp06/journeyman_leather_tradeskill/legs',0), -(12049,12049,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/skirt',0), -(12050,12050,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/chest',0), -(12051,12051,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/feet',0), -(12052,12052,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/forearms',0), -(12053,12053,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/hands',0), -(12054,12054,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/head',0), -(12055,12055,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/legs',0), -(12056,12056,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/legs_noskirt',0), -(12057,12057,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_black/shoulders',0), -(12058,12058,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/skirt',0), -(12059,12059,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/chest',0), -(12060,12060,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/feet',0), -(12061,12061,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/forearms',0), -(12062,12062,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/hands',0), -(12063,12063,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/head',0), -(12064,12064,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/legs',0), -(12065,12065,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/legs_noskirt',0), -(12066,12066,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_blue/shoulders',0), -(12067,12067,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/skirt',0), -(12068,12068,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/chest',0), -(12069,12069,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/feet',0), -(12070,12070,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/forearms',0), -(12071,12071,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/hands',0), -(12072,12072,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/head',0), -(12073,12073,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/legs',0), -(12074,12074,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/legs_noskirt',0), -(12075,12075,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_gold/shoulders',0), -(12076,12076,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/skirt',0), -(12077,12077,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/chest',0), -(12078,12078,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/feet',0), -(12079,12079,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/forearms',0), -(12080,12080,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/hands',0), -(12081,12081,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/head',0), -(12082,12082,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/legs',0), -(12083,12083,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/legs_noskirt',0), -(12084,12084,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_green/shoulders',0), -(12085,12085,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/skirt',0), -(12086,12086,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/chest',0), -(12087,12087,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/feet',0), -(12088,12088,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/forearms',0), -(12089,12089,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/hands',0), -(12090,12090,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/head',0), -(12091,12091,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/legs',0), -(12092,12092,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/legs_noskirt',0), -(12093,12093,'accessories/wearable_items/_exp06/tradeskill_armor_chain_kaborite_metallic/shoulders',0), -(12094,12094,'staticobjects/_exp06/cooked_fish',0), -(12095,12095,'staticobjects/_exp06/panda_skull',0), -(12096,12096,'staticobjects/benches/cm_bench_long',0), -(12097,12097,'staticobjects/benches/cm_bench_short',0), -(12098,12098,'staticobjects/stainedglass/dpo_shimplatform_karnors_stainedglass',0), -(12099,12099,'staticobjects/stainedglass/dpo_shimplatform_befallen_stainedglass',0), -(12100,12100,'staticobjects/stainedglass/dpo_shimplatform_qeystainglass03',0), -(12101,12101,'staticobjects/stainedglass/dpo_shimplatform_chardok_stainedglass',0), -(12102,12102,'staticobjects/stainedglass/dpo_shimplatform_mmc_stainedglass02',0), -(12103,12103,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/head_collar',1096), -(12104,12104,'accessories/wearable_items/_exp08/dragon_armor/robe_brown/pants',1096), -(12105,12105,'staticobjects/chairs/mc_couch_purple_dpo',0), -(12106,12106,'staticobjects/chairs/mc_couch_yellow_dpo',0), -(12107,12107,'staticobjects/chairs/mc_couch_green_dpo',0), -(12108,12108,'staticobjects/chairs/mc_couch_red_dpo',0), -(12109,12109,'accessories/wearable_items/_exp08/dragon_armor/robe_green/skirt',1096), -(12110,12110,'accessories/wearable_items/_exp08/dragon_armor/robe_green/chest',1096), -(12111,12111,'accessories/wearable_items/_exp08/dragon_armor/robe_green/chest_epic',1096), -(12112,12112,'staticobjects/bookcases/vastydeep_library01_stacks',0), -(12113,12113,'accessories/wearable_items/_exp08/dragon_armor/robe_green/feet',1096), -(12114,12114,'staticobjects/dividers/paineel_screen_triple',0), -(12115,12115,'staticobjects/dividers/sentinel_divider_02',0), -(12116,12116,'staticobjects/dividers/erudin_screen_triple',0), -(12117,12117,'staticobjects/dressers/washbasin_dresser_wood_gold_dpo',0), -(12118,12118,'staticobjects/dressers/cm_dresser_single01',0), -(12119,12119,'staticobjects/dressers/cm_dresser_servant01',0), -(12120,12120,'staticobjects/beds/sentinel_bed_small_01',0), -(12121,12121,'staticobjects/beds/sentinel_bed_main_02',0), -(12122,12122,'staticobjects/banners/erudin_banner01_long_red',0), -(12123,12123,'staticobjects/banners/erudin_banner03_long_green',0), -(12124,12124,'staticobjects/banners/erudin_banner02_long_blue',0), -(12125,12125,'staticobjects/fires/fel_firepit_dpo',0), -(12126,12126,'staticobjects/mirrors/dpo_mosaic_mirror',0), -(12127,12127,'staticobjects/mirrors/erudin_reflecting_mirror',0), -(12128,12128,'staticobjects/urns/sentinel_vase_water_dpo',0), -(12129,12129,'staticobjects/urns/erudin_vase01_w_plant01',0), -(12130,12130,'staticobjects/urns/fel_vase_large02',0), -(12131,12131,'staticobjects/platforms/shim_liftplatform_water',0), -(12132,12132,'staticobjects/platforms/shim_liftplatform_jello',0), -(12133,12133,'staticobjects/platforms/shim_liftplatform_lava',0), -(12134,12134,'staticobjects/platforms/shim_liftplatform_mirror',0), -(12135,12135,'staticobjects/maps/sentinel_main_map_02',0), -(12136,12136,'staticobjects/maps/sentinel_globe_assembly',0), -(12137,12137,'staticobjects/maps/sentinel_main_map_01',0), -(12138,12138,'staticobjects/tables/erudin_table01',0), -(12139,12139,'staticobjects/tables/fel_winetable_dpo',0), -(12140,12140,'staticobjects/tables/cm_table_magical',0), -(12141,12141,'staticobjects/tables/cm_table_long_dpo',0), -(12142,12142,'staticobjects/tables/cm_table_hallway01',0), -(12143,12143,'staticobjects/tables/cm_table_bedside01',0), -(12144,12144,'staticobjects/tables/drv_table_dining_ornate02_sumac_dpo',0), -(12145,12145,'staticobjects/rugs/erudin_rug_biground',0), -(12146,12146,'staticobjects/rugs/erudin_rug03_bigred',0), -(12147,12147,'staticobjects/rugs/erudin_rug02_purple',0), -(12148,12148,'staticobjects/rugs/erudin_rug01_blue',0), -(12149,12149,'staticobjects/lighting/erudin_floor_lamp01_light',0), -(12150,12150,'staticobjects/lighting/erudin_wall_lamp04_light',0), -(12151,12151,'staticobjects/lighting/erudin_wall_lamp03_light',0), -(12152,12152,'staticobjects/lighting/erudin_ceiling_lamp01_light',0), -(12153,12153,'staticobjects/lighting/erudin_ceiling_lamp02_light',0), -(12154,12154,'staticobjects/lighting/cm_candlestick02',0), -(12155,12155,'staticobjects/lighting/cm_table_candelabra01',0), -(12156,12156,'staticobjects/lighting/cm_chandelier02_swinging',0), -(12157,12157,'staticobjects/lighting/cm_chandelier01_swinging',0), -(12158,12158,'staticobjects/soe_wallet/discoball_purple',0), -(12159,12159,'staticobjects/soe_wallet/discoball_gold',0), -(12160,12160,'staticobjects/tableware/fel_jug_water01',0), -(12161,12161,'accessories/wieldable_items/weapons/exp05/exp05_2hc_zombie_shovel_dpo',0), -(12162,12162,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/skirt',0), -(12163,12163,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/chest',0), -(12164,12164,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/head',0), -(12165,12165,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/head_for_classic_erudite',0), -(12166,12166,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/hood',0), -(12167,12167,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_black/pants',0), -(12168,12168,'staticobjects/tables/man_desk_ornate01_dpo',0), -(12169,12169,'staticobjects/chairs/cm_diningchair_yellow_dpo',0), -(12170,12170,'staticobjects/chairs/cm_diningchair_blue_dpo',0), -(12171,12171,'staticobjects/chairs/cm_diningchair_green_dpo',0), -(12172,12172,'staticobjects/chairs/cm_diningchair_purple_dpo',0), -(12173,12173,'staticobjects/chairs/cm_diningchair_red_dpo',0), -(12174,12174,'accessories/wearable_items/_exp08/dragon_armor/robe_green/hands',1096), -(12175,12175,'staticobjects/chairs/mc_couch_blue_dpo',0), -(12176,12176,'staticobjects/chairs/man_chair_large01_blue_dpo',0), -(12177,12177,'staticobjects/chairs/man_chair_large01_green_dpo',0), -(12178,12178,'staticobjects/chairs/man_chair_large01_purple_dpo',0), -(12179,12179,'staticobjects/chairs/man_chair_large01_red_dpo',0), -(12180,12180,'staticobjects/chairs/man_chair_large01_yellow_dpo',0), -(12181,12181,'staticobjects/chairs/man_couch_double01_blue_dpo',0), -(12182,12182,'staticobjects/chairs/man_couch_double01_green_dpo',0), -(12183,12183,'staticobjects/chairs/man_couch_double01_purple_dpo',0), -(12184,12184,'staticobjects/chairs/man_couch_double01_red_dpo',0), -(12185,12185,'staticobjects/chairs/man_couch_double01_yellow_dpo',0), -(12186,12186,'staticobjects/beds/man_bed_master01_yellow_dpo',0), -(12187,12187,'staticobjects/beds/man_bed_master01_blue_dpo',0), -(12188,12188,'staticobjects/beds/man_bed_master01_green_dpo',0), -(12189,12189,'staticobjects/beds/man_bed_master01_purple_dpo',0), -(12190,12190,'staticobjects/beds/man_bed_master01_red_dpo',0), -(12191,12191,'staticobjects/beds/man_bed_master01_redtapestry_dpo',0), -(12192,12192,'staticobjects/tables/man_desk_ornate01_sumac_dpo',0), -(12193,12193,'staticobjects/tents/qey_tent01_farseas',0), -(12194,12194,'creatures/monsters/bear_panda',0), -(12195,12195,'staticobjects/nektulos/nekcas_eviltrinket_severedhand001',0), -(12196,12196,'creatures/pets/pet_kitten/odus_kitten',0), -(12197,12197,'_exp04/monsters/clay_golem_storm_pet_nfs',0), -(12198,12198,'_exp04/monsters/clay_golem_storm_pet_nfs_epic',0), -(12199,12199,'_exp06/characters/monsters/sea_nayad_fire/sea_nayad_fire',0), -(12200,12200,'_exp06/characters/monsters/sea_nayad_fire/sea_nayad_fire_epic',0), -(12201,12201,'creatures/monsters/roper_crystal',0), -(12202,12202,'creatures/monsters/roper_crystal_epic',0), -(12203,12203,'staticobjects/crystals/dpo_kaborite_crucible',0), -(12204,12204,'staticobjects/_exp06/dpo_kaborite_crystalshard01',0), -(12205,12205,'staticobjects/tools/humantools_mineshovel01_dpo',0), -(12206,12206,'staticobjects/tools/humantoolsfarmpitchfork01_dpo',0), -(12207,12207,'accessories/wearable_items/_exp06/mermaid_scale_armor/shoulders',0), -(12208,12208,'accessories/wearable_items/_exp06/mermaid_scale_armor/chest',0), -(12209,12209,'accessories/wearable_items/_exp06/mermaid_scale_armor/feet',0), -(12210,12210,'accessories/wearable_items/_exp06/mermaid_scale_armor/forearms',0), -(12211,12211,'accessories/wearable_items/_exp06/mermaid_scale_armor/hands',0), -(12212,12212,'accessories/wearable_items/_exp06/mermaid_scale_armor/head',0), -(12213,12213,'accessories/wearable_items/_exp06/mermaid_scale_armor/legs',0), -(12214,12214,'ec/npc/skeletonorc_armor_greater',0), -(12215,12215,'ec/npc/skeletonorc_armor_lesser',0), -(12216,12216,'_exp05/monsters/animatedhand_01_water',0), -(12217,12217,'staticobjects/stainedglass/dpo_shimplatform_manor_stainedglass',0), -(12218,12218,'staticobjects/stainedglass/dpo_shimplatform_qeystainglass01',0), -(12219,12219,'staticobjects/chairs/edk_chair002_fancy_dark',0), -(12220,12220,'accessories/wearable_items/cloak/exp06/cloak_mermaid_scale',0), -(12221,12221,'staticobjects/chairs/cm_chaise_yellow_dpo',0), -(12222,12222,'staticobjects/chairs/cm_chaise_blue_dpo',0), -(12223,12223,'staticobjects/chairs/cm_chaise_green_dpo',0), -(12224,12224,'staticobjects/chairs/cm_chaise_purple_dpo',0), -(12225,12225,'staticobjects/chairs/cm_chaise_red_dpo',0), -(12226,12226,'staticobjects/panels/dpo_vrsn_ceilingstars_panel',0), -(12227,12227,'staticobjects/panels/dpo_clouds_panel',0), -(12228,12228,'staticobjects/panels/dpo_cobblestone_panel',0), -(12229,12229,'staticobjects/panels/dpo_sewer_ceilingglow_panel',0), -(12230,12230,'staticobjects/panels/dpo_mmc_tile03_panel',0), -(12231,12231,'staticobjects/panels/dpo_mmc_tile01_panel',0), -(12232,12232,'staticobjects/panels/dpo_bluemosaic_panel',0), -(12233,12233,'accessories/npc_wearables/talonite_wearables/talonite_male/armor/chest_no_appearance',0), -(12234,12234,'accessories/wearable_items/_exp06/demonic_chain/shoulders_demonic_skull_pauldrons',0), -(12235,12235,'accessories/wearable_items/_exp06/demonic_leather/demonic_skull_pauldron_left',0), -(12236,12236,'accessories/wearable_items/_exp06/demonic_leather/shoulders_demonic_skull_pauldrons',0), -(12237,12237,'accessories/wearable_items/_exp06/demonic_leather/demonic_skull_pauldron_right',0), -(12238,12238,'accessories/wearable_items/_exp06/demonic_robe/chest_demonic_skull_pauldrons',0), -(12239,12239,'accessories/wearable_items/_exp06/demonic_robe/demonic_skull_pauldron_left',0), -(12240,12240,'accessories/wearable_items/_exp06/demonic_robe/demonic_skull_pauldron_right',0), -(12241,12241,'staticobjects/easels/easel_square_tree_circle',0), -(12242,12242,'staticobjects/soe_wallet/man_dresser_mayong01',0), -(12243,12243,'staticobjects/soe_wallet/man_coffin_bed_black_white',0), -(12244,12244,'staticobjects/soe_wallet/man_coffin_bed_black_blue',0), -(12245,12245,'staticobjects/soe_wallet/man_coffin_bed_black_red',0), -(12246,12246,'accessories/wieldable_items/weapons/soe_wallet/hearts_wand',0), -(12247,12247,'accessories/wieldable_items/weapons/soe_wallet/bubble_wand',0), -(12248,12248,'accessories/wieldable_items/weapons/soe_wallet/evilstars_wand',0), -(12249,12249,'staticobjects/_exp06/observatory_concentrator_fixed',0), -(12250,12250,'staticobjects/_exp06/observatory_concentrator_cracked',0), -(12251,12251,'staticobjects/_exp06/kerra_coconut',0), -(12252,12252,'accessories/wearable_items/_exp06/six_vet_reward/head',0), -(12253,12253,'accessories/wearable_items/cloak/exp06/cloak_six_vet_cloak',0), -(12254,12254,'staticobjects/soe_wallet/ebony_bdrm_armoire_dpo',0), -(12255,12255,'staticobjects/soe_wallet/ebony_bdrm_dresser_dpo',0), -(12256,12256,'staticobjects/soe_wallet/ebony_vanity_washing_table_closed_dpo',0), -(12257,12257,'staticobjects/soe_wallet/ebony_vanity_stool_dpo',0), -(12258,12258,'staticobjects/soe_wallet/plushie_envenomed_servant',0), -(12259,12259,'staticobjects/soe_wallet/ebony_vanity_washing_table_dpo',0), -(12260,12260,'staticobjects/soe_wallet/ebony_vanity_table_mirror_dpo',0), -(12261,12261,'staticobjects/soe_wallet/ebony_vanity_mirror_dpo',0), -(12262,12262,'staticobjects/soe_wallet/ebony_vanity_drawers_dpo',0), -(12263,12263,'staticobjects/soe_wallet/ebony_office_desk_dpo',0), -(12264,12264,'staticobjects/soe_wallet/ebony_office_chest_w_goldcoins_dpo',0), -(12265,12265,'staticobjects/soe_wallet/ebony_office_chair_dpo',0), -(12266,12266,'staticobjects/soe_wallet/ebony_office_bookshelf_tall_dpo',0), -(12267,12267,'staticobjects/soe_wallet/ebony_office_bookshelf_small_dpo',0), -(12268,12268,'staticobjects/soe_wallet/ebony_living_table_end_dpo',0), -(12269,12269,'staticobjects/soe_wallet/ebony_living_table_coffee_dpo',0), -(12270,12270,'staticobjects/soe_wallet/ebony_living_loveseat_pillows_dpo',0), -(12271,12271,'staticobjects/soe_wallet/ebony_living_couch_pillows_dpo',0), -(12272,12272,'staticobjects/soe_wallet/ebony_dining_table_dpo',0), -(12273,12273,'staticobjects/soe_wallet/ebony_dining_chair_dpo',0), -(12274,12274,'staticobjects/soe_wallet/ebony_dining_cabinet_dpo',0), -(12275,12275,'staticobjects/soe_wallet/ebony_dining_bench_dpo',0), -(12276,12276,'staticobjects/soe_wallet/ebony_bdrm_nightstand_dpo',0), -(12277,12277,'staticobjects/soe_wallet/ebony_vanity_dresser_dpo',0), -(12278,12278,'staticobjects/soe_wallet/ebony_bdrm_bed_sleigh_dpo',0), -(12279,12279,'staticobjects/easels/easel_square_abstract_bluedrip',0), -(12280,12280,'staticobjects/easels/easel_square_abstract_green',0), -(12281,12281,'staticobjects/easels/easel_square_abstract_orange',0), -(12282,12282,'staticobjects/easels/easel_square_abstract_purple',0), -(12283,12283,'staticobjects/easels/easel_square_abstract_red',0), -(12284,12284,'staticobjects/easels/easel_square_armored',0), -(12285,12285,'staticobjects/easels/easel_square_camels_circle',0), -(12286,12286,'staticobjects/easels/easel_square_castle',0), -(12287,12287,'staticobjects/easels/easel_square_everlingdaughter02',0), -(12288,12288,'staticobjects/easels/easel_square_garinok',0), -(12289,12289,'staticobjects/easels/easel_square_inn',0), -(12290,12290,'staticobjects/easels/easel_square_knight',0), -(12291,12291,'staticobjects/easels/easel_square_lion',0), -(12292,12292,'staticobjects/easels/easel_square_map',0), -(12293,12293,'staticobjects/easels/easel_square_oldman',0), -(12294,12294,'staticobjects/easels/easel_square_pie',0), -(12295,12295,'staticobjects/easels/easel_square_potions',0), -(12296,12296,'staticobjects/easels/easel_square_rivervaleboats',0), -(12297,12297,'staticobjects/easels/easel_square_rivervalechart',0), -(12298,12298,'staticobjects/liveevent/frostfell/dpo_holiday_snowpile_fog',0), -(12299,12299,'staticobjects/liveevent/frostfell/dpo_holiday_dirtpile_fog',0), -(12300,12300,'accessories/wearable_items/cloak/exp06/cloak_six_vet_cloak_red',0), -(12301,12301,'accessories/wearable_items/_exp06/six_vet_reward_red/head',0), -(12302,12302,'_exp05/tool_users/mummy_variant_mage_greater',0), -(12303,12303,'accessories/wieldable_items/weapons/exp06/1h_crush/1h_crush_fish_club',0), -(12304,12304,'_exp06/zones/objects/exp06_dun_the_sentinel/sentinel_rm06_stairs',0), -(12305,12305,'accessories/wieldable_items/weapons/exp06/great_spear/broom',0), -(12306,12306,'staticobjects/_exp06/odso_toxx_vinebud01',0), -(12307,12307,'staticobjects/liveevent/erollisi_objects/errolisi_cookie_plate01',0), -(12308,12308,'staticobjects/liveevent/erollisi_objects/errolisi_candles_pinkwhite01',0), -(12309,12309,'staticobjects/liveevent/erollisi_objects/errolisi_candles_purplewhite01',0), -(12310,12310,'staticobjects/liveevent/erollisi_objects/errolisi_candles_redwhite01',0), -(12311,12311,'staticobjects/_exp06/kerra_drum',0), -(12312,12312,'accessories/wearable_items/profesion_hats/fungus_man_cap/fungus_man_cap_flat/head',0), -(12313,12313,'accessories/wearable_items/profesion_hats/fungus_man_cap/fungus_man_cap_pointy/head',0), -(12314,12314,'_exp06/zones/objects/exp06_rgn_odus_north/quest_object_egg',0), -(12315,12315,'staticobjects/_exp06/open_rat_trap',0), -(12316,12316,'staticobjects/_exp06/panda_statue_completed',0), -(12317,12317,'staticobjects/_exp06/closed_rat_trap',0), -(12318,12318,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_jug',0), -(12319,12319,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_snowbucket',0), -(12320,12320,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_stocking',0), -(12321,12321,'accessories/wearable_items/snapons/backpacks/backpack_frostfell_swivel/backpack_frostfell_swivel_wreath',0), -(12322,12322,'accessories/wieldable_items/shields/exp06/demonic_round_shield',0), -(12323,12323,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_demonic',0), -(12324,12324,'staticobjects/_exp06/hua_scroll_01',0), -(12325,12325,'staticobjects/_exp06/hua_scroll_02',0), -(12326,12326,'staticobjects/_exp06/so_rock_01',0), -(12327,12327,'staticobjects/_exp06/so_rock_02',0), -(12328,12328,'staticobjects/_exp06/hua_table_small',0), -(12329,12329,'staticobjects/_exp06/hua_tea_kettle',0), -(12330,12330,'staticobjects/_exp06/hua_weaponrack',0), -(12331,12331,'staticobjects/_exp06/ishaq_podium',0), -(12332,12332,'staticobjects/_exp06/barrel_fish',0), -(12333,12333,'staticobjects/_exp06/square_crate',0), -(12334,12334,'staticobjects/_exp06/dpo_dirtmound',0), -(12335,12335,'staticobjects/_exp06/dpo_totem_tentpole',0), -(12336,12336,'staticobjects/_exp06/dpo_open_book',0), -(12337,12337,'staticobjects/_exp06/book_pile_01',0), -(12338,12338,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/dragon_katana',0), -(12339,12339,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/korsha_staff2h',0), -(12340,12340,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/scimitar_tallonite',0), -(12341,12341,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/tallonite_longbow_2hb',0), -(12342,12342,'_exp06/zones/objects/exp06_dun_erudin_palace/erudin03_symbol_r04',0), -(12343,12343,'creatures/mounts/lynx_mount/lynx_mount_heavy_armor',0), -(12344,12344,'staticobjects/_exp06/steam_bowl_01',0), -(12345,12345,'staticobjects/_exp06/harvest/exp06_gem_node',0), -(12346,12346,'staticobjects/_exp06/harvest/exp06_wood_node',0), -(12347,12347,'staticobjects/_exp06/harvest/exp06_ore_node',0), -(12348,12348,'staticobjects/_exp06/harvest/exp06_root_node',0), -(12349,12349,'staticobjects/_exp06/harvest/exp06_den_node',0), -(12350,12350,'staticobjects/_exp06/harvest/exp06_bush_node',0), -(12351,12351,'staticobjects/_exp06/roekillik_weaponrack',0), -(12352,12352,'staticobjects/_exp06/human_cart',0), -(12353,12353,'staticobjects/_exp06/stable_trough_long',0), -(12354,12354,'staticobjects/_exp06/hua_basket_tall',0), -(12355,12355,'staticobjects/_exp06/storage_box_01',0), -(12356,12356,'staticobjects/_exp06/collectionbox_01',0), -(12357,12357,'staticobjects/_exp06/square_crate_02',0), -(12358,12358,'staticobjects/_exp06/dead_rat',0), -(12359,12359,'staticobjects/_exp06/weeds_brown',0), -(12360,12360,'staticobjects/_exp06/tablet_scribbles_01',0), -(12361,12361,'staticobjects/_exp06/tablet_scribbles_02',0), -(12362,12362,'staticobjects/_exp06/tablet_scribbles_03',0), -(12363,12363,'staticobjects/_exp06/kaborite_gem',0), -(12364,12364,'staticobjects/_exp06/toxfly_egg',0), -(12365,12365,'staticobjects/_exp06/hua_cup_01',0), -(12366,12366,'staticobjects/_exp06/odso_small_tox_tree_01',0), -(12367,12367,'staticobjects/_exp06/odso_dagger001_plain',0), -(12368,12368,'staticobjects/_exp06/odso_dagger001_ornate',0), -(12369,12369,'staticobjects/_exp06/odso_dirtmound01',0), -(12370,12370,'staticobjects/_exp06/exp06_plant_harvesting',0), -(12371,12371,'staticobjects/_exp06/exp06_bush_harvesting',0), -(12372,12372,'staticobjects/_exp06/odso_panda_totem_tradeskill',0), -(12373,12373,'staticobjects/_exp06/odso_mushroom01',0), -(12374,12374,'staticobjects/_exp06/odso_small_tox_tree_02',0), -(12375,12375,'accessories/wearable_items/_exp06/dragon_leather/head_dragon_helm',0), -(12376,12376,'staticobjects/carts/klakanon_mine_cart',0), -(12377,12377,'staticobjects/gears/square_gear_inactive',0), -(12378,12378,'accessories/wearable_items/snapons/armbands/shoulders_armband_strap_right',0), -(12379,12379,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_both',0), -(12380,12380,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_left',0), -(12381,12381,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_right',0), -(12382,12382,'accessories/wearable_items/snapons/armbands/shoulders_armband_golden_both',0), -(12383,12383,'accessories/wearable_items/snapons/armbands/shoulders_armband_golden_left',0), -(12384,12384,'accessories/wearable_items/snapons/armbands/shoulders_armband_golden_right',0), -(12385,12385,'accessories/wearable_items/snapons/armbands/shoulders_armband_strap_both',0), -(12386,12386,'accessories/wearable_items/snapons/armbands/shoulders_armband_strap_left',0), -(12387,12387,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_silver_both',0), -(12388,12388,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_silver_left',0), -(12389,12389,'accessories/wearable_items/snapons/armbands/shoulders_armband_gems_silver_right',0), -(12390,12390,'accessories/wearable_items/snapons/armbands/shoulders_armband_silver_both',0), -(12391,12391,'accessories/wearable_items/snapons/armbands/shoulders_armband_silver_left',0), -(12392,12392,'accessories/wearable_items/snapons/armbands/shoulders_armband_silver_right',0), -(12393,12393,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/erudite_robe_pauldron_right',0), -(12394,12394,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/chest_epic_pauldrons',0), -(12395,12395,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_robe_white/erudite_robe_pauldron_left',0), -(12396,12396,'accessories/wearable_items/cloak/exp06/cloak_rune_10',0), -(12397,12397,'accessories/wearable_items/cloak/exp06/cloak_rune_13',0), -(12398,12398,'creatures/tu/ettin_new',0), -(12399,12399,'_exp06/characters/monsters/sea_dragon_undead/sea_dragon_undead',0), -(12400,12400,'accessories/wearable_items/cloak/exp06/cloak_rune_13_leafy',0), -(12401,12401,'staticobjects/_exp06/odno_erudin_macguffin01',0), -(12402,12402,'staticobjects/_exp06/tox_flowerbud_small',0), -(12403,12403,'staticobjects/_exp06/dpo_kaborite_crucible',0), -(12404,12404,'staticobjects/_exp06/dpo_odso_chest02_w_lid',0), -(12405,12405,'staticobjects/_exp02/ss_vase_porcelain_small02',0), -(12406,12406,'staticobjects/_exp02/dn_lightsource_clawlamp_withorbs01_blue',0), -(12407,12407,'staticobjects/_exp02/dn_lightsource_clawlamp_withorbs_orangegreen',0), -(12408,12408,'staticobjects/_exp02/dn_lightsource_lantern01',0), -(12409,12409,'staticobjects/_exp02/dn_lightsource_lavaskullwell01',0), -(12410,12410,'staticobjects/_exp02/dn_lightsource_shadowlamp01_orange',0), -(12411,12411,'staticobjects/_exp02/dn_tapestry_hide01',0), -(12412,12412,'staticobjects/_exp02/dn_tapestry_wing_dead01',0), -(12413,12413,'staticobjects/_exp02/hf_egg_holder_large01',0), -(12414,12414,'staticobjects/_exp02/hf_lightsource_chandalier_bones_center01',0), -(12415,12415,'staticobjects/_exp02/hf_weapons_wall_shield01',0), -(12416,12416,'staticobjects/_exp02/los_jail_cell_piece01',0), -(12417,12417,'staticobjects/_exp02/ls_decoration_wall_dragonhead01',0), -(12418,12418,'staticobjects/_exp02/ls_dragoneggs_mixed',0), -(12419,12419,'staticobjects/_exp02/ls_vase_curved01',0), -(12420,12420,'staticobjects/_exp02/ls_vase_curved02',0), -(12421,12421,'staticobjects/_exp02/rd_nest_blue_draconian_wall01',0), -(12422,12422,'staticobjects/_exp02/rn_bones_skull01',0), -(12423,12423,'staticobjects/_exp02/rn_lightsource_torch01',0), -(12424,12424,'staticobjects/_exp02/sos_aviak_bench01',0), -(12425,12425,'staticobjects/_exp02/sos_aviak_stool01',0), -(12426,12426,'staticobjects/_exp02/sos_aviak_weaponstand01',0), -(12427,12427,'staticobjects/_exp02/sos_banner_awakened_dpo',0), -(12428,12428,'staticobjects/_exp02/sos_banner_erudite_dpo',0), -(12429,12429,'staticobjects/_exp02/sos_dragoneggs_unbroken_blue',0), -(12430,12430,'staticobjects/_exp02/sos_dragoneggs_unbroken_pink',0), -(12431,12431,'staticobjects/_exp02/sos_dragoneggs_unbroken_purple',0), -(12432,12432,'staticobjects/_exp02/sos_lightsource_chandelier_orange_swinging',0), -(12433,12433,'staticobjects/_exp02/sos_lightsource_hanginglamp_swinging',0), -(12434,12434,'staticobjects/_exp02/sos_pillows_red_group01',0), -(12435,12435,'staticobjects/_exp02/sos_trophy_dragon',0), -(12436,12436,'staticobjects/_exp02/sos_trophy_insect',0), -(12437,12437,'staticobjects/_exp02/ss_bookcase_ornate01',0), -(12438,12438,'staticobjects/_exp02/ss_bookcase_ornate_ceiling01',0), -(12439,12439,'staticobjects/_exp02/ss_vase_curved01',0), -(12440,12440,'staticobjects/_exp02/ss_vase_curved02',0), -(12441,12441,'staticobjects/_exp02/ss_vase_porcelain_large01',0), -(12442,12442,'staticobjects/_exp02/ss_vase_porcelain_large02',0), -(12443,12443,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/tallonite_longbow',0), -(12444,12444,'staticobjects/papers/floor_paper_human_written01_raised_noflutter',0), -(12445,12445,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/katana_1h_tallonite',0), -(12446,12446,'accessories/npc_wearables/talonite_wearables/tallonite_weapons/silvertip_sword_1h_tallonite',0), -(12447,12447,'staticobjects/shop/floor_displaycase_any_ornate01_small',0), -(12448,12448,'staticobjects/mirrors/dpo_charasis_mirror_ice',0), -(12449,12449,'creatures/mounts/flying_disc/flying_disc_good_fx',0), -(12450,12450,'_exp06/monsters/goo_energy_globs',0), -(12451,12451,'accessories/wieldable_items/weapons/exp05/exp05_2hc_zombie_shovel_dpo2',0), -(12452,12452,'staticobjects/promo_items/promo_alkaborrest_statue01',0), -(12453,12453,'accessories/wearable_items/_exp08/dragon_armor/robe_green/head',1096), -(12454,12454,'accessories/wearable_items/_exp08/dragon_armor/robe_green/head_collar',1096), -(12455,12455,'accessories/wearable_items/_exp08/dragon_armor/robe_green/pants',1096), -(12456,12456,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/skirt',1096), -(12457,12457,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/chest',1096), -(12458,12458,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/chest_epic',1096), -(12459,12459,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/feet',1096), -(12460,12460,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/hands',1096), -(12461,12461,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/head',1096), -(12462,12462,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/head_collar',1096), -(12463,12463,'accessories/wearable_items/_exp06/ornate_robe01/head',0), -(12464,12464,'accessories/wearable_items/_exp06/ornate_robe01/skirt',0), -(12465,12465,'accessories/wearable_items/_exp06/ornate_robe01/chest',0), -(12466,12466,'accessories/wearable_items/_exp06/ornate_robe01/hood',0), -(12467,12467,'accessories/wearable_items/_exp06/ornate_robe01/pants',0), -(12468,12468,'staticobjects/_exp06/kerra_plate_of_cheese',0), -(12469,12469,'creatures/monsters/roper_petrified',0), -(12470,12470,'_exp06/characters/tool_users/construct_necro/construct_necro_dark',0), -(12471,12471,'_exp06/characters/tool_users/construct_necro/construct_necro',0), -(12472,12472,'_exp06/characters/tool_users/construct_necro/construct_necro_boss',0), -(12473,12473,'accessories/npc_wearables/construct_necro/chest_construct_necro_tank_dark',0), -(12474,12474,'accessories/npc_wearables/construct_necro/chest_construct_necro_boss',0), -(12475,12475,'accessories/npc_wearables/construct_necro/chest_construct_necro_dps',0), -(12476,12476,'accessories/npc_wearables/construct_necro/chest_construct_necro_dps_dark',0), -(12477,12477,'accessories/npc_wearables/construct_necro/chest_construct_necro_tank',0), -(12478,12478,'creatures/monsters/dervish_petrified',0), -(12479,12479,'staticobjects/_exp06/odso_observatory_table',0), -(12480,12480,'staticobjects/_exp06/kerra_table_square01',0), -(12481,12481,'staticobjects/_exp06/kerra_table_round01',0), -(12482,12482,'staticobjects/_exp06/kerra_scratchingpost02',0), -(12483,12483,'staticobjects/_exp06/kerra_scratchingpost01',0), -(12484,12484,'staticobjects/_exp06/kerra_torch01',0), -(12485,12485,'staticobjects/_exp06/kerra_chair_tall01',0), -(12486,12486,'staticobjects/_exp06/kerra_chair_short01',0), -(12487,12487,'staticobjects/_exp06/kerra_basket_tall_grain02',0), -(12488,12488,'staticobjects/_exp06/kerra_basket_tall_covered01',0), -(12489,12489,'staticobjects/_exp06/kerra_banner_stand',0), -(12490,12490,'staticobjects/_exp06/kerra_stairs01',0), -(12491,12491,'staticobjects/_exp06/kerra_kejek_totem01',0), -(12492,12492,'staticobjects/_exp06/hua_totem01',0), -(12493,12493,'staticobjects/_exp06/hua_statue_traveler03',0), -(12494,12494,'staticobjects/_exp06/hua_statue_traveler02',0), -(12495,12495,'staticobjects/_exp06/hua_statue_traveler01',0), -(12496,12496,'staticobjects/_exp06/hua_light_short',0), -(12497,12497,'staticobjects/_exp06/hua_light_tall',0), -(12498,12498,'staticobjects/_exp06/hua_table_short',0), -(12499,12499,'staticobjects/_exp06/hua_table_low',0), -(12500,12500,'staticobjects/_exp06/hua_food_container',0), -(12501,12501,'staticobjects/_exp06/hua_chair_tall',0), -(12502,12502,'staticobjects/_exp06/hua_chair_low',0), -(12503,12503,'staticobjects/_exp06/hua_mat_round',0), -(12504,12504,'staticobjects/_exp06/hua_mat_bed',0), -(12505,12505,'staticobjects/_exp06/hua_basket_fish',0), -(12506,12506,'staticobjects/_exp06/hua_basket_empty01',0), -(12507,12507,'staticobjects/_exp06/hua_basket_oranges',0), -(12508,12508,'staticobjects/_exp06/hua_banner02',0), -(12509,12509,'staticobjects/_exp06/hua_banner01',0), -(12510,12510,'staticobjects/_exp06/hua_umbrella_01',0), -(12511,12511,'staticobjects/_exp06/hua_potion_sack_01',0), -(12512,12512,'staticobjects/_exp06/hua_inkwell_01',0), -(12513,12513,'staticobjects/_exp06/hua_bedroll01',0), -(12514,12514,'staticobjects/_exp06/odno_bench_wide01',0), -(12515,12515,'staticobjects/_exp06/odno_bench_small01',0), -(12516,12516,'staticobjects/_exp06/odno_bench_platform01',0), -(12517,12517,'staticobjects/_exp06/odso_bottle_glass03',0), -(12518,12518,'staticobjects/_exp06/odso_bottle_glass02',0), -(12519,12519,'staticobjects/_exp06/odso_bottle_glass01',0), -(12520,12520,'staticobjects/_exp06/paineel_wall_weaponrack',0), -(12521,12521,'staticobjects/_exp06/odso_barrel_fish',0), -(12522,12522,'staticobjects/_exp06/odso_rattrap_closed',0), -(12523,12523,'staticobjects/_exp06/odso_rattrap_open',0), -(12524,12524,'staticobjects/_exp06/odso_gem_emeraldcut',0), -(12525,12525,'staticobjects/_exp06/paineel_table_shelves01',0), -(12526,12526,'staticobjects/_exp06/paineel_table_round01',0), -(12527,12527,'staticobjects/_exp06/paineel_table_necromy01',0), -(12528,12528,'staticobjects/_exp06/paineel_necro_desk01',0), -(12529,12529,'staticobjects/_exp06/paineel_table_merchant01',0), -(12530,12530,'staticobjects/_exp06/paineel_table_hutch_wings',0), -(12531,12531,'staticobjects/_exp06/paineel_pedestal01',0), -(12532,12532,'staticobjects/_exp06/paineel_podium01',0), -(12533,12533,'staticobjects/_exp06/paineel_wall_lamp01',0), -(12534,12534,'staticobjects/_exp06/paineel_street_lamp01',0), -(12535,12535,'staticobjects/_exp06/paineel_sculpture01',0), -(12536,12536,'staticobjects/_exp06/paineel_floor_lamp01',0), -(12537,12537,'staticobjects/_exp06/paineel_bookcase_tall01',0), -(12538,12538,'staticobjects/_exp06/paineel_bench_01',0), -(12539,12539,'staticobjects/_exp06/paineel_chair_03',0), -(12540,12540,'staticobjects/lighting/erudin_wall_lamp01_light',0), -(12541,12541,'staticobjects/liveevent/cityfestivals/dpo_halas_table_lantern',0), -(12542,12542,'creatures/tu/earth_elemental_petrified',0), -(12543,12543,'staticobjects/bookcases/hum_bookcase001_rural_dark',0), -(12544,12544,'creatures/monsters/tiger_white_black_stripe',0), -(12545,12545,'creatures/monsters/dispacer_beast_fire_epic',0), -(12546,12546,'creatures/monsters/dispacer_beast_fire',0), -(12547,12547,'accessories/wearable_items/_exp06/guardian_reasoned_robe/skirt',0), -(12548,12548,'accessories/wearable_items/_exp06/guardian_reasoned_robe/chest',0), -(12549,12549,'accessories/wearable_items/_exp06/guardian_reasoned_robe/feet',0), -(12550,12550,'accessories/wearable_items/_exp06/guardian_reasoned_robe/hands',0), -(12551,12551,'accessories/wearable_items/_exp06/guardian_reasoned_robe/head_collar',0), -(12552,12552,'accessories/wearable_items/_exp06/guardian_reasoned_robe/pants',0), -(12553,12553,'accessories/wearable_items/_exp06/guardian_reasoned_robe/pauldron_left',0), -(12554,12554,'accessories/wearable_items/_exp06/guardian_reasoned_robe/pauldron_right',0), -(12555,12555,'_exp04/monsters/stoneent_petrified',0), -(12556,12556,'accessories/wearable_items/snapons/rings/hand_ring_copper_gems_jade_right/hands',0), -(12557,12557,'accessories/wearable_items/snapons/rings/hand_ring_copper_right/hands',0), -(12558,12558,'accessories/wearable_items/snapons/rings/hand_ring_gold_gems_amber_right/hands',0), -(12559,12559,'accessories/wearable_items/snapons/rings/hand_ring_gold_gems_ruby_right/hands',0), -(12560,12560,'accessories/wearable_items/snapons/rings/hand_ring_gold_right/hands',0), -(12561,12561,'accessories/wearable_items/snapons/rings/hand_ring_silver_gems_amethyst_right/hands',0), -(12562,12562,'accessories/wearable_items/snapons/rings/hand_ring_silver_gems_azure_right/hands',0), -(12563,12563,'accessories/wearable_items/snapons/rings/hand_ring_silver_right/hands',0), -(12564,12564,'accessories/wearable_items/snapons/rings/hand_ring_triple_gems_azure_right/hands',0), -(12565,12565,'accessories/wearable_items/snapons/rings/hand_ring_triple_gems_jade_right/hands',0), -(12566,12566,'accessories/wearable_items/_exp06/guardian_learned_robe/skirt',0), -(12567,12567,'accessories/wearable_items/_exp06/guardian_learned_robe/chest',0), -(12568,12568,'accessories/wearable_items/_exp06/guardian_learned_robe/feet',0), -(12569,12569,'accessories/wearable_items/_exp06/guardian_learned_robe/hands',0), -(12570,12570,'accessories/wearable_items/_exp06/guardian_learned_robe/head_collar',0), -(12571,12571,'accessories/wearable_items/_exp06/guardian_learned_robe/pants',0), -(12572,12572,'accessories/wearable_items/_exp06/guardian_learned_robe/pauldron_left',0), -(12573,12573,'accessories/wearable_items/_exp06/guardian_learned_robe/pauldron_right',0), -(12574,12574,'accessories/wearable_items/_exp06/dartain_robe/skirt',0), -(12575,12575,'accessories/wearable_items/_exp06/dartain_robe/chest',0), -(12576,12576,'accessories/wearable_items/_exp06/dartain_robe/chest_pauldrons',0), -(12577,12577,'accessories/wearable_items/_exp06/dartain_robe/dartain_pauldron_left',0), -(12578,12578,'accessories/wearable_items/_exp06/dartain_robe/dartain_pauldron_right',0), -(12579,12579,'accessories/wearable_items/_exp06/dartain_robe/feet',0), -(12580,12580,'accessories/wearable_items/_exp06/dartain_robe/hands',0), -(12581,12581,'accessories/wearable_items/_exp06/dartain_robe/head',0), -(12582,12582,'accessories/wearable_items/_exp06/dartain_robe/head_collar',0), -(12583,12583,'accessories/wearable_items/_exp06/dartain_robe/pants',0), -(12584,12584,'_exp06/zones/objects/exp06_dun_erudin_palace/erudin03_secret_wall',0), -(12585,12585,'accessories/wieldable_items/weapons/staff/globe_of_everburning_flame/globe_of_everburning_flame',0), -(12586,12586,'staticobjects/liveevent/brew_day/dpo_drv_cup_ornate_brass',0), -(12587,12587,'staticobjects/liveevent/brew_day/dpo_drv_cup_ornate_pewter',0), -(12588,12588,'staticobjects/liveevent/brew_day/dpo_drv_kegstand_keg01_swinging',0), -(12589,12589,'staticobjects/liveevent/brew_day/dpo_drv_wine_bottle_ornate_brass',0), -(12590,12590,'staticobjects/liveevent/brew_day/dpo_drv_wine_bottle_ornate_pewter',0), -(12591,12591,'staticobjects/liveevent/brew_day/dpo_tapestry_design_beerfest',0), -(12592,12592,'staticobjects/_exp06/odso_paineel_mailbox',0), -(12593,12593,'accessories/wearable_items/_exp08/dragon_armor/robe_ivory/pants',1096), -(12594,12594,'accessories/wearable_items/_exp08/dragon_armor/robe_red/skirt',1096), -(12595,12595,'accessories/wearable_items/_exp08/dragon_armor/robe_red/chest',1096), -(12596,12596,'accessories/wearable_items/_exp08/dragon_armor/robe_red/chest_epic',1096), -(12597,12597,'accessories/wearable_items/_exp08/dragon_armor/robe_red/feet',1096), -(12598,12598,'accessories/wearable_items/_exp08/dragon_armor/robe_red/hands',1096), -(12599,12599,'accessories/wearable_items/_exp08/dragon_armor/robe_red/head',1096), -(12600,12600,'accessories/wearable_items/_exp08/dragon_armor/robe_red/hood',1096), -(12601,12601,'accessories/wearable_items/_exp08/dragon_armor/robe_red/pants',1096), -(12602,12602,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/skirt',1096), -(12603,12603,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/chest',1096), -(12604,12604,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/chest_epic',1096), -(12605,12605,'creatures/tu/rhoen_theer_spirit',0), -(12606,12606,'creatures/mounts/lynx_mount/lynx_mount_bare',0), -(12607,12607,'staticobjects/liveevent/brew_day/dpo_drv_kegstand01',0), -(12608,12608,'accessories/wieldable_items/weapons/fist/mystical_claws_of_jojo/mystical_claws_of_jojo',0), -(12609,12609,'_exp06/zones/objects/plunderable_loot/vastydeep01_objects01_banner01',0), -(12610,12610,'_exp06/zones/objects/plunderable_loot/vastydeep02_objects01_banner01',0), -(12611,12611,'_exp06/zones/objects/plunderable_loot/vastydeep03_objects01_vase06',0), -(12612,12612,'_exp06/zones/objects/plunderable_loot/vase_small_full_01',0), -(12613,12613,'_exp06/zones/objects/plunderable_loot/sent_rug_01',0), -(12614,12614,'_exp06/zones/objects/plunderable_loot/sent_big_chair_01',0), -(12615,12615,'_exp06/zones/objects/plunderable_loot/th_banners_b01',0), -(12616,12616,'_exp06/zones/objects/plunderable_loot/th_lrge_lamp_stand_fx',0), -(12617,12617,'_exp06/zones/objects/plunderable_loot/th_crystals_crystal01',0), -(12618,12618,'_exp06/zones/objects/plunderable_loot/erudin_rug_round_lrg01',0), -(12619,12619,'_exp06/zones/objects/plunderable_loot/erudin_banner02_long',0), -(12620,12620,'_exp06/zones/objects/plunderable_loot/erudin_bench02',0), -(12621,12621,'_exp06/characters/monsters/erudite_lich/erudite_lich',0), -(12622,12622,'staticobjects/liveevent/brew_day/dpo_sentinal_obj_cake01',0), -(12623,12623,'staticobjects/liveevent/brew_day/dpo_halfing_churner01_keg',0), -(12624,12624,'staticobjects/liveevent/bristlebane_day/dpo_halfing_candle_log01',0), -(12625,12625,'staticobjects/liveevent/bristlebane_day/dpo_halfing_churner01',0), -(12626,12626,'staticobjects/liveevent/bristlebane_day/dpo_halfing_display_gordflask01',0), -(12627,12627,'staticobjects/liveevent/bristlebane_day/dpo_halfing_tablekeg01_lg',0), -(12628,12628,'staticobjects/liveevent/bristlebane_day/dpo_sen_apple_bitten',0), -(12629,12629,'staticobjects/liveevent/bristlebane_day/dpo_sen_food_lettuce',0), -(12630,12630,'staticobjects/liveevent/bristlebane_day/dpo_sentinal_obj_hummus',0), -(12631,12631,'staticobjects/liveevent/bristlebane_day/dpo_sentinal_obj_pie02',0), -(12632,12632,'_exp06/zones/objects/exp06_rgn_odus_north/respawn_graves',0), -(12633,12633,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_wrench',0), -(12634,12634,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_01_chest',0), -(12635,12635,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_02_chest',0), -(12636,12636,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_bench',0), -(12637,12637,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_rug',0), -(12638,12638,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_screen',0), -(12639,12639,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_table',0), -(12640,12640,'_exp06/zones/objects/exp06_dun_erudin_library/corpse_vase',0), -(12641,12641,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_candlestick',0), -(12642,12642,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_chain_of_office',0), -(12643,12643,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_dagger',0), -(12644,12644,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_staff',0), -(12645,12645,'_exp06/zones/objects/exp06_dun_erudin_library/weapon_wand',0), -(12646,12646,'_exp06/zones/objects/dragoneggs_hatching',0), -(12647,12647,'_exp06/zones/objects/exp06_dun_vastydeep01/vastydeep01_objects01_shellrecepticle01',1045), -(12648,12648,'accessories/wieldable_items/weapons/exp06/bow/exp06_bow_of_the_underfoot',1045), -(12649,12649,'_exp06/zones/objects/collection_rewards/erudin_chest02_w_lid01',1045), -(12650,12650,'_exp06/zones/objects/collection_rewards/eru_research_stool01',1045), -(12651,12651,'_exp06/zones/objects/collection_rewards/sentinel_small_crate_01',1045), -(12652,12652,'_exp06/zones/objects/collection_rewards/sentinel_stool_01',1045), -(12653,12653,'_exp06/zones/objects/collection_rewards/sentinel_scroll_single_cap_01',1045), -(12654,12654,'_exp06/zones/objects/collection_rewards/sen_potions05',1045), -(12655,12655,'_exp06/zones/objects/collection_rewards/sen_potions04',1045), -(12656,12656,'_exp06/zones/objects/collection_rewards/sen_potions01',1045), -(12657,12657,'_exp06/zones/objects/collection_rewards/sen_potions02',1045), -(12658,12658,'_exp06/zones/objects/collection_rewards/vastydeep01_objects01_wheelbarrow01',1045), -(12659,12659,'_exp06/zones/objects/collection_rewards/vastydeep03_objects01_vase07',1045), -(12660,12660,'_exp06/zones/objects/collection_rewards/vastydeep03_objects01_vase01',1045), -(12661,12661,'_exp06/zones/objects/collection_rewards/vastydeep03_objects01_vase05',1045), -(12662,12662,'_exp06/zones/objects/exp06_dun_erudin_research/reflecting_mirror',1045), -(12663,12663,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/skirt',1045), -(12664,12664,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/chest',1045), -(12665,12665,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/chest_chaos_pauldrons',1045), -(12666,12666,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/head',1045), -(12667,12667,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/head_chaos_helm',1045), -(12668,12668,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/head_collar',1045), -(12669,12669,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/pants',1045), -(12670,12670,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/snap_ons/chaos_pauldrons_upper_right',1045), -(12671,12671,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/snap_ons/chaos_pauldrons_lower_left',1045), -(12672,12672,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/snap_ons/chaos_pauldrons_lower_right',1045), -(12673,12673,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/snap_ons/chaos_pauldrons_upper_left',1045), -(12674,12674,'creatures/monsters/snake_black_red',1045), -(12675,12675,'creatures/monsters/snake_black',1045), -(12676,12676,'_exp06/characters/monsters/erudite_lich/classic_erudite_lich',1045), -(12677,12677,'_exp06/characters/tool_users/roekillik_female/roekillik_female_ghost',1045), -(12678,12678,'_exp06/characters/tool_users/roekillik_male/roekillik_male_ghost',1045), -(12679,12679,'accessories/wearable_items/_exp05/guk_turtle_vanguard/shoulders_turtle_pauldrons_both',1045), -(12680,12680,'accessories/wearable_items/_exp05/guk_turtle_vanguard/chest',1045), -(12681,12681,'accessories/wearable_items/_exp05/guk_turtle_vanguard/feet',1045), -(12682,12682,'accessories/wearable_items/_exp05/guk_turtle_vanguard/forearms',1045), -(12683,12683,'accessories/wearable_items/_exp05/guk_turtle_vanguard/guk_turtle_knee_plate_left',1045), -(12684,12684,'accessories/wearable_items/_exp05/guk_turtle_vanguard/guk_turtle_knee_plate_right',1045), -(12685,12685,'accessories/wearable_items/_exp05/guk_turtle_vanguard/hands',1045), -(12686,12686,'accessories/wearable_items/_exp05/guk_turtle_vanguard/legs_noskirt',1045), -(12687,12687,'accessories/wearable_items/_exp05/guk_turtle_vanguard/legs_turtle_kneepads',1045), -(12688,12688,'accessories/wearable_items/_exp05/guk_turtle_vanguard/right',1045), -(12689,12689,'accessories/wearable_items/_exp05/guk_turtle_vanguard/shoulders',1045), -(12690,12690,'accessories/wearable_items/_exp05/guk_turtle_vanguard/shoulders_nopauldrons',1045), -(12691,12691,'ec/pc/kerra/kerra_female_ghost_loop',1045), -(12692,12692,'ec/pc/kerra/kerra_male_ghost_loop',1045), -(12693,12693,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/chest',1045), -(12694,12694,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/feet',1045), -(12695,12695,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/hands',1045), -(12696,12696,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/head',1045), -(12697,12697,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/pants',1045), -(12698,12698,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/skirt',1045), -(12699,12699,'creatures/monsters/winged_nightmare_transport',1045), -(12700,12700,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/chest_disc',1045), -(12701,12701,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/chest_disc_pauldrons',1045), -(12702,12702,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/chest_pauldrons',1045), -(12703,12703,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/crystal_disc',1045), -(12704,12704,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/shiny_robe_of_the_underfoot_pauldron_left',1045), -(12705,12705,'accessories/wearable_items/_exp06/shiny_robe_of_the_underfoot/shiny_robe_of_the_underfoot_pauldron_right',1045), -(12706,12706,'accessories/wieldable_items/shields/exp06/chaos_shield',1045), -(12707,12707,'accessories/wearable_items/_exp06/tradeskill_armor_cloth_shamrocks/feet',1045), -(12708,12708,'accessories/wearable_items/snapons/fx/feet_trail_shamrocks',1045), -(12709,12709,'staticobjects/liveevent/brew_day/dpo_brewday_frothy_mug01',1045), -(12710,12710,'staticobjects/liveevent/brew_day/dpo_brewday_frothy_mug02',1045), -(12711,12711,'staticobjects/liveevent/brew_day/dpo_brewday_frothy_mug03',1045), -(12712,12712,'accessories/wieldable_items/misc/stein002_plain_frothy',1045), -(12713,12713,'accessories/wieldable_items/weapons/staff/cobra_staff/cobra_staff_plain_shissar',1045), -(12714,12714,'staticobjects/_exp06/erudin_bench02_globe',1045), -(12715,12715,'staticobjects/_exp06/erudin_library_orb',1045), -(12716,12716,'staticobjects/_exp06/erudin_library_r01_transporter',1045), -(12717,12717,'staticobjects/_exp06/erudin_library_bookcase_sliding01',1045), -(12718,12718,'staticobjects/_exp06/erudin_table01_marble',1045), -(12719,12719,'staticobjects/_exp06/erudin_table01_hutch_marble',1045), -(12720,12720,'staticobjects/_exp06/erudin_rug_rolled_group01',1045), -(12721,12721,'staticobjects/_exp06/erudin_research_stool',1045), -(12722,12722,'staticobjects/_exp06/erudin_research_table',1045), -(12723,12723,'staticobjects/_exp06/erudin_bottle_purplegoo',1045), -(12724,12724,'staticobjects/_exp06/erudin_book04',1045), -(12725,12725,'staticobjects/_exp06/erudin_book03',1045), -(12726,12726,'staticobjects/_exp06/erudin_book02',1045), -(12727,12727,'staticobjects/_exp06/erudin_book01',1045), -(12728,12728,'staticobjects/_exp06/erudin_chair02_globe',1045), -(12729,12729,'staticobjects/_exp06/erudin_chair01_globe',1045), -(12730,12730,'staticobjects/promo_items/promo_battlegrounds_statue',1045), -(12731,12731,'staticobjects/liveevent/brew_day/dpo_vrsn_winebottle01_red',1045), -(12732,12732,'staticobjects/_exp06/hua_cup_01_filled',1045), -(12733,12733,'staticobjects/kitchen/floor_pot_human_cooking02_water_dpo',1045), -(12734,12734,'staticobjects/portals/tallonite_portal',1045), -(12735,12735,'staticobjects/_exp06/odus_north_mailbox',1045), -(12736,12736,'creatures/monsters/ankylosaurus',1045), -(12737,12737,'accessories/wearable_items/_exp05/guk_heavycloth/guk_turrtle_pauldron01_right',1045), -(12738,12738,'accessories/wearable_items/_exp05/guk_heavycloth/guk_turrtle_pauldron01_left',1045), -(12739,12739,'creatures/mounts/horse_demon/horse_demon_velium',1045), -(12740,12740,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/skirt',1045), -(12741,12741,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/chest',1045), -(12742,12742,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/feet',1045), -(12743,12743,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/forearms',1045), -(12744,12744,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/hands',1045), -(12745,12745,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/head',1045), -(12746,12746,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/head_for_classic_erudite',1045), -(12747,12747,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/legs',1045), -(12748,12748,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/legs_noskirt',1045), -(12749,12749,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_white/shoulders',1045), -(12750,12750,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/feet',1096), -(12751,12751,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_grimblade',1045), -(12752,12752,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/skirt',1045), -(12753,12753,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/chest',1045), -(12754,12754,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/feet',1045), -(12755,12755,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/forearms',1045), -(12756,12756,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/hands',1045), -(12757,12757,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/head',1045), -(12758,12758,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/head_for_classic_erudite',1045), -(12759,12759,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/legs',1045), -(12760,12760,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/legs_noskirt',1045), -(12761,12761,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_black/shoulders',1045), -(12762,12762,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/skirt',1045), -(12763,12763,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/chest',1045), -(12764,12764,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/feet',1045), -(12765,12765,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/forearms',1045), -(12766,12766,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/hands',1045), -(12767,12767,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/head',1045), -(12768,12768,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/head_for_classic_erudite',1045), -(12769,12769,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/legs',1045), -(12770,12770,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/legs_noskirt',1045), -(12771,12771,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_blue/shoulders',1045), -(12772,12772,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/skirt',1045), -(12773,12773,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/chest',1045), -(12774,12774,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/feet',1045), -(12775,12775,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/forearms',1045), -(12776,12776,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/hands',1045), -(12777,12777,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/head',1045), -(12778,12778,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/head_for_classic_erudite',1045), -(12779,12779,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/legs',1045), -(12780,12780,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/legs_noskirt',1045), -(12781,12781,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_orange/shoulders',1045), -(12782,12782,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/skirt',1045), -(12783,12783,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/chest',1045), -(12784,12784,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/feet',1045), -(12785,12785,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/forearms',1045), -(12786,12786,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/hands',1045), -(12787,12787,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/head',1045), -(12788,12788,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/head_for_classic_erudite',1045), -(12789,12789,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/legs',1045), -(12790,12790,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/legs_noskirt',1045), -(12791,12791,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_red/shoulders',1045), -(12792,12792,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/skirt',1045), -(12793,12793,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/chest',1045), -(12794,12794,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/feet',1045), -(12795,12795,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/forearms',1045), -(12796,12796,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/hands',1045), -(12797,12797,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/head',1045), -(12798,12798,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/head_for_classic_erudite',1045), -(12799,12799,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/legs',1045), -(12800,12800,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/legs_noskirt',1045), -(12801,12801,'accessories/wearable_items/_exp06/erudite_classic_armor/erudite_classic_armor_leather_violet/shoulders',1045), -(12802,12802,'_exp06/zones/objects/exp06_dun_the_sentinel/sen_small_crate_01_dpo',1045), -(12803,12803,'_exp06/zones/objects/exp06_dun_vastydeep01/vastydeep01_topiary_dpo',1045), -(12804,12804,'_exp06/zones/objects/exp06_dun_vastydeep02/vastydeep02_tube_dpo',1045), -(12805,12805,'_exp06/zones/objects/exp06_dun_vastydeep03/vastydeep03_shrine01_dpo',1045), -(12806,12806,'staticobjects/weapons/dpo_small_dwarf_axe',1045), -(12807,12807,'staticobjects/statues/citymerchant_90_statue_base',1045), -(12808,12808,'staticobjects/statues/citymerchant_90_statue_dragon',1045), -(12809,12809,'staticobjects/_exp03/dpo_dwarf_winebottle01',1045), -(12810,12810,'staticobjects/_exp03/dpo_dwarf_bed01',1045), -(12811,12811,'staticobjects/_exp03/dpo_dwarf_bed02',1045), -(12812,12812,'staticobjects/_exp03/dpo_dwarf_bookcase01',1045), -(12813,12813,'staticobjects/_exp03/dpo_dwarf_chair01',1045), -(12814,12814,'staticobjects/_exp03/dpo_dwarf_crate01',1045), -(12815,12815,'staticobjects/_exp03/dpo_dwarf_cup01',1045), -(12816,12816,'staticobjects/_exp03/dpo_dwarf_lantern01',1045), -(12817,12817,'staticobjects/_exp03/dpo_dwarf_nightstand01',1045), -(12818,12818,'staticobjects/_exp03/dpo_dwarf_stool01',1045), -(12819,12819,'staticobjects/_exp03/dpo_dwarf_table01',1045), -(12820,12820,'staticobjects/_exp03/dpo_dwarf_table02',1045), -(12821,12821,'staticobjects/_exp03/dpo_dwarf_throne01',1045), -(12822,12822,'staticobjects/_exp03/dpo_dwarf_weaponrack01',1045), -(12823,12823,'staticobjects/easels/dpo_djn_paintbuckets_group01',1045), -(12824,12824,'staticobjects/easels/djn_paintbucket01',1045), -(12825,12825,'accessories/wieldable_items/soga_weapons/mage/staff_of_phoenix_flame_fx',1045), -(12826,12826,'accessories/wieldable_items/soga_weapons/scout/traceless_wounding_dark_fx',1045), -(12827,12827,'staticobjects/battlegrounds/battleground_flag_blue',1045), -(12828,12828,'staticobjects/battlegrounds/battleground_flag_red',1045), -(12829,12829,'staticobjects/battlegrounds/battleground_flag_white',1045), -(12830,12830,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/skirt',1045), -(12831,12831,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/chest',1045), -(12832,12832,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/feet',1045), -(12833,12833,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/forearms',1045), -(12834,12834,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/hands',1045), -(12835,12835,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/head',1045), -(12836,12836,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/head_chaos_epic',1045), -(12837,12837,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/legs',1045), -(12838,12838,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/legs_noskirt',1045), -(12839,12839,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/shoulders_epic_pauldrons',1045), -(12840,12840,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/shoulders_no_pauldrons',1045), -(12841,12841,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/snap_ons/head_chaos_helm',1045), -(12842,12842,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/snap_ons/chaos_pauldrons_left',1045), -(12843,12843,'accessories/wearable_items/_exp06/chaos_armor/leather_armor/snap_ons/chaos_pauldrons_right',1045), -(12844,12844,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/feet',1045), -(12845,12845,'accessories/wearable_items/_exp06/chaos_armor/robe_armor/hands',1045), -(12846,12846,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/hands',1096), -(12847,12847,'_exp06/characters/tool_users/erudite_classic_el_arad/erudite_classic_el_arad',1045), -(12848,12848,'accessories/wieldable_items/weapons/exp06/staff/exp06_2h_staff_el_arad',1045), -(12849,12849,'accessories/wearable_items/cloak/exp06/cloak_battleground_symbol',1045), -(12850,12850,'staticobjects/tcg/tcg_tapestry_crystalshards',1045), -(12851,12851,'staticobjects/tcg/tcg_tapestry_master_assassin',1045), -(12852,12852,'staticobjects/tcg/tcg_tapestry_runes',1045), -(12853,12853,'staticobjects/tcg/tcg_painting43_krulkiel',1045), -(12854,12854,'staticobjects/tcg/tcg_painting39_lordknight',1045), -(12855,12855,'staticobjects/tcg/tcg_painting40_goddess',1045), -(12856,12856,'staticobjects/tcg/tcg_painting41_beast',1045), -(12857,12857,'staticobjects/tcg/tcg_painting42_lesson',1045), -(12858,12858,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/skirt',1045), -(12859,12859,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/chest',1045), -(12860,12860,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/feet',1045), -(12861,12861,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/forearms',1045), -(12862,12862,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/hands',1045), -(12863,12863,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/head',1045), -(12864,12864,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/head_chain_epic',1045), -(12865,12865,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/legs',1045), -(12866,12866,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/legs_noskirt',1045), -(12867,12867,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/shoulders_epic_pauldrons',1045), -(12868,12868,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/shoulders_no_pauldrons',1045), -(12869,12869,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/snap_ons/chaos_pauldrons_right',1045), -(12870,12870,'accessories/wearable_items/_exp06/chaos_armor/chain_armor/snap_ons/chaos_pauldrons_left',1045), -(12871,12871,'staticobjects/tcg/tcg_painting_lon9',1045), -(12872,12872,'_exp06/zones/objects/exp06_rgn_odus_north/barricade_long',1045), -(12873,12873,'accessories/wearable_items/cloak/exp06/cloak_battleground_symbol_02',1045), -(12874,12874,'staticobjects/battlegrounds/battleground_relic',1045), -(12875,12875,'_exp06/characters/tool_users/erudite_classic_male/erudite_classic_male_hover',1045), -(12876,12876,'_exp06/zones/objects/exp06_dun_vastydeep02/dragon_test_tube_intact_dpo',1045), -(12877,12877,'_exp06/zones/objects/exp06_dun_vastydeep02/dragon_test_tube_broken_dpo',1045), -(12878,12878,'staticobjects/easels/djn_paintbucket01_orange',1045), -(12879,12879,'staticobjects/easels/djn_paintbucket01_blue',1045), -(12880,12880,'_exp06/zones/objects/exp06_dun_vastydeep02/dragon_room_clear_tube',1045), -(12881,12881,'_exp06/zones/objects/plunderable_loot/eru_rug01_rolled',1045), -(12882,12882,'staticobjects/guildhall/standard_flag_blue',1045), -(12883,12883,'staticobjects/guildhall/standard_flag_green',1045), -(12884,12884,'staticobjects/guildhall/standard_flag_orange',1045), -(12885,12885,'staticobjects/guildhall/standard_flag_purple',1045), -(12886,12886,'staticobjects/guildhall/standard_flag_red',1045), -(12887,12887,'staticobjects/guildhall/standard_flag_white',1045), -(12888,12888,'staticobjects/guildhall/standard_flag_yellow',1045), -(12889,12889,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/skirt',1045), -(12890,12890,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/chest',1045), -(12891,12891,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/feet',1045), -(12892,12892,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/hands',1045), -(12893,12893,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/head',1045), -(12894,12894,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/head',1096), -(12895,12895,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/pants',1045), -(12896,12896,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/head_collar',1096), -(12897,12897,'accessories/wearable_items/_exp08/dragon_armor/robe_shadow/pants',1096), -(12898,12898,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_shadow_right',1096), -(12899,12899,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_blue_left',1096), -(12900,12900,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_blue_right',1096), -(12901,12901,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_green_left',1096), -(12902,12902,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_green_right',1096), -(12903,12903,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_left',1096), -(12904,12904,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_right',1096), -(12905,12905,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_shadow_left',1096), -(12906,12906,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_forearm_shadow_right',1096), -(12907,12907,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_bronzegreen_left',1096), -(12908,12908,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_bronzegreen_right',1096), -(12909,12909,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_bronzered_left',1096), -(12910,12910,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_bronzered_right',1096), -(12911,12911,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_left',1096), -(12912,12912,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_right',1096), -(12913,12913,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_goldivory_left',1096), -(12914,12914,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_goldivory_right',1096), -(12915,12915,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_ironblue_left',1096), -(12916,12916,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_ironblue_right',1096), -(12917,12917,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_ironshadow_left',1096), -(12918,12918,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_ironshadow_right',1096), -(12919,12919,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_left_blue',1096), -(12920,12920,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_left_green',1096), -(12921,12921,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_left_red',1096), -(12922,12922,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_left_shadow',1096), -(12923,12923,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_right_blue',1096), -(12924,12924,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_right_green',1096), -(12925,12925,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_right_red',1096), -(12926,12926,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldron_upper_right_shadow',1096), -(12927,12927,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_blue_left',1096), -(12928,12928,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_blue_right',1096), -(12929,12929,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_green_left',1096), -(12930,12930,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_green_right',1096), -(12931,12931,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_left',1096), -(12932,12932,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_right',1096), -(12933,12933,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_shadow_left',1096), -(12934,12934,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_lower_shadow_right',1096), -(12935,12935,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_blue_left',1096), -(12936,12936,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_blue_right',1096), -(12937,12937,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_green_left',1096), -(12938,12938,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_green_right',1096), -(12939,12939,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_left',1096), -(12940,12940,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_right',1096), -(12941,12941,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_shin_shadow_left',1096), -(12942,12942,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/skirt',1096), -(12943,12943,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/chest',1096), -(12944,12944,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/feet',1096), -(12945,12945,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/forearms',1096), -(12946,12946,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/hands',1096), -(12947,12947,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/hands_epic',1096), -(12948,12948,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/head',1096), -(12949,12949,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/head_epic',1096), -(12950,12950,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/left',1096), -(12951,12951,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/legs',1096), -(12952,12952,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/legs_epic',1096), -(12953,12953,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/legs_noskirt',1096), -(12954,12954,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/right',1096), -(12955,12955,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/shoulders',1096), -(12956,12956,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/shoulders_epic',1096), -(12957,12957,'accessories/wearable_items/_exp08/dragon_armor/vanguard_blue/shoulders_nopauldrons',1096), -(12958,12958,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/skirt',1096), -(12959,12959,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/chest',1096), -(12960,12960,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/feet',1096), -(12961,12961,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/forearms',1096), -(12962,12962,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/hands',1096), -(12963,12963,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/hands_epic',1096), -(12964,12964,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/head',1096), -(12965,12965,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/head_epic',1096), -(12966,12966,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/left',1096), -(12967,12967,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/legs',1096), -(12968,12968,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/legs_epic',1096), -(12969,12969,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/legs_noskirt',1096), -(12970,12970,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/right',1096), -(12971,12971,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/shoulders',1096), -(12972,12972,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/shoulders_epic',1096), -(12973,12973,'accessories/wearable_items/_exp08/dragon_armor/vanguard_green/shoulders_nopauldrons',1096), -(12974,12974,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/skirt',1096), -(12975,12975,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/chest',1096), -(12976,12976,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/feet',1096), -(12977,12977,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/forearms',1096), -(12978,12978,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/hands',1096), -(12979,12979,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/hands_epic',1096), -(12980,12980,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/head',1096), -(12981,12981,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/head_epic',1096), -(12982,12982,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/left',1096), -(12983,12983,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/legs',1096), -(12984,12984,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/legs_epic',1096), -(12985,12985,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/legs_noskirt',1096), -(12986,12986,'staticobjects/battlegrounds/battleground_relic_force_bars',1045), -(12987,12987,'creatures/mounts/warg_mount/warg_armor04',1045), -(12988,12988,'creatures/mounts/warg_mount/warg_armor04_twotoned',1045), -(12989,12989,'creatures/mounts/warg_mount/warg_armor04_albino',1045), -(12990,12990,'creatures/mounts/warg_mount/warg_armor04_spotted',1045), -(12991,12991,'creatures/mounts/flying_disc/flying_disc_battleground_red',1045), -(12992,12992,'creatures/mounts/flying_disc/flying_disc_battleground_blue',1045), -(12993,12993,'creatures/monsters/clockwork_steel_gazer_with_light',1045), -(12994,12994,'accessories/wearable_items/_exp06/holy_robe_of_the_underfoot/head_collar',1045), -(12995,12995,'staticobjects/cages/dpo_qey_birdcage002_parrot',1045), -(12996,12996,'staticobjects/battlegrounds/battleground_ctf_base01_force_bars',1045), -(12997,12997,'staticobjects/battlegrounds/battleground_ctf_base02_force_bars',1045), -(12998,12998,'staticobjects/bookcases/vastydeep_library01_flatstacks01_shortwide',1045), -(12999,12999,'staticobjects/bookcases/vastydeep_library01_flatstacks01_tall',1045), -(13000,13000,'accessories/wieldable_items/weapons/exp06/staff/exp06_2h_staff_tallonite_glow',1045), -(13001,13001,'accessories/wieldable_items/weapons/exp06/staff/exp06_2h_staff_tallonite',1045), -(13002,13002,'staticobjects/bookcases/vastydeep_library01_flatstacks01_2rows',1045), -(13003,13003,'staticobjects/bookcases/vastydeep_library01_flatstacks01_2rowswide',1045), -(13004,13004,'staticobjects/battlegrounds/battleground_smuggler_den_base01_force_bars',1045), -(13005,13005,'staticobjects/battlegrounds/battleground_smuggler_den_base02_force_bars',1045), -(13006,13006,'staticobjects/pictures/exp06_citymerchant_venekor',1045), -(13007,13007,'staticobjects/pictures/exp06_carpenter_jarsath',1045), -(13008,13008,'staticobjects/pictures/exp06_carpenter_rivervalebar',1045), -(13009,13009,'staticobjects/pictures/exp06_carpenter_tinkerfest',1045), -(13010,13010,'staticobjects/pictures/exp06_citymerchant_barrensky',1045), -(13011,13011,'staticobjects/pictures/exp06_citymerchant_kurns',1045), -(13012,13012,'staticobjects/pictures/exp06_citymerchant_rime',1045), -(13013,13013,'accessories/wieldable_items/weapons/exp06/staff/erudite_rune_staff',1045), -(13014,13014,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_tallonite_katana_slice',1045), -(13015,13015,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_tallonite_katana_parry',1045), -(13016,13016,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/snap_ons/chaos_pauldrons_right',1045), -(13017,13017,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/snap_ons/chaos_pauldrons_left',1045), -(13018,13018,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/skirt',1045), -(13019,13019,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/chest',1045), -(13020,13020,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/feet',1045), -(13021,13021,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/forearms',1045), -(13022,13022,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/hands',1045), -(13023,13023,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/head',1045), -(13024,13024,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/head_chain_epic',1045), -(13025,13025,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/legs',1045), -(13026,13026,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/legs_noskirt',1045), -(13027,13027,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/shoulders',1045), -(13028,13028,'accessories/wearable_items/_exp06/chaos_armor_black/chain_armor/shoulders_chaos_epic',1045), -(13029,13029,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/chest',1045), -(13030,13030,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/snap_ons/head_chaos_helm',1045), -(13031,13031,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/snap_ons/chaos_pauldrons_left',1045), -(13032,13032,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/snap_ons/chaos_pauldrons_right',1045), -(13033,13033,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/skirt',1045), -(13034,13034,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/feet',1045), -(13035,13035,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/forearms',1045), -(13036,13036,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/hands',1045), -(13037,13037,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/head',1045), -(13038,13038,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/head_chaos_epic',1045), -(13039,13039,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/legs',1045), -(13040,13040,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/legs_noskirt',1045), -(13041,13041,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/shoulders_epic_pauldrons',1045), -(13042,13042,'accessories/wearable_items/_exp06/chaos_armor_black/leather_armor/shoulders_no_pauldrons',1045), -(13043,13043,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/snap_ons/chaos_pauldrons_upper_right',1045), -(13044,13044,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/snap_ons/chaos_pauldrons_lower_left',1045), -(13045,13045,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/snap_ons/chaos_pauldrons_lower_right',1045), -(13046,13046,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/snap_ons/chaos_pauldrons_upper_left',1045), -(13047,13047,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/skirt',1045), -(13048,13048,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/chest',1045), -(13049,13049,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/chest_chaos_pauldrons',1045), -(13050,13050,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/feet',1045), -(13051,13051,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/hands',1045), -(13052,13052,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/head',1045), -(13053,13053,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/head_chaos_helm',1045), -(13054,13054,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/head_collar',1045), -(13055,13055,'accessories/wearable_items/_exp06/chaos_armor_black/robe_armor/pants',1045), -(13056,13056,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_shin_right',1045), -(13057,13057,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_forearm_left',1045), -(13058,13058,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_forearm_right',1045), -(13059,13059,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_pauldrons_lower_left',1045), -(13060,13060,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_pauldrons_lower_right',1045), -(13061,13061,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_pauldrons_upper_left',1045), -(13062,13062,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_pauldrons_upper_right',1045), -(13063,13063,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/snap_ons/chaos_shin_left',1045), -(13064,13064,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/skirt',1045), -(13065,13065,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/chest',1045), -(13066,13066,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/feet',1045), -(13067,13067,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/forearms',1045), -(13068,13068,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/hands',1045), -(13069,13069,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/hands_chaos_gauntlets',1045), -(13070,13070,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/head',1045), -(13071,13071,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/head_chaos_helm',1045), -(13072,13072,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/legs',1045), -(13073,13073,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/legs_chaos_shins',1045), -(13074,13074,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/legs_noskirt',1045), -(13075,13075,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/right',1045), -(13076,13076,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/shoulders',1045), -(13077,13077,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/shoulders_chaos_armor_all',1045), -(13078,13078,'accessories/wearable_items/_exp06/chaos_armor_black/vanguard_armor/shoulders_nopauldrons',1045), -(13079,13079,'staticobjects/_exp06/thehole_platcol_01',1045), -(13080,13080,'accessories/wieldable_items/weapons/exp06/2h_crush/exp06_2h_korshahammer',1045), -(13081,13081,'_exp06/zones/objects/exp06_dun_vastydeep02/exp06_dun_vastydeep02_secretroom01_panel01',1045), -(13082,13082,'accessories/wearable_items/_exp06/raven_robe/raven_shoulder_right',1045), -(13083,13083,'accessories/wearable_items/_exp06/raven_robe/chest_epic_pauldrons',1045), -(13084,13084,'accessories/wearable_items/_exp06/raven_robe/feet',1045), -(13085,13085,'accessories/wearable_items/_exp06/raven_robe/hands',1045), -(13086,13086,'accessories/wearable_items/_exp06/raven_robe/head_epic_hood',1045), -(13087,13087,'accessories/wearable_items/_exp06/raven_robe/raven_shoulder_left',1045), -(13088,13088,'accessories/wearable_items/_exp06/raven_robe/snap_ons/head_raven_helm',1045), -(13089,13089,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_akinakes',1045), -(13090,13090,'accessories/wieldable_items/weapons/exp06/1h_pierce/exp06_1hp_serpent_tongue',1045), -(13091,13091,'staticobjects/battlegrounds/dpo_bg_ctf_statue_sword_houseitem01',1045), -(13092,13092,'staticobjects/battlegrounds/dpo_battleground_flag01_blue',1045), -(13093,13093,'staticobjects/battlegrounds/dpo_battleground_flag01_brown',1045), -(13094,13094,'staticobjects/battlegrounds/dpo_battleground_flag01_green',1045), -(13095,13095,'staticobjects/battlegrounds/dpo_battleground_flag01_orange',1045), -(13096,13096,'staticobjects/battlegrounds/dpo_battleground_flag01_pink',1045), -(13097,13097,'staticobjects/battlegrounds/dpo_battleground_flag01_purple',1045), -(13098,13098,'staticobjects/battlegrounds/dpo_battleground_flag01_red',1045), -(13099,13099,'staticobjects/battlegrounds/dpo_battleground_flag01_white',1045), -(13100,13100,'staticobjects/battlegrounds/dpo_battleground_flag01_yellow',1045), -(13101,13101,'staticobjects/soe_wallet/battlegrounds_relic01_murderballpedestal01_dpo',1045), -(13102,13102,'staticobjects/soe_wallet/battlegrounds_relic01_console01_dpo',1045), -(13103,13103,'staticobjects/battlegrounds/battlegrounds_relic01_console02_dpo',1045), -(13104,13104,'staticobjects/soe_wallet/battlegrounds_relic01_crane01_dpo',1045), -(13105,13105,'staticobjects/battlegrounds/battlegrounds_relic01_crane02_dpo',1045), -(13106,13106,'staticobjects/brazier/erudite_totem01',1045), -(13107,13107,'_exp06/characters/monsters/golem_odus/golem_odus',1045), -(13108,13108,'accessories/wearable_items/cloak/exp06/cloak_bg_chaos_red',1045), -(13109,13109,'accessories/wearable_items/cloak/exp06/cloak_bg_chaos',1045), -(13110,13110,'accessories/wearable_items/cloak/exp06/cloak_bg_chaos_gold',1045), -(13111,13111,'staticobjects/soe_wallet/battleground_ctf_wallbrazier01_blue',1045), -(13112,13112,'staticobjects/soe_wallet/battleground_ctf_wallbrazier01_red',1045), -(13113,13113,'staticobjects/soe_wallet/battleground_nodes_coffinornament01_blue',1045), -(13114,13114,'staticobjects/soe_wallet/battleground_nodes_coffinornament01_red',1045), -(13115,13115,'staticobjects/guildhall/trophies/floor_vuulan_head',1045), -(13116,13116,'staticobjects/guildhall/trophies/floor_perah_head',1045), -(13117,13117,'staticobjects/guildhall/trophies/floor_seadragon_head',1045), -(13118,13118,'staticobjects/guildhall/trophies/floor_theer_sword_evil',1045), -(13119,13119,'staticobjects/guildhall/trophies/floor_theer_sword_good',1045), -(13120,13120,'staticobjects/guildhall/trophies/floor_toxx_head',1045), -(13121,13121,'staticobjects/weapons/dpo_weaponsmith_tool',1045), -(13122,13122,'staticobjects/weapons/dpo_alchemist_tool',1045), -(13123,13123,'staticobjects/weapons/dpo_armorer_tool',1045), -(13124,13124,'staticobjects/weapons/dpo_carpenter_tool',1045), -(13125,13125,'staticobjects/weapons/dpo_jeweler_tool',1045), -(13126,13126,'staticobjects/weapons/dpo_provisioner_tool',1045), -(13127,13127,'staticobjects/weapons/dpo_sage_tool',1045), -(13128,13128,'staticobjects/weapons/dpo_tailor_tool',1045), -(13129,13129,'staticobjects/_exp06/paineel_graves',1045), -(13130,13130,'accessories/wieldable_items/weapons/exp06/staff/exp06_2h_silver_staff',1045), -(13131,13131,'accessories/wearable_items/_exp06/order_of_nature_robe/chest_epic_pauldrons',1045), -(13132,13132,'accessories/wearable_items/_exp06/order_of_nature_robe/order_of_nature_pauldron_left',1045), -(13133,13133,'accessories/wearable_items/_exp06/order_of_nature_robe/order_of_nature_pauldron_right',1045), -(13134,13134,'creatures/monsters/floating_book',1045), -(13135,13135,'accessories/wieldable_items/shields/exp06/crystal_star_shield_fx',1045), -(13136,13136,'accessories/wieldable_items/soga_weapons/priest/the_holy_spirit_fx',1045), -(13137,13137,'accessories/wieldable_items/soga_weapons/priest/massive_hammer_fx',1045), -(13138,13138,'accessories/wieldable_items/weapons/dagger/embalming_blade/embalming_blade_plain_fx',1045), -(13139,13139,'accessories/wieldable_items/weapons/dagger/jambiya/jambiya_plain_fx',1045), -(13140,13140,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_flame_dagger_fx',1045), -(13141,13141,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_flame_dagger_rune_fx',1045), -(13142,13142,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dragonhilt_dagger_fire',1045), -(13143,13143,'accessories/wieldable_items/weapons/exp04/1h_pierce/exp04_1hp_dual_bladed_stiletto_fx',1045), -(13144,13144,'accessories/wieldable_items/weapons/exp05/exp05_bow_guk_bow_fx',1045), -(13145,13145,'accessories/wieldable_items/weapons/exp05/exp05_korsha_longbow_fx',1045), -(13146,13146,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_tangler_fx',1045), -(13147,13147,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_axe_emerald_ripper_fx',1045), -(13148,13148,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_crystal_blade_of_chaos_fx',1045), -(13149,13149,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_soulleach_fx',1045), -(13150,13150,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_spirit_of_the_forest_fx',1045), -(13151,13151,'accessories/wieldable_items/weapons/exp04/fist/exp04_fist_dull_ulak_fx',1045), -(13152,13152,'accessories/wieldable_items/weapons/rapier/epee/epee001_runic_fx',1045), -(13153,13153,'accessories/wieldable_items/weapons/talisman/censer/censer001_runic_lightfx',1045), -(13154,13154,'accessories/wieldable_items/weapons/staff/escrima/escrima002_ornate_fx',1045), -(13155,13155,'_exp06/zones/objects/exp06_dun_erudin_palace/good_theer_sword_placed',1045), -(13156,13156,'_exp06/zones/objects/exp06_dun_erudin_palace/evil_theer_sword_placed',1045), -(13157,13157,'staticobjects/_exp06/thehole_breakable_wall',1045), -(13158,13158,'accessories/wieldable_items/weapons/exp06/1h_crush/exp06_1h_crush_candlestick',1045), -(13159,13159,'accessories/wieldable_items/weapons/exp06/1h_pierce/exp06_1hp_erudin_dagger',1045), -(13160,13160,'accessories/wieldable_items/weapons/exp06/staff/exp06_2h_staff_erudin',1045), -(13161,13161,'accessories/wearable_items/_exp06/dragon_vanguard/skirt',1045), -(13162,13162,'accessories/wearable_items/_exp06/dragon_vanguard/chest',1045), -(13163,13163,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_left',1045), -(13164,13164,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_right',1045), -(13165,13165,'accessories/wearable_items/_exp06/dragon_vanguard/feet',1045), -(13166,13166,'accessories/wearable_items/_exp06/dragon_vanguard/forearms',1045), -(13167,13167,'accessories/wearable_items/_exp06/dragon_vanguard/hands',1045), -(13168,13168,'accessories/wearable_items/_exp06/dragon_vanguard/head',1045), -(13169,13169,'accessories/wearable_items/_exp06/dragon_vanguard/head_dragon_helm',1045), -(13170,13170,'accessories/wearable_items/_exp06/dragon_vanguard/legs',1045), -(13171,13171,'accessories/wearable_items/_exp06/dragon_vanguard/legs_dragon_snapons',1045), -(13172,13172,'accessories/wearable_items/_exp06/dragon_vanguard/legs_noskirt',1045), -(13173,13173,'accessories/wearable_items/_exp06/dragon_vanguard/right',1045), -(13174,13174,'accessories/wearable_items/_exp06/dragon_vanguard/shoulders',1045), -(13175,13175,'accessories/wearable_items/_exp06/dragon_vanguard/shoulders_dragon_pauldron',1045), -(13176,13176,'accessories/wearable_items/_exp06/dragon_vanguard/shoulders_nopauldrons',1045), -(13177,13177,'accessories/wearable_items/_exp06/dragon_chain/dragon_pauldron_left',1045), -(13178,13178,'accessories/wearable_items/_exp06/dragon_chain/dragon_pauldron_right',1045), -(13179,13179,'accessories/wearable_items/_exp06/dragon_chain/head_dragon_helm',1045), -(13180,13180,'accessories/wearable_items/_exp06/dragon_leather/shoulders_pauldrons',1045), -(13181,13181,'accessories/wearable_items/_exp06/dragon_robe/chest_pauldrons',1045), -(13182,13182,'accessories/wearable_items/_exp06/dragon_robe/head_dragon_hood',1045), -(13183,13183,'staticobjects/_exp02/bonemire_houseitem_dpo',1045), -(13184,13184,'accessories/wieldable_items/weapons/exp06/1h_crush/exp06_1h_crush_erudin_library_wrench',1045), -(13185,13185,'accessories/wieldable_items/weapons/exp06/1h_crush/exp06_1h_crush_erudin_library_wand',1045), -(13186,13186,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_shin_right',1045), -(13187,13187,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_forearm_left',1045), -(13188,13188,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_forearm_right',1045), -(13189,13189,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_pauldrons_lower_left',1045), -(13190,13190,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_pauldrons_lower_right',1045), -(13191,13191,'accessories/wearable_items/_exp06/dragon_vanguard/snap_ons/dragon_shin_left',1045), -(13192,13192,'accessories/wieldable_items/weapons/exp06/bow/exp06_2h_tallonite_longbow',1045), -(13193,13193,'accessories/wieldable_items/weapons/exp06/bow/exp06_tallonite_longbow',1045), -(13194,13194,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister_swivel/backpack_brewmeister_swivel_mug',1045), -(13195,13195,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister_swivel/backpack_brewmeister_swivel',1045), -(13196,13196,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister_swivel/backpack_brewmeister_swivel_barrel',1045), -(13197,13197,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister_swivel/backpack_brewmeister_swivel_chalice',1045), -(13198,13198,'accessories/wearable_items/snapons/backpacks/backpack_brewmeister_swivel/backpack_brewmeister_swivel_cup',1045), -(13199,13199,'accessories/wearable_items/_exp07/ice_armor/chain/skirt',1045), -(13200,13200,'accessories/wearable_items/_exp07/ice_armor/chain/chest',1045), -(13201,13201,'accessories/wearable_items/_exp07/ice_armor/chain/feet',1045), -(13202,13202,'accessories/wearable_items/_exp07/ice_armor/chain/forearms',1045), -(13203,13203,'accessories/wearable_items/_exp07/ice_armor/chain/hands',1045), -(13204,13204,'accessories/wearable_items/_exp07/ice_armor/chain/head',1045), -(13205,13205,'accessories/wearable_items/_exp07/ice_armor/chain/legs',1045), -(13206,13206,'accessories/wearable_items/_exp07/ice_armor/chain/legs_noskirt',1045), -(13207,13207,'accessories/wearable_items/_exp07/ice_armor/chain/shoulders',1045), -(13208,13208,'accessories/wearable_items/_exp07/ice_armor/chain/shoulders_pauldrons',1045), -(13209,13209,'_exp06/characters/tool_users/snow_orc/snow_orc_base',1045), -(13210,13210,'accessories/npc_wearables/snow_orc/shoulders_common_armor',1045), -(13211,13211,'accessories/npc_wearables/snow_orc/chest_common_armor',1045), -(13212,13212,'accessories/npc_wearables/snow_orc/chest_heavy_armor',1045), -(13213,13213,'accessories/npc_wearables/snow_orc/chest_hunter_armor',1045), -(13214,13214,'accessories/npc_wearables/snow_orc/chest_hunter_armor_no_shoulders',1045), -(13215,13215,'accessories/npc_wearables/snow_orc/feet_common_armor',1045), -(13216,13216,'accessories/npc_wearables/snow_orc/feet_heavy_armor',1045), -(13217,13217,'accessories/npc_wearables/snow_orc/feet_hunter_armor',1045), -(13218,13218,'accessories/npc_wearables/snow_orc/forearms_heavy_armor_both',1045), -(13219,13219,'accessories/npc_wearables/snow_orc/forearms_hunter_armor_both',1045), -(13220,13220,'accessories/npc_wearables/snow_orc/hands_common_armor',1045), -(13221,13221,'accessories/npc_wearables/snow_orc/head_common_armor',1045), -(13222,13222,'accessories/npc_wearables/snow_orc/head_heavy_armor',1045), -(13223,13223,'accessories/npc_wearables/snow_orc/head_hunter_armor',1045), -(13224,13224,'accessories/npc_wearables/snow_orc/legs_common_armor',1045), -(13225,13225,'accessories/npc_wearables/snow_orc/legs_heavy_armor',1045), -(13226,13226,'staticobjects/liveevent/cityfestivals/halas_cup_03',1045), -(13227,13227,'staticobjects/tableware/hal_cup_04',1045), -(13228,13228,'staticobjects/liveevent/cityfestivals/halas_coldain_bench_02',1045), -(13229,13229,'staticobjects/liveevent/cityfestivals/halas_barbarian_anvil',1045), -(13230,13230,'staticobjects/liveevent/cityfestivals/halas_barbarian_bar_01',1045), -(13231,13231,'staticobjects/liveevent/cityfestivals/halas_barbarian_bar_02',1045), -(13232,13232,'staticobjects/crates/halas_crate_04',1045), -(13233,13233,'staticobjects/counters/halas_barbarian_counter_02',1045), -(13234,13234,'staticobjects/liveevent/cityfestivals/halas_barbarian_stool_01',1045), -(13235,13235,'staticobjects/liveevent/cityfestivals/halas_barbarian_table_01',1045), -(13236,13236,'staticobjects/soe_wallet/halas_barbarian_bar_table_02',1045), -(13237,13237,'staticobjects/liveevent/cityfestivals/halas_forge_02',1045), -(13238,13238,'staticobjects/liveevent/cityfestivals/halas_forge_01',1045), -(13239,13239,'staticobjects/liveevent/cityfestivals/halas_anvil_01',1045), -(13240,13240,'staticobjects/liveevent/cityfestivals/halas_floortile_ice',1045), -(13241,13241,'staticobjects/liveevent/cityfestivals/dpo_wallmailbox_halas',1045), -(13242,13242,'staticobjects/liveevent/cityfestivals/dpo_gf_kel_int_divider_wall01_halas',1045), -(13243,13243,'staticobjects/liveevent/cityfestivals/halas_mirror',1045), -(13244,13244,'staticobjects/liveevent/cityfestivals/halas_largecolumn',1045), -(13245,13245,'staticobjects/liveevent/cityfestivals/halas_displaycounter',1045), -(13246,13246,'staticobjects/liveevent/cityfestivals/halas_table_pedestal',1045), -(13247,13247,'staticobjects/liveevent/cityfestivals/halas_table_03',1045), -(13248,13248,'staticobjects/liveevent/cityfestivals/halas_coldain_torch_01',1045), -(13249,13249,'staticobjects/liveevent/cityfestivals/halas_chair_05',1045), -(13250,13250,'staticobjects/liveevent/cityfestivals/halas_chair_04',1045), -(13251,13251,'accessories/wearable_items/_exp07/ice_armor/leather/skirt',1045), -(13252,13252,'accessories/wearable_items/_exp07/ice_armor/leather/chest',1045), -(13253,13253,'accessories/wearable_items/_exp07/ice_armor/leather/feet',1045), -(13254,13254,'accessories/wearable_items/_exp07/ice_armor/leather/forearms',1045), -(13255,13255,'accessories/wearable_items/_exp07/ice_armor/leather/hands',1045), -(13256,13256,'accessories/wearable_items/_exp07/ice_armor/leather/head',1045), -(13257,13257,'accessories/wearable_items/_exp07/ice_armor/leather/legs',1045), -(13258,13258,'accessories/wearable_items/_exp07/ice_armor/leather/legs_noskirt',1045), -(13259,13259,'accessories/wearable_items/_exp07/ice_armor/leather/shoulders',1045), -(13260,13260,'accessories/wearable_items/_exp07/ice_armor/leather/shoulders_pauldrons',1045), -(13261,13261,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel_spikes',1045), -(13262,13262,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel',1045), -(13263,13263,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel_jug',1045), -(13264,13264,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel_lock',1045), -(13265,13265,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel_mallet',1045), -(13266,13266,'accessories/wearable_items/snapons/backpacks/backpack_adventurer_swivel/backpack_adventurer_swivel_rope',1045), -(13267,13267,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_sauce_pan',1045), -(13268,13268,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel',1045), -(13269,13269,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_bread_loaf',1045), -(13270,13270,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_coffee_pot',1045), -(13271,13271,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_cooking_pot',1045), -(13272,13272,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_rolling_pin',1045), -(13273,13273,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_salami_base',1045), -(13274,13274,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_salami_end_01',1045), -(13275,13275,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_salami_end_02',1045), -(13276,13276,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_salami_three_links',1045), -(13277,13277,'accessories/wearable_items/snapons/backpacks/backpack_provisioner_swivel/backpack_provisioner_swivel_salami_two_links',1045), -(13278,13278,'creatures/monsters/drake_ice',1045), -(13279,13279,'staticobjects/rocks/hal_obj_cave_rock02',1045), -(13280,13280,'staticobjects/chests/chest_halas_01',1045), -(13281,13281,'staticobjects/chests/chest_halas_02',1045), -(13282,13282,'staticobjects/chests/chest_halas_03',1045), -(13283,13283,'staticobjects/chairs/halas_barbarian_stool_02',1045), -(13284,13284,'staticobjects/chairs/halas_chair_02',1045), -(13285,13285,'staticobjects/soe_wallet/halas_chair_03',1045), -(13286,13286,'staticobjects/racks/hal_barbarian_weaponrack_01',1045), -(13287,13287,'staticobjects/racks/hal_barbarian_weaponrack_02',1045), -(13288,13288,'staticobjects/racks/hal_coldain_weaponrack_01',1045), -(13289,13289,'staticobjects/barricades/hal_barricade_coldane_01',1045), -(13290,13290,'staticobjects/benches/halas_coldain_bench_01',1045), -(13291,13291,'staticobjects/counters/halas_barbarian_counter_01',1045), -(13292,13292,'staticobjects/books/halas_coldain_books_03',1045), -(13293,13293,'staticobjects/books/halas_coldain_books_05',1045), -(13294,13294,'staticobjects/liveevent/cityfestivals/halas_coldain_bookshelf_01',1045), -(13295,13295,'staticobjects/soe_wallet/halas_coldain_bookshelf_02',1045), -(13296,13296,'staticobjects/liveevent/cityfestivals/halas_coldain_bookshelf_03',1045), -(13297,13297,'staticobjects/lighting/halas_coldain_lantern_01',1045), -(13298,13298,'staticobjects/lighting/halas_oil_lamp_01',1045), -(13299,13299,'staticobjects/lighting/halas_oil_lamp_03',1045), -(13300,13300,'staticobjects/lighting/halas_shipwreck_torch_01',1045), -(13301,13301,'staticobjects/crates/halas_crate_01',1045), -(13302,13302,'staticobjects/crates/halas_crate_02',1045), -(13303,13303,'staticobjects/crates/halas_crate_03',1045), -(13304,13304,'staticobjects/stable_items/halas_hitchingpost_01',1045), -(13305,13305,'staticobjects/tables/halas_barbarian_table_01',1045), -(13306,13306,'staticobjects/tables/halas_barbarian_table_02',1045), -(13307,13307,'staticobjects/tables/halas_shipwreck_table_01',1045), -(13308,13308,'staticobjects/weapons/halas_hammer_01',1045), -(13309,13309,'staticobjects/blacksmith/halas_tongs_01',1045), -(13310,13310,'staticobjects/fires/halas_ph_firepit_blue_01',1045), -(13311,13311,'staticobjects/fires/halas_ph_firepit_red_01',1045), -(13312,13312,'staticobjects/fires/halas_ph_firepit_unlit_01',1045), -(13313,13313,'staticobjects/barricades/hal_barricade_coldane_02',1045), -(13314,13314,'staticobjects/barricades/hal_barricade_coldane_03',1045), -(13315,13315,'creatures/tu/ettin_shaman',1045), -(13316,13316,'creatures/tu/ettin_skeletal',1045), -(13317,13317,'creatures/tu/ettin_warlord',1045), -(13318,13318,'creatures/tu/ettin_warrior',1045), -(13319,13319,'staticobjects/mailboxes/halas_mail_kiosk_01',1045), -(13320,13320,'creatures/mounts/rhino_mount/rhino_snow',1045), -(13321,13321,'creatures/mounts/flying_disc/flying_disc_elven_01',1045), -(13322,13322,'staticobjects/soe_wallet/halas_barbarian_bed_01',1045), -(13323,13323,'staticobjects/liveevent/cityfestivals/halas_barbarian_bed_02',1045), -(13324,13324,'staticobjects/liveevent/cityfestivals/halas_barbarian_bed_03',1045), -(13325,13325,'staticobjects/fish/kp_fish_hanging01',1045), -(13326,13326,'staticobjects/signs/halas/hal_barbarian_great_hall_sign_01',1045), -(13327,13327,'staticobjects/signs/halas/hal_coldain_hanging_sign_01',1045), -(13328,13328,'staticobjects/signs/halas/hal_coldain_hanging_sign_02',1045), -(13329,13329,'staticobjects/signs/halas/hal_coldain_house_sign_01',1045), -(13330,13330,'staticobjects/signs/halas/hal_coldain_house_sign_02',1045), -(13331,13331,'staticobjects/liveevent/cityfestivals/halas_coldain_house_sign_03',1045), -(13332,13332,'staticobjects/signs/halas/hal_coldain_house_sign_04',1045), -(13333,13333,'staticobjects/signs/halas/hal_coldain_house_sign_05',1045), -(13334,13334,'staticobjects/barrels/halas_four_barrels_01',1045), -(13335,13335,'staticobjects/barrels/halas_three_barrels_01',1045), -(13336,13336,'staticobjects/barrels/halas_three_barrels_snow_01',1045), -(13337,13337,'staticobjects/barrels/halas_three_barrels_snow_02',1045), -(13338,13338,'staticobjects/debris/halas_coldain_debris_01',1045), -(13339,13339,'staticobjects/debris/halas_coldain_debris_02',1045), -(13340,13340,'staticobjects/kegs/halas_keg_large_01',1045), -(13341,13341,'staticobjects/tents/halas_lean_tent_01',1045), -(13342,13342,'staticobjects/tents/halas_lean_tent_02',1045), -(13343,13343,'staticobjects/weapons/halas_miningtool_pick01',1045), -(13344,13344,'creatures/monsters/slug_trail_fx',1045), -(13345,13345,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/skirt',1045), -(13346,13346,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/chest',1045), -(13347,13347,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/feet',1045), -(13348,13348,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/forearms',1045), -(13349,13349,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/hands',1045), -(13350,13350,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/head',1045), -(13351,13351,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/legs',1045), -(13352,13352,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/legs_noskirt',1045), -(13353,13353,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/pauldron_left',1045), -(13354,13354,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/pauldron_right',1045), -(13355,13355,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/shoulders',1045), -(13356,13356,'accessories/wearable_items/_exp07/new_halas_armor/leather_fur/shoulders_nopauldrons',1045), -(13357,13357,'staticobjects/soe_wallet/halas_polarbear_rug_01',1045), -(13358,13358,'staticobjects/rugs/halas_rug_01',1045), -(13359,13359,'staticobjects/rugs/halas_rug_02',1045), -(13360,13360,'staticobjects/rugs/halas_rug_03',1045), -(13361,13361,'staticobjects/rugs/halas_rug_04',1045), -(13362,13362,'staticobjects/rugs/halas_rug_05',1045), -(13363,13363,'staticobjects/rugs/halas_rug_06',1045), -(13364,13364,'staticobjects/rugs/halas_rug_07',1045), -(13365,13365,'_exp07/characters/monsters/vrewwx_dragon/vrewwx',1045), -(13366,13366,'accessories/wearable_items/cloak/exp07/cloak_fur_silk',1045), -(13367,13367,'accessories/wearable_items/cloak/exp07/cloak_stained_glass',1045), -(13368,13368,'_exp07/characters/monsters/vrewwx_dragon/vrewwx_baby',1045), -(13369,13369,'staticobjects/liveevent/cityfestivals/dpo_mailbox_halas',1045), -(13370,13370,'accessories/wearable_items/_exp07/ice_armor/vanguard/skirt',1045), -(13371,13371,'accessories/wearable_items/_exp07/ice_armor/vanguard/chest',1045), -(13372,13372,'accessories/wearable_items/_exp07/ice_armor/vanguard/feet',1045), -(13373,13373,'accessories/wearable_items/_exp07/ice_armor/vanguard/forearms',1045), -(13374,13374,'accessories/wearable_items/_exp07/ice_armor/vanguard/hands',1045), -(13375,13375,'accessories/wearable_items/_exp07/ice_armor/vanguard/head',1045), -(13376,13376,'accessories/wearable_items/_exp07/ice_armor/vanguard/ice_pauldron_left',1045), -(13377,13377,'accessories/wearable_items/_exp07/ice_armor/vanguard/ice_pauldron_right',1045), -(13378,13378,'accessories/wearable_items/_exp07/ice_armor/vanguard/legs',1045), -(13379,13379,'accessories/wearable_items/_exp07/ice_armor/vanguard/legs_noskirt',1045), -(13380,13380,'accessories/wearable_items/_exp07/ice_armor/vanguard/right',1045), -(13381,13381,'accessories/wearable_items/_exp07/ice_armor/vanguard/shoulders',1045), -(13382,13382,'accessories/wearable_items/_exp07/ice_armor/vanguard/shoulders_ice_pauldrons',1045), -(13383,13383,'accessories/wearable_items/_exp07/ice_armor/vanguard/shoulders_nopauldrons',1045), -(13384,13384,'staticobjects/shop/halas_displaycase_small',1045), -(13385,13385,'staticobjects/shop/floor_displaycase_any_ornate01_small',1045), -(13386,13386,'staticobjects/trophies/halas_polar_bear_head_01',1045), -(13387,13387,'staticobjects/rugs/halas_lion_pelt_01',1045), -(13388,13388,'staticobjects/tapestry/halas_orc_camp_pelt_01',1045), -(13389,13389,'staticobjects/wood/halas_orc_camp_firewood_01',1045), -(13390,13390,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_doublefloorcog',1045), -(13391,13391,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_doublewallcog',1045), -(13392,13392,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_floorcog',1045), -(13393,13393,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_wallcogrounded',1045), -(13394,13394,'staticobjects/liveevent/tinkerfest/dpo_inna_landing_counter01',1045), -(13395,13395,'staticobjects/liveevent/tinkerfest/dpo_klak_light01',1045), -(13396,13396,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gate',1045), -(13397,13397,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gear01_greyplates',1045), -(13398,13398,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gear08_grey',1045), -(13399,13399,'staticobjects/liveevent/tinkerfest/dpo_klak_rm04_int_bowlfan',1045), -(13400,13400,'staticobjects/liveevent/tinkerfest/dpo_klak_rm04_int_fan01',1045), -(13401,13401,'staticobjects/liveevent/tinkerfest/dpo_klak_rm04_int_roller01_rot',1045), -(13402,13402,'staticobjects/liveevent/tinkerfest/dpo_klak_rm06_int_rechargingpod',1045), -(13403,13403,'staticobjects/liveevent/tinkerfest/dpo_klak_rm06_int_rechargingstation',1045), -(13404,13404,'staticobjects/liveevent/tinkerfest/dpo_powerorb_assembly',1045), -(13405,13405,'staticobjects/liveevent/tinkerfest/dpo_klak_rm08_int_medicallight',1045), -(13406,13406,'staticobjects/liveevent/tinkerfest/dpo_klak_rm05_int_squaregear02_rot',1045), -(13407,13407,'staticobjects/liveevent/tinkerfest/dpo_klak_rm14_int_powercell01',1045), -(13408,13408,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_bigfloorcog',1045), -(13409,13409,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gear01_shinysilver',1045), -(13410,13410,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gear01_red',1045), -(13411,13411,'staticobjects/liveevent/tinkerfest/dpo_panel_red_plates',1045), -(13412,13412,'staticobjects/liveevent/tinkerfest/dpo_panel_hammered_metal',1045), -(13413,13413,'staticobjects/liveevent/tinkerfest/dpo_panel_grey_plates',1045), -(13414,13414,'staticobjects/liveevent/tinkerfest/dpo_panel_rusty_plates',1045), -(13415,13415,'staticobjects/liveevent/tinkerfest/dpo_panel_grey_patterned',1045), -(13416,13416,'staticobjects/liveevent/tinkerfest/dpo_inna_wreckage_propeller',1045), -(13417,13417,'staticobjects/liveevent/tinkerfest/dpo_klak_rm03_int_gear01_yellow',1045), -(13418,13418,'staticobjects/liveevent/tinkerfest/dpo_klak_rm16_int_door',1045), -(13419,13419,'staticobjects/liveevent/tinkerfest/dpo_klak_rm09_int_menacekey',1045), -(13420,13420,'staticobjects/_exp06/ornate_torch01',1045), -(13421,13421,'staticobjects/_exp06/ornate_torch01_lit',1045), -(13422,13422,'staticobjects/catapult/snow_goblin_catapult',1045), -(13423,13423,'staticobjects/liveevent/tinkerfest/tinkerfest_book01',1045), -(13424,13424,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_sword_swept',1045), -(13425,13425,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/skirt',1045), -(13426,13426,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/chest',1045), -(13427,13427,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/feet',1045), -(13428,13428,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/hands',1045), -(13429,13429,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/head',1045), -(13430,13430,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/head_collar',1045), -(13431,13431,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/pants',1045), -(13432,13432,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/pauldron_left',1045), -(13433,13433,'accessories/wearable_items/_exp07/new_halas_armor/robe_fur/pauldron_right',1045), -(13434,13434,'creatures/tu/elf_princess',1045), -(13435,13435,'creatures/tu/firiona_vie',1045), -(13436,13436,'staticobjects/pvp/dpo_bone_tower_warfields',1045), -(13437,13437,'staticobjects/pvp/dpo_stone_steppes_tower_warfields',1045), -(13438,13438,'staticobjects/weapons/dpo_arrow_green_sparkles',1045), -(13439,13439,'staticobjects/soe_wallet/halas_barbarian_weaponrack_01_weapons_02',1045), -(13440,13440,'staticobjects/soe_wallet/halas_candle_blue_table_base',1045), -(13441,13441,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/right',1096), -(13442,13442,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/shoulders',1096), -(13443,13443,'accessories/wearable_items/_exp08/dragon_armor/vanguard_red/shoulders_epic',1096), -(13444,13444,'accessories/wearable_items/_exp07/ice_armor/vanguard/head_ice_helm',1045), -(13445,13445,'creatures/tu/ettin_warlord_helm_ice',1045), -(13446,13446,'creatures/tu/ettin_warlord_helm',1045), -(13447,13447,'creatures/tu/valkyrie_ghost_loop',1045), -(13448,13448,'accessories/wearable_items/cloak/exp07/cloak_tinker_fest',1045), -(13449,13449,'creatures/tu/skeleton_sergeant_paladin_ice',1045), -(13450,13450,'creatures/tu/skeleton_mage_ice',1045), -(13451,13451,'creatures/tu/succubus_ice',1045), -(13452,13452,'ec/npc/goblin_ice_transparent',1045), -(13453,13453,'creatures/monsters/dervish_ice_dark',1045), -(13454,13454,'creatures/tu/skeleton_sergeant_paladin_ice_dark',1045), -(13455,13455,'creatures/tu/skeleton_king_greater_ice_dark',1045), -(13456,13456,'creatures/tu/skeleton_mage_ice_dark',1045), -(13457,13457,'creatures/tu/succubus_ice_dark',1045), -(13458,13458,'ec/npc/goblin_new_ice_dark',1045), -(13459,13459,'ec/npc/goblin_new_ice',1045), -(13460,13460,'staticobjects/tcg/tcg_tinkered_box_red_button',1045), -(13461,13461,'_exp07/characters/tool_users/othmir_male_base',1045), -(13462,13462,'accessories/wieldable_items/weapons/exp05/exp05_korsha_hammer1h_fx',1045), -(13463,13463,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_toothed_cleaver_fx',1045), -(13464,13464,'accessories/wieldable_items/weapons/exp06/1h_sword/exp06_1h_sword_tallonite_katana_slice_fx',1045), -(13465,13465,'accessories/wieldable_items/weapons/fist/fist_aether_striker',1045), -(13466,13466,'accessories/wieldable_items/weapons/exp05/exp05_bow_guk_bow_eyefx',1045), -(13467,13467,'accessories/wieldable_items/weapons/exp06/1h_crush/exp06_1h_crush_erudin_library_wand_fx',1045), -(13468,13468,'accessories/wieldable_items/weapons/exp06/staff/erudite_rune_staff_fx',1045), -(13469,13469,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/skirt',1045), -(13470,13470,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/chest',1045), -(13471,13471,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/feet',1045), -(13472,13472,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/forearms',1045), -(13473,13473,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/hands',1045), -(13474,13474,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/head',1045), -(13475,13475,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/head_chain_epic',1045), -(13476,13476,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/legs',1045), -(13477,13477,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/legs_noskirt',1045), -(13478,13478,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/shoulders',1045), -(13479,13479,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/shoulders_chaos_epic',1045), -(13480,13480,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/snap_ons/chaos_pauldrons_right',1045), -(13481,13481,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/snap_ons/chaos_pauldrons_left',1045), -(13482,13482,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/snap_ons/head_chaos_helm',1045), -(13483,13483,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/snap_ons/chaos_pauldrons_left',1045), -(13484,13484,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/snap_ons/chaos_pauldrons_right',1045), -(13485,13485,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/skirt',1045), -(13486,13486,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/chest',1045), -(13487,13487,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/feet',1045), -(13488,13488,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/forearms',1045), -(13489,13489,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/hands',1045), -(13490,13490,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/head',1045), -(13491,13491,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/head_chaos_epic',1045), -(13492,13492,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/legs',1045), -(13493,13493,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/legs_noskirt',1045), -(13494,13494,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/shoulders_epic_pauldrons',1045), -(13495,13495,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/shoulders_no_pauldrons',1045), -(13496,13496,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_upper_right',1045), -(13497,13497,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_lower_left',1045), -(13498,13498,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_lower_right',1045), -(13499,13499,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_upper_left',1045), -(13500,13500,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/skirt',1045), -(13501,13501,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/chest',1045), -(13502,13502,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/chest_chaos_pauldrons',1045), -(13503,13503,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/feet',1045), -(13504,13504,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/hands',1045), -(13505,13505,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/head',1045), -(13506,13506,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/head_chaos_helm',1045), -(13507,13507,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/head_collar',1045), -(13508,13508,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/pants',1045), -(13509,13509,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_shin_right',1045), -(13510,13510,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_forearm_left',1045), -(13511,13511,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_forearm_right',1045), -(13512,13512,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_lower_left',1045), -(13513,13513,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_lower_right',1045), -(13514,13514,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_upper_left',1045), -(13515,13515,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_upper_right',1045), -(13516,13516,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_shin_left',1045), -(13517,13517,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/skirt',1045), -(13518,13518,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/chest',1045), -(13519,13519,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/feet',1045), -(13520,13520,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/forearms',1045), -(13521,13521,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/hands',1045), -(13522,13522,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/hands_chaos_gauntlets',1045), -(13523,13523,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/head',1045), -(13524,13524,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/head_chaos_helm',1045), -(13525,13525,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/legs',1045), -(13526,13526,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/legs_chaos_shins',1045), -(13527,13527,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/legs_noskirt',1045), -(13528,13528,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/right',1045), -(13529,13529,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/shoulders',1045), -(13530,13530,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/shoulders_chaos_armor_all',1045), -(13531,13531,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/shoulders_nopauldrons',1045), -(13532,13532,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/skirt',1045), -(13533,13533,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/chest',1045), -(13534,13534,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/feet',1045), -(13535,13535,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/forearms',1045), -(13536,13536,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/hands',1045), -(13537,13537,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/head',1045), -(13538,13538,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/legs',1045), -(13539,13539,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/legs_noskirt',1045), -(13540,13540,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/pauldron_left',1045), -(13541,13541,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/pauldron_right',1045), -(13542,13542,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/shoulders',1045), -(13543,13543,'accessories/wearable_items/_exp07/station_cash_armor/leather_fur_black/shoulders_nopauldrons',1045), -(13544,13544,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/skirt',1045), -(13545,13545,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/chest',1045), -(13546,13546,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/feet',1045), -(13547,13547,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/hands',1045), -(13548,13548,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/head',1045), -(13549,13549,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/head_collar',1045), -(13550,13550,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/pants',1045), -(13551,13551,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/pauldron_left',1045), -(13552,13552,'accessories/wearable_items/_exp07/station_cash_armor/robe_fur_black/pauldron_right',1045), -(13553,13553,'accessories/armor_dummy/armor_dummy_male_topiary',1045), -(13554,13554,'accessories/armor_dummy/armor_dummy_female_topiary',1045), -(13555,13555,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/snap_ons/chaos_pauldrons_right_fx',1045), -(13556,13556,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/snap_ons/chaos_pauldrons_left_fx',1045), -(13557,13557,'accessories/wearable_items/_exp06/chaos_armor_gold/chain_armor/shoulders_chaos_epic_fx',1045), -(13558,13558,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/snap_ons/chaos_pauldrons_right_fx',1045), -(13559,13559,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/snap_ons/chaos_pauldrons_left_fx',1045), -(13560,13560,'accessories/wearable_items/_exp06/chaos_armor_gold/leather_armor/shoulders_epic_pauldrons_fx',1045), -(13561,13561,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/chest_chaos_pauldrons_fx',1045), -(13562,13562,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_upper_right_fx',1045), -(13563,13563,'accessories/wearable_items/_exp06/chaos_armor_gold/robe_armor/snap_ons/chaos_pauldrons_upper_left_fx',1045), -(13564,13564,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/shoulders_chaos_armor_all_fx',1045), -(13565,13565,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_upper_right_fx',1045), -(13566,13566,'accessories/wearable_items/_exp06/chaos_armor_gold/vanguard_armor/snap_ons/chaos_pauldrons_upper_left_fx',1045), -(13567,13567,'staticobjects/_exp06/odno_firepit_rocks_orange',1045), -(13568,13568,'staticobjects/_exp06/odno_firepit_rocks_orange_unlit',1045), -(13569,13569,'creatures/mounts/horse_white_elf/horse_white_elf',1045), -(13570,13570,'staticobjects/_exp06/odno_kejak_barrel01',1045), -(13571,13571,'staticobjects/_exp06/odno_kejak_barrel02',1045), -(13572,13572,'accessories/wieldable_items/soga_weapons/fighter/1h_destroyer',1045), -(13573,13573,'staticobjects/liveevent/frostfell/permafrost_frostfell_chessboard_full',1045), -(13574,13574,'staticobjects/liveevent/cityfestivals/halas_barbarian_bar_02',1045), -(13575,13575,'staticobjects/plants/slove_pomegranate_whole01',1045), -(13576,13576,'accessories/wearable_items/cloak/exp07/cloak_water2',1045), -(13577,13577,'accessories/wearable_items/cloak/exp07/cloak_earth1',1045), -(13578,13578,'accessories/wearable_items/cloak/exp07/cloak_earth2',1045), -(13579,13579,'accessories/wearable_items/cloak/exp07/cloak_water1',1045), -(13580,13580,'_exp06/characters/tool_users/crystaline_folk_halas/crystaline_folk_ice',1045), -(13581,13581,'_exp06/characters/tool_users/crystaline_folk_halas/crystaline_folk_halas',1045), -(13582,13582,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_large_ice',1045), -(13583,13583,'accessories/npc_wearables/crystaline_folk_halas/chest_huge_back_halas',1045), -(13584,13584,'accessories/npc_wearables/crystaline_folk_halas/chest_huge_back_ice',1045), -(13585,13585,'accessories/npc_wearables/crystaline_folk_halas/head_crystal_crown_halas',1045), -(13586,13586,'accessories/npc_wearables/crystaline_folk_halas/head_crystal_crown_ice',1045), -(13587,13587,'accessories/npc_wearables/crystaline_folk_halas/legs_both_lower_halas',1045), -(13588,13588,'accessories/npc_wearables/crystaline_folk_halas/legs_both_lower_ice',1045), -(13589,13589,'accessories/npc_wearables/crystaline_folk_halas/legs_left_lower_halas',1045), -(13590,13590,'accessories/npc_wearables/crystaline_folk_halas/legs_left_lower_ice',1045), -(13591,13591,'accessories/npc_wearables/crystaline_folk_halas/legs_right_lower_halas',1045), -(13592,13592,'accessories/npc_wearables/crystaline_folk_halas/legs_right_lower_ice',1045), -(13593,13593,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_claw_halas',1045), -(13594,13594,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_claw_ice',1045), -(13595,13595,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_claw_halas',1045), -(13596,13596,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_claw_ice',1045), -(13597,13597,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_halas',1045), -(13598,13598,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_ice',1045), -(13599,13599,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_large_halas',1045), -(13600,13600,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_hook_large_ice',1045), -(13601,13601,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_large_halas',1045), -(13602,13602,'accessories/npc_wearables/crystaline_folk_halas/shoulders_both_large_ice',1045), -(13603,13603,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_claw_halas',1045), -(13604,13604,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_claw_ice',1045), -(13605,13605,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_hook_halas',1045), -(13606,13606,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_hook_ice',1045), -(13607,13607,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_large_halas',1045), -(13608,13608,'accessories/npc_wearables/crystaline_folk_halas/shoulders_left_large_ice',1045), -(13609,13609,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_claw_halas',1045), -(13610,13610,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_claw_ice',1045), -(13611,13611,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_hook_halas',1045), -(13612,13612,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_hook_ice',1045), -(13613,13613,'accessories/npc_wearables/crystaline_folk_halas/shoulders_right_large_halas',1045), -(13614,13614,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/skirt',1096), -(13615,13615,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/chest',1096), -(13616,13616,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/feet',1096), -(13617,13617,'staticobjects/catapult/orc_harpoon_launcher',1045), -(13618,13618,'staticobjects/liveevent/frostfell/permafrost_frostfell_chessboard_door_chains',1045), -(13619,13619,'staticobjects/candles/halas_candle_blue',1045), -(13620,13620,'staticobjects/weapons/halas_miningtool_pick02',1045), -(13621,13621,'staticobjects/weapons/halas_orc_harpoon_01',1045), -(13622,13622,'staticobjects/weapons/halas_orc_harpoon_base_01',1045), -(13623,13623,'staticobjects/bottles/halas_wine_bottle_01',1045), -(13624,13624,'staticobjects/plants/feerrott_plant_bigleaf_frozen',1045), -(13625,13625,'staticobjects/fires/halas_signalfire_01',1045), -(13626,13626,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2h_sword_swept',1045), -(13627,13627,'staticobjects/liveevent/frostfell/permafrost_frostfell_yeti_statue',1045), -(13628,13628,'staticobjects/tree/halas_ash_tree_01',1045), -(13629,13629,'staticobjects/harvested/crystals/halas_gems_harvesting_01',1045), -(13630,13630,'staticobjects/harvested/bushes/halas_harvest_bush_01',1045), -(13631,13631,'staticobjects/harvested/trapping/halas_harvest_dens_01',1045), -(13632,13632,'staticobjects/harvested/ore_mining/halas_harvest_ore_01',1045), -(13633,13633,'staticobjects/harvested/logs/halas_tree_log_01',1045), -(13634,13634,'staticobjects/harvested/roots_gathering/halas_vines_01',1045), -(13635,13635,'staticobjects/soe_wallet/tudor_vanity_washstand',1045), -(13636,13636,'staticobjects/soe_wallet/tudor_bdrm_armoire',1045), -(13637,13637,'staticobjects/soe_wallet/tudor_bdrm_bed',1045), -(13638,13638,'staticobjects/soe_wallet/tudor_bdrm_dresser',1045), -(13639,13639,'staticobjects/soe_wallet/tudor_bdrm_nightstand',1045), -(13640,13640,'staticobjects/soe_wallet/tudor_dining_cabinet',1045), -(13641,13641,'staticobjects/soe_wallet/tudor_dining_chair',1045), -(13642,13642,'staticobjects/soe_wallet/tudor_dining_cupboard',1045), -(13643,13643,'staticobjects/soe_wallet/tudor_dining_table',1045), -(13644,13644,'staticobjects/soe_wallet/tudor_living_coffeetable',1045), -(13645,13645,'staticobjects/soe_wallet/tudor_living_endtable',1045), -(13646,13646,'staticobjects/soe_wallet/tudor_living_settee',1045), -(13647,13647,'staticobjects/soe_wallet/tudor_living_sofa',1045), -(13648,13648,'staticobjects/soe_wallet/tudor_office_chair',1045), -(13649,13649,'staticobjects/soe_wallet/tudor_office_chest',1045), -(13650,13650,'staticobjects/soe_wallet/tudor_office_desk',1045), -(13651,13651,'staticobjects/soe_wallet/tudor_office_shelves',1045), -(13652,13652,'staticobjects/soe_wallet/tudor_vanity_stool',1045), -(13653,13653,'staticobjects/soe_wallet/tudor_vanity_table',1045), -(13654,13654,'staticobjects/liveevent/frostfell/permafrost_frostfell_valkarie_statue',1045), -(13655,13655,'creatures/pets/pet_kitten/halas_kitten',1045), -(13656,13656,'_exp07/characters/tool_users/othmir_female_base',1045), -(13657,13657,'creatures/pets/pet_kitten/halas_kitten_collar',1045), -(13658,13658,'staticobjects/soe_wallet/tudor_vanity_bathtub',1045), -(13659,13659,'staticobjects/liveevent/cityfestivals/halas_candle_blue_wall_base',1045), -(13660,13660,'staticobjects/bell/dpo_mariner_bell_01',1045), -(13661,13661,'accessories/wearable_items/cloak/exp07/cloak_halas',1045), -(13662,13662,'accessories/wearable_items/_exp07/ice_armor/robe/skirt',1045), -(13663,13663,'accessories/wearable_items/_exp07/ice_armor/robe/chest',1045), -(13664,13664,'accessories/wearable_items/_exp07/ice_armor/robe/feet',1045), -(13665,13665,'accessories/wearable_items/_exp07/ice_armor/robe/hands',1045), -(13666,13666,'accessories/wearable_items/_exp07/ice_armor/robe/head',1045), -(13667,13667,'accessories/wearable_items/_exp07/ice_armor/robe/hood',1045), -(13668,13668,'accessories/wearable_items/_exp07/ice_armor/robe/pants',1045), -(13669,13669,'staticobjects/tcg/tcg_painting47_karana',1045), -(13670,13670,'staticobjects/tcg/tcg_painting48_tunare',1045), -(13671,13671,'staticobjects/tcg/tcg_painting44_bristlebane',1045), -(13672,13672,'staticobjects/tcg/tcg_painting45_innoruuk',1045), -(13673,13673,'staticobjects/tcg/tcg_painting46_solusek',1045), -(13674,13674,'staticobjects/tcg/tcg_tapestry_silver_guardian',1045), -(13675,13675,'staticobjects/tcg/tcg_tapestry_emblematic_power',1045), -(13676,13676,'staticobjects/weapons/halas_orc_catapult_busted_01',1045), -(13677,13677,'staticobjects/vanity/bathtub_w_water',1045), -(13678,13678,'staticobjects/vanity/bathtub',1045), -(13679,13679,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_pouch03',1045), -(13680,13680,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel',1045), -(13681,13681,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_chest',1045), -(13682,13682,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_chest_lid',1045), -(13683,13683,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_keys',1045), -(13684,13684,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_lantern',1045), -(13685,13685,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_pouch01',1045), -(13686,13686,'accessories/wearable_items/snapons/backpacks/backpack_treasure_hunter_swivel/backpack_treasure_hunter_swivel_pouch02',1045), -(13687,13687,'staticobjects/liveevent/frostfell/ho_chess_tile_dark',1045), -(13688,13688,'staticobjects/liveevent/frostfell/ho_chess_tile_light',1045), -(13689,13689,'staticobjects/liveevent/frostfell/object_ice_statue_01',1045), -(13690,13690,'staticobjects/liveevent/frostfell/object_ice_statue_02',1045), -(13691,13691,'staticobjects/liveevent/frostfell/object_ice_statue_03',1045), -(13692,13692,'staticobjects/liveevent/frostfell/object_ice_weapon_rack',1045), -(13693,13693,'staticobjects/liveevent/frostfell/object_wall_ice_sword',1045), -(13694,13694,'staticobjects/liveevent/frostfell/object_wall_ice_hammer',1045), -(13695,13695,'staticobjects/liveevent/frostfell/object_ice_chest',1045), -(13696,13696,'staticobjects/liveevent/frostfell/object_ice_ceiling_lamp',1045), -(13697,13697,'staticobjects/liveevent/frostfell/object_ice_wardrobe',1045), -(13698,13698,'_exp06/zones/objects/exp06_dun_the_hole_raid/roekillik_barricade',1045), -(13699,13699,'_exp06/zones/objects/exp06_dun_the_hole_raid/hole_crystal',1045), -(13700,13700,'staticobjects/globes/gh_sentinel_globe_dpo',1045), -(13701,13701,'staticobjects/_exp07_prelude/druid_ring_phase1',1045), -(13702,13702,'staticobjects/_exp07_prelude/druid_ring_phase1_loping',1045), -(13703,13703,'staticobjects/_exp07_prelude/druid_ring_phase1_nek',1045), -(13704,13704,'staticobjects/_exp07_prelude/druid_ring_phase1_zek',1045), -(13705,13705,'staticobjects/_exp07_prelude/druid_ring_phase2',1045), -(13706,13706,'staticobjects/_exp07_prelude/druid_ring_phase2_loping',1045), -(13707,13707,'staticobjects/_exp07_prelude/druid_ring_phase2_nek',1045), -(13708,13708,'staticobjects/_exp07_prelude/druid_ring_phase2_zek',1045), -(13709,13709,'staticobjects/_exp07_prelude/druid_ring_phase3',1045), -(13710,13710,'staticobjects/_exp07_prelude/druid_ring_phase3_ferrott_off',1045), -(13711,13711,'staticobjects/_exp07_prelude/druid_ring_phase3_ferrott_on',1045), -(13712,13712,'staticobjects/_exp07_prelude/druid_ring_phase3_loping_on',1045), -(13713,13713,'staticobjects/_exp07_prelude/druid_ring_phase3_nek',1045), -(13714,13714,'staticobjects/_exp07_prelude/druid_ring_phase3_stonebrunt_off',1045), -(13715,13715,'staticobjects/_exp07_prelude/druid_ring_phase3_stonebrunt_on',1045), -(13716,13716,'staticobjects/_exp07_prelude/druid_ring_phase3_zek',1045), -(13717,13717,'staticobjects/_exp07_prelude/druid_ring_phase3_zek_off',1045), -(13718,13718,'staticobjects/_exp07_prelude/druid_ring_phase3_zek_on',1045), -(13719,13719,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_crush_mace_crowned',1045), -(13720,13720,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_crush_club_crowned',1045), -(13721,13721,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_swept',1045), -(13722,13722,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_swept',1045), -(13723,13723,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_fist_axe_sweptknuckle',1045), -(13724,13724,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_shortsword_swept',1045), -(13725,13725,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2hc_hammer_crown',1045), -(13726,13726,'accessories/wieldable_items/weapons/exp07/staff/exp07_halberd',1045), -(13727,13727,'accessories/wieldable_items/weapons/exp07/staff/exp07_scythe',1045), -(13728,13728,'accessories/wieldable_items/weapons/exp07/staff/exp07_spear',1045), -(13729,13729,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_fighting',1045), -(13730,13730,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_magi',1045), -(13731,13731,'_exp07/characters/tool_users/tserrina/tserrina',1045), -(13732,13732,'staticobjects/tcg/tcg_painting_lon10',1045), -(13733,13733,'_exp05/monsters/dire_bear03_warmor_lon_01',1045), -(13734,13734,'_exp05/monsters/dire_bear03_wsaddle_armor_lon_01',1045), -(13735,13735,'_exp05/monsters/dire_bear03_wsaddle_lon_01',1045), -(13736,13736,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_vineroom_walls_test',1045), -(13737,13737,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_bridge_01',1045), -(13738,13738,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_walls_01',1045), -(13739,13739,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_entrance_hallway_01',1045), -(13740,13740,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_fort_hallway_01',1045), -(13741,13741,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_fort_hallway_02',1045), -(13742,13742,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_01',1045), -(13743,13743,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_02',1045), -(13744,13744,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_03',1045), -(13745,13745,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_04',1045), -(13746,13746,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_05',1045), -(13747,13747,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_shard_altar_01',1045), -(13748,13748,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_shard_room_01',1045), -(13749,13749,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_vineroom_platforms_01',1045), -(13750,13750,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_vineroom_walls_01',1045), -(13751,13751,'accessories/wearable_items/profesion_hats/bruiser/station_cash_martial_skullcap/head',1045), -(13752,13752,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_vineroom_walls_01_alive',1045), -(13753,13753,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_bridge_01_alive',1045), -(13754,13754,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_walls_01_alive',1045), -(13755,13755,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_entrance_hallway_01_alive',1045), -(13756,13756,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_fort_hallway_01_alive',1045), -(13757,13757,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_fort_hallway_02_alive',1045), -(13758,13758,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_01_alive',1045), -(13759,13759,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_02_alive',1045), -(13760,13760,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_03_alive',1045), -(13761,13761,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_04_alive',1045), -(13762,13762,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_guardroom_hallway_05_alive',1045), -(13763,13763,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_shard_altar_01_alive',1045), -(13764,13764,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_shard_room_01_alive',1045), -(13765,13765,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_vineroom_platforms_01_alive',1045), -(13766,13766,'ec/pc/human/human_male_ghost_loop_flipped',1045), -(13767,13767,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_plantbridge',1045), -(13768,13768,'staticobjects/fireplace_items/dpo_fire_andiron_fire',1045), -(13769,13769,'accessories/wearable_items/_exp06/dragon_chain_white/skirt',1045), -(13770,13770,'accessories/wearable_items/_exp06/dragon_chain_white/chest',1045), -(13771,13771,'accessories/wearable_items/_exp06/dragon_chain_white/dragon_pauldron_left',1045), -(13772,13772,'accessories/wearable_items/_exp06/dragon_chain_white/dragon_pauldron_right',1045), -(13773,13773,'accessories/wearable_items/_exp06/dragon_chain_white/feet',1045), -(13774,13774,'accessories/wearable_items/_exp06/dragon_chain_white/forearms',1045), -(13775,13775,'accessories/wearable_items/_exp06/dragon_chain_white/hands',1045), -(13776,13776,'accessories/wearable_items/_exp06/dragon_chain_white/head',1045), -(13777,13777,'accessories/wearable_items/_exp06/dragon_chain_white/head_dragon_helm',1045), -(13778,13778,'accessories/wearable_items/_exp06/dragon_chain_white/legs',1045), -(13779,13779,'accessories/wearable_items/_exp06/dragon_chain_white/legs_noskirt',1045), -(13780,13780,'accessories/wearable_items/_exp06/dragon_chain_white/shoulders',1045), -(13781,13781,'accessories/wearable_items/_exp06/dragon_chain_white/shoulders_pauldrons',1045), -(13782,13782,'accessories/wearable_items/_exp06/dragon_leather_white/chest',1045), -(13783,13783,'accessories/wearable_items/_exp06/dragon_leather_white/feet',1045), -(13784,13784,'accessories/wearable_items/_exp06/dragon_leather_white/forearms',1045), -(13785,13785,'accessories/wearable_items/_exp06/dragon_leather_white/hands',1045), -(13786,13786,'accessories/wearable_items/_exp06/dragon_leather_white/head',1045), -(13787,13787,'accessories/wearable_items/_exp06/dragon_leather_white/head_dragon_helm',1045), -(13788,13788,'accessories/wearable_items/_exp06/dragon_leather_white/legs',1045); -INSERT INTO `appearances` VALUES -(13789,13789,'accessories/wearable_items/_exp06/dragon_leather_white/legs_noskirt',1045), -(13790,13790,'accessories/wearable_items/_exp06/dragon_leather_white/shoulders',1045), -(13791,13791,'accessories/wearable_items/_exp06/dragon_leather_white/shoulders_pauldrons',1045), -(13792,13792,'accessories/wearable_items/_exp06/dragon_leather_white/skirt',1045), -(13793,13793,'accessories/wearable_items/_exp06/dragon_robe_white/chest',1045), -(13794,13794,'accessories/wearable_items/_exp06/dragon_robe_white/chest_pauldrons',1045), -(13795,13795,'accessories/wearable_items/_exp06/dragon_robe_white/feet',1045), -(13796,13796,'accessories/wearable_items/_exp06/dragon_robe_white/hands',1045), -(13797,13797,'accessories/wearable_items/_exp06/dragon_robe_white/head',1045), -(13798,13798,'accessories/wearable_items/_exp06/dragon_robe_white/head_dragon_hood',1045), -(13799,13799,'accessories/wearable_items/_exp06/dragon_robe_white/hood',1045), -(13800,13800,'accessories/wearable_items/_exp06/dragon_robe_white/pants',1045), -(13801,13801,'accessories/wearable_items/_exp06/dragon_robe_white/skirt',1045), -(13802,13802,'accessories/wearable_items/_exp06/dragon_vanguard_white/chest',1045), -(13803,13803,'accessories/wearable_items/_exp06/dragon_vanguard_white/dragon_pauldrons_left',1045), -(13804,13804,'accessories/wearable_items/_exp06/dragon_vanguard_white/dragon_pauldrons_right',1045), -(13805,13805,'accessories/wearable_items/_exp06/dragon_vanguard_white/feet',1045), -(13806,13806,'accessories/wearable_items/_exp06/dragon_vanguard_white/forearms',1045), -(13807,13807,'accessories/wearable_items/_exp06/dragon_vanguard_white/hands',1045), -(13808,13808,'accessories/wearable_items/_exp06/dragon_vanguard_white/head',1045), -(13809,13809,'accessories/wearable_items/_exp06/dragon_vanguard_white/head_dragon_helm',1045), -(13810,13810,'accessories/wearable_items/_exp06/dragon_vanguard_white/legs',1045), -(13811,13811,'accessories/wearable_items/_exp06/dragon_vanguard_white/legs_dragon_snapons',1045), -(13812,13812,'accessories/wearable_items/_exp06/dragon_vanguard_white/legs_noskirt',1045), -(13813,13813,'accessories/wearable_items/_exp06/dragon_vanguard_white/right',1045), -(13814,13814,'accessories/wearable_items/_exp06/dragon_vanguard_white/shoulders',1045), -(13815,13815,'accessories/wearable_items/_exp06/dragon_vanguard_white/shoulders_dragon_pauldron',1045), -(13816,13816,'accessories/wearable_items/_exp06/dragon_vanguard_white/shoulders_nopauldrons',1045), -(13817,13817,'accessories/wearable_items/_exp06/dragon_vanguard_white/skirt',1045), -(13818,13818,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_forearm_left',1045), -(13819,13819,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_forearm_right',1045), -(13820,13820,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_pauldrons_lower_left',1045), -(13821,13821,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_pauldrons_lower_right',1045), -(13822,13822,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_shin_left',1045), -(13823,13823,'accessories/wearable_items/_exp06/dragon_vanguard_white/snap_ons/dragon_shin_right',1045), -(13824,13824,'staticobjects/_exp07_prelude/druid_ring_phase3_nek_on',1045), -(13825,13825,'staticobjects/_exp07_prelude/druid_ring_phase3_loping',1045), -(13826,13826,'accessories/wieldable_items/weapons/exp07/2h_sword/goth_scythe_2_hand_01',1045), -(13827,13827,'accessories/wieldable_items/weapons/exp07/2h_sword/goth_axe_2_hand_01',1045), -(13828,13828,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_koshigatana',1045), -(13829,13829,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2hc_hammer_blight',1045), -(13830,13830,'accessories/wieldable_items/weapons/exp07/shield/exp07_buckler_bladestopper',1045), -(13831,13831,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_bladestopper',1045), -(13832,13832,'accessories/wearable_items/cloak/exp07/cloak_of_flame',1045), -(13833,13833,'accessories/wieldable_items/weapons/exp07/shield/goth_shield_01',1045), -(13834,13834,'accessories/wieldable_items/weapons/exp07/2h_crush/goth_hammer_2_hand_01',1045), -(13835,13835,'accessories/npc_wearables/ice_shade/goth_scythe_pike',1045), -(13836,13836,'creatures/mounts/lizard_mount/lizard_mount_base',1045), -(13837,13837,'accessories/wieldable_items/weapons/exp07/1h_sword/goth_dagger_01',1045), -(13838,13838,'accessories/wearable_items/_exp07/station_cash_armor/evil_conjurer_helmet/head',1045), -(13839,13839,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/skirt',1045), -(13840,13840,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/chest',1045), -(13841,13841,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/feet',1045), -(13842,13842,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/hands',1045), -(13843,13843,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/head_collar',1045), -(13844,13844,'accessories/wearable_items/_exp07/station_cash_armor/robe_evil_dark/pants',1045), -(13845,13845,'creatures/mounts/odus_prowler/odus_prowler',1045), -(13846,13846,'creatures/mounts/odus_prowler/odus_prowler_black_poison',1045), -(13847,13847,'_exp07/characters/monsters/sea_monster/sea_monster',1045), -(13848,13848,'accessories/wieldable_items/tools/cook/spoon_gnoll',1045), -(13849,13849,'_exp07/characters/monsters/sea_monster/sea_monster_shell',1045), -(13850,13850,'accessories/wieldable_items/weapons/exp06/staff/claw_staff',1045), -(13851,13851,'creatures/mounts/odus_prowler/odus_prowler_black_death',1045), -(13852,13852,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_velium',1045), -(13853,13853,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_firecore',1045), -(13854,13854,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_icecore',1045), -(13855,13855,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_piston',1045), -(13856,13856,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_cleaver_battle_velium',1045), -(13857,13857,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_cleaver',1045), -(13858,13858,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_cleaver_aged',1045), -(13859,13859,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_cleaver_battle',1045), -(13860,13860,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_velium',1045), -(13861,13861,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_piston',1045), -(13862,13862,'projectiles/arrow_simple_plain_notes',1045), -(13863,13863,'staticobjects/liveevent/frostfell/permafrost_frostfell_frozen_barrier',1096), -(13864,13864,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_serrated',1096), -(13865,13865,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_serrated_velium',1096), -(13866,13866,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_metal',1096), -(13867,13867,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger2_metal',1096), -(13868,13868,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger2_ornate_velium',1096), -(13869,13869,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger2_velium',1096), -(13870,13870,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_infectedstone',1096), -(13871,13871,'staticobjects/halloween/bef_asylum_skeleton_swinging01',1096), -(13872,13872,'staticobjects/halloween/bef_asylum_skeleton_swinging02',1096), -(13873,13873,'staticobjects/halloween/bef_hanging_bones_swinging',1096), -(13874,13874,'staticobjects/halloween/dpo_bucket_of_apples',1096), -(13875,13875,'staticobjects/halloween/dpo_candied_apple_plate',1096), -(13876,13876,'staticobjects/halloween/dpo_canopic_jar_bats',1096), -(13877,13877,'staticobjects/halloween/dpo_canopic_jar_spiders',1096), -(13878,13878,'staticobjects/halloween/dpo_chaise_black_01',1096), -(13879,13879,'staticobjects/halloween/dpo_chaise_orange_01',1096), -(13880,13880,'staticobjects/halloween/dpo_chaise_red_01',1096), -(13881,13881,'staticobjects/halloween/dpo_cookie_plate_halloween',1096), -(13882,13882,'staticobjects/halloween/dpo_tapestry_design_notd_fire',1096), -(13883,13883,'staticobjects/halloween/dpo_tapestry_design_notd_sky',1096), -(13884,13884,'staticobjects/halloween/dpo_tapestry_design_notd_spider',1096), -(13885,13885,'staticobjects/halloween/eu_chair_shrouded01',1096), -(13886,13886,'staticobjects/halloween/eu_chair_shrouded_wfoot01',1096), -(13887,13887,'staticobjects/halloween/eu_fireplace_toolset01',1096), -(13888,13888,'staticobjects/halloween/eu_kitchen_hangingrack01',1096), -(13889,13889,'staticobjects/halloween/eu_lightsource_floor_green_candelabra01',1096), -(13890,13890,'staticobjects/halloween/eu_lightsource_floor_red_candelabra01',1096), -(13891,13891,'staticobjects/halloween/kc_lightsource_green_iksarskull01',1096), -(13892,13892,'staticobjects/halloween/kc_rug01',1096), -(13893,13893,'staticobjects/halloween/kc_rug_long01',1096), -(13894,13894,'staticobjects/halloween/kc_skull_dizok01',1096), -(13895,13895,'staticobjects/halloween/lp_coffin_stone02',1096), -(13896,13896,'staticobjects/halloween/mc_banner_vampire_hanging01',1096), -(13897,13897,'staticobjects/halloween/mc_coffin_wood01',1096), -(13898,13898,'staticobjects/tableware/hal_plate_stack_dpo',1096), -(13899,13899,'staticobjects/tradeskill_objects/hal_spinningwheel01',1096), -(13900,13900,'staticobjects/chests/chest002openbroken',1096), -(13901,13901,'staticobjects/bucket/halas_bucket_snow03',1096), -(13902,13902,'staticobjects/tradeskill_objects/hal_fabricroll_01',1096), -(13903,13903,'staticobjects/tradeskill_objects/hal_fabricroll_02',1096), -(13904,13904,'staticobjects/tradeskill_objects/hal_fabricroll_03',1096), -(13905,13905,'creatures/mounts/storm_cloud_raf',1096), -(13906,13906,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/skirt',1096), -(13907,13907,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/chest',1096), -(13908,13908,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/feet',1096), -(13909,13909,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/forearms',1096), -(13910,13910,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/hands',1096), -(13911,13911,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/head',1096), -(13912,13912,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/legs',1096), -(13913,13913,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/legs_noskirt',1096), -(13914,13914,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/right',1096), -(13915,13915,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/shoulders',1096), -(13916,13916,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/shoulders_asian_goth_pauldron',1096), -(13917,13917,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/shoulders_nopauldrons',1096), -(13918,13918,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/snapons/head_asian_goth_vanguard',1096), -(13919,13919,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/snapons/asian_goth_pauldrons_lower_left',1096), -(13920,13920,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/snapons/asian_goth_pauldrons_lower_right',1096), -(13921,13921,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/snapons/asian_goth_pauldrons_upper_left',1096), -(13922,13922,'accessories/wearable_items/_exp07/asian_goth_armor/vanguard/snapons/asian_goth_pauldrons_upper_right',1096), -(13923,13923,'creatures/tu/goatman_wizard_white',1096), -(13924,13924,'creatures/tu/goatman_priest_white',1096), -(13925,13925,'creatures/tu/goatman_warlord_white',1096), -(13926,13926,'creatures/tu/goatman_warrior_white',1096), -(13927,13927,'creatures/tu/goatman_white',1096), -(13928,13928,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_right_nowings',1096), -(13929,13929,'accessories/wearable_items/_exp06/dragon_vanguard/shoulders_dragon_pauldron_nowings',1096), -(13930,13930,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_left_nowings',1096), -(13931,13931,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/skirt',1096), -(13932,13932,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/chest',1096), -(13933,13933,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/feet',1096), -(13934,13934,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/forearms',1096), -(13935,13935,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/hands',1096), -(13936,13936,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/head',1096), -(13937,13937,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/head_rallos_zek_leather_helmet',1096), -(13938,13938,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/legs',1096), -(13939,13939,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/legs_noskirt',1096), -(13940,13940,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/shoulders_nopauldrons',1096), -(13941,13941,'accessories/wearable_items/raf_helm/head',1096), -(13942,13942,'staticobjects/liveevent/halloween/halloween_tile_bones_dpo',1096), -(13943,13943,'staticobjects/halloween/vastydeep02_objects_sidetable03_dpo',1096), -(13944,13944,'creatures/mounts/griffin_mount/griffin_mount_base',1096), -(13945,13945,'ec/pc/barbarian/barbarian_female_albino_lipstat',1096), -(13946,13946,'ec/pc/barbarian/barbarian_female_albino',1096), -(13947,13947,'ec/pc/barbarian/barbarian_female_albino_headtat',1096), -(13948,13948,'ec/pc/barbarian/barbarian_male_albino_maskedtat',1096), -(13949,13949,'ec/pc/barbarian/barbarian_male_albino_skulltat',1096), -(13950,13950,'ec/pc/barbarian/barbarian_male_albino',1096), -(13951,13951,'accessories/wearable_items/_exp07/asian_goth_armor/leather/skirt',1096), -(13952,13952,'accessories/wearable_items/_exp07/asian_goth_armor/leather/chest',1096), -(13953,13953,'accessories/wearable_items/_exp07/asian_goth_armor/leather/feet',1096), -(13954,13954,'accessories/wearable_items/_exp07/asian_goth_armor/leather/feet_dagger',1096), -(13955,13955,'accessories/wearable_items/_exp07/asian_goth_armor/leather/forearms',1096), -(13956,13956,'accessories/wearable_items/_exp07/asian_goth_armor/leather/hands',1096), -(13957,13957,'accessories/wearable_items/_exp07/asian_goth_armor/leather/head',1096), -(13958,13958,'accessories/wearable_items/_exp07/asian_goth_armor/leather/legs',1096), -(13959,13959,'accessories/wearable_items/_exp07/asian_goth_armor/leather/legs_noskirt',1096), -(13960,13960,'accessories/wearable_items/_exp07/asian_goth_armor/leather/shoulders',1096), -(13961,13961,'accessories/wearable_items/_exp07/asian_goth_armor/leather/shoulders_no_pauldrons',1096), -(13962,13962,'accessories/wearable_items/_exp07/asian_goth_armor/leather/shoulders_pauldrons_snapons',1096), -(13963,13963,'accessories/wearable_items/_exp07/asian_goth_armor/leather/snapons/head_asian_goth_leather',1096), -(13964,13964,'accessories/wearable_items/_exp07/asian_goth_armor/leather/snapons/asian_goth_leather_dagger',1096), -(13965,13965,'accessories/wearable_items/_exp07/asian_goth_armor/leather/snapons/asian_goth_leather_pauldrons_left',1096), -(13966,13966,'accessories/wearable_items/_exp07/asian_goth_armor/leather/snapons/asian_goth_leather_pauldrons_right',1096), -(13967,13967,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/shoulders_rallos_zek_epic_pauldrons',1096), -(13968,13968,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/hands_rallos_zek_leather_gauntlets',1096), -(13969,13969,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/legs_rallos_zek_shins',1096), -(13970,13970,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_gauntlets_forearm_left',1096), -(13971,13971,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_gauntlets_forearm_right',1096), -(13972,13972,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_pauldron_left',1096), -(13973,13973,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_pauldron_right',1096), -(13974,13974,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_shin_left',1096), -(13975,13975,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather/rallos_zek_leather_shin_right',1096), -(13976,13976,'accessories/wearable_items/cloak/exp07/cloak_rune_leather',1096), -(13977,13977,'staticobjects/doors/halas_door03',1096), -(13978,13978,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_rallosian_dull',1096), -(13979,13979,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_rallosian',1096), -(13980,13980,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_rallosian',1096), -(13981,13981,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_rallosian_dull',1096), -(13982,13982,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_rallosian',1096), -(13983,13983,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_rallosian_dull',1096), -(13984,13984,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_axe_rallosian',1096), -(13985,13985,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_axe_rallosian_dull',1096), -(13986,13986,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_axe_rallosian',1096), -(13987,13987,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_axe_rallosian_dull',1096), -(13988,13988,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian1',1096), -(13989,13989,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian1_damaged',1096), -(13990,13990,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian1_glow',1096), -(13991,13991,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian2',1096), -(13992,13992,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian2_damaged',1096), -(13993,13993,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallosian2_damaged_glow',1096), -(13994,13994,'accessories/wieldable_items/weapons/exp07/staff/exp07_2hp_spear_forked_dull',1096), -(13995,13995,'accessories/wieldable_items/weapons/exp07/staff/exp07_2hp_spear_forked',1096), -(13996,13996,'_exp07/characters/tool_users/storm_giants/storm_giant_mage_02',1096), -(13997,13997,'_exp07/characters/tool_users/storm_giants/storm_giant_barbarian_01',1096), -(13998,13998,'_exp07/characters/tool_users/storm_giants/storm_giant_barbarian_02',1096), -(13999,13999,'_exp07/characters/tool_users/storm_giants/storm_giant_heavy_01',1096), -(14000,14000,'_exp07/characters/tool_users/storm_giants/storm_giant_heavy_02',1096), -(14001,14001,'_exp07/characters/tool_users/storm_giants/storm_giant_king',1096), -(14002,14002,'_exp07/characters/tool_users/storm_giants/storm_giant_mage_01',1096), -(14003,14003,'creatures/tu/lava_earth_elem',1096), -(14004,14004,'creatures/boss/fallengate_disease',1096), -(14005,14005,'accessories/wearable_items/cloak/exp07/cloak_gothic_glass',1096), -(14006,14006,'staticobjects/blacksmith/fprt_forge',1096), -(14007,14007,'creatures/boss/fallengate_blue_black',1096), -(14008,14008,'staticobjects/trainingdummy/kc_training_dummy',1096), -(14009,14009,'staticobjects/trainingdummy/dpo_hanging_dummy_new',1096), -(14010,14010,'staticobjects/trainingdummy/dpo_hanging_dummy_stained',1096), -(14011,14011,'staticobjects/arches/kj_arch',1096), -(14012,14012,'_exp07/characters/tool_users/tserrina/tserrina_fly',1096), -(14013,14013,'staticobjects/chests/dpo_gnomish_chest_lid',1096), -(14014,14014,'staticobjects/chests/dpo_gnomish_chest_open',1096), -(14015,14015,'_exp06/zones/objects/exp06_dun_erudin_library/eru_exit_pillar',1096), -(14016,14016,'_exp07/characters/tool_users/storm_giants/storm_giant_heavy_03',1096), -(14017,14017,'staticobjects/crystals/dpo_salt_crystal',1096), -(14018,14018,'_exp07/zones/exp07_dun_kraytocs_fortress/kraytocs_telescoping_pillar_barriers',1096), -(14019,14019,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/skirt',1096), -(14020,14020,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/chest',1096), -(14021,14021,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/feet',1096), -(14022,14022,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/forearms',1096), -(14023,14023,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/hands',1096), -(14024,14024,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/hands_rallos_zek_chain_gauntlets',1096), -(14025,14025,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/head',1096), -(14026,14026,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/head_rallos_zek_chain_helmet',1096), -(14027,14027,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/legs',1096), -(14028,14028,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/legs_noskirt',1096), -(14029,14029,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/legs_rallos_zek_shins',1096), -(14030,14030,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_gauntlets_forearm_left',1096), -(14031,14031,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_gauntlets_forearm_right',1096), -(14032,14032,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_pauldron_left',1096), -(14033,14033,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_pauldron_right',1096), -(14034,14034,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_shin_left',1096), -(14035,14035,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_shin_right',1096), -(14036,14036,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/shoulders',1096), -(14037,14037,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/shoulders_nopauldrons',1096), -(14038,14038,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/shoulders_rallos_zek_epic_pauldrons',1096), -(14039,14039,'_exp07/zones/exp07_dun_kraytocs_fortress/kraytocs_telescoping_pillars',1096), -(14040,14040,'accessories/wearable_items/cloak/exp07/cloak_sky_clouds',1096), -(14041,14041,'accessories/wearable_items/cloak/exp07/cloak_sky_storm',1096), -(14042,14042,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/hands',1096), -(14043,14043,'ec/pc/darkelf/darkelf_male_zombie',1096), -(14044,14044,'ec/pc/darkelf/darkelf_female_zombie',1096), -(14045,14045,'staticobjects/rocks/rock03',1096), -(14046,14046,'creatures/pets/spirit_totem',1096), -(14047,14047,'_exp07/zones/exp07_dun_kraytocs_fortress/dragon_room_hot',1096), -(14048,14048,'_exp07/zones/exp07_dun_kraytocs_fortress/dragon_room_cold',1096), -(14049,14049,'_exp03/zones/objects/greater_faydark/crates/gf_crate_long_elf01',1096), -(14050,14050,'_exp03/zones/objects/greater_faydark/crates/gf_crate_small_elf01',1096), -(14051,14051,'staticobjects/barricades/hal_barricade_shipwreck_01',1096), -(14052,14052,'staticobjects/barricades/hal_barricade_shipwreck_02',1096), -(14053,14053,'staticobjects/barricades/hal_barricade_shipwreck_03',1096), -(14054,14054,'creatures/mounts/horse_sun/horse_sun',1096), -(14055,14055,'creatures/mounts/warg_mount/warg_armor04_lava',1096), -(14056,14056,'staticobjects/rubble/steaming_ash_pile',1096), -(14057,14057,'accessories/wearable_items/cloak/exp07/cloak_tree',1096), -(14058,14058,'accessories/wearable_items/cloak/exp07/cloak_aurora',1096), -(14059,14059,'accessories/wearable_items/cloak/exp07/cloak_rune_parchment',1096), -(14060,14060,'staticobjects/barricades/dpo_barricade_steamfont',1096), -(14061,14061,'staticobjects/catapult/dpo_harpoon_launcher_steamfont',1096), -(14062,14062,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/skirt',1096), -(14063,14063,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/chest',1096), -(14064,14064,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/feet',1096), -(14065,14065,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/forearms',1096), -(14066,14066,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/hands',1096), -(14067,14067,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/head',1096), -(14068,14068,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/head_epic',1096), -(14069,14069,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/legs',1096), -(14070,14070,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/legs_noskirt',1096), -(14071,14071,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/pauldron_left',1096), -(14072,14072,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/pauldron_right',1096), -(14073,14073,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/right',1096), -(14074,14074,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/shoulders',1096), -(14075,14075,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/shoulders_epic',1096), -(14076,14076,'accessories/wearable_items/_exp07/antonican_crusader_vanguard/shoulders_nopauldrons',1096), -(14077,14077,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer_glow',1096), -(14078,14078,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer',1096), -(14079,14079,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer_glow',1096), -(14080,14080,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_deathbringer',1096), -(14081,14081,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_deathbringer_glow',1096), -(14082,14082,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer',1096), -(14083,14083,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_deathbringer_glow',1096), -(14084,14084,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_deathbringer',1096), -(14085,14085,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer_glow',1096), -(14086,14086,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer',1096), -(14087,14087,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer_glow',1096), -(14088,14088,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer',1096), -(14089,14089,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer_glowfx',1096), -(14090,14090,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer_glowfx',1096), -(14091,14091,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_deathbringer_glowfx',1096), -(14092,14092,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_deathbringer_glowfx',1096), -(14093,14093,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer_glowfx',1096), -(14094,14094,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer_glowfx',1096), -(14095,14095,'staticobjects/draconic_widgets/solro_dragonpost',1096), -(14096,14096,'staticobjects/bones/dpo_lost_soul',1096), -(14097,14097,'staticobjects/chests/dpo_nek_skull_chest',1096), -(14098,14098,'staticobjects/signs/neriak/darklight_wall_sign',1096), -(14099,14099,'staticobjects/coffins_and_sarcophagus/dpo_thexian_sarcophagus_lid',1096), -(14100,14100,'staticobjects/signs/neriak/darklight_wall_sign_batwings',1096), -(14101,14101,'staticobjects/signs/neriak/darklight_wall_sign_spider',1096), -(14102,14102,'staticobjects/portals/guk_spire_portal',1096), -(14103,14103,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_plain/legs',1096), -(14104,14104,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_plain/belt',1096), -(14105,14105,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_plain/chest',1096), -(14106,14106,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_plain/feet',1096), -(14107,14107,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_guk',1096), -(14108,14108,'accessories/wieldable_items/weapons/exp07/bow/exp07_guk_bow',1096), -(14109,14109,'accessories/wieldable_items/weapons/exp07/shield/exp07_guk_shield',1096), -(14110,14110,'accessories/wieldable_items/weapons/exp07/talisman/exp07_orb_gukvdl',1096), -(14111,14111,'accessories/wieldable_items/weapons/exp07/talisman/exp07_talisman_guk',1096), -(14112,14112,'creatures/mounts/odus_prowler/odus_prowler_black_void',1096), -(14113,14113,'staticobjects/crates/animated_crate_tinkered',1096), -(14114,14114,'accessories/wearable_items/_exp07/bloodsaber_deathknight/skirt',1096), -(14115,14115,'accessories/wearable_items/_exp07/bloodsaber_deathknight/chest',1096), -(14116,14116,'accessories/wearable_items/_exp07/bloodsaber_deathknight/feet',1096), -(14117,14117,'accessories/wearable_items/_exp07/bloodsaber_deathknight/forearms',1096), -(14118,14118,'accessories/wearable_items/_exp07/bloodsaber_deathknight/hands',1096), -(14119,14119,'accessories/wearable_items/_exp07/bloodsaber_deathknight/head',1096), -(14120,14120,'accessories/wearable_items/_exp07/bloodsaber_deathknight/head_epic',1096), -(14121,14121,'accessories/wearable_items/_exp07/bloodsaber_deathknight/legs',1096), -(14122,14122,'accessories/wearable_items/_exp07/bloodsaber_deathknight/legs_noskirt',1096), -(14123,14123,'accessories/wearable_items/_exp07/bloodsaber_deathknight/pauldrons_left',1096), -(14124,14124,'accessories/wearable_items/_exp07/bloodsaber_deathknight/pauldrons_right',1096), -(14125,14125,'accessories/wearable_items/_exp07/bloodsaber_deathknight/right',1096), -(14126,14126,'accessories/wearable_items/_exp07/bloodsaber_deathknight/shoulders',1096), -(14127,14127,'accessories/wearable_items/_exp07/bloodsaber_deathknight/shoulders_epic',1096), -(14128,14128,'accessories/wearable_items/_exp07/bloodsaber_deathknight/shoulders_nopauldrons',1096), -(14129,14129,'accessories/wearable_items/cloak/exp07/cloak_shroud_faithful',1096), -(14130,14130,'accessories/wearable_items/_exp07/nizaran_assassin_armor/skirt',1096), -(14131,14131,'accessories/wearable_items/_exp07/nizaran_assassin_armor/chest',1096), -(14132,14132,'accessories/wearable_items/_exp07/nizaran_assassin_armor/feet',1096), -(14133,14133,'accessories/wearable_items/_exp07/nizaran_assassin_armor/forearms',1096), -(14134,14134,'accessories/wearable_items/_exp07/nizaran_assassin_armor/hands',1096), -(14135,14135,'accessories/wearable_items/_exp07/nizaran_assassin_armor/head',1096), -(14136,14136,'accessories/wearable_items/_exp07/nizaran_assassin_armor/legs',1096), -(14137,14137,'accessories/wearable_items/_exp07/nizaran_assassin_armor/legs_noskirt',1096), -(14138,14138,'accessories/wearable_items/_exp07/nizaran_assassin_armor/shoulders',1096), -(14139,14139,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_deathbringer_glow',1096), -(14140,14140,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_deathbringer',1096), -(14141,14141,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer_glow',1096), -(14142,14142,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer',1096), -(14143,14143,'accessories/wearable_items/cloak/exp07/cloak_dark_elf_chain',1096), -(14144,14144,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/skirt',1096), -(14145,14145,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/chest',1096), -(14146,14146,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_collar',1096), -(14147,14147,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_forearm_left',1096), -(14148,14148,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_forearm_right',1096), -(14149,14149,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_pauldron_left',1096), -(14150,14150,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_pauldron_right',1096), -(14151,14151,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_shin_left',1096), -(14152,14152,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_shin_right',1096), -(14153,14153,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_upperarm_left',1096), -(14154,14154,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/dark_elf_chain_upperarm_right',1096), -(14155,14155,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/feet',1096), -(14156,14156,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/feet_dark_elf_shin',1096), -(14157,14157,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/forearms',1096), -(14158,14158,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/forearms_dark_elf',1096), -(14159,14159,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/hands',1096), -(14160,14160,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/head',1096), -(14161,14161,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/head_dark_elf_chain_helmet',1096), -(14162,14162,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/legs',1096), -(14163,14163,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/legs_noskirt',1096), -(14164,14164,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/shoulders',1096), -(14165,14165,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/shoulders_dark_elf_lower',1096), -(14166,14166,'accessories/wearable_items/_exp07/station_cash_armor/dark_elf_armor_chain/shoulders_dark_elf_pauldrons',1096), -(14167,14167,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/shoulders_rallos_zek_small_pauldrons',1096), -(14168,14168,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_pauldron_small_left',1096), -(14169,14169,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain/rallos_zek_chain_pauldron_small_right',1096), -(14170,14170,'accessories/wieldable_items/shields/exp07/sea_turtle_shield',1096), -(14171,14171,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_deathbringer_glow_fx',1096), -(14172,14172,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer_glow_fx',1096), -(14173,14173,'creatures/tu/gods_rallos_zek_new',1096), -(14174,14174,'_exp02/zones/objects/rock_pile/rn_rocks_obsidianclump04',1096), -(14175,14175,'_exp02/zones/objects/rock_pile/rn_rocks_lavarock02clump06',1096), -(14176,14176,'_exp02/zones/objects/rock_pile/rn_rocks_lavarockclump01',1096), -(14177,14177,'_exp02/zones/objects/rock_pile/rn_rocks_lavarockclump03',1096), -(14178,14178,'_exp02/zones/objects/rock_pile/rn_rocks_lavarockclump04',1096), -(14179,14179,'_exp02/zones/objects/rock_pile/rn_rocks_lavarockclump05',1096), -(14180,14180,'_exp02/zones/objects/rock_pile/rn_rocks_lavarockclump06',1096), -(14181,14181,'_exp02/zones/objects/rock_pile/rn_rocks_obsidianclump01',1096), -(14182,14182,'_exp02/zones/objects/rock_pile/rn_rocks_obsidianclump02',1096), -(14183,14183,'_exp02/zones/objects/rock_pile/rn_rocks_obsidianclump03',1096), -(14184,14184,'_exp02/zones/objects/dragon_bones/rn_bones_dragon_largerib01',1096), -(14185,14185,'_exp02/zones/objects/dragon_bones/rn_bones_dragon_skullhalf01',1096), -(14186,14186,'staticobjects/liveevent/contest_painting_july10/contest_painting_adiene',1096), -(14187,14187,'staticobjects/liveevent/contest_painting_july10/contest_painting_ainaree',1096), -(14188,14188,'staticobjects/liveevent/contest_painting_july10/contest_painting_corisu',1096), -(14189,14189,'staticobjects/liveevent/contest_painting_july10/contest_painting_diamante',1096), -(14190,14190,'staticobjects/liveevent/contest_painting_july10/contest_painting_enna',1096), -(14191,14191,'staticobjects/liveevent/contest_painting_july10/contest_painting_erithe',1096), -(14192,14192,'staticobjects/liveevent/contest_painting_july10/contest_painting_hortensia',1096), -(14193,14193,'staticobjects/liveevent/contest_painting_july10/contest_painting_inni',1096), -(14194,14194,'staticobjects/liveevent/contest_painting_july10/contest_painting_lillyaana',1096), -(14195,14195,'staticobjects/liveevent/contest_painting_july10/contest_painting_shanyssa',1096), -(14196,14196,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_tartan/shoulders',1096), -(14197,14197,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_tartan/belt',1096), -(14198,14198,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_tartan/chest',1096), -(14199,14199,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_tartan/feet',1096), -(14200,14200,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_tartan/legs',1096), -(14201,14201,'staticobjects/tradeskill_objects/hal_spinningwheel01_broken',1096), -(14202,14202,'staticobjects/tradeskill_objects/hal_crate_broken_plates',1096), -(14203,14203,'accessories/wearable_items/_exp06/dragon_chain/shoulders_pauldrons_epic',1096), -(14204,14204,'accessories/wearable_items/_exp06/dragon_chain/dragon_pauldron_left_epic',1096), -(14205,14205,'accessories/wearable_items/_exp06/dragon_chain/dragon_pauldron_right_epic',1096), -(14206,14206,'accessories/wearable_items/_exp06/dragon_leather/shoulders_pauldrons_epic',1096), -(14207,14207,'accessories/wearable_items/_exp06/dragon_robe/chest_pauldrons_epic',1096), -(14208,14208,'accessories/wearable_items/_exp06/dragon_vanguard/shoulders_dragon_pauldron_epic',1096), -(14209,14209,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_left_epic',1096), -(14210,14210,'accessories/wearable_items/_exp06/dragon_vanguard/dragon_pauldrons_right_epic',1096), -(14211,14211,'staticobjects/tradeskill_objects/hal_fabricroll_damaged',1096), -(14212,14212,'staticobjects/liveevent/frostfell/dpo_bauble_bell_blue01',1096), -(14213,14213,'staticobjects/liveevent/frostfell/dpo_bauble_bell_gold01',1096), -(14214,14214,'staticobjects/liveevent/frostfell/dpo_bauble_bell_green01',1096), -(14215,14215,'staticobjects/liveevent/frostfell/dpo_bauble_bell_red01',1096), -(14216,14216,'staticobjects/liveevent/frostfell/dpo_bauble_bell_silver01',1096), -(14217,14217,'staticobjects/liveevent/frostfell/dpo_bauble_glass_icicle01',1096), -(14218,14218,'staticobjects/liveevent/frostfell/dpo_bauble_oblong_redgold01',1096), -(14219,14219,'staticobjects/liveevent/frostfell/dpo_bauble_oblong_silvergrn01',1096), -(14220,14220,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_blugrn',1096), -(14221,14221,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_pinkpat',1096), -(14222,14222,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_pursnow',1096), -(14223,14223,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_purstripe',1096), -(14224,14224,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_redstar',1096), -(14225,14225,'staticobjects/liveevent/frostfell/dpo_holiday_bow_wall_yellowgrn',1096), -(14226,14226,'staticobjects/liveevent/frostfell/dpo_room_divider_basic_purple_snowflakes',1096), -(14227,14227,'staticobjects/liveevent/frostfell/dpo_room_divider_basic_red',1096), -(14228,14228,'staticobjects/liveevent/frostfell/dpo_room_divider_basic_red_stars',1096), -(14229,14229,'staticobjects/liveevent/frostfell/dpo_room_divider_gingerbread',1096), -(14230,14230,'staticobjects/liveevent/frostfell/dpo_tree_rug_blue',1096), -(14231,14231,'staticobjects/liveevent/frostfell/dpo_tree_rug_gold',1096), -(14232,14232,'staticobjects/liveevent/frostfell/dpo_tree_rug_grn',1096), -(14233,14233,'staticobjects/liveevent/frostfell/dpo_tree_rug_red',1096), -(14234,14234,'staticobjects/liveevent/frostfell/holiday_figgypudding',1096), -(14235,14235,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_deathbringer_glow',1096), -(14236,14236,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_deathbringer',1096), -(14237,14237,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_deathbringer_glow',1096), -(14238,14238,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_deathbringer',1096), -(14239,14239,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_deathbringer_glow',1096), -(14240,14240,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_deathbringer',1096), -(14241,14241,'staticobjects/bookcases/dpo_miragul_bookcase01',1096), -(14242,14242,'staticobjects/books/dpo_miragul_bookstack_ice_short01',1096), -(14243,14243,'staticobjects/lighting/dpo_miragul_lightsource_brazier_short01',1096), -(14244,14244,'staticobjects/kitchen/sen_plate_small_orange_dpo',1096), -(14245,14245,'staticobjects/tables/dpo_sen_small_table_01',1096), -(14246,14246,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_01',1096), -(14247,14247,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_01',1096), -(14248,14248,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_02',1096), -(14249,14249,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_03',1096), -(14250,14250,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_04',1096), -(14251,14251,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_05',1096), -(14252,14252,'staticobjects/_exp07/exp07_dun_tower_of_frozen_shadow/tofs_mirror_fragment_06',1096), -(14253,14253,'_exp01/zones/objects/light_sources/pf_lightsource_nomad_torch01',1096), -(14254,14254,'accessories/wieldable_items/weapons/exp07/1h_sword/goth_axe_1_hand_01',1096), -(14255,14255,'_exp07/characters/tool_users/othmir/othmir_male_warrior_03_black',1096), -(14256,14256,'_exp07/characters/tool_users/othmir/othmir_female_base',1096), -(14257,14257,'_exp07/characters/tool_users/othmir/othmir_female_peasent_01',1096), -(14258,14258,'_exp07/characters/tool_users/othmir/othmir_female_peasent_01_spotted',1096), -(14259,14259,'_exp07/characters/tool_users/othmir/othmir_female_peasent_02',1096), -(14260,14260,'_exp07/characters/tool_users/othmir/othmir_female_peasent_02_dark',1096), -(14261,14261,'_exp07/characters/tool_users/othmir/othmir_female_shaman',1096), -(14262,14262,'_exp07/characters/tool_users/othmir/othmir_female_shaman_pattern',1096), -(14263,14263,'_exp07/characters/tool_users/othmir/othmir_male_base',1096), -(14264,14264,'_exp07/characters/tool_users/othmir/othmir_male_king',1096), -(14265,14265,'_exp07/characters/tool_users/othmir/othmir_male_shaman',1096), -(14266,14266,'_exp07/characters/tool_users/othmir/othmir_male_warrior_01',1096), -(14267,14267,'_exp07/characters/tool_users/othmir/othmir_male_warrior_01_black',1096), -(14268,14268,'_exp07/characters/tool_users/othmir/othmir_male_warrior_01_spotted',1096), -(14269,14269,'_exp07/characters/tool_users/othmir/othmir_male_warrior_02',1096), -(14270,14270,'_exp07/characters/tool_users/othmir/othmir_male_warrior_02_black',1096), -(14271,14271,'_exp07/characters/tool_users/othmir/othmir_male_warrior_02_spotted',1096), -(14272,14272,'_exp07/characters/tool_users/othmir/othmir_male_warrior_02_white',1096), -(14273,14273,'_exp07/characters/tool_users/othmir/othmir_male_warrior_03',1096), -(14274,14274,'_exp07/characters/tool_users/tallonite_female/tallonite_female_plate',1096), -(14275,14275,'_exp07/characters/tool_users/tallonite_female/tallonite_female_fighter',1096), -(14276,14276,'_exp07/characters/tool_users/tallonite_female/tallonite_female_mage',1096), -(14277,14277,'_exp07/characters/tool_users/othmir/othmir_male_peasant_02',1096), -(14278,14278,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/skirt',1096), -(14279,14279,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/chest',1096), -(14280,14280,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/feet',1096), -(14281,14281,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/feet_rallos_zek_vanguard_shin_braces',1096), -(14282,14282,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/forearms',1096), -(14283,14283,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/hands',1096), -(14284,14284,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/hands_rallos_zek_vanguard_gauntlets',1096), -(14285,14285,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/head',1096), -(14286,14286,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/head_rallos_zek_vanguard_helmet',1096), -(14287,14287,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/legs',1096), -(14288,14288,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/legs_noskirt',1096), -(14289,14289,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/legs_noskirt_rallos_zek_vanguard_shin_braces',1096), -(14290,14290,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/legs_rallos_zek_vanguard_shin_braces',1096), -(14291,14291,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_forearm_left',1096), -(14292,14292,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_forearm_right',1096), -(14293,14293,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_pauldron_epic_left',1096), -(14294,14294,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_pauldron_epic_right',1096), -(14295,14295,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_pauldron_small_left',1096), -(14296,14296,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_pauldron_small_right',1096), -(14297,14297,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_shin_left',1096), -(14298,14298,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_shin_right',1096), -(14299,14299,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/right',1096), -(14300,14300,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/shoulders',1096), -(14301,14301,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/shoulders_nopauldrons',1096), -(14302,14302,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/shoulders_rallos_zek_epic_pauldrons',1096), -(14303,14303,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/shoulders_rallos_zek_small_pauldrons',1096), -(14304,14304,'accessories/wearable_items/cloak/exp07/fae_d_wing01_female_demon',1096), -(14305,14305,'accessories/wearable_items/cloak/exp07/fae_d_wing01_demon',1096), -(14306,14306,'staticobjects/doors/dpo_qeynos_door',1096), -(14307,14307,'staticobjects/doors/dpo_freeport_door',1096), -(14308,14308,'staticobjects/doors/dpo_gorowyn_door',1096), -(14309,14309,'staticobjects/doors/dpo_kelethin_door',1096), -(14310,14310,'staticobjects/doors/dpo_neriak_door',1096), -(14311,14311,'accessories/wearable_items/cloak/exp07/cloak_dragon',1096), -(14312,14312,'accessories/wearable_items/cloak/exp07/cloak_dragon_slayer',1096), -(14313,14313,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_deathbringer_glowfx',1096), -(14314,14314,'creatures/mounts/flying_disc/flying_disc_elven_dark',1096), -(14315,14315,'staticobjects/liveevent/community/dpo_reward_coin_bowl',1096), -(14316,14316,'accessories/wearable_items/cloak/exp07/fae_d_wing02_good',1096), -(14317,14317,'staticobjects/panels/dpo_snow_panel',1096), -(14318,14318,'staticobjects/panels/dpo_erollisi_grass_panel',1096), -(14319,14319,'staticobjects/panels/dpo_hay_panel',1096), -(14320,14320,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard/rallos_zek_vanguard_belt_plate',1096), -(14321,14321,'staticobjects/beds/dpo_fprt_bedroll01',1096), -(14322,14322,'accessories/wearable_items/cloak/exp07/fae_d_wing02_evil',1096), -(14323,14323,'accessories/wearable_items/halloween_masks/flaming_pumpkin/head',1096), -(14324,14324,'accessories/wearable_items/halloween_masks/mask_fire_new/head',1096), -(14325,14325,'_exp07/characters/tool_users/tallonite_female/vallonite_female_mage',1096), -(14326,14326,'_exp07/characters/tool_users/tallonite_female/vallonite_female_fighter',1096), -(14327,14327,'_exp07/characters/monsters/ice_wurm/ice_wurm_violet',1096), -(14328,14328,'_exp07/characters/monsters/ice_wurm/ice_wurm_blue',1096), -(14329,14329,'_exp07/characters/monsters/ice_wurm/ice_wurm_cobalt',1096), -(14330,14330,'_exp07/characters/monsters/ice_wurm/ice_wurm_green',1096), -(14331,14331,'_exp07/characters/monsters/ice_wurm/ice_wurm_sea_foam',1096), -(14332,14332,'creatures/mounts/wolf_mount/wolf_mount_base',1096), -(14333,14333,'accessories/wieldable_items/weapons/exp07/staff/exp07_spear_of_takha',1096), -(14334,14334,'creatures/mounts/horse_heavy/horse_heavy_white_orange',1096), -(14335,14335,'creatures/mounts/horse_heavy/horse_heavy_black_blue',1096), -(14336,14336,'creatures/mounts/horse_heavy/horse_heavy_black_orange',1096), -(14337,14337,'creatures/mounts/horse_heavy/horse_heavy_brown_blue',1096), -(14338,14338,'creatures/mounts/horse_heavy/horse_heavy_brown_orange',1096), -(14339,14339,'creatures/mounts/horse_heavy/horse_heavy_white_blue',1096), -(14340,14340,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_deathbringer_glowfx',1096), -(14341,14341,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_deathbringer_glowfx',1096), -(14342,14342,'staticobjects/books/dpo_cazicbook_black',1096), -(14343,14343,'staticobjects/books/dpo_cazicbook_green',1096), -(14344,14344,'staticobjects/books/dpo_cazicbook_red',1096), -(14345,14345,'accessories/wearable_items/cloak/exp07/cloak_sc_valentine01',1096), -(14346,14346,'creatures/tu/clockwork_bixie_figher',1096), -(14347,14347,'accessories/wearable_items/cloak/exp07/cloak_sc_falling_snowflakes_01',1096), -(14348,14348,'staticobjects/liveevent/guides/dpo_guide_fortuneteller_table',1096), -(14349,14349,'staticobjects/liveevent/guides/dpo_guide_filghty_fae_candlestick',1096), -(14350,14350,'staticobjects/liveevent/guides/dpo_guide_filghty_fae_picnic',1096), -(14351,14351,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/hands_epic',1096), -(14352,14352,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/head',1096), -(14353,14353,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/head_epic',1096), -(14354,14354,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/left',1096), -(14355,14355,'staticobjects/tableware/dpo_eu_wineglass_red01',1096), -(14356,14356,'staticobjects/tableware/dpo_eu_wineglass_yellow01',1096), -(14357,14357,'staticobjects/liveevent/halloween/pumpkin_candy_dispenser_01',1096), -(14358,14358,'accessories/wieldable_items/weapons/exp03/1h_crush/exp03_1hc_wooden_vine_scepter_torch',1096), -(14359,14359,'_exp07/zones/exp07_dun_velks_forgotten_pools/blocker_01',1096), -(14360,14360,'_exp07/zones/exp07_dun_velks_forgotten_pools/breakable_door_01',1096), -(14361,14361,'_exp07/zones/exp07_dun_velks_forgotten_pools/breakable_door_01_open',1096), -(14362,14362,'_exp07/zones/exp07_dun_velks_forgotten_pools/breakable_door_01_blue',1096), -(14363,14363,'_exp07/zones/exp07_dun_velks_forgotten_pools/breakable_door_01_open_blue',1096), -(14364,14364,'_exp07/zones/exp07_dun_velks_forgotten_pools/doorshield_01',1096), -(14365,14365,'_exp07/zones/exp07_dun_velks_forgotten_pools/doorshield_switch_01',1096), -(14366,14366,'_exp07/zones/exp07_dun_velks_forgotten_pools/invis_wall_breakable_door_col_01',1096), -(14367,14367,'_exp07/zones/exp07_dun_velks_forgotten_pools/door_boss_01',1096), -(14368,14368,'staticobjects/guildhall/gh_qeynos_tapestry_dpo',1096), -(14369,14369,'staticobjects/guildhall/gh_freeport_tapestry_dpo',1096), -(14370,14370,'staticobjects/liveevent/cityfestivals/kelethin_table_bedside_mossy',1096), -(14371,14371,'_exp07/characters/monsters/timber_wolf/timber_wolf',1096), -(14372,14372,'_exp03/zones/objects/beds/kel_bed_royalty01',1096), -(14373,14373,'_exp03/zones/objects/bookcases/kel_bookcase01',1096), -(14374,14374,'_exp03/zones/objects/kelethin/crystals/kel_crystal_cylinder_growing03',1096), -(14375,14375,'_exp03/zones/objects/kelethin/oven/kel_oven02',1096), -(14376,14376,'_exp03/zones/objects/kelethin/rugs/kel_rug_yellow_square02',1096), -(14377,14377,'_exp03/zones/objects/kelethin/tavern_items/kel_tavern_chair01_yellow',1096), -(14378,14378,'_exp03/zones/objects/kelethin/tavern_items/kel_tavern_stool01_yellow',1096), -(14379,14379,'_exp03/zones/objects/tables/gf_elf_table02',1096), -(14380,14380,'_exp03/zones/objects/greater_faydark/lightsources/gf_bugbear_torch01',1096), -(14381,14381,'staticobjects/liveevent/frostfell/xmas_item_santa_sleigh_01',1096), -(14382,14382,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_chillborn',1096), -(14383,14383,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_chillborn',1096), -(14384,14384,'accessories/wieldable_items/weapons/exp07/bow/exp05_bow_chillborn',1096), -(14385,14385,'accessories/wieldable_items/weapons/exp07/staff/exp07_2hp_spear_chillborn',1096), -(14386,14386,'creatures/mounts/wolf_mount/wolf_mount_white',1096), -(14387,14387,'creatures/mounts/wolf_mount/wolf_mount_black',1096), -(14388,14388,'creatures/mounts/wolf_mount/wolf_mount_black_demon',1096), -(14389,14389,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/skirt',1096), -(14390,14390,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/chest',1096), -(14391,14391,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/chest_ogre_armor',1096), -(14392,14392,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/feet',1096), -(14393,14393,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/forearms',1096), -(14394,14394,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/hands',1096), -(14395,14395,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/hands_ogre_armor',1096), -(14396,14396,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/head',1096), -(14397,14397,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/head_ogre_armor_helmet',1096), -(14398,14398,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/legs',1096), -(14399,14399,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/legs_noskirt',1096), -(14400,14400,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/legs_ogre_armor',1096), -(14401,14401,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_belt',1096), -(14402,14402,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_collar',1096), -(14403,14403,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_foot_left',1096), -(14404,14404,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_foot_right',1096), -(14405,14405,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_forearm_right',1096), -(14406,14406,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_hand_right',1096), -(14407,14407,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_pauldron_left',1096), -(14408,14408,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_pauldron_right',1096), -(14409,14409,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_shin_left',1096), -(14410,14410,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_shin_right',1096), -(14411,14411,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_thigh_left',1096), -(14412,14412,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/ogre_armor_vanguard_upperarm_right',1096), -(14413,14413,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/right',1096), -(14414,14414,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/shoulders',1096), -(14415,14415,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/shoulders_nopauldrons',1096), -(14416,14416,'accessories/wearable_items/_exp07/station_cash_armor/ogre_vanguard_armor/shoulders_ogre_armor',1096), -(14417,14417,'_exp02/zones/objects/eggs/hf_egg_single_purple_upright01',1096), -(14418,14418,'accessories/wearable_items/cloak/exp07/cloak_ogre_vanguard',1096), -(14419,14419,'creatures/mounts/odus_prowler/odus_prowler_skeleton_poison',1096), -(14420,14420,'creatures/mounts/odus_prowler/odus_prowler_skeleton',1096), -(14421,14421,'creatures/mounts/odus_prowler/odus_prowler_skeleton_armor',1096), -(14422,14422,'creatures/mounts/odus_prowler/odus_prowler_skeleton_death',1096), -(14423,14423,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/legs',1096), -(14424,14424,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/legs_epic',1096), -(14425,14425,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/legs_noskirt',1096), -(14426,14426,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/right',1096), -(14427,14427,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_zonn',1096), -(14428,14428,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_archer',1096), -(14429,14429,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_boss',1096), -(14430,14430,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_mage',1096), -(14431,14431,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_chillborn_fx',1096), -(14432,14432,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_chillborn_fx',1096), -(14433,14433,'accessories/wieldable_items/weapons/exp07/bow/exp05_bow_chillborn_fx',1096), -(14434,14434,'accessories/wieldable_items/weapons/exp07/staff/exp07_2hp_spear_chillborn_fx',1096), -(14435,14435,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_zonn_blue',1096), -(14436,14436,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_archer_blue',1096), -(14437,14437,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_boss_blue',1096), -(14438,14438,'_exp06/characters/tool_users/talonite/talonite_male_full_suits/talonite_male_mage_blue',1096), -(14439,14439,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/pauldron_right',1096), -(14440,14440,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/shoulders',1096), -(14441,14441,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/skirt',1096), -(14442,14442,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/chest',1096), -(14443,14443,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/feet',1096), -(14444,14444,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/forearms',1096), -(14445,14445,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/hands',1096), -(14446,14446,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/head',1096), -(14447,14447,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/head_human_heritage_chain_helmet',1096), -(14448,14448,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_arm_left',1096), -(14449,14449,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_arm_right',1096), -(14450,14450,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_belt',1096), -(14451,14451,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_pauldron_guard_left',1096), -(14452,14452,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_shin_left',1096), -(14453,14453,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/human_heritage_chain_shin_right',1096), -(14454,14454,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/legs',1096), -(14455,14455,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/legs_noskirt',1096), -(14456,14456,'accessories/wearable_items/_exp07/station_cash_armor/human_heritage_armor_chain/pauldron_left',1096), -(14457,14457,'staticobjects/bucket/dpo_kel_bucket_water',1096), -(14458,14458,'staticobjects/bucket/dpo_orc_bucket_sludge',1096), -(14459,14459,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/shoulders',1096), -(14460,14460,'accessories/wearable_items/cloak/exp07/cloak_human_heritage_armor_red',1096), -(14461,14461,'accessories/wearable_items/cloak/exp07/cloak_human_heritage_armor_blue',1096), -(14462,14462,'accessories/wearable_items/cloak/exp07/cloak_human_heritage_armor_gold',1096), -(14463,14463,'accessories/wearable_items/cloak/exp07/cloak_human_heritage_armor_pewter',1096), -(14464,14464,'creatures/mounts/odus_prowler/odus_prowler_skeleton_armor_cold',1096), -(14465,14465,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_guk_cold',1096), -(14466,14466,'accessories/wieldable_items/weapons/exp07/talisman/exp07_orb_guk_cold',1096), -(14467,14467,'accessories/wieldable_items/weapons/exp07/bow/exp07_guk_bow_cold',1096), -(14468,14468,'accessories/wearable_items/_exp07/guk_skull/snap_ons/shin_right',1096), -(14469,14469,'accessories/wearable_items/_exp07/guk_skull/snap_ons/forearm_left',1096), -(14470,14470,'accessories/wearable_items/_exp07/guk_skull/snap_ons/forearm_right',1096), -(14471,14471,'accessories/wearable_items/_exp07/guk_skull/snap_ons/pauldrons_left',1096), -(14472,14472,'accessories/wearable_items/_exp07/guk_skull/snap_ons/pauldrons_lower_left',1096), -(14473,14473,'accessories/wearable_items/_exp07/guk_skull/snap_ons/pauldrons_lower_right',1096), -(14474,14474,'accessories/wearable_items/_exp07/guk_skull/snap_ons/pauldrons_right',1096), -(14475,14475,'accessories/wearable_items/_exp07/guk_skull/snap_ons/shin_left',1096), -(14476,14476,'accessories/wearable_items/_exp07/guk_skull/skirt',1096), -(14477,14477,'accessories/wearable_items/_exp07/guk_skull/chest',1096), -(14478,14478,'accessories/wearable_items/_exp07/guk_skull/feet',1096), -(14479,14479,'accessories/wearable_items/_exp07/guk_skull/forearms',1096), -(14480,14480,'accessories/wearable_items/_exp07/guk_skull/hands',1096), -(14481,14481,'accessories/wearable_items/_exp07/guk_skull/hands_epic',1096), -(14482,14482,'accessories/wearable_items/_exp07/guk_skull/head',1096), -(14483,14483,'accessories/wearable_items/_exp07/guk_skull/head_epic',1096), -(14484,14484,'accessories/wearable_items/_exp07/guk_skull/legs',1096), -(14485,14485,'accessories/wearable_items/_exp07/guk_skull/legs_epic',1096), -(14486,14486,'accessories/wearable_items/_exp07/guk_skull/legs_noskirt',1096), -(14487,14487,'accessories/wearable_items/_exp07/guk_skull/right',1096), -(14488,14488,'accessories/wearable_items/_exp07/guk_skull/shoulders',1096), -(14489,14489,'accessories/wearable_items/_exp07/guk_skull/shoulders_epic',1096), -(14490,14490,'accessories/wearable_items/_exp07/guk_skull/shoulders_nopauldrons',1096), -(14491,14491,'creatures/monsters/odus_prowler_skeletal',1096), -(14492,14492,'_exp07/zones/exp07_dun_velks_forgotten_pools/pod_01',1096), -(14493,14493,'staticobjects/_exp07/trapped_crab',1096), -(14494,14494,'_exp07/zones/exp07_dun_kraytocs_fortress/messhall_tables_giant_broken_dpo',1096), -(14495,14495,'_exp07/zones/exp07_dun_kraytocs_fortress/messhall_tables_giant_dpo',1096), -(14496,14496,'_exp07/zones/exp07_dun_kraytocs_fortress/messhall_tables_human_broken_dpo',1096), -(14497,14497,'_exp07/zones/exp07_dun_kraytocs_fortress/messhall_tables_human_dpo',1096), -(14498,14498,'creatures/mounts/horse_heavy/horse_stallion_black',1096), -(14499,14499,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/floating_mirror',1096), -(14500,14500,'_exp07/characters/tool_users/tallon_zek/tallon_zek',1096), -(14501,14501,'accessories/wearable_items/_exp07/kraytok/chain/skirt',1096), -(14502,14502,'accessories/wearable_items/_exp07/kraytok/chain/chest',1096), -(14503,14503,'accessories/wearable_items/_exp07/kraytok/chain/feet',1096), -(14504,14504,'accessories/wearable_items/_exp07/kraytok/chain/forearms',1096), -(14505,14505,'accessories/wearable_items/_exp07/kraytok/chain/hands',1096), -(14506,14506,'accessories/wearable_items/_exp07/kraytok/chain/head',1096), -(14507,14507,'accessories/wearable_items/_exp07/kraytok/chain/legs',1096), -(14508,14508,'accessories/wearable_items/_exp07/kraytok/chain/legs_noskirt',1096), -(14509,14509,'accessories/wearable_items/_exp07/kraytok/chain/pauldron_left',1096), -(14510,14510,'accessories/wearable_items/_exp07/kraytok/chain/pauldron_right',1096), -(14511,14511,'accessories/wearable_items/_exp07/kraytok/chain/shoulders',1096), -(14512,14512,'accessories/wearable_items/_exp07/kraytok/chain/shoulders_nopauldrons',1096), -(14513,14513,'accessories/wearable_items/_exp07/kraytok/leather/skirt',1096), -(14514,14514,'accessories/wearable_items/_exp07/kraytok/leather/chest',1096), -(14515,14515,'accessories/wearable_items/_exp07/kraytok/leather/feet',1096), -(14516,14516,'accessories/wearable_items/_exp07/kraytok/leather/forearms',1096), -(14517,14517,'accessories/wearable_items/_exp07/kraytok/leather/hands',1096), -(14518,14518,'accessories/wearable_items/_exp07/kraytok/leather/head',1096), -(14519,14519,'accessories/wearable_items/_exp07/kraytok/leather/legs',1096), -(14520,14520,'accessories/wearable_items/_exp07/kraytok/leather/legs_noskirt',1096), -(14521,14521,'accessories/wearable_items/_exp07/kraytok/leather/pauldron_left',1096), -(14522,14522,'accessories/wearable_items/_exp07/kraytok/leather/pauldron_right',1096), -(14523,14523,'accessories/wearable_items/_exp07/kraytok/leather/shoulders',1096), -(14524,14524,'accessories/wearable_items/_exp07/kraytok/leather/shoulders_nopauldrons',1096), -(14525,14525,'accessories/wearable_items/_exp07/kraytok/robe/skirt',1096), -(14526,14526,'accessories/wearable_items/_exp07/kraytok/robe/chest',1096), -(14527,14527,'accessories/wearable_items/_exp07/kraytok/robe/chest_paldrons',1096), -(14528,14528,'accessories/wearable_items/_exp07/kraytok/robe/feet',1096), -(14529,14529,'accessories/wearable_items/_exp07/kraytok/robe/hands',1096), -(14530,14530,'accessories/wearable_items/_exp07/kraytok/robe/head',1096), -(14531,14531,'accessories/wearable_items/_exp07/kraytok/robe/head_collar',1096), -(14532,14532,'accessories/wearable_items/_exp07/kraytok/robe/pants',1096), -(14533,14533,'accessories/wearable_items/_exp07/kraytok/robe/pauldron_left',1096), -(14534,14534,'accessories/wearable_items/_exp07/kraytok/robe/pauldron_right',1096), -(14535,14535,'staticobjects/tcg/tcg_painting49_erollisimarr',1096), -(14536,14536,'staticobjects/tcg/tcg_fishtank01',1096), -(14537,14537,'staticobjects/tcg/tcg_tapestry_stained_glass_dragon',1096), -(14538,14538,'staticobjects/tcg/tcg_tapestry_silken_glory',1096), -(14539,14539,'staticobjects/tcg/tcg_painting51_izathoth',1096), -(14540,14540,'staticobjects/tcg/tcg_painting50_grandmaster',1096), -(14541,14541,'accessories/wearable_items/profesion_hats/dragon_helm/head_dragon_helm',1096), -(14542,14542,'accessories/wearable_items/profesion_hats/dragon_helm/head_dragon_gold_helm',1096), -(14543,14543,'accessories/wearable_items/_exp07/guk_raven/chain/skirt',1096), -(14544,14544,'accessories/wearable_items/_exp07/guk_raven/chain/chest',1096), -(14545,14545,'accessories/wearable_items/_exp07/guk_raven/chain/feet',1096), -(14546,14546,'accessories/wearable_items/_exp07/guk_raven/chain/forearms',1096), -(14547,14547,'accessories/wearable_items/_exp07/guk_raven/chain/hands',1096), -(14548,14548,'accessories/wearable_items/_exp07/guk_raven/chain/head',1096), -(14549,14549,'accessories/wearable_items/_exp07/guk_raven/chain/head_epic',1096), -(14550,14550,'accessories/wearable_items/_exp07/guk_raven/chain/legs',1096), -(14551,14551,'accessories/wearable_items/_exp07/guk_raven/chain/legs_noskirt',1096), -(14552,14552,'accessories/wearable_items/_exp07/guk_raven/chain/raven_shoulder_left',1096), -(14553,14553,'accessories/wearable_items/_exp07/guk_raven/chain/raven_shoulder_right',1096), -(14554,14554,'accessories/wearable_items/_exp07/guk_raven/chain/shoulders',1096), -(14555,14555,'accessories/wearable_items/_exp07/guk_raven/chain/shoulders_epic_pauldrons',1096), -(14556,14556,'accessories/wearable_items/_exp07/guk_raven/leather/skirt',1096), -(14557,14557,'accessories/wearable_items/_exp07/guk_raven/leather/chest',1096), -(14558,14558,'accessories/wearable_items/_exp07/guk_raven/leather/feet',1096), -(14559,14559,'accessories/wearable_items/_exp07/guk_raven/leather/forearms',1096), -(14560,14560,'accessories/wearable_items/_exp07/guk_raven/leather/hands',1096), -(14561,14561,'accessories/wearable_items/_exp07/guk_raven/leather/head',1096), -(14562,14562,'accessories/wearable_items/_exp07/guk_raven/leather/head_epic',1096), -(14563,14563,'accessories/wearable_items/_exp07/guk_raven/leather/legs',1096), -(14564,14564,'accessories/wearable_items/_exp07/guk_raven/leather/legs_noskirt',1096), -(14565,14565,'accessories/wearable_items/_exp07/guk_raven/leather/raven_shoulder_left',1096), -(14566,14566,'accessories/wearable_items/_exp07/guk_raven/leather/raven_shoulder_right',1096), -(14567,14567,'accessories/wearable_items/_exp07/guk_raven/leather/shoulders',1096), -(14568,14568,'accessories/wearable_items/_exp07/guk_raven/leather/shoulders_epic_pauldrons',1096), -(14569,14569,'accessories/wearable_items/_exp07/guk_raven/robe/snap_ons/head_raven_helm',1096), -(14570,14570,'accessories/wearable_items/_exp07/guk_raven/robe/skirt',1096), -(14571,14571,'accessories/wearable_items/_exp07/guk_raven/robe/chest',1096), -(14572,14572,'accessories/wearable_items/_exp07/guk_raven/robe/chest_epic_pauldrons',1096), -(14573,14573,'accessories/wearable_items/_exp07/guk_raven/robe/feet',1096), -(14574,14574,'accessories/wearable_items/_exp07/guk_raven/robe/hands',1096), -(14575,14575,'accessories/wearable_items/_exp07/guk_raven/robe/head',1096), -(14576,14576,'accessories/wearable_items/_exp07/guk_raven/robe/head_epic',1096), -(14577,14577,'accessories/wearable_items/_exp07/guk_raven/robe/pants',1096), -(14578,14578,'accessories/wearable_items/_exp07/guk_raven/vanguard/skirt',1096), -(14579,14579,'accessories/wearable_items/_exp07/guk_raven/vanguard/chest',1096), -(14580,14580,'accessories/wearable_items/_exp07/guk_raven/vanguard/feet',1096), -(14581,14581,'accessories/wearable_items/_exp07/guk_raven/vanguard/forearms',1096), -(14582,14582,'accessories/wearable_items/_exp07/guk_raven/vanguard/hands',1096), -(14583,14583,'accessories/wearable_items/_exp07/guk_raven/vanguard/head',1096), -(14584,14584,'accessories/wearable_items/_exp07/guk_raven/vanguard/head_epic',1096), -(14585,14585,'accessories/wearable_items/_exp07/guk_raven/vanguard/legs',1096), -(14586,14586,'accessories/wearable_items/_exp07/guk_raven/vanguard/legs_noskirt',1096), -(14587,14587,'accessories/wearable_items/_exp07/guk_raven/vanguard/raven_shoulder_left',1096), -(14588,14588,'accessories/wearable_items/_exp07/guk_raven/vanguard/raven_shoulder_right',1096), -(14589,14589,'accessories/wearable_items/_exp07/guk_raven/vanguard/right',1096), -(14590,14590,'accessories/wearable_items/_exp07/guk_raven/vanguard/shoulders',1096), -(14591,14591,'accessories/wearable_items/_exp07/guk_raven/vanguard/shoulders_epic',1096), -(14592,14592,'accessories/wearable_items/_exp07/guk_raven/vanguard/shoulders_nopauldrons',1096), -(14593,14593,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/skirt',1096), -(14594,14594,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/chest',1096), -(14595,14595,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/chest_snapons',1096), -(14596,14596,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/feet',1096), -(14597,14597,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/feet_snapons',1096), -(14598,14598,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/forearms',1096), -(14599,14599,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/forearms_control_panel',1096), -(14600,14600,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/hands',1096), -(14601,14601,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/hands_snapons',1096), -(14602,14602,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/head',1096), -(14603,14603,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/legs',1096), -(14604,14604,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/legs_noskirt',1096), -(14605,14605,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/shoulders',1096), -(14606,14606,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/shoulders_snapons',1096), -(14607,14607,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_leg_right',1096), -(14608,14608,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_arm_controls_left',1096), -(14609,14609,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_arm_lower_right',1096), -(14610,14610,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_arm_upper_right',1096), -(14611,14611,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_chain_pad_lock',1096), -(14612,14612,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_chain_pauldron_left',1096), -(14613,14613,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_chain_pauldron_right',1096), -(14614,14614,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_chain_smoke_stack',1096), -(14615,14615,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/shoulders_epic',1096), -(14616,14616,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/snapons/gnome_leg_left',1096), -(14617,14617,'staticobjects/tcg/tcg_cup_of_fulfillment',1096), -(14618,14618,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/chest',1096), -(14619,14619,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/feet',1096), -(14620,14620,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/forearms',1096), -(14621,14621,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/hands',1096), -(14622,14622,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/head',1096), -(14623,14623,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/legs',1096), -(14624,14624,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/legs_noskirt',1096), -(14625,14625,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/right',1096), -(14626,14626,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/shoulders',1096), -(14627,14627,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/shoulders_nopauldrons',1096), -(14628,14628,'accessories/wearable_items/_exp07/tinted_armor/dragon_vanguard_blighted/skirt',1096), -(14629,14629,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_nobleman/shoulders',1096), -(14630,14630,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_nobleman/belt',1096), -(14631,14631,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_nobleman/chest',1096), -(14632,14632,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_nobleman/feet',1096), -(14633,14633,'accessories/wearable_items/_exp07/station_cash_armor/casual_clothing/casual_clothing_nobleman/legs',1096), -(14634,14634,'_exp04/zones/objects/timorous_deep/goro_obj_door_dpo',1096), -(14635,14635,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/skirt',1096), -(14636,14636,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/arm_left',1096), -(14637,14637,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/arm_right',1096), -(14638,14638,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/chest',1096), -(14639,14639,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/feet',1096), -(14640,14640,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/hands',1096), -(14641,14641,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/head',1096), -(14642,14642,'accessories/wearable_items/_exp07/station_cash_armor/robe_good_white/pants',1096), -(14643,14643,'_exp07/characters/monsters/griffin_new/server_griffin',1096), -(14644,14644,'accessories/wearable_items/cloak/exp07/fae_d_wing_skeleton_medium',1096), -(14645,14645,'accessories/wearable_items/cloak/exp07/fae_d_wing_skeleton',1096), -(14646,14646,'accessories/wearable_items/cloak/exp07/fae_d_wing_skeleton_large',1096), -(14647,14647,'accessories/wearable_items/cloak/exp07/cloak_gnome',1096), -(14648,14648,'staticobjects/trophies/legion_force_trophy',1096), -(14649,14649,'staticobjects/tcg/tcg_painting_lon11',1096), -(14650,14650,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_bwibip01',1096), -(14651,14651,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_byblis01',1096), -(14652,14652,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_corvo01',1096), -(14653,14653,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_crymsyn01',1096), -(14654,14654,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_ladyaerfen01',1096), -(14655,14655,'staticobjects/liveevent/contest_painting_oct10/contest3_painting_linger01',1096), -(14656,14656,'_exp07/characters/monsters/griffin_new/highland_griffin',1096), -(14657,14657,'staticobjects/_exp07_prelude/sea_monster_plushy',1096), -(14658,14658,'_exp07/characters/tool_users/carac_omnica/carac_omnica_mask_hand',1096), -(14659,14659,'_exp07/characters/tool_users/carac_omnica/carac_omnica',1096), -(14660,14660,'_exp07/characters/tool_users/carac_omnica/carac_omnica_mask',1096), -(14661,14661,'accessories/npc_wearables/carac_omica/carac_omica_mask_hand',1096), -(14662,14662,'accessories/npc_wearables/carac_omica/carac_omica_mask',1096), -(14663,14663,'accessories/wearable_items/_exp07/station_cash_armor/gnome_chain/head_epic',1096), -(14664,14664,'_exp03/characters/tool_users/vampire_greater/vampire_greater_male01_upsidedown',1096), -(14665,14665,'_exp03/characters/tool_users/vampire_greater/vampire_greater_armored_female01_upsidedown',1096), -(14666,14666,'_exp03/characters/tool_users/vampire_greater/vampire_greater_armored_male01_upsidedown',1096), -(14667,14667,'_exp04/tool_users/drachnid_female_chain_upsidedown',1096), -(14668,14668,'_exp04/tool_users/drachnid_female_upsidedown',1096), -(14669,14669,'_exp04/tool_users/drachnid_queen_upsidedown',1096), -(14670,14670,'creatures/tu/skeleton_upsidedown',1096), -(14671,14671,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_rallos_npc',1096), -(14672,14672,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_rallos_npc',1096), -(14673,14673,'creatures/monsters/bat_upsidedown',1096), -(14674,14674,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/skirt',1096), -(14675,14675,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/chest',1096), -(14676,14676,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/chest_rallos_zek_robe_pauldrons',1096), -(14677,14677,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/feet',1096), -(14678,14678,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/hands',1096), -(14679,14679,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/hands_rallos_zek_robe_gauntlets',1096), -(14680,14680,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/head',1096), -(14681,14681,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/head_rallos_zek_horns',1096), -(14682,14682,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/pants',1096), -(14683,14683,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/pauldron_left',1096), -(14684,14684,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/pauldron_right',1096), -(14685,14685,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_belt_plate',1096), -(14686,14686,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_gauntlets_forearm_left',1096), -(14687,14687,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_gauntlets_forearm_right',1096), -(14688,14688,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_hood_horns',1096), -(14689,14689,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_pauldron_left',1096), -(14690,14690,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe/rallos_zek_robe_pauldron_right',1096), -(14691,14691,'_exp07/characters/monsters/timber_wolf/timber_wolf_white_boss',1096), -(14692,14692,'_exp07/characters/monsters/timber_wolf/timber_wolf_black',1096), -(14693,14693,'_exp07/characters/monsters/timber_wolf/timber_wolf_white',1096), -(14694,14694,'accessories/wearable_items/cloak/exp07/cloak_adventuring',1096), -(14695,14695,'accessories/wearable_items/_exp07/gindan_armor/skirt',1096), -(14696,14696,'accessories/wearable_items/_exp07/gindan_armor/chest',1096), -(14697,14697,'accessories/wearable_items/_exp07/gindan_armor/feet',1096), -(14698,14698,'accessories/wearable_items/_exp07/gindan_armor/forearms',1096), -(14699,14699,'accessories/wearable_items/_exp07/gindan_armor/hands',1096), -(14700,14700,'accessories/wearable_items/_exp07/gindan_armor/head',1096), -(14701,14701,'accessories/wearable_items/_exp07/gindan_armor/head_dragon_helm',1096), -(14702,14702,'accessories/wearable_items/_exp07/gindan_armor/legs',1096), -(14703,14703,'accessories/wearable_items/_exp07/gindan_armor/legs_noskirt',1096), -(14704,14704,'accessories/wearable_items/_exp07/gindan_armor/right',1096), -(14705,14705,'accessories/wearable_items/_exp07/gindan_armor/shoulders',1096), -(14706,14706,'accessories/wearable_items/_exp07/gindan_armor/shoulders_nopauldrons',1096), -(14707,14707,'accessories/wearable_items/_exp07/gindan_armor/shoulders_snapons',1096), -(14708,14708,'accessories/wearable_items/_exp07/gindan_armor/snapons/gindan_pauldron_right',1096), -(14709,14709,'accessories/wearable_items/_exp07/gindan_armor/snapons/gindan_pauldron_left',1096), -(14710,14710,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_bunk_bed_01',1096), -(14711,14711,'accessories/wearable_items/_exp08/dragon_armor/vanguard_shadow/shoulders_nopauldrons',1096), -(14712,14712,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_right_shadow',1096), -(14713,14713,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_left_green',1096), -(14714,14714,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_bedside_table_small',1096), -(14715,14715,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_left_ivory',1096), -(14716,14716,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_left_red',1096), -(14717,14717,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_left_shadow',1096), -(14718,14718,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_right_green',1096), -(14719,14719,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_right_ivory',1096), -(14720,14720,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_plain_chest',1096), -(14721,14721,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_cake_decayed',1096), -(14722,14722,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_leather-chain_pauldron_effects_right_red',1096), -(14723,14723,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_fear_orb',1096), -(14724,14724,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_sullon_zek_dual',1096), -(14725,14725,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_pedestal',1096), -(14726,14726,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_sullon_zek',1096), -(14727,14727,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_large_floorrug',1096), -(14728,14728,'staticobjects/liveevent/frostfell/dpo_bauble_string_lights_purple_ceiling',1096), -(14729,14729,'staticobjects/liveevent/frostfell/dpo_bauble_bell_string_lights_blue_ceiling',1096), -(14730,14730,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_table',1096), -(14731,14731,'staticobjects/liveevent/frostfell/dpo_bauble_bell_string_lights_gold_ceiling',1096), -(14732,14732,'staticobjects/liveevent/frostfell/dpo_bauble_bell_string_lights_red_ceiling',1096), -(14733,14733,'accessories/wearable_items/_exp07/chain_vindicator/skirt',1096), -(14734,14734,'accessories/wearable_items/_exp07/chain_vindicator/chest',1096), -(14735,14735,'accessories/wearable_items/_exp07/chain_vindicator/epic_pauldron_left',1096), -(14736,14736,'accessories/wearable_items/_exp07/chain_vindicator/epic_pauldron_right',1096), -(14737,14737,'accessories/wearable_items/_exp07/chain_vindicator/feet',1096), -(14738,14738,'accessories/wearable_items/_exp07/chain_vindicator/forearms',1096), -(14739,14739,'accessories/wearable_items/_exp07/chain_vindicator/hands',1096), -(14740,14740,'accessories/wearable_items/_exp07/chain_vindicator/head',1096), -(14741,14741,'accessories/wearable_items/_exp07/chain_vindicator/legs',1096), -(14742,14742,'accessories/wearable_items/_exp07/chain_vindicator/legs_noskirt',1096), -(14743,14743,'accessories/wearable_items/_exp07/chain_vindicator/pauldron_left',1096), -(14744,14744,'accessories/wearable_items/_exp07/chain_vindicator/pauldron_right',1096), -(14745,14745,'accessories/wearable_items/_exp07/chain_vindicator/shoulders',1096), -(14746,14746,'accessories/wearable_items/_exp07/chain_vindicator/shoulders_nopauldrons',1096), -(14747,14747,'accessories/wearable_items/_exp07/plate_vindicator/shoulders',1096), -(14748,14748,'accessories/wearable_items/_exp07/plate_vindicator/chest',1096), -(14749,14749,'accessories/wearable_items/_exp07/plate_vindicator/epic_pauldron_left',1096), -(14750,14750,'accessories/wearable_items/_exp07/plate_vindicator/epic_pauldron_right',1096), -(14751,14751,'accessories/wearable_items/_exp07/plate_vindicator/feet',1096), -(14752,14752,'accessories/wearable_items/_exp07/plate_vindicator/forearms',1096), -(14753,14753,'accessories/wearable_items/_exp07/plate_vindicator/hands',1096), -(14754,14754,'accessories/wearable_items/_exp07/plate_vindicator/head',1096), -(14755,14755,'accessories/wearable_items/_exp07/plate_vindicator/legs',1096), -(14756,14756,'_exp07/characters/tool_users/rallos_statue/rallos_statue',1096), -(14757,14757,'_exp07/characters/tool_users/storm_giants/storm_giant_heavy_05',1096), -(14758,14758,'_exp07/characters/tool_users/storm_giants/storm_giant_heavy_04',1096), -(14759,14759,'creatures/mounts/godly_cloud',1096), -(14760,14760,'creatures/mounts/plague_cloud',1096), -(14761,14761,'staticobjects/liveevent/community/dpo_reward_chalice',1096), -(14762,14762,'_exp07/characters/monsters/snow_rhino/snow_rhino',1096), -(14763,14763,'_exp07/characters/monsters/wurm/wurm_white',1096), -(14764,14764,'_exp07/characters/monsters/wurm/wurm_green',1096), -(14765,14765,'_exp07/characters/monsters/wurm/wurm_orange',1096), -(14766,14766,'_exp07/characters/monsters/wurm/wurm_rock',1096), -(14767,14767,'creatures/mounts/griffin_mount/griffin_mount_evil',1096), -(14768,14768,'creatures/mounts/griffin_mount/griffin_mount_crow',1096), -(14769,14769,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_floating_book_animated',1096), -(14770,14770,'_exp07/zones/exp07_dun_velks_forgotten_pools/egg_01',1096), -(14771,14771,'staticobjects/_exp07/exp07_dun_velks_forgotten_pools/egg_01',1096), -(14772,14772,'_exp07/zones/exp07_dun_velks_forgotten_pools/nest_01',1096), -(14773,14773,'staticobjects/_exp07/exp07_dun_velks_forgotten_pools/nest_01',1096), -(14774,14774,'_exp07/zones/exp07_dun_kraytocs_fortress/barrel_01',1096), -(14775,14775,'_exp07/zones/exp07_dun_kraytocs_fortress/crate_02',1096), -(14776,14776,'accessories/wieldable_items/weapons/exp07/bow/exp07_obsidian_warbow',1096), -(14777,14777,'_exp07/characters/tool_users/vallon_zek/vallon_zek',1096), -(14778,14778,'accessories/wearable_items/cloak/exp07/cloak_vallon_zek',1096), -(14779,14779,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_obsidian_war_scimitar',1096), -(14780,14780,'staticobjects/crates/floor_crate_sebilis_closed02',1096), -(14781,14781,'staticobjects/_exp07/exp07_rgn_great_divide/simple_sewing_loom',1096), -(14782,14782,'_exp07/characters/tool_users/golem_blue/golem_blue',1096), -(14783,14783,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_flail_flame',1096), -(14784,14784,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_flail_cinder',1096), -(14785,14785,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_cinder',1096), -(14786,14786,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_flame',1096), -(14787,14787,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_flame',1096), -(14788,14788,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_cinder',1096), -(14789,14789,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_flame',1096), -(14790,14790,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_cinder',1096), -(14791,14791,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_fish_trap',1096), -(14792,14792,'staticobjects/_exp07/exp07_rgn_great_divide/trapped_crab',1096), -(14793,14793,'ec/pc/vampire/vampire_female',1096), -(14794,14794,'accessories/wearable_items/cloak/exp07/cloak_phoenix',1096), -(14795,14795,'accessories/wearable_items/cloak/exp07/cloak_redmoon_water',1096), -(14796,14796,'accessories/wearable_items/cloak/exp07/cloak_stained_glass_tree',1096), -(14797,14797,'accessories/wearable_items/cloak/exp07/cloak_stained_glass_tree_autumn',1096), -(14798,14798,'accessories/wearable_items/cloak/exp07/cloak_wolf_moon',1096), -(14799,14799,'accessories/wearable_items/cloak/exp07/cloak_compass_dark',1096), -(14800,14800,'accessories/wearable_items/cloak/exp07/cloak_compass_light',1096), -(14801,14801,'accessories/wearable_items/cloak/exp07/cloak_moon_water',1096), -(14802,14802,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/skirt',1096), -(14803,14803,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/arms',1096), -(14804,14804,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/chest',1096), -(14805,14805,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/head',1096), -(14806,14806,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/legs',1096), -(14807,14807,'staticobjects/liveevent/frostfell/dpo_bauble_bow_string_lights_gold_wall',1096), -(14808,14808,'staticobjects/liveevent/frostfell/dpo_bauble_bow_string_lights_red_wall',1096), -(14809,14809,'staticobjects/liveevent/frostfell/dpo_bauble_string_lights_blue_ceiling',1096), -(14810,14810,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/rallos_zek_magus_pauldron_left',1096), -(14811,14811,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus/rallos_zek_magus_pauldron_right',1096), -(14812,14812,'_exp07/characters/tool_users/sullon_zek/sullon_zek',1096), -(14813,14813,'accessories/wearable_items/_exp07/mara_cloth/legs',1096), -(14814,14814,'accessories/wearable_items/_exp07/mara_cloth/chest',1096), -(14815,14815,'accessories/wearable_items/_exp07/mara_cloth2/legs',1096), -(14816,14816,'accessories/wearable_items/_exp07/mara_cloth2/chest',1096), -(14817,14817,'_exp07/zones/exp07_dun_velks_the_ascent/static_veeshans_shard',1096), -(14818,14818,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_bridgeroom_icebridge',1096), -(14819,14819,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_switch',1096), -(14820,14820,'_exp07/zones/exp07_dun_velks_the_ascent/the_ascent_switchbase',1096), -(14821,14821,'_exp07/characters/tool_users/dain_frostweaver/dain_frostweaver',1096), -(14822,14822,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_fishing_boat',1096), -(14823,14823,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_basket03',1096), -(14824,14824,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_drum',1096), -(14825,14825,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_shell01',1096), -(14826,14826,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_shell02',1096), -(14827,14827,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_shell03',1096), -(14828,14828,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_shell04',1096), -(14829,14829,'_exp07/characters/tool_users/efreeti_blue/efreeti_blue_ice',1096), -(14830,14830,'staticobjects/liveevent/frostfell/dpo_bauble_string_lights_gold_ceiling',1096), -(14831,14831,'_exp07/characters/tool_users/djinn_ice/djinn_male_ice',1096), -(14832,14832,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_pure_rage',1096), -(14833,14833,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_embalmers_knife',1096), -(14834,14834,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_table01',1096), -(14835,14835,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_basket04_shells',1096), -(14836,14836,'staticobjects/_exp07/exp07_rgn_great_divide/ew_flowers01',1096), -(14837,14837,'_exp07/characters/tool_users/dain_frostweaver_jr/dain_jr',1096), -(14838,14838,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_hunter_03',1096), -(14839,14839,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_common_01',1096), -(14840,14840,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_common_02',1096), -(14841,14841,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_common_03',1096), -(14842,14842,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_common_04',1096), -(14843,14843,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_heavy_01',1096), -(14844,14844,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_heavy_02',1096), -(14845,14845,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_heavy_03',1096), -(14846,14846,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_hunter_01',1096), -(14847,14847,'_exp06/characters/tool_users/snow_orc/snow_orc_optimized_hunter_02',1096), -(14848,14848,'_exp07/zones/exp07_dun_velks_the_ascent/static_veeshans_shard_nofx',1096), -(14849,14849,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_emerald_dawn',1096), -(14850,14850,'_exp07/characters/monsters/sea_monster/sea_monster_plushie',1096), -(14851,14851,'staticobjects/liveevent/frostfell/dpo_bauble_string_lights_green_ceiling',1096), -(14852,14852,'_exp06/characters/tool_users/snow_orc/snow_orc_shaman',1096), -(14853,14853,'creatures/pets/wolf_pup/wolf_pup',1096), -(14854,14854,'_exp06/characters/tool_users/snow_orc/snow_orc_chief',1096), -(14855,14855,'creatures/pets/wolf_pup/wolf_pup_white_boss',1096), -(14856,14856,'creatures/pets/wolf_pup/wolf_pup_black',1096), -(14857,14857,'creatures/pets/wolf_pup/wolf_pup_white',1096), -(14858,14858,'staticobjects/_exp07/dru_ice_totem',1096), -(14859,14859,'staticobjects/_exp07/dru_earth_totem',1096), -(14860,14860,'staticobjects/_exp07/dru_fire_totem',1096), -(14861,14861,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_inflamed',1096), -(14862,14862,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_inflamed',1096), -(14863,14863,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_inflamed',1096), -(14864,14864,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_axe_inflamed',1096), -(14865,14865,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_inflamed',1096), -(14866,14866,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_inflamed',1096), -(14867,14867,'accessories/wieldable_items/weapons/exp07/shield/exp07_buckler_inflamed',1096), -(14868,14868,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_inflamed',1096), -(14869,14869,'accessories/npc_wearables/efreeti_blue_turban/efreeti_blue_turban',1096), -(14870,14870,'_exp07/characters/tool_users/othmir/othmir_male_nipik',1096), -(14871,14871,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_upsidedown_book_02',1096), -(14872,14872,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_basket01_shells',1096), -(14873,14873,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_bucket01_fish',1096), -(14874,14874,'staticobjects/_exp07/dru_drunder_sullon_elemental_earth',1096), -(14875,14875,'staticobjects/_exp07/dru_drunder_sullon_elemental_fire',1096), -(14876,14876,'staticobjects/_exp07/dru_drunder_sullon_elemental_ice',1096), -(14877,14877,'staticobjects/_exp07/dru_drunder_sullon_idol',1096), -(14878,14878,'staticobjects/_exp07/dru_drunder_tallon_idol',1096), -(14879,14879,'staticobjects/_exp07/dru_drunder_vallon_idol',1096), -(14880,14880,'creatures/monsters/octopus_blue',1096), -(14881,14881,'accessories/wearable_items/cloak/exp07/cloak_chained',1096), -(14882,14882,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_winters_bite',1096), -(14883,14883,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_winters_bite',1096), -(14884,14884,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_winters_bite',1096), -(14885,14885,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_winters_bite',1096), -(14886,14886,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_winters_bite',1096), -(14887,14887,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_winters_bite',1096), -(14888,14888,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_winters_bite',1096), -(14889,14889,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_winters_bite',1096), -(14890,14890,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_winters_bite',1096), -(14891,14891,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_winters_bite',1096), -(14892,14892,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_winters_bite',1096), -(14893,14893,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_barrel_orc01',1096), -(14894,14894,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_bench01',1096), -(14895,14895,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_barrels_01',1096), -(14896,14896,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_barrels_02',1096), -(14897,14897,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_cooking_fish_01',1096), -(14898,14898,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_firewood_01',1096), -(14899,14899,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_fish_stand_01',1096), -(14900,14900,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_pelt_01',1096), -(14901,14901,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_seat_01',1096), -(14902,14902,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_seat_02',1096), -(14903,14903,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_sign_01',1096), -(14904,14904,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_spears_01',1096), -(14905,14905,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_catapult_busted_01',1096), -(14906,14906,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_chair01',1096), -(14907,14907,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_chest_metal01',1096), -(14908,14908,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_chest_metal02',1096), -(14909,14909,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_chest_shoddy',1096), -(14910,14910,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_crate_wood',1096), -(14911,14911,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_crate_wood_long01',1096), -(14912,14912,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_forge',1096), -(14913,14913,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_forgetool_poker01',1096), -(14914,14914,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_harpoon_01',1096), -(14915,14915,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_harpoon_02',1096), -(14916,14916,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_harpoon_base_01',1096), -(14917,14917,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lantern',1096), -(14918,14918,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lantern_post',1096), -(14919,14919,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lightsource_firepot01',1096), -(14920,14920,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lightsource_firepot_small01',1096), -(14921,14921,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lightsource_torch01',1096), -(14922,14922,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_lightsource_wall_sconce02',1096), -(14923,14923,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_miningtool_pick01',1096), -(14924,14924,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_miningtool_shovel01',1096), -(14925,14925,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_rubblegravelcrystalpile01',1096), -(14926,14926,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_rubblegravelcrystalpile02',1096), -(14927,14927,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_rubblegravelpile01',1096), -(14928,14928,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_rubblegravelpile02',1096), -(14929,14929,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_rubblegravelpile03',1096), -(14930,14930,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_stool_orc_wood01',1096), -(14931,14931,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_throne',1096), -(14932,14932,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_weapon_rack_floor02',1096), -(14933,14933,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_weaponsrack_wall02',1096), -(14934,14934,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_wheelbarrow_orc01',1096), -(14935,14935,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_winters_bite_fx',1096), -(14936,14936,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_winters_bite_fx',1096), -(14937,14937,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_mace_winters_bite_fx',1096), -(14938,14938,'accessories/wieldable_items/weapons/exp07/1h_pierce/exp07_1hp_dagger_winters_bite_fx',1096), -(14939,14939,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_winters_bite_fx',1096), -(14940,14940,'accessories/wieldable_items/weapons/exp07/2h_crush/exp07_2h_hammer_winters_bite_fx',1096), -(14941,14941,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_winters_bite_fx',1096), -(14942,14942,'accessories/wieldable_items/weapons/exp07/bow/exp07_bow_winters_bite_fx',1096), -(14943,14943,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_tower_winters_bite_fx',1096), -(14944,14944,'accessories/wieldable_items/weapons/exp07/shield/exp07_shield_round_winters_bite_fx',1096), -(14945,14945,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_winters_bite_fx',1096), -(14946,14946,'creatures/mounts/griffin_mount/griffin_mount_server',1096), -(14947,14947,'accessories/wearable_items/_exp07/asian_goth_armor/robe/skirt',1096), -(14948,14948,'accessories/wearable_items/_exp07/asian_goth_armor/robe/chest',1096), -(14949,14949,'accessories/wearable_items/_exp07/asian_goth_armor/robe/feet',1096), -(14950,14950,'accessories/wearable_items/_exp07/asian_goth_armor/robe/hands',1096), -(14951,14951,'accessories/wearable_items/_exp07/asian_goth_armor/robe/head',1096), -(14952,14952,'accessories/wearable_items/_exp07/asian_goth_armor/robe/head_collar',1096), -(14953,14953,'accessories/wearable_items/_exp07/asian_goth_armor/robe/pants',1096), -(14954,14954,'staticobjects/_exp07/exp07_rgn_great_divide/gnomish_pirates_spirits',1096), -(14955,14955,'staticobjects/cages/square_birdcage_dpo',1096), -(14956,14956,'staticobjects/cages/round_birdcage_dpo',1096), -(14957,14957,'staticobjects/_exp07/exp07_dun_drunder_vallon_tower/dru_drunder03_hourglass_01',1096), -(14958,14958,'_exp07/characters/tool_users/diaku_ogres/diaku_ogre_female',1096), -(14959,14959,'_exp07/characters/tool_users/diaku_ogres/diaku_ogre_male',1096), -(14960,14960,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_crush_nipiks_cane',1096), -(14961,14961,'_exp06/characters/tool_users/coldaine/coldaine_houseman',1096), -(14962,14962,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/skirt',1096), -(14963,14963,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/chest',1096), -(14964,14964,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/feet',1096), -(14965,14965,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/forearms',1096), -(14966,14966,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/hands',1096), -(14967,14967,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/head',1096), -(14968,14968,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/legs',1096), -(14969,14969,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/legs_noskirt',1096), -(14970,14970,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/rallos_zek_chain_pauldron_left',1096), -(14971,14971,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/rallos_zek_chain_pauldron_right',1096), -(14972,14972,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/rallos_zek_chain_pauldron_small_left',1096), -(14973,14973,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/rallos_zek_chain_pauldron_small_right',1096), -(14974,14974,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/shoulders_nopauldrons',1096), -(14975,14975,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/shoulders_rallos_zek_epic_pauldrons',1096), -(14976,14976,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_chain_blue/shoulders_rallos_zek_small_pauldrons',1096), -(14977,14977,'accessories/wearable_items/profesion_hats/centurion_helm/roman_helm_black/transverse_crest_blue',1096), -(14978,14978,'accessories/wearable_items/profesion_hats/centurion_helm/roman_helm_black/head_no_crest',1096), -(14979,14979,'accessories/wearable_items/profesion_hats/centurion_helm/roman_helm_black/head_straight_crest',1096), -(14980,14980,'accessories/wearable_items/profesion_hats/centurion_helm/roman_helm_black/head_transverse_crest',1096), -(14981,14981,'accessories/wearable_items/profesion_hats/centurion_helm/roman_helm_black/straight_crest_blue',1096), -(14982,14982,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_shadow_crystal',1096), -(14983,14983,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_scepter_human_skull',1096), -(14984,14984,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_goth',1096), -(14985,14985,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_goth',1096), -(14986,14986,'staticobjects/_exp07/exp07_rgn_great_divide/opaque_ice_block',1096), -(14987,14987,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_cocoon',1096), -(14988,14988,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_floor7_transport_room_w_door',1096), -(14989,14989,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_floor7_transport_room_wo_door',1096), -(14990,14990,'creatures/monsters/hawk_arctic',1096), -(14991,14991,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/skirt',1096), -(14992,14992,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/chest',1096), -(14993,14993,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/feet',1096), -(14994,14994,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/forearms',1096), -(14995,14995,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/hands',1096), -(14996,14996,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/head',1096), -(14997,14997,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/legs',1096), -(14998,14998,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/legs_noskirt',1096), -(14999,14999,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/shoulders_nopauldrons',1096), -(15000,15000,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/shoulders_rallos_zek_epic_pauldrons',1096), -(15001,15001,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_leather_blue/shoulders_rallos_zek_small_pauldrons',1096), -(15002,15002,'staticobjects/_exp07/exp07_rgn_eastern_wastes/gd_nest01',1096), -(15003,15003,'staticobjects/_exp07/exp07_rgn_eastern_wastes/gd_nest01_full01',1096), -(15004,15004,'staticobjects/_exp07/exp07_rgn_eastern_wastes/gd_nest01_full02',1096), -(15005,15005,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_barricade_mobile01',1096), -(15006,15006,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_cannon_thurgadin01',1096), -(15007,15007,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_cart_nomad01',1096), -(15008,15008,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_barricade01_big',1096), -(15009,15009,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_barricade02_small',1096), -(15010,15010,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_bench01',1096), -(15011,15011,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_bench02',1096), -(15012,15012,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_tent01',1096), -(15013,15013,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_weaponrack01',1096), -(15014,15014,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_coldain_weaponrack02',1096), -(15015,15015,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_coldain01_handout01',1096), -(15016,15016,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_coldain02',1096), -(15017,15017,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_coldain03',1096), -(15018,15018,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_coldain04',1096), -(15019,15019,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_combo01',1096), -(15020,15020,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_combo02_big01',1096), -(15021,15021,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_empty01',1096), -(15022,15022,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_ice_blocks_ring_war_giant01',1096), -(15023,15023,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rime_crate01_frost',1096), -(15024,15024,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rime_crate01_short_frost',1096), -(15025,15025,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rime_tapestry01',1096), -(15026,15026,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rime_temts_large01',1096), -(15027,15027,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rime_temts_leanto01',1096), -(15028,15028,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tent_crude01',1096), -(15029,15029,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_barrel01',1096), -(15030,15030,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_bed01',1096), -(15031,15031,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_bench01',1096), -(15032,15032,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_brazier01',1096), -(15033,15033,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_chair01',1096), -(15034,15034,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_drum01',1096), -(15035,15035,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_light01',1096), -(15036,15036,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_marker01',1096), -(15037,15037,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_marker02',1096), -(15038,15038,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_partition01',1096), -(15039,15039,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_table01',1096), -(15040,15040,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_walllight01',1096), -(15041,15041,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tool_forge_anvil',1096), -(15042,15042,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tool_forge_pliers',1096), -(15043,15043,'creatures/tu/tentacleterror_diseased',1096), -(15044,15044,'accessories/wearable_items/_exp07/kraytok/masked_hood/head',1096), -(15045,15045,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/skirt',1096), -(15046,15046,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/chest',1096), -(15047,15047,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/feet',1096), -(15048,15048,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/forearms',1096), -(15049,15049,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/hands',1096), -(15050,15050,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/head',1096), -(15051,15051,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/legs',1096), -(15052,15052,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/legs_noskirt',1096), -(15053,15053,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/rallos_zek_vanguard_belt_plate',1096), -(15054,15054,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/rallos_zek_vanguard_pauldron_epic_left',1096), -(15055,15055,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/rallos_zek_vanguard_pauldron_epic_right',1096), -(15056,15056,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/rallos_zek_vanguard_pauldron_small_left',1096), -(15057,15057,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/rallos_zek_vanguard_pauldron_small_right',1096), -(15058,15058,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/right',1096), -(15059,15059,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/shoulders',1096), -(15060,15060,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/shoulders_nopauldrons',1096), -(15061,15061,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/shoulders_rallos_zek_epic_pauldrons',1096), -(15062,15062,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_vanguard_blue/shoulders_rallos_zek_small_pauldrons',1096), -(15063,15063,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_tserrina_brooch',1096), -(15064,15064,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_crate_group_01',1096), -(15065,15065,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_crate_group_02',1096), -(15066,15066,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_bones_wall_01',1096), -(15067,15067,'_exp07/zones/exp07_rgn_great_divide/daggerflow_snow_pen',1096), -(15068,15068,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_barricade01_net',1096), -(15069,15069,'accessories/wearable_items/cloak/exp07/cloak_waterfall',1096), -(15070,15070,'accessories/wearable_items/cloak/exp07/cloak_belts',1096), -(15071,15071,'accessories/wearable_items/cloak/exp07/cloak_belts_diamond',1096), -(15072,15072,'accessories/wearable_items/cloak/exp07/cloak_metal_plate',1096), -(15073,15073,'accessories/wearable_items/cloak/exp07/cloak_metal_plate_pristine',1096), -(15074,15074,'accessories/wearable_items/cloak/exp07/cloak_metal_plate_pristine_inset',1096), -(15075,15075,'accessories/wearable_items/cloak/exp07/cloak_metal_scale',1096), -(15076,15076,'accessories/wearable_items/cloak/exp07/cloak_metal_scale_diamond',1096), -(15077,15077,'accessories/wearable_items/cloak/exp07/cloak_quilted',1096), -(15078,15078,'accessories/wearable_items/cloak/exp07/cloak_quilted_blue',1096), -(15079,15079,'accessories/wearable_items/cloak/exp07/cloak_quilted_red',1096), -(15080,15080,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_barricade02_net',1096), -(15081,15081,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_figh01',1096), -(15082,15082,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/skirt',1096), -(15083,15083,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/chest',1096), -(15084,15084,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/feet',1096), -(15085,15085,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/hands',1096), -(15086,15086,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/head',1096), -(15087,15087,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/pants',1096), -(15088,15088,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_robe_blue/rallos_zek_robe_belt_plate',1096), -(15089,15089,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_barricade01',1096), -(15090,15090,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_barricade02',1096), -(15091,15091,'staticobjects/promo_items/winter_2010_velious_painting',1096), -(15092,15092,'creatures/monsters/badger_cream',1096), -(15093,15093,'creatures/monsters/hawk_arctic_white',1096), -(15094,15094,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/skirt',1096), -(15095,15095,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/arms',1096), -(15096,15096,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/chest',1096), -(15097,15097,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/chest_no_pauldrons',1096), -(15098,15098,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/head',1096), -(15099,15099,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/legs',1096), -(15100,15100,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/rallos_zek_magus_pauldron_left',1096), -(15101,15101,'accessories/wearable_items/_exp07/rallos_zek_armor/rallos_zek_armor_magus_blue/rallos_zek_magus_pauldron_right',1096), -(15102,15102,'_exp07/characters/monsters/lord_yelinak/lord_yelinak',1096), -(15103,15103,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_crusted_ice_shield',1096), -(15104,15104,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_exp07_cleaver_aged',1096), -(15105,15105,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_exp07_cleaver_battle',1096), -(15106,15106,'staticobjects/_exp07/exp07_rgn_great_divide/upside_down_hrvst_coral_group001',1096), -(15107,15107,'staticobjects/_exp07/exp07_rgn_great_divide/upside_down_hrvst_coral_group002',1096), -(15108,15108,'staticobjects/_exp07/exp07_rgn_great_divide/upside_down_jw_sporepod01',1096), -(15109,15109,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_ice_large_col_01',1096), -(15110,15110,'_exp07/zones/exp07_dun_tower_of_frozen_shadow/tofs_ice_large_col_02',1096), -(15111,15111,'staticobjects/_exp07/exp07_rgn_great_divide/gnomish_pirate_distillery',1096), -(15112,15112,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_icy_chalice',1096), -(15113,15113,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_kitchen_utensilholder',1096), -(15114,15114,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_saucepan',1096), -(15115,15115,'accessories/hair/hair031',1096), -(15116,15116,'accessories/hair/hair027',1096), -(15117,15117,'accessories/hair/hair028',1096), -(15118,15118,'accessories/hair/hair029',1096), -(15119,15119,'accessories/hair/hair030',1096), -(15120,15120,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_tizmak_gems',1096), -(15121,15121,'staticobjects/_exp07/exp07_rgn_thurgadin/crate_group_01',1096), -(15122,15122,'staticobjects/_exp07/exp07_rgn_thurgadin/crate_group_02',1096), -(15123,15123,'staticobjects/_exp07/exp07_rgn_thurgadin/crate_single_01',1096), -(15124,15124,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_blue_lamp_01',1096), -(15125,15125,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_chair_01',1096), -(15126,15126,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_chair_02',1096), -(15127,15127,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_chair_03',1096), -(15128,15128,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_table_01',1096), -(15129,15129,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_table_02',1096), -(15130,15130,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_table_03',1096), -(15131,15131,'staticobjects/_exp07/exp07_rgn_thurgadin/thur_table_04',1096), -(15132,15132,'staticobjects/_exp07/exp07_rgn_thurgadin/torch_single_01',1096), -(15133,15133,'staticobjects/_exp07/exp07_rgn_thurgadin/torch_single_blue_fire_01',1096), -(15134,15134,'ec/pc/vampire/vampire_male',1096), -(15135,15135,'accessories/hair/hair036',1096), -(15136,15136,'staticobjects/_exp07/exp07_rgn_eastern_wastes/turned_ettin_assault_axe001_ornate',1096), -(15137,15137,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_kael_crate',1096), -(15138,15138,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_kael_crate_broken',1096), -(15139,15139,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_kael_barrel',1096), -(15140,15140,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_kael_barrel_broken',1096), -(15141,15141,'staticobjects/_exp07/exp07_rgn_great_divide/gnomish_pirates_spirits',1096), -(15142,15142,'staticobjects/_exp07/exp07_rgn_great_divide/gnoll_dreamcatcher',1096), -(15143,15143,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/cloak_heritage_erudite',1096), -(15144,15144,'ec/pc/vampire/vampire_female_evil_illusion',1096), -(15145,15145,'staticobjects/_exp07/exp07_rgn_great_divide/goahmari_pillow',1096), -(15146,15146,'_exp07/characters/tool_users/tserrina/tserrina_test',1096), -(15147,15147,'ec/pc/vampire/vampire_male_evil_illusion',1096), -(15148,15148,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/legs',1096), -(15149,15149,'accessories/wearable_items/cloak/exp07/cloak_shadows',1096), -(15150,15150,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/snapon/erudite_forearm_left',1096), -(15151,15151,'accessories/wearable_items/cloak/exp07/cloak_cara',1096), -(15152,15152,'_exp07/characters/monsters/vyskudra/vyskudra',1096), -(15153,15153,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/snapon/foot_right',1096), -(15154,15154,'accessories/wearable_items/cloak/exp07/cloak_gothic2_scalloped',1096), -(15155,15155,'accessories/wearable_items/cloak/exp07/cloak_gothic3_inset',1096), -(15156,15156,'accessories/wearable_items/cloak/exp07/cloak_cara_scalloped',1096), -(15157,15157,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/snapon/foot_left',1096), -(15158,15158,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/head',1096), -(15159,15159,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/chest',1096), -(15160,15160,'accessories/wearable_items/cloak/exp07/cloak_gothic1_diamond',1096), -(15161,15161,'accessories/wearable_items/cloak/exp07/cloak_tserrina_diamond',1096), -(15162,15162,'accessories/wearable_items/cloak/exp07/cloak_tserrina',1096), -(15163,15163,'_exp07/characters/tool_users/othmir/othmir_female_papoose_01',1096), -(15164,15164,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/snapon/erudite_forearm_right',1096), -(15165,15165,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/shoulders',1096), -(15166,15166,'accessories/wearable_items/cloak/exp07/cloak_gothic1',1096), -(15167,15167,'staticobjects/books/halas_coldain_books_04',1096), -(15168,15168,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/snapon/erudite_cloak_attachment',1096), -(15169,15169,'accessories/wearable_items/cloak/exp07/cloak_shadows_scalloped',1096), -(15170,15170,'accessories/wearable_items/_exp07/station_cash_armor/erudite_gi/feet',1096), -(15171,15171,'_exp05/monsters/ice_dervish_no_shake',1096), -(15172,15172,'staticobjects/_exp07/exp07_rgn_great_divide/dpo_coldain_prayer_shawl_tradeskill',1096), -(15173,15173,'staticobjects/chests/chest_animated_ornate_silvergold_flipped',1096), -(15174,15174,'_exp06/characters/monsters/frostfell_cube/frostfell_cube_bones',1096), -(15175,15175,'_exp07/zones/exp07_dun_kael_drakkel/kd_alter',1096), -(15176,15176,'_exp07/zones/exp07_dun_kael_drakkel/kd_chair',1096), -(15177,15177,'_exp07/zones/exp07_dun_kael_drakkel/kd_chair_grand',1096), -(15178,15178,'_exp07/zones/exp07_dun_kael_drakkel/kd_chest',1096), -(15179,15179,'_exp07/zones/exp07_dun_kael_drakkel/kd_crate',1096), -(15180,15180,'_exp07/zones/exp07_dun_kael_drakkel/kd_crate_broken',1096), -(15181,15181,'_exp07/zones/exp07_dun_kael_drakkel/kd_dragonbone',1096), -(15182,15182,'_exp07/zones/exp07_dun_kael_drakkel/kd_dragonbone_ancient',1096), -(15183,15183,'_exp07/zones/exp07_dun_kael_drakkel/kd_forge_orc',1096), -(15184,15184,'_exp07/zones/exp07_dun_kael_drakkel/kd_mug',1096), -(15185,15185,'_exp07/zones/exp07_dun_kael_drakkel/kd_podium',1096), -(15186,15186,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_platform',1096), -(15187,15187,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_zek_crch',1096), -(15188,15188,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_zek_half',1096), -(15189,15189,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_zek_stand',1096), -(15190,15190,'_exp07/zones/exp07_dun_kael_drakkel/kd_table_lrg',1096), -(15191,15191,'_exp07/zones/exp07_dun_kael_drakkel/kd_table_sml',1096), -(15192,15192,'_exp07/zones/exp07_dun_kael_drakkel/kd_teleporter',1096), -(15193,15193,'_exp07/zones/exp07_dun_kael_drakkel/kd_throne',1096), -(15194,15194,'_exp07/zones/exp07_dun_kael_drakkel/kd_weapons_rack',1096), -(15195,15195,'_exp07/zones/exp07_dun_kael_drakkel/kd_bookcase',1096), -(15196,15196,'_exp07/zones/exp07_dun_kael_drakkel/kd_armor_plate',1096), -(15197,15197,'_exp07/zones/exp07_dun_kael_drakkel/kd_ballista',1096), -(15198,15198,'_exp07/zones/exp07_dun_kael_drakkel/kd_barrel',1096), -(15199,15199,'_exp07/zones/exp07_dun_kael_drakkel/kd_bucket',1096), -(15200,15200,'_exp07/zones/exp07_dun_kael_drakkel/kd_sword',1096), -(15201,15201,'_exp07/zones/exp07_dun_kael_drakkel/kd_sword2',1096), -(15202,15202,'_exp07/zones/exp07_dun_kael_drakkel/kd_polearm',1096), -(15203,15203,'_exp07/zones/exp07_dun_kael_drakkel/kd_forge_giant',1096), -(15204,15204,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_tormax_pose',1096), -(15205,15205,'_exp07/zones/exp07_dun_kael_drakkel/kd_mapboard',1096), -(15206,15206,'_exp07/zones/exp07_dun_kael_drakkel/kd_keg',1096), -(15207,15207,'_exp07/zones/exp07_dun_kael_drakkel/kd_fountain_sml',1096), -(15208,15208,'_exp07/zones/exp07_dun_kael_drakkel/kd_fountain_lrg',1096), -(15209,15209,'_exp07/zones/exp07_dun_kael_drakkel/kd_bed_lrg',1096), -(15210,15210,'_exp07/zones/exp07_dun_kael_drakkel/kd_bed_sml',1096), -(15211,15211,'_exp07/zones/exp07_dun_kael_drakkel/kd_bar_table',1096), -(15212,15212,'_exp07/zones/exp07_dun_kael_drakkel/kd_statue_tormax_point',1096), -(15213,15213,'staticobjects/_exp07/exp07_rgn_eastern_wastes/oth_spear_grave_marker',1096), -(15214,15214,'accessories/wearable_items/_exp07/kraytok/gi/legs',1096), -(15215,15215,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_shortsword_hoarfrost_frosty',1096), -(15216,15216,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_hoarfrost',1096), -(15217,15217,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/feet',1096), -(15218,15218,'accessories/wearable_items/_exp07/asian_goth_armor/gi/shoulders',1096), -(15219,15219,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_club_hoarfrost',1096), -(15220,15220,'accessories/hair/hair033',1096), -(15221,15221,'accessories/wearable_items/_exp07/asian_goth_armor/gi/chest',1096), -(15222,15222,'_exp07/characters/tool_users/gnoll_snow/gnoll_snow',1096), -(15223,15223,'accessories/wearable_items/_exp07/kraytok/gi/feet',1096), -(15224,15224,'_exp07/characters/monsters/kd_barrel/kd_barrel',1096), -(15225,15225,'staticobjects/_exp07/exp07_rgn_great_divide/coldain_scroll_paper',1096), -(15226,15226,'accessories/wearable_items/_exp07/kraytok/gi/chest',1096), -(15227,15227,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/head',1096), -(15228,15228,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/chest',1096), -(15229,15229,'accessories/hair/hair032',1096), -(15230,15230,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_hoarfrost',1096), -(15231,15231,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_hoarfrost_frosty',1096), -(15232,15232,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_club_hoarfrost_frosty',1096), -(15233,15233,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_shortsword_hoarfrost',1096), -(15234,15234,'accessories/wearable_items/_exp07/asian_goth_armor/gi/legs',1096), -(15235,15235,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_fist_hoarfrost_frosty',1096), -(15236,15236,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_sword_hoarfrost_frosty',1096), -(15237,15237,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_hoarfrost',1096), -(15238,15238,'_exp07/characters/tool_users/drolvarg_snow_warrior/drolvarg_snow_warrior',1096), -(15239,15239,'accessories/wearable_items/_exp07/kraytok/gi/shoulders',1096), -(15240,15240,'accessories/wearable_items/_exp07/royal_velium_armor/royal_velium_armor_robe/hands',1096), -(15241,15241,'accessories/wearable_items/_exp07/asian_goth_armor/gi/feet',1096), -(15242,15242,'accessories/hair/hair035',1096), -(15243,15243,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1h_fist_hoarfrost',1096), -(15244,15244,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_hoarfrost_frosty',1096), -(15245,15245,'accessories/hair/hair034',1096), -(15246,15246,'_exp07/zones/exp07_rgn_eastern_wastes/teleport_vision_eastern_wastes',1096), -(15247,15247,'_exp07/zones/exp07_rgn_great_divide/teleport_vision_great_divide',1096), -(15248,15248,'_exp07/zones/exp07_rgn_great_divide/thurgadin_harbor_wall_elevator',1096), -(15249,15249,'staticobjects/_exp07/upside_down_invis_cube',1096), -(15250,15250,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_jar_standalone',1096), -(15251,15251,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_fish_skeleton',1096), -(15252,15252,'staticobjects/_exp07/exp07_rgn_great_divide/gnoll_wood_planks01',1096), -(15253,15253,'staticobjects/_exp07/exp07_rgn_great_divide/gnoll_wood_planks02',1096), -(15254,15254,'staticobjects/_exp07/exp07_rgn_great_divide/thurgadin_crate_single_01',1096), -(15255,15255,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_hanging_fish01',1096), -(15256,15256,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_hanging_jar02_pfx',1096), -(15257,15257,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_lightsource_hanging01_nosnow_pfx',1096), -(15258,15258,'staticobjects/_exp07/exp07_rgn_great_divide/othmir_standing_net01_nosnow',1096), -(15259,15259,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_objects_scoreboard01',1096), -(15260,15260,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_objects_stands_01',1096), -(15261,15261,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_speed01',1096), -(15262,15262,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_time03_pfx',1096), -(15263,15263,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_twister01',1096), -(15264,15264,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_twister_blaster',1096), -(15265,15265,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_greensfx',1096), -(15266,15266,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_nosfx',1096), -(15267,15267,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_yellowsfx',1096), -(15268,15268,'_exp07/objects/kael/kael_lever_switch',1096), -(15269,15269,'_exp07/objects/kael/kael_lever_switch_base',1096), -(15270,15270,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_finishline',1096), -(15271,15271,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_finishline_greengatesfx',1096), -(15272,15272,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_finishline_red',1096), -(15273,15273,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_ring_greengatesfx',1096), -(15274,15274,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_timer',1096), -(15275,15275,'staticobjects/liveevent/tinkerfest/dpo_gnomerace_powerup_timer2',1096), -(15276,15276,'staticobjects/liveevent/frostfell/dpo_bauble_streamers_purple_ceiling',1096), -(15277,15277,'staticobjects/liveevent/frostfell/dpo_bauble_bell_garland_blue_ceiling',1096), -(15278,15278,'staticobjects/liveevent/frostfell/dpo_bauble_bell_garland_gold_ceiling',1096), -(15279,15279,'staticobjects/liveevent/frostfell/dpo_bauble_bell_garland_green_ceiling',1096), -(15280,15280,'staticobjects/liveevent/frostfell/dpo_bauble_bell_garland_red_ceiling',1096), -(15281,15281,'staticobjects/liveevent/frostfell/dpo_bauble_streamers_blue_ceiling',1096), -(15282,15282,'staticobjects/liveevent/frostfell/dpo_bauble_streamers_gold_ceiling',1096), -(15283,15283,'staticobjects/liveevent/frostfell/dpo_bauble_streamers_green_ceiling',1096), -(15284,15284,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-shadowiron_lower_right',1096), -(15285,15285,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-blueiron_lower_left',1096), -(15286,15286,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-blueiron_lower_right',1096), -(15287,15287,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-goldivory_lower_left',1096), -(15288,15288,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-goldivory_lower_right',1096), -(15289,15289,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-greenbronze_lower_left',1096), -(15290,15290,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-greenbronze_lower_right',1096), -(15291,15291,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-redbronze_lower_left',1096), -(15292,15292,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-redbronze_lower_right',1096), -(15293,15293,'accessories/wearable_items/_exp08/dragon_armor/snapons/dragon_armor_pauldrons_skull-shadowiron_lower_left',1096), -(15294,15294,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_red-gold_fx',1096), -(15295,15295,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_bloodstone_fx',1096), -(15296,15296,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_blue-bluemetal_fx',1096), -(15297,15297,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_blue-gold_fx',1096), -(15298,15298,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_obsidian_fx',1096), -(15299,15299,'accessories/wieldable_items/weapons/exp08/1h_crush/club_tallonite_red-bluemetal_fx',1096), -(15300,15300,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_red_fx',1096), -(15301,15301,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_obsidian_fx',1096), -(15302,15302,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_blue_bluemetal_fx',1096), -(15303,15303,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_blue_fx',1096), -(15304,15304,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_tallonite_red_bluemetal_fx',1096), -(15305,15305,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_red_fx',1096), -(15306,15306,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_obsidian_fx',1096), -(15307,15307,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_blue_bluemetal_fx',1096), -(15308,15308,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_blue_fx',1096), -(15309,15309,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_tallonite_red_bluemetal_fx',1096), -(15310,15310,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_red-iron_fx',1096), -(15311,15311,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_blue-gold_fx',1096), -(15312,15312,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_blue-iron_fx',1096), -(15313,15313,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_gem_obsidian_fx',1096), -(15314,15314,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_tallonite_red-gold_fx',1096), -(15315,15315,'creatures/monsters/gnomerace_twister_blaster_snow',1096), -(15316,15316,'creatures/monsters/gnomerace_twister_blaster_bixie',1096), -(15317,15317,'creatures/monsters/gnomerace_twister_blaster_insects',1096), -(15318,15318,'creatures/monsters/gnomerace_twister_blaster_skulls',1096), -(15319,15319,'staticobjects/_exp07/drunder/dru_weapon_rack01',1096), -(15320,15320,'staticobjects/_exp07/drunder/dpo_rygorr_painting01',1096), -(15321,15321,'staticobjects/_exp07/drunder/dpo_rygorr_painting02',1096), -(15322,15322,'staticobjects/_exp07/drunder/dpo_rygorr_painting03',1096), -(15323,15323,'staticobjects/_exp07/drunder/dpo_wicker_demijohn',1096), -(15324,15324,'staticobjects/_exp07/drunder/dru_banner_rallos01_dpo',1096), -(15325,15325,'staticobjects/_exp07/drunder/dru_banner_sullon01_dpo',1096), -(15326,15326,'staticobjects/_exp07/drunder/dru_banner_tallon01_dpo',1096), -(15327,15327,'staticobjects/_exp07/drunder/dru_banner_vallon01_dpo',1096), -(15328,15328,'staticobjects/_exp07/drunder/dru_divider',1096), -(15329,15329,'staticobjects/_exp07/drunder/dru_divider_tall',1096), -(15330,15330,'staticobjects/_exp07/drunder/dru_drunder_sullon_elemental_earth_01',1096), -(15331,15331,'staticobjects/_exp07/drunder/dru_drunder_sullon_elemental_fire_01',1096), -(15332,15332,'staticobjects/_exp07/drunder/dru_drunder_sullon_elemental_ice_01',1096), -(15333,15333,'staticobjects/_exp07/drunder/dru_drunder_sullon_sconce01_on',1096), -(15334,15334,'staticobjects/_exp07/drunder/dru_tallon_statue',1096), -(15335,15335,'staticobjects/_exp07/drunder/dru_vallon_statue',1096), -(15336,15336,'staticobjects/panels/dpo_panel_odus_hole_tile',1096), -(15337,15337,'staticobjects/panels/dpo_panel_tilled_soil',1096), -(15338,15338,'staticobjects/panels/dpo_panel_spaced_cobbles_antonica',1096), -(15339,15339,'staticobjects/panels/dpo_panel_odus_shingles',1096), -(15340,15340,'staticobjects/panels/dpo_panel_odus_bluemarble',1096), -(15341,15341,'staticobjects/panels/dpo_panel_large_cobbles_antonica',1096), -(15342,15342,'staticobjects/panels/dpo_panel_lakebed_mud',1096), -(15343,15343,'staticobjects/panels/dpo_panel_deadleaf',1096), -(15344,15344,'staticobjects/_exp07/drunder/dru_drunder_sullon_axefloat',1096), -(15345,15345,'staticobjects/_exp07/drunder/dpo_obsidian_war_scimitar',1096), -(15346,15346,'staticobjects/_exp07/drunder/dpo_obsidian_warbow',1096), -(15347,15347,'staticobjects/_exp07/drunder/dpo_panel_drunder_vallon',1096), -(15348,15348,'staticobjects/_exp07/drunder/dpo_panel_drunder_bluetile',1096), -(15349,15349,'staticobjects/_exp07/drunder/dpo_panel_drunder_dark_paving',1096), -(15350,15350,'staticobjects/_exp07/drunder/dpo_panel_drunder_goldtile',1096), -(15351,15351,'staticobjects/_exp07/drunder/dpo_panel_drunder_grey_paving',1096), -(15352,15352,'staticobjects/_exp07/drunder/dpo_panel_drunder_platinumtile',1096), -(15353,15353,'staticobjects/_exp07/drunder/dpo_panel_drunder_purple_paving',1096), -(15354,15354,'staticobjects/_exp07/drunder/dpo_panel_drunder_purpletile',1096), -(15355,15355,'staticobjects/_exp07/drunder/dpo_panel_drunder_sullon',1096), -(15356,15356,'staticobjects/_exp07/drunder/dpo_panel_drunder_tallon',1096), -(15357,15357,'staticobjects/_exp07/drunder/dpo_sullon_pedestal_axe',1096), -(15358,15358,'staticobjects/_exp07/drunder/dpo_tallon_pedestal_w_bow',1096), -(15359,15359,'staticobjects/_exp07/drunder/dpo_vallon_pedestal_w_scimitar',1096), -(15360,15360,'staticobjects/weapons/dpo_1h_crush_fish_club',1096), -(15361,15361,'staticobjects/weapons/dpo_broom',1096), -(15362,15362,'staticobjects/weapons/dpo_exp05_2hc_zombie_shovel',1096), -(15363,15363,'staticobjects/weapons/dpo_military_pick001_rusty_rotated',1096), -(15364,15364,'creatures/mounts/griffin_mount/griffin_fire_epic',1144), -(15365,15365,'accessories/wearable_items/_exp08/ratonga_heritage_armor/skirt',1144), -(15366,15366,'accessories/wearable_items/_exp08/ratonga_heritage_armor/chest',1144), -(15367,15367,'accessories/wearable_items/_exp08/ratonga_heritage_armor/feet',1144), -(15368,15368,'accessories/wearable_items/_exp08/ratonga_heritage_armor/hands',1144), -(15369,15369,'accessories/wearable_items/_exp08/ratonga_heritage_armor/head_ratonga_heritage',1144), -(15370,15370,'accessories/wearable_items/_exp08/ratonga_heritage_armor/legs',1144), -(15371,15371,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_boot_cuff_left',1144), -(15372,15372,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_boot_cuff_right',1144), -(15373,15373,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_boot_strap_left',1144), -(15374,15374,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_boot_strap_right',1144), -(15375,15375,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_shoulder_pad_left',1144), -(15376,15376,'accessories/wearable_items/_exp08/ratonga_heritage_armor/ratonga_shoulder_pad_right',1144), -(15377,15377,'accessories/wearable_items/_exp08/ratonga_heritage_armor/shoulders',1144), -(15378,15378,'accessories/wearable_items/cloak/exp08/cloak_ratonga_heritage',1144), -(15379,15379,'creatures/mounts/warhog_mount/warhog_drunder_mount',1144), -(15380,15380,'staticobjects/portals/gnome_race_teleporter',1144), -(15381,15381,'creatures/mounts/terrorbird_mount/terrorbird_mount_base',1144), -(15382,15382,'creatures/tu/mysticdoll_alternate_zombie',1144), -(15383,15383,'creatures/tu/mysticdoll_alternate',1144), -(15384,15384,'staticobjects/housing_portal_objects/vision_home_kael01',1144), -(15385,15385,'staticobjects/housing_portal_objects/vision_home_thurgadin01',1144), -(15386,15386,'staticobjects/housing_portal_objects/vision_home_felwithe01',1144), -(15387,15387,'_exp07/objects/dpo_vel_dragon_ring',1144), -(15388,15388,'_exp07/objects/dpo_vel_wizard_spire',1144), -(15389,15389,'creatures/tu/mysticdoll_alternate_voodoo',1144), -(15390,15390,'_exp07/objects/kael/signal_horn',1144), -(15391,15391,'_exp07/objects/kael/kael_weapon_rack',1144), -(15392,15392,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_stormshield',1144), -(15393,15393,'accessories/wieldable_items/shields/exp08/exp08_shield_round_lifebound',1144), -(15394,15394,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_soulscorned',1144), -(15395,15395,'creatures/pets/building_block_kerra',1144), -(15396,15396,'creatures/mounts/raptor_mount/raptor_mount_base',1144), -(15397,15397,'creatures/mounts/backpack_mount/gnomish_jetpack',1144), -(15398,15398,'accessories/npc_wearables/sifaye_accessories/sifaye_wing',1144), -(15399,15399,'accessories/npc_wearables/sifaye_accessories/head_antennae1',1144), -(15400,15400,'accessories/npc_wearables/sifaye_accessories/head_antennae2',1144), -(15401,15401,'accessories/npc_wearables/sifaye_accessories/head_sifaye_crown_antennae',1144), -(15402,15402,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_silver_right',1144), -(15403,15403,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_silver_both',1144), -(15404,15404,'accessories/wearable_items/snapons/armbands/shoulders_armband_wyrm_wrap_silver_left',1144), -(15405,15405,'staticobjects/soe_wallet/ratonga_plate_cheese01',1144), -(15406,15406,'accessories/wearable_items/_exp08/tallonite_armor/chain/skirt',1144), -(15407,15407,'accessories/wearable_items/_exp08/tallonite_armor/chain/chest',1144), -(15408,15408,'accessories/wearable_items/_exp08/tallonite_armor/chain/feet',1144), -(15409,15409,'accessories/wearable_items/_exp08/tallonite_armor/chain/forearms',1144), -(15410,15410,'accessories/wearable_items/_exp08/tallonite_armor/chain/hands',1144), -(15411,15411,'accessories/wearable_items/_exp08/tallonite_armor/chain/head',1144), -(15412,15412,'accessories/wearable_items/_exp08/tallonite_armor/chain/legs',1144), -(15413,15413,'accessories/wearable_items/_exp08/tallonite_armor/chain/legs_noskirt',1144), -(15414,15414,'accessories/wearable_items/_exp08/tallonite_armor/chain/shoulders',1144), -(15415,15415,'accessories/wearable_items/_exp08/tallonite_armor/chain/shoulders_talonite_pauldron',1144), -(15416,15416,'accessories/wearable_items/_exp08/tallonite_armor/gi/skirt',1144), -(15417,15417,'accessories/wearable_items/_exp08/tallonite_armor/gi/arms',1144), -(15418,15418,'accessories/wearable_items/_exp08/tallonite_armor/gi/chest',1144), -(15419,15419,'accessories/wearable_items/_exp08/tallonite_armor/gi/legs',1144), -(15420,15420,'accessories/wearable_items/_exp08/tallonite_armor/leather/skirt',1144), -(15421,15421,'accessories/wearable_items/_exp08/tallonite_armor/leather/chest',1144), -(15422,15422,'accessories/wearable_items/_exp08/tallonite_armor/leather/feet',1144), -(15423,15423,'accessories/wearable_items/_exp08/tallonite_armor/leather/forearms',1144), -(15424,15424,'accessories/wearable_items/_exp08/tallonite_armor/leather/hands',1144), -(15425,15425,'accessories/wearable_items/_exp08/tallonite_armor/leather/head',1144), -(15426,15426,'accessories/wearable_items/_exp08/tallonite_armor/leather/legs',1144), -(15427,15427,'accessories/wearable_items/_exp08/tallonite_armor/leather/legs_noskirt',1144), -(15428,15428,'accessories/wearable_items/_exp08/tallonite_armor/leather/shoulders',1144), -(15429,15429,'accessories/wearable_items/_exp08/tallonite_armor/robe/skirt',1144), -(15430,15430,'accessories/wearable_items/_exp08/tallonite_armor/robe/chest',1144), -(15431,15431,'accessories/wearable_items/_exp08/tallonite_armor/robe/feet',1144), -(15432,15432,'accessories/wearable_items/_exp08/tallonite_armor/robe/hands',1144), -(15433,15433,'accessories/wearable_items/_exp08/tallonite_armor/robe/head',1144), -(15434,15434,'accessories/wearable_items/_exp08/tallonite_armor/robe/pants',1144), -(15435,15435,'accessories/wearable_items/_exp08/tallonite_armor/snapons/vanguard_pauldrons_upper_right',1144), -(15436,15436,'accessories/wearable_items/_exp08/tallonite_armor/snapons/chain_pauldrons_upper_left',1144), -(15437,15437,'accessories/wearable_items/_exp08/tallonite_armor/snapons/chain_pauldrons_upper_right',1144), -(15438,15438,'accessories/wearable_items/_exp08/tallonite_armor/snapons/gi_pauldrons_upper_left',1144), -(15439,15439,'accessories/wearable_items/_exp08/tallonite_armor/snapons/gi_pauldrons_upper_right',1144), -(15440,15440,'accessories/wearable_items/_exp08/tallonite_armor/snapons/head_talonite_snapon',1144), -(15441,15441,'accessories/wearable_items/_exp08/tallonite_armor/snapons/vanguard_pauldrons_upper_left',1144), -(15442,15442,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/skirt',1144), -(15443,15443,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/chest',1144), -(15444,15444,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/feet',1144), -(15445,15445,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/forearms',1144), -(15446,15446,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/hands',1144), -(15447,15447,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/head',1144), -(15448,15448,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/legs',1144), -(15449,15449,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/legs_noskirt',1144), -(15450,15450,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/right',1144), -(15451,15451,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/shoulders',1144), -(15452,15452,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/shoulders_nopauldrons',1144), -(15453,15453,'accessories/wearable_items/_exp08/tallonite_armor/vanguard/shoulders_talonite_pauldron',1144), -(15454,15454,'staticobjects/liveevent/frostfell/dpo_gumdrop_green01',1144), -(15455,15455,'staticobjects/liveevent/frostfell/dpo_gumdrop_red01',1144), -(15456,15456,'staticobjects/liveevent/frostfell/dpo_gumdrop_stack01',1144), -(15457,15457,'staticobjects/liveevent/frostfell/dpo_gumdrop_white01',1144), -(15458,15458,'staticobjects/liveevent/frostfell/dpo_vel_snowpile01',1144), -(15459,15459,'staticobjects/liveevent/frostfell/dpo_holiday_gravy_boat01',1144), -(15460,15460,'staticobjects/liveevent/frostfell/dpo_holiday_cup01',1144), -(15461,15461,'staticobjects/liveevent/frostfell/dpo_holiday_cup02',1144), -(15462,15462,'staticobjects/liveevent/frostfell/dpo_holiday_cake01',1144), -(15463,15463,'staticobjects/liveevent/frostfell/dpo_holiday_soup_tureen01',1144), -(15464,15464,'staticobjects/liveevent/frostfell/dpo_holiday_bowl_beans01',1144), -(15465,15465,'staticobjects/liveevent/frostfell/dpo_holiday_bowl_chilis01',1144), -(15466,15466,'staticobjects/liveevent/frostfell/dpo_gnome_sleigh_01',1144), -(15467,15467,'accessories/wearable_items/_exp08/sifaye_armor/robe/skirt',1144), -(15468,15468,'accessories/wearable_items/_exp08/sifaye_armor/robe/chest_fullrobe',1144), -(15469,15469,'accessories/wearable_items/_exp08/sifaye_armor/robe/chest_noskirt',1144), -(15470,15470,'accessories/wearable_items/_exp08/sifaye_armor/robe/feet',1144), -(15471,15471,'accessories/wearable_items/_exp08/sifaye_armor/robe/hands',1144), -(15472,15472,'accessories/wearable_items/_exp08/sifaye_armor/robe/head_collar',1144), -(15473,15473,'accessories/wearable_items/_exp08/sifaye_armor/robe/head_hood',1144), -(15474,15474,'accessories/wearable_items/_exp08/sifaye_armor/robe/pants',1144), -(15475,15475,'accessories/wearable_items/profesion_hats/proffiddlewiz_cap_gearworked/head_dark',1144), -(15476,15476,'accessories/wearable_items/profesion_hats/proffiddlewiz_cap_gearworked/head',1144), -(15477,15477,'staticobjects/battlegrounds/dpo_bg_lobby_zoner',1144), -(15478,15478,'staticobjects/battlegrounds/dpo_bg_lobby_armor_stand01',1144), -(15479,15479,'staticobjects/battlegrounds/dpo_bg_lobby_counter01',1144), -(15480,15480,'staticobjects/battlegrounds/dpo_bg_lobby_crate01_closed',1144), -(15481,15481,'staticobjects/battlegrounds/dpo_bg_lobby_crate02_closed',1144), -(15482,15482,'staticobjects/battlegrounds/dpo_bg_lobby_rug01',1144), -(15483,15483,'staticobjects/battlegrounds/dpo_bg_lobby_scales_empty01',1144), -(15484,15484,'staticobjects/battlegrounds/dpo_bg_lobby_scales_tipped01',1144), -(15485,15485,'staticobjects/battlegrounds/dpo_bg_lobby_weaponrack01',1144), -(15486,15486,'staticobjects/battlegrounds/dpo_bg_lobby_weaponrack_weapons01',1144), -(15487,15487,'creatures/mounts/frostfell_snow_cloud',1144), -(15488,15488,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate01',1144), -(15489,15489,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate01_swinging',1144), -(15490,15490,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate01_yellow',1144), -(15491,15491,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate01_yellow_swinging',1144), -(15492,15492,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate02',1144), -(15493,15493,'staticobjects/soe_wallet/djn_lightsource_balloon_ornate02_swinging',1144), -(15494,15494,'staticobjects/archery/dpo_archery_target',1144), -(15495,15495,'_exp08/characters/tool_users/war_generals/war_general_male_light',1144), -(15496,15496,'_exp08/characters/tool_users/war_generals/war_general_female',1144), -(15497,15497,'_exp08/characters/tool_users/war_generals/war_general_male_black',1144), -(15498,15498,'_exp08/characters/tool_users/war_generals/war_general_male_boss',1144), -(15499,15499,'_exp08/characters/tool_users/war_generals/war_general_male_heavy01',1144), -(15500,15500,'accessories/wearable_items/cloak/exp08/cloak_3straps_red',1144), -(15501,15501,'accessories/wearable_items/cloak/exp08/cloak_3straps',1144), -(15502,15502,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/skirt',1144), -(15503,15503,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/chest',1144), -(15504,15504,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/feet',1144), -(15505,15505,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/forearms',1144), -(15506,15506,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/hands',1144), -(15507,15507,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/head',1144), -(15508,15508,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/legs',1144), -(15509,15509,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/legs_noskirt',1144), -(15510,15510,'accessories/wearable_items/_exp08/unkown_faction_armor/chain/shoulders',1144), -(15511,15511,'accessories/wearable_items/_exp08/tallonite_armor/snapons/leather_pauldrons_upper_left',1144), -(15512,15512,'accessories/wearable_items/_exp08/tallonite_armor/snapons/leather_pauldrons_upper_right',1144), -(15513,15513,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/skirt',1144), -(15514,15514,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/chest',1144), -(15515,15515,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/feet',1144), -(15516,15516,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/forearms',1144), -(15517,15517,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/hands',1144), -(15518,15518,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/head',1144), -(15519,15519,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/legs',1144), -(15520,15520,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/legs_noskirt',1144), -(15521,15521,'accessories/wearable_items/_exp08/unkown_faction_armor/leather/shoulders',1144), -(15522,15522,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/chest',1144), -(15523,15523,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/feet',1144), -(15524,15524,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/hands',1144), -(15525,15525,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/head',1144), -(15526,15526,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/pants',1144), -(15527,15527,'accessories/wearable_items/_exp08/unkown_faction_armor/robe/skirt',1144), -(15528,15528,'staticobjects/guildhall/trophies/floor_vallon_zek_fx',1144), -(15529,15529,'staticobjects/guildhall/trophies/floor_sullon_zek',1144), -(15530,15530,'staticobjects/guildhall/trophies/floor_sullon_zek_fx',1144), -(15531,15531,'staticobjects/guildhall/trophies/floor_tallon_zek',1144), -(15532,15532,'staticobjects/guildhall/trophies/floor_tallon_zek_fx',1144), -(15533,15533,'staticobjects/guildhall/trophies/floor_vallon_zek',1144), -(15534,15534,'_exp07/objects/vel_coldain_frozen_in_ice',1144), -(15535,15535,'creatures/mounts/flying_disc/flying_disc_clockwork_purple',1144), -(15536,15536,'creatures/mounts/flying_disc/flying_disc_clockwork_gold',1144), -(15537,15537,'creatures/mounts/flying_disc/flying_disc_clockwork_green',1144), -(15538,15538,'creatures/mounts/class_hover_pads/hover_pad_assassin',1144), -(15539,15539,'creatures/mounts/class_hover_pads/hover_pad_berserker',1144), -(15540,15540,'creatures/mounts/class_hover_pads/hover_pad_brigand',1144), -(15541,15541,'creatures/mounts/class_hover_pads/hover_pad_bruiser',1144), -(15542,15542,'creatures/mounts/class_hover_pads/hover_pad_coercer',1144), -(15543,15543,'creatures/mounts/class_hover_pads/hover_pad_conjuror',1144), -(15544,15544,'creatures/mounts/class_hover_pads/hover_pad_defiler',1144), -(15545,15545,'creatures/mounts/class_hover_pads/hover_pad_dirge',1144), -(15546,15546,'creatures/mounts/class_hover_pads/hover_pad_fury',1144), -(15547,15547,'creatures/mounts/class_hover_pads/hover_pad_guardian',1144), -(15548,15548,'creatures/mounts/class_hover_pads/hover_pad_illusionist',1144), -(15549,15549,'creatures/mounts/class_hover_pads/hover_pad_inquisitor',1144), -(15550,15550,'creatures/mounts/class_hover_pads/hover_pad_monk',1144), -(15551,15551,'creatures/mounts/class_hover_pads/hover_pad_mystic',1144), -(15552,15552,'creatures/mounts/class_hover_pads/hover_pad_necromancer',1144), -(15553,15553,'creatures/mounts/class_hover_pads/hover_pad_paladin',1144), -(15554,15554,'creatures/mounts/class_hover_pads/hover_pad_ranger',1144), -(15555,15555,'creatures/mounts/class_hover_pads/hover_pad_shadowknight',1144), -(15556,15556,'creatures/mounts/class_hover_pads/hover_pad_swashbuckler',1144), -(15557,15557,'creatures/mounts/class_hover_pads/hover_pad_templar',1144), -(15558,15558,'creatures/mounts/class_hover_pads/hover_pad_troubador',1144), -(15559,15559,'creatures/mounts/class_hover_pads/hover_pad_warden',1144), -(15560,15560,'creatures/mounts/class_hover_pads/hover_pad_warlock',1144), -(15561,15561,'creatures/mounts/raptor_mount/evil_raptor_mount',1144), -(15562,15562,'accessories/wieldable_items/weapons/misc/sparkler_stick',1144), -(15563,15563,'creatures/mounts/komodo_mount/komodo_mount_base',1144), -(15564,15564,'creatures/mounts/komodo_mount/komodo_mount_black',1144), -(15565,15565,'creatures/mounts/komodo_mount/komodo_mount_brown',1144), -(15566,15566,'creatures/mounts/komodo_mount/komodo_mount_iceblue',1144), -(15567,15567,'staticobjects/liveevent/dpo_fireworks_vase06',1144), -(15568,15568,'staticobjects/liveevent/dpo_fireworks_vase01',1144), -(15569,15569,'staticobjects/liveevent/dpo_fireworks_vase02',1144), -(15570,15570,'staticobjects/liveevent/dpo_fireworks_vase03',1144), -(15571,15571,'staticobjects/liveevent/dpo_fireworks_vase04',1144), -(15572,15572,'staticobjects/liveevent/dpo_fireworks_vase05',1144), -(15573,15573,'accessories/wearable_items/snapons/armbands/shoulders_armband_fur_right',1144), -(15574,15574,'accessories/wearable_items/snapons/armbands/shoulders_armband_fur_left',1144), -(15575,15575,'accessories/wearable_items/_exp08/short_skirts/basic/snap_ons/short_skirt',1144), -(15576,15576,'accessories/wearable_items/_exp08/short_skirts/basic/snap_ons/belt',1144), -(15577,15577,'accessories/wearable_items/_exp08/short_skirts/basic/shoulders_armband_fur',1144), -(15578,15578,'accessories/wearable_items/_exp08/short_skirts/basic/chest',1144), -(15579,15579,'accessories/wearable_items/_exp08/short_skirts/basic/feet',1144), -(15580,15580,'accessories/wearable_items/_exp08/short_skirts/basic/hands',1144), -(15581,15581,'accessories/wearable_items/_exp08/short_skirts/basic/head',1144), -(15582,15582,'accessories/wearable_items/_exp08/short_skirts/basic/legs_short_skirt_base',1144), -(15583,15583,'accessories/wearable_items/_exp08/short_skirts/basic/shoulders',1144), -(15584,15584,'creatures/mounts/wolf_mount/wolf_mount_storm',1144), -(15585,15585,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/snap_ons/short_skirt',1144), -(15586,15586,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/snap_ons/belt',1144), -(15587,15587,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/shoulders_armband_fur',1144), -(15588,15588,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/chest',1144), -(15589,15589,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/feet',1144), -(15590,15590,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/hands',1144), -(15591,15591,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/head',1144), -(15592,15592,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/legs_short_skirt_base',1144), -(15593,15593,'accessories/wearable_items/_exp08/short_skirts/short_skirt_02/shoulders',1144), -(15594,15594,'creatures/mounts/raptor_mount/tradeskill_raptor_mount',1144), -(15595,15595,'creatures/mounts/flying_disc/elemental_flying_disc_water',1144), -(15596,15596,'creatures/mounts/flying_disc/elemental_flying_disc_air',1144), -(15597,15597,'creatures/mounts/flying_disc/elemental_flying_disc_earth',1144), -(15598,15598,'creatures/mounts/flying_disc/elemental_flying_disc_fire',1144), -(15599,15599,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_shin_right',1144), -(15600,15600,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_forearm_left',1144), -(15601,15601,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_forearm_right',1144), -(15602,15602,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldron_left',1144), -(15603,15603,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldron_right',1144), -(15604,15604,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_lower_left',1144), -(15605,15605,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_lower_right',1144), -(15606,15606,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_shin_left',1144), -(15607,15607,'accessories/wearable_items/_exp08/combine_armor/vanguard/skirt_robe',1144), -(15608,15608,'accessories/wearable_items/_exp08/combine_armor/vanguard/chest',1144), -(15609,15609,'accessories/wearable_items/_exp08/combine_armor/vanguard/feet',1144), -(15610,15610,'accessories/wearable_items/_exp08/combine_armor/vanguard/forearms',1144), -(15611,15611,'accessories/wearable_items/_exp08/combine_armor/vanguard/hands',1144), -(15612,15612,'accessories/wearable_items/_exp08/combine_armor/vanguard/head_combine_helm',1144), -(15613,15613,'accessories/wearable_items/_exp08/combine_armor/vanguard/legs',1144), -(15614,15614,'accessories/wearable_items/_exp08/combine_armor/vanguard/legs_epic',1144), -(15615,15615,'accessories/wearable_items/_exp08/combine_armor/vanguard/legs_noskirt',1144), -(15616,15616,'accessories/wearable_items/_exp08/combine_armor/vanguard/shoulders',1144), -(15617,15617,'accessories/wearable_items/_exp08/combine_armor/vanguard/shoulders_epic',1144), -(15618,15618,'accessories/wearable_items/_exp08/combine_armor/vanguard/skirt_chain',1144), -(15619,15619,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer_yellow',1144), -(15620,15620,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer_green',1144), -(15621,15621,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer_purple',1144), -(15622,15622,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_hammer_deathbringer_yellow',1144), -(15623,15623,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer_green',1144), -(15624,15624,'accessories/wieldable_items/weapons/exp07/1h_crush/1h_wand_deathbringer_purple',1144), -(15625,15625,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer_yellow',1144), -(15626,15626,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer_green',1144), -(15627,15627,'accessories/wieldable_items/weapons/exp07/1h_sword/exp07_1hs_sword_deathbringer_purple',1144), -(15628,15628,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer_yellow',1144), -(15629,15629,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer_green',1144), -(15630,15630,'accessories/wieldable_items/weapons/exp07/2h_sword/exp07_2hs_sword_deathbringer_purple',1144), -(15631,15631,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer_yellow',1144), -(15632,15632,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer_green',1144), -(15633,15633,'accessories/wieldable_items/weapons/exp07/staff/exp07_staff_deathbringer_purple',1144), -(15634,15634,'creatures/mounts/komodo_mount/komodo_mount_packtrade',1144), -(15635,15635,'_exp08/characters/tool_users/ulthork/ulthork_male_light01',1144), -(15636,15636,'_exp08/characters/tool_users/hunter_female/hunter_female',1144), -(15637,15637,'accessories/wearable_items/cloak/exp08/cloak_poppies_scalloped',1144), -(15638,15638,'_exp08/characters/monsters/komodo/komodo',1144), -(15639,15639,'creatures/mounts/raptor_mount/raptor_wild_base',1144), -(15640,15640,'creatures/mounts/terrorbird_mount/terrorbird_wild',1144), -(15641,15641,'creatures/mounts/raptor_mount/raptor_wild_evil',1144), -(15642,15642,'staticobjects/housing_portal_objects/vision_home_floatingisland01',1144), -(15643,15643,'creatures/mounts/raptor_mount/tropical_raptor_mount_base',1144), -(15644,15644,'staticobjects/liveevent/tinkerfest/dpo_tinkered_hologram_projector',1144), -(15645,15645,'_exp08/characters/monsters/komodo/komodo_blackred',1144), -(15646,15646,'staticobjects/soe_wallet/station_furniture_kaladim_table01',1144), -(15647,15647,'staticobjects/soe_wallet/station_furniture_kaladim_bed01',1144), -(15648,15648,'staticobjects/soe_wallet/station_furniture_kaladim_bench01',1144), -(15649,15649,'staticobjects/soe_wallet/station_furniture_kaladim_largetable01',1144), -(15650,15650,'staticobjects/soe_wallet/station_furniture_kaladim_nightstand01',1144), -(15651,15651,'staticobjects/soe_wallet/station_furniture_kaladim_singlekeg01',1144), -(15652,15652,'staticobjects/soe_wallet/station_furniture_kaladim_stool01',1144), -(15653,15653,'accessories/wearable_items/cloak/exp08/cloak_3straps_komodo',1144), -(15654,15654,'creatures/mounts/horse_saddle_bags_01/horse01_sadle_bags_01_appoloosa_alt',1144), -(15655,15655,'_exp04/zones/objects/fens_of_nathsar/fon_poi_ruin_cabilis_wall03',1144), -(15656,15656,'accessories/wearable_items/_exp08/ullkorruuk_armor/chest',1144), -(15657,15657,'accessories/wearable_items/_exp08/ullkorruuk_armor/feet',1144), -(15658,15658,'accessories/wearable_items/_exp08/ullkorruuk_armor/forearms',1144), -(15659,15659,'accessories/wearable_items/_exp08/ullkorruuk_armor/hands',1144), -(15660,15660,'accessories/wearable_items/_exp08/ullkorruuk_armor/head',1144), -(15661,15661,'accessories/wearable_items/_exp08/ullkorruuk_armor/head_vanguard',1144), -(15662,15662,'accessories/wearable_items/_exp08/ullkorruuk_armor/legs',1144), -(15663,15663,'accessories/wearable_items/_exp08/ullkorruuk_armor/legs_noskirt',1144), -(15664,15664,'accessories/wearable_items/_exp08/ullkorruuk_armor/right',1144), -(15665,15665,'accessories/wearable_items/_exp08/ullkorruuk_armor/shoulders',1144), -(15666,15666,'accessories/wearable_items/_exp08/ullkorruuk_armor/shoulders_nopauldrons',1144), -(15667,15667,'accessories/wearable_items/_exp08/ullkorruuk_armor/shoulders_ullkorruuk',1144), -(15668,15668,'accessories/wearable_items/_exp08/ullkorruuk_armor/skirt',1144), -(15669,15669,'accessories/wearable_items/_exp08/ullkorruuk_armor/ullkorruuk_armor_pauldron_left',1144), -(15670,15670,'accessories/wearable_items/_exp08/ullkorruuk_armor/ullkorruuk_armor_pauldron_right',1144), -(15671,15671,'accessories/wearable_items/_exp08/ullkorruuk_armor/ullkorruuk_armor_waist',1144), -(15672,15672,'_exp08/characters/monsters/falcon_god/falcon_god',1144), -(15673,15673,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_crush_pillarofjustice',1144), -(15674,15674,'accessories/wieldable_items/weapons/exp08/2h_sword/exp07_2hs_sword_knightslayer',1144), -(15675,15675,'creatures/mounts/griffin_mount/griffin_mount_peacock',1144), -(15676,15676,'accessories/wearable_items/cloak/exp08/cloak_peacock',1144), -(15677,15677,'staticobjects/_exp07/pw_ballista_launcher',1144), -(15678,15678,'staticobjects/rubble/slove_rubblepiece_purple01_horizontal',1144), -(15679,15679,'staticobjects/rubble/slove_rubblepiece_trim01_horizontal',1144), -(15680,15680,'accessories/wearable_items/valkyrie/chest',1144), -(15681,15681,'accessories/wearable_items/valkyrie/hands',1144), -(15682,15682,'accessories/wearable_items/valkyrie/legs',1144), -(15683,15683,'accessories/wearable_items/snapons/backpacks/backpack_assassin',1144), -(15684,15684,'accessories/wieldable_items/shields/exp08/exp08_shield_round_crystalline',1144), -(15685,15685,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_crystalline',1144), -(15686,15686,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_crystalline',1144), -(15687,15687,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_crystalline',1144), -(15688,15688,'accessories/wieldable_items/weapons/exp08/2h_sword/exp07_2hs_sword_crystalline',1144), -(15689,15689,'staticobjects/signs/freeport/dpo_freeport_wall_sign',1144), -(15690,15690,'staticobjects/signs/freeport/dpo_freeport_post_sign',1144), -(15691,15691,'staticobjects/signs/general/dpo_rivervale_post_sign',1144), -(15692,15692,'staticobjects/signs/gorowyn/dpo_gorowyn_wall_sign',1144), -(15693,15693,'staticobjects/signs/kelethin/dpo_kelethin_post_sign',1144), -(15694,15694,'staticobjects/signs/neriak/dpo_neriak_square_sign',1144), -(15695,15695,'staticobjects/signs/qeynos/dpo_qeynos_wall_sign',1144), -(15696,15696,'staticobjects/signs/qeynos/dpo_qeynos_hanging_sign',1144), -(15697,15697,'staticobjects/shield/lodizal_shield_houseitem',1144), -(15698,15698,'creatures/monsters/tyrannosaurus_mount',1144), -(15699,15699,'accessories/wearable_items/_exp08/robe_evil_dark_red/chest',1144), -(15700,15700,'accessories/wearable_items/_exp08/robe_evil_dark_red/feet',1144), -(15701,15701,'accessories/wearable_items/_exp08/robe_evil_dark_red/hands',1144), -(15702,15702,'accessories/wearable_items/_exp08/robe_evil_dark_red/head_collar',1144), -(15703,15703,'accessories/wearable_items/_exp08/robe_evil_dark_red/head_evil_conjurer',1144), -(15704,15704,'accessories/wearable_items/_exp08/robe_evil_dark_red/pants',1144), -(15705,15705,'accessories/wearable_items/_exp08/robe_evil_dark_red/skirt',1144), -(15706,15706,'accessories/wieldable_items/shields/exp08/exp08_shield_ice',1144), -(15707,15707,'accessories/wieldable_items/shields/exp08/exp08_shield_nature',1144), -(15708,15708,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_nature',1144), -(15709,15709,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_icespike',1144), -(15710,15710,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/chest',1144), -(15711,15711,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/feet',1144), -(15712,15712,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/forearms',1144), -(15713,15713,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/hands',1144), -(15714,15714,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/head',1144), -(15715,15715,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/left',1144), -(15716,15716,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/legs',1144), -(15717,15717,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/legs_noskirt',1144), -(15718,15718,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/pauldron02_vanguard_ridged_left',1144), -(15719,15719,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/pauldron02_vanguard_ridged_right',1144), -(15720,15720,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/pauldron03_vanguard_flared_left',1144), -(15721,15721,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/pauldron03_vanguard_flared_right',1144), -(15722,15722,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/right',1144), -(15723,15723,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/shoulders',1144), -(15724,15724,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/shoulders_flared',1144), -(15725,15725,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/shoulders_nopauldrons',1144), -(15726,15726,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/shoulders_ridged',1144), -(15727,15727,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/skirt',1144), -(15728,15728,'accessories/wearable_items/vanguard/vanguard_chitin_black_silver/upperchest',1144), -(15729,15729,'creatures/mounts/fae_mount/fae_mount',1144), -(15730,15730,'creatures/mounts/komodo_mount/komodo_mount_iceblue_epic',1144), -(15731,15731,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_green_both',1144), -(15732,15732,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_green_left',1144), -(15733,15733,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_green_right',1144), -(15734,15734,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_red_both',1144), -(15735,15735,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_red_left',1144), -(15736,15736,'accessories/wearable_items/snapons/armbands/shoulders_armband_fire_red_right',1144), -(15737,15737,'accessories/wearable_items/snapons/backpacks/backpack_samurai',1144), -(15738,15738,'creatures/mounts/raptor_mount/raptor_mount_armor_blue',1144), -(15739,15739,'creatures/mounts/pegasus_mount/pegasus_mount_nightmare',1144), -(15740,15740,'creatures/mounts/pegasus_mount/pegasus_mount_nightmare_green',1144), -(15741,15741,'creatures/mounts/pegasus_mount/pegasus_mount_nightmare_violet',1144), -(15742,15742,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_qey_stone14',1144), -(15743,15743,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_qey_stone01',1144), -(15744,15744,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_qey_stone02',1144), -(15745,15745,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_qey_stone12',1144), -(15746,15746,'staticobjects/panels/dpo_tile_weathereddark',1144), -(15747,15747,'staticobjects/panels/dpo_cloudsk_panel',1144), -(15748,15748,'staticobjects/panels/dpo_tile_altarwood',1144), -(15749,15749,'staticobjects/panels/dpo_tile_ashenwood',1144), -(15750,15750,'staticobjects/panels/dpo_tile_blondwood',1144), -(15751,15751,'staticobjects/panels/dpo_tile_brownwood',1144), -(15752,15752,'staticobjects/panels/dpo_tile_fairy_mossywood',1144), -(15753,15753,'staticobjects/panels/dpo_tile_halaswood',1144), -(15754,15754,'staticobjects/panels/dpo_tile_halaswoodtrim',1144), -(15755,15755,'staticobjects/panels/dpo_tile_marrwood',1144), -(15756,15756,'staticobjects/panels/dpo_tile_metalwood',1144), -(15757,15757,'staticobjects/panels/dpo_tile_qey_stone01',1144), -(15758,15758,'staticobjects/panels/dpo_tile_qey_stone02',1144), -(15759,15759,'staticobjects/panels/dpo_tile_qey_stone12',1144), -(15760,15760,'staticobjects/panels/dpo_tile_qey_stone14',1144), -(15761,15761,'staticobjects/panels/dpo_tile_redwood',1144), -(15762,15762,'staticobjects/panels/dpo_tile_rosewood',1144), -(15763,15763,'staticobjects/panels/dpo_tile_sandalwood',1144), -(15764,15764,'staticobjects/panels/dpo_tile_sumacwood',1144), -(15765,15765,'staticobjects/panels/dpo_tile_tablenoplanks',1144), -(15766,15766,'staticobjects/panels/dpo_tile_wavywood',1144), -(15767,15767,'staticobjects/dividers/dpo_gf_kel_int_divider_wall01_halaswood',1144), -(15768,15768,'creatures/pets/pet_kitten/odus_prowler_kitten',1144), -(15769,15769,'creatures/pets/pet_kitten/odus_prowler_kitten_death',1144), -(15770,15770,'creatures/pets/pet_kitten/odus_prowler_kitten_poison',1144), -(15771,15771,'creatures/pets/pet_kitten/odus_prowler_kitten_skeletal',1144), -(15772,15772,'creatures/pets/pet_kitten/odus_prowler_kitten_void',1144), -(15773,15773,'accessories/wieldable_items/shields/exp08/exp08_shield_flame',1144), -(15774,15774,'accessories/wieldable_items/shields/exp08/exp08_shield_soulripper',1144), -(15775,15775,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_flame',1144), -(15776,15776,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_soulripper',1144), -(15777,15777,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_bugbearmystic',1144), -(15778,15778,'accessories/wearable_items/cloak/exp08/cloak_squirrel',1144), -(15779,15779,'accessories/wearable_items/cloak/exp08/cloak_squirrel_skunk',1144), -(15780,15780,'staticobjects/pictures/conceptpainting_oduswasteland',1144), -(15781,15781,'staticobjects/pictures/conceptpainting_guk',1144), -(15782,15782,'staticobjects/soe_wallet/painting_skyfire',1144), -(15783,15783,'staticobjects/soe_wallet/painting_burningwoods',1144), -(15784,15784,'staticobjects/soe_wallet/painting_chelsith',1144), -(15785,15785,'staticobjects/soe_wallet/painting_craterjungle',1144), -(15786,15786,'staticobjects/soe_wallet/painting_frontier',1144), -(15787,15787,'creatures/tu/gods_rallos_zek_new_gold',1144), -(15788,15788,'creatures/tu/gods_rallos_zek_new_stone',1144), -(15789,15789,'accessories/wieldable_items/weapons/exp08/1h_crush/club_zombiebane',1144), -(15790,15790,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_pitchfork',1144), -(15791,15791,'accessories/wearable_items/profesion_hats/firiona_vie_tiara_lon/head_firiona_vie_tiara_lon_evil',1144), -(15792,15792,'accessories/wearable_items/cloak/exp08/cloak_3straps_black',1144), -(15793,15793,'accessories/wearable_items/cloak/exp08/cloak_3straps_white',1144), -(15794,15794,'accessories/wearable_items/profesion_hats/firiona_vie_tiara_lon/head_firiona_vie_tiara_lon_evil_fx',1144), -(15795,15795,'accessories/wearable_items/snapons/backpacks/crossblades_empowered',1144), -(15796,15796,'staticobjects/weapons/dpo_sc_exp08_fist_icespike',1144), -(15797,15797,'staticobjects/shield/dpo_sc_exp08_shield_crystalline',1144), -(15798,15798,'staticobjects/shield/dpo_sc_exp08_shield_icespike',1144), -(15799,15799,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_eyes_purple',1144), -(15800,15800,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_candy',1144), -(15801,15801,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_candy_green',1144), -(15802,15802,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_candy_purple',1144), -(15803,15803,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_eyes',1144), -(15804,15804,'staticobjects/soe_wallet/holiday_objects/pumpkin_bowl_eyes_green',1144), -(15805,15805,'staticobjects/soe_wallet/furniture_grecian_wash',1144), -(15806,15806,'staticobjects/soe_wallet/furniture_grecian_alt1_column',1144), -(15807,15807,'staticobjects/soe_wallet/furniture_grecian_alt1_fountain',1144), -(15808,15808,'staticobjects/soe_wallet/furniture_grecian_alt1_kingbed',1144), -(15809,15809,'staticobjects/soe_wallet/furniture_grecian_alt1_sofa',1144), -(15810,15810,'staticobjects/soe_wallet/furniture_grecian_alt1_table',1144), -(15811,15811,'staticobjects/soe_wallet/furniture_grecian_alt1_wash',1144), -(15812,15812,'staticobjects/soe_wallet/furniture_grecian_column',1144), -(15813,15813,'staticobjects/soe_wallet/furniture_grecian_fountain',1144), -(15814,15814,'staticobjects/soe_wallet/furniture_grecian_kingbed',1144), -(15815,15815,'staticobjects/soe_wallet/furniture_grecian_sofa',1144), -(15816,15816,'staticobjects/soe_wallet/furniture_grecian_table',1144), -(15817,15817,'_exp08/characters/monsters/pw_ballista/pw_ballista',1144), -(15818,15818,'accessories/wearable_items/_exp08/red_dark_elf_armor/skirt',1144), -(15819,15819,'accessories/wearable_items/_exp08/red_dark_elf_armor/chest',1144), -(15820,15820,'accessories/wearable_items/_exp08/red_dark_elf_armor/feet',1144), -(15821,15821,'accessories/wearable_items/_exp08/red_dark_elf_armor/forearms',1144), -(15822,15822,'accessories/wearable_items/_exp08/red_dark_elf_armor/hands',1144), -(15823,15823,'accessories/wearable_items/_exp08/red_dark_elf_armor/head',1144), -(15824,15824,'accessories/wearable_items/_exp08/red_dark_elf_armor/legs',1144), -(15825,15825,'accessories/wearable_items/_exp08/red_dark_elf_armor/legs_noskirt',1144), -(15826,15826,'accessories/wearable_items/_exp08/red_dark_elf_armor/shoulders',1144), -(15827,15827,'accessories/wearable_items/_exp08/short_skirts/tintable_01/snap_ons/belt',1144), -(15828,15828,'accessories/wearable_items/_exp08/short_skirts/tintable_01/snap_ons/short_skirt',1144), -(15829,15829,'accessories/wearable_items/_exp08/short_skirts/tintable_01/chest',1144), -(15830,15830,'accessories/wearable_items/_exp08/short_skirts/tintable_01/feet',1144), -(15831,15831,'accessories/wearable_items/_exp08/short_skirts/tintable_01/hands',1144), -(15832,15832,'accessories/wearable_items/_exp08/short_skirts/tintable_01/head',1144), -(15833,15833,'accessories/wearable_items/_exp08/short_skirts/tintable_01/legs_short_skirt_base',1144), -(15834,15834,'accessories/wearable_items/_exp08/short_skirts/tintable_01/shoulders',1144), -(15835,15835,'creatures/mounts/pegasus_mount/pegasus_mount_epic',1144), -(15836,15836,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_huntress',1144), -(15837,15837,'staticobjects/_exp07/exp07_dun_plane_of_war_raid/pow_stone_pillar',1144), -(15838,15838,'accessories/wieldable_items/weapons/exp08/1h_crush/club_treebranch',1144), -(15839,15839,'accessories/wearable_items/snapons/backpacks/backpack_assassin_swivel/backpack_assassin_swivel',1144), -(15840,15840,'accessories/wearable_items/snapons/backpacks/backpack_assassin_swivel/backpack_assassin_swivel_jug',1144), -(15841,15841,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_lightning',1144), -(15842,15842,'creatures/mounts/horse_heavy/horse_nightmare_fire',1144), -(15843,15843,'creatures/mounts/horse_heavy/horse_epic_good',1144), -(15844,15844,'creatures/mounts/terrorbird_mount/terrorbird_mount_vulrich',1144), -(15845,15845,'staticobjects/soe_wallet/dpo_moon_telescope',1144), -(15846,15846,'staticobjects/soe_wallet/holiday_objects/holiday_brazier',1144), -(15847,15847,'staticobjects/shield/dpo_sc_exp08_shield_flame',1144), -(15848,15848,'staticobjects/housing_portal_objects/vision_home_pedestal01',1144), -(15849,15849,'staticobjects/housing_portal_objects/vision_home_majdul_blades01',1144), -(15850,15850,'staticobjects/housing_portal_objects/vision_home_majdul_moon01',1144), -(15851,15851,'staticobjects/housing_portal_objects/vision_home_unrest',1144), -(15852,15852,'accessories/wieldable_items/weapons/exp08/1h_wand/wand_magic_prismatic_uber',1144), -(15853,15853,'accessories/wieldable_items/weapons/exp08/1h_wand/wand001_ornate',1144), -(15854,15854,'accessories/wieldable_items/weapons/exp08/1h_wand/wand001_plain',1144), -(15855,15855,'accessories/wieldable_items/weapons/exp08/1h_wand/wand001_runic',1144), -(15856,15856,'accessories/wieldable_items/weapons/exp08/1h_wand/wand001_rusty',1144), -(15857,15857,'creatures/mounts/squirrel_mount/squirrel_mount_base',1144), -(15858,15858,'_exp07/characters/tool_users/sullon_zek/sullon_zek_glowing',1144), -(15859,15859,'_exp07/characters/tool_users/tallon_zek/tallon_zek_glow',1144), -(15860,15860,'_exp07/characters/tool_users/vallon_zek/vallon_zek_glow',1144), -(15861,15861,'creatures/mounts/anglerserpent_mount/anglerserpent_mount_base',1144), -(15862,15862,'creatures/mounts/anglerserpent_mount/anglerserpent_mount_iceblue',1144), -(15863,15863,'creatures/mounts/anglerserpent_mount/anglerserpent_mount_lizardgreen',1144), -(15864,15864,'creatures/mounts/anglerserpent_mount/anglerserpent_mount_redhot',1144), -(15865,15865,'accessories/wieldable_items/shields/exp08/exp08_shield_vjornir',1144), -(15866,15866,'staticobjects/tcg/tcg_painting61_shadowmagic',1144), -(15867,15867,'staticobjects/tcg/tcg_painting58_cherryblossom',1144), -(15868,15868,'staticobjects/tcg/tcg_painting59_sacredgrove',1144), -(15869,15869,'staticobjects/tcg/tcg_painting60_grimbelly',1144), -(15870,15870,'staticobjects/_exp07/exp07_dun_plane_of_war_raid/pow_throne_orb',1144), -(15871,15871,'accessories/wieldable_items/shields/exp08/exp08_shield_round_crystalline_skull',1144), -(15872,15872,'_exp08/characters/tool_users/ulthork/ulthork_male_base',1144), -(15873,15873,'staticobjects/soe_wallet/treasure_pile_gold_gems',1144), -(15874,15874,'staticobjects/soe_wallet/treasure_pile_gold',1144), -(15875,15875,'_exp08/characters/tool_users/ulthork/ulthork_male_grey',1144), -(15876,15876,'_exp08/characters/tool_users/ulthork/ulthork_male_heavy01',1144), -(15877,15877,'_exp08/characters/tool_users/ulthork/ulthork_male_tattoo',1144), -(15878,15878,'_exp01/zones/objects/scrolls/drv_stand_scroll_lamp',1144), -(15879,15879,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_armband_large_left',1144), -(15880,15880,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_armband_large_right',1144), -(15881,15881,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_armband_left',1144), -(15882,15882,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_armband_right',1144), -(15883,15883,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_boot_cuff_left',1144), -(15884,15884,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_boot_cuff_right',1144), -(15885,15885,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_pauldron_left',1144), -(15886,15886,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_pauldron_right',1144), -(15887,15887,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/belt',1144), -(15888,15888,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/short_skirt',1144), -(15889,15889,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/swivel_feather_01',1144), -(15890,15890,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/swivel_fur_01',1144), -(15891,15891,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/swivel_fur_02',1144), -(15892,15892,'accessories/wearable_items/_exp08/barbarian_heritage_armor/chest',1144), -(15893,15893,'accessories/wieldable_items/shields/exp08/exp08_shield_pvp',1144), -(15894,15894,'accessories/wieldable_items/weapons/exp08/1h_crush/exp07_1h_crush_pvp',1144), -(15895,15895,'accessories/wearable_items/_exp08/barbarian_heritage_armor/feet_barbarian_heritage',1144), -(15896,15896,'accessories/wearable_items/_exp08/barbarian_heritage_armor/hands',1144), -(15897,15897,'accessories/wearable_items/_exp08/barbarian_heritage_armor/head_barbarian_heritage',1144), -(15898,15898,'accessories/wearable_items/_exp08/barbarian_heritage_armor/legs_short_skirt_base',1144), -(15899,15899,'accessories/wearable_items/_exp08/barbarian_heritage_armor/shoulders_armbands_only',1144), -(15900,15900,'accessories/wearable_items/_exp08/barbarian_heritage_armor/shoulders_barbarian_heritage_pauldrons',1144), -(15901,15901,'staticobjects/housing_rewards/housing_trophy_gold',1144), -(15902,15902,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_pvp_swivel_hook',1144), -(15903,15903,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_pvp',1144), -(15904,15904,'accessories/wieldable_items/weapons/exp08/1h_sword/exp07_1hs_sword_pvp',1144), -(15905,15905,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/shoulders',1144), -(15906,15906,'creatures/monsters/stagg_glass_giant',1144), -(15907,15907,'_exp08/characters/tool_users/ulthork/ulthork_male_shaman01',1144), -(15908,15908,'_exp08/characters/tool_users/ulthork/ulthork_swivel_skull',1144), -(15909,15909,'ec/pc/human/human_male_normal_test',1144), -(15910,15910,'accessories/wearable_items/_exp08/barbarian_heritage_armor/snap_ons/barbarian_heritage_fur_collar',1144), -(15911,15911,'accessories/wearable_items/cloak/exp08/cloak_barbarian_heritage',1144), -(15912,15912,'_exp08/characters/tool_users/chitari/chitari_male_base',1144), -(15913,15913,'accessories/wearable_items/_exp08/pvp_armor/chain/chest',1144), -(15914,15914,'accessories/wearable_items/_exp08/pvp_armor/chain/feet',1144), -(15915,15915,'accessories/wearable_items/_exp08/pvp_armor/chain/forearms',1144), -(15916,15916,'accessories/wearable_items/_exp08/pvp_armor/chain/forearms_epic',1144), -(15917,15917,'accessories/wearable_items/_exp08/pvp_armor/chain/hands',1144), -(15918,15918,'accessories/wearable_items/_exp08/pvp_armor/chain/head',1144), -(15919,15919,'accessories/wearable_items/_exp08/pvp_armor/chain/head_epic',1144), -(15920,15920,'accessories/wearable_items/_exp08/pvp_armor/chain/legs',1144), -(15921,15921,'accessories/wearable_items/_exp08/pvp_armor/chain/legs_epic',1144), -(15922,15922,'accessories/wearable_items/_exp08/pvp_armor/chain/legs_noskirt',1144), -(15923,15923,'accessories/wearable_items/_exp08/pvp_armor/chain/shoulders',1144), -(15924,15924,'accessories/wearable_items/_exp08/pvp_armor/chain/shoulders_epic',1144), -(15925,15925,'accessories/wearable_items/_exp08/pvp_armor/chain/skirt',1144), -(15926,15926,'accessories/wearable_items/_exp08/pvp_armor/gi/chest',1144), -(15927,15927,'accessories/wearable_items/_exp08/pvp_armor/gi/feet',1144), -(15928,15928,'accessories/wearable_items/_exp08/pvp_armor/gi/legs',1144), -(15929,15929,'accessories/wearable_items/_exp08/pvp_armor/gi/shoulders',1144), -(15930,15930,'accessories/wearable_items/_exp08/pvp_armor/gi/shoulders_epic',1144), -(15931,15931,'accessories/wearable_items/_exp08/pvp_armor/gi/skirt',1144), -(15932,15932,'accessories/wearable_items/_exp08/pvp_armor/gi/female/chest',1144), -(15933,15933,'accessories/wearable_items/_exp08/pvp_armor/gi/female/feet',1144), -(15934,15934,'accessories/wearable_items/_exp08/pvp_armor/gi/female/legs',1144), -(15935,15935,'accessories/wearable_items/_exp08/pvp_armor/gi/female/shoulders',1144), -(15936,15936,'accessories/wearable_items/_exp08/pvp_armor/gi/female/skirt',1144), -(15937,15937,'accessories/wearable_items/_exp08/pvp_armor/gi/male/chest',1144), -(15938,15938,'accessories/wearable_items/_exp08/pvp_armor/gi/male/feet',1144), -(15939,15939,'accessories/wearable_items/_exp08/pvp_armor/gi/male/legs',1144), -(15940,15940,'accessories/wearable_items/_exp08/pvp_armor/gi/male/shoulders',1144), -(15941,15941,'accessories/wearable_items/_exp08/pvp_armor/gi/male/skirt',1144), -(15942,15942,'accessories/wearable_items/_exp08/pvp_armor/heavy/chest',1144), -(15943,15943,'accessories/wearable_items/_exp08/pvp_armor/heavy/feet',1144), -(15944,15944,'accessories/wearable_items/_exp08/pvp_armor/heavy/forearms',1144), -(15945,15945,'accessories/wearable_items/_exp08/pvp_armor/heavy/hands',1144), -(15946,15946,'accessories/wearable_items/_exp08/pvp_armor/heavy/head',1144), -(15947,15947,'accessories/wearable_items/_exp08/pvp_armor/heavy/head_epic',1144), -(15948,15948,'accessories/wearable_items/_exp08/pvp_armor/heavy/left',1144), -(15949,15949,'accessories/wearable_items/_exp08/pvp_armor/heavy/legs',1144), -(15950,15950,'accessories/wearable_items/_exp08/pvp_armor/heavy/legs_epic',1144), -(15951,15951,'accessories/wearable_items/_exp08/pvp_armor/heavy/legs_noskirt',1144), -(15952,15952,'accessories/wearable_items/_exp08/pvp_armor/heavy/right',1144), -(15953,15953,'accessories/wearable_items/_exp08/pvp_armor/heavy/shoulders',1144), -(15954,15954,'accessories/wearable_items/_exp08/pvp_armor/heavy/shoulders_epic',1144), -(15955,15955,'accessories/wearable_items/_exp08/pvp_armor/heavy/shoulders-nopauldrons',1144), -(15956,15956,'accessories/wearable_items/_exp08/pvp_armor/heavy/skirt',1144), -(15957,15957,'accessories/wearable_items/_exp08/pvp_armor/leather/chest',1144), -(15958,15958,'accessories/wearable_items/_exp08/pvp_armor/leather/feet',1144), -(15959,15959,'accessories/wearable_items/_exp08/pvp_armor/leather/forearms',1144), -(15960,15960,'accessories/wearable_items/_exp08/pvp_armor/leather/hands',1144), -(15961,15961,'accessories/wearable_items/_exp08/pvp_armor/leather/head',1144), -(15962,15962,'accessories/wearable_items/_exp08/pvp_armor/leather/head_epic',1144), -(15963,15963,'accessories/wearable_items/_exp08/pvp_armor/leather/legs',1144), -(15964,15964,'accessories/wearable_items/_exp08/pvp_armor/leather/legs_noskirt',1144), -(15965,15965,'accessories/wearable_items/_exp08/pvp_armor/leather/shoulders',1144), -(15966,15966,'accessories/wearable_items/_exp08/pvp_armor/leather/shoulders_epic',1144), -(15967,15967,'accessories/wearable_items/_exp08/pvp_armor/leather/skirt',1144), -(15968,15968,'accessories/wearable_items/_exp08/pvp_armor/robe/chest',1144), -(15969,15969,'accessories/wearable_items/_exp08/pvp_armor/robe/chest_epic',1144), -(15970,15970,'accessories/wearable_items/_exp08/pvp_armor/robe/feet',1144), -(15971,15971,'accessories/wearable_items/_exp08/pvp_armor/robe/hands',1144), -(15972,15972,'accessories/wearable_items/_exp08/pvp_armor/robe/head_collar',1144), -(15973,15973,'accessories/wearable_items/_exp08/pvp_armor/robe/head_hood',1144), -(15974,15974,'accessories/wearable_items/_exp08/pvp_armor/robe/pants',1144), -(15975,15975,'accessories/wearable_items/_exp08/pvp_armor/robe/skirt',1144), -(15976,15976,'accessories/wearable_items/_exp08/pvp_armor/snapons/bicep_gi_left',1144), -(15977,15977,'accessories/wearable_items/_exp08/pvp_armor/snapons/bicep_gi_right',1144), -(15978,15978,'accessories/wearable_items/_exp08/pvp_armor/snapons/bicep_robe_left',1144), -(15979,15979,'accessories/wearable_items/_exp08/pvp_armor/snapons/bicep_robe_right',1144), -(15980,15980,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_chain_left',1144), -(15981,15981,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_chain_right',1144), -(15982,15982,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_gi_left',1144), -(15983,15983,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_gi_right',1144), -(15984,15984,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_left',1144), -(15985,15985,'accessories/wearable_items/_exp08/pvp_armor/snapons/forearm_right',1144), -(15986,15986,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_chain_left',1144), -(15987,15987,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_chain_right',1144), -(15988,15988,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_leather_left',1144), -(15989,15989,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_leather_right',1144), -(15990,15990,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_left',1144), -(15991,15991,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_right',1144), -(15992,15992,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_robe_left',1144), -(15993,15993,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldron_robe_right',1144), -(15994,15994,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldrons_lower_left',1144), -(15995,15995,'accessories/wearable_items/_exp08/pvp_armor/snapons/pauldrons_lower_right',1144), -(15996,15996,'accessories/wearable_items/_exp08/pvp_armor/snapons/pvp_armor_head',1144), -(15997,15997,'accessories/wearable_items/_exp08/pvp_armor/snapons/pvp_armor_head_epic',1144), -(15998,15998,'accessories/wearable_items/_exp08/pvp_armor/snapons/pvp_chain_head_epic',1144), -(15999,15999,'accessories/wearable_items/_exp08/pvp_armor/snapons/pvp_leather_head_epic',1144), -(16000,16000,'accessories/wearable_items/_exp08/pvp_armor/snapons/ramhorn_left',1144), -(16001,16001,'accessories/wearable_items/_exp08/pvp_armor/snapons/ramhorn_right',1144), -(16002,16002,'accessories/wearable_items/_exp08/pvp_armor/snapons/shin_chain_left',1144), -(16003,16003,'accessories/wearable_items/_exp08/pvp_armor/snapons/shin_chain_right',1144), -(16004,16004,'accessories/wearable_items/_exp08/pvp_armor/snapons/shin_left',1144), -(16005,16005,'accessories/wearable_items/_exp08/pvp_armor/snapons/shin_right',1144), -(16006,16006,'staticobjects/_exp07/exp07_dun_plane_of_war_raid/pow_rallos_chest',1144), -(16007,16007,'accessories/wearable_items/_exp08/pvp_armor/gi/head/head',1144), -(16008,16008,'accessories/wearable_items/_exp08/pvp_armor/gi/head',1144), -(16009,16009,'_exp08/characters/tool_users/chitari/chitari_male_dark',1144), -(16010,16010,'_exp08/characters/tool_users/chitari/chitari_male_heavy01',1144), -(16011,16011,'ec/pc/human/human_male_2011/human_male_base',1144), -(16012,16012,'accessories/wearable_items/_exp08/short_skirts/tintable_01/head_gothic_helmet',1144), -(16013,16013,'accessories/wearable_items/_exp08/short_skirts/tintable_01/shoulders_pauldrons',1144), -(16014,16014,'accessories/wearable_items/_exp08/short_skirts/tintable_01/snap_ons/belt_buckle_gothic',1144), -(16015,16015,'_exp03/characters/tool_users/clockwork_necro_soldier',1144), -(16016,16016,'_exp03/characters/tool_users/clockwork_necro_gnome_female',1144), -(16017,16017,'accessories/wearable_items/_exp08/short_skirts/tintable_01/snap_ons/pauldron_gothic_left',1144), -(16018,16018,'accessories/wearable_items/_exp08/short_skirts/tintable_01/snap_ons/pauldron_gothic_right',1144), -(16019,16019,'_exp03/characters/tool_users/clockwork_necro_gnome_male',1144), -(16020,16020,'_exp03/characters/tool_users/clockwork_necro_protector',1144), -(16021,16021,'ec/pc/human/human_male_2011/human_male_white_test',1144), -(16022,16022,'ec/pc/human/human_male_2011/human_male_normal_black_test',1144), -(16023,16023,'accessories/wieldable_items/weapons/exp08/2h_sword/exp07_2hs_sword_pvp',1144), -(16024,16024,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_pvp_swivel',1144), -(16025,16025,'accessories/wieldable_items/weapons/exp08/fist/exp07_fist_pvp',1144), -(16026,16026,'accessories/wieldable_items/weapons/exp08/staff/exp08_2h_staff_fighter_pvp',1144), -(16027,16027,'accessories/wieldable_items/weapons/exp08/staff/exp08_2h_staff_mage_pvp',1144), -(16028,16028,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/chain_head_epic',1144), -(16029,16029,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/forearm_left',1144), -(16030,16030,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/forearm_right',1144), -(16031,16031,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/leather_head_epic',1144), -(16032,16032,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/pauldron_alt_left',1144), -(16033,16033,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/pauldron_alt_right',1144), -(16034,16034,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/pauldron_left',1144), -(16035,16035,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/pauldron_right',1144), -(16036,16036,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/ramhorn_left',1144), -(16037,16037,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/ramhorn_right',1144), -(16038,16038,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/shin_left',1144), -(16039,16039,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/shin_right',1144), -(16040,16040,'accessories/wearable_items/_exp08/ralloszek_armor/accessories/vanguard_head_epic',1144), -(16041,16041,'accessories/wearable_items/_exp08/ralloszek_armor/chain/chest',1144), -(16042,16042,'accessories/wearable_items/_exp08/ralloszek_armor/chain/feet',1144), -(16043,16043,'accessories/wearable_items/_exp08/ralloszek_armor/chain/forearms',1144), -(16044,16044,'accessories/wearable_items/_exp08/ralloszek_armor/chain/hands',1144), -(16045,16045,'accessories/wearable_items/_exp08/ralloszek_armor/chain/head',1144), -(16046,16046,'accessories/wearable_items/_exp08/ralloszek_armor/chain/head_epic',1144), -(16047,16047,'accessories/wearable_items/_exp08/ralloszek_armor/chain/legs',1144), -(16048,16048,'accessories/wearable_items/_exp08/ralloszek_armor/chain/legs_epic',1144), -(16049,16049,'accessories/wearable_items/_exp08/ralloszek_armor/chain/legs_noskirt',1144), -(16050,16050,'accessories/wearable_items/_exp08/ralloszek_armor/chain/pauldron_alt_left',1144), -(16051,16051,'accessories/wearable_items/_exp08/ralloszek_armor/chain/pauldron_alt_right',1144), -(16052,16052,'accessories/wearable_items/_exp08/ralloszek_armor/chain/shoulders',1144), -(16053,16053,'accessories/wearable_items/_exp08/ralloszek_armor/chain/shoulders_epic',1144), -(16054,16054,'accessories/wearable_items/_exp08/ralloszek_armor/chain/skirt',1144), -(16055,16055,'accessories/wearable_items/_exp08/ralloszek_armor/leather/chest',1144), -(16056,16056,'accessories/wearable_items/_exp08/ralloszek_armor/leather/feet',1144), -(16057,16057,'accessories/wearable_items/_exp08/ralloszek_armor/leather/forearms',1144), -(16058,16058,'accessories/wearable_items/_exp08/ralloszek_armor/leather/hands',1144), -(16059,16059,'accessories/wearable_items/_exp08/ralloszek_armor/leather/head',1144), -(16060,16060,'accessories/wearable_items/_exp08/ralloszek_armor/leather/head_epic',1144), -(16061,16061,'accessories/wearable_items/_exp08/ralloszek_armor/leather/legs',1144), -(16062,16062,'accessories/wearable_items/_exp08/ralloszek_armor/leather/legs_noskirt',1144), -(16063,16063,'accessories/wearable_items/_exp08/ralloszek_armor/leather/pauldron_alt_left',1144), -(16064,16064,'accessories/wearable_items/_exp08/ralloszek_armor/leather/pauldron_alt_right',1144), -(16065,16065,'accessories/wearable_items/_exp08/ralloszek_armor/leather/shoulders',1144), -(16066,16066,'accessories/wearable_items/_exp08/ralloszek_armor/leather/shoulders_epic',1144), -(16067,16067,'accessories/wearable_items/_exp08/ralloszek_armor/leather/skirt',1144), -(16068,16068,'accessories/wearable_items/_exp08/ralloszek_armor/robe/chest',1144), -(16069,16069,'accessories/wearable_items/_exp08/ralloszek_armor/robe/chest_epic',1144), -(16070,16070,'accessories/wearable_items/_exp08/ralloszek_armor/robe/feet',1144), -(16071,16071,'accessories/wearable_items/_exp08/ralloszek_armor/robe/hands',1144), -(16072,16072,'accessories/wearable_items/_exp08/ralloszek_armor/robe/head_collar',1144), -(16073,16073,'accessories/wearable_items/_exp08/ralloszek_armor/robe/head_hood',1144), -(16074,16074,'accessories/wearable_items/_exp08/ralloszek_armor/robe/pants',1144), -(16075,16075,'accessories/wearable_items/_exp08/ralloszek_armor/robe/pauldron_alt_left',1144), -(16076,16076,'accessories/wearable_items/_exp08/ralloszek_armor/robe/pauldron_alt_right',1144), -(16077,16077,'accessories/wearable_items/_exp08/ralloszek_armor/robe/skirt',1144), -(16078,16078,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/chest',1144), -(16079,16079,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/feet',1144), -(16080,16080,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/forearms',1144), -(16081,16081,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/hands',1144), -(16082,16082,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/head',1144), -(16083,16083,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/head_epic',1144), -(16084,16084,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/left',1144), -(16085,16085,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/legs',1144), -(16086,16086,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/legs_epic',1144), -(16087,16087,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/legs_noskirt',1144), -(16088,16088,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/right',1144), -(16089,16089,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/shoulders',1144), -(16090,16090,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/shoulders_epic',1144), -(16091,16091,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/shoulders_nopauldrons',1144), -(16092,16092,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/skirt',1144), -(16093,16093,'accessories/wearable_items/_exp08/ralloszek_armor/vanguard/upperchest',1144), -(16094,16094,'accessories/wieldable_items/weapons/exp08/1h_crush/1h_hammer_rallos_zek',1144), -(16095,16095,'accessories/wieldable_items/weapons/exp08/1h_crush/club_rallos_zek',1144), -(16096,16096,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_rallos_zek',1144), -(16097,16097,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_rallos_zek',1144), -(16098,16098,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak1',1144), -(16099,16099,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_katana_rallos_zek',1144), -(16100,16100,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2hc_hammer_rallos_zek',1144), -(16101,16101,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_rallos_zek',1144), -(16102,16102,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_rallos_zek',1144), -(16103,16103,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_rallos_zek',1144), -(16104,16104,'accessories/wieldable_items/weapons/exp08/talisman/book_rallos_zek',1144), -(16105,16105,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak2',1144), -(16106,16106,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak3',1144), -(16107,16107,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak4',1144), -(16108,16108,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak5',1144), -(16109,16109,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/ralloszek_cloak6',1144), -(16110,16110,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak1',1144), -(16111,16111,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak2',1144), -(16112,16112,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak3',1144), -(16113,16113,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak4',1144), -(16114,16114,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak5',1144), -(16115,16115,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/sullonzek_cloak6',1144), -(16116,16116,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak1',1144), -(16117,16117,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak2',1144), -(16118,16118,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak3',1144), -(16119,16119,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak4',1144), -(16120,16120,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak5',1144), -(16121,16121,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/tallonzek_cloak6',1144), -(16122,16122,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak1',1144), -(16123,16123,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak2',1144), -(16124,16124,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak3',1144), -(16125,16125,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak4',1144), -(16126,16126,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak5',1144), -(16127,16127,'accessories/wearable_items/cloak/exp08/zek_class_cloaks/vallonzek_cloak6',1144), -(16128,16128,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_rallos_zek',1144), -(16129,16129,'accessories/wieldable_items/shields/exp08/exp08_shield_celestial_rallos_zek_gem',1144), -(16130,16130,'creatures/mounts/lynx_mount/white_cat_mount',1144), -(16131,16131,'accessories/wearable_items/profesion_hats/firiona_vie_tiara_lon/head_opal_darkbriar_tiara',1144), -(16132,16132,'accessories/wearable_items/_exp08/opal_darkbriar/robe/chest',1144), -(16133,16133,'accessories/wearable_items/_exp08/opal_darkbriar/robe/feet',1144), -(16134,16134,'accessories/wearable_items/_exp08/opal_darkbriar/robe/hands',1144), -(16135,16135,'accessories/wearable_items/_exp08/opal_darkbriar/robe/head_collar',1144), -(16136,16136,'accessories/wearable_items/_exp08/opal_darkbriar/robe/head_hood',1144), -(16137,16137,'accessories/wearable_items/_exp08/opal_darkbriar/robe/pants',1144), -(16138,16138,'accessories/wearable_items/_exp08/opal_darkbriar/robe/skirt',1144), -(16139,16139,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_opal_darkbriar',1144), -(16140,16140,'accessories/wieldable_items/weapons/exp08/2h_sword/exp07_2h_sword_opal_darkbriar',1144), -(16141,16141,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_opal_darkbriar',1144), -(16142,16142,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/chest',1144), -(16143,16143,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/feet',1144), -(16144,16144,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/hands',1144), -(16145,16145,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/head_collar',1144), -(16146,16146,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/head_hood',1144), -(16147,16147,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/pants',1144), -(16148,16148,'accessories/wearable_items/_exp08/opal_darkbriar/robe_alt/skirt',1144), -(16149,16149,'accessories/wearable_items/profesion_hats/beastlord/head_beastlord_helmet_lion',1144), -(16150,16150,'accessories/wearable_items/profesion_hats/beastlord/head_beastlord_helmet_panther',1144), -(16151,16151,'accessories/wearable_items/profesion_hats/beastlord/head_beastlord_helmet_white_tiger',1144), -(16152,16152,'_exp08/characters/monsters/exp04raptor/raptor',1144), -(16153,16153,'_exp08/characters/tool_users/freeport_knight/freeport_knight_base',1144), -(16154,16154,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_club_peppermint',1144), -(16155,16155,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_peppermint_shiv',1144), -(16156,16156,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_peppermint_blade',1144), -(16157,16157,'accessories/wieldable_items/weapons/exp08/bow/exp08_shortbow_peppermint',1144), -(16158,16158,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_peppermint',1144), -(16159,16159,'creatures/tu/holgresh_male_base',1144), -(16160,16160,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_club_peppermint_spearmint',1144), -(16161,16161,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_club_peppermint_evilgreen',1144), -(16162,16162,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_club_peppermint_evilpurple',1144), -(16163,16163,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_peppermint_shiv_evilgreen',1144), -(16164,16164,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_peppermint_shiv_evilpurple',1144), -(16165,16165,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_peppermint_shiv_spearmint',1144), -(16166,16166,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_peppermint_blade_evilpurple',1144), -(16167,16167,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_peppermint_blade_evilgreen',1144), -(16168,16168,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_peppermint_blade_spearmint',1144), -(16169,16169,'accessories/wieldable_items/weapons/exp08/bow/exp08_shortbow_peppermint_evilpurple',1144), -(16170,16170,'accessories/wieldable_items/weapons/exp08/bow/exp08_shortbow_peppermint_evilgreen',1144), -(16171,16171,'accessories/wieldable_items/weapons/exp08/bow/exp08_shortbow_peppermint_spearmint',1144), -(16172,16172,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_peppermint_evilpurple',1144), -(16173,16173,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_peppermint_evilgreen',1144), -(16174,16174,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_peppermint_spearmint',1144), -(16175,16175,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_beastlord_blades',1144), -(16176,16176,'_exp08/characters/monsters/kerafyrm/kerafyrm',1144), -(16177,16177,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_crush_steinhammer',1144), -(16178,16178,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_crush_steinhammer_lid',1144), -(16179,16179,'staticobjects/panels/dpo_panel_stainedglass_orange',1144), -(16180,16180,'staticobjects/panels/dpo_panel_stainedglass_yellow',1144), -(16181,16181,'creatures/mounts/horse_demon/horse_demon_silver',1144), -(16182,16182,'creatures/mounts/horse_demon/swivels/horse_demon_swivel_chain',1144), -(16183,16183,'creatures/mounts/horse_demon/swivels/horse_demon_swivel_skull',1144), -(16184,16184,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/head_pirate_admiral',1144), -(16185,16185,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/head_pirate_blue',1144), -(16186,16186,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/head_pirate_captain',1144), -(16187,16187,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/head_pirate_green',1144), -(16188,16188,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/head_pirate_tintable',1144), -(16189,16189,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/snap_ons/coin_swivel',1144), -(16190,16190,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/snap_ons/ring_swivel',1144), -(16191,16191,'accessories/wearable_items/profesion_hats/pirate/pirate_captain/snap_ons/skull_swivel',1144), -(16192,16192,'_exp08/characters/tool_users/chitari/chitari_male_light01',1144), -(16193,16193,'_exp08/characters/tool_users/chitari/chitari_male_medium01',1144), -(16194,16194,'_exp08/characters/tool_users/chitari/chitari_male_medium02',1144), -(16195,16195,'creatures/mounts/player_wing/player_wing_mount',1144), -(16196,16196,'_exp08/characters/monsters/drake/drake_black',1144), -(16197,16197,'_exp08/characters/monsters/drake/drake_blue',1144), -(16198,16198,'_exp08/characters/monsters/drake/drake_green',1144), -(16199,16199,'_exp08/characters/monsters/drake/drake_red',1144), -(16200,16200,'_exp08/characters/monsters/drake/drake1',1144), -(16201,16201,'_exp08/characters/tool_users/zombie_orc/zombie_orc',1144), -(16202,16202,'accessories/wearable_items/cloak/exp08/cloak_squirrel_skunk_evil',1144), -(16203,16203,'accessories/wearable_items/cloak/exp08/cloak_squirrel_skunk_evil_inset',1144), -(16204,16204,'creatures/mounts/player_wing/player_wing_angel',1144), -(16205,16205,'accessories/wearable_items/_exp08/assassin_soul_armor/chest',1144), -(16206,16206,'accessories/wearable_items/_exp08/assassin_soul_armor/feet',1144), -(16207,16207,'accessories/wearable_items/_exp08/assassin_soul_armor/forearms',1144), -(16208,16208,'accessories/wearable_items/_exp08/assassin_soul_armor/hands',1144), -(16209,16209,'accessories/wearable_items/_exp08/assassin_soul_armor/head',1144), -(16210,16210,'accessories/wearable_items/_exp08/assassin_soul_armor/legs',1144), -(16211,16211,'accessories/wearable_items/_exp08/assassin_soul_armor/legs_noskirt',1144), -(16212,16212,'accessories/wearable_items/_exp08/assassin_soul_armor/shoulders',1144), -(16213,16213,'accessories/wearable_items/_exp08/assassin_soul_armor/skirt',1144), -(16214,16214,'accessories/wearable_items/snapons/armbands/shoulders_armband_fur_02_left',1144), -(16215,16215,'accessories/wearable_items/snapons/armbands/shoulders_armband_fur_02_right',1144), -(16216,16216,'ec/pc/fae_wings/fae_angel',1144), -(16217,16217,'creatures/monsters/hawk_optimized',1190), -(16218,16218,'accessories/wearable_items/cloak/exp08/cloak_beastlord',1190), -(16219,16219,'accessories/wearable_items/_exp08/truespirit/chest',1190), -(16220,16220,'accessories/wearable_items/_exp08/truespirit/feet',1190), -(16221,16221,'accessories/wearable_items/_exp08/truespirit/hands',1190), -(16222,16222,'accessories/wearable_items/_exp08/truespirit/head_collar',1190), -(16223,16223,'accessories/wearable_items/_exp08/truespirit/head_hood',1190), -(16224,16224,'accessories/wearable_items/_exp08/truespirit/pants',1190), -(16225,16225,'accessories/wearable_items/_exp08/truespirit/skirt',1190), -(16226,16226,'accessories/wearable_items/_exp08/truespirit2/chest',1190), -(16227,16227,'accessories/wearable_items/_exp08/truespirit2/feet',1190), -(16228,16228,'accessories/wearable_items/_exp08/truespirit2/hands',1190), -(16229,16229,'accessories/wearable_items/_exp08/truespirit2/head_collar',1190), -(16230,16230,'accessories/wearable_items/_exp08/truespirit2/head_hood',1190), -(16231,16231,'accessories/wearable_items/_exp08/truespirit2/pants',1190), -(16232,16232,'accessories/wearable_items/_exp08/truespirit2/skirt',1190), -(16233,16233,'accessories/wearable_items/profesion_hats/firiona_vie_tiara_lon/head_tiara_evil',1190), -(16234,16234,'accessories/wearable_items/_exp08/lon_card_outfit/chest',1190), -(16235,16235,'accessories/wearable_items/_exp08/lon_card_outfit/hands',1190), -(16236,16236,'accessories/wearable_items/_exp08/lon_card_outfit/legs',1190), -(16237,16237,'creatures/mounts/lynx_mount/lynx_mount_white_tintable_saddle',1190), -(16238,16238,'accessories/wearable_items/_exp08/freeport_guard/chain/skirt',1190), -(16239,16239,'accessories/wearable_items/_exp08/freeport_guard/chain/chest',1190), -(16240,16240,'accessories/wearable_items/_exp08/freeport_guard/chain/cowl',1190), -(16241,16241,'accessories/wearable_items/_exp08/freeport_guard/chain/feet',1190), -(16242,16242,'accessories/wearable_items/_exp08/freeport_guard/chain/forearms',1190), -(16243,16243,'accessories/wearable_items/_exp08/freeport_guard/chain/freeport_head_snapon',1190), -(16244,16244,'accessories/wearable_items/_exp08/freeport_guard/chain/hands',1190), -(16245,16245,'accessories/wearable_items/_exp08/freeport_guard/chain/head',1190), -(16246,16246,'accessories/wearable_items/_exp08/freeport_guard/chain/legs',1190), -(16247,16247,'accessories/wearable_items/_exp08/freeport_guard/chain/legs_noskirt',1190), -(16248,16248,'accessories/wearable_items/_exp08/freeport_guard/chain/shoulders',1190), -(16249,16249,'accessories/wearable_items/_exp08/freeport_guard/chain/shoulders_snapon_epic',1190), -(16250,16250,'accessories/wearable_items/_exp08/freeport_guard/leather/skirt',1190), -(16251,16251,'accessories/wearable_items/_exp08/freeport_guard/leather/chest',1190), -(16252,16252,'accessories/wearable_items/_exp08/freeport_guard/leather/cowl',1190), -(16253,16253,'accessories/wearable_items/_exp08/freeport_guard/leather/feet',1190), -(16254,16254,'accessories/wearable_items/_exp08/freeport_guard/leather/forearms',1190), -(16255,16255,'accessories/wearable_items/_exp08/freeport_guard/leather/freeport_head_snapon',1190), -(16256,16256,'accessories/wearable_items/_exp08/freeport_guard/leather/hands',1190), -(16257,16257,'accessories/wearable_items/_exp08/freeport_guard/leather/head',1190), -(16258,16258,'accessories/wearable_items/_exp08/freeport_guard/leather/legs',1190), -(16259,16259,'accessories/wearable_items/_exp08/freeport_guard/leather/legs_noskirt',1190), -(16260,16260,'accessories/wearable_items/_exp08/freeport_guard/leather/shoulders',1190), -(16261,16261,'accessories/wearable_items/_exp08/freeport_guard/leather/shoulders_snapon_epic',1190), -(16262,16262,'accessories/wearable_items/_exp08/freeport_guard/robe/chest',1190), -(16263,16263,'accessories/wearable_items/_exp08/freeport_guard/robe/cowl',1190), -(16264,16264,'accessories/wearable_items/_exp08/freeport_guard/robe/feet',1190), -(16265,16265,'accessories/wearable_items/_exp08/freeport_guard/robe/hands',1190), -(16266,16266,'accessories/wearable_items/_exp08/freeport_guard/robe/head',1190), -(16267,16267,'accessories/wearable_items/_exp08/freeport_guard/robe/pants',1190), -(16268,16268,'accessories/wearable_items/_exp08/freeport_guard/robe/skirt',1190), -(16269,16269,'accessories/wearable_items/_exp08/freeport_guard/snapons/chain_pauldrons_upper_left',1190), -(16270,16270,'accessories/wearable_items/_exp08/freeport_guard/snapons/chain_pauldrons_upper_right',1190), -(16271,16271,'accessories/wearable_items/_exp08/freeport_guard/snapons/leather_pauldrons_upper_left',1190), -(16272,16272,'accessories/wearable_items/_exp08/freeport_guard/snapons/leather_pauldrons_upper_right',1190), -(16273,16273,'accessories/wearable_items/_exp08/freeport_guard/snapons/vanguard_pauldrons_upper_left',1190), -(16274,16274,'accessories/wearable_items/_exp08/freeport_guard/snapons/vanguard_pauldrons_upper_right',1190), -(16275,16275,'accessories/wearable_items/_exp08/freeport_guard/vanguard/chest',1190), -(16276,16276,'accessories/wearable_items/_exp08/freeport_guard/vanguard/cowl',1190), -(16277,16277,'accessories/wearable_items/_exp08/freeport_guard/vanguard/feet',1190), -(16278,16278,'accessories/wearable_items/_exp08/freeport_guard/vanguard/forearms',1190), -(16279,16279,'accessories/wearable_items/_exp08/freeport_guard/vanguard/freeport_head_snapon',1190), -(16280,16280,'accessories/wearable_items/_exp08/freeport_guard/vanguard/hands',1190), -(16281,16281,'accessories/wearable_items/_exp08/freeport_guard/vanguard/head',1190), -(16282,16282,'accessories/wearable_items/_exp08/freeport_guard/vanguard/legs',1190), -(16283,16283,'accessories/wearable_items/_exp08/freeport_guard/vanguard/legs_noskirt',1190), -(16284,16284,'accessories/wearable_items/_exp08/freeport_guard/vanguard/right',1190), -(16285,16285,'accessories/wearable_items/_exp08/freeport_guard/vanguard/shoulders',1190), -(16286,16286,'accessories/wearable_items/_exp08/freeport_guard/vanguard/shoulders_nopauldrons',1190), -(16287,16287,'accessories/wearable_items/_exp08/freeport_guard/vanguard/shoulders_pauldron_epic',1190), -(16288,16288,'accessories/wearable_items/_exp08/freeport_guard/vanguard/skirt',1190), -(16289,16289,'accessories/wieldable_items/weapons/exp08/talisman/book_bookmarked_glow',1190), -(16290,16290,'accessories/wieldable_items/weapons/exp08/talisman/book_bookmarked_glow2',1190), -(16291,16291,'accessories/wieldable_items/weapons/exp08/talisman/exp08_symbol_crystalline',1190), -(16292,16292,'accessories/wieldable_items/weapons/exp08/talisman/exp08_symbol_sphere',1190), -(16293,16293,'accessories/wieldable_items/weapons/exp08/talisman/exp08_symbol_spiked',1190), -(16294,16294,'creatures/mounts/player_wing/player_wing_nightmare',1190), -(16295,16295,'ec/pc/fae_wings/fae_nightmare',1190), -(16296,16296,'_exp04/monsters/chokidai_old',1190), -(16297,16297,'_exp04/monsters/chokidai_red',1190), -(16298,16298,'accessories/wearable_items/_exp08/chainmail_gi/chest',1190), -(16299,16299,'accessories/wearable_items/_exp08/chainmail_gi/feet',1190), -(16300,16300,'accessories/wearable_items/_exp08/chainmail_gi/head',1190), -(16301,16301,'accessories/wearable_items/_exp08/chainmail_gi/legs',1190), -(16302,16302,'accessories/wearable_items/_exp08/chainmail_gi/shoulders',1190), -(16303,16303,'accessories/wearable_items/_exp08/chainmail_gi/snap_ons/belt',1190), -(16304,16304,'accessories/wearable_items/_exp08/chainmail_gi/snap_ons/chain_link_01',1190), -(16305,16305,'accessories/wearable_items/_exp08/chainmail_gi/snap_ons/chain_link_02',1190), -(16306,16306,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_freeportknight',1190), -(16307,16307,'creatures/mounts/squirrel_mount/squirrel_mount_skunk',1190), -(16308,16308,'accessories/wearable_items/cloak/exp08/cloak_fur',1190), -(16309,16309,'accessories/wearable_items/cloak/exp08/snap_ons/cloak_fur_attachment',1190), -(16310,16310,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_soulscorned',1190), -(16311,16311,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_soulscorned',1190), -(16312,16312,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_soulscorned',1190), -(16313,16313,'accessories/wieldable_items/weapons/exp08/2h_sword/exp07_2hs_sword_soulscorned',1190), -(16314,16314,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_soulscorned',1190), -(16315,16315,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_soulscorned',1190), -(16316,16316,'accessories/wearable_items/cloak/exp08/cloak_bookshelf',1190), -(16317,16317,'creatures/mounts/unicorn/unicorn_armored',1190), -(16318,16318,'creatures/mounts/unicorn/unicorn_armored_mist',1190), -(16319,16319,'accessories/wearable_items/cloak/exp08/cloak_freeport_vanguard',1190), -(16320,16320,'accessories/wearable_items/cloak/exp08/cloak_freeport_chain',1190), -(16321,16321,'accessories/wearable_items/cloak/exp08/cloak_freeport_chain_cowl_snapon',1190), -(16322,16322,'accessories/wearable_items/cloak/exp08/cloak_freeport_guard_cowl_snapon',1190), -(16323,16323,'accessories/wearable_items/cloak/exp08/cloak_freeport_leather',1190), -(16324,16324,'accessories/wearable_items/cloak/exp08/cloak_freeport_leather_cowl_snapon',1190), -(16325,16325,'accessories/wearable_items/cloak/exp08/cloak_freeport_robe',1190), -(16326,16326,'accessories/wearable_items/cloak/exp08/cloak_freeport_robe_cowl_snapon',1190), -(16327,16327,'accessories/wieldable_items/weapons/exp08/1h_crush/flail_lucanic_dark',1190), -(16328,16328,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_lucanic_dark',1190), -(16329,16329,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_lucanic_split',1190), -(16330,16330,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_lucanic_dark',1190), -(16331,16331,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_kama_lucanic_batwing',1190), -(16332,16332,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_long',1190), -(16333,16333,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_scimitar',1190), -(16334,16334,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_short',1190), -(16335,16335,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_lucanic_dark',1190), -(16336,16336,'accessories/wieldable_items/weapons/exp08/staff/exp08_poleaxe_lucanic_hollow',1190), -(16337,16337,'_exp08/characters/tool_users/freeport_knight/freeport_knight_mounted',1190), -(16338,16338,'creatures/mounts/horse_heavy/horse_nightmare_fire_freeport',1190), -(16339,16339,'creatures/mounts/pegasus_mount/pegasus_mount_nightmare_freeport',1190), -(16340,16340,'accessories/wieldable_items/shields/exp08/exp08_shield_freeportknight',1190), -(16341,16341,'accessories/wieldable_items/shields/exp08/exp08_shield_freeportknight_npc',1190), -(16342,16342,'accessories/wearable_items/_exp08/flame_gi/chest',1190), -(16343,16343,'accessories/wearable_items/_exp08/flame_gi/hands',1190), -(16344,16344,'accessories/wearable_items/_exp08/flame_gi/legs',1190), -(16345,16345,'accessories/wearable_items/_exp08/flame_gi/shoulders',1190), -(16346,16346,'accessories/wearable_items/_exp08/flame_gi/snap_ons/armband_flame_gi_left',1190), -(16347,16347,'accessories/wearable_items/_exp08/flame_gi/snap_ons/armband_flame_gi_right',1190), -(16348,16348,'accessories/wearable_items/_exp08/flame_gi/snap_ons/gem_disc',1190), -(16349,16349,'accessories/wearable_items/profesion_hats/beastlord2/head_beastlord',1190), -(16350,16350,'accessories/wearable_items/profesion_hats/beastlord2/swivel_feather1',1190), -(16351,16351,'accessories/wearable_items/profesion_hats/beastlord2/swivel_feather2',1190), -(16352,16352,'creatures/mounts/pegasus_mount/pegasus_mount_winter',1190), -(16353,16353,'accessories/wieldable_items/weapons/exp08/1h_wand/wand_lucanic_serpent',1190), -(16354,16354,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_burningblack',1190), -(16355,16355,'accessories/wieldable_items/weapons/exp08/fist/katar_burningsilver',1190), -(16356,16356,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_lightningrod',1190), -(16357,16357,'_exp02/characters/tool_users/draconian_elite',1190), -(16358,16358,'accessories/wieldable_items/weapons/exp08/1h_crush/flail_lucanic_dark_fx',1190), -(16359,16359,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_lucanic_dark_fx',1190), -(16360,16360,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_lucanic_split_fx',1190), -(16361,16361,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_short_fx',1190), -(16362,16362,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_lucanic_dark_fx',1190), -(16363,16363,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_kama_lucanic_batwing_fx',1190), -(16364,16364,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_long_fx',1190), -(16365,16365,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_lucanic_scimitar_fx',1190), -(16366,16366,'accessories/wieldable_items/weapons/exp08/1h_wand/wand_lucanic_serpent_fx',1190), -(16367,16367,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_lucanic_dark_fx',1190), -(16368,16368,'accessories/wieldable_items/weapons/exp08/staff/exp08_poleaxe_lucanic_hollow_fx',1190), -(16369,16369,'accessories/wearable_items/_exp08/redglow_sets/leather/chest',1190), -(16370,16370,'accessories/wearable_items/_exp08/redglow_sets/leather/feet',1190), -(16371,16371,'accessories/wearable_items/_exp08/redglow_sets/leather/forearms',1190), -(16372,16372,'accessories/wearable_items/_exp08/redglow_sets/leather/hands',1190), -(16373,16373,'accessories/wearable_items/_exp08/redglow_sets/leather/head',1190), -(16374,16374,'accessories/wearable_items/_exp08/redglow_sets/leather/legs',1190), -(16375,16375,'accessories/wearable_items/_exp08/redglow_sets/leather/legs_noskirt',1190), -(16376,16376,'accessories/wearable_items/_exp08/redglow_sets/leather/shoulders',1190), -(16377,16377,'accessories/wearable_items/_exp08/redglow_sets/leather/skirt',1190), -(16378,16378,'accessories/wearable_items/_exp08/redglow_sets/robe/chest',1190), -(16379,16379,'accessories/wearable_items/_exp08/redglow_sets/robe/feet',1190), -(16380,16380,'accessories/wearable_items/_exp08/redglow_sets/robe/hands',1190), -(16381,16381,'accessories/wearable_items/_exp08/redglow_sets/robe/head',1190), -(16382,16382,'accessories/wearable_items/_exp08/redglow_sets/robe/head_collar',1190), -(16383,16383,'accessories/wearable_items/_exp08/redglow_sets/robe/pants',1190), -(16384,16384,'accessories/wearable_items/_exp08/redglow_sets/robe/skirt',1190), -(16385,16385,'_exp08/characters/monsters/warboar/warboar_beastlord',1190), -(16386,16386,'creatures/mounts/warhog_mount/warhog_beastlord_mount',1190), -(16387,16387,'accessories/wearable_items/_exp08/redglow_sets/leather/pauldron_left',1190), -(16388,16388,'accessories/wearable_items/_exp08/redglow_sets/leather/pauldron_right',1190), -(16389,16389,'accessories/wearable_items/_exp08/redglow_sets/leather/shoulders_pauldrons',1190), -(16390,16390,'accessories/wearable_items/_exp08/redglow_sets/robe/chest_pauldrons',1190), -(16391,16391,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_banner_emperorcrush',1190), -(16392,16392,'_exp08/characters/tool_users/freeport_knight/freeport_knight_joust',1190), -(16393,16393,'creatures/mounts/horse_heavy/horse_heavy_joust',1190), -(16394,16394,'accessories/wieldable_items/weapons/great_spear/great_spear/great_spear_joust',1190), -(16395,16395,'staticobjects/freeport_combined/fpalt_vase_ornateface01_dpo',1190), -(16396,16396,'staticobjects/freeport_combined/fpalt_bank_coinpile001_dpo',1190), -(16397,16397,'staticobjects/freeport_combined/fpalt_bank_coinpile002_dpo',1190), -(16398,16398,'staticobjects/freeport_combined/fpalt_bank_scales01_dpo',1190), -(16399,16399,'staticobjects/freeport_combined/fpalt_bankvaultplain001_dpo',1190), -(16400,16400,'staticobjects/freeport_combined/fpalt_banner_gorowyn_stand01_dpo',1190), -(16401,16401,'staticobjects/freeport_combined/fpalt_banner_lucan_hoods01_dpo',1190), -(16402,16402,'staticobjects/freeport_combined/fpalt_banner_military_stable01_dpo',1190), -(16403,16403,'staticobjects/freeport_combined/fpalt_banner_neriak_stand01_dpo',1190), -(16404,16404,'staticobjects/freeport_combined/fpalt_barrel_ornatelarge001_dpo',1190), -(16405,16405,'staticobjects/freeport_combined/fpalt_barrel_ornatesmall001_dpo',1190), -(16406,16406,'staticobjects/freeport_combined/fpalt_bed_doubleornate01_dpo',1190), -(16407,16407,'staticobjects/freeport_combined/fpalt_bed_singleornate01_dpo',1190), -(16408,16408,'staticobjects/freeport_combined/fpalt_bench_militaryshort01_dpo',1190), -(16409,16409,'staticobjects/freeport_combined/fpalt_bench_ornateshort01_dpo',1190), -(16410,16410,'staticobjects/freeport_combined/fpalt_bookcase_smallornate01_dpo',1190), -(16411,16411,'staticobjects/freeport_combined/fpalt_bookcase_smallornate02_dpo',1190), -(16412,16412,'staticobjects/freeport_combined/fpalt_bookcase_smallornate03_dpo',1190), -(16413,16413,'staticobjects/freeport_combined/fpalt_bucket_ornatelarge01_dpo',1190), -(16414,16414,'staticobjects/freeport_combined/fpalt_chair_military01_dpo',1190), -(16415,16415,'staticobjects/freeport_combined/fpalt_chair_ornate01_dpo',1190), -(16416,16416,'staticobjects/freeport_combined/fpalt_chair_stool_military01_dpo',1190), -(16417,16417,'staticobjects/freeport_combined/fpalt_chair_stool_ornate01_dpo',1190), -(16418,16418,'staticobjects/freeport_combined/fpalt_chest_large_ornate01_dpo',1190), -(16419,16419,'staticobjects/freeport_combined/fpalt_chest_small_ornate01_dpo',1190), -(16420,16420,'staticobjects/freeport_combined/fpalt_counter_roundornatelong01_dpo',1190), -(16421,16421,'staticobjects/freeport_combined/fpalt_lighting_floorbraziermilitary01_dpo',1190), -(16422,16422,'staticobjects/freeport_combined/fpalt_lighting_tablecandleplain01_dpo',1190), -(16423,16423,'staticobjects/freeport_combined/fpalt_rugs01_dpo',1190), -(16424,16424,'staticobjects/freeport_combined/fpalt_rugs02_dpo',1190), -(16425,16425,'staticobjects/freeport_combined/fpalt_rugs03_dpo',1190), -(16426,16426,'staticobjects/freeport_combined/fpalt_stable_troughlong01_dpo',1190), -(16427,16427,'staticobjects/freeport_combined/fpalt_stables_haybail01_dpo',1190), -(16428,16428,'staticobjects/freeport_combined/fpalt_table_militarysmall01_dpo',1190), -(16429,16429,'staticobjects/freeport_combined/fpalt_table_ornatesmall01_dpo',1190), -(16430,16430,'staticobjects/freeport_combined/fpalt_training_dummy01_dpo',1190), -(16431,16431,'staticobjects/freeport_combined/fpalt_urn_plain_large01_dpo',1190), -(16432,16432,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_gem_bronze_short',1190), -(16433,16433,'accessories/wearable_items/_exp08/redglow_sets/vanguard/chest',1190), -(16434,16434,'accessories/wearable_items/_exp08/redglow_sets/vanguard/feet',1190), -(16435,16435,'accessories/wearable_items/_exp08/redglow_sets/vanguard/forearms',1190), -(16436,16436,'accessories/wearable_items/_exp08/redglow_sets/vanguard/hands',1190), -(16437,16437,'accessories/wearable_items/_exp08/redglow_sets/vanguard/head',1190), -(16438,16438,'accessories/wearable_items/_exp08/redglow_sets/vanguard/legs',1190), -(16439,16439,'accessories/wearable_items/_exp08/redglow_sets/vanguard/legs_noskirt',1190), -(16440,16440,'accessories/wearable_items/_exp08/redglow_sets/vanguard/redglow_pauldron_left',1190), -(16441,16441,'accessories/wearable_items/_exp08/redglow_sets/vanguard/redglow_pauldron_right',1190), -(16442,16442,'accessories/wearable_items/_exp08/redglow_sets/vanguard/right',1190), -(16443,16443,'accessories/wearable_items/_exp08/redglow_sets/vanguard/shoulders',1190), -(16444,16444,'accessories/wearable_items/_exp08/redglow_sets/vanguard/shoulders_epic_pauldrons',1190), -(16445,16445,'accessories/wearable_items/_exp08/redglow_sets/vanguard/shoulders_nopauldrons',1190), -(16446,16446,'accessories/wearable_items/_exp08/redglow_sets/vanguard/skirt',1190), -(16447,16447,'accessories/wearable_items/cloak/exp08/cloak_beastlord_epic',1190), -(16448,16448,'staticobjects/_exp06/odno_kejak_ladder',1190), -(16449,16449,'_exp08/characters/monsters/dragon_lumpy/dragon_lumpy_purple',1190), -(16450,16450,'_exp08/characters/monsters/dragon_lumpy/dragon_lumpy_purple_glowing',1190), -(16451,16451,'_exp08/characters/monsters/dragon_lumpy/dragon_lumpy_red',1190), -(16452,16452,'_exp08/characters/monsters/dragon_lumpy/dragon_lumpy_red_glowing',1190), -(16453,16453,'accessories/wearable_items/_exp08/redglow_sets/chain/chest',1190), -(16454,16454,'accessories/wearable_items/_exp08/redglow_sets/chain/feet',1190), -(16455,16455,'accessories/wearable_items/_exp08/redglow_sets/chain/forearms',1190), -(16456,16456,'accessories/wearable_items/_exp08/redglow_sets/chain/hands',1190), -(16457,16457,'accessories/wearable_items/_exp08/redglow_sets/chain/head',1190), -(16458,16458,'accessories/wearable_items/_exp08/redglow_sets/chain/legs',1190), -(16459,16459,'accessories/wearable_items/_exp08/redglow_sets/chain/legs_noskirt',1190), -(16460,16460,'accessories/wearable_items/_exp08/redglow_sets/chain/pauldron_left',1190), -(16461,16461,'accessories/wearable_items/_exp08/redglow_sets/chain/pauldron_right',1190), -(16462,16462,'accessories/wearable_items/_exp08/redglow_sets/chain/shoulders',1190), -(16463,16463,'accessories/wearable_items/_exp08/redglow_sets/chain/shoulders_pauldrons',1190), -(16464,16464,'accessories/wearable_items/_exp08/redglow_sets/chain/skirt',1190), -(16465,16465,'staticobjects/_exp06/odno_rock01_purple',1190), -(16466,16466,'accessories/wearable_items/_exp08/grozmok_robe/antler_left',1190), -(16467,16467,'accessories/wearable_items/_exp08/grozmok_robe/antler_right',1190), -(16468,16468,'accessories/wearable_items/_exp08/grozmok_robe/chest',1190), -(16469,16469,'accessories/wearable_items/_exp08/grozmok_robe/chest_pauldrons',1190), -(16470,16470,'accessories/wearable_items/_exp08/grozmok_robe/feet',1190), -(16471,16471,'accessories/wearable_items/_exp08/grozmok_robe/grozmok_pauldron_left',1190), -(16472,16472,'accessories/wearable_items/_exp08/grozmok_robe/grozmok_pauldron_right',1190), -(16473,16473,'accessories/wearable_items/_exp08/grozmok_robe/hands',1190), -(16474,16474,'accessories/wearable_items/_exp08/grozmok_robe/head',1190), -(16475,16475,'accessories/wearable_items/_exp08/grozmok_robe/head_collar',1190), -(16476,16476,'accessories/wearable_items/_exp08/grozmok_robe/head_epic',1190), -(16477,16477,'accessories/wearable_items/_exp08/grozmok_robe/pants',1190), -(16478,16478,'accessories/wearable_items/_exp08/grozmok_robe/skirt',1190), -(16479,16479,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_gem_rapier',1190), -(16480,16480,'staticobjects/_exp06/bl_kerra_stone',1190), -(16481,16481,'staticobjects/_exp06/bl_kerra_stone_broken',1190), -(16482,16482,'_exp08/characters/tool_users/lucan_2011/lucan_2011',1190), -(16483,16483,'accessories/wearable_items/_exp08/redglow_sets/gi/chest',1190), -(16484,16484,'accessories/wearable_items/_exp08/redglow_sets/gi/feet',1190), -(16485,16485,'accessories/wearable_items/_exp08/redglow_sets/gi/head',1190), -(16486,16486,'accessories/wearable_items/_exp08/redglow_sets/gi/legs',1190), -(16487,16487,'accessories/wearable_items/_exp08/redglow_sets/gi/shoulders',1190), -(16488,16488,'accessories/wearable_items/_exp08/redglow_sets/gi/skirt',1190), -(16489,16489,'accessories/wearable_items/_exp08/redglow_sets/gi/female/arms',1190), -(16490,16490,'accessories/wearable_items/_exp08/redglow_sets/gi/male/shoulders',1190), -(16491,16491,'accessories/wearable_items/_exp08/redglow_sets/gi/monk_hat/head',1190), -(16492,16492,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_gem_epee',1190), -(16493,16493,'staticobjects/housing_portal_objects/vision_home_lavastorm',1190), -(16494,16494,'_exp08/characters/monsters/timber_wolf_harbinger',1190), -(16495,16495,'_exp08/characters/monsters/bear_harbinger',1190), -(16496,16496,'_exp08/characters/monsters/chokidai_harbinger',1190), -(16497,16497,'_exp08/characters/monsters/crocodile_harbinger',1190), -(16498,16498,'_exp08/characters/monsters/tiger_harbinger',1190), -(16499,16499,'ec/npc/wheel',1190), -(16500,16500,'staticobjects/crates/freeport_crate_01',1190), -(16501,16501,'staticobjects/crates/freeport_crate_large_militaryboarded',1190), -(16502,16502,'staticobjects/promo_items/anniversary_antonia_statue',1190), -(16503,16503,'staticobjects/promo_items/anniversary_lucan_statue',1190), -(16504,16504,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_gem_cutlass',1190), -(16505,16505,'accessories/wearable_items/profesion_hats/beastlord2/head_beastlord_tintable',1190), -(16506,16506,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_beastlord_epic',1190), -(16507,16507,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_lion',1190), -(16508,16508,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_beastlord_blades_silver',1190), -(16509,16509,'staticobjects/freeport_combined/fpalt_bank_scalestipped01',1190), -(16510,16510,'staticobjects/freeport_combined/fpalt_banner_lucan_hoods_wall01',1190), -(16511,16511,'staticobjects/freeport_combined/fpalt_banner_lucan_hoods_wall02',1190), -(16512,16512,'staticobjects/freeport_combined/fpalt_banner_lucan_stand01',1190), -(16513,16513,'staticobjects/freeport_combined/fpalt_banner_military_stand01',1190), -(16514,16514,'staticobjects/freeport_combined/fpalt_banner_militiahouse01',1190), -(16515,16515,'staticobjects/freeport_combined/fpalt_bed_kingornate01',1190), -(16516,16516,'staticobjects/freeport_combined/fpalt_bed_monk_mat01',1190), -(16517,16517,'staticobjects/freeport_combined/fpalt_bench_militarylong01',1190), -(16518,16518,'staticobjects/freeport_combined/fpalt_bench_ornatelong01',1190), -(16519,16519,'staticobjects/freeport_combined/fpalt_benchstone01',1190), -(16520,16520,'staticobjects/freeport_combined/fpalt_boat_fishing01',1190), -(16521,16521,'staticobjects/freeport_combined/fpalt_bookcase_largeornate01',1190), -(16522,16522,'staticobjects/freeport_combined/fpalt_bookcase_largeornate02',1190), -(16523,16523,'staticobjects/freeport_combined/fpalt_bookcase_largeornate03',1190), -(16524,16524,'staticobjects/freeport_combined/fpalt_bucket_ornatesmall01',1190), -(16525,16525,'staticobjects/freeport_combined/fpalt_chair_military02',1190), -(16526,16526,'staticobjects/freeport_combined/fpalt_chair_ornate02',1190), -(16527,16527,'staticobjects/freeport_combined/fpalt_chair_ornate03',1190), -(16528,16528,'staticobjects/freeport_combined/fpalt_chest_large_plainsymbol01',1190), -(16529,16529,'staticobjects/freeport_combined/fpalt_counter_cornerornatemedium01',1190), -(16530,16530,'staticobjects/freeport_combined/fpalt_counter_cornerornatemedium02',1190), -(16531,16531,'staticobjects/freeport_combined/fpalt_counter_straightornatelong01',1190), -(16532,16532,'staticobjects/freeport_combined/fpalt_counter_straightornatemedium01',1190), -(16533,16533,'staticobjects/freeport_combined/fpalt_counter_straightornatesmall01',1190), -(16534,16534,'staticobjects/freeport_combined/fpalt_crate_large_militaryboarded01',1190), -(16535,16535,'staticobjects/freeport_combined/fpalt_crate_large_plainboardedsymbol01',1190), -(16536,16536,'staticobjects/freeport_combined/fpalt_crate_portwine01',1190), -(16537,16537,'staticobjects/freeport_combined/fpalt_crate_small_military01',1190), -(16538,16538,'staticobjects/freeport_combined/fpalt_crate_small_plain01',1190), -(16539,16539,'staticobjects/freeport_combined/fpalt_dartboard01',1190), -(16540,16540,'staticobjects/freeport_combined/fpalt_displays_cabinetornate01',1190), -(16541,16541,'staticobjects/freeport_combined/fpalt_fireplace_military01',1190), -(16542,16542,'staticobjects/freeport_combined/fpalt_fireplace_ornatestone01',1190), -(16543,16543,'staticobjects/freeport_combined/fpalt_forge_anvil01',1190), -(16544,16544,'staticobjects/freeport_combined/fpalt_forge_grindingwheel01',1190), -(16545,16545,'staticobjects/freeport_combined/fpalt_forge_hammer01',1190), -(16546,16546,'staticobjects/freeport_combined/fpalt_forge_pliers01',1190), -(16547,16547,'staticobjects/freeport_combined/fpalt_hitchingpostmultiple01',1190), -(16548,16548,'staticobjects/freeport_combined/fpalt_hitchingpostsingle01',1190), -(16549,16549,'staticobjects/freeport_combined/fpalt_hoods_roadsign01',1190), -(16550,16550,'staticobjects/freeport_combined/fpalt_keg_ornatelarge001',1190), -(16551,16551,'staticobjects/freeport_combined/fpalt_keg_ornatesmall001',1190), -(16552,16552,'staticobjects/freeport_combined/fpalt_lantern_freestanding01_timed',1190), -(16553,16553,'staticobjects/freeport_combined/fpalt_lighting_chandaliermilitary01',1190), -(16554,16554,'staticobjects/freeport_combined/fpalt_lighting_chandalierornate01',1190), -(16555,16555,'staticobjects/freeport_combined/fpalt_lighting_floorbrazierornate01',1190), -(16556,16556,'staticobjects/freeport_combined/fpalt_lighting_floorbrazierplain02',1190), -(16557,16557,'staticobjects/freeport_combined/fpalt_lighting_tablebrazier_coals001',1190), -(16558,16558,'staticobjects/freeport_combined/fpalt_lighting_tablecandlemagical01',1190), -(16559,16559,'staticobjects/freeport_combined/fpalt_lighting_tablecandleornate01',1190), -(16560,16560,'staticobjects/freeport_combined/fpalt_lighting_tablecandleplain02',1190), -(16561,16561,'staticobjects/freeport_combined/fpalt_lighting_wallsconcemilitary01',1190), -(16562,16562,'staticobjects/freeport_combined/fpalt_lighting_wallsconceornate01',1190), -(16563,16563,'staticobjects/freeport_combined/fpalt_mailbox_kiosk01',1190), -(16564,16564,'staticobjects/freeport_combined/fpalt_mariners_bell01_all',1190), -(16565,16565,'staticobjects/freeport_combined/fpalt_nautical_steeringwheelstand01',1190), -(16566,16566,'staticobjects/freeport_combined/fpalt_roadsign_arrow01_beggarsct',1190), -(16567,16567,'staticobjects/freeport_combined/fpalt_roadsign_arrow01_bigbend',1190), -(16568,16568,'staticobjects/freeport_combined/fpalt_roadsign_arrow01_longshadow',1190), -(16569,16569,'staticobjects/freeport_combined/fpalt_roadsign_arrow01_temple',1190), -(16570,16570,'staticobjects/freeport_combined/fpalt_rug_rolled_group01',1190), -(16571,16571,'staticobjects/freeport_combined/fpalt_scribe_scroll01',1190), -(16572,16572,'staticobjects/freeport_combined/fpalt_scribe_scroll02',1190), -(16573,16573,'staticobjects/freeport_combined/fpalt_scribe_scroll03',1190), -(16574,16574,'staticobjects/freeport_combined/fpalt_shelves_ornatelong001',1190), -(16575,16575,'staticobjects/freeport_combined/fpalt_shelves_ornatelongdouble001',1190), -(16576,16576,'staticobjects/freeport_combined/fpalt_shelves_ornateshortdouble001',1190), -(16577,16577,'staticobjects/freeport_combined/fpalt_table_endtableornate01',1190), -(16578,16578,'staticobjects/freeport_combined/fpalt_table_militarylarge01',1190), -(16579,16579,'staticobjects/freeport_combined/fpalt_table_militarystone01',1190), -(16580,16580,'staticobjects/freeport_combined/fpalt_table_militia_round01',1190), -(16581,16581,'staticobjects/freeport_combined/fpalt_table_ornatelarge01',1190), -(16582,16582,'staticobjects/freeport_combined/fpalt_table_workbenchplain01',1190), -(16583,16583,'staticobjects/freeport_combined/fpalt_tools_hammer001',1190), -(16584,16584,'staticobjects/freeport_combined/fpalt_tools_handsaw001',1190), -(16585,16585,'staticobjects/freeport_combined/fpalt_trough_round01',1190), -(16586,16586,'staticobjects/freeport_combined/fpalt_urn_ornate_large01',1190), -(16587,16587,'staticobjects/freeport_combined/fpalt_urn_plain_large02',1190), -(16588,16588,'staticobjects/freeport_combined/fpalt_vase_magicalsphere01',1190), -(16589,16589,'staticobjects/freeport_combined/fpalt_vase_ornate_maskhandles01',1190), -(16590,16590,'staticobjects/freeport_combined/fpalt_vase_smallgold01',1190), -(16591,16591,'staticobjects/freeport_combined/fpalt_weaponrack_full01',1190), -(16592,16592,'staticobjects/freeport_combined/fpalt_weaponrack_temple01',1190), -(16593,16593,'staticobjects/freeport_combined/fpalt_weaponrack_temple02',1190), -(16594,16594,'staticobjects/freeport_combined/fpalt_weaponrack_temple03',1190), -(16595,16595,'staticobjects/freeport_combined/fpalt_weaponrack_triple01',1190), -(16596,16596,'staticobjects/freeport_combined/fpalt_weaponrack_triple02',1190), -(16597,16597,'staticobjects/freeport_combined/fpalt_sewer_entrance01',1190), -(16598,16598,'staticobjects/freeport_combined/fpalt_roadsign_arrow01_fprtcity',1190), -(16599,16599,'staticobjects/freeport_combined/fpalt_cellar_door01',1190), -(16600,16600,'accessories/wearable_items/_exp08/combine_armor/chain/chest',1190), -(16601,16601,'accessories/wearable_items/_exp08/combine_armor/chain/feet',1190), -(16602,16602,'accessories/wearable_items/_exp08/combine_armor/chain/forearms',1190), -(16603,16603,'accessories/wearable_items/_exp08/combine_armor/chain/hands',1190), -(16604,16604,'accessories/wearable_items/_exp08/combine_armor/chain/head',1190), -(16605,16605,'accessories/wearable_items/_exp08/combine_armor/chain/legs',1190), -(16606,16606,'accessories/wearable_items/_exp08/combine_armor/chain/legs_noskirt',1190), -(16607,16607,'accessories/wearable_items/_exp08/combine_armor/chain/shoulders',1190), -(16608,16608,'accessories/wearable_items/_exp08/combine_armor/chain/shoulders_epic',1190), -(16609,16609,'accessories/wearable_items/_exp08/combine_armor/chain/skirt',1190), -(16610,16610,'accessories/wearable_items/_exp08/combine_armor/gi_cloth/chest',1190), -(16611,16611,'accessories/wearable_items/_exp08/combine_armor/gi_cloth/cloak',1190), -(16612,16612,'accessories/wearable_items/_exp08/combine_armor/gi_cloth/hands',1190), -(16613,16613,'accessories/wearable_items/_exp08/combine_armor/gi_cloth/head',1190), -(16614,16614,'accessories/wearable_items/_exp08/combine_armor/gi_cloth/legs',1190), -(16615,16615,'accessories/wearable_items/_exp08/combine_armor/leather/chest',1190), -(16616,16616,'accessories/wearable_items/_exp08/combine_armor/leather/feet',1190), -(16617,16617,'accessories/wearable_items/_exp08/combine_armor/leather/forearms',1190), -(16618,16618,'accessories/wearable_items/_exp08/combine_armor/leather/hands',1190), -(16619,16619,'accessories/wearable_items/_exp08/combine_armor/leather/head',1190), -(16620,16620,'accessories/wearable_items/_exp08/combine_armor/leather/legs',1190), -(16621,16621,'accessories/wearable_items/_exp08/combine_armor/leather/legs_noskirt',1190), -(16622,16622,'accessories/wearable_items/_exp08/combine_armor/leather/shoulders',1190), -(16623,16623,'accessories/wearable_items/_exp08/combine_armor/leather/shoulders_epic',1190), -(16624,16624,'accessories/wearable_items/_exp08/combine_armor/leather/skirt',1190), -(16625,16625,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_chain_left',1190), -(16626,16626,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_chain_right',1190), -(16627,16627,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_leather_left',1190), -(16628,16628,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/combine_pauldrons_leather_right',1190), -(16629,16629,'staticobjects/coffins_and_sarcophagus/shroud_no_shroud',1190), -(16630,16630,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_sword_gem_engraved',1190), -(16631,16631,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_gem_dragon_blade',1190), -(16632,16632,'staticobjects/housing_portal_objects/vision_home_sullon_spire',1190), -(16633,16633,'staticobjects/housing_portal_objects/vision_home_stormy_isle',1190), -(16634,16634,'staticobjects/soe_wallet/station_fancy_candleholder',1190), -(16635,16635,'staticobjects/soe_wallet/station_fancy_candleholder_gold',1190), -(16636,16636,'staticobjects/soe_wallet/station_fancy_shelf_gold',1190), -(16637,16637,'staticobjects/soe_wallet/station_fancy_mirror',1190), -(16638,16638,'staticobjects/soe_wallet/station_fancy_mirror_gold',1190), -(16639,16639,'staticobjects/soe_wallet/station_fancy_shelf',1190), -(16640,16640,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_beastlord_blades_silver_red',1190), -(16641,16641,'accessories/wieldable_items/weapons/exp08/fist/exp08_fist_beastlord_blades_blue',1190), -(16642,16642,'_exp08/characters/monsters/nayad_merc/nayad_merc',1190), -(16643,16643,'_exp08/characters/monsters/nayad_merc/nayad_merc_tintable',1190), -(16644,16644,'creatures/tu/mysticdoll_alternate_pin_warrior',1190), -(16645,16645,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_barrel_orc01',1190), -(16646,16646,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bed_shoddy',1190), -(16647,16647,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bench01',1190), -(16648,16648,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bench01_blue',1190), -(16649,16649,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_book_blue',1190), -(16650,16650,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_book_copper',1190), -(16651,16651,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_book_group01',1190), -(16652,16652,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_book_group02',1190), -(16653,16653,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_chest_metal01',1190), -(16654,16654,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bookcase02',1190), -(16655,16655,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bottle',1190), -(16656,16656,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bowl_orc',1190), -(16657,16657,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_bunk_orc01',1190), -(16658,16658,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_butcher_cleaver',1190), -(16659,16659,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_butcher_knife01',1190), -(16660,16660,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_candle_blue',1190), -(16661,16661,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_candle_orange',1190), -(16662,16662,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_candle_wine',1190), -(16663,16663,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_cart_jailer01',1190), -(16664,16664,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_chair01',1190), -(16665,16665,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_chair01_blue',1190), -(16666,16666,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_jail_cup',1190), -(16667,16667,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_chest_metal02',1190), -(16668,16668,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_climbing_spike01',1190), -(16669,16669,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_climbing_spike02',1190), -(16670,16670,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_club',1190), -(16671,16671,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_counter_carving',1190), -(16672,16672,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_crate_wood',1190), -(16673,16673,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_crate_wood_long01',1190), -(16674,16674,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_cup_orc',1190), -(16675,16675,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_darkelfthrone',1190), -(16676,16676,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_firepit_orc01',1190), -(16677,16677,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_firepit_orc_withutensils01',1190), -(16678,16678,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_floursack_single001',1190), -(16679,16679,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_floursack_single002',1190), -(16680,16680,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_floursacksgroup001',1190), -(16681,16681,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_floursacksgroup002',1190), -(16682,16682,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_floursacksgroup003',1190), -(16683,16683,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_forge',1190), -(16684,16684,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_forgetool_poker01',1190), -(16685,16685,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_fryingpan_orc_large01',1190), -(16686,16686,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_gravelcrystalpile01',1190), -(16687,16687,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_gravelcrystalpile02',1190), -(16688,16688,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_gravelpile01',1190), -(16689,16689,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_gravelpile02',1190), -(16690,16690,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_gravelpile03',1190), -(16691,16691,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_hammer01',1190), -(16692,16692,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_oven',1190), -(16693,16693,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_jailer_keys',1190), -(16694,16694,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_jailer_keys_hanging',1190), -(16695,16695,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_keg_orc_large',1190), -(16696,16696,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_knife_orc01',1190), -(16697,16697,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_ladder_orc01',1190), -(16698,16698,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_large_animalcage',1190), -(16699,16699,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_large_animalcage_gold',1190), -(16700,16700,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_cavewall_torch',1190), -(16701,16701,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_chandelier01',1190), -(16702,16702,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_chandelier01_swinging',1190), -(16703,16703,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_chandelier01_swinging_lit',1190), -(16704,16704,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_chandelier_mount',1190), -(16705,16705,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_firepot01',1190), -(16706,16706,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_firepot_small01',1190), -(16707,16707,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_torch01',1190), -(16708,16708,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_wall_sconce01',1190), -(16709,16709,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_wall_sconce01_lit',1190), -(16710,16710,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_wall_sconce02',1190), -(16711,16711,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_lightsource_wall_sconce02_lit',1190), -(16712,16712,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_meat_rack_orc',1190), -(16713,16713,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_miningtool_pick01',1190), -(16714,16714,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_miningtool_shovel01',1190), -(16715,16715,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_orc_banner_crushbone',1190), -(16716,16716,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_orc_banner_emperorcrush',1190), -(16717,16717,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_orc_bonepile01',1190), -(16718,16718,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_wheelbarrow_orc01',1190), -(16719,16719,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_wall_shield01',1190), -(16720,16720,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor02',1190), -(16721,16721,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor02_blue',1190), -(16722,16722,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor',1190), -(16723,16723,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor_blue',1190), -(16724,16724,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor_empty',1190), -(16725,16725,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor_empty_blue',1190), -(16726,16726,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor_spear',1190), -(16727,16727,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapon_rack_floor_spear_blue',1190), -(16728,16728,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weapons_wall_crossed01',1190), -(16729,16729,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall01',1190), -(16730,16730,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall01_blue',1190), -(16731,16731,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall02',1190), -(16732,16732,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall02_blue',1190), -(16733,16733,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall_empty',1190), -(16734,16734,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_weaponsrack_wall_empty_blue',1190), -(16735,16735,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torch001_skull',1190), -(16736,16736,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_planks01',1190), -(16737,16737,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_planks02',1190), -(16738,16738,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_plate_jail',1190), -(16739,16739,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_plate_withbone',1190), -(16740,16740,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_plate_withrats',1190), -(16741,16741,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_polearm',1190), -(16742,16742,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_poleaxe',1190), -(16743,16743,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_post_orc_crushbone',1190), -(16744,16744,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_post_orc_emperorcrush',1190), -(16745,16745,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_potionsack',1190), -(16746,16746,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_pots_orc_large01',1190), -(16747,16747,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_pots_orc_small01',1190), -(16748,16748,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_rubbish_muckbones01',1190), -(16749,16749,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_rubbish_muckbones02',1190), -(16750,16750,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_skull_human01',1190), -(16751,16751,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_spear01',1190), -(16752,16752,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_spoon_orc_wood',1190), -(16753,16753,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_statue_orc_knight01',1190), -(16754,16754,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_stool_orc_wood01',1190), -(16755,16755,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_darkelfthrone',1190), -(16756,16756,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_long',1190), -(16757,16757,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_long_blue',1190), -(16758,16758,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_long_withfood',1190), -(16759,16759,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_small01',1190), -(16760,16760,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_table_small01_blue',1190), -(16761,16761,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_chair01',1190), -(16762,16762,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_hangingcage_long01',1190), -(16763,16763,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_hangingcage_short01',1190), -(16764,16764,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_hangingcage_short01_nofx',1190), -(16765,16765,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_manacles_ceiling_swinging',1190), -(16766,16766,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_manacles_wall01',1190), -(16767,16767,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_manacles_wall02',1190), -(16768,16768,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_pear_closed01',1190), -(16769,16769,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_pear_open01',1190), -(16770,16770,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_stockade01',1190), -(16771,16771,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_table01',1190), -(16772,16772,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_torture_tool01',1190), -(16773,16773,'staticobjects/_exp08/dyod/crushbone/dyod_cbk_trunk_shoddy',1190), -(16774,16774,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass_rotate01',1190), -(16775,16775,'staticobjects/_exp08/dyod/lair_of_scale/dyod_los_jail_cell_piece01',1190), -(16776,16776,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_banner_minion01',1190), -(16777,16777,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_banner_minion_flag',1190), -(16778,16778,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_banner_minion_post01',1190), -(16779,16779,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_bowl_jewels01',1190), -(16780,16780,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_bowl_steam01',1190), -(16781,16781,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_bowl_steam02',1190), -(16782,16782,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_bowl_steam03',1190), -(16783,16783,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_chair_metal01',1190), -(16784,16784,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_chair_metal02',1190), -(16785,16785,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_chest_metal01',1190), -(16786,16786,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_decoration_wall_dragonhead01',1190), -(16787,16787,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_dragoneggs_broken',1190), -(16788,16788,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_dragoneggs_mixed',1190), -(16789,16789,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_dragoneggs_unbroken',1190), -(16790,16790,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lamp_metal_blue',1190), -(16791,16791,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lava_lamp01',1190), -(16792,16792,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_doorwaytorch01',1190), -(16793,16793,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_orb_blue',1190), -(16794,16794,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_walltorch01',1190), -(16795,16795,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_walltorch02',1190), -(16796,16796,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_walltorch02_lit',1190), -(16797,16797,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_lightsource_walltorch_red01',1190), -(16798,16798,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_minion_empty_armorstand01',1190), -(16799,16799,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_minion_weapons_armorstand01',1190), -(16800,16800,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_group01',1190), -(16801,16801,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_group02',1190), -(16802,16802,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_large01',1190), -(16803,16803,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_single01',1190), -(16804,16804,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_single02',1190), -(16805,16805,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_small',1190), -(16806,16806,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_plants_blueflame_smallsingle03',1190), -(16807,16807,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_ring_scales01',1190), -(16808,16808,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass01',1190), -(16809,16809,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass02',1190), -(16810,16810,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass03',1190), -(16811,16811,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass_double01',1190), -(16812,16812,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass_double02',1190), -(16813,16813,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_vase_curved02',1190), -(16814,16814,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass_rotate02',1190), -(16815,16815,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_glass_rotate03',1190), -(16816,16816,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_rotating02',1190), -(16817,16817,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_rotating03',1190), -(16818,16818,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_sculpture_rotating',1190), -(16819,16819,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_statue_dragon01',1190), -(16820,16820,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_statue_dragon02',1190), -(16821,16821,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_statue_dragon_bust01',1190), -(16822,16822,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_table_long01',1190), -(16823,16823,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_table_long02',1190), -(16824,16824,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_table_long_chemistry01',1190), -(16825,16825,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_table_short01',1190), -(16826,16826,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_table_short02',1190), -(16827,16827,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tapestry_awakened_cult01',1190), -(16828,16828,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tapestry_kerafyrm_apocalypse01',1190), -(16829,16829,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tapestry_kerafyrm_awakening01',1190), -(16830,16830,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tent_minion',1190), -(16831,16831,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_brass01',1190), -(16832,16832,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_brass02',1190), -(16833,16833,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_group01',1190), -(16834,16834,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_group02',1190), -(16835,16835,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_purple01',1190), -(16836,16836,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_tome_dragon_purple02',1190), -(16837,16837,'staticobjects/_exp08/dyod/lair_of_scale/dyod_ls_vase_curved01',1190), -(16838,16838,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_dresser_single01',1190), -(16839,16839,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_arcane_bookcase01',1190), -(16840,16840,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_arcane_bottle_glass01',1190), -(16841,16841,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_arcane_bottle_glass02',1190), -(16842,16842,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_arcane_candlestack01',1190), -(16843,16843,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_arcane_potionsack01',1190), -(16844,16844,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_basin01_water',1190), -(16845,16845,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_basin02_water',1190), -(16846,16846,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bed_master01',1190), -(16847,16847,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bed_master02',1190), -(16848,16848,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bed_twin01',1190), -(16849,16849,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bed_twin02',1190), -(16850,16850,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_marble01',1190), -(16851,16851,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_marble_short01',1190), -(16852,16852,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_metal01',1190), -(16853,16853,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_metal_short01',1190), -(16854,16854,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_wood01',1190), -(16855,16855,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bench_wood_short01',1190), -(16856,16856,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_book01',1190), -(16857,16857,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_book02',1190), -(16858,16858,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_book_group01',1190), -(16859,16859,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_book_group02',1190), -(16860,16860,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_book_openbook01',1190), -(16861,16861,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bookcase01',1190), -(16862,16862,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bookcase02',1190), -(16863,16863,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_bookcase_empty01',1190), -(16864,16864,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_candle_white01',1190), -(16865,16865,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_chaise01',1190), -(16866,16866,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_chaise02',1190), -(16867,16867,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_dining01',1190), -(16868,16868,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_dining02',1190), -(16869,16869,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_dining03',1190), -(16870,16870,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chair_dining04',1190), -(16871,16871,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chest_treasure01',1190), -(16872,16872,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_chest_treasure02',1190), -(16873,16873,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_coffin_stone01',1190), -(16874,16874,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_couch01',1190), -(16875,16875,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_couch02',1190), -(16876,16876,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_dresser_servant01',1190), -(16877,16877,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_vase_large01',1190), -(16878,16878,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_fabricbolt01',1190), -(16879,16879,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_fabricbolt02',1190), -(16880,16880,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_candlestick01',1190), -(16881,16881,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_candlestick02',1190), -(16882,16882,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_chandalier01',1190), -(16883,16883,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_chandalier01_swinging',1190), -(16884,16884,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_chandalier02',1190), -(16885,16885,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_chandalier02_swinging',1190), -(16886,16886,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_floor_candelabra01',1190), -(16887,16887,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_floor_candelabra02',1190), -(16888,16888,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_lightsource_table_candelabra01',1190), -(16889,16889,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_manacles_double_wall01',1190), -(16890,16890,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_manacles_double_wall02',1190), -(16891,16891,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_manacles_single_wall01',1190), -(16892,16892,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_manacles_single_wall02',1190), -(16893,16893,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_piano_bench01',1190), -(16894,16894,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_piano_closed01',1190), -(16895,16895,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_piano_open01',1190), -(16896,16896,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_scrolls_stack01',1190), -(16897,16897,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_scrolls_stack02',1190), -(16898,16898,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_bedside01',1190), -(16899,16899,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_coffee01',1190), -(16900,16900,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_endtable01_small',1190), -(16901,16901,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_hallway01',1190), -(16902,16902,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_long01',1190), -(16903,16903,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_magical01',1190), -(16904,16904,'staticobjects/_exp08/dyod/mistmoore/dyod_cm_table_short01',1190), -(16905,16905,'staticobjects/_exp08/dyod/dungeon_builder_enter_box',1190), -(16906,16906,'staticobjects/shield/shard_of_love_shield_gold_dpo',1190), -(16907,16907,'creatures/monsters/monitorlizard_orange_no_idle_sound',1190), -(16908,16908,'staticobjects/freeport_combined/grozmok_pauldron_dpo',1190), -(16909,16909,'staticobjects/pictures/freeport_painting01',1190), -(16910,16910,'staticobjects/pictures/freeport_painting02',1190), -(16911,16911,'staticobjects/pictures/freeport_painting03',1190), -(16912,16912,'staticobjects/pictures/freeport_painting04',1190), -(16913,16913,'staticobjects/pictures/freeport_painting05',1190), -(16914,16914,'staticobjects/pictures/freeport_painting06',1190), -(16915,16915,'staticobjects/pictures/freeport_painting07',1190), -(16916,16916,'staticobjects/_exp08/dyod/chardok/dyod_char_banner_dizok01',1190), -(16917,16917,'staticobjects/_exp08/dyod/chardok/dyod_char_banner_dizok02',1190), -(16918,16918,'staticobjects/_exp08/dyod/chardok/dyod_char_bed_sarnak_bunk01',1190), -(16919,16919,'staticobjects/_exp08/dyod/chardok/dyod_char_bed_sarnak_bunk02',1190), -(16920,16920,'staticobjects/_exp08/dyod/chardok/dyod_char_book01_dizok',1190), -(16921,16921,'staticobjects/_exp08/dyod/chardok/dyod_char_book02_korsha',1190), -(16922,16922,'staticobjects/_exp08/dyod/chardok/dyod_char_book_single01',1190), -(16923,16923,'staticobjects/_exp08/dyod/chardok/dyod_char_book_single02',1190), -(16924,16924,'staticobjects/_exp08/dyod/chardok/dyod_char_bookcase01',1190), -(16925,16925,'staticobjects/_exp08/dyod/chardok/dyod_char_bookcase01_empty01',1190), -(16926,16926,'staticobjects/_exp08/dyod/chardok/dyod_char_bookcase02',1190), -(16927,16927,'staticobjects/_exp08/dyod/chardok/dyod_char_bookcase02_empty01',1190), -(16928,16928,'staticobjects/_exp08/dyod/chardok/dyod_char_chain_hook_empty_swinging',1190), -(16929,16929,'staticobjects/_exp08/dyod/chardok/dyod_char_chain_hook_skull_swinging',1190), -(16930,16930,'staticobjects/_exp08/dyod/chardok/dyod_char_chest_military01',1190), -(16931,16931,'staticobjects/_exp08/dyod/chardok/dyod_char_chest_sarnak_treasure01',1190), -(16932,16932,'staticobjects/_exp08/dyod/chardok/dyod_char_haypile01',1190), -(16933,16933,'staticobjects/_exp08/dyod/chardok/dyod_char_hitchingpost_sokokar01',1190), -(16934,16934,'staticobjects/_exp08/dyod/chardok/dyod_char_lantern_antibat01',1190), -(16935,16935,'staticobjects/_exp08/dyod/chardok/dyod_char_lightsource_brazier01',1190), -(16936,16936,'staticobjects/_exp08/dyod/chardok/dyod_char_lightsource_chandalier01',1190), -(16937,16937,'staticobjects/_exp08/dyod/chardok/dyod_char_lightsource_iksarskull01',1190), -(16938,16938,'staticobjects/_exp08/dyod/chardok/dyod_char_rug01',1190), -(16939,16939,'staticobjects/_exp08/dyod/chardok/dyod_char_rug02',1190), -(16940,16940,'staticobjects/_exp08/dyod/chardok/dyod_char_skull_dizok01',1190), -(16941,16941,'staticobjects/_exp08/dyod/chardok/dyod_char_statue_sarnak01',1190), -(16942,16942,'staticobjects/_exp08/dyod/chardok/dyod_char_statue_sarnak02',1190), -(16943,16943,'staticobjects/_exp08/dyod/chardok/dyod_char_throne_korsha01',1190), -(16944,16944,'staticobjects/_exp08/dyod/chardok/dyod_char_throne_table_tall01',1190), -(16945,16945,'staticobjects/_exp08/dyod/chardok/dyod_char_totem01',1190), -(16946,16946,'staticobjects/_exp08/dyod/chardok/dyod_char_totem02',1190), -(16947,16947,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_base01',1190), -(16948,16948,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_crystal01',1190), -(16949,16949,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_crystal01_colored',1190), -(16950,16950,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_crystal02_runes',1190), -(16951,16951,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_stone01',1190), -(16952,16952,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_stone02_norunes',1190), -(16953,16953,'staticobjects/_exp08/dyod/chardok/dyod_char_totem_stonecrystal01',1190), -(16954,16954,'staticobjects/_exp08/dyod/chardok/dyod_char_weaponrack_empty01',1190), -(16955,16955,'staticobjects/_exp08/dyod/chardok/dyod_char_weaponrack_floor01',1190), -(16956,16956,'staticobjects/_exp08/dyod/chardok/dyod_char_weaponrack_floor02',1190), -(16957,16957,'accessories/wearable_items/snapons/backpacks/backpack_assassin_swivel/backpack_assassin_swivel_kinves',1190), -(16958,16958,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_arcane',1190), -(16959,16959,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_base',1190), -(16960,16960,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_diplomatic',1190), -(16961,16961,'_exp09/characters/tool_users/musk_creeper_giants/musk_creeper_giant1',1190), -(16962,16962,'_exp09/characters/tool_users/musk_creeper_giants/musk_creeper_giant2',1190), -(16963,16963,'_exp09/characters/tool_users/musk_creeper_giants/musk_creeper_giant3',1190), -(16964,16964,'creatures/mounts/frostfell_snow_cloud_housing',1190), -(16965,16965,'_exp08/characters/monsters/dragon_bone_golem/dragon_bone_golem_blue',1190), -(16966,16966,'_exp08/characters/monsters/dragon_bone_golem/dragon_bone_golem_red',1190), -(16967,16967,'_exp09/characters/monsters/queen_bug/queen_bug_blue',1190), -(16968,16968,'_exp09/characters/monsters/queen_bug/queen_bug_red',1190), -(16969,16969,'accessories/wearable_items/_exp09/freeport_militia/vanguard/chest',1190), -(16970,16970,'accessories/wearable_items/_exp09/freeport_militia/vanguard/epic_pauldron_left',1190), -(16971,16971,'accessories/wearable_items/_exp09/freeport_militia/vanguard/epic_pauldron_right',1190), -(16972,16972,'accessories/wearable_items/_exp09/freeport_militia/vanguard/feet',1190), -(16973,16973,'accessories/wearable_items/_exp09/freeport_militia/vanguard/forearms',1190), -(16974,16974,'accessories/wearable_items/_exp09/freeport_militia/vanguard/hands',1190), -(16975,16975,'accessories/wearable_items/_exp09/freeport_militia/vanguard/head',1190), -(16976,16976,'accessories/wearable_items/_exp09/freeport_militia/vanguard/head_epic',1190), -(16977,16977,'accessories/wearable_items/_exp09/freeport_militia/vanguard/legs',1190), -(16978,16978,'accessories/wearable_items/_exp09/freeport_militia/vanguard/legs_noskirt',1190), -(16979,16979,'accessories/wearable_items/_exp09/freeport_militia/vanguard/right',1190), -(16980,16980,'accessories/wearable_items/_exp09/freeport_militia/vanguard/shoulders',1190), -(16981,16981,'accessories/wearable_items/_exp09/freeport_militia/vanguard/shoulders_epic',1190), -(16982,16982,'accessories/wearable_items/_exp09/freeport_militia/vanguard/shoulders_nopauldrons',1190), -(16983,16983,'accessories/wearable_items/_exp09/freeport_militia/vanguard/skirt',1190), -(16984,16984,'accessories/wearable_items/cloak/exp09/cloak_freeport_militia',1190), -(16985,16985,'accessories/wearable_items/_exp08/freeport_lucanknight/chest',1190), -(16986,16986,'accessories/wearable_items/_exp08/freeport_lucanknight/cowl',1190), -(16987,16987,'accessories/wearable_items/_exp08/freeport_lucanknight/feet',1190), -(16988,16988,'accessories/wearable_items/_exp08/freeport_lucanknight/forearm_left',1190), -(16989,16989,'accessories/wearable_items/_exp08/freeport_lucanknight/forearm_right',1190), -(16990,16990,'accessories/wearable_items/_exp08/freeport_lucanknight/forearms',1190), -(16991,16991,'accessories/wearable_items/_exp08/freeport_lucanknight/hands',1190), -(16992,16992,'accessories/wearable_items/_exp08/freeport_lucanknight/hands_epic',1190), -(16993,16993,'accessories/wearable_items/_exp08/freeport_lucanknight/head',1190), -(16994,16994,'accessories/wearable_items/_exp08/freeport_lucanknight/head_epic',1190), -(16995,16995,'accessories/wearable_items/_exp08/freeport_lucanknight/legs',1190), -(16996,16996,'accessories/wearable_items/_exp08/freeport_lucanknight/legs_noskirt',1190), -(16997,16997,'accessories/wearable_items/_exp08/freeport_lucanknight/pauldron_left',1190), -(16998,16998,'accessories/wearable_items/_exp08/freeport_lucanknight/pauldron_right',1190), -(16999,16999,'accessories/wearable_items/_exp08/freeport_lucanknight/right',1190), -(17000,17000,'accessories/wearable_items/_exp08/freeport_lucanknight/shoulders',1190), -(17001,17001,'accessories/wearable_items/_exp08/freeport_lucanknight/shoulders_epic',1190), -(17002,17002,'accessories/wearable_items/_exp08/freeport_lucanknight/shoulders_nopauldrons',1190), -(17003,17003,'accessories/wearable_items/_exp08/freeport_lucanknight/skirt',1190), -(17004,17004,'accessories/wearable_items/cloak/exp09/cloak_arcane_science_incut',1190), -(17005,17005,'accessories/wearable_items/cloak/exp09/cloak_arcane_science_scallop',1190), -(17006,17006,'accessories/wearable_items/cloak/exp09/cloak_arcane_science_sq',1190), -(17007,17007,'accessories/wearable_items/_exp09/robe_arcane_science/chest',1190), -(17008,17008,'accessories/wearable_items/_exp09/robe_arcane_science/chest_epic',1190), -(17009,17009,'accessories/wearable_items/_exp09/robe_arcane_science/feet',1190), -(17010,17010,'accessories/wearable_items/_exp09/robe_arcane_science/hands',1190), -(17011,17011,'accessories/wearable_items/_exp09/robe_arcane_science/head',1190), -(17012,17012,'accessories/wearable_items/_exp09/robe_arcane_science/head_collar_flared',1190), -(17013,17013,'accessories/wearable_items/_exp09/robe_arcane_science/pants',1190), -(17014,17014,'accessories/wearable_items/_exp09/robe_arcane_science/pauldron_left',1190), -(17015,17015,'accessories/wearable_items/_exp09/robe_arcane_science/pauldron_right',1190), -(17016,17016,'accessories/wearable_items/_exp09/robe_arcane_science/skirt',1190), -(17017,17017,'accessories/wearable_items/cloak/exp08/cloak_freeportknight_epic',1190), -(17018,17018,'accessories/wearable_items/cloak/exp08/cloak_freeportknight',1190), -(17019,17019,'accessories/wearable_items/cloak/exp08/cloak_freeportknight_npc',1190), -(17020,17020,'accessories/wearable_items/_exp09/chain_dismal_rage/chest',1190), -(17021,17021,'accessories/wearable_items/_exp09/chain_dismal_rage/feet',1190), -(17022,17022,'accessories/wearable_items/_exp09/chain_dismal_rage/forearms',1190), -(17023,17023,'accessories/wearable_items/_exp09/chain_dismal_rage/hands',1190), -(17024,17024,'accessories/wearable_items/_exp09/chain_dismal_rage/head',1190), -(17025,17025,'accessories/wearable_items/_exp09/chain_dismal_rage/head_hood',1190), -(17026,17026,'accessories/wearable_items/_exp09/chain_dismal_rage/legs',1190), -(17027,17027,'accessories/wearable_items/_exp09/chain_dismal_rage/legs_noskirt',1190), -(17028,17028,'accessories/wearable_items/_exp09/chain_dismal_rage/pauldron_left_dismal_rage',1190), -(17029,17029,'accessories/wearable_items/_exp09/chain_dismal_rage/pauldron_right_dismal_rage',1190), -(17030,17030,'accessories/wearable_items/_exp09/chain_dismal_rage/shoulders',1190), -(17031,17031,'accessories/wearable_items/_exp09/chain_dismal_rage/shoulders_epic',1190), -(17032,17032,'accessories/wearable_items/_exp09/chain_dismal_rage/skirt',1190), -(17033,17033,'accessories/wearable_items/cloak/exp09/cloak_dismal_rage',1190), -(17034,17034,'accessories/wearable_items/cloak/exp09/cloak_dismal_rage_incut',1190), -(17035,17035,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/chest',1190), -(17036,17036,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/feet',1190), -(17037,17037,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/feet_peg_left',1190), -(17038,17038,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/feet_peg_right',1190), -(17039,17039,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/forearms',1190), -(17040,17040,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/hands',1190), -(17041,17041,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/head',1190), -(17042,17042,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/head_captain',1190), -(17043,17043,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/head_swashbuckler',1190), -(17044,17044,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/legs',1190), -(17045,17045,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/shoulders',1190), -(17046,17046,'accessories/wearable_items/_exp09/seafury_buccaneer/heavycloth/skirt',1190), -(17047,17047,'accessories/wearable_items/cloak/exp09/cloak_seafury_buccaneer',1190), -(17048,17048,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_greenyellow',1190), -(17049,17049,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_ice',1190), -(17050,17050,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_natural',1190), -(17051,17051,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_redgray',1190), -(17052,17052,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_sand',1190), -(17053,17053,'_exp09/characters/monsters/wyvern_updated/wyvern_updated_shadow',1190), -(17054,17054,'_exp04/monsters/xygoz01',1190), -(17055,17055,'_exp04/monsters/dragon_skeleton01',1190), -(17056,17056,'_exp04/monsters/hoshkar01',1190), -(17057,17057,'_exp04/monsters/nexona01',1190), -(17058,17058,'_exp04/monsters/xygoz_fire01',1190), -(17059,17059,'_exp04/monsters/xygoz_shade01',1190), -(17060,17060,'_exp04/monsters/xygoz_spirit01',1190), -(17061,17061,'_exp08/characters/monsters/dragon_bone_golem/dragon_bone_golem',1190), -(17062,17062,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_boss',1190), -(17063,17063,'staticobjects/pillow/drv_pillow_seat_weights01',1190), -(17064,17064,'staticobjects/pillow/drv_pillow_seat_weights02',1190), -(17065,17065,'staticobjects/pillow/slove02_drapery_houseitem01',1190), -(17066,17066,'staticobjects/benches/slove02_flame_bench01',1190), -(17067,17067,'_exp09/characters/monsters/cobalt_scar_bear/timber_bear_black',1190), -(17068,17068,'_exp09/characters/monsters/cobalt_scar_bear/timber_bear_brown',1190), -(17069,17069,'_exp09/characters/monsters/cobalt_scar_bear/timber_bear_grey',1190), -(17070,17070,'_exp08/characters/tool_users/chitari/chitari_male_heavy02',1190), -(17071,17071,'_exp08/characters/tool_users/chitari/chitari_male_light02',1190), -(17072,17072,'_exp08/characters/tool_users/chitari/chitari_swivel_skull',1190), -(17073,17073,'staticobjects/liveevent/erollisi_objects/dpo_bauble_bow_string_daisy_purple',1190), -(17074,17074,'staticobjects/liveevent/erollisi_objects/dpo_bauble_bow_string_mums_red',1190), -(17075,17075,'staticobjects/liveevent/erollisi_objects/dpo_bauble_rose_purple',1190), -(17076,17076,'staticobjects/liveevent/erollisi_objects/dpo_bauble_rose_red',1190), -(17077,17077,'staticobjects/liveevent/erollisi_objects/dpo_bauble_string_lights_hearts',1190), -(17078,17078,'staticobjects/liveevent/erollisi_objects/dpo_bauble_string_lights_roses',1190), -(17079,17079,'staticobjects/urns/dpo_slove02_vase01',1190), -(17080,17080,'staticobjects/urns/dpo_slove02_vase02',1190), -(17081,17081,'staticobjects/urns/dpo_slove02_vase03',1190), -(17082,17082,'creatures/mounts/drakota_mount/drakota_mount_black',1190), -(17083,17083,'creatures/mounts/drakota_mount/drakota_mount_blue',1190), -(17084,17084,'creatures/mounts/drakota_mount/drakota_mount_green',1190), -(17085,17085,'creatures/mounts/drakota_mount/drakota_mount_red',1190), -(17086,17086,'staticobjects/liveevent/erollisi_objects/othmir_heartpillow_brown',1190), -(17087,17087,'staticobjects/liveevent/erollisi_objects/othmir_heartpillow_white',1190), -(17088,17088,'staticobjects/soe_wallet/building_blocks/ice/houseblock_1x1_column_ice',1190), -(17089,17089,'staticobjects/soe_wallet/building_blocks/ice/houseblock_1x2_column_ice',1190), -(17090,17090,'staticobjects/soe_wallet/building_blocks/ice/houseblock_1x2_divider_ice',1190), -(17091,17091,'staticobjects/soe_wallet/building_blocks/ice/houseblock_1xhalf_ice',1190), -(17092,17092,'staticobjects/soe_wallet/building_blocks/ice/houseblock_2x2_divider_ice',1190), -(17093,17093,'staticobjects/soe_wallet/building_blocks/ice/houseblock_rail_ice',1190), -(17094,17094,'staticobjects/soe_wallet/building_blocks/ice/houseblock_roundtile_ice',1190), -(17095,17095,'staticobjects/soe_wallet/building_blocks/ice/houseblock_stair_ice',1190), -(17096,17096,'staticobjects/soe_wallet/building_blocks/ice/housecube_1x1_block_ice',1190), -(17097,17097,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_1x1_column_los_metal',1190), -(17098,17098,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_1x2_column_los_metal',1190), -(17099,17099,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_1x2_divider_los_metal',1190), -(17100,17100,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_1xhalf_los_metal',1190), -(17101,17101,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_2x2_divider_los_metal',1190), -(17102,17102,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_rail_los_metal',1190), -(17103,17103,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_roundtile_los_metal',1190), -(17104,17104,'staticobjects/soe_wallet/building_blocks/los_metal/houseblock_stair_los_metal',1190), -(17105,17105,'staticobjects/soe_wallet/building_blocks/los_metal/housecube_1x1_block_los_metal',1190), -(17106,17106,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_1x1_column_stone2',1190), -(17107,17107,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_1x2_column_stone2',1190), -(17108,17108,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_1x2_dividerblock_stone2',1190), -(17109,17109,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_1xhalf_block_stone2',1190), -(17110,17110,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_2x2_divider_stone2',1190), -(17111,17111,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_rail_stone2',1190), -(17112,17112,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_roundtile_stone2',1190), -(17113,17113,'staticobjects/soe_wallet/building_blocks/qey_stone2/houseblock_stair_stone2',1190), -(17114,17114,'staticobjects/soe_wallet/building_blocks/qey_stone2/housecube_1x1_block_stone2',1190), -(17115,17115,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_1x1_column_redmarble',1190), -(17116,17116,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_1x2_column_redmarble',1190), -(17117,17117,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_1x2_divider_redmarble',1190), -(17118,17118,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_1xhalf_block_redmarble',1190), -(17119,17119,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_2x2_divider_redmarble',1190), -(17120,17120,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_rail_redmarble',1190), -(17121,17121,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_roundtile_redmarble',1190), -(17122,17122,'staticobjects/soe_wallet/building_blocks/red_marble/houseblock_stair_redmarble',1190), -(17123,17123,'staticobjects/soe_wallet/building_blocks/red_marble/housecube_1x1_block_redmarble',1190), -(17124,17124,'staticobjects/panels/dpo_neriak_roof',1190), -(17125,17125,'staticobjects/soe_wallet/grandfather_clock',1190), -(17126,17126,'_exp09/characters/monsters/cobalt_scar_bear/timber_bear_red',1190), -(17127,17127,'_exp09/characters/monsters/cobalt_scar_bear/timber_bear_white',1190), -(17128,17128,'staticobjects/soe_wallet/building_blocks/los_metal/panel_los_metal',1190), -(17129,17129,'staticobjects/soe_wallet/building_blocks/qey_stone2/panel_stone2',1190), -(17130,17130,'staticobjects/soe_wallet/building_blocks/ice/panel_ice',1190), -(17131,17131,'creatures/mounts/class_hover_pads/hover_pad_beastlord',1190), -(17132,17132,'creatures/mounts/drakota_mount/drakota_mount_base',1190), -(17133,17133,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin',1190), -(17134,17134,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight',1190), -(17135,17135,'staticobjects/shield/dpo_sc_exp08_shield_nature',1190), -(17136,17136,'staticobjects/shield/dpo_sc_exp08_shield_vjornir',1190), -(17137,17137,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/chest',1190), -(17138,17138,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/forearms_wristbands',1190), -(17139,17139,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/hands',1190), -(17140,17140,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/legs',1190), -(17141,17141,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/legs_robe_skirt',1190), -(17142,17142,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/shoulder_armband_male',1190), -(17143,17143,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/sash_version/legs',1190), -(17144,17144,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/sash_version/chest',1190), -(17145,17145,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/sash_version/chest_pendant',1190), -(17146,17146,'accessories/wearable_items/_exp08/highelf_heritage_armor/lon/sash_version/hands',1190), -(17147,17147,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/skirt',1190), -(17148,17148,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/chest',1190), -(17149,17149,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/chest_pauldrons',1190), -(17150,17150,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/feet',1190), -(17151,17151,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/hands',1190), -(17152,17152,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/head',1190), -(17153,17153,'accessories/wearable_items/_exp08/highelf_heritage_armor/robe/pants',1190), -(17154,17154,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/shoulder_armband_male_right',1190), -(17155,17155,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/forearm_wristband_male_left',1190), -(17156,17156,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/forearm_wristband_male_right',1190), -(17157,17157,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/chest',1190), -(17158,17158,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/head_highelf_heritage_tiara',1190), -(17159,17159,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/highelf_heritage_pauldrons_left',1190), -(17160,17160,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/highelf_heritage_pauldrons_right',1190), -(17161,17161,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/highelf_heritage_pendant',1190), -(17162,17162,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/shoulder_armband_female_right',1190), -(17163,17163,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/shoulder_armband_male_left',1190), -(17164,17164,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_satyr_witheringlands',1190), -(17165,17165,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_satyr_witheringlands',1190), -(17166,17166,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands',1190), -(17167,17167,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands_swivel',1190), -(17168,17168,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands_ornament_swival_02',1190), -(17169,17169,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands_ornament_swival_01',1190), -(17170,17170,'_exp08/characters/tool_users/satyr_witheringlands/satyr_boss',1190), -(17171,17171,'_exp08/characters/tool_users/satyr_witheringlands/satyr_01',1190), -(17172,17172,'_exp08/characters/tool_users/satyr_witheringlands/satyr_02',1190), -(17173,17173,'_exp08/characters/tool_users/satyr_witheringlands/satyr_03',1190), -(17174,17174,'_exp08/characters/tool_users/satyr_witheringlands/satyr_boss02',1190), -(17175,17175,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/feet',1190), -(17176,17176,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/forearms',1190), -(17177,17177,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/head',1190), -(17178,17178,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/legs',1190), -(17179,17179,'accessories/wearable_items/_exp08/highelf_heritage_armor/station_cash_full_set/shoulders',1190), -(17180,17180,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/chest',1190), -(17181,17181,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/feet',1190), -(17182,17182,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/forearms',1190), -(17183,17183,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/hands',1190), -(17184,17184,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/head',1190), -(17185,17185,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/legs',1190), -(17186,17186,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/legs_noskirt',1190), -(17187,17187,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/shoulders',1190), -(17188,17188,'accessories/wearable_items/_exp08/highelf_heritage_armor/chain/skirt',1190), -(17189,17189,'staticobjects/beds/drunder_sullon_bed_blue',1190), -(17190,17190,'staticobjects/beds/drunder_sullon_bed_gold',1190), -(17191,17191,'staticobjects/beds/drunder_sullon_bed_pink',1190), -(17192,17192,'staticobjects/beds/drunder_sullon_bed_red',1190), -(17193,17193,'staticobjects/beds/drunder_sullon_bed_teal',1190), -(17194,17194,'staticobjects/soe_wallet/drunder_sullon_bed_white',1190), -(17195,17195,'staticobjects/soe_wallet/drunder_sullon_bed_black',1190), -(17196,17196,'staticobjects/soe_wallet/drunder_sullon_bed',1190), -(17197,17197,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_foot_left',1190), -(17198,17198,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_foot_right',1190), -(17199,17199,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_forearm_left',1190), -(17200,17200,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_forearm_right',1190), -(17201,17201,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_left',1190), -(17202,17202,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_right',1190), -(17203,17203,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron2_left',1190), -(17204,17204,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron2_right',1190), -(17205,17205,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_shin_left',1190), -(17206,17206,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_shin_right',1190), -(17207,17207,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_forearm_left',1190), -(17208,17208,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_forearm_right',1190), -(17209,17209,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_left',1190), -(17210,17210,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_right',1190), -(17211,17211,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron2_left',1190), -(17212,17212,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron2_right',1190), -(17213,17213,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_shin_left',1190), -(17214,17214,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_shin_right',1190), -(17215,17215,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/chest',1190), -(17216,17216,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/feet',1190), -(17217,17217,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/feet_epic',1190), -(17218,17218,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/forearms',1190), -(17219,17219,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/hands',1190), -(17220,17220,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/hands_epic',1190), -(17221,17221,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/head',1190), -(17222,17222,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/left',1190), -(17223,17223,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/legs',1190), -(17224,17224,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/legs_epic',1190), -(17225,17225,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/legs_noskirt',1190), -(17226,17226,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/right',1190), -(17227,17227,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/shoulders',1190), -(17228,17228,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/shoulders_epic',1190), -(17229,17229,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/shoulders_nopauldrons',1190), -(17230,17230,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard/skirt',1190), -(17231,17231,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/chest',1190), -(17232,17232,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/feet',1190), -(17233,17233,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/forearms',1190), -(17234,17234,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/hands',1190), -(17235,17235,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/hands_epic',1190), -(17236,17236,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/head',1190), -(17237,17237,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/left',1190), -(17238,17238,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/legs',1190), -(17239,17239,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/legs_epic',1190), -(17240,17240,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/legs_noskirt',1190), -(17241,17241,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/right',1190), -(17242,17242,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/shoulders',1190), -(17243,17243,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/shoulders_epic',1190), -(17244,17244,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/shoulders_nopauldrons',1190), -(17245,17245,'accessories/wearable_items/_exp09/dracurion_player_usable/vanguard2/skirt',1190), -(17246,17246,'staticobjects/building_blocks/adamantine/houseblock_1x1_column_qey_stone12',1190), -(17247,17247,'staticobjects/building_blocks/adamantine/houseblock_1x2_column_qey_stone12',1190), -(17248,17248,'staticobjects/building_blocks/adamantine/houseblock_1x2_dividerblock_qey_stone12',1190), -(17249,17249,'staticobjects/building_blocks/adamantine/houseblock_1xhalf_block_qey_stone12',1190), -(17250,17250,'staticobjects/building_blocks/adamantine/houseblock_2x2_dividerblock_qey_stone12',1190), -(17251,17251,'staticobjects/building_blocks/adamantine/houseblock_rail_qey_stone12',1190), -(17252,17252,'staticobjects/building_blocks/adamantine/houseblock_roundtile_qey_stone12',1190), -(17253,17253,'staticobjects/building_blocks/adamantine/houseblock_stair_qey_stone12',1190), -(17254,17254,'staticobjects/building_blocks/adamantine/housecube_1x1_block_qey_stone12',1190), -(17255,17255,'staticobjects/building_blocks/ash/houseblock_1x1_column_blondwood',1190), -(17256,17256,'staticobjects/building_blocks/ash/houseblock_1x2_column_blondwood',1190), -(17257,17257,'staticobjects/building_blocks/ash/houseblock_1x2_dividerblock_blondwood',1190), -(17258,17258,'staticobjects/building_blocks/ash/houseblock_1xhalf_block_blondwood',1190), -(17259,17259,'staticobjects/building_blocks/ash/houseblock_2x2_dividerblock_blondwood',1190), -(17260,17260,'staticobjects/building_blocks/ash/houseblock_rail_blondwood',1190), -(17261,17261,'staticobjects/building_blocks/ash/houseblock_roundtile_blondwood',1190), -(17262,17262,'staticobjects/building_blocks/ash/houseblock_stair_blondwood',1190), -(17263,17263,'staticobjects/building_blocks/ash/housecube_1x1_block_blondwood',1190), -(17264,17264,'staticobjects/building_blocks/briarwood/houseblock_1x1_column_marrwood',1190), -(17265,17265,'staticobjects/building_blocks/briarwood/houseblock_1x2_column_marrwood',1190), -(17266,17266,'staticobjects/building_blocks/briarwood/houseblock_1x2_dividerblock_marrwood',1190), -(17267,17267,'staticobjects/building_blocks/briarwood/houseblock_1xhalf_block_marrwood',1190), -(17268,17268,'staticobjects/building_blocks/briarwood/houseblock_2x2_dividerblock_marrwood',1190), -(17269,17269,'staticobjects/building_blocks/briarwood/houseblock_rail_marrwood',1190), -(17270,17270,'staticobjects/building_blocks/briarwood/houseblock_roundtile_marrwood',1190), -(17271,17271,'staticobjects/building_blocks/briarwood/houseblock_stair_marrwood',1190), -(17272,17272,'staticobjects/building_blocks/briarwood/housecube_1x1_block_marrwood',1190), -(17273,17273,'staticobjects/building_blocks/elm/houseblock_1x1_column_weathereddark',1190), -(17274,17274,'staticobjects/building_blocks/elm/houseblock_1x2_column_weathereddark',1190), -(17275,17275,'staticobjects/building_blocks/elm/houseblock_1x2_dividerblock_weathereddark',1190), -(17276,17276,'staticobjects/building_blocks/elm/houseblock_1xhalf_block_weathereddark',1190), -(17277,17277,'staticobjects/building_blocks/elm/houseblock_2x2_dividerblock_weathereddark',1190), -(17278,17278,'staticobjects/building_blocks/elm/houseblock_rail_weathereddark',1190), -(17279,17279,'staticobjects/building_blocks/elm/houseblock_roundtile_weathereddark',1190), -(17280,17280,'staticobjects/building_blocks/elm/houseblock_stair_weathereddark',1190), -(17281,17281,'staticobjects/building_blocks/elm/housecube_1x1_block_weathereddark',1190), -(17282,17282,'staticobjects/building_blocks/fulginate/houseblock_1x1_column_qey_stone14',1190), -(17283,17283,'staticobjects/building_blocks/fulginate/houseblock_1x2_column_qey_stone14',1190), -(17284,17284,'staticobjects/building_blocks/fulginate/houseblock_1x2_dividerblock_qey_stone14',1190), -(17285,17285,'staticobjects/building_blocks/fulginate/houseblock_1xhalf_block_qey_stone14',1190), -(17286,17286,'staticobjects/building_blocks/fulginate/houseblock_2x2_dividerblock_qey_stone14',1190), -(17287,17287,'staticobjects/building_blocks/fulginate/houseblock_rail_qey_stone14',1190), -(17288,17288,'staticobjects/building_blocks/fulginate/houseblock_roundtile_qey_stone14',1190), -(17289,17289,'staticobjects/building_blocks/fulginate/houseblock_stair_qey_stone14',1190), -(17290,17290,'staticobjects/building_blocks/fulginate/housecube_1x1_block_qey_stone14',1190), -(17291,17291,'staticobjects/building_blocks/maple/houseblock_1x1_column_brownwood',1190), -(17292,17292,'staticobjects/building_blocks/maple/houseblock_1x2_column_brownwood',1190), -(17293,17293,'staticobjects/building_blocks/maple/houseblock_1x2_dividerblock_brownwood',1190), -(17294,17294,'staticobjects/building_blocks/maple/houseblock_1xhalf_block_brownwood',1190), -(17295,17295,'staticobjects/building_blocks/maple/houseblock_2x2_dividerblock_brownwood',1190), -(17296,17296,'staticobjects/building_blocks/maple/houseblock_rail_brownwood',1190), -(17297,17297,'staticobjects/building_blocks/maple/houseblock_roundtile_brownwood',1190), -(17298,17298,'staticobjects/building_blocks/maple/houseblock_stair_brownwood',1190), -(17299,17299,'staticobjects/building_blocks/maple/housecube_1x1_block_brownwood',1190), -(17300,17300,'staticobjects/building_blocks/mossybriarwood/houseblock_1x1_column_mossywood',1190), -(17301,17301,'staticobjects/building_blocks/mossybriarwood/houseblock_1x2_column_mossywood',1190), -(17302,17302,'staticobjects/building_blocks/mossybriarwood/houseblock_1x2_dividerblock_mossywood',1190), -(17303,17303,'staticobjects/building_blocks/mossybriarwood/houseblock_1xhalf_block_mossywood',1190), -(17304,17304,'staticobjects/building_blocks/mossybriarwood/houseblock_2x2_dividerblock_mossywood',1190), -(17305,17305,'staticobjects/building_blocks/mossybriarwood/houseblock_rail_mossywood',1190), -(17306,17306,'staticobjects/building_blocks/mossybriarwood/houseblock_roundtile_mossywood',1190), -(17307,17307,'staticobjects/building_blocks/mossybriarwood/houseblock_stair_mossywood',1190), -(17308,17308,'staticobjects/building_blocks/mossybriarwood/housecube_1x1_block_mossywood',1190), -(17309,17309,'staticobjects/building_blocks/redwood/houseblock_1x1_column_tablenoplanks',1190), -(17310,17310,'staticobjects/building_blocks/redwood/houseblock_1x2_column_tablenoplanks',1190), -(17311,17311,'staticobjects/building_blocks/redwood/houseblock_1x2_dividerblock_tablenoplanks',1190), -(17312,17312,'staticobjects/building_blocks/redwood/houseblock_1xhalf_block_tablenoplanks',1190), -(17313,17313,'staticobjects/building_blocks/redwood/houseblock_2x2_dividerblock_tablenoplanks',1190), -(17314,17314,'staticobjects/building_blocks/redwood/houseblock_rail_tablenoplanks',1190), -(17315,17315,'staticobjects/building_blocks/redwood/houseblock_roundtile_tablenoplanks',1190), -(17316,17316,'staticobjects/building_blocks/redwood/houseblock_stair_tablenoplanks',1190), -(17317,17317,'staticobjects/building_blocks/redwood/housecube_1x1_block_tablenoplanks',1190), -(17318,17318,'staticobjects/building_blocks/sandalwood/houseblock_1x1_column_metalwood01',1190), -(17319,17319,'staticobjects/building_blocks/sandalwood/houseblock_1x2_column_metalwood01',1190), -(17320,17320,'staticobjects/building_blocks/sandalwood/houseblock_1x2_dividerblock_metalwood01',1190), -(17321,17321,'staticobjects/building_blocks/sandalwood/houseblock_1xhalf_block_metalwood01',1190), -(17322,17322,'staticobjects/building_blocks/sandalwood/houseblock_2x2_dividerblock_metalwood01',1190), -(17323,17323,'staticobjects/building_blocks/sandalwood/houseblock_rail_metalwood01',1190), -(17324,17324,'staticobjects/building_blocks/sandalwood/houseblock_roundtile_metalwood01',1190), -(17325,17325,'staticobjects/building_blocks/sandalwood/houseblock_stair_metalwood01',1190), -(17326,17326,'staticobjects/building_blocks/sandalwood/housecube_1x1_block_metalwood01',1190), -(17327,17327,'staticobjects/building_blocks/sumac/houseblock_1x1_column_sumacwood',1190), -(17328,17328,'staticobjects/building_blocks/sumac/houseblock_1x2_column_sumacwood',1190), -(17329,17329,'staticobjects/building_blocks/sumac/houseblock_1x2_dividerblock_sumacwood',1190), -(17330,17330,'staticobjects/building_blocks/sumac/houseblock_1xhalf_block_sumacwood',1190), -(17331,17331,'staticobjects/building_blocks/sumac/houseblock_2x2_dividerblock_sumacwood',1190), -(17332,17332,'staticobjects/building_blocks/sumac/houseblock_rail_sumacwood',1190), -(17333,17333,'staticobjects/building_blocks/sumac/houseblock_roundtile_sumacwood',1190), -(17334,17334,'staticobjects/building_blocks/sumac/houseblock_stair_sumacwood',1190), -(17335,17335,'staticobjects/building_blocks/sumac/housecube_1x1_block_sumacwood',1190), -(17336,17336,'staticobjects/building_blocks/teak/houseblock_1x1_column_wavywood',1190), -(17337,17337,'staticobjects/building_blocks/teak/houseblock_1x2_column_wavywood',1190), -(17338,17338,'staticobjects/building_blocks/teak/houseblock_1x2_dividerblock_wavywood',1190), -(17339,17339,'staticobjects/building_blocks/teak/houseblock_1xhalf_block_wavywood',1190), -(17340,17340,'staticobjects/building_blocks/teak/houseblock_2x2_dividerblock_wavywood',1190), -(17341,17341,'staticobjects/building_blocks/teak/houseblock_rail_wavywood',1190), -(17342,17342,'staticobjects/building_blocks/teak/houseblock_roundtile_wavywood',1190), -(17343,17343,'staticobjects/building_blocks/teak/houseblock_stair_wavywood',1190), -(17344,17344,'staticobjects/building_blocks/teak/housecube_1x1_block_wavywood',1190), -(17345,17345,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight1',1190), -(17346,17346,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight2',1190), -(17347,17347,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight3',1190), -(17348,17348,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight4',1190), -(17349,17349,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin1',1190), -(17350,17350,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin2',1190), -(17351,17351,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin3',1190), -(17352,17352,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin4',1190), -(17353,17353,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_black',1190), -(17354,17354,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_blue',1190), -(17355,17355,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_gold',1190), -(17356,17356,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_green',1190), -(17357,17357,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_red',1190), -(17358,17358,'accessories/wearable_items/cloak/exp08/cloak_high_elf_heritage',1190), -(17359,17359,'staticobjects/liveevent/brew_day/dpo_fpalt_kitchen_muffinplate01',1190), -(17360,17360,'staticobjects/liveevent/brew_day/dpo_fpalt_kitchen_mugplain01',1190), -(17361,17361,'staticobjects/liveevent/brew_day/dpo_fpalt_kitchen_steinornate01',1190), -(17362,17362,'staticobjects/liveevent/brew_day/dpo_fpalt_kitchen_winebottleplain02',1190), -(17363,17363,'staticobjects/liveevent/brew_day/dpo_halfing_bar_rack_cups01',1190), -(17364,17364,'staticobjects/liveevent/brew_day/dpo_halfing_distilery_sm01',1190), -(17365,17365,'staticobjects/liveevent/brew_day/dpo_halfing_fermenting_tank01',1190), -(17366,17366,'staticobjects/liveevent/bristlebane_day/dpo_fpalt_kitchen_winebottleornate01',1190), -(17367,17367,'staticobjects/liveevent/bristlebane_day/dpo_fpalt_kitchen_winebottleplain01',1190), -(17368,17368,'staticobjects/liveevent/bristlebane_day/dpo_runny_table_sm_meat01',1190), -(17369,17369,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_1x1_column_blackmarble',1190), -(17370,17370,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_1x2_column_blackmarble',1190), -(17371,17371,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_1x2_dividerblock_blackmarble',1190), -(17372,17372,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_1xhalf_block_blackmarble',1190), -(17373,17373,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_2x2_dividerblock_blackmarble',1190), -(17374,17374,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_rail_blackmarble',1190), -(17375,17375,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_roundtile_blackmarble',1190), -(17376,17376,'staticobjects/soe_wallet/building_blocks/blackmarble/houseblock_stair_blackmarble',1190), -(17377,17377,'staticobjects/soe_wallet/building_blocks/blackmarble/housecube_1x1_block_blackmarble',1190), -(17378,17378,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_1x1_column_bluemarble',1190), -(17379,17379,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_1x2_column_bluemarble',1190), -(17380,17380,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_1x2_dividerblock_bluemarble',1190), -(17381,17381,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_1xhalf_block_bluemarble',1190), -(17382,17382,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_2x2_dividerblock_bluemarble',1190), -(17383,17383,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_rail_bluemarble',1190), -(17384,17384,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_roundtile_bluemarble',1190), -(17385,17385,'staticobjects/soe_wallet/building_blocks/bluemarble/houseblock_stair_bluemarble',1190), -(17386,17386,'staticobjects/soe_wallet/building_blocks/bluemarble/housecube_1x1_block_bluemarble',1190), -(17387,17387,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_1x1_column_kelethinwood',1190), -(17388,17388,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_1x2_column_kelethinwood',1190), -(17389,17389,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_1x2_dividerblock_kelethinwood',1190), -(17390,17390,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_1xhalf_block_kelethinwood',1190), -(17391,17391,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_2x2_dividerblock_kelethinwood',1190), -(17392,17392,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_rail_kelethinwood',1190), -(17393,17393,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_roundtile_kelethinwood',1190), -(17394,17394,'staticobjects/soe_wallet/building_blocks/kelethinwood/houseblock_stair_kelethinwood',1190), -(17395,17395,'staticobjects/soe_wallet/building_blocks/kelethinwood/housecube_1x1_block_kelethinwood',1190), -(17396,17396,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_1x1_column_whitemarble',1190), -(17397,17397,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_1x2_column_whitemarble',1190), -(17398,17398,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_1x2_dividerblock_whitemarble',1190), -(17399,17399,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_1xhalf_block_whitemarble',1190), -(17400,17400,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_2x2_dividerblock_whitemarble',1190), -(17401,17401,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_rai_whitemarble',1190), -(17402,17402,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_roundtile_whitemarble',1190), -(17403,17403,'staticobjects/soe_wallet/building_blocks/whitemarble/houseblock_stair_whitemarble',1190), -(17404,17404,'staticobjects/soe_wallet/building_blocks/whitemarble/housecube_1x1_block_whitemarble',1190), -(17405,17405,'ec/pc/fae_wings/fae_dracurion',1190), -(17406,17406,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head_burnished_metal',1190), -(17407,17407,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head_candle_back',1190), -(17408,17408,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head_candle_front',1190), -(17409,17409,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head_candle_left',1190), -(17410,17410,'accessories/wearable_items/profesion_hats/warden/plain_metal_circlet/head_candle_right',1190), -(17411,17411,'_exp08/characters/monsters/exp04raptor/raptor_tintable',1190), -(17412,17412,'accessories/wearable_items/profesion_hats/flower_circlet/rose_red_circlet_head',1190), -(17413,17413,'_exp09/characters/monsters/tigeraptor/tigeraptor_base',1190), -(17414,17414,'creatures/monsters/willowisp_golem_parts',1190), -(17415,17415,'creatures/mounts/player_wing/player_wing_angel_ice',1190), -(17416,17416,'creatures/monsters/willowisp_golem_parts03',1190), -(17417,17417,'creatures/monsters/willowisp_golem_parts02',1190), -(17418,17418,'_exp09/characters/monsters/mud_elemental/mud_elemental',1190), -(17419,17419,'staticobjects/liveevent/brew_day/dpo_brew_beer_keg_building',1190), -(17420,17420,'staticobjects/liveevent/brew_day/dpo_brew_keg_building_door',1190), -(17421,17421,'staticobjects/liveevent/brew_day/dpo_brew_explode_barrel',1190), -(17422,17422,'staticobjects/liveevent/brew_day/dpo_brew_plate_cornbeef',1190), -(17423,17423,'staticobjects/liveevent/brew_day/dpo_brew_plate_mashers',1190), -(17424,17424,'staticobjects/liveevent/brew_day/dpo_brew_plate_pancake',1190), -(17425,17425,'staticobjects/liveevent/brew_day/dpo_brew_plate_stew',1190), -(17426,17426,'_exp09/characters/monsters/tigeraptor/tigeraptor_boss',1190), -(17427,17427,'_exp09/characters/monsters/tigeraptor/tigeraptor_swivel_skull',1190), -(17428,17428,'_exp09/characters/monsters/tigeraptor/tigeraptor_tribal',1190), -(17429,17429,'creatures/monsters/willowisp_withered_branches',1190), -(17430,17430,'_exp09/characters/monsters/mist_panther/mist_panther',1190), -(17431,17431,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands_swivel01',1190), -(17432,17432,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_witheringlands01',1190), -(17433,17433,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/chest',1190), -(17434,17434,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/feet',1190), -(17435,17435,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/forearms',1190), -(17436,17436,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/hands',1190), -(17437,17437,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/head',1190), -(17438,17438,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/legs',1190), -(17439,17439,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/legs_noskirt',1190), -(17440,17440,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/shoulders',1190), -(17441,17441,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/shoulders_epic',1190), -(17442,17442,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/skirt',1190), -(17443,17443,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/chest',1190), -(17444,17444,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/feet',1190), -(17445,17445,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/forearms',1190), -(17446,17446,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/hands',1190), -(17447,17447,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/head',1190), -(17448,17448,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/legs',1190), -(17449,17449,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/legs_noskirt',1190), -(17450,17450,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/shoulders',1190), -(17451,17451,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/shoulders_epic',1190), -(17452,17452,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/skirt',1190), -(17453,17453,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth/arms',1190), -(17454,17454,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth/chest',1190), -(17455,17455,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth/chest_epic',1190), -(17456,17456,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth/legs',1190), -(17457,17457,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth/skirt',1190), -(17458,17458,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth2/arms',1190), -(17459,17459,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth2/chest',1190), -(17460,17460,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth2/chest_epic',1190), -(17461,17461,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth2/legs',1190), -(17462,17462,'accessories/wearable_items/_exp09/dracurion_player_usable/cloth2/skirt',1190), -(17463,17463,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/chest',1190), -(17464,17464,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/feet',1190), -(17465,17465,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/forearms',1190), -(17466,17466,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/hands',1190), -(17467,17467,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/head',1190), -(17468,17468,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/legs',1190), -(17469,17469,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/legs_noskirt',1190), -(17470,17470,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/shoulders',1190), -(17471,17471,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/shoulders_epic',1190), -(17472,17472,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/skirt',1190), -(17473,17473,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/chest',1190), -(17474,17474,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/feet',1190), -(17475,17475,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/forearms',1190), -(17476,17476,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/hands',1190), -(17477,17477,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/head',1190), -(17478,17478,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/legs',1190), -(17479,17479,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/legs_noskirt',1190), -(17480,17480,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/shoulders',1190), -(17481,17481,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/shoulders_epic',1190), -(17482,17482,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/skirt',1190), -(17483,17483,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_forearm_cloth_left',1190), -(17484,17484,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_forearm_cloth_right',1190), -(17485,17485,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_chain_left',1190), -(17486,17486,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_chain_right',1190), -(17487,17487,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_cloth_left',1190), -(17488,17488,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_cloth_right',1190), -(17489,17489,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_leather_left',1190), -(17490,17490,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_paladin_pauldron_leather_right',1190), -(17491,17491,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_forearm_cloth_left',1190), -(17492,17492,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_forearm_cloth_right',1190), -(17493,17493,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_chain_left',1190), -(17494,17494,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_chain_right',1190), -(17495,17495,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_cloth_left',1190), -(17496,17496,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_cloth_right',1190), -(17497,17497,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_leather_left',1190), -(17498,17498,'accessories/wearable_items/_exp09/dracurion_player_usable/snapons/dracurion_shadowknight_pauldron_leather_right',1190), -(17499,17499,'_exp09/characters/monsters/mist_panther/mist_panther_corrupted',1190), -(17500,17500,'accessories/wearable_items/cloak/exp09/cloak_lava2',1190), -(17501,17501,'accessories/wearable_items/cloak/exp09/cloak_lava2_scallop',1190), -(17502,17502,'accessories/wearable_items/cloak/exp09/cloak_lava',1190), -(17503,17503,'accessories/wearable_items/cloak/exp09/cloak_lava_blue2',1190), -(17504,17504,'accessories/wearable_items/cloak/exp09/cloak_lava_blue',1190), -(17505,17505,'accessories/wearable_items/cloak/exp09/cloak_lava_green2',1190), -(17506,17506,'accessories/wearable_items/cloak/exp09/cloak_lava_green',1190), -(17507,17507,'accessories/wearable_items/cloak/exp09/cloak_lava_purple2',1190), -(17508,17508,'accessories/wearable_items/cloak/exp09/cloak_lava_purple',1190), -(17509,17509,'creatures/mounts/drakota_mount/drakota_mount_green_druid',1190), -(17510,17510,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/chest',1190), -(17511,17511,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/feet',1190), -(17512,17512,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/forearms',1190), -(17513,17513,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/hands',1190), -(17514,17514,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/hands_epic',1190), -(17515,17515,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/head',1190), -(17516,17516,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/head_epic',1190), -(17517,17517,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/legs',1190), -(17518,17518,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/legs_epic',1190), -(17519,17519,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/legs_noskirt',1190), -(17520,17520,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/right',1190), -(17521,17521,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/shoulders',1190), -(17522,17522,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/shoulders_epic',1190), -(17523,17523,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/shoulders_nopauldrons',1190), -(17524,17524,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/skirt',1190), -(17525,17525,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/forearm_left',1190), -(17526,17526,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/forearm_right',1190), -(17527,17527,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/pauldrons_lower_left',1190), -(17528,17528,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/pauldrons_lower_right',1190), -(17529,17529,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/pauldrons_upper_left',1190), -(17530,17530,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/pauldrons_upper_right',1190), -(17531,17531,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/shin_left',1190), -(17532,17532,'accessories/wearable_items/_exp09/nightborne_sc_vanguard/snap_ons/shin_right',1190), -(17533,17533,'accessories/wieldable_items/shields/exp09/nightborne_shield',1190), -(17534,17534,'staticobjects/soe_wallet/holiday_objects/erollisi_card_01',1190), -(17535,17535,'staticobjects/soe_wallet/holiday_objects/erollisi_card_02',1190), -(17536,17536,'staticobjects/soe_wallet/holiday_objects/erollisi_card_03',1190), -(17537,17537,'creatures/monsters/dikdik_corrupted',1190), -(17538,17538,'accessories/wieldable_items/weapons/throwing_weapons/throwing_star/throwing_star002_ro',1190), -(17539,17539,'staticobjects/rocks/mining_gravel',1190), -(17540,17540,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_chain',1190), -(17541,17541,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_chain_var1',1190), -(17542,17542,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_horns',1190), -(17543,17543,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_horns_var1',1190), -(17544,17544,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_medallion',1190), -(17545,17545,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_medallion_var1',1190), -(17546,17546,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight_a',1190), -(17547,17547,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight_b',1190), -(17548,17548,'_exp04/monsters/erollisi_corrupted',1190), -(17549,17549,'_exp04/monsters/erollisi_corrupted_boss',1190), -(17550,17550,'staticobjects/eig/eig_harvest_location_wl_sky',1190), -(17551,17551,'_exp09/characters/monsters/carnivorous_plant_2012/carnivorous_plant_2012',1190), -(17552,17552,'staticobjects/_exp08/player_housing/skyshrine_arcane_lamp_dpo',1190), -(17553,17553,'staticobjects/_exp08/player_housing/skyshrine_bench_01_dpo',1190), -(17554,17554,'staticobjects/_exp08/player_housing/skyshrine_bench_02_dpo',1190), -(17555,17555,'staticobjects/_exp08/player_housing/skyshrine_bonealtar_dpo',1190), -(17556,17556,'staticobjects/_exp08/player_housing/skyshrine_brazier_hanging_dpo',1190), -(17557,17557,'staticobjects/_exp08/player_housing/skyshrine_brazier_pillar_dpo',1190), -(17558,17558,'staticobjects/_exp08/player_housing/skyshrine_brazier_smoke_dpo',1190), -(17559,17559,'staticobjects/_exp08/player_housing/skyshrine_dragon_head_metal_base_dpo',1190), -(17560,17560,'staticobjects/_exp08/player_housing/skyshrine_dragon_statue_big_dpo',1190), -(17561,17561,'staticobjects/_exp08/player_housing/skyshrine_drake_statue_01',1190), -(17562,17562,'staticobjects/_exp08/player_housing/skyshrine_flag_green_dpo',1190), -(17563,17563,'staticobjects/_exp08/player_housing/skyshrine_flag_hanging_dpo',1190), -(17564,17564,'staticobjects/_exp08/player_housing/skyshrine_flag_red_dpo',1190), -(17565,17565,'staticobjects/_exp08/player_housing/skyshrine_flag_yellow_dpo',1190), -(17566,17566,'accessories/wearable_items/_exp09/antonican_faction_armor/feet_hands/feet',1190), -(17567,17567,'staticobjects/_exp08/player_housing/skyshrine_pillar_epic_dpo',1190), -(17568,17568,'staticobjects/_exp08/player_housing/skyshrine_rug_01_dpo',1190), -(17569,17569,'staticobjects/_exp08/player_housing/skyshrine_rug_02_dpo',1190), -(17570,17570,'staticobjects/_exp08/player_housing/skyshrine_rug_03_dpo',1190), -(17571,17571,'staticobjects/_exp08/player_housing/skyshrine_rug_04_dpo',1190), -(17572,17572,'staticobjects/_exp08/player_housing/skyshrine_rug_05_dpo',1190), -(17573,17573,'staticobjects/_exp08/player_housing/skyshrine_rug_06_big_dpo',1190), -(17574,17574,'staticobjects/_exp08/player_housing/skyshrine_stage_dpo',1190), -(17575,17575,'staticobjects/_exp08/player_housing/skyshrine_statue_epic_dpo',1190), -(17576,17576,'staticobjects/_exp08/player_housing/skyshrine_table_2_dpo',1190), -(17577,17577,'staticobjects/_exp08/player_housing/skyshrine_table_dpo',1190), -(17578,17578,'staticobjects/_exp08/player_housing/wl_bench_dpo',1190), -(17579,17579,'staticobjects/_exp08/player_housing/wl_brazier_dpo',1190), -(17580,17580,'accessories/wearable_items/_exp09/antonican_faction_armor/feet_hands/hands',1190), -(17581,17581,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/chest',1190), -(17582,17582,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/chest_epic',1190), -(17583,17583,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/head',1190), -(17584,17584,'staticobjects/_exp08/player_housing/wl_dragon_skull_dpo',1190), -(17585,17585,'staticobjects/_exp08/player_housing/wl_evil_flower',1190), -(17586,17586,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/head_collar_flared',1190), -(17587,17587,'staticobjects/_exp08/player_housing/wl_spire_dpo',1190), -(17588,17588,'staticobjects/_exp08/player_housing/wl_stage_dpo',1190), -(17589,17589,'staticobjects/_exp08/player_housing/wl_swamp_lilly_dpo',1190), -(17590,17590,'staticobjects/_exp08/player_housing/wl_swamp_plant_dpo',1190), -(17591,17591,'staticobjects/_exp08/player_housing/wl_vine_dpo',1190), -(17592,17592,'staticobjects/_exp08/player_housing/wl_vine_squash_dpo',1190), -(17593,17593,'staticobjects/_exp08/player_housing/wl_wheelbarrow_dpo',1190), -(17594,17594,'creatures/mounts/player_wing/player_wing_angel_black',1190), -(17595,17595,'_exp09/characters/monsters/withering_tree_ent/withering_tree_ent',1190), -(17596,17596,'accessories/wearable_items/_exp09/withering_lands/chain/skirt',1190), -(17597,17597,'accessories/wearable_items/_exp09/withering_lands/chain/chest',1190), -(17598,17598,'accessories/wearable_items/_exp09/withering_lands/chain/feet',1190), -(17599,17599,'accessories/wearable_items/_exp09/withering_lands/chain/forearms',1190), -(17600,17600,'accessories/wearable_items/_exp09/withering_lands/chain/hands',1190), -(17601,17601,'accessories/wearable_items/_exp09/withering_lands/chain/head',1190), -(17602,17602,'accessories/wearable_items/_exp09/withering_lands/chain/legs',1190), -(17603,17603,'accessories/wearable_items/_exp09/withering_lands/chain/legs_noskirt',1190), -(17604,17604,'accessories/wearable_items/_exp09/withering_lands/chain/shoulders',1190), -(17605,17605,'accessories/wearable_items/_exp09/withering_lands/chain/shoulders_snapons',1190), -(17606,17606,'accessories/wearable_items/_exp09/withering_lands/leather/skirt',1190), -(17607,17607,'accessories/wearable_items/_exp09/withering_lands/leather/chest',1190), -(17608,17608,'accessories/wearable_items/_exp09/withering_lands/leather/feet',1190), -(17609,17609,'accessories/wearable_items/_exp09/withering_lands/leather/forearms',1190), -(17610,17610,'accessories/wearable_items/_exp09/withering_lands/leather/hands',1190), -(17611,17611,'accessories/wearable_items/_exp09/withering_lands/leather/head',1190), -(17612,17612,'accessories/wearable_items/_exp09/withering_lands/leather/legs',1190), -(17613,17613,'accessories/wearable_items/_exp09/withering_lands/leather/legs_noskirt',1190), -(17614,17614,'accessories/wearable_items/_exp09/withering_lands/leather/shoulders',1190), -(17615,17615,'accessories/wearable_items/_exp09/withering_lands/leather/shoulders_snapons',1190), -(17616,17616,'accessories/wearable_items/_exp09/withering_lands/snapons/robe_shoulder_bag_right',1190), -(17617,17617,'accessories/wearable_items/_exp09/withering_lands/snapons/chain_shoulder_left',1190), -(17618,17618,'accessories/wearable_items/_exp09/withering_lands/snapons/chain_shoulder_right',1190), -(17619,17619,'accessories/wearable_items/_exp09/withering_lands/snapons/leather_shoulder_left',1190), -(17620,17620,'accessories/wearable_items/_exp09/withering_lands/snapons/leather_shoulder_right',1190), -(17621,17621,'accessories/wearable_items/_exp09/withering_lands/robe/skirt',1190), -(17622,17622,'accessories/wearable_items/_exp09/withering_lands/robe/chest',1190), -(17623,17623,'accessories/wearable_items/_exp09/withering_lands/robe/feet',1190), -(17624,17624,'accessories/wearable_items/_exp09/withering_lands/robe/hands',1190), -(17625,17625,'accessories/wearable_items/_exp09/withering_lands/robe/head',1190), -(17626,17626,'accessories/wearable_items/_exp09/withering_lands/robe/pants',1190), -(17627,17627,'_exp09/characters/monsters/timber_wolf_corrupted/timber_wolf_corrupted',1190), -(17628,17628,'creatures/pets/wolf_pup/wolf_pup_corrupted',1190), -(17629,17629,'accessories/wearable_items/cloak/exp09/cloak_bookshelf2',1190), -(17630,17630,'accessories/wearable_items/cloak/exp09/cloak_bookshelf2_blue',1190), -(17631,17631,'accessories/wearable_items/cloak/exp09/cloak_lace',1190), -(17632,17632,'accessories/wearable_items/cloak/exp09/cloak_lace2',1190), -(17633,17633,'accessories/wearable_items/cloak/exp09/cloak_nightflies2',1190), -(17634,17634,'accessories/wearable_items/cloak/exp09/cloak_nightflies',1190), -(17635,17635,'accessories/wearable_items/cloak/exp09/cloak_lava3',1190), -(17636,17636,'accessories/wearable_items/profesion_hats/flower_circlet/rose_dark_circlet_head',1190), -(17637,17637,'accessories/wearable_items/profesion_hats/flower_circlet/rose_gold_circlet_head',1190), -(17638,17638,'accessories/wearable_items/_exp09/withering_lands/robe/chest_snapon',1190), -(17639,17639,'accessories/wearable_items/_exp09/withering_lands/vanguard/skirt',1190), -(17640,17640,'accessories/wearable_items/_exp09/withering_lands/vanguard/chest',1190), -(17641,17641,'accessories/wearable_items/_exp09/withering_lands/vanguard/feet',1190), -(17642,17642,'accessories/wearable_items/_exp09/withering_lands/vanguard/forearms',1190), -(17643,17643,'accessories/wearable_items/_exp09/withering_lands/vanguard/hands',1190), -(17644,17644,'accessories/wearable_items/_exp09/withering_lands/vanguard/head',1190), -(17645,17645,'accessories/wearable_items/_exp09/withering_lands/vanguard/legs',1190), -(17646,17646,'accessories/wearable_items/_exp09/withering_lands/vanguard/legs_noskirt',1190), -(17647,17647,'accessories/wearable_items/_exp09/withering_lands/vanguard/right',1190), -(17648,17648,'accessories/wearable_items/_exp09/withering_lands/vanguard/shoulders',1190), -(17649,17649,'accessories/wearable_items/_exp09/withering_lands/vanguard/shoulders_nopauldrons',1190), -(17650,17650,'accessories/wearable_items/_exp09/withering_lands/vanguard/shoulders_snapons',1190), -(17651,17651,'accessories/wearable_items/_exp09/withering_lands/snapons/vanguard_shoulder_right',1190), -(17652,17652,'accessories/wearable_items/_exp09/withering_lands/snapons/vanguard_shoulder_left',1190), -(17653,17653,'accessories/wearable_items/_exp09/withering_lands/snapons/robe_bag',1190), -(17654,17654,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_skyshrine_evil',1190), -(17655,17655,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_skyshrine_good',1190), -(17656,17656,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_skyshrine_evil',1190), -(17657,17657,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_skyshrine_good',1190), -(17658,17658,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_skyshrine_evil',1190), -(17659,17659,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_skyshrine_good',1190), -(17660,17660,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_skyshrine_evil',1190), -(17661,17661,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_skyshrine_good',1190), -(17662,17662,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_skyshrine_evil',1190), -(17663,17663,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_skyshrine_good',1190), -(17664,17664,'accessories/wieldable_items/weapons/exp09/bow/longbow_skyshrine_evil',1190), -(17665,17665,'accessories/wieldable_items/weapons/exp09/bow/longbow_skyshrine_good',1190), -(17666,17666,'accessories/wieldable_items/weapons/exp09/fist/katar_spiked_skyshrine_evil',1190), -(17667,17667,'accessories/wieldable_items/weapons/exp09/fist/katar_spiked_skyshrine_good',1190), -(17668,17668,'accessories/wieldable_items/weapons/exp09/staff/halberd_skyshrine_evil',1190), -(17669,17669,'accessories/wieldable_items/weapons/exp09/staff/halberd_skyshrine_good',1190), -(17670,17670,'accessories/wieldable_items/weapons/exp09/staff/spear_open_skyshrine_evil',1190), -(17671,17671,'accessories/wieldable_items/weapons/exp09/staff/spear_open_skyshrine_good',1190), -(17672,17672,'accessories/wieldable_items/weapons/exp09/staff/spear_skyshrine_evil',1190), -(17673,17673,'accessories/wieldable_items/weapons/exp09/staff/spear_skyshrine_good',1190), -(17674,17674,'accessories/wieldable_items/weapons/exp09/staff/staff_skyshrine_evil',1190), -(17675,17675,'accessories/wieldable_items/weapons/exp09/staff/staff_skyshrine_good',1190), -(17676,17676,'accessories/wieldable_items/shields/exp09/buckler_skyshrine_evil',1190), -(17677,17677,'accessories/wieldable_items/shields/exp09/buckler_skyshrine_good',1190), -(17678,17678,'accessories/wieldable_items/shields/exp09/kite_skyshrine_evil',1190), -(17679,17679,'accessories/wieldable_items/shields/exp09/kite_skyshrine_good',1190), -(17680,17680,'accessories/npc_wearables/dracurion/2h_sword_skyshrine_evil',1190), -(17681,17681,'accessories/npc_wearables/dracurion/2h_sword_skyshrine_good',1190), -(17682,17682,'accessories/npc_wearables/dracurion/halberd_skyshrine_evil',1190), -(17683,17683,'accessories/npc_wearables/dracurion/halberd_skyshrine_good',1190), -(17684,17684,'accessories/npc_wearables/dracurion/spear_skyshrine_evil',1190), -(17685,17685,'accessories/npc_wearables/dracurion/spear_skyshrine_good',1190), -(17686,17686,'accessories/npc_wearables/dracurion/spear2_skyshrine_evil',1190), -(17687,17687,'accessories/npc_wearables/dracurion/spear2_skyshrine_good',1190), -(17688,17688,'accessories/npc_wearables/dracurion/staff_skyshrine_evil',1190), -(17689,17689,'accessories/npc_wearables/dracurion/staff_skyshrine_good',1190), -(17690,17690,'accessories/wearable_items/_exp09/dracurion_player_usable/chain/head_epic',1190), -(17691,17691,'accessories/wearable_items/_exp09/dracurion_player_usable/chain2/head_epic',1190), -(17692,17692,'accessories/wearable_items/_exp09/dracurion_player_usable/leather/head_epic',1190), -(17693,17693,'accessories/wearable_items/_exp09/dracurion_player_usable/leather2/head_epic',1190), -(17694,17694,'_exp09/characters/monsters/mud_monster/mud_monster',1190), -(17695,17695,'creatures/mounts/horse_heavy/horse_new_combine',1190), -(17696,17696,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_freeport',1190), -(17697,17697,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_gorowyn',1190), -(17698,17698,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_halas',1190), -(17699,17699,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_kelethin',1190), -(17700,17700,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_neriak',1190), -(17701,17701,'creatures/mounts/horse_heavy/new_combine_flags/horse_new_combine_flag_qeynos',1190), -(17702,17702,'creatures/mounts/warhog_mount/swivels/warhog_beastlord_swivel',1190), -(17703,17703,'staticobjects/_exp08/harvestables/exp08_bush_harvesting',1190), -(17704,17704,'staticobjects/_exp08/harvestables/exp08_gems_harvesting',1190), -(17705,17705,'staticobjects/_exp08/harvestables/exp08_log_harvesting',1190), -(17706,17706,'staticobjects/_exp08/harvestables/exp08_ore_harvesting',1190), -(17707,17707,'staticobjects/_exp08/harvestables/exp08_roots_harvesting',1190), -(17708,17708,'staticobjects/_exp08/harvestables/exp08_trapping_harvesting',1190), -(17709,17709,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_storm',1190), -(17710,17710,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_storm_violet',1190), -(17711,17711,'accessories/wearable_items/snapons/backpacks/backpack_othmir_swivel/backpack_othmir_animated',1190), -(17712,17712,'_exp09/characters/monsters/beetle/beetle_grappler',1190), -(17713,17713,'_exp09/characters/monsters/beetle/beetle_grappler_clockwork',1190), -(17714,17714,'_exp09/characters/monsters/beetle/beetle_grappler_sanguine',1190), -(17715,17715,'_exp09/characters/monsters/beetle/beetle_grappler_shadow',1190), -(17716,17716,'_exp09/characters/monsters/beetle/beetle_hercules',1190), -(17717,17717,'_exp09/characters/monsters/beetle/beetle_hercules_clockwork',1190), -(17718,17718,'_exp09/characters/monsters/beetle/beetle_hercules_sanguine',1190), -(17719,17719,'_exp09/characters/monsters/beetle/beetle_hercules_shadow',1190), -(17720,17720,'_exp09/characters/monsters/beetle/beetle_lobber',1190), -(17721,17721,'_exp09/characters/monsters/beetle/beetle_lobber_clockwork',1190), -(17722,17722,'_exp09/characters/monsters/beetle/beetle_lobber_sanguine',1190), -(17723,17723,'_exp09/characters/monsters/beetle/beetle_lobber_shadow',1190), -(17724,17724,'_exp09/characters/monsters/beetle/beetle_lobber2',1190), -(17725,17725,'_exp09/characters/monsters/beetle/beetle_original',1190), -(17726,17726,'_exp09/characters/monsters/beetle/beetle_original_clockwork',1190), -(17727,17727,'_exp09/characters/monsters/beetle/beetle_original_ladybug',1190), -(17728,17728,'_exp09/characters/monsters/beetle/beetle_original_sanguine',1190), -(17729,17729,'_exp09/characters/monsters/beetle/beetle_original_shadow',1190), -(17730,17730,'_exp09/characters/monsters/beetle_groundattack/beetle',1190), -(17731,17731,'_exp09/characters/monsters/beetle_groundattack/beetle_grappler',1190), -(17732,17732,'_exp09/characters/monsters/beetle_groundattack/beetle_grappler_clockwork',1190), -(17733,17733,'_exp09/characters/monsters/beetle_groundattack/beetle_grappler_sanguine',1190), -(17734,17734,'_exp09/characters/monsters/beetle_groundattack/beetle_grappler_shadow',1190), -(17735,17735,'_exp09/characters/monsters/beetle_groundattack/beetle_hercules',1190), -(17736,17736,'_exp09/characters/monsters/beetle_groundattack/beetle_hercules_clockwork',1190), -(17737,17737,'_exp09/characters/monsters/beetle_groundattack/beetle_hercules_sanguine',1190), -(17738,17738,'_exp09/characters/monsters/beetle_groundattack/beetle_hercules_shadow',1190), -(17739,17739,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber',1190), -(17740,17740,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber_clockwork',1190), -(17741,17741,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber_sanguine',1190), -(17742,17742,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber_shadow',1190), -(17743,17743,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber2',1190), -(17744,17744,'_exp09/characters/monsters/beetle_groundattack/beetle_original',1190), -(17745,17745,'_exp09/characters/monsters/beetle_groundattack/beetle_original_clockwork',1190), -(17746,17746,'_exp09/characters/monsters/beetle_groundattack/beetle_original_ladybug',1190), -(17747,17747,'_exp09/characters/monsters/beetle_groundattack/beetle_original_sanguine',1190), -(17748,17748,'_exp09/characters/monsters/beetle_groundattack/beetle_original_shadow',1190), -(17749,17749,'_exp08/characters/tool_users/vampire_female_merc/vampire_female_merc',1190), -(17750,17750,'accessories/wearable_items/cloak/exp08/cloak_vampire_merc',1190), -(17751,17751,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_vampire_merc',1190), -(17752,17752,'_exp08/characters/tool_users/vampire_female_merc/vampire_female_merc_evil',1190), -(17753,17753,'accessories/wieldable_items/shields/exp08/exp08_shield_dragonanimated_gold',1190), -(17754,17754,'accessories/wieldable_items/shields/exp09/spike_shield',1190), -(17755,17755,'accessories/wieldable_items/shields/exp09/spike_shield_hot',1190), -(17756,17756,'_exp08/characters/monsters/dozekar/dozekar_base',1190), -(17757,17757,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_crate01_dpo',1190), -(17758,17758,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_lower_objects01_torch01_fx_dpo',1190), -(17759,17759,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_lower_objects01_torch02_fx_dpo',1190), -(17760,17760,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_barricade01_dpo',1190), -(17761,17761,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_bench01_dpo',1190), -(17762,17762,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_bench01b_dpo',1190), -(17763,17763,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_flag_noflag01_dpo',1190), -(17764,17764,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_flagblue01_dpo',1190), -(17765,17765,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_flaggreen01_dpo',1190), -(17766,17766,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_flagred01_dpo',1190), -(17767,17767,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_flagyellow01_dpo',1190), -(17768,17768,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable01_dpo',1190), -(17769,17769,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable01_shade_dpo',1190), -(17770,17770,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable02_dpo',1190), -(17771,17771,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable02_shade_dpo',1190), -(17772,17772,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable03_dpo',1190), -(17773,17773,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable03_shade_dpo',1190), -(17774,17774,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable04_dpo',1190), -(17775,17775,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable04_shade_dpo',1190), -(17776,17776,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable05_dpo',1190), -(17777,17777,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable05_shade_dpo',1190), -(17778,17778,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_grouptable06_dpo',1190), -(17779,17779,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase01_dpo',1190), -(17780,17780,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase02_dpo',1190), -(17781,17781,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase03_dpo',1190), -(17782,17782,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase04_dpo',1190), -(17783,17783,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase05_dpo',1190), -(17784,17784,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase06_dpo',1190), -(17785,17785,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase07_dpo',1190), -(17786,17786,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_groupvase08_dpo',1190), -(17787,17787,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_pedastalarcane01_dpo',1190), -(17788,17788,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_pedastalgov01_dpo',1190), -(17789,17789,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/head_mask',1190), -(17790,17790,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug01_dpo',1190), -(17791,17791,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug02_dpo',1190), -(17792,17792,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug03_dpo',1190), -(17793,17793,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug04_dpo',1190), -(17794,17794,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug05_dpo',1190), -(17795,17795,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_rug06_big_dpo',1190), -(17796,17796,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue01_gold_dpo',1190), -(17797,17797,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue01_marble_dpo',1190), -(17798,17798,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue01_metal_dpo',1190), -(17799,17799,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue02_gold_dpo',1190), -(17800,17800,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue02_marble_dpo',1190), -(17801,17801,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue02_metal_dpo',1190), -(17802,17802,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue03_gov01_gold_dpo',1190), -(17803,17803,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/head_mask_hood',1190), -(17804,17804,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue03_gov01_metal_dpo',1190), -(17805,17805,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue04_arcane01_gold_dpo',1190), -(17806,17806,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue04_arcane01_marble_dpo',1190), -(17807,17807,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue04_arcane01_metal_dpo',1190), -(17808,17808,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue05_gold_dpo',1190), -(17809,17809,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue05_marble_dpo',1190), -(17810,17810,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue05_metal_dpo',1190), -(17811,17811,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_table01_dpo',1190), -(17812,17812,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_table01b_dpo',1190), -(17813,17813,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_torch01_dpo',1190), -(17814,17814,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_torch02_dpo',1190), -(17815,17815,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_torcharcane01_dpo',1190), -(17816,17816,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_torchgov01_dpo',1190), -(17817,17817,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_torchmerchant01_dpo',1190), -(17818,17818,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase01_dpo',1190), -(17819,17819,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase01b_dpo',1190), -(17820,17820,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase02_dpo',1190), -(17821,17821,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase02b_dpo',1190), -(17822,17822,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase03_dpo',1190), -(17823,17823,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase03b_dpo',1190), -(17824,17824,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase04_dpo',1190), -(17825,17825,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase04b_dpo',1190), -(17826,17826,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase05_dpo',1190), -(17827,17827,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_vase05b_dpo',1190), -(17828,17828,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagonarcane01_dpo',1190), -(17829,17829,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagonarcane02_dpo',1190), -(17830,17830,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagongov01_dpo',1190), -(17831,17831,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagongov02_dpo',1190), -(17832,17832,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagonmerchant01_dpo',1190), -(17833,17833,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_wagonmerchant02_dpo',1190), -(17834,17834,'creatures/mounts/anglerserpent_mount/anglerserpent_mount_ice_transparent',1190), -(17835,17835,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_skyshrine_evil_fx',1190), -(17836,17836,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_skyshrine_good_fx',1190), -(17837,17837,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_skyshrine_evil_fx',1190), -(17838,17838,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_skyshrine_good_fx',1190), -(17839,17839,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_skyshrine_evil_fx',1190), -(17840,17840,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_skyshrine_good_fx',1190), -(17841,17841,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_skyshrine_evil_fx',1190), -(17842,17842,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_skyshrine_good_fx',1190), -(17843,17843,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_skyshrine_evil_fx',1190), -(17844,17844,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_skyshrine_good_fx',1190), -(17845,17845,'accessories/wieldable_items/weapons/exp09/bow/longbow_skyshrine_evil_fx',1190), -(17846,17846,'accessories/wieldable_items/weapons/exp09/bow/longbow_skyshrine_good_fx',1190), -(17847,17847,'accessories/wieldable_items/weapons/exp09/fist/katar_spiked_skyshrine_evil_fx',1190), -(17848,17848,'accessories/wieldable_items/weapons/exp09/fist/katar_spiked_skyshrine_good_fx',1190), -(17849,17849,'accessories/wieldable_items/weapons/exp09/staff/halberd_skyshrine_evil_fx',1190), -(17850,17850,'accessories/wieldable_items/weapons/exp09/staff/halberd_skyshrine_good_fx',1190), -(17851,17851,'accessories/wieldable_items/weapons/exp09/staff/spear_open_skyshrine_evil_fx',1190), -(17852,17852,'accessories/wieldable_items/weapons/exp09/staff/spear_open_skyshrine_good_fx',1190), -(17853,17853,'accessories/wieldable_items/weapons/exp09/staff/spear_skyshrine_evil_fx',1190), -(17854,17854,'accessories/wieldable_items/weapons/exp09/staff/spear_skyshrine_good_fx',1190), -(17855,17855,'accessories/wieldable_items/weapons/exp09/staff/staff_skyshrine_evil_fx',1190), -(17856,17856,'accessories/wieldable_items/weapons/exp09/staff/staff_skyshrine_good_fx',1190), -(17857,17857,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_pedastalmerchant01_dpo',1190), -(17858,17858,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/pants',1190), -(17859,17859,'creatures/mounts/player_wing/player_wing_clockwork_clear',1190), -(17860,17860,'creatures/mounts/player_wing/player_wing_clockwork_clear_red',1190), -(17861,17861,'creatures/mounts/player_wing/player_wing_clockwork_evil',1190), -(17862,17862,'creatures/mounts/player_wing/player_wing_clockwork_evil2',1190), -(17863,17863,'creatures/mounts/player_wing/player_wing_clockwork_goldblue',1190), -(17864,17864,'creatures/mounts/player_wing/player_wing_clockwork_goldpink',1190), -(17865,17865,'creatures/mounts/player_wing/player_wing_clockwork1',1190), -(17866,17866,'creatures/mounts/player_wing/player_wing_clockwork1_blue',1190), -(17867,17867,'creatures/mounts/player_wing/player_wing_clockwork1_dark',1190), -(17868,17868,'creatures/mounts/player_wing/player_wing_clockwork1_darkgreen',1190), -(17869,17869,'creatures/mounts/player_wing/player_wing_clockwork1_green',1190), -(17870,17870,'creatures/mounts/player_wing/player_wing_clockwork1_red',1190), -(17871,17871,'accessories/wearable_items/cloak/exp09/cloak_mistshire',1190), -(17872,17872,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/chest',1190), -(17873,17873,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/feet',1190), -(17874,17874,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/forearms',1190), -(17875,17875,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/hands',1190), -(17876,17876,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/head',1190), -(17877,17877,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/left',1190), -(17878,17878,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/legs',1190), -(17879,17879,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/legs_noskirt',1190), -(17880,17880,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/pauldron02_vanguard_ridged_left',1190), -(17881,17881,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/pauldron02_vanguard_ridged_right',1190), -(17882,17882,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/right',1190), -(17883,17883,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/shoulders',1190), -(17884,17884,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/shoulders_epic',1190), -(17885,17885,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/shoulders_nopauldrons',1190), -(17886,17886,'accessories/wearable_items/_exp08/tradeskill_vanguard/dark/skirt',1190), -(17887,17887,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/chest',1190), -(17888,17888,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/feet',1190), -(17889,17889,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/forearms',1190), -(17890,17890,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/hands',1190), -(17891,17891,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/head',1190), -(17892,17892,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/left',1190), -(17893,17893,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/legs',1190), -(17894,17894,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/legs_noskirt',1190), -(17895,17895,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/pauldron02_vanguard_ridged_left',1190), -(17896,17896,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/pauldron02_vanguard_ridged_right',1190), -(17897,17897,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/right',1190), -(17898,17898,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/shoulders',1190), -(17899,17899,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/shoulders_epic',1190), -(17900,17900,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/shoulders_nopauldrons',1190), -(17901,17901,'accessories/wearable_items/_exp08/tradeskill_vanguard/gold/skirt',1190), -(17902,17902,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/chest',1190), -(17903,17903,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/feet',1190), -(17904,17904,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/forearms',1190), -(17905,17905,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/hands',1190), -(17906,17906,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/head',1190), -(17907,17907,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/left',1190), -(17908,17908,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/legs',1190), -(17909,17909,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/legs_noskirt',1190), -(17910,17910,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/pauldron02_vanguard_ridged_left',1190), -(17911,17911,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/pauldron02_vanguard_ridged_right',1190), -(17912,17912,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/right',1190), -(17913,17913,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/shoulders',1190), -(17914,17914,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/shoulders_epic',1190), -(17915,17915,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/shoulders_nopauldrons',1190), -(17916,17916,'accessories/wearable_items/_exp08/tradeskill_vanguard/green/skirt',1190), -(17917,17917,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/chest',1190), -(17918,17918,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/feet',1190), -(17919,17919,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/forearms',1190), -(17920,17920,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/hands',1190), -(17921,17921,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/head',1190), -(17922,17922,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/left',1190), -(17923,17923,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/legs',1190), -(17924,17924,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/legs_noskirt',1190), -(17925,17925,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/pauldron02_vanguard_ridged_left',1190), -(17926,17926,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/pauldron02_vanguard_ridged_right',1190), -(17927,17927,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/right',1190), -(17928,17928,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/shoulders',1190), -(17929,17929,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/shoulders_epic',1190), -(17930,17930,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/shoulders_nopauldrons',1190), -(17931,17931,'accessories/wearable_items/_exp08/tradeskill_vanguard/iron/skirt',1190), -(17932,17932,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/chest',1190), -(17933,17933,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/feet',1190), -(17934,17934,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/forearms',1190), -(17935,17935,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/hands',1190), -(17936,17936,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/head',1190), -(17937,17937,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/left',1190), -(17938,17938,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/legs',1190), -(17939,17939,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/legs_noskirt',1190), -(17940,17940,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/pauldron02_vanguard_ridged_left',1190), -(17941,17941,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/pauldron02_vanguard_ridged_right',1190), -(17942,17942,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/right',1190), -(17943,17943,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/shoulders',1190), -(17944,17944,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/shoulders_epic',1190), -(17945,17945,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/shoulders_nopauldrons',1190), -(17946,17946,'accessories/wearable_items/_exp08/tradeskill_vanguard/red/skirt',1190), -(17947,17947,'accessories/wearable_items/_exp08/tradeskill_vanguard/chest',1190), -(17948,17948,'accessories/wearable_items/_exp08/tradeskill_vanguard/feet',1190), -(17949,17949,'accessories/wearable_items/_exp08/tradeskill_vanguard/forearms',1190), -(17950,17950,'accessories/wearable_items/_exp08/tradeskill_vanguard/hands',1190), -(17951,17951,'accessories/wearable_items/_exp08/tradeskill_vanguard/head',1190), -(17952,17952,'accessories/wearable_items/_exp08/tradeskill_vanguard/left',1190), -(17953,17953,'accessories/wearable_items/_exp08/tradeskill_vanguard/legs',1190), -(17954,17954,'accessories/wearable_items/_exp08/tradeskill_vanguard/legs_noskirt',1190), -(17955,17955,'accessories/wearable_items/_exp08/tradeskill_vanguard/pauldron02_vanguard_ridged_left',1190), -(17956,17956,'accessories/wearable_items/_exp08/tradeskill_vanguard/pauldron02_vanguard_ridged_right',1190), -(17957,17957,'accessories/wearable_items/_exp08/tradeskill_vanguard/right',1190), -(17958,17958,'accessories/wearable_items/_exp08/tradeskill_vanguard/shoulders',1190), -(17959,17959,'accessories/wearable_items/_exp08/tradeskill_vanguard/shoulders_epic',1190), -(17960,17960,'accessories/wearable_items/_exp08/tradeskill_vanguard/shoulders_nopauldrons',1190), -(17961,17961,'accessories/wearable_items/_exp08/tradeskill_vanguard/skirt',1190), -(17962,17962,'accessories/wieldable_items/shields/exp08/exp08_shield_celticanimated_bluegold',1190), -(17963,17963,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_satyr_withering_lands',1190), -(17964,17964,'accessories/wieldable_items/weapons/exp08/1h_crush/wand_satyr_withering_lands',1190), -(17965,17965,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_satyr_withering_lands',1190), -(17966,17966,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_satyr_withering_lands',1190), -(17967,17967,'accessories/wieldable_items/weapons/exp08/2h_crush/exp08_2h_hammer_satyr_withering_lands',1190), -(17968,17968,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_satyr_withering_lands',1190), -(17969,17969,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_satyr_withering_lands',1190), -(17970,17970,'accessories/wieldable_items/weapons/exp08/staff/exp08_staff_satyr_withering_lands',1190), -(17971,17971,'_exp08/characters/monsters/dragon_grendish/dragon_grendish',1190), -(17972,17972,'accessories/wearable_items/cloak/exp09/cloak_sarnak',1190), -(17973,17973,'staticobjects/_exp08/exp08_dun_skyshrine_contested/exp08_skyshrine_objects01_portalfx01_arcane01_pfx',1190), -(17974,17974,'staticobjects/_exp08/exp08_dun_skyshrine_contested/exp08_skyshrine_objects01_portalfx01_gov01_pfx',1190), -(17975,17975,'staticobjects/_exp08/exp08_dun_skyshrine_contested/exp08_skyshrine_objects01_portalfx01_merchant01_pfx',1190), -(17976,17976,'_exp08/characters/monsters/fish_bowl/fish_bowl_base',1190), -(17977,17977,'_exp08/characters/monsters/dragon_lendiniara/dragon_lendiniara',1190), -(17978,17978,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_tradeskill_bronze',1190), -(17979,17979,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_tradeskill_darkmetal',1190), -(17980,17980,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_tradeskill_gold',1190), -(17981,17981,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_tradeskill_iron',1190), -(17982,17982,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_tradeskill_bronze',1190), -(17983,17983,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_tradeskill_darkmetal',1190), -(17984,17984,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_tradeskill_gold',1190), -(17985,17985,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_tradeskill_iron',1190), -(17986,17986,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_tradeskill_bronze',1190), -(17987,17987,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_tradeskill_darkmetal',1190), -(17988,17988,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_tradeskill_gold',1190), -(17989,17989,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_tradeskill_iron',1190), -(17990,17990,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_tradeskill_bronze',1190), -(17991,17991,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_tradeskill_darkmetal',1190), -(17992,17992,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_tradeskill_gold',1190), -(17993,17993,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_tradeskill_iron',1190), -(17994,17994,'accessories/wieldable_items/weapons/exp09/bow/longbow_tradeskill_bronze',1190), -(17995,17995,'accessories/wieldable_items/weapons/exp09/bow/longbow_tradeskill_darkmetal',1190), -(17996,17996,'accessories/wieldable_items/weapons/exp09/bow/longbow_tradeskill_gold',1190), -(17997,17997,'accessories/wieldable_items/weapons/exp09/bow/longbow_tradeskill_iron',1190), -(17998,17998,'accessories/wieldable_items/weapons/exp09/staff/halberd_tradeskill_bronze',1190), -(17999,17999,'accessories/wieldable_items/weapons/exp09/staff/halberd_tradeskill_darkmetal',1190), -(18000,18000,'accessories/wieldable_items/weapons/exp09/staff/halberd_tradeskill_gold',1190), -(18001,18001,'accessories/wieldable_items/weapons/exp09/staff/halberd_tradeskill_iron',1190), -(18002,18002,'accessories/wieldable_items/weapons/exp09/staff/staff_tradeskill_bronze',1190), -(18003,18003,'accessories/wieldable_items/weapons/exp09/staff/staff_tradeskill_darkmetal',1190), -(18004,18004,'accessories/wieldable_items/weapons/exp09/staff/staff_tradeskill_gold',1190), -(18005,18005,'accessories/wieldable_items/weapons/exp09/staff/staff_tradeskill_iron',1190), -(18006,18006,'staticobjects/fish_tank/fishtank_01_dpo',1190), -(18007,18007,'staticobjects/soe_wallet/painting_withered02',1190), -(18008,18008,'staticobjects/soe_wallet/fishtank_02_dpo',1190), -(18009,18009,'staticobjects/soe_wallet/painting_skyshrine',1190), -(18010,18010,'staticobjects/soe_wallet/painting_withered01',1190), -(18011,18011,'creatures/mounts/horse_heavy/horse_epic_lava',1190), -(18012,18012,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_qeynos',1190), -(18013,18013,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_freeport',1190), -(18014,18014,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_neriak',1190), -(18015,18015,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_gorowyn',1190), -(18016,18016,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_halas',1190), -(18017,18017,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_combine_kelethin',1190), -(18018,18018,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_freeport',1190), -(18019,18019,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_qeynos',1190), -(18020,18020,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_neriak',1190), -(18021,18021,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_gorowyn',1190), -(18022,18022,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_halas',1190), -(18023,18023,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_combine_kelethin',1190), -(18024,18024,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_gorowyn',1190), -(18025,18025,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_qeynos',1190), -(18026,18026,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_neriak',1190), -(18027,18027,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_freeport',1190), -(18028,18028,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_kelethin',1190), -(18029,18029,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_halas',1190), -(18030,18030,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_combine_base',1190), -(18031,18031,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_freeport',1190), -(18032,18032,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_qeynos',1190), -(18033,18033,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_neriak',1190), -(18034,18034,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_gorowyn',1190), -(18035,18035,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_halas',1190), -(18036,18036,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_combine_kelethin',1190), -(18037,18037,'accessories/wearable_items/cloak/exp08/cloak_brawlin_riggins',1190), -(18038,18038,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_boot_cuff_left',1190), -(18039,18039,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_boot_cuff_right',1190), -(18040,18040,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_elbow_left',1190), -(18041,18041,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_pauldron_left',1190), -(18042,18042,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_wrist_left',1190), -(18043,18043,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/brawlin_riggins_wrist_right',1190), -(18044,18044,'accessories/wearable_items/_exp08/brawlin_riggins_armor/snap_ons/head_collar_brawlin_riggins',1190), -(18045,18045,'accessories/wearable_items/_exp08/brawlin_riggins_armor/chest',1190), -(18046,18046,'accessories/wearable_items/_exp08/brawlin_riggins_armor/feet',1190), -(18047,18047,'accessories/wearable_items/_exp08/brawlin_riggins_armor/feet_peg_left',1190), -(18048,18048,'accessories/wearable_items/_exp08/brawlin_riggins_armor/feet_peg_right',1190), -(18049,18049,'accessories/wearable_items/_exp08/brawlin_riggins_armor/forearms',1190), -(18050,18050,'accessories/wearable_items/_exp08/brawlin_riggins_armor/hands',1190), -(18051,18051,'accessories/wearable_items/_exp08/brawlin_riggins_armor/head',1190), -(18052,18052,'accessories/wearable_items/_exp08/brawlin_riggins_armor/legs',1190), -(18053,18053,'accessories/wearable_items/_exp08/brawlin_riggins_armor/shoulders',1190), -(18054,18054,'accessories/wearable_items/_exp08/brawlin_riggins_armor/skirt',1190), -(18055,18055,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_kelethin',1190), -(18056,18056,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_halas',1190), -(18057,18057,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_gorowyn',1190), -(18058,18058,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_neriak',1190), -(18059,18059,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_freeport',1190), -(18060,18060,'accessories/wieldable_items/shields/exp08/exp08_shield_tower_combine_qeynos',1190), -(18061,18061,'_exp01/characters/monsters/crocodile_thin_nose',1190), -(18062,18062,'accessories/wearable_items/_exp08/tradeskill_robe/chest',1190), -(18063,18063,'accessories/wearable_items/_exp08/tradeskill_robe/feet',1190), -(18064,18064,'accessories/wearable_items/_exp08/tradeskill_robe/hands',1190), -(18065,18065,'accessories/wearable_items/_exp08/tradeskill_robe/head_collar',1190), -(18066,18066,'accessories/wearable_items/_exp08/tradeskill_robe/head_robe',1190), -(18067,18067,'accessories/wearable_items/_exp08/tradeskill_robe/pants',1190), -(18068,18068,'accessories/wearable_items/_exp08/tradeskill_robe/skirt',1190), -(18069,18069,'accessories/wearable_items/_exp08/tradeskill_robe/dark/chest',1190), -(18070,18070,'accessories/wearable_items/_exp08/tradeskill_robe/dark/feet',1190), -(18071,18071,'accessories/wearable_items/_exp08/tradeskill_robe/dark/hands',1190), -(18072,18072,'accessories/wearable_items/_exp08/tradeskill_robe/dark/head_collar',1190), -(18073,18073,'accessories/wearable_items/_exp08/tradeskill_robe/dark/head_hood',1190), -(18074,18074,'accessories/wearable_items/_exp08/tradeskill_robe/dark/pants',1190), -(18075,18075,'accessories/wearable_items/_exp08/tradeskill_robe/dark/skirt',1190), -(18076,18076,'accessories/wearable_items/_exp08/tradeskill_robe/gold/chest',1190), -(18077,18077,'accessories/wearable_items/_exp08/tradeskill_robe/gold/feet',1190), -(18078,18078,'accessories/wearable_items/_exp08/tradeskill_robe/gold/hands',1190), -(18079,18079,'accessories/wearable_items/_exp08/tradeskill_robe/gold/head_collar',1190), -(18080,18080,'accessories/wearable_items/_exp08/tradeskill_robe/gold/head_hood',1190), -(18081,18081,'accessories/wearable_items/_exp08/tradeskill_robe/gold/pants',1190), -(18082,18082,'accessories/wearable_items/_exp08/tradeskill_robe/gold/skirt',1190), -(18083,18083,'accessories/wearable_items/_exp08/tradeskill_robe/green/chest',1190), -(18084,18084,'accessories/wearable_items/_exp08/tradeskill_robe/green/feet',1190), -(18085,18085,'accessories/wearable_items/_exp08/tradeskill_robe/green/hands',1190), -(18086,18086,'accessories/wearable_items/_exp08/tradeskill_robe/green/head_collar',1190), -(18087,18087,'accessories/wearable_items/_exp08/tradeskill_robe/green/head_hood',1190), -(18088,18088,'accessories/wearable_items/_exp08/tradeskill_robe/green/pants',1190), -(18089,18089,'accessories/wearable_items/_exp08/tradeskill_robe/green/skirt',1190), -(18090,18090,'accessories/wearable_items/_exp08/tradeskill_robe/iron/chest',1190), -(18091,18091,'accessories/wearable_items/_exp08/tradeskill_robe/iron/feet',1190), -(18092,18092,'accessories/wearable_items/_exp08/tradeskill_robe/iron/hands',1190), -(18093,18093,'accessories/wearable_items/_exp08/tradeskill_robe/iron/head_collar',1190), -(18094,18094,'accessories/wearable_items/_exp08/tradeskill_robe/iron/head_hood',1190), -(18095,18095,'accessories/wearable_items/_exp08/tradeskill_robe/iron/pants',1190), -(18096,18096,'accessories/wearable_items/_exp08/tradeskill_robe/iron/skirt',1190), -(18097,18097,'accessories/wearable_items/_exp08/tradeskill_robe/red/chest',1190), -(18098,18098,'accessories/wearable_items/_exp08/tradeskill_robe/red/feet',1190), -(18099,18099,'accessories/wearable_items/_exp08/tradeskill_robe/red/hands',1190), -(18100,18100,'accessories/wearable_items/_exp08/tradeskill_robe/red/head_collar',1190), -(18101,18101,'accessories/wearable_items/_exp08/tradeskill_robe/red/head_hood',1190), -(18102,18102,'accessories/wearable_items/_exp08/tradeskill_robe/red/pants',1190), -(18103,18103,'accessories/wearable_items/_exp08/tradeskill_robe/red/skirt',1190), -(18104,18104,'staticobjects/housing_portal_objects/vision_home_void01',1190), -(18105,18105,'staticobjects/housing_portal_objects/vision_home_vasty_library01',1190), -(18106,18106,'staticobjects/_exp08/exp08_dun_skyshrine_contested/teleport_portalfx01',1190), -(18107,18107,'_exp08/characters/monsters/dragon_susarrak/susarrak',1190), -(18108,18108,'accessories/wieldable_items/shields/exp08/exp08_shield_buckler_tradeskill',1190), -(18109,18109,'accessories/wieldable_items/shields/exp08/exp08_shield_buckler_tradeskill_dark',1190), -(18110,18110,'accessories/wieldable_items/shields/exp08/exp08_shield_buckler_tradeskill_gold',1190), -(18111,18111,'accessories/wieldable_items/shields/exp08/exp08_shield_buckler_tradeskill_iron',1190), -(18112,18112,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_tradeskill',1190), -(18113,18113,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_tradeskill_dark',1190), -(18114,18114,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_tradeskill_gold',1190), -(18115,18115,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_tradeskill_iron',1190), -(18116,18116,'accessories/wieldable_items/shields/exp08/exp08_shield_round_tradeskill',1190), -(18117,18117,'accessories/wieldable_items/shields/exp08/exp08_shield_round_tradeskill_dark',1190), -(18118,18118,'accessories/wieldable_items/shields/exp08/exp08_shield_round_tradeskill_gold',1190), -(18119,18119,'accessories/wieldable_items/shields/exp08/exp08_shield_round_tradeskill_iron',1190), -(18120,18120,'_exp09/characters/monsters/mud_monster/mud_monster_skyshrine',1190), -(18121,18121,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_blackred',1190), -(18122,18122,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_blackwhite',1190), -(18123,18123,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_blueyellow',1190), -(18124,18124,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_greengold',1190), -(18125,18125,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_purplepink',1190), -(18126,18126,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_redgold',1190), -(18127,18127,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/belt/skirt 2',1190), -(18128,18128,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/belt/skirt',1190), -(18129,18129,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/head/head',1190), -(18130,18130,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/chest',1190), -(18131,18131,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/feet',1190), -(18132,18132,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/hands',1190), -(18133,18133,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/head_jester',1190), -(18134,18134,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/legs',1190), -(18135,18135,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/shoulders',1190), -(18136,18136,'accessories/wearable_items/_exp08/jester_heavycloth/blackred/skirt',1190), -(18137,18137,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/belt/skirt',1190), -(18138,18138,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/belt/skirt_nofroglok',1190), -(18139,18139,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/chest',1190), -(18140,18140,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/feet',1190), -(18141,18141,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/hands',1190), -(18142,18142,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/head_jester',1190), -(18143,18143,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/legs',1190), -(18144,18144,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/shoulders',1190), -(18145,18145,'accessories/wearable_items/_exp08/jester_heavycloth/blackwhite/skirt',1190), -(18146,18146,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/belt/skirt',1190), -(18147,18147,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/belt/skirt_nofroglok',1190), -(18148,18148,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/chest',1190), -(18149,18149,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/feet',1190), -(18150,18150,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/hands',1190), -(18151,18151,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/head_jester',1190), -(18152,18152,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/legs',1190), -(18153,18153,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/shoulders',1190), -(18154,18154,'accessories/wearable_items/_exp08/jester_heavycloth/blueyellow/skirt',1190), -(18155,18155,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/chest',1190), -(18156,18156,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/feet',1190), -(18157,18157,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/hands',1190), -(18158,18158,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/head_jester',1190), -(18159,18159,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/legs',1190), -(18160,18160,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/shoulders',1190), -(18161,18161,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/skirt',1190), -(18162,18162,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/belt/skirt',1190), -(18163,18163,'accessories/wearable_items/_exp08/jester_heavycloth/greenyellow/belt/skirt_nofroglok',1190), -(18164,18164,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/chest',1190), -(18165,18165,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/feet',1190), -(18166,18166,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/hands',1190), -(18167,18167,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/head_jester',1190), -(18168,18168,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/legs',1190), -(18169,18169,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/shoulders',1190), -(18170,18170,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/skirt',1190), -(18171,18171,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/belt/skirt',1190), -(18172,18172,'accessories/wearable_items/_exp08/jester_heavycloth/purplepink/belt/skirt_nofroglok',1190), -(18173,18173,'accessories/wearable_items/_exp08/jester_heavycloth/set1/belt/skirt',1190), -(18174,18174,'accessories/wearable_items/_exp08/jester_heavycloth/set1/belt/skirt2',1190), -(18175,18175,'accessories/wearable_items/_exp08/jester_heavycloth/set1/chest',1190), -(18176,18176,'accessories/wearable_items/_exp08/jester_heavycloth/set1/feet',1190), -(18177,18177,'accessories/wearable_items/_exp08/jester_heavycloth/set1/hands',1190), -(18178,18178,'accessories/wearable_items/_exp08/jester_heavycloth/set1/head_jester',1190), -(18179,18179,'accessories/wearable_items/_exp08/jester_heavycloth/set1/legs',1190), -(18180,18180,'accessories/wearable_items/_exp08/jester_heavycloth/set1/shoulders',1190), -(18181,18181,'accessories/wearable_items/_exp08/jester_heavycloth/set1/skirt',1190), -(18182,18182,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn',1190), -(18183,18183,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_blue',1190), -(18184,18184,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_greenblue',1190), -(18185,18185,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_orange',1190), -(18186,18186,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_purple',1190), -(18187,18187,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_purpleblue',1190), -(18188,18188,'creatures/mounts/horse_frost_unicorn/horse_darkspirit_unicorn_red',1190), -(18189,18189,'creatures/mounts/drakota_mount/drakota_mount_blue_rainstorm',1190), -(18190,18190,'creatures/mounts/drakota_mount/drakota_mount_red_firestorm',1190), -(18191,18191,'accessories/wieldable_items/weapons/exp09/fist/trueheart_claw',1190), -(18192,18192,'accessories/wieldable_items/weapons/exp09/fist/trueheart_claw_gold',1190), -(18193,18193,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_tradeskill',1190), -(18194,18194,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_tradeskill_dark',1190), -(18195,18195,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_tradeskill_gold',1190), -(18196,18196,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_tradeskill_iron',1190), -(18197,18197,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_tradeskill',1190), -(18198,18198,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_tradeskill_dark',1190), -(18199,18199,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_tradeskill_gold',1190), -(18200,18200,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_tradeskill_iron',1190), -(18201,18201,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tradeskill',1190), -(18202,18202,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tradeskill_dark',1190), -(18203,18203,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tradeskill_gold',1190), -(18204,18204,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_axe_tradeskill_iron',1190), -(18205,18205,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tradeskill_hooked',1190), -(18206,18206,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tradeskill_hooked_dark',1190), -(18207,18207,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tradeskill_hooked_gold',1190), -(18208,18208,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_sword_tradeskill_hooked_iron',1190), -(18209,18209,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_axe_tradeskill',1190), -(18210,18210,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_axe_tradeskill_dark',1190), -(18211,18211,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_axe_tradeskill_gold',1190), -(18212,18212,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2h_axe_tradeskill_iron',1190), -(18213,18213,'creatures/tu/holgresh_male_tainted01',1190), -(18214,18214,'ec/pc/human/human_male_bandaged',1190), -(18215,18215,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/chest',1190), -(18216,18216,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/feet',1190), -(18217,18217,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/forearms',1190), -(18218,18218,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/hands',1190), -(18219,18219,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/head_combine_helm',1190), -(18220,18220,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/legs_noskirt',1190), -(18221,18221,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/legs_robeskirt',1190), -(18222,18222,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/legs_robeskirt_epic',1190), -(18223,18223,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/shoulders',1190), -(18224,18224,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/shoulders_epic',1190), -(18225,18225,'accessories/wearable_items/_exp08/combine_armor/vanguard_dirty/skirt_robe',1190), -(18226,18226,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_forearm_left',1190), -(18227,18227,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_forearm_right',1190), -(18228,18228,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_pauldron_left',1190), -(18229,18229,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_pauldron_right',1190), -(18230,18230,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_pauldrons_lower_left',1190), -(18231,18231,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_pauldrons_lower_right',1190), -(18232,18232,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_shin_left',1190), -(18233,18233,'accessories/wearable_items/_exp08/combine_armor/snapons-helms/dirty_combine_shin_right',1190), -(18234,18234,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/chest',1190), -(18235,18235,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/feet',1190), -(18236,18236,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/hands',1190), -(18237,18237,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/head_jester',1190), -(18238,18238,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/legs',1190), -(18239,18239,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/shoulders',1190), -(18240,18240,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/skirt',1190), -(18241,18241,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/belt/skirt',1190), -(18242,18242,'accessories/wearable_items/_exp08/jester_heavycloth/whitered/belt/skirt_nofroglok',1190), -(18243,18243,'creatures/mounts/carpet_fly',1190), -(18244,18244,'accessories/wearable_items/cloak/exp08/jester/cloak_jester_whitered',1190), -(18245,18245,'staticobjects/_exp08/dyod/poets/dyod_djn_artist_inkbottle01',1190), -(18246,18246,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_steel01',1190), -(18247,18247,'staticobjects/_exp08/dyod/poets/dyod_djn_basin_water_goldbrass01',1190), -(18248,18248,'staticobjects/_exp08/dyod/poets/dyod_djn_basin_water_steel01',1190), -(18249,18249,'staticobjects/_exp08/dyod/poets/dyod_djn_bed_brass01',1190), -(18250,18250,'staticobjects/_exp08/dyod/poets/dyod_djn_bed_gold01',1190), -(18251,18251,'staticobjects/_exp08/dyod/poets/dyod_djn_books_stack_small01',1190), -(18252,18252,'staticobjects/_exp08/dyod/poets/dyod_djn_books_stack_small02',1190), -(18253,18253,'staticobjects/_exp08/dyod/poets/dyod_djn_books_stack_tall01',1190), -(18254,18254,'staticobjects/_exp08/dyod/poets/dyod_djn_books_stack_tall02',1190), -(18255,18255,'staticobjects/_exp08/dyod/poets/dyod_djn_bowl_blue01',1190), -(18256,18256,'staticobjects/_exp08/dyod/poets/dyod_djn_bowl_gold01',1190), -(18257,18257,'staticobjects/_exp08/dyod/poets/dyod_djn_chair_artiststool_brass01',1190), -(18258,18258,'staticobjects/_exp08/dyod/poets/dyod_djn_chair_artiststool_steel01',1190), -(18259,18259,'staticobjects/_exp08/dyod/poets/dyod_djn_chair_high_brass01',1190), -(18260,18260,'staticobjects/_exp08/dyod/poets/dyod_djn_chair_high_gold01',1190), -(18261,18261,'staticobjects/_exp08/dyod/poets/dyod_djn_chair_high_platinum01',1190), -(18262,18262,'staticobjects/_exp08/dyod/poets/dyod_djn_cup_blue01',1190), -(18263,18263,'staticobjects/_exp08/dyod/poets/dyod_djn_cup_brass01',1190), -(18264,18264,'staticobjects/_exp08/dyod/poets/dyod_djn_desk_brass01',1190), -(18265,18265,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand01',1190), -(18266,18266,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_brass03',1190), -(18267,18267,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_brass_large02',1190), -(18268,18268,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_broken01',1190), -(18269,18269,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_large01',1190), -(18270,18270,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_platinum02',1190), -(18271,18271,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_blueround01',1190), -(18272,18272,'staticobjects/_exp08/dyod/poets/dyod_djn_displaystand_steel_large01',1190), -(18273,18273,'staticobjects/_exp08/dyod/poets/dyod_djn_genielamp_gold01',1190), -(18274,18274,'staticobjects/_exp08/dyod/poets/dyod_djn_genielamp_rusty01',1190), -(18275,18275,'staticobjects/_exp08/dyod/poets/dyod_djn_incenseburner_brass01',1190), -(18276,18276,'staticobjects/_exp08/dyod/poets/dyod_djn_incenseburner_gold01',1190), -(18277,18277,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_balloon_ornate01',1190), -(18278,18278,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_balloon_ornate01_yellow',1190), -(18279,18279,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_balloon_ornate02',1190), -(18280,18280,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_balloon_ornate03',1190), -(18281,18281,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_balloon_plain01',1190), -(18282,18282,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_table_balloon_blue',1190), -(18283,18283,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_table_balloon_orange',1190), -(18284,18284,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_table_balloon_yellow',1190), -(18285,18285,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_torch01',1190), -(18286,18286,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_torch01_blue',1190), -(18287,18287,'staticobjects/_exp08/dyod/poets/dyod_djn_lightsource_walltorch01',1190), -(18288,18288,'staticobjects/_exp08/dyod/poets/dyod_djn_mirror_teleporter01',1190), -(18289,18289,'staticobjects/_exp08/dyod/poets/dyod_djn_mirror_translocation01',1190), -(18290,18290,'staticobjects/_exp08/dyod/poets/dyod_djn_mirror_translocation_base01',1190), -(18291,18291,'staticobjects/_exp08/dyod/poets/dyod_djn_mirror_wall01',1190), -(18292,18292,'staticobjects/_exp08/dyod/poets/dyod_djn_music_harp01',1190), -(18293,18293,'staticobjects/_exp08/dyod/poets/dyod_djn_music_harp_broken01',1190), -(18294,18294,'staticobjects/_exp08/dyod/poets/dyod_djn_music_mandolin01',1190), -(18295,18295,'staticobjects/_exp08/dyod/poets/dyod_djn_music_mandolin_broken01',1190), -(18296,18296,'staticobjects/_exp08/dyod/poets/dyod_djn_orb_elevatorswitch01',1190), -(18297,18297,'staticobjects/_exp08/dyod/poets/dyod_djn_wine_bottle_gold',1190), -(18298,18298,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_blueround02',1190), -(18299,18299,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_bluesquare01',1190), -(18300,18300,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_bluesquare02',1190), -(18301,18301,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_bluesquare03',1190), -(18302,18302,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_group01',1190), -(18303,18303,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_group01_dirty',1190), -(18304,18304,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_group02',1190), -(18305,18305,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_group02_dirty',1190), -(18306,18306,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redround01',1190), -(18307,18307,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redround01_dirty',1190), -(18308,18308,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redround02',1190), -(18309,18309,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redround02_dirty',1190), -(18310,18310,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redsquare01',1190), -(18311,18311,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redsquare01_dirty',1190), -(18312,18312,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redsquare02',1190), -(18313,18313,'staticobjects/_exp08/dyod/poets/dyod_djn_pillow_floor_redsquare02_dirty',1190), -(18314,18314,'staticobjects/_exp08/dyod/poets/dyod_djn_plate_blue01',1190), -(18315,18315,'staticobjects/_exp08/dyod/poets/dyod_djn_plate_gold01',1190), -(18316,18316,'staticobjects/_exp08/dyod/poets/dyod_djn_pottedplant_palm01_small_blue',1190), -(18317,18317,'staticobjects/_exp08/dyod/poets/dyod_djn_scriptorium_scrollracks_3m',1190), -(18318,18318,'staticobjects/_exp08/dyod/poets/dyod_djn_scriptorium_scrollracks_6m',1190), -(18319,18319,'staticobjects/_exp08/dyod/poets/dyod_djn_scriptorium_scrollracks_8m',1190), -(18320,18320,'staticobjects/_exp08/dyod/poets/dyod_djn_scriptorium_scrollracks_candlevasebrass02',1190), -(18321,18321,'staticobjects/_exp08/dyod/poets/dyod_djn_scriptorium_scrollracks_candlevasegold01',1190), -(18322,18322,'staticobjects/_exp08/dyod/poets/dyod_djn_scroll_single_open01',1190), -(18323,18323,'staticobjects/_exp08/dyod/poets/dyod_djn_scrolls_group03',1190), -(18324,18324,'staticobjects/_exp08/dyod/poets/dyod_djn_table_artist_brass01',1190), -(18325,18325,'staticobjects/_exp08/dyod/poets/dyod_djn_table_artist_steel01',1190), -(18326,18326,'staticobjects/_exp08/dyod/poets/dyod_djn_table_bedside01',1190), -(18327,18327,'staticobjects/_exp08/dyod/poets/dyod_djn_table_bedside02_brass01',1190), -(18328,18328,'staticobjects/_exp08/dyod/poets/dyod_djn_table_brass02',1190), -(18329,18329,'staticobjects/_exp08/dyod/poets/dyod_djn_table_gold01',1190), -(18330,18330,'staticobjects/_exp08/dyod/poets/dyod_djn_table_platinum01',1190), -(18331,18331,'staticobjects/_exp08/dyod/poets/dyod_djn_vase_brass01',1190), -(18332,18332,'staticobjects/_exp08/dyod/poets/dyod_djn_vase_brass02',1190), -(18333,18333,'staticobjects/_exp08/dyod/poets/dyod_djn_vase_gold01',1190), -(18334,18334,'staticobjects/_exp08/dyod/poets/dyod_djn_vase_gold02',1190), -(18335,18335,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_satyr_totem_1',1190), -(18336,18336,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_satyr_totem_2',1190), -(18337,18337,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_satyr_totem_3',1190), -(18338,18338,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_satyr_totem_4',1190), -(18339,18339,'accessories/wearable_items/_exp06/dwarf_armor_chain/head_hornedcrest',1190), -(18340,18340,'accessories/wearable_items/cloak/exp08/cloak_royal',1190), -(18341,18341,'accessories/wearable_items/_exp08/robe_royal/redgold/chest',1190), -(18342,18342,'accessories/wearable_items/_exp08/robe_royal/redgold/feet',1190), -(18343,18343,'accessories/wearable_items/_exp08/robe_royal/redgold/hands',1190), -(18344,18344,'accessories/wearable_items/_exp08/robe_royal/redgold/head',1190), -(18345,18345,'accessories/wearable_items/_exp08/robe_royal/redgold/head_collar',1190), -(18346,18346,'accessories/wearable_items/_exp08/robe_royal/redgold/pants',1190), -(18347,18347,'accessories/wearable_items/_exp08/robe_royal/redgold/skirt',1190), -(18348,18348,'_exp08/objects/satyr_camp_stone_unbroken',1190), -(18349,18349,'_exp08/objects/satyr_camp_stone_broken',1190), -(18350,18350,'_exp08/objects/stele_broken',1190), -(18351,18351,'_exp08/objects/stele_fixed',1190), -(18352,18352,'_exp08/objects/stele_fragment_01',1190), -(18353,18353,'_exp08/objects/stele_fragment_02',1190), -(18354,18354,'_exp08/objects/stele_fragment_03',1190), -(18355,18355,'_exp08/objects/combine_barrel_01',1190), -(18356,18356,'_exp08/objects/dirt_fertile',1190), -(18357,18357,'_exp08/objects/dirt_not_fertile',1190), -(18358,18358,'creatures/mounts/drakota_mount/drakota_mount_black_stormy',1190), -(18359,18359,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_satyr_totem_base',1190), -(18360,18360,'accessories/wearable_items/_exp08/kilt_jewelled/base/belt',1190), -(18361,18361,'accessories/wearable_items/_exp08/kilt_jewelled/base/chest',1190), -(18362,18362,'accessories/wearable_items/_exp08/kilt_jewelled/base/feet',1190), -(18363,18363,'accessories/wearable_items/_exp08/kilt_jewelled/base/hands',1190), -(18364,18364,'accessories/wearable_items/_exp08/kilt_jewelled/base/legs_short_skirt_base',1190), -(18365,18365,'accessories/wearable_items/_exp08/kilt_jewelled/base/shoulders',1190), -(18366,18366,'accessories/wearable_items/_exp08/kilt_jewelled/base/snap_ons/belt',1190), -(18367,18367,'accessories/wearable_items/_exp08/kilt_jewelled/base/snap_ons/short_skirt',1190), -(18368,18368,'accessories/wearable_items/_exp08/kilt_jewelled/troubadour_hat_jewelled/head',1190), -(18369,18369,'accessories/wearable_items/_exp08/kilt_jewelled/base/head',1190), -(18370,18370,'creatures/mounts/drakota_mount/drakota_mount_base_server',1190), -(18371,18371,'creatures/mounts/drakota_mount/drakota_mount_black_server',1190), -(18372,18372,'creatures/mounts/drakota_mount/drakota_mount_blue_server',1190), -(18373,18373,'creatures/mounts/drakota_mount/drakota_mount_green_server',1190), -(18374,18374,'creatures/mounts/drakota_mount/drakota_mount_red_server',1190), -(18375,18375,'_exp08/objects/stele_brush',1190), -(18376,18376,'accessories/wearable_items/cloak/exp08/cloak_jewel',1190), -(18377,18377,'accessories/wearable_items/cloak/exp08/cloak_jewel_scallop',1190), -(18378,18378,'_exp08/objects/baracades/wl_baracade03_dpo',1190), -(18379,18379,'_exp08/objects/baracades/wl_baracade01_dpo',1190), -(18380,18380,'_exp08/objects/baracades/wl_baracade02_dpo',1190), -(18381,18381,'_exp08/objects/bones/wl_bones_satyr_dpo',1190), -(18382,18382,'_exp08/objects/bones/wl_bones_raptor_dpo',1190), -(18383,18383,'_exp08/objects/bug_eggs/wl_bug_egg_dpo',1190), -(18384,18384,'_exp08/objects/giant_zombie_objects/wl_weapons_rack_dpo',1190), -(18385,18385,'_exp08/objects/giant_zombie_objects/wl_chair_dpo',1190), -(18386,18386,'_exp08/objects/giant_zombie_objects/wl_chest_lrg_dpo',1190), -(18387,18387,'_exp08/objects/holgresh/wl_hol_vertebrae_table_dpo',1190), -(18388,18388,'_exp08/objects/holgresh/wl_barricade1_dpo',1190), -(18389,18389,'_exp08/objects/holgresh/wl_barricade1_graveyard_dpo',1190), -(18390,18390,'_exp08/objects/holgresh/wl_barricade2_dpo',1190), -(18391,18391,'_exp08/objects/holgresh/wl_barricade2_graveyard_dpo',1190), -(18392,18392,'_exp08/objects/holgresh/wl_barricade3_dpo',1190), -(18393,18393,'_exp08/objects/holgresh/wl_barricade3_graveyard_dpo',1190), -(18394,18394,'_exp08/objects/holgresh/wl_hol_bed1_dpo',1190), -(18395,18395,'_exp08/objects/holgresh/wl_hol_bed2_dpo',1190), -(18396,18396,'_exp08/objects/holgresh/wl_hol_bonepile1_dpo',1190), -(18397,18397,'_exp08/objects/holgresh/wl_hol_bonepile2_dpo',1190), -(18398,18398,'_exp08/objects/holgresh/wl_hol_bonepile3_dpo',1190), -(18399,18399,'_exp08/objects/holgresh/wl_hol_bonepile4_dpo',1190), -(18400,18400,'_exp08/objects/holgresh/wl_hol_bowl1_dpo',1190), -(18401,18401,'_exp08/objects/holgresh/wl_hol_bowl2_dpo',1190), -(18402,18402,'_exp08/objects/holgresh/wl_hol_dragon_shoulder_dpo',1190), -(18403,18403,'_exp08/objects/holgresh/wl_hol_dragonskullfire_dpo',1190), -(18404,18404,'_exp08/objects/holgresh/wl_hol_dragontooth_dpo',1190), -(18405,18405,'_exp08/objects/holgresh/wl_hol_fetish_long1_dpo',1190), -(18406,18406,'_exp08/objects/holgresh/wl_hol_fetish_long2_dpo',1190), -(18407,18407,'_exp08/objects/holgresh/wl_hol_fetish_med1_dpo',1190), -(18408,18408,'_exp08/objects/holgresh/wl_hol_fetish_med2_dpo',1190), -(18409,18409,'_exp08/objects/holgresh/wl_hol_fetish_med3_dpo',1190), -(18410,18410,'_exp08/objects/holgresh/wl_hol_fetish_short_dpo',1190), -(18411,18411,'_exp08/objects/holgresh/wl_hol_skull_table_dpo',1190), -(18412,18412,'_exp08/objects/holgresh/wl_hol_skullfire1_dpo',1190), -(18413,18413,'_exp08/objects/holgresh/wl_hol_skullfire2_dpo',1190), -(18414,18414,'_exp08/objects/satyr_camp/wl_satyr_mat01_dpo',1190), -(18415,18415,'_exp08/objects/satyr_camp/wl_container_basketlong_open01_dpo',1190), -(18416,18416,'_exp08/objects/satyr_camp/wl_container_basketshort01_dpo',1190), -(18417,18417,'_exp08/objects/satyr_camp/wl_container_baskettall02_dpo',1190), -(18418,18418,'_exp08/objects/satyr_camp/wl_container_bowl01_dpo',1190), -(18419,18419,'_exp08/objects/satyr_camp/wl_goodsatyr_candle_dpo',1190), -(18420,18420,'_exp08/objects/withering_lands/wl_veggie_vine02_dpo',1190), -(18421,18421,'_exp08/objects/withering_lands/wl_evil_flower01_dpo',1190), -(18422,18422,'_exp08/objects/withering_lands/wl_evil_orchid_01_dpo',1190), -(18423,18423,'_exp08/objects/withering_lands/wl_happy_bush01_dpo',1190), -(18424,18424,'_exp08/objects/withering_lands/wl_swamp_pads01_dpo',1190), -(18425,18425,'_exp08/objects/withering_lands/wl_swamp_pads02_dpo',1190), -(18426,18426,'_exp08/objects/withering_lands/wl_swamp_pads03_dpo',1190), -(18427,18427,'_exp08/objects/withering_lands/wl_swamp_plant_dpo',1190), -(18428,18428,'_exp08/objects/withering_lands/wl_twisted_tree_sapling_01_dpo',1190), -(18429,18429,'_exp08/objects/withering_lands/wl_veggie_vine01_dpo',1190), -(18430,18430,'_exp08/characters/monsters/dozekar/dozekar_02',1190), -(18431,18431,'_exp08/characters/monsters/insect_queen/insect_queen_blue',1190), -(18432,18432,'_exp08/characters/monsters/lady_nevederia/lady_nevederia',1190), -(18433,18433,'_exp08/characters/tool_users/satyr_witheringlands_good/satyr_03',1190), -(18434,18434,'_exp08/objects/ritual_stone',1190), -(18435,18435,'_exp01/characters/monsters/crocodile_thin_nose_white',1190), -(18436,18436,'_exp01/characters/monsters/crocodile_white',1190), -(18437,18437,'_exp01/characters/monsters/crocodile_white_spots',1190), -(18438,18438,'_exp08/objects/raptor_nest',1190), -(18439,18439,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hs_sword_nightmare',1190), -(18440,18440,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_serpentstrike_silver',1190), -(18441,18441,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_serpentstrike_gold',1190), -(18442,18442,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_boot_cuff_female_left',1190), -(18443,18443,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_boot_cuff_female_right',1190), -(18444,18444,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_boot_cuff_left',1190), -(18445,18445,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_boot_cuff_right',1190), -(18446,18446,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_chest',1190), -(18447,18447,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_collar',1190), -(18448,18448,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_foot_left',1190), -(18449,18449,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_foot_right',1190), -(18450,18450,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_forearm_left',1190), -(18451,18451,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_forearm_right',1190), -(18452,18452,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_pauldron_left',1190), -(18453,18453,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_pauldron_right',1190), -(18454,18454,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_shin_left',1190), -(18455,18455,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_shin_right',1190), -(18456,18456,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_upperarm_left',1190), -(18457,18457,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_upperarm_right',1190), -(18458,18458,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_upperthigh_left',1190), -(18459,18459,'accessories/wearable_items/_exp08/arasai_heritage_armor/snap_ons/arasai_heritage_upperthigh_right',1190), -(18460,18460,'accessories/wearable_items/_exp08/arasai_heritage_armor/chest',1190), -(18461,18461,'accessories/wearable_items/_exp08/arasai_heritage_armor/hands',1190), -(18462,18462,'accessories/wearable_items/_exp08/arasai_heritage_armor/head_arasai_heritage',1190), -(18463,18463,'accessories/wearable_items/_exp08/arasai_heritage_armor/legs',1190), -(18464,18464,'accessories/wearable_items/cloak/exp08/cloak_arasai_heritage',1190), -(18465,18465,'accessories/wieldable_items/shields/exp08/exp08_shield_gemstone_marbleflame',1190), -(18466,18466,'accessories/wieldable_items/shields/exp08/exp08_shield_gemstone_purple',1190), -(18467,18467,'accessories/wieldable_items/shields/exp08/exp08_shield_gemstone_marblemist',1190), -(18468,18468,'accessories/wieldable_items/shields/exp08/exp08_shield_gemstone_blue',1190), -(18469,18469,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_emberwood',1190), -(18470,18470,'accessories/wieldable_items/weapons/exp08/bow/exp08_bow_emberwood_dark',1190), -(18471,18471,'creatures/mounts/wyvern_mount/wyvern_mount_base',1190), -(18472,18472,'accessories/wieldable_items/shields/exp08/exp08_shield_dragonanimated_royalvelium',1190), -(18473,18473,'accessories/wieldable_items/shields/exp08/exp08_shield_dragonanimated_silver',1190), -(18474,18474,'accessories/wieldable_items/shields/exp08/exp08_shield_dragonanimated_velium',1190), -(18475,18475,'creatures/mounts/carpet_fly_battlemage_pestillence',1190), -(18476,18476,'creatures/mounts/carpet_fly_battlemage_purple',1190), -(18477,18477,'creatures/mounts/carpet_fly_battlemage_red',1190), -(18478,18478,'creatures/mounts/carpet_fly_glass_swirl_blue',1190), -(18479,18479,'creatures/mounts/carpet_fly_glass_swirl_red',1190), -(18480,18480,'creatures/mounts/horse_heavy/horse_new_combine_freeport',1190), -(18481,18481,'creatures/mounts/horse_heavy/horse_new_combine_halas',1190), -(18482,18482,'_exp08/characters/tool_users/satyr_witheringlands_good/satyr_01',1190), -(18483,18483,'creatures/mounts/horse_heavy/horse_new_combine_kelethin',1190), -(18484,18484,'creatures/mounts/horse_heavy/horse_new_combine_neriak',1190), -(18485,18485,'creatures/mounts/horse_heavy/horse_new_combine_qeynos',1190), -(18486,18486,'creatures/mounts/horse_heavy/horse_new_combine_gorowyn',1190), -(18487,18487,'accessories/wearable_items/cloak/exp09/cloak_withering_lands',1190), -(18488,18488,'_exp08/characters/tool_users/combine_woodelf/combine_woodelf_optimized',1190), -(18489,18489,'creatures/pets/lumpy_pet/pet_dragon_lumpy_blue',1190), -(18490,18490,'creatures/pets/lumpy_pet/pet_dragon_lumpy_gold',1190), -(18491,18491,'creatures/pets/lumpy_pet/pet_dragon_lumpy_green',1190), -(18492,18492,'creatures/pets/lumpy_pet/pet_dragon_lumpy_purple',1190), -(18493,18493,'creatures/pets/lumpy_pet/pet_dragon_lumpy_red',1190), -(18494,18494,'creatures/pets/lumpy_pet/pet_dragon_lumpy_shadow',1190), -(18495,18495,'_exp08/characters/tool_users/satyr_witheringlands_good/satyr_02',1190), -(18496,18496,'_exp08/characters/tool_users/satyr_witheringlands_good/satyr_04',1190), -(18497,18497,'_exp08/characters/tool_users/satyr_witheringlands_good/satyr_05',1190), -(18498,18498,'staticobjects/tcg/tcg_painting68_burnish',1190), -(18499,18499,'staticobjects/tcg/tcg_painting62_transcendinghelm',1190), -(18500,18500,'staticobjects/tcg/tcg_painting63_library',1190), -(18501,18501,'staticobjects/tcg/tcg_painting64_daughter',1190), -(18502,18502,'staticobjects/tcg/tcg_painting65_sandguard',1190), -(18503,18503,'staticobjects/tcg/tcg_painting66_fitbattle',1190), -(18504,18504,'staticobjects/tcg/tcg_painting67_buccaneer',1190), -(18505,18505,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_club_holgresh',1190), -(18506,18506,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_1h_dagger_holgresh',1190), -(18507,18507,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hs_axe_holgresh',1190), -(18508,18508,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hs_sword_holgresh',1190), -(18509,18509,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hs_axe_holgresh_pc',1190), -(18510,18510,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_mailbox',1190), -(18511,18511,'_exp09/characters/monsters/mud_monster/mud_monster_illusion',1190), -(18512,18512,'creatures/monsters/goo_withering_lands',1190), -(18513,18513,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_blue',1190), -(18514,18514,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_gold',1190), -(18515,18515,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_green',1190), -(18516,18516,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_purple',1190), -(18517,18517,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_red',1190), -(18518,18518,'accessories/wearable_items/profesion_hats/snow_bunny_hat/lumpy_dragon_variants/head_snow_bunny_hat_shadow',1190), -(18519,18519,'_exp08/characters/monsters/wyvern_new/wyvern_new_base',1190), -(18520,18520,'accessories/wearable_items/_exp08/highelf_heritage_armor/valkyrie_new/chest',1190), -(18521,18521,'creatures/pets/terrorbird_chick/terrorbird_chick',1190), -(18522,18522,'accessories/wearable_items/_exp08/highelf_heritage_armor/valkyrie_new/forearms',1190), -(18523,18523,'accessories/wearable_items/cloak/exp08/cloak_antonican_guard_chain',1190), -(18524,18524,'accessories/wearable_items/_exp08/highelf_heritage_armor/valkyrie_new/legs',1190), -(18525,18525,'creatures/tu/holgresh_male_caster01',1190), -(18526,18526,'creatures/tu/holgresh_male_caster02',1190), -(18527,18527,'creatures/tu/holgresh_male_caster03',1190), -(18528,18528,'creatures/tu/holgresh_male_warrior01',1190), -(18529,18529,'creatures/tu/holgresh_male_warrior02',1190), -(18530,18530,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_trough',1190), -(18531,18531,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_wheelbarrow',1190), -(18532,18532,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_ark',1190), -(18533,18533,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_barrel',1190), -(18534,18534,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_bellows',1190), -(18535,18535,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_bench',1190), -(18536,18536,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_book_01',1190), -(18537,18537,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_book_02',1190), -(18538,18538,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_book_03',1190), -(18539,18539,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_book_04',1190), -(18540,18540,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_brazier_01',1190), -(18541,18541,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_brazier_02',1190), -(18542,18542,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_brazier_03',1190), -(18543,18543,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_crate_01',1190), -(18544,18544,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_cupboard_01',1190), -(18545,18545,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_cupboard_02',1190), -(18546,18546,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_cupboard_03',1190), -(18547,18547,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_freeport',1190), -(18548,18548,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_freeport_hanging',1190), -(18549,18549,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_gorowyn',1190), -(18550,18550,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_gorowyn_hanging',1190), -(18551,18551,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_halas',1190), -(18552,18552,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_halas_hanging',1190), -(18553,18553,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_kelethin',1190), -(18554,18554,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_kelethin_hanging',1190), -(18555,18555,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_neriak',1190), -(18556,18556,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_neriak_hanging',1190), -(18557,18557,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_qeynos',1190), -(18558,18558,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_flag_qeynos_hanging',1190), -(18559,18559,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_grave',1190), -(18560,18560,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_01',1190), -(18561,18561,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_02',1190), -(18562,18562,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_03',1190), -(18563,18563,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_04',1190), -(18564,18564,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_05',1190), -(18565,18565,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_gravestone_06',1190), -(18566,18566,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_jewelry_box',1190), -(18567,18567,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_map',1190), -(18568,18568,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_nightstand',1190), -(18569,18569,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_01',1190), -(18570,18570,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_02',1190), -(18571,18571,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_03',1190), -(18572,18572,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_04',1190), -(18573,18573,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_05',1190), -(18574,18574,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_rug_06',1190), -(18575,18575,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_stage',1190), -(18576,18576,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_stairs',1190), -(18577,18577,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_stool',1190), -(18578,18578,'staticobjects/_exp08/player_housing/new/exp08_withered_lands_combine_table',1190), -(18579,18579,'accessories/wearable_items/cloak/exp09/cloak_springtime_blue',1190), -(18580,18580,'accessories/wearable_items/cloak/exp09/cloak_springwrap_gold',1190), -(18581,18581,'accessories/wearable_items/cloak/exp09/cloak_springwrap_green',1190), -(18582,18582,'accessories/wearable_items/cloak/exp09/cloak_springwrap_purp',1190), -(18583,18583,'accessories/wearable_items/cloak/exp09/cloak_springwrap_red',1190), -(18584,18584,'accessories/wearable_items/cloak/exp09/cloak_springwrap_shadow',1190), -(18585,18585,'staticobjects/_exp08/player_housing/wl_draconic_spire_platform_dpo',1190), -(18586,18586,'ec/pc/human/human_male_voicetest',1190), -(18587,18587,'_exp08/objects/holgresh_head_on_pike',1190), -(18588,18588,'staticobjects/tcg/tcg_tinkered_box_blue_button',1190), -(18589,18589,'staticobjects/tcg/tcg_tinkered_box_red_button2',1190), -(18590,18590,'_exp08/objects/combine_wagon_01',1190), -(18591,18591,'_exp08/objects/combine_wagon_nowheel_01',1190), -(18592,18592,'_exp08/objects/combine_wagon_wheel_01',1190), -(18593,18593,'staticobjects/guildhall/trophies/floor_dozekar_the_ancient',1190), -(18594,18594,'staticobjects/guildhall/trophies/floor_sevalak_of_storms',1190), -(18595,18595,'staticobjects/guildhall/trophies/floor_vyskudra_the_ancient',1190), -(18596,18596,'_exp08/objects/wl_hol_evil_totem',1190), -(18597,18597,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_crystaline',1190), -(18598,18598,'staticobjects/guildhall/trophies/floor_dozekar_the_ancient_fx',1190), -(18599,18599,'_exp09/objects/sleepers_tomb/sleepers_tomb_oblisque02',1190), -(18600,18600,'accessories/wearable_items/_exp08/antonican_guard/chain/chest',1190), -(18601,18601,'accessories/wearable_items/_exp08/antonican_guard/chain/feet',1190), -(18602,18602,'staticobjects/housing_portal_objects/vision_home_enchanted01',1190), -(18603,18603,'staticobjects/housing_portal_objects/vision_home_citadel01',1190), -(18604,18604,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/shoulder_armband_female_right_and_left',1190), -(18605,18605,'accessories/wearable_items/_exp08/highelf_heritage_armor/snapons/shoulder_armband_female_left',1190), -(18606,18606,'staticobjects/_exp08/player_housing/new/exp08_skyshrine_objects01_statue03_gov01_mable_dpo',1190), -(18607,18607,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/pauldron_left',1190), -(18608,18608,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/pauldron_right',1190), -(18609,18609,'accessories/wearable_items/_exp09/antonican_faction_armor/robe/skirt',1190), -(18610,18610,'accessories/wearable_items/_exp09/celestial_watch/chest',1190), -(18611,18611,'accessories/wearable_items/_exp09/celestial_watch/feet',1190), -(18612,18612,'accessories/wearable_items/_exp09/celestial_watch/forearms',1190), -(18613,18613,'accessories/wearable_items/_exp09/celestial_watch/hands',1190), -(18614,18614,'accessories/wearable_items/_exp09/celestial_watch/head',1190), -(18615,18615,'accessories/wearable_items/_exp09/celestial_watch/legs',1190), -(18616,18616,'accessories/wearable_items/_exp09/celestial_watch/legs_noskirt',1190), -(18617,18617,'accessories/wearable_items/_exp09/celestial_watch/pauldron_left_celestial_watch',1190), -(18618,18618,'accessories/wearable_items/_exp09/celestial_watch/pauldron_right_celestial_watch',1190), -(18619,18619,'accessories/wearable_items/_exp09/celestial_watch/shoulders',1190), -(18620,18620,'accessories/wearable_items/_exp09/celestial_watch/shoulders_epic',1190), -(18621,18621,'accessories/wearable_items/_exp09/celestial_watch/skirt',1190), -(18622,18622,'accessories/wearable_items/_exp09/celestial_watch/robe_head/head_hood',1190), -(18623,18623,'accessories/wearable_items/cloak/exp09/cloak_celestial_watch',1190), -(18624,18624,'accessories/wieldable_items/shields/exp09/shield_celestial_watch',1190), -(18625,18625,'accessories/wearable_items/_exp08/rogue_whisperweave/chest_1',1190), -(18626,18626,'accessories/wearable_items/_exp08/rogue_whisperweave/hands_1',1190), -(18627,18627,'accessories/wearable_items/_exp08/rogue_whisperweave/legs_1',1190), -(18628,18628,'accessories/wearable_items/_exp08/antonican_guard/chain/forearms',1190), -(18629,18629,'accessories/wearable_items/_exp08/antonican_guard/chain/hands',1190), -(18630,18630,'accessories/wearable_items/_exp08/antonican_guard/chain/head',1190), -(18631,18631,'accessories/wearable_items/_exp08/antonican_guard/chain/legs',1190), -(18632,18632,'accessories/wearable_items/_exp08/antonican_guard/chain/legs_noskirt',1190), -(18633,18633,'accessories/wearable_items/_exp08/antonican_guard/chain/shoulders',1190), -(18634,18634,'accessories/wearable_items/_exp08/antonican_guard/chain/shoulders_nopauldrons',1190), -(18635,18635,'accessories/wearable_items/_exp08/antonican_guard/chain/skirt',1190), -(18636,18636,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/belt/skirt 2',1190), -(18637,18637,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/belt/skirt',1190), -(18638,18638,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/chest',1190), -(18639,18639,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/feet',1190), -(18640,18640,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/hands',1190), -(18641,18641,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/head_hood',1190), -(18642,18642,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/legs',1190), -(18643,18643,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/shoulders',1190), -(18644,18644,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/shoulders_nopauldrons',1190), -(18645,18645,'accessories/wearable_items/_exp08/antonican_guard/leather_heavycloth/skirt',1190), -(18646,18646,'accessories/wearable_items/_exp08/antonican_guard/robe/chest',1190), -(18647,18647,'accessories/wearable_items/_exp08/antonican_guard/robe/chest_pauldrons',1190), -(18648,18648,'accessories/wearable_items/_exp08/antonican_guard/robe/feet',1190), -(18649,18649,'accessories/wearable_items/_exp08/antonican_guard/robe/hands',1190), -(18650,18650,'accessories/wearable_items/_exp08/antonican_guard/robe/head_collar',1190), -(18651,18651,'accessories/wearable_items/_exp08/antonican_guard/robe/head_collar_flared',1190), -(18652,18652,'accessories/wearable_items/_exp08/antonican_guard/robe/head_hood',1190), -(18653,18653,'accessories/wearable_items/_exp08/antonican_guard/robe/pants',1190), -(18654,18654,'accessories/wearable_items/_exp08/antonican_guard/robe/skirt',1190), -(18655,18655,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/head_crest',1190), -(18656,18656,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/head_topknot',1190), -(18657,18657,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_pauldron_light_left',1190), -(18658,18658,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_pauldron_light_right',1190), -(18659,18659,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_chain_left',1190), -(18660,18660,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_chain_right',1190), -(18661,18661,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_pauldron_robe_right',1190), -(18662,18662,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_pauldron_robe_left',1190), -(18663,18663,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_sm_left',1190), -(18664,18664,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_sm_right',1190), -(18665,18665,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_shinguard_left',1190), -(18666,18666,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_shinguard_right',1190), -(18667,18667,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_bracer_left',1190), -(18668,18668,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_bracer_right',1190), -(18669,18669,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron2_left',1190), -(18670,18670,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron2_right',1190), -(18671,18671,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_left',1190), -(18672,18672,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/qeynos_vanguard_pauldron_right',1190), -(18673,18673,'accessories/wearable_items/_exp08/antonican_guard/vanguard/chest',1190), -(18674,18674,'accessories/wearable_items/_exp08/antonican_guard/vanguard/feet',1190), -(18675,18675,'accessories/wearable_items/_exp08/antonican_guard/vanguard/forearms',1190), -(18676,18676,'accessories/wearable_items/_exp08/antonican_guard/vanguard/hands',1190), -(18677,18677,'accessories/wearable_items/_exp08/antonican_guard/vanguard/head',1190), -(18678,18678,'accessories/wearable_items/_exp08/antonican_guard/vanguard/head_epic',1190), -(18679,18679,'accessories/wearable_items/_exp08/antonican_guard/vanguard/head_epic_crest',1190), -(18680,18680,'accessories/wearable_items/_exp08/antonican_guard/vanguard/head_epic_topknot',1190), -(18681,18681,'accessories/wearable_items/_exp08/antonican_guard/vanguard/left',1190), -(18682,18682,'accessories/wearable_items/_exp08/antonican_guard/vanguard/legs',1190), -(18683,18683,'accessories/wearable_items/_exp08/antonican_guard/vanguard/legs_epic',1190), -(18684,18684,'accessories/wearable_items/_exp08/antonican_guard/vanguard/legs_noskirt',1190), -(18685,18685,'accessories/wearable_items/_exp08/antonican_guard/vanguard/right',1190), -(18686,18686,'accessories/wearable_items/_exp08/antonican_guard/vanguard/shoulders',1190), -(18687,18687,'accessories/wearable_items/_exp08/antonican_guard/vanguard/shoulders_epic',1190), -(18688,18688,'accessories/wearable_items/_exp08/antonican_guard/vanguard/shoulders_nopauldron',1190), -(18689,18689,'accessories/wearable_items/_exp08/antonican_guard/vanguard/skirt',1190), -(18690,18690,'accessories/wearable_items/cloak/exp08/cloak_antonican_guard_leather',1190), -(18691,18691,'ec/npc/antonia_2012_paladin',1190), -(18692,18692,'ec/npc/antonia_2012_regal',1190), -(18693,18693,'creatures/mounts/griffin_classic/griffin_classic',1190), -(18694,18694,'accessories/wearable_items/cloak/exp08/cloak_antonia_2012',1190), -(18695,18695,'accessories/wieldable_items/shields/exp08/exp08_shield_antonia_paladin',1190), -(18696,18696,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hs_sword_antonia_paladin',1190), -(18697,18697,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/chest',1190), -(18698,18698,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/epic_pauldron_left',1190), -(18699,18699,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/epic_pauldron_right',1190), -(18700,18700,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/feet',1190), -(18701,18701,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/forearms',1190), -(18702,18702,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/hands',1190), -(18703,18703,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/head',1190), -(18704,18704,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/head_epic',1190), -(18705,18705,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/legs',1190), -(18706,18706,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/legs_noskirt',1190), -(18707,18707,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/right',1190), -(18708,18708,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/shoulders',1190), -(18709,18709,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/shoulders_epic',1190), -(18710,18710,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/shoulders_nopauldrons',1190), -(18711,18711,'accessories/wearable_items/_exp09/qeynos_faction/vanguard/skirt',1190), -(18712,18712,'accessories/wearable_items/cloak/exp09/cloak_qeynos_faction',1190), -(18713,18713,'accessories/wieldable_items/weapons/exp08/1h_crush/mace_antonican_guard',1190), -(18714,18714,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_wand_antonican_guard',1190), -(18715,18715,'accessories/wieldable_items/weapons/exp08/1h_crush/hammer_antonican_guard',1190), -(18716,18716,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_hunter_antonican_guard',1190), -(18717,18717,'accessories/wieldable_items/weapons/exp08/1h_pierce/exp08_dagger_wizard_antonican_guard',1190), -(18718,18718,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hsword_antonican_guard',1190), -(18719,18719,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hsword_short_antonican_guard',1190), -(18720,18720,'accessories/wieldable_items/weapons/exp08/2h_sword/exp08_2hsword_antonican_guard',1190), -(18721,18721,'accessories/wieldable_items/weapons/exp08/bow/longbow_antonican_guard',1190), -(18722,18722,'accessories/wieldable_items/weapons/exp08/staff/halberd_antonican_guard',1190), -(18723,18723,'accessories/wieldable_items/shields/exp08/exp08_shield_kite_antonican_guard',1190), -(18724,18724,'creatures/mounts/lion_winged/lion_winged_base',1190), -(18725,18725,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_chain_pc_illusion',1190), -(18726,18726,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_chain_var1_pc_illusion',1190), -(18727,18727,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_horns_pc_illusion',1190), -(18728,18728,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_horns_var1_pc_illusion',1190), -(18729,18729,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_medallion_pc_illusion',1190), -(18730,18730,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_medallion_var1_pc_illusion',1190), -(18731,18731,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin_pc_illusion',1190), -(18732,18732,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin1_pc_illusion',1190), -(18733,18733,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin2_pc_illusion',1190), -(18734,18734,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin3_pc_illusion',1190), -(18735,18735,'_exp09/characters/tool_users/dracurion_palladin/dracurion_palladin4_pc_illusion',1190), -(18736,18736,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight_a_pc_illusion',1190), -(18737,18737,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight_b_pc_illusion',1190), -(18738,18738,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight_pc_illusion',1190), -(18739,18739,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight1_pc_illusion',1190), -(18740,18740,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight2_pc_illusion',1190), -(18741,18741,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight3_pc_illusion',1190), -(18742,18742,'_exp09/characters/tool_users/dracurion_shadowknight/dracurion_shadowknight4_pc_illusion',1190), -(18743,18743,'creatures/mounts/bird_mount/evil/bird_evil_base',1190), -(18744,18744,'accessories/wieldable_items/shields/exp08/exp08_shield_round_circleoften',1190), -(18745,18745,'accessories/wearable_items/cloak/exp08/cloak_circleoften_square',1190), -(18746,18746,'accessories/wearable_items/cloak/exp08/cloak_circleoften_scallop',1190), -(18747,18747,'staticobjects/flora/dpo_gf_flora_fae_flower_bud01',1190), -(18748,18748,'_exp09/characters/monsters/timber_wolf_corrupted/timber_wolf_shadowed',1190), -(18749,18749,'staticobjects/debris/gnoll_burrowpile01',1190), -(18750,18750,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_crystaline_02',1190), -(18751,18751,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_crystaline_03',1190), -(18752,18752,'_exp09/characters/tool_users/armored_gnoll/armored_gnoll',1190), -(18753,18753,'_exp09/characters/tool_users/armored_gnoll/armored_gnoll_gold',1190), -(18754,18754,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_spirit_blue',1190), -(18755,18755,'_exp09/characters/tool_users/baelon/baelon',1190), -(18756,18756,'_exp08/characters/tool_users/qeynos_guard/qeynos_guard_female',1190), -(18757,18757,'_exp08/characters/tool_users/qeynos_guard/qeynos_guard_male',1190), -(18758,18758,'_exp09/characters/monsters/wyvern_sleepers_tomb/wyvern_sleepers_tomb',1190), -(18759,18759,'creatures/mounts/pegasus_mount/pegasus_mount_epic_qeynos',1190), -(18760,18760,'_exp08/characters/monsters/gargoyle_sleeper/gargoyle_sleeper',1190), -(18761,18761,'projectiles/spell_vial',1190), -(18762,18762,'_exp08/characters/tool_users/child_human/child_human_male',1190), -(18763,18763,'_exp08/characters/tool_users/lich_spectre/lich_spectre',1190), -(18764,18764,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_crystaline_red',1190), -(18765,18765,'creatures/mounts/wyvern_mount/wyvern_mount_golden',1190), -(18766,18766,'creatures/mounts/wyvern_mount/wyvern_mount_green',1190), -(18767,18767,'creatures/mounts/wyvern_mount/wyvern_mount_red',1190), -(18768,18768,'creatures/mounts/wyvern_mount/wyvern_mount_shadow',1190), -(18769,18769,'accessories/wearable_items/_exp09/tunarian_alliance/leather/chest',1190), -(18770,18770,'accessories/wearable_items/_exp09/tunarian_alliance/leather/feet',1190), -(18771,18771,'accessories/wearable_items/_exp09/tunarian_alliance/leather/forearms',1190), -(18772,18772,'accessories/wearable_items/_exp09/tunarian_alliance/leather/hands',1190), -(18773,18773,'accessories/wearable_items/_exp09/tunarian_alliance/leather/head',1190), -(18774,18774,'accessories/wearable_items/_exp09/tunarian_alliance/leather/legs',1190), -(18775,18775,'accessories/wearable_items/_exp09/tunarian_alliance/leather/shoulders',1190), -(18776,18776,'accessories/wearable_items/_exp09/tunarian_alliance/leather/skirt',1190), -(18777,18777,'accessories/wearable_items/cloak/exp09/cloak_tunarian_alliance_leather',1190), -(18778,18778,'_exp09/characters/monsters/beetle/beetle_grappler_clockwork_corroded',1190), -(18779,18779,'_exp09/characters/monsters/beetle/beetle_hercules_clockwork_corroded',1190), -(18780,18780,'_exp09/characters/monsters/beetle/beetle_lobber_clockwork_corroded',1190), -(18781,18781,'_exp09/characters/monsters/beetle/beetle_original_clockwork_corroded',1190), -(18782,18782,'_exp09/characters/monsters/beetle_groundattack/beetle_grappler_clockwork_corroded',1190), -(18783,18783,'_exp09/characters/monsters/beetle_groundattack/beetle_hercules_clockwork_corroded',1190), -(18784,18784,'_exp09/characters/monsters/beetle_groundattack/beetle_lobber_clockwork_corroded',1190), -(18785,18785,'_exp09/characters/monsters/beetle_groundattack/beetle_original_clockwork_corroded',1190), -(18786,18786,'_exp08/characters/tool_users/lich_undead/lich_undead',1190), -(18787,18787,'_exp09/characters/tool_users/halfelf_child_female/halfelf_child_female',1190), -(18788,18788,'_exp09/characters/tool_users/halfelf_child_male/halfelf_child_male',1190), -(18789,18789,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_01',1190), -(18790,18790,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_02',1190), -(18791,18791,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_03',1190), -(18792,18792,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_male_01',1190), -(18793,18793,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_male_02',1190), -(18794,18794,'accessories/npc_wearables/halfelf_children/halfelf_child_hair_male_03',1190), -(18795,18795,'_exp09/characters/monsters/drake_sleepers_tomb/drake_sleepers_tomb',1190), -(18796,18796,'creatures/monsters/mouth_eye_blob',1190), -(18797,18797,'ec/npc/antonia_2012_beggar',1190), -(18798,18798,'staticobjects/flora/dpo_slove02_lilypad_small01',1190), -(18799,18799,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper',1190), -(18800,18800,'accessories/wearable_items/_exp08/arasai_heritage_armor/shoulders',1190), -(18801,18801,'accessories/wearable_items/_exp08/antonican_guard/vanguard/hands_epic',1190), -(18802,18802,'staticobjects/qeynos/armor_dummy_antonia_2012',1190), -(18803,18803,'accessories/wearable_items/_exp08/darklight_armor/plate/chest',1190), -(18804,18804,'accessories/wearable_items/_exp08/darklight_armor/plate/feet',1190), -(18805,18805,'accessories/wearable_items/_exp08/darklight_armor/plate/forearms',1190), -(18806,18806,'accessories/wearable_items/_exp08/darklight_armor/plate/hands',1190), -(18807,18807,'accessories/wearable_items/_exp08/darklight_armor/plate/head',1190), -(18808,18808,'accessories/wearable_items/_exp08/darklight_armor/plate/head_epic',1190), -(18809,18809,'accessories/wearable_items/_exp08/darklight_armor/plate/legs',1190), -(18810,18810,'accessories/wearable_items/_exp08/darklight_armor/plate/shoulders',1190), -(18811,18811,'accessories/wearable_items/_exp08/darklight_armor/plate/shoulders_epic',1190), -(18812,18812,'accessories/wearable_items/_exp08/darklight_armor/plate/snap_ons/pauldrons_left',1190), -(18813,18813,'accessories/wearable_items/_exp08/darklight_armor/plate/snap_ons/pauldrons_right',1190), -(18814,18814,'staticobjects/soe_wallet/elddar_treehouse_treehouse_dpo',1190), -(18815,18815,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/chest',1190), -(18816,18816,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/feet',1190), -(18817,18817,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/forearms',1190), -(18818,18818,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/hands',1190), -(18819,18819,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/head',1190), -(18820,18820,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/legs',1190), -(18821,18821,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/legs_noskirt',1190), -(18822,18822,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/pauldron_left_celestial_watch',1190), -(18823,18823,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/pauldron_right_celestial_watch',1190), -(18824,18824,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/shoulders',1190), -(18825,18825,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/shoulders_epic',1190), -(18826,18826,'accessories/wearable_items/_exp09/celestial_watch/chest_blue_gold/skirt',1190), -(18827,18827,'accessories/wearable_items/_exp09/celestial_watch/robe_head_blue_gold/head',1190), -(18828,18828,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1h_scythe_lich_spectre',1190), -(18829,18829,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/chest',1190), -(18830,18830,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/feet',1190), -(18831,18831,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/hands',1190), -(18832,18832,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/head',1190), -(18833,18833,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/legs',1190), -(18834,18834,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/shoulders',1190), -(18835,18835,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/skirt',1190), -(18836,18836,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/belt/skirt 2',1190), -(18837,18837,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/belt/skirt',1190), -(18838,18838,'accessories/wearable_items/_exp08/darklight_armor/heavycloth_leather/head/head',1190), -(18839,18839,'accessories/wearable_items/_exp08/darklight_armor/vanguard/chest',1190), -(18840,18840,'accessories/wearable_items/_exp08/darklight_armor/vanguard/feet',1190), -(18841,18841,'accessories/wearable_items/_exp08/darklight_armor/vanguard/forearms',1190), -(18842,18842,'accessories/wearable_items/_exp08/darklight_armor/vanguard/hands',1190), -(18843,18843,'accessories/wearable_items/_exp08/darklight_armor/vanguard/head',1190), -(18844,18844,'accessories/wearable_items/_exp08/darklight_armor/vanguard/head_epic',1190), -(18845,18845,'accessories/wearable_items/_exp08/darklight_armor/vanguard/left',1190), -(18846,18846,'accessories/wearable_items/_exp08/darklight_armor/vanguard/legs',1190), -(18847,18847,'accessories/wearable_items/_exp08/darklight_armor/vanguard/legs_noskirt',1190), -(18848,18848,'accessories/wearable_items/_exp08/darklight_armor/vanguard/right',1190), -(18849,18849,'accessories/wearable_items/_exp08/darklight_armor/vanguard/shoulders',1190), -(18850,18850,'accessories/wearable_items/_exp08/darklight_armor/vanguard/shoulders_epic',1190), -(18851,18851,'accessories/wearable_items/_exp08/darklight_armor/vanguard/shoulders_nopauldrons',1190), -(18852,18852,'accessories/wearable_items/_exp08/darklight_armor/vanguard/skirt',1190), -(18853,18853,'accessories/wearable_items/_exp08/darklight_armor/vanguard/pauldrons/pauldron_left',1190), -(18854,18854,'accessories/wearable_items/_exp08/darklight_armor/vanguard/pauldrons/pauldron_right',1190), -(18855,18855,'accessories/wearable_items/_exp08/darklight_armor/vanguard/shadowknight_helm/head',1190), -(18856,18856,'accessories/wearable_items/_exp08/darklight_armor/vanguard/shadowknight_helm/head_epic',1190), -(18857,18857,'accessories/wearable_items/cloak/exp09/cloak_antonica_faction',1190), -(18858,18858,'accessories/wearable_items/cloak/exp09/cloak_antonica_faction_incut',1190), -(18859,18859,'accessories/wearable_items/cloak/exp09/cloak_antonica_faction_scallop',1190), -(18860,18860,'accessories/wearable_items/cloak/exp09/cloak_antonica_faction_whole',1190), -(18861,18861,'ec/npc/goblin_tophat',1190), -(18862,18862,'_exp08/characters/tool_users/lich_undead/lich_undead_green',1190), -(18863,18863,'_exp08/characters/tool_users/lich_undead/lich_undead_green_nofx',1190), -(18864,18864,'ec/pc/human/human_male_2011/human_male_base',1190), -(18865,18865,'_exp09/characters/tool_users/ethenere_npcs/darkelf_female_ethenere',1190), -(18866,18866,'_exp09/characters/tool_users/ethenere_npcs/darkelf_male_ethenere',1190), -(18867,18867,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_queen',1190), -(18868,18868,'_exp08/characters/tool_users/bog_wraith/bog_wraith',1190), -(18869,18869,'_exp08/characters/tool_users/bog_wraith/bog_wraith_chain',1190), -(18870,18870,'_exp08/characters/tool_users/bog_wraith/bog_wraith_spectre',1190), -(18871,18871,'accessories/wearable_items/_exp08/primal_velium/chain/chest',1190), -(18872,18872,'accessories/wearable_items/_exp08/primal_velium/chain/feet',1190), -(18873,18873,'accessories/wearable_items/_exp08/primal_velium/chain/forearms',1190), -(18874,18874,'accessories/wearable_items/_exp08/primal_velium/chain/hands',1190), -(18875,18875,'accessories/wearable_items/_exp08/primal_velium/chain/head',1190), -(18876,18876,'accessories/wearable_items/_exp08/primal_velium/chain/legs',1190), -(18877,18877,'accessories/wearable_items/_exp08/primal_velium/chain/legs_noskirt',1190), -(18878,18878,'accessories/wearable_items/_exp08/primal_velium/chain/shoulders',1190), -(18879,18879,'accessories/wearable_items/_exp08/primal_velium/chain/shoulders_epic',1190), -(18880,18880,'accessories/wearable_items/_exp08/primal_velium/chain/skirt',1190), -(18881,18881,'accessories/wearable_items/_exp08/primal_velium/heavycloth/chest',1190), -(18882,18882,'accessories/wearable_items/_exp08/primal_velium/heavycloth/feet',1190), -(18883,18883,'accessories/wearable_items/_exp08/primal_velium/heavycloth/hands',1190), -(18884,18884,'accessories/wearable_items/_exp08/primal_velium/heavycloth/head',1190), -(18885,18885,'accessories/wearable_items/_exp08/primal_velium/heavycloth/legs',1190), -(18886,18886,'accessories/wearable_items/_exp08/primal_velium/heavycloth/shoulders',1190), -(18887,18887,'accessories/wearable_items/_exp08/primal_velium/heavycloth/shoulders_epic',1190), -(18888,18888,'accessories/wearable_items/_exp08/primal_velium/heavycloth/skirt',1190), -(18889,18889,'accessories/wearable_items/_exp08/primal_velium/heavycloth/belt/skirt 2',1190), -(18890,18890,'accessories/wearable_items/_exp08/primal_velium/heavycloth/belt/skirt',1190), -(18891,18891,'accessories/wearable_items/_exp08/primal_velium/leather/chest',1190), -(18892,18892,'accessories/wearable_items/_exp08/primal_velium/leather/feet',1190), -(18893,18893,'accessories/wearable_items/_exp08/primal_velium/leather/forearms',1190), -(18894,18894,'accessories/wearable_items/_exp08/primal_velium/leather/hands',1190), -(18895,18895,'accessories/wearable_items/_exp08/primal_velium/leather/head',1190), -(18896,18896,'accessories/wearable_items/_exp08/primal_velium/leather/legs',1190), -(18897,18897,'accessories/wearable_items/_exp08/primal_velium/leather/legs_noskirt',1190), -(18898,18898,'accessories/wearable_items/_exp08/primal_velium/leather/shoulders',1190), -(18899,18899,'accessories/wearable_items/_exp08/primal_velium/leather/shoulders_epic',1190), -(18900,18900,'accessories/wearable_items/_exp08/primal_velium/leather/skirt',1190), -(18901,18901,'accessories/wearable_items/_exp08/primal_velium/robe/chest',1190), -(18902,18902,'accessories/wearable_items/_exp08/primal_velium/robe/chest_epic',1190), -(18903,18903,'accessories/wearable_items/_exp08/primal_velium/robe/feet',1190), -(18904,18904,'accessories/wearable_items/_exp08/primal_velium/robe/hands',1190), -(18905,18905,'accessories/wearable_items/_exp08/primal_velium/robe/head',1190), -(18906,18906,'accessories/wearable_items/_exp08/primal_velium/robe/pants',1190), -(18907,18907,'accessories/wearable_items/_exp08/primal_velium/robe/skirt',1190), -(18908,18908,'accessories/wearable_items/_exp08/primal_velium/vanguard/chest',1190), -(18909,18909,'accessories/wearable_items/_exp08/primal_velium/vanguard/feet',1190), -(18910,18910,'accessories/wearable_items/_exp08/primal_velium/vanguard/forearms',1190), -(18911,18911,'accessories/wearable_items/_exp08/primal_velium/vanguard/hands',1190), -(18912,18912,'accessories/wearable_items/_exp08/primal_velium/vanguard/hands_epic',1190), -(18913,18913,'accessories/wearable_items/_exp08/primal_velium/vanguard/head',1190), -(18914,18914,'accessories/wearable_items/_exp08/primal_velium/vanguard/head_epic',1190), -(18915,18915,'accessories/wearable_items/_exp08/primal_velium/vanguard/left',1190), -(18916,18916,'accessories/wearable_items/_exp08/primal_velium/vanguard/legs',1190), -(18917,18917,'accessories/wearable_items/_exp08/primal_velium/vanguard/legs_epic',1190), -(18918,18918,'accessories/wearable_items/_exp08/primal_velium/vanguard/legs_noskirt',1190), -(18919,18919,'accessories/wearable_items/_exp08/primal_velium/vanguard/pauldron2_left',1190), -(18920,18920,'accessories/wearable_items/_exp08/primal_velium/vanguard/right',1190), -(18921,18921,'accessories/wearable_items/_exp08/primal_velium/vanguard/shoulders',1190), -(18922,18922,'accessories/wearable_items/_exp08/primal_velium/vanguard/shoulders_epic',1190), -(18923,18923,'accessories/wearable_items/_exp08/primal_velium/vanguard/shoulders_nopauldrons',1190), -(18924,18924,'accessories/wearable_items/_exp08/primal_velium/vanguard/skirt',1190), -(18925,18925,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/bracer_left',1190), -(18926,18926,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/bracer_right',1190), -(18927,18927,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_leather_left',1190), -(18928,18928,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_leather_right',1190), -(18929,18929,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_left',1190), -(18930,18930,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_light_left',1190), -(18931,18931,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_light_right',1190), -(18932,18932,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_right',1190), -(18933,18933,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron_right2',1190), -(18934,18934,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron2_left',1190), -(18935,18935,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/pauldron2_right',1190), -(18936,18936,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/shinguard_left',1190), -(18937,18937,'accessories/wearable_items/_exp08/primal_velium/vanguard/snapons/shinguard_right',1190), -(18938,18938,'ec/pc/darkelf/darkelf_male_2011',1190), -(18939,18939,'_exp08/characters/pets/jackolantern/jackolantern',1190), -(18940,18940,'accessories/wearable_items/cloak/exp08/cloak_primal_velium2_diamond',1190), -(18941,18941,'accessories/wearable_items/cloak/exp08/cloak_primal_velium1_diamond',1190), -(18942,18942,'accessories/wearable_items/cloak/exp08/cloak_primal_velium2',1190), -(18943,18943,'accessories/wearable_items/cloak/exp08/cloak_primal_velium1',1190), -(18944,18944,'projectiles/spell_lightning_ball',1190), -(18945,18945,'_exp08/characters/monsters/kerafyrm/kerafyrm_trapped',1190), -(18946,18946,'staticobjects/pictures/qeynos_painting_harbor01_dpo',1190), -(18947,18947,'staticobjects/pictures/qeynos_painting01_dpo',1190), -(18948,18948,'staticobjects/pictures/qeynos_painting02_dpo',1190), -(18949,18949,'staticobjects/pictures/qeynos_painting03_dpo',1190), -(18950,18950,'staticobjects/pictures/qeynos_painting04_dpo',1190), -(18951,18951,'staticobjects/pictures/qeynos_painting05_dpo',1190), -(18952,18952,'staticobjects/pictures/qeynos_painting06_dpo',1190), -(18953,18953,'staticobjects/pictures/qeynos_painting07_dpo',1190), -(18954,18954,'ec/pc/halfelf/halfelf_male_2011',1190), -(18955,18955,'staticobjects/mailboxes/qnos_rev_mailbox01_dpo',1190), -(18956,18956,'staticobjects/marinerbell/qnos_rev_mariners_bell01_all_dpo',1190), -(18957,18957,'staticobjects/qeynos/qey_thunderfountain_dpo',1190), -(18958,18958,'staticobjects/qeynos/qey_baylestatue_dpo',1190), -(18959,18959,'staticobjects/qeynos/qey_castle_statue_dpo',1190), -(18960,18960,'staticobjects/qeynos/qey_floating_torch_blue_dpo',1190), -(18961,18961,'staticobjects/qeynos/qey_floating_torch_yellow_dpo',1190), -(18962,18962,'staticobjects/qeynos/qey_lions_circle_counter_dpo',1190), -(18963,18963,'staticobjects/qeynos/qey_lions_elbow_counter_dpo',1190), -(18964,18964,'staticobjects/qeynos/qey_lions_straight_counter_dpo',1190), -(18965,18965,'staticobjects/qeynos/qey_lionsmane_crest_dpo',1190), -(18966,18966,'staticobjects/qeynos/qey_pennants01_dpo',1190), -(18967,18967,'staticobjects/qeynos/qey_pennants02_dpo',1190), -(18968,18968,'staticobjects/qeynos/qey_pennants03_dpo',1190), -(18969,18969,'staticobjects/qeynos/qey_stadium_banner01_dpo',1190), -(18970,18970,'staticobjects/qeynos/qey_stadium_banner02_dpo',1190), -(18971,18971,'staticobjects/qeynos/qey_stadium_banner03_dpo',1190), -(18972,18972,'ec/pc/darkelf/darkelf_female_2011',1190), -(18973,18973,'ec/pc/highelf/highelf_male_2011',1190), -(18974,18974,'ec/pc/halfelf/halfelf_female_2011',1190), -(18975,18975,'staticobjects/_exp07/dru_drunder_sullon_idol02',1190), -(18976,18976,'ec/pc/kerra/kerra_male_2011',1190), -(18977,18977,'ec/pc/kerra/kerra_female_2011',1190), -(18978,18978,'ec/pc/human/human_female_2011',1190), -(18979,18979,'ec/pc/human/human_male_2011',1190), -(18980,18980,'staticobjects/qeynos/qey_terrain_village03_kaladimstone',1190), -(18981,18981,'accessories/wearable_items/cloak/exp09/cloak_celestial_watch_blue_gold',1190), -(18982,18982,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_spirit_black',1190), -(18983,18983,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_spirit_gold',1190), -(18984,18984,'_exp09/characters/monsters/skyshrine_drake/skyshrine_drake_spirit_red',1190), -(18985,18985,'_exp09/characters/tool_users/were/were_black_base',1190), -(18986,18986,'staticobjects/banners/kelethin_banner_arcane_standing',1190), -(18987,18987,'ec/pc/highelf/highelf_female_2011',1190), -(18988,18988,'staticobjects/qeynos/halfelf_compass',1190), -(18989,18989,'creatures/mounts/odus_prowler/prowler_stone_jade',1190), -(18990,18990,'creatures/mounts/odus_prowler/prowler_stone_marble',1190), -(18991,18991,'creatures/mounts/odus_prowler/prowler_stone_onyx',1190), -(18992,18992,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spirit',1190), -(18993,18993,'staticobjects/housing_portal_objects/vision_home_magetower01',1190), -(18994,18994,'staticobjects/soe_wallet/qeynos/qey_window_double_wood_square01',1190), -(18995,18995,'staticobjects/soe_wallet/qeynos/qey_window_castle_round01',1190), -(18996,18996,'staticobjects/soe_wallet/qeynos/qey_window_dome_stone_fancy01',1190), -(18997,18997,'staticobjects/soe_wallet/qeynos/qey_window_dome_stone_rect02',1190), -(18998,18998,'staticobjects/soe_wallet/qeynos/qey_window_dome_wood_fancy01',1190), -(18999,18999,'staticobjects/soe_wallet/qeynos/qey_window_dome_wood_rect01',1190), -(19000,19000,'staticobjects/soe_wallet/qeynos/qey_window_dome_wood_rect02',1190), -(19001,19001,'staticobjects/soe_wallet/qeynos/qey_window_dome_wood_stone01',1190), -(19002,19002,'staticobjects/soe_wallet/station_tinkered/gnome_stool',1190), -(19003,19003,'staticobjects/soe_wallet/station_tinkered/gnome_bed',1190), -(19004,19004,'staticobjects/soe_wallet/station_tinkered/gnome_ceilingfan_base',1190), -(19005,19005,'staticobjects/soe_wallet/station_tinkered/gnome_chest',1190), -(19006,19006,'staticobjects/soe_wallet/station_tinkered/gnome_clock',1190), -(19007,19007,'staticobjects/soe_wallet/station_tinkered/gnome_dresser',1190), -(19008,19008,'staticobjects/soe_wallet/station_tinkered/gnome_gear_large_pfx',1190), -(19009,19009,'staticobjects/soe_wallet/station_tinkered/gnome_gear_small_pfx',1190), -(19010,19010,'staticobjects/soe_wallet/station_tinkered/gnome_mirror',1190), -(19011,19011,'staticobjects/soe_wallet/station_tinkered/gnome_nightstand',1190), -(19012,19012,'staticobjects/soe_wallet/station_tinkered/gnome_shelf',1190), -(19013,19013,'_exp09/characters/tool_users/baelon/baelon_unarmed',1190), -(19014,19014,'_exp09/characters/monsters/winged_lion/winged_lion_base',1190), -(19015,19015,'staticobjects/tree/river_flowertree_01_shrunk_dpo',1190), -(19016,19016,'ec/pc/woodelf/woodelf_male_2011',1190), -(19017,19017,'ec/pc/woodelf/woodelf_female_2011',1190), -(19018,19018,'accessories/wieldable_items/weapons/exp09/staff/staff_drinal',1190), -(19019,19019,'projectiles/spell_fire_ball_no_trail',1190), -(19020,19020,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x1_column_bluemetal',1190), -(19021,19021,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x1_column_redplates',1190), -(19022,19022,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x2_column_bluemetal',1190), -(19023,19023,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x2_column_redplates',1190), -(19024,19024,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x2_dividerblock_bluemetal',1190), -(19025,19025,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1x2_dividerblock_redplates',1190), -(19026,19026,'staticobjects/liveevent/tinkerfest/building_blocks/housecube_1x1_block_redplates',1190), -(19027,19027,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1xhalf_block_bluemetal',1190), -(19028,19028,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_1xhalf_block_redplates',1190), -(19029,19029,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_2x2_dividerblock_bluemetal',1190), -(19030,19030,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_2x2_dividerblock_redplates',1190), -(19031,19031,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_rail_bluemetal',1190), -(19032,19032,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_rail_redplates',1190), -(19033,19033,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_roundtile_bluemetal',1190), -(19034,19034,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_roundtile_redplates',1190), -(19035,19035,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_stair_bluemetal',1190), -(19036,19036,'staticobjects/liveevent/tinkerfest/building_blocks/houseblock_stair_redplates',1190), -(19037,19037,'staticobjects/liveevent/tinkerfest/building_blocks/housecube_1x1_block_bluemetal',1190), -(19038,19038,'staticobjects/liveevent/tinkerfest/dpo_fprt_hood03_temple_tank01',1190), -(19039,19039,'staticobjects/liveevent/tinkerfest/dpo_battleground_relic01_background_gear01',1190), -(19040,19040,'staticobjects/liveevent/tinkerfest/dpo_battleground_relic01_murderball01',1190), -(19041,19041,'staticobjects/liveevent/tinkerfest/dpo_battleground_relic01_murderball01_combo01',1190), -(19042,19042,'staticobjects/liveevent/tinkerfest/dpo_battleground_relic01_murderball01_pedestal01',1190), -(19043,19043,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_vertgear_001',1190), -(19044,19044,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_ani_drill_001',1190), -(19045,19045,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_ani_gear_001',1190), -(19046,19046,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_ani_vertgear_001',1190), -(19047,19047,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_box_001',1190), -(19048,19048,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_broiler_001',1190), -(19049,19049,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_broiler_002',1190), -(19050,19050,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_drill_001',1190), -(19051,19051,'staticobjects/liveevent/tinkerfest/dpo_qnos_tinker_gear_001',1190), -(19052,19052,'creatures/mounts/pegasus_mount/pegasus_mount_epic_qeynos_gold',1190), -(19053,19053,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/chest',1190), -(19054,19054,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/feet',1190), -(19055,19055,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/forearms',1190), -(19056,19056,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/hands',1190), -(19057,19057,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/head',1190), -(19058,19058,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/head_epic',1190), -(19059,19059,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/head_epic_crest',1190), -(19060,19060,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/head_epic_topknot',1190), -(19061,19061,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/left',1190), -(19062,19062,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/legs',1190), -(19063,19063,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/legs_noskirt',1190), -(19064,19064,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/right',1190), -(19065,19065,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/shoulders',1190), -(19066,19066,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/shoulders_nopauldron',1190), -(19067,19067,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/skirt',1190), -(19068,19068,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/hands_epic',1190), -(19069,19069,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/legs_epic',1190), -(19070,19070,'accessories/wearable_items/_exp08/antonican_guard/vanguard_crusader/shoulders_epic',1190), -(19071,19071,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/shinguard_crusader_left',1190), -(19072,19072,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/shinguard_crusader_right',1190), -(19073,19073,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/pauldron2_crusader_left',1190), -(19074,19074,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/pauldron2_crusader_right',1190), -(19075,19075,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/pauldron_crusader_right',1190), -(19076,19076,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/pauldron_crusader_left',1190), -(19077,19077,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/bracer_crusader_right',1190), -(19078,19078,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/bracer_crusader_left',1190), -(19079,19079,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/head_topknot_crusader',1190), -(19080,19080,'accessories/wearable_items/_exp08/antonican_guard/snapons_extras/head_crest_crusader',1190), -(19081,19081,'creatures/mounts/pegasus_mount/pegasus_mount_freeport',1190), -(19082,19082,'creatures/mounts/pegasus_mount/swivels/pegasus_freeport_swivel_skull',1190), -(19083,19083,'creatures/tu/succubus_flying',1190), -(19084,19084,'accessories/wearable_items/cloak/exp08/cloak_antonican_guard_crusader',1190), -(19085,19085,'_exp09/characters/tool_users/baelon/baelon_summon',1190), -(19086,19086,'staticobjects/soe_wallet/qeynos_akanon_clock_dpo',1190), -(19087,19087,'_exp09/characters/monsters/skirth/skirth',1190), -(19088,19088,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_ethernere_sword',1190), -(19089,19089,'accessories/wieldable_items/weapons/exp09/1h_crush/ethernere_mace',1190), -(19090,19090,'_exp09/characters/tool_users/drinal/drinal',1190), -(19091,19091,'accessories/wearable_items/_exp09/ethernere_armors/chain/chest',1190), -(19092,19092,'accessories/wearable_items/_exp09/ethernere_armors/chain/feet',1190), -(19093,19093,'accessories/wearable_items/_exp09/ethernere_armors/chain/forearms',1190), -(19094,19094,'accessories/wearable_items/_exp09/ethernere_armors/chain/hands',1190), -(19095,19095,'accessories/wearable_items/_exp09/ethernere_armors/chain/head',1190), -(19096,19096,'accessories/wearable_items/_exp09/ethernere_armors/chain/legs',1190), -(19097,19097,'accessories/wearable_items/_exp09/ethernere_armors/chain/shoulders',1190), -(19098,19098,'accessories/wearable_items/_exp09/ethernere_armors/chain/shoulders_epic',1190), -(19099,19099,'accessories/wearable_items/_exp09/ethernere_armors/leather/chest',1190), -(19100,19100,'accessories/wearable_items/_exp09/ethernere_armors/leather/feet',1190), -(19101,19101,'accessories/wearable_items/_exp09/ethernere_armors/leather/forearms',1190), -(19102,19102,'accessories/wearable_items/_exp09/ethernere_armors/leather/hands',1190), -(19103,19103,'accessories/wearable_items/_exp09/ethernere_armors/leather/head',1190), -(19104,19104,'accessories/wearable_items/_exp09/ethernere_armors/leather/legs',1190), -(19105,19105,'accessories/wearable_items/_exp09/ethernere_armors/leather/legs_noskirt',1190), -(19106,19106,'accessories/wearable_items/_exp09/ethernere_armors/leather/shoulders',1190), -(19107,19107,'accessories/wearable_items/_exp09/ethernere_armors/leather/shoulders_epic',1190), -(19108,19108,'accessories/wearable_items/_exp09/ethernere_armors/leather/skirt',1190), -(19109,19109,'accessories/wearable_items/_exp09/ethernere_armors/robe/chest',1190), -(19110,19110,'accessories/wearable_items/_exp09/ethernere_armors/robe/chest_epic',1190), -(19111,19111,'accessories/wearable_items/_exp09/ethernere_armors/robe/feet',1190), -(19112,19112,'accessories/wearable_items/_exp09/ethernere_armors/robe/hands',1190), -(19113,19113,'accessories/wearable_items/_exp09/ethernere_armors/robe/head',1190), -(19114,19114,'accessories/wearable_items/_exp09/ethernere_armors/robe/head_hood',1190), -(19115,19115,'accessories/wearable_items/_exp09/ethernere_armors/robe/pants',1190), -(19116,19116,'accessories/wearable_items/_exp09/ethernere_armors/robe/skirt',1190), -(19117,19117,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_left',1190), -(19118,19118,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_right',1190), -(19119,19119,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_left',1190), -(19120,19120,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_right',1190), -(19121,19121,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_left',1190), -(19122,19122,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_right',1190), -(19123,19123,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_left',1190), -(19124,19124,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_right',1190), -(19125,19125,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_left',1190), -(19126,19126,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_right',1190), -(19127,19127,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_left',1190), -(19128,19128,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_right',1190), -(19129,19129,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_left',1190), -(19130,19130,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_right',1190), -(19131,19131,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/chest',1190), -(19132,19132,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/feet',1190), -(19133,19133,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/forearms',1190), -(19134,19134,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/hands',1190), -(19135,19135,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/hands_epic',1190), -(19136,19136,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/head',1190), -(19137,19137,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/left',1190), -(19138,19138,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/legs',1190), -(19139,19139,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/legs_noskirt',1190), -(19140,19140,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/right',1190), -(19141,19141,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/shoulders',1190), -(19142,19142,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/shoulders_epic',1190), -(19143,19143,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/shoulders_nopauldrons',1190), -(19144,19144,'accessories/wearable_items/_exp09/ethernere_armors/vanguard/skirt',1190), -(19145,19145,'_exp09/characters/monsters/mud_monster/mud_monster_cazic_thule',1190), -(19146,19146,'accessories/wearable_items/cloak/exp09/cloak_ethernere_short',1190), -(19147,19147,'accessories/wearable_items/cloak/exp09/cloak_ethernere_long',1190), -(19148,19148,'creatures/monsters/mouth_eye_blob_ethenere',1190), -(19149,19149,'_exp08/characters/tool_users/bog_wraith/bog_wraith_spectre_chain',1190), -(19150,19150,'accessories/wieldable_items/weapons/exp09/1h_crush/ethernere_hammer',1190), -(19151,19151,'_exp09/characters/monsters/dragon_shadowdrach/dragon_shadowdrach',1190), -(19152,19152,'_exp09/characters/tool_users/ethenere_npcs/human_male_ethenere',1190), -(19153,19153,'_exp09/characters/tool_users/illithid/illithid',1190), -(19154,19154,'accessories/wieldable_items/weapons/exp09/staff/spear_ethernere',1190), -(19155,19155,'accessories/wieldable_items/weapons/exp09/fist/ethernere_claws',1190), -(19156,19156,'_exp09/characters/tool_users/ethenere_npcs/dwarf_female_ethenere',1190), -(19157,19157,'_exp09/characters/tool_users/ethenere_npcs/dwarf_male_ethenere',1190), -(19158,19158,'_exp09/characters/tool_users/ethenere_npcs/human_female_ethenere',1190), -(19159,19159,'_exp09/characters/tool_users/ethenere_npcs/ogre_male_ethenere',1190), -(19160,19160,'staticobjects/halloween/le_jackolantern01_green',1190), -(19161,19161,'staticobjects/halloween/le_jackolantern01_purple',1190), -(19162,19162,'staticobjects/halloween/le_jackolantern02_green',1190), -(19163,19163,'staticobjects/halloween/le_jackolantern02_purple',1190), -(19164,19164,'staticobjects/halloween/le_jackolantern03_green',1190), -(19165,19165,'staticobjects/halloween/le_jackolantern03_purple',1190), -(19166,19166,'staticobjects/halloween/dpo_bat_skull_garland',1190), -(19167,19167,'staticobjects/halloween/dpo_pitchfork_skull_garland',1190), -(19168,19168,'_exp09/characters/tool_users/drinal/drinal_evil',1190), -(19169,19169,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_ice',1190), -(19170,19170,'_exp09/characters/monsters/tirun_enforcer/tirun_enforcer',1190), -(19171,19171,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_ethernere',1190), -(19172,19172,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_cazic',1190), -(19173,19173,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_cazic',1190), -(19174,19174,'staticobjects/halloween/fprt_ext_tombstonec001',1190), -(19175,19175,'staticobjects/halloween/container_spec01_organ',1190), -(19176,19176,'staticobjects/halloween/oblost_pot02_worgans',1190), -(19177,19177,'staticobjects/halloween/bef_weaponrack02',1190), -(19178,19178,'staticobjects/halloween/tfs_present01_medium',1190), -(19179,19179,'staticobjects/halloween/seb_lightsource_firepot_iksar_large01_w_light',1190), -(19180,19180,'staticobjects/halloween/wl_satyr_skull_candles',1190), -(19181,19181,'staticobjects/halloween/bef_armor_display01',1190), -(19182,19182,'_exp09/characters/monsters/carnivorous_ape_boss/carnivorous_ape_boss',1190), -(19183,19183,'ec/pc/human/human_male_2011/human_male_normal_black_test',1190), -(19184,19184,'ec/pc/human/human_male_2011/human_male_white_test',1190), -(19185,19185,'accessories/wieldable_items/weapons/exp09/bow/bow_ethernere',1190), -(19186,19186,'accessories/wieldable_items/weapons/exp09/bow/longbow_ethernere',1190), -(19187,19187,'_exp09/characters/monsters/ethereal_construct/ethereal_construct',1190), -(19188,19188,'accessories/wieldable_items/weapons/exp09/staff/wand_ethernere',1190), -(19189,19189,'creatures/mounts/pegasus_demon/pegasus_demon',1190), -(19190,19190,'accessories/wieldable_items/weapons/exp09/staff/staff_ethernere',1190), -(19191,19191,'_exp09/objects/sleepers_tomb/sleepers_tomb_column',1190), -(19192,19192,'_exp09/objects/sleepers_tomb/sleepers_tomb_column_02',1190), -(19193,19193,'accessories/wearable_items/_exp09/thullian_armor/accessories/armband_base_left',1190), -(19194,19194,'accessories/wearable_items/_exp09/thullian_armor/accessories/armband_base_right',1190), -(19195,19195,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldron_light_left',1190), -(19196,19196,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldron_light_right',1190), -(19197,19197,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldron_robe_left',1190), -(19198,19198,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldron_robe_right',1190), -(19199,19199,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldrons_chain_left',1190), -(19200,19200,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldrons_chain_right',1190), -(19201,19201,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldrons_left',1190), -(19202,19202,'accessories/wearable_items/_exp09/thullian_armor/accessories/pauldrons_right',1190), -(19203,19203,'accessories/wearable_items/_exp09/thullian_armor/chain/chest',1190), -(19204,19204,'accessories/wearable_items/_exp09/thullian_armor/chain/feet',1190), -(19205,19205,'accessories/wearable_items/_exp09/thullian_armor/chain/forearms',1190), -(19206,19206,'accessories/wearable_items/_exp09/thullian_armor/chain/hands',1190), -(19207,19207,'accessories/wearable_items/_exp09/thullian_armor/chain/head',1190), -(19208,19208,'accessories/wearable_items/_exp09/thullian_armor/chain/legs',1190), -(19209,19209,'accessories/wearable_items/_exp09/thullian_armor/chain/shoulders',1190), -(19210,19210,'accessories/wearable_items/_exp09/thullian_armor/chain/shoulders_epic',1190), -(19211,19211,'accessories/wearable_items/_exp09/thullian_armor/gi_valkeryie/chest',1190), -(19212,19212,'accessories/wearable_items/_exp09/thullian_armor/gi_valkeryie/hands',1190), -(19213,19213,'accessories/wearable_items/_exp09/thullian_armor/gi_valkeryie/legs',1190), -(19214,19214,'accessories/wearable_items/_exp09/thullian_armor/gi_valkeryie/shoulders',1190), -(19215,19215,'accessories/wearable_items/_exp09/thullian_armor/leather/chest',1190), -(19216,19216,'accessories/wearable_items/_exp09/thullian_armor/leather/feet',1190), -(19217,19217,'accessories/wearable_items/_exp09/thullian_armor/leather/forearms',1190), -(19218,19218,'accessories/wearable_items/_exp09/thullian_armor/leather/hands',1190), -(19219,19219,'accessories/wearable_items/_exp09/thullian_armor/leather/head',1190), -(19220,19220,'accessories/wearable_items/_exp09/thullian_armor/leather/legs',1190), -(19221,19221,'accessories/wearable_items/_exp09/thullian_armor/leather/legs_noskirt',1190), -(19222,19222,'accessories/wearable_items/_exp09/thullian_armor/leather/shoulders',1190), -(19223,19223,'accessories/wearable_items/_exp09/thullian_armor/leather/shoulders_epic',1190), -(19224,19224,'accessories/wearable_items/_exp09/thullian_armor/leather/skirt',1190), -(19225,19225,'accessories/wearable_items/_exp09/thullian_armor/robe/chest',1190), -(19226,19226,'accessories/wearable_items/_exp09/thullian_armor/robe/chest_epic',1190), -(19227,19227,'accessories/wearable_items/_exp09/thullian_armor/robe/feet',1190), -(19228,19228,'accessories/wearable_items/_exp09/thullian_armor/robe/hands',1190), -(19229,19229,'accessories/wearable_items/_exp09/thullian_armor/robe/head',1190), -(19230,19230,'accessories/wearable_items/_exp09/thullian_armor/robe/head_collar',1190), -(19231,19231,'accessories/wearable_items/_exp09/thullian_armor/robe/pants',1190), -(19232,19232,'accessories/wearable_items/_exp09/thullian_armor/robe/skirt',1190), -(19233,19233,'accessories/wearable_items/_exp09/thullian_armor/vanguard/chest',1190), -(19234,19234,'accessories/wearable_items/_exp09/thullian_armor/vanguard/feet',1190), -(19235,19235,'accessories/wearable_items/_exp09/thullian_armor/vanguard/forearms',1190), -(19236,19236,'accessories/wearable_items/_exp09/thullian_armor/vanguard/hands',1190), -(19237,19237,'accessories/wearable_items/_exp09/thullian_armor/vanguard/head',1190), -(19238,19238,'accessories/wearable_items/_exp09/thullian_armor/vanguard/left',1190), -(19239,19239,'accessories/wearable_items/_exp09/thullian_armor/vanguard/legs',1190), -(19240,19240,'accessories/wearable_items/_exp09/thullian_armor/vanguard/legs_noskirt',1190), -(19241,19241,'accessories/wearable_items/_exp09/thullian_armor/vanguard/right',1190), -(19242,19242,'accessories/wearable_items/_exp09/thullian_armor/vanguard/shoulders',1190), -(19243,19243,'accessories/wearable_items/_exp09/thullian_armor/vanguard/shoulders_epic',1190), -(19244,19244,'accessories/wearable_items/_exp09/thullian_armor/vanguard/shoulders_nopauldrons',1190), -(19245,19245,'accessories/wearable_items/_exp09/thullian_armor/vanguard/skirt',1190), -(19246,19246,'_exp09/objects/drinals/object_wisp_crystal',1190), -(19247,19247,'_exp08/characters/tool_users/chitari/chitari_male_statue',1190), -(19248,19248,'accessories/wieldable_items/weapons/exp08/1h_crush/exp08_1h_crush_chitari',1190), -(19249,19249,'accessories/wieldable_items/weapons/exp08/1h_sword/exp08_1hs_axe_chitari',1190), -(19250,19250,'accessories/wieldable_items/weapons/exp09/staff/bostaff_ethernere',1190), -(19251,19251,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_urngroup03',1190), -(19252,19252,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_brazier_large02',1190), -(19253,19253,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_brazier_med01',1190), -(19254,19254,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_rug01',1190), -(19255,19255,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_rug02',1190), -(19256,19256,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_rug03',1190), -(19257,19257,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn01',1190), -(19258,19258,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn02',1190), -(19259,19259,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn03',1190), -(19260,19260,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn04',1190), -(19261,19261,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn05',1190), -(19262,19262,'staticobjects/_exp08/sleepers_tomb/exp08_dun_sleepers_tomb_urn06',1190), -(19263,19263,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_bookgroup01',1190), -(19264,19264,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_bookgroup02',1190), -(19265,19265,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_bookgroup03',1190), -(19266,19266,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_brazier01_large',1190), -(19267,19267,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_chest_large01',1190), -(19268,19268,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_chest_large01_open',1190), -(19269,19269,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_chest_large02',1190), -(19270,19270,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_cornersconce_01',1190), -(19271,19271,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_cornersconce_02',1190), -(19272,19272,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_crate_large01',1190), -(19273,19273,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_crate_large02',1190), -(19274,19274,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_crate_large03',1190), -(19275,19275,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_hangingsconce_01',1190), -(19276,19276,'staticobjects/_exp08/sleepers_tomb/sleepers_tomb_urnfancy01',1190), -(19277,19277,'accessories/wearable_items/_exp09/mummy_wraps/chest',1190), -(19278,19278,'accessories/wearable_items/_exp09/mummy_wraps/hands',1190), -(19279,19279,'accessories/wearable_items/_exp09/mummy_wraps/legs',1190), -(19280,19280,'accessories/wearable_items/_exp09/mummy_wraps/shoulders',1190), -(19281,19281,'accessories/wearable_items/_exp09/mummy_wraps/accessories/armband_base_left',1190), -(19282,19282,'accessories/wearable_items/_exp09/mummy_wraps/accessories/armband_base_right',1190), -(19283,19283,'accessories/wearable_items/_exp09/mummy_wraps_royal/chest',1190), -(19284,19284,'accessories/wearable_items/_exp09/mummy_wraps_royal/hands',1190), -(19285,19285,'accessories/wearable_items/_exp09/mummy_wraps_royal/legs',1190), -(19286,19286,'accessories/wearable_items/_exp09/mummy_wraps_royal/shoulders',1190), -(19287,19287,'ec/pc/darkelf/darkelf_female_ethernere',1190), -(19288,19288,'ec/pc/darkelf/darkelf_male_ethernere',1190), -(19289,19289,'creatures/monsters/spider_ethernerearmor3',1190), -(19290,19290,'creatures/monsters/spider_ethernerearmor2',1190), -(19291,19291,'creatures/monsters/spider_ethernerearmor1',1190), -(19292,19292,'creatures/monsters/spider_yellowrecluse',1190), -(19293,19293,'creatures/monsters/spider_treespringer',1190), -(19294,19294,'creatures/monsters/spider_shadowspawn',1190), -(19295,19295,'creatures/monsters/spider_sanguinated',1190), -(19296,19296,'creatures/monsters/spider_redyellow',1190), -(19297,19297,'creatures/monsters/spider_bonecollector',1190), -(19298,19298,'accessories/wieldable_items/weapons/exp09/1h_crush/axe_ethernere',1190), -(19299,19299,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_ethernere',1190), -(19300,19300,'creatures/monsters/dervish_spinning_obolplain_stonestack',1190), -(19301,19301,'creatures/monsters/dervish_spinning_obolplain_sand',1190), -(19302,19302,'creatures/monsters/dervish_spinning_obolplain_rock',1190), -(19303,19303,'creatures/monsters/dervish_spinning_obolplain_gravel',1190), -(19304,19304,'creatures/monsters/dervish_obolplain_stonestack',1190), -(19305,19305,'creatures/monsters/dervish_obolplain_sand',1190), -(19306,19306,'creatures/monsters/dervish_obolplain_rock',1190), -(19307,19307,'creatures/monsters/dervish_obolplain_gravel',1190), -(19308,19308,'_exp09/characters/monsters/elemental_wave/elementalwave_obolplain_flowergrass',1190), -(19309,19309,'_exp09/characters/monsters/elemental_wave/elementalwave_obolplain_grass',1190), -(19310,19310,'_exp09/characters/monsters/elemental_wave/elementalwave_obolplain_purpleleaves',1190), -(19311,19311,'_exp09/characters/monsters/elemental_wave/elementalwave_obolplain_sand',1190), -(19312,19312,'_exp09/characters/monsters/elemental_wave/elementalwave_obolplain_sandwet',1190), -(19313,19313,'accessories/wearable_items/_exp09/nightborne_sc_chain/snap_ons/chaos_pauldrons_left',1190), -(19314,19314,'accessories/wearable_items/_exp09/nightborne_sc_chain/snap_ons/chaos_pauldrons_right',1190), -(19315,19315,'accessories/wearable_items/_exp09/nightborne_sc_chain/chest',1190), -(19316,19316,'accessories/wearable_items/_exp09/nightborne_sc_chain/feet',1190), -(19317,19317,'accessories/wearable_items/_exp09/nightborne_sc_chain/forearms',1190), -(19318,19318,'accessories/wearable_items/_exp09/nightborne_sc_chain/hands',1190), -(19319,19319,'accessories/wearable_items/_exp09/nightborne_sc_chain/head',1190), -(19320,19320,'accessories/wearable_items/_exp09/nightborne_sc_chain/head_epic',1190), -(19321,19321,'accessories/wearable_items/_exp09/nightborne_sc_chain/legs',1190), -(19322,19322,'accessories/wearable_items/_exp09/nightborne_sc_chain/legs_noskirt',1190), -(19323,19323,'accessories/wearable_items/_exp09/nightborne_sc_chain/shoulders',1190), -(19324,19324,'accessories/wearable_items/_exp09/nightborne_sc_chain/shoulders_epic',1190), -(19325,19325,'accessories/wearable_items/_exp09/nightborne_sc_chain/skirt',1190), -(19326,19326,'accessories/wearable_items/_exp09/nightborne_sc_leather/snap_ons/head_skull',1190), -(19327,19327,'accessories/wearable_items/_exp09/nightborne_sc_leather/snap_ons/pauldrons_left',1190), -(19328,19328,'accessories/wearable_items/_exp09/nightborne_sc_leather/snap_ons/pauldrons_right',1190), -(19329,19329,'accessories/wearable_items/_exp09/nightborne_sc_leather/chest',1190), -(19330,19330,'accessories/wearable_items/_exp09/nightborne_sc_leather/feet',1190), -(19331,19331,'accessories/wearable_items/_exp09/nightborne_sc_leather/forearms',1190), -(19332,19332,'accessories/wearable_items/_exp09/nightborne_sc_leather/hands',1190), -(19333,19333,'accessories/wearable_items/_exp09/nightborne_sc_leather/head',1190), -(19334,19334,'accessories/wearable_items/_exp09/nightborne_sc_leather/head_epic',1190), -(19335,19335,'accessories/wearable_items/_exp09/nightborne_sc_leather/legs',1190), -(19336,19336,'accessories/wearable_items/_exp09/nightborne_sc_leather/legs_noskirt',1190), -(19337,19337,'accessories/wearable_items/_exp09/nightborne_sc_leather/shoulders_epic',1190), -(19338,19338,'accessories/wearable_items/_exp09/nightborne_sc_leather/shoulders_no_pauldrons',1190), -(19339,19339,'accessories/wearable_items/_exp09/nightborne_sc_leather/skirt',1190), -(19340,19340,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/pants',1190), -(19341,19341,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/pauldrons_lower_left',1190), -(19342,19342,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/pauldrons_lower_right',1190), -(19343,19343,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/pauldrons_upper_left',1190), -(19344,19344,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/pauldrons_upper_right',1190), -(19345,19345,'accessories/wearable_items/_exp09/nightborne_sc_robe/snap_ons/skirt',1190), -(19346,19346,'accessories/wearable_items/_exp09/nightborne_sc_robe/chest',1190), -(19347,19347,'accessories/wearable_items/_exp09/nightborne_sc_robe/chest_epic',1190), -(19348,19348,'accessories/wearable_items/_exp09/nightborne_sc_robe/feet',1190), -(19349,19349,'accessories/wearable_items/_exp09/nightborne_sc_robe/hands',1190), -(19350,19350,'accessories/wearable_items/_exp09/nightborne_sc_robe/head',1190), -(19351,19351,'accessories/wearable_items/_exp09/nightborne_sc_robe/head_collar',1190), -(19352,19352,'accessories/wearable_items/_exp09/nightborne_sc_robe/head_epic',1190), -(19353,19353,'creatures/monsters/willowisp_ethernere01',1190), -(19354,19354,'_exp08/characters/monsters/gargoyle_sleeper/gargoyle_obsidian_black',1190), -(19355,19355,'creatures/monsters/willowisp_ethernere02',1190), -(19356,19356,'creatures/monsters/willowisp_ethernere02_dark',1190), -(19357,19357,'creatures/monsters/willowisp_ethernere03',1190), -(19358,19358,'creatures/tu/ethernere_elemental_soldier',1190), -(19359,19359,'_exp08/characters/monsters/komodo/komodo_blue',1190), -(19360,19360,'_exp08/characters/monsters/komodo/komodo_green',1190), -(19361,19361,'_exp08/characters/monsters/komodo/komodo_red',1190), -(19362,19362,'creatures/mounts/komodo_mount/komodo_mount_obolplains_redpack',1190), -(19363,19363,'creatures/mounts/komodo_mount/komodo_mount_obolplains_greenpack',1190), -(19364,19364,'creatures/mounts/komodo_mount/komodo_mount_obolplains_bluepack',1190), -(19365,19365,'creatures/mounts/komodo_mount/komodo_mount_obolplains_green',1190), -(19366,19366,'creatures/mounts/komodo_mount/komodo_mount_obolplains_red',1190), -(19367,19367,'creatures/mounts/komodo_mount/komodo_mount_obolplains_blue',1190), -(19368,19368,'creatures/monsters/willowisp_sparkle_purple_dead_fx',1190), -(19369,19369,'_exp09/characters/monsters/withering_tree_ent/fear_tree_ent',1190), -(19370,19370,'_exp09/characters/monsters/withering_tree_ent/glowing_tree_ent',1190), -(19371,19371,'_exp09/characters/monsters/scorpion_updated/scorpion_updated_bonepicker',1190), -(19372,19372,'_exp09/characters/monsters/scorpion_updated/scorpion_updated_brown',1190), -(19373,19373,'_exp09/characters/monsters/scorpion_updated/scorpion_updated_hematic',1190), -(19374,19374,'_exp09/characters/monsters/scorpion_updated/scorpion_updated_jungle',1190), -(19375,19375,'_exp09/characters/monsters/scorpion_updated/scorpion_updated_shadecasted',1190), -(19376,19376,'_exp09/characters/tool_users/illithid/illithid_staff',1190), -(19377,19377,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_blue',1190), -(19378,19378,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_bluechaos',1190), -(19379,19379,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_fire',1190), -(19380,19380,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_firechaos',1190), -(19381,19381,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_soulfire',1190), -(19382,19382,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_blue',1190), -(19383,19383,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_green',1190), -(19384,19384,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_violet',1190), -(19385,19385,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_queen_blue',1190), -(19386,19386,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_queen_green',1190), -(19387,19387,'_exp08/characters/tool_users/banshee_sleeper/banshee_sleeper_spectre_queen_violet',1190), -(19388,19388,'accessories/wearable_items/cloak/exp09/dragon_cloak',1190), -(19389,19389,'accessories/wearable_items/cloak/exp09/dragon_cloak_blue',1190), -(19390,19390,'accessories/wearable_items/cloak/exp09/dragon_cloak_green',1190), -(19391,19391,'_exp09/characters/tool_users/ethenere_npcs/erudite_female_ethenere',1190), -(19392,19392,'_exp09/characters/tool_users/ethenere_npcs/erudite_male_ethenere',1190), -(19393,19393,'_exp09/characters/tool_users/ethenere_npcs/gnome_female_ethenere',1190), -(19394,19394,'_exp09/characters/tool_users/ethenere_npcs/gnome_male_ethenere',1190), -(19395,19395,'_exp09/characters/tool_users/ethenere_npcs/highelf_female_ethenere',1190), -(19396,19396,'_exp09/characters/tool_users/ethenere_npcs/highelf_male_ethenere',1190), -(19397,19397,'creatures/tu/firiona_vie_ethenere',1190), -(19398,19398,'_exp09/characters/monsters/timber_wolf_ethernere/timber_wolf_ethernere',1190), -(19399,19399,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_sleepers_blue',1190), -(19400,19400,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_sleepers_green',1190), -(19401,19401,'_exp08/characters/monsters/dragon_made_golem/dragon_made_golem_sleepers_violet',1190), -(19402,19402,'_exp09/characters/tool_users/ethenere_npcs/ogre_female_ethenere',1190), -(19403,19403,'accessories/wieldable_items/weapons/exp09/1h_crush/axe_1h_primal_velium',1190), -(19404,19404,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_1h_primal_velium',1190), -(19405,19405,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_sword_primal_velium',1190), -(19406,19406,'accessories/wieldable_items/weapons/exp09/2h_crush/2h_axe_primal_velium',1190), -(19407,19407,'accessories/wieldable_items/weapons/exp09/2h_crush/2h_hammer_primal_velium',1190), -(19408,19408,'accessories/wieldable_items/weapons/exp09/2h_sword/2h_sword_primal_velium',1190), -(19409,19409,'accessories/wieldable_items/weapons/exp09/bow/longbow_primal_velium',1190), -(19410,19410,'accessories/wieldable_items/weapons/exp09/fist/fist_primal_velium',1190), -(19411,19411,'accessories/wieldable_items/weapons/exp09/staff/staff_primal_velium',1190), -(19412,19412,'accessories/wieldable_items/weapons/exp09/staff/bowstaff_primal_velium',1190), -(19413,19413,'accessories/wieldable_items/weapons/exp09/staff/cazic_pike',1190), -(19414,19414,'_exp09/characters/tool_users/illithid/illithid_cowl',1190), -(19415,19415,'_exp09/characters/tool_users/illithid/illithid_cowl_staff',1190), -(19416,19416,'accessories/wieldable_items/weapons/exp09/1h_crush/cazic_wand',1190), -(19417,19417,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_cazic',1190), -(19418,19418,'accessories/wieldable_items/weapons/exp09/2h_crush/exp09_2h_hammer_cazic',1190), -(19419,19419,'accessories/wieldable_items/weapons/exp09/fist/fist_cazic',1190), -(19420,19420,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic1_cherry',1190), -(19421,19421,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic1_driftwood',1190), -(19422,19422,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic1_enameled',1190), -(19423,19423,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic1_walnut',1190), -(19424,19424,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic2_black',1190), -(19425,19425,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic2_blue',1190), -(19426,19426,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic2_brown',1190), -(19427,19427,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic2_green',1190), -(19428,19428,'accessories/wearable_items/snapons/backpacks/quivers/quiver_basic2_red',1190), -(19429,19429,'accessories/wearable_items/snapons/backpacks/quivers/quiver_belted_blue',1190), -(19430,19430,'accessories/wearable_items/snapons/backpacks/quivers/quiver_belted_brown',1190), -(19431,19431,'accessories/wearable_items/snapons/backpacks/quivers/quiver_belted_green',1190), -(19432,19432,'accessories/wearable_items/snapons/backpacks/quivers/quiver_belted_purple',1190), -(19433,19433,'accessories/wearable_items/snapons/backpacks/quivers/quiver_belted_red',1190), -(19434,19434,'_exp08/characters/monsters/dragon_bone_golem/dragon_bone_golem_dirty',1190), -(19435,19435,'_exp09/characters/monsters/skeleton_dervish/skeleton_dervish',1190), -(19436,19436,'staticobjects/soe_wallet/curtains_plain',1190), -(19437,19437,'_exp09/characters/tool_users/gehein/gehein',1190), -(19438,19438,'accessories/wearable_items/profesion_hats/tophat/head_basic',1190), -(19439,19439,'accessories/wearable_items/profesion_hats/tophat/head_goblin',1190), -(19440,19440,'accessories/wearable_items/profesion_hats/tophat/head_leather',1190), -(19441,19441,'accessories/wearable_items/profesion_hats/tophat/head_leather_blue',1190), -(19442,19442,'accessories/wearable_items/profesion_hats/tophat/head_leather_dark',1190), -(19443,19443,'accessories/wearable_items/profesion_hats/tophat/head_leather_green',1190), -(19444,19444,'accessories/wearable_items/profesion_hats/tophat/head_leather_purple',1190), -(19445,19445,'accessories/wearable_items/profesion_hats/tophat/head_leather_red',1190), -(19446,19446,'_exp09/objects/sleepers_tomb/gargoyle_sleeper_pedestal',1190), -(19447,19447,'creatures/mounts/player_wing/player_wyvern_tintable',1190), -(19448,19448,'_exp09/characters/monsters/ethereal_construct/ethereal_construct_base',1190), -(19449,19449,'_exp09/characters/monsters/ethereal_construct/ethereal_construct_weapon',1190), -(19450,19450,'accessories/wearable_items/profesion_hats/tiara_mummy/head_bronze',1190), -(19451,19451,'accessories/wearable_items/profesion_hats/tiara_mummy/head_darkiron',1190), -(19452,19452,'accessories/wearable_items/profesion_hats/tiara_mummy/head_gem_emerald',1190), -(19453,19453,'accessories/wearable_items/profesion_hats/tiara_mummy/head_gem_onyx',1190), -(19454,19454,'accessories/wearable_items/profesion_hats/tiara_mummy/head_gem_ruby',1190), -(19455,19455,'accessories/wearable_items/profesion_hats/tiara_mummy/head_glacial',1190), -(19456,19456,'accessories/wearable_items/profesion_hats/tiara_mummy/head_golden',1190), -(19457,19457,'accessories/wearable_items/profesion_hats/tiara_mummy/head_sandstone',1190), -(19458,19458,'accessories/wearable_items/profesion_hats/tiara_mummy/head_stone',1190), -(19459,19459,'accessories/wieldable_items/weapons/exp09/bow/longbow_cazic',1190), -(19460,19460,'accessories/wearable_items/_exp09/heritage_woodelf/leather/chest',1190), -(19461,19461,'accessories/wearable_items/_exp09/heritage_woodelf/leather/feet',1190), -(19462,19462,'accessories/wearable_items/_exp09/heritage_woodelf/leather/forearms',1190), -(19463,19463,'accessories/wearable_items/_exp09/heritage_woodelf/leather/hands',1190), -(19464,19464,'accessories/wearable_items/_exp09/heritage_woodelf/leather/head',1190), -(19465,19465,'accessories/wearable_items/_exp09/heritage_woodelf/leather/head_hood',1190), -(19466,19466,'accessories/wearable_items/_exp09/heritage_woodelf/leather/legs',1190), -(19467,19467,'accessories/wearable_items/_exp09/heritage_woodelf/leather/legs_noskirt',1190), -(19468,19468,'accessories/wearable_items/_exp09/heritage_woodelf/leather/shoulders',1190), -(19469,19469,'accessories/wearable_items/_exp09/heritage_woodelf/leather/shoulders_epic',1190), -(19470,19470,'accessories/wearable_items/_exp09/heritage_woodelf/leather/skirt',1190), -(19471,19471,'accessories/wearable_items/_exp09/heritage_woodelf/leather/pauldron/shoulder_pauldron_left',1190), -(19472,19472,'accessories/wearable_items/_exp09/heritage_woodelf/leather/pauldron/shoulder_pauldron_right',1190), -(19473,19473,'accessories/wearable_items/_exp09/heritage_woodelf/leather/hood/head',1190), -(19474,19474,'accessories/wearable_items/cloak/exp09/cloak_heritage_woodelf',1190), -(19475,19475,'accessories/wearable_items/cloak/exp09/cloak_heritage_woodelf_effect',1190), -(19476,19476,'_exp09/characters/monsters/shambling_mound/shambling_mound',1190), -(19477,19477,'_exp09/characters/monsters/shambling_mound/shambling_mound_02',1190), -(19478,19478,'_exp09/characters/monsters/shambling_mound/shambling_mound_03',1190), -(19479,19479,'accessories/wearable_items/_exp09/armband_stationcash/armband_left',1190), -(19480,19480,'accessories/wearable_items/_exp09/armband_stationcash/armband_right',1190), -(19481,19481,'_exp09/characters/monsters/rust_monster/rustmonster',1190), -(19482,19482,'creatures/monsters/bat_ethernere',1190), -(19483,19483,'projectiles/arrow_emberwood',1190), -(19484,19484,'projectiles/arrow_somberwood',1190), -(19485,19485,'projectiles/throwing_star_of_ro',1190), -(19486,19486,'_exp09/characters/monsters/rust_monster/rustmonster_02',1190), -(19487,19487,'accessories/wearable_items/snapons/armbands/shoulders_effect_leaf_left',1190), -(19488,19488,'accessories/wearable_items/snapons/armbands/shoulders_effect_leaf_right',1190), -(19489,19489,'accessories/wearable_items/snapons/armbands/shoulders_effect_leaf_both',1190), -(19490,19490,'_exp09/objects/prelude_portal',1190), -(19491,19491,'_exp09/characters/tool_users/gehein/gehein_staff',1190), -(19492,19492,'_exp09/characters/tool_users/gehein/gehein_sword',1190), -(19493,19493,'_exp09/objects/exp09_rgn_plains_of_obol/po_long_leaf_plant01_dpo',1190), -(19494,19494,'creatures/monsters/wyvern_base',1190), -(19495,19495,'creatures/monsters/wyvern_brown',1190), -(19496,19496,'creatures/monsters/wyvern_green',1190), -(19497,19497,'creatures/monsters/wyvern_red',1190), -(19498,19498,'creatures/monsters/wyvern_shadow',1190), -(19499,19499,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_cazic',1190), -(19500,19500,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_bluebronze',1190), -(19501,19501,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_greengold',1190), -(19502,19502,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_rediron',1190), -(19503,19503,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_fire',1190), -(19504,19504,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_spectral',1190), -(19505,19505,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_stone',1190), -(19506,19506,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_rusty',1190), -(19507,19507,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_glacial',1190), -(19508,19508,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_obsidian',1190), -(19509,19509,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_spectral',1190), -(19510,19510,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_rusty_greenorb',1190), -(19511,19511,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_rusty_fireorb',1190), -(19512,19512,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_rediron',1190), -(19513,19513,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_blueice',1190), -(19514,19514,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_bluebronze',1190), -(19515,19515,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_bluebronze',1190), -(19516,19516,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_greengold',1190), -(19517,19517,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_rediron',1190), -(19518,19518,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_stone',1190), -(19519,19519,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_spectral',1190), -(19520,19520,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_rusty',1190), -(19521,19521,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_obsidian',1190), -(19522,19522,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_glacial',1190), -(19523,19523,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_flame',1190), -(19524,19524,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_rediron',1190), -(19525,19525,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_greengold',1190), -(19526,19526,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_bluebronze',1190), -(19527,19527,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_stone',1190), -(19528,19528,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_spectral',1190), -(19529,19529,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_rusty',1190), -(19530,19530,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_glacial',1190), -(19531,19531,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_flame',1190), -(19532,19532,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_rediron',1190), -(19533,19533,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_greengold',1190), -(19534,19534,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_bluebronze',1190), -(19535,19535,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_rusty',1190), -(19536,19536,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_rediron',1190), -(19537,19537,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_obsidian',1190), -(19538,19538,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_greengold',1190), -(19539,19539,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_glacial',1190), -(19540,19540,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_flame',1190), -(19541,19541,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_spectral',1190), -(19542,19542,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_bluebronze',1190), -(19543,19543,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_stone',1190), -(19544,19544,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_spectral',1190), -(19545,19545,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_obsidian',1190), -(19546,19546,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_glacial',1190), -(19547,19547,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_fire',1190), -(19548,19548,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_rediron',1190), -(19549,19549,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_greengold',1190), -(19550,19550,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_bluebronze',1190), -(19551,19551,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_stone',1190), -(19552,19552,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_spectral',1190), -(19553,19553,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_rediron',1190), -(19554,19554,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_obsidian',1190), -(19555,19555,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_greengold',1190), -(19556,19556,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_fire',1190), -(19557,19557,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_bluebronze',1190), -(19558,19558,'_exp09/characters/monsters/displacer_beast/displacer_beast',1190), -(19559,19559,'_exp08/characters/tool_users/chitari/chitari_male_heavy03',1190), -(19560,19560,'_exp08/characters/tool_users/chitari/chitari_male_light03',1190), -(19561,19561,'_exp08/characters/tool_users/chitari/chitari_male_medium01_base',1190), -(19562,19562,'_exp08/characters/tool_users/chitari/chitari_male_medium01_dark',1190), -(19563,19563,'_exp08/characters/tool_users/chitari/chitari_male_medium02_albino',1190), -(19564,19564,'_exp08/characters/tool_users/chitari/chitari_male_medium02_dark',1190), -(19565,19565,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_greengold',1190), -(19566,19566,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_spectral',1190), -(19567,19567,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_stone',1190), -(19568,19568,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_glacial',1190), -(19569,19569,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_flame',1190), -(19570,19570,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_obsidian',1190), -(19571,19571,'_exp09/characters/tool_users/ethenere_npcs/woodelf_female_ethenere',1190), -(19572,19572,'_exp09/characters/tool_users/ethenere_npcs/woodelf_male_ethenere',1190), -(19573,19573,'_exp09/objects/exp09_rgn_plains_of_obol/po_long_leaf_plant01_dpo_02',1190), -(19574,19574,'_exp09/characters/tool_users/were/were_black_feral',1190), -(19575,19575,'_exp09/characters/tool_users/were/were_black_scout',1190), -(19576,19576,'_exp09/characters/tool_users/were/were_fox_base',1190), -(19577,19577,'_exp09/characters/tool_users/were/were_fox_heavy',1190), -(19578,19578,'_exp09/characters/tool_users/were/were_fox_scout',1190), -(19579,19579,'_exp09/characters/tool_users/were/were_white_base',1190), -(19580,19580,'_exp09/characters/tool_users/were/were_white_heavy',1190), -(19581,19581,'_exp09/characters/tool_users/were/were_white_mage',1190), -(19582,19582,'_exp09/characters/tool_users/were/were_wild_feral',1190), -(19583,19583,'_exp09/characters/tool_users/were/were_wild_heavy',1190), -(19584,19584,'_exp09/characters/tool_users/were/were_wild_mage',1190), -(19585,19585,'_exp09/characters/monsters/elementalair_ethernere/elementalair_ethernere_red',1190), -(19586,19586,'accessories/wearable_items/_exp09/armband_stationcash/armband_both',1190), -(19587,19587,'staticobjects/soe_wallet/boats/boat01_farseas',1190), -(19588,19588,'staticobjects/soe_wallet/boats/boat01_freeport',1190), -(19589,19589,'staticobjects/soe_wallet/boats/boat01_magic',1190), -(19590,19590,'staticobjects/soe_wallet/boats/boat01_nature',1190), -(19591,19591,'staticobjects/soe_wallet/boats/boat01_nektulos',1190), -(19592,19592,'staticobjects/soe_wallet/boats/boat01_orcish',1190), -(19593,19593,'staticobjects/soe_wallet/boats/boat01_qeynos',1190), -(19594,19594,'creatures/monsters/gazer_redeye',1190), -(19595,19595,'creatures/monsters/evileye_red',1190), -(19596,19596,'accessories/wearable_items/_exp09/formal_wear/chest',1190), -(19597,19597,'accessories/wearable_items/_exp09/formal_wear/chest_combined',1190), -(19598,19598,'accessories/wearable_items/_exp09/formal_wear/feet',1190), -(19599,19599,'accessories/wearable_items/_exp09/formal_wear/hands',1190), -(19600,19600,'accessories/wearable_items/_exp09/formal_wear/legs',1190), -(19601,19601,'accessories/wearable_items/_exp09/formal_wear/shoulders',1190), -(19602,19602,'accessories/wearable_items/_exp09/formal_wear/skirt',1190), -(19603,19603,'accessories/wearable_items/_exp09/formal_wear_blue/chest',1190), -(19604,19604,'accessories/wearable_items/_exp09/formal_wear_blue/chest_combined',1190), -(19605,19605,'accessories/wearable_items/_exp09/formal_wear_blue/feet',1190), -(19606,19606,'accessories/wearable_items/_exp09/formal_wear_blue/hands',1190), -(19607,19607,'accessories/wearable_items/_exp09/formal_wear_blue/legs',1190), -(19608,19608,'accessories/wearable_items/_exp09/formal_wear_blue/shoulders',1190), -(19609,19609,'accessories/wearable_items/_exp09/formal_wear_blue/skirt',1190), -(19610,19610,'accessories/wearable_items/_exp09/formal_wear_dark/chest',1190), -(19611,19611,'accessories/wearable_items/_exp09/formal_wear_dark/chest_combined',1190), -(19612,19612,'accessories/wearable_items/_exp09/formal_wear_dark/feet',1190), -(19613,19613,'accessories/wearable_items/_exp09/formal_wear_dark/hands',1190), -(19614,19614,'accessories/wearable_items/_exp09/formal_wear_dark/legs',1190), -(19615,19615,'accessories/wearable_items/_exp09/formal_wear_dark/shoulders',1190), -(19616,19616,'accessories/wearable_items/_exp09/formal_wear_dark/skirt',1190), -(19617,19617,'accessories/wearable_items/_exp09/formal_wear_green/chest _combined',1190), -(19618,19618,'accessories/wearable_items/_exp09/formal_wear_green/chest',1190), -(19619,19619,'accessories/wearable_items/_exp09/formal_wear_green/feet',1190), -(19620,19620,'accessories/wearable_items/_exp09/formal_wear_green/hands',1190), -(19621,19621,'accessories/wearable_items/_exp09/formal_wear_green/legs',1190), -(19622,19622,'accessories/wearable_items/_exp09/formal_wear_green/shoulders',1190), -(19623,19623,'accessories/wearable_items/_exp09/formal_wear_green/skirt',1190), -(19624,19624,'accessories/wearable_items/_exp09/formal_wear_red/chest',1190), -(19625,19625,'accessories/wearable_items/_exp09/formal_wear_red/chest_combined',1190), -(19626,19626,'accessories/wearable_items/_exp09/formal_wear_red/feet',1190), -(19627,19627,'accessories/wearable_items/_exp09/formal_wear_red/hands',1190), -(19628,19628,'accessories/wearable_items/_exp09/formal_wear_red/legs',1190), -(19629,19629,'accessories/wearable_items/_exp09/formal_wear_red/shoulders',1190), -(19630,19630,'accessories/wearable_items/_exp09/formal_wear_red/skirt',1190), -(19631,19631,'_exp08/characters/tool_users/chitari/chitari_bonelord',1190), -(19632,19632,'_exp09/objects/exp09_dun_temple_of_faceless/cazic_door_blocker',1190), -(19633,19633,'_exp09/characters/tool_users/lizardmen_2012/lizardman_ethenere',1190), -(19634,19634,'_exp09/characters/tool_users/lizardmen_2012/lizardman_fear',1190), -(19635,19635,'staticobjects/liveevent/halloween/dpo_halloween_poison_bottle',1190), -(19636,19636,'accessories/wearable_items/_exp09/heritage_woodelf/leather/snapons/armband_left',1190), -(19637,19637,'accessories/wearable_items/_exp09/heritage_woodelf/leather/snapons/armband_right',1190), -(19638,19638,'accessories/wearable_items/_exp09/heritage_woodelf/leather/snapons/headband',1190), -(19639,19639,'accessories/wearable_items/_exp09/heritage_woodelf/leather/snapons/shinguard_left',1190), -(19640,19640,'accessories/wearable_items/_exp09/heritage_woodelf/leather/snapons/shinguard_right',1190), -(19641,19641,'accessories/wearable_items/_exp09/heritage_woodelf/leather/legs_epic',1190), -(19642,19642,'accessories/wearable_items/_exp09/heritage_woodelf/leather/shoulders_armbands',1190), -(19643,19643,'accessories/wieldable_items/weapons/exp07/wand/wand_flame',1190), -(19644,19644,'accessories/wearable_items/_exp09/formal_wear_blackwhite/chest',1190), -(19645,19645,'accessories/wearable_items/_exp09/formal_wear_blackwhite/chest_combined',1190), -(19646,19646,'accessories/wearable_items/_exp09/formal_wear_blackwhite/feet',1190), -(19647,19647,'accessories/wearable_items/_exp09/formal_wear_blackwhite/hands',1190), -(19648,19648,'accessories/wearable_items/_exp09/formal_wear_blackwhite/legs',1190), -(19649,19649,'accessories/wearable_items/_exp09/formal_wear_blackwhite/shoulders',1190), -(19650,19650,'accessories/wearable_items/_exp09/formal_wear_blackwhite/skirt',1190), -(19651,19651,'creatures/test/goblin_firiona_antonia',1190), -(19652,19652,'_exp09/characters/monsters/ape_fear_touched/_ape_fear_touched',1190), -(19653,19653,'_exp09/characters/monsters/ape_fear_touched/_ape_fear_touched_b',1190), -(19654,19654,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_crystal',1190), -(19655,19655,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_dragonkin',1190), -(19656,19656,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_flame',1190), -(19657,19657,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_flamedrop',1190), -(19658,19658,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_greenember',1190), -(19659,19659,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_jewelled',1190), -(19660,19660,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_lavender',1190), -(19661,19661,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_spectral',1190), -(19662,19662,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_steam',1190), -(19663,19663,'accessories/wearable_items/profesion_hats/tiara_jeweled/tiara_stone',1190), -(19664,19664,'_exp09/characters/tool_users/lizardmen_2012/lizardman_scout',1190), -(19665,19665,'_exp09/characters/tool_users/lizardmen_2012/lizardman_shaman',1190), -(19666,19666,'_exp09/objects/exp09_rgn_plains_of_obol/spirit_totem_dpo_01',1190), -(19667,19667,'accessories/wearable_items/profesion_hats/tiara_veiled/tiara_veiled',1190), -(19668,19668,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog',1190), -(19669,19669,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog_swivel',1190), -(19670,19670,'_exp09/characters/tool_users/lizardmen_2012/lizardman_fear_scout',1190), -(19671,19671,'_exp09/characters/tool_users/lizardmen_2012/lizardman_fear_shaman',1190), -(19672,19672,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog_fear',1190), -(19673,19673,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog_fear_swivel',1190), -(19674,19674,'_exp08/characters/tool_users/bog_wraith/banshee_sleeper_drinal_castle',1190), -(19675,19675,'accessories/wieldable_items/weapons/exp09/staff/bostaff_cazic',1190), -(19676,19676,'accessories/wieldable_items/weapons/exp09/staff/staff_cazic',1190), -(19677,19677,'_exp09/objects/exp09_rgn_plains_of_obol/water_plane_quest_dpo',1190), -(19678,19678,'staticobjects/halloween/dpo_pitchfork_candy_cordon',1190), -(19679,19679,'staticobjects/halloween/dpo_poker_candy_cordon',1190), -(19680,19680,'creatures/mounts/ethernere_cloud',1190), -(19681,19681,'accessories/wearable_items/profesion_hats/skull_hood/head',1190), -(19682,19682,'_exp09/objects/exp09_rgn_plains_of_obol/dragon_bone_jaw01_dpo',1190), -(19683,19683,'creatures/mounts/wyvern_mount/wyvern_armored_black',1190), -(19684,19684,'accessories/wieldable_items/shields/exp09/exp09_shield_round_evilmetal',1190), -(19685,19685,'_exp09/characters/tool_users/ogre_ogguk/ogre_male_ogguk_fur',1190), -(19686,19686,'_exp09/characters/tool_users/ogre_ogguk/ogre_male_ogguk_pants',1190), -(19687,19687,'_exp09/characters/tool_users/ogre_ogguk/ogre_male_ogguk_scout',1190), -(19688,19688,'creatures/tu/lizardkin_base',1190), -(19689,19689,'staticobjects/rocks/gf_rock_dirt_cave_small02',1190), -(19690,19690,'staticobjects/weapons/dpo_tinkered_wrench_tin',1190), -(19691,19691,'accessories/wieldable_items/shields/exp09/kite_shield_sc',1190), -(19692,19692,'accessories/wearable_items/_exp09/elder_age/chain/chest',1190), -(19693,19693,'accessories/wearable_items/_exp09/elder_age/chain/feet',1190), -(19694,19694,'accessories/wearable_items/_exp09/elder_age/chain/forearms',1190), -(19695,19695,'accessories/wearable_items/_exp09/elder_age/chain/hands',1190), -(19696,19696,'accessories/wearable_items/_exp09/elder_age/chain/head',1190), -(19697,19697,'accessories/wearable_items/_exp09/elder_age/chain/legs',1190), -(19698,19698,'accessories/wearable_items/_exp09/elder_age/chain/shoulders',1190), -(19699,19699,'accessories/wearable_items/_exp09/elder_age/chain/shoulders_epic',1190), -(19700,19700,'accessories/wearable_items/_exp09/elder_age/leather/chest',1190), -(19701,19701,'accessories/wearable_items/_exp09/elder_age/leather/feet',1190), -(19702,19702,'accessories/wearable_items/_exp09/elder_age/leather/forearms',1190), -(19703,19703,'accessories/wearable_items/_exp09/elder_age/leather/hands',1190), -(19704,19704,'accessories/wearable_items/_exp09/elder_age/leather/head',1190), -(19705,19705,'accessories/wearable_items/_exp09/elder_age/leather/legs',1190), -(19706,19706,'accessories/wearable_items/_exp09/elder_age/leather/legs_noskirt',1190), -(19707,19707,'accessories/wearable_items/_exp09/elder_age/leather/shoulders',1190), -(19708,19708,'accessories/wearable_items/_exp09/elder_age/leather/shoulders_epic',1190), -(19709,19709,'accessories/wearable_items/_exp09/elder_age/leather/skirt',1190), -(19710,19710,'accessories/wearable_items/_exp09/elder_age/robe/chest',1190), -(19711,19711,'accessories/wearable_items/_exp09/elder_age/robe/feet',1190), -(19712,19712,'accessories/wearable_items/_exp09/elder_age/robe/hands',1190), -(19713,19713,'accessories/wearable_items/_exp09/elder_age/robe/head_collar',1190), -(19714,19714,'accessories/wearable_items/_exp09/elder_age/robe/head_evil_conjurer',1190), -(19715,19715,'accessories/wearable_items/_exp09/elder_age/robe/pants',1190), -(19716,19716,'accessories/wearable_items/_exp09/elder_age/robe/skirt',1190), -(19717,19717,'accessories/wearable_items/_exp09/elder_age/snapons/bracer_left',1190), -(19718,19718,'accessories/wearable_items/_exp09/elder_age/snapons/bracer_right',1190), -(19719,19719,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_chain_left',1190), -(19720,19720,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_chain_right',1190), -(19721,19721,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_heavy_left',1190), -(19722,19722,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_heavy_right',1190), -(19723,19723,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_light_left',1190), -(19724,19724,'accessories/wearable_items/_exp09/elder_age/snapons/pauldron_light_right',1190), -(19725,19725,'accessories/wearable_items/_exp09/elder_age/snapons/shinguard_chain_left',1190), -(19726,19726,'accessories/wearable_items/_exp09/elder_age/snapons/shinguard_chain_right',1190), -(19727,19727,'accessories/wearable_items/_exp09/elder_age/snapons/shinguard_left',1190), -(19728,19728,'accessories/wearable_items/_exp09/elder_age/snapons/shinguard_right',1190), -(19729,19729,'accessories/wearable_items/_exp09/elder_age/valkeryie_gi/chest',1190), -(19730,19730,'accessories/wearable_items/_exp09/elder_age/valkeryie_gi/hands',1190), -(19731,19731,'accessories/wearable_items/_exp09/elder_age/valkeryie_gi/legs',1190), -(19732,19732,'accessories/wearable_items/_exp09/elder_age/vanguard/chest',1190), -(19733,19733,'accessories/wearable_items/_exp09/elder_age/vanguard/feet',1190), -(19734,19734,'accessories/wearable_items/_exp09/elder_age/vanguard/forearms',1190), -(19735,19735,'accessories/wearable_items/_exp09/elder_age/vanguard/hands',1190), -(19736,19736,'accessories/wearable_items/_exp09/elder_age/vanguard/hands_epic',1190), -(19737,19737,'accessories/wearable_items/_exp09/elder_age/vanguard/head',1190), -(19738,19738,'accessories/wearable_items/_exp09/elder_age/vanguard/left',1190), -(19739,19739,'accessories/wearable_items/_exp09/elder_age/vanguard/legs',1190), -(19740,19740,'accessories/wearable_items/_exp09/elder_age/vanguard/legs_epic',1190), -(19741,19741,'accessories/wearable_items/_exp09/elder_age/vanguard/legs_noskirt',1190), -(19742,19742,'accessories/wearable_items/_exp09/elder_age/vanguard/right',1190), -(19743,19743,'accessories/wearable_items/_exp09/elder_age/vanguard/shoulders',1190), -(19744,19744,'accessories/wearable_items/_exp09/elder_age/vanguard/shoulders_epic',1190), -(19745,19745,'accessories/wearable_items/_exp09/elder_age/vanguard/shoulders_nopauldrons',1190), -(19746,19746,'accessories/wearable_items/_exp09/elder_age/vanguard/skirt',1190), -(19747,19747,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/chest',1190), -(19748,19748,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/feet',1190), -(19749,19749,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/forearms',1190), -(19750,19750,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/hands',1190), -(19751,19751,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/head',1190), -(19752,19752,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/legs',1190), -(19753,19753,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/shoulders',1190), -(19754,19754,'accessories/wearable_items/_exp09/ethernere_armors/chain_green/shoulders_epic',1190), -(19755,19755,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/chest',1190), -(19756,19756,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/feet',1190), -(19757,19757,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/forearms',1190), -(19758,19758,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/hands',1190), -(19759,19759,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/head',1190), -(19760,19760,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/legs',1190), -(19761,19761,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/shoulders',1190), -(19762,19762,'accessories/wearable_items/_exp09/ethernere_armors/chain_red/shoulders_epic',1190), -(19763,19763,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/chest',1190), -(19764,19764,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/feet',1190), -(19765,19765,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/forearms',1190), -(19766,19766,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/hands',1190), -(19767,19767,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/head',1190), -(19768,19768,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/legs',1190), -(19769,19769,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/legs_noskirt',1190), -(19770,19770,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/shoulders',1190), -(19771,19771,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/shoulders_epic',1190), -(19772,19772,'accessories/wearable_items/_exp09/ethernere_armors/leather_green/skirt',1190), -(19773,19773,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/chest',1190), -(19774,19774,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/feet',1190), -(19775,19775,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/forearms',1190), -(19776,19776,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/hands',1190), -(19777,19777,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/head',1190), -(19778,19778,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/legs',1190), -(19779,19779,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/legs_noskirt',1190), -(19780,19780,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/shoulders',1190), -(19781,19781,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/shoulders_epic',1190), -(19782,19782,'accessories/wearable_items/_exp09/ethernere_armors/leather_red/skirt',1190), -(19783,19783,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/chest',1190), -(19784,19784,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/chest_epic',1190), -(19785,19785,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/feet',1190), -(19786,19786,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/hands',1190), -(19787,19787,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/head',1190), -(19788,19788,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/head_collar',1190), -(19789,19789,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/pants',1190), -(19790,19790,'accessories/wearable_items/_exp09/ethernere_armors/robe_green/skirt',1190), -(19791,19791,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/chest',1190), -(19792,19792,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/chest_epic',1190), -(19793,19793,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/feet',1190), -(19794,19794,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/hands',1190), -(19795,19795,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/head',1190), -(19796,19796,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/head_collar',1190), -(19797,19797,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/pants',1190), -(19798,19798,'accessories/wearable_items/_exp09/ethernere_armors/robe_red/skirt',1190), -(19799,19799,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_red_right',1190), -(19800,19800,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_red_left',1190), -(19801,19801,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_green_right',1190), -(19802,19802,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron2_green_left',1190), -(19803,19803,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_red_right',1190), -(19804,19804,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_green_right',1190), -(19805,19805,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_red_left',1190), -(19806,19806,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_shinguard_green_left',1190), -(19807,19807,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_red_right',1190), -(19808,19808,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_green_right',1190), -(19809,19809,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_red_left',1190), -(19810,19810,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_green_left',1190), -(19811,19811,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_red_right',1190), -(19812,19812,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_green_right',1190), -(19813,19813,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_red_left',1190), -(19814,19814,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_green_left',1190), -(19815,19815,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_red_right',1190), -(19816,19816,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_green_right',1190), -(19817,19817,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_red_left',1190), -(19818,19818,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_heavy_pauldron_chain_green_left',1190), -(19819,19819,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_red_right',1190), -(19820,19820,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_green_right',1190), -(19821,19821,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_red_left',1190), -(19822,19822,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_light_pauldron_robe_green_left',1190), -(19823,19823,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_red_right',1190), -(19824,19824,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_green_right',1190), -(19825,19825,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_red_left',1190), -(19826,19826,'accessories/wearable_items/_exp09/ethernere_armors/snapons_pauldrons/ethernere_bracer_green_left',1190), -(19827,19827,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/chest',1190), -(19828,19828,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/feet',1190), -(19829,19829,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/forearms',1190), -(19830,19830,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/hands',1190), -(19831,19831,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/hands_epic',1190), -(19832,19832,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/head',1190), -(19833,19833,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/left',1190), -(19834,19834,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/legs',1190), -(19835,19835,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/legs_noskirt',1190), -(19836,19836,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/right',1190), -(19837,19837,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/shoulders',1190), -(19838,19838,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/shoulders_epic',1190), -(19839,19839,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/shoulders_nopauldrons',1190), -(19840,19840,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_green/skirt',1190), -(19841,19841,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/chest',1190), -(19842,19842,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/feet',1190), -(19843,19843,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/forearms',1190), -(19844,19844,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/hands',1190), -(19845,19845,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/hands_epic',1190), -(19846,19846,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/head',1190), -(19847,19847,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/left',1190), -(19848,19848,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/legs',1190), -(19849,19849,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/legs_noskirt',1190), -(19850,19850,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/right',1190), -(19851,19851,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/shoulders',1190), -(19852,19852,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/shoulders_epic',1190), -(19853,19853,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/shoulders_nopauldrons',1190), -(19854,19854,'accessories/wearable_items/_exp09/ethernere_armors/vanguard_red/skirt',1190), -(19855,19855,'accessories/wearable_items/cloak/exp09/cloak_ethernere_short_red',1190), -(19856,19856,'accessories/wearable_items/cloak/exp09/cloak_ethernere_long_red',1190), -(19857,19857,'accessories/wearable_items/cloak/exp09/cloak_ethernere_short_green',1190), -(19858,19858,'accessories/wearable_items/cloak/exp09/cloak_ethernere_long_green',1190), -(19859,19859,'staticobjects/chests/dpo_mship_chest01',1190), -(19860,19860,'staticobjects/chests/dpo_mship_chest02',1190), -(19861,19861,'staticobjects/crates/dpo_mship_crate01',1190), -(19862,19862,'staticobjects/crates/dpo_mship_crate02',1190), -(19863,19863,'_exp09/objects/exp09_rgn_plains_of_obol/po_bush01_dpo',1190), -(19864,19864,'_exp09/objects/exp09_rgn_plains_of_obol/po_plant02_dpo',1190), -(19865,19865,'accessories/wearable_items/profesion_hats/crown_antons/crown_antons',1190), -(19866,19866,'accessories/wearable_items/_exp09/elder_age/magus_gi/chest',1190), -(19867,19867,'accessories/wearable_items/_exp09/elder_age/magus_gi/feet',1190), -(19868,19868,'accessories/wearable_items/_exp09/elder_age/magus_gi/legs',1190), -(19869,19869,'accessories/wearable_items/_exp09/elder_age/magus_gi/shoulders',1190), -(19870,19870,'accessories/wearable_items/cloak/exp09/cloak_ethernere_short_firiona',1190), -(19871,19871,'accessories/wearable_items/cloak/exp09/cloak_ethernere_long_firiona',1190), -(19872,19872,'staticobjects/soe_wallet/blossom_bdrm_bed_sleigh_set01',1190), -(19873,19873,'staticobjects/soe_wallet/blossom_living_sofa_large_set02',1190), -(19874,19874,'staticobjects/soe_wallet/blossom_living_sofa_large_w_pillows_set02',1190), -(19875,19875,'staticobjects/soe_wallet/blossom_living_sofa_small_set02',1190), -(19876,19876,'staticobjects/soe_wallet/blossom_dining_chair02_set02',1190), -(19877,19877,'staticobjects/soe_wallet/blossom_living_sofa_small_w_pillows_set02',1190), -(19878,19878,'staticobjects/soe_wallet/blossom_office_chair01_set02',1190), -(19879,19879,'staticobjects/soe_wallet/blossom_vanity_stool01_set02',1190), -(19880,19880,'staticobjects/soe_wallet/blossom_dining_bench_set01',1190), -(19881,19881,'staticobjects/soe_wallet/blossom_dining_chair_set01',1190), -(19882,19882,'staticobjects/soe_wallet/red_bdrm_bed_sleigh_set01',1190), -(19883,19883,'staticobjects/soe_wallet/red_dining_bench_set01',1190), -(19884,19884,'staticobjects/soe_wallet/red_dining_chair_set01',1190), -(19885,19885,'staticobjects/soe_wallet/red_living_sofa_small_set02',1190), -(19886,19886,'staticobjects/soe_wallet/red_living_sofa_large_w_pillows_set02',1190), -(19887,19887,'staticobjects/soe_wallet/red_living_sofa_small_w_pillows_set02',1190), -(19888,19888,'staticobjects/soe_wallet/red_dining_chair02_set02',1190), -(19889,19889,'staticobjects/soe_wallet/red_living_sofa_large_set02',1190), -(19890,19890,'staticobjects/soe_wallet/red_vanity_stool01_set02',1190), -(19891,19891,'staticobjects/soe_wallet/red_office_chair01_set02',1190), -(19892,19892,'_exp09/objects/drinals/drinals_tower_collision',1190), -(19893,19893,'_exp09/characters/tool_users/ogre_ogguk/ogre_female_ogguk_fur',1190), -(19894,19894,'_exp09/characters/tool_users/ogre_ogguk/ogre_female_ogguk_scout',1190), -(19895,19895,'staticobjects/soe_wallet/curtains_plain_dark',1190), -(19896,19896,'_exp09/objects/dpo/housing/elven_dresser',1190), -(19897,19897,'_exp09/objects/dpo/housing/elven_stool',1190), -(19898,19898,'_exp09/objects/dpo/housing/elven_table',1190), -(19899,19899,'_exp09/objects/dpo/housing/elven_tavern_table',1190), -(19900,19900,'_exp09/objects/dpo/housing/miners_lucky_crystal_pile',1190), -(19901,19901,'_exp09/objects/dpo/housing/miners_lucky_geode_pile',1190), -(19902,19902,'_exp09/objects/dpo/housing/alchemists_burner',1190), -(19903,19903,'_exp09/objects/dpo/housing/alchemists_burner_filtration',1190), -(19904,19904,'_exp09/objects/dpo/housing/alchemists_hourglass',1190), -(19905,19905,'_exp09/objects/dpo/housing/alchemists_vial_stand',1190), -(19906,19906,'_exp09/objects/dpo/housing/ancient_bar_shelf',1190), -(19907,19907,'_exp09/objects/dpo/housing/ancient_bar_table',1190), -(19908,19908,'_exp09/objects/dpo/housing/antique_stone_stove',1190), -(19909,19909,'_exp09/objects/dpo/housing/apple_bowl',1190), -(19910,19910,'_exp09/objects/dpo/housing/coffin_pillow',1190), -(19911,19911,'_exp09/objects/dpo/housing/decorative_cursed_chalice',1190), -(19912,19912,'_exp09/objects/dpo/housing/dwarven_chandalier',1190), -(19913,19913,'_exp09/objects/dpo/housing/dwarven_firepot',1190), -(19914,19914,'_exp09/objects/dpo/housing/dwarven_throne',1190), -(19915,19915,'_exp09/objects/dpo/housing/dwarven_totem',1190), -(19916,19916,'_exp09/objects/dpo/housing/dwarven_work_stool',1190), -(19917,19917,'_exp09/objects/dpo/housing/dwarven_work_table',1190), -(19918,19918,'_exp09/objects/dpo/housing/elven_bed',1190), -(19919,19919,'_exp09/objects/dpo/housing/elven_bedside_table',1190), -(19920,19920,'_exp09/objects/dpo/housing/elven_bookcase',1190), -(19921,19921,'_exp09/objects/dpo/housing/elven_cabinet',1190), -(19922,19922,'_exp08/characters/monsters/komodo/komodo_evil_idle',1190), -(19923,19923,'_exp08/characters/monsters/komodo/komodo_evil_idle_blackred',1190), -(19924,19924,'_exp08/characters/monsters/komodo/komodo_evil_idle_blue',1190), -(19925,19925,'_exp08/characters/monsters/komodo/komodo_evil_idle_green',1190), -(19926,19926,'_exp08/characters/monsters/komodo/komodo_evil_idle_red',1190), -(19927,19927,'accessories/wieldable_items/shields/exp09/exp09_kite_ethernere',1190), -(19928,19928,'_exp09/characters/monsters/skirth/skirth_boss',1190), -(19929,19929,'_exp09/characters/monsters/tirun_enforcer/tirun_enforcer_boss',1190), -(19930,19930,'_exp09/objects/drinals/drinal_ethernere_bell_static',1190), -(19931,19931,'_exp09/objects/drinals/drinal_ethernere_bell_tolling',1190), -(19932,19932,'_exp09/characters/tool_users/lizardmen_2012/lizardman_boss_scout',1190), -(19933,19933,'_exp09/characters/tool_users/lizardmen_2012/lizardman_boss_shaman',1190), -(19934,19934,'creatures/mounts/prestige_cloud_pad',1190), -(19935,19935,'creatures/mounts/fear_cloud_pad',1190), -(19936,19936,'accessories/wieldable_items/weapons/exp09/2h_sword/exp09_axe_2h_ethernere_sc',1190), -(19937,19937,'staticobjects/tcg/soelive2012_painting',1190), -(19938,19938,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_were',1190), -(19939,19939,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_were',1190), -(19940,19940,'accessories/wieldable_items/weapons/exp07/1h_sword/goth_axe_1_hand_01_redgold',1190), -(19941,19941,'accessories/wieldable_items/weapons/exp07/shield/goth_shield_01_redgold',1190), -(19942,19942,'creatures/monsters/evileye_red_flyer',1190), -(19943,19943,'accessories/wearable_items/_exp09/mummy_wraps_ancient/chest',1190), -(19944,19944,'accessories/wearable_items/_exp09/mummy_wraps_ancient/hands',1190), -(19945,19945,'accessories/wearable_items/_exp09/mummy_wraps_ancient/head',1190), -(19946,19946,'accessories/wearable_items/_exp09/mummy_wraps_ancient/legs',1190), -(19947,19947,'accessories/wearable_items/_exp09/mummy_wraps_ancient/shoulders',1190), -(19948,19948,'accessories/wearable_items/_exp09/mummy_wraps_ancient/snap_ons_dont_use/chest_waist',1190), -(19949,19949,'accessories/wearable_items/_exp09/mummy_wraps_ancient/snap_ons_dont_use/head_sarnak',1190), -(19950,19950,'creatures/mounts/bird_mount/evil/bird_evil_green',1190), -(19951,19951,'creatures/mounts/bird_mount/evil/bird_evil_red',1190), -(19952,19952,'creatures/mounts/bird_mount/evil/bird_evil_yellow',1190), -(19953,19953,'_exp09/characters/monsters/lion_new/lion_new_base',1190), -(19954,19954,'_exp09/characters/tool_users/gehein_houseplushie/gehein_houseplushie',1190), -(19955,19955,'_exp09/characters/tool_users/elemental_solusek/elemental_solusek',1190), -(19956,19956,'_exp09/characters/monsters/elemental_storm/elemental_storm',1190), -(19957,19957,'_exp09/characters/monsters/elemental_storm/elemental_storm_upgrade',1190), -(19958,19958,'_exp09/characters/tool_users/elemental_solusek/elemental_solusek_daughter',1190), -(19959,19959,'_exp09/characters/tool_users/elemental_solusek/elemental_solusek_upgraded',1190), -(19960,19960,'staticobjects/tcg/tcg_cheesecart',1190), -(19961,19961,'staticobjects/tcg/tcg_tapestry01_design_lavawalker',1190), -(19962,19962,'staticobjects/tcg/tcg_tapestry01_design_dragonhunter',1190), -(19963,19963,'_exp09/characters/monsters/water_spout/water_spout',1190), -(19964,19964,'creatures/mounts/bird_mount/evil/bird_evil_america',1190), -(19965,19965,'_exp09/characters/monsters/dervish_necromantic/dervish_necromantic_pestillencevortex',1190), -(19966,19966,'_exp09/characters/monsters/dervish_necromantic/dervish_necromantic_pestillencevortex_upgrade',1190), -(19967,19967,'_exp09/characters/monsters/dervish_necromantic/dervish_necromantic_redswarmingdeath',1190), -(19968,19968,'_exp09/characters/monsters/dervish_necromantic/dervish_necromantic_redswarmingdeath_upgrade',1190), -(19969,19969,'_exp09/objects/exp09_rgn_eidolon_jungle/po_soul_spire_lrg_active',1190), -(19970,19970,'_exp09/objects/exp09_rgn_eidolon_jungle/po_soul_spire_lrg_inactive',1190), -(19971,19971,'_exp09/objects/exp09_rgn_eidolon_jungle/po_soul_spire_sml_active',1190), -(19972,19972,'_exp09/objects/exp09_rgn_eidolon_jungle/po_soul_spire_sml_inactive',1190), -(19973,19973,'_exp09/objects/exp09_rgn_eidolon_jungle/turbillion_vestibule_active',1190), -(19974,19974,'_exp09/objects/exp09_rgn_eidolon_jungle/turbillion_vestibule_active_no_rotation',1190), -(19975,19975,'_exp09/objects/exp09_rgn_eidolon_jungle/turbillion_vestibule_inactive',1190), -(19976,19976,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_ethernere',1190), -(19977,19977,'accessories/npc_wearables/ogre_ogguk/head_ogre_ogguk',1190), -(19978,19978,'accessories/npc_wearables/ogre_ogguk/ogre_ogguk_pauldron_left',1190), -(19979,19979,'accessories/npc_wearables/ogre_ogguk/ogre_ogguk_pauldron_right',1190), -(19980,19980,'accessories/wieldable_items/shields/exp09/exp09_shield_buckler_ethernere',1190), -(19981,19981,'accessories/wieldable_items/weapons/exp09/2h_sword/exp09_2h_axe_ethernere',1190), -(19982,19982,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_feergate',1190), -(19983,19983,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_feergate_fx',1190), -(19984,19984,'staticobjects/_exp09/dpo_exp09_staff_drinal',1190), -(19985,19985,'_exp09/objects/exp09_rgn_eidolon_jungle/wooden_barricade_long',1190), -(19986,19986,'_exp09/objects/exp09_rgn_eidolon_jungle/wooden_barricade_short',1190), -(19987,19987,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_bluebronze_epic',1190), -(19988,19988,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_greengold_epic',1190), -(19989,19989,'accessories/wieldable_items/weapons/exp09/1h_crush/hammer_fantasy_rediron_epic',1190), -(19990,19990,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_bluebronze_epic',1190), -(19991,19991,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_greengold_epic',1190), -(19992,19992,'accessories/wieldable_items/weapons/exp09/1h_crush/mace_fantasy_rediron_epic',1190), -(19993,19993,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_bluebronze_epic',1190), -(19994,19994,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_greengold_epic',1190), -(19995,19995,'accessories/wieldable_items/weapons/exp09/1h_crush/wand_fantasy_rediron_epic',1190), -(19996,19996,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_bluebronze_epic',1190), -(19997,19997,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_greengold_epic',1190), -(19998,19998,'accessories/wieldable_items/weapons/exp09/1h_pierce/dagger_hunter_fantasy_rediron_epic',1190), -(19999,19999,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_bluebronze_epic',1190), -(20000,20000,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_greengold_epic',1190), -(20001,20001,'accessories/wieldable_items/weapons/exp09/1h_sword/shortsword_fantasy_rediron_epic',1190), -(20002,20002,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_bluebronze_epic',1190), -(20003,20003,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_greengold_epic',1190), -(20004,20004,'accessories/wieldable_items/weapons/exp09/1h_sword/sword_fantasy_rediron_epic',1190), -(20005,20005,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_bluebronze_epic',1190), -(20006,20006,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_greengold_epic',1190), -(20007,20007,'accessories/wieldable_items/weapons/exp09/2h_sword/2hsword_fantasy_rediron_epic',1190), -(20008,20008,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_bluebronze_epic',1190), -(20009,20009,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_greengold_epic',1190), -(20010,20010,'accessories/wieldable_items/weapons/exp09/bow/longbow_fantasy_rediron_epic',1190), -(20011,20011,'_exp09/characters/monsters/elemental_storm/elemental_storm_epic',1190), -(20012,20012,'_exp09/characters/monsters/elemental_storm/elemental_storm_upgrade_epic',1190), -(20013,20013,'_exp09/objects/exp09_dun_temple_of_faceless/brazier_01_red',1190), -(20014,20014,'_exp09/objects/exp09_dun_temple_of_faceless/brazier_01_white',1190), -(20015,20015,'_exp09/objects/exp09_dun_temple_of_faceless/sconce_01_red',1190), -(20016,20016,'_exp09/objects/exp09_dun_temple_of_faceless/sconce_01_white',1190), -(20017,20017,'_exp09/objects/exp09_dun_temple_of_faceless/sconce_02_red',1190), -(20018,20018,'_exp09/objects/exp09_dun_temple_of_faceless/sconce_02_white',1190), -(20019,20019,'_exp09/objects/exp09_dun_temple_of_faceless/morrel_statue',1190), -(20020,20020,'_exp09/objects/exp09_dun_temple_of_faceless/terris_statue',1190), -(20021,20021,'creatures/mounts/wyvern_mount/wyvern_mount_ethernere',1190), -(20022,20022,'_exp09/characters/monsters/carnivorous_ape_boss/carnivorous_ape_boss_perched',1190), -(20023,20023,'staticobjects/weapons/dpo_beastlord_silver',1190), -(20024,20024,'staticobjects/weapons/dpo_beastlord_mythical',1190), -(20025,20025,'_exp09/characters/monsters/lion_winged/lion_winged_male',1190), -(20026,20026,'staticobjects/_exp09/po_soul_spire_sml_dpo',1190), -(20027,20027,'staticobjects/_exp09/drinal_monolith_dpo',1190), -(20028,20028,'staticobjects/_exp09/dun_temple_of_faceless_brazier01_dpo',1190), -(20029,20029,'staticobjects/_exp09/ej_temple_staff01_dpo',1190), -(20030,20030,'staticobjects/_exp09/exp09_rgn_ej_oggok01_brazier01_dpo',1190), -(20031,20031,'staticobjects/_exp09/po_lightsource_brazier_were01_dpo',1190), -(20032,20032,'staticobjects/_exp09/po_rug_outdoor_orange01_dpo',1190), -(20033,20033,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_temple_cyluuh_totem01',1190), -(20034,20034,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_temple_cyluuh_totem01_ghost',1190), -(20035,20035,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_temple_staff01',1190), -(20036,20036,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_temple_yulsluu_key_post01',1190), -(20037,20037,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_temple_yulsluu_key_post02',1190), -(20038,20038,'accessories/wearable_items/cloak/exp09/cloak_drinals_castle',1190), -(20039,20039,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_hand_totem',1190), -(20040,20040,'_exp09/objects/exp09_rgn_eidolon_jungle/oggok_pole_with_flag',1190), -(20041,20041,'_exp09/objects/exp09_rgn_eidolon_jungle/oggok_weapon_cache_table',1190), -(20042,20042,'_exp09/objects/exp09_rgn_eidolon_jungle/oggok_weapon_cot',1190), -(20043,20043,'_exp09/objects/drinals/drinals_soulwell_blue_01',1190), -(20044,20044,'_exp09/objects/drinals/drinals_soulwell_gold_01',1190), -(20045,20045,'_exp09/objects/drinals/drinals_soulwell_green_01',1190), -(20046,20046,'_exp09/objects/drinals/drinals_soulwell_red_01',1190), -(20047,20047,'_exp09/objects/drinals/drinals_soulwell_blue_holder_01',1190), -(20048,20048,'_exp09/objects/drinals/drinals_soulwell_gold_holder_01',1190), -(20049,20049,'_exp09/objects/drinals/drinals_soulwell_green_holder_01',1190), -(20050,20050,'_exp09/objects/drinals/drinals_soulwell_red_holder_01',1190), -(20051,20051,'_exp09/objects/drinals/drinals_soulwell_blue_orb_01',1190), -(20052,20052,'_exp09/objects/drinals/drinals_soulwell_gold_orb_01',1190), -(20053,20053,'_exp09/objects/drinals/drinals_soulwell_green_orb_01',1190), -(20054,20054,'_exp09/objects/drinals/drinals_soulwell_red_orb_01',1190), -(20055,20055,'_exp09/objects/harvested/bush',1190), -(20056,20056,'_exp09/objects/harvested/den',1190), -(20057,20057,'_exp09/objects/harvested/gems',1190), -(20058,20058,'_exp09/objects/harvested/log',1190), -(20059,20059,'_exp09/objects/harvested/ore',1190), -(20060,20060,'_exp09/objects/harvested/roots',1190), -(20061,20061,'accessories/wieldable_items/weapons/exp09/2h_sword/exp09_2h_sword_ethernere',1190), -(20062,20062,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_anchor_base',1190), -(20063,20063,'accessories/wieldable_items/weapons/exp09/1h_sword/exp09_1h_sword_ethernere',1190), -(20064,20064,'_exp09/objects/exp09_rgn_plains_of_obol/po_chest_large_ornate01',1190), -(20065,20065,'_exp09/objects/exp09_rgn_plains_of_obol/po_chest_small_ornate01',1190), -(20066,20066,'_exp09/objects/exp09_rgn_plains_of_obol/po_crate_open01',1190), -(20067,20067,'_exp09/objects/exp09_rgn_plains_of_obol/po_horde_burrowpile01',1190), -(20068,20068,'_exp09/objects/exp09_rgn_plains_of_obol/po_scroll_single01',1190), -(20069,20069,'_exp09/objects/exp09_rgn_plains_of_obol/po_scrolls_group01',1190), -(20070,20070,'_exp09/objects/exp09_rgn_plains_of_obol/po_scrolls_group02',1190), -(20071,20071,'_exp09/objects/exp09_rgn_plains_of_obol/po_scrolls_group03',1190), -(20072,20072,'_exp09/objects/exp09_rgn_plains_of_obol/turbillion_vestibule01',1190), -(20073,20073,'_exp09/objects/exp09_rgn_plains_of_obol/turbillion_vestibule01_noglow',1190), -(20074,20074,'_exp09/objects/drinals/dc_books_single01',1190), -(20075,20075,'_exp09/objects/drinals/dc_books_single02',1190), -(20076,20076,'_exp09/objects/drinals/dc_books_single03',1190), -(20077,20077,'_exp09/objects/drinals/dc_scroll_single02',1190), -(20078,20078,'_exp09/objects/drinals/dc_scrolls_group03',1190), -(20079,20079,'_exp09/objects/drinals/dc_scrolls_group04',1190), -(20080,20080,'_exp09/objects/exp09_rgn_eidolon_jungle/exp09_rgn_ej_oggok01_banner01',1190), -(20081,20081,'_exp09/objects/exp09_rgn_eidolon_jungle/exp09_rgn_ej_oggok01_forge01',1190), -(20082,20082,'_exp09/objects/exp09_rgn_eidolon_jungle/exp09_rgn_ej_oggok01_forge02',1190), -(20083,20083,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_brazier01',1190), -(20084,20084,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_brazier01_white',1190), -(20085,20085,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_oblsq01',1190), -(20086,20086,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_sconce01',1190), -(20087,20087,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_sconce01_white',1190), -(20088,20088,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_sconce02',1190), -(20089,20089,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_sconce02_white',1190), -(20090,20090,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_urn01',1190), -(20091,20091,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_urn02',1190), -(20092,20092,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_urn03',1190), -(20093,20093,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_urn04',1190), -(20094,20094,'_exp09/objects/exp09_rgn_eidolon_jungle/dun_temple_of_faceless_urn05',1190), -(20095,20095,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_anchor_base01',1190), -(20096,20096,'accessories/wearable_items/cloak/exp09/cloak_gemstone_armor_red_split',1190), -(20097,20097,'accessories/wearable_items/cloak/exp09/cloak_gemstone_armor_red_inset',1190), -(20098,20098,'accessories/wearable_items/cloak/exp09/cloak_gemstone_armor_red_3strap',1190), -(20099,20099,'accessories/wearable_items/cloak/exp09/cloak_gemstone_armor_red_square',1190), -(20100,20100,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/chest',1190), -(20101,20101,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/feet',1190), -(20102,20102,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/forearms',1190), -(20103,20103,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/hands',1190), -(20104,20104,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/head',1190), -(20105,20105,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/legs',1190), -(20106,20106,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/shoulders',1190), -(20107,20107,'accessories/wearable_items/_exp09/gemstone_armor/red/chain/shoulders_epic',1190), -(20108,20108,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/chest',1190), -(20109,20109,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/feet',1190), -(20110,20110,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/hands',1190), -(20111,20111,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/head',1190), -(20112,20112,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/legs',1190), -(20113,20113,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/shoulders',1190), -(20114,20114,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/shoulders_epic',1190), -(20115,20115,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/skirt',1190), -(20116,20116,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/belt/skirt 2',1190), -(20117,20117,'accessories/wearable_items/_exp09/gemstone_armor/red/gi_heavycloth/belt/skirt',1190), -(20118,20118,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/chest',1190), -(20119,20119,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/feet',1190), -(20120,20120,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/forearms',1190), -(20121,20121,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/hands',1190), -(20122,20122,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/head',1190), -(20123,20123,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/head_hood',1190), -(20124,20124,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/legs',1190), -(20125,20125,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/legs_noskirt',1190), -(20126,20126,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/shoulders',1190), -(20127,20127,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/shoulders_epic',1190), -(20128,20128,'accessories/wearable_items/_exp09/gemstone_armor/red/leather/skirt',1190), -(20129,20129,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/chest',1190), -(20130,20130,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/chest_epic',1190), -(20131,20131,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/feet',1190), -(20132,20132,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/hands',1190), -(20133,20133,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/head',1190), -(20134,20134,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/head_collar',1190), -(20135,20135,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/head_crystalcirclet',1190), -(20136,20136,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/pants',1190), -(20137,20137,'accessories/wearable_items/_exp09/gemstone_armor/red/robe/skirt',1190), -(20138,20138,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/bracer_left',1190), -(20139,20139,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/bracer_right',1190), -(20140,20140,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/head_chain_epic',1190), -(20141,20141,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/head_vanguard_epic',1190), -(20142,20142,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_chain_left',1190), -(20143,20143,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_chain_right',1190), -(20144,20144,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_gi_left',1190), -(20145,20145,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_gi_right',1190), -(20146,20146,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_heavy_left',1190), -(20147,20147,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_heavy_right',1190), -(20148,20148,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_leather_left',1190), -(20149,20149,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_leather_right',1190), -(20150,20150,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_robe_left',1190), -(20151,20151,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/pauldron_robe_right',1190), -(20152,20152,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/shinguard_left',1190), -(20153,20153,'accessories/wearable_items/_exp09/gemstone_armor/red/snapons/shinguard_right',1190), -(20154,20154,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/chest',1190), -(20155,20155,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/feet',1190), -(20156,20156,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/forearms',1190), -(20157,20157,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/hands',1190), -(20158,20158,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/head',1190), -(20159,20159,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/head_epic',1190), -(20160,20160,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/left',1190), -(20161,20161,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/legs',1190), -(20162,20162,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/legs_epic',1190), -(20163,20163,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/legs_noskirt',1190), -(20164,20164,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/right',1190), -(20165,20165,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/shoulders',1190), -(20166,20166,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/shoulders_epic',1190), -(20167,20167,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/shoulders_nopauldrons',1190), -(20168,20168,'accessories/wearable_items/_exp09/gemstone_armor/red/vanguard/skirt',1190), -(20169,20169,'_exp09/objects/ethernere_portal_fx',1190), -(20170,20170,'staticobjects/_exp09/firiona_tapestry01',1190), -(20171,20171,'_exp09/objects/exp09_rgn_eidolon_jungle/ej_fear_tree_root',1190), -(20172,20172,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_blue',1190), -(20173,20173,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_green',1190), -(20174,20174,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_orange',1190), -(20175,20175,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_pink',1190), -(20176,20176,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_red',1190), -(20177,20177,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_yellow',1190), -(20178,20178,'_exp09/objects/exp09_rgn_eidolon_jungle/oggok_weapon_cache',1190), -(20179,20179,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_black',1190), -(20180,20180,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_violet',1190), -(20181,20181,'creatures/pets/frostfell_gumdrop/frostfell_gumdrop_void',1190), -(20182,20182,'staticobjects/tcg/tcg_painting73_belligerence',1190), -(20183,20183,'staticobjects/tcg/tcg_painting71_preservation',1190), -(20184,20184,'staticobjects/tcg/tcg_painting70_revitalize',1190), -(20185,20185,'staticobjects/tcg/tcg_painting74_telluricfury',1190), -(20186,20186,'staticobjects/tcg/tcg_painting72_rapidstab',1190), -(20187,20187,'staticobjects/tcg/tcg_painting_lonset15',1190), -(20188,20188,'_exp09/objects/exp09_rgn_eidolon_jungle/oggok_rallos_helm_statue',1190), -(20189,20189,'_exp09/objects/exp09_rgn_eidolon_jungle/exp09_rgn_ej_oggok01_banner02',1190), -(20190,20190,'_exp09/objects/exp09_rgn_plains_of_obol/po_rug_purple01',1190), -(20191,20191,'_exp09/objects/exp09_rgn_plains_of_obol/po_rug_blue01',1190), -(20192,20192,'_exp09/objects/exp09_rgn_plains_of_obol/po_table_scientific01',1190), -(20193,20193,'_exp09/objects/exp09_rgn_plains_of_obol/clothspinners_clothrack01',1190), -(20194,20194,'_exp09/objects/exp09_rgn_plains_of_obol/weaponrack_sword001',1190), -(20195,20195,'_exp09/objects/exp09_rgn_plains_of_obol/df_objects_rug02',1190), -(20196,20196,'_exp09/objects/exp09_dun_deepchelsith/exp09_dun_dpch_p05_crypt_long01',1190), -(20197,20197,'_exp09/objects/exp09_dun_deepchelsith/exp09_dun_dpch_p05_crypt_short01',1190), -(20198,20198,'_exp09/objects/exp09_dun_deepchelsith/exp09_dun_dpch_p05_crypt_vase01',1190), -(20199,20199,'_exp09/objects/exp09_dun_deepchelsith/exp09_dun_dpch_p05_crypt_vase01_broken01',1190), -(20200,20200,'creatures/mounts/wyvern_mount/wyvern_armored_drinal',1190), -(20201,20201,'_exp09/objects/exp09_dun_wurmbones_end/exp09_dun_we01_crystal01fx',1190), -(20202,20202,'_exp09/objects/exp09_dun_deepchelsith/exp09_dun_dpch_p05_crypt_vase02',1190), -(20203,20203,'accessories/wearable_items/snapons/backpacks/backpack_bard/backpack_drum_swivel',1190), -(20204,20204,'staticobjects/_exp09/dun_deepchelsith_crystal',1190), -(20205,20205,'_exp09/objects/soulspire_comm_device01',1190), -(20206,20206,'accessories/wieldable_items/weapons/exp09/1h_crush/1h_hammer_were_epic',1190), -(20207,20207,'accessories/wieldable_items/weapons/exp09/1h_sword/1h_axe_were_epic',1190), -(20208,20208,'_exp09/objects/drinals/drinals_collumn_blue',1190), -(20209,20209,'_exp09/objects/drinals/drinals_collumn_red',1190), -(20210,20210,'_exp09/objects/firiona_vie_rest_dpo',1190), -(20211,20211,'accessories/wearable_items/snapons/backpacks/backpack_bard/backpack_bard',1190), -(20212,20212,'_exp09/objects/dpo/housing/guildhall_trophy_tukaarak',1190), -(20213,20213,'_exp09/objects/dpo/housing/guildhall_trophy_hraashna',1190), -(20214,20214,'_exp09/objects/dpo/housing/guildhall_trophy_ventani',1190), -(20215,20215,'_exp09/objects/dpo/housing/guildhall_trophy_nanzata',1190), -(20216,20216,'_exp09/objects/dpo/housing/guildhall_trophy_drinal',1190), -(20217,20217,'_exp09/objects/dpo/housing/guildhall_trophy_fear_ape',1190), -(20218,20218,'_exp09/objects/dpo/housing/guildhall_trophy_baelon',1190), -(20219,20219,'_exp09/objects/dpo/housing/guildhall_trophy_amalgamon',1190), -(20220,20220,'accessories/wearable_items/_exp08/robe_elemental/water/left_shoulder_effect',1190), -(20221,20221,'accessories/wearable_items/_exp08/robe_elemental/water/right_shoulder_effect',1190), -(20222,20222,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/chest',1190), -(20223,20223,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/chest_combined',1190), -(20224,20224,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/chest_combined_epic1',1190), -(20225,20225,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/chest_combined_epic2',1190), -(20226,20226,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/feet',1190), -(20227,20227,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/hands',1190), -(20228,20228,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/head_goggles',1190), -(20229,20229,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/legs',1190), -(20230,20230,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/shoulders',1190), -(20231,20231,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined/skirt',1190), -(20232,20232,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/chest',1190), -(20233,20233,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/chest_combined',1190), -(20234,20234,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/chest_combined_epic1',1190), -(20235,20235,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/chest_combined_epic2',1190), -(20236,20236,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/chest_combined_epic3',1190), -(20237,20237,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/feet',1190), -(20238,20238,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/hands',1190), -(20239,20239,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/head_goggles',1190), -(20240,20240,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/legs',1190), -(20241,20241,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/shoulders',1190), -(20242,20242,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_brown/skirt',1190), -(20243,20243,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/chest',1190), -(20244,20244,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/chest_combined',1190), -(20245,20245,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/chest_combined_epic1',1190), -(20246,20246,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/chest_combined_epic2',1190), -(20247,20247,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/feet',1190), -(20248,20248,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/hands',1190), -(20249,20249,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/head_goggles_dark',1190), -(20250,20250,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/legs',1190), -(20251,20251,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/shoulders',1190), -(20252,20252,'accessories/wearable_items/_exp09/galvanic_armor/galvanic_set_combined_mauve/skirt',1190), -(20253,20253,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_bracer_dark_right',1190), -(20254,20254,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_bracer_right',1190), -(20255,20255,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy1_left',1190), -(20256,20256,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy1_right',1190), -(20257,20257,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy2_left',1190), -(20258,20258,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy2_left_dark',1190), -(20259,20259,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy2_right',1190), -(20260,20260,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy2_right_dark',1190), -(20261,20261,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy3_left',1190), -(20262,20262,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy3_left_dark',1190), -(20263,20263,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy3_right',1190), -(20264,20264,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_heavy3_right_dark',1190), -(20265,20265,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light1_left',1190), -(20266,20266,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light1_left_dark',1190), -(20267,20267,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light1_right',1190), -(20268,20268,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light1_right_dark',1190), -(20269,20269,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light2_left',1190), -(20270,20270,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light2_left_dark',1190), -(20271,20271,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light2_right',1190), -(20272,20272,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_light2_right_dark',1190), -(20273,20273,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under1_left',1190), -(20274,20274,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under1_left_dark',1190), -(20275,20275,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under1_right',1190), -(20276,20276,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under1_right_dark',1190), -(20277,20277,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under2_left',1190), -(20278,20278,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under2_left_dark',1190), -(20279,20279,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under2_right',1190), -(20280,20280,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_pauldron_under2_right_dark',1190), -(20281,20281,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_thigh_left',1190), -(20282,20282,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_thigh_left_dark',1190), -(20283,20283,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_thigh_right',1190), -(20284,20284,'accessories/wearable_items/_exp09/galvanic_armor/snapons/galvanic_thigh_right_dark',1190), -(20285,20285,'accessories/wearable_items/_exp09/galvanic_armor/snapons/head_goggles',1190), -(20286,20286,'accessories/wearable_items/_exp09/galvanic_armor/snapons/head_goggles_dark',1190), -(20287,20287,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_anvil01',1190), -(20288,20288,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_chest_wood_long_closed002',1190), -(20289,20289,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_chest_wood_small_closed002',1190), -(20290,20290,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_crate_small_long001',1190), -(20291,20291,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_crate_small001',1190), -(20292,20292,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_flask_leather001',1190), -(20293,20293,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_forge01',1190), -(20294,20294,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_hum_forge01',1190), -(20295,20295,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_labbeaker_large_capped_redgoo001',1190), -(20296,20296,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_lantern_handledwn',1190), -(20297,20297,'_exp09/objects/exp09_rgn_eidolon_jungle/camp_ej_weaponrack001',1190), -(20298,20298,'accessories/wearable_items/cloak/exp09/cloak_galvanic_mauve',1190), -(20299,20299,'accessories/wearable_items/cloak/exp09/cloak_galvanic_red',1190), -(20300,20300,'staticobjects/mailboxes/ethernere_mailbox01',1190), -(20301,20301,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog_fear_secondary',1190), -(20302,20302,'accessories/wieldable_items/weapons/talisman/doll/lizardman_frog_secondary',1190), -(20303,20303,'creatures/mounts/skyshrine_drake_mount/skyshrine_drake_mount_base',1190), -(20304,20304,'_exp09/characters/monsters/cookie_man/gingerbread_man1',1190), -(20305,20305,'_exp09/characters/monsters/cookie_man/gingerbread_man1_chocolate',1190), -(20306,20306,'_exp09/characters/monsters/cookie_man/gingerbread_man1_dark',1190), -(20307,20307,'_exp09/characters/monsters/cookie_man/gingerbread_man1_sugar',1190), -(20308,20308,'_exp09/characters/monsters/cookie_man/gingerbread_man2',1190), -(20309,20309,'_exp09/characters/monsters/cookie_man/gingerbread_man2_chocolate',1190), -(20310,20310,'_exp09/characters/monsters/cookie_man/gingerbread_man2_dark',1190), -(20311,20311,'_exp09/characters/monsters/cookie_man/gingerbread_man2_sugar',1190), -(20312,20312,'_exp09/characters/monsters/cookie_man/gingerbread_man3',1190), -(20313,20313,'_exp09/characters/monsters/cookie_man/gingerbread_man3_chocolate',1190), -(20314,20314,'_exp09/characters/monsters/cookie_man/gingerbread_man3_dark',1190), -(20315,20315,'_exp09/characters/monsters/cookie_man/gingerbread_man3_sugar',1190), -(20316,20316,'staticobjects/soe_wallet/sc_painting_wurmbone03',1190), -(20317,20317,'staticobjects/soe_wallet/sc_painting_wurmbone02',1190), -(20318,20318,'staticobjects/_exp09/sc_painting_skyshrine02',1190), -(20319,20319,'staticobjects/_exp09/sc_painting_wurmbone04',1190), -(20320,20320,'staticobjects/_exp09/sc_painting_wurmbone01',1190), -(20321,20321,'staticobjects/_exp09/sc_painting_eidolon01',1190), -(20322,20322,'staticobjects/tcg/tcg_painting77_loyalist',1190), -(20323,20323,'staticobjects/tcg/tcg_painting76_antonia',1190), -(20324,20324,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_blue_snowflakes',1190), -(20325,20325,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped_blue',1190), -(20326,20326,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped_green',1190), -(20327,20327,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped_purple',1190), -(20328,20328,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped_red',1190), -(20329,20329,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped_white',1190), -(20330,20330,'accessories/wearable_items/cloak/exp09/scarf/cloak_scarf_striped1',1190), -(20331,20331,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_solidblue',1190), -(20332,20332,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_striped',1190), -(20333,20333,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_stripedblue',1190), -(20334,20334,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_stripedgreen',1190), -(20335,20335,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_stripedpurple',1190), -(20336,20336,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_stripedred',1190), -(20337,20337,'accessories/wearable_items/cloak/exp09/scarf/neckrings/cloak_scarf_neckring_stripedwhite',1190), -(20338,20338,'accessories/wearable_items/cloak/exp09/cloak_thorns',1190), -(20339,20339,'accessories/wearable_items/cloak/exp09/cloak_thorns_blue',1190), -(20340,20340,'accessories/wearable_items/cloak/exp09/cloak_thorns_collar',1190), -(20341,20341,'accessories/wearable_items/cloak/exp09/cloak_thorns_collar_blue',1190), -(20342,20342,'accessories/wearable_items/cloak/exp09/cloak_thorns_collar_green',1190), -(20343,20343,'accessories/wearable_items/cloak/exp09/cloak_thorns_green',1190), -(20344,20344,'creatures/mounts/player_wing/player_wing_frostfell',1190), -(20345,23280,'_exp07/characters/tool_users/drolvarg_boss/drolvarg_boss',1096), -(20346,50001,'soga_appearances/ec/npc/soga_bird_man',0), -(20347,50002,'soga_appearances/ec/npc/soga_dragon_turtle',0), -(20348,50003,'soga_appearances/ec/npc/soga_snake_woman_boss',0), -(20349,50004,'soga_appearances/ec/npc/soga_snake_woman_captain',0), -(20350,50005,'soga_appearances/ec/npc/soga_snake_woman_mira',0), -(20351,50006,'soga_appearances/ec/npc/soga_snake_woman_soldier',0), -(20352,50007,'soga_appearances/ec/npc/soga_vl_child_female01',0), -(20353,50008,'soga_appearances/ec/npc/soga_vl_child_male01',0), -(20354,50009,'soga_appearances/ec/npc/soga_vl_old_female01',0), -(20355,50010,'soga_appearances/ec/npc/soga_vl_old_male01',0), -(20356,50011,'soga_appearances/ec/npc/soga_vl_young_female01',0), -(20357,50012,'soga_appearances/ec/npc/soga_vl_young_female02',0), -(20358,50013,'soga_appearances/ec/npc/soga_vl_young_female03',0), -(20359,50014,'soga_appearances/ec/npc/soga_vl_young_male01',0), -(20360,50015,'soga_appearances/ec/npc/soga_vl_young_male02',0), -(20361,50016,'soga_appearances/ec/npc/soga_vl_young_male03',0), -(20362,50017,'soga_appearances/accessories/facial_hair/soga_vl_old_male_facialhair01',0), -(20363,50018,'soga_appearances/accessories/facial_hair/soga_vl_old_male_facialhair02',0), -(20364,50019,'soga_appearances/accessories/facial_hair/soga_vl_young_male_facialhair01',0), -(20365,50020,'soga_appearances/accessories/facial_hair/soga_vl_young_male_facialhair02',0), -(20366,50021,'soga_appearances/accessories/hair/soga_jj_hair',0), -(20367,50022,'soga_appearances/accessories/hair/soga_vl_child_female_hair01',0), -(20368,50023,'soga_appearances/accessories/hair/soga_vl_child_female_hair02',0), -(20369,50024,'soga_appearances/accessories/hair/soga_vl_child_male_hair01',0), -(20370,50025,'soga_appearances/accessories/hair/soga_vl_child_male_hair02',0), -(20371,50026,'soga_appearances/accessories/hair/soga_vl_old_female_hair01',0), -(20372,50027,'soga_appearances/accessories/hair/soga_vl_old_female_hair02',0), -(20373,50028,'soga_appearances/accessories/hair/soga_vl_old_male_hair01',0), -(20374,50029,'soga_appearances/accessories/hair/soga_vl_old_male_hair02',0), -(20375,50030,'soga_appearances/accessories/hair/soga_vl_young_female_hair01',0), -(20376,50031,'soga_appearances/accessories/hair/soga_vl_young_female_hair02',0), -(20377,50032,'soga_appearances/accessories/hair/soga_vl_young_female_hair03',0), -(20378,50033,'soga_appearances/accessories/hair/soga_vl_young_male_hair01',0), -(20379,50034,'soga_appearances/accessories/hair/soga_vl_young_male_hair02',0), -(20380,50064,'soga_appearances/ec/npc/soga_vl_child_female01_h1',0), -(20381,50065,'soga_appearances/ec/npc/soga_vl_child_female01_h2',0), -(20382,50066,'soga_appearances/ec/npc/soga_vl_child_male01_h1',0), -(20383,50067,'soga_appearances/ec/npc/soga_vl_child_male01_h2',0), -(20384,50068,'soga_appearances/ec/npc/soga_vl_old_female01_h1',0), -(20385,50069,'soga_appearances/ec/npc/soga_vl_old_female01_h2',0), -(20386,50070,'soga_appearances/ec/npc/soga_vl_old_male01_h0_b1',0), -(20387,50071,'soga_appearances/ec/npc/soga_vl_old_male01_h0_b2',0), -(20388,50072,'soga_appearances/ec/npc/soga_vl_old_male01_h1_b0',0), -(20389,50073,'soga_appearances/ec/npc/soga_vl_old_male01_h1_b1',0), -(20390,50074,'soga_appearances/ec/npc/soga_vl_old_male01_h1_b2',0), -(20391,50075,'soga_appearances/ec/npc/soga_vl_old_male01_h2_b0',0), -(20392,50076,'soga_appearances/ec/npc/soga_vl_old_male01_h2_b1',0), -(20393,50077,'soga_appearances/ec/npc/soga_vl_old_male01_h2_b2',0), -(20394,50078,'soga_appearances/ec/npc/soga_vl_young_female01_h1',0), -(20395,50079,'soga_appearances/ec/npc/soga_vl_young_female01_h2',0), -(20396,50080,'soga_appearances/ec/npc/soga_vl_young_female01_h3',0), -(20397,50081,'soga_appearances/ec/npc/soga_vl_young_female02_h1',0), -(20398,50082,'soga_appearances/ec/npc/soga_vl_young_female02_h2',0), -(20399,50083,'soga_appearances/ec/npc/soga_vl_young_female02_h3',0), -(20400,50084,'soga_appearances/ec/npc/soga_vl_young_male01_h0_b1',0), -(20401,50085,'soga_appearances/ec/npc/soga_vl_young_male01_h0_b2',0), -(20402,50086,'soga_appearances/ec/npc/soga_vl_young_male01_h0_b3',0), -(20403,50087,'soga_appearances/ec/npc/soga_vl_young_male01_h1_b0',0), -(20404,50088,'soga_appearances/ec/npc/soga_vl_young_male01_h1_b1',0), -(20405,50089,'soga_appearances/ec/npc/soga_vl_young_male01_h1_b2',0), -(20406,50090,'soga_appearances/ec/npc/soga_vl_young_male01_h1_b3',0), -(20407,50091,'soga_appearances/ec/npc/soga_vl_young_male01_h2_b0',0), -(20408,50092,'soga_appearances/ec/npc/soga_vl_young_male01_h2_b1',0), -(20409,50093,'soga_appearances/ec/npc/soga_vl_young_male01_h2_b2',0), -(20410,50094,'soga_appearances/ec/npc/soga_vl_young_male01_h2_b3',0), -(20411,50095,'soga_appearances/ec/npc/soga_vl_young_male02_h0_b1',0), -(20412,50096,'soga_appearances/ec/npc/soga_vl_young_male02_h0_b2',0), -(20413,50097,'soga_appearances/ec/npc/soga_vl_young_male02_h0_b3',0), -(20414,50098,'soga_appearances/ec/npc/soga_vl_young_male02_h1_b0',0), -(20415,50099,'soga_appearances/ec/npc/soga_vl_young_male02_h1_b1',0), -(20416,50100,'soga_appearances/ec/npc/soga_vl_young_male02_h1_b2',0), -(20417,50101,'soga_appearances/ec/npc/soga_vl_young_male02_h1_b3',0), -(20418,50102,'soga_appearances/ec/npc/soga_vl_young_male02_h2_b0',0), -(20419,50103,'soga_appearances/ec/npc/soga_vl_young_male02_h2_b1',0), -(20420,50104,'soga_appearances/ec/npc/soga_vl_young_male02_h2_b2',0), -(20421,50105,'soga_appearances/ec/npc/soga_vl_young_male02_h2_b3',0), -(20422,50106,'staticobjects/adv04/end_r143_int_door',0), -(20423,50107,'staticobjects/adv04/statue_dragon',0), -(20424,50108,'staticobjects/adv04/statue_lion',0), -(20425,50109,'staticobjects/adv04/vessel',0), -(20426,50110,'staticobjects/adv04/door_2',0), -(20427,50111,'staticobjects/adv04/small_bag',0), -(20428,50544,'accessories/wearable_items/cloak/exp07/cloak_gothic2_diamond',1096), -(20429,51001,'accessories/wearable_items01/_exp00/brigandine/artifact/low/chest',0), -(20430,51002,'accessories/wearable_items01/_exp00/brigandine/artifact/low/feet',0), -(20431,51003,'accessories/wearable_items01/_exp00/brigandine/artifact/low/forearms',0), -(20432,51004,'accessories/wearable_items01/_exp00/brigandine/artifact/low/hands',0), -(20433,51005,'accessories/wearable_items01/_exp00/brigandine/artifact/low/head',0), -(20434,51006,'accessories/wearable_items01/_exp00/brigandine/artifact/low/legs',0), -(20435,51007,'accessories/wearable_items01/_exp00/brigandine/artifact/low/shoulders',0), -(20436,51008,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/chest',0), -(20437,51009,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/feet',0), -(20438,51010,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/forearms',0), -(20439,51011,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/hands',0), -(20440,51012,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/head',0), -(20441,51013,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/legs',0), -(20442,51014,'accessories/wearable_items01/_exp00/brigandine/brigandine_tint01/shoulders',0), -(20443,51015,'accessories/wearable_items01/_exp00/brigandine/common/high/chest',0), -(20444,51016,'accessories/wearable_items01/_exp00/brigandine/common/high/feet',0), -(20445,51017,'accessories/wearable_items01/_exp00/brigandine/common/high/forearms',0), -(20446,51018,'accessories/wearable_items01/_exp00/brigandine/common/high/hands',0), -(20447,51019,'accessories/wearable_items01/_exp00/brigandine/common/high/head',0), -(20448,51020,'accessories/wearable_items01/_exp00/brigandine/common/high/legs',0), -(20449,51021,'accessories/wearable_items01/_exp00/brigandine/common/high/shoulders',0), -(20450,51022,'accessories/wearable_items01/_exp00/brigandine/common/low/chest',0), -(20451,51023,'accessories/wearable_items01/_exp00/brigandine/common/low/feet',0), -(20452,51024,'accessories/wearable_items01/_exp00/brigandine/common/low/forearms',0), -(20453,51025,'accessories/wearable_items01/_exp00/brigandine/common/low/hands',0), -(20454,51026,'accessories/wearable_items01/_exp00/brigandine/common/low/head',0), -(20455,51027,'accessories/wearable_items01/_exp00/brigandine/common/low/legs',0), -(20456,51028,'accessories/wearable_items01/_exp00/brigandine/common/low/shoulders',0), -(20457,51029,'accessories/wearable_items01/_exp00/brigandine/common/low/skirt',0), -(20458,51030,'accessories/wearable_items01/_exp00/brigandine/common/medium/chest',0), -(20459,51031,'accessories/wearable_items01/_exp00/brigandine/common/medium/feet',0), -(20460,51032,'accessories/wearable_items01/_exp00/brigandine/common/medium/forearms',0), -(20461,51033,'accessories/wearable_items01/_exp00/brigandine/common/medium/hands',0), -(20462,51034,'accessories/wearable_items01/_exp00/brigandine/common/medium/head',0), -(20463,51035,'accessories/wearable_items01/_exp00/brigandine/common/medium/legs',0), -(20464,51036,'accessories/wearable_items01/_exp00/brigandine/common/medium/shoulders',0), -(20465,51037,'accessories/wearable_items01/_exp00/brigandine/rare/high/chest',0), -(20466,51038,'accessories/wearable_items01/_exp00/brigandine/rare/high/feet',0), -(20467,51039,'accessories/wearable_items01/_exp00/brigandine/rare/high/forearms',0), -(20468,51040,'accessories/wearable_items01/_exp00/brigandine/rare/high/hands',0), -(20469,51041,'accessories/wearable_items01/_exp00/brigandine/rare/high/head',0), -(20470,51042,'accessories/wearable_items01/_exp00/brigandine/rare/high/legs',0), -(20471,51043,'accessories/wearable_items01/_exp00/brigandine/rare/high/shoulders',0), -(20472,51044,'accessories/wearable_items01/_exp00/brigandine/rare/low/chest',0), -(20473,51045,'accessories/wearable_items01/_exp00/brigandine/rare/low/feet',0), -(20474,51046,'accessories/wearable_items01/_exp00/brigandine/rare/low/forearms',0), -(20475,51047,'accessories/wearable_items01/_exp00/brigandine/rare/low/hands',0), -(20476,51048,'accessories/wearable_items01/_exp00/brigandine/rare/low/head',0), -(20477,51049,'accessories/wearable_items01/_exp00/brigandine/rare/low/legs',0), -(20478,51050,'accessories/wearable_items01/_exp00/brigandine/rare/low/shoulders',0), -(20479,51051,'accessories/wearable_items01/_exp00/brigandine/rare/medium/chest',0), -(20480,51052,'accessories/wearable_items01/_exp00/brigandine/rare/medium/feet',0), -(20481,51053,'accessories/wearable_items01/_exp00/brigandine/rare/medium/forearms',0), -(20482,51054,'accessories/wearable_items01/_exp00/brigandine/rare/medium/hands',0), -(20483,51055,'accessories/wearable_items01/_exp00/brigandine/rare/medium/head',0), -(20484,51056,'accessories/wearable_items01/_exp00/brigandine/rare/medium/legs',0), -(20485,51057,'accessories/wearable_items01/_exp00/brigandine/rare/medium/shoulders',0), -(20486,51058,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/chest',0), -(20487,51059,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/feet',0), -(20488,51060,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/forearms',0), -(20489,51061,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/hands',0), -(20490,51062,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/head',0), -(20491,51063,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/legs',0), -(20492,51064,'accessories/wearable_items01/_exp00/brigandine/uncommon/high/shoulders',0), -(20493,51065,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/chest',0), -(20494,51066,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/feet',0), -(20495,51067,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/forearms',0), -(20496,51068,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/hands',0), -(20497,51069,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/head',0), -(20498,51070,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/legs',0), -(20499,51071,'accessories/wearable_items01/_exp00/brigandine/uncommon/low/shoulders',0), -(20500,51072,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/chest',0), -(20501,51073,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/feet',0), -(20502,51074,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/forearms',0), -(20503,51075,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/hands',0), -(20504,51076,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/head',0), -(20505,51077,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/legs',0), -(20506,51078,'accessories/wearable_items01/_exp00/brigandine/uncommon/medium/shoulders',0), -(20507,51079,'accessories/wearable_items01/_exp00/chain/chain_tint01/chest',0), -(20508,51080,'accessories/wearable_items01/_exp00/chain/chain_tint01/feet',0), -(20509,51081,'accessories/wearable_items01/_exp00/chain/chain_tint01/forearms',0), -(20510,51082,'accessories/wearable_items01/_exp00/chain/chain_tint01/hands',0), -(20511,51083,'accessories/wearable_items01/_exp00/chain/chain_tint01/head',0), -(20512,51084,'accessories/wearable_items01/_exp00/chain/chain_tint01/legs',0), -(20513,51085,'accessories/wearable_items01/_exp00/chain/chain_tint01/legs_noskirt',0), -(20514,51086,'accessories/wearable_items01/_exp00/chain/chain_tint01/shoulders',0), -(20515,51087,'accessories/wearable_items01/_exp00/chain/chain_tint01/skirt',0), -(20516,51088,'accessories/wearable_items01/_exp00/chain/common/high/chest',0), -(20517,51089,'accessories/wearable_items01/_exp00/chain/common/high/feet',0), -(20518,51090,'accessories/wearable_items01/_exp00/chain/common/high/forearms',0), -(20519,51091,'accessories/wearable_items01/_exp00/chain/common/high/hands',0), -(20520,51092,'accessories/wearable_items01/_exp00/chain/common/high/head',0), -(20521,51093,'accessories/wearable_items01/_exp00/chain/common/high/legs',0), -(20522,51094,'accessories/wearable_items01/_exp00/chain/common/high/shoulders',0), -(20523,51095,'accessories/wearable_items01/_exp00/chain/common/low/chest',0), -(20524,51096,'accessories/wearable_items01/_exp00/chain/common/low/feet',0), -(20525,51097,'accessories/wearable_items01/_exp00/chain/common/low/forearms',0), -(20526,51098,'accessories/wearable_items01/_exp00/chain/common/low/hands',0), -(20527,51099,'accessories/wearable_items01/_exp00/chain/common/low/head',0), -(20528,51100,'accessories/wearable_items01/_exp00/chain/common/low/legs',0), -(20529,51101,'accessories/wearable_items01/_exp00/chain/common/low/legs_noskirt',0), -(20530,51102,'accessories/wearable_items01/_exp00/chain/common/low/shoulders',0), -(20531,51103,'accessories/wearable_items01/_exp00/chain/common/low/skirt',0), -(20532,51104,'accessories/wearable_items01/_exp00/chain/common/medium/chest',0), -(20533,51105,'accessories/wearable_items01/_exp00/chain/common/medium/feet',0), -(20534,51106,'accessories/wearable_items01/_exp00/chain/common/medium/forearms',0), -(20535,51107,'accessories/wearable_items01/_exp00/chain/common/medium/hands',0), -(20536,51108,'accessories/wearable_items01/_exp00/chain/common/medium/head',0), -(20537,51109,'accessories/wearable_items01/_exp00/chain/common/medium/legs',0), -(20538,51110,'accessories/wearable_items01/_exp00/chain/common/medium/shoulders',0), -(20539,51111,'accessories/wearable_items01/_exp00/chain/plain/low/chest',0), -(20540,51112,'accessories/wearable_items01/_exp00/chain/plain/low/feet',0), -(20541,51113,'accessories/wearable_items01/_exp00/chain/plain/low/forearms',0), -(20542,51114,'accessories/wearable_items01/_exp00/chain/plain/low/hands',0), -(20543,51115,'accessories/wearable_items01/_exp00/chain/plain/low/head',0), -(20544,51116,'accessories/wearable_items01/_exp00/chain/plain/low/legs',0), -(20545,51117,'accessories/wearable_items01/_exp00/chain/plain/low/legs_noskirt',0), -(20546,51118,'accessories/wearable_items01/_exp00/chain/plain/low/shoulders',0), -(20547,51119,'accessories/wearable_items01/_exp00/chain/plain/low/skirt',0), -(20548,51120,'accessories/wearable_items01/_exp00/chain/uncommon/low/chest',0), -(20549,51121,'accessories/wearable_items01/_exp00/chain/uncommon/low/feet',0), -(20550,51122,'accessories/wearable_items01/_exp00/chain/uncommon/low/forearms',0), -(20551,51123,'accessories/wearable_items01/_exp00/chain/uncommon/low/hands',0), -(20552,51124,'accessories/wearable_items01/_exp00/chain/uncommon/low/head',0), -(20553,51125,'accessories/wearable_items01/_exp00/chain/uncommon/low/legs',0), -(20554,51126,'accessories/wearable_items01/_exp00/chain/uncommon/low/shoulders',0), -(20555,51127,'accessories/wearable_items01/_exp00/chain/uncommon/medium/chest',0), -(20556,51128,'accessories/wearable_items01/_exp00/chain/uncommon/medium/feet',0), -(20557,51129,'accessories/wearable_items01/_exp00/chain/uncommon/medium/forearms',0), -(20558,51130,'accessories/wearable_items01/_exp00/chain/uncommon/medium/hands',0), -(20559,51131,'accessories/wearable_items01/_exp00/chain/uncommon/medium/head',0), -(20560,51132,'accessories/wearable_items01/_exp00/chain/uncommon/medium/legs',0), -(20561,51133,'accessories/wearable_items01/_exp00/chain/uncommon/medium/shoulders',0), -(20562,51134,'accessories/wearable_items01/_exp00/chain/uncommon/medium/skirt',0), -(20563,51135,'accessories/wearable_items01/_exp00/character_create/chest',0), -(20564,51136,'accessories/wearable_items01/_exp00/christmas_hats/santa_hat/head',0), -(20565,51137,'accessories/wearable_items01/_exp00/christmas_hats/santa_hat_02/head',0), -(20566,51148,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_di_01',0), -(20567,51149,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_dt_01',0), -(20568,51150,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_dt_01_dark_lord',0), -(20569,51151,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_sq_01',0), -(20570,51152,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_sq_01_flames',0), -(20571,51153,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_sq_01_unrest_vapor',0), -(20572,51154,'accessories/wearable_items01/_exp00/cloak/exp03/cloak_sq_02',0), -(20573,51155,'accessories/wearable_items01/_exp00/clothing/common/high/arms',0), -(20574,51156,'accessories/wearable_items01/_exp00/clothing/common/high/chest',0), -(20575,51157,'accessories/wearable_items01/_exp00/clothing/common/high/legs',0), -(20576,51158,'accessories/wearable_items01/_exp00/clothing/common/low/arms',0), -(20577,51159,'accessories/wearable_items01/_exp00/clothing/common/low/chest',0), -(20578,51160,'accessories/wearable_items01/_exp00/clothing/common/low/legs',0), -(20579,51161,'accessories/wearable_items01/_exp00/clothing/common/medium/arms',0), -(20580,51162,'accessories/wearable_items01/_exp00/clothing/common/medium/chest',0), -(20581,51163,'accessories/wearable_items01/_exp00/clothing/common/medium/legs',0), -(20582,51164,'accessories/wearable_items01/_exp00/clothing/common_tint01/chest',0), -(20583,51165,'accessories/wearable_items01/_exp00/clothing/common_tint01/legs',0), -(20584,51166,'accessories/wearable_items01/_exp00/clothing/common_tint01/shoulders',0), -(20585,51167,'accessories/wearable_items01/_exp00/clothing/uncommon/high/arms',0), -(20586,51168,'accessories/wearable_items01/_exp00/clothing/uncommon/high/chest',0), -(20587,51169,'accessories/wearable_items01/_exp00/clothing/uncommon/high/legs',0), -(20588,51170,'accessories/wearable_items01/_exp00/ghost/ghost_leather/chest',0), -(20589,51171,'accessories/wearable_items01/_exp00/ghost/ghost_leather/feet',0), -(20590,51172,'accessories/wearable_items01/_exp00/ghost/ghost_leather/forearms',0), -(20591,51173,'accessories/wearable_items01/_exp00/ghost/ghost_leather/hands',0), -(20592,51174,'accessories/wearable_items01/_exp00/ghost/ghost_leather/head',0), -(20593,51175,'accessories/wearable_items01/_exp00/ghost/ghost_leather/legs',0), -(20594,51176,'accessories/wearable_items01/_exp00/ghost/ghost_leather/shoulders',0), -(20595,51177,'accessories/wearable_items01/_exp00/ghost/ghost_leather/skirt',0), -(20596,51178,'accessories/wearable_items01/_exp00/ghost/ghost_mage/arms',0), -(20597,51179,'accessories/wearable_items01/_exp00/ghost/ghost_mage/chest',0), -(20598,51180,'accessories/wearable_items01/_exp00/ghost/ghost_mage/skirt',0), -(20599,51181,'accessories/wearable_items01/_exp00/ghost/ghost_plate/chest',0), -(20600,51182,'accessories/wearable_items01/_exp00/ghost/ghost_plate/feet',0), -(20601,51183,'accessories/wearable_items01/_exp00/ghost/ghost_plate/forearms',0), -(20602,51184,'accessories/wearable_items01/_exp00/ghost/ghost_plate/hands',0), -(20603,51185,'accessories/wearable_items01/_exp00/ghost/ghost_plate/head',0), -(20604,51186,'accessories/wearable_items01/_exp00/ghost/ghost_plate/legs',0), -(20605,51187,'accessories/wearable_items01/_exp00/ghost/ghost_plate/shoulders',0), -(20606,51188,'accessories/wearable_items01/_exp00/ghost/ghost_robes/chest',0), -(20607,51189,'accessories/wearable_items01/_exp00/ghost/ghost_robes/hood',0), -(20608,51190,'accessories/wearable_items01/_exp00/ghost/ghost_robes/pants',0), -(20609,51191,'accessories/wearable_items01/_exp00/ghost/ghost_robes/skirt',0), -(20610,51192,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/chest',0), -(20611,51193,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/feet',0), -(20612,51194,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/forearms',0), -(20613,51195,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/hands',0), -(20614,51196,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/head',0), -(20615,51197,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/left',0), -(20616,51198,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/legs',0), -(20617,51199,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/right',0), -(20618,51200,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/shoulders',0), -(20619,51201,'accessories/wearable_items01/_exp00/ghost/ghost_vanguard/skirt',0), -(20620,51202,'accessories/wearable_items01/_exp00/halloween_masks/amygdalan_mask/head',0), -(20621,51203,'accessories/wearable_items01/_exp00/halloween_masks/antonia_mask/head',0), -(20622,51204,'accessories/wearable_items01/_exp00/halloween_masks/arrow_mask/head',0), -(20623,51205,'accessories/wearable_items01/_exp00/halloween_masks/cat_mask/head',0), -(20624,51206,'accessories/wearable_items01/_exp00/halloween_masks/goblin_mask/head',0), -(20625,51207,'accessories/wearable_items01/_exp00/halloween_masks/hatchet_mask/head',0), -(20626,51208,'accessories/wearable_items01/_exp00/halloween_masks/lucan_mask/head',0), -(20627,51209,'accessories/wearable_items01/_exp00/halloween_masks/mask_mask/head',0), -(20628,51210,'accessories/wearable_items01/_exp00/halloween_masks/nightblood_mask/head',0), -(20629,51211,'accessories/wearable_items01/_exp00/halloween_masks/scarecrow_mask/head',0), -(20630,51212,'accessories/wearable_items01/_exp00/halloween_masks/skeleton_mask/head',0), -(20631,51213,'accessories/wearable_items01/_exp00/heavy_chain/plain/chest',0), -(20632,51214,'accessories/wearable_items01/_exp00/heavy_chain/plain/feet',0), -(20633,51215,'accessories/wearable_items01/_exp00/heavy_chain/plain/forearms',0), -(20634,51216,'accessories/wearable_items01/_exp00/heavy_chain/plain/hands',0), -(20635,51217,'accessories/wearable_items01/_exp00/heavy_chain/plain/head',0), -(20636,51218,'accessories/wearable_items01/_exp00/heavy_chain/plain/legs',0), -(20637,51219,'accessories/wearable_items01/_exp00/heavy_chain/plain/legs_noskirt',0), -(20638,51220,'accessories/wearable_items01/_exp00/heavy_chain/plain/pauldrons',0), -(20639,51221,'accessories/wearable_items01/_exp00/heavy_chain/plain/shoulders',0), -(20640,51222,'accessories/wearable_items01/_exp00/heavy_chain/plain/shoulders_no_pauldrons',0), -(20641,51223,'accessories/wearable_items01/_exp00/heavy_chain/plain/skirt',0), -(20642,51224,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/chest',0), -(20643,51225,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/feet',0), -(20644,51226,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/forearms',0), -(20645,51227,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/hands',0), -(20646,51228,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/legs',0), -(20647,51229,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_commoner_plain/shoulders',0), -(20648,51230,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/chest',0), -(20649,51231,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/feet',0), -(20650,51232,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/forearms',0), -(20651,51233,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/hands',0), -(20652,51234,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/head',0), -(20653,51235,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/legs',0), -(20654,51236,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/legs_noskirt',0), -(20655,51237,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/shoulders',0), -(20656,51238,'accessories/wearable_items01/_exp00/heavy_cloth/heavy_cloth_dervish_plain/skirt',0), -(20657,51239,'accessories/wearable_items01/_exp00/heavy_plate/plain/chest',0), -(20658,51240,'accessories/wearable_items01/_exp00/heavy_plate/plain/feet',0), -(20659,51241,'accessories/wearable_items01/_exp00/heavy_plate/plain/forearms',0), -(20660,51242,'accessories/wearable_items01/_exp00/heavy_plate/plain/hands',0), -(20661,51243,'accessories/wearable_items01/_exp00/heavy_plate/plain/head',0), -(20662,51244,'accessories/wearable_items01/_exp00/heavy_plate/plain/left',0), -(20663,51245,'accessories/wearable_items01/_exp00/heavy_plate/plain/legs',0), -(20664,51246,'accessories/wearable_items01/_exp00/heavy_plate/plain/legs_noskirt',0), -(20665,51247,'accessories/wearable_items01/_exp00/heavy_plate/plain/right',0), -(20666,51248,'accessories/wearable_items01/_exp00/heavy_plate/plain/shoulders',0), -(20667,51249,'accessories/wearable_items01/_exp00/heavy_plate/plain/shoulders_nopauldrons',0), -(20668,51250,'accessories/wearable_items01/_exp00/heavy_plate/plain/skirt',0), -(20669,51251,'accessories/wearable_items01/_exp00/heavy_plate/plain/upperchest',0), -(20670,51252,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/chest',0), -(20671,51253,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/feet',0), -(20672,51254,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/forearms',0), -(20673,51255,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/hands',0), -(20674,51256,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/head',0), -(20675,51257,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/legs',0), -(20676,51258,'accessories/wearable_items01/_exp00/journeyman/journeyman_leather/shoulders',0), -(20677,51259,'accessories/wearable_items01/_exp00/leather/artifact/high/chest',0), -(20678,51260,'accessories/wearable_items01/_exp00/leather/artifact/high/feet',0), -(20679,51261,'accessories/wearable_items01/_exp00/leather/artifact/high/forearms',0), -(20680,51262,'accessories/wearable_items01/_exp00/leather/artifact/high/hands',0), -(20681,51263,'accessories/wearable_items01/_exp00/leather/artifact/high/head',0), -(20682,51264,'accessories/wearable_items01/_exp00/leather/artifact/high/legs',0), -(20683,51265,'accessories/wearable_items01/_exp00/leather/artifact/high/shoulders',0), -(20684,51266,'accessories/wearable_items01/_exp00/leather/artifact/low/chest',0), -(20685,51267,'accessories/wearable_items01/_exp00/leather/artifact/low/feet',0), -(20686,51268,'accessories/wearable_items01/_exp00/leather/artifact/low/forearms',0), -(20687,51269,'accessories/wearable_items01/_exp00/leather/artifact/low/hands',0), -(20688,51270,'accessories/wearable_items01/_exp00/leather/artifact/low/head',0), -(20689,51271,'accessories/wearable_items01/_exp00/leather/artifact/low/legs',0), -(20690,51272,'accessories/wearable_items01/_exp00/leather/artifact/low/legs_noskirt',0), -(20691,51273,'accessories/wearable_items01/_exp00/leather/artifact/low/shoulders',0), -(20692,51274,'accessories/wearable_items01/_exp00/leather/artifact/low/skirt',0), -(20693,51275,'accessories/wearable_items01/_exp00/leather/artifact/medium/chest',0), -(20694,51276,'accessories/wearable_items01/_exp00/leather/artifact/medium/feet',0), -(20695,51277,'accessories/wearable_items01/_exp00/leather/artifact/medium/forearms',0), -(20696,51278,'accessories/wearable_items01/_exp00/leather/artifact/medium/hands',0), -(20697,51279,'accessories/wearable_items01/_exp00/leather/artifact/medium/head',0), -(20698,51280,'accessories/wearable_items01/_exp00/leather/artifact/medium/legs',0), -(20699,51281,'accessories/wearable_items01/_exp00/leather/artifact/medium/legs_noskirt',0), -(20700,51282,'accessories/wearable_items01/_exp00/leather/artifact/medium/shoulders',0), -(20701,51283,'accessories/wearable_items01/_exp00/leather/artifact/medium/skirt',0), -(20702,51284,'accessories/wearable_items01/_exp00/leather/common/high/chest',0), -(20703,51285,'accessories/wearable_items01/_exp00/leather/common/high/feet',0), -(20704,51286,'accessories/wearable_items01/_exp00/leather/common/high/forearms',0), -(20705,51287,'accessories/wearable_items01/_exp00/leather/common/high/hands',0), -(20706,51288,'accessories/wearable_items01/_exp00/leather/common/high/head',0), -(20707,51289,'accessories/wearable_items01/_exp00/leather/common/high/legs',0), -(20708,51290,'accessories/wearable_items01/_exp00/leather/common/high/legs_noskirt',0), -(20709,51291,'accessories/wearable_items01/_exp00/leather/common/high/shoulders',0), -(20710,51292,'accessories/wearable_items01/_exp00/leather/common/high/skirt',0), -(20711,51293,'accessories/wearable_items01/_exp00/leather/common/low/chest',0), -(20712,51294,'accessories/wearable_items01/_exp00/leather/common/low/feet',0), -(20713,51295,'accessories/wearable_items01/_exp00/leather/common/low/forearms',0), -(20714,51296,'accessories/wearable_items01/_exp00/leather/common/low/hands',0), -(20715,51297,'accessories/wearable_items01/_exp00/leather/common/low/head',0), -(20716,51298,'accessories/wearable_items01/_exp00/leather/common/low/legs',0), -(20717,51299,'accessories/wearable_items01/_exp00/leather/common/low/legs_noskirt',0), -(20718,51300,'accessories/wearable_items01/_exp00/leather/common/low/shoulders',0), -(20719,51301,'accessories/wearable_items01/_exp00/leather/common/low/skirt',0), -(20720,51302,'accessories/wearable_items01/_exp00/leather/common/medium/chest',0), -(20721,51303,'accessories/wearable_items01/_exp00/leather/common/medium/feet',0), -(20722,51304,'accessories/wearable_items01/_exp00/leather/common/medium/forearms',0), -(20723,51305,'accessories/wearable_items01/_exp00/leather/common/medium/hands',0), -(20724,51306,'accessories/wearable_items01/_exp00/leather/common/medium/head',0), -(20725,51307,'accessories/wearable_items01/_exp00/leather/common/medium/legs',0), -(20726,51308,'accessories/wearable_items01/_exp00/leather/common/medium/legs_noskirt',0), -(20727,51309,'accessories/wearable_items01/_exp00/leather/common/medium/shoulders',0), -(20728,51310,'accessories/wearable_items01/_exp00/leather/common/medium/skirt',0), -(20729,51311,'accessories/wearable_items01/_exp00/leather/leather_tint01/chest',0), -(20730,51312,'accessories/wearable_items01/_exp00/leather/leather_tint01/feet',0), -(20731,51313,'accessories/wearable_items01/_exp00/leather/leather_tint01/forearms',0), -(20732,51314,'accessories/wearable_items01/_exp00/leather/leather_tint01/hands',0), -(20733,51315,'accessories/wearable_items01/_exp00/leather/leather_tint01/head',0), -(20734,51316,'accessories/wearable_items01/_exp00/leather/leather_tint01/legs',0), -(20735,51317,'accessories/wearable_items01/_exp00/leather/leather_tint01/legs_noskirt',0), -(20736,51318,'accessories/wearable_items01/_exp00/leather/leather_tint01/shoulders',0), -(20737,51319,'accessories/wearable_items01/_exp00/leather/leather_tint01/skirt',0), -(20738,51320,'accessories/wearable_items01/_exp00/leather/plain/stitched/chest',0), -(20739,51321,'accessories/wearable_items01/_exp00/leather/plain/stitched/feet',0), -(20740,51322,'accessories/wearable_items01/_exp00/leather/plain/stitched/forearms',0), -(20741,51323,'accessories/wearable_items01/_exp00/leather/plain/stitched/hands',0), -(20742,51324,'accessories/wearable_items01/_exp00/leather/plain/stitched/head',0), -(20743,51325,'accessories/wearable_items01/_exp00/leather/plain/stitched/legs',0), -(20744,51326,'accessories/wearable_items01/_exp00/leather/plain/stitched/shoulders',0), -(20745,51327,'accessories/wearable_items01/_exp00/leather/plain/stitched/skirt',0), -(20746,51328,'accessories/wearable_items01/_exp00/leather/rare/high/chest',0), -(20747,51329,'accessories/wearable_items01/_exp00/leather/rare/high/feet',0), -(20748,51330,'accessories/wearable_items01/_exp00/leather/rare/high/forearms',0), -(20749,51331,'accessories/wearable_items01/_exp00/leather/rare/high/hands',0), -(20750,51332,'accessories/wearable_items01/_exp00/leather/rare/high/head',0), -(20751,51333,'accessories/wearable_items01/_exp00/leather/rare/high/legs',0), -(20752,51334,'accessories/wearable_items01/_exp00/leather/rare/high/shoulders',0), -(20753,51335,'accessories/wearable_items01/_exp00/leather/rare/low/chest',0), -(20754,51336,'accessories/wearable_items01/_exp00/leather/rare/low/feet',0), -(20755,51337,'accessories/wearable_items01/_exp00/leather/rare/low/forearms',0), -(20756,51338,'accessories/wearable_items01/_exp00/leather/rare/low/hands',0), -(20757,51339,'accessories/wearable_items01/_exp00/leather/rare/low/head',0), -(20758,51340,'accessories/wearable_items01/_exp00/leather/rare/low/legs',0), -(20759,51341,'accessories/wearable_items01/_exp00/leather/rare/low/shoulders',0), -(20760,51342,'accessories/wearable_items01/_exp00/leather/rare/medium/chest',0), -(20761,51343,'accessories/wearable_items01/_exp00/leather/rare/medium/feet',0), -(20762,51344,'accessories/wearable_items01/_exp00/leather/rare/medium/forearms',0), -(20763,51345,'accessories/wearable_items01/_exp00/leather/rare/medium/hands',0), -(20764,51346,'accessories/wearable_items01/_exp00/leather/rare/medium/head',0), -(20765,51347,'accessories/wearable_items01/_exp00/leather/rare/medium/legs',0), -(20766,51348,'accessories/wearable_items01/_exp00/leather/rare/medium/shoulders',0), -(20767,51349,'accessories/wearable_items01/_exp00/leather/uncommon/high/chest',0), -(20768,51350,'accessories/wearable_items01/_exp00/leather/uncommon/high/feet',0), -(20769,51351,'accessories/wearable_items01/_exp00/leather/uncommon/high/forearms',0), -(20770,51352,'accessories/wearable_items01/_exp00/leather/uncommon/high/hands',0), -(20771,51353,'accessories/wearable_items01/_exp00/leather/uncommon/high/head',0), -(20772,51354,'accessories/wearable_items01/_exp00/leather/uncommon/high/legs',0), -(20773,51355,'accessories/wearable_items01/_exp00/leather/uncommon/high/legs_noskirt',0), -(20774,51356,'accessories/wearable_items01/_exp00/leather/uncommon/high/shoulders',0), -(20775,51357,'accessories/wearable_items01/_exp00/leather/uncommon/high/skirt',0), -(20776,51358,'accessories/wearable_items01/_exp00/leather/uncommon/low/chest',0), -(20777,51359,'accessories/wearable_items01/_exp00/leather/uncommon/low/feet',0), -(20778,51360,'accessories/wearable_items01/_exp00/leather/uncommon/low/forearms',0), -(20779,51361,'accessories/wearable_items01/_exp00/leather/uncommon/low/hands',0), -(20780,51362,'accessories/wearable_items01/_exp00/leather/uncommon/low/head',0), -(20781,51363,'accessories/wearable_items01/_exp00/leather/uncommon/low/legs',0), -(20782,51364,'accessories/wearable_items01/_exp00/leather/uncommon/low/legs_noskirt',0), -(20783,51365,'accessories/wearable_items01/_exp00/leather/uncommon/low/shoulders',0), -(20784,51366,'accessories/wearable_items01/_exp00/leather/uncommon/low/skirt',0), -(20785,51367,'accessories/wearable_items01/_exp00/leather/uncommon/medium/chest',0), -(20786,51368,'accessories/wearable_items01/_exp00/leather/uncommon/medium/feet',0), -(20787,51369,'accessories/wearable_items01/_exp00/leather/uncommon/medium/forearms',0), -(20788,51370,'accessories/wearable_items01/_exp00/leather/uncommon/medium/hands',0), -(20789,51371,'accessories/wearable_items01/_exp00/leather/uncommon/medium/head',0), -(20790,51372,'accessories/wearable_items01/_exp00/leather/uncommon/medium/legs',0), -(20791,51373,'accessories/wearable_items01/_exp00/leather/uncommon/medium/legs_noskirt',0), -(20792,51374,'accessories/wearable_items01/_exp00/leather/uncommon/medium/shoulders',0), -(20793,51375,'accessories/wearable_items01/_exp00/leather/uncommon/medium/skirt',0), -(20794,51376,'accessories/wearable_items01/_exp00/magus/artifact/high/arms',0), -(20795,51377,'accessories/wearable_items01/_exp00/magus/artifact/high/chest',0), -(20796,51378,'accessories/wearable_items01/_exp00/magus/artifact/high/skirt',0), -(20797,51379,'accessories/wearable_items01/_exp00/magus/artifact/low/chest',0), -(20798,51380,'accessories/wearable_items01/_exp00/magus/artifact/low/hood',0), -(20799,51381,'accessories/wearable_items01/_exp00/magus/artifact/low/pants',0), -(20800,51382,'accessories/wearable_items01/_exp00/magus/artifact/low/skirt',0), -(20801,51383,'accessories/wearable_items01/_exp00/magus/artifact/medium/chest',0), -(20802,51384,'accessories/wearable_items01/_exp00/magus/artifact/medium/hood',0), -(20803,51385,'accessories/wearable_items01/_exp00/magus/artifact/medium/pants',0), -(20804,51386,'accessories/wearable_items01/_exp00/magus/artifact/medium/skirt',0), -(20805,51387,'accessories/wearable_items01/_exp00/magus/common/high/chest',0), -(20806,51388,'accessories/wearable_items01/_exp00/magus/common/high/hood',0), -(20807,51389,'accessories/wearable_items01/_exp00/magus/common/high/pants',0), -(20808,51390,'accessories/wearable_items01/_exp00/magus/common/high/skirt',0), -(20809,51391,'accessories/wearable_items01/_exp00/magus/common/low/chest',0), -(20810,51392,'accessories/wearable_items01/_exp00/magus/common/low/hood',0), -(20811,51393,'accessories/wearable_items01/_exp00/magus/common/low/pants',0), -(20812,51394,'accessories/wearable_items01/_exp00/magus/common/low/skirt',0), -(20813,51395,'accessories/wearable_items01/_exp00/magus/common/medium/chest',0), -(20814,51396,'accessories/wearable_items01/_exp00/magus/common/medium/hood',0), -(20815,51397,'accessories/wearable_items01/_exp00/magus/common/medium/pants',0), -(20816,51398,'accessories/wearable_items01/_exp00/magus/common/medium/skirt',0), -(20817,51399,'accessories/wearable_items01/_exp00/magus/rare/high/chest',0), -(20818,51400,'accessories/wearable_items01/_exp00/magus/rare/high/hood',0), -(20819,51401,'accessories/wearable_items01/_exp00/magus/rare/high/pants',0), -(20820,51402,'accessories/wearable_items01/_exp00/magus/rare/high/skirt',0), -(20821,51403,'accessories/wearable_items01/_exp00/magus/rare/low/chest',0), -(20822,51404,'accessories/wearable_items01/_exp00/magus/rare/low/hood',0), -(20823,51405,'accessories/wearable_items01/_exp00/magus/rare/low/pants',0), -(20824,51406,'accessories/wearable_items01/_exp00/magus/rare/low/skirt',0), -(20825,51407,'accessories/wearable_items01/_exp00/magus/rare/medium/chest',0), -(20826,51408,'accessories/wearable_items01/_exp00/magus/rare/medium/pants',0), -(20827,51409,'accessories/wearable_items01/_exp00/magus/rare/medium/shoulders',0), -(20828,51410,'accessories/wearable_items01/_exp00/magus/robes/dragon_ornate/chest',0), -(20829,51411,'accessories/wearable_items01/_exp00/magus/robes/dragon_ornate/hood',0), -(20830,51412,'accessories/wearable_items01/_exp00/magus/robes/dragon_ornate/pants',0), -(20831,51413,'accessories/wearable_items01/_exp00/magus/robes/dragon_ornate/skirt',0), -(20832,51414,'accessories/wearable_items01/_exp00/magus/robes/fancy_goldburgundy/chest',0), -(20833,51415,'accessories/wearable_items01/_exp00/magus/robes/fancy_goldburgundy/hood',0), -(20834,51416,'accessories/wearable_items01/_exp00/magus/robes/fancy_goldburgundy/pants',0), -(20835,51417,'accessories/wearable_items01/_exp00/magus/robes/fancy_goldburgundy/skirt',0), -(20836,51418,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted/chest',0), -(20837,51419,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted/hood',0), -(20838,51420,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted/pants',0), -(20839,51421,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted/skirt',0), -(20840,51422,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted_patches/chest',0), -(20841,51423,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted_patches/hood',0), -(20842,51424,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted_patches/pants',0), -(20843,51425,'accessories/wearable_items01/_exp00/magus/robes/plain_quilted_patches/skirt',0), -(20844,51426,'accessories/wearable_items01/_exp00/magus/robes/robe_newbie_tint01/chest',0), -(20845,51427,'accessories/wearable_items01/_exp00/magus/robes/robe_newbie_tint01/hood',0), -(20846,51428,'accessories/wearable_items01/_exp00/magus/robes/robe_newbie_tint01/pants',0), -(20847,51429,'accessories/wearable_items01/_exp00/magus/robes/robe_newbie_tint01/skirt',0), -(20848,51430,'accessories/wearable_items01/_exp00/magus/uncommon/high/chest',0), -(20849,51431,'accessories/wearable_items01/_exp00/magus/uncommon/high/hood',0), -(20850,51432,'accessories/wearable_items01/_exp00/magus/uncommon/high/pants',0), -(20851,51433,'accessories/wearable_items01/_exp00/magus/uncommon/high/skirt',0), -(20852,51434,'accessories/wearable_items01/_exp00/magus/uncommon/low/chest',0), -(20853,51435,'accessories/wearable_items01/_exp00/magus/uncommon/low/forearms',0), -(20854,51436,'accessories/wearable_items01/_exp00/magus/uncommon/low/legs',0), -(20855,51437,'accessories/wearable_items01/_exp00/magus/uncommon/low/skirt',0), -(20856,51438,'accessories/wearable_items01/_exp00/magus/uncommon/medium/chest',0), -(20857,51439,'accessories/wearable_items01/_exp00/magus/uncommon/medium/hood',0), -(20858,51440,'accessories/wearable_items01/_exp00/magus/uncommon/medium/pants',0), -(20859,51441,'accessories/wearable_items01/_exp00/magus/uncommon/medium/skirt',0), -(20860,51442,'accessories/wearable_items01/_exp00/monk/monk_plain/chest',0), -(20861,51443,'accessories/wearable_items01/_exp00/monk/monk_plain/feet',0), -(20862,51444,'accessories/wearable_items01/_exp00/monk/monk_plain/forearms',0), -(20863,51445,'accessories/wearable_items01/_exp00/monk/monk_plain/head',0), -(20864,51446,'accessories/wearable_items01/_exp00/monk/monk_plain/legs',0), -(20865,51447,'accessories/wearable_items01/_exp00/monk/monk_plain/shoulders',0), -(20866,51448,'accessories/wearable_items01/_exp00/npcskirts/antonia_skirt',0), -(20867,51449,'accessories/wearable_items01/_exp00/npcskirts/lucan_skirt',0), -(20868,51450,'accessories/wearable_items01/_exp00/pauldrons/evil01/pauldron_evil01',0), -(20869,51451,'accessories/wearable_items01/_exp00/pauldrons/evil01/shoulders_pauldron_evil01',0), -(20870,51452,'accessories/wearable_items01/_exp00/pauldrons/evil02/pauldron_evil02',0), -(20871,51453,'accessories/wearable_items01/_exp00/pauldrons/evil02/shoulders_pauldron_evil02',0), -(20872,51454,'accessories/wearable_items01/_exp00/plate/common/high/chest',0), -(20873,51455,'accessories/wearable_items01/_exp00/plate/common/high/feet',0), -(20874,51456,'accessories/wearable_items01/_exp00/plate/common/high/forearms',0), -(20875,51457,'accessories/wearable_items01/_exp00/plate/common/high/hands',0), -(20876,51458,'accessories/wearable_items01/_exp00/plate/common/high/head',0), -(20877,51459,'accessories/wearable_items01/_exp00/plate/common/high/legs',0), -(20878,51460,'accessories/wearable_items01/_exp00/plate/common/high/shoulders',0), -(20879,51461,'accessories/wearable_items01/_exp00/plate/common/low/chest',0), -(20880,51462,'accessories/wearable_items01/_exp00/plate/common/low/feet',0), -(20881,51463,'accessories/wearable_items01/_exp00/plate/common/low/forearms',0), -(20882,51464,'accessories/wearable_items01/_exp00/plate/common/low/hands',0), -(20883,51465,'accessories/wearable_items01/_exp00/plate/common/low/head',0), -(20884,51466,'accessories/wearable_items01/_exp00/plate/common/low/legs',0), -(20885,51467,'accessories/wearable_items01/_exp00/plate/common/low/shoulders',0), -(20886,51468,'accessories/wearable_items01/_exp00/plate/common/medium/chest',0), -(20887,51469,'accessories/wearable_items01/_exp00/plate/common/medium/feet',0), -(20888,51470,'accessories/wearable_items01/_exp00/plate/common/medium/forearms',0), -(20889,51471,'accessories/wearable_items01/_exp00/plate/common/medium/hands',0), -(20890,51472,'accessories/wearable_items01/_exp00/plate/common/medium/head',0), -(20891,51473,'accessories/wearable_items01/_exp00/plate/common/medium/legs',0), -(20892,51474,'accessories/wearable_items01/_exp00/plate/common/medium/shoulders',0), -(20893,51475,'accessories/wearable_items01/_exp00/plate/plate_tint01/chest',0), -(20894,51476,'accessories/wearable_items01/_exp00/plate/plate_tint01/feet',0), -(20895,51477,'accessories/wearable_items01/_exp00/plate/plate_tint01/forearms',0), -(20896,51478,'accessories/wearable_items01/_exp00/plate/plate_tint01/hands',0), -(20897,51479,'accessories/wearable_items01/_exp00/plate/plate_tint01/head',0), -(20898,51480,'accessories/wearable_items01/_exp00/plate/plate_tint01/legs',0), -(20899,51481,'accessories/wearable_items01/_exp00/plate/plate_tint01/shoulders',0), -(20900,51482,'accessories/wearable_items01/_exp00/plate/plate_tint02/chest',0), -(20901,51483,'accessories/wearable_items01/_exp00/plate/plate_tint02/feet',0), -(20902,51484,'accessories/wearable_items01/_exp00/plate/plate_tint02/forearms',0), -(20903,51485,'accessories/wearable_items01/_exp00/plate/plate_tint02/hands',0), -(20904,51486,'accessories/wearable_items01/_exp00/plate/plate_tint02/head',0), -(20905,51487,'accessories/wearable_items01/_exp00/plate/plate_tint02/legs',0), -(20906,51488,'accessories/wearable_items01/_exp00/plate/plate_tint02/shoulders',0), -(20907,51489,'accessories/wearable_items01/_exp00/plate/uncommon/low/chest',0), -(20908,51490,'accessories/wearable_items01/_exp00/plate/uncommon/low/feet',0), -(20909,51491,'accessories/wearable_items01/_exp00/plate/uncommon/low/forearms',0), -(20910,51492,'accessories/wearable_items01/_exp00/plate/uncommon/low/hands',0), -(20911,51493,'accessories/wearable_items01/_exp00/plate/uncommon/low/head',0), -(20912,51494,'accessories/wearable_items01/_exp00/plate/uncommon/low/legs',0), -(20913,51495,'accessories/wearable_items01/_exp00/plate/uncommon/low/shoulders',0), -(20914,51496,'accessories/wearable_items01/_exp00/plate/uncommon/medium/chest',0), -(20915,51497,'accessories/wearable_items01/_exp00/plate/uncommon/medium/feet',0), -(20916,51498,'accessories/wearable_items01/_exp00/plate/uncommon/medium/forearms',0), -(20917,51499,'accessories/wearable_items01/_exp00/plate/uncommon/medium/hands',0), -(20918,51500,'accessories/wearable_items01/_exp00/plate/uncommon/medium/head',0), -(20919,51501,'accessories/wearable_items01/_exp00/plate/uncommon/medium/legs',0), -(20920,51502,'accessories/wearable_items01/_exp00/plate/uncommon/medium/shoulders',0), -(20921,51503,'accessories/wearable_items01/_exp00/profesion_hats/animal_hide/animal_hide_01/head',0), -(20922,51504,'accessories/wearable_items01/_exp00/profesion_hats/assassin/assassin_01/head',0), -(20923,51505,'accessories/wearable_items01/_exp00/profesion_hats/berserker/berserker_helm_01/head',0), -(20924,51506,'accessories/wearable_items01/_exp00/profesion_hats/berserker/berserker_helm_02/head',0), -(20925,51507,'accessories/wearable_items01/_exp00/profesion_hats/brigand_hat/head',0), -(20926,51508,'accessories/wearable_items01/_exp00/profesion_hats/bruiser/bruiser_01/head',0), -(20927,51509,'accessories/wearable_items01/_exp00/profesion_hats/coercer/coercer_01/head',0), -(20928,51510,'accessories/wearable_items01/_exp00/profesion_hats/coercer/coercer_02/head',0), -(20929,51511,'accessories/wearable_items01/_exp00/profesion_hats/conjuror/conjuror_01/head',0), -(20930,51512,'accessories/wearable_items01/_exp00/profesion_hats/dirge/dirge_01/head',0), -(20931,51513,'accessories/wearable_items01/_exp00/profesion_hats/evil_helm/evil_helm_01/head',0), -(20932,51514,'accessories/wearable_items01/_exp00/profesion_hats/fury/fury_01/head',0), -(20933,51515,'accessories/wearable_items01/_exp00/profesion_hats/guardian/guardian_01/head',0), -(20934,51516,'accessories/wearable_items01/_exp00/profesion_hats/illusionist/illusionist_01/head',0), -(20935,51517,'accessories/wearable_items01/_exp00/profesion_hats/inquisitor/inquisitor_01/head',0), -(20936,51518,'accessories/wearable_items01/_exp00/profesion_hats/jester/jester_01/head',0), -(20937,51519,'accessories/wearable_items01/_exp00/profesion_hats/necromancer/necromancer_01/head',0), -(20938,51520,'accessories/wearable_items01/_exp00/profesion_hats/paladin/paladin_01/head',0), -(20939,51521,'accessories/wearable_items01/_exp00/profesion_hats/ranger/ranger_01/head',0), -(20940,51522,'accessories/wearable_items01/_exp00/profesion_hats/shadowknight/shadowknight_01/head',0), -(20941,51523,'accessories/wearable_items01/_exp00/profesion_hats/swashbuckler/swashbuckler_01/head',0), -(20942,51524,'accessories/wearable_items01/_exp00/profesion_hats/templar/templar_helm_01/head',0), -(20943,51525,'accessories/wearable_items01/_exp00/profesion_hats/troubadour/troubadour_01/head',0), -(20944,51526,'accessories/wearable_items01/_exp00/profesion_hats/warden/warden_01/head',0), -(20945,51527,'accessories/wearable_items01/_exp00/profesion_hats/warlock/warlock_01/head',0), -(20946,51528,'accessories/wearable_items01/_exp00/profesion_hats/wizard/wizard_01/head',0), -(20947,51529,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_female/arms',0), -(20948,51530,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_female/chest',0), -(20949,51531,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_female/legs',0), -(20950,51532,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_female/sleeves',0), -(20951,51533,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_male/arms',0), -(20952,51534,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_male/chest',0), -(20953,51535,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_male/legs',0), -(20954,51536,'accessories/wearable_items01/_exp00/starter_clothes/barbarian_male/sleeves',0), -(20955,51537,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_female/arms',0), -(20956,51538,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_female/chest',0), -(20957,51539,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_female/legs',0), -(20958,51540,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_female/sleeves',0), -(20959,51541,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_male/arms',0), -(20960,51542,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_male/chest',0), -(20961,51543,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_male/legs',0), -(20962,51544,'accessories/wearable_items01/_exp00/starter_clothes/darkelf_male/sleeves',0), -(20963,51545,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_female/arms',0), -(20964,51546,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_female/chest',0), -(20965,51547,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_female/legs',0), -(20966,51548,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_female/sleeves',0), -(20967,51549,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_male/arms',0), -(20968,51550,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_male/chest',0), -(20969,51551,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_male/legs',0), -(20970,51552,'accessories/wearable_items01/_exp00/starter_clothes/dwarf_male/sleeves',0), -(20971,51553,'accessories/wearable_items01/_exp00/starter_clothes/erudite_female/arms',0), -(20972,51554,'accessories/wearable_items01/_exp00/starter_clothes/erudite_female/chest',0), -(20973,51555,'accessories/wearable_items01/_exp00/starter_clothes/erudite_female/legs',0), -(20974,51556,'accessories/wearable_items01/_exp00/starter_clothes/erudite_female/sleeves',0), -(20975,51557,'accessories/wearable_items01/_exp00/starter_clothes/erudite_male/arms',0), -(20976,51558,'accessories/wearable_items01/_exp00/starter_clothes/erudite_male/chest',0), -(20977,51559,'accessories/wearable_items01/_exp00/starter_clothes/erudite_male/legs',0), -(20978,51560,'accessories/wearable_items01/_exp00/starter_clothes/erudite_male/sleeves',0), -(20979,51561,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_female/arms',0), -(20980,51562,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_female/chest',0), -(20981,51563,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_female/legs',0), -(20982,51564,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_female/sleeves',0), -(20983,51565,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_male/arms',0), -(20984,51566,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_male/chest',0), -(20985,51567,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_male/legs',0), -(20986,51568,'accessories/wearable_items01/_exp00/starter_clothes/fae_dark_male/sleeves',0), -(20987,51569,'accessories/wearable_items01/_exp00/starter_clothes/fae_female/arms',0), -(20988,51570,'accessories/wearable_items01/_exp00/starter_clothes/fae_female/chest',0), -(20989,51571,'accessories/wearable_items01/_exp00/starter_clothes/fae_female/legs',0), -(20990,51572,'accessories/wearable_items01/_exp00/starter_clothes/fae_female/sleeves',0), -(20991,51573,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_female/arms',0), -(20992,51574,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_female/chest',0), -(20993,51575,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_female/legs',0), -(20994,51576,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_female/sleeves',0), -(20995,51577,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_male/arms',0), -(20996,51578,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_male/chest',0), -(20997,51579,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_male/legs',0), -(20998,51580,'accessories/wearable_items01/_exp00/starter_clothes/fae_light_male/sleeves',0), -(20999,51581,'accessories/wearable_items01/_exp00/starter_clothes/fae_male/arms',0), -(21000,51582,'accessories/wearable_items01/_exp00/starter_clothes/fae_male/chest',0), -(21001,51583,'accessories/wearable_items01/_exp00/starter_clothes/fae_male/legs',0), -(21002,51584,'accessories/wearable_items01/_exp00/starter_clothes/fae_male/sleeves',0), -(21003,51585,'accessories/wearable_items01/_exp00/starter_clothes/froglok_female/arms',0), -(21004,51586,'accessories/wearable_items01/_exp00/starter_clothes/froglok_female/chest',0), -(21005,51587,'accessories/wearable_items01/_exp00/starter_clothes/froglok_female/legs',0), -(21006,51588,'accessories/wearable_items01/_exp00/starter_clothes/froglok_female/sleeves',0), -(21007,51589,'accessories/wearable_items01/_exp00/starter_clothes/froglok_male/arms',0), -(21008,51590,'accessories/wearable_items01/_exp00/starter_clothes/froglok_male/chest',0), -(21009,51591,'accessories/wearable_items01/_exp00/starter_clothes/froglok_male/legs',0), -(21010,51592,'accessories/wearable_items01/_exp00/starter_clothes/froglok_male/sleeves',0), -(21011,51593,'accessories/wearable_items01/_exp00/starter_clothes/gnome_female/arms',0), -(21012,51594,'accessories/wearable_items01/_exp00/starter_clothes/gnome_female/chest',0), -(21013,51595,'accessories/wearable_items01/_exp00/starter_clothes/gnome_female/legs',0), -(21014,51596,'accessories/wearable_items01/_exp00/starter_clothes/gnome_female/sleeves',0), -(21015,51597,'accessories/wearable_items01/_exp00/starter_clothes/gnome_male/arms',0), -(21016,51598,'accessories/wearable_items01/_exp00/starter_clothes/gnome_male/chest',0), -(21017,51599,'accessories/wearable_items01/_exp00/starter_clothes/gnome_male/legs',0), -(21018,51600,'accessories/wearable_items01/_exp00/starter_clothes/gnome_male/sleeves',0), -(21019,51601,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_female/arms',0), -(21020,51602,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_female/chest',0), -(21021,51603,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_female/legs',0), -(21022,51604,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_female/sleeves',0), -(21023,51605,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_male/arms',0), -(21024,51606,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_male/chest',0), -(21025,51607,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_male/legs',0), -(21026,51608,'accessories/wearable_items01/_exp00/starter_clothes/halfelf_male/sleeves',0), -(21027,51609,'accessories/wearable_items01/_exp00/starter_clothes/halfling_female/arms',0), -(21028,51610,'accessories/wearable_items01/_exp00/starter_clothes/halfling_female/chest',0), -(21029,51611,'accessories/wearable_items01/_exp00/starter_clothes/halfling_female/legs',0), -(21030,51612,'accessories/wearable_items01/_exp00/starter_clothes/halfling_female/sleeves',0), -(21031,51613,'accessories/wearable_items01/_exp00/starter_clothes/halfling_male/arms',0), -(21032,51614,'accessories/wearable_items01/_exp00/starter_clothes/halfling_male/chest',0), -(21033,51615,'accessories/wearable_items01/_exp00/starter_clothes/halfling_male/legs',0), -(21034,51616,'accessories/wearable_items01/_exp00/starter_clothes/halfling_male/sleeves',0), -(21035,51617,'accessories/wearable_items01/_exp00/starter_clothes/highelf_female/arms',0), -(21036,51618,'accessories/wearable_items01/_exp00/starter_clothes/highelf_female/chest',0), -(21037,51619,'accessories/wearable_items01/_exp00/starter_clothes/highelf_female/legs',0), -(21038,51620,'accessories/wearable_items01/_exp00/starter_clothes/highelf_female/sleeves',0), -(21039,51621,'accessories/wearable_items01/_exp00/starter_clothes/highelf_male/arms',0), -(21040,51622,'accessories/wearable_items01/_exp00/starter_clothes/highelf_male/chest',0), -(21041,51623,'accessories/wearable_items01/_exp00/starter_clothes/highelf_male/legs',0), -(21042,51624,'accessories/wearable_items01/_exp00/starter_clothes/highelf_male/sleeves',0), -(21043,51625,'accessories/wearable_items01/_exp00/starter_clothes/human_female/arms',0), -(21044,51626,'accessories/wearable_items01/_exp00/starter_clothes/human_female/chest',0), -(21045,51627,'accessories/wearable_items01/_exp00/starter_clothes/human_female/legs',0), -(21046,51628,'accessories/wearable_items01/_exp00/starter_clothes/human_female/sleeves',0), -(21047,51629,'accessories/wearable_items01/_exp00/starter_clothes/human_male/arms',0), -(21048,51630,'accessories/wearable_items01/_exp00/starter_clothes/human_male/chest',0), -(21049,51631,'accessories/wearable_items01/_exp00/starter_clothes/human_male/legs',0), -(21050,51632,'accessories/wearable_items01/_exp00/starter_clothes/human_male/sleeves',0), -(21051,51633,'accessories/wearable_items01/_exp00/starter_clothes/iksar_female/arms',0), -(21052,51634,'accessories/wearable_items01/_exp00/starter_clothes/iksar_female/chest',0), -(21053,51635,'accessories/wearable_items01/_exp00/starter_clothes/iksar_female/legs',0), -(21054,51636,'accessories/wearable_items01/_exp00/starter_clothes/iksar_female/sleeves',0), -(21055,51637,'accessories/wearable_items01/_exp00/starter_clothes/iksar_male/arms',0), -(21056,51638,'accessories/wearable_items01/_exp00/starter_clothes/iksar_male/chest',0), -(21057,51639,'accessories/wearable_items01/_exp00/starter_clothes/iksar_male/legs',0), -(21058,51640,'accessories/wearable_items01/_exp00/starter_clothes/iksar_male/sleeves',0), -(21059,51641,'accessories/wearable_items01/_exp00/starter_clothes/kerra_female/arms',0), -(21060,51642,'accessories/wearable_items01/_exp00/starter_clothes/kerra_female/chest',0), -(21061,51643,'accessories/wearable_items01/_exp00/starter_clothes/kerra_female/legs',0), -(21062,51644,'accessories/wearable_items01/_exp00/starter_clothes/kerra_female/sleeves',0), -(21063,51645,'accessories/wearable_items01/_exp00/starter_clothes/kerra_male/arms',0), -(21064,51646,'accessories/wearable_items01/_exp00/starter_clothes/kerra_male/chest',0), -(21065,51647,'accessories/wearable_items01/_exp00/starter_clothes/kerra_male/legs',0), -(21066,51648,'accessories/wearable_items01/_exp00/starter_clothes/kerra_male/sleeves',0), -(21067,51649,'accessories/wearable_items01/_exp00/starter_clothes/ogre_female/arms',0), -(21068,51650,'accessories/wearable_items01/_exp00/starter_clothes/ogre_female/chest',0), -(21069,51651,'accessories/wearable_items01/_exp00/starter_clothes/ogre_female/legs',0), -(21070,51652,'accessories/wearable_items01/_exp00/starter_clothes/ogre_female/sleeves',0), -(21071,51653,'accessories/wearable_items01/_exp00/starter_clothes/ogre_male/arms',0), -(21072,51654,'accessories/wearable_items01/_exp00/starter_clothes/ogre_male/chest',0), -(21073,51655,'accessories/wearable_items01/_exp00/starter_clothes/ogre_male/legs',0), -(21074,51656,'accessories/wearable_items01/_exp00/starter_clothes/ogre_male/sleeves',0), -(21075,51657,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_female/arms',0), -(21076,51658,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_female/chest',0), -(21077,51659,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_female/legs',0), -(21078,51660,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_female/sleeves',0), -(21079,51661,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_male/arms',0), -(21080,51662,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_male/chest',0), -(21081,51663,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_male/legs',0), -(21082,51664,'accessories/wearable_items01/_exp00/starter_clothes/ratonga_male/sleeves',0), -(21083,51665,'accessories/wearable_items01/_exp00/starter_clothes/troll_female/arms',0), -(21084,51666,'accessories/wearable_items01/_exp00/starter_clothes/troll_female/chest',0), -(21085,51667,'accessories/wearable_items01/_exp00/starter_clothes/troll_female/legs',0), -(21086,51668,'accessories/wearable_items01/_exp00/starter_clothes/troll_female/sleeves',0), -(21087,51669,'accessories/wearable_items01/_exp00/starter_clothes/troll_male/arms',0), -(21088,51670,'accessories/wearable_items01/_exp00/starter_clothes/troll_male/chest',0), -(21089,51671,'accessories/wearable_items01/_exp00/starter_clothes/troll_male/legs',0), -(21090,51672,'accessories/wearable_items01/_exp00/starter_clothes/troll_male/sleeves',0), -(21091,51673,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_female/arms',0), -(21092,51674,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_female/chest',0), -(21093,51675,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_female/legs',0), -(21094,51676,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_female/sleeves',0), -(21095,51677,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_male/arms',0), -(21096,51678,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_male/chest',0), -(21097,51679,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_male/legs',0), -(21098,51680,'accessories/wearable_items01/_exp00/starter_clothes/woodelf_male/sleeves',0), -(21099,51681,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/brawler_wrapped/chest',0), -(21100,51682,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/brawler_wrapped/feet',0), -(21101,51683,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/brawler_wrapped/pants',0), -(21102,51684,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/brawler_wrapped/shoulders',0), -(21103,51685,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/med_studded/arms',0), -(21104,51686,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/med_studded/chest',0), -(21105,51687,'accessories/wearable_items01/_exp00/tradesman/clothing/brawler/med_studded/legs',0), -(21106,51688,'accessories/wearable_items01/_exp00/tradesman/clothing/ornateshinygold/chest',0), -(21107,51689,'accessories/wearable_items01/_exp00/tradesman/clothing/ornateshinygold/legs',0), -(21108,51690,'accessories/wearable_items01/_exp00/tradesman/clothing/ornateshinygold/shoulders',0), -(21109,51691,'accessories/wearable_items01/_exp00/tradesman/clothing/ornateshinygold/sleeves',0), -(21110,51692,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_brown_female/chest',0), -(21111,51693,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_brown_female/legs',0), -(21112,51694,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_green_vest/arms',0), -(21113,51695,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_green_vest/chest',0), -(21114,51696,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_green_vest/legs',0), -(21115,51697,'accessories/wearable_items01/_exp00/tradesman/clothing/plain_green_vest/sleeves',0), -(21116,51698,'accessories/wearable_items01/_exp00/tradesman/clothing/plainbluelacey/chest',0), -(21117,51699,'accessories/wearable_items01/_exp00/tradesman/clothing/plainbluelacey/legs',0), -(21118,51700,'accessories/wearable_items01/_exp00/tradesman/clothing/plainbluelacey/shoulders',0), -(21119,51701,'accessories/wearable_items01/_exp00/tradesman/clothing/plainbluelacey/sleeves',0), -(21120,51702,'accessories/wearable_items01/_exp00/tradesman/clothing/smith/common_good/chest',0), -(21121,51703,'accessories/wearable_items01/_exp00/tradesman/clothing/smith/common_good/feet',0), -(21122,51704,'accessories/wearable_items01/_exp00/tradesman/clothing/smith/common_good/hands',0), -(21123,51705,'accessories/wearable_items01/_exp00/tradesman/clothing/smith/common_good/legs',0), -(21124,51706,'accessories/wearable_items01/_exp00/tradesman/clothing/smith/common_good/skirt',0), -(21125,51707,'accessories/wearable_items01/_exp00/tradesman/common/low/arms',0), -(21126,51708,'accessories/wearable_items01/_exp00/tradesman/common/low/chest',0), -(21127,51709,'accessories/wearable_items01/_exp00/tradesman/common/low/legs',0), -(21128,51710,'accessories/wearable_items01/_exp00/tradesman/common/low/sleeves',0), -(21129,51711,'accessories/wearable_items01/_exp00/tradesman/common/medium/arms',0), -(21130,51712,'accessories/wearable_items01/_exp00/tradesman/common/medium/chest',0), -(21131,51713,'accessories/wearable_items01/_exp00/tradesman/common/medium/legs',0), -(21132,51714,'accessories/wearable_items01/_exp00/tradesman/common/medium/sleeves',0), -(21133,51715,'accessories/wearable_items01/_exp00/vanguard/common/high/chest',0), -(21134,51716,'accessories/wearable_items01/_exp00/vanguard/common/high/feet',0), -(21135,51717,'accessories/wearable_items01/_exp00/vanguard/common/high/forearms',0), -(21136,51718,'accessories/wearable_items01/_exp00/vanguard/common/high/hands',0), -(21137,51719,'accessories/wearable_items01/_exp00/vanguard/common/high/head',0), -(21138,51720,'accessories/wearable_items01/_exp00/vanguard/common/high/left',0), -(21139,51721,'accessories/wearable_items01/_exp00/vanguard/common/high/legs',0), -(21140,51722,'accessories/wearable_items01/_exp00/vanguard/common/high/legs_noskirt',0), -(21141,51723,'accessories/wearable_items01/_exp00/vanguard/common/high/right',0), -(21142,51724,'accessories/wearable_items01/_exp00/vanguard/common/high/shoulders',0), -(21143,51725,'accessories/wearable_items01/_exp00/vanguard/common/high/shoulders_nopauldrons',0), -(21144,51726,'accessories/wearable_items01/_exp00/vanguard/common/high/skirt',0), -(21145,51727,'accessories/wearable_items01/_exp00/vanguard/common/high/upperchest',0), -(21146,51728,'accessories/wearable_items01/_exp00/vanguard/common/low/chest',0), -(21147,51729,'accessories/wearable_items01/_exp00/vanguard/common/low/feet',0), -(21148,51730,'accessories/wearable_items01/_exp00/vanguard/common/low/forearms',0), -(21149,51731,'accessories/wearable_items01/_exp00/vanguard/common/low/hands',0), -(21150,51732,'accessories/wearable_items01/_exp00/vanguard/common/low/head',0), -(21151,51733,'accessories/wearable_items01/_exp00/vanguard/common/low/left',0), -(21152,51734,'accessories/wearable_items01/_exp00/vanguard/common/low/legs',0), -(21153,51735,'accessories/wearable_items01/_exp00/vanguard/common/low/legs_noskirt',0), -(21154,51736,'accessories/wearable_items01/_exp00/vanguard/common/low/right',0), -(21155,51737,'accessories/wearable_items01/_exp00/vanguard/common/low/shoulders',0), -(21156,51738,'accessories/wearable_items01/_exp00/vanguard/common/low/shoulders_nopauldrons',0), -(21157,51739,'accessories/wearable_items01/_exp00/vanguard/common/low/skirt',0), -(21158,51740,'accessories/wearable_items01/_exp00/vanguard/common/low/upperchest',0), -(21159,51741,'accessories/wearable_items01/_exp00/vanguard/common/medium/chest',0), -(21160,51742,'accessories/wearable_items01/_exp00/vanguard/common/medium/feet',0), -(21161,51743,'accessories/wearable_items01/_exp00/vanguard/common/medium/forearms',0), -(21162,51744,'accessories/wearable_items01/_exp00/vanguard/common/medium/hands',0), -(21163,51745,'accessories/wearable_items01/_exp00/vanguard/common/medium/head',0), -(21164,51746,'accessories/wearable_items01/_exp00/vanguard/common/medium/left',0), -(21165,51747,'accessories/wearable_items01/_exp00/vanguard/common/medium/legs',0), -(21166,51748,'accessories/wearable_items01/_exp00/vanguard/common/medium/legs_noskirt',0), -(21167,51749,'accessories/wearable_items01/_exp00/vanguard/common/medium/right',0), -(21168,51750,'accessories/wearable_items01/_exp00/vanguard/common/medium/shoulders',0), -(21169,51751,'accessories/wearable_items01/_exp00/vanguard/common/medium/shoulders_nopauldrons',0), -(21170,51752,'accessories/wearable_items01/_exp00/vanguard/common/medium/skirt',0), -(21171,51753,'accessories/wearable_items01/_exp00/vanguard/common/medium/upperchest',0), -(21172,51754,'accessories/wearable_items01/_exp00/vanguard/rare/low/chest',0), -(21173,51755,'accessories/wearable_items01/_exp00/vanguard/rare/low/feet',0), -(21174,51756,'accessories/wearable_items01/_exp00/vanguard/rare/low/forearms',0), -(21175,51757,'accessories/wearable_items01/_exp00/vanguard/rare/low/hands',0), -(21176,51758,'accessories/wearable_items01/_exp00/vanguard/rare/low/head',0), -(21177,51759,'accessories/wearable_items01/_exp00/vanguard/rare/low/left',0), -(21178,51760,'accessories/wearable_items01/_exp00/vanguard/rare/low/legs',0), -(21179,51761,'accessories/wearable_items01/_exp00/vanguard/rare/low/legs_noskirt',0), -(21180,51762,'accessories/wearable_items01/_exp00/vanguard/rare/low/right',0), -(21181,51763,'accessories/wearable_items01/_exp00/vanguard/rare/low/shoulders',0), -(21182,51764,'accessories/wearable_items01/_exp00/vanguard/rare/low/shoulders_nopauldrons',0), -(21183,51765,'accessories/wearable_items01/_exp00/vanguard/rare/low/skirt',0), -(21184,51766,'accessories/wearable_items01/_exp00/vanguard/rare/low/upperchest',0), -(21185,51767,'accessories/wearable_items01/_exp00/vanguard/rare/medium/chest',0), -(21186,51768,'accessories/wearable_items01/_exp00/vanguard/rare/medium/feet',0), -(21187,51769,'accessories/wearable_items01/_exp00/vanguard/rare/medium/forearms',0), -(21188,51770,'accessories/wearable_items01/_exp00/vanguard/rare/medium/hands',0), -(21189,51771,'accessories/wearable_items01/_exp00/vanguard/rare/medium/head',0), -(21190,51772,'accessories/wearable_items01/_exp00/vanguard/rare/medium/left',0), -(21191,51773,'accessories/wearable_items01/_exp00/vanguard/rare/medium/legs',0), -(21192,51774,'accessories/wearable_items01/_exp00/vanguard/rare/medium/legs_noskirt',0), -(21193,51775,'accessories/wearable_items01/_exp00/vanguard/rare/medium/right',0), -(21194,51776,'accessories/wearable_items01/_exp00/vanguard/rare/medium/shoulders',0), -(21195,51777,'accessories/wearable_items01/_exp00/vanguard/rare/medium/shoulders_nopauldrons',0), -(21196,51778,'accessories/wearable_items01/_exp00/vanguard/rare/medium/skirt',0), -(21197,51779,'accessories/wearable_items01/_exp00/vanguard/rare/medium/upperchest',0), -(21198,51780,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/chest',0), -(21199,51781,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/feet',0), -(21200,51782,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/forearms',0), -(21201,51783,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/hands',0), -(21202,51784,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/head',0), -(21203,51785,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/left',0), -(21204,51786,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/legs',0), -(21205,51787,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/legs_noskirt',0), -(21206,51788,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/right',0), -(21207,51789,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/shoulders',0), -(21208,51790,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/shoulders_nopauldrons',0), -(21209,51791,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/skirt',0), -(21210,51792,'accessories/wearable_items01/_exp00/vanguard/uncommon/high/upperchest',0), -(21211,51793,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/chest',0), -(21212,51794,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/feet',0), -(21213,51795,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/forearms',0), -(21214,51796,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/hands',0), -(21215,51797,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/head',0), -(21216,51798,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/left',0), -(21217,51799,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/legs',0), -(21218,51800,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/legs_noskirt',0), -(21219,51801,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/right',0), -(21220,51802,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/shoulders',0), -(21221,51803,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/shoulders_nopauldrons',0), -(21222,51804,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/skirt',0), -(21223,51805,'accessories/wearable_items01/_exp00/vanguard/uncommon/low/upperchest',0), -(21224,51806,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/chest',0), -(21225,51807,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/feet',0), -(21226,51808,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/forearms',0), -(21227,51809,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/hands',0), -(21228,51810,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/head',0), -(21229,51811,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/left',0), -(21230,51812,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/legs',0), -(21231,51813,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/legs_noskirt',0), -(21232,51814,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/right',0), -(21233,51815,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/shoulders',0), -(21234,51816,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/shoulders_nopauldrons',0), -(21235,51817,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/skirt',0), -(21236,51818,'accessories/wearable_items01/_exp00/vanguard/uncommon/medium/upperchest',0), -(21237,51819,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/chest',0), -(21238,51820,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/feet',0), -(21239,51821,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/forearms',0), -(21240,51822,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/hands',0), -(21241,51823,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/head',0), -(21242,51824,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/legs',0), -(21243,51825,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/right',0), -(21244,51826,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/shoulders',0), -(21245,51827,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/shoulders_nopauldrons',0), -(21246,51828,'accessories/wearable_items01/_exp00/vanguard/vanguard_tint01/upperchest',0), -(21247,51829,'accessories/wearable_items01/_exp00/white_robe/chest',0), -(21248,51830,'accessories/wearable_items01/_exp00/white_robe/hood',0), -(21249,51831,'accessories/wearable_items01/_exp00/white_robe/pants',0), -(21250,51832,'accessories/wearable_items01/_exp00/white_robe/skirt',0), -(21251,51833,'accessories/wearable_items01/_exp00/woven/common/high/chest',0), -(21252,51834,'accessories/wearable_items01/_exp00/woven/common/high/feet',0), -(21253,51835,'accessories/wearable_items01/_exp00/woven/common/high/forearms',0), -(21254,51836,'accessories/wearable_items01/_exp00/woven/common/high/hands',0), -(21255,51837,'accessories/wearable_items01/_exp00/woven/common/high/head',0), -(21256,51838,'accessories/wearable_items01/_exp00/woven/common/high/legs',0), -(21257,51839,'accessories/wearable_items01/_exp00/woven/common/high/legs_noskirt',0), -(21258,51840,'accessories/wearable_items01/_exp00/woven/common/high/shoulders',0), -(21259,51841,'accessories/wearable_items01/_exp00/woven/common/high/skirt',0), -(21260,51842,'accessories/wearable_items01/_exp00/woven/common/low/chest',0), -(21261,51843,'accessories/wearable_items01/_exp00/woven/common/low/feet',0), -(21262,51844,'accessories/wearable_items01/_exp00/woven/common/low/forearms',0), -(21263,51845,'accessories/wearable_items01/_exp00/woven/common/low/hands',0), -(21264,51846,'accessories/wearable_items01/_exp00/woven/common/low/head',0), -(21265,51847,'accessories/wearable_items01/_exp00/woven/common/low/legs',0), -(21266,51848,'accessories/wearable_items01/_exp00/woven/common/low/legs_noskirt',0), -(21267,51849,'accessories/wearable_items01/_exp00/woven/common/low/shoulders',0), -(21268,51850,'accessories/wearable_items01/_exp00/woven/common/low/skirt',0), -(21269,51851,'accessories/wearable_items01/_exp00/woven/common/medium/chest',0), -(21270,51852,'accessories/wearable_items01/_exp00/woven/common/medium/feet',0), -(21271,51853,'accessories/wearable_items01/_exp00/woven/common/medium/forearms',0), -(21272,51854,'accessories/wearable_items01/_exp00/woven/common/medium/hands',0), -(21273,51855,'accessories/wearable_items01/_exp00/woven/common/medium/head',0), -(21274,51856,'accessories/wearable_items01/_exp00/woven/common/medium/legs',0), -(21275,51857,'accessories/wearable_items01/_exp00/woven/common/medium/legs_noskirt',0), -(21276,51858,'accessories/wearable_items01/_exp00/woven/common/medium/shoulders',0), -(21277,51859,'accessories/wearable_items01/_exp00/woven/common/medium/skirt',0), -(21278,51860,'accessories/wearable_items01/_exp00/woven/rare/low/chest',0), -(21279,51861,'accessories/wearable_items01/_exp00/woven/rare/low/feet',0), -(21280,51862,'accessories/wearable_items01/_exp00/woven/rare/low/forearms',0), -(21281,51863,'accessories/wearable_items01/_exp00/woven/rare/low/hands',0), -(21282,51864,'accessories/wearable_items01/_exp00/woven/rare/low/head',0), -(21283,51865,'accessories/wearable_items01/_exp00/woven/rare/low/legs',0), -(21284,51866,'accessories/wearable_items01/_exp00/woven/rare/low/legs_noskirt',0), -(21285,51867,'accessories/wearable_items01/_exp00/woven/rare/low/shoulders',0), -(21286,51868,'accessories/wearable_items01/_exp00/woven/rare/low/skirt',0), -(21287,51869,'accessories/wearable_items01/_exp00/woven/uncommon/high/chest',0), -(21288,51870,'accessories/wearable_items01/_exp00/woven/uncommon/high/feet',0), -(21289,51871,'accessories/wearable_items01/_exp00/woven/uncommon/high/forearms',0), -(21290,51872,'accessories/wearable_items01/_exp00/woven/uncommon/high/hands',0), -(21291,51873,'accessories/wearable_items01/_exp00/woven/uncommon/high/head',0), -(21292,51874,'accessories/wearable_items01/_exp00/woven/uncommon/high/legs',0), -(21293,51875,'accessories/wearable_items01/_exp00/woven/uncommon/high/legs_noskirt',0), -(21294,51876,'accessories/wearable_items01/_exp00/woven/uncommon/high/shoulders',0), -(21295,51877,'accessories/wearable_items01/_exp00/woven/uncommon/high/skirt',0), -(21296,51878,'accessories/wearable_items01/_exp00/woven/uncommon/low/chest',0), -(21297,51879,'accessories/wearable_items01/_exp00/woven/uncommon/low/feet',0), -(21298,51880,'accessories/wearable_items01/_exp00/woven/uncommon/low/forearms',0), -(21299,51881,'accessories/wearable_items01/_exp00/woven/uncommon/low/hands',0), -(21300,51882,'accessories/wearable_items01/_exp00/woven/uncommon/low/head',0), -(21301,51883,'accessories/wearable_items01/_exp00/woven/uncommon/low/legs',0), -(21302,51884,'accessories/wearable_items01/_exp00/woven/uncommon/low/legs_noskirt',0), -(21303,51885,'accessories/wearable_items01/_exp00/woven/uncommon/low/shoulders',0), -(21304,51886,'accessories/wearable_items01/_exp00/woven/uncommon/low/skirt',0), -(21305,51887,'accessories/wearable_items01/_exp00/woven/uncommon/medium/chest',0), -(21306,51888,'accessories/wearable_items01/_exp00/woven/uncommon/medium/feet',0), -(21307,51889,'accessories/wearable_items01/_exp00/woven/uncommon/medium/forearms',0), -(21308,51890,'accessories/wearable_items01/_exp00/woven/uncommon/medium/hands',0), -(21309,51891,'accessories/wearable_items01/_exp00/woven/uncommon/medium/head',0), -(21310,51892,'accessories/wearable_items01/_exp00/woven/uncommon/medium/legs',0), -(21311,51893,'accessories/wearable_items01/_exp00/woven/uncommon/medium/legs_noskirt',0), -(21312,51894,'accessories/wearable_items01/_exp00/woven/uncommon/medium/shoulders',0), -(21313,51895,'accessories/wearable_items01/_exp00/woven/uncommon/medium/skirt',0), -(21314,51896,'accessories/wearable_items01/_exp02/brigandine_heavy/chest',0), -(21315,51897,'accessories/wearable_items01/_exp02/brigandine_heavy/feet',0), -(21316,51898,'accessories/wearable_items01/_exp02/brigandine_heavy/forearms',0), -(21317,51899,'accessories/wearable_items01/_exp02/brigandine_heavy/hands',0), -(21318,51900,'accessories/wearable_items01/_exp02/brigandine_heavy/head',0), -(21319,51901,'accessories/wearable_items01/_exp02/brigandine_heavy/legs',0), -(21320,51902,'accessories/wearable_items01/_exp02/brigandine_heavy/shoulders',0), -(21321,51903,'accessories/wearable_items01/_exp02/chain_heroic/chest',0), -(21322,51904,'accessories/wearable_items01/_exp02/chain_heroic/feet',0), -(21323,51905,'accessories/wearable_items01/_exp02/chain_heroic/forearms',0), -(21324,51906,'accessories/wearable_items01/_exp02/chain_heroic/hands',0), -(21325,51907,'accessories/wearable_items01/_exp02/chain_heroic/head',0), -(21326,51908,'accessories/wearable_items01/_exp02/chain_heroic/legs',0), -(21327,51909,'accessories/wearable_items01/_exp02/chain_heroic/legs_noskirt',0), -(21328,51910,'accessories/wearable_items01/_exp02/chain_heroic/shoulders',0), -(21329,51911,'accessories/wearable_items01/_exp02/chain_heroic/skirt',0), -(21330,51912,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/chest',0), -(21331,51913,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/feet',0), -(21332,51914,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/forearms',0), -(21333,51915,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/hands',0), -(21334,51916,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/legs',0), -(21335,51917,'accessories/wearable_items01/_exp02/heavy_cloth_heroic/shoulders',0), -(21336,51918,'accessories/wearable_items01/_exp02/leather_heavy/chest',0), -(21337,51919,'accessories/wearable_items01/_exp02/leather_heavy/feet',0), -(21338,51920,'accessories/wearable_items01/_exp02/leather_heavy/forearms',0), -(21339,51921,'accessories/wearable_items01/_exp02/leather_heavy/hands',0), -(21340,51922,'accessories/wearable_items01/_exp02/leather_heavy/head',0), -(21341,51923,'accessories/wearable_items01/_exp02/leather_heavy/legs',0), -(21342,51924,'accessories/wearable_items01/_exp02/leather_heavy/legs_noskirt',0), -(21343,51925,'accessories/wearable_items01/_exp02/leather_heavy/shoulders',0), -(21344,51926,'accessories/wearable_items01/_exp02/leather_heavy/skirt',0), -(21345,51927,'accessories/wearable_items01/_exp02/plate_heroic/chest',0), -(21346,51928,'accessories/wearable_items01/_exp02/plate_heroic/feet',0), -(21347,51929,'accessories/wearable_items01/_exp02/plate_heroic/forearms',0), -(21348,51930,'accessories/wearable_items01/_exp02/plate_heroic/hands',0), -(21349,51931,'accessories/wearable_items01/_exp02/plate_heroic/head',0), -(21350,51932,'accessories/wearable_items01/_exp02/plate_heroic/legs',0), -(21351,51933,'accessories/wearable_items01/_exp02/plate_heroic/shoulders',0), -(21352,51934,'accessories/wearable_items01/_exp02/robe_fire/chest',0), -(21353,51935,'accessories/wearable_items01/_exp02/robe_fire/hood',0), -(21354,51936,'accessories/wearable_items01/_exp02/robe_fire/pants',0), -(21355,51937,'accessories/wearable_items01/_exp02/robe_fire/skirt',0), -(21356,51938,'accessories/wearable_items01/_exp02/vanguard_chitin/chest',0), -(21357,51939,'accessories/wearable_items01/_exp02/vanguard_chitin/exp02_chest_parasite',0), -(21358,51940,'accessories/wearable_items01/_exp02/vanguard_chitin/feet',0), -(21359,51941,'accessories/wearable_items01/_exp02/vanguard_chitin/forearms',0), -(21360,51942,'accessories/wearable_items01/_exp02/vanguard_chitin/hands',0), -(21361,51943,'accessories/wearable_items01/_exp02/vanguard_chitin/head',0), -(21362,51944,'accessories/wearable_items01/_exp02/vanguard_chitin/legs',0), -(21363,51945,'accessories/wearable_items01/_exp02/vanguard_chitin/legs_noskirt',0), -(21364,51946,'accessories/wearable_items01/_exp02/vanguard_chitin/right',0), -(21365,51947,'accessories/wearable_items01/_exp02/vanguard_chitin/shoulders',0), -(21366,51948,'accessories/wearable_items01/_exp02/vanguard_chitin/shoulders_nopauldrons',0), -(21367,51949,'accessories/wearable_items01/_exp02/vanguard_chitin/skirt',0), -(21368,51950,'accessories/wearable_items01/_exp02/woven_monk/chest',0), -(21369,51951,'accessories/wearable_items01/_exp02/woven_monk/feet',0), -(21370,51952,'accessories/wearable_items01/_exp02/woven_monk/forearms',0), -(21371,51953,'accessories/wearable_items01/_exp02/woven_monk/hands',0), -(21372,51954,'accessories/wearable_items01/_exp02/woven_monk/head',0), -(21373,51955,'accessories/wearable_items01/_exp02/woven_monk/legs',0), -(21374,51956,'accessories/wearable_items01/_exp02/woven_monk/legs_noskirt',0), -(21375,51957,'accessories/wearable_items01/_exp02/woven_monk/shoulders',0), -(21376,51958,'accessories/wearable_items01/_exp02/woven_monk/skirt',0), -(21377,51959,'accessories/wearable_items01/_exp03/chain_heroic_pristine/chest',0), -(21378,51960,'accessories/wearable_items01/_exp03/chain_heroic_pristine/feet',0), -(21379,51961,'accessories/wearable_items01/_exp03/chain_heroic_pristine/forearms',0), -(21380,51962,'accessories/wearable_items01/_exp03/chain_heroic_pristine/hands',0), -(21381,51963,'accessories/wearable_items01/_exp03/chain_heroic_pristine/head',0), -(21382,51964,'accessories/wearable_items01/_exp03/chain_heroic_pristine/legs',0), -(21383,51965,'accessories/wearable_items01/_exp03/chain_heroic_pristine/legs_noskirt',0), -(21384,51966,'accessories/wearable_items01/_exp03/chain_heroic_pristine/shoulders',0), -(21385,51967,'accessories/wearable_items01/_exp03/chain_heroic_pristine/skirt',0), -(21386,51968,'accessories/wearable_items01/_exp03/faydark_chain_01/chest',0), -(21387,51969,'accessories/wearable_items01/_exp03/faydark_chain_01/feet',0), -(21388,51970,'accessories/wearable_items01/_exp03/faydark_chain_01/forearms',0), -(21389,51971,'accessories/wearable_items01/_exp03/faydark_chain_01/hands',0), -(21390,51972,'accessories/wearable_items01/_exp03/faydark_chain_01/head',0), -(21391,51973,'accessories/wearable_items01/_exp03/faydark_chain_01/legs',0), -(21392,51974,'accessories/wearable_items01/_exp03/faydark_chain_01/legs_noskirt',0), -(21393,51975,'accessories/wearable_items01/_exp03/faydark_chain_01/shoulders',0), -(21394,51976,'accessories/wearable_items01/_exp03/faydark_chain_01/skirt',0), -(21395,51977,'accessories/wearable_items01/_exp03/faydark_leather_01/chest',0), -(21396,51978,'accessories/wearable_items01/_exp03/faydark_leather_01/feet',0), -(21397,51979,'accessories/wearable_items01/_exp03/faydark_leather_01/forearms',0), -(21398,51980,'accessories/wearable_items01/_exp03/faydark_leather_01/hands',0), -(21399,51981,'accessories/wearable_items01/_exp03/faydark_leather_01/head',0), -(21400,51982,'accessories/wearable_items01/_exp03/faydark_leather_01/legs',0), -(21401,51983,'accessories/wearable_items01/_exp03/faydark_leather_01/legs_noskirt',0), -(21402,51984,'accessories/wearable_items01/_exp03/faydark_leather_01/shoulders',0), -(21403,51985,'accessories/wearable_items01/_exp03/faydark_leather_01/skirt',0), -(21404,51986,'accessories/wearable_items01/_exp03/faydark_plate_01/chest',0), -(21405,51987,'accessories/wearable_items01/_exp03/faydark_plate_01/feet',0), -(21406,51988,'accessories/wearable_items01/_exp03/faydark_plate_01/forearms',0), -(21407,51989,'accessories/wearable_items01/_exp03/faydark_plate_01/hands',0), -(21408,51990,'accessories/wearable_items01/_exp03/faydark_plate_01/head',0), -(21409,51991,'accessories/wearable_items01/_exp03/faydark_plate_01/legs',0), -(21410,51992,'accessories/wearable_items01/_exp03/faydark_plate_01/shoulders',0), -(21411,51993,'accessories/wearable_items01/_exp03/faydark_robe_01/chest',0), -(21412,51994,'accessories/wearable_items01/_exp03/faydark_robe_01/hood',0), -(21413,51995,'accessories/wearable_items01/_exp03/faydark_robe_01/pants',0), -(21414,51996,'accessories/wearable_items01/_exp03/faydark_robe_01/skirt',0), -(21415,51997,'accessories/wearable_items01/_exp03/kaladim_bruiser_gi_01/chest',0), -(21416,51998,'accessories/wearable_items01/_exp03/kaladim_bruiser_gi_01/pants',0), -(21417,51999,'accessories/wearable_items01/_exp03/kaladim_bruiser_gi_01/shoulders',0), -(21418,52000,'accessories/wearable_items01/_exp03/kaladim_chain_01/chest',0), -(21419,52001,'accessories/wearable_items01/_exp03/kaladim_chain_01/feet',0), -(21420,52002,'accessories/wearable_items01/_exp03/kaladim_chain_01/forearms',0), -(21421,52003,'accessories/wearable_items01/_exp03/kaladim_chain_01/hands',0), -(21422,52004,'accessories/wearable_items01/_exp03/kaladim_chain_01/head',0), -(21423,52005,'accessories/wearable_items01/_exp03/kaladim_chain_01/legs',0), -(21424,52006,'accessories/wearable_items01/_exp03/kaladim_chain_01/legs_noskirt',0), -(21425,52007,'accessories/wearable_items01/_exp03/kaladim_chain_01/shoulders',0), -(21426,52008,'accessories/wearable_items01/_exp03/kaladim_chain_01/skirt',0), -(21427,52009,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/chest',0), -(21428,52010,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/feet',0), -(21429,52011,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/forearms',0), -(21430,52012,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/hands',0), -(21431,52013,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/head',0), -(21432,52014,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/legs',0), -(21433,52015,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/legs_noskirt',0), -(21434,52016,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/right',0), -(21435,52017,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/shoulders',0), -(21436,52018,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/shoulders_nopauldrons',0), -(21437,52019,'accessories/wearable_items01/_exp03/kaladim_vanguard_01/skirt',0), -(21438,52020,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/chest',0), -(21439,52021,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/feet',0), -(21440,52022,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/forearms',0), -(21441,52023,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/hands',0), -(21442,52024,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/head',0), -(21443,52025,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/legs',0), -(21444,52026,'accessories/wearable_items01/_exp03/mistmoore_brigandine_01/shoulders',0), -(21445,52027,'accessories/wearable_items01/_exp03/mistmoore_chain_01/chest',0), -(21446,52028,'accessories/wearable_items01/_exp03/mistmoore_chain_01/feet',0), -(21447,52029,'accessories/wearable_items01/_exp03/mistmoore_chain_01/forearms',0), -(21448,52030,'accessories/wearable_items01/_exp03/mistmoore_chain_01/hands',0), -(21449,52031,'accessories/wearable_items01/_exp03/mistmoore_chain_01/head',0), -(21450,52032,'accessories/wearable_items01/_exp03/mistmoore_chain_01/legs',0), -(21451,52033,'accessories/wearable_items01/_exp03/mistmoore_chain_01/legs_noskirt',0), -(21452,52034,'accessories/wearable_items01/_exp03/mistmoore_chain_01/shoulders',0), -(21453,52035,'accessories/wearable_items01/_exp03/mistmoore_chain_01/skirt',0), -(21454,52036,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/chest',0), -(21455,52037,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/feet',0), -(21456,52038,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/forearms',0), -(21457,52039,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/hands',0), -(21458,52040,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/legs',0), -(21459,52041,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/legs_noskirt',0), -(21460,52042,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/shoulders',0), -(21461,52043,'accessories/wearable_items01/_exp03/mistmoore_heavy_cloth_01/skirt',0), -(21462,52044,'accessories/wearable_items01/_exp03/mistmoore_leather_01/chest',0), -(21463,52045,'accessories/wearable_items01/_exp03/mistmoore_leather_01/feet',0), -(21464,52046,'accessories/wearable_items01/_exp03/mistmoore_leather_01/forearms',0), -(21465,52047,'accessories/wearable_items01/_exp03/mistmoore_leather_01/hands',0), -(21466,52048,'accessories/wearable_items01/_exp03/mistmoore_leather_01/head',0), -(21467,52049,'accessories/wearable_items01/_exp03/mistmoore_leather_01/legs',0), -(21468,52050,'accessories/wearable_items01/_exp03/mistmoore_leather_01/legs_noskirt',0), -(21469,52051,'accessories/wearable_items01/_exp03/mistmoore_leather_01/shoulders',0), -(21470,52052,'accessories/wearable_items01/_exp03/mistmoore_leather_01/skirt',0), -(21471,52053,'accessories/wearable_items01/_exp03/mistmoore_plate_01/chest',0), -(21472,52054,'accessories/wearable_items01/_exp03/mistmoore_plate_01/feet',0), -(21473,52055,'accessories/wearable_items01/_exp03/mistmoore_plate_01/forearms',0), -(21474,52056,'accessories/wearable_items01/_exp03/mistmoore_plate_01/hands',0), -(21475,52057,'accessories/wearable_items01/_exp03/mistmoore_plate_01/head',0), -(21476,52058,'accessories/wearable_items01/_exp03/mistmoore_plate_01/legs',0), -(21477,52059,'accessories/wearable_items01/_exp03/mistmoore_plate_01/shoulders',0), -(21478,52060,'accessories/wearable_items01/_exp03/mistmoore_robe_01/chest',0), -(21479,52061,'accessories/wearable_items01/_exp03/mistmoore_robe_01/hood',0), -(21480,52062,'accessories/wearable_items01/_exp03/mistmoore_robe_01/pants',0), -(21481,52063,'accessories/wearable_items01/_exp03/mistmoore_robe_01/skirt',0), -(21482,52064,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/chest',0), -(21483,52065,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/feet',0), -(21484,52066,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/forearms',0), -(21485,52067,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/hands',0), -(21486,52068,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/head',0), -(21487,52069,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/legs',0), -(21488,52070,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/legs_noskirt',0), -(21489,52071,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/right',0), -(21490,52072,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/shoulders',0), -(21491,52073,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/shoulders_nopauldrons',0), -(21492,52074,'accessories/wearable_items01/_exp03/mistmoore_vanguard_01/skirt',0), -(21493,52075,'accessories/wearable_items01/_exp03/mistmoore_woven_01/chest',0), -(21494,52076,'accessories/wearable_items01/_exp03/mistmoore_woven_01/feet',0), -(21495,52077,'accessories/wearable_items01/_exp03/mistmoore_woven_01/forearms',0), -(21496,52078,'accessories/wearable_items01/_exp03/mistmoore_woven_01/hands',0), -(21497,52079,'accessories/wearable_items01/_exp03/mistmoore_woven_01/head',0), -(21498,52080,'accessories/wearable_items01/_exp03/mistmoore_woven_01/legs',0), -(21499,52081,'accessories/wearable_items01/_exp03/mistmoore_woven_01/legs_noskirt',0), -(21500,52082,'accessories/wearable_items01/_exp03/mistmoore_woven_01/shoulders',0), -(21501,52083,'accessories/wearable_items01/_exp03/mistmoore_woven_01/skirt',0), -(21502,52084,'accessories/wearable_items01/_exp03/newbee_cloth_01/chest',0), -(21503,52085,'accessories/wearable_items01/_exp03/newbee_cloth_01/feet',0), -(21504,52086,'accessories/wearable_items01/_exp03/newbee_cloth_01/forearms',0), -(21505,52087,'accessories/wearable_items01/_exp03/newbee_cloth_01/hands',0), -(21506,52088,'accessories/wearable_items01/_exp03/newbee_cloth_01/head',0), -(21507,52089,'accessories/wearable_items01/_exp03/newbee_cloth_01/legs',0), -(21508,52090,'accessories/wearable_items01/_exp03/newbee_cloth_01/legs_noskirt',0), -(21509,52091,'accessories/wearable_items01/_exp03/newbee_cloth_01/shoulders',0), -(21510,52092,'accessories/wearable_items01/_exp03/newbee_cloth_01/skirt',0), -(21511,52093,'accessories/wearable_items01/_exp03/npc_only/cloak_innoruuk_sq_01',0), -(21512,52094,'accessories/wearable_items01/_exp03/npc_only/cloak_mayong_sq_01',0), -(21513,52095,'staticobjects/signs/general/dpo_sfm_sign_floor',0), -(21514,52096,'staticobjects/liveevent/exp06/dpo_tapestry_design_quellios',0), -(21515,52097,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires_ghosted_ulteran',0), -(21516,52098,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase01_everfrost',0), -(21517,52099,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase02_everfrost',0), -(21518,52100,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase03_everfrost',0), -(21519,52101,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase04_everfrost',0), -(21520,52102,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase05_everfrost',0), -(21521,52103,'_exp06/zones/objects/exp06_prelude_events/dpo_teleportspires01_phase06_everfrost_final',0), -(21522,52104,'_exp06/zones/objects/exp06_prelude_events/dpo_fprt_vase_smallgold01_floor',0), -(21523,52105,'_exp06/zones/objects/exp06_prelude_events/dpo_gold_vase01_floor',0), -(21524,52106,'_exp06/zones/objects/exp06_prelude_events/dpo_sos_aviak_papasan01_floor',0), -(21525,52107,'_exp06/zones/objects/exp06_prelude_events/dpo_ss_vase_porcelain_small01_floor',0), -(21526,52108,'_exp06/zones/objects/exp06_rgn_odus_south/qst_scalp',1045), -(21527,52109,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_bear_trap_closed',1096), -(21528,52110,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_orc_camp_bear_trap_open',1096), -(21529,52111,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_tizmak_items01_broken_drum01',1096), -(21530,52112,'staticobjects/_exp07/exp07_rgn_great_divide/vel_othmir_cooking_hang_pot_no_fire_01',1096), -(21531,52113,'staticobjects/_exp07/exp07_rgn_great_divide/vel_othmir_nipiks_memorial_01',1096), -(21532,52114,'staticobjects/_exp07/exp07_rgn_great_divide/vel_othmir_prexus_shrine_01',1096), -(21533,52115,'staticobjects/_exp07/exp07_rgn_great_divide/vel_rock_ice_medium01',1096), -(21534,52116,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_wakin_medium01',1096), -(21535,52117,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_wakin_small01',1096), -(21536,52118,'staticobjects/_exp07/exp07_rgn_eastern_wastes/vel_rock_wakin_small02',1096), -(21537,52119,'staticobjects/battlegrounds/kd_base_gate01',1096), -(21538,52120,'staticobjects/battlegrounds/thur_entrance_gate01',1096), -(21539,52121,'staticobjects/battlegrounds/kd_base_gate01_coll',1096), -(21540,52122,'staticobjects/battlegrounds/thur_entrance_gate01_coll',1096), -(21541,52123,'staticobjects/battlegrounds/bg_def_kael_idol01_mainbase',1144), -(21542,52124,'staticobjects/battlegrounds/bg_def_kael_idol01_tower01',1144), -(21543,52125,'staticobjects/battlegrounds/bg_def_kael_idol01_tower02',1144), -(21544,52126,'staticobjects/battlegrounds/bg_def_thur_idol01_mainbase',1144), -(21545,52127,'staticobjects/battlegrounds/bg_def_thur_idol01_tower01',1144), -(21546,52128,'staticobjects/battlegrounds/bg_def_thur_idol01_tower02',1144); diff --git a/database/login/char_colors.sql b/database/login/char_colors.sql deleted file mode 100644 index 0b39bf2..0000000 --- a/database/login/char_colors.sql +++ /dev/null @@ -1,11 +0,0 @@ -DROP TABLE IF EXISTS char_colors; -CREATE TABLE char_colors ( - id INTEGER PRIMARY KEY, - char_id INTEGER NOT NULL, - signed_value INTEGER NOT NULL DEFAULT 0, - type TEXT NOT NULL, - red INTEGER NOT NULL DEFAULT 0, - green INTEGER NOT NULL DEFAULT 0, - blue INTEGER NOT NULL DEFAULT 0, - FOREIGN KEY (char_id) REFERENCES characters(id) ON DELETE CASCADE ON UPDATE CASCADE -); diff --git a/database/login/character_pictures.sql b/database/login/character_pictures.sql new file mode 100644 index 0000000..e6f4d18 --- /dev/null +++ b/database/login/character_pictures.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS character_pictures; +CREATE TABLE character_pictures ( + id INTEGER PRIMARY KEY, + server_id INTEGER NOT NULL, + account_id INTEGER NOT NULL, + character_id INTEGER NOT NULL, + picture TEXT NOT NULL, + UNIQUE(character_id, server_id, account_id) +); diff --git a/database/login/login_char_colors.sql b/database/login/login_char_colors.sql new file mode 100644 index 0000000..2b0bccb --- /dev/null +++ b/database/login/login_char_colors.sql @@ -0,0 +1,11 @@ +DROP TABLE IF EXISTS login_char_colors; +CREATE TABLE login_char_colors ( + id INTEGER PRIMARY KEY, + login_characters_id INTEGER NOT NULL, + signed_value INTEGER NOT NULL DEFAULT 0, + type TEXT NOT NULL, + red INTEGER NOT NULL DEFAULT 0, + green INTEGER NOT NULL DEFAULT 0, + blue INTEGER NOT NULL DEFAULT 0 +); +CREATE INDEX idx_login_char_colors_login_characters_id ON login_char_colors(login_characters_id); diff --git a/database/login/login_characters.sql b/database/login/login_characters.sql index b6bcf5a..7ca72b1 100644 --- a/database/login/login_characters.sql +++ b/database/login/login_characters.sql @@ -1,37 +1,36 @@ -DROP TABLE IF EXISTS `login_characters`; -CREATE TABLE `login_characters` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `account_id` int(10) unsigned NOT NULL DEFAULT 0, - `server_id` int(10) unsigned NOT NULL DEFAULT 0, - `name` varchar(64) NOT NULL DEFAULT '', - `race` tinyint(3) unsigned NOT NULL DEFAULT 0, - `class` tinyint(3) unsigned NOT NULL DEFAULT 0, - `gender` tinyint(3) unsigned NOT NULL DEFAULT 0, - `deity` tinyint(3) unsigned NOT NULL DEFAULT 0, - `body_size` float NOT NULL DEFAULT 0, - `body_age` float NOT NULL DEFAULT 0, - `current_zone` varchar(64) NOT NULL DEFAULT 'antonica', - `current_zone_id` int(10) unsigned NOT NULL DEFAULT 0, - `level` int(10) unsigned NOT NULL DEFAULT 1, - `tradeskill_class` tinyint(3) unsigned NOT NULL DEFAULT 0, - `tradeskill_level` int(10) unsigned NOT NULL DEFAULT 1, - `soga_wing_type` mediumint(8) unsigned NOT NULL, - `soga_chest_type` mediumint(8) unsigned NOT NULL, - `soga_legs_type` mediumint(8) unsigned NOT NULL, - `soga_hair_type` mediumint(8) unsigned NOT NULL, - `soga_facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0, - `legs_type` mediumint(8) unsigned NOT NULL, - `chest_type` mediumint(8) unsigned NOT NULL, - `wing_type` mediumint(8) unsigned NOT NULL, - `hair_type` mediumint(8) unsigned NOT NULL, - `facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0, - `deleted` tinyint(3) unsigned NOT NULL DEFAULT 0, - `unix_timestamp` int(10) NOT NULL DEFAULT 0, - `created_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `last_played` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `char_id` int(11) NOT NULL DEFAULT 0, - `soga_model_type` mediumint(8) NOT NULL DEFAULT 0, - `model_type` mediumint(8) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `ServerIDX` (`account_id`,`server_id`,`char_id`) +DROP TABLE IF EXISTS login_characters; +CREATE TABLE login_characters ( + id INTEGER PRIMARY KEY, + account_id INTEGER NOT NULL DEFAULT 0, + server_id INTEGER NOT NULL DEFAULT 0, + name TEXT NOT NULL DEFAULT '', + race INTEGER NOT NULL DEFAULT 0, + class INTEGER NOT NULL DEFAULT 0, + gender INTEGER NOT NULL DEFAULT 0, + deity INTEGER NOT NULL DEFAULT 0, + body_size REAL NOT NULL DEFAULT 0, + body_age REAL NOT NULL DEFAULT 0, + current_zone TEXT NOT NULL DEFAULT 'antonica', + current_zone_id INTEGER NOT NULL DEFAULT 0, + level INTEGER NOT NULL DEFAULT 1, + tradeskill_class INTEGER NOT NULL DEFAULT 0, + tradeskill_level INTEGER NOT NULL DEFAULT 1, + soga_wing_type INTEGER NOT NULL, + soga_chest_type INTEGER NOT NULL, + soga_legs_type INTEGER NOT NULL, + soga_hair_type INTEGER NOT NULL, + soga_facial_hair_type INTEGER NOT NULL DEFAULT 0, + legs_type INTEGER NOT NULL, + chest_type INTEGER NOT NULL, + wing_type INTEGER NOT NULL, + hair_type INTEGER NOT NULL, + facial_hair_type INTEGER NOT NULL DEFAULT 0, + deleted INTEGER NOT NULL DEFAULT 0, + unix_timestamp INTEGER NOT NULL DEFAULT 0, + created_date INTEGER NOT NULL DEFAULT (strftime('%s', 'now')), + last_played INTEGER NOT NULL DEFAULT 0, + char_id INTEGER NOT NULL DEFAULT 0, + soga_model_type INTEGER NOT NULL DEFAULT 0, + model_type INTEGER NOT NULL DEFAULT 0 ); +CREATE INDEX idx_login_characters_server ON login_characters(account_id, server_id, char_id); diff --git a/database/login/login_config.sql b/database/login/login_config.sql index 41a6f47..d1d3466 100644 --- a/database/login/login_config.sql +++ b/database/login/login_config.sql @@ -1,91 +1,13 @@ --- Table: `login_config` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS login_config; +CREATE TABLE login_config ( + id INTEGER PRIMARY KEY, + config_name TEXT NOT NULL DEFAULT '', + config_value TEXT NOT NULL DEFAULT '' +); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_config` --- - -DROP TABLE IF EXISTS `login_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_config` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `config_name` varchar(64) NOT NULL DEFAULT '', - `config_value` varchar(64) NOT NULL DEFAULT '', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC COMMENT='moving some hard-coded values out of Login source to this ta'; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `login_config` --- - -LOCK TABLES `login_config` WRITE; -/*!40000 ALTER TABLE `login_config` DISABLE KEYS */; -INSERT INTO `login_config` VALUES +INSERT INTO login_config VALUES (1,'login_heartbeat','1582776503'), (2,'max_server_offline_age','604800'), (3,'max_characters_per_account','30'), (4,'max_level_for_vet_reward','20'), (5,'max_characters_per_account','30'); -/*!40000 ALTER TABLE `login_config` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/login_equipment.sql b/database/login/login_equipment.sql index 85c5719..b898fe1 100644 --- a/database/login/login_equipment.sql +++ b/database/login/login_equipment.sql @@ -1,61 +1,15 @@ --- Table: `login_equipment` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_equipment` --- - -DROP TABLE IF EXISTS `login_equipment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_equipment` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `login_characters_id` int(10) unsigned NOT NULL DEFAULT 0, - `equip_type` smallint(5) unsigned NOT NULL DEFAULT 0, - `red` tinyint(3) unsigned NOT NULL DEFAULT 255, - `green` tinyint(3) unsigned NOT NULL DEFAULT 255, - `blue` tinyint(3) unsigned NOT NULL DEFAULT 255, - `highlight_red` tinyint(3) unsigned NOT NULL DEFAULT 255, - `highlight_green` tinyint(3) unsigned NOT NULL DEFAULT 255, - `highlight_blue` tinyint(3) unsigned NOT NULL DEFAULT 255, - `slot` int(11) NOT NULL DEFAULT 0, - `last_updated` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`), - UNIQUE KEY `CharSlotIDX` (`login_characters_id`,`slot`) -) ENGINE=MyISAM AUTO_INCREMENT=32722 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for login_equipment) -ALTER TABLE `login_equipment` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; +DROP TABLE IF EXISTS login_equipment; +CREATE TABLE login_equipment ( + id INTEGER PRIMARY KEY, + login_characters_id INTEGER NOT NULL DEFAULT 0, + equip_type INTEGER NOT NULL DEFAULT 0, + red INTEGER NOT NULL DEFAULT 255, + green INTEGER NOT NULL DEFAULT 255, + blue INTEGER NOT NULL DEFAULT 255, + highlight_red INTEGER NOT NULL DEFAULT 255, + highlight_green INTEGER NOT NULL DEFAULT 255, + highlight_blue INTEGER NOT NULL DEFAULT 255, + slot INTEGER NOT NULL DEFAULT 0, + last_updated INTEGER NOT NULL DEFAULT (strftime('%s', 'now')), + UNIQUE(login_characters_id, slot) +); diff --git a/database/login/login_versions.sql b/database/login/login_versions.sql index 489c143..5f40063 100644 --- a/database/login/login_versions.sql +++ b/database/login/login_versions.sql @@ -1,75 +1,10 @@ --- Table: `login_versions` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS login_versions; +CREATE TABLE login_versions ( + id INTEGER PRIMARY KEY, + version TEXT NOT NULL UNIQUE DEFAULT '' +); -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_versions` --- - -DROP TABLE IF EXISTS `login_versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_versions` ( - `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, - `version` varchar(30) NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `NewIndex` (`version`) -) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `login_versions` --- - -LOCK TABLES `login_versions` WRITE; -/*!40000 ALTER TABLE `login_versions` DISABLE KEYS */; -INSERT INTO `login_versions` VALUES +INSERT INTO login_versions VALUES (4,'0.7.2-dev'), (1,'0.7'), (2,'0.7.1-dev'), @@ -78,17 +13,3 @@ INSERT INTO `login_versions` VALUES (6,'0.7.3-dev'), (7,'0.8.0-taurus2'), (8,'*'); -/*!40000 ALTER TABLE `login_versions` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/login_worldservers.sql b/database/login/login_worldservers.sql deleted file mode 100644 index 62feaf0..0000000 --- a/database/login/login_worldservers.sql +++ /dev/null @@ -1,81 +0,0 @@ --- Table: `login_worldservers` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_worldservers` --- - -DROP TABLE IF EXISTS `login_worldservers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_worldservers` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(250) NOT NULL DEFAULT '', - `disabled` tinyint(3) unsigned NOT NULL DEFAULT 0, - `account` varchar(30) NOT NULL DEFAULT '', - `chat_shortname` varchar(20) NOT NULL DEFAULT '', - `description` text NOT NULL, - `server_type` varchar(15) NOT NULL DEFAULT '0', - `password` varchar(256) NOT NULL DEFAULT '', - `serverop` varchar(64) NOT NULL DEFAULT '', - `lastseen` int(10) unsigned NOT NULL DEFAULT 0, - `admin_id` int(11) unsigned NOT NULL DEFAULT 0, - `greenname` tinyint(1) unsigned NOT NULL DEFAULT 0, - `showdown` tinyint(4) NOT NULL DEFAULT 0, - `chat` varchar(20) NOT NULL DEFAULT '0', - `note` tinytext NOT NULL, - `ip_address` varchar(50) NOT NULL DEFAULT '0', - `reset_needed` tinyint(3) unsigned NOT NULL DEFAULT 0, - `created_date` int(10) unsigned NOT NULL DEFAULT 0, - `hide_status` tinyint(1) unsigned NOT NULL DEFAULT 0, - `hide_details` tinyint(1) unsigned NOT NULL DEFAULT 0, - `hide_admin` tinyint(1) unsigned NOT NULL DEFAULT 0, - `hide_serverlist` tinyint(1) NOT NULL DEFAULT 0, - `server_url` varchar(250) DEFAULT '', - `server_category` enum('Standard','Preferred','Premium','Development') DEFAULT 'Standard', - `server_admin` varchar(64) NOT NULL DEFAULT '', - `server_sticky` tinyint(1) unsigned NOT NULL DEFAULT 0, - `gm_list` text DEFAULT NULL, - `reset_zone_descriptions` tinyint(1) unsigned NOT NULL DEFAULT 0, - `reset_login_appearances` tinyint(1) unsigned NOT NULL DEFAULT 0, - `login_version` varchar(32) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - UNIQUE KEY `account` (`account`), - UNIQUE KEY `NameIDX` (`name`) -) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for login_worldservers) -ALTER TABLE `login_worldservers` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/login_worldservers_reset.sql b/database/login/login_worldservers_reset.sql deleted file mode 100644 index caa5a56..0000000 --- a/database/login/login_worldservers_reset.sql +++ /dev/null @@ -1,90 +0,0 @@ --- Table: `login_worldservers_reset` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_worldservers_reset` --- - -DROP TABLE IF EXISTS `login_worldservers_reset`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_worldservers_reset` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `world_id` int(11) unsigned NOT NULL, - `token` varchar(64) NOT NULL, - `new_plain` varchar(64) NOT NULL, - `new_hash` varchar(128) NOT NULL, - `expires` int(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `token_UNIQUE` (`token`), - KEY `idx_world_id` (`world_id`) -) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `login_worldservers_reset` --- - -LOCK TABLES `login_worldservers_reset` WRITE; -/*!40000 ALTER TABLE `login_worldservers_reset` DISABLE KEYS */; -/*!40000 ALTER TABLE `login_worldservers_reset` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/login_worldservers_verify.sql b/database/login/login_worldservers_verify.sql deleted file mode 100644 index dd66dfd..0000000 --- a/database/login/login_worldservers_verify.sql +++ /dev/null @@ -1,88 +0,0 @@ --- Table: `login_worldservers_verify` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_worldservers_verify` --- - -DROP TABLE IF EXISTS `login_worldservers_verify`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_worldservers_verify` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `world_id` int(11) unsigned NOT NULL, - `token` varchar(64) NOT NULL, - `expires` int(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `token_UNIQUE` (`token`), - KEY `idx_world_id` (`world_id`) -) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `login_worldservers_verify` --- - -LOCK TABLES `login_worldservers_verify` WRITE; -/*!40000 ALTER TABLE `login_worldservers_verify` DISABLE KEYS */; -/*!40000 ALTER TABLE `login_worldservers_verify` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/login_worldstats.sql b/database/login/login_worldstats.sql deleted file mode 100644 index 6bf52e6..0000000 --- a/database/login/login_worldstats.sql +++ /dev/null @@ -1,58 +0,0 @@ --- Table: `login_worldstats` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `login_worldstats` --- - -DROP TABLE IF EXISTS `login_worldstats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `login_worldstats` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `world_id` int(11) unsigned NOT NULL DEFAULT 0, - `world_status` int(11) NOT NULL DEFAULT -1, - `current_players` int(11) unsigned NOT NULL DEFAULT 0, - `current_zones` int(11) unsigned NOT NULL DEFAULT 0, - `connected_time` timestamp NOT NULL DEFAULT current_timestamp(), - `last_update` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `world_max_level` tinyint(3) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `NewIndex` (`world_id`) -) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for login_worldstats) -ALTER TABLE `login_worldstats` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/ls_character_picture.sql b/database/login/ls_character_picture.sql deleted file mode 100644 index 04db90b..0000000 --- a/database/login/ls_character_picture.sql +++ /dev/null @@ -1,55 +0,0 @@ --- Table: `ls_character_picture` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `ls_character_picture` --- - -DROP TABLE IF EXISTS `ls_character_picture`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `ls_character_picture` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `server_id` int(10) unsigned NOT NULL, - `account_id` int(10) unsigned NOT NULL, - `character_id` int(10) NOT NULL, - `picture` text NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `character_id` (`character_id`,`server_id`,`account_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for ls_character_picture) -ALTER TABLE `ls_character_picture` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/ls_world_zones.sql b/database/login/ls_world_zones.sql deleted file mode 100644 index 6149405..0000000 --- a/database/login/ls_world_zones.sql +++ /dev/null @@ -1,57 +0,0 @@ --- Table: `ls_world_zones` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `ls_world_zones` --- - -DROP TABLE IF EXISTS `ls_world_zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `ls_world_zones` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `server_id` int(10) unsigned NOT NULL DEFAULT 0, - `zone_id` int(10) unsigned NOT NULL DEFAULT 0, - `name` varchar(128) NOT NULL DEFAULT '', - `description` varchar(128) NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `id` (`id`), - UNIQUE KEY `IDXServerZone` (`server_id`,`zone_id`), - KEY `id_2` (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for ls_world_zones) -ALTER TABLE `ls_world_zones` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/test.db b/database/login/test.db deleted file mode 100644 index a36bb6b383a601b812690a14cd656c5d96146e0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1871872 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⪼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
xig8ei_I&xtTRHSU}%!uUuKXKJY0(7Dk^4n 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

@I_vcB} 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⪼hcl!a!s!0@NZ|QH9oHiy3qB`V3 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 Pi0Q@@$tT}?tgQbZUFo~D diff --git a/database/login/visual_states.sql b/database/login/visual_states.sql deleted file mode 100644 index 15deea2..0000000 --- a/database/login/visual_states.sql +++ /dev/null @@ -1,20210 +0,0 @@ --- Table: `visual_states` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `visual_states` --- - -DROP TABLE IF EXISTS `visual_states`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `visual_states` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `visual_state_id` int(10) unsigned NOT NULL DEFAULT 0, - `name` varchar(250) NOT NULL DEFAULT 'None', - `min_client_version` smallint(5) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `VisIDX` (`visual_state_id`) -) ENGINE=InnoDB AUTO_INCREMENT=20123 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `visual_states` --- - -LOCK TABLES `visual_states` WRITE; -/*!40000 ALTER TABLE `visual_states` DISABLE KEYS */; -INSERT INTO `visual_states` VALUES -(1,16,'1h_sword_idle',0), -(2,50,'2h_sword_enter',0), -(3,52,'2h_sword_idle',0), -(4,101,'bostaff_idle',0), -(5,121,'bow',0), -(6,125,'cackle',0), -(7,126,'cast',0), -(8,138,'cast_arch_circle',0), -(9,139,'cast_ball',0), -(10,140,'cast_bright_ring',0), -(11,141,'cast_columns',0), -(12,142,'cast_dark_ring',0), -(13,143,'cast_dbl_bright_ring',0), -(14,144,'cast_druid',0), -(15,145,'cast_dustpuff',0), -(16,146,'cast_heal',0), -(17,147,'cast_heal_blur',0), -(18,148,'cast_lightning',0), -(19,149,'cast_mage',0), -(20,150,'cast_mandala',0), -(21,151,'cast_mesmerize',0), -(22,152,'cast_necromancer',0), -(23,153,'cast_nuke_mental',0), -(24,154,'cast_pfx_dust_leaves_l',0), -(25,155,'cast_pfx_dust_leaves_r',0), -(26,158,'cast_pfx_glow_firepuff_l',0), -(27,159,'cast_pfx_glow_firepuff_r',0), -(28,160,'cast_pfx_glow_galv_l',0), -(29,161,'cast_pfx_glow_galv_r',0), -(30,162,'cast_pfx_glow_prism_l',0), -(31,163,'cast_pfx_glow_prism_r',0), -(32,166,'cast_pfx_l',0), -(33,167,'cast_pfx_magenuke_l',0), -(34,168,'cast_pfx_magenuke_r',0), -(35,169,'cast_pfx_r',0), -(36,172,'cast_placeholder_l',0), -(37,173,'cast_placeholder_r',0), -(38,174,'cast_priest',0), -(39,175,'cast_rays',0), -(40,176,'cast_rays_l',0), -(41,177,'cast_rays_mental',0), -(42,178,'cast_rays_r',0), -(43,180,'cast_rings_crescent',0), -(44,181,'cast_rune_ring',0), -(45,182,'cast_runedraw',0), -(46,183,'cast_runes_randomorbits',0), -(47,184,'cast_spark_circle',0), -(48,185,'cast_sparktrail_spiral',0), -(49,186,'cast_spotsparks_ring',0), -(50,187,'cast_swirlie',0), -(51,188,'cast_vault',0), -(52,189,'cast_ward',0), -(53,219,'crouch_enter',0), -(54,220,'crouch_exit',0), -(55,221,'crouch_idle',0), -(56,228,'dead',0), -(57,229,'dead_enter',0), -(58,267,'dual_wield_idle',0), -(59,290,'fall',0), -(60,298,'flourish',0), -(61,308,'gag',0), -(62,323,'idle',0), -(63,324,'idle01',0), -(64,325,'idle02',0), -(65,372,'monk_idle',0), -(66,396,'notworthy',0), -(67,419,'pike_idle',0), -(68,434,'procedural_hit',0), -(69,450,'pugilist_idle',0), -(70,489,'result_bash',0), -(71,490,'result_buff_limbs',0), -(72,491,'result_fire',0), -(73,492,'result_firetrail',0), -(74,493,'result_firews',0), -(75,495,'result_gather_mana1',0), -(76,496,'result_ghost',0), -(77,497,'result_heal',0), -(78,498,'result_heal11',0), -(79,499,'result_heal9',0), -(80,500,'result_kick',0), -(81,501,'result_lightning',0), -(82,502,'result_loot',0), -(83,503,'result_loot_ash',0), -(84,504,'result_mesmerize',0), -(85,505,'result_placeholder',0), -(86,506,'result_spawn',0), -(87,507,'result_strike',0), -(88,508,'result_stun',0), -(89,509,'result_test',0), -(90,510,'result_ward',0), -(91,511,'result_ward1',0), -(92,517,'run',0), -(93,518,'rune_fire_orbiting',0), -(94,538,'sit_enter',0), -(95,539,'sit_exit',0), -(96,540,'sit_idle',0), -(97,626,'spell_placeholder',0), -(98,627,'spell_root',0), -(99,722,'trail',0), -(100,746,'untrained_idle',0), -(101,891,'yawn',0), -(102,893,'cast_cloudring',0), -(103,894,'cast_dblring_blend',0), -(104,895,'cast_lhand_sparkle_trail',0), -(105,902,'cast_mistring',0), -(106,909,'cast_rhand_sparkle_trail',0), -(107,968,'cast_cloudsphere',0), -(108,1004,'horse_idle',0), -(109,1026,'1h_sword_attack',0), -(110,1027,'1h_sword_attack01',0), -(111,1028,'1h_sword_attack02',0), -(112,1029,'1h_sword_attack03',0), -(113,1044,'cast_rays_cloud',0), -(114,1045,'cast_winkers',0), -(115,1053,'procedural_ouch',0), -(116,1054,'result_bear',0), -(117,1114,'1h_sword_death_blow',0), -(118,1162,'procedural_parry',0), -(119,1163,'ignite_weapon',0), -(120,1181,'monk_attack',0), -(121,1201,'monk_attack01',0), -(122,1206,'pike_attack',0), -(123,1211,'cast_orbiting_rings',0), -(124,1212,'cast_spiral_trace',0), -(125,1218,'cast_elec_hands',0), -(126,1226,'cast_pfx_glow_trail_l',0), -(127,1227,'cast_pfx_glow_trail_r',0), -(128,1228,'cast_hammer_toss',0), -(129,1229,'result_hammer_approaching',0), -(130,1230,'result_hammer_explode',0), -(131,1237,'2h_sword_attack',0), -(132,1243,'dual_wield_attack',0), -(133,1244,'dual_wield_attack01',0), -(134,1245,'dual_wield_attack02',0), -(135,1258,'cast_scimitar_toss',0), -(136,1259,'cast_spark_sphere',0), -(137,1261,'result_scimitar_approaching',0), -(138,1262,'result_scimitar_explode',0), -(139,1271,'1h_sword_dodge_backhand',0), -(140,1272,'1h_sword_dodge_down',0), -(141,1273,'1h_sword_dodge_forehand',0), -(142,1274,'1h_sword_ouch_backhand',0), -(143,1275,'1h_sword_ouch_down',0), -(144,1276,'1h_sword_ouch_forehand',0), -(145,1277,'1h_sword_parry_backhand',0), -(146,1278,'1h_sword_parry_down',0), -(147,1279,'1h_sword_parry_forehand',0), -(148,1280,'cast_distort',0), -(149,1281,'cast_distort_rect',0), -(150,1282,'cast_trail_leftarm',0), -(151,1283,'cast_trail_rightarm',0), -(152,1284,'monk_attack02',0), -(153,1286,'monk_dodge_backhand',0), -(154,1287,'monk_dodge_down',0), -(155,1295,'result_blast_cone',0), -(156,1296,'result_camera_shake',0), -(157,1297,'result_ground_blast',0), -(158,1298,'result_lightning_bolt1',0), -(159,1299,'result_lion_spirit',0), -(160,1300,'result_phoenix_rising',0), -(161,1302,'result_flash1',0), -(162,1303,'result_lightning_bolt2',0), -(163,1304,'result_lightning_bolt3',0), -(164,1305,'result_spirit_of_the_wolf',0), -(165,1307,'cast_runedraw_blue',0), -(166,1314,'result_phoenix_descending',0), -(167,1316,'cast_dustpuff_rfoot',0), -(168,1317,'cast_trail_rightfoot',0), -(169,1318,'cast_trail_rightshin',0), -(170,1323,'1h_crush_attack',0), -(171,1324,'1h_crush_attack01',0), -(172,1325,'1h_crush_attack02',0), -(173,1326,'1h_crush_attack03',0), -(174,1332,'1h_crush_dodge_backhand',0), -(175,1333,'1h_crush_dodge_down',0), -(176,1334,'1h_crush_dodge_forehand',0), -(177,1335,'1h_crush_dodge_thrust',0), -(178,1338,'1h_crush_idle',0), -(179,1339,'1h_crush_ouch_backhand',0), -(180,1340,'1h_crush_ouch_down',0), -(181,1341,'1h_crush_ouch_forehand',0), -(182,1342,'1h_crush_ouch_thrust',0), -(183,1343,'1h_crush_parry_backhand',0), -(184,1344,'1h_crush_parry_down',0), -(185,1345,'1h_crush_parry_forehand',0), -(186,1346,'1h_crush_parry_thrust',0), -(187,1350,'1h_pierce_attack',0), -(188,1351,'1h_pierce_attack01',0), -(189,1355,'1h_pierce_dodge_backhand',0), -(190,1356,'1h_pierce_dodge_down',0), -(191,1357,'1h_pierce_dodge_forehand',0), -(192,1358,'1h_pierce_dodge_thrust',0), -(193,1361,'1h_pierce_idle',0), -(194,1362,'1h_pierce_ouch_backhand',0), -(195,1363,'1h_pierce_ouch_down',0), -(196,1364,'1h_pierce_ouch_forehand',0), -(197,1365,'1h_pierce_ouch_thrust',0), -(198,1366,'1h_pierce_parry_backhand',0), -(199,1367,'1h_pierce_parry_down',0), -(200,1368,'1h_pierce_parry_forehand',0), -(201,1369,'1h_pierce_parry_thrust',0), -(202,1373,'1h_sword_death_blow01',0), -(203,1374,'1h_sword_dodge_thrust',0), -(204,1375,'1h_sword_ouch_thrust',0), -(205,1376,'1h_sword_parry_thrust',0), -(206,1384,'cast_dustpuff_ws',0), -(207,1386,'cast_glow_ring_wavyrays',0), -(208,1387,'cast_glow_ring_wavyrays_l',0), -(209,1388,'cast_glow_ring_wavyrays_r',0), -(210,1412,'cast_sphere_lightning',0), -(211,1413,'cast_sphere_lightning2',0), -(212,1414,'cast_sphere_lightning_r',0), -(213,1423,'result_charge',0), -(214,1424,'result_ghost_shield',0), -(215,1425,'result_heal_heart',0), -(216,1426,'result_sparkly_swirl_flare',0), -(217,1432,'cast_fighter',0), -(218,1433,'cast_ghost_shield_summoned',0), -(219,1439,'cast_scout',0), -(220,1441,'cast_ghost_shield_summoned_sparkles',0), -(221,1444,'result_glint2',0), -(222,1445,'result_trail',0), -(223,1453,'2h_sword_attack01',0), -(224,1454,'2h_sword_attack02',0), -(225,1457,'2h_sword_dodge_backhand',0), -(226,1458,'2h_sword_dodge_down',0), -(227,1459,'2h_sword_dodge_forehand',0), -(228,1460,'2h_sword_ouch_backhand',0), -(229,1461,'2h_sword_ouch_down',0), -(230,1462,'2h_sword_ouch_forehand',0), -(231,1472,'result_crystal_shield',0), -(232,1481,'cast_snake_idling',0), -(233,1482,'result_horse_running',0), -(234,1483,'result_lion_attacking',0), -(235,1484,'result_lion_roaring',0), -(236,1485,'result_snake_striking',0), -(237,1490,'result_cat_leaping',0), -(238,1491,'result_cold_blast',0), -(239,1492,'result_cold_breath',0), -(240,1493,'state_breath_cold',0), -(241,1494,'result_cold_forced_shader',0), -(242,1495,'result_cold_ice_crystals',0), -(243,1496,'result_poison_breath',0), -(244,1497,'result_poison_cysts_growing',0), -(245,1498,'result_poison_forced_shader',0), -(246,1503,'cast_ball_fire',0), -(247,1505,'cast_spotsparks_ring2',0), -(248,1506,'cast_spotsparks_ring3',0), -(249,1521,'result_poison_cysts_blast',0), -(250,1523,'cast_lhand_sparkle_trail_t',0), -(251,1524,'cast_poison_dragon_breath',0), -(252,1525,'cast_rhand_sparkle_trail_t',0), -(253,1528,'result_poison_whirlwind',0), -(254,1544,'cast_distort_leftfoot',0), -(255,1546,'cast_distort_weaponrootleft',0), -(256,1547,'cast_distort_weaponrootright',0), -(257,1548,'cast_dustpuff_lfoot',0), -(258,1549,'cast_dustpuff_weaponrootleft',0), -(259,1550,'cast_dustpuff_weaponrootright',0), -(260,1556,'result_fire_ring_green_medium',0), -(261,1557,'result_poison_cyst_vomit',0), -(262,1558,'result_runes_rising',0), -(263,1559,'result_teleporter_coalesce',0), -(264,1563,'cast_cleric',0), -(265,1564,'cast_coercer',0), -(266,1566,'cast_defiler',0), -(267,1567,'cast_enchanter',0), -(268,1568,'cast_fury',0), -(269,1569,'cast_illusionist',0), -(270,1570,'cast_inquisitor',0), -(271,1571,'cast_mystic',0), -(272,1572,'cast_shaman',0), -(273,1573,'cast_sorcerer',0), -(274,1574,'cast_summoner',0), -(275,1575,'cast_templar',0), -(276,1576,'cast_warden',0), -(277,1577,'cast_warlock',0), -(278,1578,'cast_wizard',0), -(279,1580,'result_bull_stomping',0), -(280,1581,'cast_hammer_sparkling_floating',0), -(281,1582,'cast_mist_sphere_add',0), -(282,1583,'cast_mist_sphere_blend',0), -(283,1584,'cast_swirlies_smoke',0), -(284,1585,'cast_swirlies_smoke_blend',0), -(285,1592,'result_fire_green',0), -(286,1593,'result_poison_cysts_growing_giant',0), -(287,1594,'cast_forced_flasher_diff_noise',0), -(288,1595,'cast_forced_flasher_oceanseamless',0), -(289,1596,'cast_forced_flasher_streaks',0), -(290,1597,'cast_forced_flasher_tiledfoam',0), -(291,1598,'cast_forced_flasher_tiledfoam2',0), -(292,1599,'cast_forced_flasher_tiledfoam3',0), -(293,1600,'cast_forced_flasher_tiledfoam4',0), -(294,1625,'result_fire_engulf',0), -(295,1630,'cast_expanding_rings',0), -(296,1631,'cast_forced_flasher_fadein_diff_noise',0), -(297,1644,'pugilist_attack',0), -(298,1646,'pugilist_attack02',0), -(299,1659,'result_fire_slam',0), -(300,1660,'cast_distort_flat',0), -(301,1661,'cast_mandala_blobs',0), -(302,1662,'result_ground_blast_lava',0), -(303,1665,'spell_root_colored',0), -(304,1667,'cast_dragon_wing_dust',0), -(305,1683,'result_camera_shake_wider',0), -(306,1684,'result_stunned',0), -(307,1686,'cast_snake_shrinking',0), -(308,1727,'horse_enter',0), -(309,1753,'levelup',0), -(310,1756,'result_trail_lightning',0), -(311,1764,'result_trail_motion',0), -(312,1765,'result_tree_morph',0), -(313,1766,'result_wood_forced_shader',0), -(314,1767,'result_wood_spikes_growing',0), -(315,1773,'cast_fire_trail',0), -(316,1793,'result_cactus_spikes_growing',0), -(317,1794,'result_cold_fog',0), -(318,1795,'result_colored_forced_shader',0), -(319,1796,'result_ghost_forced_shader',0), -(320,1797,'result_snowflakes_growing',0), -(321,1798,'result_snowstorm',0), -(322,1799,'result_sparkles_clinging',0), -(323,1800,'result_teleport_sparkle',0), -(324,1801,'result_teleport_vanish',0), -(325,1802,'result_wood_roots_growing',0), -(326,1803,'result_teleport_appear',0), -(327,1806,'cast_flasher',0), -(328,1807,'cast_pfx_trace_puffs_l',0), -(329,1808,'cast_pfx_trace_puffs_r',0), -(330,1823,'cast_fire_whip_circling',0), -(331,1832,'result_spark_burst',0), -(332,1849,'cast_enthralling_fetters_circling',0), -(333,1850,'cast_enthralling_fetters_circling_ghostly',0), -(334,1851,'cast_testbones',0), -(335,1853,'result_clay_red_forced_shader',0), -(336,1854,'result_enthralling_fetters',0), -(337,1855,'result_metal_rusty_forced_shader',0), -(338,1859,'result_clay_chunks_dropping',0), -(339,1860,'result_flash',0), -(340,1861,'result_water_dripping',0), -(341,1862,'result_water_forced_shader',0), -(342,1863,'result_bubble_stream',0), -(343,1864,'result_ghost_fish_circling',0), -(344,1865,'cast_testbones_vgraph',0), -(345,1866,'result_ice_blast',0), -(346,1867,'result_ice_crystals_dropping',0), -(347,1868,'result_icy_cage',0), -(348,1869,'cast_mandala_electricity',0), -(349,1870,'cast_mandala_streaks',0), -(350,1871,'result_icy_cage_blast_ring',0), -(351,1872,'cast_rune_ring_good',0), -(352,1873,'cast_rune_ring_rotate',0), -(353,1874,'result_icicles_breaking',0), -(354,1875,'result_icy_comet',0), -(355,1876,'result_icy_comet_exploding',0), -(356,1879,'result_glacial_wall',0), -(357,1880,'result_glacial_wall_sparkles',0), -(358,1881,'result_ice_shields_burning',0), -(359,1882,'pike_attack01',0), -(360,1883,'pike_attack02',0), -(361,1901,'result_clay_shields',0), -(362,1902,'result_scale_skin_forced_shader',0), -(363,1904,'result_color_shower',0), -(364,1905,'result_dispell1_out',0), -(365,1906,'result_verdant_genesis',0), -(366,1907,'result_attract_bubbles',0), -(367,1909,'result_offering_of_vitae',0), -(368,1910,'result_sparkles_clinging_soft',0), -(369,1911,'result_bestowal_of_vitae',0), -(370,1912,'result_ethereal_ward',0), -(371,1913,'result_dps_decrease',0), -(372,1914,'result_smite',0), -(373,1938,'result_ember_kite_shields_burning',0), -(374,1939,'result_ice_sword_breaking',0), -(375,1942,'result_charm',0), -(376,1943,'result_rainbow_forced_shader',0), -(377,1945,'result_ember_swords_burning',0), -(378,1946,'result_ghost_sword_breaking',0), -(379,1947,'result_offering_of_vitae_2',0), -(380,1953,'result_smite_2',0), -(381,1954,'result_tellurian_recruit',0), -(382,1962,'result_expand_ring_screech',0), -(383,1963,'result_grim_champion',0), -(384,1964,'result_shockwave_sparkles',0), -(385,1965,'result_tremor',0), -(386,1966,'bostaff_attack',0), -(387,1967,'bostaff_attack01',0), -(388,1968,'bostaff_attack02',0), -(389,1969,'bostaff_attack03',0), -(390,1986,'result_bloodlust',0), -(391,1987,'result_haste',0), -(392,1994,'cast_forced_flasher_tiledfoam3_scroll',0), -(393,1995,'cast_mage_old',0), -(394,2000,'result_backdraft',0), -(395,2001,'result_sanction_of_merit',0), -(396,2002,'result_toxin_out',0), -(397,2003,'result_white_radiance',0), -(398,2017,'result_explosion_fireworks',0), -(399,2018,'result_explosion_fireworks_ground',0), -(400,2031,'result_distort_dot',0), -(401,2032,'result_distort_hit',0), -(402,2036,'result_bone_cage_1',0), -(403,2037,'result_fiery_comet_descending',0), -(404,2038,'result_spiral_smite',0), -(405,2049,'result_weakness',0), -(406,2065,'result_bloodlust_2',0), -(407,2066,'result_colored_radiance',0), -(408,2073,'result_poison_cloud',0), -(409,2074,'result_smoke_sphere',0), -(410,2082,'result_decree_of_faith',0), -(411,2083,'result_dust_fall',0), -(412,2084,'result_fascinate',0), -(413,2085,'result_sparkle_blast',0), -(414,2103,'aura_mage',0), -(415,2104,'aura_priest',0), -(416,2111,'result_statue',0), -(417,2114,'bow_dodge_backhand',0), -(418,2115,'bow_dodge_down',0), -(419,2116,'bow_dodge_forehand',0), -(420,2117,'bow_dodge_thrust',0), -(421,2120,'bow_idle',0), -(422,2121,'bow_ouch_backhand',0), -(423,2122,'bow_ouch_down',0), -(424,2123,'bow_ouch_forehand',0), -(425,2124,'bow_ouch_thrust',0), -(426,2139,'cast_pfx_glow_galv_ws_l',0), -(427,2140,'cast_pfx_glow_galv_ws_r',0), -(428,2141,'result_bubble_ring',0), -(429,2142,'result_sparkles_out',0), -(430,2145,'cast_orbiting_rings2',0), -(431,2178,'cast_fuliginous',0), -(432,2188,'result_enthralling_fetters_ghostly',0), -(433,2198,'cast_sparkles_in',0), -(434,2208,'result_swirly_column',0), -(435,2228,'result_instant_lifetap',0), -(436,2229,'result_ot_lifetap',0), -(437,2248,'result_mouth_in',0), -(438,2249,'result_sparkle_scan_up',0), -(439,2250,'result_spiral_up',0), -(440,2258,'cast_bard',0), -(441,2259,'cast_crusader',0), -(442,2260,'cast_dirge',0), -(443,2261,'cast_paladin',0), -(444,2263,'cast_shadowknight',0), -(445,2264,'cast_troubador',0), -(446,2270,'cast_sawdust',0), -(447,2507,'result_lightning_shimmer',0), -(448,2525,'persist_pet_air_fragment',0), -(449,2526,'persist_pet_chaos_fragment',0), -(450,2527,'persist_pet_earth_fragment',0), -(451,2528,'persist_pet_fire_fragment',0), -(452,2529,'persist_pet_fire_servant',0), -(453,2530,'persist_pet_ice_servant',0), -(454,2531,'persist_pet_lightning_servant',0), -(455,2532,'persist_pet_water_fragment',0), -(456,2536,'cast_distort_p3',0), -(457,2538,'cast_explosion_p5',0), -(458,2544,'result_flash_weapon_red',0), -(459,2545,'result_shield',0), -(460,2558,'cast_angry_burst',0), -(461,2559,'cast_cold_dragon_breath',0), -(462,2560,'cast_distortion_hit_minimal',0), -(463,2561,'cast_glow_distort',0), -(464,2563,'cast_void_dragon_breath',0), -(465,2564,'result_sparks_360_p5',0), -(466,2565,'result_void_whirlwind',0), -(467,2588,'cast_distort_rightfoot_ws',0), -(468,2589,'cast_dragon_pbae_cold',0), -(469,2590,'cast_dragon_pbae_heat',0), -(470,2591,'cast_dragon_pbae_mental',0), -(471,2592,'cast_dragon_pbae_poison',0), -(472,2593,'cast_dragon_pbae_void',0), -(473,2594,'cast_dragon_tae_mental',0), -(474,2595,'cast_fire_foot',0), -(475,2597,'cast_spark_sphere_ws_p5',0), -(476,2599,'result_circle_blast_p5',0), -(477,2600,'result_cold_ice_crystals_rightfoot',0), -(478,2601,'result_flash_weapon_red_min',0), -(479,2602,'result_golden_glow',0), -(480,2603,'result_ice_blast_rightfoot',0), -(481,2604,'result_silver_glow',0), -(482,2623,'cast_dark_forced_shader',0), -(483,2624,'cast_expand_ring_ws',0), -(484,2626,'cast_stun_stars',0), -(485,2627,'cast_taunt',0), -(486,2636,'cast_dragon_pbae_lightning',0), -(487,2637,'cast_dragon_tae_lightning',0), -(488,2642,'result_dust_black',0), -(489,2643,'result_spark_burst_p3',0), -(490,2644,'result_sparkle_trail_fire_shin',0), -(491,2645,'result_sparkle_trail_ice_shin',0), -(492,2647,'trails_lightning_rightshin',0), -(493,2652,'cast_fire_weapon',0), -(494,2656,'result_sparkle_trail_fire_weapon',0), -(495,2659,'result_trail_lightning_red',0), -(496,2668,'2h_sword_defensive_buff',0), -(497,2670,'2h_sword_kick',0), -(498,2674,'2h_sword_whirling_attack',0), -(499,2675,'2h_sword_wild_swing',0), -(500,2684,'cast_elec_feet',0), -(501,2686,'cast_soothe_burst',0), -(502,2687,'cast_spark_sphere_ws_red_p5',0), -(503,2688,'cast_sparkle_trail_fire_head',0), -(504,2702,'pike_kick',0), -(505,2706,'pike_whirling_attack',0), -(506,2707,'result_flash_weapon_sat_blue',0), -(507,2708,'result_flash_weapon_sat_red',0), -(508,2709,'result_ice_blast_weapon',0), -(509,2710,'result_spark_burst_p3_gold',0), -(510,2711,'result_spark_burst_p3_red',0), -(511,2712,'result_spark_burst_rightfoot',0), -(512,2714,'result_sparkle_trail_fire_leftshin',0), -(513,2716,'result_sparkle_trail_ice_lefthand',0), -(514,2717,'result_sparkle_trail_ice_leftshin',0), -(515,2718,'result_sparkle_trail_ice_weapon',0), -(516,2719,'result_sparkle_trail_weapon_right_glow_blue',0), -(517,2720,'result_sparkle_trail_weapon_right_glow_gold',0), -(518,2721,'result_sparkle_trail_weapon_right_glow_red',0), -(519,2722,'result_sparks_360_blue_p5',0), -(520,2723,'result_white_radiance_weapon',0), -(521,2724,'result_wind_smoke_head',0), -(522,2753,'cast_spark_cage',0), -(523,2754,'cast_spark_shield',0), -(524,2755,'cast_sparkle_trail_fire_lefthand',0), -(525,2756,'cast_sparkle_trail_fire_righthand',0), -(526,2757,'cast_sparkle_trail_fire_righttolefthand',0), -(527,2758,'cast_statue',0), -(528,2759,'cast_super_buff',0), -(529,2767,'persist_divine',0), -(530,2768,'persist_eidolon',0), -(531,2769,'persist_energy',0), -(532,2770,'persist_fire',0), -(533,2771,'persist_ice',0), -(534,2772,'persist_mental',0), -(535,2773,'persist_mesmerize',0), -(536,2774,'persist_poison',0), -(537,2775,'persist_stunned',0), -(538,2776,'result_spark_burst_head',0), -(539,2777,'result_weapon_trail_fire',0), -(540,2778,'result_wind_smoke_p3',0), -(541,2782,'cast_instrument_drum',0), -(542,2783,'cast_instrument_stringed',0), -(543,2785,'cast_tune_guitar',0), -(544,2790,'persist_damage',0), -(545,2791,'persist_stone',0), -(546,2792,'result_heal_heart_blue',0), -(547,2793,'result_motion_lines',0), -(548,2794,'result_note_circle',0), -(549,2797,'cast_debuff',0), -(550,2799,'cast_stun_stars_sub',0), -(551,2800,'pike_wild_swing',0), -(552,2801,'result_motion_lines_flasher',0), -(553,2802,'result_motion_lines_sub',0), -(554,2803,'result_spark_burst_p3_blue',0), -(555,2808,'forestry_success',0), -(556,2809,'gathering_search',0), -(557,2810,'gathering_success',0), -(558,2811,'mining_digging',0), -(559,2812,'mining_success',0), -(560,2813,'result_bard_zap',0), -(561,2814,'result_motion_circles',0), -(562,2815,'result_note_blast',0), -(563,2837,'result_ghost_spider',0), -(564,2852,'cast_anim_mesh_dragon_ps',0), -(565,2871,'cast_druid_ws',0), -(566,2872,'cast_frosty_hand_l',0), -(567,2873,'cast_frosty_hand_r',0), -(568,2900,'cast_tune_drum',0), -(569,2924,'cast_priest_ws',0), -(570,2925,'cast_trail_rightfoot_gold',0), -(571,2926,'levelup_50',0), -(572,2927,'levelup_hallmark',0), -(573,2928,'result_sparkle_scan_down',0), -(574,2930,'result_trail_lightning_gold',0), -(575,2933,'1h_thrown_attack',0), -(576,2935,'1h_thrown_dodge_backhand',0), -(577,2936,'1h_thrown_dodge_down',0), -(578,2937,'1h_thrown_dodge_forehand',0), -(579,2938,'1h_thrown_dodge_thrust',0), -(580,2939,'1h_thrown_idle',0), -(581,2940,'1h_thrown_ouch_backhand',0), -(582,2941,'1h_thrown_ouch_down',0), -(583,2942,'1h_thrown_ouch_forehand',0), -(584,2943,'1h_thrown_ouch_thrust',0), -(585,2953,'bostaff_kick',0), -(586,2960,'bostaff_whirling_attack',0), -(587,2961,'bostaff_wild_swing',0), -(588,2966,'cast_spark_burst_weaponrootright',0), -(589,2983,'converse_male04',0), -(590,2991,'converse_male12',0), -(591,2995,'dual_wield_kick',0), -(592,3002,'dual_wield_whirling_attack',0), -(593,3003,'dual_wield_wild_swing',0), -(594,3021,'monk_wild_swing',0), -(595,3029,'pugilist_kick',0), -(596,3036,'pugilist_whirling_attack',0), -(597,3037,'pugilist_wild_swing',0), -(598,3038,'result_spark_burst_p1',0), -(599,3112,'cast_sparkle_trail_fire_lhand_neg',0), -(600,3113,'cast_sparkle_trail_fire_rhand_neg',0), -(601,3118,'persist_debuff',0), -(602,3119,'result_fire_negative',0), -(603,3120,'result_fire_objects',0), -(604,3142,'result_embers_p2p',0), -(605,3143,'result_fraxflame_p2p',0), -(606,3144,'result_prism_hex_p2p',0), -(607,3181,'result_glow_weapon_red',0), -(608,3183,'trails_fire_rightshin',0), -(609,3192,'cast_darkness_skull_buff_summoned',0), -(610,3194,'persist_distortion_hit_minimal',0), -(611,3195,'result_color_rain_damage',0), -(612,3196,'result_darkness_skull_buff',0), -(613,3197,'result_noxious_oozing_shield_buff',0), -(614,3198,'result_swirly_column_evil',0), -(615,3202,'result_icicle_rain_damage',0), -(616,3203,'result_rain_damage',0), -(617,3210,'cast_vines_root_control_circling',0), -(618,3224,'persist_electrified',0), -(619,3225,'result_bloodlust_3',0), -(620,3226,'result_nature_res',0), -(621,3227,'result_poison_rain_damage',0), -(622,3228,'result_skull_breath_poison_damage',0), -(623,3229,'result_spirit_res',0), -(624,3230,'result_sword_rain_damage',0), -(625,3231,'result_vines_root_control',0), -(626,3236,'cast_super_lightning',0), -(627,3237,'result_petrify_stun_control',0), -(628,3238,'result_shadow_summon',0), -(629,3243,'result_agility',0), -(630,3244,'result_air_elemental_summon',0), -(631,3245,'result_arch_heal',0), -(632,3246,'result_electrified',0), -(633,3247,'result_lifetap',0), -(634,3248,'result_vitae_buff_heal',0), -(635,3254,'cast_darkness_whip_circling',0), -(636,3256,'cast_spark_cage_neg',0), -(637,3257,'cast_spark_shield2',0), -(638,3258,'cast_spark_shield_neg',0), -(639,3259,'result_ice_blast_weapon_center',0), -(640,3260,'result_water_elemental_summon',0), -(641,3335,'cast_mandala_sub',0), -(642,3337,'cast_p2p_lightning_01',0), -(643,3338,'cast_p2p_lightning_02',0), -(644,3340,'result_arcane_fury',0), -(645,3341,'result_archaic_shackles',0), -(646,3342,'result_archaic_shackles_b',0), -(647,3343,'result_ice_slam',0), -(648,3344,'result_skull_blast',0), -(649,3345,'result_skull_buff_limbs',0), -(650,3346,'result_storm_of_ancients',0), -(651,3347,'result_stun_sub',0), -(652,3348,'result_tricksters_grasp',0), -(653,3351,'cast_p2p_fire_01',0), -(654,3352,'cast_p2p_fire_02',0), -(655,3354,'result_ethereal_p2p',0), -(656,3358,'cast_gold_sparkletrace_l',0), -(657,3359,'cast_gold_sparkletrace_r',0), -(658,3360,'cast_gold_trace_l',0), -(659,3361,'cast_gold_trace_r',0), -(660,3363,'cast_rune_ring_rotate_persist',0), -(661,3364,'cast_trace_firespikes_l',0), -(662,3365,'cast_trace_firespikes_r',0), -(663,3366,'cast_trace_wine_l',0), -(664,3367,'cast_trace_wine_r',0), -(665,3376,'cast_rainbow_rays_cloud',0), -(666,3377,'cast_spark_sphere_blend',0), -(667,3379,'result_crystal_ring',0), -(668,3380,'result_dispell1_out_blend',0), -(669,3381,'result_helmet_silver_floating',0), -(670,3392,'result_ho_sphere',0), -(671,3393,'result_shield_silver_floating',0), -(672,3397,'ignite_weapon_big',0), -(673,3398,'ignite_weapon_small',0), -(674,3404,'result_dragon_flight_fetters',0), -(675,3405,'result_drakota_fetters',0), -(676,3406,'result_drakota_flight_fetters',0), -(677,3421,'ignite_weapon_prism',0), -(678,3422,'result_ancient_crucible',0), -(679,3423,'result_natures_growth',0), -(680,3427,'result_dripping_rain',0), -(681,3428,'result_rock_chunks_dropping',0), -(682,3432,'result_arcane_chalice',0), -(683,3433,'result_blessing_of_faith',0), -(684,3434,'result_stag_running',0), -(685,3437,'cast_columns_slow',0), -(686,3439,'result_cat_running',0), -(687,3440,'result_chalice_of_life',0), -(688,3441,'result_creature_fire_ls',0), -(689,3442,'result_runes_gathering',0), -(690,3443,'result_sparkle_fill',0), -(691,3444,'result_weapon_trail_prism',0), -(692,3448,'cast_sparkle2',0), -(693,3449,'result_breaking_faith',0), -(694,3450,'result_runes_falling',0), -(695,3451,'result_sparkles_gathering',0), -(696,3460,'cast_glow_distort2',0), -(697,3464,'result_blue_whirlwind',0), -(698,3465,'result_stag_running2',0), -(699,3466,'result_turtle_walking',0), -(700,3573,'result_breakable_wall',0), -(701,3605,'result_lucks_bite',0), -(702,3630,'result_bat_swarm_appear',0), -(703,3631,'result_bat_swarm_attack',0), -(704,3632,'result_forced_shader_electric',0), -(705,3640,'result_bat_swarm_p2p',0), -(706,3671,'result_rainbow_blast_p2p',0), -(707,3672,'result_vampire_lifetap_p2p',0), -(708,3679,'result_fire_blue_white',0), -(709,3680,'result_vampire_daggers_p2p',0), -(710,3681,'result_vampire_ice_daggers_p2p',0), -(711,3682,'result_vampire_lifetap_heart_p2p',0), -(712,3683,'result_vampire_snow_throw',0), -(713,3693,'cast_instrument_flute',0), -(714,3705,'persist_power_gathering',0), -(715,3706,'result_bat_swarm_persist',0), -(716,3707,'result_brain_leech_p2p',0), -(717,3708,'result_power_fount',0), -(718,3727,'result_lioness_running',0), -(719,3728,'result_mana_cloak',0), -(720,3729,'result_scorpion_attacking',0), -(721,3730,'result_skeleton_dancing',0), -(722,3734,'cast_tune_song',0), -(723,3741,'result_bat_flying',0), -(724,3742,'result_stance_of_the_bat',0), -(725,3749,'persist_sparkles_clinging_soft_blue',0), -(726,3750,'persist_sparkles_clinging_soft_gold',0), -(727,3751,'persist_sparkles_clinging_soft_green',0), -(728,3752,'persist_sparkles_clinging_soft_purple',0), -(729,3753,'persist_sparkles_clinging_soft_red',0), -(730,3754,'result_skeleton_bowing',0), -(731,3755,'result_unerring_shot',0), -(732,3756,'result_unerring_shot_flaming',0), -(733,3757,'result_unyielding_will',0), -(734,3766,'result_smoke_p2p',0), -(735,3777,'cast_piercing_note',0), -(736,3779,'cast_tune_flute',0), -(737,3785,'persist_notes_gathering',0), -(738,3786,'persist_notes_spiral_off',0), -(739,3787,'result_note_swarm',0), -(740,3788,'result_notes_gathering',0), -(741,3789,'result_notes_spiral_off',0), -(742,3790,'result_rings_rising',0), -(743,3807,'result_devastation_fist_1',0), -(744,3808,'result_devastation_fist_2',0), -(745,3809,'result_devastation_fist_3',0), -(746,3820,'persist_fear',0), -(747,3821,'persist_notes_spiral_off_blue',0), -(748,3822,'persist_notes_spiral_off_green',0), -(749,3823,'persist_notes_spiral_off_red',0), -(750,3826,'result_corruptive_symbol_p2p',0), -(751,3827,'result_skeleton_attacking',0), -(752,3845,'cast_tune_multichain',0), -(753,3849,'result_fire_dark',0), -(754,3850,'result_sparkles_explode',0), -(755,3851,'result_vampire_rainbow_circle_throw',0), -(756,3852,'result_vampire_whip_dark',0), -(757,3859,'result_notes_spiral_chains',0), -(758,3860,'result_rings_rising_noshrink',0), -(759,3861,'result_umbral_trap',0), -(760,3864,'cast_notes_out_song',0), -(761,3869,'result_kirby_energy_p2p',0), -(762,3870,'result_notes_tube_wavey',0), -(763,3910,'result_mist_clingy',0), -(764,3938,'design_result_lightning_bolt1',0), -(765,3949,'cast_spark_cage_aoe',0), -(766,3950,'cast_spark_cage_neg_aoe',0), -(767,4000,'design_result_bat_swarm_attack',0), -(768,4001,'design_result_tremor',0), -(769,4008,'design_artifact_ap1_breath',0), -(770,4009,'design_cast_inquisitor',0), -(771,4010,'design_cast_vision_nek',0), -(772,4011,'design_result_dispell1_out',0), -(773,4012,'design_result_zombie_summon',0), -(774,4030,'result_bloodlust_aoe',0), -(775,4031,'result_clay_shields_aoe',0), -(776,4032,'result_poison_cloud_aoe',0), -(777,4065,'result_toxin_out_aoe',0), -(778,4073,'result_shockwave_sparkles_aoe',0), -(779,4092,'climbing_strafe_right',0), -(780,4093,'climbing_walk',0), -(781,4123,'cast_angry_burst_aoe',0), -(782,4124,'cast_debuff_aoe',0), -(783,4129,'result_fire_engulf_aoe',0), -(784,4130,'result_flash_aoe',0), -(785,4131,'result_motion_lines_flasher_aoe',0), -(786,4132,'result_motion_lines_sub_aoe',0), -(787,4140,'result_coins_falling',0), -(788,4141,'result_forced_shader_rock',0), -(789,4142,'result_terra_armor',0), -(790,4150,'result_coalescing_vapor',0), -(791,4161,'result_bone_blast',0), -(792,4162,'result_bone_glow',0), -(793,4163,'result_coalescing_notes',0), -(794,4164,'result_dust_blast',0), -(795,4172,'result_ice_blast_from_mesh',0), -(796,4194,'result_rock_toss_p2p',0), -(797,4195,'result_rocks_flying_from_mesh',0), -(798,4203,'result_ring_of_blades',0), -(799,4204,'result_ring_of_blades_scimitars',0), -(800,4205,'result_ring_of_blades_swords',0), -(801,4341,'result_devastation_fist_3a',0), -(802,4357,'result_skeleton_hand',0), -(803,4368,'cast_pfx_orbiting_rings_l',0), -(804,4369,'cast_pfx_orbiting_rings_r',0), -(805,4449,'cast_ring_expanding',0), -(806,4493,'cast_call_of_power',0), -(807,4495,'climbing_backup',0), -(808,4496,'climbing_idle',0), -(809,4497,'climbing_strafe_left',0), -(810,4506,'monk_attack03',0), -(811,4518,'result_call_of_power',0), -(812,4519,'result_firespitter',0), -(813,4520,'result_pet_victory',0), -(814,4545,'result_morph_to_pet',0), -(815,4546,'result_sparkles_radiating',0), -(816,4556,'result_searing_sun',0), -(817,4557,'result_smoking_mesh',0), -(818,4561,'cast_bone_blast_1',0), -(819,4562,'cast_bone_blast_2',0), -(820,4563,'cast_bone_blast_3',0), -(821,4564,'cast_morph_to_dragon',0), -(822,4569,'result_cyclone_fire',0), -(823,4570,'result_cyclone_snow',0), -(824,4571,'result_morph_to_dragon',0), -(825,4580,'result_cyclone_rocks',0), -(826,4581,'result_cyclone_sand',0), -(827,4582,'result_gnoll_buff',0), -(828,4599,'dual_wield_attack03',0), -(829,4601,'result_word_of_doom',0), -(830,4602,'result_word_of_flame',0), -(831,4603,'result_word_of_obedience',0), -(832,4604,'result_word_of_silence',0), -(833,4608,'2h_sword_ouch_thrust',0), -(834,4625,'result_froglok_buff',0), -(835,4626,'result_stone_hand_terraporter',0), -(836,4670,'result_candlelight_vigil',0), -(837,4702,'result_rock_shock_wave',0), -(838,4718,'result_fire_blast',0), -(839,4719,'result_rock_shock_wave_lava',0), -(840,4720,'result_tears_of_druzil',0), -(841,4730,'climbing_exit_up_root',0), -(842,4735,'result_rock_shock_wave_ice',0), -(843,4736,'result_snowflakes_radiating',0), -(844,4742,'cast_bright_ring_blue',0), -(845,4743,'cast_bright_ring_red',0), -(846,4783,'cast_morph_to_elf',0), -(847,4788,'result_morph_to_elf',0), -(848,4798,'climbing_enter_down_root',0), -(849,4810,'result_scintillating_tapestry',0), -(850,4825,'design_cast_vision_living_tombs',0), -(851,4850,'result_runes_blast',0), -(852,4868,'carry_blue_flag',0), -(853,4869,'carry_red_flag',0), -(854,4911,'result_coalescing_sparkles',0), -(855,4912,'result_coalescing_vapor_sub',0), -(856,4913,'result_serpents_intent',0), -(857,4914,'result_singing_sword',0), -(858,4923,'result_desert_call_p2p',0), -(859,4924,'result_flash_flood_wave_cross_line',0), -(860,4925,'result_flash_flood_wave_spray',0), -(861,4926,'result_flash_flood_wave_tube',0), -(862,4995,'design_cast_vision_ap2',0), -(863,4997,'result_protection_of_faith_p2p',0), -(864,4998,'result_protection_of_faith_tapestry',0), -(865,5020,'result_anim_mesh_genie_ps',0), -(866,5069,'result_fungusman_breath_attack_p2p',0), -(867,5070,'result_mushrooms_growing',0), -(868,5135,'result_shadow_summon_2',0), -(869,5149,'result_shadow_summon_2_aoe',0), -(870,5352,'debris_flying',0), -(871,5353,'debris_swimming',0), -(872,5513,'result_arena_water_whirlpool',0), -(873,5514,'result_arena_water_whirlpool_aoe',0), -(874,5565,'horse_backup',0), -(875,5566,'horse_turn_left',0), -(876,5567,'horse_turn_right',0), -(877,5571,'result_arena_stone_gaze',0), -(878,5572,'result_arena_water_rain',0), -(879,5573,'result_fogger',0), -(880,5603,'result_arena_water_rain_bubbles',0), -(881,5604,'result_terrorantula_attack',0), -(882,5605,'result_terrorantula_attack_cocoon',0), -(883,5640,'result_arena_stone_gaze_flash',0), -(884,5971,'result_arena_voidbeast_attack',0), -(885,5972,'result_arena_voidbeast_smoke',0), -(886,5973,'result_arena_voidbeast_smoke_threads',0), -(887,5983,'result_ghost_fadeout',0), -(888,6012,'result_spirit_of_the_elephant',0), -(889,6037,'cast_trace_prism_left',0), -(890,6038,'cast_trace_prism_right',0), -(891,6044,'result_prisms_hex_clinging',0), -(892,6045,'result_prisms_sparkle_soul',0), -(893,6046,'result_prisms_sphere',0), -(894,6068,'result_ice_dagger_breath_p2p',0), -(895,6090,'result_cone_lightning_p2p',0), -(896,6091,'result_dragon_cone_roar',0), -(897,6183,'design_result_zombie_scare',0), -(898,6185,'result_zombie_scare',0), -(899,6193,'result_ghost_forced_shader_4',0), -(900,6269,'result_bone_glow_2',0), -(901,6270,'result_fireworks_burst',0), -(902,6271,'result_fireworks_ring',0), -(903,6329,'result_lion_paw_trails',0), -(904,6330,'result_prism_tube_trail_1',0), -(905,6331,'result_prism_tube_trail_2',0), -(906,6332,'result_sparkle_soul',0), -(907,6410,'result_pestilence',0), -(908,6435,'result_dragonbreath',0), -(909,6453,'cast_dragonbreath',0), -(910,6458,'persist_dragonbreath',0), -(911,6459,'result_hypnosis',0), -(912,6470,'cast_celtic_circle',0), -(913,6473,'cast_hypnosis',0), -(914,6497,'persist_juggernaut',0), -(915,6498,'result_juggernaut',0), -(916,6523,'result_firestrips',0), -(917,6544,'result_castigate',0), -(918,6605,'cast_jesters_gamble',0), -(919,6674,'status_quest_completes',0), -(920,6675,'status_quest_gives',0), -(921,6676,'status_quest_updates',0), -(922,6701,'result_crazy_tube',0), -(923,6702,'result_crazy_tube_iron',0), -(924,6752,'cast_call_of_storms',0), -(925,6757,'result_call_of_storms',0), -(926,6766,'cast_mysticism',0), -(927,6771,'result_mysticism',0), -(928,6776,'cast_fusion',0), -(929,6786,'cast_crescent_hands_l',0), -(930,6787,'cast_crescent_hands_r',0), -(931,6801,'result_rift',0), -(932,6802,'result_verdict',0), -(933,6803,'result_verdict_explosion',0), -(934,6844,'cast_plane_shift',0), -(935,6849,'result_plane_shift',0), -(936,6850,'result_vortex_p2p',0), -(937,6862,'cast_undead_tide',0), -(938,6866,'result_bonfire',0), -(939,6867,'result_steam',0), -(940,6880,'result_cone_lightning_wave_p2p',0), -(941,6881,'result_ice_dagger_breath_small_p2p',0), -(942,6890,'result_rock_breath_p2p',0), -(943,6891,'result_rocks_sticky',0), -(944,6967,'result_aa_shaman_ghost_wolf',0), -(945,6975,'cast_pickpocket',0), -(946,6980,'result_mana_channeling',0), -(947,7001,'levelup_achievement',0), -(948,7011,'result_pickpocket',0), -(949,7059,'result_snoring_zzz',0), -(950,7064,'cast_vyemm_slam',0), -(951,7072,'result_steam_blast',0), -(952,7104,'result_poison_cysts',0), -(953,7442,'result_aa_pyramid',0), -(954,7682,'result_webby_canister',0), -(955,7747,'result_ghost_undo',0), -(956,7815,'cast_trace_sparkcrescent_l',0), -(957,7816,'cast_trace_sparkcrescent_r',0), -(958,7821,'design_keg_filling_mug',0), -(959,7966,'result_charge_fast',0), -(960,7967,'result_smoke_small_p5',0), -(961,8179,'result_fire_purple',0), -(962,8482,'cast_dryad_teleport',0), -(963,8489,'result_dryad_teleport',0), -(964,8502,'cast_dryad_attack_aoe',0), -(965,8509,'result_dryad_attack_aoe',0), -(966,8536,'cast_rain_of_thistles',0), -(967,8542,'result_rain_of_thistles',0), -(968,8785,'result_chrome_forced_shader',0), -(969,8991,'result_copter_welder_lightning_p2p',0), -(970,9078,'run_03',0), -(971,9079,'run_down_idle',0), -(972,9080,'run_up_idle',0), -(973,9082,'sway_l',0), -(974,9083,'sway_r',0), -(975,9232,'result_soulless',0), -(976,9443,'result_soap_mouth',0), -(977,9516,'cast_vision_plane_druid_ring',0), -(978,9526,'cast_wizard_spires',0), -(979,9587,'result_choking_vines_aoe',0), -(980,9608,'result_wuoshi_tree_morph',0), -(981,9654,'result_lightning_bolt_sub1',0), -(982,9655,'result_lightning_bolt_sub2',0), -(983,9676,'female_dead',0), -(984,9677,'female_dead_enter',0), -(985,9733,'aura_red',0), -(986,9739,'female_run',0), -(987,9754,'cast_blanket_of_eternal_night',0), -(988,9755,'cast_mayongs_touch',0), -(989,9757,'cast_soul_paralysis',0), -(990,9763,'result_blanket_of_eternal_night',0), -(991,9773,'cast_gaze_of_obedience',0), -(992,9788,'froglok_idle',0), -(993,9821,'cast_laser_p2p',0), -(994,9832,'result_laser_p2p',0), -(995,9836,'cast_firebreath_p2p',0), -(996,9844,'froglok_bow',0), -(997,9845,'froglok_crouch',0), -(998,9846,'froglok_curtsey',0), -(999,9847,'froglok_dead',0), -(1000,9848,'froglok_death',0), -(1001,9849,'froglok_run',0), -(1002,9850,'froglok_sit_enter',0), -(1003,9851,'froglok_sit_exit',0), -(1004,9852,'froglok_sit_idle',0), -(1005,9857,'cast_mana_burn',0), -(1006,9881,'fae_light_idle',0), -(1007,9884,'result_mana_burn',0), -(1008,9930,'result_poison_forced_shader_weapon',0), -(1009,9950,'cast_glass_shattering',0), -(1010,9960,'result_glass_shattering',0), -(1011,9971,'result_brigand_slide',0), -(1012,9972,'result_golden_flash',0), -(1013,9985,'result_dirge_confront_fear',0), -(1014,9986,'result_illusionist_illuminate',0), -(1015,10012,'attack_earthshake',0), -(1016,10019,'fae_light_1h_sword_attack',0), -(1017,10020,'fae_light_1h_sword_attack01',0), -(1018,10021,'fae_light_1h_sword_attack02',0), -(1019,10022,'fae_light_1h_sword_attack03',0), -(1020,10023,'fae_light_1h_sword_death_blow',0), -(1021,10024,'fae_light_1h_sword_death_blow01',0), -(1022,10025,'fae_light_1h_sword_dodge_backhand',0), -(1023,10026,'fae_light_1h_sword_dodge_down',0), -(1024,10027,'fae_light_1h_sword_dodge_forehand',0), -(1025,10028,'fae_light_1h_sword_dodge_thrust',0), -(1026,10029,'fae_light_1h_sword_ouch_backhand',0), -(1027,10030,'fae_light_1h_sword_ouch_down',0), -(1028,10031,'fae_light_1h_sword_ouch_forehand',0), -(1029,10032,'fae_light_1h_sword_ouch_thrust',0), -(1030,10033,'fae_light_1h_sword_parry_backhand',0), -(1031,10034,'fae_light_1h_sword_parry_down',0), -(1032,10035,'fae_light_1h_sword_parry_forehand',0), -(1033,10036,'fae_light_1h_sword_parry_thrust',0), -(1034,10037,'fae_light_2h_sword_attack',0), -(1035,10038,'fae_light_2h_sword_attack01',0), -(1036,10039,'fae_light_2h_sword_attack02',0), -(1037,10040,'fae_light_2h_sword_defensive_buff',0), -(1038,10041,'fae_light_2h_sword_dodge_backhand',0), -(1039,10042,'fae_light_2h_sword_dodge_down',0), -(1040,10043,'fae_light_2h_sword_dodge_forehand',0), -(1041,10044,'fae_light_2h_sword_enter',0), -(1042,10045,'fae_light_2h_sword_kick',0), -(1043,10046,'fae_light_2h_sword_ouch_backhand',0), -(1044,10047,'fae_light_2h_sword_ouch_down',0), -(1045,10048,'fae_light_2h_sword_ouch_forehand',0), -(1046,10049,'fae_light_2h_sword_ouch_thrust',0), -(1047,10052,'fae_light_bostaff_attack01',0), -(1048,10053,'fae_light_bostaff_attack02',0), -(1049,10054,'fae_light_bostaff_attack03',0), -(1050,10081,'fae_light_dual_wield_attack',0), -(1051,10082,'fae_light_dual_wield_attack01',0), -(1052,10083,'fae_light_dual_wield_attack02',0), -(1053,10084,'fae_light_dual_wield_attack03',0), -(1054,10085,'fae_light_dual_wield_kick',0), -(1055,10086,'fae_light_dual_wield_whirling_attack',0), -(1056,10087,'fae_light_dual_wield_wild_swing',0), -(1057,10088,'fae_light_monk_attack',0), -(1058,10089,'fae_light_monk_attack01',0), -(1059,10090,'fae_light_monk_attack02',0), -(1060,10091,'fae_light_monk_attack03',0), -(1061,10092,'fae_light_monk_wild_swing',0), -(1062,10093,'fae_light_pike_attack',0), -(1063,10094,'fae_light_pike_attack01',0), -(1064,10095,'fae_light_pike_attack02',0), -(1065,10096,'fae_light_pike_kick',0), -(1066,10097,'fae_light_pike_whirling_attack',0), -(1067,10098,'fae_light_pike_wild_swing',0), -(1068,10099,'fae_light_pugilist_attack',0), -(1069,10100,'fae_light_pugilist_attack02',0), -(1070,10101,'fae_light_pugilist_kick',0), -(1071,10102,'fae_light_pugilist_whirling_attack',0), -(1072,10103,'fae_light_pugilist_wild_swing',0), -(1073,10122,'froglok_1h_sword_attack',0), -(1074,10123,'froglok_1h_sword_idle',0), -(1075,10128,'cast_forced_flasher_stream_scroll',0), -(1076,10129,'cast_forced_flasher_stream_scroll_blend',0), -(1077,10137,'result_berserker_red_eyes',0), -(1078,10138,'result_god_spell_brell_serilis',0), -(1079,10139,'result_god_spell_cazic_thule',0), -(1080,10140,'result_god_spell_innoruuk',0), -(1081,10141,'result_god_spell_mithaniel_marr',0), -(1082,10142,'result_god_spell_quellious',0), -(1083,10143,'result_god_spell_rallos_zek',0), -(1084,10144,'result_god_spell_solusek_ro',0), -(1085,10145,'result_god_spell_tunare',0), -(1086,10146,'result_sun_spell',0), -(1087,10157,'froglok_1h_crush_attack',0), -(1088,10158,'froglok_1h_crush_attack01',0), -(1089,10159,'froglok_1h_crush_attack02',0), -(1090,10160,'froglok_1h_crush_attack03',0), -(1091,10161,'froglok_1h_crush_dodge_backhand',0), -(1092,10162,'froglok_1h_crush_dodge_down',0), -(1093,10163,'froglok_1h_crush_dodge_forehand',0), -(1094,10164,'froglok_1h_crush_dodge_thrust',0), -(1095,10165,'froglok_1h_crush_ouch_backhand',0), -(1096,10166,'froglok_1h_crush_ouch_down',0), -(1097,10167,'froglok_1h_crush_ouch_forehand',0), -(1098,10168,'froglok_1h_crush_ouch_thrust',0), -(1099,10169,'froglok_1h_crush_parry_backhand',0), -(1100,10170,'froglok_1h_crush_parry_down',0), -(1101,10171,'froglok_1h_crush_parry_forehand',0), -(1102,10172,'froglok_1h_crush_parry_thrust',0), -(1103,10173,'froglok_1h_pierce_attack',0), -(1104,10174,'froglok_1h_pierce_attack01',0), -(1105,10175,'froglok_1h_pierce_dodge_backhand',0), -(1106,10176,'froglok_1h_pierce_dodge_down',0), -(1107,10177,'froglok_1h_pierce_dodge_forehand',0), -(1108,10178,'froglok_1h_pierce_dodge_thrust',0), -(1109,10179,'froglok_1h_pierce_ouch_backhand',0), -(1110,10180,'froglok_1h_pierce_ouch_down',0), -(1111,10181,'froglok_1h_pierce_ouch_forehand',0), -(1112,10182,'froglok_1h_pierce_ouch_thrust',0), -(1113,10183,'froglok_1h_pierce_parry_backhand',0), -(1114,10184,'froglok_1h_pierce_parry_down',0), -(1115,10185,'froglok_1h_pierce_parry_forehand',0), -(1116,10186,'froglok_1h_pierce_parry_thrust',0), -(1117,10187,'froglok_1h_sword_attack01',0), -(1118,10188,'froglok_1h_sword_attack02',0), -(1119,10189,'froglok_1h_sword_attack03',0), -(1120,10190,'froglok_1h_sword_death_blow',0), -(1121,10191,'froglok_1h_sword_death_blow01',0), -(1122,10192,'froglok_1h_sword_dodge_backhand',0), -(1123,10193,'froglok_1h_sword_dodge_down',0), -(1124,10194,'froglok_1h_sword_dodge_forehand',0), -(1125,10195,'froglok_1h_sword_dodge_thrust',0), -(1126,10196,'froglok_1h_sword_ouch_backhand',0), -(1127,10197,'froglok_1h_sword_ouch_down',0), -(1128,10198,'froglok_1h_sword_ouch_forehand',0), -(1129,10199,'froglok_1h_sword_ouch_thrust',0), -(1130,10200,'froglok_1h_sword_parry_backhand',0), -(1131,10201,'froglok_1h_sword_parry_down',0), -(1132,10202,'froglok_1h_sword_parry_forehand',0), -(1133,10203,'froglok_1h_sword_parry_thrust',0), -(1134,10204,'froglok_1h_thrown_dodge_backhand',0), -(1135,10205,'froglok_1h_thrown_dodge_down',0), -(1136,10206,'froglok_1h_thrown_dodge_forehand',0), -(1137,10207,'froglok_1h_thrown_dodge_thrust',0), -(1138,10208,'froglok_1h_thrown_ouch_backhand',0), -(1139,10209,'froglok_1h_thrown_ouch_down',0), -(1140,10210,'froglok_1h_thrown_ouch_forehand',0), -(1141,10211,'froglok_1h_thrown_ouch_thrust',0), -(1142,10212,'froglok_bow_dodge_backhand',0), -(1143,10213,'froglok_bow_dodge_down',0), -(1144,10214,'froglok_bow_dodge_forehand',0), -(1145,10215,'froglok_bow_dodge_thrust',0), -(1146,10216,'froglok_bow_ouch_backhand',0), -(1147,10217,'froglok_bow_ouch_down',0), -(1148,10218,'froglok_bow_ouch_forehand',0), -(1149,10219,'froglok_bow_ouch_thrust',0), -(1150,10220,'froglok_dual_wield_attack',0), -(1151,10221,'froglok_dual_wield_attack01',0), -(1152,10222,'froglok_dual_wield_attack02',0), -(1153,10223,'froglok_dual_wield_attack03',0), -(1154,10224,'froglok_dual_wield_dodge_backhand',0), -(1155,10225,'froglok_dual_wield_dodge_down',0), -(1156,10226,'froglok_dual_wield_dodge_forehand',0), -(1157,10227,'froglok_dual_wield_dodge_thrust',0), -(1158,10228,'froglok_dual_wield_idle',0), -(1159,10229,'froglok_dual_wield_ouch_backhand',0), -(1160,10230,'froglok_dual_wield_ouch_down',0), -(1161,10231,'froglok_dual_wield_ouch_forehand',0), -(1162,10232,'froglok_dual_wield_ouch_thrust',0), -(1163,10243,'froglok_1h_crush_idle',0), -(1164,10244,'froglok_1h_pierce_idle',0), -(1165,10245,'froglok_1h_thrown_idle',0), -(1166,10246,'froglok_2h_sword_attack',0), -(1167,10247,'froglok_2h_sword_attack01',0), -(1168,10248,'froglok_2h_sword_attack02',0), -(1169,10249,'froglok_2h_sword_attack03',0), -(1170,10250,'froglok_2h_sword_idle',0), -(1171,10251,'froglok_bow_idle',0), -(1172,10252,'froglok_dual_wield_kick',0), -(1173,10253,'froglok_dual_wield_whirling_attack',0), -(1174,10254,'froglok_dual_wield_wild_swing',0), -(1175,10290,'froglok_2h_sword_dodge_backhand',0), -(1176,10291,'froglok_2h_sword_dodge_down',0), -(1177,10292,'froglok_2h_sword_dodge_forehand',0), -(1178,10293,'froglok_2h_sword_dodge_thrust',0), -(1179,10294,'froglok_2h_sword_kick',0), -(1180,10295,'froglok_2h_sword_whirling_attack',0), -(1181,10296,'froglok_2h_sword_wild_swing',0), -(1182,10297,'froglok_bostaff_attack',0), -(1183,10298,'froglok_bostaff_attack01',0), -(1184,10299,'froglok_bostaff_attack02',0), -(1185,10300,'froglok_bostaff_attack03',0), -(1186,10301,'froglok_bostaff_idle',0), -(1187,10302,'froglok_bostaff_kick',0), -(1188,10303,'froglok_bostaff_whirling_attack',0), -(1189,10304,'froglok_bostaff_wild_swing',0), -(1190,10305,'froglok_monk_idle',0), -(1191,10307,'result_beserker_red_eyes',0), -(1192,10308,'result_guardian_aura',0), -(1193,10318,'froglok_monk_attack',0), -(1194,10319,'froglok_monk_attack01',0), -(1195,10320,'froglok_monk_attack02',0), -(1196,10321,'froglok_monk_attack03',0), -(1197,10322,'froglok_monk_kick',0), -(1198,10323,'froglok_monk_kick_spin',0), -(1199,10324,'froglok_monk_wild_swing',0), -(1200,10356,'froglok_monk_whirling_attack',0), -(1201,10357,'froglok_pike_attack',0), -(1202,10358,'froglok_pike_attack01',0), -(1203,10359,'froglok_pike_attack02',0), -(1204,10360,'froglok_pike_idle',0), -(1205,10361,'froglok_pike_kick',0), -(1206,10362,'froglok_pike_whirling_attack',0), -(1207,10363,'froglok_pike_wild_swing',0), -(1208,10364,'froglok_pugilist_attack',0), -(1209,10365,'froglok_pugilist_attack02',0), -(1210,10366,'froglok_pugilist_attack03',0), -(1211,10367,'froglok_pugilist_idle',0), -(1212,10368,'froglok_pugilist_kick',0), -(1213,10369,'froglok_pugilist_whirling_attack',0), -(1214,10370,'froglok_pugilist_wild_swing',0), -(1215,10371,'froglok_untrained_attack',0), -(1216,10372,'froglok_untrained_idle',0), -(1217,10374,'result_coercer_sun_aura',0), -(1218,10375,'result_illusionist_head_aura',0), -(1219,10376,'result_paladin_shoulder_streamers',0), -(1220,10377,'result_templar_halo',0), -(1221,10387,'fae_light_run',0), -(1222,10389,'result_assassin_star_cloud_hands',0), -(1223,10390,'result_brigand_hand_trails',0), -(1224,10391,'result_bruiser_fist_shining',0), -(1225,10392,'result_dirge_sparkles',0), -(1226,10393,'result_monk_fist_rings',0), -(1227,10394,'result_swashbuckler_hand_trails',0), -(1228,10395,'result_warlock_subtle_aura',0), -(1229,10415,'fae_light_climbing_backup',0), -(1230,10416,'fae_light_climbing_enter_down_root',0), -(1231,10417,'fae_light_climbing_exit_up_root',0), -(1232,10418,'fae_light_climbing_idle',0), -(1233,10419,'fae_light_climbing_strafe_left',0), -(1234,10420,'fae_light_climbing_strafe_right',0), -(1235,10421,'fae_light_climbing_walk',0), -(1236,10422,'fae_light_dead',0), -(1237,10423,'fae_light_dead_enter',0), -(1238,10469,'fae_light_bostaff_dodge_backhand',0), -(1239,10470,'fae_light_bostaff_dodge_forehand',0), -(1240,10471,'fae_light_dual_wield_dodge_backhand',0), -(1241,10472,'fae_light_dual_wield_dodge_forehand',0), -(1242,10473,'fae_light_dual_wield_ouch_backhand',0), -(1243,10474,'fae_light_dual_wield_ouch_forehand',0), -(1244,10475,'fae_light_dual_wield_parry_down',0), -(1245,10508,'fae_light_monk_dodge_backhand',0), -(1246,10509,'fae_light_monk_dodge_down',0), -(1247,10512,'horse_jump_substitute',0), -(1248,10516,'result_conjuror_shoulder_blue_flames',0), -(1249,10529,'fae_light_sit_enter',0), -(1250,10530,'fae_light_sit_exit',0), -(1251,10531,'fae_light_sit_idle',0), -(1252,10533,'froglok_horse_idle',0), -(1253,10542,'result_necromancer_hand_skulls',0), -(1254,10553,'froglok_gathering_search',0), -(1255,10554,'froglok_gathering_success',0), -(1256,10555,'froglok_mining_digging',0), -(1257,10559,'result_ranger_green_aura',0), -(1258,10560,'result_shadowknight_flame_horns',0), -(1259,10561,'result_wizard_elemental_hands',0), -(1260,10574,'froglok_converse_male04',0), -(1261,10575,'froglok_converse_male12',0), -(1262,10576,'froglok_forestry_success',0), -(1263,10577,'froglok_horse_jump_substitute',0), -(1264,10578,'froglok_kick',0), -(1265,10579,'froglok_knockedtoback',0), -(1266,10580,'froglok_mining_success',0), -(1267,10581,'froglok_run_03',0), -(1268,10582,'froglok_wild_swing',0), -(1269,10584,'result_defiler_poison_cloud',0), -(1270,10585,'result_mystic_cloudy_feet',0), -(1271,10586,'result_troubador_clouds',0), -(1272,10596,'froglok_bostaff_knockedtoback',0), -(1273,10597,'froglok_bostaff_knockedtoback_getup',0), -(1274,10598,'froglok_bow_knockedtoback',0), -(1275,10599,'froglok_bow_knockedtoback_getup',0), -(1276,10600,'froglok_dual_wield_knockedtoback',0), -(1277,10601,'froglok_dual_wield_knockedtoback_getup',0), -(1278,10602,'froglok_knockedtoback_getup',0), -(1279,10603,'froglok_knockedtoback_onbackidle',0), -(1280,10604,'froglok_monk_knockedtoback',0), -(1281,10605,'froglok_monk_knockedtoback_getup',0), -(1282,10606,'froglok_pike_knockedtoback',0), -(1283,10607,'froglok_pike_knockedtoback_getup',0), -(1284,10608,'froglok_pugilist_knockedtoback',0), -(1285,10609,'froglok_pugilist_knockedtoback_getup',0), -(1286,10680,'1h_crush_attack_recoil',0), -(1287,10681,'1h_crush_attack_recoil01',0), -(1288,10682,'1h_crush_attack_recoil02',0), -(1289,10683,'1h_crush_attack_recoil03',0), -(1290,10684,'1h_crush_backup',0), -(1291,10685,'1h_crush_enter',0), -(1292,10686,'1h_crush_exit',0), -(1293,10687,'1h_crush_strafe_left',0), -(1294,10688,'1h_crush_strafe_right',0), -(1295,10689,'1h_crush_walk',0), -(1296,10690,'1h_pierce_attack02',0), -(1297,10691,'1h_pierce_attack03',0), -(1298,10692,'1h_pierce_attack_recoil',0), -(1299,10693,'1h_pierce_attack_recoil01',0), -(1300,10694,'1h_pierce_attack_recoil02',0), -(1301,10695,'1h_pierce_attack_recoil03',0), -(1302,10696,'1h_pierce_backup',0), -(1303,10697,'1h_pierce_death_blow',0), -(1304,10698,'1h_pierce_death_blow01',0), -(1305,10699,'1h_pierce_enter',0), -(1306,10700,'1h_pierce_exit',0), -(1307,10701,'1h_pierce_strafe_left',0), -(1308,10702,'1h_pierce_strafe_right',0), -(1309,10703,'1h_pierce_walk',0), -(1310,10704,'1h_sword_attack_recoil',0), -(1311,10705,'1h_sword_attack_recoil01',0), -(1312,10706,'1h_sword_attack_recoil02',0), -(1313,10707,'1h_sword_attack_recoil03',0), -(1314,10708,'1h_sword_backup',0), -(1315,10709,'1h_sword_enter',0), -(1316,10710,'1h_sword_exit',0), -(1317,10711,'1h_sword_parry_thurst',0), -(1318,10712,'1h_sword_strafe_left',0), -(1319,10713,'1h_sword_strafe_right',0), -(1320,10714,'1h_sword_walk',0), -(1321,10715,'1h_throw_attack',0), -(1322,10716,'1h_thrown_backup',0), -(1323,10717,'1h_thrown_strafe_left',0), -(1324,10718,'1h_thrown_strafe_right',0), -(1325,10719,'1h_thrown_walk',0), -(1326,10720,'2h_sword_attack03',0), -(1327,10721,'2h_sword_attack_recoil',0), -(1328,10722,'2h_sword_attack_recoil01',0), -(1329,10723,'2h_sword_attack_recoil02',0), -(1330,10724,'2h_sword_attack_recoil03',0), -(1331,10725,'2h_sword_backup',0), -(1332,10726,'2h_sword_charge_up',0), -(1333,10727,'2h_sword_dodge_thrust',0), -(1334,10728,'2h_sword_exit',0), -(1335,10729,'2h_sword_feint',0), -(1336,10730,'2h_sword_offensive_buff',0), -(1337,10731,'2h_sword_parry_backhand',0), -(1338,10732,'2h_sword_parry_down',0), -(1339,10733,'2h_sword_parry_forehand',0), -(1340,10734,'2h_sword_parry_thrust',0), -(1341,10735,'2h_sword_strafe_left',0), -(1342,10736,'2h_sword_strafe_right',0), -(1343,10737,'2h_sword_super_buff',0), -(1344,10738,'2h_sword_taunt',0), -(1345,10739,'2h_sword_taunt_combat_art',0), -(1346,10740,'2h_sword_walk',0), -(1347,10741,'2hsword_idle01',0), -(1348,10744,'a',0), -(1349,10745,'agree',0), -(1350,10747,'alchemy_failure',0), -(1351,10748,'alchemy_idle',0), -(1352,10749,'alchemy_success',0), -(1353,10750,'angry',0), -(1354,10751,'antenna_01',0), -(1355,10752,'antenna_02',0), -(1356,10753,'antenna_03',0), -(1357,10754,'antenna_04',0), -(1358,10755,'antenna_05',0), -(1359,10756,'antonia_wisp',0), -(1360,10757,'anvil',0), -(1361,10758,'anvil_small',0), -(1362,10759,'appear',0), -(1363,10760,'applaude',0), -(1364,10761,'arm04_fail',0), -(1365,10762,'arm04_success',0), -(1366,10763,'armpour01',0), -(1367,10764,'artifact',0), -(1368,10765,'artificing_failure',0), -(1369,10766,'artificing_idle',0), -(1370,10767,'artificing_success',0), -(1371,10768,'artsn_chem_sound',0), -(1372,10769,'artsn_chimepad_sound',0), -(1373,10770,'artsn_forge_helmet_sound',0), -(1374,10771,'artsn_forge_sound',0), -(1375,10772,'artsn_glow_sound',0), -(1376,10773,'artsn_knives_sound',0), -(1377,10774,'artsn_knot_sound',0), -(1378,10775,'artsn_logcut_sound',0), -(1379,10776,'artsn_metal_bar_end_snd',0), -(1380,10777,'artsn_metal_bar_snd',0), -(1381,10778,'artsn_molecule_sound',0), -(1382,10779,'artsn_planer_sound',0), -(1383,10780,'artsn_saw_sound',0), -(1384,10781,'artsn_stove_sound',0), -(1385,10782,'asg_stonegaze_snd',0), -(1386,10783,'attack',0), -(1387,10784,'attack01',0), -(1388,10785,'attack02',0), -(1389,10786,'attack03',0), -(1390,10787,'attack04',0), -(1391,10788,'attack_backhand_trigger',0), -(1392,10789,'attack_bite',0), -(1393,10790,'attack_breath',0), -(1394,10791,'attack_breath01',0), -(1395,10792,'attack_breath02',0), -(1396,10793,'attack_forehand_trigger',0), -(1397,10794,'attack_headram',0), -(1398,10795,'attack_rear',0), -(1399,10796,'attack_roar01',0), -(1400,10797,'attack_scream',0), -(1401,10798,'attack_slam',0), -(1402,10799,'attack_snap',0), -(1403,10800,'attack_sound',0), -(1404,10801,'attack_special',0), -(1405,10802,'attack_special01',0), -(1406,10803,'attack_special02',0), -(1407,10804,'attack_special03',0), -(1408,10805,'attack_special_spring',0), -(1409,10806,'attack_stomp',0), -(1410,10807,'attack_tail',0), -(1411,10808,'attack_whirling',0), -(1412,10809,'attack_wildswing',0), -(1413,10810,'attack_wing',0), -(1414,10811,'attack_wings',0), -(1415,10812,'attack_woosh01',0), -(1416,10813,'attacktiming',0), -(1417,10814,'attacktiming_a',0), -(1418,10815,'attention',0), -(1419,10816,'aval_cast_snd',0), -(1420,10817,'awrh_cast_snd',0), -(1421,10818,'awrh_heal2_snd',0), -(1422,10819,'awrh_heal_snd',0), -(1423,10820,'awrh_rainfall_snd',0), -(1424,10821,'aww_whirlcast_snd',0), -(1425,10822,'aww_whirlparticles_snd',0), -(1426,10823,'backup',0), -(1427,10824,'backup_run',0), -(1428,10825,'bad_outcome01',0), -(1429,10826,'bad_outcome01_shuttle',0), -(1430,10827,'bad_outcome02',0), -(1431,10828,'bad_outcome02_shuttle',0), -(1432,10829,'ball_bk',0), -(1433,10830,'ball_bk_sm',0), -(1434,10831,'ball_glow',0), -(1435,10832,'ball_wht',0), -(1436,10833,'ball_wht_sm',0), -(1437,10834,'barrel_fire',0), -(1438,10835,'barrel_pieces',0), -(1439,10836,'base',0), -(1440,10837,'bat_swarm',0), -(1441,10838,'battlecry',0), -(1442,10839,'bc_caged_snd',0), -(1443,10840,'bd_cast_lp_snd',0), -(1444,10841,'bd_fireburst_snd',0), -(1445,10842,'beaker01',0), -(1446,10843,'beckon',0), -(1447,10844,'beg',0), -(1448,10845,'bene',0), -(1449,10846,'big_saw_success',0), -(1450,10847,'big_saw_success2',0), -(1451,10848,'big_smoke',0), -(1452,10849,'bl_castswirls_snd',0), -(1453,10850,'bl_start_particles_snd',0), -(1454,10851,'blammo',0), -(1455,10852,'blink',0), -(1456,10853,'boe_endspinner_sound',0), -(1457,10854,'boe_open_burst_sound',0), -(1458,10855,'boe_shield_tone_sound',0), -(1459,10856,'boggle',0), -(1460,10857,'boilover01',0), -(1461,10858,'book_white',0), -(1462,10859,'bostaff_attack_recoil',0), -(1463,10860,'bostaff_attack_recoil01',0), -(1464,10861,'bostaff_attack_recoil02',0), -(1465,10862,'bostaff_attack_recoil03',0), -(1466,10863,'bostaff_backup',0), -(1467,10864,'bostaff_charge_up',0), -(1468,10865,'bostaff_defensive_buff',0), -(1469,10866,'bostaff_dodge_backhand',0), -(1470,10867,'bostaff_dodge_down',0), -(1471,10868,'bostaff_dodge_forehand',0), -(1472,10869,'bostaff_dodge_thrust',0), -(1473,10870,'bostaff_enter',0), -(1474,10871,'bostaff_exit',0), -(1475,10872,'bostaff_feint',0), -(1476,10873,'bostaff_idle01',0), -(1477,10874,'bostaff_knockdowntoknees',0), -(1478,10875,'bostaff_knockedtoback',0), -(1479,10876,'bostaff_knockedtoback_getup',0), -(1480,10877,'bostaff_offensive_buff',0), -(1481,10878,'bostaff_ouch_backhand',0), -(1482,10879,'bostaff_ouch_down',0), -(1483,10880,'bostaff_ouch_forehand',0), -(1484,10881,'bostaff_ouch_thrust',0), -(1485,10882,'bostaff_parry_backhand',0), -(1486,10883,'bostaff_parry_down',0), -(1487,10884,'bostaff_parry_forehand',0), -(1488,10885,'bostaff_parry_thrust',0), -(1489,10886,'bostaff_strafe_left',0), -(1490,10887,'bostaff_strafe_right',0), -(1491,10888,'bostaff_super_buff',0), -(1492,10889,'bostaff_taunt_combat_art',0), -(1493,10890,'bostaff_walk',0), -(1494,10891,'bow_aim_down',0), -(1495,10892,'bow_aim_up',0), -(1496,10893,'bow_attack',0), -(1497,10894,'bow_attack_2x',0), -(1498,10895,'bow_backup',0), -(1499,10896,'bow_enter',0), -(1500,10897,'bow_exit',0), -(1501,10898,'bow_getarrow',0), -(1502,10899,'bow_knockdowntoknees',0), -(1503,10900,'bow_knockedtoback',0), -(1504,10901,'bow_knockedtoback_getup',0), -(1505,10902,'bow_pullback',0), -(1506,10903,'bow_release',0), -(1507,10904,'bow_sheathe',0), -(1508,10905,'bow_strafe_left',0), -(1509,10906,'bow_strafe_right',0), -(1510,10907,'bow_unsheathe',0), -(1511,10908,'bow_walk',0), -(1512,10909,'bowstring',0), -(1513,10910,'bowstring_electricity',0), -(1514,10911,'bowstring_electricity_red',0), -(1515,10912,'brandish',0), -(1516,10913,'breath',0), -(1517,10914,'breath_attack',0), -(1518,10915,'breath_attack_blue',0), -(1519,10916,'breath_attack_purple',0), -(1520,10917,'breath_nostop',0), -(1521,10918,'breathweapon',0), -(1522,10919,'bs_bull_form_01_snd',0), -(1523,10920,'bs_cast_armpush_snd',0), -(1524,10921,'bs_hooves_snd',0), -(1525,10922,'bs_makebull_tone_snd',0), -(1526,10923,'bubbles01',0), -(1527,10924,'burn',0), -(1528,10925,'burst_sound_01',0), -(1529,10926,'bye',0), -(1530,10927,'c',0), -(1531,10928,'cache_state0',0), -(1532,10929,'cache_state1',0), -(1533,10930,'cache_state2',0), -(1534,10931,'cached_state0',0), -(1535,10932,'cached_state1',0), -(1536,10933,'cactus_spiney_sound',0), -(1537,10934,'candle01',0), -(1538,10935,'candle02',0), -(1539,10936,'candle03',0), -(1540,10937,'candle04',0), -(1541,10938,'candle_flair01',0), -(1542,10939,'candle_flair02',0), -(1543,10940,'candle_flair03',0), -(1544,10941,'candle_smoke01',0), -(1545,10942,'candle_smoke02',0), -(1546,10943,'candle_smoke03',0), -(1547,10944,'carpet_enter',0), -(1548,10945,'carpet_exit',0), -(1549,10946,'carpet_fall',0), -(1550,10947,'carpet_idle',0), -(1551,10948,'carpet_jump',0), -(1552,10949,'carpet_land',0), -(1553,10950,'carpet_run',0), -(1554,10951,'carpet_walk',0), -(1555,10952,'cast01',0), -(1556,10953,'cast4',0), -(1557,10954,'cast_01lp_snd',0), -(1558,10955,'cast_1',0), -(1559,10956,'cast_10',0), -(1560,10957,'cast_11',0), -(1561,10958,'cast_12',0), -(1562,10959,'cast_2',0), -(1563,10960,'cast_3',0), -(1564,10961,'cast_4',0), -(1565,10962,'cast_6',0), -(1566,10963,'cast_7',0), -(1567,10964,'cast_8',0), -(1568,10965,'cast_9',0), -(1569,10966,'cast_aoe_beneficial_end',0), -(1570,10967,'cast_aoe_beneficial_loop',0), -(1571,10968,'cast_aoe_beneficial_start',0), -(1572,10969,'cast_aoe_detrimental_end',0), -(1573,10970,'cast_aoe_detrimental_loop',0), -(1574,10971,'cast_aoe_detrimental_start',0), -(1575,10973,'cast_aoe_invocation_end',0), -(1576,10974,'cast_aoe_invocation_loop',0), -(1577,10975,'cast_aoe_invocation_start',0), -(1578,10976,'cast_aoe_wand_end',0), -(1579,10977,'cast_aoe_wand_loop',0), -(1580,10978,'cast_aoe_wand_start',0), -(1581,10979,'cast_armor_01_snd',0), -(1582,10980,'cast_attack02',0), -(1583,10981,'cast_backgroundsparkle_snd',0), -(1584,10982,'cast_bard_drum_end',0), -(1585,10983,'cast_bard_drum_loop',0), -(1586,10985,'cast_bard_flute_end',0), -(1587,10986,'cast_bard_flute_loop',0), -(1588,10988,'cast_bard_stringed_end',0), -(1589,10989,'cast_bard_stringed_loop',0), -(1590,10990,'cast_bard_stringed_start',0), -(1591,10991,'cast_bard_vocal_end',0), -(1592,10992,'cast_bard_vocal_loop',0), -(1593,10994,'cast_charge_wind_01_sound',0), -(1594,10995,'cast_chargeswordglint_sound',0), -(1595,10996,'cast_clowhand_sound_01',0), -(1596,10997,'cast_clowhand_sound_02',0), -(1597,10998,'cast_clowhand_sound_03',0), -(1598,10999,'cast_deepbreath',0), -(1599,11000,'cast_distort_lefthand',0), -(1600,11001,'cast_distort_right_foot_ws',0), -(1601,11002,'cast_distort_righthand',0), -(1602,11003,'cast_drake_fire_breath',0), -(1603,11004,'cast_drone_01_snd',0), -(1604,11005,'cast_drone_02_snd',0), -(1605,11006,'cast_drone_snd',0), -(1606,11007,'cast_drone_sound',0), -(1607,11008,'cast_dustpuff_lefthand',0), -(1608,11009,'cast_dustpuff_righthand',0), -(1609,11010,'cast_elec_feet_green',0), -(1610,11011,'cast_elec_hands_four',0), -(1611,11012,'cast_elec_hands_four_up',0), -(1612,11013,'cast_elec_hands_up',0), -(1613,11014,'cast_end_sound',0), -(1614,11015,'cast_endbang2_snd',0), -(1615,11016,'cast_endbang_snd',0), -(1616,11017,'cast_endsparkle_snd',0), -(1617,11018,'cast_endthunder_snd',0), -(1618,11019,'cast_es_arches_01_snd',0), -(1619,11020,'cast_fast',0), -(1620,11021,'cast_force_snd',0), -(1621,11022,'cast_glowhand__sound_02',0), -(1622,11023,'cast_glowhand_sound_01',0), -(1623,11024,'cast_glowhand_sound_03',0), -(1624,11025,'cast_glowhand_sound_04',0), -(1625,11026,'cast_glowhand_sound_05',0), -(1626,11027,'cast_glowhand_sound_06',0), -(1627,11028,'cast_gsswipe_01_snd',0), -(1628,11029,'cast_gsswipe_02_snd',0), -(1629,11030,'cast_gsswipe_03_snd',0), -(1630,11031,'cast_hands_elec_nightblood',0), -(1631,11032,'cast_handswipe_snd',0), -(1632,11033,'cast_howlverb_sound',0), -(1633,11034,'cast_hrb_choral_snd',0), -(1634,11035,'cast_hrb_rune_snd',0), -(1635,11036,'cast_ice_laser_breath',0), -(1636,11037,'cast_kickcharge_sound',0), -(1637,11038,'cast_laser_aoe',0), -(1638,11039,'cast_lava_rocks',0), -(1639,11040,'cast_lense01',0), -(1640,11041,'cast_lense02',0), -(1641,11042,'cast_light_sound',0), -(1642,11043,'cast_mage_aggro_01',0), -(1643,11044,'cast_mage_aggro_02',0), -(1644,11045,'cast_mage_buff_01',0), -(1645,11046,'cast_mage_buff_02',0), -(1646,11047,'cast_mage_ddam_01',0), -(1647,11048,'cast_mage_ddam_02',0), -(1648,11049,'cast_mage_qa_01',0), -(1649,11050,'cast_mage_qa_02',0), -(1650,11051,'cast_mage_qa_03',0), -(1651,11052,'cast_mage_quickzap_01',0), -(1652,11053,'cast_mage_quickzap_02',0), -(1653,11054,'cast_mage_ready',0), -(1654,11055,'cast_mendhands_01',0), -(1655,11056,'cast_mendsparkleball_01',0), -(1656,11057,'cast_mendsparkleball_02',0), -(1657,11058,'cast_mendtrail_01',0), -(1658,11059,'cast_mendtrails_01',0), -(1659,11060,'cast_mendtwinkles_01',0), -(1660,11061,'cast_new_qa_part1',0), -(1661,11062,'cast_new_qa_part2',0), -(1662,11063,'cast_new_qa_part3',0), -(1663,11064,'cast_pdswipe_01_snd',0), -(1664,11065,'cast_pfx_magenuke_head',0), -(1665,11066,'cast_pillar_sound_01',0), -(1666,11067,'cast_pillar_sound_02',0), -(1667,11068,'cast_pillar_sound_03',0), -(1668,11069,'cast_pillar_sound_04',0), -(1669,11070,'cast_pillar_sound_05',0), -(1670,11071,'cast_pillars',0), -(1671,11074,'cast_priest_aggro_01',0), -(1672,11075,'cast_priest_aggro_02',0), -(1673,11076,'cast_priest_buff_01',0), -(1674,11077,'cast_priest_buff_02',0), -(1675,11078,'cast_priest_ddam_01',0), -(1676,11079,'cast_priest_ddam_02',0), -(1677,11080,'cast_priest_floating',0), -(1678,11081,'cast_quickhit_snd',0), -(1679,11082,'cast_ready',0), -(1680,11083,'cast_rune_sound_01',0), -(1681,11084,'cast_rune_sound_02',0), -(1682,11085,'cast_rune_sound_03',0), -(1683,11086,'cast_rune_sound_04',0), -(1684,11087,'cast_shield_grow',0), -(1685,11088,'cast_shortbreath',0), -(1686,11089,'cast_sneak_sound',0), -(1687,11090,'cast_spark_burst_righthand',0), -(1688,11091,'cast_sparklewave_01_snd',0), -(1689,11092,'cast_sparklewave_02_snd',0), -(1690,11093,'cast_sparklewave_03_snd',0), -(1691,11094,'cast_sparklewave_04_snd',0), -(1692,11095,'cast_sparklewave_05_snd',0), -(1693,11096,'cast_startlow_snd',0), -(1694,11097,'cast_startthunder_snd',0), -(1695,11098,'cast_steam_breath',0), -(1696,11099,'cast_summon_end',0), -(1697,11100,'cast_summon_loop',0), -(1698,11101,'cast_summon_start',0), -(1699,11102,'cast_swipe01_snd',0), -(1700,11103,'cast_swipe02_snd',0), -(1701,11104,'cast_target_det_01',0), -(1702,11105,'cast_target_det_02',0), -(1703,11106,'cast_target_det_03',0), -(1704,11107,'cast_target_detrimental_01',0), -(1705,11108,'cast_target_detrimental_02',0), -(1706,11109,'cast_targeted_benefical_end',0), -(1707,11110,'cast_targeted_benefical_loop',0), -(1708,11111,'cast_targeted_benefical_start',0), -(1709,11112,'cast_targeted_beneficial_end',0), -(1710,11113,'cast_targeted_beneficial_loop',0), -(1711,11114,'cast_targeted_beneficial_start',0), -(1712,11115,'cast_targeted_detrimental_end',0), -(1713,11116,'cast_targeted_detrimental_loop',0), -(1714,11117,'cast_targeted_detrimental_start',0), -(1715,11118,'cast_targeted_detrimental_start2',0), -(1716,11119,'cast_targeted_wand_end',0), -(1717,11120,'cast_targeted_wand_loop',0), -(1718,11121,'cast_targeted_wand_start',0), -(1719,11122,'cast_tarranax_breath',0), -(1720,11123,'cast_tarranax_breath_path',0), -(1721,11124,'cast_tarranax_breath_start',0), -(1722,11125,'cast_thunder_snd',0), -(1723,11126,'cast_trail_leftarm_bright',0), -(1724,11127,'cast_trail_rightarm_bright',0), -(1725,11128,'cast_undertone_snd',0), -(1726,11129,'cast_venekors_fire_breath',0), -(1727,11130,'cast_wildcharge_sound',0), -(1728,11131,'cast_wildswingwindsword_sound',0), -(1729,11132,'cast_wuoshi_choking_vines_aoe',0), -(1730,11133,'cast_wuoshi_fire_and_ice_aoe',0), -(1731,11134,'cast_wuoshi_tree_morph',0), -(1732,11135,'cast_zombie_scare',0), -(1733,11136,'cchains_resultchains_snd',0), -(1734,11137,'cchains_sing_snd',0), -(1735,11138,'cf_coins_bounce_background_snd',0), -(1736,11139,'cf_coins_bounce_bkgrnd_short_snd',0), -(1737,11140,'cf_coins_lots_snd',0), -(1738,11141,'cf_coins_many_snd',0), -(1739,11142,'cf_coinsfall_snd',0), -(1740,11143,'charge',0), -(1741,11144,'charge_burst_snd',0), -(1742,11145,'charge_rumble_snd',0), -(1743,11146,'charge_up',0), -(1744,11147,'charge_whoosh_snd',0), -(1745,11148,'charm_cast_snd',0), -(1746,11149,'charm_flutes_snd',0), -(1747,11150,'cheer',0), -(1748,11151,'chimney01',0), -(1749,11152,'chuckle',0), -(1750,11153,'ciseme_m',0), -(1751,11154,'cl_catglow_snd',0), -(1752,11155,'clear_target_tigger',0), -(1753,11156,'clear_target_trigger',0), -(1754,11157,'climbing',0), -(1755,11158,'climbing_chainmail_stone',0), -(1756,11159,'climbing_chainmail_wood',0), -(1757,11160,'climbing_enter_down',0), -(1758,11161,'climbing_exit_up',0), -(1759,11162,'climbing_idle01',0), -(1760,11163,'climbing_leather_stone',0), -(1761,11164,'climbing_leather_wood',0), -(1762,11165,'climbing_metal_stone',0), -(1763,11166,'climbing_metal_wood',0), -(1764,11167,'climbing_ouch',0), -(1765,11168,'closed',0), -(1766,11169,'cloud_group_sound',0), -(1767,11170,'cloud_sound',0), -(1768,11171,'cloud_sound_02',0), -(1769,11172,'cloud_widget',0), -(1770,11173,'cn_ringout_snd',0), -(1771,11174,'cn_strums_snd',0), -(1772,11175,'coals01',0), -(1773,11176,'coals_failure',0), -(1774,11177,'coals_fire_large',0), -(1775,11178,'coals_fire_small',0), -(1776,11179,'coins_and_jewels_pile',0), -(1777,11180,'coins_pile_copper',0), -(1778,11181,'coins_pile_gold',0), -(1779,11182,'coins_pile_silver',0), -(1780,11183,'cold_breath',0), -(1781,11184,'comabt_exit',0), -(1782,11185,'combat',0), -(1783,11186,'combat_backup',0), -(1784,11187,'combat_backup_run',0), -(1785,11188,'combat_enter',0), -(1786,11189,'combat_exit',0), -(1787,11190,'combat_fx',0), -(1788,11191,'combat_idle',0), -(1789,11192,'combat_idle01',0), -(1790,11193,'combat_idle1',0), -(1791,11194,'combat_idle_bark',0), -(1792,11195,'combat_idle_enter',0), -(1793,11196,'combat_idle_jump',0), -(1794,11197,'combat_idle_rhand',0), -(1795,11198,'combat_idle_snap',0), -(1796,11199,'combat_idle_sound01',0), -(1797,11200,'combat_idle_sound02',0), -(1798,11201,'combat_idleflap',0), -(1799,11202,'combat_ouch',0), -(1800,11203,'combat_ouch_sound',0), -(1801,11204,'combat_peace',0), -(1802,11205,'combat_run',0), -(1803,11206,'combat_strafe_left_run',0), -(1804,11207,'combat_strafe_right_run',0), -(1805,11208,'combat_tail',0), -(1806,11209,'combat_tail_cloak',0), -(1807,11210,'combat_turn_left',0), -(1808,11211,'combat_turn_right',0), -(1809,11212,'combat_walk',0), -(1810,11213,'complete',0), -(1811,11214,'confused',0), -(1812,11220,'converse',0), -(1813,11221,'converse_female01',0), -(1814,11222,'converse_female02',0), -(1815,11223,'converse_female03',0), -(1816,11224,'converse_female04',0), -(1817,11225,'converse_female05',0), -(1818,11226,'converse_female06',0), -(1819,11227,'converse_female07',0), -(1820,11228,'converse_female08',0), -(1821,11229,'converse_female09',0), -(1822,11230,'converse_female10',0), -(1823,11231,'converse_female11',0), -(1824,11232,'converse_female12',0), -(1825,11233,'converse_male01',0), -(1826,11234,'converse_male02',0), -(1827,11235,'converse_male03',0), -(1828,11236,'converse_male05',0), -(1829,11237,'converse_male06',0), -(1830,11238,'converse_male07',0), -(1831,11239,'converse_male08',0), -(1832,11240,'converse_male09',0), -(1833,11241,'converse_male10',0), -(1834,11242,'converse_male11',0), -(1835,11243,'cooking_failure',0), -(1836,11244,'cooking_idle',0), -(1837,11245,'cooking_success',0), -(1838,11246,'corpse',0), -(1839,11247,'cos_call_storm_snd',0), -(1840,11248,'cos_storm_space_snd',0), -(1841,11249,'cp_charge_snd',0), -(1842,11250,'cr_choral01_sound',0), -(1843,11251,'cr_choral02_sound',0), -(1844,11252,'cracks',0), -(1845,11253,'crash_enter',0), -(1846,11254,'crash_exit',0), -(1847,11255,'crazy',0), -(1848,11256,'cringe',0), -(1849,11257,'croak_01',0), -(1850,11258,'croak_02',0), -(1851,11259,'croak_03',0), -(1852,11260,'croak_04',0), -(1853,11261,'croak_05',0), -(1854,11262,'croak_06',0), -(1855,11263,'croak_07',0), -(1856,11264,'croak_08',0), -(1857,11265,'croak_09',0), -(1858,11266,'crouch_backup',0), -(1859,11267,'crouch_run',0), -(1860,11268,'crouch_strafe_left',0), -(1861,11269,'crouch_strafe_right',0), -(1862,11270,'crouch_tail',0), -(1863,11271,'crouch_tail_cloak',0), -(1864,11272,'crouch_turn_left',0), -(1865,11273,'crouch_turn_right',0), -(1866,11274,'crouch_walk',0), -(1867,11275,'cry',0), -(1868,11276,'cs_begin_snd',0), -(1869,11277,'cs_cast_lp_snd',0), -(1870,11278,'cs_disco_lp01_snd',0), -(1871,11279,'cs_end_snd',0), -(1872,11280,'cs_ice_crackle_01',0), -(1873,11281,'cs_iceburst_sound',0), -(1874,11282,'cs_icetones_01',0), -(1875,11283,'cs_icewind_sound',0), -(1876,11284,'cs_result_sound',0), -(1877,11285,'curse',0), -(1878,11286,'curtsey',0), -(1879,11287,'cutthroat',0), -(1880,11288,'cv_candle01_snd',0), -(1881,11289,'cv_candle02_snd',0), -(1882,11290,'cv_darkcandle_snd',0), -(1883,11291,'cv_drone_snd',0), -(1884,11292,'cv_handwave01_snd',0), -(1885,11293,'cv_handwave02_snd',0), -(1886,11294,'damage01',0), -(1887,11295,'damage02',0), -(1888,11296,'damage03',0), -(1889,11297,'damage_small',0), -(1890,11298,'dance',0), -(1891,11299,'dance01',0), -(1892,11300,'dark_smoke',0), -(1893,11301,'dark_smoke_up',0), -(1894,11302,'db_drone_sound',0), -(1895,11303,'db_electricend_sound',0), -(1896,11304,'db_swordstickdirt_sound',0), -(1897,11305,'dbb_dragonbreath_snd',0), -(1898,11306,'dbb_dragonbreathhiwav_snd',0), -(1899,11307,'dcs_scarab_lp_snd',0), -(1900,11308,'dcspid_spider_snd',0), -(1901,11309,'dead_dark_smoke',0), -(1902,11310,'dead_dark_smoke_head',0), -(1903,11311,'dead_enter_death02',0), -(1904,11312,'dead_enter_death03',0), -(1905,11313,'dead_enter_fall',0), -(1906,11314,'dead_enter_scream',0), -(1907,11315,'dead_enter_sound',0), -(1908,11316,'dead_entertiming_a',0), -(1909,11317,'dead_entertiming_b',0), -(1910,11318,'dead_entertiming_c',0), -(1911,11319,'dead_entertiming_c2',0), -(1912,11320,'dead_entertiming_c3',0), -(1913,11321,'dead_entertiming_d',0), -(1914,11322,'dead_entertiming_e',0), -(1915,11323,'dead_exit',0), -(1916,11324,'dead_fall',0), -(1917,11325,'dead_scream01',0), -(1918,11326,'dead_scream02',0), -(1919,11327,'dead_tail',0), -(1920,11328,'death_fall01',0), -(1921,11329,'death_fall02',0), -(1922,11330,'default',0), -(1923,11331,'defensive_buff',0), -(1924,11332,'definsive_buff',0), -(1925,11333,'descend_sound_01',0), -(1926,11334,'design_fear_gate_flash',0), -(1927,11335,'design_fireflies',0), -(1928,11336,'design_fireflies_evil',0), -(1929,11337,'design_hearts_all',0), -(1930,11338,'design_hearts_big_all',0), -(1931,11339,'design_hearts_big_blue',0), -(1932,11340,'design_hearts_big_purple',0), -(1933,11341,'design_hearts_big_red',0), -(1934,11342,'design_hearts_blue',0), -(1935,11343,'design_hearts_purple',0), -(1936,11344,'design_hearts_red',0), -(1937,11345,'design_hummingbirds',0), -(1938,11346,'design_portal_to_hell',0), -(1939,11347,'design_result_backdraft',0), -(1940,11348,'design_result_cyclone_sand',0), -(1941,11349,'design_result_cyclone_sand_ccw',0), -(1942,11350,'design_result_freeport_pit_fire_spurt',0), -(1943,11351,'design_result_fungusman_poked',0), -(1944,11352,'design_result_halloween_fog',0), -(1945,11353,'design_result_light_shafts',0), -(1946,11354,'design_result_sparkle_scan_up',0), -(1947,11355,'design_result_teleporter',0), -(1948,11356,'design_smoke_jet_brown',0), -(1949,11357,'design_smoke_jet_brown_int',0), -(1950,11358,'design_smoke_jet_gray',0), -(1951,11359,'design_smoke_jet_gray_int',0), -(1952,11360,'design_smoke_jet_white',0), -(1953,11361,'design_smoke_jet_white_int',0), -(1954,11362,'design_sound_blow',0), -(1955,11363,'design_sound_bubble',0), -(1956,11364,'design_sound_steam',0), -(1957,11365,'design_steamfont_bubbles_ripples',0), -(1958,11366,'design_steamfont_rainbow',0), -(1959,11367,'design_steamfont_slow_steam',0), -(1960,11368,'design_steamfont_steam_column',0), -(1961,11369,'design_steamfont_steam_tube_a',0), -(1962,11370,'design_steamfont_steam_tube_b',0), -(1963,11371,'design_steamfont_water_column',0), -(1964,11372,'design_teleport_spires',0), -(1965,11373,'design_trap_spear',0), -(1966,11374,'design_trap_weight',0), -(1967,11375,'design_vision_plane_druid_ring',0), -(1968,11376,'design_vortex_portal_blue',0), -(1969,11377,'design_vortex_portal_green',0), -(1970,11378,'design_vortex_portal_oval_blue',0), -(1971,11379,'destination',0), -(1972,11380,'destroy',0), -(1973,11381,'destroyed',0), -(1974,11382,'df_charge_sound',0), -(1975,11383,'df_hit_sound',0), -(1976,11384,'df_impact_sound',0), -(1977,11385,'df_vortex_sound',0), -(1978,11386,'dieyell',0), -(1979,11387,'dig',0), -(1980,11388,'dig_enter',0), -(1981,11389,'dig_exit',0), -(1982,11390,'dig_loop',0), -(1983,11391,'ding',0), -(1984,11392,'disarm_both',0), -(1985,11393,'disarm_left',0), -(1986,11394,'disarm_right',0), -(1987,11395,'disease',0), -(1988,11396,'dm_backgroundexplosions_snd',0), -(1989,11397,'dm_dragonform_snd',0), -(1990,11398,'dm_energyforce_snd',0), -(1991,11399,'dodge',0), -(1992,11400,'dodge01',0), -(1993,11401,'dodge02',0), -(1994,11402,'dodge03',0), -(1995,11403,'dodge1',0), -(1996,11404,'dodge2',0), -(1997,11405,'dodge3',0), -(1998,11406,'dodge_backhand',0), -(1999,11407,'dodge_down',0), -(2000,11408,'dodge_forehand',0), -(2001,11409,'dodge_thrust',0), -(2002,11410,'doh',0), -(2003,11411,'door_move',0), -(2004,11412,'door_slam',0), -(2005,11413,'doorcorner01',0), -(2006,11414,'doorcorner02',0), -(2007,11415,'doubletake',0), -(2008,11416,'dpsd_swordshatter.wav_snd',0), -(2009,11417,'dragon_e3demo',0), -(2010,11418,'draw_metal_weapon_snd',0), -(2011,11419,'draw_weapon_snd',0), -(2012,11420,'draw_weapon_trigger',0), -(2013,11421,'drinking_failure',0), -(2014,11422,'drinking_idle',0), -(2015,11423,'drinking_success',0), -(2016,11424,'drip01',0), -(2017,11425,'drip02',0), -(2018,11426,'dronewolf_sound',0), -(2019,11427,'drum_drone_snd',0), -(2020,11428,'drum_drum_snd',0), -(2021,11429,'ds_dragonspawn_sound',0), -(2022,11430,'ds_gashiss_snd',0), -(2023,11433,'dual_wield_attack_recoil',0), -(2024,11434,'dual_wield_attack_recoil01',0), -(2025,11435,'dual_wield_attack_recoil02',0), -(2026,11436,'dual_wield_attack_recoil03',0), -(2027,11437,'dual_wield_backup',0), -(2028,11438,'dual_wield_defensive_buff',0), -(2029,11439,'dual_wield_dodge_backhand',0), -(2030,11440,'dual_wield_dodge_down',0), -(2031,11441,'dual_wield_dodge_forehand',0), -(2032,11442,'dual_wield_dodge_thrust',0), -(2033,11443,'dual_wield_enter',0), -(2034,11444,'dual_wield_exit',0), -(2035,11445,'dual_wield_feint',0), -(2036,11446,'dual_wield_knockdowntoknees',0), -(2037,11447,'dual_wield_knockedtoback',0), -(2038,11448,'dual_wield_knockedtoback_getup',0), -(2039,11449,'dual_wield_offensive_buff',0), -(2040,11450,'dual_wield_ouch_backhand',0), -(2041,11451,'dual_wield_ouch_down',0), -(2042,11452,'dual_wield_ouch_forehand',0), -(2043,11453,'dual_wield_ouch_thrust',0), -(2044,11454,'dual_wield_parry_backhand',0), -(2045,11455,'dual_wield_parry_down',0), -(2046,11456,'dual_wield_parry_forehand',0), -(2047,11457,'dual_wield_parry_thrust',0), -(2048,11458,'dual_wield_strafe_left',0), -(2049,11459,'dual_wield_strafe_right',0), -(2050,11460,'dual_wield_super_buff',0), -(2051,11461,'dual_wield_taunt_combat_art',0), -(2052,11462,'dual_wield_walk',0), -(2053,11463,'duck',0), -(2054,11464,'duck_short',0), -(2055,11465,'dust_base',0), -(2056,11466,'dust_holster_center',0), -(2057,11467,'dust_holster_left',0), -(2058,11468,'dust_holster_right',0), -(2059,11469,'dust_leftfoot',0), -(2060,11470,'dust_lefttfoot',0), -(2061,11471,'dust_puff',0), -(2062,11472,'dust_rightfoot',0), -(2063,11473,'dust_righttfoot',0), -(2064,11474,'dw_snap_snd',0), -(2065,11475,'e',0), -(2066,11476,'eat',0), -(2067,11477,'ef_cast_chains_lp_snd',0), -(2068,11478,'ef_chains_snd',0), -(2069,11479,'elbow',0), -(2070,11480,'electric_shackles_softer_sound',0), -(2071,11481,'electric_shackles_sound',0), -(2072,11482,'end_snarl_sound',0), -(2073,11483,'endsplat',0), -(2074,11484,'enter',0), -(2075,11485,'es_flutecast_sound',0), -(2076,11486,'es_fluteresult_sound',0), -(2077,11487,'ew_castlp_snd',0), -(2078,11488,'explode01',0), -(2079,11489,'explode02',0), -(2080,11490,'explode03',0), -(2081,11491,'explode_big',0), -(2082,11492,'explosion',0), -(2083,11493,'eye_beam',0), -(2084,11494,'eye_beam_red_blue',0), -(2085,11495,'eyes',0), -(2086,11496,'f',0), -(2087,11497,'face_combat',0), -(2088,11498,'face_idle',0), -(2089,11499,'facial_frown',0), -(2090,11500,'facial_smile',0), -(2091,11501,'fae_dance_spark_sphere',0), -(2092,11502,'fae_silvani_transformation',0), -(2093,11503,'failure01',0), -(2094,11504,'failure02',0), -(2095,11505,'fall_enter',0), -(2096,11506,'fall_idle',0), -(2097,11507,'fall_moving',0), -(2098,11508,'fall_sequence',0), -(2099,11509,'fb_froggy01_snd',0), -(2100,11510,'fb_froggyform_snd',0), -(2101,11511,'fb_ice_explode_sound',0), -(2102,11512,'fbb_charge_snd',0), -(2103,11513,'fbb_crunches_snd',0), -(2104,11514,'fbb_explode_snd',0), -(2105,11515,'fbd_charge01_snd',0), -(2106,11516,'fbd_impact_snd',0), -(2107,11517,'fbd_precharge_snd',0), -(2108,11518,'fd_distort02_snd',0), -(2109,11519,'fd_distort_end_snd',0), -(2110,11520,'fd_distort_low_snd',0), -(2111,11521,'fd_distort_snd',0), -(2112,11522,'feint',0), -(2113,11523,'ff_explode_lp_snd',0), -(2114,11524,'ff_lasercloud_lp_snd',0), -(2115,11525,'fgdt_dust_snd',0), -(2116,11526,'fh_cast_sparkles_snd',0), -(2117,11527,'fh_end_body_fall_snd',0), -(2118,11528,'fh_flames_snd',0), -(2119,11529,'fh_hammer_appear_02_snd',0), -(2120,11530,'fh_hammer_appear_snd',0), -(2121,11531,'fh_hammer_impact_snd',0), -(2122,11532,'fh_hammer_whoosh_snd',0), -(2123,11533,'fire',0), -(2124,11534,'fire01',0), -(2125,11535,'fire02',0), -(2126,11536,'fire_breath',0), -(2127,11537,'fire_loop',0), -(2128,11538,'fireblast',0), -(2129,11539,'fishing_cast',0), -(2130,11540,'fishing_fight',0), -(2131,11541,'fishing_reel_in',0), -(2132,11542,'fizzle',0), -(2133,11543,'fkd_impact_sound',0), -(2134,11544,'fkd_kneebreak_sound',0), -(2135,11545,'fl_bckgrnd_snd',0), -(2136,11546,'fl_lash_snd',0), -(2137,11547,'fl_whiphit_snd',0), -(2138,11548,'flames_sound',0), -(2139,11549,'flash_blue',0), -(2140,11550,'flash_green',0), -(2141,11551,'flash_red',0), -(2142,11552,'flash_yellow',0), -(2143,11553,'flee',0), -(2144,11554,'flex',0), -(2145,11555,'flight_path',0), -(2146,11556,'flingpoo',0), -(2147,11557,'flirt',0), -(2148,11558,'flustered',0), -(2149,11559,'fly',0), -(2150,11560,'fly_attack',0), -(2151,11561,'fly_attack_bite',0), -(2152,11562,'fly_attack_breath',0), -(2153,11563,'fly_attack_breath_arc',0), -(2154,11564,'fly_dive',0), -(2155,11565,'fly_glide',0), -(2156,11566,'fly_glide2',0), -(2157,11567,'fly_idle',0), -(2158,11568,'fly_in',0), -(2159,11569,'fly_ouch',0), -(2160,11570,'fly_run',0), -(2161,11571,'fmba_breathattack_snd',0), -(2162,11572,'foostep_trigger',0), -(2163,11573,'foot_dust_left',0), -(2164,11574,'foot_dust_right',0), -(2165,11575,'foot_shake',0), -(2166,11576,'footste_trigger',0), -(2167,11577,'footstep',0), -(2168,11578,'footstep_chainmail_carpet',0), -(2169,11579,'footstep_chainmail_dirt',0), -(2170,11580,'footstep_chainmail_grass',0), -(2171,11581,'footstep_chainmail_gravel',0), -(2172,11582,'footstep_chainmail_ice',0), -(2173,11583,'footstep_chainmail_metal',0), -(2174,11584,'footstep_chainmail_mud',0), -(2175,11585,'footstep_chainmail_sand',0), -(2176,11586,'footstep_chainmail_snow',0), -(2177,11587,'footstep_chainmail_stone',0), -(2178,11588,'footstep_chainmail_water',0), -(2179,11589,'footstep_chainmail_wood',0), -(2180,11590,'footstep_leather_carpet',0), -(2181,11591,'footstep_leather_dirt',0), -(2182,11592,'footstep_leather_grass',0), -(2183,11593,'footstep_leather_gravel',0), -(2184,11594,'footstep_leather_ice',0), -(2185,11595,'footstep_leather_metal',0), -(2186,11596,'footstep_leather_mud',0), -(2187,11597,'footstep_leather_sand',0), -(2188,11598,'footstep_leather_snow',0), -(2189,11599,'footstep_leather_stone',0), -(2190,11600,'footstep_leather_water',0), -(2191,11601,'footstep_leather_wood',0), -(2192,11602,'footstep_metal_carpet',0), -(2193,11603,'footstep_metal_dirt',0), -(2194,11604,'footstep_metal_grass',0), -(2195,11605,'footstep_metal_gravel',0), -(2196,11606,'footstep_metal_ice',0), -(2197,11607,'footstep_metal_metal',0), -(2198,11608,'footstep_metal_mud',0), -(2199,11609,'footstep_metal_sand',0), -(2200,11610,'footstep_metal_snow',0), -(2201,11611,'footstep_metal_stone',0), -(2202,11612,'footstep_metal_water',0), -(2203,11613,'footstep_metal_wood',0), -(2204,11614,'footstep_trigger',0), -(2205,11615,'forest_flare',0), -(2206,11616,'forestry_chopping',0), -(2207,11617,'four_rings',0), -(2208,11618,'four_rings_fail',0), -(2209,11619,'frog_attack_01',0), -(2210,11620,'frog_hit',0), -(2211,11621,'frog_ouch',0), -(2212,11622,'frog_squish_01',0), -(2213,11623,'frog_squish_02',0), -(2214,11624,'frog_squish_03',0), -(2215,11625,'frog_tongue_01',0), -(2216,11626,'frog_tongueslime_01',0), -(2217,11627,'frog_whoosh_01',0), -(2218,11628,'frustrated',0), -(2219,11629,'fs_cast_flame_snd',0), -(2220,11630,'fs_endfire_snd',0), -(2221,11631,'fs_firefall_snd',0), -(2222,11632,'fs_whoosh_snd',0), -(2223,11633,'fullcurtsey',0), -(2224,11634,'fusion_bubbly_snd',0), -(2225,11635,'fusion_cast_snd',0), -(2226,11636,'gc_boneburs_snd',0), -(2227,11637,'gc_castcharge_snd',0), -(2228,11638,'gc_result_snd',0), -(2229,11639,'gc_screams_snd',0), -(2230,11640,'gem_glow',0), -(2231,11641,'gemsparkle',0), -(2232,11642,'gemsparkle_fail1',0), -(2233,11643,'gemsparkle_fail2',0), -(2234,11644,'gemsparkle_go',0), -(2235,11645,'ghost_carpet',0), -(2236,11646,'ghost_die',0), -(2237,11647,'ghost_loop',0), -(2238,11648,'giggle',0), -(2239,11649,'glare',0), -(2240,11650,'glide',0), -(2241,11651,'glow',0), -(2242,11652,'glow_top',0), -(2243,11653,'go',0), -(2244,11654,'go_down',0), -(2245,11655,'green_fire',0), -(2246,11656,'green_smoke',0), -(2247,11657,'griffin_idle',0), -(2248,11658,'griffin_run',0), -(2249,11659,'griffin_walk',0), -(2250,11660,'group_chargeswordglint_sound',0), -(2251,11661,'group_cloud_sound',0), -(2252,11662,'group_electricend_sound',0), -(2253,11663,'grumble',0), -(2254,11664,'gutcramp',0), -(2255,11665,'gw_chargeup_snd',0), -(2256,11666,'gw_grantwish_snd',0), -(2257,11667,'gw_impact_sound',0), -(2258,11668,'happy',0), -(2259,11669,'harpy_fire_snd',0), -(2260,11670,'harpy_spin_snd',0), -(2261,11671,'haste_sparkles_snd',0), -(2262,11672,'haste_swirl_snd',0), -(2263,11673,'haste_swords_snd',0), -(2264,11674,'head_tracking_off_trigger',0), -(2265,11675,'hearnoevil',0), -(2266,11676,'heartattack',0), -(2267,11677,'heat_shimmer',0), -(2268,11678,'heavydamage_enter',0), -(2269,11679,'heavydamage_idle',0), -(2270,11680,'heckno',0), -(2271,11681,'heelclick',0), -(2272,11682,'hello',0), -(2273,11683,'heroic_sound',0), -(2274,11684,'hide',0), -(2275,11685,'hide_melee_projectile_trigger',0), -(2276,11686,'hit_02',0), -(2277,11687,'hit_chainmail_snd',0), -(2278,11688,'hit_cloth_snd',0), -(2279,11689,'hit_leather_snd',0), -(2280,11690,'hit_metal_chainmail_snd',0), -(2281,11691,'hit_metal_cloth_snd',0), -(2282,11692,'hit_metal_leather_snd',0), -(2283,11693,'hit_metal_metal_snd',0), -(2284,11694,'hit_metal_skin_snd',0), -(2285,11695,'hit_metal_snd',0), -(2286,11696,'hit_shake',0), -(2287,11697,'hit_skin_chainmail_snd',0), -(2288,11698,'hit_skin_cloth_snd',0), -(2289,11699,'hit_skin_leather_snd',0), -(2290,11700,'hit_skin_metal_snd',0), -(2291,11701,'hit_skin_skin_snd',0), -(2292,11702,'hit_skin_snd',0), -(2293,11703,'hit_snd',0), -(2294,11704,'hit_target_tigger',0), -(2295,11705,'hit_target_trigger',0), -(2296,11706,'hit_wood_chainmail_snd',0), -(2297,11707,'hit_wood_cloth_snd',0), -(2298,11708,'hit_wood_leather_snd',0), -(2299,11709,'hit_wood_metal_snd',0), -(2300,11710,'hit_wood_skin_snd',0), -(2301,11711,'hitonhead_sound',0), -(2302,11712,'horse_fall',0), -(2303,11713,'horse_jump',0), -(2304,11714,'horse_land',0), -(2305,11715,'horse_run',0), -(2306,11716,'horse_tail',0), -(2307,11717,'horse_walk',0), -(2308,11718,'howl',0), -(2309,11719,'hr_ghost_gallop_snd',0), -(2310,11720,'hr_whiney_snd',0), -(2311,11721,'hrb_endruneblur_sound',0), -(2312,11722,'hro_heal_snd',0), -(2313,11723,'hro_runeorbit_snd',0), -(2314,11724,'hungry',0), -(2315,11725,'ic_fragments_snd',0), -(2316,11726,'ic_ice_bkgrnd_sound',0), -(2317,11727,'ic_ice_spike_sound',0), -(2318,11728,'idle03',0), -(2319,11729,'idle04',0), -(2320,11730,'idle_01',0), -(2321,11731,'idle_bark',0), -(2322,11732,'idle_break',0), -(2323,11733,'idle_e3',0), -(2324,11734,'idle_pant',0), -(2325,11735,'idle_sniff',0), -(2326,11736,'idle_snort',0), -(2327,11737,'idle_static',0), -(2328,11738,'idle_step',0), -(2329,11739,'idle_vocal',0), -(2330,11740,'idletiming_a',0), -(2331,11741,'idletiming_b',0), -(2332,11742,'idletiming_c',0), -(2333,11743,'idletiming_d',0), -(2334,11744,'idletiming_e',0), -(2335,11745,'idletiming_g',0), -(2336,11746,'idletiming_h',0), -(2337,11747,'idletiming_i',0), -(2338,11748,'ignite_weapon_sh',0), -(2339,11749,'ilt_tap_snd',0), -(2340,11750,'inhale',0), -(2341,11752,'int_cast_lp_snd',0), -(2342,11753,'int_cast_sparkles_lp',0), -(2343,11754,'int_float_sound',0), -(2344,11755,'int_intglow_sound',0), -(2345,11756,'itch',0), -(2346,11757,'jump',0), -(2347,11758,'jump_moving',0), -(2348,11759,'jump_substitute',0), -(2349,11760,'kettle01',0), -(2350,11761,'kick',0), -(2351,11762,'kiss',0), -(2352,11763,'knockdown_attack',0), -(2353,11764,'knockdowntoknees',0), -(2354,11765,'knockdowntokness',0), -(2355,11766,'knockdwontoknees',0), -(2356,11767,'knockedtoback',0), -(2357,11768,'knockedtoback_getup',0), -(2358,11769,'knockedtoback_onbackidle',0), -(2359,11770,'knockedtoknees',0), -(2360,11771,'knockedtokness',0), -(2361,11772,'knocktoknees',0), -(2362,11773,'l',0), -(2363,11774,'la_lion_roar_02_snd',0), -(2364,11775,'la_lion_roar_snd',0), -(2365,11776,'land',0), -(2366,11777,'land_thud',0), -(2367,11778,'landing',0), -(2368,11779,'launch_melee_projectile_trigger',0), -(2369,11780,'lb2_zap_snd',0), -(2370,11781,'lb_cloud_sound',0), -(2371,11782,'lb_volts_sound',0), -(2372,11783,'leatherworking_failure',0), -(2373,11784,'leatherworking_idle',0), -(2374,11785,'leatherworking_success',0), -(2375,11786,'left_hand_fist',0), -(2376,11787,'left_hand_relaxed',0), -(2377,11788,'level_up3d_sound',0), -(2378,11789,'light_torch',0), -(2379,11790,'lightdamage_enter',0), -(2380,11791,'lightdamage_idle',0), -(2381,11792,'lightning_spheres',0), -(2382,11793,'listen',0), -(2383,11794,'long_fall',0), -(2384,11795,'long_fall_moving',0), -(2385,11796,'lookaway',0), -(2386,11797,'lr_castlion_snd',0), -(2387,11798,'lr_growl_snd',0), -(2388,11799,'lt_suck2_snd',0), -(2389,11800,'lt_suck_snd',0), -(2390,11801,'lucan_lightning_bolt',0), -(2391,11802,'lvlup_achievment_snd',0), -(2392,11803,'m',0), -(2393,11804,'mc_castend_snd',0), -(2394,11805,'mc_castopen_snd',0), -(2395,11806,'mc_manna_channel_snd',0), -(2396,11807,'mc_resultwhip_snd',0), -(2397,11808,'mcp_shield',0), -(2398,11809,'mediumdamage_enter',0), -(2399,11810,'mediumdamage_idle',0), -(2400,11811,'metalworking_failure',0), -(2401,11812,'metalworking_idle',0), -(2402,11813,'metalworking_success',0), -(2403,11814,'miss_target_tigger',0), -(2404,11815,'miss_target_trigger',0), -(2405,11816,'molten_metal',0), -(2406,11817,'monk_attack_recoil',0), -(2407,11818,'monk_attack_recoil01',0), -(2408,11819,'monk_attack_recoil02',0), -(2409,11820,'monk_attack_recoil03',0), -(2410,11821,'monk_backup',0), -(2411,11822,'monk_charge_up',0), -(2412,11823,'monk_defensive_buff',0), -(2413,11824,'monk_dodge_forehand',0), -(2414,11825,'monk_dodge_thrust',0), -(2415,11826,'monk_enter',0), -(2416,11827,'monk_exit',0), -(2417,11828,'monk_feint',0), -(2418,11829,'monk_idle01',0), -(2419,11830,'monk_kick',0), -(2420,11831,'monk_kick_flying',0), -(2421,11832,'monk_kick_spin',0), -(2422,11833,'monk_knockdowntoknees',0), -(2423,11834,'monk_knockedtoback',0), -(2424,11835,'monk_knockedtoback_getup',0), -(2425,11836,'monk_offensive_buff',0), -(2426,11837,'monk_ouch_backhand',0), -(2427,11838,'monk_ouch_down',0), -(2428,11839,'monk_ouch_forehand',0), -(2429,11840,'monk_ouch_thrust',0), -(2430,11841,'monk_parry_backhand',0), -(2431,11842,'monk_parry_down',0), -(2432,11843,'monk_parry_forehand',0), -(2433,11844,'monk_parry_thrust',0), -(2434,11845,'monk_strafe_left',0), -(2435,11846,'monk_strafe_right',0), -(2436,11847,'monk_super_buff',0), -(2437,11848,'monk_taunt_combat_art',0), -(2438,11849,'monk_walk',0), -(2439,11850,'monk_whirling_attack',0), -(2440,11851,'mood_afraid',0), -(2441,11852,'mood_angry',0), -(2442,11853,'mood_combat',0), -(2443,11854,'mood_happy',0), -(2444,11855,'mood_idle',0), -(2445,11856,'mood_sad',0), -(2446,11857,'mood_tired',0), -(2447,11858,'moon',0), -(2448,11859,'mount',0), -(2449,11860,'mr_chomp',0), -(2450,11861,'mr_curl',0), -(2451,11862,'mr_death_yell',0), -(2452,11863,'mr_fall',0), -(2453,11864,'mr_growl',0), -(2454,11865,'mr_land',0), -(2455,11866,'mr_ouch_01',0), -(2456,11867,'mr_run_01',0), -(2457,11868,'myst_caststars_snd',0), -(2458,11869,'myst_caststarsresult_snd',0), -(2459,11870,'myst_stars_snd',0), -(2460,11871,'nb_burn_01_snd',0), -(2461,11872,'nb_burst_02_snd',0), -(2462,11873,'nb_burst_snd',0), -(2463,11874,'nb_castmagic_snd',0), -(2464,11875,'nb_handsparks_long_snd',0), -(2465,11876,'nb_handsparks_louder_snd',0), -(2466,11877,'nb_handsparks_snd',0), -(2467,11878,'nbgroup_castmagic_snd',0), -(2468,11879,'needle01',0), -(2469,11880,'neener',0), -(2470,11881,'no',0), -(2471,11882,'nod',0), -(2472,11883,'o',0), -(2473,11884,'off_combat',0), -(2474,11885,'off_enter',0), -(2475,11886,'off_exit',0), -(2476,11887,'off_idle',0), -(2477,11888,'off_peace',0), -(2478,11889,'off_sit',0), -(2479,11890,'offensive_buff',0), -(2480,11891,'one_ring',0), -(2481,11892,'one_ring_fail',0), -(2482,11893,'oov_bubbles_snd',0), -(2483,11894,'oov_effect_short_snd',0), -(2484,11895,'oov_effect_snd',0), -(2485,11896,'oov_heal_snd',0), -(2486,11897,'open',0), -(2487,11898,'open_coins_and_jewels',0), -(2488,11899,'open_coins_copper',0), -(2489,11900,'open_coins_gold',0), -(2490,11901,'open_coins_silver',0), -(2491,11902,'open_glow',0), -(2492,11903,'opened',0), -(2493,11904,'opened_coins_and_jewels',0), -(2494,11905,'opened_coins_copper',0), -(2495,11906,'opened_coins_gold',0), -(2496,11907,'opened_coins_silver',0), -(2497,11908,'opened_glow',0), -(2498,11909,'orate',0), -(2499,11910,'other_idle',0), -(2500,11911,'ouch',0), -(2501,11912,'ouch+forehand',0), -(2502,11913,'ouch01',0), -(2503,11914,'ouch01_01',0), -(2504,11915,'ouch02',0), -(2505,11916,'ouch02_01',0), -(2506,11917,'ouch03',0), -(2507,11918,'ouch03_01',0), -(2508,11919,'ouch04',0), -(2509,11920,'ouch_01',0), -(2510,11921,'ouch_backhand',0), -(2511,11922,'ouch_backhand_01',0), -(2512,11923,'ouch_bakchand',0), -(2513,11924,'ouch_big',0), -(2514,11925,'ouch_chips',0), -(2515,11926,'ouch_down',0), -(2516,11927,'ouch_down_01',0), -(2517,11928,'ouch_forehand',0), -(2518,11929,'ouch_forehand_01',0), -(2519,11930,'ouch_fx',0), -(2520,11931,'ouch_fx2',0), -(2521,11932,'ouch_headshake01',0), -(2522,11933,'ouch_medium',0), -(2523,11934,'ouch_medium_big',0), -(2524,11935,'ouch_oil_drip',0), -(2525,11936,'ouch_parts',0), -(2526,11937,'ouch_roar01',0), -(2527,11938,'ouch_scream',0), -(2528,11939,'ouch_small',0), -(2529,11940,'ouch_sound',0), -(2530,11941,'ouch_spurt_chest',0), -(2531,11942,'ouch_spurt_pelvis',0), -(2532,11943,'ouch_tail',0), -(2533,11944,'ouch_tail02',0), -(2534,11945,'ouch_thrust',0), -(2535,11946,'ouch_thrust_01',0), -(2536,11947,'ouchdown',0), -(2537,11948,'ouchtiming_a',0), -(2538,11949,'ouchtiming_b',0), -(2539,11950,'ouchtiming_c',0), -(2540,11951,'oven_door',0), -(2541,11952,'overhere',0), -(2542,11953,'parry',0), -(2543,11954,'parry01',0), -(2544,11955,'parry02',0), -(2545,11956,'parry03',0), -(2546,11957,'parry_metal_metal_snd',0), -(2547,11958,'parry_metal_skin_snd',0), -(2548,11959,'parry_metal_wood_snd',0), -(2549,11960,'parry_skin_metal_snd',0), -(2550,11961,'parry_skin_skin_snd',0), -(2551,11962,'parry_skin_wood_snd',0), -(2552,11963,'parry_snd',0), -(2553,11964,'parry_target_tigger',0), -(2554,11965,'parry_target_trigger',0), -(2555,11966,'parry_wood_metal_snd',0), -(2556,11967,'parry_wood_skin_snd',0), -(2557,11968,'parry_wood_wood_snd',0), -(2558,11969,'particle_mood_combat',0), -(2559,11970,'particle_mood_dead',0), -(2560,11971,'particle_mood_peace',0), -(2561,11972,'pbae_divine_snd',0), -(2562,11973,'peace_combat',0), -(2563,11974,'peace_fx',0), -(2564,11975,'peace_off',0), -(2565,11976,'peer',0), -(2566,11977,'pen01',0), -(2567,11978,'pf_endsplash_snd',0), -(2568,11979,'pf_pwrcast_snd',0), -(2569,11980,'pf_pwrrslt_snd',0), -(2570,11981,'pike_attack03',0), -(2571,11982,'pike_attack04',0), -(2572,11983,'pike_attack_recoil',0), -(2573,11984,'pike_attack_recoil01',0), -(2574,11985,'pike_attack_recoil02',0), -(2575,11986,'pike_attack_recoil03',0), -(2576,11987,'pike_backup',0), -(2577,11988,'pike_charge_up',0), -(2578,11989,'pike_death_blow',0), -(2579,11990,'pike_defensive_buff',0), -(2580,11991,'pike_dodge_backhand',0), -(2581,11992,'pike_dodge_down',0), -(2582,11993,'pike_dodge_forehand',0), -(2583,11994,'pike_dodge_thrust',0), -(2584,11995,'pike_enter',0), -(2585,11996,'pike_exit',0), -(2586,11997,'pike_feint',0), -(2587,11998,'pike_idle01',0), -(2588,11999,'pike_knockdowntoknees',0), -(2589,12000,'pike_knockedtoback',0), -(2590,12001,'pike_knockedtoback_getup',0), -(2591,12002,'pike_offensive_buff',0), -(2592,12003,'pike_ouch01_backhand',0), -(2593,12004,'pike_ouch02_down',0), -(2594,12005,'pike_ouch_backhand',0), -(2595,12006,'pike_ouch_down',0), -(2596,12007,'pike_ouch_forehand',0), -(2597,12008,'pike_ouch_thrust',0), -(2598,12009,'pike_parry_backhand',0), -(2599,12010,'pike_parry_down',0), -(2600,12011,'pike_parry_forehand',0), -(2601,12012,'pike_parry_thrust',0), -(2602,12013,'pike_strafe_left',0), -(2603,12014,'pike_strafe_right',0), -(2604,12015,'pike_super_buff',0), -(2605,12016,'pike_taunt',0), -(2606,12017,'pike_walk',0), -(2607,12018,'pl_lightning_01_snd',0), -(2608,12019,'pl_lightning_02_snd',0), -(2609,12020,'pl_lightning_03_snd',0), -(2610,12021,'pl_warp_01_snd',0), -(2611,12022,'planer',0), -(2612,12023,'plummet',0), -(2613,12024,'pn_castflute_sound',0), -(2614,12025,'pn_resultflute_sound',0), -(2615,12026,'pof_batdrone_snd',0), -(2616,12027,'pof_casttone_snd',0), -(2617,12028,'point',0), -(2618,12029,'point_right',0), -(2619,12030,'ponder',0), -(2620,12031,'pout',0), -(2621,12032,'pp_casthi_snd',0), -(2622,12033,'pp_stab_snd',0), -(2623,12034,'ps_caststream_snd',0), -(2624,12035,'ps_resultfx_snd',0), -(2625,12036,'pugilist_attack01',0), -(2626,12037,'pugilist_attack03',0), -(2627,12038,'pugilist_attack_recoil',0), -(2628,12039,'pugilist_attack_recoil01',0), -(2629,12040,'pugilist_attack_recoil02',0), -(2630,12041,'pugilist_attack_recoil03',0), -(2631,12042,'pugilist_backup',0), -(2632,12043,'pugilist_charge_up',0), -(2633,12044,'pugilist_defensive_buff',0), -(2634,12045,'pugilist_dodge',0), -(2635,12046,'pugilist_dodge01',0), -(2636,12047,'pugilist_dodge02',0), -(2637,12048,'pugilist_dodge_backhand',0), -(2638,12049,'pugilist_dodge_down',0), -(2639,12050,'pugilist_dodge_forehand',0), -(2640,12051,'pugilist_dodge_thrust',0), -(2641,12052,'pugilist_enter',0), -(2642,12053,'pugilist_exit',0), -(2643,12054,'pugilist_feint',0), -(2644,12055,'pugilist_knockdowntoknees',0), -(2645,12056,'pugilist_knockedtoback',0), -(2646,12057,'pugilist_knockedtoback_getup',0), -(2647,12058,'pugilist_offensive_buff',0), -(2648,12059,'pugilist_ouch',0), -(2649,12060,'pugilist_ouch01',0), -(2650,12061,'pugilist_ouch_backhand',0), -(2651,12062,'pugilist_ouch_down',0), -(2652,12063,'pugilist_ouch_forehand',0), -(2653,12064,'pugilist_ouch_thrust',0), -(2654,12065,'pugilist_parry',0), -(2655,12066,'pugilist_parry_backhand',0), -(2656,12067,'pugilist_parry_down',0), -(2657,12068,'pugilist_parry_forehand',0), -(2658,12069,'pugilist_parry_thrust',0), -(2659,12070,'pugilist_recoil',0), -(2660,12071,'pugilist_strafe_left',0), -(2661,12072,'pugilist_strafe_right',0), -(2662,12073,'pugilist_super_buff',0), -(2663,12074,'pugilist_taunt',0), -(2664,12075,'pugilist_walk',0), -(2665,12076,'pv_pet_victory_snd',0), -(2666,12077,'quality_down',0), -(2667,12078,'quality_up',0), -(2668,12079,'quest_complete',0), -(2669,12080,'rain',0), -(2670,12081,'raisehand',0), -(2671,12082,'rays',0), -(2672,12083,'rb_p2pcast_snd',0), -(2673,12084,'rb_p2pstream_snd',0), -(2674,12085,'rc_leaves_01_snd',0), -(2675,12086,'rc_roots_grow_01_snd',0), -(2676,12087,'rct_endblast_sound',0), -(2677,12088,'rct_endtones_sound',0), -(2678,12089,'rebirth_sound_01',0), -(2679,12090,'red_nose',0), -(2680,12091,'resilt_end_sound',0), -(2681,12092,'rest',0), -(2682,12093,'result_bladebarrier',0), -(2683,12094,'result_camera_shake2_snd',0), -(2684,12095,'result_camera_shake_snd',0), -(2685,12096,'result_chain_lightning_p2p',0), -(2686,12097,'result_charge1_sh',0), -(2687,12098,'result_charge_sh',0), -(2688,12099,'result_copter_flamethrower',0), -(2689,12100,'result_dawn_rising',0), -(2690,12101,'result_dragon_fire_spiral',0), -(2691,12102,'result_dragon_shield_fire',0), -(2692,12103,'result_dragon_shield_lightning',0), -(2693,12104,'result_dragon_shield_lightning_02a',0), -(2694,12105,'result_dragon_shield_lightning_02b',0), -(2695,12106,'result_dragon_shield_lightning_02c',0), -(2696,12107,'result_dust_blast_heavy',0), -(2697,12108,'result_feather_explosion',0), -(2698,12109,'result_flash_dragon',0), -(2699,12110,'result_fog',0), -(2700,12111,'result_fog_low',0), -(2701,12112,'result_fog_low_small',0), -(2702,12113,'result_fog_poison',0), -(2703,12114,'result_fog_poison_4x10',0), -(2704,12115,'result_fog_poison_low',0), -(2705,12116,'result_fog_poison_low_small',0), -(2706,12117,'result_fog_poison_small',0), -(2707,12118,'result_fog_small',0), -(2708,12119,'result_forced_shader_dark_dragon',0), -(2709,12120,'result_forced_shader_electric_dragon',0), -(2710,12121,'result_forced_shader_fire_dragon',0), -(2711,12122,'result_forced_shader_ice_dragon',0), -(2712,12123,'result_froglok_bauble',0), -(2713,12124,'result_glint2_sh',0), -(2714,12125,'result_knighthood_bauble',0), -(2715,12126,'result_lightning_bolt1_snd',0), -(2716,12127,'result_mend_synth_sound',0), -(2717,12128,'result_protection_of_twilight',0), -(2718,12129,'result_recharging_station_effect',0), -(2719,12130,'result_rune_awakened',0), -(2720,12131,'result_sparkles_clinging_dragon',0), -(2721,12132,'result_sparkles_clinging_soft_dragon',0), -(2722,12133,'result_sun_sphere',0), -(2723,12134,'result_twinkle_01',0), -(2724,12135,'result_weakness_disk_blue',0), -(2725,12136,'result_weakness_disk_green',0), -(2726,12137,'result_weakness_disk_purple',0), -(2727,12138,'result_weakness_disk_red',0), -(2728,12139,'result_weakness_disk_yellow',0), -(2729,12140,'result_windrazor',0), -(2730,12141,'result_wood_chips',0), -(2731,12142,'resurrect',0), -(2732,12143,'right_hand_fist',0), -(2733,12144,'right_hand_relaxed',0), -(2734,12145,'righthand_impact',0), -(2735,12146,'ring_glints',0), -(2736,12147,'ring_glints2',0), -(2737,12148,'ring_glints_idle',0), -(2738,12149,'rofl',0), -(2739,12150,'royalwave',0), -(2740,12151,'rt_drone_snd',0), -(2741,12152,'rt_tune_snd',0), -(2742,12153,'rude',0), -(2743,12155,'runes',0), -(2744,12156,'sa_bones_sound',0), -(2745,12157,'sa_flash01_snd',0), -(2746,12158,'sa_flash02_snd',0), -(2747,12159,'sa_flash03_snd',0), -(2748,12160,'sa_rattle_01_snd',0), -(2749,12161,'sa_skelattack_snd',0), -(2750,12162,'sa_skeldance_snd',0), -(2751,12163,'sa_snakespawn_snd',0), -(2752,12164,'sa_spiritappear_snd',0), -(2753,12165,'sa_strike_snd',0), -(2754,12166,'sad',0), -(2755,12167,'salute',0), -(2756,12168,'salute_freeport',0), -(2757,12169,'sanc_castlp_snd',0), -(2758,12170,'sanc_pulse_01_sound',0), -(2759,12171,'sanc_pulse_02_sound',0), -(2760,12172,'sarcasm',0), -(2761,12173,'saw01',0), -(2762,12174,'saw02',0), -(2763,12175,'saw_sparks_front',0), -(2764,12176,'saw_sparks_inside',0), -(2765,12177,'saw_sparks_outside',0), -(2766,12178,'sb_skelcast_sound',0), -(2767,12179,'sb_skeleton_sound',0), -(2768,12180,'sc_impact_snd',0), -(2769,12181,'sc_swipe_snd',0), -(2770,12182,'scheme',0), -(2771,12183,'scims_scimitar_snd',0), -(2772,12184,'scims_swordswipe_snd',0), -(2773,12185,'scims_whoosh_snd',0), -(2774,12186,'scissors01',0), -(2775,12187,'scold',0), -(2776,12188,'scorp_crunches_snd',0), -(2777,12189,'scorpa_scorpform_snd',0), -(2778,12190,'scorpa_scream01_snd',0), -(2779,12191,'scratch',0), -(2780,12192,'scream',0), -(2781,12193,'scribing_idle',0), -(2782,12194,'scruntch',0), -(2783,12195,'sd_drumming_lp_snd',0), -(2784,12196,'sd_soulcast_sound',0), -(2785,12197,'sd_soulsuck_sound',0), -(2786,12199,'sd_spiritflash_snd',0), -(2787,12200,'sd_spiritflashsoft_snd',0), -(2788,12201,'section01',0), -(2789,12202,'section02',0), -(2790,12203,'section03',0), -(2791,12204,'seenoevil',0), -(2792,12205,'sf_bladering_snd',0), -(2793,12206,'sf_flute_lp_snd',0), -(2794,12207,'sgwp_bark_snd',0), -(2795,12208,'shaft01',0), -(2796,12209,'shaft02',0), -(2797,12210,'shake',0), -(2798,12211,'shake1',0), -(2799,12212,'shake2',0), -(2800,12213,'shake3',0), -(2801,12214,'shakefist',0), -(2802,12215,'shakeit',0), -(2803,12216,'shame',0), -(2804,12217,'shark_attack01',0), -(2805,12218,'shark_bite01',0), -(2806,12219,'shark_bite02',0), -(2807,12220,'shark_cry',0), -(2808,12221,'shark_die',0), -(2809,12222,'shark_ouch',0), -(2810,12223,'shark_runtail',0), -(2811,12224,'shark_runtail02',0), -(2812,12225,'shark_tail',0), -(2813,12226,'sheathe_metal_weapon_snd',0), -(2814,12227,'sheathe_weapon_snd',0), -(2815,12228,'sheathe_weapon_trigger',0), -(2816,12229,'shield_block_backhand',0), -(2817,12230,'shield_block_down',0), -(2818,12231,'shield_block_forehand',0), -(2819,12232,'shield_block_thrust',0), -(2820,12233,'shield_shove',0), -(2821,12234,'shield_sound',0), -(2822,12235,'shimmy',0), -(2823,12236,'shiver',0), -(2824,12237,'show_bridge',0), -(2825,12238,'show_melee_projectile_trigger',0), -(2826,12239,'shrink_sound',0), -(2827,12240,'shrug',0), -(2828,12241,'shuttle01',0), -(2829,12242,'sick',0), -(2830,12243,'side_smoke01',0), -(2831,12244,'sig_bursting_snd',0), -(2832,12245,'sig_rattler_snd',0), -(2833,12246,'sigh',0), -(2834,12247,'sit_combat',0), -(2835,12248,'sit_idle01',0), -(2836,12249,'sit_idle02',0), -(2837,12250,'sit_off',0), -(2838,12251,'sit_peace',0), -(2839,12252,'sit_tail',0), -(2840,12253,'sit_tail_cloak',0), -(2841,12254,'sl_lute_lp_snd',0), -(2842,12255,'slt_castfire_snd',0), -(2843,12256,'slt_resultvortex_snd',0), -(2844,12257,'slt_splode_snd',0), -(2845,12258,'slugattack_01',0), -(2846,12259,'slugdie_hit_01',0), -(2847,12260,'slugdie_hit_02',0), -(2848,12261,'slugdie_hit_03',0), -(2849,12262,'slugpulse_01',0), -(2850,12263,'slugpulse_02',0), -(2851,12264,'slugpulse_03',0), -(2852,12265,'slugpulse_04',0), -(2853,12266,'slugpulser_01',0), -(2854,12267,'slugrun_01',0), -(2855,12268,'slugrun_02',0), -(2856,12269,'slugrunpulse_01',0), -(2857,12270,'slugrunpulse_02',0), -(2858,12271,'slugsplat_01',0), -(2859,12272,'slugsplat_02',0), -(2860,12273,'slugsway_01',0), -(2861,12274,'slugsway_02',0), -(2862,12275,'slugtongue',0), -(2863,12276,'slugtongueimpact_01',0), -(2864,12277,'slugwalk_01',0), -(2865,12278,'slugwalk_02',0), -(2866,12279,'slugwalkpulse_01',0), -(2867,12280,'slugwalkpulse_02',0), -(2868,12281,'slugyell_01',0), -(2869,12282,'small_saw',0), -(2870,12283,'smash',0), -(2871,12284,'smashed',0), -(2872,12285,'smile',0), -(2873,12286,'smirk',0), -(2874,12287,'smite_cast_lp_snd',0), -(2875,12288,'smoke',0), -(2876,12289,'smoke_breath',0), -(2877,12290,'smoke_dark_chimney',0), -(2878,12291,'smoke_dark_coals',0), -(2879,12292,'smoke_dark_ground',0), -(2880,12293,'smoke_dark_up',0), -(2881,12294,'smoke_flash',0), -(2882,12295,'smoke_ring',0), -(2883,12296,'smoke_sparks',0), -(2884,12297,'snd_boom',0), -(2885,12298,'snd_confrontfear_fade',0), -(2886,12299,'snd_confrontfear_skull',0), -(2887,12300,'snd_fall_damage',0), -(2888,12301,'snd_fire_whoosh',0), -(2889,12302,'snd_fireworks_boom',0), -(2890,12303,'snd_frontload_acid',0), -(2891,12304,'snd_keg_appear',0), -(2892,12305,'snd_keg_gulp',0), -(2893,12306,'snd_keg_pour',0), -(2894,12307,'snd_keg_whoosh',0), -(2895,12308,'snd_keg_yum',0), -(2896,12309,'snd_lifeburn_castabsorb',0), -(2897,12310,'snd_lifeburn_castbase',0), -(2898,12311,'snd_lifeburn_resultblast',0), -(2899,12312,'snd_mayong_boen_blanket',0), -(2900,12313,'snd_mayong_boen_result',0), -(2901,12314,'snd_pumpkin_flaming',0), -(2902,12315,'snd_slide_cast',0), -(2903,12316,'snd_slide_result',0), -(2904,12317,'snd_snowball_impact',0), -(2905,12318,'snd_spirit_elephant_vocal',0), -(2906,12319,'snd_teleport_druidring_flash',0), -(2907,12320,'snd_teleport_druidring_loop',0), -(2908,12321,'snd_wuoshi_choking_vines',0), -(2909,12322,'snd_wuoshi_tree_enter',0), -(2910,12323,'snd_wuoshi_tree_exit',0), -(2911,12324,'snd_wuoshi_tree_loop',0), -(2912,12325,'sneer',0), -(2913,12326,'sneeze',0), -(2914,12327,'sneeze_smoke',0), -(2915,12328,'snicker',0), -(2916,12329,'sniff',0), -(2917,12330,'snort',0), -(2918,12331,'soaf_burn_sound',0), -(2919,12332,'soaf_castcharge02_sound',0), -(2920,12333,'soaf_castcharge_sound',0), -(2921,12334,'soaf_flamearrow_sound',0), -(2922,12335,'soc_clayskinfall_lp_sound',0), -(2923,12336,'soc_clayskinform_sound',0), -(2924,12337,'sod_flameup_sound',0), -(2925,12338,'sod_whoosh01_sound',0), -(2926,12339,'som_cast_lp_snd',0), -(2927,12340,'sotb_batsqueak2_sound',0), -(2928,12341,'sotb_batsqueak_sound',0), -(2929,12342,'sound_angry',0), -(2930,12343,'sound_angry01',0), -(2931,12344,'sound_angry02',0), -(2932,12345,'sound_anvilhit',0), -(2933,12346,'sound_aoeflame',0), -(2934,12347,'sound_artifact_bury',0), -(2935,12348,'sound_artifact_emerge',0), -(2936,12349,'sound_atkhit',0), -(2937,12350,'sound_atkland',0), -(2938,12351,'sound_atkslide',0), -(2939,12352,'sound_atkvocal',0), -(2940,12353,'sound_attachwhirl',0), -(2941,12354,'sound_attack',0), -(2942,12355,'sound_attack01',0), -(2943,12356,'sound_attack02',0), -(2944,12357,'sound_attack1_vocal',0), -(2945,12358,'sound_attack2_vocal',0), -(2946,12359,'sound_attack2rock',0), -(2947,12360,'sound_attack2slam',0), -(2948,12361,'sound_attack_hit',0), -(2949,12362,'sound_attacka',0), -(2950,12363,'sound_attackarm',0), -(2951,12364,'sound_attackb',0), -(2952,12365,'sound_attackback',0), -(2953,12366,'sound_attackbase',0), -(2954,12367,'sound_attackbend',0), -(2955,12368,'sound_attackbite',0), -(2956,12369,'sound_attackbitein',0), -(2957,12370,'sound_attackbiterip',0), -(2958,12371,'sound_attackblade',0), -(2959,12372,'sound_attackbreath',0), -(2960,12373,'sound_attackbreath01',0), -(2961,12374,'sound_attackbreath02',0), -(2962,12375,'sound_attackbreath02_inhale',0), -(2963,12376,'sound_attackbreath1',0), -(2964,12377,'sound_attackbreath2',0), -(2965,12378,'sound_attackbreath_long',0), -(2966,12379,'sound_attackbreath_short',0), -(2967,12380,'sound_attackbreathe',0), -(2968,12381,'sound_attackbreathefire',0), -(2969,12382,'sound_attackbreathfire',0), -(2970,12383,'sound_attackbreathfire_long',0), -(2971,12384,'sound_attackbreathfire_short',0), -(2972,12385,'sound_attackcast',0), -(2973,12386,'sound_attackchain',0), -(2974,12387,'sound_attackchime',0), -(2975,12388,'sound_attackchomp',0), -(2976,12389,'sound_attackclaw',0), -(2977,12390,'sound_attackclaw_vocal',0), -(2978,12391,'sound_attackcreak',0), -(2979,12392,'sound_attackcrunch01',0), -(2980,12393,'sound_attackcrunch02',0), -(2981,12394,'sound_attacke3_vocal',0), -(2982,12395,'sound_attackfire',0), -(2983,12396,'sound_attackfistwater',0), -(2984,12397,'sound_attackflame',0), -(2985,12398,'sound_attackflap',0), -(2986,12399,'sound_attackflutter',0), -(2987,12400,'sound_attackfoot',0), -(2988,12401,'sound_attackgear',0), -(2989,12402,'sound_attackgrowl',0), -(2990,12403,'sound_attackheadram_swoosh',0), -(2991,12404,'sound_attackhit',0), -(2992,12405,'sound_attackinhale',0), -(2993,12406,'sound_attackjaw',0), -(2994,12407,'sound_attackkick',0), -(2995,12408,'sound_attackleaves',0), -(2996,12409,'sound_attackliddown',0), -(2997,12410,'sound_attacklidup',0), -(2998,12411,'sound_attacklong',0), -(2999,12412,'sound_attackmetal',0), -(3000,12413,'sound_attackpage',0), -(3001,12414,'sound_attackram',0), -(3002,12415,'sound_attackrock',0), -(3003,12416,'sound_attackrockinhale',0), -(3004,12417,'sound_attackrun',0), -(3005,12418,'sound_attacksaw',0), -(3006,12419,'sound_attacksbreathin',0), -(3007,12420,'sound_attackscream',0), -(3008,12421,'sound_attackshort',0), -(3009,12422,'sound_attackslam',0), -(3010,12423,'sound_attacksnap',0), -(3011,12424,'sound_attacksnort',0), -(3012,12425,'sound_attackspecial',0), -(3013,12426,'sound_attacksquish',0), -(3014,12427,'sound_attackstab',0), -(3015,12428,'sound_attacksting',0), -(3016,12429,'sound_attackstomp',0), -(3017,12430,'sound_attackswing',0), -(3018,12431,'sound_attackswoosh',0), -(3019,12432,'sound_attackswordwater01',0), -(3020,12433,'sound_attackswordwater02',0), -(3021,12434,'sound_attacktail',0), -(3022,12435,'sound_attacktailvocal',0), -(3023,12436,'sound_attacktailwhip',0), -(3024,12437,'sound_attacktongue',0), -(3025,12438,'sound_attackvocal',0), -(3026,12439,'sound_attackvocal01',0), -(3027,12440,'sound_attackvocal02',0), -(3028,12441,'sound_attackvocal2',0), -(3029,12442,'sound_attackvocal_long',0), -(3030,12443,'sound_attackwater',0), -(3031,12444,'sound_attackwhip',0), -(3032,12445,'sound_attackwhirl',0), -(3033,12446,'sound_attackwhirlblade',0), -(3034,12447,'sound_attackwhoosh',0), -(3035,12448,'sound_attackwild',0), -(3036,12449,'sound_attackwind',0), -(3037,12450,'sound_attackwindflap',0), -(3038,12451,'sound_attackwindup',0), -(3039,12452,'sound_attackwing',0), -(3040,12453,'sound_attackwing_land',0), -(3041,12454,'sound_attackwingbreath',0), -(3042,12455,'sound_attackwingflap',0), -(3043,12456,'sound_attackyell',0), -(3044,12457,'sound_battlecry',0), -(3045,12458,'sound_battlecry01',0), -(3046,12459,'sound_beg',0), -(3047,12460,'sound_bell',0), -(3048,12461,'sound_bite',0), -(3049,12462,'sound_bite_rip',0), -(3050,12463,'sound_bitetear',0), -(3051,12464,'sound_bitevocal',0), -(3052,12465,'sound_blech',0), -(3053,12466,'sound_blink',0), -(3054,12467,'sound_boggle',0), -(3055,12468,'sound_boltdamage',0), -(3056,12469,'sound_bonehit',0), -(3057,12470,'sound_boom',0), -(3058,12471,'sound_bowpull',0), -(3059,12472,'sound_bowrelease',0), -(3060,12473,'sound_breath',0), -(3061,12474,'sound_breath_a',0), -(3062,12475,'sound_breath_b',0), -(3063,12476,'sound_breathfire',0), -(3064,12477,'sound_breathinhale',0), -(3065,12478,'sound_breathvocal',0), -(3066,12479,'sound_bridge',0), -(3067,12480,'sound_buff',0), -(3068,12481,'sound_buffdefensive',0), -(3069,12482,'sound_buffinhale',0), -(3070,12483,'sound_buffoffensive',0), -(3071,12484,'sound_buffspin001',0), -(3072,12485,'sound_burp',0), -(3073,12486,'sound_casgrowl',0), -(3074,12487,'sound_cast',0), -(3075,12488,'sound_cast_shortbreath_open',0), -(3076,12489,'sound_castend',0), -(3077,12490,'sound_castgears',0), -(3078,12491,'sound_castgrowl',0), -(3079,12492,'sound_casthowl',0), -(3080,12493,'sound_castinhalegears',0), -(3081,12494,'sound_castlong_breath',0), -(3082,12495,'sound_castlong_inhale',0), -(3083,12496,'sound_castlong_open',0), -(3084,12497,'sound_castroar',0), -(3085,12498,'sound_castshort_breath',0), -(3086,12499,'sound_caststart',0), -(3087,12500,'sound_castvocal',0), -(3088,12501,'sound_chesthit',0), -(3089,12502,'sound_chesthitdouble',0), -(3090,12503,'sound_chew',0), -(3091,12504,'sound_clap',0), -(3092,12505,'sound_claw',0), -(3093,12506,'sound_clawhit',0), -(3094,12507,'sound_clawwalk',0), -(3095,12508,'sound_clop',0), -(3096,12509,'sound_clop_left',0), -(3097,12510,'sound_clop_right',0), -(3098,12511,'sound_combatart',0), -(3099,12512,'sound_combatbreath',0), -(3100,12513,'sound_combatbreathe',0), -(3101,12514,'sound_combatchew',0), -(3102,12515,'sound_combatcrunch',0), -(3103,12516,'sound_combatenter',0), -(3104,12517,'sound_combatenter001',0), -(3105,12518,'sound_combatenter002',0), -(3106,12519,'sound_combatentergrowl',0), -(3107,12520,'sound_combatenterrock01',0), -(3108,12521,'sound_combatenterrock02',0), -(3109,12522,'sound_combatenterrock03',0), -(3110,12523,'sound_combatentervocal01',0), -(3111,12524,'sound_combatentervocal02',0), -(3112,12525,'sound_combatenterwing',0), -(3113,12526,'sound_combatenterwingfire',0), -(3114,12527,'sound_combatexit',0), -(3115,12528,'sound_combatflap',0), -(3116,12529,'sound_combatflapup',0), -(3117,12530,'sound_combatgrowl',0), -(3118,12531,'sound_combatidle',0), -(3119,12532,'sound_combatpage',0), -(3120,12533,'sound_combatpaw',0), -(3121,12534,'sound_combatsnort',0), -(3122,12535,'sound_combatwing',0), -(3123,12536,'sound_creak',0), -(3124,12537,'sound_crunch',0), -(3125,12538,'sound_curl',0), -(3126,12539,'sound_cutthroat',0), -(3127,12540,'sound_damage',0), -(3128,12541,'sound_damage02',0), -(3129,12542,'sound_damage03',0), -(3130,12543,'sound_damageblade',0), -(3131,12544,'sound_damagebolts',0), -(3132,12545,'sound_damagebone',0), -(3133,12546,'sound_damagecrunch',0), -(3134,12547,'sound_damageflutter',0), -(3135,12548,'sound_damagehit',0), -(3136,12549,'sound_damagerock',0), -(3137,12550,'sound_damageshell',0), -(3138,12551,'sound_damagetwang',0), -(3139,12552,'sound_damagevocal',0), -(3140,12553,'sound_dead',0), -(3141,12554,'sound_dead01',0), -(3142,12555,'sound_dead02',0), -(3143,12556,'sound_dead03',0), -(3144,12557,'sound_dead_enter',0), -(3145,12558,'sound_deadball',0), -(3146,12559,'sound_deadballfall',0), -(3147,12560,'sound_deadbell',0), -(3148,12561,'sound_deadblade',0), -(3149,12562,'sound_deadboom',0), -(3150,12563,'sound_deadbreathe',0), -(3151,12564,'sound_deadbubble',0), -(3152,12565,'sound_deadbuzz01',0), -(3153,12566,'sound_deadbuzz02',0), -(3154,12567,'sound_deadbuzz03',0), -(3155,12568,'sound_deadbuzz04',0), -(3156,12569,'sound_deadclose',0), -(3157,12570,'sound_deadcreak',0), -(3158,12571,'sound_deadcrunch',0), -(3159,12572,'sound_deadcrunch01',0), -(3160,12573,'sound_deadcrunch02',0), -(3161,12574,'sound_deadcrunch1',0), -(3162,12575,'sound_deadcrunch2',0), -(3163,12576,'sound_deadcry',0), -(3164,12577,'sound_deadcurl',0), -(3165,12578,'sound_deadfall',0), -(3166,12579,'sound_deadfall001',0), -(3167,12580,'sound_deadfall002',0), -(3168,12581,'sound_deadfall01',0), -(3169,12582,'sound_deadfall02',0), -(3170,12583,'sound_deadfall03',0), -(3171,12584,'sound_deadfall1',0), -(3172,12585,'sound_deadfall2',0), -(3173,12586,'sound_deadfire',0), -(3174,12587,'sound_deadflame',0), -(3175,12588,'sound_deadflap',0), -(3176,12589,'sound_deadgear',0), -(3177,12590,'sound_deadglob',0), -(3178,12591,'sound_deadglub',0), -(3179,12592,'sound_deadgroan',0), -(3180,12593,'sound_deadgrowl',0), -(3181,12594,'sound_deadhead',0), -(3182,12595,'sound_deadhit',0), -(3183,12596,'sound_deadhit1',0), -(3184,12597,'sound_deadhit2',0), -(3185,12598,'sound_deadhit3',0), -(3186,12599,'sound_deadknee',0), -(3187,12600,'sound_deadliddown',0), -(3188,12601,'sound_deadlidup',0), -(3189,12602,'sound_deadmist',0), -(3190,12603,'sound_deadmotor',0), -(3191,12604,'sound_deadpage',0), -(3192,12605,'sound_deadprevocal',0), -(3193,12606,'sound_deadrock',0), -(3194,12607,'sound_deadrockfall',0), -(3195,12608,'sound_deadscratch',0), -(3196,12609,'sound_deadscream',0), -(3197,12610,'sound_deadscream01',0), -(3198,12611,'sound_deadscream02',0), -(3199,12612,'sound_deadslam',0), -(3200,12613,'sound_deadslither',0), -(3201,12614,'sound_deadsquish',0), -(3202,12615,'sound_deadsway',0), -(3203,12616,'sound_deadtail',0), -(3204,12617,'sound_deadthrash01',0), -(3205,12618,'sound_deadthrash02',0), -(3206,12619,'sound_deadtongue',0), -(3207,12620,'sound_deadvanish',0), -(3208,12621,'sound_deadvocal',0), -(3209,12622,'sound_deadvocal01',0), -(3210,12623,'sound_deadvocal02',0), -(3211,12624,'sound_deadvocal03',0), -(3212,12625,'sound_deadwarble01',0), -(3213,12626,'sound_deadwarble02',0), -(3214,12627,'sound_deadwater',0), -(3215,12628,'sound_deadwater01',0), -(3216,12629,'sound_deadwater02',0), -(3217,12630,'sound_deadwater03',0), -(3218,12631,'sound_deadwhimper',0), -(3219,12632,'sound_deadwhoosh',0), -(3220,12633,'sound_deadwing',0), -(3221,12634,'sound_deadwingfold',0), -(3222,12635,'sound_deadwoosh',0), -(3223,12636,'sound_death',0), -(3224,12637,'sound_death001',0), -(3225,12638,'sound_death002',0), -(3226,12639,'sound_deathbone',0), -(3227,12640,'sound_deathbreak',0), -(3228,12641,'sound_deathclaw',0), -(3229,12642,'sound_deathcrash',0), -(3230,12643,'sound_deathengine',0), -(3231,12644,'sound_deathfall',0), -(3232,12645,'sound_deathmotor',0), -(3233,12646,'sound_deathshake',0), -(3234,12647,'sound_deathsigh',0), -(3235,12648,'sound_deathtail',0), -(3236,12649,'sound_deathvocal',0), -(3237,12650,'sound_deathwhoosh',0), -(3238,12651,'sound_design_lavabridge',0), -(3239,12652,'sound_die',0), -(3240,12653,'sound_dig001',0), -(3241,12654,'sound_dig002',0), -(3242,12655,'sound_duck',0), -(3243,12656,'sound_eat',0), -(3244,12657,'sound_eating',0), -(3245,12658,'sound_eatslime',0), -(3246,12659,'sound_entercreak',0), -(3247,12660,'sound_enterglide',0), -(3248,12661,'sound_enterleaves',0), -(3249,12662,'sound_entermoan',0), -(3250,12663,'sound_enteropen',0), -(3251,12664,'sound_enterscrape',0), -(3252,12665,'sound_entervocal',0), -(3253,12666,'sound_exhale',0), -(3254,12667,'sound_exitflap',0), -(3255,12668,'sound_exitidle',0), -(3256,12669,'sound_exitjump',0), -(3257,12670,'sound_exitscream',0), -(3258,12671,'sound_explode',0), -(3259,12672,'sound_extinguish',0), -(3260,12673,'sound_fall',0), -(3261,12674,'sound_fall01',0), -(3262,12675,'sound_fall02',0), -(3263,12676,'sound_fallmetal',0), -(3264,12677,'sound_filler',0), -(3265,12678,'sound_fire',0), -(3266,12679,'sound_fireswoosh',0), -(3267,12680,'sound_fishing_cast01',0), -(3268,12681,'sound_fishing_cast02',0), -(3269,12682,'sound_fishing_cast03',0), -(3270,12683,'sound_flame',0), -(3271,12684,'sound_flamethrower',0), -(3272,12685,'sound_flap',0), -(3273,12686,'sound_flapup',0), -(3274,12687,'sound_fleeflutter',0), -(3275,12688,'sound_fluter',0), -(3276,12689,'sound_fly_bite_rip',0), -(3277,12690,'sound_foot',0), -(3278,12691,'sound_footlayerleft',0), -(3279,12692,'sound_footlayerright',0), -(3280,12693,'sound_footstep',0), -(3281,12694,'sound_footstomp',0), -(3282,12695,'sound_foresting',0), -(3283,12696,'sound_fuse',0), -(3284,12697,'sound_gathering',0), -(3285,12698,'sound_getup',0), -(3286,12699,'sound_glide',0), -(3287,12700,'sound_glide02',0), -(3288,12701,'sound_growl',0), -(3289,12702,'sound_gulp01',0), -(3290,12703,'sound_gulp02',0), -(3291,12704,'sound_hammerhit',0), -(3292,12705,'sound_happy',0), -(3293,12706,'sound_head',0), -(3294,12707,'sound_headram_inhale',0), -(3295,12708,'sound_headram_land',0), -(3296,12709,'sound_headram_snort',0), -(3297,12710,'sound_headram_swoosh',0), -(3298,12711,'sound_headspark',0), -(3299,12712,'sound_headturn',0), -(3300,12713,'sound_heartattack',0), -(3301,12714,'sound_hiss',0), -(3302,12715,'sound_hit',0), -(3303,12716,'sound_hoofleft',0), -(3304,12717,'sound_hoofright',0), -(3305,12718,'sound_hungry',0), -(3306,12719,'sound_hungrycreak',0), -(3307,12720,'sound_idle',0), -(3308,12721,'sound_idle01',0), -(3309,12722,'sound_idle02',0), -(3310,12723,'sound_idle03_walk001',0), -(3311,12724,'sound_idle03_walk002',0), -(3312,12725,'sound_idle04',0), -(3313,12726,'sound_idlebreath',0), -(3314,12727,'sound_idlebubble',0), -(3315,12728,'sound_idlechew',0), -(3316,12729,'sound_idlecreak',0), -(3317,12730,'sound_idleflap',0), -(3318,12731,'sound_idleflapup',0), -(3319,12732,'sound_idleglass',0), -(3320,12733,'sound_idlegrowl',0), -(3321,12734,'sound_idlehiss',0), -(3322,12735,'sound_idlelaugh',0), -(3323,12736,'sound_idlemoo',0), -(3324,12737,'sound_idlepant',0), -(3325,12738,'sound_idleroar01',0), -(3326,12739,'sound_idleroar02',0), -(3327,12740,'sound_idlerock',0), -(3328,12741,'sound_idlescuff',0), -(3329,12742,'sound_idleshort',0), -(3330,12743,'sound_idlesniff',0), -(3331,12744,'sound_idlesnort',0), -(3332,12745,'sound_idletail',0), -(3333,12746,'sound_idlevocal',0), -(3334,12747,'sound_idlevocal01',0), -(3335,12748,'sound_idlevocal02',0), -(3336,12749,'sound_idlewater',0), -(3337,12750,'sound_inahle',0), -(3338,12751,'sound_inhale',0), -(3339,12752,'sound_inhale001',0), -(3340,12753,'sound_inhale002',0), -(3341,12754,'sound_jawsnap',0), -(3342,12755,'sound_jump',0), -(3343,12756,'sound_knockback',0), -(3344,12757,'sound_knockdown',0), -(3345,12758,'sound_land',0), -(3346,12759,'sound_land01',0), -(3347,12760,'sound_land02',0), -(3348,12761,'sound_laughlong',0), -(3349,12762,'sound_lense',0), -(3350,12763,'sound_lense3s',0), -(3351,12764,'sound_lickpur01',0), -(3352,12765,'sound_liddown',0), -(3353,12766,'sound_lidup',0), -(3354,12767,'sound_lipsmack',0), -(3355,12768,'sound_mining',0), -(3356,12769,'sound_moon',0), -(3357,12770,'sound_mounthorse_foot',0), -(3358,12771,'sound_mounthorse_land',0), -(3359,12772,'sound_mounthorse_squeak',0), -(3360,12773,'sound_neener',0), -(3361,12774,'sound_offensive',0), -(3362,12775,'sound_offensive001',0), -(3363,12776,'sound_offensiveelec001',0), -(3364,12777,'sound_open',0), -(3365,12778,'sound_ouch',0), -(3366,12779,'sound_ouchbase',0), -(3367,12780,'sound_ouchbell',0), -(3368,12781,'sound_ouchbend',0), -(3369,12782,'sound_ouchbone',0), -(3370,12783,'sound_ouchbubble',0), -(3371,12784,'sound_ouchbuzz',0), -(3372,12785,'sound_ouchchain',0), -(3373,12786,'sound_ouchcreak',0), -(3374,12787,'sound_ouchcrunch',0), -(3375,12788,'sound_ouchfire',0), -(3376,12789,'sound_ouchflame',0), -(3377,12790,'sound_ouchflap',0), -(3378,12791,'sound_ouchflutter',0), -(3379,12792,'sound_ouchhit',0), -(3380,12793,'sound_ouchliddown',0), -(3381,12794,'sound_ouchlidopen',0), -(3382,12795,'sound_ouchlidup',0), -(3383,12796,'sound_ouchlow',0), -(3384,12797,'sound_ouchpage',0), -(3385,12798,'sound_ouchrock',0), -(3386,12799,'sound_ouchrun',0), -(3387,12800,'sound_ouchscream',0), -(3388,12801,'sound_ouchshell',0), -(3389,12802,'sound_ouchslam',0), -(3390,12803,'sound_ouchsnort',0), -(3391,12804,'sound_ouchsquawk',0), -(3392,12805,'sound_ouchtail',0), -(3393,12806,'sound_ouchvocal',0), -(3394,12807,'sound_ouchwarble',0), -(3395,12808,'sound_ouchwater',0), -(3396,12809,'sound_ouchwhoosh',0), -(3397,12810,'sound_ouchwing',0), -(3398,12811,'sound_pain001',0), -(3399,12812,'sound_pain002',0), -(3400,12813,'sound_paw',0), -(3401,12814,'sound_pen01',0), -(3402,12815,'sound_pen02',0), -(3403,12816,'sound_piercer',0), -(3404,12817,'sound_purr',0), -(3405,12818,'sound_purr02',0), -(3406,12819,'sound_purr03',0), -(3407,12820,'sound_raisehand',0), -(3408,12821,'sound_rechargeresult',0), -(3409,12822,'sound_recharging',0), -(3410,12823,'sound_roar',0), -(3411,12824,'sound_rockroll',0), -(3412,12825,'sound_rofl',0), -(3413,12826,'sound_rude',0), -(3414,12827,'sound_run',0), -(3415,12828,'sound_runcreak',0), -(3416,12829,'sound_runflap',0), -(3417,12830,'sound_runflap01',0), -(3418,12831,'sound_runflap02',0), -(3419,12832,'sound_runflapsmall',0), -(3420,12833,'sound_runhit',0), -(3421,12834,'sound_runland',0), -(3422,12835,'sound_runleft',0), -(3423,12836,'sound_runright',0), -(3424,12837,'sound_runwing',0), -(3425,12838,'sound_sad01',0), -(3426,12839,'sound_sad02',0), -(3427,12840,'sound_saw001',0), -(3428,12841,'sound_saw002',0), -(3429,12842,'sound_scratch',0), -(3430,12843,'sound_scream',0), -(3431,12844,'sound_scream01',0), -(3432,12845,'sound_scream02',0), -(3433,12846,'sound_shake',0), -(3434,12847,'sound_sheathe',0), -(3435,12848,'sound_sit',0), -(3436,12849,'sound_sitenter',0), -(3437,12850,'sound_sitexit',0), -(3438,12851,'sound_sitidle',0), -(3439,12852,'sound_sleep',0), -(3440,12853,'sound_sleep001',0), -(3441,12854,'sound_sleep002',0), -(3442,12855,'sound_slither',0), -(3443,12856,'sound_snap',0), -(3444,12857,'sound_snarl',0), -(3445,12858,'sound_sneer',0), -(3446,12859,'sound_sneeze',0), -(3447,12860,'sound_sneezeinhale',0), -(3448,12861,'sound_snort',0), -(3449,12862,'sound_spellvocal',0), -(3450,12863,'sound_splash',0), -(3451,12864,'sound_stand',0), -(3452,12865,'sound_step',0), -(3453,12866,'sound_stomp',0), -(3454,12867,'sound_stompgrowl',0), -(3455,12868,'sound_stompvocal',0), -(3456,12869,'sound_stunfall',0), -(3457,12870,'sound_stunned',0), -(3458,12871,'sound_stunnedfall',0), -(3459,12872,'sound_stunnedreturn',0), -(3460,12873,'sound_stunnedwhirl',0), -(3461,12874,'sound_stunshake',0), -(3462,12875,'sound_stunsnort',0), -(3463,12876,'sound_stunspin',0), -(3464,12877,'sound_summon',0), -(3465,12878,'sound_summonhit',0), -(3466,12879,'sound_summonrock',0), -(3467,12880,'sound_summonrock01',0), -(3468,12881,'sound_summonrock02',0), -(3469,12882,'sound_summonrockback',0), -(3470,12883,'sound_summonslide',0), -(3471,12884,'sound_summonstart',0), -(3472,12885,'sound_summonvocal',0), -(3473,12886,'sound_superbuff',0), -(3474,12887,'sound_swim',0), -(3475,12888,'sound_swimfast',0), -(3476,12889,'sound_swoosh',0), -(3477,12890,'sound_swooshkick',0), -(3478,12891,'sound_swooshleft',0), -(3479,12892,'sound_swooshright',0), -(3480,12893,'sound_swooshtail',0), -(3481,12894,'sound_taillash001',0), -(3482,12895,'sound_taillash002',0), -(3483,12896,'sound_tailswoosh',0), -(3484,12897,'sound_tailvocal',0), -(3485,12898,'sound_tailwhip',0), -(3486,12899,'sound_taunt01',0), -(3487,12900,'sound_taunt02',0), -(3488,12901,'sound_taunt03',0), -(3489,12902,'sound_thunder',0), -(3490,12903,'sound_trick',0), -(3491,12904,'sound_uncoil',0), -(3492,12905,'sound_unsheathe',0), -(3493,12906,'sound_vocalattack',0), -(3494,12907,'sound_vocalbite',0), -(3495,12908,'sound_vocalbuffet',0), -(3496,12909,'sound_vocaldamage',0), -(3497,12910,'sound_vocaldead',0), -(3498,12911,'sound_vocaldeath',0), -(3499,12912,'sound_vocalouch',0), -(3500,12913,'sound_walk',0), -(3501,12914,'sound_walk001',0), -(3502,12915,'sound_walk002',0), -(3503,12916,'sound_walk01',0), -(3504,12917,'sound_walk02',0), -(3505,12918,'sound_walk1',0), -(3506,12919,'sound_walkbubble',0), -(3507,12920,'sound_walkclaw',0), -(3508,12921,'sound_walkflap',0), -(3509,12922,'sound_walkflap01',0), -(3510,12923,'sound_walkleft',0), -(3511,12924,'sound_walkpiercer',0), -(3512,12925,'sound_walkright',0), -(3513,12926,'sound_walkrock',0), -(3514,12927,'sound_walkservo',0), -(3515,12928,'sound_walkservoleft',0), -(3516,12929,'sound_walkservoright',0), -(3517,12930,'sound_water',0), -(3518,12931,'sound_waterstep',0), -(3519,12932,'sound_whirl',0), -(3520,12933,'sound_whirlmotor',0), -(3521,12934,'sound_whirlwhoosh',0), -(3522,12935,'sound_wildspring',0), -(3523,12936,'sound_wildswing',0), -(3524,12937,'sound_wildswinghit001',0), -(3525,12938,'sound_wildswinghit002',0), -(3526,12939,'sound_wing',0), -(3527,12940,'sound_wingbuffet',0), -(3528,12941,'sound_wingflap',0), -(3529,12942,'sound_wingfold',0), -(3530,12943,'sound_wingmove',0), -(3531,12944,'sound_wingopen',0), -(3532,12945,'sound_wings',0), -(3533,12946,'sound_wingwind',0), -(3534,12947,'sound_yawn001',0), -(3535,12948,'sound_zap',0), -(3536,12949,'spark_circle01',0), -(3537,12950,'spark_circle02',0), -(3538,12951,'spark_circle03',0), -(3539,12952,'spark_circle04',0), -(3540,12953,'spark_circle05',0), -(3541,12954,'spark_sphere01',0), -(3542,12955,'spark_sphere_ws',0), -(3543,12956,'spark_sphere_ws_lefthand',0), -(3544,12957,'sparkle01',0), -(3545,12958,'sparkle02',0), -(3546,12959,'sparkle03',0), -(3547,12960,'sparkle_trail',0), -(3548,12961,'sparks',0), -(3549,12962,'sparks_lf',0), -(3550,12963,'sparks_lr',0), -(3551,12964,'sparks_rf',0), -(3552,12965,'sparks_rr',0), -(3553,12966,'speaknoevil',0), -(3554,12967,'spellcast01',0), -(3555,12968,'spellcast02',0), -(3556,12969,'spider_webbshoot_snd',0), -(3557,12970,'spider_webcover_snd',0), -(3558,12971,'spinningwheel01',0), -(3559,12972,'spinningwheel02',0), -(3560,12973,'spinningwheel04',0), -(3561,12974,'spinningwheel_success',0), -(3562,12975,'spinningwheel_success02',0), -(3563,12976,'spinningwheel_success03',0), -(3564,12977,'spiritascend_snd',0), -(3565,12978,'square',0), -(3566,12979,'squeal',0), -(3567,12980,'ss_singing_lp_snd',0), -(3568,12981,'st_casttap_snd',0), -(3569,12982,'st_tappestry_snd',0), -(3570,12983,'stare',0), -(3571,12984,'start',0), -(3572,12985,'start_drone_sound',0), -(3573,12986,'startburst_sound_01',0), -(3574,12987,'steam01',0), -(3575,12988,'steam_forearm_l',0), -(3576,12989,'steam_forearm_r',0), -(3577,12990,'steam_hip_l',0), -(3578,12991,'steam_hip_l_death',0), -(3579,12992,'steam_hip_r',0), -(3580,12993,'steam_hip_r_death',0), -(3581,12994,'steam_upperarm_l',0), -(3582,12995,'steam_upperarm_r',0), -(3583,12996,'stifle_cast_arm_snd',0), -(3584,12997,'stifle_cast_lp_snd',0), -(3585,12998,'stifle_result_snd',0), -(3586,12999,'still',0), -(3587,13000,'stinky',0), -(3588,13001,'stove_boilover01',0), -(3589,13002,'stove_boilover02',0), -(3590,13003,'stove_boilover03',0), -(3591,13004,'strafe_left',0), -(3592,13005,'strafe_left_run',0), -(3593,13006,'strafe_right',0), -(3594,13007,'strafe_right_run',0), -(3595,13008,'stretch',0), -(3596,13009,'string_knotted',0), -(3597,13010,'success01',0), -(3598,13011,'success02',0), -(3599,13012,'success_flash01',0), -(3600,13013,'success_flash02',0), -(3601,13014,'success_flash03',0), -(3602,13015,'sulk',0), -(3603,13016,'summon',0), -(3604,13017,'summon_idle',0), -(3605,13018,'super_buff',0), -(3606,13019,'swear',0), -(3607,13020,'sweep01',0), -(3608,13021,'swim_attack',0), -(3609,13022,'swim_backup',0), -(3610,13023,'swim_foward',0), -(3611,13024,'swim_idle',0), -(3612,13025,'swim_ouch',0), -(3613,13026,'swim_run',0), -(3614,13027,'swim_tail',0), -(3615,13028,'swim_tail_cloak',0), -(3616,13029,'swim_walk',0), -(3617,13030,'swoosh',0), -(3618,13031,'swoosh_light_low',0), -(3619,13032,'swoosh_medium',0), -(3620,13033,'swwosh',0), -(3621,13034,'ta_cast_snd',0), -(3622,13035,'tail',0), -(3623,13036,'tail_cloak',0), -(3624,13037,'tail_dust',0), -(3625,13038,'tailoring_failure',0), -(3626,13039,'tailoring_idle',0), -(3627,13040,'tailoring_success',0), -(3628,13041,'talk_idle',0), -(3629,13042,'talk_idle01',0), -(3630,13043,'talk_idle02',0), -(3631,13044,'talk_idle03',0), -(3632,13045,'talk_idle04',0), -(3633,13046,'talk_idle05',0), -(3634,13047,'talk_idle06',0), -(3635,13048,'talk_idle07',0), -(3636,13049,'talk_idle08',0), -(3637,13050,'talk_idle09',0), -(3638,13051,'talk_idle10',0), -(3639,13052,'talk_idle11',0), -(3640,13053,'talk_idle12',0), -(3641,13054,'tantrum',0), -(3642,13055,'tantrum_short',0), -(3643,13056,'tapfoot',0), -(3644,13057,'taunt',0), -(3645,13058,'taunt_combat_art',0), -(3646,13059,'tc_teleport_snd',0), -(3647,13060,'thaiko_sound',0), -(3648,13061,'thanks',0), -(3649,13062,'thirsty',0), -(3650,13063,'threaten',0), -(3651,13064,'thumbsup',0), -(3652,13065,'thunder_clap',0), -(3653,13066,'tiger_idle',0), -(3654,13067,'tiger_run',0), -(3655,13068,'tiger_walk',0), -(3656,13069,'tod_explode_snd',0), -(3657,13070,'tod_voltz_snd',0), -(3658,13071,'tr_spawn_snd',0), -(3659,13072,'tradeart_beaker01',0), -(3660,13073,'tradeart_butcherknife01',0), -(3661,13074,'tradeart_celticknot01',0), -(3662,13075,'tradeart_flask01',0), -(3663,13076,'tradeart_forge_hammer01',0), -(3664,13077,'tradeart_forge_hammer02',0), -(3665,13078,'tradeart_forge_helmet01',0), -(3666,13079,'tradeart_fork01',0), -(3667,13080,'tradeart_kitchenknife01',0), -(3668,13081,'tradeart_log_cut',0), -(3669,13082,'tradeart_metal_bar',0), -(3670,13083,'tradeart_metal_rod01',0), -(3671,13084,'tradeart_metal_sparkling2',0), -(3672,13085,'tradeart_molecule01',0), -(3673,13086,'tradeart_needle_left01',0), -(3674,13087,'tradeart_needle_right01',0), -(3675,13088,'tradeart_planer',0), -(3676,13089,'tradeart_rune_01',0), -(3677,13090,'tradeart_rune_02',0), -(3678,13091,'tradeart_rune_03',0), -(3679,13092,'tradeart_rune_04',0), -(3680,13093,'tradeart_rune_05',0), -(3681,13094,'tradeart_rune_06',0), -(3682,13095,'tradeart_rune_07',0), -(3683,13096,'tradeart_rune_08',0), -(3684,13097,'tradeart_saw',0), -(3685,13098,'tradeart_spoon01',0), -(3686,13099,'trail_pike',0), -(3687,13100,'transit',0), -(3688,13101,'trdskl_beaker',0), -(3689,13102,'trdskl_cloth',0), -(3690,13103,'trdskl_feather',0), -(3691,13104,'trdskl_fishingpole',0), -(3692,13105,'trdskl_gem',0), -(3693,13106,'trdskl_hammer',0), -(3694,13107,'trdskl_hatchet',0), -(3695,13108,'trdskl_hatchet_l',0), -(3696,13109,'trdskl_leather',0), -(3697,13110,'trdskl_magnifying',0), -(3698,13111,'trdskl_mug',0), -(3699,13112,'trdskl_needle',0), -(3700,13113,'trdskl_pick',0), -(3701,13114,'trdskl_pot',0), -(3702,13115,'trdskl_saw',0), -(3703,13116,'trdskl_scroll',0), -(3704,13117,'trdskl_spoon',0), -(3705,13118,'trdskl_testtube',0), -(3706,13119,'trdskl_tongs',0), -(3707,13120,'trdskl_vial',0), -(3708,13121,'trdskl_wood',0), -(3709,13122,'trem_boulder_snd',0), -(3710,13123,'trem_cast_lp_snd',0), -(3711,13124,'trem_open_snd',0), -(3712,13125,'trem_rings_snd',0), -(3713,13126,'trem_ringsh_snd',0), -(3714,13127,'trem_rocks_lp_01_snd',0), -(3715,13128,'trick',0), -(3716,13129,'trt_treat_toxin_sound',0), -(3717,13130,'turn_left',0), -(3718,13131,'turn_right',0), -(3719,13132,'turn_to_wood',0), -(3720,13133,'u',0), -(3721,13134,'unsummon',0), -(3722,13135,'untrained_attack',0), -(3723,13136,'untrained_backup',0), -(3724,13137,'untrained_dodge',0), -(3725,13138,'untrained_dodge01',0), -(3726,13139,'untrained_dodge02',0), -(3727,13140,'untrained_ouch',0), -(3728,13141,'untrained_ouch01',0), -(3729,13142,'untrained_parry',0), -(3730,13143,'untrained_recoil',0), -(3731,13144,'untrained_strafe_left',0), -(3732,13145,'untrained_strafe_right',0), -(3733,13146,'untrained_walk',0), -(3734,13147,'util_rings_snd',0), -(3735,13148,'vamp_batattack_sound',0), -(3736,13149,'vamp_batflaps_sound',0), -(3737,13150,'vamp_batsqueak_sound',0), -(3738,13151,'ven_bkgrnd_slime_sound',0), -(3739,13152,'ven_breath_01',0), -(3740,13153,'ven_breath_02',0), -(3741,13154,'ven_explode_sound',0), -(3742,13155,'ven_fire_01',0), -(3743,13156,'ven_fire_02',0), -(3744,13157,'ven_pulse_sound',0), -(3745,13158,'ven_rumble_01',0), -(3746,13159,'ven_rumble_02',0), -(3747,13160,'ven_slime_01',0), -(3748,13161,'ven_slime_02',0), -(3749,13162,'verdict_cast_snd',0), -(3750,13163,'verdict_gavel_snd',0), -(3751,13164,'vg_healing_snd',0), -(3752,13165,'vg_leaves_snd',0), -(3753,13166,'vg_leaveslp_snd',0), -(3754,13167,'violin',0), -(3755,13168,'viseme_a',0), -(3756,13169,'viseme_aa',0), -(3757,13170,'viseme_ae',0), -(3758,13171,'viseme_ah',0), -(3759,13172,'viseme_ao',0), -(3760,13173,'viseme_aw',0), -(3761,13174,'viseme_ay',0), -(3762,13175,'viseme_b',0), -(3763,13176,'viseme_c',0), -(3764,13177,'viseme_ch',0), -(3765,13178,'viseme_d',0), -(3766,13179,'viseme_dh',0), -(3767,13180,'viseme_e',0), -(3768,13181,'viseme_eh',0), -(3769,13182,'viseme_er',0), -(3770,13183,'viseme_ey',0), -(3771,13184,'viseme_f',0), -(3772,13185,'viseme_g',0), -(3773,13186,'viseme_h',0), -(3774,13187,'viseme_ih',0), -(3775,13188,'viseme_iy',0), -(3776,13189,'viseme_j',0), -(3777,13190,'viseme_k',0), -(3778,13191,'viseme_l',0), -(3779,13192,'viseme_m',0), -(3780,13193,'viseme_n',0), -(3781,13194,'viseme_ng',0), -(3782,13195,'viseme_o',0), -(3783,13196,'viseme_ow',0), -(3784,13197,'viseme_oy',0), -(3785,13198,'viseme_p',0), -(3786,13199,'viseme_r',0), -(3787,13200,'viseme_reast',0), -(3788,13201,'viseme_rest',0), -(3789,13202,'viseme_s',0), -(3790,13203,'viseme_sh',0), -(3791,13204,'viseme_t',0), -(3792,13205,'viseme_th',0), -(3793,13206,'viseme_u',0), -(3794,13207,'viseme_uh',0), -(3795,13208,'viseme_uw',0), -(3796,13209,'viseme_v',0), -(3797,13210,'viseme_w',0), -(3798,13211,'viseme_x',0), -(3799,13212,'viseme_y',0), -(3800,13213,'viseme_z',0), -(3801,13214,'viseme_zh',0), -(3802,13215,'visemes_a',0), -(3803,13216,'visemes_c',0), -(3804,13217,'visemes_e',0), -(3805,13218,'visemes_f',0), -(3806,13219,'visemes_l',0), -(3807,13220,'visemes_m',0), -(3808,13221,'visemes_o',0), -(3809,13222,'visemes_rest',0), -(3810,13223,'visemes_u',0), -(3811,13224,'visemes_w',0), -(3812,13225,'vision_1',0), -(3813,13226,'vision_2',0), -(3814,13227,'vision_3',0), -(3815,13228,'vision_4',0), -(3816,13229,'vo_callout_afk',0), -(3817,13230,'vo_callout_agree',0), -(3818,13231,'vo_callout_apologies',0), -(3819,13232,'vo_callout_assist',0), -(3820,13233,'vo_callout_battle',0), -(3821,13234,'vo_callout_cheer',0), -(3822,13235,'vo_callout_confused',0), -(3823,13236,'vo_callout_disagree',0), -(3824,13237,'vo_callout_doh',0), -(3825,13238,'vo_callout_flirt',0), -(3826,13239,'vo_callout_follow',0), -(3827,13240,'vo_callout_goodbye',0), -(3828,13241,'vo_callout_got',0), -(3829,13242,'vo_callout_greetings',0), -(3830,13243,'vo_callout_growl',0), -(3831,13244,'vo_callout_heal',0), -(3832,13245,'vo_callout_help',0), -(3833,13246,'vo_callout_helping',0), -(3834,13247,'vo_callout_hungry',0), -(3835,13248,'vo_callout_incoming',0), -(3836,13249,'vo_callout_laugh',0), -(3837,13250,'vo_callout_look',0), -(3838,13251,'vo_callout_looking',0), -(3839,13252,'vo_callout_out',0), -(3840,13253,'vo_callout_run',0), -(3841,13254,'vo_callout_starting',0), -(3842,13255,'vo_callout_stay',0), -(3843,13256,'vo_callout_taunting',0), -(3844,13257,'vo_callout_thank',0), -(3845,13258,'vo_callout_thirsty',0), -(3846,13259,'vo_callout_threaten',0), -(3847,13260,'vo_callout_train',0), -(3848,13261,'vo_callout_under',0), -(3849,13262,'vo_callout_vocal_attack',0), -(3850,13263,'vo_callout_vocal_death',0), -(3851,13264,'vo_callout_vocal_drown',0), -(3852,13265,'vo_callout_vocal_jump',0), -(3853,13266,'vo_callout_vocal_land',0), -(3854,13267,'vo_callout_vocal_ouch',0), -(3855,13268,'vo_callout_watch',0), -(3856,13269,'vo_callout_yawn',0), -(3857,13270,'vo_callout_yell',0), -(3858,13271,'vocal_attack',0), -(3859,13272,'vocal_attacklong',0), -(3860,13273,'vocal_death',0), -(3861,13274,'vocal_drown',0), -(3862,13275,'vocal_jump',0), -(3863,13276,'vocal_ouch',0), -(3864,13277,'voidbeast_attack_snd',0), -(3865,13278,'voidbeast_result_snd',0), -(3866,13279,'vr2_burst_snd',0), -(3867,13280,'vr2_flames_snd',0), -(3868,13281,'w',0), -(3869,13282,'wa_voltsword_sound',0), -(3870,13283,'wa_voltswordstart_sound',0), -(3871,13284,'walk',0), -(3872,13286,'walk_shake',0), -(3873,13287,'wave',0), -(3874,13288,'welder_lefthand',0), -(3875,13289,'welder_righthand',0), -(3876,13290,'wheel',0), -(3877,13291,'wheel1',0), -(3878,13292,'wheel_smoke',0), -(3879,13293,'whirling_attack',0), -(3880,13294,'whistle',0), -(3881,13295,'whome',0), -(3882,13296,'wild_swing',0), -(3883,13297,'wild_swing_recoilmax',0), -(3884,13298,'wildswing',0), -(3885,13299,'wince',0), -(3886,13300,'wing_glide',0), -(3887,13301,'wingflap',0), -(3888,13302,'wings_01',0), -(3889,13303,'wings_sound_01',0), -(3890,13304,'wink',0), -(3891,13305,'wkn_glowsplash_snd',0), -(3892,13306,'wod_timer_tone_snd',0), -(3893,13307,'woodworking_failure',0), -(3894,13308,'woodworking_idle',0), -(3895,13309,'woodworking_success',0), -(3896,13310,'woowoo',0), -(3897,13311,'wr_energy_glow_sound',0), -(3898,13312,'wr_energy_glowout_sound',0), -(3899,13313,'wr_glimmer_sound',0), -(3900,13314,'wr_watershield_sound',0), -(3901,13315,'ws_resounding_snd',0), -(3902,13316,'ws_singout_snd',0), -(3903,13317,'yeah',0), -(3904,13318,'yell',0), -(3905,13319,'zap',0), -(3906,13322,'airborne',0), -(3907,13329,'froglok_forestry_chopping',0), -(3908,13331,'ogre_forestry_success',0), -(3909,13332,'ogre_gathering_search',0), -(3910,13333,'ogre_gathering_success',0), -(3911,13334,'ogre_mining_success',0), -(3912,13458,'attack_boss01',0), -(3913,13459,'attack_boss02',0), -(3914,13460,'buff_boss01',0), -(3915,13467,'heal_boss01',0), -(3916,13469,'result_fruitcake_explosion',0), -(3917,13470,'result_snowball_big_explosion',0), -(3918,13542,'sound_groundhit',0), -(3919,13601,'froglok_1h_sword_attack_recoil',0), -(3920,13602,'froglok_1h_sword_attack_recoil01',0), -(3921,13603,'froglok_1h_sword_attack_recoil02',0), -(3922,13604,'froglok_1h_sword_attack_recoil03',0), -(3923,13605,'froglok_1h_thrown_attack',0), -(3924,13606,'froglok_2h_sword_attack_recoil',0), -(3925,13607,'froglok_2h_sword_attack_recoil01',0), -(3926,13608,'froglok_2h_sword_attack_recoil02',0), -(3927,13609,'froglok_2h_sword_backup',0), -(3928,13610,'froglok_2h_sword_defensive_buff',0), -(3929,13611,'froglok_2h_sword_enter',0), -(3930,13612,'froglok_2h_sword_offensive_buff',0), -(3931,13613,'froglok_2h_sword_ouch_backhand',0), -(3932,13614,'froglok_2h_sword_ouch_down',0), -(3933,13615,'froglok_2h_sword_ouch_forehand',0), -(3934,13616,'froglok_2h_sword_ouch_thrust',0), -(3935,13617,'froglok_2h_sword_parry_backhand',0), -(3936,13618,'froglok_2h_sword_parry_down',0), -(3937,13619,'froglok_2h_sword_parry_forehand',0), -(3938,13620,'froglok_2h_sword_super_buff',0), -(3939,13621,'froglok_2h_sword_walk',0), -(3940,13622,'froglok_bostaff_attack_recoil',0), -(3941,13623,'froglok_bostaff_attack_recoil01',0), -(3942,13624,'froglok_bostaff_attack_recoil02',0), -(3943,13625,'froglok_bostaff_attack_recoil03',0), -(3944,13626,'froglok_bostaff_defensive_buff',0), -(3945,13627,'froglok_bostaff_dodge_backhand',0), -(3946,13628,'froglok_bostaff_dodge_down',0), -(3947,13629,'froglok_bostaff_dodge_forehand',0), -(3948,13630,'froglok_bostaff_dodge_thrust',0), -(3949,13631,'froglok_bostaff_offensive_buff',0), -(3950,13632,'froglok_bostaff_ouch_backhand',0), -(3951,13633,'froglok_bostaff_ouch_down',0), -(3952,13634,'froglok_bostaff_ouch_forehand',0), -(3953,13635,'froglok_bostaff_ouch_thrust',0), -(3954,13636,'froglok_bostaff_parry_backhand',0), -(3955,13637,'froglok_bostaff_parry_down',0), -(3956,13638,'froglok_bostaff_parry_forehand',0), -(3957,13639,'froglok_bostaff_parry_thrust',0), -(3958,13640,'froglok_bostaff_super_buff',0), -(3959,13641,'froglok_dual_wield_attack_recoil',0), -(3960,13642,'froglok_dual_wield_attack_recoil01',0), -(3961,13643,'froglok_dual_wield_attack_recoil02',0), -(3962,13644,'froglok_dual_wield_attack_recoil03',0), -(3963,13645,'froglok_dual_wield_parry_backhand',0), -(3964,13646,'froglok_dual_wield_parry_down',0), -(3965,13647,'froglok_dual_wield_parry_forehand',0), -(3966,13648,'froglok_dual_wield_parry_thrust',0), -(3967,13649,'froglok_monk_attack_recoil',0), -(3968,13650,'froglok_monk_attack_recoil02',0), -(3969,13651,'froglok_monk_charge_up',0), -(3970,13652,'froglok_monk_defensive_buff',0), -(3971,13653,'froglok_monk_dodge_backhand',0), -(3972,13654,'froglok_monk_dodge_down',0), -(3973,13655,'froglok_monk_dodge_forehand',0), -(3974,13656,'froglok_monk_dodge_thrust',0), -(3975,13657,'froglok_monk_kick_flying',0), -(3976,13658,'froglok_monk_offensive_buff',0), -(3977,13659,'froglok_monk_ouch_down',0), -(3978,13660,'froglok_monk_ouch_thrust',0), -(3979,13661,'froglok_monk_parry_backhand',0), -(3980,13662,'froglok_monk_parry_down',0), -(3981,13663,'froglok_monk_parry_forehand',0), -(3982,13664,'froglok_monk_parry_thrust',0), -(3983,13665,'froglok_monk_super_buff',0), -(3984,13666,'froglok_monk_taunt_combat_art',0), -(3985,13667,'froglok_pike_attack_recoil',0), -(3986,13668,'froglok_pike_attack_recoil01',0), -(3987,13669,'froglok_pike_attack_recoil02',0), -(3988,13670,'froglok_pike_charge_up',0), -(3989,13671,'froglok_pike_dodge_backhand',0), -(3990,13672,'froglok_pike_dodge_down',0), -(3991,13673,'froglok_pike_dodge_forehand',0), -(3992,13674,'froglok_pike_dodge_thrust',0), -(3993,13675,'froglok_pike_offensive_buff',0), -(3994,13676,'froglok_pike_ouch_backhand',0), -(3995,13677,'froglok_pike_ouch_down',0), -(3996,13678,'froglok_pike_ouch_forehand',0), -(3997,13679,'froglok_pike_ouch_thrust',0), -(3998,13680,'froglok_pike_parry_backhand',0), -(3999,13681,'froglok_pike_parry_down',0), -(4000,13682,'froglok_pike_parry_forehand',0), -(4001,13683,'froglok_pike_parry_thrust',0), -(4002,13684,'froglok_pugilist_attack_recoil02',0), -(4003,13685,'froglok_pugilist_defensive_buff',0), -(4004,13686,'froglok_pugilist_dodge_backhand',0), -(4005,13687,'froglok_pugilist_dodge_down',0), -(4006,13688,'froglok_pugilist_dodge_forehand',0), -(4007,13689,'froglok_pugilist_dodge_thrust',0), -(4008,13690,'froglok_pugilist_offensive_buff',0), -(4009,13691,'froglok_pugilist_ouch_backhand',0), -(4010,13692,'froglok_pugilist_ouch_down',0), -(4011,13693,'froglok_pugilist_ouch_forehand',0), -(4012,13694,'froglok_pugilist_super_buff',0), -(4013,13705,'froglok_bostaff_charge_up',0), -(4014,13706,'froglok_dual_wield_knockdowntoknees',0), -(4015,13707,'froglok_dual_wield_offensive_buff',0), -(4016,13708,'froglok_dual_wield_super_buff',0), -(4017,13709,'froglok_knockdown_attack',0), -(4018,13710,'froglok_knockdowntoknees',0), -(4019,13711,'froglok_offensive_buff',0), -(4020,13712,'froglok_pike_backup',0), -(4021,13713,'froglok_pike_knockdowntoknees',0), -(4022,13714,'froglok_pike_walk',0), -(4023,13715,'froglok_pugilist_attack01',0), -(4024,13716,'froglok_pugilist_attack_recoil01',0), -(4025,13717,'froglok_pugilist_knockdowntoknees',0), -(4026,13718,'froglok_super_buff',0), -(4027,13720,'lights',0), -(4028,13721,'lights_spiral',0), -(4029,13731,'fae_light_dance',0), -(4030,13732,'horse_long_fall',0), -(4031,13735,'trdskl_fruitcake',0), -(4032,13744,'fire01_big',0), -(4033,13745,'fire01_small',0), -(4034,13747,'lights_blue',0), -(4035,13748,'lights_blue_slow',0), -(4036,13749,'lights_flocked',0), -(4037,13750,'lights_gold',0), -(4038,13751,'lights_gold_slow',0), -(4039,13752,'lights_red',0), -(4040,13753,'lights_red_slow',0), -(4041,13754,'lights_white',0), -(4042,13755,'lights_white_slow',0), -(4043,13785,'dwarf_forestry_success',0), -(4044,13786,'gnome_forestry_success',0), -(4045,13787,'halfling_forestry_success',0), -(4046,13789,'ogre_1h_crush_ouch_forehand',0), -(4047,13790,'ogre_1h_pierce_ouch_forehand',0), -(4048,13791,'ogre_1h_sword_ouch_forehand',0), -(4049,13792,'ogre_1h_thrown_ouch_forehand',0), -(4050,13793,'ogre_2h_sword_dodge_backhand',0), -(4051,13794,'ogre_2h_sword_dodge_forehand',0), -(4052,13795,'ogre_2h_sword_ouch_down',0), -(4053,13796,'ogre_2h_sword_ouch_thrust',0), -(4054,13797,'ogre_dual_wield_dodge_backhand',0), -(4055,13798,'ogre_dual_wield_dodge_forehand',0), -(4056,13799,'ogre_dual_wield_ouch_forehand',0), -(4057,13800,'ogre_pike_dodge_backhand',0), -(4058,13801,'ogre_pike_dodge_forehand',0), -(4059,13802,'ogre_pike_kick',0), -(4060,13803,'ogre_pike_ouch_backhand',0), -(4061,13804,'ogre_pike_ouch_down',0), -(4062,13805,'ogre_pike_ouch_forehand',0), -(4063,13806,'ogre_pike_ouch_thrust',0), -(4064,13816,'darkelf_female_2h_sword_wild_swing',0), -(4065,13817,'erudite_female_2h_sword_wild_swing',0), -(4066,13818,'fae_light_2h_sword_whirling_attack',0), -(4067,13819,'fae_light_2h_sword_wild_swing',0), -(4068,13820,'fae_light_female_2h_sword_wild_swing',0), -(4069,13821,'gnome_female_2h_sword_wild_swing',0), -(4070,13822,'halfelf_female_2h_sword_wild_swing',0), -(4071,13823,'highelf_female_2h_sword_wild_swing',0), -(4072,13824,'human_female_2h_sword_wild_swing',0), -(4073,13825,'iksar_female_2h_sword_wild_swing',0), -(4074,13827,'kerra_female_2h_sword_wild_swing',0), -(4075,13828,'ratonga_female_2h_sword_wild_swing',0), -(4076,13830,'troll_female_2h_sword_wild_swing',0), -(4077,13831,'woodelf_female_2h_sword_wild_swing',0), -(4078,13850,'darkelf_female_pike_charge_up',0), -(4079,13851,'darkelf_female_pike_defensive_buff',0), -(4080,13852,'darkelf_female_pike_offensive_buff',0), -(4081,13853,'erudite_female_pike_charge_up',0), -(4082,13854,'erudite_female_pike_defensive_buff',0), -(4083,13855,'erudite_female_pike_offensive_buff',0), -(4084,13856,'fae_light_female_pike_charge_up',0), -(4085,13857,'fae_light_female_pike_defensive_buff',0), -(4086,13858,'fae_light_female_pike_offensive_buff',0), -(4087,13859,'fae_light_untrained_ouch01',0), -(4088,13860,'gnome_female_pike_charge_up',0), -(4089,13861,'gnome_female_pike_defensive_buff',0), -(4090,13862,'gnome_female_pike_offensive_buff',0), -(4091,13863,'halfelf_female_pike_charge_up',0), -(4092,13864,'halfelf_female_pike_defensive_buff',0), -(4093,13865,'halfelf_female_pike_offensive_buff',0), -(4094,13866,'highelf_female_pike_charge_up',0), -(4095,13867,'highelf_female_pike_defensive_buff',0), -(4096,13868,'highelf_female_pike_offensive_buff',0), -(4097,13869,'human_female_pike_charge_up',0), -(4098,13870,'human_female_pike_defensive_buff',0), -(4099,13871,'human_female_pike_offensive_buff',0), -(4100,13872,'iksar_female_pike_charge_up',0), -(4101,13873,'iksar_female_pike_defensive_buff',0), -(4102,13874,'iksar_female_pike_offensive_buff',0), -(4103,13876,'kerra_female_pike_charge_up',0), -(4104,13877,'kerra_female_pike_defensive_buff',0), -(4105,13878,'kerra_female_pike_offensive_buff',0), -(4106,13879,'ratonga_female_pike_charge_up',0), -(4107,13880,'ratonga_female_pike_defensive_buff',0), -(4108,13881,'ratonga_female_pike_offensive_buff',0), -(4109,13883,'troll_female_pike_charge_up',0), -(4110,13884,'troll_female_pike_defensive_buff',0), -(4111,13885,'troll_female_pike_offensive_buff',0), -(4112,13886,'woodelf_female_pike_charge_up',0), -(4113,13887,'woodelf_female_pike_defensive_buff',0), -(4114,13888,'woodelf_female_pike_offensive_buff',0), -(4115,13937,'design_frostfell_candy_canes',0), -(4116,13958,'fire_hearts',0), -(4117,14010,'result_heart_vision',0), -(4118,14011,'result_heartbreak',0), -(4119,14023,'result_flies',0), -(4120,14024,'result_weapon_trail_poison',0), -(4121,14175,'result_dagger_vision_p2p',0), -(4122,14176,'result_heart_vision_p2p',0), -(4123,14186,'flirt_short_butt',0), -(4124,14187,'flirt_short_leg',0), -(4125,14188,'flirt_short_shake',0), -(4126,14189,'flirt_short_wave',0), -(4127,14190,'flirt_short_wave2',0), -(4128,14191,'flirt_short_wave3',0), -(4129,14193,'result_heart_success',0), -(4130,14223,'design_result_static_scare',0), -(4131,14225,'result_fog_poison_billboards',0), -(4132,14226,'result_fog_poison_billboards_small',0), -(4133,14227,'result_fog_poison_billboards_thinner',0), -(4134,14228,'roxbury',0), -(4135,14242,'cast_pfx_notes_l',0), -(4136,14243,'cast_pfx_notes_r',0), -(4137,14312,'sound_unrest_quel_piano',0), -(4138,14323,'water',0), -(4139,14364,'1h_wand_attack',0), -(4140,14365,'1h_wand_attack01',0), -(4141,14366,'1h_wand_attack02',0), -(4142,14367,'1h_wand_attack03',0), -(4143,14368,'1h_wand_attack_recoil',0), -(4144,14369,'1h_wand_attack_recoil01',0), -(4145,14370,'1h_wand_attack_recoil02',0), -(4146,14371,'1h_wand_attack_recoil03',0), -(4147,14372,'1h_wand_backup',0), -(4148,14373,'1h_wand_dodge_backhand',0), -(4149,14374,'1h_wand_dodge_down',0), -(4150,14375,'1h_wand_dodge_forehand',0), -(4151,14376,'1h_wand_dodge_thrust',0), -(4152,14377,'1h_wand_enter',0), -(4153,14378,'1h_wand_exit',0), -(4154,14379,'1h_wand_idle',0), -(4155,14380,'1h_wand_ouch_backhand',0), -(4156,14381,'1h_wand_ouch_down',0), -(4157,14382,'1h_wand_ouch_forehand',0), -(4158,14383,'1h_wand_ouch_thrust',0), -(4159,14384,'1h_wand_parry_backhand',0), -(4160,14385,'1h_wand_parry_down',0), -(4161,14386,'1h_wand_parry_forehand',0), -(4162,14387,'1h_wand_parry_thrust',0), -(4163,14388,'1h_wand_strafe_left',0), -(4164,14389,'1h_wand_strafe_right',0), -(4165,14390,'1h_wand_walk',0), -(4166,14401,'snd_design_unrest_zombie_scare',0), -(4167,14407,'constant2_fx',0), -(4168,14420,'result_sparkles_explode_noise',0), -(4169,14422,'sound_howl',0), -(4170,14460,'attack_recoil',0), -(4171,14461,'attack_recoil01',0), -(4172,14462,'attack_recoil02',0), -(4173,14463,'attack_recoil03',0), -(4174,14469,'parry_backhand',0), -(4175,14470,'parry_down',0), -(4176,14471,'parry_forehand',0), -(4177,14472,'parry_thrust',0), -(4178,14497,'monk_offensive_buff_short',0), -(4179,14506,'result_sparkle_trail_weapon_right_glow_blend_brown',0), -(4180,14507,'result_sparkle_trail_weapon_right_glow_blend_purple',0), -(4181,14508,'result_sparkle_trail_weapon_right_glow_silver',0), -(4182,14509,'result_sparkle_trail_weapon_right_glow_tan',0), -(4183,14519,'1h_pierce_attack_03',0), -(4184,14535,'result_sparkle_trail_rightfoot_glow',0), -(4185,14555,'cast_mist_sphere_sub',0), -(4186,14561,'result_ghost_shield_p2p',0), -(4187,14576,'design_flying_barrel',0), -(4188,14585,'result_breaking_faith_wall',0), -(4189,14589,'cached_state2',0), -(4190,14623,'result_flash_weapon_brown',0), -(4191,14624,'result_flash_weapon_purple',0), -(4192,14625,'result_flash_weapon_silver',0), -(4193,14626,'result_glow_weapon_tan',0), -(4194,14627,'result_mist_clingy_sub',0), -(4195,14628,'result_shout',0), -(4196,14681,'cast_debuff_blend',0), -(4197,14684,'cast_shield_grow_blend',0), -(4198,14721,'design_result_bubble_ring',0), -(4199,14736,'fel_epic_symbol',0), -(4200,14739,'warg_backup',0), -(4201,14740,'warg_fall',0), -(4202,14741,'warg_idle',0), -(4203,14742,'warg_jump',0), -(4204,14743,'warg_jump_substitute',0), -(4205,14744,'warg_land',0), -(4206,14745,'warg_long_fall',0), -(4207,14746,'warg_run',0), -(4208,14747,'warg_turn_left',0), -(4209,14748,'warg_turn_right',0), -(4210,14749,'warg_walk',0), -(4211,14797,'electric_hands_l',0), -(4212,14798,'electric_hands_r',0), -(4213,14802,'trdskl_horn',0), -(4214,14810,'warg_idle01',0), -(4215,14811,'warg_idle02',0), -(4216,14839,'pawstep_trigger',0), -(4217,14869,'result_deathward_heal',0), -(4218,14870,'result_doppleganger_p2p',0), -(4219,14871,'result_eyehand_buff',0), -(4220,14889,'cast_acid_storm_damage',0), -(4221,14895,'result_acid_rain_damage',0), -(4222,14896,'result_acid_storm_damage',0), -(4223,14904,'pawstep',0), -(4224,14913,'pawstep_snow',0), -(4225,14918,'snd_horn_centaur',0), -(4226,14919,'snd_horn_conch',0), -(4227,14920,'snd_horn_gnoll',0), -(4228,14921,'snd_horn_goblin',0), -(4229,14924,'cast_ball_lightning_damage',0), -(4230,14925,'cast_conjuror',0), -(4231,14937,'result_countersong_p2p',0), -(4232,14938,'result_rays_of_disintigration',0), -(4233,14939,'result_rays_of_disintigration_p2p',0), -(4234,14945,'cast_vampirism_p2p',0), -(4235,14947,'froglok_warg_idle',0), -(4236,14948,'froglok_warg_jump_substitute',0), -(4237,14978,'particle_mood_combat_enter',0), -(4238,14979,'result_fatal_followup',0), -(4239,14980,'result_puppetmaster',0), -(4240,14989,'special',0), -(4241,14996,'result_barrier',0), -(4242,14997,'result_softkill',0), -(4243,15001,'cast_leaf_blower_p2p',0), -(4244,15004,'cast_waterflush_p2p',0), -(4245,15007,'result_firewhimsy_p2p',0), -(4246,15008,'result_leaves_sticky',0), -(4247,15009,'result_p2p_lightning_bolts',0), -(4248,15051,'design_spotlight',0), -(4249,15053,'pawstep_leather_carpet',0), -(4250,15054,'pawstep_leather_dirt',0), -(4251,15055,'pawstep_leather_grass',0), -(4252,15056,'pawstep_leather_gravel',0), -(4253,15057,'pawstep_leather_ice',0), -(4254,15058,'pawstep_leather_metal',0), -(4255,15059,'pawstep_leather_mud',0), -(4256,15060,'pawstep_leather_sand',0), -(4257,15061,'pawstep_leather_snow',0), -(4258,15062,'pawstep_leather_stone',0), -(4259,15063,'pawstep_leather_water',0), -(4260,15064,'pawstep_leather_wood',0), -(4261,15094,'snd_fire_large_loop',0), -(4262,15109,'sound_peck',0), -(4263,15117,'sound_damagefeather',0), -(4264,15120,'cast_dirge_stringed_loop',0), -(4265,15122,'cast_horn_blowing_end',0), -(4266,15123,'cast_horn_blowing_loop',0), -(4267,15128,'fae_dark_1h_sword_attack',0), -(4268,15129,'fae_dark_1h_sword_attack01',0), -(4269,15130,'fae_dark_1h_sword_attack02',0), -(4270,15131,'fae_dark_1h_sword_attack03',0), -(4271,15132,'fae_dark_1h_sword_death_blow',0), -(4272,15133,'fae_dark_1h_sword_death_blow01',0), -(4273,15134,'fae_dark_1h_sword_dodge_backhand',0), -(4274,15135,'fae_dark_1h_sword_dodge_down',0), -(4275,15136,'fae_dark_1h_sword_dodge_forehand',0), -(4276,15137,'fae_dark_1h_sword_dodge_thrust',0), -(4277,15138,'fae_dark_1h_sword_ouch_backhand',0), -(4278,15139,'fae_dark_1h_sword_ouch_down',0), -(4279,15140,'fae_dark_1h_sword_ouch_forehand',0), -(4280,15141,'fae_dark_1h_sword_ouch_thrust',0), -(4281,15142,'fae_dark_1h_sword_parry_backhand',0), -(4282,15143,'fae_dark_1h_sword_parry_down',0), -(4283,15144,'fae_dark_1h_sword_parry_forehand',0), -(4284,15145,'fae_dark_1h_sword_parry_thrust',0), -(4285,15146,'fae_dark_2h_sword_attack',0), -(4286,15147,'fae_dark_2h_sword_attack01',0), -(4287,15148,'fae_dark_2h_sword_attack02',0), -(4288,15149,'fae_dark_2h_sword_defensive_buff',0), -(4289,15150,'fae_dark_2h_sword_dodge_backhand',0), -(4290,15151,'fae_dark_2h_sword_dodge_down',0), -(4291,15152,'fae_dark_2h_sword_dodge_forehand',0), -(4292,15153,'fae_dark_2h_sword_enter',0), -(4293,15154,'fae_dark_2h_sword_kick',0), -(4294,15155,'fae_dark_2h_sword_ouch_backhand',0), -(4295,15156,'fae_dark_2h_sword_ouch_down',0), -(4296,15157,'fae_dark_2h_sword_ouch_forehand',0), -(4297,15158,'fae_dark_2h_sword_ouch_thrust',0), -(4298,15159,'fae_dark_2h_sword_whirling_attack',0), -(4299,15160,'fae_dark_2h_sword_wild_swing',0), -(4300,15161,'fae_dark_bostaff_attack01',0), -(4301,15162,'fae_dark_bostaff_attack02',0), -(4302,15163,'fae_dark_bostaff_attack03',0), -(4303,15164,'fae_dark_bostaff_dodge_backhand',0), -(4304,15165,'fae_dark_bostaff_dodge_forehand',0), -(4305,15166,'fae_dark_climbing_backup',0), -(4306,15167,'fae_dark_climbing_enter_down_root',0), -(4307,15168,'fae_dark_climbing_exit_up_root',0), -(4308,15169,'fae_dark_climbing_idle',0), -(4309,15170,'fae_dark_climbing_strafe_left',0), -(4310,15171,'fae_dark_climbing_strafe_right',0), -(4311,15172,'fae_dark_climbing_walk',0), -(4312,15173,'fae_dark_dance',0), -(4313,15174,'fae_dark_dead',0), -(4314,15175,'fae_dark_dead_enter',0), -(4315,15176,'fae_dark_dual_wield_attack',0), -(4316,15177,'fae_dark_dual_wield_attack01',0), -(4317,15178,'fae_dark_dual_wield_attack02',0), -(4318,15179,'fae_dark_dual_wield_attack03',0), -(4319,15180,'fae_dark_dual_wield_dodge_backhand',0), -(4320,15181,'fae_dark_dual_wield_dodge_forehand',0), -(4321,15182,'fae_dark_dual_wield_kick',0), -(4322,15183,'fae_dark_dual_wield_ouch_backhand',0), -(4323,15184,'fae_dark_dual_wield_ouch_forehand',0), -(4324,15185,'fae_dark_dual_wield_parry_down',0), -(4325,15186,'fae_dark_dual_wield_whirling_attack',0), -(4326,15187,'fae_dark_dual_wield_wild_swing',0), -(4327,15188,'fae_dark_idle',0), -(4328,15189,'fae_dark_monk_attack',0), -(4329,15190,'fae_dark_monk_attack01',0), -(4330,15191,'fae_dark_monk_attack02',0), -(4331,15192,'fae_dark_monk_attack03',0), -(4332,15193,'fae_dark_monk_dodge_backhand',0), -(4333,15194,'fae_dark_monk_dodge_down',0), -(4334,15195,'fae_dark_monk_wild_swing',0), -(4335,15196,'fae_dark_pike_attack',0), -(4336,15197,'fae_dark_pike_attack01',0), -(4337,15198,'fae_dark_pike_attack02',0), -(4338,15199,'fae_dark_pike_kick',0), -(4339,15200,'fae_dark_pike_whirling_attack',0), -(4340,15201,'fae_dark_pike_wild_swing',0), -(4341,15202,'fae_dark_pugilist_attack',0), -(4342,15203,'fae_dark_pugilist_attack02',0), -(4343,15204,'fae_dark_pugilist_kick',0), -(4344,15205,'fae_dark_pugilist_whirling_attack',0), -(4345,15206,'fae_dark_pugilist_wild_swing',0), -(4346,15207,'fae_dark_run',0), -(4347,15208,'fae_dark_sit_enter',0), -(4348,15209,'fae_dark_sit_exit',0), -(4349,15210,'fae_dark_sit_idle',0), -(4350,15211,'fae_dark_untrained_ouch01',0), -(4351,15232,'cast_summon_undead_assemble',0), -(4352,15233,'cast_summon_undead_cyclone',0), -(4353,15234,'cast_summon_undead_flame_spurt',0), -(4354,15235,'cast_summon_undead_yawn',0), -(4355,15245,'result_clouds_head',0), -(4356,15246,'run01',0), -(4357,15247,'run02',0), -(4358,15258,'cast_bard_drum_persist',0), -(4359,15259,'cast_bard_flute_persist',0), -(4360,15260,'cast_bard_stringed_persist',0), -(4361,15265,'result_soulsuck_p2p',0), -(4362,15301,'design_fireworks_show_10',0), -(4363,15302,'design_fireworks_show_2',0), -(4364,15303,'design_fireworks_show_4',0), -(4365,15304,'design_fireworks_show_6',0), -(4366,15307,'sound_bud',0), -(4367,15308,'sound_idle_legs',0), -(4368,15321,'design_neriak_opera_backdrop_moon',0), -(4369,15322,'design_neriak_opera_backdrop_palace',0), -(4370,15323,'design_neriak_opera_backdrop_sky',0), -(4371,15324,'design_neriak_opera_backdrop_trees',0), -(4372,15334,'trdskl_metal_sparks',0), -(4373,15363,'sound_deathwing',0), -(4374,15364,'sound_idlebreathe',0), -(4375,15365,'sound_idlewing',0), -(4376,15366,'sound_stinger',0), -(4377,15367,'sound_swooshstinger',0), -(4378,15409,'result_anvil_drop',0), -(4379,15418,'walk01',0), -(4380,15419,'walk02',0), -(4381,15475,'result_star_burst',0), -(4382,15476,'result_stunned_star',0), -(4383,15529,'attack_02',0), -(4384,15533,'green_smoke-ouch',0), -(4385,15534,'green_smoke_ouch',0), -(4386,15536,'royal_wave_short',0), -(4387,15538,'spike_ball01',0), -(4388,15539,'spike_ball02',0), -(4389,15540,'spike_ball03',0), -(4390,15588,'draw_weapon',0), -(4391,15589,'fel_epic_symbol_outer',0), -(4392,15611,'draw_weapon_idle',0), -(4393,15614,'sheathe_weapon_idle',0), -(4394,15615,'fade_cast_sound',0), -(4395,15616,'fade_reverse_sound',0), -(4396,15617,'cast_poison_dragon_breath_test',0), -(4397,15618,'cast_pricecheck',0), -(4398,15619,'constant_fx',0), -(4399,15620,'instant_fx',0), -(4400,15621,'sd_spiritdescend_snd',0), -(4401,15622,'1h_sword_idle01',0), -(4402,15629,'paperdoll',0), -(4403,15637,'tail_combat',0), -(4404,15640,'aura_yellow',0), -(4405,15641,'cast_lhand_sparkle_trail_blend',0), -(4406,15644,'cast_rhand_sparkle_trail_blend',0), -(4407,15652,'tail_run',0), -(4408,15657,'climbing_chainmail_rope',0), -(4409,15658,'climbing_leather_rope',0), -(4410,15659,'climbing_metal_rope',0), -(4411,15662,'run_tail',0), -(4412,15669,'result_cold_ice_crystals_hands',0), -(4413,15670,'result_cold_ice_crystals_lefthand',0), -(4414,15671,'result_cold_ice_crystals_righthand',0), -(4415,15672,'result_hand_rings_fire',0), -(4416,15673,'result_hand_rings_ice',0), -(4417,15674,'result_hand_rings_lightning',0), -(4418,15675,'result_rock_hands',0), -(4419,15678,'attack_fx',0), -(4420,15685,'result_plant_filaments',0), -(4421,15693,'sound_damagestone',0), -(4422,15694,'sound_deadloud',0), -(4423,15699,'cast_skull_grow',0), -(4424,15700,'cast_sonic_ring',0), -(4425,15701,'cast_sonic_ring_vertical',0), -(4426,15704,'result_poison_cysts_popping',0), -(4427,15705,'result_silence',0), -(4428,15712,'result_gangrene',0), -(4429,15720,'snd_aof_anvilfall',0), -(4430,15721,'snd_aof_anvilhit',0), -(4431,15729,'snd_acidrain_cast',0), -(4432,15730,'snd_acidrain_result',0), -(4433,15736,'death',0), -(4434,15739,'sheathe_weapon',0), -(4435,15740,'snd_design_terror001',0), -(4436,15741,'snd_design_terror002',0), -(4437,15742,'snd_design_terror003',0), -(4438,15743,'snd_design_terror004',0), -(4439,15744,'snd_design_terror005',0), -(4440,15745,'snd_design_terror006',0), -(4441,15746,'snd_design_terror007',0), -(4442,15747,'snd_design_terror008',0), -(4443,15748,'snd_design_terror009',0), -(4444,15749,'snd_design_terror010',0), -(4445,15750,'snd_design_terror011',0), -(4446,15751,'snd_design_terror012',0), -(4447,15752,'snd_design_terror020',0), -(4448,15753,'sound_blow',0), -(4449,15754,'sound_deathfall1',0), -(4450,15755,'sound_deathfall2',0), -(4451,15763,'sound_idlehit',0), -(4452,15764,'sound_idleyell',0), -(4453,15771,'kick_fx',0), -(4454,15772,'result_bucket',0), -(4455,15779,'result_lava_burst',0), -(4456,15780,'rhino_backup',0), -(4457,15781,'rhino_idle',0), -(4458,15782,'rhino_jump_substitute',0), -(4459,15783,'rhino_run',0), -(4460,15784,'rhino_turn_left',0), -(4461,15785,'rhino_turn_right',0), -(4462,15786,'rhino_walk',0), -(4463,15793,'result_blast_cone_aoe',0), -(4464,15794,'result_pants_off',0), -(4465,15801,'result_god_spell_bristlebane',0), -(4466,15807,'design_plant_attack',0), -(4467,15809,'rhino_fall',0), -(4468,15810,'rhino_jump',0), -(4469,15811,'rhino_land',0), -(4470,15818,'result_cocoon_blue',0), -(4471,15819,'result_cocoon_green',0), -(4472,15820,'result_cocoon_red',0), -(4473,15821,'result_cocoon_yellow',0), -(4474,15822,'result_web_shooting_p2p',0), -(4475,15828,'fly_combat',0), -(4476,15829,'fly_combat01',0), -(4477,15830,'fly_enter',0), -(4478,15831,'fly_exit',0), -(4479,15834,'snd_cow_moo',0), -(4480,15835,'trdskl_beehive',0), -(4481,15842,'result_bee_breath',0), -(4482,15843,'result_beehive_hit',0), -(4483,15845,'sound_ribbit',0), -(4484,15846,'sound_tonguesplat',0), -(4485,15851,'cast_wild_heart_buff',0), -(4486,15854,'persist_fear_skulls',0), -(4487,15855,'persist_wild_heart_beating',0), -(4488,15861,'drag_sparks',0), -(4489,15862,'ground_blast',0), -(4490,15864,'pawbuster_attack_enter',0), -(4491,15865,'pawbuster_attack_exit',0), -(4492,15866,'pawbuster_attack_idle',0), -(4493,15867,'result_webby_root',0), -(4494,15875,'sparkle_trail_weapon',0), -(4495,15876,'sparkle_trail_weapon_spiral',0), -(4496,15881,'cast_webshoot',0), -(4497,15882,'cast_webshoot_p2p',0), -(4498,15886,'walk_tail',0), -(4499,15891,'cast_trace_firespikes_sub_l',0), -(4500,15892,'cast_trace_firespikes_sub_r',0), -(4501,15899,'pugilist_charge_up_long',0), -(4502,15907,'spike_fist',0), -(4503,15913,'fx_on',0), -(4504,15915,'result_ground_blast_ring',0), -(4505,15921,'griffin_glide',0), -(4506,15927,'idle_to_combat',0), -(4507,15934,'result_fire_object',0), -(4508,15941,'rhino_long_fall',0), -(4509,15942,'rhino_strafe_left',0), -(4510,15943,'rhino_strafe_right',0), -(4511,15944,'run_tail_cloak',0), -(4512,15946,'walk_tail_cloak',0), -(4513,15949,'beam0_blue',0), -(4514,15950,'beam0_red',0), -(4515,15951,'beam0_yellow',0), -(4516,15952,'beam1_blue',0), -(4517,15953,'beam1_red',0), -(4518,15954,'beam1_yellow',0), -(4519,15955,'beam2_blue',0), -(4520,15956,'beam2_red',0), -(4521,15957,'beam2_yellow',0), -(4522,15958,'beam3_blue',0), -(4523,15959,'beam3_red',0), -(4524,15960,'beam3_yellow',0), -(4525,15961,'beam_door',0), -(4526,15966,'cast_shards',0), -(4527,15967,'cast_shards_blast',0), -(4528,15970,'mood_dance',0), -(4529,15973,'beam_miss_orange',0), -(4530,15974,'beam_miss_purple',0), -(4531,15975,'cast_dragon_pbae_lightning_red',0), -(4532,15976,'cast_dual_shards',0), -(4533,15979,'cast_shard_cloud_blast',0), -(4534,15980,'cast_shard_lightning',0), -(4535,15981,'cast_shard_pulse',0), -(4536,15982,'cast_shards_fusion',0), -(4537,15983,'cast_shards_merging',0), -(4538,15989,'ghost_idle',0), -(4539,15994,'cha_beam_blast0',0), -(4540,15995,'cha_beam_blast1',0), -(4541,15996,'cha_beam_blast2',0), -(4542,15997,'cha_beam_blast_up',0), -(4543,16003,'design_charasis_beams_purple',0), -(4544,16004,'design_charasis_beams_turquoise',0), -(4545,16011,'result_ghost_forced_shader_4_green',0), -(4546,16012,'result_ghost_forced_shader_4_red',0), -(4547,16019,'result_barrier_blue',0), -(4548,16020,'result_barrier_red',0), -(4549,16021,'result_barrier_yellow',0), -(4550,16027,'design_blood_puddle',0), -(4551,16029,'result_berserker_black_eyes',0), -(4552,16030,'result_berserker_blue_eyes',0), -(4553,16031,'result_berserker_purple_eyes',0), -(4554,16032,'result_berserker_white_eyes',0), -(4555,16037,'combat_idle2',0), -(4556,16039,'design_charasis_windfan_fx',0), -(4557,16042,'cast_no_target_blue_star',0), -(4558,16046,'design_charasis_theater_fx',0), -(4559,16047,'design_charasis_vision_fens',0), -(4560,16048,'design_charasis_vision_jarsath',0), -(4561,16049,'design_charasis_vision_kunzar',0), -(4562,16050,'design_charasis_vision_kylong',0), -(4563,16056,'dance_enter',0), -(4564,16057,'dance_exit',0), -(4565,16059,'result_ghost_shadow',0), -(4566,16065,'design_lava_projectile',0), -(4567,16066,'design_vision_teleport_veeshans',0), -(4568,16074,'sound_fall001',0), -(4569,16080,'design_veeshans_barrier',0), -(4570,16086,'design_veeshans_rock_drop',0), -(4571,16089,'sound_belly001',0), -(4572,16090,'sound_belly002',0), -(4573,16095,'cast_summon_undead_cyclone_green',0), -(4574,16097,'goo_arm_buff',0), -(4575,16099,'result_pus_bolt_p2p',0), -(4576,16100,'result_pus_splat',0), -(4577,16101,'result_sickly_aura_aoe',0), -(4578,16102,'ring',0), -(4579,16108,'design_vision_teleport_traks_lair',0), -(4580,16109,'draw_weapon_primary_trigger',0), -(4581,16110,'draw_weapon_secondary_trigger',0), -(4582,16112,'result_barrier_orange',0), -(4583,16113,'result_gavel_pound',0), -(4584,16114,'result_stinky_aura',0), -(4585,16115,'screen_shake',0), -(4586,16117,'sheathe_weapon_primary_trigger',0), -(4587,16118,'sheathe_weapon_secondary_trigger',0), -(4588,16119,'stomp_sound',0), -(4589,16127,'sound_bone',0), -(4590,16128,'sound_bonedeath',0), -(4591,16135,'result_glade',0), -(4592,16136,'result_ice_storm',0), -(4593,16137,'result_shroud_of_clouds',0), -(4594,16143,'design_karnors_beam_center',0), -(4595,16144,'design_karnors_beam_left',0), -(4596,16145,'design_karnors_beam_right',0), -(4597,16147,'result_timed_heart_tap',0), -(4598,16149,'sound_yawn',0), -(4599,16154,'combat_attack',0), -(4600,16157,'mount_attack01',0), -(4601,16158,'mount_combat_idle',0), -(4602,16159,'mount_ouch',0), -(4603,16160,'mount_ouch01',0), -(4604,16161,'result_soul_attack_p2p',0), -(4605,16162,'rhino_sprint',0), -(4606,16163,'sarnak_1h_crush_idle',0), -(4607,16164,'sarnak_1h_pierce_idle',0), -(4608,16165,'sarnak_1h_sword_idle',0), -(4609,16166,'sarnak_1h_thrown_idle',0), -(4610,16167,'sarnak_2h_sword_idle',0), -(4611,16168,'sarnak_backup',0), -(4612,16169,'sarnak_backup_run',0), -(4613,16170,'sarnak_bostaff_idle',0), -(4614,16171,'sarnak_combat_idle',0), -(4615,16172,'sarnak_dual_wield_idle',0), -(4616,16173,'sarnak_fall',0), -(4617,16174,'sarnak_idle',0), -(4618,16175,'sarnak_idle01',0), -(4619,16176,'sarnak_monk_idle',0), -(4620,16177,'sarnak_pike_idle',0), -(4621,16178,'sarnak_pugilist_idle',0), -(4622,16179,'sarnak_rhino_backup',0), -(4623,16180,'sarnak_rhino_idle',0), -(4624,16181,'sarnak_rhino_jump_substitute',0), -(4625,16182,'sarnak_rhino_run',0), -(4626,16183,'sarnak_rhino_strafe_left',0), -(4627,16184,'sarnak_rhino_strafe_right',0), -(4628,16185,'sarnak_rhino_turn_left',0), -(4629,16186,'sarnak_rhino_turn_right',0), -(4630,16187,'sarnak_run',0), -(4631,16188,'sarnak_run_03',0), -(4632,16189,'sarnak_run_down_idle',0), -(4633,16190,'sarnak_run_long',0), -(4634,16191,'sarnak_run_up_idle',0), -(4635,16192,'sarnak_sit_enter',0), -(4636,16193,'sarnak_sit_exit',0), -(4637,16194,'sarnak_sit_idle',0), -(4638,16195,'sarnak_strafe_left_run',0), -(4639,16196,'sarnak_strafe_right_run',0), -(4640,16197,'sarnak_sway_l',0), -(4641,16198,'sarnak_sway_r',0), -(4642,16199,'sarnak_untrained_idle',0), -(4643,16200,'sarnak_walk',0), -(4644,16203,'carpet_backup',0), -(4645,16209,'sokokar_idle',0), -(4646,16210,'sokokar_run',0), -(4647,16211,'sokokar_walk',0), -(4648,16218,'pus_splat',0), -(4649,16220,'sound_cast001',0), -(4650,16221,'sound_cast002',0), -(4651,16222,'sound_slam',0), -(4652,16225,'aura_green',0), -(4653,16228,'cast_venril_beam_buff',0), -(4654,16229,'cast_venril_crystal',0), -(4655,16230,'cast_venril_ring',0), -(4656,16231,'cast_venril_ring_buff',0), -(4657,16234,'result_ghosts',0), -(4658,16240,'death_enter',0), -(4659,16241,'death_tail',0), -(4660,16242,'hand_fx_left',0), -(4661,16243,'hand_fx_right',0), -(4662,16246,'sokokar_glide',0), -(4663,16247,'sound_deadeye001',0), -(4664,16248,'sound_deadeye002',0), -(4665,16249,'sound_deathdeflate',0), -(4666,16250,'sound_smoke',0), -(4667,16255,'cast_trail_head',0), -(4668,16262,'manipulate',0), -(4669,16270,'sound_bones',0), -(4670,16271,'sound_deathghost',0), -(4671,16277,'eye_beams',0), -(4672,16279,'result_pus_rain_aoe',0), -(4673,16280,'sarnak_1h_crush_enter',0), -(4674,16281,'sarnak_1h_pierce_enter',0), -(4675,16282,'sarnak_1h_sword_attack',0), -(4676,16283,'sarnak_1h_sword_attack02',0), -(4677,16284,'sarnak_1h_sword_attack03',0), -(4678,16285,'sarnak_1h_sword_death_blow',0), -(4679,16286,'sarnak_1h_sword_death_blow01',0), -(4680,16287,'sarnak_1h_sword_enter',0), -(4681,16288,'sarnak_1h_sword_exit',0), -(4682,16289,'sarnak_1h_thrown_enter',0), -(4683,16290,'sarnak_1h_wand_enter',0), -(4684,16291,'sarnak_1h_wand_idle',0), -(4685,16292,'sarnak_2h_sword_enter',0), -(4686,16293,'sarnak_dead',0), -(4687,16294,'sarnak_dead_enter',0), -(4688,16301,'result_fireworks_confetti',0), -(4689,16304,'cast_breath_divine',0), -(4690,16305,'cast_breath_magic',0), -(4691,16312,'result_breath_magic',0), -(4692,16318,'design_green_mist',0), -(4693,16320,'power_up',0), -(4694,16321,'sarnak_2h_sword_attack',0), -(4695,16322,'sarnak_2h_sword_attack01',0), -(4696,16323,'sarnak_2h_sword_attack02',0), -(4697,16324,'sarnak_2h_sword_kick',0), -(4698,16325,'sarnak_monk_enter',0), -(4699,16328,'cast_dragon_tail_trail',0), -(4700,16329,'cast_dragon_tail_trail_long',0), -(4701,16330,'cast_dragon_wing_buffet',0), -(4702,16334,'horse_combat_idle',0), -(4703,16336,'result_fleas',0), -(4704,16337,'sarnak_bow_enter',0), -(4705,16338,'sarnak_bow_idle',0), -(4706,16340,'sound_attack_main',0), -(4707,16341,'sound_attack_medusa',0), -(4708,16342,'sound_attack_mouth',0), -(4709,16343,'sound_damage_medusa',0), -(4710,16344,'sound_damage_mouth',0), -(4711,16345,'sound_death_medusa',0), -(4712,16346,'sound_death_mouth',0), -(4713,16347,'sound_enter',0), -(4714,16348,'sound_enter_vocal',0), -(4715,16349,'sound_swing',0), -(4716,16356,'result_god_cackle_tribunal',0), -(4717,16357,'result_god_spell_bertoxxulous',0), -(4718,16358,'result_god_spell_karana',0), -(4719,16359,'result_god_spell_tribunal',0), -(4720,16361,'snd_rain_9s',0), -(4721,16362,'trdskl_barracuda',0), -(4722,16365,'cast_dragon_breath_cold',0), -(4723,16366,'cast_dragon_breath_heat',0), -(4724,16367,'cast_dragon_breath_lightning',0), -(4725,16368,'cast_dragon_breath_poison',0), -(4726,16369,'cast_drake_breath_cold',0), -(4727,16370,'cast_drake_breath_lightning',0), -(4728,16371,'cast_drake_breath_magic_divine',0), -(4729,16372,'cast_drake_breath_poison',0), -(4730,16376,'design_ball_summon',0), -(4731,16377,'design_leash',0), -(4732,16378,'design_lightning_ground',0), -(4733,16379,'design_pillar_summon',0), -(4734,16381,'ouch_back',0), -(4735,16382,'sarnak_dual_wield_attack01',0), -(4736,16384,'sit_idle_tail',0), -(4737,16391,'runes_shissar1',0), -(4738,16392,'runes_shissar2',0), -(4739,16393,'runes_shissar3',0), -(4740,16394,'runes_shissar4',0), -(4741,16395,'runes_shissar5',0), -(4742,16396,'runes_shissar6',0), -(4743,16397,'runes_shissar7',0), -(4744,16398,'runes_shissar8',0), -(4745,16405,'pike_advance',0), -(4746,16412,'result_trakanon_static_repulsion',0), -(4747,16418,'design_poison_splashes',0), -(4748,16420,'particle_teleport',0), -(4749,16422,'wizard_rune_blast',0), -(4750,16429,'result_hand_rings_smoke',0), -(4751,16430,'result_pie_splat',0), -(4752,16431,'sarnak_1h_crush_attack',0), -(4753,16432,'sarnak_1h_crush_attack02',0), -(4754,16433,'sarnak_1h_crush_attack03',0), -(4755,16434,'sarnak_1h_pierce_attack',0), -(4756,16435,'sarnak_bostaff_attack',0), -(4757,16436,'sarnak_bostaff_attack01',0), -(4758,16437,'sarnak_bostaff_attack02',0), -(4759,16438,'sarnak_bostaff_attack03',0), -(4760,16439,'sarnak_dual_wield_attack',0), -(4761,16440,'sarnak_dual_wield_attack02',0), -(4762,16441,'sarnak_fishing_cast',0), -(4763,16442,'sarnak_fishing_fight',0), -(4764,16443,'sarnak_fishing_reel_in',0), -(4765,16444,'sarnak_forestry_chopping',0), -(4766,16445,'sarnak_forestry_success',0), -(4767,16446,'sarnak_gathering_search',0), -(4768,16447,'sarnak_gathering_success',0), -(4769,16448,'sarnak_mining_digging',0), -(4770,16449,'sarnak_monk_attack',0), -(4771,16450,'sarnak_monk_attack01',0), -(4772,16451,'sarnak_monk_attack02',0), -(4773,16452,'sarnak_monk_attack03',0), -(4774,16453,'sarnak_monk_kick',0), -(4775,16454,'sarnak_pike_attack',0), -(4776,16455,'sarnak_pike_attack01',0), -(4777,16456,'sarnak_pike_attack02',0), -(4778,16457,'sarnak_pike_attack03',0), -(4779,16458,'sarnak_pike_kick',0), -(4780,16460,'trdskl_pie',0), -(4781,16467,'result_hand_rings_poison',0), -(4782,16468,'sarnak_1h_sword_attack01',0), -(4783,16469,'sarnak_mining_success',0), -(4784,16472,'cast_mirror',0), -(4785,16476,'design_parrot_shoulder',0), -(4786,16478,'result_splat',0), -(4787,16480,'trdskl_glob',0), -(4788,16487,'result_bread_hit',0), -(4789,16489,'trdskl_bread',0), -(4790,16495,'froglok_dead_enter',0), -(4791,16496,'froglok_run_up_idle',0), -(4792,16497,'froglok_swim_attack',0), -(4793,16498,'froglok_swim_go',0), -(4794,16499,'froglok_swim_idle',0), -(4795,16500,'froglok_swim_ouch',0), -(4796,16501,'iksar_swim_backup',0), -(4797,16502,'iksar_swim_go',0), -(4798,16504,'sarnak_rhino_sprint',0), -(4799,16505,'sarnak_swim_backup',0), -(4800,16506,'sarnak_swim_go',0), -(4801,16508,'swim_go',0), -(4802,16513,'close',0), -(4803,16514,'2h_sword',0), -(4804,16517,'cast_armor_assemble',0), -(4805,16520,'cast_chalice_descending',0), -(4806,16527,'result_blast_double_cone_aoe',0), -(4807,16530,'carpet_tail',0), -(4808,16531,'carpet_tail_cloak',0), -(4809,16536,'result_book_hit',0), -(4810,16538,'trdskl_book',0), -(4811,16539,'trdskl_rose',0), -(4812,16545,'flash',0), -(4813,16546,'glint',0), -(4814,16549,'cast_light_beam_grow',0), -(4815,16554,'result_gavel_drop',0), -(4816,16555,'result_hearts_red',0), -(4817,16556,'result_light_slam_aoe',0), -(4818,16557,'result_vertical_blast',0), -(4819,16560,'cast_lightning_aoe_blast_out',0), -(4820,16565,'result_cyclone_storm',0), -(4821,16568,'cast_cyclone_storm_blast',0), -(4822,16575,'ouch_forhand',0), -(4823,16580,'community_robe_red',0), -(4824,16582,'fire_foolish',0), -(4825,16583,'guide_robe_green',0), -(4826,16589,'dance_synced',0), -(4827,16591,'result_frisbee_p2p',0), -(4828,16593,'trdskl_frisbee',0), -(4829,16596,'brew_day_mugs',0), -(4830,16601,'result_feather_smack',0), -(4831,16602,'sarnak_1h_sword_dodge_backhand',0), -(4832,16603,'sarnak_1h_sword_dodge_down',0), -(4833,16604,'sarnak_1h_sword_dodge_forehand',0), -(4834,16605,'sarnak_1h_sword_dodge_thrust',0), -(4835,16606,'sarnak_1h_sword_ouch_backhand',0), -(4836,16607,'sarnak_1h_sword_ouch_down',0), -(4837,16608,'sarnak_1h_sword_ouch_forehand',0), -(4838,16609,'sarnak_1h_sword_ouch_thrust',0), -(4839,16610,'sarnak_1h_sword_parry_backhand',0), -(4840,16611,'sarnak_1h_sword_parry_down',0), -(4841,16612,'sarnak_1h_sword_parry_forehand',0), -(4842,16613,'sarnak_1h_sword_parry_thrust',0), -(4843,16614,'sarnak_2h_sword_dodge_down',0), -(4844,16615,'sarnak_2h_sword_dodge_forehand',0), -(4845,16616,'sarnak_2h_sword_ouch_backhand',0), -(4846,16617,'sarnak_2h_sword_ouch_down',0), -(4847,16618,'sarnak_2h_sword_ouch_forehand',0), -(4848,16619,'sarnak_2h_sword_ouch_thrust',0), -(4849,16620,'sarnak_2h_sword_ouch_thust',0), -(4850,16621,'sarnak_2h_sword_parry_backhand',0), -(4851,16622,'sarnak_2h_sword_parry_down',0), -(4852,16623,'sarnak_2h_sword_parry_forehand',0), -(4853,16624,'sarnak_agree',0), -(4854,16625,'sarnak_applaude',0), -(4855,16626,'sarnak_attention',0), -(4856,16627,'sarnak_beckon',0), -(4857,16628,'sarnak_beg',0), -(4858,16629,'sarnak_boggle',0), -(4859,16630,'sarnak_bostaff_dodge_backhand',0), -(4860,16631,'sarnak_bostaff_dodge_down',0), -(4861,16632,'sarnak_bostaff_dodge_forehand',0), -(4862,16633,'sarnak_bostaff_ouch_backhand',0), -(4863,16634,'sarnak_bostaff_ouch_down',0), -(4864,16635,'sarnak_bostaff_ouch_forehand',0), -(4865,16636,'sarnak_bostaff_ouch_thrust',0), -(4866,16637,'sarnak_bostaff_parry_backhand',0), -(4867,16638,'sarnak_bostaff_parry_down',0), -(4868,16639,'sarnak_bostaff_parry_forehand',0), -(4869,16640,'sarnak_bostaff_parry_thrust',0), -(4870,16641,'sarnak_bow',0), -(4871,16642,'sarnak_brandish',0), -(4872,16643,'sarnak_bye',0), -(4873,16644,'sarnak_cackle',0), -(4874,16645,'sarnak_cheer',0), -(4875,16646,'sarnak_chuckle',0), -(4876,16647,'sarnak_confused',0), -(4877,16648,'sarnak_crazy',0), -(4878,16649,'sarnak_cringe',0), -(4879,16650,'sarnak_cry',0), -(4880,16651,'sarnak_curse',0), -(4881,16652,'sarnak_curtsey',0), -(4882,16653,'sarnak_curtsey2',0), -(4883,16654,'sarnak_cutthroat',0), -(4884,16655,'sarnak_doubletake',0), -(4885,16656,'sarnak_dual_wield_attack03',0), -(4886,16657,'sarnak_dual_wield_dodge_backhand',0), -(4887,16658,'sarnak_dual_wield_dodge_down',0), -(4888,16659,'sarnak_dual_wield_dodge_forehand',0), -(4889,16660,'sarnak_dual_wield_kick',0), -(4890,16661,'sarnak_dual_wield_ouch_backhand',0), -(4891,16662,'sarnak_dual_wield_ouch_down',0), -(4892,16663,'sarnak_dual_wield_ouch_forehand',0), -(4893,16664,'sarnak_dual_wield_parry_down',0), -(4894,16665,'sarnak_duck',0), -(4895,16666,'sarnak_fflirt',0), -(4896,16667,'sarnak_fistclapping',0), -(4897,16668,'sarnak_flex',0), -(4898,16669,'sarnak_flirt',0), -(4899,16670,'sarnak_flustered',0), -(4900,16671,'sarnak_frustration',0), -(4901,16672,'sarnak_gag',0), -(4902,16673,'sarnak_giggle',0), -(4903,16674,'sarnak_glare',0), -(4904,16675,'sarnak_grumble',0), -(4905,16676,'sarnak_happy',0), -(4906,16677,'sarnak_headslap',0), -(4907,16678,'sarnak_hearnoevil',0), -(4908,16679,'sarnak_heartattack',0), -(4909,16680,'sarnak_heelclick',0), -(4910,16681,'sarnak_hellno',0), -(4911,16682,'sarnak_hello',0), -(4912,16683,'sarnak_hourglass',0), -(4913,16684,'sarnak_howl',0), -(4914,16685,'sarnak_indigestion',0), -(4915,16686,'sarnak_itch',0), -(4916,16687,'sarnak_listen',0), -(4917,16688,'sarnak_lookaway',0), -(4918,16689,'sarnak_monk_dodge_backhand',0), -(4919,16690,'sarnak_monk_dodge_forehand',0), -(4920,16691,'sarnak_monk_ouch_backhand',0), -(4921,16692,'sarnak_monk_ouch_down',0), -(4922,16693,'sarnak_monk_ouch_forehand',0), -(4923,16694,'sarnak_monk_parry_backhand',0), -(4924,16695,'sarnak_monk_parry_down',0), -(4925,16696,'sarnak_monk_parry_forehand',0), -(4926,16697,'sarnak_moon',0), -(4927,16698,'sarnak_neener',0), -(4928,16699,'sarnak_no',0), -(4929,16700,'sarnak_nod',0), -(4930,16701,'sarnak_notworthy',0), -(4931,16702,'sarnak_orate',0), -(4932,16703,'sarnak_peer',0), -(4933,16704,'sarnak_pike_dodge_backhand',0), -(4934,16705,'sarnak_pike_dodge_down',0), -(4935,16706,'sarnak_pike_dodge_forehand',0), -(4936,16707,'sarnak_pike_dodge_thrust',0), -(4937,16708,'sarnak_pike_ouch_backhand',0), -(4938,16709,'sarnak_pike_ouch_down',0), -(4939,16710,'sarnak_pike_ouch_thrust',0), -(4940,16711,'sarnak_pike_parry_backhand',0), -(4941,16712,'sarnak_pike_parry_down',0), -(4942,16713,'sarnak_pike_parry_forehand',0), -(4943,16714,'sarnak_point',0), -(4944,16715,'sarnak_ponder',0), -(4945,16716,'sarnak_pout',0), -(4946,16717,'sarnak_pugilist_attack',0), -(4947,16718,'sarnak_pugilist_attack01',0), -(4948,16719,'sarnak_pugilist_attack02',0), -(4949,16720,'sarnak_pugilist_attack03',0), -(4950,16721,'sarnak_pugilist_dodge_backhand',0), -(4951,16722,'sarnak_pugilist_dodge_down',0), -(4952,16723,'sarnak_pugilist_kick',0), -(4953,16724,'sarnak_raisehand',0), -(4954,16725,'sarnak_royalwave',0), -(4955,16726,'sarnak_rubhands',0), -(4956,16727,'sarnak_rude',0), -(4957,16728,'sarnak_sad',0), -(4958,16729,'sarnak_salute',0), -(4959,16730,'sarnak_sarcasticclap',0), -(4960,16731,'sarnak_scold',0), -(4961,16732,'sarnak_scratch',0), -(4962,16733,'sarnak_scream',0), -(4963,16734,'sarnak_seenoevil',0), -(4964,16735,'sarnak_shakefist',0), -(4965,16736,'sarnak_shame',0), -(4966,16737,'sarnak_shimmy',0), -(4967,16738,'sarnak_shiver',0), -(4968,16739,'sarnak_shrug',0), -(4969,16740,'sarnak_sigh',0), -(4970,16741,'sarnak_smile',0), -(4971,16742,'sarnak_smirk',0), -(4972,16743,'sarnak_sneer',0), -(4973,16744,'sarnak_sneeze',0), -(4974,16745,'sarnak_snicker',0), -(4975,16746,'sarnak_sniff',0), -(4976,16747,'sarnak_speaknoevil',0), -(4977,16748,'sarnak_square',0), -(4978,16749,'sarnak_squeal',0), -(4979,16750,'sarnak_stare',0), -(4980,16751,'sarnak_stinky',0), -(4981,16752,'sarnak_stretch',0), -(4982,16753,'sarnak_sulk',0), -(4983,16754,'sarnak_swear',0), -(4984,16755,'sarnak_tantrum',0), -(4985,16756,'sarnak_tapfoot',0), -(4986,16757,'sarnak_taunt',0), -(4987,16758,'sarnak_thank',0), -(4988,16759,'sarnak_thumbs',0), -(4989,16760,'sarnak_violin',0), -(4990,16761,'sarnak_wave',0), -(4991,16762,'sarnak_whistle',0), -(4992,16763,'sarnak_whome',0), -(4993,16764,'sarnak_wince',0), -(4994,16765,'sarnak_wink',0), -(4995,16766,'sarnak_yawn',0), -(4996,16767,'sarnak_yeah',0), -(4997,16769,'trdskl_pillow',0), -(4998,16772,'cast_boomerang',0), -(4999,16778,'trdskl_boomerang',0), -(5000,16786,'snd_pillow_impact',0), -(5001,16789,'brick_throw',0), -(5002,16793,'horn_blow',0), -(5003,16801,'sound_horn',0), -(5004,16807,'design_cast_vision_shardofhate',0), -(5005,16814,'result_waterwall',0), -(5006,16821,'result_netted',0), -(5007,16823,'trdskl_net',0), -(5008,16831,'vek_beam01_blue',0), -(5009,16832,'vek_beam01_green',0), -(5010,16833,'vek_beam01_red',0), -(5011,16834,'vek_beam01_yellow',0), -(5012,16835,'vek_beam02_blue',0), -(5013,16836,'vek_beam02_green',0), -(5014,16837,'vek_beam02_red',0), -(5015,16838,'vek_beam02_yellow',0), -(5016,16839,'vek_beam03_blue',0), -(5017,16840,'vek_beam03_green',0), -(5018,16841,'vek_beam03_red',0), -(5019,16842,'vek_beam03_yellow',0), -(5020,16843,'vek_beam04_blue',0), -(5021,16844,'vek_beam04_green',0), -(5022,16845,'vek_beam04_red',0), -(5023,16846,'vek_beam04_yellow',0), -(5024,16847,'vek_map',0), -(5025,16848,'vek_mapshine',0), -(5026,16849,'vek_runes',0), -(5027,16850,'vek_sunlight',0), -(5028,16856,'fx_off',0), -(5029,16858,'knocktoback_enter',0), -(5030,16859,'knocktoback_exit',0), -(5031,16860,'knocktoback_idle',0), -(5032,16861,'result_brick_hit',0), -(5033,16863,'status_quest_guide_gives',0), -(5034,16864,'trdskl_brick',0), -(5035,16871,'result_hand_rings_shimmer',0), -(5036,16873,'snd_design_murderer',0), -(5037,16879,'design_horse_carrot',0), -(5038,16880,'design_rhino_carrot',0), -(5039,16881,'design_warg_carrot',0), -(5040,16882,'dn_goblin_beam_blue',0), -(5041,16883,'dn_goblin_beam_green',0), -(5042,16884,'dn_goblin_beam_red',0), -(5043,16885,'dn_goblin_beam_yellow',0), -(5044,16893,'void_storm',0), -(5045,16894,'void_summon_portal',0), -(5046,16900,'design_altar_chained',0), -(5047,16902,'result_blue_glow',0), -(5048,16903,'result_green_glow',0), -(5049,16904,'result_orange_glow',0), -(5050,16905,'result_purple_glow',0), -(5051,16912,'result_drake_breath',0), -(5052,16913,'result_napalm',0), -(5053,16914,'result_void_fx',0), -(5054,16917,'bear_backup',0), -(5055,16918,'bear_fall',0), -(5056,16919,'bear_idle',0), -(5057,16920,'bear_jump',0), -(5058,16921,'bear_jump_substitute',0), -(5059,16922,'bear_land',0), -(5060,16923,'bear_long_fall',0), -(5061,16924,'bear_run',0), -(5062,16925,'bear_turn_left',0), -(5063,16926,'bear_turn_right',0), -(5064,16927,'bear_walk',0), -(5065,16934,'result_blood_boil',0), -(5066,16935,'result_golem_rain',0), -(5067,16936,'result_water_ball',0), -(5068,16937,'result_water_burst',0), -(5069,16938,'result_waterspout_p2p',0), -(5070,16941,'cast_aoe_water_blast',0), -(5071,16942,'cast_barnicle_blast',0), -(5072,16948,'snd_claygolem_attack',0), -(5073,16956,'sound_attackspin',0), -(5074,16957,'sound_damagelow',0), -(5075,16958,'sound_swimwalk',0), -(5076,16959,'sound_walkbounce',0), -(5077,16960,'sound_wildswingenter',0), -(5078,16967,'persist_enrage',0), -(5079,16973,'golem_charm',0), -(5080,16974,'golem_shutdown',0), -(5081,16982,'status_quest_gives_gray',0), -(5082,16990,'trdskl_censer',0), -(5083,16996,'dusting_off',0), -(5084,17004,'snd_net_toss',0), -(5085,17011,'result_barrel_break',0), -(5086,17012,'result_brain_leaving',0), -(5087,17020,'snd_barrel_cannon',0), -(5088,17028,'sound_bookdeath',0), -(5089,17029,'sound_thunder0',0), -(5090,17035,'flock_of_seagulls',0), -(5091,17042,'mistmoore_runes_fx',0), -(5092,17043,'mistmoore_sun_fx',0), -(5093,17045,'swim_backward',0), -(5094,17046,'swim_forward',0), -(5095,17049,'cast_energy_blob',0), -(5096,17050,'cast_energy_blob_p2p',0), -(5097,17057,'result_napalm_aoe',0), -(5098,17064,'result_blood_puddle',0), -(5099,17065,'result_cold_ice_crystals_head',0), -(5100,17066,'result_ice_shackles',0), -(5101,17067,'result_icicle_impale',0), -(5102,17068,'result_snow_dust',0), -(5103,17069,'result_void_splat',0), -(5104,17072,'attack_bolts',0), -(5105,17075,'cast_sword_head',0), -(5106,17078,'result_sword_head',0), -(5107,17085,'result_steam_column',0), -(5108,17093,'sound_footsrape',0), -(5109,17094,'sound_runbreathe',0), -(5110,17101,'result_mesh_attack',0), -(5111,17106,'cast_spin_buff',0), -(5112,17109,'result_power_life_drain_p2p',0), -(5113,17115,'design_ice_door_blast',0), -(5114,17121,'design_rising_stairs_finish_fx',0), -(5115,17122,'design_rising_stairs_fx',0), -(5116,17129,'result_chomping_skulls',0), -(5117,17136,'result_pulsing_note',0), -(5118,17142,'design_ice_wall_breaking',0), -(5119,17145,'sound_ice_shatter',0), -(5120,17148,'cast_lost_souls',0), -(5121,17155,'knockeddowntoknees',0), -(5122,17156,'meditate',0), -(5123,17158,'worship',0), -(5124,17161,'cast_lasso',0), -(5125,17166,'result_cobwebs',0), -(5126,17173,'miragul_puzzle_blue_flasher',0), -(5127,17174,'miragul_puzzle_blue_runes',0), -(5128,17175,'miragul_puzzle_green_flasher',0), -(5129,17176,'miragul_puzzle_green_runes',0), -(5130,17177,'miragul_puzzle_lightning_orb',0), -(5131,17178,'miragul_puzzle_red_flasher',0), -(5132,17179,'miragul_puzzle_red_runes',0), -(5133,17180,'miragul_puzzle_spire_beams',0), -(5134,17181,'miragul_puzzle_splash_column',0), -(5135,17182,'miragul_puzzle_yellow_flasher',0), -(5136,17183,'miragul_puzzle_yellow_runes',0), -(5137,17186,'cast_barnacle_blast',0), -(5138,17193,'najena_face_lava',0), -(5139,17200,'najena_dark_rune01',0), -(5140,17201,'najena_dark_rune02',0), -(5141,17202,'najena_dark_rune03',0), -(5142,17203,'najena_dark_rune04',0), -(5143,17204,'najena_dark_rune05',0), -(5144,17205,'najena_light_rune01',0), -(5145,17206,'najena_light_rune02',0), -(5146,17207,'najena_light_rune03',0), -(5147,17208,'najena_light_rune04',0), -(5148,17209,'najena_light_rune05',0), -(5149,17210,'najena_puzzle_complete',0), -(5150,17211,'1h_dual_wield_enter',0), -(5151,17212,'1h_dual_wield_exit',0), -(5152,17219,'najena_lava_god_hands',0), -(5153,17220,'najena_lava_god_skull',0), -(5154,17221,'result_lava_column',0), -(5155,17228,'najena_lava_curtain',0), -(5156,17229,'najena_rune_key',0), -(5157,17232,'cast_heat_sphere',0), -(5158,17239,'result_dagger_back',0), -(5159,17240,'result_melee_lifetap_p2p',0), -(5160,17242,'vocal_idle',0), -(5161,17245,'cast_bone_blast_blend',0), -(5162,17248,'cast_wavy_bubble_shield',0), -(5163,17253,'cast_shield_buff',0), -(5164,17260,'result_hammer_buff',0), -(5165,17267,'result_forced_shader_hologram',0), -(5166,17274,'result_clanging_note',0), -(5167,17275,'result_forced_shader_glass',0), -(5168,17276,'result_swirling_note',0), -(5169,17279,'cast_bone_blast_notes',0), -(5170,17284,'result_notes_spiral_frenzy',0), -(5171,17286,'vek_door_beam_blue',0), -(5172,17287,'vek_door_beam_red',0), -(5173,17290,'cast_bubble_ward',0), -(5174,17291,'cast_dodge_buff',0), -(5175,17294,'cast_shout_aoe',0), -(5176,17297,'result_crush_blast',0), -(5177,17304,'result_break_chains',0), -(5178,17309,'cast_quick_shield',0), -(5179,17312,'result_spike_blast',0), -(5180,17315,'cast_bubble_ward_out',0), -(5181,17318,'cast_shield_deflect',0), -(5182,17325,'paper_scatter',0), -(5183,17333,'skull_candles_head',0), -(5184,17338,'cast_rings_aoe',0), -(5185,17344,'design_void_eyes',0), -(5186,17345,'design_void_portal',0), -(5187,17348,'vocal_combat_idle',0), -(5188,17351,'cast_melee_buff',0), -(5189,17354,'cast_speed_buff',0), -(5190,17355,'cast_wings',0), -(5191,17358,'buff_fx',0), -(5192,17361,'cast_rune_buff',0), -(5193,17362,'cast_rune_spiral_buff',0), -(5194,17365,'cast_ice_block',0), -(5195,17366,'cast_leaf_buff',0), -(5196,17367,'cast_leaf_spiral_buff',0), -(5197,17372,'result_nature_storm',0), -(5198,17375,'cast_fire_buff',0), -(5199,17376,'cast_mental_buff',0), -(5200,17381,'result_hail_storm',0), -(5201,17382,'result_poison_skulls',0), -(5202,17385,'cast_flash_rune_buff',0), -(5203,17393,'serve',0), -(5204,17399,'guk_barracks_poison',0), -(5205,17400,'guk_crystal_cleanse',0), -(5206,17401,'guk_temple_splashes_clean',0), -(5207,17402,'guk_temple_splashes_poison',0), -(5208,17403,'guk_waterfalls_poison',0), -(5209,17405,'result_slime_wall',0), -(5210,17412,'result_fly_breath',0), -(5211,17413,'result_fly_swarm',0), -(5212,17420,'result_poison_cloud_explosion',0), -(5213,17421,'result_poison_splat',0), -(5214,17422,'result_skull_attack_p2p',0), -(5215,17423,'result_troll_curse',0), -(5216,17430,'korsha_lift_blast',0), -(5217,17431,'result_object_sparkles_blue',0), -(5218,17432,'result_object_sparkles_green',0), -(5219,17433,'result_object_sparkles_red',0), -(5220,17434,'result_object_sparkles_white',0), -(5221,17441,'result_head_flames',0), -(5222,17447,'design_lamp_ignite',0), -(5223,17449,'mr_lamp_fx_01',0), -(5224,17450,'mr_lamp_fx_02',0), -(5225,17451,'mr_lamp_fx_03',0), -(5226,17452,'mr_lamp_fx_04',0), -(5227,17453,'mr_lamp_fx_05',0), -(5228,17454,'mr_lamp_fx_06',0), -(5229,17455,'mr_lamp_ignite_sound',0), -(5230,17456,'mr_lamp_sounds_finish',0), -(5231,17457,'mr_lamp_sounds_start',0), -(5232,17463,'design_result_black_out',0), -(5233,17465,'result_bat_scare',0), -(5234,17467,'whistle_toot_01',0), -(5235,17468,'whistle_toot_02',0), -(5236,17469,'whistle_toot_03',0), -(5237,17470,'whistle_toot_04',0), -(5238,17471,'whistle_toot_05',0), -(5239,17472,'whistle_toot_06',0), -(5240,17473,'whistle_toot_07',0), -(5241,17474,'whistle_toot_08',0), -(5242,17475,'whistle_toot_09',0), -(5243,17476,'whistle_toot_10',0), -(5244,17477,'whistle_toot_11',0), -(5245,17478,'whistle_toot_12',0), -(5246,17479,'whistle_toot_13',0), -(5247,17480,'whistle_toot_14',0), -(5248,17486,'eq2_music1',0), -(5249,17487,'eq2_music2',0), -(5250,17488,'frost_blast',0), -(5251,17489,'fudge_drip',0), -(5252,17490,'ice_blast_sound',0), -(5253,17491,'icecream_drip',0), -(5254,17494,'server_idle',0), -(5255,17495,'server_shutdown',0), -(5256,17496,'server_start',0), -(5257,17502,'hourglass_active',0), -(5258,17503,'hourglass_idle',0), -(5259,17509,'frosty_crown',0), -(5260,17512,'bf_lightning_gate_rm5',0), -(5261,17513,'bf_lightning_gate_rm9',0), -(5262,17516,'cast_void_portal',0), -(5263,17519,'result_crystal_trap',0), -(5264,17526,'lights_eyes',0), -(5265,17527,'lights_pumpkin',0), -(5266,17528,'result_pumpkin_smash',0), -(5267,17534,'design_fairy_pet',0), -(5268,17539,'cast_void_energy_cloud',0), -(5269,17540,'cast_void_rune_barrier',0), -(5270,17541,'cast_void_rune_circle',0), -(5271,17543,'design_fist_fireworks',0), -(5272,17545,'result_void_energy_barrier',0), -(5273,17546,'result_void_energy_blast',0), -(5274,17547,'result_void_energy_wave',0), -(5275,17550,'cast_lightning_beam_converge',0), -(5276,17551,'cast_lightning_beam_point',0), -(5277,17552,'cast_lightning_blastdown',0), -(5278,17559,'result_flesh_peel',0), -(5279,17560,'result_god_spell_anashti_sul',0), -(5280,17561,'result_god_spell_rodcet_nife',0), -(5281,17569,'vp_shissar_new',0), -(5282,17570,'vp_shissar_old',0), -(5283,17577,'result_greenmist_attack_p2p',0), -(5284,17583,'design_cannon_blast',0), -(5285,17584,'design_cannon_chargeup',0), -(5286,17585,'design_inno_cannon_fire1',0), -(5287,17586,'design_inno_cannon_fire2',0), -(5288,17589,'cast_energy_charge_up',0), -(5289,17594,'mr_chargeup_sound',0), -(5290,17595,'mr_lightning_chargeup',0), -(5291,17597,'zepplin_enter',0), -(5292,17598,'zepplin_exit',0), -(5293,17599,'zepplin_fall',0), -(5294,17600,'zepplin_idle',0), -(5295,17601,'zepplin_jump',0), -(5296,17602,'zepplin_land',0), -(5297,17603,'zepplin_run',0), -(5298,17604,'zepplin_walk',0), -(5299,17610,'idle_sound',0), -(5300,17613,'zeppelin_enter',0), -(5301,17614,'zeppelin_exit',0), -(5302,17615,'zeppelin_fall',0), -(5303,17616,'zeppelin_glide',0), -(5304,17617,'zeppelin_idle',0), -(5305,17618,'zeppelin_jump',0), -(5306,17619,'zeppelin_land',0), -(5307,17620,'zeppelin_run',0), -(5308,17621,'zeppelin_walk',0), -(5309,17622,'zepplin_glide',0), -(5310,17625,'cast_energy_blast_aoe',0), -(5311,17630,'result_energy_wave_p2p',0), -(5312,17637,'result_void_implode',0), -(5313,17639,'void_beam_sound',0), -(5314,17640,'void_door_beam',0), -(5315,17647,'persist_evil_stun',0), -(5316,17648,'result_spear_hit',0), -(5317,17650,'trdskl_spear',0), -(5318,17656,'energy_flow_sound',0), -(5319,17658,'mistmoore_energy_flow01',0), -(5320,17659,'mistmoore_energy_flow02',0), -(5321,17660,'mistmoore_energy_flow03',0), -(5322,17661,'mistmoore_energy_flow04',0), -(5323,17662,'mistmoore_energy_flow05',0), -(5324,17663,'result_lightning_cage',0), -(5325,17664,'result_rune_ethernaughts',0), -(5326,17667,'burrow',0), -(5327,17668,'burrow_sound',0), -(5328,17672,'design_chain_release',0), -(5329,17673,'design_chained',0), -(5330,17675,'mistmoore_coffin_glow',0), -(5331,17683,'void_blast_wave',0), -(5332,17686,'blast_bolt',0), -(5333,17689,'cast_speed_trail',0), -(5334,17692,'result_cyclone_bones',0), -(5335,17695,'cast_hand_slash',0), -(5336,17700,'result_hand_choke',0), -(5337,17701,'result_spike_trap',0), -(5338,17702,'result_string_trap',0), -(5339,17703,'run_sound',0), -(5340,17705,'wood_sound',0), -(5341,17713,'void_portal_sound',0), -(5342,17714,'void_summon_sound',0), -(5343,17715,'void_teleporter',0), -(5344,17723,'varsoon_portal_collapse',0), -(5345,17724,'varsoon_void_portal',0), -(5346,17731,'result_void_tether_p2p',0), -(5347,17733,'varsoon_crystal_1',0), -(5348,17734,'varsoon_crystal_2',0), -(5349,17735,'varsoon_crystal_3',0), -(5350,17741,'design_blue_sun',0), -(5351,17742,'design_red_sun',0), -(5352,17743,'design_red_sun_sound',0), -(5353,17744,'design_sun_sound',0), -(5354,17746,'result_void_crystal_p2p',0), -(5355,17748,'void_beam_blue',0), -(5356,17749,'void_beam_red',0), -(5357,17752,'cast_5',0), -(5358,17756,'design_lattice_activate',0), -(5359,17757,'design_void_energy_activate',0), -(5360,17760,'void_energy_activate_sound',0), -(5361,17761,'void_energy_sound',0), -(5362,17768,'result_blast_ring',0), -(5363,17770,'void_energy_barrier',0), -(5364,17771,'void_energy_barrier_blast',0), -(5365,17779,'void_energy_channeling_p2p',0), -(5366,17785,'design_result_cloudy_head',0), -(5367,17787,'result_dark_mist',0), -(5368,17788,'result_sparkle_mist',0), -(5369,17791,'cast_meteor_storm',0), -(5370,17796,'result_meteor_storm',0), -(5371,17797,'result_neg_flux',0), -(5372,17798,'result_neg_flux_storm',0), -(5373,17799,'result_void_explode',0), -(5374,17800,'result_void_ragestorm',0), -(5375,17801,'result_void_storm',0), -(5376,17804,'cast_manta_bolt_p2p',0), -(5377,17805,'cast_manta_tail_beam',0), -(5378,17806,'cast_manta_tail_flare',0), -(5379,17807,'cast_nether_blast',0), -(5380,17808,'cast_nether_storm',0), -(5381,17811,'cast_sucking_charge_up',0), -(5382,17814,'result_anashti_curse',0), -(5383,17815,'result_anashti_tempest',0), -(5384,17818,'anashti_summon',0), -(5385,17819,'anashti_transform',0), -(5386,17820,'anashti_vortex',0), -(5387,17823,'attack_breath_inhale',0), -(5388,17824,'attack_burst',0), -(5389,17825,'attack_dark_breath',0), -(5390,17826,'attack_wing_bolts',0), -(5391,17833,'result_misty_snare',0), -(5392,17836,'cast_arcane_blast_aoe',0), -(5393,17841,'result_melee_swipe',0), -(5394,17842,'result_melee_wild_swipe',0), -(5395,17847,'cast_sparkling_dust_aoe',0), -(5396,17854,'result_gnollslayer',0), -(5397,17855,'result_gnollslayer_burst',0), -(5398,17856,'result_skull_debuff',0), -(5399,17863,'result_quick_heal',0), -(5400,17866,'bear_tail',0), -(5401,17869,'bear_sprint',0), -(5402,17872,'bear_attack_sound',0), -(5403,17873,'bear_battlecry_sound',0), -(5404,17874,'bear_dead_sound',0), -(5405,17875,'bear_deadfall_sound',0), -(5406,17876,'bear_headshake_sound',0), -(5407,17877,'bear_idle_sound',0), -(5408,17878,'bear_idle_sound_omit',0), -(5409,17879,'bear_ouch_sound',0), -(5410,17880,'bear_sniff_sound',0), -(5411,17886,'fae_dark_bear_backup',0), -(5412,17887,'fae_dark_bear_idle',0), -(5413,17888,'fae_dark_bear_jump',0), -(5414,17889,'fae_dark_bear_jump_substitute',0), -(5415,17890,'fae_dark_bear_run',0), -(5416,17891,'fae_dark_bear_sprint',0), -(5417,17892,'fae_dark_bear_turn_left',0), -(5418,17893,'fae_dark_bear_turn_right',0), -(5419,17894,'fae_dark_bear_walk',0), -(5420,17895,'fae_light_bear_backup',0), -(5421,17896,'fae_light_bear_idle',0), -(5422,17897,'fae_light_bear_jump',0), -(5423,17898,'fae_light_bear_jump_substitute',0), -(5424,17899,'fae_light_bear_run',0), -(5425,17900,'fae_light_bear_sprint',0), -(5426,17901,'fae_light_bear_turn_left',0), -(5427,17902,'fae_light_bear_turn_right',0), -(5428,17903,'fae_light_bear_walk',0), -(5429,17904,'froglok_bear_backup',0), -(5430,17905,'froglok_bear_idle',0), -(5431,17906,'froglok_bear_jump',0), -(5432,17907,'froglok_bear_jump_substitute',0), -(5433,17908,'froglok_bear_run',0), -(5434,17909,'froglok_bear_sprint',0), -(5435,17910,'froglok_bear_turn_left',0), -(5436,17911,'froglok_bear_turn_right',0), -(5437,17912,'froglok_bear_walk',0), -(5438,17918,'footstep_sound',0), -(5439,17925,'result_fireworks_flower',0), -(5440,17926,'result_fireworks_foamy_burst',0), -(5441,17927,'result_fireworks_rainbow',0), -(5442,17929,'tiered_blast_cone',0), -(5443,17930,'tiered_blood_lust',0), -(5444,17931,'tiered_crush_blast',0), -(5445,17932,'tiered_cyclone',0), -(5446,17933,'tiered_defensive_buff',0), -(5447,17934,'tiered_dustpuff_rfoot',0), -(5448,17935,'tiered_flash_weapon',0), -(5449,17936,'tiered_glow_distort',0), -(5450,17937,'tiered_motion_lines',0), -(5451,17938,'tiered_motion_lines_sub',0), -(5452,17939,'tiered_offensive_buff',0), -(5453,17940,'tiered_shout',0), -(5454,17941,'tiered_sparkle_trail_weapon',0), -(5455,17942,'tiered_sparks_hit',0), -(5456,17943,'tiered_taunt',0), -(5457,17944,'tiered_weapon_trail_fire',0), -(5458,17950,'gathering_end',0), -(5459,17951,'gathering_loop',0), -(5460,17952,'gathering_start',0), -(5461,17953,'idle_afraid',0), -(5462,17954,'idle_angry',0), -(5463,17957,'bearwalk',0), -(5464,17963,'tiered_blast_hit',0), -(5465,17964,'tiered_flash',0), -(5466,17965,'tiered_melee_swipe',0), -(5467,17966,'tiered_shield',0), -(5468,17967,'tiered_slash_hit',0), -(5469,17975,'tiered_shield_blast',0), -(5470,17976,'tiered_slow',0), -(5471,17982,'design_powerarray_electric',0), -(5472,17983,'design_powerarray_void',0), -(5473,17984,'gathering_enter',0), -(5474,17985,'gathering_exit',0), -(5475,17988,'attack_disarm',0), -(5476,17992,'design_ice_fan_side',0), -(5477,17993,'design_ice_fan_up',0), -(5478,17994,'design_najena_barrier',0), -(5479,17997,'sound_attack_disarm',0), -(5480,17998,'sound_fan_start',0), -(5481,17999,'sound_wind_blast',0), -(5482,18000,'tiered_rune_buff',0), -(5483,18006,'electric_fx',0), -(5484,18008,'particle_mood_idle',0), -(5485,18010,'sound_buff_electric',0), -(5486,18011,'sound_buff_void',0), -(5487,18012,'void_fx',0), -(5488,18018,'design_najena_electric_water',0), -(5489,18020,'result_dragon_breath_p2p',0), -(5490,18021,'result_electric_beam_p2p',0), -(5491,18022,'result_void_beam_p2p',0), -(5492,18028,'design_najena_fire',0), -(5493,18029,'design_najena_lightning',0), -(5494,18030,'design_najena_poison',0), -(5495,18031,'design_najena_portals',0), -(5496,18032,'design_najena_snow',0), -(5497,18033,'design_najena_water',0), -(5498,18039,'elemental_fire_hands',0), -(5499,18040,'fire_summon_portal',0), -(5500,18043,'sound_fire_vortex',0), -(5501,18046,'badger_buff',0), -(5502,18051,'mushroom_buff',0), -(5503,18053,'snake_buff',0), -(5504,18056,'cast_lava_shield',0), -(5505,18061,'result_rock_blast_wave',0), -(5506,18063,'summon_fx',0), -(5507,18064,'transform_fx',0), -(5508,18072,'tiered_anger_buff',0), -(5509,18073,'tiered_hand_buff',0), -(5510,18079,'design_fire_wall',0), -(5511,18080,'design_fire_wall_opening',0), -(5512,18081,'design_rock_wall',0), -(5513,18082,'design_rock_wall_breaking',0), -(5514,18085,'aoe_ice_blast',0), -(5515,18086,'aoe_rock_blast',0), -(5516,18087,'cast_air_charge',0), -(5517,18088,'cast_earth_charge',0), -(5518,18089,'cast_fire_charge',0), -(5519,18090,'cast_ice_blast_out',0), -(5520,18091,'cast_ice_column',0), -(5521,18094,'cast_water_charge',0), -(5522,18101,'persist_book_dervish',0), -(5523,18107,'design_elemental_wall',0), -(5524,18108,'design_elemental_wall_breaking',0), -(5525,18111,'sound_electric',0), -(5526,18112,'sound_rock_breaking',0), -(5527,18113,'tiered_bubble_pop',0), -(5528,18114,'tiered_power_gather',0), -(5529,18115,'tiered_quick_heal',0), -(5530,18116,'tiered_rune_in_buff',0), -(5531,18117,'tiered_rune_out_buff',0), -(5532,18118,'tiered_speed',0), -(5533,18119,'tiered_spikes_hit',0), -(5534,18120,'tiered_stifle',0), -(5535,18128,'tiered_defense_buff',0), -(5536,18136,'tiered_bubble_shield',0), -(5537,18137,'tiered_offense_buff',0), -(5538,18138,'tiered_root',0), -(5539,18146,'tiered_charge_up',0), -(5540,18154,'tiered_bubble_shield_in',0), -(5541,18155,'tiered_evil_rune_base',0), -(5542,18156,'tiered_good_rune_base',0), -(5543,18157,'tiered_skull_lifetap',0), -(5544,18165,'tiered_boiling_circle',0), -(5545,18173,'tiered_cloud_blast',0), -(5546,18174,'tiered_diseased',0), -(5547,18175,'tiered_grip_blast',0), -(5548,18183,'tiered_flash_vanish',0), -(5549,18184,'tiered_rune_base',0), -(5550,18185,'tiered_sparkle_cling',0), -(5551,18193,'tiered_dark_mist',0), -(5552,18194,'tiered_mana_drain_p2p',0), -(5553,18200,'design_electric_barrier_round',0), -(5554,18201,'design_fire_barrier_round',0), -(5555,18202,'design_poison_barrier_round',0), -(5556,18203,'design_snow_barrier_round',0), -(5557,18204,'design_water_barrier_round',0), -(5558,18207,'tiered_lost_souls',0), -(5559,18215,'tiered_rock_shield',0), -(5560,18216,'tiered_stance_base',0), -(5561,18217,'waist_tracking_off_trigger',0), -(5562,18224,'result_forced_shader_soot',0), -(5563,18226,'tiered_energy_blob_p2p',0), -(5564,18227,'tiered_heal_hands_blast',0), -(5565,18228,'tiered_healing_rays',0), -(5566,18236,'tiered_blessed_hand',0), -(5567,18237,'tiered_castigate',0), -(5568,18238,'tiered_sparkle_swirl',0), -(5569,18244,'design_void_barrier',0), -(5570,18252,'tiered_defense_buff_brawler',0), -(5571,18260,'tiered_feet_buff',0), -(5572,18261,'tiered_feet_sparks',0), -(5573,18262,'tiered_flame_burst',0), -(5574,18263,'tiered_frenzy',0), -(5575,18264,'tiered_hand_sparks',0), -(5576,18265,'tiered_offense_buff_brawler',0), -(5577,18266,'tiered_rune_buff_brawler',0), -(5578,18267,'tiered_sparkle_scan_up',0), -(5579,18275,'tiered_balance_buff_brawler',0), -(5580,18276,'tiered_focus_spark',0), -(5581,18277,'tiered_second_skin',0), -(5582,18278,'tiered_sonic_punch',0), -(5583,18279,'tiered_wavy_shield_out',0), -(5584,18287,'snd_ape',0), -(5585,18288,'snd_bear_roar',0), -(5586,18289,'snd_hawk_scream',0), -(5587,18290,'snd_monkey',0), -(5588,18291,'snd_owl_hoot',0), -(5589,18297,'design_fae_drake_pet',0), -(5590,18300,'snd_wave_crash',0), -(5591,18301,'tiered_mountain',0), -(5592,18302,'tiered_phoenix_blast',0), -(5593,18303,'tiered_plasma_burst',0), -(5594,18304,'tiered_water_burst',0), -(5595,18312,'tiered_dragon_breath',0), -(5596,18313,'tiered_fear_skulls',0), -(5597,18314,'tiered_hand_flare',0), -(5598,18315,'tiered_heart_beat',0), -(5599,18321,'design_dark_rez',0), -(5600,18322,'design_void_dome',0), -(5601,18323,'heal_lifetap_p2p',0), -(5602,18324,'iksar_ghost_rez_p2p',0), -(5603,18327,'tiered_skull',0), -(5604,18333,'design_gas_fire_blast',0), -(5605,18334,'design_gas_fire_warning',0), -(5606,18336,'result_void_fx_alt',0), -(5607,18342,'design_boiling_energy_blast',0), -(5608,18343,'design_boiling_energy_warning',0), -(5609,18346,'sound_electric_burst',0), -(5610,18349,'cast_boiling_energy',0), -(5611,18353,'design_gas_fire_blast_up',0), -(5612,18354,'design_gas_fire_warning_up',0), -(5613,18355,'design_void_dome_blue',0), -(5614,18356,'design_void_dome_red',0), -(5615,18363,'result_arc_tether_p2p',0), -(5616,18364,'result_rose_petals',0), -(5617,18372,'tiered_plasma_hit',0), -(5618,18375,'cast_back_rune_wheel',0), -(5619,18376,'cast_base_rune_wheel',0), -(5620,18377,'cast_forward_rune_wheel',0), -(5621,18383,'tiered_agility_buff',0), -(5622,18384,'tiered_charge_weapon',0), -(5623,18385,'tiered_energy_beam_p2p',0), -(5624,18386,'tiered_fire_slam',0), -(5625,18387,'tiered_fire_tube',0), -(5626,18388,'tiered_hand_rings',0), -(5627,18389,'tiered_head_ring',0), -(5628,18390,'tiered_intellect_buff',0), -(5629,18391,'tiered_rays_out',0), -(5630,18392,'tiered_rune_drop_base',0), -(5631,18393,'tiered_rune_forward',0), -(5632,18394,'tiered_rune_rise_base',0), -(5633,18395,'tiered_rune_rise_buff',0), -(5634,18396,'tiered_rune_root',0), -(5635,18397,'tiered_rune_swirl',0), -(5636,18398,'tiered_self_lifetap',0), -(5637,18399,'tiered_stamina_buff',0), -(5638,18400,'tiered_strength_buff',0), -(5639,18401,'tiered_weapon_buff_charge',0), -(5640,18402,'tiered_wisdom_buff',0), -(5641,18410,'tiered_blast_circle',0), -(5642,18411,'tiered_chain_root',0), -(5643,18412,'tiered_cold_blast',0), -(5644,18413,'tiered_column_blast_circle',0), -(5645,18414,'tiered_fire_column',0), -(5646,18415,'tiered_fireball_p2p',0), -(5647,18416,'tiered_frostball_p2p',0), -(5648,18417,'tiered_glacial_wall',0), -(5649,18418,'tiered_hand_runes',0), -(5650,18419,'tiered_ice_root',0), -(5651,18420,'tiered_icicle_blast_p2p',0), -(5652,18421,'tiered_particle_transfer_p2p',0), -(5653,18422,'tiered_rune_chain_swirl',0), -(5654,18423,'tiered_windy_tube_p2p',0), -(5655,18431,'tiered_blast_cone_forward',0), -(5656,18432,'tiered_cold_fusion',0), -(5657,18433,'tiered_dots_explode',0), -(5658,18434,'tiered_forced_shader_burst',0), -(5659,18435,'tiered_frosty_swirls',0), -(5660,18436,'tiered_magic_waves',0), -(5661,18437,'tiered_ring_blast_p2p',0), -(5662,18440,'cast_enchanter_wheel_back',0), -(5663,18441,'cast_enchanter_wheel_base',0), -(5664,18442,'cast_enchanter_wheel_forward',0), -(5665,18445,'cast_summoner_wheel_back',0), -(5666,18446,'cast_summoner_wheel_base',0), -(5667,18447,'cast_summoner_wheel_forward',0), -(5668,18451,'tiered_poisonball_p2p',0), -(5669,18452,'tiered_poisoned',0), -(5670,18453,'tiered_rune_spikes_swirl',0), -(5671,18454,'tiered_spikes_root',0), -(5672,18462,'tiered_column_poison_blast',0), -(5673,18463,'tiered_hand_evil_runes',0), -(5674,18464,'tiered_poison_breath',0), -(5675,18467,'cast_hand_energy_artifact',0), -(5676,18471,'design_hand_energy_artifact',0), -(5677,18473,'result_sparkles_crackle_out',0), -(5678,18474,'result_wings_grow',0), -(5679,18476,'tiered_power_drain_p2p',0), -(5680,18479,'cast_flash_jump_attack',0), -(5681,18484,'result_forced_shader_rock_blue',0), -(5682,18485,'result_forced_shader_rock_green',0), -(5683,18486,'result_forced_shader_rock_purple',0), -(5684,18487,'result_forced_shader_rock_yellow',0), -(5685,18488,'result_iksar_statue_beam_p2p',0), -(5686,18489,'result_root_magic',0), -(5687,18490,'result_stifle_magic',0), -(5688,18497,'result_shackles_void',0), -(5689,18503,'design_bixie_pet',0), -(5690,18504,'design_bones_shockwave',0), -(5691,18505,'design_void_shield',0), -(5692,18508,'cast_column_blast_circle',0), -(5693,18509,'cast_goo_bubble_bursting',0), -(5694,18512,'cast_raise_dead_column',0), -(5695,18515,'result_bone_cyclone',0), -(5696,18516,'result_cold_blast_snow',0), -(5697,18517,'result_flame_burst',0), -(5698,18518,'result_gloop_root',0), -(5699,18525,'result_boot_kick',0), -(5700,18526,'result_sonic_trail',0), -(5701,18532,'design_barrier_void',0), -(5702,18533,'design_er_light_beam_p2p',0), -(5703,18534,'design_er_target_cube',0), -(5704,18540,'design_erudin_column_fx',0), -(5705,18541,'design_shield_drop',0), -(5706,18544,'sound_electrified',0), -(5707,18545,'sound_shield_drop',0), -(5708,18548,'attack_eye_beams',0), -(5709,18551,'charge_mouth_fx',0), -(5710,18553,'design_gazer_eye_beam_p2p',0), -(5711,18554,'fx_eye_beam1',0), -(5712,18555,'fx_eye_beam2',0), -(5713,18556,'fx_eye_beam3',0), -(5714,18557,'fx_eye_beam4',0), -(5715,18558,'fx_eye_beam5',0), -(5716,18559,'fx_eye_charge',0), -(5717,18561,'result_disintegrate',0), -(5718,18563,'sound_charge',0), -(5719,18564,'sound_charge_blast',0), -(5720,18570,'design_erudin_wind_boost',0), -(5721,18571,'design_rocket_pack',0), -(5722,18574,'wind_blast_sound',0), -(5723,18577,'attack_eye_ring',0), -(5724,18581,'design_erudin_column_charge',0), -(5725,18582,'design_gazer_main_eye_beam_p2p',0), -(5726,18584,'result_melt',0), -(5727,18586,'sit',0), -(5728,18587,'sit_to_idle',0), -(5729,18593,'design_erudin_gazer_barrier',0), -(5730,18595,'power_on',0), -(5731,18601,'design_erudin_gun_plugged',0), -(5732,18602,'design_erudin_gun_unplugged',0), -(5733,18603,'habitat01',0), -(5734,18604,'habitat02',0), -(5735,18605,'habitat03',0), -(5736,18606,'idle01_stone',0), -(5737,18607,'idle_stone',0), -(5738,18609,'scarecrow_post_idle',0), -(5739,18611,'shield_bash',0), -(5740,18617,'design_bat_pet',0), -(5741,18619,'result_bubble_glow',0), -(5742,18620,'result_leaf_blow_glow',0), -(5743,18627,'result_splat_add',0), -(5744,18632,'cast_summon',0), -(5745,18634,'design_guardian_wisp_summon_p2p',0), -(5746,18636,'result_buble_leaf_blast',0), -(5747,18642,'design_eru_book_cyclone',0), -(5748,18643,'design_eru_book_ramp',0), -(5749,18649,'design_erudin_teleport_good',0), -(5750,18650,'design_erudin_teleport_trap',0), -(5751,18652,'result_teleport_ring_vanish',0), -(5752,18654,'tiered_unyielding_will',0), -(5753,18662,'tiered_black_hole',0), -(5754,18670,'sound_bark',0), -(5755,18671,'sound_combat_idle',0), -(5756,18672,'sound_dead_fall',0), -(5757,18673,'sound_death_whimper',0), -(5758,18674,'sound_pant',0), -(5759,18675,'sound_sniff',0), -(5760,18681,'design_icy_barrier',0), -(5761,18683,'result_teleport_icy_vanish',0), -(5762,18691,'tiered_acid_storm',0), -(5763,18692,'tiered_bone_cage',0), -(5764,18693,'tiered_dark_cyclone',0), -(5765,18694,'tiered_rift',0), -(5766,18695,'tiered_skull_summon',0), -(5767,18696,'tiered_skull_swirls',0), -(5768,18703,'rain_of_shinies',0), -(5769,18706,'cast_gathering_charge_up',0), -(5770,18711,'result_charge_tag',0), -(5771,18712,'result_nuke_blast',0), -(5772,18713,'result_pillar_blast',0), -(5773,18714,'result_pillar_slam',0), -(5774,18715,'result_precharge_blast',0), -(5775,18721,'design_book_shield1',0), -(5776,18722,'design_book_shield2',0), -(5777,18723,'design_book_shield3',0), -(5778,18724,'design_book_summon1',0), -(5779,18725,'design_book_summon2',0), -(5780,18726,'design_book_summon3',0), -(5781,18729,'badge_acquired',0), -(5782,18733,'cooked/characters/ec/core/mounts/pegasus/pegasus_glide.anim',0), -(5783,18734,'design_claw_face',0), -(5784,18736,'pegasus_glide',0), -(5785,18737,'pegasus_idle',0), -(5786,18738,'pegasus_run',0), -(5787,18739,'pegasus_walk',0), -(5788,18741,'sound_vortex',0), -(5789,18746,'coin_drop_snd',0), -(5790,18748,'design_coin_drop',0), -(5791,18754,'design_air_portal',0), -(5792,18755,'design_fear_portal',0), -(5793,18756,'design_growth_portal',0), -(5794,18757,'design_water_portal',0), -(5795,18763,'design_clouds_parting',0), -(5796,18764,'design_summon',0), -(5797,18765,'design_unsummon',0), -(5798,18771,'design_death_beam_p2p',0), -(5799,18772,'design_statue_death_beam_p2p',0), -(5800,18773,'design_statue_power',0), -(5801,18774,'design_zapper_bolt_p2p',0), -(5802,18781,'result_forced_shader_shadow',0), -(5803,18782,'result_ghost_trap',0), -(5804,18788,'cooked/characters/ec/core/mounts/pegasus/pegasus_run.anim',0), -(5805,18789,'design_coffin_explode',0), -(5806,18790,'design_coffin_lid',0), -(5807,18791,'design_erollisi_essence',0), -(5808,18792,'design_erollisi_evil_essence',0), -(5809,18793,'design_light_rays',0), -(5810,18795,'pegasus_fly',0), -(5811,18798,'cast_enter',0), -(5812,18799,'cast_exit',0), -(5813,18800,'cast_idle',0), -(5814,18806,'design_marr_godly_light',0), -(5815,18807,'design_marr_godly_teleport',0), -(5816,18809,'result_sparkles_cling_drop_bounce',0), -(5817,18815,'design_flaming_pumpkin_p2p',0), -(5818,18818,'snd_splat',0), -(5819,18819,'trdskl_flaming_pumpkin',0), -(5820,18826,'result_cold_summon_portal',0), -(5821,18827,'result_teleport_blast_up',0), -(5822,18828,'result_teleport_fold',0), -(5823,18830,'sound_attack_grunt',0), -(5824,18831,'sound_attack_stab',0), -(5825,18832,'sound_attack_vo',0), -(5826,18833,'sound_attack_vo_01',0), -(5827,18834,'sound_attack_whip_high',0), -(5828,18835,'sound_attack_whip_low',0), -(5829,18836,'sound_attack_whip_low_01',0), -(5830,18837,'sound_attack_whirl',0), -(5831,18838,'sound_cast_enter_bodynoise_01',0), -(5832,18839,'sound_cast_enter_bodynoise_02',0), -(5833,18840,'sound_cast_enter_roar',0), -(5834,18841,'sound_cast_exit_roar',0), -(5835,18842,'sound_cast_exit_spring',0), -(5836,18843,'sound_cast_idle',0), -(5837,18844,'sound_combat_art_buff_bodynoise_01',0), -(5838,18845,'sound_combat_art_buff_bodynoise_02',0), -(5839,18846,'sound_combat_art_buff_roar',0), -(5840,18847,'sound_footstep_deep',0), -(5841,18848,'sound_footstep_small',0), -(5842,18849,'sound_idle_bodynoise',0), -(5843,18850,'sound_idle_breath',0), -(5844,18851,'sound_idle_breath_01',0), -(5845,18852,'sound_rockbody',0), -(5846,18853,'sound_roperbodynoise_quick',0), -(5847,18854,'sound_roperbodynoise_slow',0), -(5848,18857,'cast_ice_pulse',0), -(5849,18858,'cast_icicle_spin_blast',0), -(5850,18863,'result_icicle_hit',0), -(5851,18866,'attack_head_butt',0), -(5852,18867,'attack_trample',0), -(5853,18874,'result_lightning_bolt_blast',0), -(5854,18875,'result_mana_drain_p2p',0), -(5855,18876,'result_rainy_black_cloud',0), -(5856,18877,'result_spikes_hit',0), -(5857,18882,'cast_stomp_blast_aoe',0), -(5858,18885,'result_banish',0), -(5859,18886,'result_banish_wisps_p2p',0), -(5860,18887,'result_icicle_storm',0), -(5861,18893,'design_ice_chains',0), -(5862,18895,'screech_attack',0), -(5863,18897,'sound_head_butt',0), -(5864,18903,'design_bone_barrier',0), -(5865,18905,'result_fireworks_shinies',0), -(5866,18908,'cannon_blast',0), -(5867,18913,'kneel_enter',0), -(5868,18914,'kneel_exit',0), -(5869,18915,'kneel_idle',0), -(5870,18916,'result_octopus_cannon_p2p',0), -(5871,18917,'result_octopus_splat_grab',0), -(5872,18923,'design_vd_bone_swirls',0), -(5873,18924,'design_vd_portal',0), -(5874,18925,'design_void_tainted',0), -(5875,18926,'flight_path_dawn',0), -(5876,18933,'result_plasma_bolt_p2p',0), -(5877,18938,'cast_sea_dragon_breath',0), -(5878,18939,'cast_sea_dragon_inhale',0), -(5879,18940,'cast_sea_dragon_powerup',0), -(5880,18942,'converse01',0), -(5881,18943,'converse02',0), -(5882,18945,'panda_chi',0), -(5883,18947,'sit_eat',0), -(5884,18948,'yells_charge',0), -(5885,18954,'hover_idle',0), -(5886,18960,'design_hedge_marker',0), -(5887,18961,'design_sol_lock_symbol',0), -(5888,18962,'h_sword_attack',0), -(5889,18964,'panda_dance01',0), -(5890,18965,'panda_dance02',0), -(5891,18966,'result_sea_dragon_buff_aoe',0), -(5892,18972,'design_marr_sword_blast',0), -(5893,18973,'design_vision_plane_spires',0), -(5894,18979,'design_sol_chapel_debris',0), -(5895,18985,'design_hole_pillar_corruption',0), -(5896,18991,'design_sol_coffin_body_fx',0), -(5897,18997,'design_spider_face',0), -(5898,19003,'design_vd_shrine_blast',0), -(5899,19009,'design_hole_summon_circle1',0), -(5900,19010,'design_hole_summon_circle2',0), -(5901,19011,'design_hole_summon_circle3',0), -(5902,19012,'design_hole_summon_circle4',0), -(5903,19013,'design_hole_summon_circles',0), -(5904,19020,'result_fireworks_rose_petals',0), -(5905,19028,'sound_glass_break',0), -(5906,19034,'design_fire_lit',0), -(5907,19035,'design_rhand_sparkles_out',0), -(5908,19036,'design_rhand_stars_out',0), -(5909,19037,'design_rune_fire_lit',0), -(5910,19040,'sit_fish',0), -(5911,19043,'cast_god_blast',0), -(5912,19047,'eat_bread',0), -(5913,19048,'eat_fish',0), -(5914,19051,'cast_magic_portal',0), -(5915,19056,'result_fireworks_snowflakes',0), -(5916,19057,'result_snowflakes_falling',0), -(5917,19063,'design_furnace_fire_blast',0), -(5918,19064,'design_golden_fire_lit',0), -(5919,19070,'design_personal_void_vortex',0), -(5920,19073,'cast_icy_division',0), -(5921,19079,'design_fire_elemental_smoke_blast',0), -(5922,19080,'design_hole_furnace_charge',0), -(5923,19081,'design_hole_furnace_essence',0), -(5924,19087,'design_crossed_swords',0), -(5925,19088,'design_feet_trail_clockwork',0), -(5926,19089,'design_feet_trail_confusion',0), -(5927,19090,'design_feet_trail_rose_petals',0), -(5928,19091,'design_feet_trail_shamrocks',0), -(5929,19092,'design_feet_trail_skulls',0), -(5930,19093,'design_feet_trail_snow',0), -(5931,19098,'cast_water_shield',0), -(5932,19101,'result_diseased',0), -(5933,19102,'result_stew_pot_dump',0), -(5934,19108,'converse03',0), -(5935,19114,'design_vd_shrine_bridge',0), -(5936,19115,'design_vd_shrine_dome',0), -(5937,19121,'dust_fx',0), -(5938,19124,'cast_medusa_snake_attack_aoe',0), -(5939,19125,'cast_medusa_snake_attack_p2p',0), -(5940,19126,'cast_medusa_snake_buff',0), -(5941,19130,'fly_from_roost',0), -(5942,19132,'result_medusa_snake_strike',0), -(5943,19134,'untrained_enter',0), -(5944,19137,'cast_lost_souls_rising',0), -(5945,19138,'cast_poison_column_blast',0), -(5946,19141,'cast_stone_gaze',0), -(5947,19144,'result_eel_spit_p2p',0), -(5948,19145,'result_medusa_snake_attack_p2p',0), -(5949,19146,'result_poisoned',0), -(5950,19152,'design_eru_light_bridge',0), -(5951,19153,'design_vd_shrine_bridge1',0), -(5952,19154,'design_vd_shrine_bridge2',0), -(5953,19157,'cast_poison_daggers',0), -(5954,19162,'result_amputation',0), -(5955,19163,'result_amputation_blast',0), -(5956,19165,'trdskl_bow',0), -(5957,19172,'result_dark_wings',0), -(5958,19178,'dw_attack_enter',0), -(5959,19179,'dw_attack_exit',0), -(5960,19180,'dw_attack_hold',0), -(5961,19181,'fly_away',0), -(5962,19183,'result_fist_rain',0), -(5963,19191,'smoke_fx',0), -(5964,19199,'trdskl_firefly_escape',0), -(5965,19200,'trdskl_firefly_jar',0), -(5966,19205,'cast_watching',0), -(5967,19208,'result_bullseye',0), -(5968,19213,'cast_weapon_chargeup',0), -(5969,19214,'cast_weapon_glint_point',0), -(5970,19215,'cast_weapon_shudder',0), -(5971,19221,'dual_wield_idle01',0), -(5972,19222,'habitat04',0), -(5973,19228,'design_boulder_roll',0), -(5974,19229,'design_boulder_shatter',0), -(5975,19230,'design_vd_teleport_fx',0), -(5976,19237,'quick_summon_fx',0), -(5977,19245,'smoke_fx_short',0), -(5978,19248,'cast_ghostly_vanish',0), -(5979,19253,'result_ghostly_possession_p2p',0), -(5980,19255,'sound_big_footstep',0), -(5981,19256,'sound_roehn_theer_cast_roar',0), -(5982,19257,'sound_roehn_theer_cast_roar_1',0), -(5983,19258,'sound_roehn_theer_combat_art_buff_roar',0), -(5984,19259,'sound_roehn_theer_combat_idle_wings',0), -(5985,19260,'sound_roehn_theer_death_roar',0), -(5986,19261,'sound_roehn_theer_dodge_grunt',0), -(5987,19262,'sound_roehn_theer_footstep_deep',0), -(5988,19263,'sound_roehn_theer_footstep_light',0), -(5989,19264,'sound_roehn_theer_grunt_quick',0), -(5990,19265,'sound_roehn_theer_hit',0), -(5991,19266,'sound_roehn_theer_idle_04_knuckles',0), -(5992,19267,'sound_roehn_theer_idle_hiss',0), -(5993,19268,'sound_roehn_theer_idle_hiss_light',0), -(5994,19269,'sound_roehn_theer_ouch',0), -(5995,19270,'sound_roehn_theer_sheath',0), -(5996,19271,'sound_roehn_theer_shield_shove_grunt',0), -(5997,19272,'sound_roehn_theer_sit_wings_short',0), -(5998,19273,'sound_roehn_theer_stomp',0), -(5999,19274,'sound_roehn_theer_swim_idle',0), -(6000,19275,'sound_roehn_theer_sword_attack_grunt',0), -(6001,19276,'sound_roehn_theer_sword_attack_grunt_quick',0), -(6002,19277,'sound_roehn_theer_sword_swoosh',0), -(6003,19278,'sound_roehn_theer_tail_whoosh',0), -(6004,19279,'sound_roehn_theer_tail_whoosh_deep',0), -(6005,19280,'sound_roehn_theer_unsheath',0), -(6006,19281,'sound_roehn_theer_wings',0), -(6007,19282,'sound_roehn_theer_wings_1',0), -(6008,19289,'mage_combo_trigger',0), -(6009,19290,'result_blast_hit',0), -(6010,19291,'result_mesh_blast',0), -(6011,19292,'result_skull_lifetap',0), -(6012,19295,'cast_crackling_rift_summon',0), -(6013,19300,'scout_combo_trigger',0), -(6014,19302,'sound_attack_grunt_small',0), -(6015,19303,'sound_combat_enter_pop',0), -(6016,19304,'sound_combat_enter_vox',0), -(6017,19305,'sound_combat_enter_woodbreak',0), -(6018,19306,'sound_dodge_down',0), -(6019,19307,'sound_reverberant_bang',0), -(6020,19308,'sound_whip_hit',0), -(6021,19309,'swim',0), -(6022,19315,'design_eru_lightning_barrier',0), -(6023,19316,'design_eru_water_barrier',0), -(6024,19322,'design_eru_ring_boundary',0), -(6025,19324,'result_eru_tether_p2p',0), -(6026,19330,'design_eru_alcove_broken',0), -(6027,19331,'design_eru_alcove_working',0), -(6028,19332,'design_eru_platform_discharge',0), -(6029,19333,'design_eru_platform_summon',0), -(6030,19338,'cast_wand_fizzle',0), -(6031,19341,'result_lightning_cage_blast',0), -(6032,19342,'result_wand_lightning_bolts_p2p',0), -(6033,19350,'sound_big_wings',0), -(6034,19351,'sound_toxxulia_attack_roar',0), -(6035,19352,'sound_toxxulia_bark',0), -(6036,19353,'sound_toxxulia_big_footsteps',0), -(6037,19354,'sound_toxxulia_cast_roar',0), -(6038,19355,'sound_toxxulia_feet_nails',0), -(6039,19356,'sound_toxxulia_growl',0), -(6040,19357,'sound_toxxulia_grunt',0), -(6041,19358,'sound_toxxulia_hiss',0), -(6042,19359,'sound_toxxulia_hiss_quiet',0), -(6043,19360,'sound_toxxulia_idle_wing_movement_short',0), -(6044,19361,'sound_toxxulia_ouch_hit',0), -(6045,19362,'sound_toxxulia_scrape',0), -(6046,19363,'sound_toxxulia_swallow_crunch_close',0), -(6047,19364,'sound_toxxulia_swallow_crunch_open',0), -(6048,19365,'sound_toxxulia_swallow_roar',0), -(6049,19366,'sound_toxxulia_swallow_slop',0), -(6050,19367,'sound_toxxulia_swim',0), -(6051,19368,'sound_toxxulia_tail_drop',0), -(6052,19369,'sound_toxxulia_walk',0), -(6053,19370,'sound_toxxulia_whip',0), -(6054,19371,'sound_toxxulia_whip_light',0), -(6055,19372,'sound_toxxulia_wing_movement',0), -(6056,19373,'sound_toxxulia_wings_flapping',0), -(6057,19381,'tiered_confused',0), -(6058,19382,'tiered_doppleganger_p2p',0), -(6059,19383,'tiered_entranced',0), -(6060,19384,'tiered_forced_shader_prism',0), -(6061,19385,'tiered_glow_eyes',0), -(6062,19386,'tiered_hand_crescent',0), -(6063,19387,'tiered_hand_prism',0), -(6064,19388,'tiered_mage_cure',0), -(6065,19389,'tiered_mage_ring_cure',0), -(6066,19390,'tiered_mental_blast',0), -(6067,19391,'tiered_mental_damage',0), -(6068,19392,'tiered_prism_eyes',0), -(6069,19393,'tiered_prism_rain',0), -(6070,19394,'tiered_prism_rays',0), -(6071,19395,'tiered_prismatic_summon',0), -(6072,19396,'tiered_runed_shield',0), -(6073,19397,'tiered_spin_stat_buff',0), -(6074,19398,'tiered_vanish_reappear',0), -(6075,19406,'tiered_mind_rings',0), -(6076,19407,'tiered_stunned',0), -(6077,19415,'tiered_mind_blast',0), -(6078,19416,'tiered_prism_cling',0), -(6079,19424,'tiered_crystal_summon',0), -(6080,19425,'tiered_magic_summon',0), -(6081,19426,'tiered_power_transfer_p2p',0), -(6082,19427,'tiered_sucking_tube_p2p',0), -(6083,19435,'tiered_bat_attack_p2p',0), -(6084,19436,'tiered_crystal_blast',0), -(6085,19437,'tiered_crystal_p2p',0), -(6086,19438,'tiered_earth_summon',0), -(6087,19439,'tiered_quicksand',0), -(6088,19440,'tiered_shrink',0), -(6089,19448,'tiered_air_summon',0), -(6090,19449,'tiered_earthquake',0), -(6091,19450,'tiered_elemental_portal',0), -(6092,19451,'tiered_fire_summon',0), -(6093,19452,'tiered_life_summon',0), -(6094,19453,'tiered_plane_shift',0), -(6095,19459,'gazer_pained_roar',0), -(6096,19462,'sound_gazer_attack02_roar',0), -(6097,19463,'sound_gazer_attack03_roar',0), -(6098,19464,'sound_gazer_attack_roar',0), -(6099,19465,'sound_gazer_attack_woosh',0), -(6100,19466,'sound_gazer_attack_woosh_quiet',0), -(6101,19467,'sound_gazer_bite_roar',0), -(6102,19468,'sound_gazer_bodynoise',0), -(6103,19469,'sound_gazer_bodynoise_fall',0), -(6104,19470,'sound_gazer_bodynoise_fall_deep',0), -(6105,19471,'sound_gazer_bodynoise_fall_dirt',0), -(6106,19472,'sound_gazer_bodynoise_long',0), -(6107,19473,'sound_gazer_breath',0), -(6108,19474,'sound_gazer_breath_grunt',0), -(6109,19475,'sound_gazer_combat_art_buff_roar',0), -(6110,19476,'sound_gazer_crunch',0), -(6111,19477,'sound_gazer_deadfall',0), -(6112,19478,'sound_gazer_eyeball_gross',0), -(6113,19479,'sound_gazer_eyeball_pop',0), -(6114,19480,'sound_gazer_eyeball_pop_quiet',0), -(6115,19481,'sound_gazer_eyeball_twirl',0), -(6116,19482,'sound_gazer_growl_low',0), -(6117,19483,'sound_gazer_grunt_short',0), -(6118,19484,'sound_gazer_liddown',0), -(6119,19485,'sound_gazer_swim',0), -(6120,19486,'sound_gazer_swim_idle',0), -(6121,19487,'sound_gazer_whip',0), -(6122,19488,'sound_gazer_whip_impact',0), -(6123,19489,'sound_gazer_whip_low',0), -(6124,19490,'tiered_clouds_head',0), -(6125,19491,'tiered_hand_dark_rings',0), -(6126,19492,'tiered_heart_summon',0), -(6127,19493,'tiered_undead_tide',0), -(6128,19494,'tiered_vampirism_p2p',0), -(6129,19497,'attack_eat',0), -(6130,19502,'perch_idle',0), -(6131,19509,'result_steam_cup',0), -(6132,19515,'design_glow_full',0), -(6133,19516,'design_glow_low',0), -(6134,19517,'design_glow_med',0), -(6135,19519,'result_energy_drain_p2p',0), -(6136,19520,'result_meditate_rings',0), -(6137,19526,'design_hole_mines',0), -(6138,19527,'design_hole_mines_blast',0), -(6139,19530,'sound_mine_blast',0), -(6140,19531,'sound_mine_splash',0), -(6141,19537,'design_th_platform',0), -(6142,19538,'design_th_platform_collapse',0), -(6143,19539,'design_th_platform_rift',0), -(6144,19547,'sound_displacer_beast_attack_1',0), -(6145,19548,'sound_displacer_beast_footstep',0), -(6146,19549,'sound_displacer_beast_footstep_dirt',0), -(6147,19550,'sound_displacer_beast_hiss',0), -(6148,19551,'sound_displacer_beast_idle',0), -(6149,19552,'sound_displacer_beast_idle_long',0), -(6150,19553,'sound_displacer_beast_whip',0), -(6151,19554,'sound_displacer_beast_whip_deep',0), -(6152,19555,'sound_displacer_beast_whip_high',0), -(6153,19558,'cast_air_sample',0), -(6154,19563,'cast_tallonite_lash_cone',0), -(6155,19564,'cast_tallonite_lash_summon',0), -(6156,19567,'lynx_backup',0), -(6157,19568,'lynx_fall',0), -(6158,19569,'lynx_idle',0), -(6159,19570,'lynx_jump',0), -(6160,19571,'lynx_jump_substitute',0), -(6161,19572,'lynx_land',0), -(6162,19573,'lynx_long_fall',0), -(6163,19574,'lynx_run',0), -(6164,19575,'lynx_turn_left',0), -(6165,19576,'lynx_turn_right',0), -(6166,19577,'lynx_walk',0), -(6167,19578,'result_tallonite_barb_p2p',0), -(6168,19579,'result_trail_tallonite',0), -(6169,19582,'attack_throw_boulder',0), -(6170,19585,'cast_tallonite_balance',0), -(6171,19588,'result_cloud_dot_blast',0), -(6172,19589,'result_tallonite_lash_p2p',0), -(6173,19596,'result_tallonite_lash_skulls_p2p',0), -(6174,19597,'result_tallonite_skull_control',0), -(6175,19598,'result_tallonite_sphere',0), -(6176,19600,'sound_displacer_beast_attack_2',0), -(6177,19601,'sound_displacer_beast_attack_3',0), -(6178,19602,'sound_displacer_beast_bark',0), -(6179,19603,'sound_displacer_beast_big_purr',0), -(6180,19604,'sound_displacer_beast_blade_fall',0), -(6181,19605,'sound_displacer_beast_blade_swoosh',0), -(6182,19606,'sound_displacer_beast_charge_up_roar',0), -(6183,19607,'sound_displacer_beast_dead_1',0), -(6184,19608,'sound_displacer_beast_dead_2',0), -(6185,19609,'sound_displacer_beast_dodge_thrust_roar',0), -(6186,19610,'sound_displacer_beast_fall_small',0), -(6187,19611,'sound_displacer_beast_footstep_deep',0), -(6188,19612,'sound_displacer_beast_idle_breath',0), -(6189,19613,'sound_displacer_beast_ouch',0), -(6190,19614,'sound_displacer_beast_ouch_hit',0), -(6191,19615,'sound_displacer_beast_pulse',0), -(6192,19616,'sound_displacer_beast_pulse_crunch',0), -(6193,19617,'sound_displacer_beast_small_purr',0), -(6194,19618,'sound_displacer_beast_swim',0), -(6195,19626,'sound_pandaman_footstep',0), -(6196,19627,'sound_pandaman_idle_breathing',0), -(6197,19628,'sound_pegasus_attack',0), -(6198,19629,'sound_pegasus_attack_1',0), -(6199,19630,'sound_pegasus_attack_4',0), -(6200,19631,'sound_pegasus_death_fall',0), -(6201,19632,'sound_pegasus_death_niegh',0), -(6202,19633,'sound_pegasus_grunt',0), -(6203,19634,'sound_pegasus_hooves',0), -(6204,19635,'sound_pegasus_hooves_scrapex',0), -(6205,19636,'sound_pegasus_idle_1',0), -(6206,19637,'sound_pegasus_idle_2',0), -(6207,19638,'sound_pegasus_idle_slow',0), -(6208,19639,'sound_pegasus_idleloop',0), -(6209,19640,'sound_pegasus_limb_whip',0), -(6210,19641,'sound_pegasus_ouch_1',0), -(6211,19642,'sound_pegasus_ouch_hit',0), -(6212,19643,'sound_pegasus_snort_quick',0), -(6213,19644,'sound_pegasus_wings_soft',0), -(6214,19651,'lynx_idle01',0), -(6215,19656,'cast_spin_flash_buff',0), -(6216,19657,'cast_tallonite_dagger_blast',0), -(6217,19659,'energy_blobs_kick_blast',0), -(6218,19661,'result_slow',0), -(6219,19666,'cast_tallonite_axe_throw',0), -(6220,19667,'cast_tallonite_glow_eyes',0), -(6221,19669,'design_sen_lava_falls',0), -(6222,19670,'design_sen_lightning_rune_orb',0), -(6223,19676,'design_eru_column_protection',0), -(6224,19682,'design_theer_fire_forrest',0), -(6225,19683,'design_theer_fire_passion',0), -(6226,19684,'design_theer_fire_water',0), -(6227,19685,'design_theer_fire_wrath',0), -(6228,19686,'design_theer_obj_forrest',0), -(6229,19687,'design_theer_obj_passion',0), -(6230,19688,'design_theer_obj_water',0), -(6231,19689,'design_theer_obj_wrath',0), -(6232,19690,'design_theer_symbol_blast',0), -(6233,19691,'design_theer_symbol_evil',0), -(6234,19692,'design_theer_symbol_forrest',0), -(6235,19693,'design_theer_symbol_good',0), -(6236,19694,'design_theer_symbol_none',0), -(6237,19695,'design_theer_symbol_passion',0), -(6238,19696,'design_theer_symbol_water',0), -(6239,19697,'design_theer_symbol_wrath',0), -(6240,19698,'design_theer_wrath_blast',0), -(6241,19701,'cast_massive_ring_blast',0), -(6242,19706,'result_billowing_energy',0), -(6243,19707,'result_seeping_energy',0), -(6244,19713,'design_odus_dome_barrier',0), -(6245,19715,'result_fiery_sun',0), -(6246,19716,'result_healing_flora',0), -(6247,19717,'result_singing_wind',0), -(6248,19719,'sound_catoplebus_attack_roar_1',0), -(6249,19720,'sound_catoplebus_attack_roar_2',0), -(6250,19721,'sound_catoplebus_attack_roar_3',0), -(6251,19722,'sound_catoplebus_body_movement',0), -(6252,19723,'sound_catoplebus_cast_roar',0), -(6253,19724,'sound_catoplebus_combat_art_buff_roar',0), -(6254,19725,'sound_catoplebus_crunch',0), -(6255,19726,'sound_catoplebus_death_roar',0), -(6256,19727,'sound_catoplebus_dodge_grunt',0), -(6257,19728,'sound_catoplebus_dodge_roar',0), -(6258,19729,'sound_catoplebus_footstep',0), -(6259,19730,'sound_catoplebus_footstep_deep',0), -(6260,19731,'sound_catoplebus_footstep_deep_soft',0), -(6261,19732,'sound_catoplebus_idle_grunt',0), -(6262,19733,'sound_catoplebus_idle_roar',0), -(6263,19734,'sound_catoplebus_idle_sniff',0), -(6264,19735,'sound_catoplebus_idle_snort',0), -(6265,19736,'sound_catoplebus_slide',0), -(6266,19737,'sound_catoplebus_swim',0), -(6267,19738,'sound_catoplebus_swim_idle',0), -(6268,19739,'sound_catoplebus_tail_whoosh',0), -(6269,19740,'sound_cerberus_attack_roar',0), -(6270,19741,'sound_cerberus_cast_roar',0), -(6271,19742,'sound_cerberus_combat_art_buff_roar',0), -(6272,19743,'sound_cerberus_death_fall',0), -(6273,19744,'sound_cerberus_death_roar',0), -(6274,19745,'sound_cerberus_dodge_bark',0), -(6275,19746,'sound_cerberus_dodge_growl',0), -(6276,19747,'sound_cerberus_growl',0), -(6277,19748,'sound_cerberus_idle_howl_1',0), -(6278,19749,'sound_cerberus_idle_howl_2',0), -(6279,19750,'sound_cerberus_idle_howl_long',0), -(6280,19751,'sound_cerberus_scrape',0), -(6281,19752,'sound_cerberus_snarl',0), -(6282,19753,'sound_cerberus_swim',0), -(6283,19754,'trdskl_transmute_complete',0), -(6284,19755,'trdskl_transmute_rings',0), -(6285,19763,'sound_goatmen_lf_stomp',0), -(6286,19764,'sound_goatmen_armor_long',0), -(6287,19765,'sound_goatmen_armor_short_loud',0), -(6288,19766,'sound_goatmen_armor_short_quiet',0), -(6289,19767,'sound_goatmen_attack_roar',0), -(6290,19768,'sound_goatmen_blade_swoosh_1',0), -(6291,19769,'sound_goatmen_blade_swoosh_2',0), -(6292,19770,'sound_goatmen_body_fall',0), -(6293,19771,'sound_goatmen_body_movement_short',0), -(6294,19772,'sound_goatmen_bow_enter',0), -(6295,19773,'sound_goatmen_bow_exit',0), -(6296,19774,'sound_goatmen_bow_getarrow',0), -(6297,19775,'sound_goatmen_bow_pullback',0), -(6298,19776,'sound_goatmen_bow_release',0), -(6299,19777,'sound_goatmen_breath_out',0), -(6300,19778,'sound_goatmen_cast_yell',0), -(6301,19779,'sound_goatmen_combat_art_buff',0), -(6302,19780,'sound_goatmen_death_roar',0), -(6303,19781,'sound_goatmen_death_roar_2',0), -(6304,19782,'sound_goatmen_footstep',0), -(6305,19783,'sound_goatmen_grunt',0), -(6306,19784,'sound_goatmen_ouch',0), -(6307,19785,'sound_goatmen_scrape',0), -(6308,19786,'sound_goatmen_snort',0), -(6309,19787,'sound_goatmen_swim',0), -(6310,19788,'sound_goatmen_weapon_twirl',0), -(6311,19794,'design_pulse_beacon',0), -(6312,19795,'design_shard_blast',0), -(6313,19797,'pandamen_wildswing_attack',0), -(6314,19798,'pulse_sound',0), -(6315,19801,'sound_pandamen_bark',0), -(6316,19802,'sound_pandamen_bleat',0), -(6317,19803,'sound_pandamen_bow_getarrow',0), -(6318,19804,'sound_pandamen_bow_pullback',0), -(6319,19805,'sound_pandamen_bow_release',0), -(6320,19806,'sound_pandamen_bow_sheath',0), -(6321,19807,'sound_pandamen_bow_unsheath',0), -(6322,19808,'sound_pandamen_charge_roar',0), -(6323,19809,'sound_pandamen_dead',0), -(6324,19810,'sound_pandamen_eat',0), -(6325,19811,'sound_pandamen_footslide',0), -(6326,19812,'sound_pandamen_footstep_soft',0), -(6327,19813,'sound_pandamen_growl',0), -(6328,19814,'sound_pandamen_grunt',0), -(6329,19815,'sound_pandamen_idle_grunt',0), -(6330,19816,'sound_pandamen_idle_grunt_short',0), -(6331,19817,'sound_pandamen_movement_cloth_long',0), -(6332,19818,'sound_pandamen_movement_cloth_short',0), -(6333,19819,'sound_pandamen_scratch',0), -(6334,19820,'sound_pandamen_scratch_pant',0), -(6335,19821,'sound_pandamen_sit',0), -(6336,19822,'sound_pandamen_swim',0), -(6337,19823,'sound_pandamen_whoosh',0), -(6338,19829,'evil_theer_energy_buff',0), -(6339,19830,'good_theer_energy_buff',0), -(6340,19832,'result_balanced_judgement',0), -(6341,19833,'result_fiery_flames',0), -(6342,19834,'result_theer_debuff_down',0), -(6343,19835,'result_theer_debuff_up',0), -(6344,19836,'result_theer_mana_drain_p2p',0), -(6345,19839,'theer_charge_up',0), -(6346,19840,'theer_mana_blast',0), -(6347,19845,'cast_wyvern_breath',0), -(6348,19846,'cast_wyvern_inhale',0), -(6349,19848,'design_erudite_switch_evil',0), -(6350,19849,'design_erudite_switch_good',0), -(6351,19850,'design_murderball_debuff',0), -(6352,19853,'sound_chimera_attack_roar_1',0), -(6353,19854,'sound_chimera_attack_roar_2',0), -(6354,19855,'sound_chimera_attack_roar_3',0), -(6355,19856,'sound_chimera_cast_roar',0), -(6356,19857,'sound_chimera_cast_roar_short',0), -(6357,19858,'sound_chimera_combat_art_buff_roar',0), -(6358,19859,'sound_chimera_dead_fall',0), -(6359,19860,'sound_chimera_death_roar',0), -(6360,19861,'sound_chimera_dodge_down_roar',0), -(6361,19862,'sound_chimera_dodge_grunt',0), -(6362,19863,'sound_chimera_footslide',0), -(6363,19864,'sound_chimera_footstep',0), -(6364,19865,'sound_chimera_footstep_big',0), -(6365,19866,'sound_chimera_idle_bird_1',0), -(6366,19867,'sound_chimera_idle_bird_2',0), -(6367,19868,'sound_chimera_idle_bird_3',0), -(6368,19869,'sound_chimera_idle_goat_1',0), -(6369,19870,'sound_chimera_idle_goat_2',0), -(6370,19871,'sound_chimera_idle_goat_3',0), -(6371,19872,'sound_chimera_idle_lion_1',0), -(6372,19873,'sound_chimera_idle_lion_2',0), -(6373,19874,'sound_chimera_idle_lion_3',0), -(6374,19875,'sound_chimera_idle_lion_4',0), -(6375,19876,'sound_chimera_idle_wings',0), -(6376,19877,'sound_chimera_sit_wings_short',0), -(6377,19878,'sound_chimera_snake_stab',0), -(6378,19879,'sound_chimera_swim',0), -(6379,19880,'sound_chimera_wings_big',0), -(6380,19882,'sound_lynx_mount_bare_idle',0), -(6381,19883,'sound_lynx_mount_bare_roar_1',0), -(6382,19884,'sound_lynx_mount_bare_roar_2',0), -(6383,19885,'sound_lynx_mount_footstep_quiet',0), -(6384,19886,'sound_lynx_mount_land',0), -(6385,19887,'sound_odus_kitten_attack_1',0), -(6386,19888,'sound_odus_kitten_attack_2',0), -(6387,19889,'sound_odus_kitten_attack_3',0), -(6388,19890,'sound_odus_kitten_attack_4',0), -(6389,19891,'sound_odus_kitten_combat_exit',0), -(6390,19892,'sound_odus_kitten_eat_1',0), -(6391,19893,'sound_odus_kitten_fall',0), -(6392,19894,'sound_odus_kitten_footstep',0), -(6393,19895,'sound_odus_kitten_hiss',0), -(6394,19896,'sound_odus_kitten_idle_purr_1',0), -(6395,19897,'sound_odus_kitten_lick',0), -(6396,19898,'sound_odus_kitten_meow_1',0), -(6397,19899,'sound_odus_kitten_meow_2',0), -(6398,19900,'sound_odus_kitten_ouch_short',0), -(6399,19901,'sound_odus_kitten_scratch',0), -(6400,19902,'sound_odus_kitten_sneeze',0), -(6401,19903,'sound_odus_kitten_swim',0), -(6402,19906,'cast_draconian_breath',0), -(6403,19909,'cast_wurm_breath',0), -(6404,19910,'cast_wurm_crush_blast',0), -(6405,19911,'cast_wurm_inhale',0), -(6406,19913,'design_active_eggs',0), -(6407,19914,'design_hatched_eggs',0), -(6408,19915,'design_inactive_eggs',0), -(6409,19917,'result_blinded',0), -(6410,19918,'result_crush_rings',0), -(6411,19924,'design_summon_fx',1045), -(6412,19926,'result_summoning_crystal',1045), -(6413,19929,'sound_lynx_armor_1',1045), -(6414,19930,'sound_lynx_armor_short',1045), -(6415,19939,'toxx_breath_attack',1045), -(6416,19940,'toxx_breath_inhale',1045), -(6417,19947,'result_floor_pie',1045), -(6418,19954,'result_lich_evil_drain_p2p',1045), -(6419,19955,'result_lich_good_drain_p2p',1045), -(6420,19956,'result_theer_evil_drain',1045), -(6421,19957,'result_theer_good_drain',1045), -(6422,19964,'result_toxic_debuff',1045), -(6423,19967,'toxx_breath_attack01',1045), -(6424,19968,'toxx_breath_attack02',1045), -(6425,19974,'design_kobold_claw',1045), -(6426,19975,'design_toxic_sphere0',1045), -(6427,19976,'design_toxic_sphere01',1045), -(6428,19977,'design_toxic_sphere02',1045), -(6429,19978,'design_toxic_sphere03',1045), -(6430,19979,'design_toxic_sphere04',1045), -(6431,19980,'design_toxic_sphere05',1045), -(6432,19982,'result_toxx_essence_trap_p2p',1045), -(6433,19984,'sound_catoplebus_ouch',1045), -(6434,19985,'sound_catoplebus_ouch_1',1045), -(6435,19986,'sound_catoplebus_ouch_2',1045), -(6436,19988,'sound_skeletal_1',1045), -(6437,19989,'sound_skeletal_10',1045), -(6438,19990,'sound_skeletal_11',1045), -(6439,19991,'sound_skeletal_12',1045), -(6440,19992,'sound_skeletal_13',1045), -(6441,19993,'sound_skeletal_14',1045), -(6442,19994,'sound_skeletal_15',1045), -(6443,19995,'sound_skeletal_16',1045), -(6444,19996,'sound_skeletal_17',1045), -(6445,19997,'sound_skeletal_18',1045), -(6446,19998,'sound_skeletal_19',1045), -(6447,19999,'sound_skeletal_2',1045), -(6448,20000,'sound_skeletal_20',1045), -(6449,20001,'sound_skeletal_21',1045), -(6450,20002,'sound_skeletal_22',1045), -(6451,20003,'sound_skeletal_3',1045), -(6452,20004,'sound_skeletal_4',1045), -(6453,20005,'sound_skeletal_5',1045), -(6454,20006,'sound_skeletal_6',1045), -(6455,20007,'sound_skeletal_7',1045), -(6456,20008,'sound_skeletal_8',1045), -(6457,20009,'sound_skeletal_9',1045), -(6458,20010,'toxx_chained',1045), -(6459,20011,'toxx_vanish',1045), -(6460,20017,'design_active_head_001',1045), -(6461,20018,'design_active_head_010',1045), -(6462,20019,'design_active_head_011',1045), -(6463,20020,'design_active_head_100',1045), -(6464,20021,'design_active_head_101',1045), -(6465,20022,'design_active_head_110',1045), -(6466,20023,'design_active_head_111',1045), -(6467,20024,'design_tallonite_portal',1045), -(6468,20025,'design_teleport_druid_ring',1045), -(6469,20028,'cast_arcane_blast',1045), -(6470,20029,'cast_crush_blast',1045), -(6471,20030,'cast_poison_blast',1045), -(6472,20034,'design_mystic_barrier',1045), -(6473,20040,'design_blue_flag_pickup',1045), -(6474,20041,'design_red_flag_pickup',1045), -(6475,20047,'death_impact',1045), -(6476,20048,'gorgon_attack_roar_01',1045), -(6477,20049,'gorgon_attack_roar_02',1045), -(6478,20050,'gorgon_breath_in',1045), -(6479,20051,'gorgon_breath_out_long',1045), -(6480,20052,'gorgon_breath_out_short',1045), -(6481,20053,'gorgon_cast_roar_01',1045), -(6482,20054,'gorgon_chewing_close',1045), -(6483,20055,'gorgon_chewing_open',1045), -(6484,20056,'gorgon_death_impact',1045), -(6485,20057,'gorgon_death_roar',1045), -(6486,20058,'gorgon_footscrape',1045), -(6487,20059,'gorgon_footstep_deep',1045), -(6488,20060,'gorgon_footstep_metal',1045), -(6489,20061,'gorgon_hooves',1045), -(6490,20062,'gorgon_kick_swish',1045), -(6491,20063,'gorgon_metal_movement',1045), -(6492,20064,'gorgon_metal_movement_deep',1045), -(6493,20065,'gorgon_metal_movement_long',1045), -(6494,20066,'gorgon_metal_movement_quiet',1045), -(6495,20067,'gorgon_metal_scrape',1045), -(6496,20068,'gorgon_ouch_headshake',1045), -(6497,20069,'gorgon_ouch_impact',1045), -(6498,20070,'gorgon_snort',1045), -(6499,20071,'gorgon_snort_big',1045), -(6500,20072,'gorgon_swim',1045), -(6501,20076,'stone_ouch_impact',1045), -(6502,20082,'design_blue_flag_trail',1045), -(6503,20083,'design_red_flag_trail',1045), -(6504,20089,'design_battleground_tower_blue',1045), -(6505,20090,'design_battleground_tower_red',1045), -(6506,20096,'crystaline_folk_lf',1045), -(6507,20097,'crystaline_folk_footstep_big',1045), -(6508,20098,'crystaline_folk_footstep_crunch',1045), -(6509,20099,'crystaline_folk_stone_debris',1045), -(6510,20100,'crystaline_folk_tantrum_1',1045), -(6511,20101,'crystaline_folk_tantrum_2',1045), -(6512,20102,'crystaline_folk_tantrum_3',1045), -(6513,20103,'crystaline_folk_tantrum_body_1',1045), -(6514,20104,'crystaline_folk_tantrum_body_2',1045), -(6515,20105,'crystaline_folk_tantrum_body_3',1045), -(6516,20106,'design_sen_lava_floor',1045), -(6517,20109,'cast_mental_blast',1045), -(6518,20114,'design_reform_fx',1045), -(6519,20117,'attack_breath_crush',1045), -(6520,20118,'attack_breath_poison',1045), -(6521,20123,'design_drain_theer_fx',1045), -(6522,20124,'design_power_aura',1045), -(6523,20126,'result_forced_shader_white',1045), -(6524,20127,'result_stunned_rings',1045), -(6525,20134,'froglock_gathering_search',1045), -(6526,20138,'status_quest_completes_storyline',1045), -(6527,20139,'status_quest_gives_storyline',1045), -(6528,20140,'status_quest_updates_storyline',1045), -(6529,20150,'sound_lynx_armor_short_1',1045), -(6530,20151,'sound_lynx_mount_bare_roar_3',1045), -(6531,20159,'result_forced_shader_rock_red',1045), -(6532,20162,'tiered_cleric_wheel_back',1045), -(6533,20163,'tiered_cleric_wheel_base',1045), -(6534,20164,'tiered_cleric_wheel_forward',1045), -(6535,20165,'tiered_hand_cross',1045), -(6536,20166,'tiered_hand_leaves',1045), -(6537,20167,'tiered_hand_leaves_glowing',1045), -(6538,20168,'tiered_hand_pattern',1045), -(6539,20169,'tiered_refreshment_summon',1045), -(6540,20170,'tiered_smite_p2p',1045), -(6541,20178,'jump_falling',1045), -(6542,20188,'tiered_angel_wings',1045), -(6543,20189,'tiered_bar_heal',1045), -(6544,20190,'tiered_divine_burst',1045), -(6545,20191,'tiered_divine_essence_summon',1045), -(6546,20192,'tiered_head_halo',1045), -(6547,20193,'tiered_priest_ring_cure',1045), -(6548,20194,'tiered_radiant_glow',1045), -(6549,20195,'tiered_resurrect_swirls',1045), -(6550,20196,'tiered_small_heal',1045), -(6551,20197,'tiered_smite_hit',1045), -(6552,20198,'tiered_soothe',1045), -(6553,20199,'tiered_toxin_out',1045), -(6554,20200,'tiered_water_bubble',1045), -(6555,20210,'sound_roehn_theer_stomp_rocks_1',1045), -(6556,20211,'sound_roehn_theer_stomp_rocks_2',1045), -(6557,20212,'sound_roehn_theer_stomp_rocks_3',1045), -(6558,20213,'tiered_flash_heal',1045), -(6559,20214,'tiered_ring_shield',1045), -(6560,20215,'tiered_scimitar_exploding',1045), -(6561,20216,'tiered_scimitar_smite',1045), -(6562,20217,'tiered_timer',1045), -(6563,20227,'tiered_divine_hit',1045), -(6564,20228,'tiered_double_smite_p2p',1045), -(6565,20229,'tiered_hand_sparkles',1045), -(6566,20230,'tiered_heal_tube_p2p',1045), -(6567,20240,'tiered_heal_barrier',1045), -(6568,20241,'tiered_smite_blobs_p2p',1045), -(6569,20251,'tiered_hammer_smite',1045), -(6570,20252,'tiered_hand_cross_dark',1045), -(6571,20253,'tiered_hand_sparkles_dark',1045), -(6572,20263,'tiered_mental_smite',1045), -(6573,20273,'tiered_engulf_flames',1045), -(6574,20274,'tiered_gavel_pound',1045), -(6575,20275,'tiered_light_cage',1045), -(6576,20276,'tiered_swirly_heal',1045), -(6577,20277,'tiered_swirly_power_heal',1045), -(6578,20287,'trdskl_tinker_fail',1045), -(6579,20294,'fire_build_up',1045), -(6580,20304,'tiered_feather_summon',1045), -(6581,20305,'tiered_phoenix_summon',1045), -(6582,20306,'tiered_run_speed_buff',1045), -(6583,20307,'tiered_spirit_wolf',1045), -(6584,20308,'tiered_wood_root',1045), -(6585,20318,'tiered_bat_summon',1045), -(6586,20319,'tiered_nature_heal',1045), -(6587,20329,'tiered_druid_wheel_base',1045), -(6588,20330,'tiered_fire_slam2',1045), -(6589,20331,'tiered_hand_leaf',1045), -(6590,20332,'tiered_icicle_stab',1045), -(6591,20333,'tiered_leaf_burst',1045), -(6592,20334,'tiered_leaf_gather',1045), -(6593,20335,'tiered_leaf_spin',1045), -(6594,20336,'tiered_rings_shrinking',1045), -(6595,20337,'tiered_swirly_wisps',1045), -(6596,20338,'tiered_wood_spikes',1045), -(6597,20346,'panting_wolf_sound',1045), -(6598,20349,'tiered_hand_leaf_glowing',1045), -(6599,20350,'tiered_leaf_spot_burst',1045), -(6600,20351,'tiered_spin_runed_shield',1045), -(6601,20352,'tiered_spirit_bear',1045), -(6602,20353,'tiered_spirit_lion',1045), -(6603,20354,'wolfbackground_sound',1045), -(6604,20364,'tiered_growing_spores',1045), -(6605,20365,'tiered_healing_grove',1045), -(6606,20366,'tiered_ice_spikes',1045), -(6607,20367,'tiered_sandstorm',1045), -(6608,20368,'tiered_spirit_wolf_summon',1045), -(6609,20369,'tiered_tranquility',1045), -(6610,20370,'tiered_wood_root_grow',1045), -(6611,20373,'belch_fx',1045), -(6612,20378,'design_theer_symbol_blue',1045), -(6613,20379,'design_theer_symbol_green',1045), -(6614,20380,'icicle_stomp',1045), -(6615,20382,'result_hand_drips_blood',1045), -(6616,20383,'result_hand_drips_poison',1045), -(6617,20385,'slime_trail_fx',1045), -(6618,20386,'sound_giant_hill_attack',1045), -(6619,20387,'sound_giant_hill_buff',1045), -(6620,20388,'sound_giant_hill_cast',1045), -(6621,20389,'sound_giant_hill_death',1045), -(6622,20390,'sound_giant_hill_fall',1045), -(6623,20391,'sound_giant_hill_footstep',1045), -(6624,20392,'sound_giant_hill_grunt',1045), -(6625,20393,'sound_giant_hill_idle_cloth',1045), -(6626,20394,'sound_giant_hill_idle_grunt',1045), -(6627,20395,'sound_giant_hill_idle_yawn',1045), -(6628,20396,'sound_giant_hill_movement_cloth',1045), -(6629,20397,'sound_giant_hill_ouch',1045), -(6630,20398,'sound_giant_hill_rising_groan',1045), -(6631,20399,'sound_giant_hill_sit_groan',1045), -(6632,20400,'sound_giant_hill_swim',1045), -(6633,20401,'sound_giant_hill_swim_idle',1045), -(6634,20402,'sound_giant_hill_turn',1045), -(6635,20412,'tiered_brambles',1045), -(6636,20413,'tiered_hand_leaf_dark',1045), -(6637,20414,'tiered_hand_leaves_dark',1045), -(6638,20415,'tiered_leaf_flourish',1045), -(6639,20416,'tiered_lightning_bolt',1045), -(6640,20417,'tiered_snow_tempest',1045), -(6641,20418,'tiered_swarm_p2p',1045), -(6642,20428,'tiered_spirit_cat',1045), -(6643,20429,'tiered_spirit_eel',1045), -(6644,20430,'tiered_starfire',1045), -(6645,20431,'tiered_sun_nova',1045), -(6646,20441,'tiered_fae_swirling',1045), -(6647,20442,'tiered_lightning_fusion',1045), -(6648,20443,'tiered_spirit_cheetah',1045), -(6649,20444,'tiered_spirit_lion_summon',1045), -(6650,20445,'tiered_spirit_tree',1045), -(6651,20446,'tiered_thunder_cloud',1045), -(6652,20453,'design_goblin_launch',1045), -(6653,20457,'transforma',1045), -(6654,20458,'transformb',1045), -(6655,20461,'cast_ice_blastwave',1045), -(6656,20464,'cast_wing_buffet_snow',1045), -(6657,20465,'cast_wing_buffet_wind',1045), -(6658,20469,'result_icy_trap_shatter',1045), -(6659,20476,'design_starburst_blue',1045), -(6660,20477,'design_starburst_green',1045), -(6661,20478,'design_starburst_purple',1045), -(6662,20479,'design_starburst_red',1045), -(6663,20480,'design_starburst_white',1045), -(6664,20482,'kneel',1045), -(6665,20483,'result_shadow_curse',1045), -(6666,20493,'sound_lynx_mount_bare_idle_1',1045), -(6667,20494,'sound_lynx_mount_bare_pant',1045), -(6668,20504,'sound_lynx_purr',1045), -(6669,20505,'sound_vrewwx_attack_roar_3',1045), -(6670,20506,'sound_vrewwx_cast_roar',1045), -(6671,20513,'design_arm_prelaunch',1045), -(6672,20515,'result_repellent_spray',1045), -(6673,20516,'result_repellent_spray_p2p',1045), -(6674,20519,'activate',1045), -(6675,20520,'cast_ice_blast',1045), -(6676,20521,'cast_ice_blast_ring',1045), -(6677,20529,'sound_vrewwx_attack_roar_1',1045), -(6678,20530,'sound_vrewwx_attack_roar_2',1045), -(6679,20531,'sound_vrewwx_idle02_roar',1045), -(6680,20541,'sound_vrewwx_idle1_breathing_2',1045), -(6681,20548,'design_void_energy_pool',1045), -(6682,20550,'result_flower_trail',1045), -(6683,20551,'result_leash_p2p',1045), -(6684,20552,'result_rope_root',1045), -(6685,20555,'cast_pick_axe_throw',1045), -(6686,20560,'design_crystal_drop_impact',1045), -(6687,20561,'design_orc_footprints',1045), -(6688,20563,'result_leash_p2p_static',1045), -(6689,20565,'sitchair',1045), -(6690,20567,'sound_vrewwx_body_fall',1045), -(6691,20568,'trdskl_halas_pick',1045), -(6692,20575,'design_chessboard_collapse_fx',1045), -(6693,20576,'design_chessboard_static_fx',1045), -(6694,20577,'design_druidring_burst_fx',1045), -(6695,20578,'design_druidring_fx',1045), -(6696,20579,'design_harpoon_fire',1045), -(6697,20580,'design_harpoon_load',1045), -(6698,20590,'sound_vrewwx_death',1045), -(6699,20591,'sound_vrewwx_ouch',1045), -(6700,20594,'bellyslide',1045), -(6701,20599,'float_on_back',1045), -(6702,20601,'laugh',1045), -(6703,20604,'sound_vrewwx_buff',1045), -(6704,20605,'sound_vrewwx_chomp',1045), -(6705,20615,'sound_vrewwx_death_fall',1045), -(6706,20622,'design_theer_symbol_blast_circle',1045), -(6707,20629,'fly_ouch_backhand',1045), -(6708,20639,'tiered_heal_ward',1045), -(6709,20640,'tiered_shaman_wheel_base',1045), -(6710,20641,'tiered_spirit_summon',1045), -(6711,20642,'tiered_spirit_swirl_hit',1045), -(6712,20650,'proc_sword_head',1045), -(6713,20653,'tiered_hand_stars',1045), -(6714,20654,'tiered_haze',1045), -(6715,20655,'tiered_head_spirits',1045), -(6716,20656,'tiered_spirit_heal',1045), -(6717,20666,'tiered_heal_flourish',1045), -(6718,20667,'tiered_resurrect_spirits',1045), -(6719,20668,'tiered_spirit_elephant',1045), -(6720,20669,'tiered_spirit_swirl_shield',1045), -(6721,20679,'tiered_echo_rings',1045), -(6722,20680,'tiered_fire',1045), -(6723,20681,'tiered_iceball_p2p',1045), -(6724,20682,'tiered_spirit_tube',1045), -(6725,20683,'tiered_spirits_p2p',1045), -(6726,20693,'tiered_ancestral_summon',1045), -(6727,20694,'tiered_lunar_summon',1045), -(6728,20695,'tiered_spirit_circle_summon',1045), -(6729,20696,'tiered_spirit_growing',1045), -(6730,20703,'fly_jumpsubstitute',1045), -(6731,20704,'fly_turn_left',1045), -(6732,20705,'fly_turn_right',1045), -(6733,20706,'fly_walk',1045), -(6734,20708,'lizard_backup',1045), -(6735,20709,'lizard_fall',1045), -(6736,20710,'lizard_fly_backup',1045), -(6737,20711,'lizard_fly_fall',1045), -(6738,20712,'lizard_fly_idle',1045), -(6739,20713,'lizard_fly_idle01',1045), -(6740,20714,'lizard_fly_jump',1045), -(6741,20715,'lizard_fly_jump_substitute',1045), -(6742,20716,'lizard_fly_run',1045), -(6743,20717,'lizard_fly_turn_left',1045), -(6744,20718,'lizard_fly_turn_right',1045), -(6745,20719,'lizard_fly_walk',1045), -(6746,20720,'lizard_glide',1045), -(6747,20721,'lizard_idle',1045), -(6748,20722,'lizard_idle01',1045), -(6749,20723,'lizard_jump',1045), -(6750,20724,'lizard_jump_substitute',1045), -(6751,20725,'lizard_land',1045), -(6752,20726,'lizard_long_fall',1045), -(6753,20727,'lizard_run',1045), -(6754,20728,'lizard_turn_left',1045), -(6755,20729,'lizard_turn_right',1045), -(6756,20730,'lizard_walk',1045), -(6757,20738,'lizard_fly_dive',1045), -(6758,20739,'lizard_fly_glide',1045), -(6759,20740,'lizard_fly_jumpsubstitute',1045), -(6760,20743,'tiered_bone_tendrils',1045), -(6761,20744,'tiered_crystal_soultap',1045), -(6762,20745,'tiered_dark_swirly_wisps',1045), -(6763,20746,'tiered_deathward',1045), -(6764,20747,'tiered_forced_shader_burst_blend',1045), -(6765,20748,'tiered_hand_stars_dark',1045), -(6766,20749,'tiered_heal_shroud',1045), -(6767,20750,'tiered_poison_spirits_p2p',1045), -(6768,20751,'tiered_rune_debuff_all',1045), -(6769,20752,'tiered_shadow_curse',1045), -(6770,20753,'tiered_shroud',1045), -(6771,20761,'lizard_fly_enter',1045), -(6772,20771,'spark_trail_lf',1045), -(6773,20772,'spark_trail_lr',1045), -(6774,20773,'spark_trail_rf',1045), -(6775,20774,'spark_trail_rr',1045), -(6776,20781,'griffin_backup',1045), -(6777,20782,'griffin_fall',1045), -(6778,20783,'griffin_fly_backup',1045), -(6779,20784,'griffin_fly_dive',1045), -(6780,20785,'griffin_fly_enter',1045), -(6781,20786,'griffin_fly_fall',1045), -(6782,20787,'griffin_fly_glide',1045), -(6783,20788,'griffin_fly_idle',1045), -(6784,20789,'griffin_fly_idle01',1045), -(6785,20790,'griffin_fly_jump',1045), -(6786,20791,'griffin_fly_jumpsubstitute',1045), -(6787,20792,'griffin_fly_run',1045), -(6788,20793,'griffin_fly_turn_left',1045), -(6789,20794,'griffin_fly_turn_right',1045), -(6790,20795,'griffin_fly_walk',1045), -(6791,20796,'griffin_idle01',1045), -(6792,20797,'griffin_jump',1045), -(6793,20798,'griffin_jump_substitute',1045), -(6794,20799,'griffin_land',1045), -(6795,20800,'griffin_long_fall',1045), -(6796,20801,'griffin_turn_left',1045), -(6797,20802,'griffin_turn_right',1045), -(6798,20804,'pegasus_backup',1045), -(6799,20805,'pegasus_fall',1045), -(6800,20806,'pegasus_fly_backup',1045), -(6801,20807,'pegasus_fly_dive',1045), -(6802,20808,'pegasus_fly_enter',1045), -(6803,20809,'pegasus_fly_fall',1045), -(6804,20810,'pegasus_fly_glide',1045), -(6805,20811,'pegasus_fly_idle',1045), -(6806,20812,'pegasus_fly_idle01',1045), -(6807,20813,'pegasus_fly_jump',1045), -(6808,20814,'pegasus_fly_jumpsubstitute',1045), -(6809,20815,'pegasus_fly_run',1045), -(6810,20816,'pegasus_fly_turn_left',1045), -(6811,20817,'pegasus_fly_turn_right',1045), -(6812,20818,'pegasus_fly_walk',1045), -(6813,20819,'pegasus_idle01',1045), -(6814,20820,'pegasus_jump',1045), -(6815,20821,'pegasus_jump_substitute',1045), -(6816,20822,'pegasus_land',1045), -(6817,20823,'pegasus_long_fall',1045), -(6818,20824,'pegasus_turn_left',1045), -(6819,20825,'pegasus_turn_right',1045), -(6820,20833,'result_weapon_trail_music',1096), -(6821,20836,'tiered_bard_baton',1096), -(6822,20837,'tiered_bard_drum',1096), -(6823,20838,'tiered_bard_flute',1096), -(6824,20839,'tiered_bard_guitar',1096), -(6825,20840,'tiered_bard_horn',1096), -(6826,20841,'tiered_bard_shroud',1096), -(6827,20842,'tiered_bard_wheel_base',1096), -(6828,20843,'tiered_clanging_notes',1096), -(6829,20844,'tiered_coin_toss',1096), -(6830,20845,'tiered_dancing_blades',1096), -(6831,20846,'tiered_hand_notes',1096), -(6832,20847,'tiered_hand_spin_notes',1096), -(6833,20848,'tiered_jester_cap_toss_p2p',1096), -(6834,20849,'tiered_music_ball_p2p',1096), -(6835,20850,'tiered_music_band',1096), -(6836,20851,'tiered_music_beam_p2p',1096), -(6837,20852,'tiered_music_blast_ball',1096), -(6838,20853,'tiered_music_bubble',1096), -(6839,20854,'tiered_music_swirls',1096), -(6840,20855,'tiered_music_wave_p2p',1096), -(6841,20856,'tiered_notes_blast',1096), -(6842,20857,'tiered_notes_burst',1096), -(6843,20858,'tiered_notes_confetti',1096), -(6844,20859,'tiered_notes_head',1096), -(6845,20860,'tiered_notes_out_blast',1096), -(6846,20861,'tiered_notes_out_song',1096), -(6847,20862,'tiered_notes_shield',1096), -(6848,20863,'tiered_notes_spiral_frenzy',1096), -(6849,20864,'tiered_notes_up_song',1096), -(6850,20865,'tiered_slashing_blade',1096), -(6851,20866,'tiered_sound_rings_head',1096), -(6852,20867,'tiered_spark_burst',1096), -(6853,20868,'tiered_stabbing_blades',1096), -(6854,20878,'tiered_notes_swirling_p2p',1096), -(6855,20888,'tiered_bellow',1096), -(6856,20889,'tiered_eyehand_buff',1096), -(6857,20890,'tiered_note_crescent_p2p',1096), -(6858,20891,'tiered_notes_out_song_bellow',1096), -(6859,20892,'tiered_notes_transfer_p2p',1096), -(6860,20893,'tiered_rock_skin_grow',1096), -(6861,20894,'tiered_shaky_notes',1096), -(6862,20901,'griffin_mount_backup',1096), -(6863,20902,'griffin_mount_fall',1096), -(6864,20903,'griffin_mount_fly_backup',1096), -(6865,20904,'griffin_mount_fly_dive',1096), -(6866,20905,'griffin_mount_fly_enter',1096), -(6867,20906,'griffin_mount_fly_fall',1096), -(6868,20907,'griffin_mount_fly_glide',1096), -(6869,20908,'griffin_mount_fly_idle',1096), -(6870,20909,'griffin_mount_fly_idle01',1096), -(6871,20910,'griffin_mount_fly_jump',1096), -(6872,20911,'griffin_mount_fly_jumpsubstitute',1096), -(6873,20912,'griffin_mount_fly_run',1096), -(6874,20913,'griffin_mount_fly_turn_left',1096), -(6875,20914,'griffin_mount_fly_turn_right',1096), -(6876,20915,'griffin_mount_fly_walk',1096), -(6877,20916,'griffin_mount_idle',1096), -(6878,20917,'griffin_mount_idle01',1096), -(6879,20918,'griffin_mount_jump',1096), -(6880,20919,'griffin_mount_jump_substitute',1096), -(6881,20920,'griffin_mount_land',1096), -(6882,20921,'griffin_mount_long_fall',1096), -(6883,20922,'griffin_mount_run',1096), -(6884,20923,'griffin_mount_turn_left',1096), -(6885,20924,'griffin_mount_turn_right',1096), -(6886,20925,'griffin_mount_walk',1096), -(6887,20929,'tiered_arrow_blast',1096), -(6888,20930,'tiered_blood_burst',1096), -(6889,20931,'tiered_fire_arrow_p2p',1096), -(6890,20932,'tiered_harvest_arrows',1096), -(6891,20933,'tiered_lightning_blast_hit',1096), -(6892,20934,'tiered_lightning_spark_burst',1096), -(6893,20935,'tiered_massive_hit',1096), -(6894,20936,'tiered_ranged_buff',1096), -(6895,20937,'tiered_shimmer_arrow_p2p',1096), -(6896,20938,'tiered_slow_arrow_p2p',1096), -(6897,20939,'tiered_sparkle_trail_weapon_blend',1096), -(6898,20940,'tiered_weapon_blood_lust',1096), -(6899,20950,'tiered_arrow',1096), -(6900,20951,'tiered_arrow_storm',1096), -(6901,20952,'tiered_briar_trap',1096), -(6902,20953,'tiered_bullseye',1096), -(6903,20954,'tiered_hawk_summon',1096), -(6904,20955,'tiered_head_arrow_p2p',1096), -(6905,20956,'tiered_redirect_arrow_p2p',1096), -(6906,20957,'tiered_redirection',1096), -(6907,20958,'tiered_shoot_arrow_rain',1096), -(6908,20959,'tiered_triple_arrow_p2p',1096), -(6909,20969,'tiered_ice_comet',1096), -(6910,20976,'griffin_mount_fly_climb',1096), -(6911,20977,'griffin_mount_fly_down',1096), -(6912,20978,'griffin_mount_fly_up',1096), -(6913,20982,'tiered_blades_buff',1096), -(6914,20983,'tiered_damage_persist',1096), -(6915,20984,'tiered_dark_arrow_p2p',1096), -(6916,20985,'tiered_dark_cloud',1096), -(6917,20986,'tiered_death_mark',1096), -(6918,20987,'tiered_deflect_buff',1096), -(6919,20988,'tiered_shoot_daggers',1096), -(6920,20989,'tiered_slashing_daggers',1096), -(6921,20999,'tiered_apply_poison_p2p',1096), -(6922,21000,'tiered_dagger_head',1096), -(6923,21001,'tiered_dark_ring_vanish',1096), -(6924,21002,'tiered_fatal_followup',1096), -(6925,21003,'tiered_hand_plasma',1096), -(6926,21004,'tiered_spin_dagger_blast',1096), -(6927,21011,'griffin_mount_fly_jump_substitute',1096), -(6928,21021,'tiered_blast_tube',1096), -(6929,21022,'tiered_flurry_daggers',1096), -(6930,21023,'tiered_mesmerized',1096), -(6931,21024,'tiered_slash_trail',1096), -(6932,21025,'tiered_snow_dagger_p2p',1096), -(6933,21026,'tiered_spin_shield_buff',1096), -(6934,21027,'tiered_storm_waves',1096), -(6935,21028,'tiered_stream_throw_attack_p2p',1096), -(6936,21029,'tiered_swords_buff',1096), -(6937,21030,'tiered_teeth_glint',1096), -(6938,21038,'result_bind_wound',1096), -(6939,21041,'tiered_blast_trail',1096), -(6940,21042,'tiered_dagger_p2p',1096), -(6941,21043,'tiered_dark_melee_swipe',1096), -(6942,21044,'tiered_poison_forced_shader_weapon',1096), -(6943,21045,'tiered_slash_trail_dark',1096), -(6944,21052,'design_wellspring_bones_toss',1096), -(6945,21054,'result_wellspring_ghosts_attack_p2p',1096), -(6946,21064,'tiered_cone_defensive_buff',1096), -(6947,21065,'tiered_cone_offensive_buff',1096), -(6948,21072,'design_crater_blast',1096), -(6949,21073,'design_fire_area',1096), -(6950,21075,'result_spore_toss_p2p',1096), -(6951,21082,'design_electro_disease_portal',1096), -(6952,21083,'design_lightning_shield',1096), -(6953,21084,'design_summon_disease_portal',1096), -(6954,21091,'design_meteor_impact',1096), -(6955,21092,'design_meteor_target',1096), -(6956,21095,'ball_lightning_bolt_p2p',1096), -(6957,21097,'cast_potion_hand_pattern_heal',1096), -(6958,21098,'cast_potion_hand_sparks',1096), -(6959,21099,'cast_potion_ring_cure',1096), -(6960,21101,'cast_resurrect_swirls',1096), -(6961,21105,'result_fire_engulfed',1096), -(6962,21106,'result_flash_heal',1096), -(6963,21109,'trdskl_vial_left',1096), -(6964,21116,'design_gf_tree_fire',1096), -(6965,21117,'design_gf_tree_fire_big',1096), -(6966,21119,'result_head_flash_sparks',1096), -(6967,21122,'cast_plague_spikes',1096), -(6968,21127,'design_feet_trail_leaves',1096), -(6969,21129,'pbae_cast_blast',1096), -(6970,21134,'cast_summon_elemental_cyclone',1096), -(6971,21137,'design_gf_cleansed_flowers',1096), -(6972,21138,'design_gf_poisoned_vines',1096), -(6973,21139,'design_guk_portal',1096), -(6974,21140,'design_power_blast',1096), -(6975,21141,'design_summon_power',1096), -(6976,21142,'griffin_fly_up',1096), -(6977,21145,'boom_sound',1096), -(6978,21151,'result_guk_axe_attack_p2p',1096), -(6979,21152,'result_guk_axe_stuck',1096), -(6980,21153,'result_snotball_p2p',1096), -(6981,21163,'turkey_cannon_blast',1096), -(6982,21164,'turkey_shoot',1096), -(6983,21172,'lights_baubles',1096), -(6984,21173,'lights_bows',1096), -(6985,21181,'result_book_hover',1096), -(6986,21183,'sound_feeding',1096), -(6987,21185,'zombie_feeding_fx',1096), -(6988,21192,'design_boiling_pool_fx',1096), -(6989,21193,'design_book_blast',1096), -(6990,21194,'design_book_summon',1096), -(6991,21195,'design_icy_shadow_portal',1096), -(6992,21197,'knocktoknees_enter',1096), -(6993,21198,'knocktoknees_idle',1096), -(6994,21201,'cast_mirror_emerge',1096), -(6995,21206,'design_light_column_grow',1096), -(6996,21209,'bite',1096), -(6997,21219,'tiered_bloodlust_swords',1096), -(6998,21220,'tiered_cloud_buff_out',1096), -(6999,21221,'tiered_divine_wave_p2p',1096), -(7000,21222,'tiered_electrified',1096), -(7001,21223,'tiered_rock_blast',1096), -(7002,21224,'tiered_weakness',1096), -(7003,21225,'tiered_whip_dark',1096), -(7004,21235,'tiered_brain_leech_p2p',1096), -(7005,21236,'tiered_dark_vanish',1096), -(7006,21237,'tiered_dark_ward',1096), -(7007,21238,'tiered_icy_cage',1096), -(7008,21248,'tiered_cold_ice_crystals',1096), -(7009,21249,'tiered_icicle_rain',1096), -(7010,21250,'tiered_skull_p2p',1096), -(7011,21251,'tiered_starnova_p2p',1096), -(7012,21261,'tiered_dark_fire',1096), -(7013,21262,'tiered_poison_spore_p2p',1096), -(7014,21263,'tiered_spirit_dragon',1096), -(7015,21273,'tiered_cast_mysticism',1096), -(7016,21274,'tiered_light_ward',1096), -(7017,21275,'tiered_mental_comet',1096), -(7018,21276,'tiered_result_mysticism',1096), -(7019,21277,'tiered_whip_circling',1096), -(7020,21287,'tiered_ice_comet_shower',1096), -(7021,21288,'tiered_sanction_of_merit',1096), -(7022,21293,'combat_art_buff',1096), -(7023,21296,'design_crow_shoulder',1096), -(7024,21297,'design_ghost_wurm_shoulder',1096), -(7025,21299,'result_dark_bubbles_rising',1096), -(7026,21307,'result_candy_stars_rising',1096), -(7027,21317,'wolf_mount_backup',1096), -(7028,21318,'wolf_mount_fall',1096), -(7029,21319,'wolf_mount_idle',1096), -(7030,21320,'wolf_mount_idle01',1096), -(7031,21321,'wolf_mount_jump',1096), -(7032,21322,'wolf_mount_jump_substitute',1096), -(7033,21323,'wolf_mount_land',1096), -(7034,21324,'wolf_mount_long_fall',1096), -(7035,21325,'wolf_mount_run',1096), -(7036,21326,'wolf_mount_turn_left',1096), -(7037,21327,'wolf_mount_turn_right',1096), -(7038,21328,'wolf_mount_walk',1096), -(7039,21338,'tiered_cloud_ring_burst',1096), -(7040,21339,'tiered_ember_sword',1096), -(7041,21340,'tiered_fire_rain',1096), -(7042,21341,'tiered_lightning_bolt_p2p',1096), -(7043,21342,'wolfmount_backup',1096), -(7044,21343,'wolfmount_fall',1096), -(7045,21344,'wolfmount_idle',1096), -(7046,21345,'wolfmount_idle01',1096), -(7047,21346,'wolfmount_jump',1096), -(7048,21347,'wolfmount_jump_substitute',1096), -(7049,21348,'wolfmount_land',1096), -(7050,21349,'wolfmount_long_fall',1096), -(7051,21350,'wolfmount_run',1096), -(7052,21351,'wolfmount_turn_left',1096), -(7053,21352,'wolfmount_turn_right',1096), -(7054,21353,'wolfmount_walk',1096), -(7055,21363,'tiered_hammer_head',1096), -(7056,21364,'tiered_power_fount',1096), -(7057,21365,'tiered_smashing_hammers',1096), -(7058,21372,'ettin_drink',1096), -(7059,21376,'tiered_color_shower',1096), -(7060,21377,'tiered_haste',1096), -(7061,21387,'tiered_bat_swarm_appear',1096), -(7062,21388,'tiered_ember_shield',1096), -(7063,21396,'result_paper_toss_p2p',1096), -(7064,21406,'tiered_jesters_cap',1096), -(7065,21414,'persist_notes_dirge',1096), -(7066,21415,'persist_notes_troub',1096), -(7067,21418,'sound_wolfmount_bare_pant',1096), -(7068,21419,'sound_wolfmount_bare_roar_3',1096), -(7069,21420,'sound_wolfmount_footstep_quiet',1096), -(7070,21421,'sound_wolfmount_idle',1096), -(7071,21422,'sound_wolfmount_jump_substitute',1096), -(7072,21423,'sound_wolfmount_land',1096), -(7073,21424,'tiered_notes_entranced',1096), -(7074,21425,'tiered_poison_notes_wave_p2p',1096), -(7075,21432,'design_vision_plane_map_bell',1096), -(7076,21442,'tiered_rift_crack',1096), -(7077,21449,'design_djinn_pod_cloud',1096), -(7078,21451,'result_water_douse',1096), -(7079,21454,'tiered_lava_column',1096), -(7080,21462,'result_arrow_ridden',1096), -(7081,21470,'result_body_fire',1096), -(7082,21471,'result_body_lightning_purple',1096), -(7083,21472,'result_body_snow',1096), -(7084,21474,'sound_ettin_1h_sword_attack',1096), -(7085,21475,'sound_ettin_1h_sword_attack01',1096), -(7086,21476,'sound_ettin_1h_sword_attack03',1096), -(7087,21477,'sound_ettin_fs',1096), -(7088,21478,'sound_ettin_attack',1096), -(7089,21479,'sound_ettin_attack01',1096), -(7090,21480,'sound_ettin_attack02',1096), -(7091,21481,'sound_ettin_attack03',1096), -(7092,21482,'sound_ettin_attack_throw_boulder',1096), -(7093,21483,'sound_ettin_cast_aoe_beneficial_end',1096), -(7094,21484,'sound_ettin_cast_aoe_beneficial_loop',1096), -(7095,21485,'sound_ettin_cast_aoe_beneficial_start',1096), -(7096,21486,'sound_ettin_cast_aoe_detrimental_end',1096), -(7097,21487,'sound_ettin_cast_aoe_detrimental_loop',1096), -(7098,21488,'sound_ettin_cast_aoe_detrimental_start',1096), -(7099,21489,'sound_ettin_cast_aoe_invocation_end',1096), -(7100,21490,'sound_ettin_cast_aoe_invocation_loop',1096), -(7101,21491,'sound_ettin_cast_aoe_invocation_start',1096), -(7102,21492,'sound_ettin_cast_aoe_wand_end',1096), -(7103,21493,'sound_ettin_cast_aoe_wand_loop',1096), -(7104,21494,'sound_ettin_cast_aoe_wand_start',1096), -(7105,21495,'sound_ettin_cast_summon_end',1096), -(7106,21496,'sound_ettin_cast_summon_loop',1096), -(7107,21497,'sound_ettin_cast_summon_start',1096), -(7108,21498,'sound_ettin_cast_targeted_beneficial_end',1096), -(7109,21499,'sound_ettin_cast_targeted_beneficial_start',1096), -(7110,21500,'sound_ettin_cast_targeted_detrimental_end',1096), -(7111,21501,'sound_ettin_cast_targeted_detrimental_start',1096), -(7112,21502,'sound_ettin_cast_targeted_wand_end',1096), -(7113,21503,'sound_ettin_cast_targeted_wand_loop',1096), -(7114,21504,'sound_ettin_cast_targeted_wand_start',1096), -(7115,21505,'sound_ettin_charge_up',1096), -(7116,21506,'sound_ettin_dodge_backhand',1096), -(7117,21507,'sound_ettin_dodge_forehand',1096), -(7118,21508,'sound_ettin_drink',1096), -(7119,21509,'sound_ettin_dual_wield_attack',1096), -(7120,21510,'sound_ettin_dual_wield_attack01',1096), -(7121,21511,'sound_ettin_dual_wield_attack02',1096), -(7122,21512,'sound_ettin_dual_wield_attack03',1096), -(7123,21513,'sound_ettin_habitat01',1096), -(7124,21514,'sound_ettin_habitat03',1096), -(7125,21515,'sound_ettin_idle01',1096), -(7126,21516,'sound_ettin_idle02',1096), -(7127,21517,'sound_ettin_knockeddowntoknees',1096), -(7128,21518,'sound_ettin_ouch_backhand',1096), -(7129,21519,'sound_ettin_ouch_forehand',1096), -(7130,21520,'sound_ettin_run',1096), -(7131,21521,'sound_ettin_shield_shove',1096), -(7132,21522,'sound_ettin_swim_idle',1096), -(7133,21523,'sound_ettin_walk',1096), -(7134,21524,'sound_ettin_whirling_attack',1096), -(7135,21525,'sound_ettin_wild_swing',1096), -(7136,21527,'sound_idle03',1096), -(7137,21528,'sound_wolfmount_idle01',1096), -(7138,21529,'sound_wolfmount_turn_left',1096), -(7139,21530,'sound_wolfmount_turn_right',1096), -(7140,21537,'fly_attack01',1096), -(7141,21538,'fly_attack02',1096), -(7142,21539,'fly_attack03',1096), -(7143,21540,'fly_death',1096), -(7144,21541,'fly_dodge',1096), -(7145,21542,'fly_ouchbackhand',1096), -(7146,21543,'fly_ouchforehand',1096), -(7147,21544,'fly_ouchthrust',1096), -(7148,21545,'fly_turnleft',1096), -(7149,21546,'fly_turnright',1096), -(7150,21548,'perch',1096), -(7151,21555,'design_book_summon_blue',1096), -(7152,21556,'design_book_summon_red',1096), -(7153,21564,'result_light_flare_p2p',1096), -(7154,21569,'cast_shadow_gather',1096), -(7155,21570,'cast_speed_trail_shadow',1096), -(7156,21574,'removemask_enter',1096), -(7157,21575,'removemask_exit',1096), -(7158,21576,'removemask_idle',1096), -(7159,21579,'attack_cage',1096), -(7160,21585,'result_cage_beam_p2p',1096), -(7161,21586,'result_spell_cage',1096), -(7162,21590,'spell_cage_hit',1096), -(7163,21593,'badger_dig',1096), -(7164,21598,'design_vekascent_lifebringer',1096), -(7165,21605,'design_vekascent_ice_bridge',1096), -(7166,21613,'result_ice_trap_swirls',1096), -(7167,21616,'cast_hot_water_douse',1096), -(7168,21625,'trdskl_pot_large',1096), -(7169,21632,'design_tofs_jail_barrier',1096), -(7170,21639,'design_tofs_water_orb',1096), -(7171,21644,'cast_scream',1096), -(7172,21645,'cast_wing_buffet',1096), -(7173,21649,'result_vines_trap',1096), -(7174,21656,'design_vekfortress_water_blast',1096), -(7175,21657,'design_vekfortress_water_warning',1096), -(7176,21658,'design_vekpools_water_gush',1096), -(7177,21659,'design_vekpools_water_warning',1096), -(7178,21666,'design_velks_breakable_wall',1096), -(7179,21667,'design_velks_breakable_wall_blue',1096), -(7180,21669,'result_ice_spikes_growing',1096), -(7181,21670,'result_zombie_slash',1096), -(7182,21674,'trdskl_meat',1096), -(7183,21677,'bow_attack01',1096), -(7184,21678,'bow_attack02',1096), -(7185,21679,'bow_attack03',1096), -(7186,21684,'exit',1096), -(7187,21689,'untrained_attack01',1096), -(7188,21690,'untrained_attack02',1096), -(7189,21691,'untrained_attack03',1096), -(7190,21699,'persist_cold_book_swarm',1096), -(7191,21700,'result_forced_shader_web',1096), -(7192,21701,'result_halas_runes_spiral',1096), -(7193,21702,'result_healthdrain_p2p',1096), -(7194,21709,'design_vekpools_flower_fx',1096), -(7195,21714,'sound_tse_attack',1096), -(7196,21715,'sound_tse_attack01',1096), -(7197,21716,'sound_tse_attack02',1096), -(7198,21717,'sound_tse_attack03',1096), -(7199,21718,'sound_tse_cast_aoe_beneficial_end',1096), -(7200,21719,'sound_tse_cast_aoe_invocation_end',1096), -(7201,21720,'sound_tse_cast_summon_end',1096), -(7202,21721,'sound_tse_cast_targeted_beneficial_end',1096), -(7203,21722,'sound_tse_cast_targeted_beneficial_loop',1096), -(7204,21723,'sound_tse_cast_targeted_beneficial_start',1096), -(7205,21724,'sound_tse_cast_targeted_detrimental_end',1096), -(7206,21725,'sound_tse_combat_enter',1096), -(7207,21726,'sound_tse_dead_enter',1096), -(7208,21727,'sound_tse_dodge_down',1096), -(7209,21728,'sound_tse_dodge_thrust',1096), -(7210,21729,'sound_tse_fly_attack',1096), -(7211,21730,'sound_tse_fly_attack01',1096), -(7212,21731,'sound_tse_fly_attack02',1096), -(7213,21732,'sound_tse_fly_attack03',1096), -(7214,21733,'sound_tse_fly_cast_targeted_beneficial_end',1096), -(7215,21734,'sound_tse_fly_cast_targeted_beneficial_loop',1096), -(7216,21735,'sound_tse_fly_cast_targeted_beneficial_start',1096), -(7217,21736,'sound_tse_fly_cast_targeted_detrimental_end',1096), -(7218,21737,'sound_tse_fly_idle',1096), -(7219,21738,'sound_tse_fly_offensive_buff',1096), -(7220,21739,'sound_tse_knockeddowntoknees',1096), -(7221,21740,'sound_tse_offensive_buff',1096), -(7222,21741,'sound_tse_ouch',1096), -(7223,21742,'sound_tse_ouch_forehand',1096), -(7224,21743,'sound_tse_ouch_thrust',1096), -(7225,21744,'sound_tse_whirling_attack',1096), -(7226,21745,'sound_tse_wild_swing',1096), -(7227,21752,'design_sullon_zek_containment',1096), -(7228,21754,'result_ice_melt',1096), -(7229,21758,'sound_hland_griffin_attack01',1096), -(7230,21759,'sound_hland_griffin_attack02',1096), -(7231,21760,'sound_hland_griffin_attack03',1096), -(7232,21761,'sound_hland_griffin_combat_enter',1096), -(7233,21762,'sound_hland_griffin_dead_enter',1096), -(7234,21763,'sound_hland_griffin_dodge_backhand',1096), -(7235,21764,'sound_hland_griffin_dodge_down',1096), -(7236,21765,'sound_hland_griffin_dodge_forehand',1096), -(7237,21766,'sound_hland_griffin_dodge_thrust',1096), -(7238,21767,'sound_hland_griffin_idle01',1096), -(7239,21768,'sound_hland_griffin_ouch',1096), -(7240,21769,'sound_hland_griffin_ouch_thrust',1096), -(7241,21770,'sound_hland_griffin_swim_walk',1096), -(7242,21771,'sound_hland_griffin_whirling_attack',1096), -(7243,21772,'sound_hland_griffin_wildswing',1096), -(7244,21773,'sound_othmir_m_1h_sword_attack',1096), -(7245,21774,'sound_othmir_m_1h_sword_attack01',1096), -(7246,21775,'sound_othmir_m_1h_sword_attack02',1096), -(7247,21776,'sound_othmir_m_1h_sword_attack03',1096), -(7248,21777,'sound_othmir_m_attack',1096), -(7249,21778,'sound_othmir_m_attack01',1096), -(7250,21779,'sound_othmir_m_attack02',1096), -(7251,21780,'sound_othmir_m_attack03',1096), -(7252,21781,'sound_othmir_m_bow_attack',1096), -(7253,21782,'sound_othmir_m_cast_targeted_beneficial_end',1096), -(7254,21783,'sound_othmir_m_cast_targeted_beneficial_loop',1096), -(7255,21784,'sound_othmir_m_cast_targeted_beneficial_start',1096), -(7256,21785,'sound_othmir_m_charge_up',1096), -(7257,21786,'sound_othmir_m_combat_idle',1096), -(7258,21787,'sound_othmir_m_dance',1096), -(7259,21788,'sound_othmir_m_dead_enter',1096), -(7260,21789,'sound_othmir_m_dual_wield_attack',1096), -(7261,21790,'sound_othmir_m_dual_wield_attack01',1096), -(7262,21791,'sound_othmir_m_dual_wield_attack02',1096), -(7263,21792,'sound_othmir_m_dual_wield_attack03',1096), -(7264,21793,'sound_othmir_m_idle02',1096), -(7265,21794,'sound_othmir_m_offensive_buff',1096), -(7266,21795,'sound_othmir_m_shield_shove',1096), -(7267,21796,'sound_othmir_m_swim_idle',1096), -(7268,21797,'sound_othmir_m_swim_run',1096), -(7269,21798,'sound_othmir_m_swim_walk',1096), -(7270,21799,'sound_othmir_m_whirling_attack',1096), -(7271,21800,'sound_othmir_m_wild_swing',1096), -(7272,21801,'writhe_idle',1096), -(7273,21809,'result_ice_shatter',1096), -(7274,21810,'result_seafoam_dissolve',1096), -(7275,21813,'cast_enraged_flames',1096), -(7276,21819,'result_hammer_shower',1096), -(7277,21823,'sound_othmir_f_1h_sword_attack',1096), -(7278,21824,'sound_othmir_f_1h_sword_attack01',1096), -(7279,21825,'sound_othmir_f_1h_sword_attack02',1096), -(7280,21826,'sound_othmir_f_1h_sword_attack03',1096), -(7281,21827,'sound_othmir_f_attack',1096), -(7282,21828,'sound_othmir_f_attack01',1096), -(7283,21829,'sound_othmir_f_attack02',1096), -(7284,21830,'sound_othmir_f_attack03',1096), -(7285,21831,'sound_othmir_f_bow_attack',1096), -(7286,21832,'sound_othmir_f_cast_targeted_beneficial_end',1096), -(7287,21833,'sound_othmir_f_cast_targeted_beneficial_start',1096), -(7288,21834,'sound_othmir_f_charge_up',1096), -(7289,21835,'sound_othmir_f_combat_idle',1096), -(7290,21836,'sound_othmir_f_dead_enter',1096), -(7291,21837,'sound_othmir_f_dual_wield_attack',1096), -(7292,21838,'sound_othmir_f_dual_wield_attack01',1096), -(7293,21839,'sound_othmir_f_dual_wield_attack02',1096), -(7294,21840,'sound_othmir_f_dual_wield_attack03',1096), -(7295,21841,'sound_othmir_f_idle02',1096), -(7296,21842,'sound_othmir_f_shield_shove',1096), -(7297,21843,'sound_othmir_f_swim_idle',1096), -(7298,21844,'sound_othmir_f_swim_walk',1096), -(7299,21845,'sound_othmir_f_whirling_attack',1096), -(7300,21846,'sound_othmir_f_wild_swing',1096), -(7301,21855,'sleep_idle',1096), -(7302,21858,'sound_othmir_fs',1096), -(7303,21859,'sound_tse_fs',1096), -(7304,21864,'cast_split_beam_flash',1096), -(7305,21865,'cast_split_copy',1096), -(7306,21868,'cast_elemental_converge',1096), -(7307,21873,'design_elemental_coalescing',1096), -(7308,21875,'result_elemental_drain_p2p',1096), -(7309,21878,'aura_purple',1096), -(7310,21879,'cast_death_beam',1096), -(7311,21880,'cast_heal_ball',1096), -(7312,21887,'sleep_enter',1096), -(7313,21888,'sleep_exit',1096), -(7314,21893,'sound_wolfpup_bf',1096), -(7315,21894,'sound_wolfpup_angry',1096), -(7316,21895,'sound_wolfpup_attack',1096), -(7317,21896,'sound_wolfpup_confused',1096), -(7318,21897,'sound_wolfpup_eat',1096), -(7319,21898,'sound_wolfpup_footstep',1096), -(7320,21899,'sound_wolfpup_hungry',1096), -(7321,21900,'sound_wolfpup_idle01',1096), -(7322,21901,'sound_wolfpup_idle02',1096), -(7323,21902,'sound_wolfpup_ouch',1096), -(7324,21903,'sound_wolfpup_sick',1096), -(7325,21904,'sound_wolfpup_trick',1096), -(7326,21910,'converse01_sit',1096), -(7327,21911,'converse02_sit',1096), -(7328,21912,'converse_sit',1096), -(7329,21914,'design_coldain_prayer_shawl',1096), -(7330,21916,'leap_enter',1096), -(7331,21917,'leap_exit',1096), -(7332,21918,'leap_idle',1096), -(7333,21922,'sound_hland_griffin_fs',1096), -(7334,21923,'sound_hland_griffin_cast_enter',1096), -(7335,21924,'sound_hland_griffin_cast_exit',1096), -(7336,21925,'sound_hland_griffin_charge_up',1096), -(7337,21932,'design_coldain_ring_adamantium',1096), -(7338,21933,'design_coldain_ring_copper',1096), -(7339,21934,'design_coldain_ring_frostreaver',1096), -(7340,21935,'design_coldain_ring_gold',1096), -(7341,21936,'design_coldain_ring_hero',1096), -(7342,21937,'design_coldain_ring_mithril',1096), -(7343,21938,'design_coldain_ring_obsidian',1096), -(7344,21939,'design_coldain_ring_platinum',1096), -(7345,21940,'design_coldain_ring_silver',1096), -(7346,21941,'design_coldain_ring_velium',1096), -(7347,21942,'design_spider_shoulder',1096), -(7348,21948,'sound_hland_griffin_wing_flap_01',1096), -(7349,21949,'sound_hland_griffin_wing_flap_02',1096), -(7350,21956,'dive',1096), -(7351,21958,'result_talon_strike',1096), -(7352,21963,'sound_hland_griffin_wild_swing',1096), -(7353,21967,'whirlingattack',1096), -(7354,21970,'cast_head_souls',1096), -(7355,21971,'cast_head_spikes',1096), -(7356,21974,'cast_tallonite_attacking',1096), -(7357,21975,'cast_tallonite_lash_spin',1096), -(7358,21979,'result_head_spikes',1096), -(7359,21987,'untrained_exit',1096), -(7360,21995,'result_ember_strike',1096), -(7361,21996,'result_ice_vine_trap',1096), -(7362,22004,'untrained_idle01',1096), -(7363,22007,'cast_nipik_spirits',1096), -(7364,22010,'cast_shadow_vortex',1096), -(7365,22014,'result_forced_shader_lichen',1096), -(7366,22015,'result_gnoll_drool',1096), -(7367,22029,'sound_vamp_fs',1096), -(7368,22030,'sound_vamp_f_idle',1096), -(7369,22031,'sound_vamp_f_untrained_attack',1096), -(7370,22032,'sound_vamp_f_untrained_attack01',1096), -(7371,22033,'sound_vamp_f_untrained_attack02',1096), -(7372,22034,'sound_vamp_f_untrained_attack03',1096), -(7373,22035,'sound_vamp_f_untrained_enter',1096), -(7374,22036,'sound_vamp_f_untrained_idle',1096), -(7375,22037,'sound_vamp_f_untrained_idle01',1096), -(7376,22038,'sound_vamp_f_whirling_attack',1096), -(7377,22044,'converse_sit01',1096), -(7378,22045,'converse_sit02',1096), -(7379,22047,'design_velkslab_flame_arch',1096), -(7380,22049,'result_red_glow',1096), -(7381,22057,'sound_vamp_m_untrained_attack',1096), -(7382,22058,'sound_vamp_m_untrained_attack01',1096), -(7383,22059,'sound_vamp_m_untrained_attack02',1096), -(7384,22060,'sound_vamp_m_untrained_attack03',1096), -(7385,22061,'sound_vamp_m_untrained_enter',1096), -(7386,22062,'sound_vamp_m_untrained_idle01',1096), -(7387,22063,'sound_vamp_m_whirling_attack',1096), -(7388,22065,'talking_idle',1096), -(7389,22072,'griffin_mount_fly_glide_left',1096), -(7390,22073,'griffin_mount_fly_glide_right',1096), -(7391,22076,'cast_foot_crush_stomp',1096), -(7392,22077,'cast_kromzek_strike',1096), -(7393,22080,'cast_targeted_beneficial_idle',1096), -(7394,22081,'cast_thunder_clap',1096), -(7395,22089,'pugilist_idle01',1096), -(7396,22092,'cast_aa_column_heal_blast',1096), -(7397,22093,'cast_aa_heal_bars',1096), -(7398,22098,'design_bat_appear',1096), -(7399,22099,'design_bat_vanish',1096), -(7400,22100,'hover_exit',1096), -(7401,22110,'untrained_slash',1096), -(7402,22111,'untrained_slash1',1096), -(7403,22112,'untrained_slash2',1096), -(7404,22113,'untrained_slash3',1096), -(7405,22120,'griffin_mount_fly_strafe_left',1096), -(7406,22121,'griffin_mount_fly_strafe_right',1096), -(7407,22123,'pugilist_idle02',1096), -(7408,22124,'result_aa_lightning_debuff',1096), -(7409,22125,'result_aa_ward_column_blast',1096), -(7410,22133,'kd_barrel_idle',1096), -(7411,22134,'kd_barrel_roll_enter',1096), -(7412,22135,'kd_barrel_roll_idle',1096), -(7413,22143,'sound_vamp_f_pugilist_idle02',1096), -(7414,22144,'sound_vamp_m_pugilist_idle02',1096), -(7415,22149,'cast_spirit_hands',1096), -(7416,22150,'cast_spirit_sands',1096), -(7417,22151,'cast_spirit_shell_buff',1096), -(7418,22154,'eat_idle',1096), -(7419,22156,'result_ice_trap_dark',1096), -(7420,22157,'result_small_net',1096), -(7421,22159,'sniff_idle',1096), -(7422,22167,'trdskl_vel_hammer',1096), -(7423,22168,'walk_sniff',1096), -(7424,22175,'design_bat_smoke_attack',1096), -(7425,22176,'design_seaweed_cluster',1096), -(7426,22186,'vamp_smoke_trail',1096), -(7427,22187,'vampire_attack',1096), -(7428,22188,'vampire_attack01',1096), -(7429,22189,'vampire_attack02',1096), -(7430,22190,'vampire_attack03',1096), -(7431,22191,'vampire_dodge',1096), -(7432,22192,'vampire_dodge01',1096), -(7433,22193,'vampire_dodge02',1096), -(7434,22194,'vampire_enter',1096), -(7435,22195,'vampire_exit',1096), -(7436,22196,'vampire_idle',1096), -(7437,22197,'vampire_idle01',1096), -(7438,22198,'vampire_idle02',1096), -(7439,22199,'vampire_ouch',1096), -(7440,22200,'vampire_ouch01',1096), -(7441,22201,'vampire_parry',1096), -(7442,22202,'vampire_recoil',1096), -(7443,22203,'vampire_whirling_attack',1096), -(7444,22211,'result_rock_crystal_cyclone',1096), -(7445,22220,'vamp_grab_slash',1096), -(7446,22223,'cast_cold_breath',1096), -(7447,22224,'cast_inhale_breath',1096), -(7448,22225,'cast_lightning_burst',1096), -(7449,22226,'cast_lightning_wings',1096), -(7450,22240,'vampire_nofx_attack',1096), -(7451,22241,'vampire_nofx_attack01',1096), -(7452,22242,'vampire_nofx_attack02',1096), -(7453,22243,'vampire_nofx_attack03',1096), -(7454,22244,'vampire_nofx_dodge',1096), -(7455,22245,'vampire_nofx_dodge01',1096), -(7456,22246,'vampire_nofx_dodge02',1096), -(7457,22247,'vampire_nofx_enter',1096), -(7458,22248,'vampire_nofx_exit',1096), -(7459,22249,'vampire_nofx_idle',1096), -(7460,22250,'vampire_nofx_idle01',1096), -(7461,22251,'vampire_nofx_idle02',1096), -(7462,22252,'vampire_nofx_ouch',1096), -(7463,22253,'vampire_nofx_ouch01',1096), -(7464,22254,'vampire_nofx_parry',1096), -(7465,22255,'vampire_nofx_recoil',1096), -(7466,22256,'vampire_nofx_whirling_attack',1096), -(7467,22257,'vampire_whirling_nofx_attack',1096), -(7468,22264,'design_seaweed_cluster_down',1096), -(7469,22266,'result_object_sparkles_white_down',1096), -(7470,22269,'barrel_blast_snd',1096), -(7471,22273,'crate_break_snd',1096), -(7472,22275,'design_rock_door_collapse',1096), -(7473,22276,'design_vine_door_grow',1096), -(7474,22277,'impact_snd',1096), -(7475,22279,'result_barrel_explode',1096), -(7476,22280,'result_crate_explode',1096), -(7477,22281,'result_heat_shimmer_dots',1096), -(7478,22282,'result_musk_spray_p2p',1096), -(7479,22283,'result_musky_object',1096), -(7480,22292,'vamp_smoke_burst',1096), -(7481,22300,'run_temp',1096), -(7482,22309,'walk_temp',1096), -(7483,22316,'design_hawk_release',1096), -(7484,22317,'fx_splash_out',1096), -(7485,22318,'fx_splash_up',1096), -(7486,22320,'result_hawk_circling',1096), -(7487,22327,'design_lava',1096), -(7488,22341,'sound_tse_rx_attack',1096), -(7489,22342,'sound_tse_rx_buff',1096), -(7490,22343,'sound_tse_rx_hit',1096), -(7491,22344,'sound_tse_fly_rx_attack',1096), -(7492,22352,'knockedtoback_idle',1096), -(7493,22361,'sound_carac_crying',1096), -(7494,22364,'admire',1096), -(7495,22369,'griffin_mount_idle02',1096), -(7496,22377,'measure',1096), -(7497,22379,'snd_lich_attack',1096), -(7498,22380,'snd_lich_attack01',1096), -(7499,22381,'snd_lich_attack02',1096), -(7500,22382,'snd_lich_attack03',1096), -(7501,22383,'snd_lich_bride_idle_lp',1096), -(7502,22384,'snd_lich_combat_enter',1096), -(7503,22385,'snd_lich_ouch',1096), -(7504,22386,'snd_lich_whirling_attack',1096), -(7505,22387,'snd_lich_wild_swing',1096), -(7506,22390,'sound_griffin_mount_idle01',1096), -(7507,22400,'worship_idle',1096), -(7508,22403,'cast_bone_toss',1096), -(7509,22407,'count',1096), -(7510,22409,'design_vel_cannon_fire',1096), -(7511,22424,'trdskl_bone',1096), -(7512,22431,'design_light_beam_fx',1096), -(7513,22432,'design_tofs_portal_base_fx',1096), -(7514,22437,'cast_sacrifice_blast',1096), -(7515,22440,'design_fire_big',1096), -(7516,22441,'design_fire_green',1096), -(7517,22442,'design_fire_small',1096), -(7518,22444,'result_mark_of_doom',1096), -(7519,22449,'cast_rallos_zek_superbuff',1096), -(7520,22452,'design_blue_fire_wall',1096), -(7521,22453,'design_red_fire_wall',1096), -(7522,22456,'sit_throne_idle',1096), -(7523,22464,'result_giant_icicle_drop',1096), -(7524,22465,'result_giant_spear_p2p',1096), -(7525,22468,'cast_hammer_hands',1096), -(7526,22487,'trdskl_ice_wand',1096), -(7527,22494,'design_massive_rock_impact',1096), -(7528,22496,'persist_blue_tagged',1096), -(7529,22497,'persist_red_tagged',1096), -(7530,22498,'result_indestructible',1096), -(7531,22499,'result_invincible',1096), -(7532,22500,'result_statue_beam_p2p',1096), -(7533,22503,'amaze',1096), -(7534,22508,'design_zek_helm_fire',1096), -(7535,22509,'grin',1096), -(7536,22510,'growl',1096), -(7537,22512,'mourn',1096), -(7538,22513,'puzzle',1096), -(7539,22514,'roar',1096), -(7540,22521,'design_distort_face',1096), -(7541,22522,'design_kd_rage_portal',1096), -(7542,22525,'cast_aa_ancestor_swirls',1096), -(7543,22526,'cast_aa_spiritfire_blast',1096), -(7544,22527,'cast_aa_spiritfire_swirls',1096), -(7545,22533,'result_aa_pulsing_ward',1096), -(7546,22534,'result_aa_totem_blast',1096), -(7547,22541,'gathering_find',1096), -(7548,22542,'griffin_mount_launch',1096), -(7549,22544,'result_aa_cold_mesh_grow',1096), -(7550,22545,'result_aa_crush_blast',1096), -(7551,22546,'result_aa_focus_spark',1096), -(7552,22547,'result_aa_manawall',1096), -(7553,22548,'result_aa_mesh_grow',1096), -(7554,22549,'result_aa_shadow_blob_p2p',1096), -(7555,22550,'result_aa_swap_hate',1096), -(7556,22553,'applaud',1096), -(7557,22556,'clap',1096), -(7558,22559,'cast_aa_lightning_cleave_blast',1096), -(7559,22560,'cast_aa_riposte',1096), -(7560,22561,'cast_aa_shield_bars',1096), -(7561,22564,'cast_aa_deflecting_daggers',1096), -(7562,22570,'result_aa_slash_hit',1096), -(7563,22571,'result_aa_watchful_eyes',1096), -(7564,22574,'cast_aa_music_ring_blast',1096), -(7565,22575,'cast_aa_notes_spiral',1096), -(7566,22581,'result_aa_note_dagger_p2p',1096), -(7567,22584,'carpet_fly_backup',1096), -(7568,22585,'carpet_fly_climb',1096), -(7569,22586,'carpet_fly_dive',1096), -(7570,22587,'carpet_fly_glide',1096), -(7571,22588,'carpet_fly_glide_left',1096), -(7572,22589,'carpet_fly_glide_right',1096), -(7573,22590,'carpet_fly_idle',1096), -(7574,22591,'carpet_fly_run',1096), -(7575,22592,'carpet_fly_strafe_left',1096), -(7576,22593,'carpet_fly_strafe_right',1096), -(7577,22594,'carpet_fly_turn_left',1096), -(7578,22595,'carpet_fly_turn_right',1096), -(7579,22596,'carpet_fly_up',1096), -(7580,22597,'carpet_fly_walk',1096), -(7581,22600,'carpet_fly_down',1096), -(7582,22603,'conjure',1096), -(7583,22604,'conjure_enter',1096), -(7584,22605,'conjure_exit',1096), -(7585,22609,'pray',1096), -(7586,22614,'climb',1096), -(7587,22617,'design_prexus_water_pillar',1096), -(7588,22621,'snd_twolf_attack',1096), -(7589,22622,'snd_twolf_attack_01',1096), -(7590,22623,'snd_twolf_attack_02',1096), -(7591,22624,'snd_twolf_attack_03',1096), -(7592,22625,'snd_twolf_attk',1096), -(7593,22626,'snd_twolf_attk_01',1096), -(7594,22627,'snd_twolf_attk_02',1096), -(7595,22628,'snd_twolf_cast_loop',1096), -(7596,22629,'snd_twolf_charge_up',1096), -(7597,22630,'snd_twolf_death',1096), -(7598,22631,'snd_twolf_dodge_back',1096), -(7599,22632,'snd_twolf_dodge_down',1096), -(7600,22633,'snd_twolf_dodge_fore',1096), -(7601,22634,'snd_twolf_dodge_thrust',1096), -(7602,22635,'snd_twolf_eat_idle',1096), -(7603,22636,'snd_twolf_habitat01',1096), -(7604,22637,'snd_twolf_habitat02',1096), -(7605,22638,'snd_twolf_idle_01',1096), -(7606,22639,'snd_twolf_idle_02',1096), -(7607,22640,'snd_twolf_ouch',1096), -(7608,22641,'snd_twolf_ouch_knockknees',1096), -(7609,22642,'snd_twolf_ouch_thrust',1096), -(7610,22643,'snd_twolf_sniff_idle',1096), -(7611,22644,'snd_twolf_walk_sniff',1096), -(7612,22645,'snd_twolf_whirl',1096), -(7613,22646,'snd_twolf_wildswing',1096), -(7614,22649,'cast_aa_magic_overflow',1096), -(7615,22650,'cast_aa_manasoul',1096), -(7616,22651,'cast_aa_mystic_field',1096), -(7617,22652,'cast_aa_self_lifetap',1096), -(7618,22658,'look',1096), -(7619,22659,'result_aa_lightning_clash',1096), -(7620,22660,'result_aa_power_convert',1096), -(7621,22661,'result_aa_protection_ward',1096), -(7622,22662,'result_aa_soul_burn',1096), -(7623,22669,'design_fortress_docks_bluefire',1096), -(7624,22670,'design_table_explode',1096), -(7625,22685,'trdskl_cane',1096), -(7626,22686,'trdskl_cane_sit',1096), -(7627,22693,'design_blood_dervish',1096), -(7628,22694,'design_blood_fountain_blast',1096), -(7629,22695,'design_blood_fountain_fx',1096), -(7630,22696,'design_electric_barrier',1096), -(7631,22697,'design_lightning_floor',1096), -(7632,22699,'result_retaliation',1096), -(7633,22700,'result_zek_divine',1096), -(7634,22701,'result_zek_elemental',1096), -(7635,22702,'result_zek_noxious',1096), -(7636,22711,'snd_gnm_racemnt_idle_01',1096), -(7637,22712,'snd_gnm_racemnt_run_01',1096), -(7638,22713,'snd_gnm_racemnt_walk_01',1096), -(7639,22734,'temp_idle01',1096), -(7640,22735,'temp_idle02',1096), -(7641,22736,'temp_idle03',1096), -(7642,22749,'sound_hland_griffin_mount_fly_dive',1096), -(7643,22756,'design_mount_explode',1096), -(7644,22757,'design_speed_boost_buff',1096), -(7645,22758,'design_speed_drop_twister_debuff',1096), -(7646,22759,'design_timestop_buff',1096), -(7647,22760,'design_twister_blaster_buff',1096), -(7648,22763,'snd_gnomerace_ringwhoosh',1096), -(7649,22766,'cast_aa_blast_tube',1096), -(7650,22772,'result_aa_fire_comet',1096), -(7651,22773,'result_aa_taunt',1096), -(7652,22778,'cast_yelinak_ice_breath',1096), -(7653,22783,'sit_chair',1096), -(7654,22796,'spin_it',1096), -(7655,22799,'cast_aa_whip_circling',1096), -(7656,22806,'design_dark_ice_wall',1096), -(7657,22808,'knockedtoback_enter',1096), -(7658,22809,'knockedtoback_exit',1096), -(7659,22816,'design_aqua_crystals_fall',1096), -(7660,22817,'design_crysal_wall',1096), -(7661,22818,'design_crystal_wall',1096), -(7662,22819,'design_green_crystals_fall',1096), -(7663,22820,'design_purple_crystals_fall',1096), -(7664,22835,'wall_destroy',1096), -(7665,22843,'result_mug_hit',1096), -(7666,22857,'trdskl_mug_r',1096), -(7667,22864,'horse_fly_backup',1096), -(7668,22865,'horse_fly_climb',1096), -(7669,22866,'horse_fly_dive',1096), -(7670,22867,'horse_fly_glide',1096), -(7671,22868,'horse_fly_glide_left',1096), -(7672,22869,'horse_fly_glide_right',1096), -(7673,22870,'horse_fly_idle',1096), -(7674,22871,'horse_fly_run',1096), -(7675,22872,'horse_fly_strafe_left',1096), -(7676,22873,'horse_fly_strafe_right',1096), -(7677,22874,'horse_fly_turn_left',1096), -(7678,22875,'horse_fly_turn_right',1096), -(7679,22876,'horse_fly_up',1096), -(7680,22877,'horse_fly_walk',1096), -(7681,22879,'result_ice_strike',1096), -(7682,22887,'lose_spin',1096), -(7683,22888,'pegasus_mount_backup',1096), -(7684,22889,'pegasus_mount_fall',1096), -(7685,22890,'pegasus_mount_fly_backup',1096), -(7686,22891,'pegasus_mount_fly_climb',1096), -(7687,22892,'pegasus_mount_fly_dive',1096), -(7688,22893,'pegasus_mount_fly_down',1096), -(7689,22894,'pegasus_mount_fly_glide',1096), -(7690,22895,'pegasus_mount_fly_glide_left',1096), -(7691,22896,'pegasus_mount_fly_glide_right',1096), -(7692,22897,'pegasus_mount_fly_idle',1096), -(7693,22898,'pegasus_mount_fly_run',1096), -(7694,22899,'pegasus_mount_fly_strafe_left',1096), -(7695,22900,'pegasus_mount_fly_strafe_right',1096), -(7696,22901,'pegasus_mount_fly_turn_left',1096), -(7697,22902,'pegasus_mount_fly_turn_right',1096), -(7698,22903,'pegasus_mount_fly_up',1096), -(7699,22904,'pegasus_mount_fly_walk',1096), -(7700,22905,'pegasus_mount_idle',1096), -(7701,22906,'pegasus_mount_jump',1096), -(7702,22907,'pegasus_mount_jump_substitute',1096), -(7703,22908,'pegasus_mount_land',1096), -(7704,22909,'pegasus_mount_long_fall',1096), -(7705,22910,'pegasus_mount_run',1096), -(7706,22911,'pegasus_mount_turn_left',1096), -(7707,22912,'pegasus_mount_turn_right',1096), -(7708,22913,'pegasus_mount_walk',1096), -(7709,22916,'sound_coins',1096), -(7710,22927,'sound_win',1096), -(7711,22929,'win_fx',1096), -(7712,22930,'win_spin',1096), -(7713,22938,'roll_it',1096), -(7714,22945,'design_chronoportal_rift',1096), -(7715,22955,'sound_bite_trex',1096), -(7716,22956,'sound_breathe_trex',1096), -(7717,22960,'sound_idle01_trex',1096), -(7718,22961,'sound_idle02_trex',1096), -(7719,22962,'sound_idle_trex',1096), -(7720,22963,'sound_kick_trex',1096), -(7721,22965,'sound_ouch_trex',1096), -(7722,22973,'result_ice_strike_targeted',1096), -(7723,22980,'flame_burst_lh',1096), -(7724,22981,'flame_burst_rh',1096), -(7725,22989,'pegasus_mount_fly_fall',1096), -(7726,22999,'snd_warboar_fs',1096), -(7727,23000,'snd_warboar_attack',1096), -(7728,23001,'snd_warboar_attack01',1096), -(7729,23002,'snd_warboar_attack02',1096), -(7730,23003,'snd_warboar_attack03',1096), -(7731,23004,'snd_warboar_cast_targeted_beneficial_end',1096), -(7732,23005,'snd_warboar_cast_targeted_beneficial_start',1096), -(7733,23006,'snd_warboar_charge_up',1096), -(7734,23007,'snd_warboar_combat_enter',1096), -(7735,23008,'snd_warboar_dead_enter',1096), -(7736,23009,'snd_warboar_dodge_backhand',1096), -(7737,23010,'snd_warboar_dodge_forehand',1096), -(7738,23011,'snd_warboar_dodge_thrust',1096), -(7739,23012,'snd_warboar_idle',1096), -(7740,23013,'snd_warboar_idle01',1096), -(7741,23014,'snd_warboar_idle02',1096), -(7742,23015,'snd_warboar_kick',1096), -(7743,23016,'snd_warboar_knockeddowntoknees_01',1096), -(7744,23017,'snd_warboar_knockeddowntoknees_02',1096), -(7745,23018,'snd_warboar_knockedtoback',1096), -(7746,23019,'snd_warboar_knockedtoback_getup',1096), -(7747,23020,'snd_warboar_ouch',1096), -(7748,23021,'snd_warboar_ouch_backhand',1096), -(7749,23022,'snd_warboar_ouch_forehand',1096), -(7750,23023,'snd_warboar_shield_shove',1096), -(7751,23024,'snd_warboar_swim_walk',1096), -(7752,23025,'snd_warboar_whirling_attack',1096), -(7753,23026,'snd_warboar_wild_swing',1096), -(7754,23027,'snd_warboar_wildswing',1096), -(7755,23037,'snd_tallon_zek_arrow_get',1096), -(7756,23038,'snd_tallon_zek_bow_pull',1096), -(7757,23039,'snd_tallon_zek_bowshot_01',1096), -(7758,23040,'snd_tallon_zek_bowshot_02',1096), -(7759,23041,'snd_tallon_zek_bowshot_03',1096), -(7760,23049,'result_chain_root_simple',1096), -(7761,23050,'result_chain_root_simple_sparkle',1096), -(7762,23057,'design_eastern_wastes_spire_portal',1096), -(7763,23058,'design_gnomish_wormhole',1096), -(7764,23059,'design_gnomish_wormhole_exit',1096), -(7765,23066,'design_spear_drop',1096), -(7766,23067,'design_spear_idle',1096), -(7767,23071,'cast_poison_sands',1096), -(7768,23078,'snd_sullon_attack_rx',1096), -(7769,23079,'snd_sullon_buff_rx',1096), -(7770,23080,'snd_sullon_death_rx',1096), -(7771,23081,'snd_sullon_ouch_rx',1096), -(7772,23089,'persist_notes_green',1096), -(7773,23090,'persist_notes_purple',1096), -(7774,23092,'snd_bodyfall',1096), -(7775,23094,'snd_pegasus_dive_vox',1096), -(7776,23095,'snd_pegasus_wingflap_01',1096), -(7777,23096,'snd_pegasus_wingflap_02',1096), -(7778,23101,'snd_tallon_buff_rx',1096), -(7779,23102,'snd_tallon_death_rx',1096), -(7780,23103,'snd_tallon_ouch_rx',1096), -(7781,23104,'snd_vallon_attack_rx',1096), -(7782,23105,'snd_vallon_buff_rx',1096), -(7783,23106,'snd_vallon_dead_rx',1096), -(7784,23107,'snd_vallon_ouch_rx',1096), -(7785,23114,'fire_trail_fx',1144), -(7786,23116,'listening',1144), -(7787,23143,'talking',1144), -(7788,23170,'sound_terrorbird_mount_bare_pant',1144), -(7789,23171,'sound_terrorbird_mount_footstep_quiet',1144), -(7790,23172,'sound_terrorbird_mount_idle',1144), -(7791,23173,'sound_terrorbird_mount_idle01',1144), -(7792,23174,'sound_terrorbird_mount_jump_substitute',1144), -(7793,23175,'sound_terrorbird_mount_land',1144), -(7794,23176,'sound_terrorbird_mount_turn_left',1144), -(7795,23177,'sound_terrorbird_mount_turn_right',1144), -(7796,23185,'terrorbird_mount',1144), -(7797,23186,'terrorbird_mount_backup',1144), -(7798,23187,'terrorbird_mount_fall',1144), -(7799,23188,'terrorbird_mount_idle',1144), -(7800,23189,'terrorbird_mount_idle01',1144), -(7801,23190,'terrorbird_mount_jump',1144), -(7802,23191,'terrorbird_mount_jump_substitute',1144), -(7803,23192,'terrorbird_mount_land',1144), -(7804,23193,'terrorbird_mount_long_fall',1144), -(7805,23194,'terrorbird_mount_run',1144), -(7806,23195,'terrorbird_mount_turn_left',1144), -(7807,23196,'terrorbird_mount_turn_right',1144), -(7808,23197,'terrorbird_mount_walk',1144), -(7809,23204,'feather_fx',1144), -(7810,23207,'small_feather_fx',1144), -(7811,23215,'komodo_mount_backup',1144), -(7812,23216,'komodo_mount_fall',1144), -(7813,23217,'komodo_mount_idle',1144), -(7814,23218,'komodo_mount_jump',1144), -(7815,23219,'komodo_mount_jump_substitute',1144), -(7816,23220,'komodo_mount_land',1144), -(7817,23221,'komodo_mount_long_fall',1144), -(7818,23222,'komodo_mount_run',1144), -(7819,23223,'komodo_mount_turn_left',1144), -(7820,23224,'komodo_mount_turn_right',1144), -(7821,23225,'komodo_mount_walk',1144), -(7822,23226,'raptor_mount_backup',1144), -(7823,23227,'raptor_mount_fall',1144), -(7824,23228,'raptor_mount_idle',1144), -(7825,23229,'raptor_mount_jump',1144), -(7826,23230,'raptor_mount_jump_substitute',1144), -(7827,23231,'raptor_mount_land',1144), -(7828,23232,'raptor_mount_long_fall',1144), -(7829,23233,'raptor_mount_run',1144), -(7830,23234,'raptor_mount_turn_left',1144), -(7831,23235,'raptor_mount_turn_right',1144), -(7832,23236,'raptor_mount_walk',1144), -(7833,23247,'snd_terrorbird_mount_idle_01',1144), -(7834,23248,'snd_terrorbird_mount_idle_02',1144), -(7835,23249,'snd_terrorbird_mount_idle_03',1144), -(7836,23250,'snd_terrorbird_mount_idle_04',1144), -(7837,23251,'snd_terrorbird_mount_jump_substitute',1144), -(7838,23259,'result_spiritual_vanish',1144), -(7839,23270,'snd_terrorbird_mount_wingflap_01',1144), -(7840,23281,'snd_raptor_mount_idle_01',1144), -(7841,23282,'snd_raptor_mount_idle_02',1144), -(7842,23283,'snd_raptor_mount_idle_03',1144), -(7843,23284,'snd_raptor_mount_idle_04',1144), -(7844,23285,'snd_raptor_mount_jump_substitute',1144), -(7845,23286,'snd_raptor_mount_wingflap_01',1144), -(7846,23293,'design_pow_rocky_uprising',1144), -(7847,23301,'komodo_mount_fly_glide_left',1144), -(7848,23302,'komodo_mount_fly_glide_right',1144), -(7849,23303,'komodo_mount_glide',1144), -(7850,23304,'raptor_mount_fly_glide_left',1144), -(7851,23305,'raptor_mount_fly_glide_right',1144), -(7852,23306,'raptor_mount_glide',1144), -(7853,23307,'raptor_mount_glide_left',1144), -(7854,23308,'raptor_mount_glide_right',1144), -(7855,23342,'terrorbird_mount_glide',1144), -(7856,23343,'walk_kilt',1144), -(7857,23351,'komodo_mount_glide_left',1144), -(7858,23352,'komodo_mount_glide_right',1144), -(7859,23359,'hover_enter',1144), -(7860,23360,'hover_walk',1144), -(7861,23362,'result_cold_fog_ground',1144), -(7862,23363,'result_fire_frostfell_candy',1144), -(7863,23364,'result_fire_frosty_swirls',1144), -(7864,23387,'snd_wolfmount_jump',1144), -(7865,23394,'design_launch_fireworks',1144), -(7866,23398,'snd_komodo_mount_idle_01',1144), -(7867,23399,'snd_komodo_mount_idle_02',1144), -(7868,23400,'snd_komodo_mount_jump_substitute',1144), -(7869,23410,'snd_komodo_mount_glide',1144), -(7870,23417,'design_hologram01',1144), -(7871,23418,'design_hologram02',1144), -(7872,23419,'design_hologram03',1144), -(7873,23420,'design_hologram04',1144), -(7874,23430,'snd_evil_komodo_mount_idle_01',1144), -(7875,23431,'snd_evil_komodo_mount_idle_02',1144), -(7876,23438,'design_parachute',1144), -(7877,23440,'mount_summon_komodo_snd',1144), -(7878,23441,'mount_summon_raptor_snd',1144), -(7879,23442,'mount_summon_terrorbird_snd',1144), -(7880,23445,'snd_komodo_mount_jump',1144), -(7881,23447,'snd_raptor_mount_jump',1144), -(7882,23455,'snd_terrorbird_mount_jump',1144), -(7883,23472,'takeoff_trail',1144), -(7884,23479,'design_pow_blur_essence',1144), -(7885,23486,'design_ballista_fire',1144), -(7886,23487,'design_ballista_load',1144), -(7887,23488,'design_drake_pet',1144), -(7888,23489,'design_pow_battle_scene',1144), -(7889,23496,'design_bixie_face_splat',1144), -(7890,23504,'result_dusty_black',1144), -(7891,23512,'raptor_idle01',1144), -(7892,23513,'raptor_mount_idle02',1144), -(7893,23520,'fae_mount_backup',1144), -(7894,23521,'fae_mount_fall',1144), -(7895,23522,'fae_mount_fly_backup',1144), -(7896,23523,'fae_mount_fly_climb',1144), -(7897,23524,'fae_mount_fly_dive',1144), -(7898,23525,'fae_mount_fly_down',1144), -(7899,23526,'fae_mount_fly_glide',1144), -(7900,23527,'fae_mount_fly_glide_left',1144), -(7901,23528,'fae_mount_fly_glide_right',1144), -(7902,23529,'fae_mount_fly_idle',1144), -(7903,23530,'fae_mount_fly_run',1144), -(7904,23531,'fae_mount_fly_strafe_left',1144), -(7905,23532,'fae_mount_fly_strafe_right',1144), -(7906,23533,'fae_mount_fly_turn_left',1144), -(7907,23534,'fae_mount_fly_turn_right',1144), -(7908,23535,'fae_mount_fly_up',1144), -(7909,23536,'fae_mount_fly_walk',1144), -(7910,23537,'fae_mount_idle',1144), -(7911,23538,'fae_mount_jump',1144), -(7912,23539,'fae_mount_land',1144), -(7913,23540,'fae_mount_long_fall',1144), -(7914,23541,'fae_mount_run',1144), -(7915,23542,'fae_mount_turn_left',1144), -(7916,23543,'fae_mount_turn_right',1144), -(7917,23544,'fae_mount_walk',1144), -(7918,23572,'trail_fx',1144), -(7919,23579,'design_hands_trail_clockwork',1144), -(7920,23580,'design_octopus_pet',1144), -(7921,23581,'fae_mount_fly_fall',1144), -(7922,23582,'fae_mount_jump_substitute',1144), -(7923,23604,'snd_war_general_1h_attack',1144), -(7924,23605,'snd_war_general_1h_attack01',1144), -(7925,23606,'snd_war_general_1h_attack02',1144), -(7926,23607,'snd_war_general_1h_attack03',1144), -(7927,23608,'snd_war_general_attack',1144), -(7928,23609,'snd_war_general_attack01',1144), -(7929,23610,'snd_war_general_attack02',1144), -(7930,23611,'snd_war_general_attack03',1144), -(7931,23612,'snd_war_general_offensive_buff',1144), -(7932,23613,'snd_war_general_wing_flap',1144), -(7933,23626,'spin_con1',1144), -(7934,23627,'spin_con10',1144), -(7935,23628,'spin_con11',1144), -(7936,23629,'spin_con12',1144), -(7937,23630,'spin_con13',1144), -(7938,23631,'spin_con14',1144), -(7939,23632,'spin_con15',1144), -(7940,23633,'spin_con16',1144), -(7941,23634,'spin_con2',1144), -(7942,23635,'spin_con3',1144), -(7943,23636,'spin_con4',1144), -(7944,23637,'spin_con5',1144), -(7945,23638,'spin_con6',1144), -(7946,23639,'spin_con7',1144), -(7947,23640,'spin_con8',1144), -(7948,23641,'spin_con9',1144), -(7949,23642,'squirrel_mount_backup',1144), -(7950,23643,'squirrel_mount_fall',1144), -(7951,23644,'squirrel_mount_glide',1144), -(7952,23645,'squirrel_mount_glide_left',1144), -(7953,23646,'squirrel_mount_glide_right',1144), -(7954,23647,'squirrel_mount_idle',1144), -(7955,23648,'squirrel_mount_idle01',1144), -(7956,23649,'squirrel_mount_jump',1144), -(7957,23650,'squirrel_mount_jump_substitute',1144), -(7958,23651,'squirrel_mount_land',1144), -(7959,23652,'squirrel_mount_long_fall',1144), -(7960,23653,'squirrel_mount_run',1144), -(7961,23654,'squirrel_mount_turn_left',1144), -(7962,23655,'squirrel_mount_turn_right',1144), -(7963,23656,'squirrel_mount_walk',1144), -(7964,23657,'wand_attack',1144), -(7965,23658,'wand_idle',1144), -(7966,23666,'result_blue_aura',1144), -(7967,23667,'result_golden_aura',1144), -(7968,23668,'result_poppy_trail',1144), -(7969,23669,'result_red_aura',1144), -(7970,23684,'snd_war_general_dead_enter',1144), -(7971,23685,'snd_war_general_knockeddowntoknees',1144), -(7972,23686,'snd_war_general_whirling_attack',1144), -(7973,23687,'snd_war_general_wild_swing',1144), -(7974,23690,'cast_fae_flight_grant_fx',1144), -(7975,23695,'design_rock_launch',1144), -(7976,23697,'result_cyclops_eye_debuff',1144), -(7977,23698,'result_fae_dark_mount_fx',1144), -(7978,23699,'result_fae_light_mount_fx',1144), -(7979,23700,'result_falcon_god_egg_spit_p2p',1144), -(7980,23701,'screech_fx',1144), -(7981,23703,'shield_bash_enter',1144), -(7982,23704,'shield_bash_exit',1144), -(7983,23706,'snd_falcon_god_fs',1144), -(7984,23707,'snd_falcon_god_wing_flap_01',1144), -(7985,23720,'snd_war_general_1h_sword_enter',1144), -(7986,23721,'snd_war_general_fs',1144), -(7987,23722,'snd_war_general_combat_enter',1144), -(7988,23723,'snd_war_general_idle01',1144), -(7989,23724,'snd_war_general_idle02',1144), -(7990,23725,'snd_war_general_ouch_forehand',1144), -(7991,23738,'writhe_enter',1144), -(7992,23745,'fire_magic',1144), -(7993,23750,'snd_falcon_god_attack02_vox',1144), -(7994,23751,'snd_falcon_god_attack03_vox',1144), -(7995,23752,'snd_falcon_god_attack_vox',1144), -(7996,23753,'snd_falcon_god_cast_vox',1144), -(7997,23754,'snd_falcon_god_combat_enter_vox',1144), -(7998,23755,'snd_falcon_god_idle01',1144), -(7999,23756,'snd_falcon_god_idle02_vox',1144), -(8000,23757,'snd_falcon_god_offensive_buff',1144), -(8001,23759,'snd_squirrel_mount_glide',1144), -(8002,23760,'snd_squirrel_mount_idle',1144), -(8003,23761,'snd_squirrel_mount_idle_01',1144), -(8004,23762,'snd_squirrel_mount_jump',1144), -(8005,23763,'snd_squirrel_mount_jump_substitute',1144), -(8006,23788,'squirrel_mount_run01',1144), -(8007,23789,'trdskl_acorn',1144), -(8008,23790,'trdskl_skull',1144), -(8009,23797,'fire_magic_blue',1144), -(8010,23798,'fire_magic_green',1144), -(8011,23799,'fire_magic_purple',1144), -(8012,23800,'fire_magic_red',1144), -(8013,23801,'gas_torch_flame',1144), -(8014,23812,'snd_falcon_god_bodyfall',1144), -(8015,23817,'cast_shoot_fire_arrows',1144), -(8016,23818,'cast_slash_trail',1144), -(8017,23819,'cast_soul_attack_blast',1144), -(8018,23823,'result_fire_arrow_storm',1144), -(8019,23828,'snd_rallos_zek_1h_sword_attack',1144), -(8020,23829,'snd_rallos_zek_1h_sword_attack01',1144), -(8021,23830,'snd_rallos_zek_1h_sword_attack02',1144), -(8022,23831,'snd_rallos_zek_1h_sword_attack03',1144), -(8023,23832,'snd_rallos_zek_fs',1144), -(8024,23833,'snd_rallos_zek_shield_bash',1144), -(8025,23834,'snd_rallos_zek_shield_bash_exit',1144), -(8026,23835,'snd_rallos_zek_shield_shove',1144), -(8027,23836,'snd_rallos_zek_whirling_attack01',1144), -(8028,23837,'snd_rallos_zek_whirling_attack02',1144), -(8029,23838,'snd_rallos_zek_whirling_attack03',1144), -(8030,23839,'snd_rallos_zek_whoosh',1144), -(8031,23840,'snd_rallos_zek_wild_swing',1144), -(8032,23843,'cast_axe_fire_attack',1144), -(8033,23844,'cast_axe_flurry',1144), -(8034,23847,'cast_shooting_axes',1144), -(8035,23848,'cast_slashing_axes',1144), -(8036,23853,'cast_shield_slam_blast',1144), -(8037,23856,'cast_fire_teleport',1144), -(8038,23857,'cast_godly_port',1144), -(8039,23862,'design_embedded_swords',1144), -(8040,23863,'design_swords_exit',1144), -(8041,23866,'angler_mount_backup',1144), -(8042,23867,'angler_mount_fall',1144), -(8043,23868,'angler_mount_glide',1144), -(8044,23869,'angler_mount_glide_left',1144), -(8045,23870,'angler_mount_glide_right',1144), -(8046,23871,'angler_mount_idle',1144), -(8047,23872,'angler_mount_idle01',1144), -(8048,23873,'angler_mount_idle02',1144), -(8049,23874,'angler_mount_jump',1144), -(8050,23875,'angler_mount_jump_substitute',1144), -(8051,23876,'angler_mount_land',1144), -(8052,23877,'angler_mount_long_fall',1144), -(8053,23878,'angler_mount_run',1144), -(8054,23879,'angler_mount_run01',1144), -(8055,23880,'angler_mount_turn_left',1144), -(8056,23881,'angler_mount_turn_right',1144), -(8057,23882,'angler_mount_walk',1144), -(8058,23887,'design_swords_enter',1144), -(8059,23888,'design_swords_strike',1144), -(8060,23889,'design_zek_death_fx',1144), -(8061,23891,'result_power_infused',1144), -(8062,23892,'result_rallos_lightning_p2p',1144), -(8063,23895,'snd_angler_mount_glide',1144), -(8064,23896,'snd_angler_mount_idle',1144), -(8065,23897,'snd_angler_mount_idle_01',1144), -(8066,23898,'snd_angler_mount_jump',1144), -(8067,23899,'snd_angler_mount_jump_substitute',1144), -(8068,23926,'squirrel_mount_idle02',1144), -(8069,23929,'cast_godly_port_exit',1144), -(8070,23934,'design_result_white_out',1144), -(8071,23936,'result_death_charge_blast',1144), -(8072,23943,'design_pow_rock_blast',1144), -(8073,23946,'cast_gather_fx',1144), -(8074,23952,'result_erollisi_bow_attack_p2p',1144), -(8075,23955,'breath_fx',1144), -(8076,23960,'eye_fx',1144), -(8077,23962,'port_down_fx',1144), -(8078,23963,'result_shadow_shatter',1144), -(8079,23964,'result_shadow_sphere_p2p',1144), -(8080,23971,'design_sol_statue_breaking',1144), -(8081,23972,'design_sol_statue_essence',1144), -(8082,23973,'design_sol_statue_evil_essence',1144), -(8083,23975,'result_fire_engulfed_dark',1144), -(8084,23976,'result_shadow_streaks',1144), -(8085,23983,'design_frostfell_portal_new',1144), -(8086,23987,'snd_angler_mount_idle02',1144), -(8087,23988,'snd_angler_mount_scratch',1144), -(8088,23989,'snd_angler_mount_vox_01',1144), -(8089,23990,'snd_angler_mount_vox_02',1144), -(8090,23991,'snd_angler_mount_vox_03',1144), -(8091,23992,'snd_angler_mount_vox_short',1144), -(8092,24000,'result_object_sparkles_black',1144), -(8093,24001,'result_object_sparkles_gold',1144), -(8094,24002,'result_object_sparkles_pink',1144), -(8095,24003,'result_object_sparkles_purple',1144), -(8096,24010,'dance_female',1144), -(8097,24046,'trdskl_tinker_hands',1144), -(8098,24054,'result_exorcise_evil',1144), -(8099,24061,'death01_enter',1144), -(8100,24062,'death01_exit',1144), -(8101,24063,'death01_idle',1144), -(8102,24064,'1h_sword_run',1144), -(8103,24067,'cast1',1144), -(8104,24075,'result_flash_bomb_vanish',1144), -(8105,24076,'result_lifetap_heart_p2p',1144), -(8106,24084,'player_wing_mount_backup',1144), -(8107,24085,'player_wing_mount_fall',1144), -(8108,24086,'player_wing_mount_fly_backup',1144), -(8109,24087,'player_wing_mount_fly_climb',1144), -(8110,24088,'player_wing_mount_fly_dive',1144), -(8111,24089,'player_wing_mount_fly_down',1144), -(8112,24090,'player_wing_mount_fly_glide',1144), -(8113,24091,'player_wing_mount_fly_glide_left',1144), -(8114,24092,'player_wing_mount_fly_glide_right',1144), -(8115,24093,'player_wing_mount_fly_idle',1144), -(8116,24094,'player_wing_mount_fly_run',1144), -(8117,24095,'player_wing_mount_fly_strafe_left',1144), -(8118,24096,'player_wing_mount_fly_strafe_right',1144), -(8119,24097,'player_wing_mount_fly_turn_left',1144), -(8120,24098,'player_wing_mount_fly_turn_right',1144), -(8121,24099,'player_wing_mount_fly_up',1144), -(8122,24100,'player_wing_mount_fly_walk',1144), -(8123,24101,'player_wing_mount_idle',1144), -(8124,24102,'player_wing_mount_jump',1144), -(8125,24103,'player_wing_mount_land',1144), -(8126,24104,'player_wing_mount_long_fall',1144), -(8127,24105,'player_wing_mount_run',1144), -(8128,24106,'player_wing_mount_turn_left',1144), -(8129,24107,'player_wing_mount_turn_right',1144), -(8130,24108,'player_wing_mount_walk',1144), -(8131,24113,'chop_ground_digging',1144), -(8132,24114,'chop_ground_success',1144), -(8133,24121,'design_glow_eyes_green',1190), -(8134,24124,'sit_drink',1190), -(8135,24132,'result_flash_bomb_appear',1190), -(8136,24140,'reforge_nature_tier01',1190), -(8137,24141,'reforge_nature_tier02',1190), -(8138,24142,'reforge_nature_tier03',1190), -(8139,24143,'reforge_nature_tier04',1190), -(8140,24144,'reforge_nature_tier05',1190), -(8141,24152,'reforge_fire_tier01',1190), -(8142,24153,'reforge_fire_tier02',1190), -(8143,24154,'reforge_fire_tier03',1190), -(8144,24155,'reforge_fire_tier04',1190), -(8145,24156,'reforge_fire_tier05',1190), -(8146,24164,'reforge_ice_tier01',1190), -(8147,24165,'reforge_ice_tier02',1190), -(8148,24166,'reforge_ice_tier03',1190), -(8149,24167,'reforge_ice_tier04',1190), -(8150,24168,'reforge_ice_tier05',1190), -(8151,24176,'reforge_blood_tier01',1190), -(8152,24177,'reforge_blood_tier02',1190), -(8153,24178,'reforge_blood_tier03',1190), -(8154,24179,'reforge_blood_tier04',1190), -(8155,24180,'reforge_blood_tier05',1190), -(8156,24187,'hassan_chop',1190), -(8157,24195,'reforge_acid_tier01',1190), -(8158,24196,'reforge_acid_tier02',1190), -(8159,24197,'reforge_acid_tier03',1190), -(8160,24198,'reforge_acid_tier04',1190), -(8161,24199,'reforge_acid_tier05',1190), -(8162,24200,'reforge_runic_tier01',1190), -(8163,24201,'reforge_runic_tier02',1190), -(8164,24202,'reforge_runic_tier03',1190), -(8165,24203,'reforge_runic_tier04',1190), -(8166,24204,'reforge_runic_tier05',1190), -(8167,24212,'reforge_electricity_tier01',1190), -(8168,24213,'reforge_electricity_tier02',1190), -(8169,24214,'reforge_electricity_tier03',1190), -(8170,24215,'reforge_electricity_tier04',1190), -(8171,24216,'reforge_electricity_tier05',1190), -(8172,24223,'dead_enter01',1190), -(8173,24224,'death01',1190), -(8174,24225,'horse_attack',1190), -(8175,24226,'horse_attack01',1190), -(8176,24227,'horse_attack02',1190), -(8177,24228,'horse_attack03',1190), -(8178,24229,'horse_cast',1190), -(8179,24230,'horse_combat_cast',1190), -(8180,24231,'horse_combat_enter',1190), -(8181,24232,'horse_combat_exit',1190), -(8182,24233,'horse_death',1190), -(8183,24234,'horse_death01',1190), -(8184,24235,'horse_ouch',1190), -(8185,24236,'horse_ouch01',1190), -(8186,24237,'horse_wild_swing',1190), -(8187,24239,'reforge_pestilence_tier01',1190), -(8188,24240,'reforge_pestilence_tier02',1190), -(8189,24241,'reforge_pestilence_tier03',1190), -(8190,24242,'reforge_pestilence_tier04',1190), -(8191,24243,'reforge_pestilence_tier05',1190), -(8192,24244,'2pike_attack03',1190), -(8193,24252,'reforge_illusion_tier01',1190), -(8194,24253,'reforge_illusion_tier02',1190), -(8195,24254,'reforge_illusion_tier03',1190), -(8196,24255,'reforge_illusion_tier04',1190), -(8197,24256,'reforge_illusion_tier05',1190), -(8198,24257,'reforge_radiance_tier01',1190), -(8199,24258,'reforge_radiance_tier02',1190), -(8200,24259,'reforge_radiance_tier03',1190), -(8201,24260,'reforge_radiance_tier04',1190), -(8202,24261,'reforge_radiance_tier05',1190), -(8203,24268,'horse_dead',1190), -(8204,24269,'horse_dead_enter',1190), -(8205,24270,'horse_dead_enter01',1190), -(8206,24272,'pegasus_mount_attack',1190), -(8207,24273,'pegasus_mount_attack01',1190), -(8208,24274,'pegasus_mount_attack02',1190), -(8209,24275,'pegasus_mount_attack03',1190), -(8210,24276,'pegasus_mount_cast',1190), -(8211,24277,'pegasus_mount_combat_enter',1190), -(8212,24278,'pegasus_mount_combat_exit',1190), -(8213,24279,'pegasus_mount_combat_idle',1190), -(8214,24280,'pegasus_mount_dead',1190), -(8215,24281,'pegasus_mount_dead_enter',1190), -(8216,24282,'pegasus_mount_dead_enter01',1190), -(8217,24283,'pegasus_mount_death',1190), -(8218,24284,'pegasus_mount_death01',1190), -(8219,24285,'pegasus_mount_ouch',1190), -(8220,24286,'pegasus_mount_ouch01',1190), -(8221,24287,'pegasus_mount_wild_swing',1190), -(8222,24288,'result_fprt_ghosts_attack_p2p',1190), -(8223,24299,'snd_freeport_knight_1h_sword_attack',1190), -(8224,24300,'snd_freeport_knight_1h_sword_attack01',1190), -(8225,24301,'snd_freeport_knight_1h_sword_attack02',1190), -(8226,24302,'snd_freeport_knight_1h_sword_attack03',1190), -(8227,24303,'snd_freeport_knight_fs',1190), -(8228,24304,'snd_freeport_knight_charge_up',1190), -(8229,24305,'snd_freeport_knight_whirling_attack',1190), -(8230,24306,'snd_freeport_knight_wild_swing',1190), -(8231,24332,'tiered_chill_claw_buff',1190), -(8232,24333,'tiered_chilling_claws',1190), -(8233,24334,'tiered_claws_buff',1190), -(8234,24335,'tiered_shield_barrier_buff',1190), -(8235,24336,'2h_ouch',1190), -(8236,24337,'2h_ouch_backhand',1190), -(8237,24338,'2h_ouch_down',1190), -(8238,24339,'2h_ouch_forehand',1190), -(8239,24340,'2h_ouch_thrust',1190), -(8240,24341,'2h_sword_dodge',1190), -(8241,24344,'backhand',1190), -(8242,24349,'horse_ouch_backhand',1190), -(8243,24350,'horse_ouch_down',1190), -(8244,24351,'horse_ouch_forehand',1190), -(8245,24352,'horse_ouch_thrust',1190), -(8246,24354,'pike_dodge',1190), -(8247,24355,'pike_ouch',1190), -(8248,24385,'tiered_spirit_pets_summon',1190), -(8249,24393,'mount_attack',1190), -(8250,24398,'snd_freeport_knight_cast_death',1190), -(8251,24399,'snd_freeport_knight_cast_end',1190), -(8252,24400,'snd_freeport_knight_cast_start',1190), -(8253,24426,'tiered_claw_marks',1190), -(8254,24427,'tiered_feather_shroud',1190), -(8255,24428,'tiered_fire_claw_buff',1190), -(8256,24429,'tiered_flaming_claws',1190), -(8257,24430,'tiered_hand_claws',1190), -(8258,24431,'tiered_ice_dagger_p2p',1190), -(8259,24434,'attack_swipe',1190), -(8260,24435,'cast_aa_frosty_swirls',1190), -(8261,24436,'cast_aa_spirit_blast',1190), -(8262,24439,'cast_slashing_claws',1190), -(8263,24443,'result_aa_wispy_ward',1190), -(8264,24444,'result_summon_spirit_swirls',1190), -(8265,24445,'result_tame_shroud',1190), -(8266,24475,'tiered_vine_net',1190), -(8267,24478,'cast_flurry_claws',1190), -(8268,24484,'result_lucan_soul_suck_p2p',1190), -(8269,24492,'lucan_cast_enter',1190), -(8270,24493,'lucan_cast_exit',1190), -(8271,24494,'lucan_cast_idle',1190), -(8272,24499,'snd_freeport_knight_death',1190), -(8273,24500,'snd_freeport_knight_knockeddowntoknees',1190), -(8274,24501,'snd_freeport_knight_rx_attack_long',1190), -(8275,24502,'snd_freeport_knight_rx_attack_short',1190), -(8276,24503,'snd_freeport_knight_rx_buff',1190), -(8277,24504,'snd_freeport_knight_rx_death',1190), -(8278,24505,'snd_freeport_knight_rx_ouch',1190), -(8279,24517,'snd_freeport_knight_attack',1190), -(8280,24518,'snd_freeport_knight_attack01',1190), -(8281,24519,'snd_freeport_knight_attack02',1190), -(8282,24520,'snd_freeport_knight_attack03',1190), -(8283,24521,'snd_freeport_knight_rx_cast_end',1190), -(8284,24528,'drink_chug',1190), -(8285,24529,'horse_combat_attack',1190), -(8286,24530,'horse_combat_attack01',1190), -(8287,24531,'horse_combat_attack02',1190), -(8288,24532,'horse_combat_attack03',1190), -(8289,24535,'cast_aa_spirit_bear',1190), -(8290,24536,'cast_ghost_rats',1190), -(8291,24542,'result_aa_claw_marks',1190), -(8292,24543,'result_proc_crit_bonus',1190), -(8293,24544,'result_spirit_claws_spinning',1190), -(8294,24546,'sfx_bodyfall',1190), -(8295,24550,'snd_horse_fs_left',1190), -(8296,24551,'snd_horse_fs_right',1190), -(8297,24552,'snd_horse_rx_attack',1190), -(8298,24553,'snd_horse_rx_death',1190), -(8299,24554,'snd_horse_rx_ouch',1190), -(8300,24557,'cast_aa_frosty_cone_forward',1190), -(8301,24558,'cast_cloud_spin',1190), -(8302,24559,'cast_feral_fangs',1190), -(8303,24560,'cast_flurry_claws_attack',1190), -(8304,24566,'result_ice_attack_p2p',1190), -(8305,24569,'cast_aa_flash_bomb_appear',1190), -(8306,24570,'cast_aa_melee_swipe',1190), -(8307,24571,'cast_crit_hawk_summon',1190), -(8308,24576,'icon_merc_heal',1190), -(8309,24577,'icon_merc_melee',1190), -(8310,24578,'icon_merc_ranged',1190), -(8311,24579,'icon_merc_spell',1190), -(8312,24580,'icon_merc_support',1190), -(8313,24581,'icon_merc_tank',1190), -(8314,24584,'cast_aa_spirit_blast_big',1190), -(8315,24585,'cast_feral_fangs_bite',1190), -(8316,24588,'cast_aa_spirit_ape',1190), -(8317,24589,'cast_aa_spirit_boar',1190), -(8318,24590,'cast_aa_spirit_crab',1190), -(8319,24591,'cast_aa_spirit_rats',1190), -(8320,24592,'cast_aa_spirit_stag',1190), -(8321,24593,'cast_claws_strike_targeted',1190), -(8322,24596,'cast_aa_spirit_bat',1190), -(8323,24597,'cast_aa_spirit_cobra',1190), -(8324,24598,'cast_aa_spirit_drake',1190), -(8325,24599,'cast_aa_spirit_frogs',1190), -(8326,24600,'cast_aa_spirit_hawk',1190), -(8327,24601,'cast_aa_spirit_tiger',1190), -(8328,24602,'cast_aa_spirit_wolf',1190), -(8329,24607,'frog_croaking_snd',1190), -(8330,24609,'result_luclin_chunk_slam',1190), -(8331,24639,'tiger_attack_snd',1190), -(8332,24647,'result_aa_tameable_fx',1190), -(8333,24650,'cast_aa_spirit_wolf_howling',1190), -(8334,24656,'result_feral_fangs_vert_bite',1190), -(8335,24659,'cast_aa_frost_wall',1190), -(8336,24665,'result_aa_icicle_spikes',1190), -(8337,24666,'result_aa_quick_heal',1190), -(8338,24667,'result_aa_windy_ward',1190), -(8339,24674,'design_frostfell_candyfx01',1190), -(8340,24675,'design_frostfell_candyfx02',1190), -(8341,24676,'design_frostfell_candyfx03',1190), -(8342,24677,'design_frostfell_candyfx04',1190), -(8343,24688,'snd_footstep',1190), -(8344,24691,'attack_bites',1190), -(8345,24692,'attack_shuffle',1190), -(8346,24693,'attack_tail_swipe',1190), -(8347,24699,'roll',1190), -(8348,24729,'spawn',1190), -(8349,24732,'cast02',1190), -(8350,24735,'combat_idle02',1190), -(8351,24738,'dead_alt',1190), -(8352,24739,'death_alt',1190), -(8353,24740,'fae_mount_combat_idle',1190), -(8354,24748,'result_sparkles_object_swirl',1190), -(8355,24749,'result_star_spirits',1190), -(8356,24750,'run_ground',1190), -(8357,24780,'spawn_idle',1190), -(8358,24783,'backpack_fly_backup',1190), -(8359,24784,'backpack_fly_combat_idle',1190), -(8360,24785,'backpack_fly_fall',1190), -(8361,24786,'backpack_fly_fly_backup',1190), -(8362,24787,'backpack_fly_fly_climb',1190), -(8363,24788,'backpack_fly_fly_dive',1190), -(8364,24789,'backpack_fly_fly_down',1190), -(8365,24790,'backpack_fly_fly_glide',1190), -(8366,24791,'backpack_fly_fly_glide_left',1190), -(8367,24792,'backpack_fly_fly_glide_right',1190), -(8368,24793,'backpack_fly_fly_idle',1190), -(8369,24794,'backpack_fly_fly_run',1190), -(8370,24795,'backpack_fly_fly_strafe_left',1190), -(8371,24796,'backpack_fly_fly_strafe_right',1190), -(8372,24797,'backpack_fly_fly_turn_left',1190), -(8373,24798,'backpack_fly_fly_turn_right',1190), -(8374,24799,'backpack_fly_fly_up',1190), -(8375,24800,'backpack_fly_fly_walk',1190), -(8376,24801,'backpack_fly_idle',1190), -(8377,24802,'backpack_fly_jump',1190), -(8378,24803,'backpack_fly_land',1190), -(8379,24804,'backpack_fly_long_fall',1190), -(8380,24805,'backpack_fly_run',1190), -(8381,24806,'backpack_fly_turn_left',1190), -(8382,24807,'backpack_fly_turn_right',1190), -(8383,24808,'backpack_fly_walk',1190), -(8384,24811,'backpack_backup',1190), -(8385,24812,'backpack_combat_idle',1190), -(8386,24813,'backpack_fall',1190), -(8387,24814,'backpack_fly__walk',1190), -(8388,24815,'backpack_fly_climb',1190), -(8389,24816,'backpack_fly_dive',1190), -(8390,24817,'backpack_fly_down',1190), -(8391,24818,'backpack_fly_glide',1190), -(8392,24819,'backpack_fly_glide_left',1190), -(8393,24820,'backpack_fly_glide_right',1190), -(8394,24821,'backpack_fly_strafe_left',1190), -(8395,24822,'backpack_fly_strafe_right',1190), -(8396,24823,'backpack_fly_up',1190), -(8397,24824,'backpack_idle',1190), -(8398,24825,'backpack_jump',1190), -(8399,24826,'backpack_land',1190), -(8400,24827,'backpack_long_fall',1190), -(8401,24828,'backpack_run',1190), -(8402,24829,'backpack_strafe_left',1190), -(8403,24830,'backpack_strafe_left_run',1190), -(8404,24831,'backpack_strafe_right',1190), -(8405,24832,'backpack_strafe_right_run',1190), -(8406,24833,'backpack_turn_left',1190), -(8407,24834,'backpack_turn_right',1190), -(8408,24835,'backpack_walk',1190), -(8409,24840,'dual_wield_dead_enter',1190), -(8410,24843,'backpack_backup_run',1190), -(8411,24851,'persist_bug_swarm',1190), -(8412,24861,'snd_fae_wing_flaps',1190), -(8413,24868,'drakota_mount_backup',1190), -(8414,24869,'drakota_mount_fall',1190), -(8415,24870,'drakota_mount_fly_backup',1190), -(8416,24871,'drakota_mount_fly_climb',1190), -(8417,24872,'drakota_mount_fly_dive',1190), -(8418,24873,'drakota_mount_fly_down',1190), -(8419,24874,'drakota_mount_fly_glide',1190), -(8420,24875,'drakota_mount_fly_glide_left',1190), -(8421,24876,'drakota_mount_fly_glide_right',1190), -(8422,24877,'drakota_mount_fly_idle',1190), -(8423,24878,'drakota_mount_fly_run',1190), -(8424,24879,'drakota_mount_fly_strafe_left',1190), -(8425,24880,'drakota_mount_fly_strafe_right',1190), -(8426,24881,'drakota_mount_fly_turn_left',1190), -(8427,24882,'drakota_mount_fly_turn_right',1190), -(8428,24883,'drakota_mount_fly_up',1190), -(8429,24884,'drakota_mount_fly_walk',1190), -(8430,24885,'drakota_mount_idle',1190), -(8431,24886,'drakota_mount_idle01',1190), -(8432,24887,'drakota_mount_jump',1190), -(8433,24888,'drakota_mount_jump_substitute',1190), -(8434,24889,'drakota_mount_land',1190), -(8435,24890,'drakota_mount_long_fall',1190), -(8436,24891,'drakota_mount_run',1190), -(8437,24892,'drakota_mount_turn_left',1190), -(8438,24893,'drakota_mount_turn_right',1190), -(8439,24894,'drakota_mount_walk',1190), -(8440,24899,'cast_summon_draconian_cyclone',1190), -(8441,24900,'cast_summon_draconian_necro',1190), -(8442,24903,'design_sky_necro_beams',1190), -(8443,24904,'design_sky_necro_dragon_summon',1190), -(8444,24913,'skyshrine_drake_run',1190), -(8445,24914,'skyshrine_drake_run01',1190), -(8446,24921,'idle_rake',1190), -(8447,24958,'tcg_head_aura',1190), -(8448,24959,'1h_sword_attack04',1190), -(8449,24966,'dance02',1190), -(8450,24967,'dance03',1190), -(8451,24968,'design_speed_boost_buff_no_sound',1190), -(8452,24969,'design_speed_drop_debuff_no_sound',1190), -(8453,24970,'drakota_mount_idle_01',1190), -(8454,24971,'idle_gardening',1190), -(8455,24972,'idle_gathering',1190), -(8456,24974,'result_forced_shader_bugs',1190), -(8457,24981,'design_glow_eyes_blue',1190), -(8458,25012,'wing_wisps_fx',1190), -(8459,25019,'dontuse_idle01',1190), -(8460,25020,'dontuse_idle02',1190), -(8461,25021,'golem_kick',1190), -(8462,25024,'cast_corruption_gather',1190), -(8463,25026,'cast_pollen_spew',1190), -(8464,25028,'cast_seed_spew',1190), -(8465,25029,'cast_spore_spew',1190), -(8466,25032,'idle_gardening_exit',1190), -(8467,25033,'idle_gathering_exit',1190), -(8468,25035,'result_icicle_blast_up',1190), -(8469,25037,'sit_enter_open',1190), -(8470,25038,'sit_exit_open',1190), -(8471,25039,'sit_idle_open',1190), -(8472,25042,'cast_gather_corruption',1190), -(8473,25048,'lounge_enter',1190), -(8474,25049,'lounge_exit',1190), -(8475,25050,'lounge_idle',1190), -(8476,25051,'result_corruption_spew',1190), -(8477,25081,'stalk',1190), -(8478,25084,'backpack_1h_crush_attack',1190), -(8479,25085,'backpack_1h_crush_attack01',1190), -(8480,25086,'backpack_1h_crush_attack02',1190), -(8481,25087,'backpack_1h_crush_attack03',1190), -(8482,25088,'backpack_1h_crush_attack_recoil',1190), -(8483,25089,'backpack_1h_crush_attack_recoil01',1190), -(8484,25090,'backpack_1h_crush_attack_recoil02',1190), -(8485,25091,'backpack_1h_crush_attack_recoil03',1190), -(8486,25092,'backpack_1h_crush_backup',1190), -(8487,25093,'backpack_1h_crush_dodge_backhand',1190), -(8488,25094,'backpack_1h_crush_dodge_down',1190), -(8489,25095,'backpack_1h_crush_dodge_forehand',1190), -(8490,25096,'backpack_1h_crush_dodge_thrust',1190), -(8491,25097,'backpack_1h_crush_enter',1190), -(8492,25098,'backpack_1h_crush_exit',1190), -(8493,25099,'backpack_1h_crush_idle',1190), -(8494,25100,'backpack_1h_crush_ouch_backhand',1190), -(8495,25101,'backpack_1h_crush_ouch_down',1190), -(8496,25102,'backpack_1h_crush_ouch_forehand',1190), -(8497,25103,'backpack_1h_crush_ouch_thrust',1190), -(8498,25104,'backpack_1h_crush_parry_backhand',1190), -(8499,25105,'backpack_1h_crush_parry_down',1190), -(8500,25106,'backpack_1h_crush_parry_forehand',1190), -(8501,25107,'backpack_1h_crush_parry_thrust',1190), -(8502,25108,'backpack_1h_crush_strafe_left',1190), -(8503,25109,'backpack_1h_crush_strafe_right',1190), -(8504,25110,'backpack_1h_crush_walk',1190), -(8505,25111,'backpack_1h_pierce_attack',1190), -(8506,25112,'backpack_1h_pierce_attack01',1190), -(8507,25113,'backpack_1h_pierce_attack02',1190), -(8508,25114,'backpack_1h_pierce_attack03',1190), -(8509,25115,'backpack_1h_pierce_attack_recoil',1190), -(8510,25116,'backpack_1h_pierce_attack_recoil01',1190), -(8511,25117,'backpack_1h_pierce_attack_recoil02',1190), -(8512,25118,'backpack_1h_pierce_attack_recoil03',1190), -(8513,25119,'backpack_1h_pierce_backup',1190), -(8514,25120,'backpack_1h_pierce_dodge_backhand',1190), -(8515,25121,'backpack_1h_pierce_dodge_down',1190), -(8516,25122,'backpack_1h_pierce_dodge_forehand',1190), -(8517,25123,'backpack_1h_pierce_dodge_thrust',1190), -(8518,25124,'backpack_1h_pierce_enter',1190), -(8519,25125,'backpack_1h_pierce_exit',1190), -(8520,25126,'backpack_1h_pierce_idle',1190), -(8521,25127,'backpack_1h_pierce_ouch_backhand',1190), -(8522,25128,'backpack_1h_pierce_ouch_down',1190), -(8523,25129,'backpack_1h_pierce_ouch_forehand',1190), -(8524,25130,'backpack_1h_pierce_ouch_thrust',1190), -(8525,25131,'backpack_1h_pierce_parry_backhand',1190), -(8526,25132,'backpack_1h_pierce_parry_down',1190), -(8527,25133,'backpack_1h_pierce_parry_forehand',1190), -(8528,25134,'backpack_1h_pierce_parry_thrust',1190), -(8529,25135,'backpack_1h_pierce_strafe_left',1190), -(8530,25136,'backpack_1h_pierce_strafe_right',1190), -(8531,25137,'backpack_1h_pierce_walk',1190), -(8532,25138,'backpack_1h_sword_attack',1190), -(8533,25139,'backpack_1h_sword_attack01',1190), -(8534,25140,'backpack_1h_sword_attack02',1190), -(8535,25141,'backpack_1h_sword_attack03',1190), -(8536,25142,'backpack_1h_sword_attack_recoil',1190), -(8537,25143,'backpack_1h_sword_attack_recoil01',1190), -(8538,25144,'backpack_1h_sword_attack_recoil02',1190), -(8539,25145,'backpack_1h_sword_attack_recoil03',1190), -(8540,25146,'backpack_1h_sword_backup',1190), -(8541,25147,'backpack_1h_sword_death_blow',1190), -(8542,25148,'backpack_1h_sword_death_blow01',1190), -(8543,25149,'backpack_1h_sword_dodge_backhand',1190), -(8544,25150,'backpack_1h_sword_dodge_down',1190), -(8545,25151,'backpack_1h_sword_dodge_forehand',1190), -(8546,25152,'backpack_1h_sword_dodge_thrust',1190), -(8547,25153,'backpack_1h_sword_enter',1190), -(8548,25154,'backpack_1h_sword_exit',1190), -(8549,25155,'backpack_1h_sword_idle',1190), -(8550,25156,'backpack_1h_sword_ouch_backhand',1190), -(8551,25157,'backpack_1h_sword_ouch_down',1190), -(8552,25158,'backpack_1h_sword_ouch_forehand',1190), -(8553,25159,'backpack_1h_sword_ouch_thrust',1190), -(8554,25160,'backpack_1h_sword_parry_backhand',1190), -(8555,25161,'backpack_1h_sword_parry_down',1190), -(8556,25162,'backpack_1h_sword_parry_forehand',1190), -(8557,25163,'backpack_1h_sword_parry_thrust',1190), -(8558,25164,'backpack_1h_sword_strafe_left',1190), -(8559,25165,'backpack_1h_sword_strafe_right',1190), -(8560,25166,'backpack_1h_sword_walk',1190), -(8561,25167,'backpack_1h_throw_attack',1190), -(8562,25168,'backpack_1h_thrown_attack',1190), -(8563,25169,'backpack_1h_thrown_backup',1190), -(8564,25170,'backpack_1h_thrown_dodge_backhand',1190), -(8565,25171,'backpack_1h_thrown_dodge_down',1190), -(8566,25172,'backpack_1h_thrown_dodge_forehand',1190), -(8567,25173,'backpack_1h_thrown_dodge_thrust',1190), -(8568,25174,'backpack_1h_thrown_idle',1190), -(8569,25175,'backpack_1h_thrown_ouch_backhand',1190), -(8570,25176,'backpack_1h_thrown_ouch_down',1190), -(8571,25177,'backpack_1h_thrown_ouch_forehand',1190), -(8572,25178,'backpack_1h_thrown_ouch_thrust',1190), -(8573,25179,'backpack_1h_thrown_strafe_left',1190), -(8574,25180,'backpack_1h_thrown_strafe_right',1190), -(8575,25181,'backpack_1h_thrown_walk',1190), -(8576,25182,'backpack_1h_wand_attack',1190), -(8577,25183,'backpack_1h_wand_attack01',1190), -(8578,25184,'backpack_1h_wand_attack02',1190), -(8579,25185,'backpack_1h_wand_attack03',1190), -(8580,25186,'backpack_1h_wand_attack_recoil',1190), -(8581,25187,'backpack_1h_wand_attack_recoil01',1190), -(8582,25188,'backpack_1h_wand_attack_recoil02',1190), -(8583,25189,'backpack_1h_wand_attack_recoil03',1190), -(8584,25190,'backpack_1h_wand_backup',1190), -(8585,25191,'backpack_1h_wand_dodge_backhand',1190), -(8586,25192,'backpack_1h_wand_dodge_down',1190), -(8587,25193,'backpack_1h_wand_dodge_forehand',1190), -(8588,25194,'backpack_1h_wand_dodge_thrust',1190), -(8589,25195,'backpack_1h_wand_enter',1190), -(8590,25196,'backpack_1h_wand_exit',1190), -(8591,25197,'backpack_1h_wand_idle',1190), -(8592,25198,'backpack_1h_wand_ouch_backhand',1190), -(8593,25199,'backpack_1h_wand_ouch_down',1190), -(8594,25200,'backpack_1h_wand_ouch_forehand',1190), -(8595,25201,'backpack_1h_wand_ouch_thrust',1190), -(8596,25202,'backpack_1h_wand_parry_backhand',1190), -(8597,25203,'backpack_1h_wand_parry_down',1190), -(8598,25204,'backpack_1h_wand_parry_forehand',1190), -(8599,25205,'backpack_1h_wand_parry_thrust',1190), -(8600,25206,'backpack_1h_wand_strafe_left',1190), -(8601,25207,'backpack_1h_wand_strafe_right',1190), -(8602,25208,'backpack_1h_wand_walk',1190), -(8603,25209,'backpack_2h_sword_attack',1190), -(8604,25210,'backpack_2h_sword_attack01',1190), -(8605,25211,'backpack_2h_sword_attack02',1190), -(8606,25212,'backpack_2h_sword_attack03',1190), -(8607,25213,'backpack_2h_sword_attack_recoil',1190), -(8608,25214,'backpack_2h_sword_attack_recoil01',1190), -(8609,25215,'backpack_2h_sword_attack_recoil02',1190), -(8610,25216,'backpack_2h_sword_attack_recoil03',1190), -(8611,25217,'backpack_2h_sword_backup',1190), -(8612,25218,'backpack_2h_sword_charge_up',1190), -(8613,25219,'backpack_2h_sword_defensive_buff',1190), -(8614,25220,'backpack_2h_sword_dodge_backhand',1190), -(8615,25221,'backpack_2h_sword_dodge_down',1190), -(8616,25222,'backpack_2h_sword_dodge_forehand',1190), -(8617,25223,'backpack_2h_sword_dodge_thrust',1190), -(8618,25224,'backpack_2h_sword_enter',1190), -(8619,25225,'backpack_2h_sword_exit',1190), -(8620,25226,'backpack_2h_sword_feint',1190), -(8621,25227,'backpack_2h_sword_idle',1190), -(8622,25228,'backpack_2h_sword_kick',1190), -(8623,25229,'backpack_2h_sword_offensive_buff',1190), -(8624,25230,'backpack_2h_sword_ouch_backhand',1190), -(8625,25231,'backpack_2h_sword_ouch_down',1190), -(8626,25232,'backpack_2h_sword_ouch_forehand',1190), -(8627,25233,'backpack_2h_sword_ouch_thrust',1190), -(8628,25234,'backpack_2h_sword_parry_backhand',1190), -(8629,25235,'backpack_2h_sword_parry_down',1190), -(8630,25236,'backpack_2h_sword_parry_forehand',1190), -(8631,25237,'backpack_2h_sword_parry_thrust',1190), -(8632,25238,'backpack_2h_sword_strafe_left',1190), -(8633,25239,'backpack_2h_sword_strafe_right',1190), -(8634,25240,'backpack_2h_sword_super_buff',1190), -(8635,25241,'backpack_2h_sword_taunt',1190), -(8636,25242,'backpack_2h_sword_taunt_combat_art',1190), -(8637,25243,'backpack_2h_sword_walk',1190), -(8638,25244,'backpack_2h_sword_whirling_attack',1190), -(8639,25245,'backpack_2h_sword_wild_swing',1190), -(8640,25246,'backpack_alchemy_failure',1190), -(8641,25247,'backpack_alchemy_idle',1190), -(8642,25248,'backpack_alchemy_success',1190), -(8643,25249,'backpack_applaude',1190), -(8644,25250,'backpack_artificing_failure',1190), -(8645,25251,'backpack_artificing_idle',1190), -(8646,25252,'backpack_artificing_success',1190), -(8647,25253,'backpack_attack',1190), -(8648,25254,'backpack_bostaff_attack',1190), -(8649,25255,'backpack_bostaff_attack01',1190), -(8650,25256,'backpack_bostaff_attack02',1190), -(8651,25257,'backpack_bostaff_attack03',1190), -(8652,25258,'backpack_bostaff_attack_recoil',1190), -(8653,25259,'backpack_bostaff_attack_recoil01',1190), -(8654,25260,'backpack_bostaff_attack_recoil02',1190), -(8655,25261,'backpack_bostaff_attack_recoil03',1190), -(8656,25262,'backpack_bostaff_backup',1190), -(8657,25263,'backpack_bostaff_charge_up',1190), -(8658,25264,'backpack_bostaff_defensive_buff',1190), -(8659,25265,'backpack_bostaff_dodge_backhand',1190), -(8660,25266,'backpack_bostaff_dodge_down',1190), -(8661,25267,'backpack_bostaff_dodge_forehand',1190), -(8662,25268,'backpack_bostaff_dodge_thrust',1190), -(8663,25269,'backpack_bostaff_enter',1190), -(8664,25270,'backpack_bostaff_exit',1190), -(8665,25271,'backpack_bostaff_feint',1190), -(8666,25272,'backpack_bostaff_idle',1190), -(8667,25273,'backpack_bostaff_kick',1190), -(8668,25274,'backpack_bostaff_knockdowntoknees',1190), -(8669,25275,'backpack_bostaff_knockedtoback',1190), -(8670,25276,'backpack_bostaff_knockedtoback_getup',1190), -(8671,25277,'backpack_bostaff_offensive_buff',1190), -(8672,25278,'backpack_bostaff_ouch_backhand',1190), -(8673,25279,'backpack_bostaff_ouch_down',1190), -(8674,25280,'backpack_bostaff_ouch_forehand',1190), -(8675,25281,'backpack_bostaff_ouch_thrust',1190), -(8676,25282,'backpack_bostaff_parry_backhand',1190), -(8677,25283,'backpack_bostaff_parry_down',1190), -(8678,25284,'backpack_bostaff_parry_forehand',1190), -(8679,25285,'backpack_bostaff_parry_thrust',1190), -(8680,25286,'backpack_bostaff_strafe_left',1190), -(8681,25287,'backpack_bostaff_strafe_right',1190), -(8682,25288,'backpack_bostaff_super_buff',1190), -(8683,25289,'backpack_bostaff_taunt_combat_art',1190), -(8684,25290,'backpack_bostaff_walk',1190), -(8685,25291,'backpack_bostaff_whirling_attack',1190), -(8686,25292,'backpack_bostaff_wild_swing',1190), -(8687,25293,'backpack_bow_aim_down',1190), -(8688,25294,'backpack_bow_aim_up',1190), -(8689,25295,'backpack_bow_attack',1190), -(8690,25296,'backpack_bow_attack_2x',1190), -(8691,25297,'backpack_bow_backup',1190), -(8692,25298,'backpack_bow_dodge_backhand',1190), -(8693,25299,'backpack_bow_dodge_down',1190), -(8694,25300,'backpack_bow_dodge_forehand',1190), -(8695,25301,'backpack_bow_dodge_thrust',1190), -(8696,25302,'backpack_bow_enter',1190), -(8697,25303,'backpack_bow_exit',1190), -(8698,25304,'backpack_bow_idle',1190), -(8699,25305,'backpack_bow_knockdowntoknees',1190), -(8700,25306,'backpack_bow_knockedtoback',1190), -(8701,25307,'backpack_bow_knockedtoback_getup',1190), -(8702,25308,'backpack_bow_ouch_backhand',1190), -(8703,25309,'backpack_bow_ouch_down',1190), -(8704,25310,'backpack_bow_ouch_forehand',1190), -(8705,25311,'backpack_bow_ouch_thrust',1190), -(8706,25312,'backpack_bow_strafe_left',1190), -(8707,25313,'backpack_bow_strafe_right',1190), -(8708,25314,'backpack_bow_walk',1190), -(8709,25315,'backpack_cast_aoe_beneficial_end',1190), -(8710,25316,'backpack_cast_aoe_beneficial_loop',1190), -(8711,25317,'backpack_cast_aoe_beneficial_start',1190), -(8712,25318,'backpack_charge',1190), -(8713,25319,'backpack_charge_up',1190), -(8714,25320,'backpack_chop_ground_digging',1190), -(8715,25321,'backpack_chop_ground_success',1190), -(8716,25322,'backpack_climbing_backup',1190), -(8717,25323,'backpack_climbing_enter_down',1190), -(8718,25324,'backpack_climbing_enter_down_root',1190), -(8719,25325,'backpack_climbing_exit_up',1190), -(8720,25326,'backpack_climbing_exit_up_root',1190), -(8721,25327,'backpack_climbing_idle',1190), -(8722,25328,'backpack_climbing_idle01',1190), -(8723,25329,'backpack_climbing_ouch',1190), -(8724,25330,'backpack_climbing_strafe_left',1190), -(8725,25331,'backpack_climbing_strafe_right',1190), -(8726,25332,'backpack_climbing_walk',1190), -(8727,25333,'backpack_combat_backup_run',1190), -(8728,25334,'backpack_combat_run',1190), -(8729,25335,'backpack_combat_strafe_left_run',1190), -(8730,25336,'backpack_combat_strafe_right_run',1190), -(8731,25337,'backpack_cooking_failure',1190), -(8732,25338,'backpack_cooking_idle',1190), -(8733,25339,'backpack_cooking_success',1190), -(8734,25340,'backpack_crouch_backup',1190), -(8735,25341,'backpack_crouch_enter',1190), -(8736,25342,'backpack_crouch_exit',1190), -(8737,25343,'backpack_crouch_idle',1190), -(8738,25344,'backpack_crouch_strafe_left',1190), -(8739,25345,'backpack_crouch_strafe_right',1190), -(8740,25346,'backpack_crouch_turn_left',1190), -(8741,25347,'backpack_crouch_turn_right',1190), -(8742,25348,'backpack_crouch_walk',1190), -(8743,25349,'backpack_cry',1190), -(8744,25350,'backpack_dance',1190), -(8745,25351,'backpack_dead',1190), -(8746,25352,'backpack_dead_enter',1190), -(8747,25353,'backpack_defensive_buff',1190), -(8748,25354,'backpack_drink_chug',1190), -(8749,25355,'backpack_drinking_failure',1190), -(8750,25356,'backpack_drinking_idle',1190), -(8751,25357,'backpack_drinking_success',1190), -(8752,25358,'backpack_dual_wield_attack',1190), -(8753,25359,'backpack_dual_wield_attack01',1190), -(8754,25360,'backpack_dual_wield_attack02',1190), -(8755,25361,'backpack_dual_wield_attack03',1190), -(8756,25362,'backpack_dual_wield_attack_recoil',1190), -(8757,25363,'backpack_dual_wield_attack_recoil01',1190), -(8758,25364,'backpack_dual_wield_attack_recoil02',1190), -(8759,25365,'backpack_dual_wield_attack_recoil03',1190), -(8760,25366,'backpack_dual_wield_backup',1190), -(8761,25367,'backpack_dual_wield_defensive_buff',1190), -(8762,25368,'backpack_dual_wield_dodge_backhand',1190), -(8763,25369,'backpack_dual_wield_dodge_down',1190), -(8764,25370,'backpack_dual_wield_dodge_forehand',1190), -(8765,25371,'backpack_dual_wield_dodge_thrust',1190), -(8766,25372,'backpack_dual_wield_enter',1190), -(8767,25373,'backpack_dual_wield_exit',1190), -(8768,25374,'backpack_dual_wield_feint',1190), -(8769,25375,'backpack_dual_wield_idle',1190), -(8770,25376,'backpack_dual_wield_kick',1190), -(8771,25377,'backpack_dual_wield_knockdowntoknees',1190), -(8772,25378,'backpack_dual_wield_knockedtoback',1190), -(8773,25379,'backpack_dual_wield_knockedtoback_getup',1190), -(8774,25380,'backpack_dual_wield_offensive_buff',1190), -(8775,25381,'backpack_dual_wield_ouch_backhand',1190), -(8776,25382,'backpack_dual_wield_ouch_down',1190), -(8777,25383,'backpack_dual_wield_ouch_forehand',1190), -(8778,25384,'backpack_dual_wield_ouch_thrust',1190), -(8779,25385,'backpack_dual_wield_parry_backhand',1190), -(8780,25386,'backpack_dual_wield_parry_down',1190), -(8781,25387,'backpack_dual_wield_parry_forehand',1190), -(8782,25388,'backpack_dual_wield_parry_thrust',1190), -(8783,25389,'backpack_dual_wield_strafe_left',1190), -(8784,25390,'backpack_dual_wield_strafe_right',1190), -(8785,25391,'backpack_dual_wield_super_buff',1190), -(8786,25392,'backpack_dual_wield_taunt_combat_art',1190), -(8787,25393,'backpack_dual_wield_walk',1190), -(8788,25394,'backpack_dual_wield_whirling_attack',1190), -(8789,25395,'backpack_dual_wield_wild_swing',1190), -(8790,25396,'backpack_fall_moving',1190), -(8791,25397,'backpack_feint',1190), -(8792,25398,'backpack_fishing_cast',1190), -(8793,25399,'backpack_fishing_fight',1190), -(8794,25400,'backpack_fishing_reel_in',1190), -(8795,25401,'backpack_flirt',1190), -(8796,25402,'backpack_forestry_chopping',1190), -(8797,25403,'backpack_forestry_success',1190), -(8798,25404,'backpack_gag',1190), -(8799,25405,'backpack_gathering_end',1190), -(8800,25406,'backpack_gathering_loop',1190), -(8801,25407,'backpack_gathering_search',1190), -(8802,25408,'backpack_gathering_start',1190), -(8803,25409,'backpack_gathering_success',1190), -(8804,25410,'backpack_ghost_idle',1190), -(8805,25411,'backpack_giggle',1190), -(8806,25412,'backpack_glare',1190), -(8807,25413,'backpack_hearnoevil',1190), -(8808,25414,'backpack_heartattack',1190), -(8809,25415,'backpack_hover_idle',1190), -(8810,25416,'backpack_jump_moving',1190), -(8811,25417,'backpack_kick',1190), -(8812,25418,'backpack_knockdown_attack',1190), -(8813,25419,'backpack_knockdowntoknees',1190), -(8814,25420,'backpack_knockedtoback',1190), -(8815,25421,'backpack_knockedtoback_getup',1190), -(8816,25422,'backpack_knockedtoback_onbackidle',1190), -(8817,25423,'backpack_leatherworking_failure',1190), -(8818,25424,'backpack_leatherworking_idle',1190), -(8819,25425,'backpack_leatherworking_success',1190), -(8820,25426,'backpack_left_hand_fist',1190), -(8821,25427,'backpack_left_hand_relaxed',1190), -(8822,25428,'backpack_listen',1190), -(8823,25429,'backpack_long_fall_moving',1190), -(8824,25430,'backpack_metalworking_failure',1190), -(8825,25431,'backpack_metalworking_idle',1190), -(8826,25432,'backpack_metalworking_success',1190), -(8827,25433,'backpack_mining_digging',1190), -(8828,25434,'backpack_mining_success',1190), -(8829,25435,'backpack_monk_attack',1190), -(8830,25436,'backpack_monk_attack01',1190), -(8831,25437,'backpack_monk_attack02',1190), -(8832,25438,'backpack_monk_attack03',1190), -(8833,25439,'backpack_monk_attack_recoil',1190), -(8834,25440,'backpack_monk_attack_recoil01',1190), -(8835,25441,'backpack_monk_attack_recoil02',1190), -(8836,25442,'backpack_monk_attack_recoil03',1190), -(8837,25443,'backpack_monk_backup',1190), -(8838,25444,'backpack_monk_charge_up',1190), -(8839,25445,'backpack_monk_defensive_buff',1190), -(8840,25446,'backpack_monk_dodge_backhand',1190), -(8841,25447,'backpack_monk_dodge_down',1190), -(8842,25448,'backpack_monk_dodge_forehand',1190), -(8843,25449,'backpack_monk_dodge_thrust',1190), -(8844,25450,'backpack_monk_enter',1190), -(8845,25451,'backpack_monk_exit',1190), -(8846,25452,'backpack_monk_feint',1190), -(8847,25453,'backpack_monk_idle',1190), -(8848,25454,'backpack_monk_kick',1190), -(8849,25455,'backpack_monk_kick_flying',1190), -(8850,25456,'backpack_monk_kick_spin',1190), -(8851,25457,'backpack_monk_knockdowntoknees',1190), -(8852,25458,'backpack_monk_knockedtoback',1190), -(8853,25459,'backpack_monk_knockedtoback_getup',1190), -(8854,25460,'backpack_monk_offensive_buff',1190), -(8855,25461,'backpack_monk_offensive_buff_short',1190), -(8856,25462,'backpack_monk_ouch_backhand',1190), -(8857,25463,'backpack_monk_ouch_down',1190), -(8858,25464,'backpack_monk_ouch_forehand',1190), -(8859,25465,'backpack_monk_ouch_thrust',1190), -(8860,25466,'backpack_monk_parry_backhand',1190), -(8861,25467,'backpack_monk_parry_down',1190), -(8862,25468,'backpack_monk_parry_forehand',1190), -(8863,25469,'backpack_monk_parry_thrust',1190), -(8864,25470,'backpack_monk_strafe_left',1190), -(8865,25471,'backpack_monk_strafe_right',1190), -(8866,25472,'backpack_monk_super_buff',1190), -(8867,25473,'backpack_monk_taunt_combat_art',1190), -(8868,25474,'backpack_monk_walk',1190), -(8869,25475,'backpack_monk_whirling_attack',1190), -(8870,25476,'backpack_monk_wild_swing',1190), -(8871,25477,'backpack_offensive_buff',1190), -(8872,25478,'backpack_ouch',1190), -(8873,25479,'backpack_pike_attack',1190), -(8874,25480,'backpack_pike_attack01',1190), -(8875,25481,'backpack_pike_attack02',1190), -(8876,25482,'backpack_pike_attack03',1190), -(8877,25483,'backpack_pike_attack_recoil',1190), -(8878,25484,'backpack_pike_attack_recoil01',1190), -(8879,25485,'backpack_pike_attack_recoil02',1190), -(8880,25486,'backpack_pike_attack_recoil03',1190), -(8881,25487,'backpack_pike_backup',1190), -(8882,25488,'backpack_pike_charge_up',1190), -(8883,25489,'backpack_pike_death_blow',1190), -(8884,25490,'backpack_pike_defensive_buff',1190), -(8885,25491,'backpack_pike_dodge_backhand',1190), -(8886,25492,'backpack_pike_dodge_down',1190), -(8887,25493,'backpack_pike_dodge_forehand',1190), -(8888,25494,'backpack_pike_dodge_thrust',1190), -(8889,25495,'backpack_pike_enter',1190), -(8890,25496,'backpack_pike_exit',1190), -(8891,25497,'backpack_pike_feint',1190), -(8892,25498,'backpack_pike_idle',1190), -(8893,25499,'backpack_pike_kick',1190), -(8894,25500,'backpack_pike_knockdowntoknees',1190), -(8895,25501,'backpack_pike_knockedtoback',1190), -(8896,25502,'backpack_pike_knockedtoback_getup',1190), -(8897,25503,'backpack_pike_offensive_buff',1190), -(8898,25504,'backpack_pike_ouch_backhand',1190), -(8899,25505,'backpack_pike_ouch_down',1190), -(8900,25506,'backpack_pike_ouch_forehand',1190), -(8901,25507,'backpack_pike_ouch_thrust',1190), -(8902,25508,'backpack_pike_parry_backhand',1190), -(8903,25509,'backpack_pike_parry_down',1190), -(8904,25510,'backpack_pike_parry_forehand',1190), -(8905,25511,'backpack_pike_parry_thrust',1190), -(8906,25512,'backpack_pike_strafe_left',1190), -(8907,25513,'backpack_pike_strafe_right',1190), -(8908,25514,'backpack_pike_super_buff',1190), -(8909,25515,'backpack_pike_taunt',1190), -(8910,25516,'backpack_pike_walk',1190), -(8911,25517,'backpack_pike_whirling_attack',1190), -(8912,25518,'backpack_pike_wild_swing',1190), -(8913,25519,'backpack_ponder',1190), -(8914,25520,'backpack_pugilist_attack',1190), -(8915,25521,'backpack_pugilist_attack01',1190), -(8916,25522,'backpack_pugilist_attack02',1190), -(8917,25523,'backpack_pugilist_attack03',1190), -(8918,25524,'backpack_pugilist_attack_recoil',1190), -(8919,25525,'backpack_pugilist_attack_recoil01',1190), -(8920,25526,'backpack_pugilist_attack_recoil02',1190), -(8921,25527,'backpack_pugilist_attack_recoil03',1190), -(8922,25528,'backpack_pugilist_backup',1190), -(8923,25529,'backpack_pugilist_charge_up',1190), -(8924,25530,'backpack_pugilist_defensive_buff',1190), -(8925,25531,'backpack_pugilist_dodge_backhand',1190), -(8926,25532,'backpack_pugilist_dodge_down',1190), -(8927,25533,'backpack_pugilist_dodge_forehand',1190), -(8928,25534,'backpack_pugilist_dodge_thrust',1190), -(8929,25535,'backpack_pugilist_enter',1190), -(8930,25536,'backpack_pugilist_exit',1190), -(8931,25537,'backpack_pugilist_feint',1190), -(8932,25538,'backpack_pugilist_idle',1190), -(8933,25539,'backpack_pugilist_kick',1190), -(8934,25540,'backpack_pugilist_knockdowntoknees',1190), -(8935,25541,'backpack_pugilist_knockedtoback',1190), -(8936,25542,'backpack_pugilist_knockedtoback_getup',1190), -(8937,25543,'backpack_pugilist_offensive_buff',1190), -(8938,25544,'backpack_pugilist_ouch_backhand',1190), -(8939,25545,'backpack_pugilist_ouch_down',1190), -(8940,25546,'backpack_pugilist_ouch_forehand',1190), -(8941,25547,'backpack_pugilist_ouch_thrust',1190), -(8942,25548,'backpack_pugilist_parry_backhand',1190), -(8943,25549,'backpack_pugilist_parry_down',1190), -(8944,25550,'backpack_pugilist_parry_forehand',1190), -(8945,25551,'backpack_pugilist_parry_thrust',1190), -(8946,25552,'backpack_pugilist_strafe_left',1190), -(8947,25553,'backpack_pugilist_strafe_right',1190), -(8948,25554,'backpack_pugilist_super_buff',1190), -(8949,25555,'backpack_pugilist_taunt',1190), -(8950,25556,'backpack_pugilist_walk',1190), -(8951,25557,'backpack_pugilist_whirling_attack',1190), -(8952,25558,'backpack_pugilist_wild_swing',1190), -(8953,25559,'backpack_resurrect',1190), -(8954,25560,'backpack_right_hand_fist',1190), -(8955,25561,'backpack_right_hand_relaxed',1190), -(8956,25562,'backpack_rude',1190), -(8957,25563,'backpack_sad',1190), -(8958,25564,'backpack_salute_freeport',1190), -(8959,25565,'backpack_scheme',1190), -(8960,25566,'backpack_scratch',1190), -(8961,25567,'backpack_scribing_idle',1190), -(8962,25568,'backpack_seenoevil',1190), -(8963,25569,'backpack_shame',1190), -(8964,25570,'backpack_shield_block_backhand',1190), -(8965,25571,'backpack_shield_block_down',1190), -(8966,25572,'backpack_shield_block_forehand',1190), -(8967,25573,'backpack_shield_block_thrust',1190), -(8968,25574,'backpack_shield_shove',1190), -(8969,25575,'backpack_shiver',1190), -(8970,25576,'backpack_sit_drink',1190), -(8971,25577,'backpack_sit_enter',1190), -(8972,25578,'backpack_sit_exit',1190), -(8973,25579,'backpack_sit_idle',1190), -(8974,25580,'backpack_sneeze',1190), -(8975,25581,'backpack_sniff',1190), -(8976,25582,'backpack_speaknoevil',1190), -(8977,25583,'backpack_square',1190), -(8978,25584,'backpack_stinky',1190), -(8979,25585,'backpack_sulk',1190), -(8980,25586,'backpack_super_buff',1190), -(8981,25587,'backpack_swim_attack',1190), -(8982,25588,'backpack_swim_backup',1190), -(8983,25589,'backpack_swim_idle',1190), -(8984,25590,'backpack_swim_ouch',1190), -(8985,25591,'backpack_swim_walk',1190), -(8986,25592,'backpack_tail',1190), -(8987,25593,'backpack_tailoring_failure',1190), -(8988,25594,'backpack_tailoring_idle',1190), -(8989,25595,'backpack_tailoring_success',1190), -(8990,25596,'backpack_tapfoot',1190), -(8991,25597,'backpack_taunt_combat_art',1190), -(8992,25598,'backpack_threaten',1190), -(8993,25599,'backpack_untrained_attack',1190), -(8994,25600,'backpack_untrained_backup',1190), -(8995,25601,'backpack_untrained_dodge',1190), -(8996,25602,'backpack_untrained_dodge01',1190), -(8997,25603,'backpack_untrained_dodge02',1190), -(8998,25604,'backpack_untrained_idle',1190), -(8999,25605,'backpack_untrained_ouch',1190), -(9000,25606,'backpack_untrained_ouch01',1190), -(9001,25607,'backpack_untrained_parry',1190), -(9002,25608,'backpack_untrained_recoil',1190), -(9003,25609,'backpack_untrained_strafe_left',1190), -(9004,25610,'backpack_untrained_strafe_right',1190), -(9005,25611,'backpack_untrained_walk',1190), -(9006,25612,'backpack_whirling_attack',1190), -(9007,25613,'backpack_whistle',1190), -(9008,25614,'backpack_wild_swing',1190), -(9009,25615,'backpack_wild_swing_recoilmax',1190), -(9010,25616,'backpack_woodworking_failure',1190), -(9011,25617,'backpack_woodworking_idle',1190), -(9012,25618,'backpack_woodworking_success',1190), -(9013,25619,'backpack_worship_idle',1190), -(9014,25620,'backpack_yeah',1190), -(9015,25623,'attachment',1190), -(9016,25624,'cast_gather_flowers',1190), -(9017,25630,'jump_punch',1190), -(9018,25631,'result_flowers_spew',1190), -(9019,25634,'attack_spit',1190), -(9020,25637,'cast_rocky_uprising',1190), -(9021,25640,'flurry_kick',1190), -(9022,25645,'cast_raptor_claws',1190), -(9023,25649,'result_raptor_spit_p2p',1190), -(9024,25650,'2h_twirl',1190), -(9025,25653,'_idle01',1190), -(9026,25654,'_idle02',1190), -(9027,25655,'cast01_enter',1190), -(9028,25656,'cast01_exit',1190), -(9029,25657,'cast01_idle',1190), -(9030,25658,'cast02_enter',1190), -(9031,25659,'cast02_exit',1190), -(9032,25660,'cast02_idle',1190), -(9033,25666,'pike_twirl',1190), -(9034,25685,'sound_buff_02',1190), -(9035,25688,'attack_flame',1190), -(9036,25693,'injured_idle',1190), -(9037,25713,'snd_wing_flap',1190), -(9038,25714,'2h_cast_enter',1190), -(9039,25715,'2h_cast_exit',1190), -(9040,25716,'2h_cast_idle',1190), -(9041,25728,'snd_fs',1190), -(9042,25729,'snd_jump_whoosh',1190), -(9043,25732,'cast_belly_flop',1190), -(9044,25735,'cast_rocky_blast',1190), -(9045,25738,'draconian_injured_idle',1190), -(9046,25739,'draconian_search_enter',1190), -(9047,25740,'draconian_search_exit',1190), -(9048,25741,'draconian_search_idle',1190), -(9049,25743,'result_lumpy_spit_p2p',1190), -(9050,25750,'design_illusion_fail',1190), -(9051,25752,'knocktoknees_exit',1190), -(9052,25759,'golem_fx_tubes',1190), -(9053,25760,'golem_summon_fx',1190), -(9054,25764,'snd_dbg_spawn',1190), -(9055,25765,'snd_death',1190), -(9056,25768,'snd_fs_l',1190), -(9057,25769,'snd_fs_r',1190), -(9058,25770,'snd_jump',1190), -(9059,25772,'snd_offensive_buff',1190), -(9060,25786,'snd_whirl_attk',1190), -(9061,25787,'sound_cast',1190), -(9062,25794,'drakota_run_glide',1190), -(9063,25797,'ice_cube_trail_lf',1190), -(9064,25798,'ice_cube_trail_lr',1190), -(9065,25799,'ice_cube_trail_rf',1190), -(9066,25800,'ice_cube_trail_rr',1190), -(9067,25805,'ice_cube_scratch',1190), -(9068,25808,'snd_charge_up',1190), -(9069,25809,'snd_1h_sword_attack',1190), -(9070,25810,'snd_1h_sword_attack01',1190), -(9071,25811,'snd_1h_sword_attack02',1190), -(9072,25812,'snd_1h_sword_attack03',1190), -(9073,25813,'snd_1h_sword_enter',1190), -(9074,25814,'snd_1h_sword_exit',1190), -(9075,25816,'snd_cast02_yell',1190), -(9076,25817,'snd_converse02',1190), -(9077,25818,'snd_dual_wield_attack',1190), -(9078,25819,'snd_dual_wield_attack01',1190), -(9079,25820,'snd_dual_wield_attack02',1190), -(9080,25821,'snd_dual_wield_attack03',1190), -(9081,25826,'snd_idle_02',1190), -(9082,25833,'cast_foot_vine_stomp',1190), -(9083,25836,'cast_thorn_circle',1190), -(9084,25837,'cast_thorn_clap',1190), -(9085,25841,'land_enter',1190), -(9086,25842,'land_exit',1190), -(9087,25843,'result_wl_root_grow_trap',1190), -(9088,25846,'snd_bf',1190), -(9089,25865,'snd_whirling_attack',1190), -(9090,25866,'snd_wild_swing',1190), -(9091,25873,'cast_eat_snowball',1190), -(9092,25874,'cast_frog_eat',1190), -(9093,25879,'eaten_angler',1190), -(9094,25881,'intro',1190), -(9095,25889,'snd_ouch',1190), -(9096,25914,'splash_fx',1190), -(9097,25921,'angler_mount_idle03',1190), -(9098,25926,'design_obelisk_broken',1190), -(9099,25927,'design_obelisk_repair1',1190), -(9100,25938,'design_obelisk_complete',1190), -(9101,25939,'design_obelisk_fixed',1190), -(9102,25940,'design_obelisk_repair2',1190), -(9103,25941,'float',1190), -(9104,25943,'sacrifice',1190), -(9105,25950,'attack_dive',1190), -(9106,25955,'design_obelisk_repair3',1190), -(9107,25956,'design_obelisk_repair4',1190), -(9108,25963,'attack_hug',1190), -(9109,25964,'attack_roar',1190), -(9110,25965,'cast_obelisk_rock_summon',1190), -(9111,25966,'cast_obelisk_wisps_summon',1190), -(9112,26003,'wing_bolts_fx',1190), -(9113,26012,'cast_sacrifice_disperse',1190), -(9114,26013,'cast_sacrifice_stab',1190), -(9115,26016,'design_sky_chokidai_summon',1190), -(9116,26017,'design_sky_drake_summon',1190), -(9117,26018,'design_sky_plant_summon',1190), -(9118,26019,'design_sky_raptor_summon',1190), -(9119,26026,'cast_eye_blast',1190), -(9120,26031,'design_skyward_comm_beam',1190), -(9121,26032,'fly_hover',1190), -(9122,26033,'ground_blast_fx',1190), -(9123,26059,'sound_teleport_in',1190), -(9124,26067,'wing_buffet_fx',1190), -(9125,26074,'breath_attack_ice',1190), -(9126,26075,'breath_attack_necro',1190), -(9127,26082,'attack05',1190), -(9128,26085,'cast_shadow_appear',1190), -(9129,26086,'cast_teleport_down_fx',1190), -(9130,26089,'fly_enter_idle',1190), -(9131,26091,'result_banish_fx',1190), -(9132,26092,'result_cage_cube',1190), -(9133,26103,'dontuse_fly_enter_idle',1190), -(9134,26110,'attack_arm',1190), -(9135,26111,'cast_druid_light_beams',1190), -(9136,26114,'cast_storm_light_parting',1190), -(9137,26115,'cast_storm_rain_lightning',1190), -(9138,26121,'snd_attack',1190), -(9139,26122,'snd_attack01',1190), -(9140,26123,'snd_attack02',1190), -(9141,26124,'snd_attack03',1190), -(9142,26125,'snd_attack_dive',1190), -(9143,26126,'snd_attack_hug',1190), -(9144,26127,'snd_cast',1190), -(9145,26128,'snd_cast_1',1190), -(9146,26129,'snd_combat_enter',1190), -(9147,26130,'snd_combat_idle01',1190), -(9148,26131,'snd_dead_enter',1190), -(9149,26132,'snd_defensive_buff',1190), -(9150,26137,'snd_fs_mud_01',1190), -(9151,26138,'snd_fs_mud_02',1190), -(9152,26140,'snd_run',1190), -(9153,26151,'design_target_aoe_green',1190), -(9154,26152,'design_target_aoe_purple',1190), -(9155,26159,'aa_bar_heal',1190), -(9156,26160,'aa_blood_burst',1190), -(9157,26161,'aa_blood_lust',1190), -(9158,26162,'aa_bubble_shield',1190), -(9159,26163,'aa_bubble_shield_in',1190), -(9160,26164,'aa_cloud_blast',1190), -(9161,26165,'aa_cloud_buff_out',1190), -(9162,26166,'aa_cloud_ring_burst',1190), -(9163,26167,'aa_cold_blast',1190), -(9164,26168,'aa_cyclone',1190), -(9165,26169,'aa_dark_cyclone',1190), -(9166,26170,'aa_dark_ring_vanish',1190), -(9167,26171,'aa_divine_hit',1190), -(9168,26172,'aa_fire_column',1190), -(9169,26173,'aa_flurry_daggers',1190), -(9170,26174,'aa_forced_shader_burst',1190), -(9171,26175,'aa_glow_eyes',1190), -(9172,26176,'aa_hand_buff',1190), -(9173,26177,'aa_hand_cross_dark',1190), -(9174,26178,'aa_hand_dark_rings',1190), -(9175,26179,'aa_hand_flare',1190), -(9176,26180,'aa_hand_leaf',1190), -(9177,26181,'aa_hand_pattern',1190), -(9178,26182,'aa_hand_runes',1190), -(9179,26183,'aa_hand_sparkles',1190), -(9180,26184,'aa_hand_sparkles_dark',1190), -(9181,26185,'aa_hand_sparks',1190), -(9182,26186,'aa_hand_stars',1190), -(9183,26187,'aa_hand_stars_dark',1190), -(9184,26188,'aa_head_halo',1190), -(9185,26189,'aa_heal_hands_blast',1190), -(9186,26190,'aa_ice_comet',1190), -(9187,26191,'aa_ice_comet_shower',1190), -(9188,26192,'aa_light_ward',1190), -(9189,26193,'aa_lightning_bolt',1190), -(9190,26194,'aa_massive_hit',1190), -(9191,26195,'aa_music_beam_p2p',1190), -(9192,26196,'aa_plasma_hit',1190), -(9193,26197,'aa_poison_spore_p2p',1190), -(9194,26198,'aa_radiant_glow',1190), -(9195,26199,'aa_rune_buff_brawler',1190), -(9196,26200,'aa_rune_drop_base',1190), -(9197,26201,'aa_rune_forward',1190), -(9198,26202,'aa_rune_in_buff',1190), -(9199,26203,'aa_rune_rise_base',1190), -(9200,26204,'aa_rune_rise_buff',1190), -(9201,26205,'aa_shimmer_arrow_p2p',1190), -(9202,26206,'aa_snow_tempest',1190), -(9203,26207,'aa_sound_rings_head',1190), -(9204,26208,'aa_sparkle_trail_weapon_blend',1190), -(9205,26209,'aa_spirit_growing',1190), -(9206,26210,'aa_spirit_swirl_shield',1190), -(9207,26211,'aa_swirly_heal',1190), -(9208,26216,'gather_enter',1190), -(9209,26217,'gather_exit',1190), -(9210,26218,'gather_idle',1190), -(9211,26251,'tough_idle',1190), -(9212,26252,'tough_idle_enter',1190), -(9213,26253,'tough_idle_exit',1190), -(9214,26260,'cast_armament_buff',1190), -(9215,26261,'cast_ember_breath',1190), -(9216,26268,'cast_burrow_dust_fx',1190), -(9217,26273,'design_target_aoe_yellow',1190), -(9218,26275,'result_ember_fire_engulfed',1190), -(9219,26276,'result_explode',1190), -(9220,26277,'result_queen_bug_spit_p2p',1190), -(9221,26280,'snd_doz_attack',1190), -(9222,26281,'snd_doz_attack_01',1190), -(9223,26282,'snd_doz_attack_02',1190), -(9224,26283,'snd_doz_attack_03',1190), -(9225,26284,'snd_doz_cast',1190), -(9226,26285,'snd_doz_combat_enter',1190), -(9227,26286,'snd_doz_death',1190), -(9228,26287,'snd_doz_dodge',1190), -(9229,26288,'snd_doz_flyin_01',1190), -(9230,26289,'snd_doz_flyin_land',1190), -(9231,26290,'snd_doz_kick',1190), -(9232,26291,'snd_doz_knocktoknees',1190), -(9233,26292,'snd_doz_ouch',1190), -(9234,26293,'snd_doz_roar_01',1190), -(9235,26294,'snd_doz_shieldshove',1190), -(9236,26295,'snd_doz_whirl_attack',1190), -(9237,26296,'snd_doz_wildswing',1190), -(9238,26303,'cast_hand_fire_trails',1190), -(9239,26306,'cast_wing_blast',1190), -(9240,26313,'cast_pillar_spin',1190), -(9241,26325,'prestige_point_acquired',1190), -(9242,26326,'result_vaporize',1190), -(9243,26335,'cast_tail_fx',1190), -(9244,26342,'_dodge_backhand',1190), -(9245,26343,'_dodge_down',1190), -(9246,26344,'_dodge_forehand',1190), -(9247,26345,'_dodge_thrust',1190), -(9248,26346,'_knockeddowntoknees',1190), -(9249,26347,'_knockedtoback',1190), -(9250,26348,'_knockedtoback_getup',1190), -(9251,26349,'_knockedtoback_onbackidle',1190), -(9252,26350,'_ouch',1190), -(9253,26351,'_ouch_backhand',1190), -(9254,26352,'_ouch_down',1190), -(9255,26353,'_ouch_forehand',1190), -(9256,26354,'_ouch_thrust',1190), -(9257,26355,'cast_magic_breath',1190), -(9258,26356,'cast_noxious_breath',1190), -(9259,26358,'cast_prestige_fx',1190), -(9260,26365,'cast_fire_blast',1190), -(9261,26371,'result_dark_vaporize',1190), -(9262,26372,'result_time_warp',1190), -(9263,26383,'gathering_tail_cloak',1190), -(9264,26390,'cast_belly_blast',1190), -(9265,26391,'cast_dark_shout',1190), -(9266,26392,'cast_debris',1190), -(9267,26393,'cast_fire_breath',1190), -(9268,26396,'cast_sonic_blast',1190), -(9269,26397,'ch',1190), -(9270,26400,'eyes rotate down',1190), -(9271,26401,'eyes rotate left',1190), -(9272,26402,'eyes rotate right',1190), -(9273,26403,'eyes rotate up',1190), -(9274,26405,'jaw rotate y max',1190), -(9275,26406,'jaw rotate y min',1190), -(9276,26407,'jaw rotate z max',1190), -(9277,26408,'jaw rotate z min',1190), -(9278,26409,'left blink',1190), -(9279,26410,'left brow down',1190), -(9280,26411,'left brow up',1190), -(9281,26412,'left eye wide',1190), -(9282,26413,'left frown',1190), -(9283,26414,'lower lip roll in',1190), -(9284,26415,'lower lip roll out',1190), -(9285,26416,'mbp',1190), -(9286,26417,'mid brows down',1190), -(9287,26418,'mid brows up',1190), -(9288,26419,'mouth down',1190), -(9289,26420,'mouth open',1190), -(9290,26421,'mouth up',1190), -(9291,26422,'normal fv',1190), -(9292,26423,'oo tight',1190), -(9293,26424,'right blink',1190), -(9294,26425,'right brow down',1190), -(9295,26426,'right brow up',1190), -(9296,26427,'right eye wide',1190), -(9297,26428,'right frown',1190), -(9298,26429,'scrunch left',1190), -(9299,26430,'scrunch right',1190), -(9300,26432,'smile left',1190), -(9301,26433,'smile right',1190), -(9302,26464,'upper lip left up',1190), -(9303,26465,'upper lip right up',1190), -(9304,26466,'upper lip roll in',1190), -(9305,26467,'upper lip roll out',1190), -(9306,26474,'base_rest',1190), -(9307,26475,'cast_flaming_wings',1190), -(9308,26480,'eyes_rotate_down',1190), -(9309,26481,'eyes_rotate_left',1190), -(9310,26482,'eyes_rotate_right',1190), -(9311,26483,'eyes_rotate_up',1190), -(9312,26485,'jaw_rotate_y_max',1190), -(9313,26486,'jaw_rotate_y_min',1190), -(9314,26487,'jaw_rotate_z_max',1190), -(9315,26488,'jaw_rotate_z_min',1190), -(9316,26489,'left_blink',1190), -(9317,26490,'left_brow_down',1190), -(9318,26491,'left_brow_up',1190), -(9319,26492,'left_eye_wide',1190), -(9320,26493,'left_frown',1190), -(9321,26494,'mid_brows_down',1190), -(9322,26495,'mid_brows_up',1190), -(9323,26496,'mouth_down',1190), -(9324,26497,'mouth_open',1190), -(9325,26498,'mouth_up',1190), -(9326,26499,'normalfv',1190), -(9327,26500,'oo_tight',1190), -(9328,26501,'right_blink',1190), -(9329,26502,'right_brow_down',1190), -(9330,26503,'right_brow_up',1190), -(9331,26504,'right_eye_wide',1190), -(9332,26505,'right_frown',1190), -(9333,26506,'scrunch_left',1190), -(9334,26507,'scrunch_right',1190), -(9335,26509,'smile_big_left',1190), -(9336,26510,'smile_big_right',1190), -(9337,26541,'upper_lip_left_up',1190), -(9338,26542,'upper_lip_right_up',1190), -(9339,26557,'snd_doz_big_whoosh',1190), -(9340,26558,'snd_doz_big_whoosh_02',1190), -(9341,26565,'aa_notes_blast',1190), -(9342,26566,'aa_stabbing_blades',1190), -(9343,26580,'snd_lumpy_1h_sword_attack01',1190), -(9344,26581,'snd_lumpy_attack',1190), -(9345,26582,'snd_lumpy_attack_01',1190), -(9346,26583,'snd_lumpy_attack_02',1190), -(9347,26584,'snd_lumpy_attack_03',1190), -(9348,26585,'snd_lumpy_attack_bite',1190), -(9349,26586,'snd_lumpy_attack_bites',1190), -(9350,26587,'snd_lumpy_attack_breath',1190), -(9351,26588,'snd_lumpy_attack_shuffle',1190), -(9352,26589,'snd_lumpy_attack_slam',1190), -(9353,26590,'snd_lumpy_attack_tail',1190), -(9354,26591,'snd_lumpy_cast_1',1190), -(9355,26592,'snd_lumpy_combat_enter',1190), -(9356,26593,'snd_lumpy_dead_enter',1190), -(9357,26594,'snd_lumpy_roll',1190), -(9358,26627,'sound_attack_flame',1190), -(9359,26628,'sound_attack_tail',1190), -(9360,26629,'sound_bites',1190), -(9361,26630,'sound_defensive_buff',1190), -(9362,26634,'sound_idle_01',1190), -(9363,26649,'snd_attack04',1190), -(9364,26654,'snd_fs_mud',1190), -(9365,26656,'snd_mud_elem_attack',1190), -(9366,26657,'snd_mud_elem_attack01',1190), -(9367,26658,'snd_mud_elem_attack02',1190), -(9368,26659,'snd_mud_elem_chargeup',1190), -(9369,26660,'snd_mud_elem_dead_enter',1190), -(9370,26661,'snd_mud_elem_dodge_fore',1190), -(9371,26662,'snd_mud_elem_knocktoback',1190), -(9372,26663,'snd_mud_elem_knocktoknees',1190), -(9373,26664,'snd_mud_elem_ouch_thrust',1190), -(9374,26665,'snd_mud_elem_shield_shove',1190), -(9375,26666,'snd_mud_elem_whirl_attack',1190), -(9376,26667,'snd_mud_elem_wildswing',1190), -(9377,26668,'snd_mud_vox_attck_01',1190), -(9378,26669,'snd_mud_vox_attck_02',1190), -(9379,26670,'snd_mud_vox_attck_roar',1190), -(9380,26671,'snd_mud_vox_cast_1',1190), -(9381,26672,'snd_mud_vox_dead_enter',1190), -(9382,26673,'snd_mud_vox_def_buff',1190), -(9383,26684,'drakota_mount_fly_fall',1190), -(9384,26687,'prestige_point_sound',1190), -(9385,26690,'snd_cast4',1190), -(9386,26691,'snd_doz_spawn',1190), -(9387,26710,'snd_xygoz1_attack',1190), -(9388,26711,'snd_xygoz1_attack01',1190), -(9389,26712,'snd_xygoz1_attack02',1190), -(9390,26713,'snd_xygoz1_attack03',1190), -(9391,26714,'snd_xygoz1_attack_flame',1190), -(9392,26715,'snd_xygoz1_attack_tail',1190), -(9393,26716,'snd_xygoz1_dead_enter',1190), -(9394,26717,'snd_xygoz1_idle01',1190), -(9395,26718,'snd_xygoz1_knockedtoback',1190), -(9396,26719,'snd_xygoz1_superbuff',1190), -(9397,26734,'snd_drakota_vox_01',1190), -(9398,26735,'snd_drakota_vox_02',1190), -(9399,26736,'snd_drakota_vox_03',1190), -(9400,26748,'lower_lip_left_down',1190), -(9401,26749,'lower_lip_right_down',1190), -(9402,26760,'design_skyshrine_time_rift',1190), -(9403,26767,'_left_eye_wide',1190), -(9404,26768,'_right_eye_wide',1190), -(9405,26812,'yes',1190), -(9406,26843,'snd_vox_short',1190), -(9407,26856,'result_beetle_fireball_p2p',1190), -(9408,26888,'summon_01',1190), -(9409,26889,'1h_sword_cast',1190), -(9410,26890,'1h_sword_cast_enter',1190), -(9411,26891,'1h_sword_cast_exit',1190), -(9412,26892,'1h_sword_cast_idle',1190), -(9413,26893,'1h_sword_combat_art_buff',1190), -(9414,26894,'1h_sword_combat_enter',1190), -(9415,26901,'aa_lightning_blast_hit',1190), -(9416,26907,'knocked_to_back',1190), -(9417,26908,'knocked_to_back_getup',1190), -(9418,26909,'knocked_to_back_idle',1190), -(9419,26920,'design_groundportal_rift',1190), -(9420,26931,'design_corrupted',1190), -(9421,26934,'result_light_explode',1190), -(9422,26945,'design_qey_mage_tower_fire',1190), -(9423,26946,'design_qey_portal_from_hell',1190), -(9424,26953,'aa_time_warp',1190), -(9425,26959,'knockedtoknees_dead',1190), -(9426,26961,'persist_magic_damage',1190), -(9427,26972,'design_qey_fire_room',1190), -(9428,26973,'design_qey_wall_crack',1190), -(9429,26976,'read_book',1190), -(9430,27020,'summon_fx_long',1190), -(9431,27021,'summon_fx_short',1190), -(9432,27022,'time_stop_sound',1190), -(9433,27029,'aa_mental_damage',1190), -(9434,27030,'aa_mental_smite',1190), -(9435,27031,'aa_soothe',1190), -(9436,27036,'idlea',1190), -(9437,27037,'idlleb',1190), -(9438,27071,'winged_lion_backup',1190), -(9439,27072,'winged_lion_fall',1190), -(9440,27073,'winged_lion_fly_backup',1190), -(9441,27074,'winged_lion_fly_climb',1190), -(9442,27075,'winged_lion_fly_dive',1190), -(9443,27076,'winged_lion_fly_down',1190), -(9444,27077,'winged_lion_fly_glide',1190), -(9445,27078,'winged_lion_fly_glide_left',1190), -(9446,27079,'winged_lion_fly_glide_right',1190), -(9447,27080,'winged_lion_fly_idle',1190), -(9448,27081,'winged_lion_fly_run',1190), -(9449,27082,'winged_lion_fly_strafe_left',1190), -(9450,27083,'winged_lion_fly_strafe_right',1190), -(9451,27084,'winged_lion_fly_turn_left',1190), -(9452,27085,'winged_lion_fly_turn_right',1190), -(9453,27086,'winged_lion_fly_up',1190), -(9454,27087,'winged_lion_fly_walk',1190), -(9455,27088,'winged_lion_idle',1190), -(9456,27089,'winged_lion_idle01',1190), -(9457,27090,'winged_lion_jump',1190), -(9458,27091,'winged_lion_jump_substitute',1190), -(9459,27092,'winged_lion_land',1190), -(9460,27093,'winged_lion_long_fall',1190), -(9461,27094,'winged_lion_run',1190), -(9462,27095,'winged_lion_turn_left',1190), -(9463,27096,'winged_lion_turn_right',1190), -(9464,27097,'winged_lion_walk',1190), -(9465,27108,'idle_a',1190), -(9466,27109,'idle_b',1190), -(9467,27110,'idle_c',1190), -(9468,27121,'evil_bird_backup',1190), -(9469,27122,'evil_bird_fall',1190), -(9470,27123,'evil_bird_fly_backup',1190), -(9471,27124,'evil_bird_fly_climb',1190), -(9472,27125,'evil_bird_fly_dive',1190), -(9473,27126,'evil_bird_fly_down',1190), -(9474,27127,'evil_bird_fly_glide',1190), -(9475,27128,'evil_bird_fly_glide_left',1190), -(9476,27129,'evil_bird_fly_glide_right',1190), -(9477,27130,'evil_bird_fly_idle',1190), -(9478,27131,'evil_bird_fly_run',1190), -(9479,27132,'evil_bird_fly_strafe_left',1190), -(9480,27133,'evil_bird_fly_strafe_right',1190), -(9481,27134,'evil_bird_fly_turn_left',1190), -(9482,27135,'evil_bird_fly_turn_right',1190), -(9483,27136,'evil_bird_fly_up',1190), -(9484,27137,'evil_bird_fly_walk',1190), -(9485,27138,'evil_bird_idle',1190), -(9486,27139,'evil_bird_idle01',1190), -(9487,27140,'evil_bird_idle02',1190), -(9488,27141,'evil_bird_idle03',1190), -(9489,27142,'evil_bird_idle04',1190), -(9490,27143,'evil_bird_jump',1190), -(9491,27144,'evil_bird_jump_substitute',1190), -(9492,27145,'evil_bird_land',1190), -(9493,27146,'evil_bird_long_fall',1190), -(9494,27147,'evil_bird_run',1190), -(9495,27148,'evil_bird_turn_left',1190), -(9496,27149,'evil_bird_turn_right',1190), -(9497,27150,'evil_bird_walk',1190), -(9498,27152,'lion_winged_backup',1190), -(9499,27153,'lion_winged_fly_backup',1190), -(9500,27154,'lion_winged_fly_idle',1190), -(9501,27155,'lion_winged_fly_run',1190), -(9502,27156,'lion_winged_fly_strafe_left',1190), -(9503,27157,'lion_winged_fly_strafe_right',1190), -(9504,27158,'lion_winged_fly_turn_left',1190), -(9505,27159,'lion_winged_fly_turn_right',1190), -(9506,27160,'lion_winged_fly_walk',1190), -(9507,27161,'lion_winged_idle01',1190), -(9508,27162,'lion_winged_jump',1190), -(9509,27163,'lion_winged_jump_substitute',1190), -(9510,27164,'lion_winged_run',1190), -(9511,27165,'lion_winged_turn_left',1190), -(9512,27166,'lion_winged_turn_right',1190), -(9513,27167,'lion_winged_walk',1190), -(9514,27178,'dance_a',1190), -(9515,27179,'dance_base',1190), -(9516,27186,'aa_rune_blur_circular',1190), -(9517,27192,'knockdowntoknees_enter',1190), -(9518,27193,'knockdowntoknees_exit',1190), -(9519,27194,'knockdowntoknees_idle',1190), -(9520,27201,'aa_earth_summon',1190), -(9521,27202,'aa_summon_minion',1190), -(9522,27209,'aa_rune_chain_swirl',1190), -(9523,27210,'aa_spirit_heal',1190), -(9524,27223,'scream01',1190), -(9525,27244,'soul_idle',1190), -(9526,27245,'soul_suck_fx',1190), -(9527,27246,'soulsuck_enter',1190), -(9528,27247,'soulsuck_idle',1190), -(9529,27254,'bg_achievement_acquired',1190), -(9530,27259,'design_cloudy_dream',1190), -(9531,27260,'design_kerafyrm_barrier',1190), -(9532,27263,'result_cloudy_dream',1190), -(9533,27295,'winged_lion_fly_fall',1190), -(9534,27302,'aa_result_leash',1190), -(9535,27315,'result_sullon_shadow_curse',1190), -(9536,27326,'evil_bird_idle_egg',1190), -(9537,27339,'result_blood_craze',1190), -(9538,27340,'result_blood_craze_p2p',1190), -(9539,27341,'result_blood_wash',1190), -(9540,27342,'result_extract_will_p2p',1190), -(9541,27355,'result_idol_corruption_p2p',1190), -(9542,27366,'design_damage_level1',1190), -(9543,27367,'design_damage_level2',1190), -(9544,27368,'design_damage_level3',1190), -(9545,27369,'design_damage_level4',1190), -(9546,27370,'design_damage_level5',1190), -(9547,27373,'result_forced_shader_burnt',1190), -(9548,27384,'fly_dead',1190), -(9549,27391,'attack06',1190), -(9550,27395,'crying',1190), -(9551,27397,'giggling',1190), -(9552,27404,'attack_breath_snd',1190), -(9553,27405,'breath_blast_barrier',1190), -(9554,27410,'design_kerafyrm_barrier_big',1190), -(9555,27411,'design_kerafyrm_barrier_fight',1190), -(9556,27412,'design_kerafyrm_barrier_small',1190), -(9557,27413,'flames_backlash_snd',1190), -(9558,27416,'ouch01_snd',1190), -(9559,27417,'ouch02_snd',1190), -(9560,27447,'sound_ulthork_awake',1190), -(9561,27448,'sound_ulthork_combat_enter',1190), -(9562,27449,'sound_ulthork_exhale',1190), -(9563,27450,'sound_ulthork_grunt',1190), -(9564,27451,'sound_ulthork_idle',1190), -(9565,27452,'sound_ulthork_run',1190), -(9566,27453,'sound_ulthork_run01',1190), -(9567,27454,'sound_ulthork_scratch01',1190), -(9568,27455,'sound_ulthork_scratch02',1190), -(9569,27456,'sound_ulthork_snore',1190), -(9570,27457,'sound_ulthork_walk',1190), -(9571,27458,'sound_ulthork_walk01',1190), -(9572,27469,'frogdance',1190), -(9573,27472,'rock_fx',1190), -(9574,27485,'result_compass_hover',1190), -(9575,27492,'arasai_evil_skull_swirls',1190), -(9576,27497,'dark_elf_splash_mist',1190), -(9577,27498,'erudite_book_hover_runes',1190), -(9578,27499,'freeblood_skull_swirls_mesh',1190), -(9579,27500,'gnome_hands_trail_clockwork_blast',1190), -(9580,27501,'halfelf_compass_hover',1190), -(9581,27502,'human_water_dripping_wake',1190), -(9582,27503,'iksar_water_forced_shader_splash',1190), -(9583,27505,'kerra_flea_infestation_trail',1190), -(9584,27507,'ogre_fly_swarm_trail',1190), -(9585,27508,'ratonga_forced_shader_bertox',1190), -(9586,27509,'sarnak_firestrips_trail',1190), -(9587,27541,'troll_poison_spirits_gather',1190), -(9588,27552,'dwarf_rift_crack_dig',1190), -(9589,27553,'fae_fireflies_trail',1190), -(9590,27554,'froglok_godly_light_sparkles',1190), -(9591,27561,'attack_fistslam',1190), -(9592,27562,'attack_groundroar',1190), -(9593,27563,'attack_rage',1190), -(9594,27566,'combat_idle03',1190), -(9595,27569,'halfling_hands_cards_coins_trail',1190), -(9596,27570,'highelf_radiant_sparkles',1190), -(9597,27573,'powerroar',1190), -(9598,27574,'powerslam',1190), -(9599,27606,'targeted_left',1190), -(9600,27607,'targeted_right',1190), -(9601,27608,'transition_left',1190), -(9602,27609,'woodelf_leafy_glow_shader',1190), -(9603,27616,'barbarian_snow_ice_trail',1190), -(9604,27621,'erudite_asteroid_belt',1190), -(9605,27622,'freeblood_bat_swirls_mesh',1190), -(9606,27623,'gnome_clockwork_gears_blast',1190), -(9607,27624,'human_claymore_orbit_trail',1190), -(9608,27626,'kerra_spirit_guide_mesh',1190), -(9609,27628,'portal_jump',1190), -(9610,27629,'portal_stomp',1190), -(9611,27630,'ratonga_brain_storm_text',1190), -(9612,27662,'transition_back',1190), -(9613,27663,'transition_right',1190), -(9614,27672,'cast_skull_head_blast',1190), -(9615,27675,'design_dark_portal',1190), -(9616,27676,'design_light_portal',1190), -(9617,27679,'result_blood_dark',1190), -(9618,27686,'snd_land',1190), -(9619,27701,'snd_winged_lion_idle_01',1190), -(9620,27702,'snd_winged_lion_jump_sub',1190), -(9621,27704,'sound_evil_bird_jump_sub',1190), -(9622,27705,'sound_evil_bird_peck',1190), -(9623,27706,'sound_evil_bird_scratch',1190), -(9624,27707,'sound_evil_bird_vox_idle03',1190), -(9625,27714,'attack_arms',1190), -(9626,27715,'attack_jumpslam',1190), -(9627,27716,'cast_illusionary_charge_up',1190), -(9628,27717,'cast_illusionary_emanation',1190), -(9629,27723,'lose_weapon',1190), -(9630,27725,'result_floating_chain_root',1190), -(9631,27726,'result_illusionary_lights',1190), -(9632,27758,'transition_back_extract',1190), -(9633,27759,'transition_left_extract',1190), -(9634,27760,'transition_right_extract',1190), -(9635,27771,'dance_short',1190), -(9636,27803,'sound_ulthork_charge_up',1190), -(9637,27804,'sound_ulthork_fs',1190), -(9638,27805,'sound_ulthork_idle_01',1190), -(9639,27806,'sound_ulthork_idle_02',1190), -(9640,27807,'sound_ulthork_shield_shove',1190), -(9641,27808,'sound_ulthork_whirl_attack_whsh',1190), -(9642,27820,'mace_blast',1190), -(9643,27822,'rocky_trail',1190), -(9644,27823,'rumble_shake',1190), -(9645,27831,'snd_peck',1190), -(9646,27856,'transition_back01_extract',1190), -(9647,27857,'victory',1190), -(9648,27868,'fear_wave',1190), -(9649,27885,'snd_tbird_pet_angry',1190), -(9650,27886,'snd_tbird_pet_attack01',1190), -(9651,27887,'snd_tbird_pet_happy',1190), -(9652,27888,'snd_tbird_pet_idle01',1190), -(9653,27889,'snd_tbird_pet_idle02',1190), -(9654,27890,'snd_tbird_pet_idle03',1190), -(9655,27891,'snd_tbird_pet_trick',1190), -(9656,27900,'cast_toxic_gathering',1190), -(9657,27901,'cast_toxic_rain',1190), -(9658,27904,'hand_blast',1190), -(9659,27911,'cast_acid_rain',1190), -(9660,27922,'design_circle_warning_zone',1190), -(9661,27923,'design_half_circle_warning_zone',1190), -(9662,27924,'design_oval_warning_zone',1190), -(9663,27925,'design_third_circle_warning_zone',1190), -(9664,27932,'beckon_enter',1190), -(9665,27933,'beckon_exit',1190), -(9666,27940,'aa_double_pyramid',1190), -(9667,27947,'aa_water_summon',1190), -(9668,27954,'aa_ooze_summon',1190), -(9669,27955,'aa_skull_summon',1190), -(9670,27960,'idle01temp',1190), -(9671,27962,'jaw_rotate_max',1190), -(9672,27965,'smile_left',1190), -(9673,27966,'smile_right',1190), -(9674,27977,'design_fire_doorway',1190), -(9675,27978,'design_icy_doorway',1190), -(9676,27989,'dead02',1190), -(9677,27990,'design_fire_pillar',1190), -(9678,27991,'design_green_light_beam',1190), -(9679,27992,'design_ice_pillar',1190), -(9680,27993,'design_purple_light_beam',1190), -(9681,27994,'design_red_light_beam',1190), -(9682,27995,'design_yellow_light_beam',1190), -(9683,27998,'sc_win_chest_fx',1190), -(9684,28011,'result_fire_beam_p2p',1190), -(9685,28012,'result_ice_beam_p2p',1190), -(9686,28025,'piledriver',1190), -(9687,28034,'chargeup',1190), -(9688,28035,'chargeup_enter',1190), -(9689,28036,'chargeup_exit',1190), -(9690,28037,'chargeup_idle',1190), -(9691,28040,'design_lightning_pillar_blue',1190), -(9692,28041,'design_lightning_pillar_red',1190), -(9693,28042,'design_st_boss_lightning_blue',1190), -(9694,28043,'design_st_boss_lightning_red',1190), -(9695,28050,'cast03',1190), -(9696,28051,'cast04',1190), -(9697,28054,'cast_squid_loop',1190), -(9698,28057,'design_orange_light_beam',1190), -(9699,28058,'design_st_boss_platform_charged_blue',1190), -(9700,28059,'design_st_boss_platform_charged_red',1190), -(9701,28066,'blue_crystal_dead',1190), -(9702,28067,'blue_crystal_on',1190), -(9703,28072,'design_urn_shatter',1190), -(9704,28075,'red_crystal_dead',1190), -(9705,28076,'red_crystal_on',1190), -(9706,28077,'result_lightning_floor_blast_blue',1190), -(9707,28078,'result_lightning_floor_blast_red',1190), -(9708,28089,'dead01',1190), -(9709,28090,'design_lightning_pillar_purple',1190), -(9710,28091,'design_st_boss_lightning_purple',1190), -(9711,28092,'design_st_boss_platform_charged_purple',1190), -(9712,28095,'result_damaged',1190), -(9713,28096,'result_glass_blast',1190), -(9714,28097,'result_lightning_floor_blast_purple',1190), -(9715,28098,'result_radiant_glow_no_mesh',1190), -(9716,28099,'result_tether_buff_p2p',1190), -(9717,28106,'cast_blue_buff',1190), -(9718,28109,'cast_red_buff',1190), -(9719,28110,'cast_white_buff',1190), -(9720,28136,'sound_evil_bird_egg_vox',1190), -(9721,28147,'design_ice_column_shatter',1190), -(9722,28148,'drinal_summon',1190), -(9723,28159,'design_circle_warning_zone_blue',1190), -(9724,28160,'design_circle_warning_zone_gold',1190), -(9725,28161,'design_half_circle_warning_zone_blue',1190), -(9726,28162,'design_half_circle_warning_zone_gold',1190), -(9727,28163,'design_oval_warning_zone_blue',1190), -(9728,28164,'design_oval_warning_zone_gold',1190), -(9729,28165,'design_third_circle_warning_zone_blue',1190), -(9730,28166,'design_third_circle_warning_zone_gold',1190), -(9731,28178,'lay_egg_hatch',1190), -(9732,28189,'design_vd_portal_red',1190), -(9733,28223,'status_quest_completes_repeatable',1190), -(9734,28224,'status_quest_completes_tradeskill',1190), -(9735,28225,'status_quest_gives_repeatable',1190), -(9736,28226,'status_quest_gives_tradeskill',1190), -(9737,28227,'status_quest_updates_repeatable',1190), -(9738,28228,'status_quest_updates_tradeskill',1190), -(9739,28239,'drinal_trail_weapon_flames',1190), -(9740,28240,'drinal_trail_weapon_poison',1190), -(9741,28243,'result_flash_weapon_green',1190), -(9742,28254,'drinal_absorb_back_exit',1190), -(9743,28255,'drinal_absorb_back_idle',1190), -(9744,28256,'drinal_absorb_forward_exit',1190), -(9745,28257,'drinal_absorb_forward_idle',1190), -(9746,28258,'drinal_absorb_left_exit',1190), -(9747,28259,'drinal_absorb_left_idle',1190), -(9748,28260,'drinal_absorb_right_exit',1190), -(9749,28261,'drinal_absorb_right_idle',1190), -(9750,28262,'drinal_fireball_gather',1190), -(9751,28263,'drinal_skull_gather',1190), -(9752,28264,'drinal_spirt_gather',1190), -(9753,28265,'drinal_staff_blast',1190), -(9754,28268,'result_drinal_spirits_p2p',1190), -(9755,28269,'result_spirits_blast_out',1190), -(9756,28278,'close_enter',1190), -(9757,28279,'closed_idle',1190), -(9758,28282,'dragon_attack',1190), -(9759,28283,'dragon_idle',1190), -(9760,28286,'open_enter',1190), -(9761,28287,'open_idle',1190), -(9762,28298,'evil_bird_idle05',1190), -(9763,28301,'orbiting_buff_all',1190), -(9764,28302,'orbiting_buff_blue',1190), -(9765,28303,'orbiting_buff_blue_white',1190), -(9766,28304,'orbiting_buff_red',1190), -(9767,28305,'orbiting_buff_red_blue',1190), -(9768,28306,'orbiting_buff_red_white',1190), -(9769,28307,'orbiting_buff_white',1190), -(9770,28320,'result_spike_cage',1190), -(9771,28331,'design_drinals_portal',1190), -(9772,28338,'attack_cannibal',1190), -(9773,28345,'oldidle',1190), -(9774,28354,'cast_shadow_breath',1190), -(9775,28357,'drinal_frontal_blast',1190), -(9776,28358,'drinal_warning_zone',1190), -(9777,28365,'asleep',1190), -(9778,28366,'attack_breath_old',1190), -(9779,28371,'design_groundportal_rift_gehein',1190), -(9780,28372,'dual_wield_knockeddowntoknees',1190), -(9781,28373,'dual_wield_knockedtoback_onbackidle',1190), -(9782,28375,'komodo_npc_glide',1190), -(9783,28409,'tradeart_forge_hammers_anvil',1190), -(9784,28420,'design_agitated',1190), -(9785,28421,'design_distorted',1190), -(9786,28422,'design_fear',1190), -(9787,28440,'snd_tirun_enf_attack',1190), -(9788,28441,'snd_tirun_enf_attack01',1190), -(9789,28442,'snd_tirun_enf_attack02',1190), -(9790,28443,'snd_tirun_enf_attack03',1190), -(9791,28444,'snd_tirun_enf_cast1',1190), -(9792,28445,'snd_tirun_enf_chargeup',1190), -(9793,28446,'snd_tirun_enf_combat_enter',1190), -(9794,28447,'snd_tirun_enf_combat_idle01',1190), -(9795,28448,'snd_tirun_enf_dead enter',1190), -(9796,28449,'snd_tirun_enf_dodge',1190), -(9797,28450,'snd_tirun_enf_knocktoknees',1190), -(9798,28451,'snd_tirun_enf_ouch',1190), -(9799,28452,'snd_tirun_enf_shield_shove',1190), -(9800,28453,'snd_tirun_enf_whirling_attack',1190), -(9801,28454,'snd_tirun_enf_wild_swing',1190), -(9802,28472,'tradeart_flask_beaker_pour',1190), -(9803,28473,'tradeart_forge_hammer_metal',1190), -(9804,28474,'tradeart_saw_log',1190), -(9805,28485,'design_drinals_floor_panel_blue',1190), -(9806,28486,'design_drinals_floor_panel_challege_blue',1190), -(9807,28487,'design_drinals_floor_panel_challege_red',1190), -(9808,28488,'design_drinals_floor_panel_red',1190), -(9809,28489,'design_drinals_vessel_arc_blue',1190), -(9810,28490,'design_drinals_vessel_arc_red',1190), -(9811,28494,'result_bastion_beam_p2p',1190), -(9812,28509,'shaman_summon_fx',1190), -(9813,28520,'design_tof_rock_collapse01',1190), -(9814,28521,'design_tof_rock_collapse02',1190), -(9815,28522,'design_tof_rock_collapse03',1190), -(9816,28523,'design_tof_rock_collapse04',1190), -(9817,28558,'spit',1190), -(9818,28569,'design_arcane_barrier',1190), -(9819,28570,'design_divine_barrier',1190), -(9820,28574,'result_magic_barrier_beam_p2p',1190), -(9821,28583,'cast_werewolf_appear',1190), -(9822,28584,'cast_werewolf_hair',1190), -(9823,28587,'csat_werewolf_vanish',1190), -(9824,28594,'attack_eye_cone',1190), -(9825,28599,'gazer_charge_up',1190), -(9826,28603,'result_essence_suck_p2p',1190), -(9827,28604,'result_gazer_flame_eye_beam_p2p',1190), -(9828,28619,'sky_float_idle',1190), -(9829,28650,'zap_attack',1190), -(9830,28661,'fs',1190), -(9831,28666,'shaman_crouch_idle',1190), -(9832,28673,'snd_skirth_attack',1190), -(9833,28674,'snd_skirth_attack01',1190), -(9834,28675,'snd_skirth_attack02',1190), -(9835,28676,'snd_skirth_attack03',1190), -(9836,28677,'snd_skirth_aura',1190), -(9837,28678,'snd_skirth_cast_1',1190), -(9838,28679,'snd_skirth_chargeup',1190), -(9839,28680,'snd_skirth_combat_enter',1190), -(9840,28681,'snd_skirth_combat_enter1',1190), -(9841,28682,'snd_skirth_dead_enter',1190), -(9842,28683,'snd_skirth_knocktobackgetup',1190), -(9843,28684,'snd_skirth_ouch',1190), -(9844,28685,'snd_skirth_shiield_shove',1190), -(9845,28686,'snd_skirth_spit',1190), -(9846,28687,'snd_skirth_whirling_attack',1190), -(9847,28688,'snd_skirth_wildswing',1190), -(9848,28713,'zap_enter',1190), -(9849,28714,'zap_exit',1190), -(9850,28715,'zap_idle',1190), -(9851,28760,'were_cast_idle',1190), -(9852,28774,'result_ethernere_fx',1190), -(9853,28782,'snd_skirth_idle03',1190), -(9854,28796,'result_aggression_removal',1190), -(9855,28797,'result_aggression_removal_p2p',1190), -(9856,28798,'result_healing_trail_p2p',1190), -(9857,28799,'result_lifebringer_glade',1190), -(9858,28831,'trdskl_aggro_life_wand',1190), -(9859,28847,'snd_baelon_attack',1190), -(9860,28848,'snd_baelon_attack01',1190), -(9861,28849,'snd_baelon_attack_arms',1190), -(9862,28850,'snd_baelon_fs',1190), -(9863,28851,'snd_baelon_idle02',1190), -(9864,28852,'snd_baelon_idle03',1190), -(9865,28853,'snd_baelon_lose_weapon',1190), -(9866,28854,'snd_baelon_ouch',1190), -(9867,28855,'snd_baelon_powerslam',1190), -(9868,28856,'snd_baelon_summon',1190), -(9869,28857,'snd_baelon_targeted_right',1190), -(9870,28858,'snd_baelon_transition_back',1190), -(9871,28859,'snd_baelon_transition_back01_extract',1190), -(9872,28860,'snd_baelon_transition_back_extract',1190), -(9873,28861,'snd_baelon_transition_left_extract',1190), -(9874,28862,'snd_baelon_transition_right',1190), -(9875,28863,'snd_baelon_transition_right_extract',1190), -(9876,28864,'snd_baelon_unarmed_attack',1190), -(9877,28865,'snd_baelon_unarmed_attack01',1190), -(9878,28866,'snd_baelon_unarmed_attack02',1190), -(9879,28867,'snd_baelon_unarmed_attack_fistslam',1190), -(9880,28868,'snd_baelon_unarmed_attack_jumpslam',1190), -(9881,28869,'snd_baelon_unarmed_attack_stomp',1190), -(9882,28870,'snd_baelon_unarmed_dead_enter',1190), -(9883,28871,'snd_baelon_unarmed_fs',1190), -(9884,28872,'snd_baelon_unarmed_idle01',1190), -(9885,28873,'snd_baelon_unarmed_idle02',1190), -(9886,28874,'snd_baelon_unarmed_ouch',1190), -(9887,28875,'snd_baelon_unarmed_portal_jump',1190), -(9888,28876,'snd_baelon_unarmed_portal_stomp',1190), -(9889,28877,'snd_baelon_unarmed_victory',1190), -(9890,28878,'snd_baelon_whirling_attack',1190), -(9891,28879,'snd_baelon_wild_swing',1190), -(9892,28890,'fx_foot_trail_lf',1190), -(9893,28891,'fx_foot_trail_lh',1190), -(9894,28892,'fx_foot_trail_rf',1190), -(9895,28893,'fx_foot_trail_rh',1190), -(9896,28917,'sound_bodyfall',1190), -(9897,28928,'sound_whoosh',1190), -(9898,28930,'untrainted_wildswing',1190), -(9899,28941,'gehein_aura_lp',1190), -(9900,28946,'sfx_attack_vox',1190), -(9901,28947,'sfx_death_vox',1190), -(9902,28948,'sfx_gehein_death_vox',1190), -(9903,28949,'sfx_gehein_vox_attack',1190), -(9904,28950,'sfx_gehein_vox_ouch',1190), -(9905,28951,'sfx_whoosh',1190), -(9906,28952,'sfx_whoosh_high',1190), -(9907,28973,'snd_screecher_attack',1190), -(9908,28974,'snd_screecher_attack01',1190), -(9909,28975,'snd_screecher_attack02',1190), -(9910,28976,'snd_screecher_attack03',1190), -(9911,28977,'snd_screecher_aura_lp',1190), -(9912,28978,'snd_screecher_cast',1190), -(9913,28979,'snd_screecher_cast01',1190), -(9914,28980,'snd_screecher_combat_enter',1190), -(9915,28981,'snd_screecher_dead_enter',1190), -(9916,28982,'snd_screecher_idel01',1190), -(9917,28983,'snd_screecher_idle02',1190), -(9918,28984,'snd_screecher_jump',1190), -(9919,28985,'snd_screecher_ouch',1190), -(9920,28986,'snd_screecher_scream',1190), -(9921,28987,'snd_screecher_scream01',1190), -(9922,28988,'snd_screecher_whirling_attack',1190), -(9923,29002,'result_life_statue_fx',1190), -(9924,29013,'dont_use_ouch',1190), -(9925,29024,'fly_in_old',1190), -(9926,29025,'ilde01',1190), -(9927,29045,'snd_komodo_attack',1190), -(9928,29046,'snd_komodo_attack01',1190), -(9929,29047,'snd_komodo_cast01',1190), -(9930,29048,'snd_komodo_dead_enter',1190), -(9931,29049,'snd_komodo_knocktoback',1190), -(9932,29050,'snd_komodo_ouch',1190), -(9933,29051,'snd_komodo_whirling_attack',1190), -(9934,29052,'snd_komodo_wild_swing',1190), -(9935,29063,'design_etherene_fire',1190), -(9936,29064,'design_ethernere_vines',1190), -(9937,29075,'idle05',1190), -(9938,29090,'sfx_vox_gehein_laugh',1190), -(9939,29092,'snd_chitari_1h_sword_attack',1190), -(9940,29093,'snd_chitari_1h_sword_attack01',1190), -(9941,29094,'snd_chitari_1h_sword_attack02',1190), -(9942,29095,'snd_chitari_1h_sword_enter',1190), -(9943,29096,'snd_chitari_attack',1190), -(9944,29097,'snd_chitari_attack01',1190), -(9945,29098,'snd_chitari_attack02',1190), -(9946,29099,'snd_chitari_attack03',1190), -(9947,29100,'snd_chitari_attack_cannibal',1190), -(9948,29101,'snd_chitari_charge_up',1190), -(9949,29102,'snd_chitari_dead_enter',1190), -(9950,29103,'snd_chitari_idle01',1190), -(9951,29104,'snd_chitari_knockedtoback_getup',1190), -(9952,29105,'snd_chitari_ouch',1190), -(9953,29106,'snd_chitari_ouch_forehand',1190), -(9954,29107,'snd_chitari_shield_shove',1190), -(9955,29108,'snd_chitari_whirling_attack',1190), -(9956,29109,'snd_chitari_wild_swing',1190), -(9957,29116,'aa_smoke_teleport',1190), -(9958,29117,'aa_wave_splash',1190), -(9959,29118,'aa_whirlwind_teleport',1190), -(9960,29123,'idle04_',1190), -(9961,29130,'aa_scythe_slash',1190), -(9962,29137,'aa_frozen_rain',1190), -(9963,29138,'aa_toxic_mist',1190), -(9964,29146,'result_bone_glow_3',1190), -(9965,29147,'result_fire_attack_p2p',1190), -(9966,29158,'dontuse_knockedtoback',1190), -(9967,29159,'dontuse_knockedtoback_getup',1190), -(9968,29160,'dontuse_knockedtoback_onbackidle',1190), -(9969,29167,'aa_fire_swirl_shield',1190), -(9970,29168,'aa_head_skeleton_hands_blast',1190), -(9971,29169,'aa_heal_skeleton_hands_blast',1190), -(9972,29170,'aa_planar_fire_blast',1190), -(9973,29171,'aa_second_skin',1190), -(9974,29178,'aa_cast_wind_spin',1190), -(9975,29179,'aa_dark_swirly_wisps',1190), -(9976,29180,'aa_heal_splash',1190), -(9977,29181,'aa_lightning_siphon',1190), -(9978,29182,'aa_nature_heal',1190), -(9979,29183,'aa_scimitar_cyclone',1190), -(9980,29184,'aa_spirit_swirl_buff_ward',1190), -(9981,29212,'snd_were_1h_sword_attack01_vox',1190), -(9982,29213,'snd_were_1h_sword_attack02_vox',1190), -(9983,29214,'snd_were_1h_sword_attack03_vox',1190), -(9984,29215,'snd_were_1h_sword_attack_vox',1190), -(9985,29216,'snd_were_attack01_vox',1190), -(9986,29217,'snd_were_attack02_vox',1190), -(9987,29218,'snd_were_attack_vox',1190), -(9988,29219,'snd_were_cast_vox',1190), -(9989,29220,'snd_were_combat_idle01_vox',1190), -(9990,29221,'snd_were_dead_enter_vox',1190), -(9991,29222,'snd_were_dual_wield_attack01_vox',1190), -(9992,29223,'snd_were_dual_wield_attack02_vox',1190), -(9993,29224,'snd_were_dual_wield_attack03_vox',1190), -(9994,29225,'snd_were_dual_wield_attack_vox',1190), -(9995,29226,'snd_were_kick_vox',1190), -(9996,29227,'snd_were_ouch_vox',1190), -(9997,29228,'snd_were_shield_shove_vox',1190), -(9998,29229,'snd_were_super_buff_vox',1190), -(9999,29230,'snd_were_wild_swing_vox',1190), -(10000,29242,'swoosh_huge',1190), -(10001,29249,'aa_arrow_rapid_salvo',1190), -(10002,29250,'aa_fire_arrow_p2p',1190), -(10003,29251,'aa_music_dagger_buff',1190), -(10004,29252,'aa_sound_wave_blast',1190), -(10005,29253,'bird_squawk_sound',1190), -(10006,29254,'cast_bagpipe_sound',1190), -(10007,29255,'cast_bard_bagpipes',1190), -(10008,29262,'scaled_hands_attack03',1190), -(10009,29269,'cast_dome_barrier_fx',1190), -(10010,29274,'design_comm_on',1190), -(10011,29275,'design_tourbillion_flux_fx',1190), -(10012,29276,'design_tourbillion_persist_fx',1190), -(10013,29279,'result_tourbillion_essence_suck_p2p',1190), -(10014,29292,'result_forced_shader_ethernere',1190), -(10015,29299,'bodyfall',1190), -(10016,29337,'whoosh_large',1190), -(10017,29338,'whoosh_lrg',1190), -(10018,29353,'snd_attack_long',1190), -(10019,29354,'snd_attack_short',1190), -(10020,29359,'snd_gargoyle_attack',1190), -(10021,29360,'snd_gargoyle_attack03',1190), -(10022,29361,'snd_gargoyle_cast_1',1190), -(10023,29362,'snd_gargoyle_charge_up',1190), -(10024,29363,'snd_gargoyle_combat_enter',1190), -(10025,29364,'snd_gargoyle_dead_enter',1190), -(10026,29365,'snd_gargoyle_kick',1190), -(10027,29366,'snd_gargoyle_knocktoback_getup',1190), -(10028,29367,'snd_gargoyle_ouch_forehand',1190), -(10029,29368,'snd_gargoyle_shield_shove',1190), -(10030,29369,'snd_jump_fx',1190), -(10031,29371,'snd_rx_cast1',1190), -(10032,29372,'snd_rx_chargeup',1190), -(10033,29373,'snd_rx_combat_enter',1190), -(10034,29374,'snd_rx_dead_enter',1190), -(10035,29384,'cookie_ouch_fx',1190), -(10036,29389,'skyshrine_drake_backup',1190), -(10037,29390,'skyshrine_drake_fall',1190), -(10038,29391,'skyshrine_drake_fly_backup',1190), -(10039,29392,'skyshrine_drake_fly_climb',1190), -(10040,29393,'skyshrine_drake_fly_dive',1190), -(10041,29394,'skyshrine_drake_fly_down',1190), -(10042,29395,'skyshrine_drake_fly_glide',1190), -(10043,29396,'skyshrine_drake_fly_glide_left',1190), -(10044,29397,'skyshrine_drake_fly_glide_right',1190), -(10045,29398,'skyshrine_drake_fly_idle',1190), -(10046,29399,'skyshrine_drake_fly_run',1190), -(10047,29400,'skyshrine_drake_fly_strafe_left',1190), -(10048,29401,'skyshrine_drake_fly_strafe_right',1190), -(10049,29402,'skyshrine_drake_fly_turn_left',1190), -(10050,29403,'skyshrine_drake_fly_turn_right',1190), -(10051,29404,'skyshrine_drake_fly_up',1190), -(10052,29405,'skyshrine_drake_fly_walk',1190), -(10053,29406,'skyshrine_drake_idle',1190), -(10054,29407,'skyshrine_drake_idle01',1190), -(10055,29408,'skyshrine_drake_jump',1190), -(10056,29409,'skyshrine_drake_jump_substitute',1190), -(10057,29410,'skyshrine_drake_land',1190), -(10058,29411,'skyshrine_drake_long_fall',1190), -(10059,29412,'skyshrine_drake_turn_left',1190), -(10060,29413,'skyshrine_drake_turn_right',1190), -(10061,29414,'skyshrine_drake_walk',1190), -(10062,32784,'kill_1h_sword_idle',0), -(10063,32818,'kill_2h_sword_enter',0), -(10064,32820,'kill_2h_sword_idle',0), -(10065,32869,'kill_bostaff_idle',0), -(10066,32889,'kill_bow',0), -(10067,32893,'kill_cackle',0), -(10068,32894,'kill_cast',0), -(10069,32906,'kill_cast_arch_circle',0), -(10070,32907,'kill_cast_ball',0), -(10071,32908,'kill_cast_bright_ring',0), -(10072,32909,'kill_cast_columns',0), -(10073,32910,'kill_cast_dark_ring',0), -(10074,32911,'kill_cast_dbl_bright_ring',0), -(10075,32912,'kill_cast_druid',0), -(10076,32913,'kill_cast_dustpuff',0), -(10077,32914,'kill_cast_heal',0), -(10078,32915,'kill_cast_heal_blur',0), -(10079,32916,'kill_cast_lightning',0), -(10080,32917,'kill_cast_mage',0), -(10081,32918,'kill_cast_mandala',0), -(10082,32919,'kill_cast_mesmerize',0), -(10083,32920,'kill_cast_necromancer',0), -(10084,32921,'kill_cast_nuke_mental',0), -(10085,32922,'kill_cast_pfx_dust_leaves_l',0), -(10086,32923,'kill_cast_pfx_dust_leaves_r',0), -(10087,32926,'kill_cast_pfx_glow_firepuff_l',0), -(10088,32927,'kill_cast_pfx_glow_firepuff_r',0), -(10089,32928,'kill_cast_pfx_glow_galv_l',0), -(10090,32929,'kill_cast_pfx_glow_galv_r',0), -(10091,32930,'kill_cast_pfx_glow_prism_l',0), -(10092,32931,'kill_cast_pfx_glow_prism_r',0), -(10093,32934,'kill_cast_pfx_l',0), -(10094,32935,'kill_cast_pfx_magenuke_l',0), -(10095,32936,'kill_cast_pfx_magenuke_r',0), -(10096,32937,'kill_cast_pfx_r',0), -(10097,32940,'kill_cast_placeholder_l',0), -(10098,32941,'kill_cast_placeholder_r',0), -(10099,32942,'kill_cast_priest',0), -(10100,32943,'kill_cast_rays',0), -(10101,32944,'kill_cast_rays_l',0), -(10102,32945,'kill_cast_rays_mental',0), -(10103,32946,'kill_cast_rays_r',0), -(10104,32948,'kill_cast_rings_crescent',0), -(10105,32949,'kill_cast_rune_ring',0), -(10106,32950,'kill_cast_runedraw',0), -(10107,32951,'kill_cast_runes_randomorbits',0), -(10108,32952,'kill_cast_spark_circle',0), -(10109,32953,'kill_cast_sparktrail_spiral',0), -(10110,32954,'kill_cast_spotsparks_ring',0), -(10111,32955,'kill_cast_swirlie',0), -(10112,32956,'kill_cast_vault',0), -(10113,32957,'kill_cast_ward',0), -(10114,32987,'kill_crouch_enter',0), -(10115,32988,'kill_crouch_exit',0), -(10116,32989,'kill_crouch_idle',0), -(10117,32996,'kill_dead',0), -(10118,32997,'kill_dead_enter',0), -(10119,33035,'kill_dual_wield_idle',0), -(10120,33058,'kill_fall',0), -(10121,33066,'kill_flourish',0), -(10122,33076,'kill_gag',0), -(10123,33091,'kill_idle',0), -(10124,33092,'kill_idle01',0), -(10125,33093,'kill_idle02',0), -(10126,33140,'kill_monk_idle',0), -(10127,33164,'kill_notworthy',0), -(10128,33187,'kill_pike_idle',0), -(10129,33202,'kill_procedural_hit',0), -(10130,33218,'kill_pugilist_idle',0), -(10131,33257,'kill_result_bash',0), -(10132,33258,'kill_result_buff_limbs',0), -(10133,33259,'kill_result_fire',0), -(10134,33260,'kill_result_firetrail',0), -(10135,33261,'kill_result_firews',0), -(10136,33263,'kill_result_gather_mana1',0), -(10137,33264,'kill_result_ghost',0), -(10138,33265,'kill_result_heal',0), -(10139,33266,'kill_result_heal11',0), -(10140,33267,'kill_result_heal9',0), -(10141,33268,'kill_result_kick',0), -(10142,33269,'kill_result_lightning',0), -(10143,33270,'kill_result_loot',0), -(10144,33271,'kill_result_loot_ash',0), -(10145,33272,'kill_result_mesmerize',0), -(10146,33273,'kill_result_placeholder',0), -(10147,33274,'kill_result_spawn',0), -(10148,33275,'kill_result_strike',0), -(10149,33276,'kill_result_stun',0), -(10150,33277,'kill_result_test',0), -(10151,33278,'kill_result_ward',0), -(10152,33279,'kill_result_ward1',0), -(10153,33285,'kill_run',0), -(10154,33286,'kill_rune_fire_orbiting',0), -(10155,33306,'kill_sit_enter',0), -(10156,33307,'kill_sit_exit',0), -(10157,33308,'kill_sit_idle',0), -(10158,33394,'kill_spell_placeholder',0), -(10159,33395,'kill_spell_root',0), -(10160,33490,'kill_trail',0), -(10161,33514,'kill_untrained_idle',0), -(10162,33659,'kill_yawn',0), -(10163,33661,'kill_cast_cloudring',0), -(10164,33662,'kill_cast_dblring_blend',0), -(10165,33663,'kill_cast_lhand_sparkle_trail',0), -(10166,33670,'kill_cast_mistring',0), -(10167,33677,'kill_cast_rhand_sparkle_trail',0), -(10168,33736,'kill_cast_cloudsphere',0), -(10169,33772,'kill_horse_idle',0), -(10170,33794,'kill_1h_sword_attack',0), -(10171,33795,'kill_1h_sword_attack01',0), -(10172,33796,'kill_1h_sword_attack02',0), -(10173,33797,'kill_1h_sword_attack03',0), -(10174,33812,'kill_cast_rays_cloud',0), -(10175,33813,'kill_cast_winkers',0), -(10176,33821,'kill_procedural_ouch',0), -(10177,33822,'kill_result_bear',0), -(10178,33882,'kill_1h_sword_death_blow',0), -(10179,33930,'kill_procedural_parry',0), -(10180,33931,'kill_ignite_weapon',0), -(10181,33949,'kill_monk_attack',0), -(10182,33969,'kill_monk_attack01',0), -(10183,33974,'kill_pike_attack',0), -(10184,33979,'kill_cast_orbiting_rings',0), -(10185,33980,'kill_cast_spiral_trace',0), -(10186,33986,'kill_cast_elec_hands',0), -(10187,33994,'kill_cast_pfx_glow_trail_l',0), -(10188,33995,'kill_cast_pfx_glow_trail_r',0), -(10189,33996,'kill_cast_hammer_toss',0), -(10190,33997,'kill_result_hammer_approaching',0), -(10191,33998,'kill_result_hammer_explode',0), -(10192,34005,'kill_2h_sword_attack',0), -(10193,34011,'kill_dual_wield_attack',0), -(10194,34012,'kill_dual_wield_attack01',0), -(10195,34013,'kill_dual_wield_attack02',0), -(10196,34026,'kill_cast_scimitar_toss',0), -(10197,34027,'kill_cast_spark_sphere',0), -(10198,34029,'kill_result_scimitar_approaching',0), -(10199,34030,'kill_result_scimitar_explode',0), -(10200,34039,'kill_1h_sword_dodge_backhand',0), -(10201,34040,'kill_1h_sword_dodge_down',0), -(10202,34041,'kill_1h_sword_dodge_forehand',0), -(10203,34042,'kill_1h_sword_ouch_backhand',0), -(10204,34043,'kill_1h_sword_ouch_down',0), -(10205,34044,'kill_1h_sword_ouch_forehand',0), -(10206,34045,'kill_1h_sword_parry_backhand',0), -(10207,34046,'kill_1h_sword_parry_down',0), -(10208,34047,'kill_1h_sword_parry_forehand',0), -(10209,34048,'kill_cast_distort',0), -(10210,34049,'kill_cast_distort_rect',0), -(10211,34050,'kill_cast_trail_leftarm',0), -(10212,34051,'kill_cast_trail_rightarm',0), -(10213,34052,'kill_monk_attack02',0), -(10214,34054,'kill_monk_dodge_backhand',0), -(10215,34055,'kill_monk_dodge_down',0), -(10216,34063,'kill_result_blast_cone',0), -(10217,34064,'kill_result_camera_shake',0), -(10218,34065,'kill_result_ground_blast',0), -(10219,34066,'kill_result_lightning_bolt1',0), -(10220,34067,'kill_result_lion_spirit',0), -(10221,34068,'kill_result_phoenix_rising',0), -(10222,34070,'kill_result_flash1',0), -(10223,34071,'kill_result_lightning_bolt2',0), -(10224,34072,'kill_result_lightning_bolt3',0), -(10225,34073,'kill_result_spirit_of_the_wolf',0), -(10226,34075,'kill_cast_runedraw_blue',0), -(10227,34082,'kill_result_phoenix_descending',0), -(10228,34084,'kill_cast_dustpuff_rfoot',0), -(10229,34085,'kill_cast_trail_rightfoot',0), -(10230,34086,'kill_cast_trail_rightshin',0), -(10231,34091,'kill_1h_crush_attack',0), -(10232,34092,'kill_1h_crush_attack01',0), -(10233,34093,'kill_1h_crush_attack02',0), -(10234,34094,'kill_1h_crush_attack03',0), -(10235,34100,'kill_1h_crush_dodge_backhand',0), -(10236,34101,'kill_1h_crush_dodge_down',0), -(10237,34102,'kill_1h_crush_dodge_forehand',0), -(10238,34103,'kill_1h_crush_dodge_thrust',0), -(10239,34106,'kill_1h_crush_idle',0), -(10240,34107,'kill_1h_crush_ouch_backhand',0), -(10241,34108,'kill_1h_crush_ouch_down',0), -(10242,34109,'kill_1h_crush_ouch_forehand',0), -(10243,34110,'kill_1h_crush_ouch_thrust',0), -(10244,34111,'kill_1h_crush_parry_backhand',0), -(10245,34112,'kill_1h_crush_parry_down',0), -(10246,34113,'kill_1h_crush_parry_forehand',0), -(10247,34114,'kill_1h_crush_parry_thrust',0), -(10248,34118,'kill_1h_pierce_attack',0), -(10249,34119,'kill_1h_pierce_attack01',0), -(10250,34123,'kill_1h_pierce_dodge_backhand',0), -(10251,34124,'kill_1h_pierce_dodge_down',0), -(10252,34125,'kill_1h_pierce_dodge_forehand',0), -(10253,34126,'kill_1h_pierce_dodge_thrust',0), -(10254,34129,'kill_1h_pierce_idle',0), -(10255,34130,'kill_1h_pierce_ouch_backhand',0), -(10256,34131,'kill_1h_pierce_ouch_down',0), -(10257,34132,'kill_1h_pierce_ouch_forehand',0), -(10258,34133,'kill_1h_pierce_ouch_thrust',0), -(10259,34134,'kill_1h_pierce_parry_backhand',0), -(10260,34135,'kill_1h_pierce_parry_down',0), -(10261,34136,'kill_1h_pierce_parry_forehand',0), -(10262,34137,'kill_1h_pierce_parry_thrust',0), -(10263,34141,'kill_1h_sword_death_blow01',0), -(10264,34142,'kill_1h_sword_dodge_thrust',0), -(10265,34143,'kill_1h_sword_ouch_thrust',0), -(10266,34144,'kill_1h_sword_parry_thrust',0), -(10267,34152,'kill_cast_dustpuff_ws',0), -(10268,34154,'kill_cast_glow_ring_wavyrays',0), -(10269,34155,'kill_cast_glow_ring_wavyrays_l',0), -(10270,34156,'kill_cast_glow_ring_wavyrays_r',0), -(10271,34180,'kill_cast_sphere_lightning',0), -(10272,34181,'kill_cast_sphere_lightning2',0), -(10273,34182,'kill_cast_sphere_lightning_r',0), -(10274,34191,'kill_result_charge',0), -(10275,34192,'kill_result_ghost_shield',0), -(10276,34193,'kill_result_heal_heart',0), -(10277,34194,'kill_result_sparkly_swirl_flare',0), -(10278,34200,'kill_cast_fighter',0), -(10279,34201,'kill_cast_ghost_shield_summoned',0), -(10280,34207,'kill_cast_scout',0), -(10281,34209,'kill_cast_ghost_shield_summoned_sparkles',0), -(10282,34212,'kill_result_glint2',0), -(10283,34213,'kill_result_trail',0), -(10284,34221,'kill_2h_sword_attack01',0), -(10285,34222,'kill_2h_sword_attack02',0), -(10286,34225,'kill_2h_sword_dodge_backhand',0), -(10287,34226,'kill_2h_sword_dodge_down',0), -(10288,34227,'kill_2h_sword_dodge_forehand',0), -(10289,34228,'kill_2h_sword_ouch_backhand',0), -(10290,34229,'kill_2h_sword_ouch_down',0), -(10291,34230,'kill_2h_sword_ouch_forehand',0), -(10292,34240,'kill_result_crystal_shield',0), -(10293,34249,'kill_cast_snake_idling',0), -(10294,34250,'kill_result_horse_running',0), -(10295,34251,'kill_result_lion_attacking',0), -(10296,34252,'kill_result_lion_roaring',0), -(10297,34253,'kill_result_snake_striking',0), -(10298,34258,'kill_result_cat_leaping',0), -(10299,34259,'kill_result_cold_blast',0), -(10300,34260,'kill_result_cold_breath',0), -(10301,34261,'kill_state_breath_cold',0), -(10302,34262,'kill_result_cold_forced_shader',0), -(10303,34263,'kill_result_cold_ice_crystals',0), -(10304,34264,'kill_result_poison_breath',0), -(10305,34265,'kill_result_poison_cysts_growing',0), -(10306,34266,'kill_result_poison_forced_shader',0), -(10307,34271,'kill_cast_ball_fire',0), -(10308,34273,'kill_cast_spotsparks_ring2',0), -(10309,34274,'kill_cast_spotsparks_ring3',0), -(10310,34289,'kill_result_poison_cysts_blast',0), -(10311,34291,'kill_cast_lhand_sparkle_trail_t',0), -(10312,34292,'kill_cast_poison_dragon_breath',0), -(10313,34293,'kill_cast_rhand_sparkle_trail_t',0), -(10314,34296,'kill_result_poison_whirlwind',0), -(10315,34312,'kill_cast_distort_leftfoot',0), -(10316,34314,'kill_cast_distort_weaponrootleft',0), -(10317,34315,'kill_cast_distort_weaponrootright',0), -(10318,34316,'kill_cast_dustpuff_lfoot',0), -(10319,34317,'kill_cast_dustpuff_weaponrootleft',0), -(10320,34318,'kill_cast_dustpuff_weaponrootright',0), -(10321,34324,'kill_result_fire_ring_green_medium',0), -(10322,34325,'kill_result_poison_cyst_vomit',0), -(10323,34326,'kill_result_runes_rising',0), -(10324,34327,'kill_result_teleporter_coalesce',0), -(10325,34331,'kill_cast_cleric',0), -(10326,34332,'kill_cast_coercer',0), -(10327,34334,'kill_cast_defiler',0), -(10328,34335,'kill_cast_enchanter',0), -(10329,34336,'kill_cast_fury',0), -(10330,34337,'kill_cast_illusionist',0), -(10331,34338,'kill_cast_inquisitor',0), -(10332,34339,'kill_cast_mystic',0), -(10333,34340,'kill_cast_shaman',0), -(10334,34341,'kill_cast_sorcerer',0), -(10335,34342,'kill_cast_summoner',0), -(10336,34343,'kill_cast_templar',0), -(10337,34344,'kill_cast_warden',0), -(10338,34345,'kill_cast_warlock',0), -(10339,34346,'kill_cast_wizard',0), -(10340,34348,'kill_result_bull_stomping',0), -(10341,34349,'kill_cast_hammer_sparkling_floating',0), -(10342,34350,'kill_cast_mist_sphere_add',0), -(10343,34351,'kill_cast_mist_sphere_blend',0), -(10344,34352,'kill_cast_swirlies_smoke',0), -(10345,34353,'kill_cast_swirlies_smoke_blend',0), -(10346,34360,'kill_result_fire_green',0), -(10347,34361,'kill_result_poison_cysts_growing_giant',0), -(10348,34362,'kill_cast_forced_flasher_diff_noise',0), -(10349,34363,'kill_cast_forced_flasher_oceanseamless',0), -(10350,34364,'kill_cast_forced_flasher_streaks',0), -(10351,34365,'kill_cast_forced_flasher_tiledfoam',0), -(10352,34366,'kill_cast_forced_flasher_tiledfoam2',0), -(10353,34367,'kill_cast_forced_flasher_tiledfoam3',0), -(10354,34368,'kill_cast_forced_flasher_tiledfoam4',0), -(10355,34393,'kill_result_fire_engulf',0), -(10356,34398,'kill_cast_expanding_rings',0), -(10357,34399,'kill_cast_forced_flasher_fadein_diff_noise',0), -(10358,34412,'kill_pugilist_attack',0), -(10359,34414,'kill_pugilist_attack02',0), -(10360,34427,'kill_result_fire_slam',0), -(10361,34428,'kill_cast_distort_flat',0), -(10362,34429,'kill_cast_mandala_blobs',0), -(10363,34430,'kill_result_ground_blast_lava',0), -(10364,34433,'kill_spell_root_colored',0), -(10365,34435,'kill_cast_dragon_wing_dust',0), -(10366,34451,'kill_result_camera_shake_wider',0), -(10367,34452,'kill_result_stunned',0), -(10368,34454,'kill_cast_snake_shrinking',0), -(10369,34495,'kill_horse_enter',0), -(10370,34521,'kill_levelup',0), -(10371,34524,'kill_result_trail_lightning',0), -(10372,34532,'kill_result_trail_motion',0), -(10373,34533,'kill_result_tree_morph',0), -(10374,34534,'kill_result_wood_forced_shader',0), -(10375,34535,'kill_result_wood_spikes_growing',0), -(10376,34541,'kill_cast_fire_trail',0), -(10377,34561,'kill_result_cactus_spikes_growing',0), -(10378,34562,'kill_result_cold_fog',0), -(10379,34563,'kill_result_colored_forced_shader',0), -(10380,34564,'kill_result_ghost_forced_shader',0), -(10381,34565,'kill_result_snowflakes_growing',0), -(10382,34566,'kill_result_snowstorm',0), -(10383,34567,'kill_result_sparkles_clinging',0), -(10384,34568,'kill_result_teleport_sparkle',0), -(10385,34569,'kill_result_teleport_vanish',0), -(10386,34570,'kill_result_wood_roots_growing',0), -(10387,34571,'kill_result_teleport_appear',0), -(10388,34574,'kill_cast_flasher',0), -(10389,34575,'kill_cast_pfx_trace_puffs_l',0), -(10390,34576,'kill_cast_pfx_trace_puffs_r',0), -(10391,34591,'kill_cast_fire_whip_circling',0), -(10392,34600,'kill_result_spark_burst',0), -(10393,34617,'kill_cast_enthralling_fetters_circling',0), -(10394,34618,'kill_cast_enthralling_fetters_circling_ghostly',0), -(10395,34619,'kill_cast_testbones',0), -(10396,34621,'kill_result_clay_red_forced_shader',0), -(10397,34622,'kill_result_enthralling_fetters',0), -(10398,34623,'kill_result_metal_rusty_forced_shader',0), -(10399,34627,'kill_result_clay_chunks_dropping',0), -(10400,34628,'kill_result_flash',0), -(10401,34629,'kill_result_water_dripping',0), -(10402,34630,'kill_result_water_forced_shader',0), -(10403,34631,'kill_result_bubble_stream',0), -(10404,34632,'kill_result_ghost_fish_circling',0), -(10405,34633,'kill_cast_testbones_vgraph',0), -(10406,34634,'kill_result_ice_blast',0), -(10407,34635,'kill_result_ice_crystals_dropping',0), -(10408,34636,'kill_result_icy_cage',0), -(10409,34637,'kill_cast_mandala_electricity',0), -(10410,34638,'kill_cast_mandala_streaks',0), -(10411,34639,'kill_result_icy_cage_blast_ring',0), -(10412,34640,'kill_cast_rune_ring_good',0), -(10413,34641,'kill_cast_rune_ring_rotate',0), -(10414,34642,'kill_result_icicles_breaking',0), -(10415,34643,'kill_result_icy_comet',0), -(10416,34644,'kill_result_icy_comet_exploding',0), -(10417,34647,'kill_result_glacial_wall',0), -(10418,34648,'kill_result_glacial_wall_sparkles',0), -(10419,34649,'kill_result_ice_shields_burning',0), -(10420,34650,'kill_pike_attack01',0), -(10421,34651,'kill_pike_attack02',0), -(10422,34669,'kill_result_clay_shields',0), -(10423,34670,'kill_result_scale_skin_forced_shader',0), -(10424,34672,'kill_result_color_shower',0), -(10425,34673,'kill_result_dispell1_out',0), -(10426,34674,'kill_result_verdant_genesis',0), -(10427,34675,'kill_result_attract_bubbles',0), -(10428,34677,'kill_result_offering_of_vitae',0), -(10429,34678,'kill_result_sparkles_clinging_soft',0), -(10430,34679,'kill_result_bestowal_of_vitae',0), -(10431,34680,'kill_result_ethereal_ward',0), -(10432,34681,'kill_result_dps_decrease',0), -(10433,34682,'kill_result_smite',0), -(10434,34706,'kill_result_ember_kite_shields_burning',0), -(10435,34707,'kill_result_ice_sword_breaking',0), -(10436,34710,'kill_result_charm',0), -(10437,34711,'kill_result_rainbow_forced_shader',0), -(10438,34713,'kill_result_ember_swords_burning',0), -(10439,34714,'kill_result_ghost_sword_breaking',0), -(10440,34715,'kill_result_offering_of_vitae_2',0), -(10441,34721,'kill_result_smite_2',0), -(10442,34722,'kill_result_tellurian_recruit',0), -(10443,34730,'kill_result_expand_ring_screech',0), -(10444,34731,'kill_result_grim_champion',0), -(10445,34732,'kill_result_shockwave_sparkles',0), -(10446,34733,'kill_result_tremor',0), -(10447,34734,'kill_bostaff_attack',0), -(10448,34735,'kill_bostaff_attack01',0), -(10449,34736,'kill_bostaff_attack02',0), -(10450,34737,'kill_bostaff_attack03',0), -(10451,34754,'kill_result_bloodlust',0), -(10452,34755,'kill_result_haste',0), -(10453,34762,'kill_cast_forced_flasher_tiledfoam3_scroll',0), -(10454,34763,'kill_cast_mage_old',0), -(10455,34768,'kill_result_backdraft',0), -(10456,34769,'kill_result_sanction_of_merit',0), -(10457,34770,'kill_result_toxin_out',0), -(10458,34771,'kill_result_white_radiance',0), -(10459,34785,'kill_result_explosion_fireworks',0), -(10460,34786,'kill_result_explosion_fireworks_ground',0), -(10461,34799,'kill_result_distort_dot',0), -(10462,34800,'kill_result_distort_hit',0), -(10463,34804,'kill_result_bone_cage_1',0), -(10464,34805,'kill_result_fiery_comet_descending',0), -(10465,34806,'kill_result_spiral_smite',0), -(10466,34817,'kill_result_weakness',0), -(10467,34833,'kill_result_bloodlust_2',0), -(10468,34834,'kill_result_colored_radiance',0), -(10469,34841,'kill_result_poison_cloud',0), -(10470,34842,'kill_result_smoke_sphere',0), -(10471,34850,'kill_result_decree_of_faith',0), -(10472,34851,'kill_result_dust_fall',0), -(10473,34852,'kill_result_fascinate',0), -(10474,34853,'kill_result_sparkle_blast',0), -(10475,34871,'kill_aura_mage',0), -(10476,34872,'kill_aura_priest',0), -(10477,34879,'kill_result_statue',0), -(10478,34882,'kill_bow_dodge_backhand',0), -(10479,34883,'kill_bow_dodge_down',0), -(10480,34884,'kill_bow_dodge_forehand',0), -(10481,34885,'kill_bow_dodge_thrust',0), -(10482,34888,'kill_bow_idle',0), -(10483,34889,'kill_bow_ouch_backhand',0), -(10484,34890,'kill_bow_ouch_down',0), -(10485,34891,'kill_bow_ouch_forehand',0), -(10486,34892,'kill_bow_ouch_thrust',0), -(10487,34907,'kill_cast_pfx_glow_galv_ws_l',0), -(10488,34908,'kill_cast_pfx_glow_galv_ws_r',0), -(10489,34909,'kill_result_bubble_ring',0), -(10490,34910,'kill_result_sparkles_out',0), -(10491,34913,'kill_cast_orbiting_rings2',0), -(10492,34946,'kill_cast_fuliginous',0), -(10493,34956,'kill_result_enthralling_fetters_ghostly',0), -(10494,34966,'kill_cast_sparkles_in',0), -(10495,34976,'kill_result_swirly_column',0), -(10496,34996,'kill_result_instant_lifetap',0), -(10497,34997,'kill_result_ot_lifetap',0), -(10498,35016,'kill_result_mouth_in',0), -(10499,35017,'kill_result_sparkle_scan_up',0), -(10500,35018,'kill_result_spiral_up',0), -(10501,35026,'kill_cast_bard',0), -(10502,35027,'kill_cast_crusader',0), -(10503,35028,'kill_cast_dirge',0), -(10504,35029,'kill_cast_paladin',0), -(10505,35031,'kill_cast_shadowknight',0), -(10506,35032,'kill_cast_troubador',0), -(10507,35038,'kill_cast_sawdust',0), -(10508,35275,'kill_result_lightning_shimmer',0), -(10509,35293,'kill_persist_pet_air_fragment',0), -(10510,35294,'kill_persist_pet_chaos_fragment',0), -(10511,35295,'kill_persist_pet_earth_fragment',0), -(10512,35296,'kill_persist_pet_fire_fragment',0), -(10513,35297,'kill_persist_pet_fire_servant',0), -(10514,35298,'kill_persist_pet_ice_servant',0), -(10515,35299,'kill_persist_pet_lightning_servant',0), -(10516,35300,'kill_persist_pet_water_fragment',0), -(10517,35304,'kill_cast_distort_p3',0), -(10518,35306,'kill_cast_explosion_p5',0), -(10519,35312,'kill_result_flash_weapon_red',0), -(10520,35313,'kill_result_shield',0), -(10521,35326,'kill_cast_angry_burst',0), -(10522,35327,'kill_cast_cold_dragon_breath',0), -(10523,35328,'kill_cast_distortion_hit_minimal',0), -(10524,35329,'kill_cast_glow_distort',0), -(10525,35331,'kill_cast_void_dragon_breath',0), -(10526,35332,'kill_result_sparks_360_p5',0), -(10527,35333,'kill_result_void_whirlwind',0), -(10528,35356,'kill_cast_distort_rightfoot_ws',0), -(10529,35357,'kill_cast_dragon_pbae_cold',0), -(10530,35358,'kill_cast_dragon_pbae_heat',0), -(10531,35359,'kill_cast_dragon_pbae_mental',0), -(10532,35360,'kill_cast_dragon_pbae_poison',0), -(10533,35361,'kill_cast_dragon_pbae_void',0), -(10534,35362,'kill_cast_dragon_tae_mental',0), -(10535,35363,'kill_cast_fire_foot',0), -(10536,35365,'kill_cast_spark_sphere_ws_p5',0), -(10537,35367,'kill_result_circle_blast_p5',0), -(10538,35368,'kill_result_cold_ice_crystals_rightfoot',0), -(10539,35369,'kill_result_flash_weapon_red_min',0), -(10540,35370,'kill_result_golden_glow',0), -(10541,35371,'kill_result_ice_blast_rightfoot',0), -(10542,35372,'kill_result_silver_glow',0), -(10543,35391,'kill_cast_dark_forced_shader',0), -(10544,35392,'kill_cast_expand_ring_ws',0), -(10545,35394,'kill_cast_stun_stars',0), -(10546,35395,'kill_cast_taunt',0), -(10547,35404,'kill_cast_dragon_pbae_lightning',0), -(10548,35405,'kill_cast_dragon_tae_lightning',0), -(10549,35410,'kill_result_dust_black',0), -(10550,35411,'kill_result_spark_burst_p3',0), -(10551,35412,'kill_result_sparkle_trail_fire_shin',0), -(10552,35413,'kill_result_sparkle_trail_ice_shin',0), -(10553,35415,'kill_trails_lightning_rightshin',0), -(10554,35420,'kill_cast_fire_weapon',0), -(10555,35424,'kill_result_sparkle_trail_fire_weapon',0), -(10556,35427,'kill_result_trail_lightning_red',0), -(10557,35436,'kill_2h_sword_defensive_buff',0), -(10558,35438,'kill_2h_sword_kick',0), -(10559,35442,'kill_2h_sword_whirling_attack',0), -(10560,35443,'kill_2h_sword_wild_swing',0), -(10561,35452,'kill_cast_elec_feet',0), -(10562,35454,'kill_cast_soothe_burst',0), -(10563,35455,'kill_cast_spark_sphere_ws_red_p5',0), -(10564,35456,'kill_cast_sparkle_trail_fire_head',0), -(10565,35470,'kill_pike_kick',0), -(10566,35474,'kill_pike_whirling_attack',0), -(10567,35475,'kill_result_flash_weapon_sat_blue',0), -(10568,35476,'kill_result_flash_weapon_sat_red',0), -(10569,35477,'kill_result_ice_blast_weapon',0), -(10570,35478,'kill_result_spark_burst_p3_gold',0), -(10571,35479,'kill_result_spark_burst_p3_red',0), -(10572,35480,'kill_result_spark_burst_rightfoot',0), -(10573,35482,'kill_result_sparkle_trail_fire_leftshin',0), -(10574,35484,'kill_result_sparkle_trail_ice_lefthand',0), -(10575,35485,'kill_result_sparkle_trail_ice_leftshin',0), -(10576,35486,'kill_result_sparkle_trail_ice_weapon',0), -(10577,35487,'kill_result_sparkle_trail_weapon_right_glow_blue',0), -(10578,35488,'kill_result_sparkle_trail_weapon_right_glow_gold',0), -(10579,35489,'kill_result_sparkle_trail_weapon_right_glow_red',0), -(10580,35490,'kill_result_sparks_360_blue_p5',0), -(10581,35491,'kill_result_white_radiance_weapon',0), -(10582,35492,'kill_result_wind_smoke_head',0), -(10583,35521,'kill_cast_spark_cage',0), -(10584,35522,'kill_cast_spark_shield',0), -(10585,35523,'kill_cast_sparkle_trail_fire_lefthand',0), -(10586,35524,'kill_cast_sparkle_trail_fire_righthand',0), -(10587,35525,'kill_cast_sparkle_trail_fire_righttolefthand',0), -(10588,35526,'kill_cast_statue',0), -(10589,35527,'kill_cast_super_buff',0), -(10590,35535,'kill_persist_divine',0), -(10591,35536,'kill_persist_eidolon',0), -(10592,35537,'kill_persist_energy',0), -(10593,35538,'kill_persist_fire',0), -(10594,35539,'kill_persist_ice',0), -(10595,35540,'kill_persist_mental',0), -(10596,35541,'kill_persist_mesmerize',0), -(10597,35542,'kill_persist_poison',0), -(10598,35543,'kill_persist_stunned',0), -(10599,35544,'kill_result_spark_burst_head',0), -(10600,35545,'kill_result_weapon_trail_fire',0), -(10601,35546,'kill_result_wind_smoke_p3',0), -(10602,35550,'kill_cast_instrument_drum',0), -(10603,35551,'kill_cast_instrument_stringed',0), -(10604,35553,'kill_cast_tune_guitar',0), -(10605,35558,'kill_persist_damage',0), -(10606,35559,'kill_persist_stone',0), -(10607,35560,'kill_result_heal_heart_blue',0), -(10608,35561,'kill_result_motion_lines',0), -(10609,35562,'kill_result_note_circle',0), -(10610,35565,'kill_cast_debuff',0), -(10611,35567,'kill_cast_stun_stars_sub',0), -(10612,35568,'kill_pike_wild_swing',0), -(10613,35569,'kill_result_motion_lines_flasher',0), -(10614,35570,'kill_result_motion_lines_sub',0), -(10615,35571,'kill_result_spark_burst_p3_blue',0), -(10616,35576,'kill_forestry_success',0), -(10617,35577,'kill_gathering_search',0), -(10618,35578,'kill_gathering_success',0), -(10619,35579,'kill_mining_digging',0), -(10620,35580,'kill_mining_success',0), -(10621,35581,'kill_result_bard_zap',0), -(10622,35582,'kill_result_motion_circles',0), -(10623,35583,'kill_result_note_blast',0), -(10624,35605,'kill_result_ghost_spider',0), -(10625,35620,'kill_cast_anim_mesh_dragon_ps',0), -(10626,35639,'kill_cast_druid_ws',0), -(10627,35640,'kill_cast_frosty_hand_l',0), -(10628,35641,'kill_cast_frosty_hand_r',0), -(10629,35668,'kill_cast_tune_drum',0), -(10630,35692,'kill_cast_priest_ws',0), -(10631,35693,'kill_cast_trail_rightfoot_gold',0), -(10632,35694,'kill_levelup_50',0), -(10633,35695,'kill_levelup_hallmark',0), -(10634,35696,'kill_result_sparkle_scan_down',0), -(10635,35698,'kill_result_trail_lightning_gold',0), -(10636,35701,'kill_1h_thrown_attack',0), -(10637,35703,'kill_1h_thrown_dodge_backhand',0), -(10638,35704,'kill_1h_thrown_dodge_down',0), -(10639,35705,'kill_1h_thrown_dodge_forehand',0), -(10640,35706,'kill_1h_thrown_dodge_thrust',0), -(10641,35707,'kill_1h_thrown_idle',0), -(10642,35708,'kill_1h_thrown_ouch_backhand',0), -(10643,35709,'kill_1h_thrown_ouch_down',0), -(10644,35710,'kill_1h_thrown_ouch_forehand',0), -(10645,35711,'kill_1h_thrown_ouch_thrust',0), -(10646,35721,'kill_bostaff_kick',0), -(10647,35728,'kill_bostaff_whirling_attack',0), -(10648,35729,'kill_bostaff_wild_swing',0), -(10649,35734,'kill_cast_spark_burst_weaponrootright',0), -(10650,35751,'kill_converse_male04',0), -(10651,35759,'kill_converse_male12',0), -(10652,35763,'kill_dual_wield_kick',0), -(10653,35770,'kill_dual_wield_whirling_attack',0), -(10654,35771,'kill_dual_wield_wild_swing',0), -(10655,35789,'kill_monk_wild_swing',0), -(10656,35797,'kill_pugilist_kick',0), -(10657,35804,'kill_pugilist_whirling_attack',0), -(10658,35805,'kill_pugilist_wild_swing',0), -(10659,35806,'kill_result_spark_burst_p1',0), -(10660,35880,'kill_cast_sparkle_trail_fire_lhand_neg',0), -(10661,35881,'kill_cast_sparkle_trail_fire_rhand_neg',0), -(10662,35886,'kill_persist_debuff',0), -(10663,35887,'kill_result_fire_negative',0), -(10664,35888,'kill_result_fire_objects',0), -(10665,35910,'kill_result_embers_p2p',0), -(10666,35911,'kill_result_fraxflame_p2p',0), -(10667,35912,'kill_result_prism_hex_p2p',0), -(10668,35949,'kill_result_glow_weapon_red',0), -(10669,35951,'kill_trails_fire_rightshin',0), -(10670,35960,'kill_cast_darkness_skull_buff_summoned',0), -(10671,35962,'kill_persist_distortion_hit_minimal',0), -(10672,35963,'kill_result_color_rain_damage',0), -(10673,35964,'kill_result_darkness_skull_buff',0), -(10674,35965,'kill_result_noxious_oozing_shield_buff',0), -(10675,35966,'kill_result_swirly_column_evil',0), -(10676,35970,'kill_result_icicle_rain_damage',0), -(10677,35971,'kill_result_rain_damage',0), -(10678,35978,'kill_cast_vines_root_control_circling',0), -(10679,35992,'kill_persist_electrified',0), -(10680,35993,'kill_result_bloodlust_3',0), -(10681,35994,'kill_result_nature_res',0), -(10682,35995,'kill_result_poison_rain_damage',0), -(10683,35996,'kill_result_skull_breath_poison_damage',0), -(10684,35997,'kill_result_spirit_res',0), -(10685,35998,'kill_result_sword_rain_damage',0), -(10686,35999,'kill_result_vines_root_control',0), -(10687,36004,'kill_cast_super_lightning',0), -(10688,36005,'kill_result_petrify_stun_control',0), -(10689,36006,'kill_result_shadow_summon',0), -(10690,36011,'kill_result_agility',0), -(10691,36012,'kill_result_air_elemental_summon',0), -(10692,36013,'kill_result_arch_heal',0), -(10693,36014,'kill_result_electrified',0), -(10694,36015,'kill_result_lifetap',0), -(10695,36016,'kill_result_vitae_buff_heal',0), -(10696,36022,'kill_cast_darkness_whip_circling',0), -(10697,36024,'kill_cast_spark_cage_neg',0), -(10698,36025,'kill_cast_spark_shield2',0), -(10699,36026,'kill_cast_spark_shield_neg',0), -(10700,36027,'kill_result_ice_blast_weapon_center',0), -(10701,36028,'kill_result_water_elemental_summon',0), -(10702,36103,'kill_cast_mandala_sub',0), -(10703,36105,'kill_cast_p2p_lightning_01',0), -(10704,36106,'kill_cast_p2p_lightning_02',0), -(10705,36108,'kill_result_arcane_fury',0), -(10706,36109,'kill_result_archaic_shackles',0), -(10707,36110,'kill_result_archaic_shackles_b',0), -(10708,36111,'kill_result_ice_slam',0), -(10709,36112,'kill_result_skull_blast',0), -(10710,36113,'kill_result_skull_buff_limbs',0), -(10711,36114,'kill_result_storm_of_ancients',0), -(10712,36115,'kill_result_stun_sub',0), -(10713,36116,'kill_result_tricksters_grasp',0), -(10714,36119,'kill_cast_p2p_fire_01',0), -(10715,36120,'kill_cast_p2p_fire_02',0), -(10716,36122,'kill_result_ethereal_p2p',0), -(10717,36126,'kill_cast_gold_sparkletrace_l',0), -(10718,36127,'kill_cast_gold_sparkletrace_r',0), -(10719,36128,'kill_cast_gold_trace_l',0), -(10720,36129,'kill_cast_gold_trace_r',0), -(10721,36131,'kill_cast_rune_ring_rotate_persist',0), -(10722,36132,'kill_cast_trace_firespikes_l',0), -(10723,36133,'kill_cast_trace_firespikes_r',0), -(10724,36134,'kill_cast_trace_wine_l',0), -(10725,36135,'kill_cast_trace_wine_r',0), -(10726,36144,'kill_cast_rainbow_rays_cloud',0), -(10727,36145,'kill_cast_spark_sphere_blend',0), -(10728,36147,'kill_result_crystal_ring',0), -(10729,36148,'kill_result_dispell1_out_blend',0), -(10730,36149,'kill_result_helmet_silver_floating',0), -(10731,36160,'kill_result_ho_sphere',0), -(10732,36161,'kill_result_shield_silver_floating',0), -(10733,36165,'kill_ignite_weapon_big',0), -(10734,36166,'kill_ignite_weapon_small',0), -(10735,36172,'kill_result_dragon_flight_fetters',0), -(10736,36173,'kill_result_drakota_fetters',0), -(10737,36174,'kill_result_drakota_flight_fetters',0), -(10738,36189,'kill_ignite_weapon_prism',0), -(10739,36190,'kill_result_ancient_crucible',0), -(10740,36191,'kill_result_natures_growth',0), -(10741,36195,'kill_result_dripping_rain',0), -(10742,36196,'kill_result_rock_chunks_dropping',0), -(10743,36200,'kill_result_arcane_chalice',0), -(10744,36201,'kill_result_blessing_of_faith',0), -(10745,36202,'kill_result_stag_running',0), -(10746,36205,'kill_cast_columns_slow',0), -(10747,36207,'kill_result_cat_running',0), -(10748,36208,'kill_result_chalice_of_life',0), -(10749,36209,'kill_result_creature_fire_ls',0), -(10750,36210,'kill_result_runes_gathering',0), -(10751,36211,'kill_result_sparkle_fill',0), -(10752,36212,'kill_result_weapon_trail_prism',0), -(10753,36216,'kill_cast_sparkle2',0), -(10754,36217,'kill_result_breaking_faith',0), -(10755,36218,'kill_result_runes_falling',0), -(10756,36219,'kill_result_sparkles_gathering',0), -(10757,36228,'kill_cast_glow_distort2',0), -(10758,36232,'kill_result_blue_whirlwind',0), -(10759,36233,'kill_result_stag_running2',0), -(10760,36234,'kill_result_turtle_walking',0), -(10761,36341,'kill_result_breakable_wall',0), -(10762,36373,'kill_result_lucks_bite',0), -(10763,36398,'kill_result_bat_swarm_appear',0), -(10764,36399,'kill_result_bat_swarm_attack',0), -(10765,36400,'kill_result_forced_shader_electric',0), -(10766,36408,'kill_result_bat_swarm_p2p',0), -(10767,36439,'kill_result_rainbow_blast_p2p',0), -(10768,36440,'kill_result_vampire_lifetap_p2p',0), -(10769,36447,'kill_result_fire_blue_white',0), -(10770,36448,'kill_result_vampire_daggers_p2p',0), -(10771,36449,'kill_result_vampire_ice_daggers_p2p',0), -(10772,36450,'kill_result_vampire_lifetap_heart_p2p',0), -(10773,36451,'kill_result_vampire_snow_throw',0), -(10774,36461,'kill_cast_instrument_flute',0), -(10775,36473,'kill_persist_power_gathering',0), -(10776,36474,'kill_result_bat_swarm_persist',0), -(10777,36475,'kill_result_brain_leech_p2p',0), -(10778,36476,'kill_result_power_fount',0), -(10779,36495,'kill_result_lioness_running',0), -(10780,36496,'kill_result_mana_cloak',0), -(10781,36497,'kill_result_scorpion_attacking',0), -(10782,36498,'kill_result_skeleton_dancing',0), -(10783,36502,'kill_cast_tune_song',0), -(10784,36509,'kill_result_bat_flying',0), -(10785,36510,'kill_result_stance_of_the_bat',0), -(10786,36517,'kill_persist_sparkles_clinging_soft_blue',0), -(10787,36518,'kill_persist_sparkles_clinging_soft_gold',0), -(10788,36519,'kill_persist_sparkles_clinging_soft_green',0), -(10789,36520,'kill_persist_sparkles_clinging_soft_purple',0), -(10790,36521,'kill_persist_sparkles_clinging_soft_red',0), -(10791,36522,'kill_result_skeleton_bowing',0), -(10792,36523,'kill_result_unerring_shot',0), -(10793,36524,'kill_result_unerring_shot_flaming',0), -(10794,36525,'kill_result_unyielding_will',0), -(10795,36534,'kill_result_smoke_p2p',0), -(10796,36545,'kill_cast_piercing_note',0), -(10797,36547,'kill_cast_tune_flute',0), -(10798,36553,'kill_persist_notes_gathering',0), -(10799,36554,'kill_persist_notes_spiral_off',0), -(10800,36555,'kill_result_note_swarm',0), -(10801,36556,'kill_result_notes_gathering',0), -(10802,36557,'kill_result_notes_spiral_off',0), -(10803,36558,'kill_result_rings_rising',0), -(10804,36575,'kill_result_devastation_fist_1',0), -(10805,36576,'kill_result_devastation_fist_2',0), -(10806,36577,'kill_result_devastation_fist_3',0), -(10807,36588,'kill_persist_fear',0), -(10808,36589,'kill_persist_notes_spiral_off_blue',0), -(10809,36590,'kill_persist_notes_spiral_off_green',0), -(10810,36591,'kill_persist_notes_spiral_off_red',0), -(10811,36594,'kill_result_corruptive_symbol_p2p',0), -(10812,36595,'kill_result_skeleton_attacking',0), -(10813,36613,'kill_cast_tune_multichain',0), -(10814,36617,'kill_result_fire_dark',0), -(10815,36618,'kill_result_sparkles_explode',0), -(10816,36619,'kill_result_vampire_rainbow_circle_throw',0), -(10817,36620,'kill_result_vampire_whip_dark',0), -(10818,36627,'kill_result_notes_spiral_chains',0), -(10819,36628,'kill_result_rings_rising_noshrink',0), -(10820,36629,'kill_result_umbral_trap',0), -(10821,36632,'kill_cast_notes_out_song',0), -(10822,36637,'kill_result_kirby_energy_p2p',0), -(10823,36638,'kill_result_notes_tube_wavey',0), -(10824,36678,'kill_result_mist_clingy',0), -(10825,36706,'kill_design_result_lightning_bolt1',0), -(10826,36717,'kill_cast_spark_cage_aoe',0), -(10827,36718,'kill_cast_spark_cage_neg_aoe',0), -(10828,36768,'kill_design_result_bat_swarm_attack',0), -(10829,36769,'kill_design_result_tremor',0), -(10830,36776,'kill_design_artifact_ap1_breath',0), -(10831,36777,'kill_design_cast_inquisitor',0), -(10832,36778,'kill_design_cast_vision_nek',0), -(10833,36779,'kill_design_result_dispell1_out',0), -(10834,36780,'kill_design_result_zombie_summon',0), -(10835,36798,'kill_result_bloodlust_aoe',0), -(10836,36799,'kill_result_clay_shields_aoe',0), -(10837,36800,'kill_result_poison_cloud_aoe',0), -(10838,36833,'kill_result_toxin_out_aoe',0), -(10839,36841,'kill_result_shockwave_sparkles_aoe',0), -(10840,36860,'kill_climbing_strafe_right',0), -(10841,36861,'kill_climbing_walk',0), -(10842,36891,'kill_cast_angry_burst_aoe',0), -(10843,36892,'kill_cast_debuff_aoe',0), -(10844,36897,'kill_result_fire_engulf_aoe',0), -(10845,36898,'kill_result_flash_aoe',0), -(10846,36899,'kill_result_motion_lines_flasher_aoe',0), -(10847,36900,'kill_result_motion_lines_sub_aoe',0), -(10848,36908,'kill_result_coins_falling',0), -(10849,36909,'kill_result_forced_shader_rock',0), -(10850,36910,'kill_result_terra_armor',0), -(10851,36918,'kill_result_coalescing_vapor',0), -(10852,36929,'kill_result_bone_blast',0), -(10853,36930,'kill_result_bone_glow',0), -(10854,36931,'kill_result_coalescing_notes',0), -(10855,36932,'kill_result_dust_blast',0), -(10856,36940,'kill_result_ice_blast_from_mesh',0), -(10857,36962,'kill_result_rock_toss_p2p',0), -(10858,36963,'kill_result_rocks_flying_from_mesh',0), -(10859,36971,'kill_result_ring_of_blades',0), -(10860,36972,'kill_result_ring_of_blades_scimitars',0), -(10861,36973,'kill_result_ring_of_blades_swords',0), -(10862,37109,'kill_result_devastation_fist_3a',0), -(10863,37125,'kill_result_skeleton_hand',0), -(10864,37136,'kill_cast_pfx_orbiting_rings_l',0), -(10865,37137,'kill_cast_pfx_orbiting_rings_r',0), -(10866,37217,'kill_cast_ring_expanding',0), -(10867,37261,'kill_cast_call_of_power',0), -(10868,37263,'kill_climbing_backup',0), -(10869,37264,'kill_climbing_idle',0), -(10870,37265,'kill_climbing_strafe_left',0), -(10871,37274,'kill_monk_attack03',0), -(10872,37286,'kill_result_call_of_power',0), -(10873,37287,'kill_result_firespitter',0), -(10874,37288,'kill_result_pet_victory',0), -(10875,37313,'kill_result_morph_to_pet',0), -(10876,37314,'kill_result_sparkles_radiating',0), -(10877,37324,'kill_result_searing_sun',0), -(10878,37325,'kill_result_smoking_mesh',0), -(10879,37329,'kill_cast_bone_blast_1',0), -(10880,37330,'kill_cast_bone_blast_2',0), -(10881,37331,'kill_cast_bone_blast_3',0), -(10882,37332,'kill_cast_morph_to_dragon',0), -(10883,37337,'kill_result_cyclone_fire',0), -(10884,37338,'kill_result_cyclone_snow',0), -(10885,37339,'kill_result_morph_to_dragon',0), -(10886,37348,'kill_result_cyclone_rocks',0), -(10887,37349,'kill_result_cyclone_sand',0), -(10888,37350,'kill_result_gnoll_buff',0), -(10889,37367,'kill_dual_wield_attack03',0), -(10890,37369,'kill_result_word_of_doom',0), -(10891,37370,'kill_result_word_of_flame',0), -(10892,37371,'kill_result_word_of_obedience',0), -(10893,37372,'kill_result_word_of_silence',0), -(10894,37376,'kill_2h_sword_ouch_thrust',0), -(10895,37393,'kill_result_froglok_buff',0), -(10896,37394,'kill_result_stone_hand_terraporter',0), -(10897,37438,'kill_result_candlelight_vigil',0), -(10898,37470,'kill_result_rock_shock_wave',0), -(10899,37486,'kill_result_fire_blast',0), -(10900,37487,'kill_result_rock_shock_wave_lava',0), -(10901,37488,'kill_result_tears_of_druzil',0), -(10902,37498,'kill_climbing_exit_up_root',0), -(10903,37503,'kill_result_rock_shock_wave_ice',0), -(10904,37504,'kill_result_snowflakes_radiating',0), -(10905,37510,'kill_cast_bright_ring_blue',0), -(10906,37511,'kill_cast_bright_ring_red',0), -(10907,37551,'kill_cast_morph_to_elf',0), -(10908,37556,'kill_result_morph_to_elf',0), -(10909,37566,'kill_climbing_enter_down_root',0), -(10910,37578,'kill_result_scintillating_tapestry',0), -(10911,37593,'kill_design_cast_vision_living_tombs',0), -(10912,37618,'kill_result_runes_blast',0), -(10913,37636,'kill_carry_blue_flag',0), -(10914,37637,'kill_carry_red_flag',0), -(10915,37679,'kill_result_coalescing_sparkles',0), -(10916,37680,'kill_result_coalescing_vapor_sub',0), -(10917,37681,'kill_result_serpents_intent',0), -(10918,37682,'kill_result_singing_sword',0), -(10919,37691,'kill_result_desert_call_p2p',0), -(10920,37692,'kill_result_flash_flood_wave_cross_line',0), -(10921,37693,'kill_result_flash_flood_wave_spray',0), -(10922,37694,'kill_result_flash_flood_wave_tube',0), -(10923,37763,'kill_design_cast_vision_ap2',0), -(10924,37765,'kill_result_protection_of_faith_p2p',0), -(10925,37766,'kill_result_protection_of_faith_tapestry',0), -(10926,37788,'kill_result_anim_mesh_genie_ps',0), -(10927,37837,'kill_result_fungusman_breath_attack_p2p',0), -(10928,37838,'kill_result_mushrooms_growing',0), -(10929,37903,'kill_result_shadow_summon_2',0), -(10930,37917,'kill_result_shadow_summon_2_aoe',0), -(10931,38120,'kill_debris_flying',0), -(10932,38121,'kill_debris_swimming',0), -(10933,38281,'kill_result_arena_water_whirlpool',0), -(10934,38282,'kill_result_arena_water_whirlpool_aoe',0), -(10935,38333,'kill_horse_backup',0), -(10936,38334,'kill_horse_turn_left',0), -(10937,38335,'kill_horse_turn_right',0), -(10938,38339,'kill_result_arena_stone_gaze',0), -(10939,38340,'kill_result_arena_water_rain',0), -(10940,38341,'kill_result_fogger',0), -(10941,38371,'kill_result_arena_water_rain_bubbles',0), -(10942,38372,'kill_result_terrorantula_attack',0), -(10943,38373,'kill_result_terrorantula_attack_cocoon',0), -(10944,38408,'kill_result_arena_stone_gaze_flash',0), -(10945,38739,'kill_result_arena_voidbeast_attack',0), -(10946,38740,'kill_result_arena_voidbeast_smoke',0), -(10947,38741,'kill_result_arena_voidbeast_smoke_threads',0), -(10948,38751,'kill_result_ghost_fadeout',0), -(10949,38780,'kill_result_spirit_of_the_elephant',0), -(10950,38805,'kill_cast_trace_prism_left',0), -(10951,38806,'kill_cast_trace_prism_right',0), -(10952,38812,'kill_result_prisms_hex_clinging',0), -(10953,38813,'kill_result_prisms_sparkle_soul',0), -(10954,38814,'kill_result_prisms_sphere',0), -(10955,38836,'kill_result_ice_dagger_breath_p2p',0), -(10956,38858,'kill_result_cone_lightning_p2p',0), -(10957,38859,'kill_result_dragon_cone_roar',0), -(10958,38951,'kill_design_result_zombie_scare',0), -(10959,38953,'kill_result_zombie_scare',0), -(10960,38961,'kill_result_ghost_forced_shader_4',0), -(10961,39037,'kill_result_bone_glow_2',0), -(10962,39038,'kill_result_fireworks_burst',0), -(10963,39039,'kill_result_fireworks_ring',0), -(10964,39097,'kill_result_lion_paw_trails',0), -(10965,39098,'kill_result_prism_tube_trail_1',0), -(10966,39099,'kill_result_prism_tube_trail_2',0), -(10967,39100,'kill_result_sparkle_soul',0), -(10968,39178,'kill_result_pestilence',0), -(10969,39203,'kill_result_dragonbreath',0), -(10970,39221,'kill_cast_dragonbreath',0), -(10971,39226,'kill_persist_dragonbreath',0), -(10972,39227,'kill_result_hypnosis',0), -(10973,39238,'kill_cast_celtic_circle',0), -(10974,39241,'kill_cast_hypnosis',0), -(10975,39265,'kill_persist_juggernaut',0), -(10976,39266,'kill_result_juggernaut',0), -(10977,39291,'kill_result_firestrips',0), -(10978,39312,'kill_result_castigate',0), -(10979,39373,'kill_cast_jesters_gamble',0), -(10980,39442,'kill_status_quest_completes',0), -(10981,39443,'kill_status_quest_gives',0), -(10982,39444,'kill_status_quest_updates',0), -(10983,39469,'kill_result_crazy_tube',0), -(10984,39470,'kill_result_crazy_tube_iron',0), -(10985,39520,'kill_cast_call_of_storms',0), -(10986,39525,'kill_result_call_of_storms',0), -(10987,39534,'kill_cast_mysticism',0), -(10988,39539,'kill_result_mysticism',0), -(10989,39544,'kill_cast_fusion',0), -(10990,39554,'kill_cast_crescent_hands_l',0), -(10991,39555,'kill_cast_crescent_hands_r',0), -(10992,39569,'kill_result_rift',0), -(10993,39570,'kill_result_verdict',0), -(10994,39571,'kill_result_verdict_explosion',0), -(10995,39612,'kill_cast_plane_shift',0), -(10996,39617,'kill_result_plane_shift',0), -(10997,39618,'kill_result_vortex_p2p',0), -(10998,39630,'kill_cast_undead_tide',0), -(10999,39634,'kill_result_bonfire',0), -(11000,39635,'kill_result_steam',0), -(11001,39648,'kill_result_cone_lightning_wave_p2p',0), -(11002,39649,'kill_result_ice_dagger_breath_small_p2p',0), -(11003,39658,'kill_result_rock_breath_p2p',0), -(11004,39659,'kill_result_rocks_sticky',0), -(11005,39735,'kill_result_aa_shaman_ghost_wolf',0), -(11006,39743,'kill_cast_pickpocket',0), -(11007,39748,'kill_result_mana_channeling',0), -(11008,39769,'kill_levelup_achievement',0), -(11009,39779,'kill_result_pickpocket',0), -(11010,39827,'kill_result_snoring_zzz',0), -(11011,39832,'kill_cast_vyemm_slam',0), -(11012,39840,'kill_result_steam_blast',0), -(11013,39872,'kill_result_poison_cysts',0), -(11014,40210,'kill_result_aa_pyramid',0), -(11015,40450,'kill_result_webby_canister',0), -(11016,40515,'kill_result_ghost_undo',0), -(11017,40583,'kill_cast_trace_sparkcrescent_l',0), -(11018,40584,'kill_cast_trace_sparkcrescent_r',0), -(11019,40589,'kill_design_keg_filling_mug',0), -(11020,40734,'kill_result_charge_fast',0), -(11021,40735,'kill_result_smoke_small_p5',0), -(11022,40947,'kill_result_fire_purple',0), -(11023,41250,'kill_cast_dryad_teleport',0), -(11024,41257,'kill_result_dryad_teleport',0), -(11025,41270,'kill_cast_dryad_attack_aoe',0), -(11026,41277,'kill_result_dryad_attack_aoe',0), -(11027,41304,'kill_cast_rain_of_thistles',0), -(11028,41310,'kill_result_rain_of_thistles',0), -(11029,41553,'kill_result_chrome_forced_shader',0), -(11030,41759,'kill_result_copter_welder_lightning_p2p',0), -(11031,41846,'kill_run_03',0), -(11032,41847,'kill_run_down_idle',0), -(11033,41848,'kill_run_up_idle',0), -(11034,41850,'kill_sway_l',0), -(11035,41851,'kill_sway_r',0), -(11036,42000,'kill_result_soulless',0), -(11037,42211,'kill_result_soap_mouth',0), -(11038,42284,'kill_cast_vision_plane_druid_ring',0), -(11039,42294,'kill_cast_wizard_spires',0), -(11040,42355,'kill_result_choking_vines_aoe',0), -(11041,42376,'kill_result_wuoshi_tree_morph',0), -(11042,42422,'kill_result_lightning_bolt_sub1',0), -(11043,42423,'kill_result_lightning_bolt_sub2',0), -(11044,42444,'kill_female_dead',0), -(11045,42445,'kill_female_dead_enter',0), -(11046,42501,'kill_aura_red',0), -(11047,42507,'kill_female_run',0), -(11048,42522,'kill_cast_blanket_of_eternal_night',0), -(11049,42523,'kill_cast_mayongs_touch',0), -(11050,42525,'kill_cast_soul_paralysis',0), -(11051,42531,'kill_result_blanket_of_eternal_night',0), -(11052,42541,'kill_cast_gaze_of_obedience',0), -(11053,42556,'kill_froglok_idle',0), -(11054,42589,'kill_cast_laser_p2p',0), -(11055,42600,'kill_result_laser_p2p',0), -(11056,42604,'kill_cast_firebreath_p2p',0), -(11057,42612,'kill_froglok_bow',0), -(11058,42613,'kill_froglok_crouch',0), -(11059,42614,'kill_froglok_curtsey',0), -(11060,42615,'kill_froglok_dead',0), -(11061,42616,'kill_froglok_death',0), -(11062,42617,'kill_froglok_run',0), -(11063,42618,'kill_froglok_sit_enter',0), -(11064,42619,'kill_froglok_sit_exit',0), -(11065,42620,'kill_froglok_sit_idle',0), -(11066,42625,'kill_cast_mana_burn',0), -(11067,42649,'kill_fae_light_idle',0), -(11068,42652,'kill_result_mana_burn',0), -(11069,42698,'kill_result_poison_forced_shader_weapon',0), -(11070,42718,'kill_cast_glass_shattering',0), -(11071,42728,'kill_result_glass_shattering',0), -(11072,42739,'kill_result_brigand_slide',0), -(11073,42740,'kill_result_golden_flash',0), -(11074,42753,'kill_result_dirge_confront_fear',0), -(11075,42754,'kill_result_illusionist_illuminate',0), -(11076,42780,'kill_attack_earthshake',0), -(11077,42787,'kill_fae_light_1h_sword_attack',0), -(11078,42788,'kill_fae_light_1h_sword_attack01',0), -(11079,42789,'kill_fae_light_1h_sword_attack02',0), -(11080,42790,'kill_fae_light_1h_sword_attack03',0), -(11081,42791,'kill_fae_light_1h_sword_death_blow',0), -(11082,42792,'kill_fae_light_1h_sword_death_blow01',0), -(11083,42793,'kill_fae_light_1h_sword_dodge_backhand',0), -(11084,42794,'kill_fae_light_1h_sword_dodge_down',0), -(11085,42795,'kill_fae_light_1h_sword_dodge_forehand',0), -(11086,42796,'kill_fae_light_1h_sword_dodge_thrust',0), -(11087,42797,'kill_fae_light_1h_sword_ouch_backhand',0), -(11088,42798,'kill_fae_light_1h_sword_ouch_down',0), -(11089,42799,'kill_fae_light_1h_sword_ouch_forehand',0), -(11090,42800,'kill_fae_light_1h_sword_ouch_thrust',0), -(11091,42801,'kill_fae_light_1h_sword_parry_backhand',0), -(11092,42802,'kill_fae_light_1h_sword_parry_down',0), -(11093,42803,'kill_fae_light_1h_sword_parry_forehand',0), -(11094,42804,'kill_fae_light_1h_sword_parry_thrust',0), -(11095,42805,'kill_fae_light_2h_sword_attack',0), -(11096,42806,'kill_fae_light_2h_sword_attack01',0), -(11097,42807,'kill_fae_light_2h_sword_attack02',0), -(11098,42808,'kill_fae_light_2h_sword_defensive_buff',0), -(11099,42809,'kill_fae_light_2h_sword_dodge_backhand',0), -(11100,42810,'kill_fae_light_2h_sword_dodge_down',0), -(11101,42811,'kill_fae_light_2h_sword_dodge_forehand',0), -(11102,42812,'kill_fae_light_2h_sword_enter',0), -(11103,42813,'kill_fae_light_2h_sword_kick',0), -(11104,42814,'kill_fae_light_2h_sword_ouch_backhand',0), -(11105,42815,'kill_fae_light_2h_sword_ouch_down',0), -(11106,42816,'kill_fae_light_2h_sword_ouch_forehand',0), -(11107,42817,'kill_fae_light_2h_sword_ouch_thrust',0), -(11108,42820,'kill_fae_light_bostaff_attack01',0), -(11109,42821,'kill_fae_light_bostaff_attack02',0), -(11110,42822,'kill_fae_light_bostaff_attack03',0), -(11111,42849,'kill_fae_light_dual_wield_attack',0), -(11112,42850,'kill_fae_light_dual_wield_attack01',0), -(11113,42851,'kill_fae_light_dual_wield_attack02',0), -(11114,42852,'kill_fae_light_dual_wield_attack03',0), -(11115,42853,'kill_fae_light_dual_wield_kick',0), -(11116,42854,'kill_fae_light_dual_wield_whirling_attack',0), -(11117,42855,'kill_fae_light_dual_wield_wild_swing',0), -(11118,42856,'kill_fae_light_monk_attack',0), -(11119,42857,'kill_fae_light_monk_attack01',0), -(11120,42858,'kill_fae_light_monk_attack02',0), -(11121,42859,'kill_fae_light_monk_attack03',0), -(11122,42860,'kill_fae_light_monk_wild_swing',0), -(11123,42861,'kill_fae_light_pike_attack',0), -(11124,42862,'kill_fae_light_pike_attack01',0), -(11125,42863,'kill_fae_light_pike_attack02',0), -(11126,42864,'kill_fae_light_pike_kick',0), -(11127,42865,'kill_fae_light_pike_whirling_attack',0), -(11128,42866,'kill_fae_light_pike_wild_swing',0), -(11129,42867,'kill_fae_light_pugilist_attack',0), -(11130,42868,'kill_fae_light_pugilist_attack02',0), -(11131,42869,'kill_fae_light_pugilist_kick',0), -(11132,42870,'kill_fae_light_pugilist_whirling_attack',0), -(11133,42871,'kill_fae_light_pugilist_wild_swing',0), -(11134,42890,'kill_froglok_1h_sword_attack',0), -(11135,42891,'kill_froglok_1h_sword_idle',0), -(11136,42896,'kill_cast_forced_flasher_stream_scroll',0), -(11137,42897,'kill_cast_forced_flasher_stream_scroll_blend',0), -(11138,42905,'kill_result_berserker_red_eyes',0), -(11139,42906,'kill_result_god_spell_brell_serilis',0), -(11140,42907,'kill_result_god_spell_cazic_thule',0), -(11141,42908,'kill_result_god_spell_innoruuk',0), -(11142,42909,'kill_result_god_spell_mithaniel_marr',0), -(11143,42910,'kill_result_god_spell_quellious',0), -(11144,42911,'kill_result_god_spell_rallos_zek',0), -(11145,42912,'kill_result_god_spell_solusek_ro',0), -(11146,42913,'kill_result_god_spell_tunare',0), -(11147,42914,'kill_result_sun_spell',0), -(11148,42925,'kill_froglok_1h_crush_attack',0), -(11149,42926,'kill_froglok_1h_crush_attack01',0), -(11150,42927,'kill_froglok_1h_crush_attack02',0), -(11151,42928,'kill_froglok_1h_crush_attack03',0), -(11152,42929,'kill_froglok_1h_crush_dodge_backhand',0), -(11153,42930,'kill_froglok_1h_crush_dodge_down',0), -(11154,42931,'kill_froglok_1h_crush_dodge_forehand',0), -(11155,42932,'kill_froglok_1h_crush_dodge_thrust',0), -(11156,42933,'kill_froglok_1h_crush_ouch_backhand',0), -(11157,42934,'kill_froglok_1h_crush_ouch_down',0), -(11158,42935,'kill_froglok_1h_crush_ouch_forehand',0), -(11159,42936,'kill_froglok_1h_crush_ouch_thrust',0), -(11160,42937,'kill_froglok_1h_crush_parry_backhand',0), -(11161,42938,'kill_froglok_1h_crush_parry_down',0), -(11162,42939,'kill_froglok_1h_crush_parry_forehand',0), -(11163,42940,'kill_froglok_1h_crush_parry_thrust',0), -(11164,42941,'kill_froglok_1h_pierce_attack',0), -(11165,42942,'kill_froglok_1h_pierce_attack01',0), -(11166,42943,'kill_froglok_1h_pierce_dodge_backhand',0), -(11167,42944,'kill_froglok_1h_pierce_dodge_down',0), -(11168,42945,'kill_froglok_1h_pierce_dodge_forehand',0), -(11169,42946,'kill_froglok_1h_pierce_dodge_thrust',0), -(11170,42947,'kill_froglok_1h_pierce_ouch_backhand',0), -(11171,42948,'kill_froglok_1h_pierce_ouch_down',0), -(11172,42949,'kill_froglok_1h_pierce_ouch_forehand',0), -(11173,42950,'kill_froglok_1h_pierce_ouch_thrust',0), -(11174,42951,'kill_froglok_1h_pierce_parry_backhand',0), -(11175,42952,'kill_froglok_1h_pierce_parry_down',0), -(11176,42953,'kill_froglok_1h_pierce_parry_forehand',0), -(11177,42954,'kill_froglok_1h_pierce_parry_thrust',0), -(11178,42955,'kill_froglok_1h_sword_attack01',0), -(11179,42956,'kill_froglok_1h_sword_attack02',0), -(11180,42957,'kill_froglok_1h_sword_attack03',0), -(11181,42958,'kill_froglok_1h_sword_death_blow',0), -(11182,42959,'kill_froglok_1h_sword_death_blow01',0), -(11183,42960,'kill_froglok_1h_sword_dodge_backhand',0), -(11184,42961,'kill_froglok_1h_sword_dodge_down',0), -(11185,42962,'kill_froglok_1h_sword_dodge_forehand',0), -(11186,42963,'kill_froglok_1h_sword_dodge_thrust',0), -(11187,42964,'kill_froglok_1h_sword_ouch_backhand',0), -(11188,42965,'kill_froglok_1h_sword_ouch_down',0), -(11189,42966,'kill_froglok_1h_sword_ouch_forehand',0), -(11190,42967,'kill_froglok_1h_sword_ouch_thrust',0), -(11191,42968,'kill_froglok_1h_sword_parry_backhand',0), -(11192,42969,'kill_froglok_1h_sword_parry_down',0), -(11193,42970,'kill_froglok_1h_sword_parry_forehand',0), -(11194,42971,'kill_froglok_1h_sword_parry_thrust',0), -(11195,42972,'kill_froglok_1h_thrown_dodge_backhand',0), -(11196,42973,'kill_froglok_1h_thrown_dodge_down',0), -(11197,42974,'kill_froglok_1h_thrown_dodge_forehand',0), -(11198,42975,'kill_froglok_1h_thrown_dodge_thrust',0), -(11199,42976,'kill_froglok_1h_thrown_ouch_backhand',0), -(11200,42977,'kill_froglok_1h_thrown_ouch_down',0), -(11201,42978,'kill_froglok_1h_thrown_ouch_forehand',0), -(11202,42979,'kill_froglok_1h_thrown_ouch_thrust',0), -(11203,42980,'kill_froglok_bow_dodge_backhand',0), -(11204,42981,'kill_froglok_bow_dodge_down',0), -(11205,42982,'kill_froglok_bow_dodge_forehand',0), -(11206,42983,'kill_froglok_bow_dodge_thrust',0), -(11207,42984,'kill_froglok_bow_ouch_backhand',0), -(11208,42985,'kill_froglok_bow_ouch_down',0), -(11209,42986,'kill_froglok_bow_ouch_forehand',0), -(11210,42987,'kill_froglok_bow_ouch_thrust',0), -(11211,42988,'kill_froglok_dual_wield_attack',0), -(11212,42989,'kill_froglok_dual_wield_attack01',0), -(11213,42990,'kill_froglok_dual_wield_attack02',0), -(11214,42991,'kill_froglok_dual_wield_attack03',0), -(11215,42992,'kill_froglok_dual_wield_dodge_backhand',0), -(11216,42993,'kill_froglok_dual_wield_dodge_down',0), -(11217,42994,'kill_froglok_dual_wield_dodge_forehand',0), -(11218,42995,'kill_froglok_dual_wield_dodge_thrust',0), -(11219,42996,'kill_froglok_dual_wield_idle',0), -(11220,42997,'kill_froglok_dual_wield_ouch_backhand',0), -(11221,42998,'kill_froglok_dual_wield_ouch_down',0), -(11222,42999,'kill_froglok_dual_wield_ouch_forehand',0), -(11223,43000,'kill_froglok_dual_wield_ouch_thrust',0), -(11224,43011,'kill_froglok_1h_crush_idle',0), -(11225,43012,'kill_froglok_1h_pierce_idle',0), -(11226,43013,'kill_froglok_1h_thrown_idle',0), -(11227,43014,'kill_froglok_2h_sword_attack',0), -(11228,43015,'kill_froglok_2h_sword_attack01',0), -(11229,43016,'kill_froglok_2h_sword_attack02',0), -(11230,43017,'kill_froglok_2h_sword_attack03',0), -(11231,43018,'kill_froglok_2h_sword_idle',0), -(11232,43019,'kill_froglok_bow_idle',0), -(11233,43020,'kill_froglok_dual_wield_kick',0), -(11234,43021,'kill_froglok_dual_wield_whirling_attack',0), -(11235,43022,'kill_froglok_dual_wield_wild_swing',0), -(11236,43058,'kill_froglok_2h_sword_dodge_backhand',0), -(11237,43059,'kill_froglok_2h_sword_dodge_down',0), -(11238,43060,'kill_froglok_2h_sword_dodge_forehand',0), -(11239,43061,'kill_froglok_2h_sword_dodge_thrust',0), -(11240,43062,'kill_froglok_2h_sword_kick',0), -(11241,43063,'kill_froglok_2h_sword_whirling_attack',0), -(11242,43064,'kill_froglok_2h_sword_wild_swing',0), -(11243,43065,'kill_froglok_bostaff_attack',0), -(11244,43066,'kill_froglok_bostaff_attack01',0), -(11245,43067,'kill_froglok_bostaff_attack02',0), -(11246,43068,'kill_froglok_bostaff_attack03',0), -(11247,43069,'kill_froglok_bostaff_idle',0), -(11248,43070,'kill_froglok_bostaff_kick',0), -(11249,43071,'kill_froglok_bostaff_whirling_attack',0), -(11250,43072,'kill_froglok_bostaff_wild_swing',0), -(11251,43073,'kill_froglok_monk_idle',0), -(11252,43075,'kill_result_beserker_red_eyes',0), -(11253,43076,'kill_result_guardian_aura',0), -(11254,43086,'kill_froglok_monk_attack',0), -(11255,43087,'kill_froglok_monk_attack01',0), -(11256,43088,'kill_froglok_monk_attack02',0), -(11257,43089,'kill_froglok_monk_attack03',0), -(11258,43090,'kill_froglok_monk_kick',0), -(11259,43091,'kill_froglok_monk_kick_spin',0), -(11260,43092,'kill_froglok_monk_wild_swing',0), -(11261,43124,'kill_froglok_monk_whirling_attack',0), -(11262,43125,'kill_froglok_pike_attack',0), -(11263,43126,'kill_froglok_pike_attack01',0), -(11264,43127,'kill_froglok_pike_attack02',0), -(11265,43128,'kill_froglok_pike_idle',0), -(11266,43129,'kill_froglok_pike_kick',0), -(11267,43130,'kill_froglok_pike_whirling_attack',0), -(11268,43131,'kill_froglok_pike_wild_swing',0), -(11269,43132,'kill_froglok_pugilist_attack',0), -(11270,43133,'kill_froglok_pugilist_attack02',0), -(11271,43134,'kill_froglok_pugilist_attack03',0), -(11272,43135,'kill_froglok_pugilist_idle',0), -(11273,43136,'kill_froglok_pugilist_kick',0), -(11274,43137,'kill_froglok_pugilist_whirling_attack',0), -(11275,43138,'kill_froglok_pugilist_wild_swing',0), -(11276,43139,'kill_froglok_untrained_attack',0), -(11277,43140,'kill_froglok_untrained_idle',0), -(11278,43142,'kill_result_coercer_sun_aura',0), -(11279,43143,'kill_result_illusionist_head_aura',0), -(11280,43144,'kill_result_paladin_shoulder_streamers',0), -(11281,43145,'kill_result_templar_halo',0), -(11282,43155,'kill_fae_light_run',0), -(11283,43157,'kill_result_assassin_star_cloud_hands',0), -(11284,43158,'kill_result_brigand_hand_trails',0), -(11285,43159,'kill_result_bruiser_fist_shining',0), -(11286,43160,'kill_result_dirge_sparkles',0), -(11287,43161,'kill_result_monk_fist_rings',0), -(11288,43162,'kill_result_swashbuckler_hand_trails',0), -(11289,43163,'kill_result_warlock_subtle_aura',0), -(11290,43183,'kill_fae_light_climbing_backup',0), -(11291,43184,'kill_fae_light_climbing_enter_down_root',0), -(11292,43185,'kill_fae_light_climbing_exit_up_root',0), -(11293,43186,'kill_fae_light_climbing_idle',0), -(11294,43187,'kill_fae_light_climbing_strafe_left',0), -(11295,43188,'kill_fae_light_climbing_strafe_right',0), -(11296,43189,'kill_fae_light_climbing_walk',0), -(11297,43190,'kill_fae_light_dead',0), -(11298,43191,'kill_fae_light_dead_enter',0), -(11299,43237,'kill_fae_light_bostaff_dodge_backhand',0), -(11300,43238,'kill_fae_light_bostaff_dodge_forehand',0), -(11301,43239,'kill_fae_light_dual_wield_dodge_backhand',0), -(11302,43240,'kill_fae_light_dual_wield_dodge_forehand',0), -(11303,43241,'kill_fae_light_dual_wield_ouch_backhand',0), -(11304,43242,'kill_fae_light_dual_wield_ouch_forehand',0), -(11305,43243,'kill_fae_light_dual_wield_parry_down',0), -(11306,43276,'kill_fae_light_monk_dodge_backhand',0), -(11307,43277,'kill_fae_light_monk_dodge_down',0), -(11308,43280,'kill_horse_jump_substitute',0), -(11309,43284,'kill_result_conjuror_shoulder_blue_flames',0), -(11310,43297,'kill_fae_light_sit_enter',0), -(11311,43298,'kill_fae_light_sit_exit',0), -(11312,43299,'kill_fae_light_sit_idle',0), -(11313,43301,'kill_froglok_horse_idle',0), -(11314,43310,'kill_result_necromancer_hand_skulls',0), -(11315,43321,'kill_froglok_gathering_search',0), -(11316,43322,'kill_froglok_gathering_success',0), -(11317,43323,'kill_froglok_mining_digging',0), -(11318,43327,'kill_result_ranger_green_aura',0), -(11319,43328,'kill_result_shadowknight_flame_horns',0), -(11320,43329,'kill_result_wizard_elemental_hands',0), -(11321,43342,'kill_froglok_converse_male04',0), -(11322,43343,'kill_froglok_converse_male12',0), -(11323,43344,'kill_froglok_forestry_success',0), -(11324,43345,'kill_froglok_horse_jump_substitute',0), -(11325,43346,'kill_froglok_kick',0), -(11326,43347,'kill_froglok_knockedtoback',0), -(11327,43348,'kill_froglok_mining_success',0), -(11328,43349,'kill_froglok_run_03',0), -(11329,43350,'kill_froglok_wild_swing',0), -(11330,43352,'kill_result_defiler_poison_cloud',0), -(11331,43353,'kill_result_mystic_cloudy_feet',0), -(11332,43354,'kill_result_troubador_clouds',0), -(11333,43364,'kill_froglok_bostaff_knockedtoback',0), -(11334,43365,'kill_froglok_bostaff_knockedtoback_getup',0), -(11335,43366,'kill_froglok_bow_knockedtoback',0), -(11336,43367,'kill_froglok_bow_knockedtoback_getup',0), -(11337,43368,'kill_froglok_dual_wield_knockedtoback',0), -(11338,43369,'kill_froglok_dual_wield_knockedtoback_getup',0), -(11339,43370,'kill_froglok_knockedtoback_getup',0), -(11340,43371,'kill_froglok_knockedtoback_onbackidle',0), -(11341,43372,'kill_froglok_monk_knockedtoback',0), -(11342,43373,'kill_froglok_monk_knockedtoback_getup',0), -(11343,43374,'kill_froglok_pike_knockedtoback',0), -(11344,43375,'kill_froglok_pike_knockedtoback_getup',0), -(11345,43376,'kill_froglok_pugilist_knockedtoback',0), -(11346,43377,'kill_froglok_pugilist_knockedtoback_getup',0), -(11347,43448,'kill_1h_crush_attack_recoil',0), -(11348,43449,'kill_1h_crush_attack_recoil01',0), -(11349,43450,'kill_1h_crush_attack_recoil02',0), -(11350,43451,'kill_1h_crush_attack_recoil03',0), -(11351,43452,'kill_1h_crush_backup',0), -(11352,43453,'kill_1h_crush_enter',0), -(11353,43454,'kill_1h_crush_exit',0), -(11354,43455,'kill_1h_crush_strafe_left',0), -(11355,43456,'kill_1h_crush_strafe_right',0), -(11356,43457,'kill_1h_crush_walk',0), -(11357,43458,'kill_1h_pierce_attack02',0), -(11358,43459,'kill_1h_pierce_attack03',0), -(11359,43460,'kill_1h_pierce_attack_recoil',0), -(11360,43461,'kill_1h_pierce_attack_recoil01',0), -(11361,43462,'kill_1h_pierce_attack_recoil02',0), -(11362,43463,'kill_1h_pierce_attack_recoil03',0), -(11363,43464,'kill_1h_pierce_backup',0), -(11364,43465,'kill_1h_pierce_death_blow',0), -(11365,43466,'kill_1h_pierce_death_blow01',0), -(11366,43467,'kill_1h_pierce_enter',0), -(11367,43468,'kill_1h_pierce_exit',0), -(11368,43469,'kill_1h_pierce_strafe_left',0), -(11369,43470,'kill_1h_pierce_strafe_right',0), -(11370,43471,'kill_1h_pierce_walk',0), -(11371,43472,'kill_1h_sword_attack_recoil',0), -(11372,43473,'kill_1h_sword_attack_recoil01',0), -(11373,43474,'kill_1h_sword_attack_recoil02',0), -(11374,43475,'kill_1h_sword_attack_recoil03',0), -(11375,43476,'kill_1h_sword_backup',0), -(11376,43477,'kill_1h_sword_enter',0), -(11377,43478,'kill_1h_sword_exit',0), -(11378,43479,'kill_1h_sword_parry_thurst',0), -(11379,43480,'kill_1h_sword_strafe_left',0), -(11380,43481,'kill_1h_sword_strafe_right',0), -(11381,43482,'kill_1h_sword_walk',0), -(11382,43483,'kill_1h_throw_attack',0), -(11383,43484,'kill_1h_thrown_backup',0), -(11384,43485,'kill_1h_thrown_strafe_left',0), -(11385,43486,'kill_1h_thrown_strafe_right',0), -(11386,43487,'kill_1h_thrown_walk',0), -(11387,43488,'kill_2h_sword_attack03',0), -(11388,43489,'kill_2h_sword_attack_recoil',0), -(11389,43490,'kill_2h_sword_attack_recoil01',0), -(11390,43491,'kill_2h_sword_attack_recoil02',0), -(11391,43492,'kill_2h_sword_attack_recoil03',0), -(11392,43493,'kill_2h_sword_backup',0), -(11393,43494,'kill_2h_sword_charge_up',0), -(11394,43495,'kill_2h_sword_dodge_thrust',0), -(11395,43496,'kill_2h_sword_exit',0), -(11396,43497,'kill_2h_sword_feint',0), -(11397,43498,'kill_2h_sword_offensive_buff',0), -(11398,43499,'kill_2h_sword_parry_backhand',0), -(11399,43500,'kill_2h_sword_parry_down',0), -(11400,43501,'kill_2h_sword_parry_forehand',0), -(11401,43502,'kill_2h_sword_parry_thrust',0), -(11402,43503,'kill_2h_sword_strafe_left',0), -(11403,43504,'kill_2h_sword_strafe_right',0), -(11404,43505,'kill_2h_sword_super_buff',0), -(11405,43506,'kill_2h_sword_taunt',0), -(11406,43507,'kill_2h_sword_taunt_combat_art',0), -(11407,43508,'kill_2h_sword_walk',0), -(11408,43509,'kill_2hsword_idle01',0), -(11409,43512,'kill_a',0), -(11410,43513,'kill_agree',0), -(11411,43515,'kill_alchemy_failure',0), -(11412,43516,'kill_alchemy_idle',0), -(11413,43517,'kill_alchemy_success',0), -(11414,43518,'kill_angry',0), -(11415,43519,'kill_antenna_01',0), -(11416,43520,'kill_antenna_02',0), -(11417,43521,'kill_antenna_03',0), -(11418,43522,'kill_antenna_04',0), -(11419,43523,'kill_antenna_05',0), -(11420,43524,'kill_antonia_wisp',0), -(11421,43525,'kill_anvil',0), -(11422,43526,'kill_anvil_small',0), -(11423,43527,'kill_appear',0), -(11424,43528,'kill_applaude',0), -(11425,43529,'kill_arm04_fail',0), -(11426,43530,'kill_arm04_success',0), -(11427,43531,'kill_armpour01',0), -(11428,43532,'kill_artifact',0), -(11429,43533,'kill_artificing_failure',0), -(11430,43534,'kill_artificing_idle',0), -(11431,43535,'kill_artificing_success',0), -(11432,43536,'kill_artsn_chem_sound',0), -(11433,43537,'kill_artsn_chimepad_sound',0), -(11434,43538,'kill_artsn_forge_helmet_sound',0), -(11435,43539,'kill_artsn_forge_sound',0), -(11436,43540,'kill_artsn_glow_sound',0), -(11437,43541,'kill_artsn_knives_sound',0), -(11438,43542,'kill_artsn_knot_sound',0), -(11439,43543,'kill_artsn_logcut_sound',0), -(11440,43544,'kill_artsn_metal_bar_end_snd',0), -(11441,43545,'kill_artsn_metal_bar_snd',0), -(11442,43546,'kill_artsn_molecule_sound',0), -(11443,43547,'kill_artsn_planer_sound',0), -(11444,43548,'kill_artsn_saw_sound',0), -(11445,43549,'kill_artsn_stove_sound',0), -(11446,43550,'kill_asg_stonegaze_snd',0), -(11447,43551,'kill_attack',0), -(11448,43552,'kill_attack01',0), -(11449,43553,'kill_attack02',0), -(11450,43554,'kill_attack03',0), -(11451,43555,'kill_attack04',0), -(11452,43556,'kill_attack_backhand_trigger',0), -(11453,43557,'kill_attack_bite',0), -(11454,43558,'kill_attack_breath',0), -(11455,43559,'kill_attack_breath01',0), -(11456,43560,'kill_attack_breath02',0), -(11457,43561,'kill_attack_forehand_trigger',0), -(11458,43562,'kill_attack_headram',0), -(11459,43563,'kill_attack_rear',0), -(11460,43564,'kill_attack_roar01',0), -(11461,43565,'kill_attack_scream',0), -(11462,43566,'kill_attack_slam',0), -(11463,43567,'kill_attack_snap',0), -(11464,43568,'kill_attack_sound',0), -(11465,43569,'kill_attack_special',0), -(11466,43570,'kill_attack_special01',0), -(11467,43571,'kill_attack_special02',0), -(11468,43572,'kill_attack_special03',0), -(11469,43573,'kill_attack_special_spring',0), -(11470,43574,'kill_attack_stomp',0), -(11471,43575,'kill_attack_tail',0), -(11472,43576,'kill_attack_whirling',0), -(11473,43577,'kill_attack_wildswing',0), -(11474,43578,'kill_attack_wing',0), -(11475,43579,'kill_attack_wings',0), -(11476,43580,'kill_attack_woosh01',0), -(11477,43581,'kill_attacktiming',0), -(11478,43582,'kill_attacktiming_a',0), -(11479,43583,'kill_attention',0), -(11480,43584,'kill_aval_cast_snd',0), -(11481,43585,'kill_awrh_cast_snd',0), -(11482,43586,'kill_awrh_heal2_snd',0), -(11483,43587,'kill_awrh_heal_snd',0), -(11484,43588,'kill_awrh_rainfall_snd',0), -(11485,43589,'kill_aww_whirlcast_snd',0), -(11486,43590,'kill_aww_whirlparticles_snd',0), -(11487,43591,'kill_backup',0), -(11488,43592,'kill_backup_run',0), -(11489,43593,'kill_bad_outcome01',0), -(11490,43594,'kill_bad_outcome01_shuttle',0), -(11491,43595,'kill_bad_outcome02',0), -(11492,43596,'kill_bad_outcome02_shuttle',0), -(11493,43597,'kill_ball_bk',0), -(11494,43598,'kill_ball_bk_sm',0), -(11495,43599,'kill_ball_glow',0), -(11496,43600,'kill_ball_wht',0), -(11497,43601,'kill_ball_wht_sm',0), -(11498,43602,'kill_barrel_fire',0), -(11499,43603,'kill_barrel_pieces',0), -(11500,43604,'kill_base',0), -(11501,43605,'kill_bat_swarm',0), -(11502,43606,'kill_battlecry',0), -(11503,43607,'kill_bc_caged_snd',0), -(11504,43608,'kill_bd_cast_lp_snd',0), -(11505,43609,'kill_bd_fireburst_snd',0), -(11506,43610,'kill_beaker01',0), -(11507,43611,'kill_beckon',0), -(11508,43612,'kill_beg',0), -(11509,43613,'kill_bene',0), -(11510,43614,'kill_big_saw_success',0), -(11511,43615,'kill_big_saw_success2',0), -(11512,43616,'kill_big_smoke',0), -(11513,43617,'kill_bl_castswirls_snd',0), -(11514,43618,'kill_bl_start_particles_snd',0), -(11515,43619,'kill_blammo',0), -(11516,43620,'kill_blink',0), -(11517,43621,'kill_boe_endspinner_sound',0), -(11518,43622,'kill_boe_open_burst_sound',0), -(11519,43623,'kill_boe_shield_tone_sound',0), -(11520,43624,'kill_boggle',0), -(11521,43625,'kill_boilover01',0), -(11522,43626,'kill_book_white',0), -(11523,43627,'kill_bostaff_attack_recoil',0), -(11524,43628,'kill_bostaff_attack_recoil01',0), -(11525,43629,'kill_bostaff_attack_recoil02',0), -(11526,43630,'kill_bostaff_attack_recoil03',0), -(11527,43631,'kill_bostaff_backup',0), -(11528,43632,'kill_bostaff_charge_up',0), -(11529,43633,'kill_bostaff_defensive_buff',0), -(11530,43634,'kill_bostaff_dodge_backhand',0), -(11531,43635,'kill_bostaff_dodge_down',0), -(11532,43636,'kill_bostaff_dodge_forehand',0), -(11533,43637,'kill_bostaff_dodge_thrust',0), -(11534,43638,'kill_bostaff_enter',0), -(11535,43639,'kill_bostaff_exit',0), -(11536,43640,'kill_bostaff_feint',0), -(11537,43641,'kill_bostaff_idle01',0), -(11538,43642,'kill_bostaff_knockdowntoknees',0), -(11539,43643,'kill_bostaff_knockedtoback',0), -(11540,43644,'kill_bostaff_knockedtoback_getup',0), -(11541,43645,'kill_bostaff_offensive_buff',0), -(11542,43646,'kill_bostaff_ouch_backhand',0), -(11543,43647,'kill_bostaff_ouch_down',0), -(11544,43648,'kill_bostaff_ouch_forehand',0), -(11545,43649,'kill_bostaff_ouch_thrust',0), -(11546,43650,'kill_bostaff_parry_backhand',0), -(11547,43651,'kill_bostaff_parry_down',0), -(11548,43652,'kill_bostaff_parry_forehand',0), -(11549,43653,'kill_bostaff_parry_thrust',0), -(11550,43654,'kill_bostaff_strafe_left',0), -(11551,43655,'kill_bostaff_strafe_right',0), -(11552,43656,'kill_bostaff_super_buff',0), -(11553,43657,'kill_bostaff_taunt_combat_art',0), -(11554,43658,'kill_bostaff_walk',0), -(11555,43659,'kill_bow_aim_down',0), -(11556,43660,'kill_bow_aim_up',0), -(11557,43661,'kill_bow_attack',0), -(11558,43662,'kill_bow_attack_2x',0), -(11559,43663,'kill_bow_backup',0), -(11560,43664,'kill_bow_enter',0), -(11561,43665,'kill_bow_exit',0), -(11562,43666,'kill_bow_getarrow',0), -(11563,43667,'kill_bow_knockdowntoknees',0), -(11564,43668,'kill_bow_knockedtoback',0), -(11565,43669,'kill_bow_knockedtoback_getup',0), -(11566,43670,'kill_bow_pullback',0), -(11567,43671,'kill_bow_release',0), -(11568,43672,'kill_bow_sheathe',0), -(11569,43673,'kill_bow_strafe_left',0), -(11570,43674,'kill_bow_strafe_right',0), -(11571,43675,'kill_bow_unsheathe',0), -(11572,43676,'kill_bow_walk',0), -(11573,43677,'kill_bowstring',0), -(11574,43678,'kill_bowstring_electricity',0), -(11575,43679,'kill_bowstring_electricity_red',0), -(11576,43680,'kill_brandish',0), -(11577,43681,'kill_breath',0), -(11578,43682,'kill_breath_attack',0), -(11579,43683,'kill_breath_attack_blue',0), -(11580,43684,'kill_breath_attack_purple',0), -(11581,43685,'kill_breath_nostop',0), -(11582,43686,'kill_breathweapon',0), -(11583,43687,'kill_bs_bull_form_01_snd',0), -(11584,43688,'kill_bs_cast_armpush_snd',0), -(11585,43689,'kill_bs_hooves_snd',0), -(11586,43690,'kill_bs_makebull_tone_snd',0), -(11587,43691,'kill_bubbles01',0), -(11588,43692,'kill_burn',0), -(11589,43693,'kill_burst_sound_01',0), -(11590,43694,'kill_bye',0), -(11591,43695,'kill_c',0), -(11592,43696,'kill_cache_state0',0), -(11593,43697,'kill_cache_state1',0), -(11594,43698,'kill_cache_state2',0), -(11595,43699,'kill_cached_state0',0), -(11596,43700,'kill_cached_state1',0), -(11597,43701,'kill_cactus_spiney_sound',0), -(11598,43702,'kill_candle01',0), -(11599,43703,'kill_candle02',0), -(11600,43704,'kill_candle03',0), -(11601,43705,'kill_candle04',0), -(11602,43706,'kill_candle_flair01',0), -(11603,43707,'kill_candle_flair02',0), -(11604,43708,'kill_candle_flair03',0), -(11605,43709,'kill_candle_smoke01',0), -(11606,43710,'kill_candle_smoke02',0), -(11607,43711,'kill_candle_smoke03',0), -(11608,43712,'kill_carpet_enter',0), -(11609,43713,'kill_carpet_exit',0), -(11610,43714,'kill_carpet_fall',0), -(11611,43715,'kill_carpet_idle',0), -(11612,43716,'kill_carpet_jump',0), -(11613,43717,'kill_carpet_land',0), -(11614,43718,'kill_carpet_run',0), -(11615,43719,'kill_carpet_walk',0), -(11616,43720,'kill_cast01',0), -(11617,43721,'kill_cast4',0), -(11618,43722,'kill_cast_01lp_snd',0), -(11619,43723,'kill_cast_1',0), -(11620,43724,'kill_cast_10',0), -(11621,43725,'kill_cast_11',0), -(11622,43726,'kill_cast_12',0), -(11623,43727,'kill_cast_2',0), -(11624,43728,'kill_cast_3',0), -(11625,43729,'kill_cast_4',0), -(11626,43730,'kill_cast_6',0), -(11627,43731,'kill_cast_7',0), -(11628,43732,'kill_cast_8',0), -(11629,43733,'kill_cast_9',0), -(11630,43734,'kill_cast_aoe_beneficial_end',0), -(11631,43735,'kill_cast_aoe_beneficial_loop',0), -(11632,43736,'kill_cast_aoe_beneficial_start',0), -(11633,43737,'kill_cast_aoe_detrimental_end',0), -(11634,43738,'kill_cast_aoe_detrimental_loop',0), -(11635,43739,'kill_cast_aoe_detrimental_start',0), -(11636,43741,'kill_cast_aoe_invocation_end',0), -(11637,43742,'kill_cast_aoe_invocation_loop',0), -(11638,43743,'kill_cast_aoe_invocation_start',0), -(11639,43744,'kill_cast_aoe_wand_end',0), -(11640,43745,'kill_cast_aoe_wand_loop',0), -(11641,43746,'kill_cast_aoe_wand_start',0), -(11642,43747,'kill_cast_armor_01_snd',0), -(11643,43748,'kill_cast_attack02',0), -(11644,43749,'kill_cast_backgroundsparkle_snd',0), -(11645,43750,'kill_cast_bard_drum_end',0), -(11646,43751,'kill_cast_bard_drum_loop',0), -(11647,43753,'kill_cast_bard_flute_end',0), -(11648,43754,'kill_cast_bard_flute_loop',0), -(11649,43756,'kill_cast_bard_stringed_end',0), -(11650,43757,'kill_cast_bard_stringed_loop',0), -(11651,43758,'kill_cast_bard_stringed_start',0), -(11652,43759,'kill_cast_bard_vocal_end',0), -(11653,43760,'kill_cast_bard_vocal_loop',0), -(11654,43762,'kill_cast_charge_wind_01_sound',0), -(11655,43763,'kill_cast_chargeswordglint_sound',0), -(11656,43764,'kill_cast_clowhand_sound_01',0), -(11657,43765,'kill_cast_clowhand_sound_02',0), -(11658,43766,'kill_cast_clowhand_sound_03',0), -(11659,43767,'kill_cast_deepbreath',0), -(11660,43768,'kill_cast_distort_lefthand',0), -(11661,43769,'kill_cast_distort_right_foot_ws',0), -(11662,43770,'kill_cast_distort_righthand',0), -(11663,43771,'kill_cast_drake_fire_breath',0), -(11664,43772,'kill_cast_drone_01_snd',0), -(11665,43773,'kill_cast_drone_02_snd',0), -(11666,43774,'kill_cast_drone_snd',0), -(11667,43775,'kill_cast_drone_sound',0), -(11668,43776,'kill_cast_dustpuff_lefthand',0), -(11669,43777,'kill_cast_dustpuff_righthand',0), -(11670,43778,'kill_cast_elec_feet_green',0), -(11671,43779,'kill_cast_elec_hands_four',0), -(11672,43780,'kill_cast_elec_hands_four_up',0), -(11673,43781,'kill_cast_elec_hands_up',0), -(11674,43782,'kill_cast_end_sound',0), -(11675,43783,'kill_cast_endbang2_snd',0), -(11676,43784,'kill_cast_endbang_snd',0), -(11677,43785,'kill_cast_endsparkle_snd',0), -(11678,43786,'kill_cast_endthunder_snd',0), -(11679,43787,'kill_cast_es_arches_01_snd',0), -(11680,43788,'kill_cast_fast',0), -(11681,43789,'kill_cast_force_snd',0), -(11682,43790,'kill_cast_glowhand__sound_02',0), -(11683,43791,'kill_cast_glowhand_sound_01',0), -(11684,43792,'kill_cast_glowhand_sound_03',0), -(11685,43793,'kill_cast_glowhand_sound_04',0), -(11686,43794,'kill_cast_glowhand_sound_05',0), -(11687,43795,'kill_cast_glowhand_sound_06',0), -(11688,43796,'kill_cast_gsswipe_01_snd',0), -(11689,43797,'kill_cast_gsswipe_02_snd',0), -(11690,43798,'kill_cast_gsswipe_03_snd',0), -(11691,43799,'kill_cast_hands_elec_nightblood',0), -(11692,43800,'kill_cast_handswipe_snd',0), -(11693,43801,'kill_cast_howlverb_sound',0), -(11694,43802,'kill_cast_hrb_choral_snd',0), -(11695,43803,'kill_cast_hrb_rune_snd',0), -(11696,43804,'kill_cast_ice_laser_breath',0), -(11697,43805,'kill_cast_kickcharge_sound',0), -(11698,43806,'kill_cast_laser_aoe',0), -(11699,43807,'kill_cast_lava_rocks',0), -(11700,43808,'kill_cast_lense01',0), -(11701,43809,'kill_cast_lense02',0), -(11702,43810,'kill_cast_light_sound',0), -(11703,43811,'kill_cast_mage_aggro_01',0), -(11704,43812,'kill_cast_mage_aggro_02',0), -(11705,43813,'kill_cast_mage_buff_01',0), -(11706,43814,'kill_cast_mage_buff_02',0), -(11707,43815,'kill_cast_mage_ddam_01',0), -(11708,43816,'kill_cast_mage_ddam_02',0), -(11709,43817,'kill_cast_mage_qa_01',0), -(11710,43818,'kill_cast_mage_qa_02',0), -(11711,43819,'kill_cast_mage_qa_03',0), -(11712,43820,'kill_cast_mage_quickzap_01',0), -(11713,43821,'kill_cast_mage_quickzap_02',0), -(11714,43822,'kill_cast_mage_ready',0), -(11715,43823,'kill_cast_mendhands_01',0), -(11716,43824,'kill_cast_mendsparkleball_01',0), -(11717,43825,'kill_cast_mendsparkleball_02',0), -(11718,43826,'kill_cast_mendtrail_01',0), -(11719,43827,'kill_cast_mendtrails_01',0), -(11720,43828,'kill_cast_mendtwinkles_01',0), -(11721,43829,'kill_cast_new_qa_part1',0), -(11722,43830,'kill_cast_new_qa_part2',0), -(11723,43831,'kill_cast_new_qa_part3',0), -(11724,43832,'kill_cast_pdswipe_01_snd',0), -(11725,43833,'kill_cast_pfx_magenuke_head',0), -(11726,43834,'kill_cast_pillar_sound_01',0), -(11727,43835,'kill_cast_pillar_sound_02',0), -(11728,43836,'kill_cast_pillar_sound_03',0), -(11729,43837,'kill_cast_pillar_sound_04',0), -(11730,43838,'kill_cast_pillar_sound_05',0), -(11731,43839,'kill_cast_pillars',0), -(11732,43842,'kill_cast_priest_aggro_01',0), -(11733,43843,'kill_cast_priest_aggro_02',0), -(11734,43844,'kill_cast_priest_buff_01',0), -(11735,43845,'kill_cast_priest_buff_02',0), -(11736,43846,'kill_cast_priest_ddam_01',0), -(11737,43847,'kill_cast_priest_ddam_02',0), -(11738,43848,'kill_cast_priest_floating',0), -(11739,43849,'kill_cast_quickhit_snd',0), -(11740,43850,'kill_cast_ready',0), -(11741,43851,'kill_cast_rune_sound_01',0), -(11742,43852,'kill_cast_rune_sound_02',0), -(11743,43853,'kill_cast_rune_sound_03',0), -(11744,43854,'kill_cast_rune_sound_04',0), -(11745,43855,'kill_cast_shield_grow',0), -(11746,43856,'kill_cast_shortbreath',0), -(11747,43857,'kill_cast_sneak_sound',0), -(11748,43858,'kill_cast_spark_burst_righthand',0), -(11749,43859,'kill_cast_sparklewave_01_snd',0), -(11750,43860,'kill_cast_sparklewave_02_snd',0), -(11751,43861,'kill_cast_sparklewave_03_snd',0), -(11752,43862,'kill_cast_sparklewave_04_snd',0), -(11753,43863,'kill_cast_sparklewave_05_snd',0), -(11754,43864,'kill_cast_startlow_snd',0), -(11755,43865,'kill_cast_startthunder_snd',0), -(11756,43866,'kill_cast_steam_breath',0), -(11757,43867,'kill_cast_summon_end',0), -(11758,43868,'kill_cast_summon_loop',0), -(11759,43869,'kill_cast_summon_start',0), -(11760,43870,'kill_cast_swipe01_snd',0), -(11761,43871,'kill_cast_swipe02_snd',0), -(11762,43872,'kill_cast_target_det_01',0), -(11763,43873,'kill_cast_target_det_02',0), -(11764,43874,'kill_cast_target_det_03',0), -(11765,43875,'kill_cast_target_detrimental_01',0), -(11766,43876,'kill_cast_target_detrimental_02',0), -(11767,43877,'kill_cast_targeted_benefical_end',0), -(11768,43878,'kill_cast_targeted_benefical_loop',0), -(11769,43879,'kill_cast_targeted_benefical_start',0), -(11770,43880,'kill_cast_targeted_beneficial_end',0), -(11771,43881,'kill_cast_targeted_beneficial_loop',0), -(11772,43882,'kill_cast_targeted_beneficial_start',0), -(11773,43883,'kill_cast_targeted_detrimental_end',0), -(11774,43884,'kill_cast_targeted_detrimental_loop',0), -(11775,43885,'kill_cast_targeted_detrimental_start',0), -(11776,43886,'kill_cast_targeted_detrimental_start2',0), -(11777,43887,'kill_cast_targeted_wand_end',0), -(11778,43888,'kill_cast_targeted_wand_loop',0), -(11779,43889,'kill_cast_targeted_wand_start',0), -(11780,43890,'kill_cast_tarranax_breath',0), -(11781,43891,'kill_cast_tarranax_breath_path',0), -(11782,43892,'kill_cast_tarranax_breath_start',0), -(11783,43893,'kill_cast_thunder_snd',0), -(11784,43894,'kill_cast_trail_leftarm_bright',0), -(11785,43895,'kill_cast_trail_rightarm_bright',0), -(11786,43896,'kill_cast_undertone_snd',0), -(11787,43897,'kill_cast_venekors_fire_breath',0), -(11788,43898,'kill_cast_wildcharge_sound',0), -(11789,43899,'kill_cast_wildswingwindsword_sound',0), -(11790,43900,'kill_cast_wuoshi_choking_vines_aoe',0), -(11791,43901,'kill_cast_wuoshi_fire_and_ice_aoe',0), -(11792,43902,'kill_cast_wuoshi_tree_morph',0), -(11793,43903,'kill_cast_zombie_scare',0), -(11794,43904,'kill_cchains_resultchains_snd',0), -(11795,43905,'kill_cchains_sing_snd',0), -(11796,43906,'kill_cf_coins_bounce_background_snd',0), -(11797,43907,'kill_cf_coins_bounce_bkgrnd_short_snd',0), -(11798,43908,'kill_cf_coins_lots_snd',0), -(11799,43909,'kill_cf_coins_many_snd',0), -(11800,43910,'kill_cf_coinsfall_snd',0), -(11801,43911,'kill_charge',0), -(11802,43912,'kill_charge_burst_snd',0), -(11803,43913,'kill_charge_rumble_snd',0), -(11804,43914,'kill_charge_up',0), -(11805,43915,'kill_charge_whoosh_snd',0), -(11806,43916,'kill_charm_cast_snd',0), -(11807,43917,'kill_charm_flutes_snd',0), -(11808,43918,'kill_cheer',0), -(11809,43919,'kill_chimney01',0), -(11810,43920,'kill_chuckle',0), -(11811,43921,'kill_ciseme_m',0), -(11812,43922,'kill_cl_catglow_snd',0), -(11813,43923,'kill_clear_target_tigger',0), -(11814,43924,'kill_clear_target_trigger',0), -(11815,43925,'kill_climbing',0), -(11816,43926,'kill_climbing_chainmail_stone',0), -(11817,43927,'kill_climbing_chainmail_wood',0), -(11818,43928,'kill_climbing_enter_down',0), -(11819,43929,'kill_climbing_exit_up',0), -(11820,43930,'kill_climbing_idle01',0), -(11821,43931,'kill_climbing_leather_stone',0), -(11822,43932,'kill_climbing_leather_wood',0), -(11823,43933,'kill_climbing_metal_stone',0), -(11824,43934,'kill_climbing_metal_wood',0), -(11825,43935,'kill_climbing_ouch',0), -(11826,43936,'kill_closed',0), -(11827,43937,'kill_cloud_group_sound',0), -(11828,43938,'kill_cloud_sound',0), -(11829,43939,'kill_cloud_sound_02',0), -(11830,43940,'kill_cloud_widget',0), -(11831,43941,'kill_cn_ringout_snd',0), -(11832,43942,'kill_cn_strums_snd',0), -(11833,43943,'kill_coals01',0), -(11834,43944,'kill_coals_failure',0), -(11835,43945,'kill_coals_fire_large',0), -(11836,43946,'kill_coals_fire_small',0), -(11837,43947,'kill_coins_and_jewels_pile',0), -(11838,43948,'kill_coins_pile_copper',0), -(11839,43949,'kill_coins_pile_gold',0), -(11840,43950,'kill_coins_pile_silver',0), -(11841,43951,'kill_cold_breath',0), -(11842,43952,'kill_comabt_exit',0), -(11843,43953,'kill_combat',0), -(11844,43954,'kill_combat_backup',0), -(11845,43955,'kill_combat_backup_run',0), -(11846,43956,'kill_combat_enter',0), -(11847,43957,'kill_combat_exit',0), -(11848,43958,'kill_combat_fx',0), -(11849,43959,'kill_combat_idle',0), -(11850,43960,'kill_combat_idle01',0), -(11851,43961,'kill_combat_idle1',0), -(11852,43962,'kill_combat_idle_bark',0), -(11853,43963,'kill_combat_idle_enter',0), -(11854,43964,'kill_combat_idle_jump',0), -(11855,43965,'kill_combat_idle_rhand',0), -(11856,43966,'kill_combat_idle_snap',0), -(11857,43967,'kill_combat_idle_sound01',0), -(11858,43968,'kill_combat_idle_sound02',0), -(11859,43969,'kill_combat_idleflap',0), -(11860,43970,'kill_combat_ouch',0), -(11861,43971,'kill_combat_ouch_sound',0), -(11862,43972,'kill_combat_peace',0), -(11863,43973,'kill_combat_run',0), -(11864,43974,'kill_combat_strafe_left_run',0), -(11865,43975,'kill_combat_strafe_right_run',0), -(11866,43976,'kill_combat_tail',0), -(11867,43977,'kill_combat_tail_cloak',0), -(11868,43978,'kill_combat_turn_left',0), -(11869,43979,'kill_combat_turn_right',0), -(11870,43980,'kill_combat_walk',0), -(11871,43981,'kill_complete',0), -(11872,43982,'kill_confused',0), -(11873,43988,'kill_converse',0), -(11874,43989,'kill_converse_female01',0), -(11875,43990,'kill_converse_female02',0), -(11876,43991,'kill_converse_female03',0), -(11877,43992,'kill_converse_female04',0), -(11878,43993,'kill_converse_female05',0), -(11879,43994,'kill_converse_female06',0), -(11880,43995,'kill_converse_female07',0), -(11881,43996,'kill_converse_female08',0), -(11882,43997,'kill_converse_female09',0), -(11883,43998,'kill_converse_female10',0), -(11884,43999,'kill_converse_female11',0), -(11885,44000,'kill_converse_female12',0), -(11886,44001,'kill_converse_male01',0), -(11887,44002,'kill_converse_male02',0), -(11888,44003,'kill_converse_male03',0), -(11889,44004,'kill_converse_male05',0), -(11890,44005,'kill_converse_male06',0), -(11891,44006,'kill_converse_male07',0), -(11892,44007,'kill_converse_male08',0), -(11893,44008,'kill_converse_male09',0), -(11894,44009,'kill_converse_male10',0), -(11895,44010,'kill_converse_male11',0), -(11896,44011,'kill_cooking_failure',0), -(11897,44012,'kill_cooking_idle',0), -(11898,44013,'kill_cooking_success',0), -(11899,44014,'kill_corpse',0), -(11900,44015,'kill_cos_call_storm_snd',0), -(11901,44016,'kill_cos_storm_space_snd',0), -(11902,44017,'kill_cp_charge_snd',0), -(11903,44018,'kill_cr_choral01_sound',0), -(11904,44019,'kill_cr_choral02_sound',0), -(11905,44020,'kill_cracks',0), -(11906,44021,'kill_crash_enter',0), -(11907,44022,'kill_crash_exit',0), -(11908,44023,'kill_crazy',0), -(11909,44024,'kill_cringe',0), -(11910,44025,'kill_croak_01',0), -(11911,44026,'kill_croak_02',0), -(11912,44027,'kill_croak_03',0), -(11913,44028,'kill_croak_04',0), -(11914,44029,'kill_croak_05',0), -(11915,44030,'kill_croak_06',0), -(11916,44031,'kill_croak_07',0), -(11917,44032,'kill_croak_08',0), -(11918,44033,'kill_croak_09',0), -(11919,44034,'kill_crouch_backup',0), -(11920,44035,'kill_crouch_run',0), -(11921,44036,'kill_crouch_strafe_left',0), -(11922,44037,'kill_crouch_strafe_right',0), -(11923,44038,'kill_crouch_tail',0), -(11924,44039,'kill_crouch_tail_cloak',0), -(11925,44040,'kill_crouch_turn_left',0), -(11926,44041,'kill_crouch_turn_right',0), -(11927,44042,'kill_crouch_walk',0), -(11928,44043,'kill_cry',0), -(11929,44044,'kill_cs_begin_snd',0), -(11930,44045,'kill_cs_cast_lp_snd',0), -(11931,44046,'kill_cs_disco_lp01_snd',0), -(11932,44047,'kill_cs_end_snd',0), -(11933,44048,'kill_cs_ice_crackle_01',0), -(11934,44049,'kill_cs_iceburst_sound',0), -(11935,44050,'kill_cs_icetones_01',0), -(11936,44051,'kill_cs_icewind_sound',0), -(11937,44052,'kill_cs_result_sound',0), -(11938,44053,'kill_curse',0), -(11939,44054,'kill_curtsey',0), -(11940,44055,'kill_cutthroat',0), -(11941,44056,'kill_cv_candle01_snd',0), -(11942,44057,'kill_cv_candle02_snd',0), -(11943,44058,'kill_cv_darkcandle_snd',0), -(11944,44059,'kill_cv_drone_snd',0), -(11945,44060,'kill_cv_handwave01_snd',0), -(11946,44061,'kill_cv_handwave02_snd',0), -(11947,44062,'kill_damage01',0), -(11948,44063,'kill_damage02',0), -(11949,44064,'kill_damage03',0), -(11950,44065,'kill_damage_small',0), -(11951,44066,'kill_dance',0), -(11952,44067,'kill_dance01',0), -(11953,44068,'kill_dark_smoke',0), -(11954,44069,'kill_dark_smoke_up',0), -(11955,44070,'kill_db_drone_sound',0), -(11956,44071,'kill_db_electricend_sound',0), -(11957,44072,'kill_db_swordstickdirt_sound',0), -(11958,44073,'kill_dbb_dragonbreath_snd',0), -(11959,44074,'kill_dbb_dragonbreathhiwav_snd',0), -(11960,44075,'kill_dcs_scarab_lp_snd',0), -(11961,44076,'kill_dcspid_spider_snd',0), -(11962,44077,'kill_dead_dark_smoke',0), -(11963,44078,'kill_dead_dark_smoke_head',0), -(11964,44079,'kill_dead_enter_death02',0), -(11965,44080,'kill_dead_enter_death03',0), -(11966,44081,'kill_dead_enter_fall',0), -(11967,44082,'kill_dead_enter_scream',0), -(11968,44083,'kill_dead_enter_sound',0), -(11969,44084,'kill_dead_entertiming_a',0), -(11970,44085,'kill_dead_entertiming_b',0), -(11971,44086,'kill_dead_entertiming_c',0), -(11972,44087,'kill_dead_entertiming_c2',0), -(11973,44088,'kill_dead_entertiming_c3',0), -(11974,44089,'kill_dead_entertiming_d',0), -(11975,44090,'kill_dead_entertiming_e',0), -(11976,44091,'kill_dead_exit',0), -(11977,44092,'kill_dead_fall',0), -(11978,44093,'kill_dead_scream01',0), -(11979,44094,'kill_dead_scream02',0), -(11980,44095,'kill_dead_tail',0), -(11981,44096,'kill_death_fall01',0), -(11982,44097,'kill_death_fall02',0), -(11983,44098,'kill_default',0), -(11984,44099,'kill_defensive_buff',0), -(11985,44100,'kill_definsive_buff',0), -(11986,44101,'kill_descend_sound_01',0), -(11987,44102,'kill_design_fear_gate_flash',0), -(11988,44103,'kill_design_fireflies',0), -(11989,44104,'kill_design_fireflies_evil',0), -(11990,44105,'kill_design_hearts_all',0), -(11991,44106,'kill_design_hearts_big_all',0), -(11992,44107,'kill_design_hearts_big_blue',0), -(11993,44108,'kill_design_hearts_big_purple',0), -(11994,44109,'kill_design_hearts_big_red',0), -(11995,44110,'kill_design_hearts_blue',0), -(11996,44111,'kill_design_hearts_purple',0), -(11997,44112,'kill_design_hearts_red',0), -(11998,44113,'kill_design_hummingbirds',0), -(11999,44114,'kill_design_portal_to_hell',0), -(12000,44115,'kill_design_result_backdraft',0), -(12001,44116,'kill_design_result_cyclone_sand',0), -(12002,44117,'kill_design_result_cyclone_sand_ccw',0), -(12003,44118,'kill_design_result_freeport_pit_fire_spurt',0), -(12004,44119,'kill_design_result_fungusman_poked',0), -(12005,44120,'kill_design_result_halloween_fog',0), -(12006,44121,'kill_design_result_light_shafts',0), -(12007,44122,'kill_design_result_sparkle_scan_up',0), -(12008,44123,'kill_design_result_teleporter',0), -(12009,44124,'kill_design_smoke_jet_brown',0), -(12010,44125,'kill_design_smoke_jet_brown_int',0), -(12011,44126,'kill_design_smoke_jet_gray',0), -(12012,44127,'kill_design_smoke_jet_gray_int',0), -(12013,44128,'kill_design_smoke_jet_white',0), -(12014,44129,'kill_design_smoke_jet_white_int',0), -(12015,44130,'kill_design_sound_blow',0), -(12016,44131,'kill_design_sound_bubble',0), -(12017,44132,'kill_design_sound_steam',0), -(12018,44133,'kill_design_steamfont_bubbles_ripples',0), -(12019,44134,'kill_design_steamfont_rainbow',0), -(12020,44135,'kill_design_steamfont_slow_steam',0), -(12021,44136,'kill_design_steamfont_steam_column',0), -(12022,44137,'kill_design_steamfont_steam_tube_a',0), -(12023,44138,'kill_design_steamfont_steam_tube_b',0), -(12024,44139,'kill_design_steamfont_water_column',0), -(12025,44140,'kill_design_teleport_spires',0), -(12026,44141,'kill_design_trap_spear',0), -(12027,44142,'kill_design_trap_weight',0), -(12028,44143,'kill_design_vision_plane_druid_ring',0), -(12029,44144,'kill_design_vortex_portal_blue',0), -(12030,44145,'kill_design_vortex_portal_green',0), -(12031,44146,'kill_design_vortex_portal_oval_blue',0), -(12032,44147,'kill_destination',0), -(12033,44148,'kill_destroy',0), -(12034,44149,'kill_destroyed',0), -(12035,44150,'kill_df_charge_sound',0), -(12036,44151,'kill_df_hit_sound',0), -(12037,44152,'kill_df_impact_sound',0), -(12038,44153,'kill_df_vortex_sound',0), -(12039,44154,'kill_dieyell',0), -(12040,44155,'kill_dig',0), -(12041,44156,'kill_dig_enter',0), -(12042,44157,'kill_dig_exit',0), -(12043,44158,'kill_dig_loop',0), -(12044,44159,'kill_ding',0), -(12045,44160,'kill_disarm_both',0), -(12046,44161,'kill_disarm_left',0), -(12047,44162,'kill_disarm_right',0), -(12048,44163,'kill_disease',0), -(12049,44164,'kill_dm_backgroundexplosions_snd',0), -(12050,44165,'kill_dm_dragonform_snd',0), -(12051,44166,'kill_dm_energyforce_snd',0), -(12052,44167,'kill_dodge',0), -(12053,44168,'kill_dodge01',0), -(12054,44169,'kill_dodge02',0), -(12055,44170,'kill_dodge03',0), -(12056,44171,'kill_dodge1',0), -(12057,44172,'kill_dodge2',0), -(12058,44173,'kill_dodge3',0), -(12059,44174,'kill_dodge_backhand',0), -(12060,44175,'kill_dodge_down',0), -(12061,44176,'kill_dodge_forehand',0), -(12062,44177,'kill_dodge_thrust',0), -(12063,44178,'kill_doh',0), -(12064,44179,'kill_door_move',0), -(12065,44180,'kill_door_slam',0), -(12066,44181,'kill_doorcorner01',0), -(12067,44182,'kill_doorcorner02',0), -(12068,44183,'kill_doubletake',0), -(12069,44184,'kill_dpsd_swordshatter.wav_snd',0), -(12070,44185,'kill_dragon_e3demo',0), -(12071,44186,'kill_draw_metal_weapon_snd',0), -(12072,44187,'kill_draw_weapon_snd',0), -(12073,44188,'kill_draw_weapon_trigger',0), -(12074,44189,'kill_drinking_failure',0), -(12075,44190,'kill_drinking_idle',0), -(12076,44191,'kill_drinking_success',0), -(12077,44192,'kill_drip01',0), -(12078,44193,'kill_drip02',0), -(12079,44194,'kill_dronewolf_sound',0), -(12080,44195,'kill_drum_drone_snd',0), -(12081,44196,'kill_drum_drum_snd',0), -(12082,44197,'kill_ds_dragonspawn_sound',0), -(12083,44198,'kill_ds_gashiss_snd',0), -(12084,44201,'kill_dual_wield_attack_recoil',0), -(12085,44202,'kill_dual_wield_attack_recoil01',0), -(12086,44203,'kill_dual_wield_attack_recoil02',0), -(12087,44204,'kill_dual_wield_attack_recoil03',0), -(12088,44205,'kill_dual_wield_backup',0), -(12089,44206,'kill_dual_wield_defensive_buff',0), -(12090,44207,'kill_dual_wield_dodge_backhand',0), -(12091,44208,'kill_dual_wield_dodge_down',0), -(12092,44209,'kill_dual_wield_dodge_forehand',0), -(12093,44210,'kill_dual_wield_dodge_thrust',0), -(12094,44211,'kill_dual_wield_enter',0), -(12095,44212,'kill_dual_wield_exit',0), -(12096,44213,'kill_dual_wield_feint',0), -(12097,44214,'kill_dual_wield_knockdowntoknees',0), -(12098,44215,'kill_dual_wield_knockedtoback',0), -(12099,44216,'kill_dual_wield_knockedtoback_getup',0), -(12100,44217,'kill_dual_wield_offensive_buff',0), -(12101,44218,'kill_dual_wield_ouch_backhand',0), -(12102,44219,'kill_dual_wield_ouch_down',0), -(12103,44220,'kill_dual_wield_ouch_forehand',0), -(12104,44221,'kill_dual_wield_ouch_thrust',0), -(12105,44222,'kill_dual_wield_parry_backhand',0), -(12106,44223,'kill_dual_wield_parry_down',0), -(12107,44224,'kill_dual_wield_parry_forehand',0), -(12108,44225,'kill_dual_wield_parry_thrust',0), -(12109,44226,'kill_dual_wield_strafe_left',0), -(12110,44227,'kill_dual_wield_strafe_right',0), -(12111,44228,'kill_dual_wield_super_buff',0), -(12112,44229,'kill_dual_wield_taunt_combat_art',0), -(12113,44230,'kill_dual_wield_walk',0), -(12114,44231,'kill_duck',0), -(12115,44232,'kill_duck_short',0), -(12116,44233,'kill_dust_base',0), -(12117,44234,'kill_dust_holster_center',0), -(12118,44235,'kill_dust_holster_left',0), -(12119,44236,'kill_dust_holster_right',0), -(12120,44237,'kill_dust_leftfoot',0), -(12121,44238,'kill_dust_lefttfoot',0), -(12122,44239,'kill_dust_puff',0), -(12123,44240,'kill_dust_rightfoot',0), -(12124,44241,'kill_dust_righttfoot',0), -(12125,44242,'kill_dw_snap_snd',0), -(12126,44243,'kill_e',0), -(12127,44244,'kill_eat',0), -(12128,44245,'kill_ef_cast_chains_lp_snd',0), -(12129,44246,'kill_ef_chains_snd',0), -(12130,44247,'kill_elbow',0), -(12131,44248,'kill_electric_shackles_softer_sound',0), -(12132,44249,'kill_electric_shackles_sound',0), -(12133,44250,'kill_end_snarl_sound',0), -(12134,44251,'kill_endsplat',0), -(12135,44252,'kill_enter',0), -(12136,44253,'kill_es_flutecast_sound',0), -(12137,44254,'kill_es_fluteresult_sound',0), -(12138,44255,'kill_ew_castlp_snd',0), -(12139,44256,'kill_explode01',0), -(12140,44257,'kill_explode02',0), -(12141,44258,'kill_explode03',0), -(12142,44259,'kill_explode_big',0), -(12143,44260,'kill_explosion',0), -(12144,44261,'kill_eye_beam',0), -(12145,44262,'kill_eye_beam_red_blue',0), -(12146,44263,'kill_eyes',0), -(12147,44264,'kill_f',0), -(12148,44265,'kill_face_combat',0), -(12149,44266,'kill_face_idle',0), -(12150,44267,'kill_facial_frown',0), -(12151,44268,'kill_facial_smile',0), -(12152,44269,'kill_fae_dance_spark_sphere',0), -(12153,44270,'kill_fae_silvani_transformation',0), -(12154,44271,'kill_failure01',0), -(12155,44272,'kill_failure02',0), -(12156,44273,'kill_fall_enter',0), -(12157,44274,'kill_fall_idle',0), -(12158,44275,'kill_fall_moving',0), -(12159,44276,'kill_fall_sequence',0), -(12160,44277,'kill_fb_froggy01_snd',0), -(12161,44278,'kill_fb_froggyform_snd',0), -(12162,44279,'kill_fb_ice_explode_sound',0), -(12163,44280,'kill_fbb_charge_snd',0), -(12164,44281,'kill_fbb_crunches_snd',0), -(12165,44282,'kill_fbb_explode_snd',0), -(12166,44283,'kill_fbd_charge01_snd',0), -(12167,44284,'kill_fbd_impact_snd',0), -(12168,44285,'kill_fbd_precharge_snd',0), -(12169,44286,'kill_fd_distort02_snd',0), -(12170,44287,'kill_fd_distort_end_snd',0), -(12171,44288,'kill_fd_distort_low_snd',0), -(12172,44289,'kill_fd_distort_snd',0), -(12173,44290,'kill_feint',0), -(12174,44291,'kill_ff_explode_lp_snd',0), -(12175,44292,'kill_ff_lasercloud_lp_snd',0), -(12176,44293,'kill_fgdt_dust_snd',0), -(12177,44294,'kill_fh_cast_sparkles_snd',0), -(12178,44295,'kill_fh_end_body_fall_snd',0), -(12179,44296,'kill_fh_flames_snd',0), -(12180,44297,'kill_fh_hammer_appear_02_snd',0), -(12181,44298,'kill_fh_hammer_appear_snd',0), -(12182,44299,'kill_fh_hammer_impact_snd',0), -(12183,44300,'kill_fh_hammer_whoosh_snd',0), -(12184,44301,'kill_fire',0), -(12185,44302,'kill_fire01',0), -(12186,44303,'kill_fire02',0), -(12187,44304,'kill_fire_breath',0), -(12188,44305,'kill_fire_loop',0), -(12189,44306,'kill_fireblast',0), -(12190,44307,'kill_fishing_cast',0), -(12191,44308,'kill_fishing_fight',0), -(12192,44309,'kill_fishing_reel_in',0), -(12193,44310,'kill_fizzle',0), -(12194,44311,'kill_fkd_impact_sound',0), -(12195,44312,'kill_fkd_kneebreak_sound',0), -(12196,44313,'kill_fl_bckgrnd_snd',0), -(12197,44314,'kill_fl_lash_snd',0), -(12198,44315,'kill_fl_whiphit_snd',0), -(12199,44316,'kill_flames_sound',0), -(12200,44317,'kill_flash_blue',0), -(12201,44318,'kill_flash_green',0), -(12202,44319,'kill_flash_red',0), -(12203,44320,'kill_flash_yellow',0), -(12204,44321,'kill_flee',0), -(12205,44322,'kill_flex',0), -(12206,44323,'kill_flight_path',0), -(12207,44324,'kill_flingpoo',0), -(12208,44325,'kill_flirt',0), -(12209,44326,'kill_flustered',0), -(12210,44327,'kill_fly',0), -(12211,44328,'kill_fly_attack',0), -(12212,44329,'kill_fly_attack_bite',0), -(12213,44330,'kill_fly_attack_breath',0), -(12214,44331,'kill_fly_attack_breath_arc',0), -(12215,44332,'kill_fly_dive',0), -(12216,44333,'kill_fly_glide',0), -(12217,44334,'kill_fly_glide2',0), -(12218,44335,'kill_fly_idle',0), -(12219,44336,'kill_fly_in',0), -(12220,44337,'kill_fly_ouch',0), -(12221,44338,'kill_fly_run',0), -(12222,44339,'kill_fmba_breathattack_snd',0), -(12223,44340,'kill_foostep_trigger',0), -(12224,44341,'kill_foot_dust_left',0), -(12225,44342,'kill_foot_dust_right',0), -(12226,44343,'kill_foot_shake',0), -(12227,44344,'kill_footste_trigger',0), -(12228,44345,'kill_footstep',0), -(12229,44346,'kill_footstep_chainmail_carpet',0), -(12230,44347,'kill_footstep_chainmail_dirt',0), -(12231,44348,'kill_footstep_chainmail_grass',0), -(12232,44349,'kill_footstep_chainmail_gravel',0), -(12233,44350,'kill_footstep_chainmail_ice',0), -(12234,44351,'kill_footstep_chainmail_metal',0), -(12235,44352,'kill_footstep_chainmail_mud',0), -(12236,44353,'kill_footstep_chainmail_sand',0), -(12237,44354,'kill_footstep_chainmail_snow',0), -(12238,44355,'kill_footstep_chainmail_stone',0), -(12239,44356,'kill_footstep_chainmail_water',0), -(12240,44357,'kill_footstep_chainmail_wood',0), -(12241,44358,'kill_footstep_leather_carpet',0), -(12242,44359,'kill_footstep_leather_dirt',0), -(12243,44360,'kill_footstep_leather_grass',0), -(12244,44361,'kill_footstep_leather_gravel',0), -(12245,44362,'kill_footstep_leather_ice',0), -(12246,44363,'kill_footstep_leather_metal',0), -(12247,44364,'kill_footstep_leather_mud',0), -(12248,44365,'kill_footstep_leather_sand',0), -(12249,44366,'kill_footstep_leather_snow',0), -(12250,44367,'kill_footstep_leather_stone',0), -(12251,44368,'kill_footstep_leather_water',0), -(12252,44369,'kill_footstep_leather_wood',0), -(12253,44370,'kill_footstep_metal_carpet',0), -(12254,44371,'kill_footstep_metal_dirt',0), -(12255,44372,'kill_footstep_metal_grass',0), -(12256,44373,'kill_footstep_metal_gravel',0), -(12257,44374,'kill_footstep_metal_ice',0), -(12258,44375,'kill_footstep_metal_metal',0), -(12259,44376,'kill_footstep_metal_mud',0), -(12260,44377,'kill_footstep_metal_sand',0), -(12261,44378,'kill_footstep_metal_snow',0), -(12262,44379,'kill_footstep_metal_stone',0), -(12263,44380,'kill_footstep_metal_water',0), -(12264,44381,'kill_footstep_metal_wood',0), -(12265,44382,'kill_footstep_trigger',0), -(12266,44383,'kill_forest_flare',0), -(12267,44384,'kill_forestry_chopping',0), -(12268,44385,'kill_four_rings',0), -(12269,44386,'kill_four_rings_fail',0), -(12270,44387,'kill_frog_attack_01',0), -(12271,44388,'kill_frog_hit',0), -(12272,44389,'kill_frog_ouch',0), -(12273,44390,'kill_frog_squish_01',0), -(12274,44391,'kill_frog_squish_02',0), -(12275,44392,'kill_frog_squish_03',0), -(12276,44393,'kill_frog_tongue_01',0), -(12277,44394,'kill_frog_tongueslime_01',0), -(12278,44395,'kill_frog_whoosh_01',0), -(12279,44396,'kill_frustrated',0), -(12280,44397,'kill_fs_cast_flame_snd',0), -(12281,44398,'kill_fs_endfire_snd',0), -(12282,44399,'kill_fs_firefall_snd',0), -(12283,44400,'kill_fs_whoosh_snd',0), -(12284,44401,'kill_fullcurtsey',0), -(12285,44402,'kill_fusion_bubbly_snd',0), -(12286,44403,'kill_fusion_cast_snd',0), -(12287,44404,'kill_gc_boneburs_snd',0), -(12288,44405,'kill_gc_castcharge_snd',0), -(12289,44406,'kill_gc_result_snd',0), -(12290,44407,'kill_gc_screams_snd',0), -(12291,44408,'kill_gem_glow',0), -(12292,44409,'kill_gemsparkle',0), -(12293,44410,'kill_gemsparkle_fail1',0), -(12294,44411,'kill_gemsparkle_fail2',0), -(12295,44412,'kill_gemsparkle_go',0), -(12296,44413,'kill_ghost_carpet',0), -(12297,44414,'kill_ghost_die',0), -(12298,44415,'kill_ghost_loop',0), -(12299,44416,'kill_giggle',0), -(12300,44417,'kill_glare',0), -(12301,44418,'kill_glide',0), -(12302,44419,'kill_glow',0), -(12303,44420,'kill_glow_top',0), -(12304,44421,'kill_go',0), -(12305,44422,'kill_go_down',0), -(12306,44423,'kill_green_fire',0), -(12307,44424,'kill_green_smoke',0), -(12308,44425,'kill_griffin_idle',0), -(12309,44426,'kill_griffin_run',0), -(12310,44427,'kill_griffin_walk',0), -(12311,44428,'kill_group_chargeswordglint_sound',0), -(12312,44429,'kill_group_cloud_sound',0), -(12313,44430,'kill_group_electricend_sound',0), -(12314,44431,'kill_grumble',0), -(12315,44432,'kill_gutcramp',0), -(12316,44433,'kill_gw_chargeup_snd',0), -(12317,44434,'kill_gw_grantwish_snd',0), -(12318,44435,'kill_gw_impact_sound',0), -(12319,44436,'kill_happy',0), -(12320,44437,'kill_harpy_fire_snd',0), -(12321,44438,'kill_harpy_spin_snd',0), -(12322,44439,'kill_haste_sparkles_snd',0), -(12323,44440,'kill_haste_swirl_snd',0), -(12324,44441,'kill_haste_swords_snd',0), -(12325,44442,'kill_head_tracking_off_trigger',0), -(12326,44443,'kill_hearnoevil',0), -(12327,44444,'kill_heartattack',0), -(12328,44445,'kill_heat_shimmer',0), -(12329,44446,'kill_heavydamage_enter',0), -(12330,44447,'kill_heavydamage_idle',0), -(12331,44448,'kill_heckno',0), -(12332,44449,'kill_heelclick',0), -(12333,44450,'kill_hello',0), -(12334,44451,'kill_heroic_sound',0), -(12335,44452,'kill_hide',0), -(12336,44453,'kill_hide_melee_projectile_trigger',0), -(12337,44454,'kill_hit_02',0), -(12338,44455,'kill_hit_chainmail_snd',0), -(12339,44456,'kill_hit_cloth_snd',0), -(12340,44457,'kill_hit_leather_snd',0), -(12341,44458,'kill_hit_metal_chainmail_snd',0), -(12342,44459,'kill_hit_metal_cloth_snd',0), -(12343,44460,'kill_hit_metal_leather_snd',0), -(12344,44461,'kill_hit_metal_metal_snd',0), -(12345,44462,'kill_hit_metal_skin_snd',0), -(12346,44463,'kill_hit_metal_snd',0), -(12347,44464,'kill_hit_shake',0), -(12348,44465,'kill_hit_skin_chainmail_snd',0), -(12349,44466,'kill_hit_skin_cloth_snd',0), -(12350,44467,'kill_hit_skin_leather_snd',0), -(12351,44468,'kill_hit_skin_metal_snd',0), -(12352,44469,'kill_hit_skin_skin_snd',0), -(12353,44470,'kill_hit_skin_snd',0), -(12354,44471,'kill_hit_snd',0), -(12355,44472,'kill_hit_target_tigger',0), -(12356,44473,'kill_hit_target_trigger',0), -(12357,44474,'kill_hit_wood_chainmail_snd',0), -(12358,44475,'kill_hit_wood_cloth_snd',0), -(12359,44476,'kill_hit_wood_leather_snd',0), -(12360,44477,'kill_hit_wood_metal_snd',0), -(12361,44478,'kill_hit_wood_skin_snd',0), -(12362,44479,'kill_hitonhead_sound',0), -(12363,44480,'kill_horse_fall',0), -(12364,44481,'kill_horse_jump',0), -(12365,44482,'kill_horse_land',0), -(12366,44483,'kill_horse_run',0), -(12367,44484,'kill_horse_tail',0), -(12368,44485,'kill_horse_walk',0), -(12369,44486,'kill_howl',0), -(12370,44487,'kill_hr_ghost_gallop_snd',0), -(12371,44488,'kill_hr_whiney_snd',0), -(12372,44489,'kill_hrb_endruneblur_sound',0), -(12373,44490,'kill_hro_heal_snd',0), -(12374,44491,'kill_hro_runeorbit_snd',0), -(12375,44492,'kill_hungry',0), -(12376,44493,'kill_ic_fragments_snd',0), -(12377,44494,'kill_ic_ice_bkgrnd_sound',0), -(12378,44495,'kill_ic_ice_spike_sound',0), -(12379,44496,'kill_idle03',0), -(12380,44497,'kill_idle04',0), -(12381,44498,'kill_idle_01',0), -(12382,44499,'kill_idle_bark',0), -(12383,44500,'kill_idle_break',0), -(12384,44501,'kill_idle_e3',0), -(12385,44502,'kill_idle_pant',0), -(12386,44503,'kill_idle_sniff',0), -(12387,44504,'kill_idle_snort',0), -(12388,44505,'kill_idle_static',0), -(12389,44506,'kill_idle_step',0), -(12390,44507,'kill_idle_vocal',0), -(12391,44508,'kill_idletiming_a',0), -(12392,44509,'kill_idletiming_b',0), -(12393,44510,'kill_idletiming_c',0), -(12394,44511,'kill_idletiming_d',0), -(12395,44512,'kill_idletiming_e',0), -(12396,44513,'kill_idletiming_g',0), -(12397,44514,'kill_idletiming_h',0), -(12398,44515,'kill_idletiming_i',0), -(12399,44516,'kill_ignite_weapon_sh',0), -(12400,44517,'kill_ilt_tap_snd',0), -(12401,44518,'kill_inhale',0), -(12402,44520,'kill_int_cast_lp_snd',0), -(12403,44521,'kill_int_cast_sparkles_lp',0), -(12404,44522,'kill_int_float_sound',0), -(12405,44523,'kill_int_intglow_sound',0), -(12406,44524,'kill_itch',0), -(12407,44525,'kill_jump',0), -(12408,44526,'kill_jump_moving',0), -(12409,44527,'kill_jump_substitute',0), -(12410,44528,'kill_kettle01',0), -(12411,44529,'kill_kick',0), -(12412,44530,'kill_kiss',0), -(12413,44531,'kill_knockdown_attack',0), -(12414,44532,'kill_knockdowntoknees',0), -(12415,44533,'kill_knockdowntokness',0), -(12416,44534,'kill_knockdwontoknees',0), -(12417,44535,'kill_knockedtoback',0), -(12418,44536,'kill_knockedtoback_getup',0), -(12419,44537,'kill_knockedtoback_onbackidle',0), -(12420,44538,'kill_knockedtoknees',0), -(12421,44539,'kill_knockedtokness',0), -(12422,44540,'kill_knocktoknees',0), -(12423,44541,'kill_l',0), -(12424,44542,'kill_la_lion_roar_02_snd',0), -(12425,44543,'kill_la_lion_roar_snd',0), -(12426,44544,'kill_land',0), -(12427,44545,'kill_land_thud',0), -(12428,44546,'kill_landing',0), -(12429,44547,'kill_launch_melee_projectile_trigger',0), -(12430,44548,'kill_lb2_zap_snd',0), -(12431,44549,'kill_lb_cloud_sound',0), -(12432,44550,'kill_lb_volts_sound',0), -(12433,44551,'kill_leatherworking_failure',0), -(12434,44552,'kill_leatherworking_idle',0), -(12435,44553,'kill_leatherworking_success',0), -(12436,44554,'kill_left_hand_fist',0), -(12437,44555,'kill_left_hand_relaxed',0), -(12438,44556,'kill_level_up3d_sound',0), -(12439,44557,'kill_light_torch',0), -(12440,44558,'kill_lightdamage_enter',0), -(12441,44559,'kill_lightdamage_idle',0), -(12442,44560,'kill_lightning_spheres',0), -(12443,44561,'kill_listen',0), -(12444,44562,'kill_long_fall',0), -(12445,44563,'kill_long_fall_moving',0), -(12446,44564,'kill_lookaway',0), -(12447,44565,'kill_lr_castlion_snd',0), -(12448,44566,'kill_lr_growl_snd',0), -(12449,44567,'kill_lt_suck2_snd',0), -(12450,44568,'kill_lt_suck_snd',0), -(12451,44569,'kill_lucan_lightning_bolt',0), -(12452,44570,'kill_lvlup_achievment_snd',0), -(12453,44571,'kill_m',0), -(12454,44572,'kill_mc_castend_snd',0), -(12455,44573,'kill_mc_castopen_snd',0), -(12456,44574,'kill_mc_manna_channel_snd',0), -(12457,44575,'kill_mc_resultwhip_snd',0), -(12458,44576,'kill_mcp_shield',0), -(12459,44577,'kill_mediumdamage_enter',0), -(12460,44578,'kill_mediumdamage_idle',0), -(12461,44579,'kill_metalworking_failure',0), -(12462,44580,'kill_metalworking_idle',0), -(12463,44581,'kill_metalworking_success',0), -(12464,44582,'kill_miss_target_tigger',0), -(12465,44583,'kill_miss_target_trigger',0), -(12466,44584,'kill_molten_metal',0), -(12467,44585,'kill_monk_attack_recoil',0), -(12468,44586,'kill_monk_attack_recoil01',0), -(12469,44587,'kill_monk_attack_recoil02',0), -(12470,44588,'kill_monk_attack_recoil03',0), -(12471,44589,'kill_monk_backup',0), -(12472,44590,'kill_monk_charge_up',0), -(12473,44591,'kill_monk_defensive_buff',0), -(12474,44592,'kill_monk_dodge_forehand',0), -(12475,44593,'kill_monk_dodge_thrust',0), -(12476,44594,'kill_monk_enter',0), -(12477,44595,'kill_monk_exit',0), -(12478,44596,'kill_monk_feint',0), -(12479,44597,'kill_monk_idle01',0), -(12480,44598,'kill_monk_kick',0), -(12481,44599,'kill_monk_kick_flying',0), -(12482,44600,'kill_monk_kick_spin',0), -(12483,44601,'kill_monk_knockdowntoknees',0), -(12484,44602,'kill_monk_knockedtoback',0), -(12485,44603,'kill_monk_knockedtoback_getup',0), -(12486,44604,'kill_monk_offensive_buff',0), -(12487,44605,'kill_monk_ouch_backhand',0), -(12488,44606,'kill_monk_ouch_down',0), -(12489,44607,'kill_monk_ouch_forehand',0), -(12490,44608,'kill_monk_ouch_thrust',0), -(12491,44609,'kill_monk_parry_backhand',0), -(12492,44610,'kill_monk_parry_down',0), -(12493,44611,'kill_monk_parry_forehand',0), -(12494,44612,'kill_monk_parry_thrust',0), -(12495,44613,'kill_monk_strafe_left',0), -(12496,44614,'kill_monk_strafe_right',0), -(12497,44615,'kill_monk_super_buff',0), -(12498,44616,'kill_monk_taunt_combat_art',0), -(12499,44617,'kill_monk_walk',0), -(12500,44618,'kill_monk_whirling_attack',0), -(12501,44619,'kill_mood_afraid',0), -(12502,44620,'kill_mood_angry',0), -(12503,44621,'kill_mood_combat',0), -(12504,44622,'kill_mood_happy',0), -(12505,44623,'kill_mood_idle',0), -(12506,44624,'kill_mood_sad',0), -(12507,44625,'kill_mood_tired',0), -(12508,44626,'kill_moon',0), -(12509,44627,'kill_mount',0), -(12510,44628,'kill_mr_chomp',0), -(12511,44629,'kill_mr_curl',0), -(12512,44630,'kill_mr_death_yell',0), -(12513,44631,'kill_mr_fall',0), -(12514,44632,'kill_mr_growl',0), -(12515,44633,'kill_mr_land',0), -(12516,44634,'kill_mr_ouch_01',0), -(12517,44635,'kill_mr_run_01',0), -(12518,44636,'kill_myst_caststars_snd',0), -(12519,44637,'kill_myst_caststarsresult_snd',0), -(12520,44638,'kill_myst_stars_snd',0), -(12521,44639,'kill_nb_burn_01_snd',0), -(12522,44640,'kill_nb_burst_02_snd',0), -(12523,44641,'kill_nb_burst_snd',0), -(12524,44642,'kill_nb_castmagic_snd',0), -(12525,44643,'kill_nb_handsparks_long_snd',0), -(12526,44644,'kill_nb_handsparks_louder_snd',0), -(12527,44645,'kill_nb_handsparks_snd',0), -(12528,44646,'kill_nbgroup_castmagic_snd',0), -(12529,44647,'kill_needle01',0), -(12530,44648,'kill_neener',0), -(12531,44649,'kill_no',0), -(12532,44650,'kill_nod',0), -(12533,44651,'kill_o',0), -(12534,44652,'kill_off_combat',0), -(12535,44653,'kill_off_enter',0), -(12536,44654,'kill_off_exit',0), -(12537,44655,'kill_off_idle',0), -(12538,44656,'kill_off_peace',0), -(12539,44657,'kill_off_sit',0), -(12540,44658,'kill_offensive_buff',0), -(12541,44659,'kill_one_ring',0), -(12542,44660,'kill_one_ring_fail',0), -(12543,44661,'kill_oov_bubbles_snd',0), -(12544,44662,'kill_oov_effect_short_snd',0), -(12545,44663,'kill_oov_effect_snd',0), -(12546,44664,'kill_oov_heal_snd',0), -(12547,44665,'kill_open',0), -(12548,44666,'kill_open_coins_and_jewels',0), -(12549,44667,'kill_open_coins_copper',0), -(12550,44668,'kill_open_coins_gold',0), -(12551,44669,'kill_open_coins_silver',0), -(12552,44670,'kill_open_glow',0), -(12553,44671,'kill_opened',0), -(12554,44672,'kill_opened_coins_and_jewels',0), -(12555,44673,'kill_opened_coins_copper',0), -(12556,44674,'kill_opened_coins_gold',0), -(12557,44675,'kill_opened_coins_silver',0), -(12558,44676,'kill_opened_glow',0), -(12559,44677,'kill_orate',0), -(12560,44678,'kill_other_idle',0), -(12561,44679,'kill_ouch',0), -(12562,44680,'kill_ouch+forehand',0), -(12563,44681,'kill_ouch01',0), -(12564,44682,'kill_ouch01_01',0), -(12565,44683,'kill_ouch02',0), -(12566,44684,'kill_ouch02_01',0), -(12567,44685,'kill_ouch03',0), -(12568,44686,'kill_ouch03_01',0), -(12569,44687,'kill_ouch04',0), -(12570,44688,'kill_ouch_01',0), -(12571,44689,'kill_ouch_backhand',0), -(12572,44690,'kill_ouch_backhand_01',0), -(12573,44691,'kill_ouch_bakchand',0), -(12574,44692,'kill_ouch_big',0), -(12575,44693,'kill_ouch_chips',0), -(12576,44694,'kill_ouch_down',0), -(12577,44695,'kill_ouch_down_01',0), -(12578,44696,'kill_ouch_forehand',0), -(12579,44697,'kill_ouch_forehand_01',0), -(12580,44698,'kill_ouch_fx',0), -(12581,44699,'kill_ouch_fx2',0), -(12582,44700,'kill_ouch_headshake01',0), -(12583,44701,'kill_ouch_medium',0), -(12584,44702,'kill_ouch_medium_big',0), -(12585,44703,'kill_ouch_oil_drip',0), -(12586,44704,'kill_ouch_parts',0), -(12587,44705,'kill_ouch_roar01',0), -(12588,44706,'kill_ouch_scream',0), -(12589,44707,'kill_ouch_small',0), -(12590,44708,'kill_ouch_sound',0), -(12591,44709,'kill_ouch_spurt_chest',0), -(12592,44710,'kill_ouch_spurt_pelvis',0), -(12593,44711,'kill_ouch_tail',0), -(12594,44712,'kill_ouch_tail02',0), -(12595,44713,'kill_ouch_thrust',0), -(12596,44714,'kill_ouch_thrust_01',0), -(12597,44715,'kill_ouchdown',0), -(12598,44716,'kill_ouchtiming_a',0), -(12599,44717,'kill_ouchtiming_b',0), -(12600,44718,'kill_ouchtiming_c',0), -(12601,44719,'kill_oven_door',0), -(12602,44720,'kill_overhere',0), -(12603,44721,'kill_parry',0), -(12604,44722,'kill_parry01',0), -(12605,44723,'kill_parry02',0), -(12606,44724,'kill_parry03',0), -(12607,44725,'kill_parry_metal_metal_snd',0), -(12608,44726,'kill_parry_metal_skin_snd',0), -(12609,44727,'kill_parry_metal_wood_snd',0), -(12610,44728,'kill_parry_skin_metal_snd',0), -(12611,44729,'kill_parry_skin_skin_snd',0), -(12612,44730,'kill_parry_skin_wood_snd',0), -(12613,44731,'kill_parry_snd',0), -(12614,44732,'kill_parry_target_tigger',0), -(12615,44733,'kill_parry_target_trigger',0), -(12616,44734,'kill_parry_wood_metal_snd',0), -(12617,44735,'kill_parry_wood_skin_snd',0), -(12618,44736,'kill_parry_wood_wood_snd',0), -(12619,44737,'kill_particle_mood_combat',0), -(12620,44738,'kill_particle_mood_dead',0), -(12621,44739,'kill_particle_mood_peace',0), -(12622,44740,'kill_pbae_divine_snd',0), -(12623,44741,'kill_peace_combat',0), -(12624,44742,'kill_peace_fx',0), -(12625,44743,'kill_peace_off',0), -(12626,44744,'kill_peer',0), -(12627,44745,'kill_pen01',0), -(12628,44746,'kill_pf_endsplash_snd',0), -(12629,44747,'kill_pf_pwrcast_snd',0), -(12630,44748,'kill_pf_pwrrslt_snd',0), -(12631,44749,'kill_pike_attack03',0), -(12632,44750,'kill_pike_attack04',0), -(12633,44751,'kill_pike_attack_recoil',0), -(12634,44752,'kill_pike_attack_recoil01',0), -(12635,44753,'kill_pike_attack_recoil02',0), -(12636,44754,'kill_pike_attack_recoil03',0), -(12637,44755,'kill_pike_backup',0), -(12638,44756,'kill_pike_charge_up',0), -(12639,44757,'kill_pike_death_blow',0), -(12640,44758,'kill_pike_defensive_buff',0), -(12641,44759,'kill_pike_dodge_backhand',0), -(12642,44760,'kill_pike_dodge_down',0), -(12643,44761,'kill_pike_dodge_forehand',0), -(12644,44762,'kill_pike_dodge_thrust',0), -(12645,44763,'kill_pike_enter',0), -(12646,44764,'kill_pike_exit',0), -(12647,44765,'kill_pike_feint',0), -(12648,44766,'kill_pike_idle01',0), -(12649,44767,'kill_pike_knockdowntoknees',0), -(12650,44768,'kill_pike_knockedtoback',0), -(12651,44769,'kill_pike_knockedtoback_getup',0), -(12652,44770,'kill_pike_offensive_buff',0), -(12653,44771,'kill_pike_ouch01_backhand',0), -(12654,44772,'kill_pike_ouch02_down',0), -(12655,44773,'kill_pike_ouch_backhand',0), -(12656,44774,'kill_pike_ouch_down',0), -(12657,44775,'kill_pike_ouch_forehand',0), -(12658,44776,'kill_pike_ouch_thrust',0), -(12659,44777,'kill_pike_parry_backhand',0), -(12660,44778,'kill_pike_parry_down',0), -(12661,44779,'kill_pike_parry_forehand',0), -(12662,44780,'kill_pike_parry_thrust',0), -(12663,44781,'kill_pike_strafe_left',0), -(12664,44782,'kill_pike_strafe_right',0), -(12665,44783,'kill_pike_super_buff',0), -(12666,44784,'kill_pike_taunt',0), -(12667,44785,'kill_pike_walk',0), -(12668,44786,'kill_pl_lightning_01_snd',0), -(12669,44787,'kill_pl_lightning_02_snd',0), -(12670,44788,'kill_pl_lightning_03_snd',0), -(12671,44789,'kill_pl_warp_01_snd',0), -(12672,44790,'kill_planer',0), -(12673,44791,'kill_plummet',0), -(12674,44792,'kill_pn_castflute_sound',0), -(12675,44793,'kill_pn_resultflute_sound',0), -(12676,44794,'kill_pof_batdrone_snd',0), -(12677,44795,'kill_pof_casttone_snd',0), -(12678,44796,'kill_point',0), -(12679,44797,'kill_point_right',0), -(12680,44798,'kill_ponder',0), -(12681,44799,'kill_pout',0), -(12682,44800,'kill_pp_casthi_snd',0), -(12683,44801,'kill_pp_stab_snd',0), -(12684,44802,'kill_ps_caststream_snd',0), -(12685,44803,'kill_ps_resultfx_snd',0), -(12686,44804,'kill_pugilist_attack01',0), -(12687,44805,'kill_pugilist_attack03',0), -(12688,44806,'kill_pugilist_attack_recoil',0), -(12689,44807,'kill_pugilist_attack_recoil01',0), -(12690,44808,'kill_pugilist_attack_recoil02',0), -(12691,44809,'kill_pugilist_attack_recoil03',0), -(12692,44810,'kill_pugilist_backup',0), -(12693,44811,'kill_pugilist_charge_up',0), -(12694,44812,'kill_pugilist_defensive_buff',0), -(12695,44813,'kill_pugilist_dodge',0), -(12696,44814,'kill_pugilist_dodge01',0), -(12697,44815,'kill_pugilist_dodge02',0), -(12698,44816,'kill_pugilist_dodge_backhand',0), -(12699,44817,'kill_pugilist_dodge_down',0), -(12700,44818,'kill_pugilist_dodge_forehand',0), -(12701,44819,'kill_pugilist_dodge_thrust',0), -(12702,44820,'kill_pugilist_enter',0), -(12703,44821,'kill_pugilist_exit',0), -(12704,44822,'kill_pugilist_feint',0), -(12705,44823,'kill_pugilist_knockdowntoknees',0), -(12706,44824,'kill_pugilist_knockedtoback',0), -(12707,44825,'kill_pugilist_knockedtoback_getup',0), -(12708,44826,'kill_pugilist_offensive_buff',0), -(12709,44827,'kill_pugilist_ouch',0), -(12710,44828,'kill_pugilist_ouch01',0), -(12711,44829,'kill_pugilist_ouch_backhand',0), -(12712,44830,'kill_pugilist_ouch_down',0), -(12713,44831,'kill_pugilist_ouch_forehand',0), -(12714,44832,'kill_pugilist_ouch_thrust',0), -(12715,44833,'kill_pugilist_parry',0), -(12716,44834,'kill_pugilist_parry_backhand',0), -(12717,44835,'kill_pugilist_parry_down',0), -(12718,44836,'kill_pugilist_parry_forehand',0), -(12719,44837,'kill_pugilist_parry_thrust',0), -(12720,44838,'kill_pugilist_recoil',0), -(12721,44839,'kill_pugilist_strafe_left',0), -(12722,44840,'kill_pugilist_strafe_right',0), -(12723,44841,'kill_pugilist_super_buff',0), -(12724,44842,'kill_pugilist_taunt',0), -(12725,44843,'kill_pugilist_walk',0), -(12726,44844,'kill_pv_pet_victory_snd',0), -(12727,44845,'kill_quality_down',0), -(12728,44846,'kill_quality_up',0), -(12729,44847,'kill_quest_complete',0), -(12730,44848,'kill_rain',0), -(12731,44849,'kill_raisehand',0), -(12732,44850,'kill_rays',0), -(12733,44851,'kill_rb_p2pcast_snd',0), -(12734,44852,'kill_rb_p2pstream_snd',0), -(12735,44853,'kill_rc_leaves_01_snd',0), -(12736,44854,'kill_rc_roots_grow_01_snd',0), -(12737,44855,'kill_rct_endblast_sound',0), -(12738,44856,'kill_rct_endtones_sound',0), -(12739,44857,'kill_rebirth_sound_01',0), -(12740,44858,'kill_red_nose',0), -(12741,44859,'kill_resilt_end_sound',0), -(12742,44860,'kill_rest',0), -(12743,44861,'kill_result_bladebarrier',0), -(12744,44862,'kill_result_camera_shake2_snd',0), -(12745,44863,'kill_result_camera_shake_snd',0), -(12746,44864,'kill_result_chain_lightning_p2p',0), -(12747,44865,'kill_result_charge1_sh',0), -(12748,44866,'kill_result_charge_sh',0), -(12749,44867,'kill_result_copter_flamethrower',0), -(12750,44868,'kill_result_dawn_rising',0), -(12751,44869,'kill_result_dragon_fire_spiral',0), -(12752,44870,'kill_result_dragon_shield_fire',0), -(12753,44871,'kill_result_dragon_shield_lightning',0), -(12754,44872,'kill_result_dragon_shield_lightning_02a',0), -(12755,44873,'kill_result_dragon_shield_lightning_02b',0), -(12756,44874,'kill_result_dragon_shield_lightning_02c',0), -(12757,44875,'kill_result_dust_blast_heavy',0), -(12758,44876,'kill_result_feather_explosion',0), -(12759,44877,'kill_result_flash_dragon',0), -(12760,44878,'kill_result_fog',0), -(12761,44879,'kill_result_fog_low',0), -(12762,44880,'kill_result_fog_low_small',0), -(12763,44881,'kill_result_fog_poison',0), -(12764,44882,'kill_result_fog_poison_4x10',0), -(12765,44883,'kill_result_fog_poison_low',0), -(12766,44884,'kill_result_fog_poison_low_small',0), -(12767,44885,'kill_result_fog_poison_small',0), -(12768,44886,'kill_result_fog_small',0), -(12769,44887,'kill_result_forced_shader_dark_dragon',0), -(12770,44888,'kill_result_forced_shader_electric_dragon',0), -(12771,44889,'kill_result_forced_shader_fire_dragon',0), -(12772,44890,'kill_result_forced_shader_ice_dragon',0), -(12773,44891,'kill_result_froglok_bauble',0), -(12774,44892,'kill_result_glint2_sh',0), -(12775,44893,'kill_result_knighthood_bauble',0), -(12776,44894,'kill_result_lightning_bolt1_snd',0), -(12777,44895,'kill_result_mend_synth_sound',0), -(12778,44896,'kill_result_protection_of_twilight',0), -(12779,44897,'kill_result_recharging_station_effect',0), -(12780,44898,'kill_result_rune_awakened',0), -(12781,44899,'kill_result_sparkles_clinging_dragon',0), -(12782,44900,'kill_result_sparkles_clinging_soft_dragon',0), -(12783,44901,'kill_result_sun_sphere',0), -(12784,44902,'kill_result_twinkle_01',0), -(12785,44903,'kill_result_weakness_disk_blue',0), -(12786,44904,'kill_result_weakness_disk_green',0), -(12787,44905,'kill_result_weakness_disk_purple',0), -(12788,44906,'kill_result_weakness_disk_red',0), -(12789,44907,'kill_result_weakness_disk_yellow',0), -(12790,44908,'kill_result_windrazor',0), -(12791,44909,'kill_result_wood_chips',0), -(12792,44910,'kill_resurrect',0), -(12793,44911,'kill_right_hand_fist',0), -(12794,44912,'kill_right_hand_relaxed',0), -(12795,44913,'kill_righthand_impact',0), -(12796,44914,'kill_ring_glints',0), -(12797,44915,'kill_ring_glints2',0), -(12798,44916,'kill_ring_glints_idle',0), -(12799,44917,'kill_rofl',0), -(12800,44918,'kill_royalwave',0), -(12801,44919,'kill_rt_drone_snd',0), -(12802,44920,'kill_rt_tune_snd',0), -(12803,44921,'kill_rude',0), -(12804,44923,'kill_runes',0), -(12805,44924,'kill_sa_bones_sound',0), -(12806,44925,'kill_sa_flash01_snd',0), -(12807,44926,'kill_sa_flash02_snd',0), -(12808,44927,'kill_sa_flash03_snd',0), -(12809,44928,'kill_sa_rattle_01_snd',0), -(12810,44929,'kill_sa_skelattack_snd',0), -(12811,44930,'kill_sa_skeldance_snd',0), -(12812,44931,'kill_sa_snakespawn_snd',0), -(12813,44932,'kill_sa_spiritappear_snd',0), -(12814,44933,'kill_sa_strike_snd',0), -(12815,44934,'kill_sad',0), -(12816,44935,'kill_salute',0), -(12817,44936,'kill_salute_freeport',0), -(12818,44937,'kill_sanc_castlp_snd',0), -(12819,44938,'kill_sanc_pulse_01_sound',0), -(12820,44939,'kill_sanc_pulse_02_sound',0), -(12821,44940,'kill_sarcasm',0), -(12822,44941,'kill_saw01',0), -(12823,44942,'kill_saw02',0), -(12824,44943,'kill_saw_sparks_front',0), -(12825,44944,'kill_saw_sparks_inside',0), -(12826,44945,'kill_saw_sparks_outside',0), -(12827,44946,'kill_sb_skelcast_sound',0), -(12828,44947,'kill_sb_skeleton_sound',0), -(12829,44948,'kill_sc_impact_snd',0), -(12830,44949,'kill_sc_swipe_snd',0), -(12831,44950,'kill_scheme',0), -(12832,44951,'kill_scims_scimitar_snd',0), -(12833,44952,'kill_scims_swordswipe_snd',0), -(12834,44953,'kill_scims_whoosh_snd',0), -(12835,44954,'kill_scissors01',0), -(12836,44955,'kill_scold',0), -(12837,44956,'kill_scorp_crunches_snd',0), -(12838,44957,'kill_scorpa_scorpform_snd',0), -(12839,44958,'kill_scorpa_scream01_snd',0), -(12840,44959,'kill_scratch',0), -(12841,44960,'kill_scream',0), -(12842,44961,'kill_scribing_idle',0), -(12843,44962,'kill_scruntch',0), -(12844,44963,'kill_sd_drumming_lp_snd',0), -(12845,44964,'kill_sd_soulcast_sound',0), -(12846,44965,'kill_sd_soulsuck_sound',0), -(12847,44967,'kill_sd_spiritflash_snd',0), -(12848,44968,'kill_sd_spiritflashsoft_snd',0), -(12849,44969,'kill_section01',0), -(12850,44970,'kill_section02',0), -(12851,44971,'kill_section03',0), -(12852,44972,'kill_seenoevil',0), -(12853,44973,'kill_sf_bladering_snd',0), -(12854,44974,'kill_sf_flute_lp_snd',0), -(12855,44975,'kill_sgwp_bark_snd',0), -(12856,44976,'kill_shaft01',0), -(12857,44977,'kill_shaft02',0), -(12858,44978,'kill_shake',0), -(12859,44979,'kill_shake1',0), -(12860,44980,'kill_shake2',0), -(12861,44981,'kill_shake3',0), -(12862,44982,'kill_shakefist',0), -(12863,44983,'kill_shakeit',0), -(12864,44984,'kill_shame',0), -(12865,44985,'kill_shark_attack01',0), -(12866,44986,'kill_shark_bite01',0), -(12867,44987,'kill_shark_bite02',0), -(12868,44988,'kill_shark_cry',0), -(12869,44989,'kill_shark_die',0), -(12870,44990,'kill_shark_ouch',0), -(12871,44991,'kill_shark_runtail',0), -(12872,44992,'kill_shark_runtail02',0), -(12873,44993,'kill_shark_tail',0), -(12874,44994,'kill_sheathe_metal_weapon_snd',0), -(12875,44995,'kill_sheathe_weapon_snd',0), -(12876,44996,'kill_sheathe_weapon_trigger',0), -(12877,44997,'kill_shield_block_backhand',0), -(12878,44998,'kill_shield_block_down',0), -(12879,44999,'kill_shield_block_forehand',0), -(12880,45000,'kill_shield_block_thrust',0), -(12881,45001,'kill_shield_shove',0), -(12882,45002,'kill_shield_sound',0), -(12883,45003,'kill_shimmy',0), -(12884,45004,'kill_shiver',0), -(12885,45005,'kill_show_bridge',0), -(12886,45006,'kill_show_melee_projectile_trigger',0), -(12887,45007,'kill_shrink_sound',0), -(12888,45008,'kill_shrug',0), -(12889,45009,'kill_shuttle01',0), -(12890,45010,'kill_sick',0), -(12891,45011,'kill_side_smoke01',0), -(12892,45012,'kill_sig_bursting_snd',0), -(12893,45013,'kill_sig_rattler_snd',0), -(12894,45014,'kill_sigh',0), -(12895,45015,'kill_sit_combat',0), -(12896,45016,'kill_sit_idle01',0), -(12897,45017,'kill_sit_idle02',0), -(12898,45018,'kill_sit_off',0), -(12899,45019,'kill_sit_peace',0), -(12900,45020,'kill_sit_tail',0), -(12901,45021,'kill_sit_tail_cloak',0), -(12902,45022,'kill_sl_lute_lp_snd',0), -(12903,45023,'kill_slt_castfire_snd',0), -(12904,45024,'kill_slt_resultvortex_snd',0), -(12905,45025,'kill_slt_splode_snd',0), -(12906,45026,'kill_slugattack_01',0), -(12907,45027,'kill_slugdie_hit_01',0), -(12908,45028,'kill_slugdie_hit_02',0), -(12909,45029,'kill_slugdie_hit_03',0), -(12910,45030,'kill_slugpulse_01',0), -(12911,45031,'kill_slugpulse_02',0), -(12912,45032,'kill_slugpulse_03',0), -(12913,45033,'kill_slugpulse_04',0), -(12914,45034,'kill_slugpulser_01',0), -(12915,45035,'kill_slugrun_01',0), -(12916,45036,'kill_slugrun_02',0), -(12917,45037,'kill_slugrunpulse_01',0), -(12918,45038,'kill_slugrunpulse_02',0), -(12919,45039,'kill_slugsplat_01',0), -(12920,45040,'kill_slugsplat_02',0), -(12921,45041,'kill_slugsway_01',0), -(12922,45042,'kill_slugsway_02',0), -(12923,45043,'kill_slugtongue',0), -(12924,45044,'kill_slugtongueimpact_01',0), -(12925,45045,'kill_slugwalk_01',0), -(12926,45046,'kill_slugwalk_02',0), -(12927,45047,'kill_slugwalkpulse_01',0), -(12928,45048,'kill_slugwalkpulse_02',0), -(12929,45049,'kill_slugyell_01',0), -(12930,45050,'kill_small_saw',0), -(12931,45051,'kill_smash',0), -(12932,45052,'kill_smashed',0), -(12933,45053,'kill_smile',0), -(12934,45054,'kill_smirk',0), -(12935,45055,'kill_smite_cast_lp_snd',0), -(12936,45056,'kill_smoke',0), -(12937,45057,'kill_smoke_breath',0), -(12938,45058,'kill_smoke_dark_chimney',0), -(12939,45059,'kill_smoke_dark_coals',0), -(12940,45060,'kill_smoke_dark_ground',0), -(12941,45061,'kill_smoke_dark_up',0), -(12942,45062,'kill_smoke_flash',0), -(12943,45063,'kill_smoke_ring',0), -(12944,45064,'kill_smoke_sparks',0), -(12945,45065,'kill_snd_boom',0), -(12946,45066,'kill_snd_confrontfear_fade',0), -(12947,45067,'kill_snd_confrontfear_skull',0), -(12948,45068,'kill_snd_fall_damage',0), -(12949,45069,'kill_snd_fire_whoosh',0), -(12950,45070,'kill_snd_fireworks_boom',0), -(12951,45071,'kill_snd_frontload_acid',0), -(12952,45072,'kill_snd_keg_appear',0), -(12953,45073,'kill_snd_keg_gulp',0), -(12954,45074,'kill_snd_keg_pour',0), -(12955,45075,'kill_snd_keg_whoosh',0), -(12956,45076,'kill_snd_keg_yum',0), -(12957,45077,'kill_snd_lifeburn_castabsorb',0), -(12958,45078,'kill_snd_lifeburn_castbase',0), -(12959,45079,'kill_snd_lifeburn_resultblast',0), -(12960,45080,'kill_snd_mayong_boen_blanket',0), -(12961,45081,'kill_snd_mayong_boen_result',0), -(12962,45082,'kill_snd_pumpkin_flaming',0), -(12963,45083,'kill_snd_slide_cast',0), -(12964,45084,'kill_snd_slide_result',0), -(12965,45085,'kill_snd_snowball_impact',0), -(12966,45086,'kill_snd_spirit_elephant_vocal',0), -(12967,45087,'kill_snd_teleport_druidring_flash',0), -(12968,45088,'kill_snd_teleport_druidring_loop',0), -(12969,45089,'kill_snd_wuoshi_choking_vines',0), -(12970,45090,'kill_snd_wuoshi_tree_enter',0), -(12971,45091,'kill_snd_wuoshi_tree_exit',0), -(12972,45092,'kill_snd_wuoshi_tree_loop',0), -(12973,45093,'kill_sneer',0), -(12974,45094,'kill_sneeze',0), -(12975,45095,'kill_sneeze_smoke',0), -(12976,45096,'kill_snicker',0), -(12977,45097,'kill_sniff',0), -(12978,45098,'kill_snort',0), -(12979,45099,'kill_soaf_burn_sound',0), -(12980,45100,'kill_soaf_castcharge02_sound',0), -(12981,45101,'kill_soaf_castcharge_sound',0), -(12982,45102,'kill_soaf_flamearrow_sound',0), -(12983,45103,'kill_soc_clayskinfall_lp_sound',0), -(12984,45104,'kill_soc_clayskinform_sound',0), -(12985,45105,'kill_sod_flameup_sound',0), -(12986,45106,'kill_sod_whoosh01_sound',0), -(12987,45107,'kill_som_cast_lp_snd',0), -(12988,45108,'kill_sotb_batsqueak2_sound',0), -(12989,45109,'kill_sotb_batsqueak_sound',0), -(12990,45110,'kill_sound_angry',0), -(12991,45111,'kill_sound_angry01',0), -(12992,45112,'kill_sound_angry02',0), -(12993,45113,'kill_sound_anvilhit',0), -(12994,45114,'kill_sound_aoeflame',0), -(12995,45115,'kill_sound_artifact_bury',0), -(12996,45116,'kill_sound_artifact_emerge',0), -(12997,45117,'kill_sound_atkhit',0), -(12998,45118,'kill_sound_atkland',0), -(12999,45119,'kill_sound_atkslide',0), -(13000,45120,'kill_sound_atkvocal',0), -(13001,45121,'kill_sound_attachwhirl',0), -(13002,45122,'kill_sound_attack',0), -(13003,45123,'kill_sound_attack01',0), -(13004,45124,'kill_sound_attack02',0), -(13005,45125,'kill_sound_attack1_vocal',0), -(13006,45126,'kill_sound_attack2_vocal',0), -(13007,45127,'kill_sound_attack2rock',0), -(13008,45128,'kill_sound_attack2slam',0), -(13009,45129,'kill_sound_attack_hit',0), -(13010,45130,'kill_sound_attacka',0), -(13011,45131,'kill_sound_attackarm',0), -(13012,45132,'kill_sound_attackb',0), -(13013,45133,'kill_sound_attackback',0), -(13014,45134,'kill_sound_attackbase',0), -(13015,45135,'kill_sound_attackbend',0), -(13016,45136,'kill_sound_attackbite',0), -(13017,45137,'kill_sound_attackbitein',0), -(13018,45138,'kill_sound_attackbiterip',0), -(13019,45139,'kill_sound_attackblade',0), -(13020,45140,'kill_sound_attackbreath',0), -(13021,45141,'kill_sound_attackbreath01',0), -(13022,45142,'kill_sound_attackbreath02',0), -(13023,45143,'kill_sound_attackbreath02_inhale',0), -(13024,45144,'kill_sound_attackbreath1',0), -(13025,45145,'kill_sound_attackbreath2',0), -(13026,45146,'kill_sound_attackbreath_long',0), -(13027,45147,'kill_sound_attackbreath_short',0), -(13028,45148,'kill_sound_attackbreathe',0), -(13029,45149,'kill_sound_attackbreathefire',0), -(13030,45150,'kill_sound_attackbreathfire',0), -(13031,45151,'kill_sound_attackbreathfire_long',0), -(13032,45152,'kill_sound_attackbreathfire_short',0), -(13033,45153,'kill_sound_attackcast',0), -(13034,45154,'kill_sound_attackchain',0), -(13035,45155,'kill_sound_attackchime',0), -(13036,45156,'kill_sound_attackchomp',0), -(13037,45157,'kill_sound_attackclaw',0), -(13038,45158,'kill_sound_attackclaw_vocal',0), -(13039,45159,'kill_sound_attackcreak',0), -(13040,45160,'kill_sound_attackcrunch01',0), -(13041,45161,'kill_sound_attackcrunch02',0), -(13042,45162,'kill_sound_attacke3_vocal',0), -(13043,45163,'kill_sound_attackfire',0), -(13044,45164,'kill_sound_attackfistwater',0), -(13045,45165,'kill_sound_attackflame',0), -(13046,45166,'kill_sound_attackflap',0), -(13047,45167,'kill_sound_attackflutter',0), -(13048,45168,'kill_sound_attackfoot',0), -(13049,45169,'kill_sound_attackgear',0), -(13050,45170,'kill_sound_attackgrowl',0), -(13051,45171,'kill_sound_attackheadram_swoosh',0), -(13052,45172,'kill_sound_attackhit',0), -(13053,45173,'kill_sound_attackinhale',0), -(13054,45174,'kill_sound_attackjaw',0), -(13055,45175,'kill_sound_attackkick',0), -(13056,45176,'kill_sound_attackleaves',0), -(13057,45177,'kill_sound_attackliddown',0), -(13058,45178,'kill_sound_attacklidup',0), -(13059,45179,'kill_sound_attacklong',0), -(13060,45180,'kill_sound_attackmetal',0), -(13061,45181,'kill_sound_attackpage',0), -(13062,45182,'kill_sound_attackram',0), -(13063,45183,'kill_sound_attackrock',0), -(13064,45184,'kill_sound_attackrockinhale',0), -(13065,45185,'kill_sound_attackrun',0), -(13066,45186,'kill_sound_attacksaw',0), -(13067,45187,'kill_sound_attacksbreathin',0), -(13068,45188,'kill_sound_attackscream',0), -(13069,45189,'kill_sound_attackshort',0), -(13070,45190,'kill_sound_attackslam',0), -(13071,45191,'kill_sound_attacksnap',0), -(13072,45192,'kill_sound_attacksnort',0), -(13073,45193,'kill_sound_attackspecial',0), -(13074,45194,'kill_sound_attacksquish',0), -(13075,45195,'kill_sound_attackstab',0), -(13076,45196,'kill_sound_attacksting',0), -(13077,45197,'kill_sound_attackstomp',0), -(13078,45198,'kill_sound_attackswing',0), -(13079,45199,'kill_sound_attackswoosh',0), -(13080,45200,'kill_sound_attackswordwater01',0), -(13081,45201,'kill_sound_attackswordwater02',0), -(13082,45202,'kill_sound_attacktail',0), -(13083,45203,'kill_sound_attacktailvocal',0), -(13084,45204,'kill_sound_attacktailwhip',0), -(13085,45205,'kill_sound_attacktongue',0), -(13086,45206,'kill_sound_attackvocal',0), -(13087,45207,'kill_sound_attackvocal01',0), -(13088,45208,'kill_sound_attackvocal02',0), -(13089,45209,'kill_sound_attackvocal2',0), -(13090,45210,'kill_sound_attackvocal_long',0), -(13091,45211,'kill_sound_attackwater',0), -(13092,45212,'kill_sound_attackwhip',0), -(13093,45213,'kill_sound_attackwhirl',0), -(13094,45214,'kill_sound_attackwhirlblade',0), -(13095,45215,'kill_sound_attackwhoosh',0), -(13096,45216,'kill_sound_attackwild',0), -(13097,45217,'kill_sound_attackwind',0), -(13098,45218,'kill_sound_attackwindflap',0), -(13099,45219,'kill_sound_attackwindup',0), -(13100,45220,'kill_sound_attackwing',0), -(13101,45221,'kill_sound_attackwing_land',0), -(13102,45222,'kill_sound_attackwingbreath',0), -(13103,45223,'kill_sound_attackwingflap',0), -(13104,45224,'kill_sound_attackyell',0), -(13105,45225,'kill_sound_battlecry',0), -(13106,45226,'kill_sound_battlecry01',0), -(13107,45227,'kill_sound_beg',0), -(13108,45228,'kill_sound_bell',0), -(13109,45229,'kill_sound_bite',0), -(13110,45230,'kill_sound_bite_rip',0), -(13111,45231,'kill_sound_bitetear',0), -(13112,45232,'kill_sound_bitevocal',0), -(13113,45233,'kill_sound_blech',0), -(13114,45234,'kill_sound_blink',0), -(13115,45235,'kill_sound_boggle',0), -(13116,45236,'kill_sound_boltdamage',0), -(13117,45237,'kill_sound_bonehit',0), -(13118,45238,'kill_sound_boom',0), -(13119,45239,'kill_sound_bowpull',0), -(13120,45240,'kill_sound_bowrelease',0), -(13121,45241,'kill_sound_breath',0), -(13122,45242,'kill_sound_breath_a',0), -(13123,45243,'kill_sound_breath_b',0), -(13124,45244,'kill_sound_breathfire',0), -(13125,45245,'kill_sound_breathinhale',0), -(13126,45246,'kill_sound_breathvocal',0), -(13127,45247,'kill_sound_bridge',0), -(13128,45248,'kill_sound_buff',0), -(13129,45249,'kill_sound_buffdefensive',0), -(13130,45250,'kill_sound_buffinhale',0), -(13131,45251,'kill_sound_buffoffensive',0), -(13132,45252,'kill_sound_buffspin001',0), -(13133,45253,'kill_sound_burp',0), -(13134,45254,'kill_sound_casgrowl',0), -(13135,45255,'kill_sound_cast',0), -(13136,45256,'kill_sound_cast_shortbreath_open',0), -(13137,45257,'kill_sound_castend',0), -(13138,45258,'kill_sound_castgears',0), -(13139,45259,'kill_sound_castgrowl',0), -(13140,45260,'kill_sound_casthowl',0), -(13141,45261,'kill_sound_castinhalegears',0), -(13142,45262,'kill_sound_castlong_breath',0), -(13143,45263,'kill_sound_castlong_inhale',0), -(13144,45264,'kill_sound_castlong_open',0), -(13145,45265,'kill_sound_castroar',0), -(13146,45266,'kill_sound_castshort_breath',0), -(13147,45267,'kill_sound_caststart',0), -(13148,45268,'kill_sound_castvocal',0), -(13149,45269,'kill_sound_chesthit',0), -(13150,45270,'kill_sound_chesthitdouble',0), -(13151,45271,'kill_sound_chew',0), -(13152,45272,'kill_sound_clap',0), -(13153,45273,'kill_sound_claw',0), -(13154,45274,'kill_sound_clawhit',0), -(13155,45275,'kill_sound_clawwalk',0), -(13156,45276,'kill_sound_clop',0), -(13157,45277,'kill_sound_clop_left',0), -(13158,45278,'kill_sound_clop_right',0), -(13159,45279,'kill_sound_combatart',0), -(13160,45280,'kill_sound_combatbreath',0), -(13161,45281,'kill_sound_combatbreathe',0), -(13162,45282,'kill_sound_combatchew',0), -(13163,45283,'kill_sound_combatcrunch',0), -(13164,45284,'kill_sound_combatenter',0), -(13165,45285,'kill_sound_combatenter001',0), -(13166,45286,'kill_sound_combatenter002',0), -(13167,45287,'kill_sound_combatentergrowl',0), -(13168,45288,'kill_sound_combatenterrock01',0), -(13169,45289,'kill_sound_combatenterrock02',0), -(13170,45290,'kill_sound_combatenterrock03',0), -(13171,45291,'kill_sound_combatentervocal01',0), -(13172,45292,'kill_sound_combatentervocal02',0), -(13173,45293,'kill_sound_combatenterwing',0), -(13174,45294,'kill_sound_combatenterwingfire',0), -(13175,45295,'kill_sound_combatexit',0), -(13176,45296,'kill_sound_combatflap',0), -(13177,45297,'kill_sound_combatflapup',0), -(13178,45298,'kill_sound_combatgrowl',0), -(13179,45299,'kill_sound_combatidle',0), -(13180,45300,'kill_sound_combatpage',0), -(13181,45301,'kill_sound_combatpaw',0), -(13182,45302,'kill_sound_combatsnort',0), -(13183,45303,'kill_sound_combatwing',0), -(13184,45304,'kill_sound_creak',0), -(13185,45305,'kill_sound_crunch',0), -(13186,45306,'kill_sound_curl',0), -(13187,45307,'kill_sound_cutthroat',0), -(13188,45308,'kill_sound_damage',0), -(13189,45309,'kill_sound_damage02',0), -(13190,45310,'kill_sound_damage03',0), -(13191,45311,'kill_sound_damageblade',0), -(13192,45312,'kill_sound_damagebolts',0), -(13193,45313,'kill_sound_damagebone',0), -(13194,45314,'kill_sound_damagecrunch',0), -(13195,45315,'kill_sound_damageflutter',0), -(13196,45316,'kill_sound_damagehit',0), -(13197,45317,'kill_sound_damagerock',0), -(13198,45318,'kill_sound_damageshell',0), -(13199,45319,'kill_sound_damagetwang',0), -(13200,45320,'kill_sound_damagevocal',0), -(13201,45321,'kill_sound_dead',0), -(13202,45322,'kill_sound_dead01',0), -(13203,45323,'kill_sound_dead02',0), -(13204,45324,'kill_sound_dead03',0), -(13205,45325,'kill_sound_dead_enter',0), -(13206,45326,'kill_sound_deadball',0), -(13207,45327,'kill_sound_deadballfall',0), -(13208,45328,'kill_sound_deadbell',0), -(13209,45329,'kill_sound_deadblade',0), -(13210,45330,'kill_sound_deadboom',0), -(13211,45331,'kill_sound_deadbreathe',0), -(13212,45332,'kill_sound_deadbubble',0), -(13213,45333,'kill_sound_deadbuzz01',0), -(13214,45334,'kill_sound_deadbuzz02',0), -(13215,45335,'kill_sound_deadbuzz03',0), -(13216,45336,'kill_sound_deadbuzz04',0), -(13217,45337,'kill_sound_deadclose',0), -(13218,45338,'kill_sound_deadcreak',0), -(13219,45339,'kill_sound_deadcrunch',0), -(13220,45340,'kill_sound_deadcrunch01',0), -(13221,45341,'kill_sound_deadcrunch02',0), -(13222,45342,'kill_sound_deadcrunch1',0), -(13223,45343,'kill_sound_deadcrunch2',0), -(13224,45344,'kill_sound_deadcry',0), -(13225,45345,'kill_sound_deadcurl',0), -(13226,45346,'kill_sound_deadfall',0), -(13227,45347,'kill_sound_deadfall001',0), -(13228,45348,'kill_sound_deadfall002',0), -(13229,45349,'kill_sound_deadfall01',0), -(13230,45350,'kill_sound_deadfall02',0), -(13231,45351,'kill_sound_deadfall03',0), -(13232,45352,'kill_sound_deadfall1',0), -(13233,45353,'kill_sound_deadfall2',0), -(13234,45354,'kill_sound_deadfire',0), -(13235,45355,'kill_sound_deadflame',0), -(13236,45356,'kill_sound_deadflap',0), -(13237,45357,'kill_sound_deadgear',0), -(13238,45358,'kill_sound_deadglob',0), -(13239,45359,'kill_sound_deadglub',0), -(13240,45360,'kill_sound_deadgroan',0), -(13241,45361,'kill_sound_deadgrowl',0), -(13242,45362,'kill_sound_deadhead',0), -(13243,45363,'kill_sound_deadhit',0), -(13244,45364,'kill_sound_deadhit1',0), -(13245,45365,'kill_sound_deadhit2',0), -(13246,45366,'kill_sound_deadhit3',0), -(13247,45367,'kill_sound_deadknee',0), -(13248,45368,'kill_sound_deadliddown',0), -(13249,45369,'kill_sound_deadlidup',0), -(13250,45370,'kill_sound_deadmist',0), -(13251,45371,'kill_sound_deadmotor',0), -(13252,45372,'kill_sound_deadpage',0), -(13253,45373,'kill_sound_deadprevocal',0), -(13254,45374,'kill_sound_deadrock',0), -(13255,45375,'kill_sound_deadrockfall',0), -(13256,45376,'kill_sound_deadscratch',0), -(13257,45377,'kill_sound_deadscream',0), -(13258,45378,'kill_sound_deadscream01',0), -(13259,45379,'kill_sound_deadscream02',0), -(13260,45380,'kill_sound_deadslam',0), -(13261,45381,'kill_sound_deadslither',0), -(13262,45382,'kill_sound_deadsquish',0), -(13263,45383,'kill_sound_deadsway',0), -(13264,45384,'kill_sound_deadtail',0), -(13265,45385,'kill_sound_deadthrash01',0), -(13266,45386,'kill_sound_deadthrash02',0), -(13267,45387,'kill_sound_deadtongue',0), -(13268,45388,'kill_sound_deadvanish',0), -(13269,45389,'kill_sound_deadvocal',0), -(13270,45390,'kill_sound_deadvocal01',0), -(13271,45391,'kill_sound_deadvocal02',0), -(13272,45392,'kill_sound_deadvocal03',0), -(13273,45393,'kill_sound_deadwarble01',0), -(13274,45394,'kill_sound_deadwarble02',0), -(13275,45395,'kill_sound_deadwater',0), -(13276,45396,'kill_sound_deadwater01',0), -(13277,45397,'kill_sound_deadwater02',0), -(13278,45398,'kill_sound_deadwater03',0), -(13279,45399,'kill_sound_deadwhimper',0), -(13280,45400,'kill_sound_deadwhoosh',0), -(13281,45401,'kill_sound_deadwing',0), -(13282,45402,'kill_sound_deadwingfold',0), -(13283,45403,'kill_sound_deadwoosh',0), -(13284,45404,'kill_sound_death',0), -(13285,45405,'kill_sound_death001',0), -(13286,45406,'kill_sound_death002',0), -(13287,45407,'kill_sound_deathbone',0), -(13288,45408,'kill_sound_deathbreak',0), -(13289,45409,'kill_sound_deathclaw',0), -(13290,45410,'kill_sound_deathcrash',0), -(13291,45411,'kill_sound_deathengine',0), -(13292,45412,'kill_sound_deathfall',0), -(13293,45413,'kill_sound_deathmotor',0), -(13294,45414,'kill_sound_deathshake',0), -(13295,45415,'kill_sound_deathsigh',0), -(13296,45416,'kill_sound_deathtail',0), -(13297,45417,'kill_sound_deathvocal',0), -(13298,45418,'kill_sound_deathwhoosh',0), -(13299,45419,'kill_sound_design_lavabridge',0), -(13300,45420,'kill_sound_die',0), -(13301,45421,'kill_sound_dig001',0), -(13302,45422,'kill_sound_dig002',0), -(13303,45423,'kill_sound_duck',0), -(13304,45424,'kill_sound_eat',0), -(13305,45425,'kill_sound_eating',0), -(13306,45426,'kill_sound_eatslime',0), -(13307,45427,'kill_sound_entercreak',0), -(13308,45428,'kill_sound_enterglide',0), -(13309,45429,'kill_sound_enterleaves',0), -(13310,45430,'kill_sound_entermoan',0), -(13311,45431,'kill_sound_enteropen',0), -(13312,45432,'kill_sound_enterscrape',0), -(13313,45433,'kill_sound_entervocal',0), -(13314,45434,'kill_sound_exhale',0), -(13315,45435,'kill_sound_exitflap',0), -(13316,45436,'kill_sound_exitidle',0), -(13317,45437,'kill_sound_exitjump',0), -(13318,45438,'kill_sound_exitscream',0), -(13319,45439,'kill_sound_explode',0), -(13320,45440,'kill_sound_extinguish',0), -(13321,45441,'kill_sound_fall',0), -(13322,45442,'kill_sound_fall01',0), -(13323,45443,'kill_sound_fall02',0), -(13324,45444,'kill_sound_fallmetal',0), -(13325,45445,'kill_sound_filler',0), -(13326,45446,'kill_sound_fire',0), -(13327,45447,'kill_sound_fireswoosh',0), -(13328,45448,'kill_sound_fishing_cast01',0), -(13329,45449,'kill_sound_fishing_cast02',0), -(13330,45450,'kill_sound_fishing_cast03',0), -(13331,45451,'kill_sound_flame',0), -(13332,45452,'kill_sound_flamethrower',0), -(13333,45453,'kill_sound_flap',0), -(13334,45454,'kill_sound_flapup',0), -(13335,45455,'kill_sound_fleeflutter',0), -(13336,45456,'kill_sound_fluter',0), -(13337,45457,'kill_sound_fly_bite_rip',0), -(13338,45458,'kill_sound_foot',0), -(13339,45459,'kill_sound_footlayerleft',0), -(13340,45460,'kill_sound_footlayerright',0), -(13341,45461,'kill_sound_footstep',0), -(13342,45462,'kill_sound_footstomp',0), -(13343,45463,'kill_sound_foresting',0), -(13344,45464,'kill_sound_fuse',0), -(13345,45465,'kill_sound_gathering',0), -(13346,45466,'kill_sound_getup',0), -(13347,45467,'kill_sound_glide',0), -(13348,45468,'kill_sound_glide02',0), -(13349,45469,'kill_sound_growl',0), -(13350,45470,'kill_sound_gulp01',0), -(13351,45471,'kill_sound_gulp02',0), -(13352,45472,'kill_sound_hammerhit',0), -(13353,45473,'kill_sound_happy',0), -(13354,45474,'kill_sound_head',0), -(13355,45475,'kill_sound_headram_inhale',0), -(13356,45476,'kill_sound_headram_land',0), -(13357,45477,'kill_sound_headram_snort',0), -(13358,45478,'kill_sound_headram_swoosh',0), -(13359,45479,'kill_sound_headspark',0), -(13360,45480,'kill_sound_headturn',0), -(13361,45481,'kill_sound_heartattack',0), -(13362,45482,'kill_sound_hiss',0), -(13363,45483,'kill_sound_hit',0), -(13364,45484,'kill_sound_hoofleft',0), -(13365,45485,'kill_sound_hoofright',0), -(13366,45486,'kill_sound_hungry',0), -(13367,45487,'kill_sound_hungrycreak',0), -(13368,45488,'kill_sound_idle',0), -(13369,45489,'kill_sound_idle01',0), -(13370,45490,'kill_sound_idle02',0), -(13371,45491,'kill_sound_idle03_walk001',0), -(13372,45492,'kill_sound_idle03_walk002',0), -(13373,45493,'kill_sound_idle04',0), -(13374,45494,'kill_sound_idlebreath',0), -(13375,45495,'kill_sound_idlebubble',0), -(13376,45496,'kill_sound_idlechew',0), -(13377,45497,'kill_sound_idlecreak',0), -(13378,45498,'kill_sound_idleflap',0), -(13379,45499,'kill_sound_idleflapup',0), -(13380,45500,'kill_sound_idleglass',0), -(13381,45501,'kill_sound_idlegrowl',0), -(13382,45502,'kill_sound_idlehiss',0), -(13383,45503,'kill_sound_idlelaugh',0), -(13384,45504,'kill_sound_idlemoo',0), -(13385,45505,'kill_sound_idlepant',0), -(13386,45506,'kill_sound_idleroar01',0), -(13387,45507,'kill_sound_idleroar02',0), -(13388,45508,'kill_sound_idlerock',0), -(13389,45509,'kill_sound_idlescuff',0), -(13390,45510,'kill_sound_idleshort',0), -(13391,45511,'kill_sound_idlesniff',0), -(13392,45512,'kill_sound_idlesnort',0), -(13393,45513,'kill_sound_idletail',0), -(13394,45514,'kill_sound_idlevocal',0), -(13395,45515,'kill_sound_idlevocal01',0), -(13396,45516,'kill_sound_idlevocal02',0), -(13397,45517,'kill_sound_idlewater',0), -(13398,45518,'kill_sound_inahle',0), -(13399,45519,'kill_sound_inhale',0), -(13400,45520,'kill_sound_inhale001',0), -(13401,45521,'kill_sound_inhale002',0), -(13402,45522,'kill_sound_jawsnap',0), -(13403,45523,'kill_sound_jump',0), -(13404,45524,'kill_sound_knockback',0), -(13405,45525,'kill_sound_knockdown',0), -(13406,45526,'kill_sound_land',0), -(13407,45527,'kill_sound_land01',0), -(13408,45528,'kill_sound_land02',0), -(13409,45529,'kill_sound_laughlong',0), -(13410,45530,'kill_sound_lense',0), -(13411,45531,'kill_sound_lense3s',0), -(13412,45532,'kill_sound_lickpur01',0), -(13413,45533,'kill_sound_liddown',0), -(13414,45534,'kill_sound_lidup',0), -(13415,45535,'kill_sound_lipsmack',0), -(13416,45536,'kill_sound_mining',0), -(13417,45537,'kill_sound_moon',0), -(13418,45538,'kill_sound_mounthorse_foot',0), -(13419,45539,'kill_sound_mounthorse_land',0), -(13420,45540,'kill_sound_mounthorse_squeak',0), -(13421,45541,'kill_sound_neener',0), -(13422,45542,'kill_sound_offensive',0), -(13423,45543,'kill_sound_offensive001',0), -(13424,45544,'kill_sound_offensiveelec001',0), -(13425,45545,'kill_sound_open',0), -(13426,45546,'kill_sound_ouch',0), -(13427,45547,'kill_sound_ouchbase',0), -(13428,45548,'kill_sound_ouchbell',0), -(13429,45549,'kill_sound_ouchbend',0), -(13430,45550,'kill_sound_ouchbone',0), -(13431,45551,'kill_sound_ouchbubble',0), -(13432,45552,'kill_sound_ouchbuzz',0), -(13433,45553,'kill_sound_ouchchain',0), -(13434,45554,'kill_sound_ouchcreak',0), -(13435,45555,'kill_sound_ouchcrunch',0), -(13436,45556,'kill_sound_ouchfire',0), -(13437,45557,'kill_sound_ouchflame',0), -(13438,45558,'kill_sound_ouchflap',0), -(13439,45559,'kill_sound_ouchflutter',0), -(13440,45560,'kill_sound_ouchhit',0), -(13441,45561,'kill_sound_ouchliddown',0), -(13442,45562,'kill_sound_ouchlidopen',0), -(13443,45563,'kill_sound_ouchlidup',0), -(13444,45564,'kill_sound_ouchlow',0), -(13445,45565,'kill_sound_ouchpage',0), -(13446,45566,'kill_sound_ouchrock',0), -(13447,45567,'kill_sound_ouchrun',0), -(13448,45568,'kill_sound_ouchscream',0), -(13449,45569,'kill_sound_ouchshell',0), -(13450,45570,'kill_sound_ouchslam',0), -(13451,45571,'kill_sound_ouchsnort',0), -(13452,45572,'kill_sound_ouchsquawk',0), -(13453,45573,'kill_sound_ouchtail',0), -(13454,45574,'kill_sound_ouchvocal',0), -(13455,45575,'kill_sound_ouchwarble',0), -(13456,45576,'kill_sound_ouchwater',0), -(13457,45577,'kill_sound_ouchwhoosh',0), -(13458,45578,'kill_sound_ouchwing',0), -(13459,45579,'kill_sound_pain001',0), -(13460,45580,'kill_sound_pain002',0), -(13461,45581,'kill_sound_paw',0), -(13462,45582,'kill_sound_pen01',0), -(13463,45583,'kill_sound_pen02',0), -(13464,45584,'kill_sound_piercer',0), -(13465,45585,'kill_sound_purr',0), -(13466,45586,'kill_sound_purr02',0), -(13467,45587,'kill_sound_purr03',0), -(13468,45588,'kill_sound_raisehand',0), -(13469,45589,'kill_sound_rechargeresult',0), -(13470,45590,'kill_sound_recharging',0), -(13471,45591,'kill_sound_roar',0), -(13472,45592,'kill_sound_rockroll',0), -(13473,45593,'kill_sound_rofl',0), -(13474,45594,'kill_sound_rude',0), -(13475,45595,'kill_sound_run',0), -(13476,45596,'kill_sound_runcreak',0), -(13477,45597,'kill_sound_runflap',0), -(13478,45598,'kill_sound_runflap01',0), -(13479,45599,'kill_sound_runflap02',0), -(13480,45600,'kill_sound_runflapsmall',0), -(13481,45601,'kill_sound_runhit',0), -(13482,45602,'kill_sound_runland',0), -(13483,45603,'kill_sound_runleft',0), -(13484,45604,'kill_sound_runright',0), -(13485,45605,'kill_sound_runwing',0), -(13486,45606,'kill_sound_sad01',0), -(13487,45607,'kill_sound_sad02',0), -(13488,45608,'kill_sound_saw001',0), -(13489,45609,'kill_sound_saw002',0), -(13490,45610,'kill_sound_scratch',0), -(13491,45611,'kill_sound_scream',0), -(13492,45612,'kill_sound_scream01',0), -(13493,45613,'kill_sound_scream02',0), -(13494,45614,'kill_sound_shake',0), -(13495,45615,'kill_sound_sheathe',0), -(13496,45616,'kill_sound_sit',0), -(13497,45617,'kill_sound_sitenter',0), -(13498,45618,'kill_sound_sitexit',0), -(13499,45619,'kill_sound_sitidle',0), -(13500,45620,'kill_sound_sleep',0), -(13501,45621,'kill_sound_sleep001',0), -(13502,45622,'kill_sound_sleep002',0), -(13503,45623,'kill_sound_slither',0), -(13504,45624,'kill_sound_snap',0), -(13505,45625,'kill_sound_snarl',0), -(13506,45626,'kill_sound_sneer',0), -(13507,45627,'kill_sound_sneeze',0), -(13508,45628,'kill_sound_sneezeinhale',0), -(13509,45629,'kill_sound_snort',0), -(13510,45630,'kill_sound_spellvocal',0), -(13511,45631,'kill_sound_splash',0), -(13512,45632,'kill_sound_stand',0), -(13513,45633,'kill_sound_step',0), -(13514,45634,'kill_sound_stomp',0), -(13515,45635,'kill_sound_stompgrowl',0), -(13516,45636,'kill_sound_stompvocal',0), -(13517,45637,'kill_sound_stunfall',0), -(13518,45638,'kill_sound_stunned',0), -(13519,45639,'kill_sound_stunnedfall',0), -(13520,45640,'kill_sound_stunnedreturn',0), -(13521,45641,'kill_sound_stunnedwhirl',0), -(13522,45642,'kill_sound_stunshake',0), -(13523,45643,'kill_sound_stunsnort',0), -(13524,45644,'kill_sound_stunspin',0), -(13525,45645,'kill_sound_summon',0), -(13526,45646,'kill_sound_summonhit',0), -(13527,45647,'kill_sound_summonrock',0), -(13528,45648,'kill_sound_summonrock01',0), -(13529,45649,'kill_sound_summonrock02',0), -(13530,45650,'kill_sound_summonrockback',0), -(13531,45651,'kill_sound_summonslide',0), -(13532,45652,'kill_sound_summonstart',0), -(13533,45653,'kill_sound_summonvocal',0), -(13534,45654,'kill_sound_superbuff',0), -(13535,45655,'kill_sound_swim',0), -(13536,45656,'kill_sound_swimfast',0), -(13537,45657,'kill_sound_swoosh',0), -(13538,45658,'kill_sound_swooshkick',0), -(13539,45659,'kill_sound_swooshleft',0), -(13540,45660,'kill_sound_swooshright',0), -(13541,45661,'kill_sound_swooshtail',0), -(13542,45662,'kill_sound_taillash001',0), -(13543,45663,'kill_sound_taillash002',0), -(13544,45664,'kill_sound_tailswoosh',0), -(13545,45665,'kill_sound_tailvocal',0), -(13546,45666,'kill_sound_tailwhip',0), -(13547,45667,'kill_sound_taunt01',0), -(13548,45668,'kill_sound_taunt02',0), -(13549,45669,'kill_sound_taunt03',0), -(13550,45670,'kill_sound_thunder',0), -(13551,45671,'kill_sound_trick',0), -(13552,45672,'kill_sound_uncoil',0), -(13553,45673,'kill_sound_unsheathe',0), -(13554,45674,'kill_sound_vocalattack',0), -(13555,45675,'kill_sound_vocalbite',0), -(13556,45676,'kill_sound_vocalbuffet',0), -(13557,45677,'kill_sound_vocaldamage',0), -(13558,45678,'kill_sound_vocaldead',0), -(13559,45679,'kill_sound_vocaldeath',0), -(13560,45680,'kill_sound_vocalouch',0), -(13561,45681,'kill_sound_walk',0), -(13562,45682,'kill_sound_walk001',0), -(13563,45683,'kill_sound_walk002',0), -(13564,45684,'kill_sound_walk01',0), -(13565,45685,'kill_sound_walk02',0), -(13566,45686,'kill_sound_walk1',0), -(13567,45687,'kill_sound_walkbubble',0), -(13568,45688,'kill_sound_walkclaw',0), -(13569,45689,'kill_sound_walkflap',0), -(13570,45690,'kill_sound_walkflap01',0), -(13571,45691,'kill_sound_walkleft',0), -(13572,45692,'kill_sound_walkpiercer',0), -(13573,45693,'kill_sound_walkright',0), -(13574,45694,'kill_sound_walkrock',0), -(13575,45695,'kill_sound_walkservo',0), -(13576,45696,'kill_sound_walkservoleft',0), -(13577,45697,'kill_sound_walkservoright',0), -(13578,45698,'kill_sound_water',0), -(13579,45699,'kill_sound_waterstep',0), -(13580,45700,'kill_sound_whirl',0), -(13581,45701,'kill_sound_whirlmotor',0), -(13582,45702,'kill_sound_whirlwhoosh',0), -(13583,45703,'kill_sound_wildspring',0), -(13584,45704,'kill_sound_wildswing',0), -(13585,45705,'kill_sound_wildswinghit001',0), -(13586,45706,'kill_sound_wildswinghit002',0), -(13587,45707,'kill_sound_wing',0), -(13588,45708,'kill_sound_wingbuffet',0), -(13589,45709,'kill_sound_wingflap',0), -(13590,45710,'kill_sound_wingfold',0), -(13591,45711,'kill_sound_wingmove',0), -(13592,45712,'kill_sound_wingopen',0), -(13593,45713,'kill_sound_wings',0), -(13594,45714,'kill_sound_wingwind',0), -(13595,45715,'kill_sound_yawn001',0), -(13596,45716,'kill_sound_zap',0), -(13597,45717,'kill_spark_circle01',0), -(13598,45718,'kill_spark_circle02',0), -(13599,45719,'kill_spark_circle03',0), -(13600,45720,'kill_spark_circle04',0), -(13601,45721,'kill_spark_circle05',0), -(13602,45722,'kill_spark_sphere01',0), -(13603,45723,'kill_spark_sphere_ws',0), -(13604,45724,'kill_spark_sphere_ws_lefthand',0), -(13605,45725,'kill_sparkle01',0), -(13606,45726,'kill_sparkle02',0), -(13607,45727,'kill_sparkle03',0), -(13608,45728,'kill_sparkle_trail',0), -(13609,45729,'kill_sparks',0), -(13610,45730,'kill_sparks_lf',0), -(13611,45731,'kill_sparks_lr',0), -(13612,45732,'kill_sparks_rf',0), -(13613,45733,'kill_sparks_rr',0), -(13614,45734,'kill_speaknoevil',0), -(13615,45735,'kill_spellcast01',0), -(13616,45736,'kill_spellcast02',0), -(13617,45737,'kill_spider_webbshoot_snd',0), -(13618,45738,'kill_spider_webcover_snd',0), -(13619,45739,'kill_spinningwheel01',0), -(13620,45740,'kill_spinningwheel02',0), -(13621,45741,'kill_spinningwheel04',0), -(13622,45742,'kill_spinningwheel_success',0), -(13623,45743,'kill_spinningwheel_success02',0), -(13624,45744,'kill_spinningwheel_success03',0), -(13625,45745,'kill_spiritascend_snd',0), -(13626,45746,'kill_square',0), -(13627,45747,'kill_squeal',0), -(13628,45748,'kill_ss_singing_lp_snd',0), -(13629,45749,'kill_st_casttap_snd',0), -(13630,45750,'kill_st_tappestry_snd',0), -(13631,45751,'kill_stare',0), -(13632,45752,'kill_start',0), -(13633,45753,'kill_start_drone_sound',0), -(13634,45754,'kill_startburst_sound_01',0), -(13635,45755,'kill_steam01',0), -(13636,45756,'kill_steam_forearm_l',0), -(13637,45757,'kill_steam_forearm_r',0), -(13638,45758,'kill_steam_hip_l',0), -(13639,45759,'kill_steam_hip_l_death',0), -(13640,45760,'kill_steam_hip_r',0), -(13641,45761,'kill_steam_hip_r_death',0), -(13642,45762,'kill_steam_upperarm_l',0), -(13643,45763,'kill_steam_upperarm_r',0), -(13644,45764,'kill_stifle_cast_arm_snd',0), -(13645,45765,'kill_stifle_cast_lp_snd',0), -(13646,45766,'kill_stifle_result_snd',0), -(13647,45767,'kill_still',0), -(13648,45768,'kill_stinky',0), -(13649,45769,'kill_stove_boilover01',0), -(13650,45770,'kill_stove_boilover02',0), -(13651,45771,'kill_stove_boilover03',0), -(13652,45772,'kill_strafe_left',0), -(13653,45773,'kill_strafe_left_run',0), -(13654,45774,'kill_strafe_right',0), -(13655,45775,'kill_strafe_right_run',0), -(13656,45776,'kill_stretch',0), -(13657,45777,'kill_string_knotted',0), -(13658,45778,'kill_success01',0), -(13659,45779,'kill_success02',0), -(13660,45780,'kill_success_flash01',0), -(13661,45781,'kill_success_flash02',0), -(13662,45782,'kill_success_flash03',0), -(13663,45783,'kill_sulk',0), -(13664,45784,'kill_summon',0), -(13665,45785,'kill_summon_idle',0), -(13666,45786,'kill_super_buff',0), -(13667,45787,'kill_swear',0), -(13668,45788,'kill_sweep01',0), -(13669,45789,'kill_swim_attack',0), -(13670,45790,'kill_swim_backup',0), -(13671,45791,'kill_swim_foward',0), -(13672,45792,'kill_swim_idle',0), -(13673,45793,'kill_swim_ouch',0), -(13674,45794,'kill_swim_run',0), -(13675,45795,'kill_swim_tail',0), -(13676,45796,'kill_swim_tail_cloak',0), -(13677,45797,'kill_swim_walk',0), -(13678,45798,'kill_swoosh',0), -(13679,45799,'kill_swoosh_light_low',0), -(13680,45800,'kill_swoosh_medium',0), -(13681,45801,'kill_swwosh',0), -(13682,45802,'kill_ta_cast_snd',0), -(13683,45803,'kill_tail',0), -(13684,45804,'kill_tail_cloak',0), -(13685,45805,'kill_tail_dust',0), -(13686,45806,'kill_tailoring_failure',0), -(13687,45807,'kill_tailoring_idle',0), -(13688,45808,'kill_tailoring_success',0), -(13689,45809,'kill_talk_idle',0), -(13690,45810,'kill_talk_idle01',0), -(13691,45811,'kill_talk_idle02',0), -(13692,45812,'kill_talk_idle03',0), -(13693,45813,'kill_talk_idle04',0), -(13694,45814,'kill_talk_idle05',0), -(13695,45815,'kill_talk_idle06',0), -(13696,45816,'kill_talk_idle07',0), -(13697,45817,'kill_talk_idle08',0), -(13698,45818,'kill_talk_idle09',0), -(13699,45819,'kill_talk_idle10',0), -(13700,45820,'kill_talk_idle11',0), -(13701,45821,'kill_talk_idle12',0), -(13702,45822,'kill_tantrum',0), -(13703,45823,'kill_tantrum_short',0), -(13704,45824,'kill_tapfoot',0), -(13705,45825,'kill_taunt',0), -(13706,45826,'kill_taunt_combat_art',0), -(13707,45827,'kill_tc_teleport_snd',0), -(13708,45828,'kill_thaiko_sound',0), -(13709,45829,'kill_thanks',0), -(13710,45830,'kill_thirsty',0), -(13711,45831,'kill_threaten',0), -(13712,45832,'kill_thumbsup',0), -(13713,45833,'kill_thunder_clap',0), -(13714,45834,'kill_tiger_idle',0), -(13715,45835,'kill_tiger_run',0), -(13716,45836,'kill_tiger_walk',0), -(13717,45837,'kill_tod_explode_snd',0), -(13718,45838,'kill_tod_voltz_snd',0), -(13719,45839,'kill_tr_spawn_snd',0), -(13720,45840,'kill_tradeart_beaker01',0), -(13721,45841,'kill_tradeart_butcherknife01',0), -(13722,45842,'kill_tradeart_celticknot01',0), -(13723,45843,'kill_tradeart_flask01',0), -(13724,45844,'kill_tradeart_forge_hammer01',0), -(13725,45845,'kill_tradeart_forge_hammer02',0), -(13726,45846,'kill_tradeart_forge_helmet01',0), -(13727,45847,'kill_tradeart_fork01',0), -(13728,45848,'kill_tradeart_kitchenknife01',0), -(13729,45849,'kill_tradeart_log_cut',0), -(13730,45850,'kill_tradeart_metal_bar',0), -(13731,45851,'kill_tradeart_metal_rod01',0), -(13732,45852,'kill_tradeart_metal_sparkling2',0), -(13733,45853,'kill_tradeart_molecule01',0), -(13734,45854,'kill_tradeart_needle_left01',0), -(13735,45855,'kill_tradeart_needle_right01',0), -(13736,45856,'kill_tradeart_planer',0), -(13737,45857,'kill_tradeart_rune_01',0), -(13738,45858,'kill_tradeart_rune_02',0), -(13739,45859,'kill_tradeart_rune_03',0), -(13740,45860,'kill_tradeart_rune_04',0), -(13741,45861,'kill_tradeart_rune_05',0), -(13742,45862,'kill_tradeart_rune_06',0), -(13743,45863,'kill_tradeart_rune_07',0), -(13744,45864,'kill_tradeart_rune_08',0), -(13745,45865,'kill_tradeart_saw',0), -(13746,45866,'kill_tradeart_spoon01',0), -(13747,45867,'kill_trail_pike',0), -(13748,45868,'kill_transit',0), -(13749,45869,'kill_trdskl_beaker',0), -(13750,45870,'kill_trdskl_cloth',0), -(13751,45871,'kill_trdskl_feather',0), -(13752,45872,'kill_trdskl_fishingpole',0), -(13753,45873,'kill_trdskl_gem',0), -(13754,45874,'kill_trdskl_hammer',0), -(13755,45875,'kill_trdskl_hatchet',0), -(13756,45876,'kill_trdskl_hatchet_l',0), -(13757,45877,'kill_trdskl_leather',0), -(13758,45878,'kill_trdskl_magnifying',0), -(13759,45879,'kill_trdskl_mug',0), -(13760,45880,'kill_trdskl_needle',0), -(13761,45881,'kill_trdskl_pick',0), -(13762,45882,'kill_trdskl_pot',0), -(13763,45883,'kill_trdskl_saw',0), -(13764,45884,'kill_trdskl_scroll',0), -(13765,45885,'kill_trdskl_spoon',0), -(13766,45886,'kill_trdskl_testtube',0), -(13767,45887,'kill_trdskl_tongs',0), -(13768,45888,'kill_trdskl_vial',0), -(13769,45889,'kill_trdskl_wood',0), -(13770,45890,'kill_trem_boulder_snd',0), -(13771,45891,'kill_trem_cast_lp_snd',0), -(13772,45892,'kill_trem_open_snd',0), -(13773,45893,'kill_trem_rings_snd',0), -(13774,45894,'kill_trem_ringsh_snd',0), -(13775,45895,'kill_trem_rocks_lp_01_snd',0), -(13776,45896,'kill_trick',0), -(13777,45897,'kill_trt_treat_toxin_sound',0), -(13778,45898,'kill_turn_left',0), -(13779,45899,'kill_turn_right',0), -(13780,45900,'kill_turn_to_wood',0), -(13781,45901,'kill_u',0), -(13782,45902,'kill_unsummon',0), -(13783,45903,'kill_untrained_attack',0), -(13784,45904,'kill_untrained_backup',0), -(13785,45905,'kill_untrained_dodge',0), -(13786,45906,'kill_untrained_dodge01',0), -(13787,45907,'kill_untrained_dodge02',0), -(13788,45908,'kill_untrained_ouch',0), -(13789,45909,'kill_untrained_ouch01',0), -(13790,45910,'kill_untrained_parry',0), -(13791,45911,'kill_untrained_recoil',0), -(13792,45912,'kill_untrained_strafe_left',0), -(13793,45913,'kill_untrained_strafe_right',0), -(13794,45914,'kill_untrained_walk',0), -(13795,45915,'kill_util_rings_snd',0), -(13796,45916,'kill_vamp_batattack_sound',0), -(13797,45917,'kill_vamp_batflaps_sound',0), -(13798,45918,'kill_vamp_batsqueak_sound',0), -(13799,45919,'kill_ven_bkgrnd_slime_sound',0), -(13800,45920,'kill_ven_breath_01',0), -(13801,45921,'kill_ven_breath_02',0), -(13802,45922,'kill_ven_explode_sound',0), -(13803,45923,'kill_ven_fire_01',0), -(13804,45924,'kill_ven_fire_02',0), -(13805,45925,'kill_ven_pulse_sound',0), -(13806,45926,'kill_ven_rumble_01',0), -(13807,45927,'kill_ven_rumble_02',0), -(13808,45928,'kill_ven_slime_01',0), -(13809,45929,'kill_ven_slime_02',0), -(13810,45930,'kill_verdict_cast_snd',0), -(13811,45931,'kill_verdict_gavel_snd',0), -(13812,45932,'kill_vg_healing_snd',0), -(13813,45933,'kill_vg_leaves_snd',0), -(13814,45934,'kill_vg_leaveslp_snd',0), -(13815,45935,'kill_violin',0), -(13816,45936,'kill_viseme_a',0), -(13817,45937,'kill_viseme_aa',0), -(13818,45938,'kill_viseme_ae',0), -(13819,45939,'kill_viseme_ah',0), -(13820,45940,'kill_viseme_ao',0), -(13821,45941,'kill_viseme_aw',0), -(13822,45942,'kill_viseme_ay',0), -(13823,45943,'kill_viseme_b',0), -(13824,45944,'kill_viseme_c',0), -(13825,45945,'kill_viseme_ch',0), -(13826,45946,'kill_viseme_d',0), -(13827,45947,'kill_viseme_dh',0), -(13828,45948,'kill_viseme_e',0), -(13829,45949,'kill_viseme_eh',0), -(13830,45950,'kill_viseme_er',0), -(13831,45951,'kill_viseme_ey',0), -(13832,45952,'kill_viseme_f',0), -(13833,45953,'kill_viseme_g',0), -(13834,45954,'kill_viseme_h',0), -(13835,45955,'kill_viseme_ih',0), -(13836,45956,'kill_viseme_iy',0), -(13837,45957,'kill_viseme_j',0), -(13838,45958,'kill_viseme_k',0), -(13839,45959,'kill_viseme_l',0), -(13840,45960,'kill_viseme_m',0), -(13841,45961,'kill_viseme_n',0), -(13842,45962,'kill_viseme_ng',0), -(13843,45963,'kill_viseme_o',0), -(13844,45964,'kill_viseme_ow',0), -(13845,45965,'kill_viseme_oy',0), -(13846,45966,'kill_viseme_p',0), -(13847,45967,'kill_viseme_r',0), -(13848,45968,'kill_viseme_reast',0), -(13849,45969,'kill_viseme_rest',0), -(13850,45970,'kill_viseme_s',0), -(13851,45971,'kill_viseme_sh',0), -(13852,45972,'kill_viseme_t',0), -(13853,45973,'kill_viseme_th',0), -(13854,45974,'kill_viseme_u',0), -(13855,45975,'kill_viseme_uh',0), -(13856,45976,'kill_viseme_uw',0), -(13857,45977,'kill_viseme_v',0), -(13858,45978,'kill_viseme_w',0), -(13859,45979,'kill_viseme_x',0), -(13860,45980,'kill_viseme_y',0), -(13861,45981,'kill_viseme_z',0), -(13862,45982,'kill_viseme_zh',0), -(13863,45983,'kill_visemes_a',0), -(13864,45984,'kill_visemes_c',0), -(13865,45985,'kill_visemes_e',0), -(13866,45986,'kill_visemes_f',0), -(13867,45987,'kill_visemes_l',0), -(13868,45988,'kill_visemes_m',0), -(13869,45989,'kill_visemes_o',0), -(13870,45990,'kill_visemes_rest',0), -(13871,45991,'kill_visemes_u',0), -(13872,45992,'kill_visemes_w',0), -(13873,45993,'kill_vision_1',0), -(13874,45994,'kill_vision_2',0), -(13875,45995,'kill_vision_3',0), -(13876,45996,'kill_vision_4',0), -(13877,45997,'kill_vo_callout_afk',0), -(13878,45998,'kill_vo_callout_agree',0), -(13879,45999,'kill_vo_callout_apologies',0), -(13880,46000,'kill_vo_callout_assist',0), -(13881,46001,'kill_vo_callout_battle',0), -(13882,46002,'kill_vo_callout_cheer',0), -(13883,46003,'kill_vo_callout_confused',0), -(13884,46004,'kill_vo_callout_disagree',0), -(13885,46005,'kill_vo_callout_doh',0), -(13886,46006,'kill_vo_callout_flirt',0), -(13887,46007,'kill_vo_callout_follow',0), -(13888,46008,'kill_vo_callout_goodbye',0), -(13889,46009,'kill_vo_callout_got',0), -(13890,46010,'kill_vo_callout_greetings',0), -(13891,46011,'kill_vo_callout_growl',0), -(13892,46012,'kill_vo_callout_heal',0), -(13893,46013,'kill_vo_callout_help',0), -(13894,46014,'kill_vo_callout_helping',0), -(13895,46015,'kill_vo_callout_hungry',0), -(13896,46016,'kill_vo_callout_incoming',0), -(13897,46017,'kill_vo_callout_laugh',0), -(13898,46018,'kill_vo_callout_look',0), -(13899,46019,'kill_vo_callout_looking',0), -(13900,46020,'kill_vo_callout_out',0), -(13901,46021,'kill_vo_callout_run',0), -(13902,46022,'kill_vo_callout_starting',0), -(13903,46023,'kill_vo_callout_stay',0), -(13904,46024,'kill_vo_callout_taunting',0), -(13905,46025,'kill_vo_callout_thank',0), -(13906,46026,'kill_vo_callout_thirsty',0), -(13907,46027,'kill_vo_callout_threaten',0), -(13908,46028,'kill_vo_callout_train',0), -(13909,46029,'kill_vo_callout_under',0), -(13910,46030,'kill_vo_callout_vocal_attack',0), -(13911,46031,'kill_vo_callout_vocal_death',0), -(13912,46032,'kill_vo_callout_vocal_drown',0), -(13913,46033,'kill_vo_callout_vocal_jump',0), -(13914,46034,'kill_vo_callout_vocal_land',0), -(13915,46035,'kill_vo_callout_vocal_ouch',0), -(13916,46036,'kill_vo_callout_watch',0), -(13917,46037,'kill_vo_callout_yawn',0), -(13918,46038,'kill_vo_callout_yell',0), -(13919,46039,'kill_vocal_attack',0), -(13920,46040,'kill_vocal_attacklong',0), -(13921,46041,'kill_vocal_death',0), -(13922,46042,'kill_vocal_drown',0), -(13923,46043,'kill_vocal_jump',0), -(13924,46044,'kill_vocal_ouch',0), -(13925,46045,'kill_voidbeast_attack_snd',0), -(13926,46046,'kill_voidbeast_result_snd',0), -(13927,46047,'kill_vr2_burst_snd',0), -(13928,46048,'kill_vr2_flames_snd',0), -(13929,46049,'kill_w',0), -(13930,46050,'kill_wa_voltsword_sound',0), -(13931,46051,'kill_wa_voltswordstart_sound',0), -(13932,46052,'kill_walk',0), -(13933,46054,'kill_walk_shake',0), -(13934,46055,'kill_wave',0), -(13935,46056,'kill_welder_lefthand',0), -(13936,46057,'kill_welder_righthand',0), -(13937,46058,'kill_wheel',0), -(13938,46059,'kill_wheel1',0), -(13939,46060,'kill_wheel_smoke',0), -(13940,46061,'kill_whirling_attack',0), -(13941,46062,'kill_whistle',0), -(13942,46063,'kill_whome',0), -(13943,46064,'kill_wild_swing',0), -(13944,46065,'kill_wild_swing_recoilmax',0), -(13945,46066,'kill_wildswing',0), -(13946,46067,'kill_wince',0), -(13947,46068,'kill_wing_glide',0), -(13948,46069,'kill_wingflap',0), -(13949,46070,'kill_wings_01',0), -(13950,46071,'kill_wings_sound_01',0), -(13951,46072,'kill_wink',0), -(13952,46073,'kill_wkn_glowsplash_snd',0), -(13953,46074,'kill_wod_timer_tone_snd',0), -(13954,46075,'kill_woodworking_failure',0), -(13955,46076,'kill_woodworking_idle',0), -(13956,46077,'kill_woodworking_success',0), -(13957,46078,'kill_woowoo',0), -(13958,46079,'kill_wr_energy_glow_sound',0), -(13959,46080,'kill_wr_energy_glowout_sound',0), -(13960,46081,'kill_wr_glimmer_sound',0), -(13961,46082,'kill_wr_watershield_sound',0), -(13962,46083,'kill_ws_resounding_snd',0), -(13963,46084,'kill_ws_singout_snd',0), -(13964,46085,'kill_yeah',0), -(13965,46086,'kill_yell',0), -(13966,46087,'kill_zap',0), -(13967,46090,'kill_airborne',0), -(13968,46097,'kill_froglok_forestry_chopping',0), -(13969,46099,'kill_ogre_forestry_success',0), -(13970,46100,'kill_ogre_gathering_search',0), -(13971,46101,'kill_ogre_gathering_success',0), -(13972,46102,'kill_ogre_mining_success',0), -(13973,46226,'kill_attack_boss01',0), -(13974,46227,'kill_attack_boss02',0), -(13975,46228,'kill_buff_boss01',0), -(13976,46235,'kill_heal_boss01',0), -(13977,46237,'kill_result_fruitcake_explosion',0), -(13978,46238,'kill_result_snowball_big_explosion',0), -(13979,46310,'kill_sound_groundhit',0), -(13980,46369,'kill_froglok_1h_sword_attack_recoil',0), -(13981,46370,'kill_froglok_1h_sword_attack_recoil01',0), -(13982,46371,'kill_froglok_1h_sword_attack_recoil02',0), -(13983,46372,'kill_froglok_1h_sword_attack_recoil03',0), -(13984,46373,'kill_froglok_1h_thrown_attack',0), -(13985,46374,'kill_froglok_2h_sword_attack_recoil',0), -(13986,46375,'kill_froglok_2h_sword_attack_recoil01',0), -(13987,46376,'kill_froglok_2h_sword_attack_recoil02',0), -(13988,46377,'kill_froglok_2h_sword_backup',0), -(13989,46378,'kill_froglok_2h_sword_defensive_buff',0), -(13990,46379,'kill_froglok_2h_sword_enter',0), -(13991,46380,'kill_froglok_2h_sword_offensive_buff',0), -(13992,46381,'kill_froglok_2h_sword_ouch_backhand',0), -(13993,46382,'kill_froglok_2h_sword_ouch_down',0), -(13994,46383,'kill_froglok_2h_sword_ouch_forehand',0), -(13995,46384,'kill_froglok_2h_sword_ouch_thrust',0), -(13996,46385,'kill_froglok_2h_sword_parry_backhand',0), -(13997,46386,'kill_froglok_2h_sword_parry_down',0), -(13998,46387,'kill_froglok_2h_sword_parry_forehand',0), -(13999,46388,'kill_froglok_2h_sword_super_buff',0), -(14000,46389,'kill_froglok_2h_sword_walk',0), -(14001,46390,'kill_froglok_bostaff_attack_recoil',0), -(14002,46391,'kill_froglok_bostaff_attack_recoil01',0), -(14003,46392,'kill_froglok_bostaff_attack_recoil02',0), -(14004,46393,'kill_froglok_bostaff_attack_recoil03',0), -(14005,46394,'kill_froglok_bostaff_defensive_buff',0), -(14006,46395,'kill_froglok_bostaff_dodge_backhand',0), -(14007,46396,'kill_froglok_bostaff_dodge_down',0), -(14008,46397,'kill_froglok_bostaff_dodge_forehand',0), -(14009,46398,'kill_froglok_bostaff_dodge_thrust',0), -(14010,46399,'kill_froglok_bostaff_offensive_buff',0), -(14011,46400,'kill_froglok_bostaff_ouch_backhand',0), -(14012,46401,'kill_froglok_bostaff_ouch_down',0), -(14013,46402,'kill_froglok_bostaff_ouch_forehand',0), -(14014,46403,'kill_froglok_bostaff_ouch_thrust',0), -(14015,46404,'kill_froglok_bostaff_parry_backhand',0), -(14016,46405,'kill_froglok_bostaff_parry_down',0), -(14017,46406,'kill_froglok_bostaff_parry_forehand',0), -(14018,46407,'kill_froglok_bostaff_parry_thrust',0), -(14019,46408,'kill_froglok_bostaff_super_buff',0), -(14020,46409,'kill_froglok_dual_wield_attack_recoil',0), -(14021,46410,'kill_froglok_dual_wield_attack_recoil01',0), -(14022,46411,'kill_froglok_dual_wield_attack_recoil02',0), -(14023,46412,'kill_froglok_dual_wield_attack_recoil03',0), -(14024,46413,'kill_froglok_dual_wield_parry_backhand',0), -(14025,46414,'kill_froglok_dual_wield_parry_down',0), -(14026,46415,'kill_froglok_dual_wield_parry_forehand',0), -(14027,46416,'kill_froglok_dual_wield_parry_thrust',0), -(14028,46417,'kill_froglok_monk_attack_recoil',0), -(14029,46418,'kill_froglok_monk_attack_recoil02',0), -(14030,46419,'kill_froglok_monk_charge_up',0), -(14031,46420,'kill_froglok_monk_defensive_buff',0), -(14032,46421,'kill_froglok_monk_dodge_backhand',0), -(14033,46422,'kill_froglok_monk_dodge_down',0), -(14034,46423,'kill_froglok_monk_dodge_forehand',0), -(14035,46424,'kill_froglok_monk_dodge_thrust',0), -(14036,46425,'kill_froglok_monk_kick_flying',0), -(14037,46426,'kill_froglok_monk_offensive_buff',0), -(14038,46427,'kill_froglok_monk_ouch_down',0), -(14039,46428,'kill_froglok_monk_ouch_thrust',0), -(14040,46429,'kill_froglok_monk_parry_backhand',0), -(14041,46430,'kill_froglok_monk_parry_down',0), -(14042,46431,'kill_froglok_monk_parry_forehand',0), -(14043,46432,'kill_froglok_monk_parry_thrust',0), -(14044,46433,'kill_froglok_monk_super_buff',0), -(14045,46434,'kill_froglok_monk_taunt_combat_art',0), -(14046,46435,'kill_froglok_pike_attack_recoil',0), -(14047,46436,'kill_froglok_pike_attack_recoil01',0), -(14048,46437,'kill_froglok_pike_attack_recoil02',0), -(14049,46438,'kill_froglok_pike_charge_up',0), -(14050,46439,'kill_froglok_pike_dodge_backhand',0), -(14051,46440,'kill_froglok_pike_dodge_down',0), -(14052,46441,'kill_froglok_pike_dodge_forehand',0), -(14053,46442,'kill_froglok_pike_dodge_thrust',0), -(14054,46443,'kill_froglok_pike_offensive_buff',0), -(14055,46444,'kill_froglok_pike_ouch_backhand',0), -(14056,46445,'kill_froglok_pike_ouch_down',0), -(14057,46446,'kill_froglok_pike_ouch_forehand',0), -(14058,46447,'kill_froglok_pike_ouch_thrust',0), -(14059,46448,'kill_froglok_pike_parry_backhand',0), -(14060,46449,'kill_froglok_pike_parry_down',0), -(14061,46450,'kill_froglok_pike_parry_forehand',0), -(14062,46451,'kill_froglok_pike_parry_thrust',0), -(14063,46452,'kill_froglok_pugilist_attack_recoil02',0), -(14064,46453,'kill_froglok_pugilist_defensive_buff',0), -(14065,46454,'kill_froglok_pugilist_dodge_backhand',0), -(14066,46455,'kill_froglok_pugilist_dodge_down',0), -(14067,46456,'kill_froglok_pugilist_dodge_forehand',0), -(14068,46457,'kill_froglok_pugilist_dodge_thrust',0), -(14069,46458,'kill_froglok_pugilist_offensive_buff',0), -(14070,46459,'kill_froglok_pugilist_ouch_backhand',0), -(14071,46460,'kill_froglok_pugilist_ouch_down',0), -(14072,46461,'kill_froglok_pugilist_ouch_forehand',0), -(14073,46462,'kill_froglok_pugilist_super_buff',0), -(14074,46473,'kill_froglok_bostaff_charge_up',0), -(14075,46474,'kill_froglok_dual_wield_knockdowntoknees',0), -(14076,46475,'kill_froglok_dual_wield_offensive_buff',0), -(14077,46476,'kill_froglok_dual_wield_super_buff',0), -(14078,46477,'kill_froglok_knockdown_attack',0), -(14079,46478,'kill_froglok_knockdowntoknees',0), -(14080,46479,'kill_froglok_offensive_buff',0), -(14081,46480,'kill_froglok_pike_backup',0), -(14082,46481,'kill_froglok_pike_knockdowntoknees',0), -(14083,46482,'kill_froglok_pike_walk',0), -(14084,46483,'kill_froglok_pugilist_attack01',0), -(14085,46484,'kill_froglok_pugilist_attack_recoil01',0), -(14086,46485,'kill_froglok_pugilist_knockdowntoknees',0), -(14087,46486,'kill_froglok_super_buff',0), -(14088,46488,'kill_lights',0), -(14089,46489,'kill_lights_spiral',0), -(14090,46499,'kill_fae_light_dance',0), -(14091,46500,'kill_horse_long_fall',0), -(14092,46503,'kill_trdskl_fruitcake',0), -(14093,46512,'kill_fire01_big',0), -(14094,46513,'kill_fire01_small',0), -(14095,46515,'kill_lights_blue',0), -(14096,46516,'kill_lights_blue_slow',0), -(14097,46517,'kill_lights_flocked',0), -(14098,46518,'kill_lights_gold',0), -(14099,46519,'kill_lights_gold_slow',0), -(14100,46520,'kill_lights_red',0), -(14101,46521,'kill_lights_red_slow',0), -(14102,46522,'kill_lights_white',0), -(14103,46523,'kill_lights_white_slow',0), -(14104,46553,'kill_dwarf_forestry_success',0), -(14105,46554,'kill_gnome_forestry_success',0), -(14106,46555,'kill_halfling_forestry_success',0), -(14107,46557,'kill_ogre_1h_crush_ouch_forehand',0), -(14108,46558,'kill_ogre_1h_pierce_ouch_forehand',0), -(14109,46559,'kill_ogre_1h_sword_ouch_forehand',0), -(14110,46560,'kill_ogre_1h_thrown_ouch_forehand',0), -(14111,46561,'kill_ogre_2h_sword_dodge_backhand',0), -(14112,46562,'kill_ogre_2h_sword_dodge_forehand',0), -(14113,46563,'kill_ogre_2h_sword_ouch_down',0), -(14114,46564,'kill_ogre_2h_sword_ouch_thrust',0), -(14115,46565,'kill_ogre_dual_wield_dodge_backhand',0), -(14116,46566,'kill_ogre_dual_wield_dodge_forehand',0), -(14117,46567,'kill_ogre_dual_wield_ouch_forehand',0), -(14118,46568,'kill_ogre_pike_dodge_backhand',0), -(14119,46569,'kill_ogre_pike_dodge_forehand',0), -(14120,46570,'kill_ogre_pike_kick',0), -(14121,46571,'kill_ogre_pike_ouch_backhand',0), -(14122,46572,'kill_ogre_pike_ouch_down',0), -(14123,46573,'kill_ogre_pike_ouch_forehand',0), -(14124,46574,'kill_ogre_pike_ouch_thrust',0), -(14125,46584,'kill_darkelf_female_2h_sword_wild_swing',0), -(14126,46585,'kill_erudite_female_2h_sword_wild_swing',0), -(14127,46586,'kill_fae_light_2h_sword_whirling_attack',0), -(14128,46587,'kill_fae_light_2h_sword_wild_swing',0), -(14129,46588,'kill_fae_light_female_2h_sword_wild_swing',0), -(14130,46589,'kill_gnome_female_2h_sword_wild_swing',0), -(14131,46590,'kill_halfelf_female_2h_sword_wild_swing',0), -(14132,46591,'kill_highelf_female_2h_sword_wild_swing',0), -(14133,46592,'kill_human_female_2h_sword_wild_swing',0), -(14134,46593,'kill_iksar_female_2h_sword_wild_swing',0), -(14135,46595,'kill_kerra_female_2h_sword_wild_swing',0), -(14136,46596,'kill_ratonga_female_2h_sword_wild_swing',0), -(14137,46598,'kill_troll_female_2h_sword_wild_swing',0), -(14138,46599,'kill_woodelf_female_2h_sword_wild_swing',0), -(14139,46618,'kill_darkelf_female_pike_charge_up',0), -(14140,46619,'kill_darkelf_female_pike_defensive_buff',0), -(14141,46620,'kill_darkelf_female_pike_offensive_buff',0), -(14142,46621,'kill_erudite_female_pike_charge_up',0), -(14143,46622,'kill_erudite_female_pike_defensive_buff',0), -(14144,46623,'kill_erudite_female_pike_offensive_buff',0), -(14145,46624,'kill_fae_light_female_pike_charge_up',0), -(14146,46625,'kill_fae_light_female_pike_defensive_buff',0), -(14147,46626,'kill_fae_light_female_pike_offensive_buff',0), -(14148,46627,'kill_fae_light_untrained_ouch01',0), -(14149,46628,'kill_gnome_female_pike_charge_up',0), -(14150,46629,'kill_gnome_female_pike_defensive_buff',0), -(14151,46630,'kill_gnome_female_pike_offensive_buff',0), -(14152,46631,'kill_halfelf_female_pike_charge_up',0), -(14153,46632,'kill_halfelf_female_pike_defensive_buff',0), -(14154,46633,'kill_halfelf_female_pike_offensive_buff',0), -(14155,46634,'kill_highelf_female_pike_charge_up',0), -(14156,46635,'kill_highelf_female_pike_defensive_buff',0), -(14157,46636,'kill_highelf_female_pike_offensive_buff',0), -(14158,46637,'kill_human_female_pike_charge_up',0), -(14159,46638,'kill_human_female_pike_defensive_buff',0), -(14160,46639,'kill_human_female_pike_offensive_buff',0), -(14161,46640,'kill_iksar_female_pike_charge_up',0), -(14162,46641,'kill_iksar_female_pike_defensive_buff',0), -(14163,46642,'kill_iksar_female_pike_offensive_buff',0), -(14164,46644,'kill_kerra_female_pike_charge_up',0), -(14165,46645,'kill_kerra_female_pike_defensive_buff',0), -(14166,46646,'kill_kerra_female_pike_offensive_buff',0), -(14167,46647,'kill_ratonga_female_pike_charge_up',0), -(14168,46648,'kill_ratonga_female_pike_defensive_buff',0), -(14169,46649,'kill_ratonga_female_pike_offensive_buff',0), -(14170,46651,'kill_troll_female_pike_charge_up',0), -(14171,46652,'kill_troll_female_pike_defensive_buff',0), -(14172,46653,'kill_troll_female_pike_offensive_buff',0), -(14173,46654,'kill_woodelf_female_pike_charge_up',0), -(14174,46655,'kill_woodelf_female_pike_defensive_buff',0), -(14175,46656,'kill_woodelf_female_pike_offensive_buff',0), -(14176,46705,'kill_design_frostfell_candy_canes',0), -(14177,46726,'kill_fire_hearts',0), -(14178,46778,'kill_result_heart_vision',0), -(14179,46779,'kill_result_heartbreak',0), -(14180,46791,'kill_result_flies',0), -(14181,46792,'kill_result_weapon_trail_poison',0), -(14182,46943,'kill_result_dagger_vision_p2p',0), -(14183,46944,'kill_result_heart_vision_p2p',0), -(14184,46954,'kill_flirt_short_butt',0), -(14185,46955,'kill_flirt_short_leg',0), -(14186,46956,'kill_flirt_short_shake',0), -(14187,46957,'kill_flirt_short_wave',0), -(14188,46958,'kill_flirt_short_wave2',0), -(14189,46959,'kill_flirt_short_wave3',0), -(14190,46961,'kill_result_heart_success',0), -(14191,46991,'kill_design_result_static_scare',0), -(14192,46993,'kill_result_fog_poison_billboards',0), -(14193,46994,'kill_result_fog_poison_billboards_small',0), -(14194,46995,'kill_result_fog_poison_billboards_thinner',0), -(14195,46996,'kill_roxbury',0), -(14196,47010,'kill_cast_pfx_notes_l',0), -(14197,47011,'kill_cast_pfx_notes_r',0), -(14198,47080,'kill_sound_unrest_quel_piano',0), -(14199,47091,'kill_water',0), -(14200,47132,'kill_1h_wand_attack',0), -(14201,47133,'kill_1h_wand_attack01',0), -(14202,47134,'kill_1h_wand_attack02',0), -(14203,47135,'kill_1h_wand_attack03',0), -(14204,47136,'kill_1h_wand_attack_recoil',0), -(14205,47137,'kill_1h_wand_attack_recoil01',0), -(14206,47138,'kill_1h_wand_attack_recoil02',0), -(14207,47139,'kill_1h_wand_attack_recoil03',0), -(14208,47140,'kill_1h_wand_backup',0), -(14209,47141,'kill_1h_wand_dodge_backhand',0), -(14210,47142,'kill_1h_wand_dodge_down',0), -(14211,47143,'kill_1h_wand_dodge_forehand',0), -(14212,47144,'kill_1h_wand_dodge_thrust',0), -(14213,47145,'kill_1h_wand_enter',0), -(14214,47146,'kill_1h_wand_exit',0), -(14215,47147,'kill_1h_wand_idle',0), -(14216,47148,'kill_1h_wand_ouch_backhand',0), -(14217,47149,'kill_1h_wand_ouch_down',0), -(14218,47150,'kill_1h_wand_ouch_forehand',0), -(14219,47151,'kill_1h_wand_ouch_thrust',0), -(14220,47152,'kill_1h_wand_parry_backhand',0), -(14221,47153,'kill_1h_wand_parry_down',0), -(14222,47154,'kill_1h_wand_parry_forehand',0), -(14223,47155,'kill_1h_wand_parry_thrust',0), -(14224,47156,'kill_1h_wand_strafe_left',0), -(14225,47157,'kill_1h_wand_strafe_right',0), -(14226,47158,'kill_1h_wand_walk',0), -(14227,47169,'kill_snd_design_unrest_zombie_scare',0), -(14228,47175,'kill_constant2_fx',0), -(14229,47188,'kill_result_sparkles_explode_noise',0), -(14230,47190,'kill_sound_howl',0), -(14231,47228,'kill_attack_recoil',0), -(14232,47229,'kill_attack_recoil01',0), -(14233,47230,'kill_attack_recoil02',0), -(14234,47231,'kill_attack_recoil03',0), -(14235,47237,'kill_parry_backhand',0), -(14236,47238,'kill_parry_down',0), -(14237,47239,'kill_parry_forehand',0), -(14238,47240,'kill_parry_thrust',0), -(14239,47265,'kill_monk_offensive_buff_short',0), -(14240,47274,'kill_result_sparkle_trail_weapon_right_glow_blend_brown',0), -(14241,47275,'kill_result_sparkle_trail_weapon_right_glow_blend_purple',0), -(14242,47276,'kill_result_sparkle_trail_weapon_right_glow_silver',0), -(14243,47277,'kill_result_sparkle_trail_weapon_right_glow_tan',0), -(14244,47287,'kill_1h_pierce_attack_03',0), -(14245,47303,'kill_result_sparkle_trail_rightfoot_glow',0), -(14246,47323,'kill_cast_mist_sphere_sub',0), -(14247,47329,'kill_result_ghost_shield_p2p',0), -(14248,47344,'kill_design_flying_barrel',0), -(14249,47353,'kill_result_breaking_faith_wall',0), -(14250,47357,'kill_cached_state2',0), -(14251,47391,'kill_result_flash_weapon_brown',0), -(14252,47392,'kill_result_flash_weapon_purple',0), -(14253,47393,'kill_result_flash_weapon_silver',0), -(14254,47394,'kill_result_glow_weapon_tan',0), -(14255,47395,'kill_result_mist_clingy_sub',0), -(14256,47396,'kill_result_shout',0), -(14257,47449,'kill_cast_debuff_blend',0), -(14258,47452,'kill_cast_shield_grow_blend',0), -(14259,47489,'kill_design_result_bubble_ring',0), -(14260,47504,'kill_fel_epic_symbol',0), -(14261,47507,'kill_warg_backup',0), -(14262,47508,'kill_warg_fall',0), -(14263,47509,'kill_warg_idle',0), -(14264,47510,'kill_warg_jump',0), -(14265,47511,'kill_warg_jump_substitute',0), -(14266,47512,'kill_warg_land',0), -(14267,47513,'kill_warg_long_fall',0), -(14268,47514,'kill_warg_run',0), -(14269,47515,'kill_warg_turn_left',0), -(14270,47516,'kill_warg_turn_right',0), -(14271,47517,'kill_warg_walk',0), -(14272,47565,'kill_electric_hands_l',0), -(14273,47566,'kill_electric_hands_r',0), -(14274,47570,'kill_trdskl_horn',0), -(14275,47578,'kill_warg_idle01',0), -(14276,47579,'kill_warg_idle02',0), -(14277,47607,'kill_pawstep_trigger',0), -(14278,47637,'kill_result_deathward_heal',0), -(14279,47638,'kill_result_doppleganger_p2p',0), -(14280,47639,'kill_result_eyehand_buff',0), -(14281,47657,'kill_cast_acid_storm_damage',0), -(14282,47663,'kill_result_acid_rain_damage',0), -(14283,47664,'kill_result_acid_storm_damage',0), -(14284,47672,'kill_pawstep',0), -(14285,47681,'kill_pawstep_snow',0), -(14286,47686,'kill_snd_horn_centaur',0), -(14287,47687,'kill_snd_horn_conch',0), -(14288,47688,'kill_snd_horn_gnoll',0), -(14289,47689,'kill_snd_horn_goblin',0), -(14290,47692,'kill_cast_ball_lightning_damage',0), -(14291,47693,'kill_cast_conjuror',0), -(14292,47705,'kill_result_countersong_p2p',0), -(14293,47706,'kill_result_rays_of_disintigration',0), -(14294,47707,'kill_result_rays_of_disintigration_p2p',0), -(14295,47713,'kill_cast_vampirism_p2p',0), -(14296,47715,'kill_froglok_warg_idle',0), -(14297,47716,'kill_froglok_warg_jump_substitute',0), -(14298,47746,'kill_particle_mood_combat_enter',0), -(14299,47747,'kill_result_fatal_followup',0), -(14300,47748,'kill_result_puppetmaster',0), -(14301,47757,'kill_special',0), -(14302,47764,'kill_result_barrier',0), -(14303,47765,'kill_result_softkill',0), -(14304,47769,'kill_cast_leaf_blower_p2p',0), -(14305,47772,'kill_cast_waterflush_p2p',0), -(14306,47775,'kill_result_firewhimsy_p2p',0), -(14307,47776,'kill_result_leaves_sticky',0), -(14308,47777,'kill_result_p2p_lightning_bolts',0), -(14309,47819,'kill_design_spotlight',0), -(14310,47821,'kill_pawstep_leather_carpet',0), -(14311,47822,'kill_pawstep_leather_dirt',0), -(14312,47823,'kill_pawstep_leather_grass',0), -(14313,47824,'kill_pawstep_leather_gravel',0), -(14314,47825,'kill_pawstep_leather_ice',0), -(14315,47826,'kill_pawstep_leather_metal',0), -(14316,47827,'kill_pawstep_leather_mud',0), -(14317,47828,'kill_pawstep_leather_sand',0), -(14318,47829,'kill_pawstep_leather_snow',0), -(14319,47830,'kill_pawstep_leather_stone',0), -(14320,47831,'kill_pawstep_leather_water',0), -(14321,47832,'kill_pawstep_leather_wood',0), -(14322,47862,'kill_snd_fire_large_loop',0), -(14323,47877,'kill_sound_peck',0), -(14324,47885,'kill_sound_damagefeather',0), -(14325,47888,'kill_cast_dirge_stringed_loop',0), -(14326,47890,'kill_cast_horn_blowing_end',0), -(14327,47891,'kill_cast_horn_blowing_loop',0), -(14328,47896,'kill_fae_dark_1h_sword_attack',0), -(14329,47897,'kill_fae_dark_1h_sword_attack01',0), -(14330,47898,'kill_fae_dark_1h_sword_attack02',0), -(14331,47899,'kill_fae_dark_1h_sword_attack03',0), -(14332,47900,'kill_fae_dark_1h_sword_death_blow',0), -(14333,47901,'kill_fae_dark_1h_sword_death_blow01',0), -(14334,47902,'kill_fae_dark_1h_sword_dodge_backhand',0), -(14335,47903,'kill_fae_dark_1h_sword_dodge_down',0), -(14336,47904,'kill_fae_dark_1h_sword_dodge_forehand',0), -(14337,47905,'kill_fae_dark_1h_sword_dodge_thrust',0), -(14338,47906,'kill_fae_dark_1h_sword_ouch_backhand',0), -(14339,47907,'kill_fae_dark_1h_sword_ouch_down',0), -(14340,47908,'kill_fae_dark_1h_sword_ouch_forehand',0), -(14341,47909,'kill_fae_dark_1h_sword_ouch_thrust',0), -(14342,47910,'kill_fae_dark_1h_sword_parry_backhand',0), -(14343,47911,'kill_fae_dark_1h_sword_parry_down',0), -(14344,47912,'kill_fae_dark_1h_sword_parry_forehand',0), -(14345,47913,'kill_fae_dark_1h_sword_parry_thrust',0), -(14346,47914,'kill_fae_dark_2h_sword_attack',0), -(14347,47915,'kill_fae_dark_2h_sword_attack01',0), -(14348,47916,'kill_fae_dark_2h_sword_attack02',0), -(14349,47917,'kill_fae_dark_2h_sword_defensive_buff',0), -(14350,47918,'kill_fae_dark_2h_sword_dodge_backhand',0), -(14351,47919,'kill_fae_dark_2h_sword_dodge_down',0), -(14352,47920,'kill_fae_dark_2h_sword_dodge_forehand',0), -(14353,47921,'kill_fae_dark_2h_sword_enter',0), -(14354,47922,'kill_fae_dark_2h_sword_kick',0), -(14355,47923,'kill_fae_dark_2h_sword_ouch_backhand',0), -(14356,47924,'kill_fae_dark_2h_sword_ouch_down',0), -(14357,47925,'kill_fae_dark_2h_sword_ouch_forehand',0), -(14358,47926,'kill_fae_dark_2h_sword_ouch_thrust',0), -(14359,47927,'kill_fae_dark_2h_sword_whirling_attack',0), -(14360,47928,'kill_fae_dark_2h_sword_wild_swing',0), -(14361,47929,'kill_fae_dark_bostaff_attack01',0), -(14362,47930,'kill_fae_dark_bostaff_attack02',0), -(14363,47931,'kill_fae_dark_bostaff_attack03',0), -(14364,47932,'kill_fae_dark_bostaff_dodge_backhand',0), -(14365,47933,'kill_fae_dark_bostaff_dodge_forehand',0), -(14366,47934,'kill_fae_dark_climbing_backup',0), -(14367,47935,'kill_fae_dark_climbing_enter_down_root',0), -(14368,47936,'kill_fae_dark_climbing_exit_up_root',0), -(14369,47937,'kill_fae_dark_climbing_idle',0), -(14370,47938,'kill_fae_dark_climbing_strafe_left',0), -(14371,47939,'kill_fae_dark_climbing_strafe_right',0), -(14372,47940,'kill_fae_dark_climbing_walk',0), -(14373,47941,'kill_fae_dark_dance',0), -(14374,47942,'kill_fae_dark_dead',0), -(14375,47943,'kill_fae_dark_dead_enter',0), -(14376,47944,'kill_fae_dark_dual_wield_attack',0), -(14377,47945,'kill_fae_dark_dual_wield_attack01',0), -(14378,47946,'kill_fae_dark_dual_wield_attack02',0), -(14379,47947,'kill_fae_dark_dual_wield_attack03',0), -(14380,47948,'kill_fae_dark_dual_wield_dodge_backhand',0), -(14381,47949,'kill_fae_dark_dual_wield_dodge_forehand',0), -(14382,47950,'kill_fae_dark_dual_wield_kick',0), -(14383,47951,'kill_fae_dark_dual_wield_ouch_backhand',0), -(14384,47952,'kill_fae_dark_dual_wield_ouch_forehand',0), -(14385,47953,'kill_fae_dark_dual_wield_parry_down',0), -(14386,47954,'kill_fae_dark_dual_wield_whirling_attack',0), -(14387,47955,'kill_fae_dark_dual_wield_wild_swing',0), -(14388,47956,'kill_fae_dark_idle',0), -(14389,47957,'kill_fae_dark_monk_attack',0), -(14390,47958,'kill_fae_dark_monk_attack01',0), -(14391,47959,'kill_fae_dark_monk_attack02',0), -(14392,47960,'kill_fae_dark_monk_attack03',0), -(14393,47961,'kill_fae_dark_monk_dodge_backhand',0), -(14394,47962,'kill_fae_dark_monk_dodge_down',0), -(14395,47963,'kill_fae_dark_monk_wild_swing',0), -(14396,47964,'kill_fae_dark_pike_attack',0), -(14397,47965,'kill_fae_dark_pike_attack01',0), -(14398,47966,'kill_fae_dark_pike_attack02',0), -(14399,47967,'kill_fae_dark_pike_kick',0), -(14400,47968,'kill_fae_dark_pike_whirling_attack',0), -(14401,47969,'kill_fae_dark_pike_wild_swing',0), -(14402,47970,'kill_fae_dark_pugilist_attack',0), -(14403,47971,'kill_fae_dark_pugilist_attack02',0), -(14404,47972,'kill_fae_dark_pugilist_kick',0), -(14405,47973,'kill_fae_dark_pugilist_whirling_attack',0), -(14406,47974,'kill_fae_dark_pugilist_wild_swing',0), -(14407,47975,'kill_fae_dark_run',0), -(14408,47976,'kill_fae_dark_sit_enter',0), -(14409,47977,'kill_fae_dark_sit_exit',0), -(14410,47978,'kill_fae_dark_sit_idle',0), -(14411,47979,'kill_fae_dark_untrained_ouch01',0), -(14412,48000,'kill_cast_summon_undead_assemble',0), -(14413,48001,'kill_cast_summon_undead_cyclone',0), -(14414,48002,'kill_cast_summon_undead_flame_spurt',0), -(14415,48003,'kill_cast_summon_undead_yawn',0), -(14416,48013,'kill_result_clouds_head',0), -(14417,48014,'kill_run01',0), -(14418,48015,'kill_run02',0), -(14419,48026,'kill_cast_bard_drum_persist',0), -(14420,48027,'kill_cast_bard_flute_persist',0), -(14421,48028,'kill_cast_bard_stringed_persist',0), -(14422,48033,'kill_result_soulsuck_p2p',0), -(14423,48069,'kill_design_fireworks_show_10',0), -(14424,48070,'kill_design_fireworks_show_2',0), -(14425,48071,'kill_design_fireworks_show_4',0), -(14426,48072,'kill_design_fireworks_show_6',0), -(14427,48075,'kill_sound_bud',0), -(14428,48076,'kill_sound_idle_legs',0), -(14429,48089,'kill_design_neriak_opera_backdrop_moon',0), -(14430,48090,'kill_design_neriak_opera_backdrop_palace',0), -(14431,48091,'kill_design_neriak_opera_backdrop_sky',0), -(14432,48092,'kill_design_neriak_opera_backdrop_trees',0), -(14433,48102,'kill_trdskl_metal_sparks',0), -(14434,48131,'kill_sound_deathwing',0), -(14435,48132,'kill_sound_idlebreathe',0), -(14436,48133,'kill_sound_idlewing',0), -(14437,48134,'kill_sound_stinger',0), -(14438,48135,'kill_sound_swooshstinger',0), -(14439,48177,'kill_result_anvil_drop',0), -(14440,48186,'kill_walk01',0), -(14441,48187,'kill_walk02',0), -(14442,48243,'kill_result_star_burst',0), -(14443,48244,'kill_result_stunned_star',0), -(14444,48297,'kill_attack_02',0), -(14445,48301,'kill_green_smoke-ouch',0), -(14446,48302,'kill_green_smoke_ouch',0), -(14447,48304,'kill_royal_wave_short',0), -(14448,48306,'kill_spike_ball01',0), -(14449,48307,'kill_spike_ball02',0), -(14450,48308,'kill_spike_ball03',0), -(14451,48356,'kill_draw_weapon',0), -(14452,48357,'kill_fel_epic_symbol_outer',0), -(14453,48379,'kill_draw_weapon_idle',0), -(14454,48382,'kill_sheathe_weapon_idle',0), -(14455,48383,'kill_fade_cast_sound',0), -(14456,48384,'kill_fade_reverse_sound',0), -(14457,48385,'kill_cast_poison_dragon_breath_test',0), -(14458,48386,'kill_cast_pricecheck',0), -(14459,48387,'kill_constant_fx',0), -(14460,48388,'kill_instant_fx',0), -(14461,48389,'kill_sd_spiritdescend_snd',0), -(14462,48390,'kill_1h_sword_idle01',0), -(14463,48397,'kill_paperdoll',0), -(14464,48405,'kill_tail_combat',0), -(14465,48408,'kill_aura_yellow',0), -(14466,48409,'kill_cast_lhand_sparkle_trail_blend',0), -(14467,48412,'kill_cast_rhand_sparkle_trail_blend',0), -(14468,48420,'kill_tail_run',0), -(14469,48425,'kill_climbing_chainmail_rope',0), -(14470,48426,'kill_climbing_leather_rope',0), -(14471,48427,'kill_climbing_metal_rope',0), -(14472,48430,'kill_run_tail',0), -(14473,48437,'kill_result_cold_ice_crystals_hands',0), -(14474,48438,'kill_result_cold_ice_crystals_lefthand',0), -(14475,48439,'kill_result_cold_ice_crystals_righthand',0), -(14476,48440,'kill_result_hand_rings_fire',0), -(14477,48441,'kill_result_hand_rings_ice',0), -(14478,48442,'kill_result_hand_rings_lightning',0), -(14479,48443,'kill_result_rock_hands',0), -(14480,48446,'kill_attack_fx',0), -(14481,48453,'kill_result_plant_filaments',0), -(14482,48461,'kill_sound_damagestone',0), -(14483,48462,'kill_sound_deadloud',0), -(14484,48467,'kill_cast_skull_grow',0), -(14485,48468,'kill_cast_sonic_ring',0), -(14486,48469,'kill_cast_sonic_ring_vertical',0), -(14487,48472,'kill_result_poison_cysts_popping',0), -(14488,48473,'kill_result_silence',0), -(14489,48480,'kill_result_gangrene',0), -(14490,48488,'kill_snd_aof_anvilfall',0), -(14491,48489,'kill_snd_aof_anvilhit',0), -(14492,48497,'kill_snd_acidrain_cast',0), -(14493,48498,'kill_snd_acidrain_result',0), -(14494,48504,'kill_death',0), -(14495,48507,'kill_sheathe_weapon',0), -(14496,48508,'kill_snd_design_terror001',0), -(14497,48509,'kill_snd_design_terror002',0), -(14498,48510,'kill_snd_design_terror003',0), -(14499,48511,'kill_snd_design_terror004',0), -(14500,48512,'kill_snd_design_terror005',0), -(14501,48513,'kill_snd_design_terror006',0), -(14502,48514,'kill_snd_design_terror007',0), -(14503,48515,'kill_snd_design_terror008',0), -(14504,48516,'kill_snd_design_terror009',0), -(14505,48517,'kill_snd_design_terror010',0), -(14506,48518,'kill_snd_design_terror011',0), -(14507,48519,'kill_snd_design_terror012',0), -(14508,48520,'kill_snd_design_terror020',0), -(14509,48521,'kill_sound_blow',0), -(14510,48522,'kill_sound_deathfall1',0), -(14511,48523,'kill_sound_deathfall2',0), -(14512,48531,'kill_sound_idlehit',0), -(14513,48532,'kill_sound_idleyell',0), -(14514,48539,'kill_kick_fx',0), -(14515,48540,'kill_result_bucket',0), -(14516,48547,'kill_result_lava_burst',0), -(14517,48548,'kill_rhino_backup',0), -(14518,48549,'kill_rhino_idle',0), -(14519,48550,'kill_rhino_jump_substitute',0), -(14520,48551,'kill_rhino_run',0), -(14521,48552,'kill_rhino_turn_left',0), -(14522,48553,'kill_rhino_turn_right',0), -(14523,48554,'kill_rhino_walk',0), -(14524,48561,'kill_result_blast_cone_aoe',0), -(14525,48562,'kill_result_pants_off',0), -(14526,48569,'kill_result_god_spell_bristlebane',0), -(14527,48575,'kill_design_plant_attack',0), -(14528,48577,'kill_rhino_fall',0), -(14529,48578,'kill_rhino_jump',0), -(14530,48579,'kill_rhino_land',0), -(14531,48586,'kill_result_cocoon_blue',0), -(14532,48587,'kill_result_cocoon_green',0), -(14533,48588,'kill_result_cocoon_red',0), -(14534,48589,'kill_result_cocoon_yellow',0), -(14535,48590,'kill_result_web_shooting_p2p',0), -(14536,48596,'kill_fly_combat',0), -(14537,48597,'kill_fly_combat01',0), -(14538,48598,'kill_fly_enter',0), -(14539,48599,'kill_fly_exit',0), -(14540,48602,'kill_snd_cow_moo',0), -(14541,48603,'kill_trdskl_beehive',0), -(14542,48610,'kill_result_bee_breath',0), -(14543,48611,'kill_result_beehive_hit',0), -(14544,48613,'kill_sound_ribbit',0), -(14545,48614,'kill_sound_tonguesplat',0), -(14546,48619,'kill_cast_wild_heart_buff',0), -(14547,48622,'kill_persist_fear_skulls',0), -(14548,48623,'kill_persist_wild_heart_beating',0), -(14549,48629,'kill_drag_sparks',0), -(14550,48630,'kill_ground_blast',0), -(14551,48632,'kill_pawbuster_attack_enter',0), -(14552,48633,'kill_pawbuster_attack_exit',0), -(14553,48634,'kill_pawbuster_attack_idle',0), -(14554,48635,'kill_result_webby_root',0), -(14555,48643,'kill_sparkle_trail_weapon',0), -(14556,48644,'kill_sparkle_trail_weapon_spiral',0), -(14557,48649,'kill_cast_webshoot',0), -(14558,48650,'kill_cast_webshoot_p2p',0), -(14559,48654,'kill_walk_tail',0), -(14560,48659,'kill_cast_trace_firespikes_sub_l',0), -(14561,48660,'kill_cast_trace_firespikes_sub_r',0), -(14562,48667,'kill_pugilist_charge_up_long',0), -(14563,48675,'kill_spike_fist',0), -(14564,48681,'kill_fx_on',0), -(14565,48683,'kill_result_ground_blast_ring',0), -(14566,48689,'kill_griffin_glide',0), -(14567,48695,'kill_idle_to_combat',0), -(14568,48702,'kill_result_fire_object',0), -(14569,48709,'kill_rhino_long_fall',0), -(14570,48710,'kill_rhino_strafe_left',0), -(14571,48711,'kill_rhino_strafe_right',0), -(14572,48712,'kill_run_tail_cloak',0), -(14573,48714,'kill_walk_tail_cloak',0), -(14574,48717,'kill_beam0_blue',0), -(14575,48718,'kill_beam0_red',0), -(14576,48719,'kill_beam0_yellow',0), -(14577,48720,'kill_beam1_blue',0), -(14578,48721,'kill_beam1_red',0), -(14579,48722,'kill_beam1_yellow',0), -(14580,48723,'kill_beam2_blue',0), -(14581,48724,'kill_beam2_red',0), -(14582,48725,'kill_beam2_yellow',0), -(14583,48726,'kill_beam3_blue',0), -(14584,48727,'kill_beam3_red',0), -(14585,48728,'kill_beam3_yellow',0), -(14586,48729,'kill_beam_door',0), -(14587,48734,'kill_cast_shards',0), -(14588,48735,'kill_cast_shards_blast',0), -(14589,48738,'kill_mood_dance',0), -(14590,48741,'kill_beam_miss_orange',0), -(14591,48742,'kill_beam_miss_purple',0), -(14592,48743,'kill_cast_dragon_pbae_lightning_red',0), -(14593,48744,'kill_cast_dual_shards',0), -(14594,48747,'kill_cast_shard_cloud_blast',0), -(14595,48748,'kill_cast_shard_lightning',0), -(14596,48749,'kill_cast_shard_pulse',0), -(14597,48750,'kill_cast_shards_fusion',0), -(14598,48751,'kill_cast_shards_merging',0), -(14599,48757,'kill_ghost_idle',0), -(14600,48762,'kill_cha_beam_blast0',0), -(14601,48763,'kill_cha_beam_blast1',0), -(14602,48764,'kill_cha_beam_blast2',0), -(14603,48765,'kill_cha_beam_blast_up',0), -(14604,48771,'kill_design_charasis_beams_purple',0), -(14605,48772,'kill_design_charasis_beams_turquoise',0), -(14606,48779,'kill_result_ghost_forced_shader_4_green',0), -(14607,48780,'kill_result_ghost_forced_shader_4_red',0), -(14608,48787,'kill_result_barrier_blue',0), -(14609,48788,'kill_result_barrier_red',0), -(14610,48789,'kill_result_barrier_yellow',0), -(14611,48795,'kill_design_blood_puddle',0), -(14612,48797,'kill_result_berserker_black_eyes',0), -(14613,48798,'kill_result_berserker_blue_eyes',0), -(14614,48799,'kill_result_berserker_purple_eyes',0), -(14615,48800,'kill_result_berserker_white_eyes',0), -(14616,48805,'kill_combat_idle2',0), -(14617,48807,'kill_design_charasis_windfan_fx',0), -(14618,48810,'kill_cast_no_target_blue_star',0), -(14619,48814,'kill_design_charasis_theater_fx',0), -(14620,48815,'kill_design_charasis_vision_fens',0), -(14621,48816,'kill_design_charasis_vision_jarsath',0), -(14622,48817,'kill_design_charasis_vision_kunzar',0), -(14623,48818,'kill_design_charasis_vision_kylong',0), -(14624,48824,'kill_dance_enter',0), -(14625,48825,'kill_dance_exit',0), -(14626,48827,'kill_result_ghost_shadow',0), -(14627,48833,'kill_design_lava_projectile',0), -(14628,48834,'kill_design_vision_teleport_veeshans',0), -(14629,48842,'kill_sound_fall001',0), -(14630,48848,'kill_design_veeshans_barrier',0), -(14631,48854,'kill_design_veeshans_rock_drop',0), -(14632,48857,'kill_sound_belly001',0), -(14633,48858,'kill_sound_belly002',0), -(14634,48863,'kill_cast_summon_undead_cyclone_green',0), -(14635,48865,'kill_goo_arm_buff',0), -(14636,48867,'kill_result_pus_bolt_p2p',0), -(14637,48868,'kill_result_pus_splat',0), -(14638,48869,'kill_result_sickly_aura_aoe',0), -(14639,48870,'kill_ring',0), -(14640,48876,'kill_design_vision_teleport_traks_lair',0), -(14641,48877,'kill_draw_weapon_primary_trigger',0), -(14642,48878,'kill_draw_weapon_secondary_trigger',0), -(14643,48880,'kill_result_barrier_orange',0), -(14644,48881,'kill_result_gavel_pound',0), -(14645,48882,'kill_result_stinky_aura',0), -(14646,48883,'kill_screen_shake',0), -(14647,48885,'kill_sheathe_weapon_primary_trigger',0), -(14648,48886,'kill_sheathe_weapon_secondary_trigger',0), -(14649,48887,'kill_stomp_sound',0), -(14650,48895,'kill_sound_bone',0), -(14651,48896,'kill_sound_bonedeath',0), -(14652,48903,'kill_result_glade',0), -(14653,48904,'kill_result_ice_storm',0), -(14654,48905,'kill_result_shroud_of_clouds',0), -(14655,48911,'kill_design_karnors_beam_center',0), -(14656,48912,'kill_design_karnors_beam_left',0), -(14657,48913,'kill_design_karnors_beam_right',0), -(14658,48915,'kill_result_timed_heart_tap',0), -(14659,48917,'kill_sound_yawn',0), -(14660,48922,'kill_combat_attack',0), -(14661,48925,'kill_mount_attack01',0), -(14662,48926,'kill_mount_combat_idle',0), -(14663,48927,'kill_mount_ouch',0), -(14664,48928,'kill_mount_ouch01',0), -(14665,48929,'kill_result_soul_attack_p2p',0), -(14666,48930,'kill_rhino_sprint',0), -(14667,48931,'kill_sarnak_1h_crush_idle',0), -(14668,48932,'kill_sarnak_1h_pierce_idle',0), -(14669,48933,'kill_sarnak_1h_sword_idle',0), -(14670,48934,'kill_sarnak_1h_thrown_idle',0), -(14671,48935,'kill_sarnak_2h_sword_idle',0), -(14672,48936,'kill_sarnak_backup',0), -(14673,48937,'kill_sarnak_backup_run',0), -(14674,48938,'kill_sarnak_bostaff_idle',0), -(14675,48939,'kill_sarnak_combat_idle',0), -(14676,48940,'kill_sarnak_dual_wield_idle',0), -(14677,48941,'kill_sarnak_fall',0), -(14678,48942,'kill_sarnak_idle',0), -(14679,48943,'kill_sarnak_idle01',0), -(14680,48944,'kill_sarnak_monk_idle',0), -(14681,48945,'kill_sarnak_pike_idle',0), -(14682,48946,'kill_sarnak_pugilist_idle',0), -(14683,48947,'kill_sarnak_rhino_backup',0), -(14684,48948,'kill_sarnak_rhino_idle',0), -(14685,48949,'kill_sarnak_rhino_jump_substitute',0), -(14686,48950,'kill_sarnak_rhino_run',0), -(14687,48951,'kill_sarnak_rhino_strafe_left',0), -(14688,48952,'kill_sarnak_rhino_strafe_right',0), -(14689,48953,'kill_sarnak_rhino_turn_left',0), -(14690,48954,'kill_sarnak_rhino_turn_right',0), -(14691,48955,'kill_sarnak_run',0), -(14692,48956,'kill_sarnak_run_03',0), -(14693,48957,'kill_sarnak_run_down_idle',0), -(14694,48958,'kill_sarnak_run_long',0), -(14695,48959,'kill_sarnak_run_up_idle',0), -(14696,48960,'kill_sarnak_sit_enter',0), -(14697,48961,'kill_sarnak_sit_exit',0), -(14698,48962,'kill_sarnak_sit_idle',0), -(14699,48963,'kill_sarnak_strafe_left_run',0), -(14700,48964,'kill_sarnak_strafe_right_run',0), -(14701,48965,'kill_sarnak_sway_l',0), -(14702,48966,'kill_sarnak_sway_r',0), -(14703,48967,'kill_sarnak_untrained_idle',0), -(14704,48968,'kill_sarnak_walk',0), -(14705,48971,'kill_carpet_backup',0), -(14706,48977,'kill_sokokar_idle',0), -(14707,48978,'kill_sokokar_run',0), -(14708,48979,'kill_sokokar_walk',0), -(14709,48986,'kill_pus_splat',0), -(14710,48988,'kill_sound_cast001',0), -(14711,48989,'kill_sound_cast002',0), -(14712,48990,'kill_sound_slam',0), -(14713,48993,'kill_aura_green',0), -(14714,48996,'kill_cast_venril_beam_buff',0), -(14715,48997,'kill_cast_venril_crystal',0), -(14716,48998,'kill_cast_venril_ring',0), -(14717,48999,'kill_cast_venril_ring_buff',0), -(14718,49002,'kill_result_ghosts',0), -(14719,49008,'kill_death_enter',0), -(14720,49009,'kill_death_tail',0), -(14721,49010,'kill_hand_fx_left',0), -(14722,49011,'kill_hand_fx_right',0), -(14723,49014,'kill_sokokar_glide',0), -(14724,49015,'kill_sound_deadeye001',0), -(14725,49016,'kill_sound_deadeye002',0), -(14726,49017,'kill_sound_deathdeflate',0), -(14727,49018,'kill_sound_smoke',0), -(14728,49023,'kill_cast_trail_head',0), -(14729,49030,'kill_manipulate',0), -(14730,49038,'kill_sound_bones',0), -(14731,49039,'kill_sound_deathghost',0), -(14732,49045,'kill_eye_beams',0), -(14733,49047,'kill_result_pus_rain_aoe',0), -(14734,49048,'kill_sarnak_1h_crush_enter',0), -(14735,49049,'kill_sarnak_1h_pierce_enter',0), -(14736,49050,'kill_sarnak_1h_sword_attack',0), -(14737,49051,'kill_sarnak_1h_sword_attack02',0), -(14738,49052,'kill_sarnak_1h_sword_attack03',0), -(14739,49053,'kill_sarnak_1h_sword_death_blow',0), -(14740,49054,'kill_sarnak_1h_sword_death_blow01',0), -(14741,49055,'kill_sarnak_1h_sword_enter',0), -(14742,49056,'kill_sarnak_1h_sword_exit',0), -(14743,49057,'kill_sarnak_1h_thrown_enter',0), -(14744,49058,'kill_sarnak_1h_wand_enter',0), -(14745,49059,'kill_sarnak_1h_wand_idle',0), -(14746,49060,'kill_sarnak_2h_sword_enter',0), -(14747,49061,'kill_sarnak_dead',0), -(14748,49062,'kill_sarnak_dead_enter',0), -(14749,49069,'kill_result_fireworks_confetti',0), -(14750,49072,'kill_cast_breath_divine',0), -(14751,49073,'kill_cast_breath_magic',0), -(14752,49080,'kill_result_breath_magic',0), -(14753,49086,'kill_design_green_mist',0), -(14754,49088,'kill_power_up',0), -(14755,49089,'kill_sarnak_2h_sword_attack',0), -(14756,49090,'kill_sarnak_2h_sword_attack01',0), -(14757,49091,'kill_sarnak_2h_sword_attack02',0), -(14758,49092,'kill_sarnak_2h_sword_kick',0), -(14759,49093,'kill_sarnak_monk_enter',0), -(14760,49096,'kill_cast_dragon_tail_trail',0), -(14761,49097,'kill_cast_dragon_tail_trail_long',0), -(14762,49098,'kill_cast_dragon_wing_buffet',0), -(14763,49102,'kill_horse_combat_idle',0), -(14764,49104,'kill_result_fleas',0), -(14765,49105,'kill_sarnak_bow_enter',0), -(14766,49106,'kill_sarnak_bow_idle',0), -(14767,49108,'kill_sound_attack_main',0), -(14768,49109,'kill_sound_attack_medusa',0), -(14769,49110,'kill_sound_attack_mouth',0), -(14770,49111,'kill_sound_damage_medusa',0), -(14771,49112,'kill_sound_damage_mouth',0), -(14772,49113,'kill_sound_death_medusa',0), -(14773,49114,'kill_sound_death_mouth',0), -(14774,49115,'kill_sound_enter',0), -(14775,49116,'kill_sound_enter_vocal',0), -(14776,49117,'kill_sound_swing',0), -(14777,49124,'kill_result_god_cackle_tribunal',0), -(14778,49125,'kill_result_god_spell_bertoxxulous',0), -(14779,49126,'kill_result_god_spell_karana',0), -(14780,49127,'kill_result_god_spell_tribunal',0), -(14781,49129,'kill_snd_rain_9s',0), -(14782,49130,'kill_trdskl_barracuda',0), -(14783,49133,'kill_cast_dragon_breath_cold',0), -(14784,49134,'kill_cast_dragon_breath_heat',0), -(14785,49135,'kill_cast_dragon_breath_lightning',0), -(14786,49136,'kill_cast_dragon_breath_poison',0), -(14787,49137,'kill_cast_drake_breath_cold',0), -(14788,49138,'kill_cast_drake_breath_lightning',0), -(14789,49139,'kill_cast_drake_breath_magic_divine',0), -(14790,49140,'kill_cast_drake_breath_poison',0), -(14791,49144,'kill_design_ball_summon',0), -(14792,49145,'kill_design_leash',0), -(14793,49146,'kill_design_lightning_ground',0), -(14794,49147,'kill_design_pillar_summon',0), -(14795,49149,'kill_ouch_back',0), -(14796,49150,'kill_sarnak_dual_wield_attack01',0), -(14797,49152,'kill_sit_idle_tail',0), -(14798,49159,'kill_runes_shissar1',0), -(14799,49160,'kill_runes_shissar2',0), -(14800,49161,'kill_runes_shissar3',0), -(14801,49162,'kill_runes_shissar4',0), -(14802,49163,'kill_runes_shissar5',0), -(14803,49164,'kill_runes_shissar6',0), -(14804,49165,'kill_runes_shissar7',0), -(14805,49166,'kill_runes_shissar8',0), -(14806,49173,'kill_pike_advance',0), -(14807,49180,'kill_result_trakanon_static_repulsion',0), -(14808,49186,'kill_design_poison_splashes',0), -(14809,49188,'kill_particle_teleport',0), -(14810,49190,'kill_wizard_rune_blast',0), -(14811,49197,'kill_result_hand_rings_smoke',0), -(14812,49198,'kill_result_pie_splat',0), -(14813,49199,'kill_sarnak_1h_crush_attack',0), -(14814,49200,'kill_sarnak_1h_crush_attack02',0), -(14815,49201,'kill_sarnak_1h_crush_attack03',0), -(14816,49202,'kill_sarnak_1h_pierce_attack',0), -(14817,49203,'kill_sarnak_bostaff_attack',0), -(14818,49204,'kill_sarnak_bostaff_attack01',0), -(14819,49205,'kill_sarnak_bostaff_attack02',0), -(14820,49206,'kill_sarnak_bostaff_attack03',0), -(14821,49207,'kill_sarnak_dual_wield_attack',0), -(14822,49208,'kill_sarnak_dual_wield_attack02',0), -(14823,49209,'kill_sarnak_fishing_cast',0), -(14824,49210,'kill_sarnak_fishing_fight',0), -(14825,49211,'kill_sarnak_fishing_reel_in',0), -(14826,49212,'kill_sarnak_forestry_chopping',0), -(14827,49213,'kill_sarnak_forestry_success',0), -(14828,49214,'kill_sarnak_gathering_search',0), -(14829,49215,'kill_sarnak_gathering_success',0), -(14830,49216,'kill_sarnak_mining_digging',0), -(14831,49217,'kill_sarnak_monk_attack',0), -(14832,49218,'kill_sarnak_monk_attack01',0), -(14833,49219,'kill_sarnak_monk_attack02',0), -(14834,49220,'kill_sarnak_monk_attack03',0), -(14835,49221,'kill_sarnak_monk_kick',0), -(14836,49222,'kill_sarnak_pike_attack',0), -(14837,49223,'kill_sarnak_pike_attack01',0), -(14838,49224,'kill_sarnak_pike_attack02',0), -(14839,49225,'kill_sarnak_pike_attack03',0), -(14840,49226,'kill_sarnak_pike_kick',0), -(14841,49228,'kill_trdskl_pie',0), -(14842,49235,'kill_result_hand_rings_poison',0), -(14843,49236,'kill_sarnak_1h_sword_attack01',0), -(14844,49237,'kill_sarnak_mining_success',0), -(14845,49240,'kill_cast_mirror',0), -(14846,49244,'kill_design_parrot_shoulder',0), -(14847,49246,'kill_result_splat',0), -(14848,49248,'kill_trdskl_glob',0), -(14849,49255,'kill_result_bread_hit',0), -(14850,49257,'kill_trdskl_bread',0), -(14851,49263,'kill_froglok_dead_enter',0), -(14852,49264,'kill_froglok_run_up_idle',0), -(14853,49265,'kill_froglok_swim_attack',0), -(14854,49266,'kill_froglok_swim_go',0), -(14855,49267,'kill_froglok_swim_idle',0), -(14856,49268,'kill_froglok_swim_ouch',0), -(14857,49269,'kill_iksar_swim_backup',0), -(14858,49270,'kill_iksar_swim_go',0), -(14859,49272,'kill_sarnak_rhino_sprint',0), -(14860,49273,'kill_sarnak_swim_backup',0), -(14861,49274,'kill_sarnak_swim_go',0), -(14862,49276,'kill_swim_go',0), -(14863,49281,'kill_close',0), -(14864,49282,'kill_2h_sword',0), -(14865,49285,'kill_cast_armor_assemble',0), -(14866,49288,'kill_cast_chalice_descending',0), -(14867,49295,'kill_result_blast_double_cone_aoe',0), -(14868,49298,'kill_carpet_tail',0), -(14869,49299,'kill_carpet_tail_cloak',0), -(14870,49304,'kill_result_book_hit',0), -(14871,49306,'kill_trdskl_book',0), -(14872,49307,'kill_trdskl_rose',0), -(14873,49313,'kill_flash',0), -(14874,49314,'kill_glint',0), -(14875,49317,'kill_cast_light_beam_grow',0), -(14876,49322,'kill_result_gavel_drop',0), -(14877,49323,'kill_result_hearts_red',0), -(14878,49324,'kill_result_light_slam_aoe',0), -(14879,49325,'kill_result_vertical_blast',0), -(14880,49328,'kill_cast_lightning_aoe_blast_out',0), -(14881,49333,'kill_result_cyclone_storm',0), -(14882,49336,'kill_cast_cyclone_storm_blast',0), -(14883,49343,'kill_ouch_forhand',0), -(14884,49348,'kill_community_robe_red',0), -(14885,49350,'kill_fire_foolish',0), -(14886,49351,'kill_guide_robe_green',0), -(14887,49357,'kill_dance_synced',0), -(14888,49359,'kill_result_frisbee_p2p',0), -(14889,49361,'kill_trdskl_frisbee',0), -(14890,49364,'kill_brew_day_mugs',0), -(14891,49369,'kill_result_feather_smack',0), -(14892,49370,'kill_sarnak_1h_sword_dodge_backhand',0), -(14893,49371,'kill_sarnak_1h_sword_dodge_down',0), -(14894,49372,'kill_sarnak_1h_sword_dodge_forehand',0), -(14895,49373,'kill_sarnak_1h_sword_dodge_thrust',0), -(14896,49374,'kill_sarnak_1h_sword_ouch_backhand',0), -(14897,49375,'kill_sarnak_1h_sword_ouch_down',0), -(14898,49376,'kill_sarnak_1h_sword_ouch_forehand',0), -(14899,49377,'kill_sarnak_1h_sword_ouch_thrust',0), -(14900,49378,'kill_sarnak_1h_sword_parry_backhand',0), -(14901,49379,'kill_sarnak_1h_sword_parry_down',0), -(14902,49380,'kill_sarnak_1h_sword_parry_forehand',0), -(14903,49381,'kill_sarnak_1h_sword_parry_thrust',0), -(14904,49382,'kill_sarnak_2h_sword_dodge_down',0), -(14905,49383,'kill_sarnak_2h_sword_dodge_forehand',0), -(14906,49384,'kill_sarnak_2h_sword_ouch_backhand',0), -(14907,49385,'kill_sarnak_2h_sword_ouch_down',0), -(14908,49386,'kill_sarnak_2h_sword_ouch_forehand',0), -(14909,49387,'kill_sarnak_2h_sword_ouch_thrust',0), -(14910,49388,'kill_sarnak_2h_sword_ouch_thust',0), -(14911,49389,'kill_sarnak_2h_sword_parry_backhand',0), -(14912,49390,'kill_sarnak_2h_sword_parry_down',0), -(14913,49391,'kill_sarnak_2h_sword_parry_forehand',0), -(14914,49392,'kill_sarnak_agree',0), -(14915,49393,'kill_sarnak_applaude',0), -(14916,49394,'kill_sarnak_attention',0), -(14917,49395,'kill_sarnak_beckon',0), -(14918,49396,'kill_sarnak_beg',0), -(14919,49397,'kill_sarnak_boggle',0), -(14920,49398,'kill_sarnak_bostaff_dodge_backhand',0), -(14921,49399,'kill_sarnak_bostaff_dodge_down',0), -(14922,49400,'kill_sarnak_bostaff_dodge_forehand',0), -(14923,49401,'kill_sarnak_bostaff_ouch_backhand',0), -(14924,49402,'kill_sarnak_bostaff_ouch_down',0), -(14925,49403,'kill_sarnak_bostaff_ouch_forehand',0), -(14926,49404,'kill_sarnak_bostaff_ouch_thrust',0), -(14927,49405,'kill_sarnak_bostaff_parry_backhand',0), -(14928,49406,'kill_sarnak_bostaff_parry_down',0), -(14929,49407,'kill_sarnak_bostaff_parry_forehand',0), -(14930,49408,'kill_sarnak_bostaff_parry_thrust',0), -(14931,49409,'kill_sarnak_bow',0), -(14932,49410,'kill_sarnak_brandish',0), -(14933,49411,'kill_sarnak_bye',0), -(14934,49412,'kill_sarnak_cackle',0), -(14935,49413,'kill_sarnak_cheer',0), -(14936,49414,'kill_sarnak_chuckle',0), -(14937,49415,'kill_sarnak_confused',0), -(14938,49416,'kill_sarnak_crazy',0), -(14939,49417,'kill_sarnak_cringe',0), -(14940,49418,'kill_sarnak_cry',0), -(14941,49419,'kill_sarnak_curse',0), -(14942,49420,'kill_sarnak_curtsey',0), -(14943,49421,'kill_sarnak_curtsey2',0), -(14944,49422,'kill_sarnak_cutthroat',0), -(14945,49423,'kill_sarnak_doubletake',0), -(14946,49424,'kill_sarnak_dual_wield_attack03',0), -(14947,49425,'kill_sarnak_dual_wield_dodge_backhand',0), -(14948,49426,'kill_sarnak_dual_wield_dodge_down',0), -(14949,49427,'kill_sarnak_dual_wield_dodge_forehand',0), -(14950,49428,'kill_sarnak_dual_wield_kick',0), -(14951,49429,'kill_sarnak_dual_wield_ouch_backhand',0), -(14952,49430,'kill_sarnak_dual_wield_ouch_down',0), -(14953,49431,'kill_sarnak_dual_wield_ouch_forehand',0), -(14954,49432,'kill_sarnak_dual_wield_parry_down',0), -(14955,49433,'kill_sarnak_duck',0), -(14956,49434,'kill_sarnak_fflirt',0), -(14957,49435,'kill_sarnak_fistclapping',0), -(14958,49436,'kill_sarnak_flex',0), -(14959,49437,'kill_sarnak_flirt',0), -(14960,49438,'kill_sarnak_flustered',0), -(14961,49439,'kill_sarnak_frustration',0), -(14962,49440,'kill_sarnak_gag',0), -(14963,49441,'kill_sarnak_giggle',0), -(14964,49442,'kill_sarnak_glare',0), -(14965,49443,'kill_sarnak_grumble',0), -(14966,49444,'kill_sarnak_happy',0), -(14967,49445,'kill_sarnak_headslap',0), -(14968,49446,'kill_sarnak_hearnoevil',0), -(14969,49447,'kill_sarnak_heartattack',0), -(14970,49448,'kill_sarnak_heelclick',0), -(14971,49449,'kill_sarnak_hellno',0), -(14972,49450,'kill_sarnak_hello',0), -(14973,49451,'kill_sarnak_hourglass',0), -(14974,49452,'kill_sarnak_howl',0), -(14975,49453,'kill_sarnak_indigestion',0), -(14976,49454,'kill_sarnak_itch',0), -(14977,49455,'kill_sarnak_listen',0), -(14978,49456,'kill_sarnak_lookaway',0), -(14979,49457,'kill_sarnak_monk_dodge_backhand',0), -(14980,49458,'kill_sarnak_monk_dodge_forehand',0), -(14981,49459,'kill_sarnak_monk_ouch_backhand',0), -(14982,49460,'kill_sarnak_monk_ouch_down',0), -(14983,49461,'kill_sarnak_monk_ouch_forehand',0), -(14984,49462,'kill_sarnak_monk_parry_backhand',0), -(14985,49463,'kill_sarnak_monk_parry_down',0), -(14986,49464,'kill_sarnak_monk_parry_forehand',0), -(14987,49465,'kill_sarnak_moon',0), -(14988,49466,'kill_sarnak_neener',0), -(14989,49467,'kill_sarnak_no',0), -(14990,49468,'kill_sarnak_nod',0), -(14991,49469,'kill_sarnak_notworthy',0), -(14992,49470,'kill_sarnak_orate',0), -(14993,49471,'kill_sarnak_peer',0), -(14994,49472,'kill_sarnak_pike_dodge_backhand',0), -(14995,49473,'kill_sarnak_pike_dodge_down',0), -(14996,49474,'kill_sarnak_pike_dodge_forehand',0), -(14997,49475,'kill_sarnak_pike_dodge_thrust',0), -(14998,49476,'kill_sarnak_pike_ouch_backhand',0), -(14999,49477,'kill_sarnak_pike_ouch_down',0), -(15000,49478,'kill_sarnak_pike_ouch_thrust',0), -(15001,49479,'kill_sarnak_pike_parry_backhand',0), -(15002,49480,'kill_sarnak_pike_parry_down',0), -(15003,49481,'kill_sarnak_pike_parry_forehand',0), -(15004,49482,'kill_sarnak_point',0), -(15005,49483,'kill_sarnak_ponder',0), -(15006,49484,'kill_sarnak_pout',0), -(15007,49485,'kill_sarnak_pugilist_attack',0), -(15008,49486,'kill_sarnak_pugilist_attack01',0), -(15009,49487,'kill_sarnak_pugilist_attack02',0), -(15010,49488,'kill_sarnak_pugilist_attack03',0), -(15011,49489,'kill_sarnak_pugilist_dodge_backhand',0), -(15012,49490,'kill_sarnak_pugilist_dodge_down',0), -(15013,49491,'kill_sarnak_pugilist_kick',0), -(15014,49492,'kill_sarnak_raisehand',0), -(15015,49493,'kill_sarnak_royalwave',0), -(15016,49494,'kill_sarnak_rubhands',0), -(15017,49495,'kill_sarnak_rude',0), -(15018,49496,'kill_sarnak_sad',0), -(15019,49497,'kill_sarnak_salute',0), -(15020,49498,'kill_sarnak_sarcasticclap',0), -(15021,49499,'kill_sarnak_scold',0), -(15022,49500,'kill_sarnak_scratch',0), -(15023,49501,'kill_sarnak_scream',0), -(15024,49502,'kill_sarnak_seenoevil',0), -(15025,49503,'kill_sarnak_shakefist',0), -(15026,49504,'kill_sarnak_shame',0), -(15027,49505,'kill_sarnak_shimmy',0), -(15028,49506,'kill_sarnak_shiver',0), -(15029,49507,'kill_sarnak_shrug',0), -(15030,49508,'kill_sarnak_sigh',0), -(15031,49509,'kill_sarnak_smile',0), -(15032,49510,'kill_sarnak_smirk',0), -(15033,49511,'kill_sarnak_sneer',0), -(15034,49512,'kill_sarnak_sneeze',0), -(15035,49513,'kill_sarnak_snicker',0), -(15036,49514,'kill_sarnak_sniff',0), -(15037,49515,'kill_sarnak_speaknoevil',0), -(15038,49516,'kill_sarnak_square',0), -(15039,49517,'kill_sarnak_squeal',0), -(15040,49518,'kill_sarnak_stare',0), -(15041,49519,'kill_sarnak_stinky',0), -(15042,49520,'kill_sarnak_stretch',0), -(15043,49521,'kill_sarnak_sulk',0), -(15044,49522,'kill_sarnak_swear',0), -(15045,49523,'kill_sarnak_tantrum',0), -(15046,49524,'kill_sarnak_tapfoot',0), -(15047,49525,'kill_sarnak_taunt',0), -(15048,49526,'kill_sarnak_thank',0), -(15049,49527,'kill_sarnak_thumbs',0), -(15050,49528,'kill_sarnak_violin',0), -(15051,49529,'kill_sarnak_wave',0), -(15052,49530,'kill_sarnak_whistle',0), -(15053,49531,'kill_sarnak_whome',0), -(15054,49532,'kill_sarnak_wince',0), -(15055,49533,'kill_sarnak_wink',0), -(15056,49534,'kill_sarnak_yawn',0), -(15057,49535,'kill_sarnak_yeah',0), -(15058,49537,'kill_trdskl_pillow',0), -(15059,49540,'kill_cast_boomerang',0), -(15060,49546,'kill_trdskl_boomerang',0), -(15061,49554,'kill_snd_pillow_impact',0), -(15062,49557,'kill_brick_throw',0), -(15063,49561,'kill_horn_blow',0), -(15064,49569,'kill_sound_horn',0), -(15065,49575,'kill_design_cast_vision_shardofhate',0), -(15066,49582,'kill_result_waterwall',0), -(15067,49589,'kill_result_netted',0), -(15068,49591,'kill_trdskl_net',0), -(15069,49599,'kill_vek_beam01_blue',0), -(15070,49600,'kill_vek_beam01_green',0), -(15071,49601,'kill_vek_beam01_red',0), -(15072,49602,'kill_vek_beam01_yellow',0), -(15073,49603,'kill_vek_beam02_blue',0), -(15074,49604,'kill_vek_beam02_green',0), -(15075,49605,'kill_vek_beam02_red',0), -(15076,49606,'kill_vek_beam02_yellow',0), -(15077,49607,'kill_vek_beam03_blue',0), -(15078,49608,'kill_vek_beam03_green',0), -(15079,49609,'kill_vek_beam03_red',0), -(15080,49610,'kill_vek_beam03_yellow',0), -(15081,49611,'kill_vek_beam04_blue',0), -(15082,49612,'kill_vek_beam04_green',0), -(15083,49613,'kill_vek_beam04_red',0), -(15084,49614,'kill_vek_beam04_yellow',0), -(15085,49615,'kill_vek_map',0), -(15086,49616,'kill_vek_mapshine',0), -(15087,49617,'kill_vek_runes',0), -(15088,49618,'kill_vek_sunlight',0), -(15089,49624,'kill_fx_off',0), -(15090,49626,'kill_knocktoback_enter',0), -(15091,49627,'kill_knocktoback_exit',0), -(15092,49628,'kill_knocktoback_idle',0), -(15093,49629,'kill_result_brick_hit',0), -(15094,49631,'kill_status_quest_guide_gives',0), -(15095,49632,'kill_trdskl_brick',0), -(15096,49639,'kill_result_hand_rings_shimmer',0), -(15097,49641,'kill_snd_design_murderer',0), -(15098,49647,'kill_design_horse_carrot',0), -(15099,49648,'kill_design_rhino_carrot',0), -(15100,49649,'kill_design_warg_carrot',0), -(15101,49650,'kill_dn_goblin_beam_blue',0), -(15102,49651,'kill_dn_goblin_beam_green',0), -(15103,49652,'kill_dn_goblin_beam_red',0), -(15104,49653,'kill_dn_goblin_beam_yellow',0), -(15105,49661,'kill_void_storm',0), -(15106,49662,'kill_void_summon_portal',0), -(15107,49668,'kill_design_altar_chained',0), -(15108,49670,'kill_result_blue_glow',0), -(15109,49671,'kill_result_green_glow',0), -(15110,49672,'kill_result_orange_glow',0), -(15111,49673,'kill_result_purple_glow',0), -(15112,49680,'kill_result_drake_breath',0), -(15113,49681,'kill_result_napalm',0), -(15114,49682,'kill_result_void_fx',0), -(15115,49685,'kill_bear_backup',0), -(15116,49686,'kill_bear_fall',0), -(15117,49687,'kill_bear_idle',0), -(15118,49688,'kill_bear_jump',0), -(15119,49689,'kill_bear_jump_substitute',0), -(15120,49690,'kill_bear_land',0), -(15121,49691,'kill_bear_long_fall',0), -(15122,49692,'kill_bear_run',0), -(15123,49693,'kill_bear_turn_left',0), -(15124,49694,'kill_bear_turn_right',0), -(15125,49695,'kill_bear_walk',0), -(15126,49702,'kill_result_blood_boil',0), -(15127,49703,'kill_result_golem_rain',0), -(15128,49704,'kill_result_water_ball',0), -(15129,49705,'kill_result_water_burst',0), -(15130,49706,'kill_result_waterspout_p2p',0), -(15131,49709,'kill_cast_aoe_water_blast',0), -(15132,49710,'kill_cast_barnicle_blast',0), -(15133,49716,'kill_snd_claygolem_attack',0), -(15134,49724,'kill_sound_attackspin',0), -(15135,49725,'kill_sound_damagelow',0), -(15136,49726,'kill_sound_swimwalk',0), -(15137,49727,'kill_sound_walkbounce',0), -(15138,49728,'kill_sound_wildswingenter',0), -(15139,49735,'kill_persist_enrage',0), -(15140,49741,'kill_golem_charm',0), -(15141,49742,'kill_golem_shutdown',0), -(15142,49750,'kill_status_quest_gives_gray',0), -(15143,49758,'kill_trdskl_censer',0), -(15144,49764,'kill_dusting_off',0), -(15145,49772,'kill_snd_net_toss',0), -(15146,49779,'kill_result_barrel_break',0), -(15147,49780,'kill_result_brain_leaving',0), -(15148,49788,'kill_snd_barrel_cannon',0), -(15149,49796,'kill_sound_bookdeath',0), -(15150,49797,'kill_sound_thunder0',0), -(15151,49803,'kill_flock_of_seagulls',0), -(15152,49810,'kill_mistmoore_runes_fx',0), -(15153,49811,'kill_mistmoore_sun_fx',0), -(15154,49813,'kill_swim_backward',0), -(15155,49814,'kill_swim_forward',0), -(15156,49817,'kill_cast_energy_blob',0), -(15157,49818,'kill_cast_energy_blob_p2p',0), -(15158,49825,'kill_result_napalm_aoe',0), -(15159,49832,'kill_result_blood_puddle',0), -(15160,49833,'kill_result_cold_ice_crystals_head',0), -(15161,49834,'kill_result_ice_shackles',0), -(15162,49835,'kill_result_icicle_impale',0), -(15163,49836,'kill_result_snow_dust',0), -(15164,49837,'kill_result_void_splat',0), -(15165,49840,'kill_attack_bolts',0), -(15166,49843,'kill_cast_sword_head',0), -(15167,49846,'kill_result_sword_head',0), -(15168,49853,'kill_result_steam_column',0), -(15169,49861,'kill_sound_footsrape',0), -(15170,49862,'kill_sound_runbreathe',0), -(15171,49869,'kill_result_mesh_attack',0), -(15172,49874,'kill_cast_spin_buff',0), -(15173,49877,'kill_result_power_life_drain_p2p',0), -(15174,49883,'kill_design_ice_door_blast',0), -(15175,49889,'kill_design_rising_stairs_finish_fx',0), -(15176,49890,'kill_design_rising_stairs_fx',0), -(15177,49897,'kill_result_chomping_skulls',0), -(15178,49904,'kill_result_pulsing_note',0), -(15179,49910,'kill_design_ice_wall_breaking',0), -(15180,49913,'kill_sound_ice_shatter',0), -(15181,49916,'kill_cast_lost_souls',0), -(15182,49923,'kill_knockeddowntoknees',0), -(15183,49924,'kill_meditate',0), -(15184,49926,'kill_worship',0), -(15185,49929,'kill_cast_lasso',0), -(15186,49934,'kill_result_cobwebs',0), -(15187,49941,'kill_miragul_puzzle_blue_flasher',0), -(15188,49942,'kill_miragul_puzzle_blue_runes',0), -(15189,49943,'kill_miragul_puzzle_green_flasher',0), -(15190,49944,'kill_miragul_puzzle_green_runes',0), -(15191,49945,'kill_miragul_puzzle_lightning_orb',0), -(15192,49946,'kill_miragul_puzzle_red_flasher',0), -(15193,49947,'kill_miragul_puzzle_red_runes',0), -(15194,49948,'kill_miragul_puzzle_spire_beams',0), -(15195,49949,'kill_miragul_puzzle_splash_column',0), -(15196,49950,'kill_miragul_puzzle_yellow_flasher',0), -(15197,49951,'kill_miragul_puzzle_yellow_runes',0), -(15198,49954,'kill_cast_barnacle_blast',0), -(15199,49961,'kill_najena_face_lava',0), -(15200,49968,'kill_najena_dark_rune01',0), -(15201,49969,'kill_najena_dark_rune02',0), -(15202,49970,'kill_najena_dark_rune03',0), -(15203,49971,'kill_najena_dark_rune04',0), -(15204,49972,'kill_najena_dark_rune05',0), -(15205,49973,'kill_najena_light_rune01',0), -(15206,49974,'kill_najena_light_rune02',0), -(15207,49975,'kill_najena_light_rune03',0), -(15208,49976,'kill_najena_light_rune04',0), -(15209,49977,'kill_najena_light_rune05',0), -(15210,49978,'kill_najena_puzzle_complete',0), -(15211,49979,'kill_1h_dual_wield_enter',0), -(15212,49980,'kill_1h_dual_wield_exit',0), -(15213,49987,'kill_najena_lava_god_hands',0), -(15214,49988,'kill_najena_lava_god_skull',0), -(15215,49989,'kill_result_lava_column',0), -(15216,49996,'kill_najena_lava_curtain',0), -(15217,49997,'kill_najena_rune_key',0), -(15218,50000,'kill_cast_heat_sphere',0), -(15219,50007,'kill_result_dagger_back',0), -(15220,50008,'kill_result_melee_lifetap_p2p',0), -(15221,50010,'kill_vocal_idle',0), -(15222,50013,'kill_cast_bone_blast_blend',0), -(15223,50016,'kill_cast_wavy_bubble_shield',0), -(15224,50021,'kill_cast_shield_buff',0), -(15225,50028,'kill_result_hammer_buff',0), -(15226,50035,'kill_result_forced_shader_hologram',0), -(15227,50042,'kill_result_clanging_note',0), -(15228,50043,'kill_result_forced_shader_glass',0), -(15229,50044,'kill_result_swirling_note',0), -(15230,50047,'kill_cast_bone_blast_notes',0), -(15231,50052,'kill_result_notes_spiral_frenzy',0), -(15232,50054,'kill_vek_door_beam_blue',0), -(15233,50055,'kill_vek_door_beam_red',0), -(15234,50058,'kill_cast_bubble_ward',0), -(15235,50059,'kill_cast_dodge_buff',0), -(15236,50062,'kill_cast_shout_aoe',0), -(15237,50065,'kill_result_crush_blast',0), -(15238,50072,'kill_result_break_chains',0), -(15239,50077,'kill_cast_quick_shield',0), -(15240,50080,'kill_result_spike_blast',0), -(15241,50083,'kill_cast_bubble_ward_out',0), -(15242,50086,'kill_cast_shield_deflect',0), -(15243,50093,'kill_paper_scatter',0), -(15244,50101,'kill_skull_candles_head',0), -(15245,50106,'kill_cast_rings_aoe',0), -(15246,50112,'kill_design_void_eyes',0), -(15247,50113,'kill_design_void_portal',0), -(15248,50116,'kill_vocal_combat_idle',0), -(15249,50119,'kill_cast_melee_buff',0), -(15250,50122,'kill_cast_speed_buff',0), -(15251,50123,'kill_cast_wings',0), -(15252,50126,'kill_buff_fx',0), -(15253,50129,'kill_cast_rune_buff',0), -(15254,50130,'kill_cast_rune_spiral_buff',0), -(15255,50133,'kill_cast_ice_block',0), -(15256,50134,'kill_cast_leaf_buff',0), -(15257,50135,'kill_cast_leaf_spiral_buff',0), -(15258,50140,'kill_result_nature_storm',0), -(15259,50143,'kill_cast_fire_buff',0), -(15260,50144,'kill_cast_mental_buff',0), -(15261,50149,'kill_result_hail_storm',0), -(15262,50150,'kill_result_poison_skulls',0), -(15263,50153,'kill_cast_flash_rune_buff',0), -(15264,50161,'kill_serve',0), -(15265,50167,'kill_guk_barracks_poison',0), -(15266,50168,'kill_guk_crystal_cleanse',0), -(15267,50169,'kill_guk_temple_splashes_clean',0), -(15268,50170,'kill_guk_temple_splashes_poison',0), -(15269,50171,'kill_guk_waterfalls_poison',0), -(15270,50173,'kill_result_slime_wall',0), -(15271,50180,'kill_result_fly_breath',0), -(15272,50181,'kill_result_fly_swarm',0), -(15273,50188,'kill_result_poison_cloud_explosion',0), -(15274,50189,'kill_result_poison_splat',0), -(15275,50190,'kill_result_skull_attack_p2p',0), -(15276,50191,'kill_result_troll_curse',0), -(15277,50198,'kill_korsha_lift_blast',0), -(15278,50199,'kill_result_object_sparkles_blue',0), -(15279,50200,'kill_result_object_sparkles_green',0), -(15280,50201,'kill_result_object_sparkles_red',0), -(15281,50202,'kill_result_object_sparkles_white',0), -(15282,50209,'kill_result_head_flames',0), -(15283,50215,'kill_design_lamp_ignite',0), -(15284,50217,'kill_mr_lamp_fx_01',0), -(15285,50218,'kill_mr_lamp_fx_02',0), -(15286,50219,'kill_mr_lamp_fx_03',0), -(15287,50220,'kill_mr_lamp_fx_04',0), -(15288,50221,'kill_mr_lamp_fx_05',0), -(15289,50222,'kill_mr_lamp_fx_06',0), -(15290,50223,'kill_mr_lamp_ignite_sound',0), -(15291,50224,'kill_mr_lamp_sounds_finish',0), -(15292,50225,'kill_mr_lamp_sounds_start',0), -(15293,50231,'kill_design_result_black_out',0), -(15294,50233,'kill_result_bat_scare',0), -(15295,50235,'kill_whistle_toot_01',0), -(15296,50236,'kill_whistle_toot_02',0), -(15297,50237,'kill_whistle_toot_03',0), -(15298,50238,'kill_whistle_toot_04',0), -(15299,50239,'kill_whistle_toot_05',0), -(15300,50240,'kill_whistle_toot_06',0), -(15301,50241,'kill_whistle_toot_07',0), -(15302,50242,'kill_whistle_toot_08',0), -(15303,50243,'kill_whistle_toot_09',0), -(15304,50244,'kill_whistle_toot_10',0), -(15305,50245,'kill_whistle_toot_11',0), -(15306,50246,'kill_whistle_toot_12',0), -(15307,50247,'kill_whistle_toot_13',0), -(15308,50248,'kill_whistle_toot_14',0), -(15309,50254,'kill_eq2_music1',0), -(15310,50255,'kill_eq2_music2',0), -(15311,50256,'kill_frost_blast',0), -(15312,50257,'kill_fudge_drip',0), -(15313,50258,'kill_ice_blast_sound',0), -(15314,50259,'kill_icecream_drip',0), -(15315,50262,'kill_server_idle',0), -(15316,50263,'kill_server_shutdown',0), -(15317,50264,'kill_server_start',0), -(15318,50270,'kill_hourglass_active',0), -(15319,50271,'kill_hourglass_idle',0), -(15320,50277,'kill_frosty_crown',0), -(15321,50280,'kill_bf_lightning_gate_rm5',0), -(15322,50281,'kill_bf_lightning_gate_rm9',0), -(15323,50284,'kill_cast_void_portal',0), -(15324,50287,'kill_result_crystal_trap',0), -(15325,50294,'kill_lights_eyes',0), -(15326,50295,'kill_lights_pumpkin',0), -(15327,50296,'kill_result_pumpkin_smash',0), -(15328,50302,'kill_design_fairy_pet',0), -(15329,50307,'kill_cast_void_energy_cloud',0), -(15330,50308,'kill_cast_void_rune_barrier',0), -(15331,50309,'kill_cast_void_rune_circle',0), -(15332,50311,'kill_design_fist_fireworks',0), -(15333,50313,'kill_result_void_energy_barrier',0), -(15334,50314,'kill_result_void_energy_blast',0), -(15335,50315,'kill_result_void_energy_wave',0), -(15336,50318,'kill_cast_lightning_beam_converge',0), -(15337,50319,'kill_cast_lightning_beam_point',0), -(15338,50320,'kill_cast_lightning_blastdown',0), -(15339,50327,'kill_result_flesh_peel',0), -(15340,50328,'kill_result_god_spell_anashti_sul',0), -(15341,50329,'kill_result_god_spell_rodcet_nife',0), -(15342,50337,'kill_vp_shissar_new',0), -(15343,50338,'kill_vp_shissar_old',0), -(15344,50345,'kill_result_greenmist_attack_p2p',0), -(15345,50351,'kill_design_cannon_blast',0), -(15346,50352,'kill_design_cannon_chargeup',0), -(15347,50353,'kill_design_inno_cannon_fire1',0), -(15348,50354,'kill_design_inno_cannon_fire2',0), -(15349,50357,'kill_cast_energy_charge_up',0), -(15350,50362,'kill_mr_chargeup_sound',0), -(15351,50363,'kill_mr_lightning_chargeup',0), -(15352,50365,'kill_zepplin_enter',0), -(15353,50366,'kill_zepplin_exit',0), -(15354,50367,'kill_zepplin_fall',0), -(15355,50368,'kill_zepplin_idle',0), -(15356,50369,'kill_zepplin_jump',0), -(15357,50370,'kill_zepplin_land',0), -(15358,50371,'kill_zepplin_run',0), -(15359,50372,'kill_zepplin_walk',0), -(15360,50378,'kill_idle_sound',0), -(15361,50381,'kill_zeppelin_enter',0), -(15362,50382,'kill_zeppelin_exit',0), -(15363,50383,'kill_zeppelin_fall',0), -(15364,50384,'kill_zeppelin_glide',0), -(15365,50385,'kill_zeppelin_idle',0), -(15366,50386,'kill_zeppelin_jump',0), -(15367,50387,'kill_zeppelin_land',0), -(15368,50388,'kill_zeppelin_run',0), -(15369,50389,'kill_zeppelin_walk',0), -(15370,50390,'kill_zepplin_glide',0), -(15371,50393,'kill_cast_energy_blast_aoe',0), -(15372,50398,'kill_result_energy_wave_p2p',0), -(15373,50405,'kill_result_void_implode',0), -(15374,50407,'kill_void_beam_sound',0), -(15375,50408,'kill_void_door_beam',0), -(15376,50415,'kill_persist_evil_stun',0), -(15377,50416,'kill_result_spear_hit',0), -(15378,50418,'kill_trdskl_spear',0), -(15379,50424,'kill_energy_flow_sound',0), -(15380,50426,'kill_mistmoore_energy_flow01',0), -(15381,50427,'kill_mistmoore_energy_flow02',0), -(15382,50428,'kill_mistmoore_energy_flow03',0), -(15383,50429,'kill_mistmoore_energy_flow04',0), -(15384,50430,'kill_mistmoore_energy_flow05',0), -(15385,50431,'kill_result_lightning_cage',0), -(15386,50432,'kill_result_rune_ethernaughts',0), -(15387,50435,'kill_burrow',0), -(15388,50436,'kill_burrow_sound',0), -(15389,50440,'kill_design_chain_release',0), -(15390,50441,'kill_design_chained',0), -(15391,50443,'kill_mistmoore_coffin_glow',0), -(15392,50451,'kill_void_blast_wave',0), -(15393,50454,'kill_blast_bolt',0), -(15394,50457,'kill_cast_speed_trail',0), -(15395,50460,'kill_result_cyclone_bones',0), -(15396,50463,'kill_cast_hand_slash',0), -(15397,50468,'kill_result_hand_choke',0), -(15398,50469,'kill_result_spike_trap',0), -(15399,50470,'kill_result_string_trap',0), -(15400,50471,'kill_run_sound',0), -(15401,50473,'kill_wood_sound',0), -(15402,50481,'kill_void_portal_sound',0), -(15403,50482,'kill_void_summon_sound',0), -(15404,50483,'kill_void_teleporter',0), -(15405,50491,'kill_varsoon_portal_collapse',0), -(15406,50492,'kill_varsoon_void_portal',0), -(15407,50499,'kill_result_void_tether_p2p',0), -(15408,50501,'kill_varsoon_crystal_1',0), -(15409,50502,'kill_varsoon_crystal_2',0), -(15410,50503,'kill_varsoon_crystal_3',0), -(15411,50509,'kill_design_blue_sun',0), -(15412,50510,'kill_design_red_sun',0), -(15413,50511,'kill_design_red_sun_sound',0), -(15414,50512,'kill_design_sun_sound',0), -(15415,50514,'kill_result_void_crystal_p2p',0), -(15416,50516,'kill_void_beam_blue',0), -(15417,50517,'kill_void_beam_red',0), -(15418,50520,'kill_cast_5',0), -(15419,50524,'kill_design_lattice_activate',0), -(15420,50525,'kill_design_void_energy_activate',0), -(15421,50528,'kill_void_energy_activate_sound',0), -(15422,50529,'kill_void_energy_sound',0), -(15423,50536,'kill_result_blast_ring',0), -(15424,50538,'kill_void_energy_barrier',0), -(15425,50539,'kill_void_energy_barrier_blast',0), -(15426,50547,'kill_void_energy_channeling_p2p',0), -(15427,50553,'kill_design_result_cloudy_head',0), -(15428,50555,'kill_result_dark_mist',0), -(15429,50556,'kill_result_sparkle_mist',0), -(15430,50559,'kill_cast_meteor_storm',0), -(15431,50564,'kill_result_meteor_storm',0), -(15432,50565,'kill_result_neg_flux',0), -(15433,50566,'kill_result_neg_flux_storm',0), -(15434,50567,'kill_result_void_explode',0), -(15435,50568,'kill_result_void_ragestorm',0), -(15436,50569,'kill_result_void_storm',0), -(15437,50572,'kill_cast_manta_bolt_p2p',0), -(15438,50573,'kill_cast_manta_tail_beam',0), -(15439,50574,'kill_cast_manta_tail_flare',0), -(15440,50575,'kill_cast_nether_blast',0), -(15441,50576,'kill_cast_nether_storm',0), -(15442,50579,'kill_cast_sucking_charge_up',0), -(15443,50582,'kill_result_anashti_curse',0), -(15444,50583,'kill_result_anashti_tempest',0), -(15445,50586,'kill_anashti_summon',0), -(15446,50587,'kill_anashti_transform',0), -(15447,50588,'kill_anashti_vortex',0), -(15448,50591,'kill_attack_breath_inhale',0), -(15449,50592,'kill_attack_burst',0), -(15450,50593,'kill_attack_dark_breath',0), -(15451,50594,'kill_attack_wing_bolts',0), -(15452,50601,'kill_result_misty_snare',0), -(15453,50604,'kill_cast_arcane_blast_aoe',0), -(15454,50609,'kill_result_melee_swipe',0), -(15455,50610,'kill_result_melee_wild_swipe',0), -(15456,50615,'kill_cast_sparkling_dust_aoe',0), -(15457,50622,'kill_result_gnollslayer',0), -(15458,50623,'kill_result_gnollslayer_burst',0), -(15459,50624,'kill_result_skull_debuff',0), -(15460,50631,'kill_result_quick_heal',0), -(15461,50634,'kill_bear_tail',0), -(15462,50637,'kill_bear_sprint',0), -(15463,50640,'kill_bear_attack_sound',0), -(15464,50641,'kill_bear_battlecry_sound',0), -(15465,50642,'kill_bear_dead_sound',0), -(15466,50643,'kill_bear_deadfall_sound',0), -(15467,50644,'kill_bear_headshake_sound',0), -(15468,50645,'kill_bear_idle_sound',0), -(15469,50646,'kill_bear_idle_sound_omit',0), -(15470,50647,'kill_bear_ouch_sound',0), -(15471,50648,'kill_bear_sniff_sound',0), -(15472,50654,'kill_fae_dark_bear_backup',0), -(15473,50655,'kill_fae_dark_bear_idle',0), -(15474,50656,'kill_fae_dark_bear_jump',0), -(15475,50657,'kill_fae_dark_bear_jump_substitute',0), -(15476,50658,'kill_fae_dark_bear_run',0), -(15477,50659,'kill_fae_dark_bear_sprint',0), -(15478,50660,'kill_fae_dark_bear_turn_left',0), -(15479,50661,'kill_fae_dark_bear_turn_right',0), -(15480,50662,'kill_fae_dark_bear_walk',0), -(15481,50663,'kill_fae_light_bear_backup',0), -(15482,50664,'kill_fae_light_bear_idle',0), -(15483,50665,'kill_fae_light_bear_jump',0), -(15484,50666,'kill_fae_light_bear_jump_substitute',0), -(15485,50667,'kill_fae_light_bear_run',0), -(15486,50668,'kill_fae_light_bear_sprint',0), -(15487,50669,'kill_fae_light_bear_turn_left',0), -(15488,50670,'kill_fae_light_bear_turn_right',0), -(15489,50671,'kill_fae_light_bear_walk',0), -(15490,50672,'kill_froglok_bear_backup',0), -(15491,50673,'kill_froglok_bear_idle',0), -(15492,50674,'kill_froglok_bear_jump',0), -(15493,50675,'kill_froglok_bear_jump_substitute',0), -(15494,50676,'kill_froglok_bear_run',0), -(15495,50677,'kill_froglok_bear_sprint',0), -(15496,50678,'kill_froglok_bear_turn_left',0), -(15497,50679,'kill_froglok_bear_turn_right',0), -(15498,50680,'kill_froglok_bear_walk',0), -(15499,50686,'kill_footstep_sound',0), -(15500,50693,'kill_result_fireworks_flower',0), -(15501,50694,'kill_result_fireworks_foamy_burst',0), -(15502,50695,'kill_result_fireworks_rainbow',0), -(15503,50697,'kill_tiered_blast_cone',0), -(15504,50698,'kill_tiered_blood_lust',0), -(15505,50699,'kill_tiered_crush_blast',0), -(15506,50700,'kill_tiered_cyclone',0), -(15507,50701,'kill_tiered_defensive_buff',0), -(15508,50702,'kill_tiered_dustpuff_rfoot',0), -(15509,50703,'kill_tiered_flash_weapon',0), -(15510,50704,'kill_tiered_glow_distort',0), -(15511,50705,'kill_tiered_motion_lines',0), -(15512,50706,'kill_tiered_motion_lines_sub',0), -(15513,50707,'kill_tiered_offensive_buff',0), -(15514,50708,'kill_tiered_shout',0), -(15515,50709,'kill_tiered_sparkle_trail_weapon',0), -(15516,50710,'kill_tiered_sparks_hit',0), -(15517,50711,'kill_tiered_taunt',0), -(15518,50712,'kill_tiered_weapon_trail_fire',0), -(15519,50718,'kill_gathering_end',0), -(15520,50719,'kill_gathering_loop',0), -(15521,50720,'kill_gathering_start',0), -(15522,50721,'kill_idle_afraid',0), -(15523,50722,'kill_idle_angry',0), -(15524,50725,'kill_bearwalk',0), -(15525,50731,'kill_tiered_blast_hit',0), -(15526,50732,'kill_tiered_flash',0), -(15527,50733,'kill_tiered_melee_swipe',0), -(15528,50734,'kill_tiered_shield',0), -(15529,50735,'kill_tiered_slash_hit',0), -(15530,50743,'kill_tiered_shield_blast',0), -(15531,50744,'kill_tiered_slow',0), -(15532,50750,'kill_design_powerarray_electric',0), -(15533,50751,'kill_design_powerarray_void',0), -(15534,50752,'kill_gathering_enter',0), -(15535,50753,'kill_gathering_exit',0), -(15536,50756,'kill_attack_disarm',0), -(15537,50760,'kill_design_ice_fan_side',0), -(15538,50761,'kill_design_ice_fan_up',0), -(15539,50762,'kill_design_najena_barrier',0), -(15540,50765,'kill_sound_attack_disarm',0), -(15541,50766,'kill_sound_fan_start',0), -(15542,50767,'kill_sound_wind_blast',0), -(15543,50768,'kill_tiered_rune_buff',0), -(15544,50774,'kill_electric_fx',0), -(15545,50776,'kill_particle_mood_idle',0), -(15546,50778,'kill_sound_buff_electric',0), -(15547,50779,'kill_sound_buff_void',0), -(15548,50780,'kill_void_fx',0), -(15549,50786,'kill_design_najena_electric_water',0), -(15550,50788,'kill_result_dragon_breath_p2p',0), -(15551,50789,'kill_result_electric_beam_p2p',0), -(15552,50790,'kill_result_void_beam_p2p',0), -(15553,50796,'kill_design_najena_fire',0), -(15554,50797,'kill_design_najena_lightning',0), -(15555,50798,'kill_design_najena_poison',0), -(15556,50799,'kill_design_najena_portals',0), -(15557,50800,'kill_design_najena_snow',0), -(15558,50801,'kill_design_najena_water',0), -(15559,50807,'kill_elemental_fire_hands',0), -(15560,50808,'kill_fire_summon_portal',0), -(15561,50811,'kill_sound_fire_vortex',0), -(15562,50814,'kill_badger_buff',0), -(15563,50819,'kill_mushroom_buff',0), -(15564,50821,'kill_snake_buff',0), -(15565,50824,'kill_cast_lava_shield',0), -(15566,50829,'kill_result_rock_blast_wave',0), -(15567,50831,'kill_summon_fx',0), -(15568,50832,'kill_transform_fx',0), -(15569,50840,'kill_tiered_anger_buff',0), -(15570,50841,'kill_tiered_hand_buff',0), -(15571,50847,'kill_design_fire_wall',0), -(15572,50848,'kill_design_fire_wall_opening',0), -(15573,50849,'kill_design_rock_wall',0), -(15574,50850,'kill_design_rock_wall_breaking',0), -(15575,50853,'kill_aoe_ice_blast',0), -(15576,50854,'kill_aoe_rock_blast',0), -(15577,50855,'kill_cast_air_charge',0), -(15578,50856,'kill_cast_earth_charge',0), -(15579,50857,'kill_cast_fire_charge',0), -(15580,50858,'kill_cast_ice_blast_out',0), -(15581,50859,'kill_cast_ice_column',0), -(15582,50862,'kill_cast_water_charge',0), -(15583,50869,'kill_persist_book_dervish',0), -(15584,50875,'kill_design_elemental_wall',0), -(15585,50876,'kill_design_elemental_wall_breaking',0), -(15586,50879,'kill_sound_electric',0), -(15587,50880,'kill_sound_rock_breaking',0), -(15588,50881,'kill_tiered_bubble_pop',0), -(15589,50882,'kill_tiered_power_gather',0), -(15590,50883,'kill_tiered_quick_heal',0), -(15591,50884,'kill_tiered_rune_in_buff',0), -(15592,50885,'kill_tiered_rune_out_buff',0), -(15593,50886,'kill_tiered_speed',0), -(15594,50887,'kill_tiered_spikes_hit',0), -(15595,50888,'kill_tiered_stifle',0), -(15596,50896,'kill_tiered_defense_buff',0), -(15597,50904,'kill_tiered_bubble_shield',0), -(15598,50905,'kill_tiered_offense_buff',0), -(15599,50906,'kill_tiered_root',0), -(15600,50914,'kill_tiered_charge_up',0), -(15601,50922,'kill_tiered_bubble_shield_in',0), -(15602,50923,'kill_tiered_evil_rune_base',0), -(15603,50924,'kill_tiered_good_rune_base',0), -(15604,50925,'kill_tiered_skull_lifetap',0), -(15605,50933,'kill_tiered_boiling_circle',0), -(15606,50941,'kill_tiered_cloud_blast',0), -(15607,50942,'kill_tiered_diseased',0), -(15608,50943,'kill_tiered_grip_blast',0), -(15609,50951,'kill_tiered_flash_vanish',0), -(15610,50952,'kill_tiered_rune_base',0), -(15611,50953,'kill_tiered_sparkle_cling',0), -(15612,50961,'kill_tiered_dark_mist',0), -(15613,50962,'kill_tiered_mana_drain_p2p',0), -(15614,50968,'kill_design_electric_barrier_round',0), -(15615,50969,'kill_design_fire_barrier_round',0), -(15616,50970,'kill_design_poison_barrier_round',0), -(15617,50971,'kill_design_snow_barrier_round',0), -(15618,50972,'kill_design_water_barrier_round',0), -(15619,50975,'kill_tiered_lost_souls',0), -(15620,50983,'kill_tiered_rock_shield',0), -(15621,50984,'kill_tiered_stance_base',0), -(15622,50985,'kill_waist_tracking_off_trigger',0), -(15623,50992,'kill_result_forced_shader_soot',0), -(15624,50994,'kill_tiered_energy_blob_p2p',0), -(15625,50995,'kill_tiered_heal_hands_blast',0), -(15626,50996,'kill_tiered_healing_rays',0), -(15627,51004,'kill_tiered_blessed_hand',0), -(15628,51005,'kill_tiered_castigate',0), -(15629,51006,'kill_tiered_sparkle_swirl',0), -(15630,51012,'kill_design_void_barrier',0), -(15631,51020,'kill_tiered_defense_buff_brawler',0), -(15632,51028,'kill_tiered_feet_buff',0), -(15633,51029,'kill_tiered_feet_sparks',0), -(15634,51030,'kill_tiered_flame_burst',0), -(15635,51031,'kill_tiered_frenzy',0), -(15636,51032,'kill_tiered_hand_sparks',0), -(15637,51033,'kill_tiered_offense_buff_brawler',0), -(15638,51034,'kill_tiered_rune_buff_brawler',0), -(15639,51035,'kill_tiered_sparkle_scan_up',0), -(15640,51043,'kill_tiered_balance_buff_brawler',0), -(15641,51044,'kill_tiered_focus_spark',0), -(15642,51045,'kill_tiered_second_skin',0), -(15643,51046,'kill_tiered_sonic_punch',0), -(15644,51047,'kill_tiered_wavy_shield_out',0), -(15645,51055,'kill_snd_ape',0), -(15646,51056,'kill_snd_bear_roar',0), -(15647,51057,'kill_snd_hawk_scream',0), -(15648,51058,'kill_snd_monkey',0), -(15649,51059,'kill_snd_owl_hoot',0), -(15650,51065,'kill_design_fae_drake_pet',0), -(15651,51068,'kill_snd_wave_crash',0), -(15652,51069,'kill_tiered_mountain',0), -(15653,51070,'kill_tiered_phoenix_blast',0), -(15654,51071,'kill_tiered_plasma_burst',0), -(15655,51072,'kill_tiered_water_burst',0), -(15656,51080,'kill_tiered_dragon_breath',0), -(15657,51081,'kill_tiered_fear_skulls',0), -(15658,51082,'kill_tiered_hand_flare',0), -(15659,51083,'kill_tiered_heart_beat',0), -(15660,51089,'kill_design_dark_rez',0), -(15661,51090,'kill_design_void_dome',0), -(15662,51091,'kill_heal_lifetap_p2p',0), -(15663,51092,'kill_iksar_ghost_rez_p2p',0), -(15664,51095,'kill_tiered_skull',0), -(15665,51101,'kill_design_gas_fire_blast',0), -(15666,51102,'kill_design_gas_fire_warning',0), -(15667,51104,'kill_result_void_fx_alt',0), -(15668,51110,'kill_design_boiling_energy_blast',0), -(15669,51111,'kill_design_boiling_energy_warning',0), -(15670,51114,'kill_sound_electric_burst',0), -(15671,51117,'kill_cast_boiling_energy',0), -(15672,51121,'kill_design_gas_fire_blast_up',0), -(15673,51122,'kill_design_gas_fire_warning_up',0), -(15674,51123,'kill_design_void_dome_blue',0), -(15675,51124,'kill_design_void_dome_red',0), -(15676,51131,'kill_result_arc_tether_p2p',0), -(15677,51132,'kill_result_rose_petals',0), -(15678,51140,'kill_tiered_plasma_hit',0), -(15679,51143,'kill_cast_back_rune_wheel',0), -(15680,51144,'kill_cast_base_rune_wheel',0), -(15681,51145,'kill_cast_forward_rune_wheel',0), -(15682,51151,'kill_tiered_agility_buff',0), -(15683,51152,'kill_tiered_charge_weapon',0), -(15684,51153,'kill_tiered_energy_beam_p2p',0), -(15685,51154,'kill_tiered_fire_slam',0), -(15686,51155,'kill_tiered_fire_tube',0), -(15687,51156,'kill_tiered_hand_rings',0), -(15688,51157,'kill_tiered_head_ring',0), -(15689,51158,'kill_tiered_intellect_buff',0), -(15690,51159,'kill_tiered_rays_out',0), -(15691,51160,'kill_tiered_rune_drop_base',0), -(15692,51161,'kill_tiered_rune_forward',0), -(15693,51162,'kill_tiered_rune_rise_base',0), -(15694,51163,'kill_tiered_rune_rise_buff',0), -(15695,51164,'kill_tiered_rune_root',0), -(15696,51165,'kill_tiered_rune_swirl',0), -(15697,51166,'kill_tiered_self_lifetap',0), -(15698,51167,'kill_tiered_stamina_buff',0), -(15699,51168,'kill_tiered_strength_buff',0), -(15700,51169,'kill_tiered_weapon_buff_charge',0), -(15701,51170,'kill_tiered_wisdom_buff',0), -(15702,51178,'kill_tiered_blast_circle',0), -(15703,51179,'kill_tiered_chain_root',0), -(15704,51180,'kill_tiered_cold_blast',0), -(15705,51181,'kill_tiered_column_blast_circle',0), -(15706,51182,'kill_tiered_fire_column',0), -(15707,51183,'kill_tiered_fireball_p2p',0), -(15708,51184,'kill_tiered_frostball_p2p',0), -(15709,51185,'kill_tiered_glacial_wall',0), -(15710,51186,'kill_tiered_hand_runes',0), -(15711,51187,'kill_tiered_ice_root',0), -(15712,51188,'kill_tiered_icicle_blast_p2p',0), -(15713,51189,'kill_tiered_particle_transfer_p2p',0), -(15714,51190,'kill_tiered_rune_chain_swirl',0), -(15715,51191,'kill_tiered_windy_tube_p2p',0), -(15716,51199,'kill_tiered_blast_cone_forward',0), -(15717,51200,'kill_tiered_cold_fusion',0), -(15718,51201,'kill_tiered_dots_explode',0), -(15719,51202,'kill_tiered_forced_shader_burst',0), -(15720,51203,'kill_tiered_frosty_swirls',0), -(15721,51204,'kill_tiered_magic_waves',0), -(15722,51205,'kill_tiered_ring_blast_p2p',0), -(15723,51208,'kill_cast_enchanter_wheel_back',0), -(15724,51209,'kill_cast_enchanter_wheel_base',0), -(15725,51210,'kill_cast_enchanter_wheel_forward',0), -(15726,51213,'kill_cast_summoner_wheel_back',0), -(15727,51214,'kill_cast_summoner_wheel_base',0), -(15728,51215,'kill_cast_summoner_wheel_forward',0), -(15729,51219,'kill_tiered_poisonball_p2p',0), -(15730,51220,'kill_tiered_poisoned',0), -(15731,51221,'kill_tiered_rune_spikes_swirl',0), -(15732,51222,'kill_tiered_spikes_root',0), -(15733,51230,'kill_tiered_column_poison_blast',0), -(15734,51231,'kill_tiered_hand_evil_runes',0), -(15735,51232,'kill_tiered_poison_breath',0), -(15736,51235,'kill_cast_hand_energy_artifact',0), -(15737,51239,'kill_design_hand_energy_artifact',0), -(15738,51241,'kill_result_sparkles_crackle_out',0), -(15739,51242,'kill_result_wings_grow',0), -(15740,51244,'kill_tiered_power_drain_p2p',0), -(15741,51247,'kill_cast_flash_jump_attack',0), -(15742,51252,'kill_result_forced_shader_rock_blue',0), -(15743,51253,'kill_result_forced_shader_rock_green',0), -(15744,51254,'kill_result_forced_shader_rock_purple',0), -(15745,51255,'kill_result_forced_shader_rock_yellow',0), -(15746,51256,'kill_result_iksar_statue_beam_p2p',0), -(15747,51257,'kill_result_root_magic',0), -(15748,51258,'kill_result_stifle_magic',0), -(15749,51265,'kill_result_shackles_void',0), -(15750,51271,'kill_design_bixie_pet',0), -(15751,51272,'kill_design_bones_shockwave',0), -(15752,51273,'kill_design_void_shield',0), -(15753,51276,'kill_cast_column_blast_circle',0), -(15754,51277,'kill_cast_goo_bubble_bursting',0), -(15755,51280,'kill_cast_raise_dead_column',0), -(15756,51283,'kill_result_bone_cyclone',0), -(15757,51284,'kill_result_cold_blast_snow',0), -(15758,51285,'kill_result_flame_burst',0), -(15759,51286,'kill_result_gloop_root',0), -(15760,51293,'kill_result_boot_kick',0), -(15761,51294,'kill_result_sonic_trail',0), -(15762,51300,'kill_design_barrier_void',0), -(15763,51301,'kill_design_er_light_beam_p2p',0), -(15764,51302,'kill_design_er_target_cube',0), -(15765,51308,'kill_design_erudin_column_fx',0), -(15766,51309,'kill_design_shield_drop',0), -(15767,51312,'kill_sound_electrified',0), -(15768,51313,'kill_sound_shield_drop',0), -(15769,51316,'kill_attack_eye_beams',0), -(15770,51319,'kill_charge_mouth_fx',0), -(15771,51321,'kill_design_gazer_eye_beam_p2p',0), -(15772,51322,'kill_fx_eye_beam1',0), -(15773,51323,'kill_fx_eye_beam2',0), -(15774,51324,'kill_fx_eye_beam3',0), -(15775,51325,'kill_fx_eye_beam4',0), -(15776,51326,'kill_fx_eye_beam5',0), -(15777,51327,'kill_fx_eye_charge',0), -(15778,51329,'kill_result_disintegrate',0), -(15779,51331,'kill_sound_charge',0), -(15780,51332,'kill_sound_charge_blast',0), -(15781,51338,'kill_design_erudin_wind_boost',0), -(15782,51339,'kill_design_rocket_pack',0), -(15783,51342,'kill_wind_blast_sound',0), -(15784,51345,'kill_attack_eye_ring',0), -(15785,51349,'kill_design_erudin_column_charge',0), -(15786,51350,'kill_design_gazer_main_eye_beam_p2p',0), -(15787,51352,'kill_result_melt',0), -(15788,51354,'kill_sit',0), -(15789,51355,'kill_sit_to_idle',0), -(15790,51361,'kill_design_erudin_gazer_barrier',0), -(15791,51363,'kill_power_on',0), -(15792,51369,'kill_design_erudin_gun_plugged',0), -(15793,51370,'kill_design_erudin_gun_unplugged',0), -(15794,51371,'kill_habitat01',0), -(15795,51372,'kill_habitat02',0), -(15796,51373,'kill_habitat03',0), -(15797,51374,'kill_idle01_stone',0), -(15798,51375,'kill_idle_stone',0), -(15799,51377,'kill_scarecrow_post_idle',0), -(15800,51379,'kill_shield_bash',0), -(15801,51385,'kill_design_bat_pet',0), -(15802,51387,'kill_result_bubble_glow',0), -(15803,51388,'kill_result_leaf_blow_glow',0), -(15804,51395,'kill_result_splat_add',0), -(15805,51400,'kill_cast_summon',0), -(15806,51402,'kill_design_guardian_wisp_summon_p2p',0), -(15807,51404,'kill_result_buble_leaf_blast',0), -(15808,51410,'kill_design_eru_book_cyclone',0), -(15809,51411,'kill_design_eru_book_ramp',0), -(15810,51417,'kill_design_erudin_teleport_good',0), -(15811,51418,'kill_design_erudin_teleport_trap',0), -(15812,51420,'kill_result_teleport_ring_vanish',0), -(15813,51422,'kill_tiered_unyielding_will',0), -(15814,51430,'kill_tiered_black_hole',0), -(15815,51438,'kill_sound_bark',0), -(15816,51439,'kill_sound_combat_idle',0), -(15817,51440,'kill_sound_dead_fall',0), -(15818,51441,'kill_sound_death_whimper',0), -(15819,51442,'kill_sound_pant',0), -(15820,51443,'kill_sound_sniff',0), -(15821,51449,'kill_design_icy_barrier',0), -(15822,51451,'kill_result_teleport_icy_vanish',0), -(15823,51459,'kill_tiered_acid_storm',0), -(15824,51460,'kill_tiered_bone_cage',0), -(15825,51461,'kill_tiered_dark_cyclone',0), -(15826,51462,'kill_tiered_rift',0), -(15827,51463,'kill_tiered_skull_summon',0), -(15828,51464,'kill_tiered_skull_swirls',0), -(15829,51471,'kill_rain_of_shinies',0), -(15830,51474,'kill_cast_gathering_charge_up',0), -(15831,51479,'kill_result_charge_tag',0), -(15832,51480,'kill_result_nuke_blast',0), -(15833,51481,'kill_result_pillar_blast',0), -(15834,51482,'kill_result_pillar_slam',0), -(15835,51483,'kill_result_precharge_blast',0), -(15836,51489,'kill_design_book_shield1',0), -(15837,51490,'kill_design_book_shield2',0), -(15838,51491,'kill_design_book_shield3',0), -(15839,51492,'kill_design_book_summon1',0), -(15840,51493,'kill_design_book_summon2',0), -(15841,51494,'kill_design_book_summon3',0), -(15842,51497,'kill_badge_acquired',0), -(15843,51501,'kill_cooked/characters/ec/core/mounts/pegasus/pegasus_glide.anim',0), -(15844,51502,'kill_design_claw_face',0), -(15845,51504,'kill_pegasus_glide',0), -(15846,51505,'kill_pegasus_idle',0), -(15847,51506,'kill_pegasus_run',0), -(15848,51507,'kill_pegasus_walk',0), -(15849,51509,'kill_sound_vortex',0), -(15850,51514,'kill_coin_drop_snd',0), -(15851,51516,'kill_design_coin_drop',0), -(15852,51522,'kill_design_air_portal',0), -(15853,51523,'kill_design_fear_portal',0), -(15854,51524,'kill_design_growth_portal',0), -(15855,51525,'kill_design_water_portal',0), -(15856,51531,'kill_design_clouds_parting',0), -(15857,51532,'kill_design_summon',0), -(15858,51533,'kill_design_unsummon',0), -(15859,51539,'kill_design_death_beam_p2p',0), -(15860,51540,'kill_design_statue_death_beam_p2p',0), -(15861,51541,'kill_design_statue_power',0), -(15862,51542,'kill_design_zapper_bolt_p2p',0), -(15863,51549,'kill_result_forced_shader_shadow',0), -(15864,51550,'kill_result_ghost_trap',0), -(15865,51556,'kill_cooked/characters/ec/core/mounts/pegasus/pegasus_run.anim',0), -(15866,51557,'kill_design_coffin_explode',0), -(15867,51558,'kill_design_coffin_lid',0), -(15868,51559,'kill_design_erollisi_essence',0), -(15869,51560,'kill_design_erollisi_evil_essence',0), -(15870,51561,'kill_design_light_rays',0), -(15871,51563,'kill_pegasus_fly',0), -(15872,51566,'kill_cast_enter',0), -(15873,51567,'kill_cast_exit',0), -(15874,51568,'kill_cast_idle',0), -(15875,51574,'kill_design_marr_godly_light',0), -(15876,51575,'kill_design_marr_godly_teleport',0), -(15877,51577,'kill_result_sparkles_cling_drop_bounce',0), -(15878,51583,'kill_design_flaming_pumpkin_p2p',0), -(15879,51586,'kill_snd_splat',0), -(15880,51587,'kill_trdskl_flaming_pumpkin',0), -(15881,51594,'kill_result_cold_summon_portal',0), -(15882,51595,'kill_result_teleport_blast_up',0), -(15883,51596,'kill_result_teleport_fold',0), -(15884,51598,'kill_sound_attack_grunt',0), -(15885,51599,'kill_sound_attack_stab',0), -(15886,51600,'kill_sound_attack_vo',0), -(15887,51601,'kill_sound_attack_vo_01',0), -(15888,51602,'kill_sound_attack_whip_high',0), -(15889,51603,'kill_sound_attack_whip_low',0), -(15890,51604,'kill_sound_attack_whip_low_01',0), -(15891,51605,'kill_sound_attack_whirl',0), -(15892,51606,'kill_sound_cast_enter_bodynoise_01',0), -(15893,51607,'kill_sound_cast_enter_bodynoise_02',0), -(15894,51608,'kill_sound_cast_enter_roar',0), -(15895,51609,'kill_sound_cast_exit_roar',0), -(15896,51610,'kill_sound_cast_exit_spring',0), -(15897,51611,'kill_sound_cast_idle',0), -(15898,51612,'kill_sound_combat_art_buff_bodynoise_01',0), -(15899,51613,'kill_sound_combat_art_buff_bodynoise_02',0), -(15900,51614,'kill_sound_combat_art_buff_roar',0), -(15901,51615,'kill_sound_footstep_deep',0), -(15902,51616,'kill_sound_footstep_small',0), -(15903,51617,'kill_sound_idle_bodynoise',0), -(15904,51618,'kill_sound_idle_breath',0), -(15905,51619,'kill_sound_idle_breath_01',0), -(15906,51620,'kill_sound_rockbody',0), -(15907,51621,'kill_sound_roperbodynoise_quick',0), -(15908,51622,'kill_sound_roperbodynoise_slow',0), -(15909,51625,'kill_cast_ice_pulse',0), -(15910,51626,'kill_cast_icicle_spin_blast',0), -(15911,51631,'kill_result_icicle_hit',0), -(15912,51634,'kill_attack_head_butt',0), -(15913,51635,'kill_attack_trample',0), -(15914,51642,'kill_result_lightning_bolt_blast',0), -(15915,51643,'kill_result_mana_drain_p2p',0), -(15916,51644,'kill_result_rainy_black_cloud',0), -(15917,51645,'kill_result_spikes_hit',0), -(15918,51650,'kill_cast_stomp_blast_aoe',0), -(15919,51653,'kill_result_banish',0), -(15920,51654,'kill_result_banish_wisps_p2p',0), -(15921,51655,'kill_result_icicle_storm',0), -(15922,51661,'kill_design_ice_chains',0), -(15923,51663,'kill_screech_attack',0), -(15924,51665,'kill_sound_head_butt',0), -(15925,51671,'kill_design_bone_barrier',0), -(15926,51673,'kill_result_fireworks_shinies',0), -(15927,51676,'kill_cannon_blast',0), -(15928,51681,'kill_kneel_enter',0), -(15929,51682,'kill_kneel_exit',0), -(15930,51683,'kill_kneel_idle',0), -(15931,51684,'kill_result_octopus_cannon_p2p',0), -(15932,51685,'kill_result_octopus_splat_grab',0), -(15933,51691,'kill_design_vd_bone_swirls',0), -(15934,51692,'kill_design_vd_portal',0), -(15935,51693,'kill_design_void_tainted',0), -(15936,51694,'kill_flight_path_dawn',0), -(15937,51701,'kill_result_plasma_bolt_p2p',0), -(15938,51706,'kill_cast_sea_dragon_breath',0), -(15939,51707,'kill_cast_sea_dragon_inhale',0), -(15940,51708,'kill_cast_sea_dragon_powerup',0), -(15941,51710,'kill_converse01',0), -(15942,51711,'kill_converse02',0), -(15943,51713,'kill_panda_chi',0), -(15944,51715,'kill_sit_eat',0), -(15945,51716,'kill_yells_charge',0), -(15946,51722,'kill_hover_idle',0), -(15947,51728,'kill_design_hedge_marker',0), -(15948,51729,'kill_design_sol_lock_symbol',0), -(15949,51730,'kill_h_sword_attack',0), -(15950,51732,'kill_panda_dance01',0), -(15951,51733,'kill_panda_dance02',0), -(15952,51734,'kill_result_sea_dragon_buff_aoe',0), -(15953,51740,'kill_design_marr_sword_blast',0), -(15954,51741,'kill_design_vision_plane_spires',0), -(15955,51747,'kill_design_sol_chapel_debris',0), -(15956,51753,'kill_design_hole_pillar_corruption',0), -(15957,51759,'kill_design_sol_coffin_body_fx',0), -(15958,51765,'kill_design_spider_face',0), -(15959,51771,'kill_design_vd_shrine_blast',0), -(15960,51777,'kill_design_hole_summon_circle1',0), -(15961,51778,'kill_design_hole_summon_circle2',0), -(15962,51779,'kill_design_hole_summon_circle3',0), -(15963,51780,'kill_design_hole_summon_circle4',0), -(15964,51781,'kill_design_hole_summon_circles',0), -(15965,51788,'kill_result_fireworks_rose_petals',0), -(15966,51796,'kill_sound_glass_break',0), -(15967,51802,'kill_design_fire_lit',0), -(15968,51803,'kill_design_rhand_sparkles_out',0), -(15969,51804,'kill_design_rhand_stars_out',0), -(15970,51805,'kill_design_rune_fire_lit',0), -(15971,51808,'kill_sit_fish',0), -(15972,51811,'kill_cast_god_blast',0), -(15973,51815,'kill_eat_bread',0), -(15974,51816,'kill_eat_fish',0), -(15975,51819,'kill_cast_magic_portal',0), -(15976,51824,'kill_result_fireworks_snowflakes',0), -(15977,51825,'kill_result_snowflakes_falling',0), -(15978,51831,'kill_design_furnace_fire_blast',0), -(15979,51832,'kill_design_golden_fire_lit',0), -(15980,51838,'kill_design_personal_void_vortex',0), -(15981,51841,'kill_cast_icy_division',0), -(15982,51847,'kill_design_fire_elemental_smoke_blast',0), -(15983,51848,'kill_design_hole_furnace_charge',0), -(15984,51849,'kill_design_hole_furnace_essence',0), -(15985,51855,'kill_design_crossed_swords',0), -(15986,51856,'kill_design_feet_trail_clockwork',0), -(15987,51857,'kill_design_feet_trail_confusion',0), -(15988,51858,'kill_design_feet_trail_rose_petals',0), -(15989,51859,'kill_design_feet_trail_shamrocks',0), -(15990,51860,'kill_design_feet_trail_skulls',0), -(15991,51861,'kill_design_feet_trail_snow',0), -(15992,51866,'kill_cast_water_shield',0), -(15993,51869,'kill_result_diseased',0), -(15994,51870,'kill_result_stew_pot_dump',0), -(15995,51876,'kill_converse03',0), -(15996,51882,'kill_design_vd_shrine_bridge',0), -(15997,51883,'kill_design_vd_shrine_dome',0), -(15998,51889,'kill_dust_fx',0), -(15999,51892,'kill_cast_medusa_snake_attack_aoe',0), -(16000,51893,'kill_cast_medusa_snake_attack_p2p',0), -(16001,51894,'kill_cast_medusa_snake_buff',0), -(16002,51898,'kill_fly_from_roost',0), -(16003,51900,'kill_result_medusa_snake_strike',0), -(16004,51902,'kill_untrained_enter',0), -(16005,51905,'kill_cast_lost_souls_rising',0), -(16006,51906,'kill_cast_poison_column_blast',0), -(16007,51909,'kill_cast_stone_gaze',0), -(16008,51912,'kill_result_eel_spit_p2p',0), -(16009,51913,'kill_result_medusa_snake_attack_p2p',0), -(16010,51914,'kill_result_poisoned',0), -(16011,51920,'kill_design_eru_light_bridge',0), -(16012,51921,'kill_design_vd_shrine_bridge1',0), -(16013,51922,'kill_design_vd_shrine_bridge2',0), -(16014,51925,'kill_cast_poison_daggers',0), -(16015,51930,'kill_result_amputation',0), -(16016,51931,'kill_result_amputation_blast',0), -(16017,51933,'kill_trdskl_bow',0), -(16018,51940,'kill_result_dark_wings',0), -(16019,51946,'kill_dw_attack_enter',0), -(16020,51947,'kill_dw_attack_exit',0), -(16021,51948,'kill_dw_attack_hold',0), -(16022,51949,'kill_fly_away',0), -(16023,51951,'kill_result_fist_rain',0), -(16024,51959,'kill_smoke_fx',0), -(16025,51967,'kill_trdskl_firefly_escape',0), -(16026,51968,'kill_trdskl_firefly_jar',0), -(16027,51973,'kill_cast_watching',0), -(16028,51976,'kill_result_bullseye',0), -(16029,51981,'kill_cast_weapon_chargeup',0), -(16030,51982,'kill_cast_weapon_glint_point',0), -(16031,51983,'kill_cast_weapon_shudder',0), -(16032,51989,'kill_dual_wield_idle01',0), -(16033,51990,'kill_habitat04',0), -(16034,51996,'kill_design_boulder_roll',0), -(16035,51997,'kill_design_boulder_shatter',0), -(16036,51998,'kill_design_vd_teleport_fx',0), -(16037,52005,'kill_quick_summon_fx',0), -(16038,52013,'kill_smoke_fx_short',0), -(16039,52016,'kill_cast_ghostly_vanish',0), -(16040,52021,'kill_result_ghostly_possession_p2p',0), -(16041,52023,'kill_sound_big_footstep',0), -(16042,52024,'kill_sound_roehn_theer_cast_roar',0), -(16043,52025,'kill_sound_roehn_theer_cast_roar_1',0), -(16044,52026,'kill_sound_roehn_theer_combat_art_buff_roar',0), -(16045,52027,'kill_sound_roehn_theer_combat_idle_wings',0), -(16046,52028,'kill_sound_roehn_theer_death_roar',0), -(16047,52029,'kill_sound_roehn_theer_dodge_grunt',0), -(16048,52030,'kill_sound_roehn_theer_footstep_deep',0), -(16049,52031,'kill_sound_roehn_theer_footstep_light',0), -(16050,52032,'kill_sound_roehn_theer_grunt_quick',0), -(16051,52033,'kill_sound_roehn_theer_hit',0), -(16052,52034,'kill_sound_roehn_theer_idle_04_knuckles',0), -(16053,52035,'kill_sound_roehn_theer_idle_hiss',0), -(16054,52036,'kill_sound_roehn_theer_idle_hiss_light',0), -(16055,52037,'kill_sound_roehn_theer_ouch',0), -(16056,52038,'kill_sound_roehn_theer_sheath',0), -(16057,52039,'kill_sound_roehn_theer_shield_shove_grunt',0), -(16058,52040,'kill_sound_roehn_theer_sit_wings_short',0), -(16059,52041,'kill_sound_roehn_theer_stomp',0), -(16060,52042,'kill_sound_roehn_theer_swim_idle',0), -(16061,52043,'kill_sound_roehn_theer_sword_attack_grunt',0), -(16062,52044,'kill_sound_roehn_theer_sword_attack_grunt_quick',0), -(16063,52045,'kill_sound_roehn_theer_sword_swoosh',0), -(16064,52046,'kill_sound_roehn_theer_tail_whoosh',0), -(16065,52047,'kill_sound_roehn_theer_tail_whoosh_deep',0), -(16066,52048,'kill_sound_roehn_theer_unsheath',0), -(16067,52049,'kill_sound_roehn_theer_wings',0), -(16068,52050,'kill_sound_roehn_theer_wings_1',0), -(16069,52057,'kill_mage_combo_trigger',0), -(16070,52058,'kill_result_blast_hit',0), -(16071,52059,'kill_result_mesh_blast',0), -(16072,52060,'kill_result_skull_lifetap',0), -(16073,52063,'kill_cast_crackling_rift_summon',0), -(16074,52068,'kill_scout_combo_trigger',0), -(16075,52070,'kill_sound_attack_grunt_small',0), -(16076,52071,'kill_sound_combat_enter_pop',0), -(16077,52072,'kill_sound_combat_enter_vox',0), -(16078,52073,'kill_sound_combat_enter_woodbreak',0), -(16079,52074,'kill_sound_dodge_down',0), -(16080,52075,'kill_sound_reverberant_bang',0), -(16081,52076,'kill_sound_whip_hit',0), -(16082,52077,'kill_swim',0), -(16083,52083,'kill_design_eru_lightning_barrier',0), -(16084,52084,'kill_design_eru_water_barrier',0), -(16085,52090,'kill_design_eru_ring_boundary',0), -(16086,52092,'kill_result_eru_tether_p2p',0), -(16087,52098,'kill_design_eru_alcove_broken',0), -(16088,52099,'kill_design_eru_alcove_working',0), -(16089,52100,'kill_design_eru_platform_discharge',0), -(16090,52101,'kill_design_eru_platform_summon',0), -(16091,52106,'kill_cast_wand_fizzle',0), -(16092,52109,'kill_result_lightning_cage_blast',0), -(16093,52110,'kill_result_wand_lightning_bolts_p2p',0), -(16094,52118,'kill_sound_big_wings',0), -(16095,52119,'kill_sound_toxxulia_attack_roar',0), -(16096,52120,'kill_sound_toxxulia_bark',0), -(16097,52121,'kill_sound_toxxulia_big_footsteps',0), -(16098,52122,'kill_sound_toxxulia_cast_roar',0), -(16099,52123,'kill_sound_toxxulia_feet_nails',0), -(16100,52124,'kill_sound_toxxulia_growl',0), -(16101,52125,'kill_sound_toxxulia_grunt',0), -(16102,52126,'kill_sound_toxxulia_hiss',0), -(16103,52127,'kill_sound_toxxulia_hiss_quiet',0), -(16104,52128,'kill_sound_toxxulia_idle_wing_movement_short',0), -(16105,52129,'kill_sound_toxxulia_ouch_hit',0), -(16106,52130,'kill_sound_toxxulia_scrape',0), -(16107,52131,'kill_sound_toxxulia_swallow_crunch_close',0), -(16108,52132,'kill_sound_toxxulia_swallow_crunch_open',0), -(16109,52133,'kill_sound_toxxulia_swallow_roar',0), -(16110,52134,'kill_sound_toxxulia_swallow_slop',0), -(16111,52135,'kill_sound_toxxulia_swim',0), -(16112,52136,'kill_sound_toxxulia_tail_drop',0), -(16113,52137,'kill_sound_toxxulia_walk',0), -(16114,52138,'kill_sound_toxxulia_whip',0), -(16115,52139,'kill_sound_toxxulia_whip_light',0), -(16116,52140,'kill_sound_toxxulia_wing_movement',0), -(16117,52141,'kill_sound_toxxulia_wings_flapping',0), -(16118,52149,'kill_tiered_confused',0), -(16119,52150,'kill_tiered_doppleganger_p2p',0), -(16120,52151,'kill_tiered_entranced',0), -(16121,52152,'kill_tiered_forced_shader_prism',0), -(16122,52153,'kill_tiered_glow_eyes',0), -(16123,52154,'kill_tiered_hand_crescent',0), -(16124,52155,'kill_tiered_hand_prism',0), -(16125,52156,'kill_tiered_mage_cure',0), -(16126,52157,'kill_tiered_mage_ring_cure',0), -(16127,52158,'kill_tiered_mental_blast',0), -(16128,52159,'kill_tiered_mental_damage',0), -(16129,52160,'kill_tiered_prism_eyes',0), -(16130,52161,'kill_tiered_prism_rain',0), -(16131,52162,'kill_tiered_prism_rays',0), -(16132,52163,'kill_tiered_prismatic_summon',0), -(16133,52164,'kill_tiered_runed_shield',0), -(16134,52165,'kill_tiered_spin_stat_buff',0), -(16135,52166,'kill_tiered_vanish_reappear',0), -(16136,52174,'kill_tiered_mind_rings',0), -(16137,52175,'kill_tiered_stunned',0), -(16138,52183,'kill_tiered_mind_blast',0), -(16139,52184,'kill_tiered_prism_cling',0), -(16140,52192,'kill_tiered_crystal_summon',0), -(16141,52193,'kill_tiered_magic_summon',0), -(16142,52194,'kill_tiered_power_transfer_p2p',0), -(16143,52195,'kill_tiered_sucking_tube_p2p',0), -(16144,52203,'kill_tiered_bat_attack_p2p',0), -(16145,52204,'kill_tiered_crystal_blast',0), -(16146,52205,'kill_tiered_crystal_p2p',0), -(16147,52206,'kill_tiered_earth_summon',0), -(16148,52207,'kill_tiered_quicksand',0), -(16149,52208,'kill_tiered_shrink',0), -(16150,52216,'kill_tiered_air_summon',0), -(16151,52217,'kill_tiered_earthquake',0), -(16152,52218,'kill_tiered_elemental_portal',0), -(16153,52219,'kill_tiered_fire_summon',0), -(16154,52220,'kill_tiered_life_summon',0), -(16155,52221,'kill_tiered_plane_shift',0), -(16156,52227,'kill_gazer_pained_roar',0), -(16157,52230,'kill_sound_gazer_attack02_roar',0), -(16158,52231,'kill_sound_gazer_attack03_roar',0), -(16159,52232,'kill_sound_gazer_attack_roar',0), -(16160,52233,'kill_sound_gazer_attack_woosh',0), -(16161,52234,'kill_sound_gazer_attack_woosh_quiet',0), -(16162,52235,'kill_sound_gazer_bite_roar',0), -(16163,52236,'kill_sound_gazer_bodynoise',0), -(16164,52237,'kill_sound_gazer_bodynoise_fall',0), -(16165,52238,'kill_sound_gazer_bodynoise_fall_deep',0), -(16166,52239,'kill_sound_gazer_bodynoise_fall_dirt',0), -(16167,52240,'kill_sound_gazer_bodynoise_long',0), -(16168,52241,'kill_sound_gazer_breath',0), -(16169,52242,'kill_sound_gazer_breath_grunt',0), -(16170,52243,'kill_sound_gazer_combat_art_buff_roar',0), -(16171,52244,'kill_sound_gazer_crunch',0), -(16172,52245,'kill_sound_gazer_deadfall',0), -(16173,52246,'kill_sound_gazer_eyeball_gross',0), -(16174,52247,'kill_sound_gazer_eyeball_pop',0), -(16175,52248,'kill_sound_gazer_eyeball_pop_quiet',0), -(16176,52249,'kill_sound_gazer_eyeball_twirl',0), -(16177,52250,'kill_sound_gazer_growl_low',0), -(16178,52251,'kill_sound_gazer_grunt_short',0), -(16179,52252,'kill_sound_gazer_liddown',0), -(16180,52253,'kill_sound_gazer_swim',0), -(16181,52254,'kill_sound_gazer_swim_idle',0), -(16182,52255,'kill_sound_gazer_whip',0), -(16183,52256,'kill_sound_gazer_whip_impact',0), -(16184,52257,'kill_sound_gazer_whip_low',0), -(16185,52258,'kill_tiered_clouds_head',0), -(16186,52259,'kill_tiered_hand_dark_rings',0), -(16187,52260,'kill_tiered_heart_summon',0), -(16188,52261,'kill_tiered_undead_tide',0), -(16189,52262,'kill_tiered_vampirism_p2p',0), -(16190,52265,'kill_attack_eat',0), -(16191,52270,'kill_perch_idle',0), -(16192,52277,'kill_result_steam_cup',0), -(16193,52283,'kill_design_glow_full',0), -(16194,52284,'kill_design_glow_low',0), -(16195,52285,'kill_design_glow_med',0), -(16196,52287,'kill_result_energy_drain_p2p',0), -(16197,52288,'kill_result_meditate_rings',0), -(16198,52294,'kill_design_hole_mines',0), -(16199,52295,'kill_design_hole_mines_blast',0), -(16200,52298,'kill_sound_mine_blast',0), -(16201,52299,'kill_sound_mine_splash',0), -(16202,52305,'kill_design_th_platform',0), -(16203,52306,'kill_design_th_platform_collapse',0), -(16204,52307,'kill_design_th_platform_rift',0), -(16205,52315,'kill_sound_displacer_beast_attack_1',0), -(16206,52316,'kill_sound_displacer_beast_footstep',0), -(16207,52317,'kill_sound_displacer_beast_footstep_dirt',0), -(16208,52318,'kill_sound_displacer_beast_hiss',0), -(16209,52319,'kill_sound_displacer_beast_idle',0), -(16210,52320,'kill_sound_displacer_beast_idle_long',0), -(16211,52321,'kill_sound_displacer_beast_whip',0), -(16212,52322,'kill_sound_displacer_beast_whip_deep',0), -(16213,52323,'kill_sound_displacer_beast_whip_high',0), -(16214,52326,'kill_cast_air_sample',0), -(16215,52331,'kill_cast_tallonite_lash_cone',0), -(16216,52332,'kill_cast_tallonite_lash_summon',0), -(16217,52335,'kill_lynx_backup',0), -(16218,52336,'kill_lynx_fall',0), -(16219,52337,'kill_lynx_idle',0), -(16220,52338,'kill_lynx_jump',0), -(16221,52339,'kill_lynx_jump_substitute',0), -(16222,52340,'kill_lynx_land',0), -(16223,52341,'kill_lynx_long_fall',0), -(16224,52342,'kill_lynx_run',0), -(16225,52343,'kill_lynx_turn_left',0), -(16226,52344,'kill_lynx_turn_right',0), -(16227,52345,'kill_lynx_walk',0), -(16228,52346,'kill_result_tallonite_barb_p2p',0), -(16229,52347,'kill_result_trail_tallonite',0), -(16230,52350,'kill_attack_throw_boulder',0), -(16231,52353,'kill_cast_tallonite_balance',0), -(16232,52356,'kill_result_cloud_dot_blast',0), -(16233,52357,'kill_result_tallonite_lash_p2p',0), -(16234,52364,'kill_result_tallonite_lash_skulls_p2p',0), -(16235,52365,'kill_result_tallonite_skull_control',0), -(16236,52366,'kill_result_tallonite_sphere',0), -(16237,52368,'kill_sound_displacer_beast_attack_2',0), -(16238,52369,'kill_sound_displacer_beast_attack_3',0), -(16239,52370,'kill_sound_displacer_beast_bark',0), -(16240,52371,'kill_sound_displacer_beast_big_purr',0), -(16241,52372,'kill_sound_displacer_beast_blade_fall',0), -(16242,52373,'kill_sound_displacer_beast_blade_swoosh',0), -(16243,52374,'kill_sound_displacer_beast_charge_up_roar',0), -(16244,52375,'kill_sound_displacer_beast_dead_1',0), -(16245,52376,'kill_sound_displacer_beast_dead_2',0), -(16246,52377,'kill_sound_displacer_beast_dodge_thrust_roar',0), -(16247,52378,'kill_sound_displacer_beast_fall_small',0), -(16248,52379,'kill_sound_displacer_beast_footstep_deep',0), -(16249,52380,'kill_sound_displacer_beast_idle_breath',0), -(16250,52381,'kill_sound_displacer_beast_ouch',0), -(16251,52382,'kill_sound_displacer_beast_ouch_hit',0), -(16252,52383,'kill_sound_displacer_beast_pulse',0), -(16253,52384,'kill_sound_displacer_beast_pulse_crunch',0), -(16254,52385,'kill_sound_displacer_beast_small_purr',0), -(16255,52386,'kill_sound_displacer_beast_swim',0), -(16256,52394,'kill_sound_pandaman_footstep',0), -(16257,52395,'kill_sound_pandaman_idle_breathing',0), -(16258,52396,'kill_sound_pegasus_attack',0), -(16259,52397,'kill_sound_pegasus_attack_1',0), -(16260,52398,'kill_sound_pegasus_attack_4',0), -(16261,52399,'kill_sound_pegasus_death_fall',0), -(16262,52400,'kill_sound_pegasus_death_niegh',0), -(16263,52401,'kill_sound_pegasus_grunt',0), -(16264,52402,'kill_sound_pegasus_hooves',0), -(16265,52403,'kill_sound_pegasus_hooves_scrape',0), -(16266,52404,'kill_sound_pegasus_idle_1',0), -(16267,52405,'kill_sound_pegasus_idle_2',0), -(16268,52406,'kill_sound_pegasus_idle_slow',0), -(16269,52407,'kill_sound_pegasus_idleloop',0), -(16270,52408,'kill_sound_pegasus_limb_whip',0), -(16271,52409,'kill_sound_pegasus_ouch_1',0), -(16272,52410,'kill_sound_pegasus_ouch_hit',0), -(16273,52411,'kill_sound_pegasus_snort_quick',0), -(16274,52412,'kill_sound_pegasus_wings_soft',0), -(16275,52419,'kill_lynx_idle01',0), -(16276,52424,'kill_cast_spin_flash_buff',0), -(16277,52425,'kill_cast_tallonite_dagger_blast',0), -(16278,52427,'kill_energy_blobs_kick_blast',0), -(16279,52429,'kill_result_slow',0), -(16280,52434,'kill_cast_tallonite_axe_throw',0), -(16281,52435,'kill_cast_tallonite_glow_eyes',0), -(16282,52437,'kill_design_sen_lava_falls',0), -(16283,52438,'kill_design_sen_lightning_rune_orb',0), -(16284,52444,'kill_design_eru_column_protection',0), -(16285,52450,'kill_design_theer_fire_forrest',0), -(16286,52451,'kill_design_theer_fire_passion',0), -(16287,52452,'kill_design_theer_fire_water',0), -(16288,52453,'kill_design_theer_fire_wrath',0), -(16289,52454,'kill_design_theer_obj_forrest',0), -(16290,52455,'kill_design_theer_obj_passion',0), -(16291,52456,'kill_design_theer_obj_water',0), -(16292,52457,'kill_design_theer_obj_wrath',0), -(16293,52458,'kill_design_theer_symbol_blast',0), -(16294,52459,'kill_design_theer_symbol_evil',0), -(16295,52460,'kill_design_theer_symbol_forrest',0), -(16296,52461,'kill_design_theer_symbol_good',0), -(16297,52462,'kill_design_theer_symbol_none',0), -(16298,52463,'kill_design_theer_symbol_passion',0), -(16299,52464,'kill_design_theer_symbol_water',0), -(16300,52465,'kill_design_theer_symbol_wrath',0), -(16301,52466,'kill_design_theer_wrath_blast',0), -(16302,52469,'kill_cast_massive_ring_blast',0), -(16303,52474,'kill_result_billowing_energy',0), -(16304,52475,'kill_result_seeping_energy',0), -(16305,52481,'kill_design_odus_dome_barrier',0), -(16306,52483,'kill_result_fiery_sun',0), -(16307,52484,'kill_result_healing_flora',0), -(16308,52485,'kill_result_singing_wind',0), -(16309,52487,'kill_sound_catoplebus_attack_roar_1',0), -(16310,52488,'kill_sound_catoplebus_attack_roar_2',0), -(16311,52489,'kill_sound_catoplebus_attack_roar_3',0), -(16312,52490,'kill_sound_catoplebus_body_movement',0), -(16313,52491,'kill_sound_catoplebus_cast_roar',0), -(16314,52492,'kill_sound_catoplebus_combat_art_buff_roar',0), -(16315,52493,'kill_sound_catoplebus_crunch',0), -(16316,52494,'kill_sound_catoplebus_death_roar',0), -(16317,52495,'kill_sound_catoplebus_dodge_grunt',0), -(16318,52496,'kill_sound_catoplebus_dodge_roar',0), -(16319,52497,'kill_sound_catoplebus_footstep',0), -(16320,52498,'kill_sound_catoplebus_footstep_deep',0), -(16321,52499,'kill_sound_catoplebus_footstep_deep_soft',0), -(16322,52500,'kill_sound_catoplebus_idle_grunt',0), -(16323,52501,'kill_sound_catoplebus_idle_roar',0), -(16324,52502,'kill_sound_catoplebus_idle_sniff',0), -(16325,52503,'kill_sound_catoplebus_idle_snort',0), -(16326,52504,'kill_sound_catoplebus_slide',0), -(16327,52505,'kill_sound_catoplebus_swim',0), -(16328,52506,'kill_sound_catoplebus_swim_idle',0), -(16329,52507,'kill_sound_catoplebus_tail_whoosh',0), -(16330,52508,'kill_sound_cerberus_attack_roar',0), -(16331,52509,'kill_sound_cerberus_cast_roar',0), -(16332,52510,'kill_sound_cerberus_combat_art_buff_roar',0), -(16333,52511,'kill_sound_cerberus_death_fall',0), -(16334,52512,'kill_sound_cerberus_death_roar',0), -(16335,52513,'kill_sound_cerberus_dodge_bark',0), -(16336,52514,'kill_sound_cerberus_dodge_growl',0), -(16337,52515,'kill_sound_cerberus_growl',0), -(16338,52516,'kill_sound_cerberus_idle_howl_1',0), -(16339,52517,'kill_sound_cerberus_idle_howl_2',0), -(16340,52518,'kill_sound_cerberus_idle_howl_long',0), -(16341,52519,'kill_sound_cerberus_scrape',0), -(16342,52520,'kill_sound_cerberus_snarl',0), -(16343,52521,'kill_sound_cerberus_swim',0), -(16344,52522,'kill_trdskl_transmute_complete',0), -(16345,52523,'kill_trdskl_transmute_rings',0), -(16346,52531,'kill_sound_goatmen_lf_stomp',0), -(16347,52532,'kill_sound_goatmen_armor_long',0), -(16348,52533,'kill_sound_goatmen_armor_short_loud',0), -(16349,52534,'kill_sound_goatmen_armor_short_quiet',0), -(16350,52535,'kill_sound_goatmen_attack_roar',0), -(16351,52536,'kill_sound_goatmen_blade_swoosh_1',0), -(16352,52537,'kill_sound_goatmen_blade_swoosh_2',0), -(16353,52538,'kill_sound_goatmen_body_fall',0), -(16354,52539,'kill_sound_goatmen_body_movement_short',0), -(16355,52540,'kill_sound_goatmen_bow_enter',0), -(16356,52541,'kill_sound_goatmen_bow_exit',0), -(16357,52542,'kill_sound_goatmen_bow_getarrow',0), -(16358,52543,'kill_sound_goatmen_bow_pullback',0), -(16359,52544,'kill_sound_goatmen_bow_release',0), -(16360,52545,'kill_sound_goatmen_breath_out',0), -(16361,52546,'kill_sound_goatmen_cast_yell',0), -(16362,52547,'kill_sound_goatmen_combat_art_buff',0), -(16363,52548,'kill_sound_goatmen_death_roar',0), -(16364,52549,'kill_sound_goatmen_death_roar_2',0), -(16365,52550,'kill_sound_goatmen_footstep',0), -(16366,52551,'kill_sound_goatmen_grunt',0), -(16367,52552,'kill_sound_goatmen_ouch',0), -(16368,52553,'kill_sound_goatmen_scrape',0), -(16369,52554,'kill_sound_goatmen_snort',0), -(16370,52555,'kill_sound_goatmen_swim',0), -(16371,52556,'kill_sound_goatmen_weapon_twirl',0), -(16372,52562,'kill_design_pulse_beacon',0), -(16373,52563,'kill_design_shard_blast',0), -(16374,52565,'kill_pandamen_wildswing_attack',0), -(16375,52566,'kill_pulse_sound',0), -(16376,52569,'kill_sound_pandamen_bark',0), -(16377,52570,'kill_sound_pandamen_bleat',0), -(16378,52571,'kill_sound_pandamen_bow_getarrow',0), -(16379,52572,'kill_sound_pandamen_bow_pullback',0), -(16380,52573,'kill_sound_pandamen_bow_release',0), -(16381,52574,'kill_sound_pandamen_bow_sheath',0), -(16382,52575,'kill_sound_pandamen_bow_unsheath',0), -(16383,52576,'kill_sound_pandamen_charge_roar',0), -(16384,52577,'kill_sound_pandamen_dead',0), -(16385,52578,'kill_sound_pandamen_eat',0), -(16386,52579,'kill_sound_pandamen_footslide',0), -(16387,52580,'kill_sound_pandamen_footstep_soft',0), -(16388,52581,'kill_sound_pandamen_growl',0), -(16389,52582,'kill_sound_pandamen_grunt',0), -(16390,52583,'kill_sound_pandamen_idle_grunt',0), -(16391,52584,'kill_sound_pandamen_idle_grunt_short',0), -(16392,52585,'kill_sound_pandamen_movement_cloth_long',0), -(16393,52586,'kill_sound_pandamen_movement_cloth_short',0), -(16394,52587,'kill_sound_pandamen_scratch',0), -(16395,52588,'kill_sound_pandamen_scratch_pant',0), -(16396,52589,'kill_sound_pandamen_sit',0), -(16397,52590,'kill_sound_pandamen_swim',0), -(16398,52591,'kill_sound_pandamen_whoosh',0), -(16399,52597,'kill_evil_theer_energy_buff',0), -(16400,52598,'kill_good_theer_energy_buff',0), -(16401,52600,'kill_result_balanced_judgement',0), -(16402,52601,'kill_result_fiery_flames',0), -(16403,52602,'kill_result_theer_debuff_down',0), -(16404,52603,'kill_result_theer_debuff_up',0), -(16405,52604,'kill_result_theer_mana_drain_p2p',0), -(16406,52607,'kill_theer_charge_up',0), -(16407,52608,'kill_theer_mana_blast',0), -(16408,52613,'kill_cast_wyvern_breath',0), -(16409,52614,'kill_cast_wyvern_inhale',0), -(16410,52616,'kill_design_erudite_switch_evil',0), -(16411,52617,'kill_design_erudite_switch_good',0), -(16412,52618,'kill_design_murderball_debuff',0), -(16413,52621,'kill_sound_chimera_attack_roar_1',0), -(16414,52622,'kill_sound_chimera_attack_roar_2',0), -(16415,52623,'kill_sound_chimera_attack_roar_3',0), -(16416,52624,'kill_sound_chimera_cast_roar',0), -(16417,52625,'kill_sound_chimera_cast_roar_short',0), -(16418,52626,'kill_sound_chimera_combat_art_buff_roar',0), -(16419,52627,'kill_sound_chimera_dead_fall',0), -(16420,52628,'kill_sound_chimera_death_roar',0), -(16421,52629,'kill_sound_chimera_dodge_down_roar',0), -(16422,52630,'kill_sound_chimera_dodge_grunt',0), -(16423,52631,'kill_sound_chimera_footslide',0), -(16424,52632,'kill_sound_chimera_footstep',0), -(16425,52633,'kill_sound_chimera_footstep_big',0), -(16426,52634,'kill_sound_chimera_idle_bird_1',0), -(16427,52635,'kill_sound_chimera_idle_bird_2',0), -(16428,52636,'kill_sound_chimera_idle_bird_3',0), -(16429,52637,'kill_sound_chimera_idle_goat_1',0), -(16430,52638,'kill_sound_chimera_idle_goat_2',0), -(16431,52639,'kill_sound_chimera_idle_goat_3',0), -(16432,52640,'kill_sound_chimera_idle_lion_1',0), -(16433,52641,'kill_sound_chimera_idle_lion_2',0), -(16434,52642,'kill_sound_chimera_idle_lion_3',0), -(16435,52643,'kill_sound_chimera_idle_lion_4',0), -(16436,52644,'kill_sound_chimera_idle_wings',0), -(16437,52645,'kill_sound_chimera_sit_wings_short',0), -(16438,52646,'kill_sound_chimera_snake_stab',0), -(16439,52647,'kill_sound_chimera_swim',0), -(16440,52648,'kill_sound_chimera_wings_big',0), -(16441,52650,'kill_sound_lynx_mount_bare_idle',0), -(16442,52651,'kill_sound_lynx_mount_bare_roar_1',0), -(16443,52652,'kill_sound_lynx_mount_bare_roar_2',0), -(16444,52653,'kill_sound_lynx_mount_footstep_quiet',0), -(16445,52654,'kill_sound_lynx_mount_land',0), -(16446,52655,'kill_sound_odus_kitten_attack_1',0), -(16447,52656,'kill_sound_odus_kitten_attack_2',0), -(16448,52657,'kill_sound_odus_kitten_attack_3',0), -(16449,52658,'kill_sound_odus_kitten_attack_4',0), -(16450,52659,'kill_sound_odus_kitten_combat_exit',0), -(16451,52660,'kill_sound_odus_kitten_eat_1',0), -(16452,52661,'kill_sound_odus_kitten_fall',0), -(16453,52662,'kill_sound_odus_kitten_footstep',0), -(16454,52663,'kill_sound_odus_kitten_hiss',0), -(16455,52664,'kill_sound_odus_kitten_idle_purr_1',0), -(16456,52665,'kill_sound_odus_kitten_lick',0), -(16457,52666,'kill_sound_odus_kitten_meow_1',0), -(16458,52667,'kill_sound_odus_kitten_meow_2',0), -(16459,52668,'kill_sound_odus_kitten_ouch_short',0), -(16460,52669,'kill_sound_odus_kitten_scratch',0), -(16461,52670,'kill_sound_odus_kitten_sneeze',0), -(16462,52671,'kill_sound_odus_kitten_swim',0), -(16463,52674,'kill_cast_draconian_breath',0), -(16464,52677,'kill_cast_wurm_breath',0), -(16465,52678,'kill_cast_wurm_crush_blast',0), -(16466,52679,'kill_cast_wurm_inhale',0), -(16467,52681,'kill_design_active_eggs',0), -(16468,52682,'kill_design_hatched_eggs',0), -(16469,52683,'kill_design_inactive_eggs',0), -(16470,52685,'kill_result_blinded',0), -(16471,52686,'kill_result_crush_rings',0), -(16472,52692,'kill_design_summon_fx',1045), -(16473,52694,'kill_result_summoning_crystal',1045), -(16474,52697,'kill_sound_lynx_armor_1',1045), -(16475,52698,'kill_sound_lynx_armor_short',1045), -(16476,52707,'kill_toxx_breath_attack',1045), -(16477,52708,'kill_toxx_breath_inhale',1045), -(16478,52715,'kill_result_floor_pie',1045), -(16479,52722,'kill_result_lich_evil_drain_p2p',1045), -(16480,52723,'kill_result_lich_good_drain_p2p',1045), -(16481,52724,'kill_result_theer_evil_drain',1045), -(16482,52725,'kill_result_theer_good_drain',1045), -(16483,52732,'kill_result_toxic_debuff',1045), -(16484,52735,'kill_toxx_breath_attack01',1045), -(16485,52736,'kill_toxx_breath_attack02',1045), -(16486,52742,'kill_design_kobold_claw',1045), -(16487,52743,'kill_design_toxic_sphere0',1045), -(16488,52744,'kill_design_toxic_sphere01',1045), -(16489,52745,'kill_design_toxic_sphere02',1045), -(16490,52746,'kill_design_toxic_sphere03',1045), -(16491,52747,'kill_design_toxic_sphere04',1045), -(16492,52748,'kill_design_toxic_sphere05',1045), -(16493,52750,'kill_result_toxx_essence_trap_p2p',1045), -(16494,52752,'kill_sound_catoplebus_ouch',1045), -(16495,52753,'kill_sound_catoplebus_ouch_1',1045), -(16496,52754,'kill_sound_catoplebus_ouch_2',1045), -(16497,52756,'kill_sound_skeletal_1',1045), -(16498,52757,'kill_sound_skeletal_10',1045), -(16499,52758,'kill_sound_skeletal_11',1045), -(16500,52759,'kill_sound_skeletal_12',1045), -(16501,52760,'kill_sound_skeletal_13',1045), -(16502,52761,'kill_sound_skeletal_14',1045), -(16503,52762,'kill_sound_skeletal_15',1045), -(16504,52763,'kill_sound_skeletal_16',1045), -(16505,52764,'kill_sound_skeletal_17',1045), -(16506,52765,'kill_sound_skeletal_18',1045), -(16507,52766,'kill_sound_skeletal_19',1045), -(16508,52767,'kill_sound_skeletal_2',1045), -(16509,52768,'kill_sound_skeletal_20',1045), -(16510,52769,'kill_sound_skeletal_21',1045), -(16511,52770,'kill_sound_skeletal_22',1045), -(16512,52771,'kill_sound_skeletal_3',1045), -(16513,52772,'kill_sound_skeletal_4',1045), -(16514,52773,'kill_sound_skeletal_5',1045), -(16515,52774,'kill_sound_skeletal_6',1045), -(16516,52775,'kill_sound_skeletal_7',1045), -(16517,52776,'kill_sound_skeletal_8',1045), -(16518,52777,'kill_sound_skeletal_9',1045), -(16519,52778,'kill_toxx_chained',1045), -(16520,52779,'kill_toxx_vanish',1045), -(16521,52785,'kill_design_active_head_001',1045), -(16522,52786,'kill_design_active_head_010',1045), -(16523,52787,'kill_design_active_head_011',1045), -(16524,52788,'kill_design_active_head_100',1045), -(16525,52789,'kill_design_active_head_101',1045), -(16526,52790,'kill_design_active_head_110',1045), -(16527,52791,'kill_design_active_head_111',1045), -(16528,52792,'kill_design_tallonite_portal',1045), -(16529,52793,'kill_design_teleport_druid_ring',1045), -(16530,52796,'kill_cast_arcane_blast',1045), -(16531,52797,'kill_cast_crush_blast',1045), -(16532,52798,'kill_cast_poison_blast',1045), -(16533,52802,'kill_design_mystic_barrier',1045), -(16534,52808,'kill_design_blue_flag_pickup',1045), -(16535,52809,'kill_design_red_flag_pickup',1045), -(16536,52815,'kill_death_impact',1045), -(16537,52816,'kill_gorgon_attack_roar_01',1045), -(16538,52817,'kill_gorgon_attack_roar_02',1045), -(16539,52818,'kill_gorgon_breath_in',1045), -(16540,52819,'kill_gorgon_breath_out_long',1045), -(16541,52820,'kill_gorgon_breath_out_short',1045), -(16542,52821,'kill_gorgon_cast_roar_01',1045), -(16543,52822,'kill_gorgon_chewing_close',1045), -(16544,52823,'kill_gorgon_chewing_open',1045), -(16545,52824,'kill_gorgon_death_impact',1045), -(16546,52825,'kill_gorgon_death_roar',1045), -(16547,52826,'kill_gorgon_footscrape',1045), -(16548,52827,'kill_gorgon_footstep_deep',1045), -(16549,52828,'kill_gorgon_footstep_metal',1045), -(16550,52829,'kill_gorgon_hooves',1045), -(16551,52830,'kill_gorgon_kick_swish',1045), -(16552,52831,'kill_gorgon_metal_movement',1045), -(16553,52832,'kill_gorgon_metal_movement_deep',1045), -(16554,52833,'kill_gorgon_metal_movement_long',1045), -(16555,52834,'kill_gorgon_metal_movement_quiet',1045), -(16556,52835,'kill_gorgon_metal_scrape',1045), -(16557,52836,'kill_gorgon_ouch_headshake',1045), -(16558,52837,'kill_gorgon_ouch_impact',1045), -(16559,52838,'kill_gorgon_snort',1045), -(16560,52839,'kill_gorgon_snort_big',1045), -(16561,52840,'kill_gorgon_swim',1045), -(16562,52844,'kill_stone_ouch_impact',1045), -(16563,52850,'kill_design_blue_flag_trail',1045), -(16564,52851,'kill_design_red_flag_trail',1045), -(16565,52857,'kill_design_battleground_tower_blue',1045), -(16566,52858,'kill_design_battleground_tower_red',1045), -(16567,52864,'kill_crystaline_folk_lf',1045), -(16568,52865,'kill_crystaline_folk_footstep_big',1045), -(16569,52866,'kill_crystaline_folk_footstep_crunch',1045), -(16570,52867,'kill_crystaline_folk_stone_debris',1045), -(16571,52868,'kill_crystaline_folk_tantrum_1',1045), -(16572,52869,'kill_crystaline_folk_tantrum_2',1045), -(16573,52870,'kill_crystaline_folk_tantrum_3',1045), -(16574,52871,'kill_crystaline_folk_tantrum_body_1',1045), -(16575,52872,'kill_crystaline_folk_tantrum_body_2',1045), -(16576,52873,'kill_crystaline_folk_tantrum_body_3',1045), -(16577,52874,'kill_design_sen_lava_floor',1045), -(16578,52877,'kill_cast_mental_blast',1045), -(16579,52882,'kill_design_reform_fx',1045), -(16580,52885,'kill_attack_breath_crush',1045), -(16581,52886,'kill_attack_breath_poison',1045), -(16582,52891,'kill_design_drain_theer_fx',1045), -(16583,52892,'kill_design_power_aura',1045), -(16584,52894,'kill_result_forced_shader_white',1045), -(16585,52895,'kill_result_stunned_rings',1045), -(16586,52902,'kill_froglock_gathering_search',1045), -(16587,52906,'kill_status_quest_completes_storyline',1045), -(16588,52907,'kill_status_quest_gives_storyline',1045), -(16589,52908,'kill_status_quest_updates_storyline',1045), -(16590,52918,'kill_sound_lynx_armor_short_1',1045), -(16591,52919,'kill_sound_lynx_mount_bare_roar_3',1045), -(16592,52927,'kill_result_forced_shader_rock_red',1045), -(16593,52930,'kill_tiered_cleric_wheel_back',1045), -(16594,52931,'kill_tiered_cleric_wheel_base',1045), -(16595,52932,'kill_tiered_cleric_wheel_forward',1045), -(16596,52933,'kill_tiered_hand_cross',1045), -(16597,52934,'kill_tiered_hand_leaves',1045), -(16598,52935,'kill_tiered_hand_leaves_glowing',1045), -(16599,52936,'kill_tiered_hand_pattern',1045), -(16600,52937,'kill_tiered_refreshment_summon',1045), -(16601,52938,'kill_tiered_smite_p2p',1045), -(16602,52946,'kill_jump_falling',1045), -(16603,52956,'kill_tiered_angel_wings',1045), -(16604,52957,'kill_tiered_bar_heal',1045), -(16605,52958,'kill_tiered_divine_burst',1045), -(16606,52959,'kill_tiered_divine_essence_summon',1045), -(16607,52960,'kill_tiered_head_halo',1045), -(16608,52961,'kill_tiered_priest_ring_cure',1045), -(16609,52962,'kill_tiered_radiant_glow',1045), -(16610,52963,'kill_tiered_resurrect_swirls',1045), -(16611,52964,'kill_tiered_small_heal',1045), -(16612,52965,'kill_tiered_smite_hit',1045), -(16613,52966,'kill_tiered_soothe',1045), -(16614,52967,'kill_tiered_toxin_out',1045), -(16615,52968,'kill_tiered_water_bubble',1045), -(16616,52978,'kill_sound_roehn_theer_stomp_rocks_1',1045), -(16617,52979,'kill_sound_roehn_theer_stomp_rocks_2',1045), -(16618,52980,'kill_sound_roehn_theer_stomp_rocks_3',1045), -(16619,52981,'kill_tiered_flash_heal',1045), -(16620,52982,'kill_tiered_ring_shield',1045), -(16621,52983,'kill_tiered_scimitar_exploding',1045), -(16622,52984,'kill_tiered_scimitar_smite',1045), -(16623,52985,'kill_tiered_timer',1045), -(16624,52995,'kill_tiered_divine_hit',1045), -(16625,52996,'kill_tiered_double_smite_p2p',1045), -(16626,52997,'kill_tiered_hand_sparkles',1045), -(16627,52998,'kill_tiered_heal_tube_p2p',1045), -(16628,53008,'kill_tiered_heal_barrier',1045), -(16629,53009,'kill_tiered_smite_blobs_p2p',1045), -(16630,53019,'kill_tiered_hammer_smite',1045), -(16631,53020,'kill_tiered_hand_cross_dark',1045), -(16632,53021,'kill_tiered_hand_sparkles_dark',1045), -(16633,53031,'kill_tiered_mental_smite',1045), -(16634,53041,'kill_tiered_engulf_flames',1045), -(16635,53042,'kill_tiered_gavel_pound',1045), -(16636,53043,'kill_tiered_light_cage',1045), -(16637,53044,'kill_tiered_swirly_heal',1045), -(16638,53045,'kill_tiered_swirly_power_heal',1045), -(16639,53055,'kill_trdskl_tinker_fail',1045), -(16640,53062,'kill_fire_build_up',1045), -(16641,53072,'kill_tiered_feather_summon',1045), -(16642,53073,'kill_tiered_phoenix_summon',1045), -(16643,53074,'kill_tiered_run_speed_buff',1045), -(16644,53075,'kill_tiered_spirit_wolf',1045), -(16645,53076,'kill_tiered_wood_root',1045), -(16646,53086,'kill_tiered_bat_summon',1045), -(16647,53087,'kill_tiered_nature_heal',1045), -(16648,53097,'kill_tiered_druid_wheel_base',1045), -(16649,53098,'kill_tiered_fire_slam2',1045), -(16650,53099,'kill_tiered_hand_leaf',1045), -(16651,53100,'kill_tiered_icicle_stab',1045), -(16652,53101,'kill_tiered_leaf_burst',1045), -(16653,53102,'kill_tiered_leaf_gather',1045), -(16654,53103,'kill_tiered_leaf_spin',1045), -(16655,53104,'kill_tiered_rings_shrinking',1045), -(16656,53105,'kill_tiered_swirly_wisps',1045), -(16657,53106,'kill_tiered_wood_spikes',1045), -(16658,53114,'kill_panting_wolf_sound',1045), -(16659,53117,'kill_tiered_hand_leaf_glowing',1045), -(16660,53118,'kill_tiered_leaf_spot_burst',1045), -(16661,53119,'kill_tiered_spin_runed_shield',1045), -(16662,53120,'kill_tiered_spirit_bear',1045), -(16663,53121,'kill_tiered_spirit_lion',1045), -(16664,53122,'kill_wolfbackground_sound',1045), -(16665,53132,'kill_tiered_growing_spores',1045), -(16666,53133,'kill_tiered_healing_grove',1045), -(16667,53134,'kill_tiered_ice_spikes',1045), -(16668,53135,'kill_tiered_sandstorm',1045), -(16669,53136,'kill_tiered_spirit_wolf_summon',1045), -(16670,53137,'kill_tiered_tranquility',1045), -(16671,53138,'kill_tiered_wood_root_grow',1045), -(16672,53141,'kill_belch_fx',1045), -(16673,53146,'kill_design_theer_symbol_blue',1045), -(16674,53147,'kill_design_theer_symbol_green',1045), -(16675,53148,'kill_icicle_stomp',1045), -(16676,53150,'kill_result_hand_drips_blood',1045), -(16677,53151,'kill_result_hand_drips_poison',1045), -(16678,53153,'kill_slime_trail_fx',1045), -(16679,53154,'kill_sound_giant_hill_attack',1045), -(16680,53155,'kill_sound_giant_hill_buff',1045), -(16681,53156,'kill_sound_giant_hill_cast',1045), -(16682,53157,'kill_sound_giant_hill_death',1045), -(16683,53158,'kill_sound_giant_hill_fall',1045), -(16684,53159,'kill_sound_giant_hill_footstep',1045), -(16685,53160,'kill_sound_giant_hill_grunt',1045), -(16686,53161,'kill_sound_giant_hill_idle_cloth',1045), -(16687,53162,'kill_sound_giant_hill_idle_grunt',1045), -(16688,53163,'kill_sound_giant_hill_idle_yawn',1045), -(16689,53164,'kill_sound_giant_hill_movement_cloth',1045), -(16690,53165,'kill_sound_giant_hill_ouch',1045), -(16691,53166,'kill_sound_giant_hill_rising_groan',1045), -(16692,53167,'kill_sound_giant_hill_sit_groan',1045), -(16693,53168,'kill_sound_giant_hill_swim',1045), -(16694,53169,'kill_sound_giant_hill_swim_idle',1045), -(16695,53170,'kill_sound_giant_hill_turn',1045), -(16696,53180,'kill_tiered_brambles',1045), -(16697,53181,'kill_tiered_hand_leaf_dark',1045), -(16698,53182,'kill_tiered_hand_leaves_dark',1045), -(16699,53183,'kill_tiered_leaf_flourish',1045), -(16700,53184,'kill_tiered_lightning_bolt',1045), -(16701,53185,'kill_tiered_snow_tempest',1045), -(16702,53186,'kill_tiered_swarm_p2p',1045), -(16703,53196,'kill_tiered_spirit_cat',1045), -(16704,53197,'kill_tiered_spirit_eel',1045), -(16705,53198,'kill_tiered_starfire',1045), -(16706,53199,'kill_tiered_sun_nova',1045), -(16707,53209,'kill_tiered_fae_swirling',1045), -(16708,53210,'kill_tiered_lightning_fusion',1045), -(16709,53211,'kill_tiered_spirit_cheetah',1045), -(16710,53212,'kill_tiered_spirit_lion_summon',1045), -(16711,53213,'kill_tiered_spirit_tree',1045), -(16712,53214,'kill_tiered_thunder_cloud',1045), -(16713,53221,'kill_design_goblin_launch',1045), -(16714,53225,'kill_transforma',1045), -(16715,53226,'kill_transformb',1045), -(16716,53229,'kill_cast_ice_blastwave',1045), -(16717,53232,'kill_cast_wing_buffet_snow',1045), -(16718,53233,'kill_cast_wing_buffet_wind',1045), -(16719,53237,'kill_result_icy_trap_shatter',1045), -(16720,53244,'kill_design_starburst_blue',1045), -(16721,53245,'kill_design_starburst_green',1045), -(16722,53246,'kill_design_starburst_purple',1045), -(16723,53247,'kill_design_starburst_red',1045), -(16724,53248,'kill_design_starburst_white',1045), -(16725,53250,'kill_kneel',1045), -(16726,53251,'kill_result_shadow_curse',1045), -(16727,53261,'kill_sound_lynx_mount_bare_idle_1',1045), -(16728,53262,'kill_sound_lynx_mount_bare_pant',1045), -(16729,53272,'kill_sound_lynx_purr',1045), -(16730,53273,'kill_sound_vrewwx_attack_roar_3',1045), -(16731,53274,'kill_sound_vrewwx_cast_roar',1045), -(16732,53281,'kill_design_arm_prelaunch',1045), -(16733,53283,'kill_result_repellent_spray',1045), -(16734,53284,'kill_result_repellent_spray_p2p',1045), -(16735,53287,'kill_activate',1045), -(16736,53288,'kill_cast_ice_blast',1045), -(16737,53289,'kill_cast_ice_blast_ring',1045), -(16738,53297,'kill_sound_vrewwx_attack_roar_1',1045), -(16739,53298,'kill_sound_vrewwx_attack_roar_2',1045), -(16740,53299,'kill_sound_vrewwx_idle02_roar',1045), -(16741,53309,'kill_sound_vrewwx_idle1_breathing_2',1045), -(16742,53316,'kill_design_void_energy_pool',1045), -(16743,53318,'kill_result_flower_trail',1045), -(16744,53319,'kill_result_leash_p2p',1045), -(16745,53320,'kill_result_rope_root',1045), -(16746,53323,'kill_cast_pick_axe_throw',1045), -(16747,53328,'kill_design_crystal_drop_impact',1045), -(16748,53329,'kill_design_orc_footprints',1045), -(16749,53331,'kill_result_leash_p2p_static',1045), -(16750,53333,'kill_sitchair',1045), -(16751,53335,'kill_sound_vrewwx_body_fall',1045), -(16752,53336,'kill_trdskl_halas_pick',1045), -(16753,53343,'kill_design_chessboard_collapse_fx',1045), -(16754,53344,'kill_design_chessboard_static_fx',1045), -(16755,53345,'kill_design_druidring_burst_fx',1045), -(16756,53346,'kill_design_druidring_fx',1045), -(16757,53347,'kill_design_harpoon_fire',1045), -(16758,53348,'kill_design_harpoon_load',1045), -(16759,53358,'kill_sound_vrewwx_death',1045), -(16760,53359,'kill_sound_vrewwx_ouch',1045), -(16761,53362,'kill_bellyslide',1045), -(16762,53367,'kill_float_on_back',1045), -(16763,53369,'kill_laugh',1045), -(16764,53372,'kill_sound_vrewwx_buff',1045), -(16765,53373,'kill_sound_vrewwx_chomp',1045), -(16766,53383,'kill_sound_vrewwx_death_fall',1045), -(16767,53390,'kill_design_theer_symbol_blast_circle',1045), -(16768,53397,'kill_fly_ouch_backhand',1045), -(16769,53407,'kill_tiered_heal_ward',1045), -(16770,53408,'kill_tiered_shaman_wheel_base',1045), -(16771,53409,'kill_tiered_spirit_summon',1045), -(16772,53410,'kill_tiered_spirit_swirl_hit',1045), -(16773,53418,'kill_proc_sword_head',1045), -(16774,53421,'kill_tiered_hand_stars',1045), -(16775,53422,'kill_tiered_haze',1045), -(16776,53423,'kill_tiered_head_spirits',1045), -(16777,53424,'kill_tiered_spirit_heal',1045), -(16778,53434,'kill_tiered_heal_flourish',1045), -(16779,53435,'kill_tiered_resurrect_spirits',1045), -(16780,53436,'kill_tiered_spirit_elephant',1045), -(16781,53437,'kill_tiered_spirit_swirl_shield',1045), -(16782,53447,'kill_tiered_echo_rings',1045), -(16783,53448,'kill_tiered_fire',1045), -(16784,53449,'kill_tiered_iceball_p2p',1045), -(16785,53450,'kill_tiered_spirit_tube',1045), -(16786,53451,'kill_tiered_spirits_p2p',1045), -(16787,53461,'kill_tiered_ancestral_summon',1045), -(16788,53462,'kill_tiered_lunar_summon',1045), -(16789,53463,'kill_tiered_spirit_circle_summon',1045), -(16790,53464,'kill_tiered_spirit_growing',1045), -(16791,53471,'kill_fly_jumpsubstitute',1045), -(16792,53472,'kill_fly_turn_left',1045), -(16793,53473,'kill_fly_turn_right',1045), -(16794,53474,'kill_fly_walk',1045), -(16795,53476,'kill_lizard_backup',1045), -(16796,53477,'kill_lizard_fall',1045), -(16797,53478,'kill_lizard_fly_backup',1045), -(16798,53479,'kill_lizard_fly_fall',1045), -(16799,53480,'kill_lizard_fly_idle',1045), -(16800,53481,'kill_lizard_fly_idle01',1045), -(16801,53482,'kill_lizard_fly_jump',1045), -(16802,53483,'kill_lizard_fly_jump_substitute',1045), -(16803,53484,'kill_lizard_fly_run',1045), -(16804,53485,'kill_lizard_fly_turn_left',1045), -(16805,53486,'kill_lizard_fly_turn_right',1045), -(16806,53487,'kill_lizard_fly_walk',1045), -(16807,53488,'kill_lizard_glide',1045), -(16808,53489,'kill_lizard_idle',1045), -(16809,53490,'kill_lizard_idle01',1045), -(16810,53491,'kill_lizard_jump',1045), -(16811,53492,'kill_lizard_jump_substitute',1045), -(16812,53493,'kill_lizard_land',1045), -(16813,53494,'kill_lizard_long_fall',1045), -(16814,53495,'kill_lizard_run',1045), -(16815,53496,'kill_lizard_turn_left',1045), -(16816,53497,'kill_lizard_turn_right',1045), -(16817,53498,'kill_lizard_walk',1045), -(16818,53506,'kill_lizard_fly_dive',1045), -(16819,53507,'kill_lizard_fly_glide',1045), -(16820,53508,'kill_lizard_fly_jumpsubstitute',1045), -(16821,53511,'kill_tiered_bone_tendrils',1045), -(16822,53512,'kill_tiered_crystal_soultap',1045), -(16823,53513,'kill_tiered_dark_swirly_wisps',1045), -(16824,53514,'kill_tiered_deathward',1045), -(16825,53515,'kill_tiered_forced_shader_burst_blend',1045), -(16826,53516,'kill_tiered_hand_stars_dark',1045), -(16827,53517,'kill_tiered_heal_shroud',1045), -(16828,53518,'kill_tiered_poison_spirits_p2p',1045), -(16829,53519,'kill_tiered_rune_debuff_all',1045), -(16830,53520,'kill_tiered_shadow_curse',1045), -(16831,53521,'kill_tiered_shroud',1045), -(16832,53529,'kill_lizard_fly_enter',1045), -(16833,53539,'kill_spark_trail_lf',1045), -(16834,53540,'kill_spark_trail_lr',1045), -(16835,53541,'kill_spark_trail_rf',1045), -(16836,53542,'kill_spark_trail_rr',1045), -(16837,53549,'kill_griffin_backup',1045), -(16838,53550,'kill_griffin_fall',1045), -(16839,53551,'kill_griffin_fly_backup',1045), -(16840,53552,'kill_griffin_fly_dive',1045), -(16841,53553,'kill_griffin_fly_enter',1045), -(16842,53554,'kill_griffin_fly_fall',1045), -(16843,53555,'kill_griffin_fly_glide',1045), -(16844,53556,'kill_griffin_fly_idle',1045), -(16845,53557,'kill_griffin_fly_idle01',1045), -(16846,53558,'kill_griffin_fly_jump',1045), -(16847,53559,'kill_griffin_fly_jumpsubstitute',1045), -(16848,53560,'kill_griffin_fly_run',1045), -(16849,53561,'kill_griffin_fly_turn_left',1045), -(16850,53562,'kill_griffin_fly_turn_right',1045), -(16851,53563,'kill_griffin_fly_walk',1045), -(16852,53564,'kill_griffin_idle01',1045), -(16853,53565,'kill_griffin_jump',1045), -(16854,53566,'kill_griffin_jump_substitute',1045), -(16855,53567,'kill_griffin_land',1045), -(16856,53568,'kill_griffin_long_fall',1045), -(16857,53569,'kill_griffin_turn_left',1045), -(16858,53570,'kill_griffin_turn_right',1045), -(16859,53572,'kill_pegasus_backup',1045), -(16860,53573,'kill_pegasus_fall',1045), -(16861,53574,'kill_pegasus_fly_backup',1045), -(16862,53575,'kill_pegasus_fly_dive',1045), -(16863,53576,'kill_pegasus_fly_enter',1045), -(16864,53577,'kill_pegasus_fly_fall',1045), -(16865,53578,'kill_pegasus_fly_glide',1045), -(16866,53579,'kill_pegasus_fly_idle',1045), -(16867,53580,'kill_pegasus_fly_idle01',1045), -(16868,53581,'kill_pegasus_fly_jump',1045), -(16869,53582,'kill_pegasus_fly_jumpsubstitute',1045), -(16870,53583,'kill_pegasus_fly_run',1045), -(16871,53584,'kill_pegasus_fly_turn_left',1045), -(16872,53585,'kill_pegasus_fly_turn_right',1045), -(16873,53586,'kill_pegasus_fly_walk',1045), -(16874,53587,'kill_pegasus_idle01',1045), -(16875,53588,'kill_pegasus_jump',1045), -(16876,53589,'kill_pegasus_jump_substitute',1045), -(16877,53590,'kill_pegasus_land',1045), -(16878,53591,'kill_pegasus_long_fall',1045), -(16879,53592,'kill_pegasus_turn_left',1045), -(16880,53593,'kill_pegasus_turn_right',1045), -(16881,53601,'kill_result_weapon_trail_music',1096), -(16882,53604,'kill_tiered_bard_baton',1096), -(16883,53605,'kill_tiered_bard_drum',1096), -(16884,53606,'kill_tiered_bard_flute',1096), -(16885,53607,'kill_tiered_bard_guitar',1096), -(16886,53608,'kill_tiered_bard_horn',1096), -(16887,53609,'kill_tiered_bard_shroud',1096), -(16888,53610,'kill_tiered_bard_wheel_base',1096), -(16889,53611,'kill_tiered_clanging_notes',1096), -(16890,53612,'kill_tiered_coin_toss',1096), -(16891,53613,'kill_tiered_dancing_blades',1096), -(16892,53614,'kill_tiered_hand_notes',1096), -(16893,53615,'kill_tiered_hand_spin_notes',1096), -(16894,53616,'kill_tiered_jester_cap_toss_p2p',1096), -(16895,53617,'kill_tiered_music_ball_p2p',1096), -(16896,53618,'kill_tiered_music_band',1096), -(16897,53619,'kill_tiered_music_beam_p2p',1096), -(16898,53620,'kill_tiered_music_blast_ball',1096), -(16899,53621,'kill_tiered_music_bubble',1096), -(16900,53622,'kill_tiered_music_swirls',1096), -(16901,53623,'kill_tiered_music_wave_p2p',1096), -(16902,53624,'kill_tiered_notes_blast',1096), -(16903,53625,'kill_tiered_notes_burst',1096), -(16904,53626,'kill_tiered_notes_confetti',1096), -(16905,53627,'kill_tiered_notes_head',1096), -(16906,53628,'kill_tiered_notes_out_blast',1096), -(16907,53629,'kill_tiered_notes_out_song',1096), -(16908,53630,'kill_tiered_notes_shield',1096), -(16909,53631,'kill_tiered_notes_spiral_frenzy',1096), -(16910,53632,'kill_tiered_notes_up_song',1096), -(16911,53633,'kill_tiered_slashing_blade',1096), -(16912,53634,'kill_tiered_sound_rings_head',1096), -(16913,53635,'kill_tiered_spark_burst',1096), -(16914,53636,'kill_tiered_stabbing_blades',1096), -(16915,53646,'kill_tiered_notes_swirling_p2p',1096), -(16916,53656,'kill_tiered_bellow',1096), -(16917,53657,'kill_tiered_eyehand_buff',1096), -(16918,53658,'kill_tiered_note_crescent_p2p',1096), -(16919,53659,'kill_tiered_notes_out_song_bellow',1096), -(16920,53660,'kill_tiered_notes_transfer_p2p',1096), -(16921,53661,'kill_tiered_rock_skin_grow',1096), -(16922,53662,'kill_tiered_shaky_notes',1096), -(16923,53669,'kill_griffin_mount_backup',1096), -(16924,53670,'kill_griffin_mount_fall',1096), -(16925,53671,'kill_griffin_mount_fly_backup',1096), -(16926,53672,'kill_griffin_mount_fly_dive',1096), -(16927,53673,'kill_griffin_mount_fly_enter',1096), -(16928,53674,'kill_griffin_mount_fly_fall',1096), -(16929,53675,'kill_griffin_mount_fly_glide',1096), -(16930,53676,'kill_griffin_mount_fly_idle',1096), -(16931,53677,'kill_griffin_mount_fly_idle01',1096), -(16932,53678,'kill_griffin_mount_fly_jump',1096), -(16933,53679,'kill_griffin_mount_fly_jumpsubstitute',1096), -(16934,53680,'kill_griffin_mount_fly_run',1096), -(16935,53681,'kill_griffin_mount_fly_turn_left',1096), -(16936,53682,'kill_griffin_mount_fly_turn_right',1096), -(16937,53683,'kill_griffin_mount_fly_walk',1096), -(16938,53684,'kill_griffin_mount_idle',1096), -(16939,53685,'kill_griffin_mount_idle01',1096), -(16940,53686,'kill_griffin_mount_jump',1096), -(16941,53687,'kill_griffin_mount_jump_substitute',1096), -(16942,53688,'kill_griffin_mount_land',1096), -(16943,53689,'kill_griffin_mount_long_fall',1096), -(16944,53690,'kill_griffin_mount_run',1096), -(16945,53691,'kill_griffin_mount_turn_left',1096), -(16946,53692,'kill_griffin_mount_turn_right',1096), -(16947,53693,'kill_griffin_mount_walk',1096), -(16948,53697,'kill_tiered_arrow_blast',1096), -(16949,53698,'kill_tiered_blood_burst',1096), -(16950,53699,'kill_tiered_fire_arrow_p2p',1096), -(16951,53700,'kill_tiered_harvest_arrows',1096), -(16952,53701,'kill_tiered_lightning_blast_hit',1096), -(16953,53702,'kill_tiered_lightning_spark_burst',1096), -(16954,53703,'kill_tiered_massive_hit',1096), -(16955,53704,'kill_tiered_ranged_buff',1096), -(16956,53705,'kill_tiered_shimmer_arrow_p2p',1096), -(16957,53706,'kill_tiered_slow_arrow_p2p',1096), -(16958,53707,'kill_tiered_sparkle_trail_weapon_blend',1096), -(16959,53708,'kill_tiered_weapon_blood_lust',1096), -(16960,53718,'kill_tiered_arrow',1096), -(16961,53719,'kill_tiered_arrow_storm',1096), -(16962,53720,'kill_tiered_briar_trap',1096), -(16963,53721,'kill_tiered_bullseye',1096), -(16964,53722,'kill_tiered_hawk_summon',1096), -(16965,53723,'kill_tiered_head_arrow_p2p',1096), -(16966,53724,'kill_tiered_redirect_arrow_p2p',1096), -(16967,53725,'kill_tiered_redirection',1096), -(16968,53726,'kill_tiered_shoot_arrow_rain',1096), -(16969,53727,'kill_tiered_triple_arrow_p2p',1096), -(16970,53737,'kill_tiered_ice_comet',1096), -(16971,53744,'kill_griffin_mount_fly_climb',1096), -(16972,53745,'kill_griffin_mount_fly_down',1096), -(16973,53746,'kill_griffin_mount_fly_up',1096), -(16974,53750,'kill_tiered_blades_buff',1096), -(16975,53751,'kill_tiered_damage_persist',1096), -(16976,53752,'kill_tiered_dark_arrow_p2p',1096), -(16977,53753,'kill_tiered_dark_cloud',1096), -(16978,53754,'kill_tiered_death_mark',1096), -(16979,53755,'kill_tiered_deflect_buff',1096), -(16980,53756,'kill_tiered_shoot_daggers',1096), -(16981,53757,'kill_tiered_slashing_daggers',1096), -(16982,53767,'kill_tiered_apply_poison_p2p',1096), -(16983,53768,'kill_tiered_dagger_head',1096), -(16984,53769,'kill_tiered_dark_ring_vanish',1096), -(16985,53770,'kill_tiered_fatal_followup',1096), -(16986,53771,'kill_tiered_hand_plasma',1096), -(16987,53772,'kill_tiered_spin_dagger_blast',1096), -(16988,53779,'kill_griffin_mount_fly_jump_substitute',1096), -(16989,53789,'kill_tiered_blast_tube',1096), -(16990,53790,'kill_tiered_flurry_daggers',1096), -(16991,53791,'kill_tiered_mesmerized',1096), -(16992,53792,'kill_tiered_slash_trail',1096), -(16993,53793,'kill_tiered_snow_dagger_p2p',1096), -(16994,53794,'kill_tiered_spin_shield_buff',1096), -(16995,53795,'kill_tiered_storm_waves',1096), -(16996,53796,'kill_tiered_stream_throw_attack_p2p',1096), -(16997,53797,'kill_tiered_swords_buff',1096), -(16998,53798,'kill_tiered_teeth_glint',1096), -(16999,53806,'kill_result_bind_wound',1096), -(17000,53809,'kill_tiered_blast_trail',1096), -(17001,53810,'kill_tiered_dagger_p2p',1096), -(17002,53811,'kill_tiered_dark_melee_swipe',1096), -(17003,53812,'kill_tiered_poison_forced_shader_weapon',1096), -(17004,53813,'kill_tiered_slash_trail_dark',1096), -(17005,53820,'kill_design_wellspring_bones_toss',1096), -(17006,53822,'kill_result_wellspring_ghosts_attack_p2p',1096), -(17007,53832,'kill_tiered_cone_defensive_buff',1096), -(17008,53833,'kill_tiered_cone_offensive_buff',1096), -(17009,53840,'kill_design_crater_blast',1096), -(17010,53841,'kill_design_fire_area',1096), -(17011,53843,'kill_result_spore_toss_p2p',1096), -(17012,53850,'kill_design_electro_disease_portal',1096), -(17013,53851,'kill_design_lightning_shield',1096), -(17014,53852,'kill_design_summon_disease_portal',1096), -(17015,53859,'kill_design_meteor_impact',1096), -(17016,53860,'kill_design_meteor_target',1096), -(17017,53863,'kill_ball_lightning_bolt_p2p',1096), -(17018,53865,'kill_cast_potion_hand_pattern_heal',1096), -(17019,53866,'kill_cast_potion_hand_sparks',1096), -(17020,53867,'kill_cast_potion_ring_cure',1096), -(17021,53869,'kill_cast_resurrect_swirls',1096), -(17022,53873,'kill_result_fire_engulfed',1096), -(17023,53874,'kill_result_flash_heal',1096), -(17024,53877,'kill_trdskl_vial_left',1096), -(17025,53884,'kill_design_gf_tree_fire',1096), -(17026,53885,'kill_design_gf_tree_fire_big',1096), -(17027,53887,'kill_result_head_flash_sparks',1096), -(17028,53890,'kill_cast_plague_spikes',1096), -(17029,53895,'kill_design_feet_trail_leaves',1096), -(17030,53897,'kill_pbae_cast_blast',1096), -(17031,53902,'kill_cast_summon_elemental_cyclone',1096), -(17032,53905,'kill_design_gf_cleansed_flowers',1096), -(17033,53906,'kill_design_gf_poisoned_vines',1096), -(17034,53907,'kill_design_guk_portal',1096), -(17035,53908,'kill_design_power_blast',1096), -(17036,53909,'kill_design_summon_power',1096), -(17037,53910,'kill_griffin_fly_up',1096), -(17038,53913,'kill_boom_sound',1096), -(17039,53919,'kill_result_guk_axe_attack_p2p',1096), -(17040,53920,'kill_result_guk_axe_stuck',1096), -(17041,53921,'kill_result_snotball_p2p',1096), -(17042,53931,'kill_turkey_cannon_blast',1096), -(17043,53932,'kill_turkey_shoot',1096), -(17044,53940,'kill_lights_baubles',1096), -(17045,53941,'kill_lights_bows',1096), -(17046,53949,'kill_result_book_hover',1096), -(17047,53951,'kill_sound_feeding',1096), -(17048,53953,'kill_zombie_feeding_fx',1096), -(17049,53960,'kill_design_boiling_pool_fx',1096), -(17050,53961,'kill_design_book_blast',1096), -(17051,53962,'kill_design_book_summon',1096), -(17052,53963,'kill_design_icy_shadow_portal',1096), -(17053,53965,'kill_knocktoknees_enter',1096), -(17054,53966,'kill_knocktoknees_idle',1096), -(17055,53969,'kill_cast_mirror_emerge',1096), -(17056,53974,'kill_design_light_column_grow',1096), -(17057,53977,'kill_bite',1096), -(17058,53987,'kill_tiered_bloodlust_swords',1096), -(17059,53988,'kill_tiered_cloud_buff_out',1096), -(17060,53989,'kill_tiered_divine_wave_p2p',1096), -(17061,53990,'kill_tiered_electrified',1096), -(17062,53991,'kill_tiered_rock_blast',1096), -(17063,53992,'kill_tiered_weakness',1096), -(17064,53993,'kill_tiered_whip_dark',1096), -(17065,54003,'kill_tiered_brain_leech_p2p',1096), -(17066,54004,'kill_tiered_dark_vanish',1096), -(17067,54005,'kill_tiered_dark_ward',1096), -(17068,54006,'kill_tiered_icy_cage',1096), -(17069,54016,'kill_tiered_cold_ice_crystals',1096), -(17070,54017,'kill_tiered_icicle_rain',1096), -(17071,54018,'kill_tiered_skull_p2p',1096), -(17072,54019,'kill_tiered_starnova_p2p',1096), -(17073,54029,'kill_tiered_dark_fire',1096), -(17074,54030,'kill_tiered_poison_spore_p2p',1096), -(17075,54031,'kill_tiered_spirit_dragon',1096), -(17076,54041,'kill_tiered_cast_mysticism',1096), -(17077,54042,'kill_tiered_light_ward',1096), -(17078,54043,'kill_tiered_mental_comet',1096), -(17079,54044,'kill_tiered_result_mysticism',1096), -(17080,54045,'kill_tiered_whip_circling',1096), -(17081,54055,'kill_tiered_ice_comet_shower',1096), -(17082,54056,'kill_tiered_sanction_of_merit',1096), -(17083,54061,'kill_combat_art_buff',1096), -(17084,54064,'kill_design_crow_shoulder',1096), -(17085,54065,'kill_design_ghost_wurm_shoulder',1096), -(17086,54067,'kill_result_dark_bubbles_rising',1096), -(17087,54075,'kill_result_candy_stars_rising',1096), -(17088,54085,'kill_wolf_mount_backup',1096), -(17089,54086,'kill_wolf_mount_fall',1096), -(17090,54087,'kill_wolf_mount_idle',1096), -(17091,54088,'kill_wolf_mount_idle01',1096), -(17092,54089,'kill_wolf_mount_jump',1096), -(17093,54090,'kill_wolf_mount_jump_substitute',1096), -(17094,54091,'kill_wolf_mount_land',1096), -(17095,54092,'kill_wolf_mount_long_fall',1096), -(17096,54093,'kill_wolf_mount_run',1096), -(17097,54094,'kill_wolf_mount_turn_left',1096), -(17098,54095,'kill_wolf_mount_turn_right',1096), -(17099,54096,'kill_wolf_mount_walk',1096), -(17100,54106,'kill_tiered_cloud_ring_burst',1096), -(17101,54107,'kill_tiered_ember_sword',1096), -(17102,54108,'kill_tiered_fire_rain',1096), -(17103,54109,'kill_tiered_lightning_bolt_p2p',1096), -(17104,54110,'kill_wolfmount_backup',1096), -(17105,54111,'kill_wolfmount_fall',1096), -(17106,54112,'kill_wolfmount_idle',1096), -(17107,54113,'kill_wolfmount_idle01',1096), -(17108,54114,'kill_wolfmount_jump',1096), -(17109,54115,'kill_wolfmount_jump_substitute',1096), -(17110,54116,'kill_wolfmount_land',1096), -(17111,54117,'kill_wolfmount_long_fall',1096), -(17112,54118,'kill_wolfmount_run',1096), -(17113,54119,'kill_wolfmount_turn_left',1096), -(17114,54120,'kill_wolfmount_turn_right',1096), -(17115,54121,'kill_wolfmount_walk',1096), -(17116,54131,'kill_tiered_hammer_head',1096), -(17117,54132,'kill_tiered_power_fount',1096), -(17118,54133,'kill_tiered_smashing_hammers',1096), -(17119,54140,'kill_ettin_drink',1096), -(17120,54144,'kill_tiered_color_shower',1096), -(17121,54145,'kill_tiered_haste',1096), -(17122,54155,'kill_tiered_bat_swarm_appear',1096), -(17123,54156,'kill_tiered_ember_shield',1096), -(17124,54164,'kill_result_paper_toss_p2p',1096), -(17125,54174,'kill_tiered_jesters_cap',1096), -(17126,54182,'kill_persist_notes_dirge',1096), -(17127,54183,'kill_persist_notes_troub',1096), -(17128,54186,'kill_sound_wolfmount_bare_pant',1096), -(17129,54187,'kill_sound_wolfmount_bare_roar_3',1096), -(17130,54188,'kill_sound_wolfmount_footstep_quiet',1096), -(17131,54189,'kill_sound_wolfmount_idle',1096), -(17132,54190,'kill_sound_wolfmount_jump_substitute',1096), -(17133,54191,'kill_sound_wolfmount_land',1096), -(17134,54192,'kill_tiered_notes_entranced',1096), -(17135,54193,'kill_tiered_poison_notes_wave_p2p',1096), -(17136,54200,'kill_design_vision_plane_map_bell',1096), -(17137,54210,'kill_tiered_rift_crack',1096), -(17138,54217,'kill_design_djinn_pod_cloud',1096), -(17139,54219,'kill_result_water_douse',1096), -(17140,54222,'kill_tiered_lava_column',1096), -(17141,54230,'kill_result_arrow_ridden',1096), -(17142,54238,'kill_result_body_fire',1096), -(17143,54239,'kill_result_body_lightning_purple',1096), -(17144,54240,'kill_result_body_snow',1096), -(17145,54242,'kill_sound_ettin_1h_sword_attack',1096), -(17146,54243,'kill_sound_ettin_1h_sword_attack01',1096), -(17147,54244,'kill_sound_ettin_1h_sword_attack03',1096), -(17148,54245,'kill_sound_ettin_fs',1096), -(17149,54246,'kill_sound_ettin_attack',1096), -(17150,54247,'kill_sound_ettin_attack01',1096), -(17151,54248,'kill_sound_ettin_attack02',1096), -(17152,54249,'kill_sound_ettin_attack03',1096), -(17153,54250,'kill_sound_ettin_attack_throw_boulder',1096), -(17154,54251,'kill_sound_ettin_cast_aoe_beneficial_end',1096), -(17155,54252,'kill_sound_ettin_cast_aoe_beneficial_loop',1096), -(17156,54253,'kill_sound_ettin_cast_aoe_beneficial_start',1096), -(17157,54254,'kill_sound_ettin_cast_aoe_detrimental_end',1096), -(17158,54255,'kill_sound_ettin_cast_aoe_detrimental_loop',1096), -(17159,54256,'kill_sound_ettin_cast_aoe_detrimental_start',1096), -(17160,54257,'kill_sound_ettin_cast_aoe_invocation_end',1096), -(17161,54258,'kill_sound_ettin_cast_aoe_invocation_loop',1096), -(17162,54259,'kill_sound_ettin_cast_aoe_invocation_start',1096), -(17163,54260,'kill_sound_ettin_cast_aoe_wand_end',1096), -(17164,54261,'kill_sound_ettin_cast_aoe_wand_loop',1096), -(17165,54262,'kill_sound_ettin_cast_aoe_wand_start',1096), -(17166,54263,'kill_sound_ettin_cast_summon_end',1096), -(17167,54264,'kill_sound_ettin_cast_summon_loop',1096), -(17168,54265,'kill_sound_ettin_cast_summon_start',1096), -(17169,54266,'kill_sound_ettin_cast_targeted_beneficial_end',1096), -(17170,54267,'kill_sound_ettin_cast_targeted_beneficial_start',1096), -(17171,54268,'kill_sound_ettin_cast_targeted_detrimental_end',1096), -(17172,54269,'kill_sound_ettin_cast_targeted_detrimental_start',1096), -(17173,54270,'kill_sound_ettin_cast_targeted_wand_end',1096), -(17174,54271,'kill_sound_ettin_cast_targeted_wand_loop',1096), -(17175,54272,'kill_sound_ettin_cast_targeted_wand_start',1096), -(17176,54273,'kill_sound_ettin_charge_up',1096), -(17177,54274,'kill_sound_ettin_dodge_backhand',1096), -(17178,54275,'kill_sound_ettin_dodge_forehand',1096), -(17179,54276,'kill_sound_ettin_drink',1096), -(17180,54277,'kill_sound_ettin_dual_wield_attack',1096), -(17181,54278,'kill_sound_ettin_dual_wield_attack01',1096), -(17182,54279,'kill_sound_ettin_dual_wield_attack02',1096), -(17183,54280,'kill_sound_ettin_dual_wield_attack03',1096), -(17184,54281,'kill_sound_ettin_habitat01',1096), -(17185,54282,'kill_sound_ettin_habitat03',1096), -(17186,54283,'kill_sound_ettin_idle01',1096), -(17187,54284,'kill_sound_ettin_idle02',1096), -(17188,54285,'kill_sound_ettin_knockeddowntoknees',1096), -(17189,54286,'kill_sound_ettin_ouch_backhand',1096), -(17190,54287,'kill_sound_ettin_ouch_forehand',1096), -(17191,54288,'kill_sound_ettin_run',1096), -(17192,54289,'kill_sound_ettin_shield_shove',1096), -(17193,54290,'kill_sound_ettin_swim_idle',1096), -(17194,54291,'kill_sound_ettin_walk',1096), -(17195,54292,'kill_sound_ettin_whirling_attack',1096), -(17196,54293,'kill_sound_ettin_wild_swing',1096), -(17197,54295,'kill_sound_idle03',1096), -(17198,54296,'kill_sound_wolfmount_idle01',1096), -(17199,54297,'kill_sound_wolfmount_turn_left',1096), -(17200,54298,'kill_sound_wolfmount_turn_right',1096), -(17201,54305,'kill_fly_attack01',1096), -(17202,54306,'kill_fly_attack02',1096), -(17203,54307,'kill_fly_attack03',1096), -(17204,54308,'kill_fly_death',1096), -(17205,54309,'kill_fly_dodge',1096), -(17206,54310,'kill_fly_ouchbackhand',1096), -(17207,54311,'kill_fly_ouchforehand',1096), -(17208,54312,'kill_fly_ouchthrust',1096), -(17209,54313,'kill_fly_turnleft',1096), -(17210,54314,'kill_fly_turnright',1096), -(17211,54316,'kill_perch',1096), -(17212,54323,'kill_design_book_summon_blue',1096), -(17213,54324,'kill_design_book_summon_red',1096), -(17214,54332,'kill_result_light_flare_p2p',1096), -(17215,54337,'kill_cast_shadow_gather',1096), -(17216,54338,'kill_cast_speed_trail_shadow',1096), -(17217,54342,'kill_removemask_enter',1096), -(17218,54343,'kill_removemask_exit',1096), -(17219,54344,'kill_removemask_idle',1096), -(17220,54347,'kill_attack_cage',1096), -(17221,54353,'kill_result_cage_beam_p2p',1096), -(17222,54354,'kill_result_spell_cage',1096), -(17223,54358,'kill_spell_cage_hit',1096), -(17224,54361,'kill_badger_dig',1096), -(17225,54366,'kill_design_vekascent_lifebringer',1096), -(17226,54373,'kill_design_vekascent_ice_bridge',1096), -(17227,54381,'kill_result_ice_trap_swirls',1096), -(17228,54384,'kill_cast_hot_water_douse',1096), -(17229,54393,'kill_trdskl_pot_large',1096), -(17230,54400,'kill_design_tofs_jail_barrier',1096), -(17231,54407,'kill_design_tofs_water_orb',1096), -(17232,54412,'kill_cast_scream',1096), -(17233,54413,'kill_cast_wing_buffet',1096), -(17234,54417,'kill_result_vines_trap',1096), -(17235,54424,'kill_design_vekfortress_water_blast',1096), -(17236,54425,'kill_design_vekfortress_water_warning',1096), -(17237,54426,'kill_design_vekpools_water_gush',1096), -(17238,54427,'kill_design_vekpools_water_warning',1096), -(17239,54434,'kill_design_velks_breakable_wall',1096), -(17240,54435,'kill_design_velks_breakable_wall_blue',1096), -(17241,54437,'kill_result_ice_spikes_growing',1096), -(17242,54438,'kill_result_zombie_slash',1096), -(17243,54442,'kill_trdskl_meat',1096), -(17244,54445,'kill_bow_attack01',1096), -(17245,54446,'kill_bow_attack02',1096), -(17246,54447,'kill_bow_attack03',1096), -(17247,54452,'kill_exit',1096), -(17248,54457,'kill_untrained_attack01',1096), -(17249,54458,'kill_untrained_attack02',1096), -(17250,54459,'kill_untrained_attack03',1096), -(17251,54467,'kill_persist_cold_book_swarm',1096), -(17252,54468,'kill_result_forced_shader_web',1096), -(17253,54469,'kill_result_halas_runes_spiral',1096), -(17254,54470,'kill_result_healthdrain_p2p',1096), -(17255,54477,'kill_design_vekpools_flower_fx',1096), -(17256,54482,'kill_sound_tse_attack',1096), -(17257,54483,'kill_sound_tse_attack01',1096), -(17258,54484,'kill_sound_tse_attack02',1096), -(17259,54485,'kill_sound_tse_attack03',1096), -(17260,54486,'kill_sound_tse_cast_aoe_beneficial_end',1096), -(17261,54487,'kill_sound_tse_cast_aoe_invocation_end',1096), -(17262,54488,'kill_sound_tse_cast_summon_end',1096), -(17263,54489,'kill_sound_tse_cast_targeted_beneficial_end',1096), -(17264,54490,'kill_sound_tse_cast_targeted_beneficial_loop',1096), -(17265,54491,'kill_sound_tse_cast_targeted_beneficial_start',1096), -(17266,54492,'kill_sound_tse_cast_targeted_detrimental_end',1096), -(17267,54493,'kill_sound_tse_combat_enter',1096), -(17268,54494,'kill_sound_tse_dead_enter',1096), -(17269,54495,'kill_sound_tse_dodge_down',1096), -(17270,54496,'kill_sound_tse_dodge_thrust',1096), -(17271,54497,'kill_sound_tse_fly_attack',1096), -(17272,54498,'kill_sound_tse_fly_attack01',1096), -(17273,54499,'kill_sound_tse_fly_attack02',1096), -(17274,54500,'kill_sound_tse_fly_attack03',1096), -(17275,54501,'kill_sound_tse_fly_cast_targeted_beneficial_end',1096), -(17276,54502,'kill_sound_tse_fly_cast_targeted_beneficial_loop',1096), -(17277,54503,'kill_sound_tse_fly_cast_targeted_beneficial_start',1096), -(17278,54504,'kill_sound_tse_fly_cast_targeted_detrimental_end',1096), -(17279,54505,'kill_sound_tse_fly_idle',1096), -(17280,54506,'kill_sound_tse_fly_offensive_buff',1096), -(17281,54507,'kill_sound_tse_knockeddowntoknees',1096), -(17282,54508,'kill_sound_tse_offensive_buff',1096), -(17283,54509,'kill_sound_tse_ouch',1096), -(17284,54510,'kill_sound_tse_ouch_forehand',1096), -(17285,54511,'kill_sound_tse_ouch_thrust',1096), -(17286,54512,'kill_sound_tse_whirling_attack',1096), -(17287,54513,'kill_sound_tse_wild_swing',1096), -(17288,54520,'kill_design_sullon_zek_containment',1096), -(17289,54522,'kill_result_ice_melt',1096), -(17290,54526,'kill_sound_hland_griffin_attack01',1096), -(17291,54527,'kill_sound_hland_griffin_attack02',1096), -(17292,54528,'kill_sound_hland_griffin_attack03',1096), -(17293,54529,'kill_sound_hland_griffin_combat_enter',1096), -(17294,54530,'kill_sound_hland_griffin_dead_enter',1096), -(17295,54531,'kill_sound_hland_griffin_dodge_backhand',1096), -(17296,54532,'kill_sound_hland_griffin_dodge_down',1096), -(17297,54533,'kill_sound_hland_griffin_dodge_forehand',1096), -(17298,54534,'kill_sound_hland_griffin_dodge_thrust',1096), -(17299,54535,'kill_sound_hland_griffin_idle01',1096), -(17300,54536,'kill_sound_hland_griffin_ouch',1096), -(17301,54537,'kill_sound_hland_griffin_ouch_thrust',1096), -(17302,54538,'kill_sound_hland_griffin_swim_walk',1096), -(17303,54539,'kill_sound_hland_griffin_whirling_attack',1096), -(17304,54540,'kill_sound_hland_griffin_wildswing',1096), -(17305,54541,'kill_sound_othmir_m_1h_sword_attack',1096), -(17306,54542,'kill_sound_othmir_m_1h_sword_attack01',1096), -(17307,54543,'kill_sound_othmir_m_1h_sword_attack02',1096), -(17308,54544,'kill_sound_othmir_m_1h_sword_attack03',1096), -(17309,54545,'kill_sound_othmir_m_attack',1096), -(17310,54546,'kill_sound_othmir_m_attack01',1096), -(17311,54547,'kill_sound_othmir_m_attack02',1096), -(17312,54548,'kill_sound_othmir_m_attack03',1096), -(17313,54549,'kill_sound_othmir_m_bow_attack',1096), -(17314,54550,'kill_sound_othmir_m_cast_targeted_beneficial_end',1096), -(17315,54551,'kill_sound_othmir_m_cast_targeted_beneficial_loop',1096), -(17316,54552,'kill_sound_othmir_m_cast_targeted_beneficial_start',1096), -(17317,54553,'kill_sound_othmir_m_charge_up',1096), -(17318,54554,'kill_sound_othmir_m_combat_idle',1096), -(17319,54555,'kill_sound_othmir_m_dance',1096), -(17320,54556,'kill_sound_othmir_m_dead_enter',1096), -(17321,54557,'kill_sound_othmir_m_dual_wield_attack',1096), -(17322,54558,'kill_sound_othmir_m_dual_wield_attack01',1096), -(17323,54559,'kill_sound_othmir_m_dual_wield_attack02',1096), -(17324,54560,'kill_sound_othmir_m_dual_wield_attack03',1096), -(17325,54561,'kill_sound_othmir_m_idle02',1096), -(17326,54562,'kill_sound_othmir_m_offensive_buff',1096), -(17327,54563,'kill_sound_othmir_m_shield_shove',1096), -(17328,54564,'kill_sound_othmir_m_swim_idle',1096), -(17329,54565,'kill_sound_othmir_m_swim_run',1096), -(17330,54566,'kill_sound_othmir_m_swim_walk',1096), -(17331,54567,'kill_sound_othmir_m_whirling_attack',1096), -(17332,54568,'kill_sound_othmir_m_wild_swing',1096), -(17333,54569,'kill_writhe_idle',1096), -(17334,54577,'kill_result_ice_shatter',1096), -(17335,54578,'kill_result_seafoam_dissolve',1096), -(17336,54581,'kill_cast_enraged_flames',1096), -(17337,54587,'kill_result_hammer_shower',1096), -(17338,54591,'kill_sound_othmir_f_1h_sword_attack',1096), -(17339,54592,'kill_sound_othmir_f_1h_sword_attack01',1096), -(17340,54593,'kill_sound_othmir_f_1h_sword_attack02',1096), -(17341,54594,'kill_sound_othmir_f_1h_sword_attack03',1096), -(17342,54595,'kill_sound_othmir_f_attack',1096), -(17343,54596,'kill_sound_othmir_f_attack01',1096), -(17344,54597,'kill_sound_othmir_f_attack02',1096), -(17345,54598,'kill_sound_othmir_f_attack03',1096), -(17346,54599,'kill_sound_othmir_f_bow_attack',1096), -(17347,54600,'kill_sound_othmir_f_cast_targeted_beneficial_end',1096), -(17348,54601,'kill_sound_othmir_f_cast_targeted_beneficial_start',1096), -(17349,54602,'kill_sound_othmir_f_charge_up',1096), -(17350,54603,'kill_sound_othmir_f_combat_idle',1096), -(17351,54604,'kill_sound_othmir_f_dead_enter',1096), -(17352,54605,'kill_sound_othmir_f_dual_wield_attack',1096), -(17353,54606,'kill_sound_othmir_f_dual_wield_attack01',1096), -(17354,54607,'kill_sound_othmir_f_dual_wield_attack02',1096), -(17355,54608,'kill_sound_othmir_f_dual_wield_attack03',1096), -(17356,54609,'kill_sound_othmir_f_idle02',1096), -(17357,54610,'kill_sound_othmir_f_shield_shove',1096), -(17358,54611,'kill_sound_othmir_f_swim_idle',1096), -(17359,54612,'kill_sound_othmir_f_swim_walk',1096), -(17360,54613,'kill_sound_othmir_f_whirling_attack',1096), -(17361,54614,'kill_sound_othmir_f_wild_swing',1096), -(17362,54623,'kill_sleep_idle',1096), -(17363,54626,'kill_sound_othmir_fs',1096), -(17364,54627,'kill_sound_tse_fs',1096), -(17365,54632,'kill_cast_split_beam_flash',1096), -(17366,54633,'kill_cast_split_copy',1096), -(17367,54636,'kill_cast_elemental_converge',1096), -(17368,54641,'kill_design_elemental_coalescing',1096), -(17369,54643,'kill_result_elemental_drain_p2p',1096), -(17370,54646,'kill_aura_purple',1096), -(17371,54647,'kill_cast_death_beam',1096), -(17372,54648,'kill_cast_heal_ball',1096), -(17373,54655,'kill_sleep_enter',1096), -(17374,54656,'kill_sleep_exit',1096), -(17375,54661,'kill_sound_wolfpup_bf',1096), -(17376,54662,'kill_sound_wolfpup_angry',1096), -(17377,54663,'kill_sound_wolfpup_attack',1096), -(17378,54664,'kill_sound_wolfpup_confused',1096), -(17379,54665,'kill_sound_wolfpup_eat',1096), -(17380,54666,'kill_sound_wolfpup_footstep',1096), -(17381,54667,'kill_sound_wolfpup_hungry',1096), -(17382,54668,'kill_sound_wolfpup_idle01',1096), -(17383,54669,'kill_sound_wolfpup_idle02',1096), -(17384,54670,'kill_sound_wolfpup_ouch',1096), -(17385,54671,'kill_sound_wolfpup_sick',1096), -(17386,54672,'kill_sound_wolfpup_trick',1096), -(17387,54678,'kill_converse01_sit',1096), -(17388,54679,'kill_converse02_sit',1096), -(17389,54680,'kill_converse_sit',1096), -(17390,54682,'kill_design_coldain_prayer_shawl',1096), -(17391,54684,'kill_leap_enter',1096), -(17392,54685,'kill_leap_exit',1096), -(17393,54686,'kill_leap_idle',1096), -(17394,54690,'kill_sound_hland_griffin_fs',1096), -(17395,54691,'kill_sound_hland_griffin_cast_enter',1096), -(17396,54692,'kill_sound_hland_griffin_cast_exit',1096), -(17397,54693,'kill_sound_hland_griffin_charge_up',1096), -(17398,54700,'kill_design_coldain_ring_adamantium',1096), -(17399,54701,'kill_design_coldain_ring_copper',1096), -(17400,54702,'kill_design_coldain_ring_frostreaver',1096), -(17401,54703,'kill_design_coldain_ring_gold',1096), -(17402,54704,'kill_design_coldain_ring_hero',1096), -(17403,54705,'kill_design_coldain_ring_mithril',1096), -(17404,54706,'kill_design_coldain_ring_obsidian',1096), -(17405,54707,'kill_design_coldain_ring_platinum',1096), -(17406,54708,'kill_design_coldain_ring_silver',1096), -(17407,54709,'kill_design_coldain_ring_velium',1096), -(17408,54710,'kill_design_spider_shoulder',1096), -(17409,54716,'kill_sound_hland_griffin_wing_flap_01',1096), -(17410,54717,'kill_sound_hland_griffin_wing_flap_02',1096), -(17411,54724,'kill_dive',1096), -(17412,54726,'kill_result_talon_strike',1096), -(17413,54731,'kill_sound_hland_griffin_wild_swing',1096), -(17414,54735,'kill_whirlingattack',1096), -(17415,54738,'kill_cast_head_souls',1096), -(17416,54739,'kill_cast_head_spikes',1096), -(17417,54742,'kill_cast_tallonite_attacking',1096), -(17418,54743,'kill_cast_tallonite_lash_spin',1096), -(17419,54747,'kill_result_head_spikes',1096), -(17420,54755,'kill_untrained_exit',1096), -(17421,54763,'kill_result_ember_strike',1096), -(17422,54764,'kill_result_ice_vine_trap',1096), -(17423,54772,'kill_untrained_idle01',1096), -(17424,54775,'kill_cast_nipik_spirits',1096), -(17425,54778,'kill_cast_shadow_vortex',1096), -(17426,54782,'kill_result_forced_shader_lichen',1096), -(17427,54783,'kill_result_gnoll_drool',1096), -(17428,54797,'kill_sound_vamp_fs',1096), -(17429,54798,'kill_sound_vamp_f_idle',1096), -(17430,54799,'kill_sound_vamp_f_untrained_attack',1096), -(17431,54800,'kill_sound_vamp_f_untrained_attack01',1096), -(17432,54801,'kill_sound_vamp_f_untrained_attack02',1096), -(17433,54802,'kill_sound_vamp_f_untrained_attack03',1096), -(17434,54803,'kill_sound_vamp_f_untrained_enter',1096), -(17435,54804,'kill_sound_vamp_f_untrained_idle',1096), -(17436,54805,'kill_sound_vamp_f_untrained_idle01',1096), -(17437,54806,'kill_sound_vamp_f_whirling_attack',1096), -(17438,54812,'kill_converse_sit01',1096), -(17439,54813,'kill_converse_sit02',1096), -(17440,54815,'kill_design_velkslab_flame_arch',1096), -(17441,54817,'kill_result_red_glow',1096), -(17442,54825,'kill_sound_vamp_m_untrained_attack',1096), -(17443,54826,'kill_sound_vamp_m_untrained_attack01',1096), -(17444,54827,'kill_sound_vamp_m_untrained_attack02',1096), -(17445,54828,'kill_sound_vamp_m_untrained_attack03',1096), -(17446,54829,'kill_sound_vamp_m_untrained_enter',1096), -(17447,54830,'kill_sound_vamp_m_untrained_idle01',1096), -(17448,54831,'kill_sound_vamp_m_whirling_attack',1096), -(17449,54833,'kill_talking_idle',1096), -(17450,54840,'kill_griffin_mount_fly_glide_left',1096), -(17451,54841,'kill_griffin_mount_fly_glide_right',1096), -(17452,54844,'kill_cast_foot_crush_stomp',1096), -(17453,54845,'kill_cast_kromzek_strike',1096), -(17454,54848,'kill_cast_targeted_beneficial_idle',1096), -(17455,54849,'kill_cast_thunder_clap',1096), -(17456,54857,'kill_pugilist_idle01',1096), -(17457,54860,'kill_cast_aa_column_heal_blast',1096), -(17458,54861,'kill_cast_aa_heal_bars',1096), -(17459,54866,'kill_design_bat_appear',1096), -(17460,54867,'kill_design_bat_vanish',1096), -(17461,54868,'kill_hover_exit',1096), -(17462,54878,'kill_untrained_slash',1096), -(17463,54879,'kill_untrained_slash1',1096), -(17464,54880,'kill_untrained_slash2',1096), -(17465,54881,'kill_untrained_slash3',1096), -(17466,54888,'kill_griffin_mount_fly_strafe_left',1096), -(17467,54889,'kill_griffin_mount_fly_strafe_right',1096), -(17468,54891,'kill_pugilist_idle02',1096), -(17469,54892,'kill_result_aa_lightning_debuff',1096), -(17470,54893,'kill_result_aa_ward_column_blast',1096), -(17471,54901,'kill_kd_barrel_idle',1096), -(17472,54902,'kill_kd_barrel_roll_enter',1096), -(17473,54903,'kill_kd_barrel_roll_idle',1096), -(17474,54911,'kill_sound_vamp_f_pugilist_idle02',1096), -(17475,54912,'kill_sound_vamp_m_pugilist_idle02',1096), -(17476,54917,'kill_cast_spirit_hands',1096), -(17477,54918,'kill_cast_spirit_sands',1096), -(17478,54919,'kill_cast_spirit_shell_buff',1096), -(17479,54922,'kill_eat_idle',1096), -(17480,54924,'kill_result_ice_trap_dark',1096), -(17481,54925,'kill_result_small_net',1096), -(17482,54927,'kill_sniff_idle',1096), -(17483,54935,'kill_trdskl_vel_hammer',1096), -(17484,54936,'kill_walk_sniff',1096), -(17485,54943,'kill_design_bat_smoke_attack',1096), -(17486,54944,'kill_design_seaweed_cluster',1096), -(17487,54954,'kill_vamp_smoke_trail',1096), -(17488,54955,'kill_vampire_attack',1096), -(17489,54956,'kill_vampire_attack01',1096), -(17490,54957,'kill_vampire_attack02',1096), -(17491,54958,'kill_vampire_attack03',1096), -(17492,54959,'kill_vampire_dodge',1096), -(17493,54960,'kill_vampire_dodge01',1096), -(17494,54961,'kill_vampire_dodge02',1096), -(17495,54962,'kill_vampire_enter',1096), -(17496,54963,'kill_vampire_exit',1096), -(17497,54964,'kill_vampire_idle',1096), -(17498,54965,'kill_vampire_idle01',1096), -(17499,54966,'kill_vampire_idle02',1096), -(17500,54967,'kill_vampire_ouch',1096), -(17501,54968,'kill_vampire_ouch01',1096), -(17502,54969,'kill_vampire_parry',1096), -(17503,54970,'kill_vampire_recoil',1096), -(17504,54971,'kill_vampire_whirling_attack',1096), -(17505,54979,'kill_result_rock_crystal_cyclone',1096), -(17506,54988,'kill_vamp_grab_slash',1096), -(17507,54991,'kill_cast_cold_breath',1096), -(17508,54992,'kill_cast_inhale_breath',1096), -(17509,54993,'kill_cast_lightning_burst',1096), -(17510,54994,'kill_cast_lightning_wings',1096), -(17511,55008,'kill_vampire_nofx_attack',1096), -(17512,55009,'kill_vampire_nofx_attack01',1096), -(17513,55010,'kill_vampire_nofx_attack02',1096), -(17514,55011,'kill_vampire_nofx_attack03',1096), -(17515,55012,'kill_vampire_nofx_dodge',1096), -(17516,55013,'kill_vampire_nofx_dodge01',1096), -(17517,55014,'kill_vampire_nofx_dodge02',1096), -(17518,55015,'kill_vampire_nofx_enter',1096), -(17519,55016,'kill_vampire_nofx_exit',1096), -(17520,55017,'kill_vampire_nofx_idle',1096), -(17521,55018,'kill_vampire_nofx_idle01',1096), -(17522,55019,'kill_vampire_nofx_idle02',1096), -(17523,55020,'kill_vampire_nofx_ouch',1096), -(17524,55021,'kill_vampire_nofx_ouch01',1096), -(17525,55022,'kill_vampire_nofx_parry',1096), -(17526,55023,'kill_vampire_nofx_recoil',1096), -(17527,55024,'kill_vampire_nofx_whirling_attack',1096), -(17528,55025,'kill_vampire_whirling_nofx_attack',1096), -(17529,55032,'kill_design_seaweed_cluster_down',1096), -(17530,55034,'kill_result_object_sparkles_white_down',1096), -(17531,55037,'kill_barrel_blast_snd',1096), -(17532,55041,'kill_crate_break_snd',1096), -(17533,55043,'kill_design_rock_door_collapse',1096), -(17534,55044,'kill_design_vine_door_grow',1096), -(17535,55045,'kill_impact_snd',1096), -(17536,55047,'kill_result_barrel_explode',1096), -(17537,55048,'kill_result_crate_explode',1096), -(17538,55049,'kill_result_heat_shimmer_dots',1096), -(17539,55050,'kill_result_musk_spray_p2p',1096), -(17540,55051,'kill_result_musky_object',1096), -(17541,55060,'kill_vamp_smoke_burst',1096), -(17542,55068,'kill_run_temp',1096), -(17543,55077,'kill_walk_temp',1096), -(17544,55084,'kill_design_hawk_release',1096), -(17545,55085,'kill_fx_splash_out',1096), -(17546,55086,'kill_fx_splash_up',1096), -(17547,55088,'kill_result_hawk_circling',1096), -(17548,55095,'kill_design_lava',1096), -(17549,55109,'kill_sound_tse_rx_attack',1096), -(17550,55110,'kill_sound_tse_rx_buff',1096), -(17551,55111,'kill_sound_tse_rx_hit',1096), -(17552,55112,'kill_sound_tse_fly_rx_attack',1096), -(17553,55120,'kill_knockedtoback_idle',1096), -(17554,55129,'kill_sound_carac_crying',1096), -(17555,55132,'kill_admire',1096), -(17556,55137,'kill_griffin_mount_idle02',1096), -(17557,55145,'kill_measure',1096), -(17558,55147,'kill_snd_lich_attack',1096), -(17559,55148,'kill_snd_lich_attack01',1096), -(17560,55149,'kill_snd_lich_attack02',1096), -(17561,55150,'kill_snd_lich_attack03',1096), -(17562,55151,'kill_snd_lich_bride_idle_lp',1096), -(17563,55152,'kill_snd_lich_combat_enter',1096), -(17564,55153,'kill_snd_lich_ouch',1096), -(17565,55154,'kill_snd_lich_whirling_attack',1096), -(17566,55155,'kill_snd_lich_wild_swing',1096), -(17567,55158,'kill_sound_griffin_mount_idle01',1096), -(17568,55168,'kill_worship_idle',1096), -(17569,55171,'kill_cast_bone_toss',1096), -(17570,55175,'kill_count',1096), -(17571,55177,'kill_design_vel_cannon_fire',1096), -(17572,55192,'kill_trdskl_bone',1096), -(17573,55199,'kill_design_light_beam_fx',1096), -(17574,55200,'kill_design_tofs_portal_base_fx',1096), -(17575,55205,'kill_cast_sacrifice_blast',1096), -(17576,55208,'kill_design_fire_big',1096), -(17577,55209,'kill_design_fire_green',1096), -(17578,55210,'kill_design_fire_small',1096), -(17579,55212,'kill_result_mark_of_doom',1096), -(17580,55217,'kill_cast_rallos_zek_superbuff',1096), -(17581,55220,'kill_design_blue_fire_wall',1096), -(17582,55221,'kill_design_red_fire_wall',1096), -(17583,55224,'kill_sit_throne_idle',1096), -(17584,55232,'kill_result_giant_icicle_drop',1096), -(17585,55233,'kill_result_giant_spear_p2p',1096), -(17586,55236,'kill_cast_hammer_hands',1096), -(17587,55255,'kill_trdskl_ice_wand',1096), -(17588,55262,'kill_design_massive_rock_impact',1096), -(17589,55264,'kill_persist_blue_tagged',1096), -(17590,55265,'kill_persist_red_tagged',1096), -(17591,55266,'kill_result_indestructible',1096), -(17592,55267,'kill_result_invincible',1096), -(17593,55268,'kill_result_statue_beam_p2p',1096), -(17594,55271,'kill_amaze',1096), -(17595,55276,'kill_design_zek_helm_fire',1096), -(17596,55277,'kill_grin',1096), -(17597,55278,'kill_growl',1096), -(17598,55280,'kill_mourn',1096), -(17599,55281,'kill_puzzle',1096), -(17600,55282,'kill_roar',1096), -(17601,55289,'kill_design_distort_face',1096), -(17602,55290,'kill_design_kd_rage_portal',1096), -(17603,55293,'kill_cast_aa_ancestor_swirls',1096), -(17604,55294,'kill_cast_aa_spiritfire_blast',1096), -(17605,55295,'kill_cast_aa_spiritfire_swirls',1096), -(17606,55301,'kill_result_aa_pulsing_ward',1096), -(17607,55302,'kill_result_aa_totem_blast',1096), -(17608,55309,'kill_gathering_find',1096), -(17609,55310,'kill_griffin_mount_launch',1096), -(17610,55312,'kill_result_aa_cold_mesh_grow',1096), -(17611,55313,'kill_result_aa_crush_blast',1096), -(17612,55314,'kill_result_aa_focus_spark',1096), -(17613,55315,'kill_result_aa_manawall',1096), -(17614,55316,'kill_result_aa_mesh_grow',1096), -(17615,55317,'kill_result_aa_shadow_blob_p2p',1096), -(17616,55318,'kill_result_aa_swap_hate',1096), -(17617,55321,'kill_applaud',1096), -(17618,55324,'kill_clap',1096), -(17619,55327,'kill_cast_aa_lightning_cleave_blast',1096), -(17620,55328,'kill_cast_aa_riposte',1096), -(17621,55329,'kill_cast_aa_shield_bars',1096), -(17622,55332,'kill_cast_aa_deflecting_daggers',1096), -(17623,55338,'kill_result_aa_slash_hit',1096), -(17624,55339,'kill_result_aa_watchful_eyes',1096), -(17625,55342,'kill_cast_aa_music_ring_blast',1096), -(17626,55343,'kill_cast_aa_notes_spiral',1096), -(17627,55349,'kill_result_aa_note_dagger_p2p',1096), -(17628,55352,'kill_carpet_fly_backup',1096), -(17629,55353,'kill_carpet_fly_climb',1096), -(17630,55354,'kill_carpet_fly_dive',1096), -(17631,55355,'kill_carpet_fly_glide',1096), -(17632,55356,'kill_carpet_fly_glide_left',1096), -(17633,55357,'kill_carpet_fly_glide_right',1096), -(17634,55358,'kill_carpet_fly_idle',1096), -(17635,55359,'kill_carpet_fly_run',1096), -(17636,55360,'kill_carpet_fly_strafe_left',1096), -(17637,55361,'kill_carpet_fly_strafe_right',1096), -(17638,55362,'kill_carpet_fly_turn_left',1096), -(17639,55363,'kill_carpet_fly_turn_right',1096), -(17640,55364,'kill_carpet_fly_up',1096), -(17641,55365,'kill_carpet_fly_walk',1096), -(17642,55368,'kill_carpet_fly_down',1096), -(17643,55371,'kill_conjure',1096), -(17644,55372,'kill_conjure_enter',1096), -(17645,55373,'kill_conjure_exit',1096), -(17646,55377,'kill_pray',1096), -(17647,55382,'kill_climb',1096), -(17648,55385,'kill_design_prexus_water_pillar',1096), -(17649,55389,'kill_snd_twolf_attack',1096), -(17650,55390,'kill_snd_twolf_attack_01',1096), -(17651,55391,'kill_snd_twolf_attack_02',1096), -(17652,55392,'kill_snd_twolf_attack_03',1096), -(17653,55393,'kill_snd_twolf_attk',1096), -(17654,55394,'kill_snd_twolf_attk_01',1096), -(17655,55395,'kill_snd_twolf_attk_02',1096), -(17656,55396,'kill_snd_twolf_cast_loop',1096), -(17657,55397,'kill_snd_twolf_charge_up',1096), -(17658,55398,'kill_snd_twolf_death',1096), -(17659,55399,'kill_snd_twolf_dodge_back',1096), -(17660,55400,'kill_snd_twolf_dodge_down',1096), -(17661,55401,'kill_snd_twolf_dodge_fore',1096), -(17662,55402,'kill_snd_twolf_dodge_thrust',1096), -(17663,55403,'kill_snd_twolf_eat_idle',1096), -(17664,55404,'kill_snd_twolf_habitat01',1096), -(17665,55405,'kill_snd_twolf_habitat02',1096), -(17666,55406,'kill_snd_twolf_idle_01',1096), -(17667,55407,'kill_snd_twolf_idle_02',1096), -(17668,55408,'kill_snd_twolf_ouch',1096), -(17669,55409,'kill_snd_twolf_ouch_knockknees',1096), -(17670,55410,'kill_snd_twolf_ouch_thrust',1096), -(17671,55411,'kill_snd_twolf_sniff_idle',1096), -(17672,55412,'kill_snd_twolf_walk_sniff',1096), -(17673,55413,'kill_snd_twolf_whirl',1096), -(17674,55414,'kill_snd_twolf_wildswing',1096), -(17675,55417,'kill_cast_aa_magic_overflow',1096), -(17676,55418,'kill_cast_aa_manasoul',1096), -(17677,55419,'kill_cast_aa_mystic_field',1096), -(17678,55420,'kill_cast_aa_self_lifetap',1096), -(17679,55426,'kill_look',1096), -(17680,55427,'kill_result_aa_lightning_clash',1096), -(17681,55428,'kill_result_aa_power_convert',1096), -(17682,55429,'kill_result_aa_protection_ward',1096), -(17683,55430,'kill_result_aa_soul_burn',1096), -(17684,55437,'kill_design_fortress_docks_bluefire',1096), -(17685,55438,'kill_design_table_explode',1096), -(17686,55453,'kill_trdskl_cane',1096), -(17687,55454,'kill_trdskl_cane_sit',1096), -(17688,55461,'kill_design_blood_dervish',1096), -(17689,55462,'kill_design_blood_fountain_blast',1096), -(17690,55463,'kill_design_blood_fountain_fx',1096), -(17691,55464,'kill_design_electric_barrier',1096), -(17692,55465,'kill_design_lightning_floor',1096), -(17693,55467,'kill_result_retaliation',1096), -(17694,55468,'kill_result_zek_divine',1096), -(17695,55469,'kill_result_zek_elemental',1096), -(17696,55470,'kill_result_zek_noxious',1096), -(17697,55479,'kill_snd_gnm_racemnt_idle_01',1096), -(17698,55480,'kill_snd_gnm_racemnt_run_01',1096), -(17699,55481,'kill_snd_gnm_racemnt_walk_01',1096), -(17700,55502,'kill_temp_idle01',1096), -(17701,55503,'kill_temp_idle02',1096), -(17702,55504,'kill_temp_idle03',1096), -(17703,55517,'kill_sound_hland_griffin_mount_fly_dive',1096), -(17704,55524,'kill_design_mount_explode',1096), -(17705,55525,'kill_design_speed_boost_buff',1096), -(17706,55526,'kill_design_speed_drop_twister_debuff',1096), -(17707,55527,'kill_design_timestop_buff',1096), -(17708,55528,'kill_design_twister_blaster_buff',1096), -(17709,55531,'kill_snd_gnomerace_ringwhoosh',1096), -(17710,55534,'kill_cast_aa_blast_tube',1096), -(17711,55540,'kill_result_aa_fire_comet',1096), -(17712,55541,'kill_result_aa_taunt',1096), -(17713,55546,'kill_cast_yelinak_ice_breath',1096), -(17714,55551,'kill_sit_chair',1096), -(17715,55564,'kill_spin_it',1096), -(17716,55567,'kill_cast_aa_whip_circling',1096), -(17717,55574,'kill_design_dark_ice_wall',1096), -(17718,55576,'kill_knockedtoback_enter',1096), -(17719,55577,'kill_knockedtoback_exit',1096), -(17720,55584,'kill_design_aqua_crystals_fall',1096), -(17721,55585,'kill_design_crysal_wall',1096), -(17722,55586,'kill_design_crystal_wall',1096), -(17723,55587,'kill_design_green_crystals_fall',1096), -(17724,55588,'kill_design_purple_crystals_fall',1096), -(17725,55603,'kill_wall_destroy',1096), -(17726,55611,'kill_result_mug_hit',1096), -(17727,55625,'kill_trdskl_mug_r',1096), -(17728,55632,'kill_horse_fly_backup',1096), -(17729,55633,'kill_horse_fly_climb',1096), -(17730,55634,'kill_horse_fly_dive',1096), -(17731,55635,'kill_horse_fly_glide',1096), -(17732,55636,'kill_horse_fly_glide_left',1096), -(17733,55637,'kill_horse_fly_glide_right',1096), -(17734,55638,'kill_horse_fly_idle',1096), -(17735,55639,'kill_horse_fly_run',1096), -(17736,55640,'kill_horse_fly_strafe_left',1096), -(17737,55641,'kill_horse_fly_strafe_right',1096), -(17738,55642,'kill_horse_fly_turn_left',1096), -(17739,55643,'kill_horse_fly_turn_right',1096), -(17740,55644,'kill_horse_fly_up',1096), -(17741,55645,'kill_horse_fly_walk',1096), -(17742,55647,'kill_result_ice_strike',1096), -(17743,55655,'kill_lose_spin',1096), -(17744,55656,'kill_pegasus_mount_backup',1096), -(17745,55657,'kill_pegasus_mount_fall',1096), -(17746,55658,'kill_pegasus_mount_fly_backup',1096), -(17747,55659,'kill_pegasus_mount_fly_climb',1096), -(17748,55660,'kill_pegasus_mount_fly_dive',1096), -(17749,55661,'kill_pegasus_mount_fly_down',1096), -(17750,55662,'kill_pegasus_mount_fly_glide',1096), -(17751,55663,'kill_pegasus_mount_fly_glide_left',1096), -(17752,55664,'kill_pegasus_mount_fly_glide_right',1096), -(17753,55665,'kill_pegasus_mount_fly_idle',1096), -(17754,55666,'kill_pegasus_mount_fly_run',1096), -(17755,55667,'kill_pegasus_mount_fly_strafe_left',1096), -(17756,55668,'kill_pegasus_mount_fly_strafe_right',1096), -(17757,55669,'kill_pegasus_mount_fly_turn_left',1096), -(17758,55670,'kill_pegasus_mount_fly_turn_right',1096), -(17759,55671,'kill_pegasus_mount_fly_up',1096), -(17760,55672,'kill_pegasus_mount_fly_walk',1096), -(17761,55673,'kill_pegasus_mount_idle',1096), -(17762,55674,'kill_pegasus_mount_jump',1096), -(17763,55675,'kill_pegasus_mount_jump_substitute',1096), -(17764,55676,'kill_pegasus_mount_land',1096), -(17765,55677,'kill_pegasus_mount_long_fall',1096), -(17766,55678,'kill_pegasus_mount_run',1096), -(17767,55679,'kill_pegasus_mount_turn_left',1096), -(17768,55680,'kill_pegasus_mount_turn_right',1096), -(17769,55681,'kill_pegasus_mount_walk',1096), -(17770,55684,'kill_sound_coins',1096), -(17771,55695,'kill_sound_win',1096), -(17772,55697,'kill_win_fx',1096), -(17773,55698,'kill_win_spin',1096), -(17774,55706,'kill_roll_it',1096), -(17775,55713,'kill_design_chronoportal_rift',1096), -(17776,55723,'kill_sound_bite_trex',1096), -(17777,55724,'kill_sound_breathe_trex',1096), -(17778,55728,'kill_sound_idle01_trex',1096), -(17779,55729,'kill_sound_idle02_trex',1096), -(17780,55730,'kill_sound_idle_trex',1096), -(17781,55731,'kill_sound_kick_trex',1096), -(17782,55733,'kill_sound_ouch_trex',1096), -(17783,55741,'kill_result_ice_strike_targeted',1096), -(17784,55748,'kill_flame_burst_lh',1096), -(17785,55749,'kill_flame_burst_rh',1096), -(17786,55757,'kill_pegasus_mount_fly_fall',1096), -(17787,55767,'kill_snd_warboar_fs',1096), -(17788,55768,'kill_snd_warboar_attack',1096), -(17789,55769,'kill_snd_warboar_attack01',1096), -(17790,55770,'kill_snd_warboar_attack02',1096), -(17791,55771,'kill_snd_warboar_attack03',1096), -(17792,55772,'kill_snd_warboar_cast_targeted_beneficial_end',1096), -(17793,55773,'kill_snd_warboar_cast_targeted_beneficial_start',1096), -(17794,55774,'kill_snd_warboar_charge_up',1096), -(17795,55775,'kill_snd_warboar_combat_enter',1096), -(17796,55776,'kill_snd_warboar_dead_enter',1096), -(17797,55777,'kill_snd_warboar_dodge_backhand',1096), -(17798,55778,'kill_snd_warboar_dodge_forehand',1096), -(17799,55779,'kill_snd_warboar_dodge_thrust',1096), -(17800,55780,'kill_snd_warboar_idle',1096), -(17801,55781,'kill_snd_warboar_idle01',1096), -(17802,55782,'kill_snd_warboar_idle02',1096), -(17803,55783,'kill_snd_warboar_kick',1096), -(17804,55784,'kill_snd_warboar_knockeddowntoknees_01',1096), -(17805,55785,'kill_snd_warboar_knockeddowntoknees_02',1096), -(17806,55786,'kill_snd_warboar_knockedtoback',1096), -(17807,55787,'kill_snd_warboar_knockedtoback_getup',1096), -(17808,55788,'kill_snd_warboar_ouch',1096), -(17809,55789,'kill_snd_warboar_ouch_backhand',1096), -(17810,55790,'kill_snd_warboar_ouch_forehand',1096), -(17811,55791,'kill_snd_warboar_shield_shove',1096), -(17812,55792,'kill_snd_warboar_swim_walk',1096), -(17813,55793,'kill_snd_warboar_whirling_attack',1096), -(17814,55794,'kill_snd_warboar_wild_swing',1096), -(17815,55795,'kill_snd_warboar_wildswing',1096), -(17816,55805,'kill_snd_tallon_zek_arrow_get',1096), -(17817,55806,'kill_snd_tallon_zek_bow_pull',1096), -(17818,55807,'kill_snd_tallon_zek_bowshot_01',1096), -(17819,55808,'kill_snd_tallon_zek_bowshot_02',1096), -(17820,55809,'kill_snd_tallon_zek_bowshot_03',1096), -(17821,55817,'kill_result_chain_root_simple',1096), -(17822,55818,'kill_result_chain_root_simple_sparkle',1096), -(17823,55825,'kill_design_eastern_wastes_spire_portal',1096), -(17824,55826,'kill_design_gnomish_wormhole',1096), -(17825,55827,'kill_design_gnomish_wormhole_exit',1096), -(17826,55834,'kill_design_spear_drop',1096), -(17827,55835,'kill_design_spear_idle',1096), -(17828,55839,'kill_cast_poison_sands',1096), -(17829,55846,'kill_snd_sullon_attack_rx',1096), -(17830,55847,'kill_snd_sullon_buff_rx',1096), -(17831,55848,'kill_snd_sullon_death_rx',1096), -(17832,55849,'kill_snd_sullon_ouch_rx',1096), -(17833,55857,'kill_persist_notes_green',1096), -(17834,55858,'kill_persist_notes_purple',1096), -(17835,55860,'kill_snd_bodyfall',1096), -(17836,55862,'kill_snd_pegasus_dive_vox',1096), -(17837,55863,'kill_snd_pegasus_wingflap_01',1096), -(17838,55864,'kill_snd_pegasus_wingflap_02',1096), -(17839,55869,'kill_snd_tallon_buff_rx',1096), -(17840,55870,'kill_snd_tallon_death_rx',1096), -(17841,55871,'kill_snd_tallon_ouch_rx',1096), -(17842,55872,'kill_snd_vallon_attack_rx',1096), -(17843,55873,'kill_snd_vallon_buff_rx',1096), -(17844,55874,'kill_snd_vallon_dead_rx',1096), -(17845,55875,'kill_snd_vallon_ouch_rx',1096), -(17846,55882,'kill_fire_trail_fx',1144), -(17847,55884,'kill_listening',1144), -(17848,55911,'kill_talking',1144), -(17849,55938,'kill_sound_terrorbird_mount_bare_pant',1144), -(17850,55939,'kill_sound_terrorbird_mount_footstep_quiet',1144), -(17851,55940,'kill_sound_terrorbird_mount_idle',1144), -(17852,55941,'kill_sound_terrorbird_mount_idle01',1144), -(17853,55942,'kill_sound_terrorbird_mount_jump_substitute',1144), -(17854,55943,'kill_sound_terrorbird_mount_land',1144), -(17855,55944,'kill_sound_terrorbird_mount_turn_left',1144), -(17856,55945,'kill_sound_terrorbird_mount_turn_right',1144), -(17857,55953,'kill_terrorbird_mount',1144), -(17858,55954,'kill_terrorbird_mount_backup',1144), -(17859,55955,'kill_terrorbird_mount_fall',1144), -(17860,55956,'kill_terrorbird_mount_idle',1144), -(17861,55957,'kill_terrorbird_mount_idle01',1144), -(17862,55958,'kill_terrorbird_mount_jump',1144), -(17863,55959,'kill_terrorbird_mount_jump_substitute',1144), -(17864,55960,'kill_terrorbird_mount_land',1144), -(17865,55961,'kill_terrorbird_mount_long_fall',1144), -(17866,55962,'kill_terrorbird_mount_run',1144), -(17867,55963,'kill_terrorbird_mount_turn_left',1144), -(17868,55964,'kill_terrorbird_mount_turn_right',1144), -(17869,55965,'kill_terrorbird_mount_walk',1144), -(17870,55972,'kill_feather_fx',1144), -(17871,55975,'kill_small_feather_fx',1144), -(17872,55983,'kill_komodo_mount_backup',1144), -(17873,55984,'kill_komodo_mount_fall',1144), -(17874,55985,'kill_komodo_mount_idle',1144), -(17875,55986,'kill_komodo_mount_jump',1144), -(17876,55987,'kill_komodo_mount_jump_substitute',1144), -(17877,55988,'kill_komodo_mount_land',1144), -(17878,55989,'kill_komodo_mount_long_fall',1144), -(17879,55990,'kill_komodo_mount_run',1144), -(17880,55991,'kill_komodo_mount_turn_left',1144), -(17881,55992,'kill_komodo_mount_turn_right',1144), -(17882,55993,'kill_komodo_mount_walk',1144), -(17883,55994,'kill_raptor_mount_backup',1144), -(17884,55995,'kill_raptor_mount_fall',1144), -(17885,55996,'kill_raptor_mount_idle',1144), -(17886,55997,'kill_raptor_mount_jump',1144), -(17887,55998,'kill_raptor_mount_jump_substitute',1144), -(17888,55999,'kill_raptor_mount_land',1144), -(17889,56000,'kill_raptor_mount_long_fall',1144), -(17890,56001,'kill_raptor_mount_run',1144), -(17891,56002,'kill_raptor_mount_turn_left',1144), -(17892,56003,'kill_raptor_mount_turn_right',1144), -(17893,56004,'kill_raptor_mount_walk',1144), -(17894,56015,'kill_snd_terrorbird_mount_idle_01',1144), -(17895,56016,'kill_snd_terrorbird_mount_idle_02',1144), -(17896,56017,'kill_snd_terrorbird_mount_idle_03',1144), -(17897,56018,'kill_snd_terrorbird_mount_idle_04',1144), -(17898,56019,'kill_snd_terrorbird_mount_jump_substitute',1144), -(17899,56027,'kill_result_spiritual_vanish',1144), -(17900,56038,'kill_snd_terrorbird_mount_wingflap_01',1144), -(17901,56049,'kill_snd_raptor_mount_idle_01',1144), -(17902,56050,'kill_snd_raptor_mount_idle_02',1144), -(17903,56051,'kill_snd_raptor_mount_idle_03',1144), -(17904,56052,'kill_snd_raptor_mount_idle_04',1144), -(17905,56053,'kill_snd_raptor_mount_jump_substitute',1144), -(17906,56054,'kill_snd_raptor_mount_wingflap_01',1144), -(17907,56061,'kill_design_pow_rocky_uprising',1144), -(17908,56069,'kill_komodo_mount_fly_glide_left',1144), -(17909,56070,'kill_komodo_mount_fly_glide_right',1144), -(17910,56071,'kill_komodo_mount_glide',1144), -(17911,56072,'kill_raptor_mount_fly_glide_left',1144), -(17912,56073,'kill_raptor_mount_fly_glide_right',1144), -(17913,56074,'kill_raptor_mount_glide',1144), -(17914,56075,'kill_raptor_mount_glide_left',1144), -(17915,56076,'kill_raptor_mount_glide_right',1144), -(17916,56110,'kill_terrorbird_mount_glide',1144), -(17917,56111,'kill_walk_kilt',1144), -(17918,56119,'kill_komodo_mount_glide_left',1144), -(17919,56120,'kill_komodo_mount_glide_right',1144), -(17920,56127,'kill_hover_enter',1144), -(17921,56128,'kill_hover_walk',1144), -(17922,56130,'kill_result_cold_fog_ground',1144), -(17923,56131,'kill_result_fire_frostfell_candy',1144), -(17924,56132,'kill_result_fire_frosty_swirls',1144), -(17925,56155,'kill_snd_wolfmount_jump',1144), -(17926,56162,'kill_design_launch_fireworks',1144), -(17927,56166,'kill_snd_komodo_mount_idle_01',1144), -(17928,56167,'kill_snd_komodo_mount_idle_02',1144), -(17929,56168,'kill_snd_komodo_mount_jump_substitute',1144), -(17930,56178,'kill_snd_komodo_mount_glide',1144), -(17931,56185,'kill_design_hologram01',1144), -(17932,56186,'kill_design_hologram02',1144), -(17933,56187,'kill_design_hologram03',1144), -(17934,56188,'kill_design_hologram04',1144), -(17935,56198,'kill_snd_evil_komodo_mount_idle_01',1144), -(17936,56199,'kill_snd_evil_komodo_mount_idle_02',1144), -(17937,56206,'kill_design_parachute',1144), -(17938,56208,'kill_mount_summon_komodo_snd',1144), -(17939,56209,'kill_mount_summon_raptor_snd',1144), -(17940,56210,'kill_mount_summon_terrorbird_snd',1144), -(17941,56213,'kill_snd_komodo_mount_jump',1144), -(17942,56215,'kill_snd_raptor_mount_jump',1144), -(17943,56223,'kill_snd_terrorbird_mount_jump',1144), -(17944,56240,'kill_takeoff_trail',1144), -(17945,56247,'kill_design_pow_blur_essence',1144), -(17946,56254,'kill_design_ballista_fire',1144), -(17947,56255,'kill_design_ballista_load',1144), -(17948,56256,'kill_design_drake_pet',1144), -(17949,56257,'kill_design_pow_battle_scene',1144), -(17950,56264,'kill_design_bixie_face_splat',1144), -(17951,56272,'kill_result_dusty_black',1144), -(17952,56280,'kill_raptor_idle01',1144), -(17953,56281,'kill_raptor_mount_idle02',1144), -(17954,56288,'kill_fae_mount_backup',1144), -(17955,56289,'kill_fae_mount_fall',1144), -(17956,56290,'kill_fae_mount_fly_backup',1144), -(17957,56291,'kill_fae_mount_fly_climb',1144), -(17958,56292,'kill_fae_mount_fly_dive',1144), -(17959,56293,'kill_fae_mount_fly_down',1144), -(17960,56294,'kill_fae_mount_fly_glide',1144), -(17961,56295,'kill_fae_mount_fly_glide_left',1144), -(17962,56296,'kill_fae_mount_fly_glide_right',1144), -(17963,56297,'kill_fae_mount_fly_idle',1144), -(17964,56298,'kill_fae_mount_fly_run',1144), -(17965,56299,'kill_fae_mount_fly_strafe_left',1144), -(17966,56300,'kill_fae_mount_fly_strafe_right',1144), -(17967,56301,'kill_fae_mount_fly_turn_left',1144), -(17968,56302,'kill_fae_mount_fly_turn_right',1144), -(17969,56303,'kill_fae_mount_fly_up',1144), -(17970,56304,'kill_fae_mount_fly_walk',1144), -(17971,56305,'kill_fae_mount_idle',1144), -(17972,56306,'kill_fae_mount_jump',1144), -(17973,56307,'kill_fae_mount_land',1144), -(17974,56308,'kill_fae_mount_long_fall',1144), -(17975,56309,'kill_fae_mount_run',1144), -(17976,56310,'kill_fae_mount_turn_left',1144), -(17977,56311,'kill_fae_mount_turn_right',1144), -(17978,56312,'kill_fae_mount_walk',1144), -(17979,56340,'kill_trail_fx',1144), -(17980,56347,'kill_design_hands_trail_clockwork',1144), -(17981,56348,'kill_design_octopus_pet',1144), -(17982,56349,'kill_fae_mount_fly_fall',1144), -(17983,56350,'kill_fae_mount_jump_substitute',1144), -(17984,56372,'kill_snd_war_general_1h_attack',1144), -(17985,56373,'kill_snd_war_general_1h_attack01',1144), -(17986,56374,'kill_snd_war_general_1h_attack02',1144), -(17987,56375,'kill_snd_war_general_1h_attack03',1144), -(17988,56376,'kill_snd_war_general_attack',1144), -(17989,56377,'kill_snd_war_general_attack01',1144), -(17990,56378,'kill_snd_war_general_attack02',1144), -(17991,56379,'kill_snd_war_general_attack03',1144), -(17992,56380,'kill_snd_war_general_offensive_buff',1144), -(17993,56381,'kill_snd_war_general_wing_flap',1144), -(17994,56394,'kill_spin_con1',1144), -(17995,56395,'kill_spin_con10',1144), -(17996,56396,'kill_spin_con11',1144), -(17997,56397,'kill_spin_con12',1144), -(17998,56398,'kill_spin_con13',1144), -(17999,56399,'kill_spin_con14',1144), -(18000,56400,'kill_spin_con15',1144), -(18001,56401,'kill_spin_con16',1144), -(18002,56402,'kill_spin_con2',1144), -(18003,56403,'kill_spin_con3',1144), -(18004,56404,'kill_spin_con4',1144), -(18005,56405,'kill_spin_con5',1144), -(18006,56406,'kill_spin_con6',1144), -(18007,56407,'kill_spin_con7',1144), -(18008,56408,'kill_spin_con8',1144), -(18009,56409,'kill_spin_con9',1144), -(18010,56410,'kill_squirrel_mount_backup',1144), -(18011,56411,'kill_squirrel_mount_fall',1144), -(18012,56412,'kill_squirrel_mount_glide',1144), -(18013,56413,'kill_squirrel_mount_glide_left',1144), -(18014,56414,'kill_squirrel_mount_glide_right',1144), -(18015,56415,'kill_squirrel_mount_idle',1144), -(18016,56416,'kill_squirrel_mount_idle01',1144), -(18017,56417,'kill_squirrel_mount_jump',1144), -(18018,56418,'kill_squirrel_mount_jump_substitute',1144), -(18019,56419,'kill_squirrel_mount_land',1144), -(18020,56420,'kill_squirrel_mount_long_fall',1144), -(18021,56421,'kill_squirrel_mount_run',1144), -(18022,56422,'kill_squirrel_mount_turn_left',1144), -(18023,56423,'kill_squirrel_mount_turn_right',1144), -(18024,56424,'kill_squirrel_mount_walk',1144), -(18025,56425,'kill_wand_attack',1144), -(18026,56426,'kill_wand_idle',1144), -(18027,56434,'kill_result_blue_aura',1144), -(18028,56435,'kill_result_golden_aura',1144), -(18029,56436,'kill_result_poppy_trail',1144), -(18030,56437,'kill_result_red_aura',1144), -(18031,56452,'kill_snd_war_general_dead_enter',1144), -(18032,56453,'kill_snd_war_general_knockeddowntoknees',1144), -(18033,56454,'kill_snd_war_general_whirling_attack',1144), -(18034,56455,'kill_snd_war_general_wild_swing',1144), -(18035,56458,'kill_cast_fae_flight_grant_fx',1144), -(18036,56463,'kill_design_rock_launch',1144), -(18037,56465,'kill_result_cyclops_eye_debuff',1144), -(18038,56466,'kill_result_fae_dark_mount_fx',1144), -(18039,56467,'kill_result_fae_light_mount_fx',1144), -(18040,56468,'kill_result_falcon_god_egg_spit_p2p',1144), -(18041,56469,'kill_screech_fx',1144), -(18042,56471,'kill_shield_bash_enter',1144), -(18043,56472,'kill_shield_bash_exit',1144), -(18044,56474,'kill_snd_falcon_god_fs',1144), -(18045,56475,'kill_snd_falcon_god_wing_flap_01',1144), -(18046,56488,'kill_snd_war_general_1h_sword_enter',1144), -(18047,56489,'kill_snd_war_general_fs',1144), -(18048,56490,'kill_snd_war_general_combat_enter',1144), -(18049,56491,'kill_snd_war_general_idle01',1144), -(18050,56492,'kill_snd_war_general_idle02',1144), -(18051,56493,'kill_snd_war_general_ouch_forehand',1144), -(18052,56506,'kill_writhe_enter',1144), -(18053,56513,'kill_fire_magic',1144), -(18054,56518,'kill_snd_falcon_god_attack02_vox',1144), -(18055,56519,'kill_snd_falcon_god_attack03_vox',1144), -(18056,56520,'kill_snd_falcon_god_attack_vox',1144), -(18057,56521,'kill_snd_falcon_god_cast_vox',1144), -(18058,56522,'kill_snd_falcon_god_combat_enter_vox',1144), -(18059,56523,'kill_snd_falcon_god_idle01',1144), -(18060,56524,'kill_snd_falcon_god_idle02_vox',1144), -(18061,56525,'kill_snd_falcon_god_offensive_buff',1144), -(18062,56527,'kill_snd_squirrel_mount_glide',1144), -(18063,56528,'kill_snd_squirrel_mount_idle',1144), -(18064,56529,'kill_snd_squirrel_mount_idle_01',1144), -(18065,56530,'kill_snd_squirrel_mount_jump',1144), -(18066,56531,'kill_snd_squirrel_mount_jump_substitute',1144), -(18067,56556,'kill_squirrel_mount_run01',1144), -(18068,56557,'kill_trdskl_acorn',1144), -(18069,56558,'kill_trdskl_skull',1144), -(18070,56565,'kill_fire_magic_blue',1144), -(18071,56566,'kill_fire_magic_green',1144), -(18072,56567,'kill_fire_magic_purple',1144), -(18073,56568,'kill_fire_magic_red',1144), -(18074,56569,'kill_gas_torch_flame',1144), -(18075,56580,'kill_snd_falcon_god_bodyfall',1144), -(18076,56585,'kill_cast_shoot_fire_arrows',1144), -(18077,56586,'kill_cast_slash_trail',1144), -(18078,56587,'kill_cast_soul_attack_blast',1144), -(18079,56591,'kill_result_fire_arrow_storm',1144), -(18080,56596,'kill_snd_rallos_zek_1h_sword_attack',1144), -(18081,56597,'kill_snd_rallos_zek_1h_sword_attack01',1144), -(18082,56598,'kill_snd_rallos_zek_1h_sword_attack02',1144), -(18083,56599,'kill_snd_rallos_zek_1h_sword_attack03',1144), -(18084,56600,'kill_snd_rallos_zek_fs',1144), -(18085,56601,'kill_snd_rallos_zek_shield_bash',1144), -(18086,56602,'kill_snd_rallos_zek_shield_bash_exit',1144), -(18087,56603,'kill_snd_rallos_zek_shield_shove',1144), -(18088,56604,'kill_snd_rallos_zek_whirling_attack01',1144), -(18089,56605,'kill_snd_rallos_zek_whirling_attack02',1144), -(18090,56606,'kill_snd_rallos_zek_whirling_attack03',1144), -(18091,56607,'kill_snd_rallos_zek_whoosh',1144), -(18092,56608,'kill_snd_rallos_zek_wild_swing',1144), -(18093,56611,'kill_cast_axe_fire_attack',1144), -(18094,56612,'kill_cast_axe_flurry',1144), -(18095,56615,'kill_cast_shooting_axes',1144), -(18096,56616,'kill_cast_slashing_axes',1144), -(18097,56621,'kill_cast_shield_slam_blast',1144), -(18098,56624,'kill_cast_fire_teleport',1144), -(18099,56625,'kill_cast_godly_port',1144), -(18100,56630,'kill_design_embedded_swords',1144), -(18101,56631,'kill_design_swords_exit',1144), -(18102,56634,'kill_angler_mount_backup',1144), -(18103,56635,'kill_angler_mount_fall',1144), -(18104,56636,'kill_angler_mount_glide',1144), -(18105,56637,'kill_angler_mount_glide_left',1144), -(18106,56638,'kill_angler_mount_glide_right',1144), -(18107,56639,'kill_angler_mount_idle',1144), -(18108,56640,'kill_angler_mount_idle01',1144), -(18109,56641,'kill_angler_mount_idle02',1144), -(18110,56642,'kill_angler_mount_jump',1144), -(18111,56643,'kill_angler_mount_jump_substitute',1144), -(18112,56644,'kill_angler_mount_land',1144), -(18113,56645,'kill_angler_mount_long_fall',1144), -(18114,56646,'kill_angler_mount_run',1144), -(18115,56647,'kill_angler_mount_run01',1144), -(18116,56648,'kill_angler_mount_turn_left',1144), -(18117,56649,'kill_angler_mount_turn_right',1144), -(18118,56650,'kill_angler_mount_walk',1144), -(18119,56655,'kill_design_swords_enter',1144), -(18120,56656,'kill_design_swords_strike',1144), -(18121,56657,'kill_design_zek_death_fx',1144), -(18122,56659,'kill_result_power_infused',1144), -(18123,56660,'kill_result_rallos_lightning_p2p',1144), -(18124,56663,'kill_snd_angler_mount_glide',1144), -(18125,56664,'kill_snd_angler_mount_idle',1144), -(18126,56665,'kill_snd_angler_mount_idle_01',1144), -(18127,56666,'kill_snd_angler_mount_jump',1144), -(18128,56667,'kill_snd_angler_mount_jump_substitute',1144), -(18129,56694,'kill_squirrel_mount_idle02',1144), -(18130,56697,'kill_cast_godly_port_exit',1144), -(18131,56702,'kill_design_result_white_out',1144), -(18132,56704,'kill_result_death_charge_blast',1144), -(18133,56711,'kill_design_pow_rock_blast',1144), -(18134,56714,'kill_cast_gather_fx',1144), -(18135,56720,'kill_result_erollisi_bow_attack_p2p',1144), -(18136,56723,'kill_breath_fx',1144), -(18137,56728,'kill_eye_fx',1144), -(18138,56730,'kill_port_down_fx',1144), -(18139,56731,'kill_result_shadow_shatter',1144), -(18140,56732,'kill_result_shadow_sphere_p2p',1144), -(18141,56739,'kill_design_sol_statue_breaking',1144), -(18142,56740,'kill_design_sol_statue_essence',1144), -(18143,56741,'kill_design_sol_statue_evil_essence',1144), -(18144,56743,'kill_result_fire_engulfed_dark',1144), -(18145,56744,'kill_result_shadow_streaks',1144), -(18146,56751,'kill_design_frostfell_portal_new',1144), -(18147,56755,'kill_snd_angler_mount_idle02',1144), -(18148,56756,'kill_snd_angler_mount_scratch',1144), -(18149,56757,'kill_snd_angler_mount_vox_01',1144), -(18150,56758,'kill_snd_angler_mount_vox_02',1144), -(18151,56759,'kill_snd_angler_mount_vox_03',1144), -(18152,56760,'kill_snd_angler_mount_vox_short',1144), -(18153,56768,'kill_result_object_sparkles_black',1144), -(18154,56769,'kill_result_object_sparkles_gold',1144), -(18155,56770,'kill_result_object_sparkles_pink',1144), -(18156,56771,'kill_result_object_sparkles_purple',1144), -(18157,56778,'kill_dance_female',1144), -(18158,56814,'kill_trdskl_tinker_hands',1144), -(18159,56822,'kill_result_exorcise_evil',1144), -(18160,56829,'kill_death01_enter',1144), -(18161,56830,'kill_death01_exit',1144), -(18162,56831,'kill_death01_idle',1144), -(18163,56832,'kill_1h_sword_run',1144), -(18164,56835,'kill_cast1',1144), -(18165,56843,'kill_result_flash_bomb_vanish',1144), -(18166,56844,'kill_result_lifetap_heart_p2p',1144), -(18167,56852,'kill_player_wing_mount_backup',1144), -(18168,56853,'kill_player_wing_mount_fall',1144), -(18169,56854,'kill_player_wing_mount_fly_backup',1144), -(18170,56855,'kill_player_wing_mount_fly_climb',1144), -(18171,56856,'kill_player_wing_mount_fly_dive',1144), -(18172,56857,'kill_player_wing_mount_fly_down',1144), -(18173,56858,'kill_player_wing_mount_fly_glide',1144), -(18174,56859,'kill_player_wing_mount_fly_glide_left',1144), -(18175,56860,'kill_player_wing_mount_fly_glide_right',1144), -(18176,56861,'kill_player_wing_mount_fly_idle',1144), -(18177,56862,'kill_player_wing_mount_fly_run',1144), -(18178,56863,'kill_player_wing_mount_fly_strafe_left',1144), -(18179,56864,'kill_player_wing_mount_fly_strafe_right',1144), -(18180,56865,'kill_player_wing_mount_fly_turn_left',1144), -(18181,56866,'kill_player_wing_mount_fly_turn_right',1144), -(18182,56867,'kill_player_wing_mount_fly_up',1144), -(18183,56868,'kill_player_wing_mount_fly_walk',1144), -(18184,56869,'kill_player_wing_mount_idle',1144), -(18185,56870,'kill_player_wing_mount_jump',1144), -(18186,56871,'kill_player_wing_mount_land',1144), -(18187,56872,'kill_player_wing_mount_long_fall',1144), -(18188,56873,'kill_player_wing_mount_run',1144), -(18189,56874,'kill_player_wing_mount_turn_left',1144), -(18190,56875,'kill_player_wing_mount_turn_right',1144), -(18191,56876,'kill_player_wing_mount_walk',1144), -(18192,56881,'kill_chop_ground_digging',1144), -(18193,56882,'kill_chop_ground_success',1144), -(18194,56889,'kill_design_glow_eyes_green',1190), -(18195,56892,'kill_sit_drink',1190), -(18196,56900,'kill_result_flash_bomb_appear',1190), -(18197,56908,'kill_reforge_nature_tier01',1190), -(18198,56909,'kill_reforge_nature_tier02',1190), -(18199,56910,'kill_reforge_nature_tier03',1190), -(18200,56911,'kill_reforge_nature_tier04',1190), -(18201,56912,'kill_reforge_nature_tier05',1190), -(18202,56920,'kill_reforge_fire_tier01',1190), -(18203,56921,'kill_reforge_fire_tier02',1190), -(18204,56922,'kill_reforge_fire_tier03',1190), -(18205,56923,'kill_reforge_fire_tier04',1190), -(18206,56924,'kill_reforge_fire_tier05',1190), -(18207,56932,'kill_reforge_ice_tier01',1190), -(18208,56933,'kill_reforge_ice_tier02',1190), -(18209,56934,'kill_reforge_ice_tier03',1190), -(18210,56935,'kill_reforge_ice_tier04',1190), -(18211,56936,'kill_reforge_ice_tier05',1190), -(18212,56944,'kill_reforge_blood_tier01',1190), -(18213,56945,'kill_reforge_blood_tier02',1190), -(18214,56946,'kill_reforge_blood_tier03',1190), -(18215,56947,'kill_reforge_blood_tier04',1190), -(18216,56948,'kill_reforge_blood_tier05',1190), -(18217,56955,'kill_hassan_chop',1190), -(18218,56963,'kill_reforge_acid_tier01',1190), -(18219,56964,'kill_reforge_acid_tier02',1190), -(18220,56965,'kill_reforge_acid_tier03',1190), -(18221,56966,'kill_reforge_acid_tier04',1190), -(18222,56967,'kill_reforge_acid_tier05',1190), -(18223,56968,'kill_reforge_runic_tier01',1190), -(18224,56969,'kill_reforge_runic_tier02',1190), -(18225,56970,'kill_reforge_runic_tier03',1190), -(18226,56971,'kill_reforge_runic_tier04',1190), -(18227,56972,'kill_reforge_runic_tier05',1190), -(18228,56980,'kill_reforge_electricity_tier01',1190), -(18229,56981,'kill_reforge_electricity_tier02',1190), -(18230,56982,'kill_reforge_electricity_tier03',1190), -(18231,56983,'kill_reforge_electricity_tier04',1190), -(18232,56984,'kill_reforge_electricity_tier05',1190), -(18233,56991,'kill_dead_enter01',1190), -(18234,56992,'kill_death01',1190), -(18235,56993,'kill_horse_attack',1190), -(18236,56994,'kill_horse_attack01',1190), -(18237,56995,'kill_horse_attack02',1190), -(18238,56996,'kill_horse_attack03',1190), -(18239,56997,'kill_horse_cast',1190), -(18240,56998,'kill_horse_combat_cast',1190), -(18241,56999,'kill_horse_combat_enter',1190), -(18242,57000,'kill_horse_combat_exit',1190), -(18243,57001,'kill_horse_death',1190), -(18244,57002,'kill_horse_death01',1190), -(18245,57003,'kill_horse_ouch',1190), -(18246,57004,'kill_horse_ouch01',1190), -(18247,57005,'kill_horse_wild_swing',1190), -(18248,57007,'kill_reforge_pestilence_tier01',1190), -(18249,57008,'kill_reforge_pestilence_tier02',1190), -(18250,57009,'kill_reforge_pestilence_tier03',1190), -(18251,57010,'kill_reforge_pestilence_tier04',1190), -(18252,57011,'kill_reforge_pestilence_tier05',1190), -(18253,57012,'kill_2pike_attack03',1190), -(18254,57020,'kill_reforge_illusion_tier01',1190), -(18255,57021,'kill_reforge_illusion_tier02',1190), -(18256,57022,'kill_reforge_illusion_tier03',1190), -(18257,57023,'kill_reforge_illusion_tier04',1190), -(18258,57024,'kill_reforge_illusion_tier05',1190), -(18259,57025,'kill_reforge_radiance_tier01',1190), -(18260,57026,'kill_reforge_radiance_tier02',1190), -(18261,57027,'kill_reforge_radiance_tier03',1190), -(18262,57028,'kill_reforge_radiance_tier04',1190), -(18263,57029,'kill_reforge_radiance_tier05',1190), -(18264,57036,'kill_horse_dead',1190), -(18265,57037,'kill_horse_dead_enter',1190), -(18266,57038,'kill_horse_dead_enter01',1190), -(18267,57040,'kill_pegasus_mount_attack',1190), -(18268,57041,'kill_pegasus_mount_attack01',1190), -(18269,57042,'kill_pegasus_mount_attack02',1190), -(18270,57043,'kill_pegasus_mount_attack03',1190), -(18271,57044,'kill_pegasus_mount_cast',1190), -(18272,57045,'kill_pegasus_mount_combat_enter',1190), -(18273,57046,'kill_pegasus_mount_combat_exit',1190), -(18274,57047,'kill_pegasus_mount_combat_idle',1190), -(18275,57048,'kill_pegasus_mount_dead',1190), -(18276,57049,'kill_pegasus_mount_dead_enter',1190), -(18277,57050,'kill_pegasus_mount_dead_enter01',1190), -(18278,57051,'kill_pegasus_mount_death',1190), -(18279,57052,'kill_pegasus_mount_death01',1190), -(18280,57053,'kill_pegasus_mount_ouch',1190), -(18281,57054,'kill_pegasus_mount_ouch01',1190), -(18282,57055,'kill_pegasus_mount_wild_swing',1190), -(18283,57056,'kill_result_fprt_ghosts_attack_p2p',1190), -(18284,57067,'kill_snd_freeport_knight_1h_sword_attack',1190), -(18285,57068,'kill_snd_freeport_knight_1h_sword_attack01',1190), -(18286,57069,'kill_snd_freeport_knight_1h_sword_attack02',1190), -(18287,57070,'kill_snd_freeport_knight_1h_sword_attack03',1190), -(18288,57071,'kill_snd_freeport_knight_fs',1190), -(18289,57072,'kill_snd_freeport_knight_charge_up',1190), -(18290,57073,'kill_snd_freeport_knight_whirling_attack',1190), -(18291,57074,'kill_snd_freeport_knight_wild_swing',1190), -(18292,57100,'kill_tiered_chill_claw_buff',1190), -(18293,57101,'kill_tiered_chilling_claws',1190), -(18294,57102,'kill_tiered_claws_buff',1190), -(18295,57103,'kill_tiered_shield_barrier_buff',1190), -(18296,57104,'kill_2h_ouch',1190), -(18297,57105,'kill_2h_ouch_backhand',1190), -(18298,57106,'kill_2h_ouch_down',1190), -(18299,57107,'kill_2h_ouch_forehand',1190), -(18300,57108,'kill_2h_ouch_thrust',1190), -(18301,57109,'kill_2h_sword_dodge',1190), -(18302,57112,'kill_backhand',1190), -(18303,57117,'kill_horse_ouch_backhand',1190), -(18304,57118,'kill_horse_ouch_down',1190), -(18305,57119,'kill_horse_ouch_forehand',1190), -(18306,57120,'kill_horse_ouch_thrust',1190), -(18307,57122,'kill_pike_dodge',1190), -(18308,57123,'kill_pike_ouch',1190), -(18309,57153,'kill_tiered_spirit_pets_summon',1190), -(18310,57161,'kill_mount_attack',1190), -(18311,57166,'kill_snd_freeport_knight_cast_death',1190), -(18312,57167,'kill_snd_freeport_knight_cast_end',1190), -(18313,57168,'kill_snd_freeport_knight_cast_start',1190), -(18314,57194,'kill_tiered_claw_marks',1190), -(18315,57195,'kill_tiered_feather_shroud',1190), -(18316,57196,'kill_tiered_fire_claw_buff',1190), -(18317,57197,'kill_tiered_flaming_claws',1190), -(18318,57198,'kill_tiered_hand_claws',1190), -(18319,57199,'kill_tiered_ice_dagger_p2p',1190), -(18320,57202,'kill_attack_swipe',1190), -(18321,57203,'kill_cast_aa_frosty_swirls',1190), -(18322,57204,'kill_cast_aa_spirit_blast',1190), -(18323,57207,'kill_cast_slashing_claws',1190), -(18324,57211,'kill_result_aa_wispy_ward',1190), -(18325,57212,'kill_result_summon_spirit_swirls',1190), -(18326,57213,'kill_result_tame_shroud',1190), -(18327,57243,'kill_tiered_vine_net',1190), -(18328,57246,'kill_cast_flurry_claws',1190), -(18329,57252,'kill_result_lucan_soul_suck_p2p',1190), -(18330,57260,'kill_lucan_cast_enter',1190), -(18331,57261,'kill_lucan_cast_exit',1190), -(18332,57262,'kill_lucan_cast_idle',1190), -(18333,57267,'kill_snd_freeport_knight_death',1190), -(18334,57268,'kill_snd_freeport_knight_knockeddowntoknees',1190), -(18335,57269,'kill_snd_freeport_knight_rx_attack_long',1190), -(18336,57270,'kill_snd_freeport_knight_rx_attack_short',1190), -(18337,57271,'kill_snd_freeport_knight_rx_buff',1190), -(18338,57272,'kill_snd_freeport_knight_rx_death',1190), -(18339,57273,'kill_snd_freeport_knight_rx_ouch',1190), -(18340,57285,'kill_snd_freeport_knight_attack',1190), -(18341,57286,'kill_snd_freeport_knight_attack01',1190), -(18342,57287,'kill_snd_freeport_knight_attack02',1190), -(18343,57288,'kill_snd_freeport_knight_attack03',1190), -(18344,57289,'kill_snd_freeport_knight_rx_cast_end',1190), -(18345,57296,'kill_drink_chug',1190), -(18346,57297,'kill_horse_combat_attack',1190), -(18347,57298,'kill_horse_combat_attack01',1190), -(18348,57299,'kill_horse_combat_attack02',1190), -(18349,57300,'kill_horse_combat_attack03',1190), -(18350,57303,'kill_cast_aa_spirit_bear',1190), -(18351,57304,'kill_cast_ghost_rats',1190), -(18352,57310,'kill_result_aa_claw_marks',1190), -(18353,57311,'kill_result_proc_crit_bonus',1190), -(18354,57312,'kill_result_spirit_claws_spinning',1190), -(18355,57314,'kill_sfx_bodyfall',1190), -(18356,57318,'kill_snd_horse_fs_left',1190), -(18357,57319,'kill_snd_horse_fs_right',1190), -(18358,57320,'kill_snd_horse_rx_attack',1190), -(18359,57321,'kill_snd_horse_rx_death',1190), -(18360,57322,'kill_snd_horse_rx_ouch',1190), -(18361,57325,'kill_cast_aa_frosty_cone_forward',1190), -(18362,57326,'kill_cast_cloud_spin',1190), -(18363,57327,'kill_cast_feral_fangs',1190), -(18364,57328,'kill_cast_flurry_claws_attack',1190), -(18365,57334,'kill_result_ice_attack_p2p',1190), -(18366,57337,'kill_cast_aa_flash_bomb_appear',1190), -(18367,57338,'kill_cast_aa_melee_swipe',1190), -(18368,57339,'kill_cast_crit_hawk_summon',1190), -(18369,57344,'kill_icon_merc_heal',1190), -(18370,57345,'kill_icon_merc_melee',1190), -(18371,57346,'kill_icon_merc_ranged',1190), -(18372,57347,'kill_icon_merc_spell',1190), -(18373,57348,'kill_icon_merc_support',1190), -(18374,57349,'kill_icon_merc_tank',1190), -(18375,57352,'kill_cast_aa_spirit_blast_big',1190), -(18376,57353,'kill_cast_feral_fangs_bite',1190), -(18377,57356,'kill_cast_aa_spirit_ape',1190), -(18378,57357,'kill_cast_aa_spirit_boar',1190), -(18379,57358,'kill_cast_aa_spirit_crab',1190), -(18380,57359,'kill_cast_aa_spirit_rats',1190), -(18381,57360,'kill_cast_aa_spirit_stag',1190), -(18382,57361,'kill_cast_claws_strike_targeted',1190), -(18383,57364,'kill_cast_aa_spirit_bat',1190), -(18384,57365,'kill_cast_aa_spirit_cobra',1190), -(18385,57366,'kill_cast_aa_spirit_drake',1190), -(18386,57367,'kill_cast_aa_spirit_frogs',1190), -(18387,57368,'kill_cast_aa_spirit_hawk',1190), -(18388,57369,'kill_cast_aa_spirit_tiger',1190), -(18389,57370,'kill_cast_aa_spirit_wolf',1190), -(18390,57375,'kill_frog_croaking_snd',1190), -(18391,57377,'kill_result_luclin_chunk_slam',1190), -(18392,57407,'kill_tiger_attack_snd',1190), -(18393,57415,'kill_result_aa_tameable_fx',1190), -(18394,57418,'kill_cast_aa_spirit_wolf_howling',1190), -(18395,57424,'kill_result_feral_fangs_vert_bite',1190), -(18396,57427,'kill_cast_aa_frost_wall',1190), -(18397,57433,'kill_result_aa_icicle_spikes',1190), -(18398,57434,'kill_result_aa_quick_heal',1190), -(18399,57435,'kill_result_aa_windy_ward',1190), -(18400,57442,'kill_design_frostfell_candyfx01',1190), -(18401,57443,'kill_design_frostfell_candyfx02',1190), -(18402,57444,'kill_design_frostfell_candyfx03',1190), -(18403,57445,'kill_design_frostfell_candyfx04',1190), -(18404,57456,'kill_snd_footstep',1190), -(18405,57459,'kill_attack_bites',1190), -(18406,57460,'kill_attack_shuffle',1190), -(18407,57461,'kill_attack_tail_swipe',1190), -(18408,57467,'kill_roll',1190), -(18409,57497,'kill_spawn',1190), -(18410,57500,'kill_cast02',1190), -(18411,57503,'kill_combat_idle02',1190), -(18412,57506,'kill_dead_alt',1190), -(18413,57507,'kill_death_alt',1190), -(18414,57508,'kill_fae_mount_combat_idle',1190), -(18415,57516,'kill_result_sparkles_object_swirl',1190), -(18416,57517,'kill_result_star_spirits',1190), -(18417,57518,'kill_run_ground',1190), -(18418,57548,'kill_spawn_idle',1190), -(18419,57551,'kill_backpack_fly_backup',1190), -(18420,57552,'kill_backpack_fly_combat_idle',1190), -(18421,57553,'kill_backpack_fly_fall',1190), -(18422,57554,'kill_backpack_fly_fly_backup',1190), -(18423,57555,'kill_backpack_fly_fly_climb',1190), -(18424,57556,'kill_backpack_fly_fly_dive',1190), -(18425,57557,'kill_backpack_fly_fly_down',1190), -(18426,57558,'kill_backpack_fly_fly_glide',1190), -(18427,57559,'kill_backpack_fly_fly_glide_left',1190), -(18428,57560,'kill_backpack_fly_fly_glide_right',1190), -(18429,57561,'kill_backpack_fly_fly_idle',1190), -(18430,57562,'kill_backpack_fly_fly_run',1190), -(18431,57563,'kill_backpack_fly_fly_strafe_left',1190), -(18432,57564,'kill_backpack_fly_fly_strafe_right',1190), -(18433,57565,'kill_backpack_fly_fly_turn_left',1190), -(18434,57566,'kill_backpack_fly_fly_turn_right',1190), -(18435,57567,'kill_backpack_fly_fly_up',1190), -(18436,57568,'kill_backpack_fly_fly_walk',1190), -(18437,57569,'kill_backpack_fly_idle',1190), -(18438,57570,'kill_backpack_fly_jump',1190), -(18439,57571,'kill_backpack_fly_land',1190), -(18440,57572,'kill_backpack_fly_long_fall',1190), -(18441,57573,'kill_backpack_fly_run',1190), -(18442,57574,'kill_backpack_fly_turn_left',1190), -(18443,57575,'kill_backpack_fly_turn_right',1190), -(18444,57576,'kill_backpack_fly_walk',1190), -(18445,57579,'kill_backpack_backup',1190), -(18446,57580,'kill_backpack_combat_idle',1190), -(18447,57581,'kill_backpack_fall',1190), -(18448,57582,'kill_backpack_fly__walk',1190), -(18449,57583,'kill_backpack_fly_climb',1190), -(18450,57584,'kill_backpack_fly_dive',1190), -(18451,57585,'kill_backpack_fly_down',1190), -(18452,57586,'kill_backpack_fly_glide',1190), -(18453,57587,'kill_backpack_fly_glide_left',1190), -(18454,57588,'kill_backpack_fly_glide_right',1190), -(18455,57589,'kill_backpack_fly_strafe_left',1190), -(18456,57590,'kill_backpack_fly_strafe_right',1190), -(18457,57591,'kill_backpack_fly_up',1190), -(18458,57592,'kill_backpack_idle',1190), -(18459,57593,'kill_backpack_jump',1190), -(18460,57594,'kill_backpack_land',1190), -(18461,57595,'kill_backpack_long_fall',1190), -(18462,57596,'kill_backpack_run',1190), -(18463,57597,'kill_backpack_strafe_left',1190), -(18464,57598,'kill_backpack_strafe_left_run',1190), -(18465,57599,'kill_backpack_strafe_right',1190), -(18466,57600,'kill_backpack_strafe_right_run',1190), -(18467,57601,'kill_backpack_turn_left',1190), -(18468,57602,'kill_backpack_turn_right',1190), -(18469,57603,'kill_backpack_walk',1190), -(18470,57608,'kill_dual_wield_dead_enter',1190), -(18471,57611,'kill_backpack_backup_run',1190), -(18472,57619,'kill_persist_bug_swarm',1190), -(18473,57629,'kill_snd_fae_wing_flaps',1190), -(18474,57636,'kill_drakota_mount_backup',1190), -(18475,57637,'kill_drakota_mount_fall',1190), -(18476,57638,'kill_drakota_mount_fly_backup',1190), -(18477,57639,'kill_drakota_mount_fly_climb',1190), -(18478,57640,'kill_drakota_mount_fly_dive',1190), -(18479,57641,'kill_drakota_mount_fly_down',1190), -(18480,57642,'kill_drakota_mount_fly_glide',1190), -(18481,57643,'kill_drakota_mount_fly_glide_left',1190), -(18482,57644,'kill_drakota_mount_fly_glide_right',1190), -(18483,57645,'kill_drakota_mount_fly_idle',1190), -(18484,57646,'kill_drakota_mount_fly_run',1190), -(18485,57647,'kill_drakota_mount_fly_strafe_left',1190), -(18486,57648,'kill_drakota_mount_fly_strafe_right',1190), -(18487,57649,'kill_drakota_mount_fly_turn_left',1190), -(18488,57650,'kill_drakota_mount_fly_turn_right',1190), -(18489,57651,'kill_drakota_mount_fly_up',1190), -(18490,57652,'kill_drakota_mount_fly_walk',1190), -(18491,57653,'kill_drakota_mount_idle',1190), -(18492,57654,'kill_drakota_mount_idle01',1190), -(18493,57655,'kill_drakota_mount_jump',1190), -(18494,57656,'kill_drakota_mount_jump_substitute',1190), -(18495,57657,'kill_drakota_mount_land',1190), -(18496,57658,'kill_drakota_mount_long_fall',1190), -(18497,57659,'kill_drakota_mount_run',1190), -(18498,57660,'kill_drakota_mount_turn_left',1190), -(18499,57661,'kill_drakota_mount_turn_right',1190), -(18500,57662,'kill_drakota_mount_walk',1190), -(18501,57667,'kill_cast_summon_draconian_cyclone',1190), -(18502,57668,'kill_cast_summon_draconian_necro',1190), -(18503,57671,'kill_design_sky_necro_beams',1190), -(18504,57672,'kill_design_sky_necro_dragon_summon',1190), -(18505,57681,'kill_skyshrine_drake_run',1190), -(18506,57682,'kill_skyshrine_drake_run01',1190), -(18507,57689,'kill_idle_rake',1190), -(18508,57726,'kill_tcg_head_aura',1190), -(18509,57727,'kill_1h_sword_attack04',1190), -(18510,57734,'kill_dance02',1190), -(18511,57735,'kill_dance03',1190), -(18512,57736,'kill_design_speed_boost_buff_no_sound',1190), -(18513,57737,'kill_design_speed_drop_debuff_no_sound',1190), -(18514,57738,'kill_drakota_mount_idle_01',1190), -(18515,57739,'kill_idle_gardening',1190), -(18516,57740,'kill_idle_gathering',1190), -(18517,57742,'kill_result_forced_shader_bugs',1190), -(18518,57749,'kill_design_glow_eyes_blue',1190), -(18519,57780,'kill_wing_wisps_fx',1190), -(18520,57787,'kill_dontuse_idle01',1190), -(18521,57788,'kill_dontuse_idle02',1190), -(18522,57789,'kill_golem_kick',1190), -(18523,57792,'kill_cast_corruption_gather',1190), -(18524,57794,'kill_cast_pollen_spew',1190), -(18525,57796,'kill_cast_seed_spew',1190), -(18526,57797,'kill_cast_spore_spew',1190), -(18527,57800,'kill_idle_gardening_exit',1190), -(18528,57801,'kill_idle_gathering_exit',1190), -(18529,57803,'kill_result_icicle_blast_up',1190), -(18530,57805,'kill_sit_enter_open',1190), -(18531,57806,'kill_sit_exit_open',1190), -(18532,57807,'kill_sit_idle_open',1190), -(18533,57810,'kill_cast_gather_corruption',1190), -(18534,57816,'kill_lounge_enter',1190), -(18535,57817,'kill_lounge_exit',1190), -(18536,57818,'kill_lounge_idle',1190), -(18537,57819,'kill_result_corruption_spew',1190), -(18538,57849,'kill_stalk',1190), -(18539,57852,'kill_backpack_1h_crush_attack',1190), -(18540,57853,'kill_backpack_1h_crush_attack01',1190), -(18541,57854,'kill_backpack_1h_crush_attack02',1190), -(18542,57855,'kill_backpack_1h_crush_attack03',1190), -(18543,57856,'kill_backpack_1h_crush_attack_recoil',1190), -(18544,57857,'kill_backpack_1h_crush_attack_recoil01',1190), -(18545,57858,'kill_backpack_1h_crush_attack_recoil02',1190), -(18546,57859,'kill_backpack_1h_crush_attack_recoil03',1190), -(18547,57860,'kill_backpack_1h_crush_backup',1190), -(18548,57861,'kill_backpack_1h_crush_dodge_backhand',1190), -(18549,57862,'kill_backpack_1h_crush_dodge_down',1190), -(18550,57863,'kill_backpack_1h_crush_dodge_forehand',1190), -(18551,57864,'kill_backpack_1h_crush_dodge_thrust',1190), -(18552,57865,'kill_backpack_1h_crush_enter',1190), -(18553,57866,'kill_backpack_1h_crush_exit',1190), -(18554,57867,'kill_backpack_1h_crush_idle',1190), -(18555,57868,'kill_backpack_1h_crush_ouch_backhand',1190), -(18556,57869,'kill_backpack_1h_crush_ouch_down',1190), -(18557,57870,'kill_backpack_1h_crush_ouch_forehand',1190), -(18558,57871,'kill_backpack_1h_crush_ouch_thrust',1190), -(18559,57872,'kill_backpack_1h_crush_parry_backhand',1190), -(18560,57873,'kill_backpack_1h_crush_parry_down',1190), -(18561,57874,'kill_backpack_1h_crush_parry_forehand',1190), -(18562,57875,'kill_backpack_1h_crush_parry_thrust',1190), -(18563,57876,'kill_backpack_1h_crush_strafe_left',1190), -(18564,57877,'kill_backpack_1h_crush_strafe_right',1190), -(18565,57878,'kill_backpack_1h_crush_walk',1190), -(18566,57879,'kill_backpack_1h_pierce_attack',1190), -(18567,57880,'kill_backpack_1h_pierce_attack01',1190), -(18568,57881,'kill_backpack_1h_pierce_attack02',1190), -(18569,57882,'kill_backpack_1h_pierce_attack03',1190), -(18570,57883,'kill_backpack_1h_pierce_attack_recoil',1190), -(18571,57884,'kill_backpack_1h_pierce_attack_recoil01',1190), -(18572,57885,'kill_backpack_1h_pierce_attack_recoil02',1190), -(18573,57886,'kill_backpack_1h_pierce_attack_recoil03',1190), -(18574,57887,'kill_backpack_1h_pierce_backup',1190), -(18575,57888,'kill_backpack_1h_pierce_dodge_backhand',1190), -(18576,57889,'kill_backpack_1h_pierce_dodge_down',1190), -(18577,57890,'kill_backpack_1h_pierce_dodge_forehand',1190), -(18578,57891,'kill_backpack_1h_pierce_dodge_thrust',1190), -(18579,57892,'kill_backpack_1h_pierce_enter',1190), -(18580,57893,'kill_backpack_1h_pierce_exit',1190), -(18581,57894,'kill_backpack_1h_pierce_idle',1190), -(18582,57895,'kill_backpack_1h_pierce_ouch_backhand',1190), -(18583,57896,'kill_backpack_1h_pierce_ouch_down',1190), -(18584,57897,'kill_backpack_1h_pierce_ouch_forehand',1190), -(18585,57898,'kill_backpack_1h_pierce_ouch_thrust',1190), -(18586,57899,'kill_backpack_1h_pierce_parry_backhand',1190), -(18587,57900,'kill_backpack_1h_pierce_parry_down',1190), -(18588,57901,'kill_backpack_1h_pierce_parry_forehand',1190), -(18589,57902,'kill_backpack_1h_pierce_parry_thrust',1190), -(18590,57903,'kill_backpack_1h_pierce_strafe_left',1190), -(18591,57904,'kill_backpack_1h_pierce_strafe_right',1190), -(18592,57905,'kill_backpack_1h_pierce_walk',1190), -(18593,57906,'kill_backpack_1h_sword_attack',1190), -(18594,57907,'kill_backpack_1h_sword_attack01',1190), -(18595,57908,'kill_backpack_1h_sword_attack02',1190), -(18596,57909,'kill_backpack_1h_sword_attack03',1190), -(18597,57910,'kill_backpack_1h_sword_attack_recoil',1190), -(18598,57911,'kill_backpack_1h_sword_attack_recoil01',1190), -(18599,57912,'kill_backpack_1h_sword_attack_recoil02',1190), -(18600,57913,'kill_backpack_1h_sword_attack_recoil03',1190), -(18601,57914,'kill_backpack_1h_sword_backup',1190), -(18602,57915,'kill_backpack_1h_sword_death_blow',1190), -(18603,57916,'kill_backpack_1h_sword_death_blow01',1190), -(18604,57917,'kill_backpack_1h_sword_dodge_backhand',1190), -(18605,57918,'kill_backpack_1h_sword_dodge_down',1190), -(18606,57919,'kill_backpack_1h_sword_dodge_forehand',1190), -(18607,57920,'kill_backpack_1h_sword_dodge_thrust',1190), -(18608,57921,'kill_backpack_1h_sword_enter',1190), -(18609,57922,'kill_backpack_1h_sword_exit',1190), -(18610,57923,'kill_backpack_1h_sword_idle',1190), -(18611,57924,'kill_backpack_1h_sword_ouch_backhand',1190), -(18612,57925,'kill_backpack_1h_sword_ouch_down',1190), -(18613,57926,'kill_backpack_1h_sword_ouch_forehand',1190), -(18614,57927,'kill_backpack_1h_sword_ouch_thrust',1190), -(18615,57928,'kill_backpack_1h_sword_parry_backhand',1190), -(18616,57929,'kill_backpack_1h_sword_parry_down',1190), -(18617,57930,'kill_backpack_1h_sword_parry_forehand',1190), -(18618,57931,'kill_backpack_1h_sword_parry_thrust',1190), -(18619,57932,'kill_backpack_1h_sword_strafe_left',1190), -(18620,57933,'kill_backpack_1h_sword_strafe_right',1190), -(18621,57934,'kill_backpack_1h_sword_walk',1190), -(18622,57935,'kill_backpack_1h_throw_attack',1190), -(18623,57936,'kill_backpack_1h_thrown_attack',1190), -(18624,57937,'kill_backpack_1h_thrown_backup',1190), -(18625,57938,'kill_backpack_1h_thrown_dodge_backhand',1190), -(18626,57939,'kill_backpack_1h_thrown_dodge_down',1190), -(18627,57940,'kill_backpack_1h_thrown_dodge_forehand',1190), -(18628,57941,'kill_backpack_1h_thrown_dodge_thrust',1190), -(18629,57942,'kill_backpack_1h_thrown_idle',1190), -(18630,57943,'kill_backpack_1h_thrown_ouch_backhand',1190), -(18631,57944,'kill_backpack_1h_thrown_ouch_down',1190), -(18632,57945,'kill_backpack_1h_thrown_ouch_forehand',1190), -(18633,57946,'kill_backpack_1h_thrown_ouch_thrust',1190), -(18634,57947,'kill_backpack_1h_thrown_strafe_left',1190), -(18635,57948,'kill_backpack_1h_thrown_strafe_right',1190), -(18636,57949,'kill_backpack_1h_thrown_walk',1190), -(18637,57950,'kill_backpack_1h_wand_attack',1190), -(18638,57951,'kill_backpack_1h_wand_attack01',1190), -(18639,57952,'kill_backpack_1h_wand_attack02',1190), -(18640,57953,'kill_backpack_1h_wand_attack03',1190), -(18641,57954,'kill_backpack_1h_wand_attack_recoil',1190), -(18642,57955,'kill_backpack_1h_wand_attack_recoil01',1190), -(18643,57956,'kill_backpack_1h_wand_attack_recoil02',1190), -(18644,57957,'kill_backpack_1h_wand_attack_recoil03',1190), -(18645,57958,'kill_backpack_1h_wand_backup',1190), -(18646,57959,'kill_backpack_1h_wand_dodge_backhand',1190), -(18647,57960,'kill_backpack_1h_wand_dodge_down',1190), -(18648,57961,'kill_backpack_1h_wand_dodge_forehand',1190), -(18649,57962,'kill_backpack_1h_wand_dodge_thrust',1190), -(18650,57963,'kill_backpack_1h_wand_enter',1190), -(18651,57964,'kill_backpack_1h_wand_exit',1190), -(18652,57965,'kill_backpack_1h_wand_idle',1190), -(18653,57966,'kill_backpack_1h_wand_ouch_backhand',1190), -(18654,57967,'kill_backpack_1h_wand_ouch_down',1190), -(18655,57968,'kill_backpack_1h_wand_ouch_forehand',1190), -(18656,57969,'kill_backpack_1h_wand_ouch_thrust',1190), -(18657,57970,'kill_backpack_1h_wand_parry_backhand',1190), -(18658,57971,'kill_backpack_1h_wand_parry_down',1190), -(18659,57972,'kill_backpack_1h_wand_parry_forehand',1190), -(18660,57973,'kill_backpack_1h_wand_parry_thrust',1190), -(18661,57974,'kill_backpack_1h_wand_strafe_left',1190), -(18662,57975,'kill_backpack_1h_wand_strafe_right',1190), -(18663,57976,'kill_backpack_1h_wand_walk',1190), -(18664,57977,'kill_backpack_2h_sword_attack',1190), -(18665,57978,'kill_backpack_2h_sword_attack01',1190), -(18666,57979,'kill_backpack_2h_sword_attack02',1190), -(18667,57980,'kill_backpack_2h_sword_attack03',1190), -(18668,57981,'kill_backpack_2h_sword_attack_recoil',1190), -(18669,57982,'kill_backpack_2h_sword_attack_recoil01',1190), -(18670,57983,'kill_backpack_2h_sword_attack_recoil02',1190), -(18671,57984,'kill_backpack_2h_sword_attack_recoil03',1190), -(18672,57985,'kill_backpack_2h_sword_backup',1190), -(18673,57986,'kill_backpack_2h_sword_charge_up',1190), -(18674,57987,'kill_backpack_2h_sword_defensive_buff',1190), -(18675,57988,'kill_backpack_2h_sword_dodge_backhand',1190), -(18676,57989,'kill_backpack_2h_sword_dodge_down',1190), -(18677,57990,'kill_backpack_2h_sword_dodge_forehand',1190), -(18678,57991,'kill_backpack_2h_sword_dodge_thrust',1190), -(18679,57992,'kill_backpack_2h_sword_enter',1190), -(18680,57993,'kill_backpack_2h_sword_exit',1190), -(18681,57994,'kill_backpack_2h_sword_feint',1190), -(18682,57995,'kill_backpack_2h_sword_idle',1190), -(18683,57996,'kill_backpack_2h_sword_kick',1190), -(18684,57997,'kill_backpack_2h_sword_offensive_buff',1190), -(18685,57998,'kill_backpack_2h_sword_ouch_backhand',1190), -(18686,57999,'kill_backpack_2h_sword_ouch_down',1190), -(18687,58000,'kill_backpack_2h_sword_ouch_forehand',1190), -(18688,58001,'kill_backpack_2h_sword_ouch_thrust',1190), -(18689,58002,'kill_backpack_2h_sword_parry_backhand',1190), -(18690,58003,'kill_backpack_2h_sword_parry_down',1190), -(18691,58004,'kill_backpack_2h_sword_parry_forehand',1190), -(18692,58005,'kill_backpack_2h_sword_parry_thrust',1190), -(18693,58006,'kill_backpack_2h_sword_strafe_left',1190), -(18694,58007,'kill_backpack_2h_sword_strafe_right',1190), -(18695,58008,'kill_backpack_2h_sword_super_buff',1190), -(18696,58009,'kill_backpack_2h_sword_taunt',1190), -(18697,58010,'kill_backpack_2h_sword_taunt_combat_art',1190), -(18698,58011,'kill_backpack_2h_sword_walk',1190), -(18699,58012,'kill_backpack_2h_sword_whirling_attack',1190), -(18700,58013,'kill_backpack_2h_sword_wild_swing',1190), -(18701,58014,'kill_backpack_alchemy_failure',1190), -(18702,58015,'kill_backpack_alchemy_idle',1190), -(18703,58016,'kill_backpack_alchemy_success',1190), -(18704,58017,'kill_backpack_applaude',1190), -(18705,58018,'kill_backpack_artificing_failure',1190), -(18706,58019,'kill_backpack_artificing_idle',1190), -(18707,58020,'kill_backpack_artificing_success',1190), -(18708,58021,'kill_backpack_attack',1190), -(18709,58022,'kill_backpack_bostaff_attack',1190), -(18710,58023,'kill_backpack_bostaff_attack01',1190), -(18711,58024,'kill_backpack_bostaff_attack02',1190), -(18712,58025,'kill_backpack_bostaff_attack03',1190), -(18713,58026,'kill_backpack_bostaff_attack_recoil',1190), -(18714,58027,'kill_backpack_bostaff_attack_recoil01',1190), -(18715,58028,'kill_backpack_bostaff_attack_recoil02',1190), -(18716,58029,'kill_backpack_bostaff_attack_recoil03',1190), -(18717,58030,'kill_backpack_bostaff_backup',1190), -(18718,58031,'kill_backpack_bostaff_charge_up',1190), -(18719,58032,'kill_backpack_bostaff_defensive_buff',1190), -(18720,58033,'kill_backpack_bostaff_dodge_backhand',1190), -(18721,58034,'kill_backpack_bostaff_dodge_down',1190), -(18722,58035,'kill_backpack_bostaff_dodge_forehand',1190), -(18723,58036,'kill_backpack_bostaff_dodge_thrust',1190), -(18724,58037,'kill_backpack_bostaff_enter',1190), -(18725,58038,'kill_backpack_bostaff_exit',1190), -(18726,58039,'kill_backpack_bostaff_feint',1190), -(18727,58040,'kill_backpack_bostaff_idle',1190), -(18728,58041,'kill_backpack_bostaff_kick',1190), -(18729,58042,'kill_backpack_bostaff_knockdowntoknees',1190), -(18730,58043,'kill_backpack_bostaff_knockedtoback',1190), -(18731,58044,'kill_backpack_bostaff_knockedtoback_getup',1190), -(18732,58045,'kill_backpack_bostaff_offensive_buff',1190), -(18733,58046,'kill_backpack_bostaff_ouch_backhand',1190), -(18734,58047,'kill_backpack_bostaff_ouch_down',1190), -(18735,58048,'kill_backpack_bostaff_ouch_forehand',1190), -(18736,58049,'kill_backpack_bostaff_ouch_thrust',1190), -(18737,58050,'kill_backpack_bostaff_parry_backhand',1190), -(18738,58051,'kill_backpack_bostaff_parry_down',1190), -(18739,58052,'kill_backpack_bostaff_parry_forehand',1190), -(18740,58053,'kill_backpack_bostaff_parry_thrust',1190), -(18741,58054,'kill_backpack_bostaff_strafe_left',1190), -(18742,58055,'kill_backpack_bostaff_strafe_right',1190), -(18743,58056,'kill_backpack_bostaff_super_buff',1190), -(18744,58057,'kill_backpack_bostaff_taunt_combat_art',1190), -(18745,58058,'kill_backpack_bostaff_walk',1190), -(18746,58059,'kill_backpack_bostaff_whirling_attack',1190), -(18747,58060,'kill_backpack_bostaff_wild_swing',1190), -(18748,58061,'kill_backpack_bow_aim_down',1190), -(18749,58062,'kill_backpack_bow_aim_up',1190), -(18750,58063,'kill_backpack_bow_attack',1190), -(18751,58064,'kill_backpack_bow_attack_2x',1190), -(18752,58065,'kill_backpack_bow_backup',1190), -(18753,58066,'kill_backpack_bow_dodge_backhand',1190), -(18754,58067,'kill_backpack_bow_dodge_down',1190), -(18755,58068,'kill_backpack_bow_dodge_forehand',1190), -(18756,58069,'kill_backpack_bow_dodge_thrust',1190), -(18757,58070,'kill_backpack_bow_enter',1190), -(18758,58071,'kill_backpack_bow_exit',1190), -(18759,58072,'kill_backpack_bow_idle',1190), -(18760,58073,'kill_backpack_bow_knockdowntoknees',1190), -(18761,58074,'kill_backpack_bow_knockedtoback',1190), -(18762,58075,'kill_backpack_bow_knockedtoback_getup',1190), -(18763,58076,'kill_backpack_bow_ouch_backhand',1190), -(18764,58077,'kill_backpack_bow_ouch_down',1190), -(18765,58078,'kill_backpack_bow_ouch_forehand',1190), -(18766,58079,'kill_backpack_bow_ouch_thrust',1190), -(18767,58080,'kill_backpack_bow_strafe_left',1190), -(18768,58081,'kill_backpack_bow_strafe_right',1190), -(18769,58082,'kill_backpack_bow_walk',1190), -(18770,58083,'kill_backpack_cast_aoe_beneficial_end',1190), -(18771,58084,'kill_backpack_cast_aoe_beneficial_loop',1190), -(18772,58085,'kill_backpack_cast_aoe_beneficial_start',1190), -(18773,58086,'kill_backpack_charge',1190), -(18774,58087,'kill_backpack_charge_up',1190), -(18775,58088,'kill_backpack_chop_ground_digging',1190), -(18776,58089,'kill_backpack_chop_ground_success',1190), -(18777,58090,'kill_backpack_climbing_backup',1190), -(18778,58091,'kill_backpack_climbing_enter_down',1190), -(18779,58092,'kill_backpack_climbing_enter_down_root',1190), -(18780,58093,'kill_backpack_climbing_exit_up',1190), -(18781,58094,'kill_backpack_climbing_exit_up_root',1190), -(18782,58095,'kill_backpack_climbing_idle',1190), -(18783,58096,'kill_backpack_climbing_idle01',1190), -(18784,58097,'kill_backpack_climbing_ouch',1190), -(18785,58098,'kill_backpack_climbing_strafe_left',1190), -(18786,58099,'kill_backpack_climbing_strafe_right',1190), -(18787,58100,'kill_backpack_climbing_walk',1190), -(18788,58101,'kill_backpack_combat_backup_run',1190), -(18789,58102,'kill_backpack_combat_run',1190), -(18790,58103,'kill_backpack_combat_strafe_left_run',1190), -(18791,58104,'kill_backpack_combat_strafe_right_run',1190), -(18792,58105,'kill_backpack_cooking_failure',1190), -(18793,58106,'kill_backpack_cooking_idle',1190), -(18794,58107,'kill_backpack_cooking_success',1190), -(18795,58108,'kill_backpack_crouch_backup',1190), -(18796,58109,'kill_backpack_crouch_enter',1190), -(18797,58110,'kill_backpack_crouch_exit',1190), -(18798,58111,'kill_backpack_crouch_idle',1190), -(18799,58112,'kill_backpack_crouch_strafe_left',1190), -(18800,58113,'kill_backpack_crouch_strafe_right',1190), -(18801,58114,'kill_backpack_crouch_turn_left',1190), -(18802,58115,'kill_backpack_crouch_turn_right',1190), -(18803,58116,'kill_backpack_crouch_walk',1190), -(18804,58117,'kill_backpack_cry',1190), -(18805,58118,'kill_backpack_dance',1190), -(18806,58119,'kill_backpack_dead',1190), -(18807,58120,'kill_backpack_dead_enter',1190), -(18808,58121,'kill_backpack_defensive_buff',1190), -(18809,58122,'kill_backpack_drink_chug',1190), -(18810,58123,'kill_backpack_drinking_failure',1190), -(18811,58124,'kill_backpack_drinking_idle',1190), -(18812,58125,'kill_backpack_drinking_success',1190), -(18813,58126,'kill_backpack_dual_wield_attack',1190), -(18814,58127,'kill_backpack_dual_wield_attack01',1190), -(18815,58128,'kill_backpack_dual_wield_attack02',1190), -(18816,58129,'kill_backpack_dual_wield_attack03',1190), -(18817,58130,'kill_backpack_dual_wield_attack_recoil',1190), -(18818,58131,'kill_backpack_dual_wield_attack_recoil01',1190), -(18819,58132,'kill_backpack_dual_wield_attack_recoil02',1190), -(18820,58133,'kill_backpack_dual_wield_attack_recoil03',1190), -(18821,58134,'kill_backpack_dual_wield_backup',1190), -(18822,58135,'kill_backpack_dual_wield_defensive_buff',1190), -(18823,58136,'kill_backpack_dual_wield_dodge_backhand',1190), -(18824,58137,'kill_backpack_dual_wield_dodge_down',1190), -(18825,58138,'kill_backpack_dual_wield_dodge_forehand',1190), -(18826,58139,'kill_backpack_dual_wield_dodge_thrust',1190), -(18827,58140,'kill_backpack_dual_wield_enter',1190), -(18828,58141,'kill_backpack_dual_wield_exit',1190), -(18829,58142,'kill_backpack_dual_wield_feint',1190), -(18830,58143,'kill_backpack_dual_wield_idle',1190), -(18831,58144,'kill_backpack_dual_wield_kick',1190), -(18832,58145,'kill_backpack_dual_wield_knockdowntoknees',1190), -(18833,58146,'kill_backpack_dual_wield_knockedtoback',1190), -(18834,58147,'kill_backpack_dual_wield_knockedtoback_getup',1190), -(18835,58148,'kill_backpack_dual_wield_offensive_buff',1190), -(18836,58149,'kill_backpack_dual_wield_ouch_backhand',1190), -(18837,58150,'kill_backpack_dual_wield_ouch_down',1190), -(18838,58151,'kill_backpack_dual_wield_ouch_forehand',1190), -(18839,58152,'kill_backpack_dual_wield_ouch_thrust',1190), -(18840,58153,'kill_backpack_dual_wield_parry_backhand',1190), -(18841,58154,'kill_backpack_dual_wield_parry_down',1190), -(18842,58155,'kill_backpack_dual_wield_parry_forehand',1190), -(18843,58156,'kill_backpack_dual_wield_parry_thrust',1190), -(18844,58157,'kill_backpack_dual_wield_strafe_left',1190), -(18845,58158,'kill_backpack_dual_wield_strafe_right',1190), -(18846,58159,'kill_backpack_dual_wield_super_buff',1190), -(18847,58160,'kill_backpack_dual_wield_taunt_combat_art',1190), -(18848,58161,'kill_backpack_dual_wield_walk',1190), -(18849,58162,'kill_backpack_dual_wield_whirling_attack',1190), -(18850,58163,'kill_backpack_dual_wield_wild_swing',1190), -(18851,58164,'kill_backpack_fall_moving',1190), -(18852,58165,'kill_backpack_feint',1190), -(18853,58166,'kill_backpack_fishing_cast',1190), -(18854,58167,'kill_backpack_fishing_fight',1190), -(18855,58168,'kill_backpack_fishing_reel_in',1190), -(18856,58169,'kill_backpack_flirt',1190), -(18857,58170,'kill_backpack_forestry_chopping',1190), -(18858,58171,'kill_backpack_forestry_success',1190), -(18859,58172,'kill_backpack_gag',1190), -(18860,58173,'kill_backpack_gathering_end',1190), -(18861,58174,'kill_backpack_gathering_loop',1190), -(18862,58175,'kill_backpack_gathering_search',1190), -(18863,58176,'kill_backpack_gathering_start',1190), -(18864,58177,'kill_backpack_gathering_success',1190), -(18865,58178,'kill_backpack_ghost_idle',1190), -(18866,58179,'kill_backpack_giggle',1190), -(18867,58180,'kill_backpack_glare',1190), -(18868,58181,'kill_backpack_hearnoevil',1190), -(18869,58182,'kill_backpack_heartattack',1190), -(18870,58183,'kill_backpack_hover_idle',1190), -(18871,58184,'kill_backpack_jump_moving',1190), -(18872,58185,'kill_backpack_kick',1190), -(18873,58186,'kill_backpack_knockdown_attack',1190), -(18874,58187,'kill_backpack_knockdowntoknees',1190), -(18875,58188,'kill_backpack_knockedtoback',1190), -(18876,58189,'kill_backpack_knockedtoback_getup',1190), -(18877,58190,'kill_backpack_knockedtoback_onbackidle',1190), -(18878,58191,'kill_backpack_leatherworking_failure',1190), -(18879,58192,'kill_backpack_leatherworking_idle',1190), -(18880,58193,'kill_backpack_leatherworking_success',1190), -(18881,58194,'kill_backpack_left_hand_fist',1190), -(18882,58195,'kill_backpack_left_hand_relaxed',1190), -(18883,58196,'kill_backpack_listen',1190), -(18884,58197,'kill_backpack_long_fall_moving',1190), -(18885,58198,'kill_backpack_metalworking_failure',1190), -(18886,58199,'kill_backpack_metalworking_idle',1190), -(18887,58200,'kill_backpack_metalworking_success',1190), -(18888,58201,'kill_backpack_mining_digging',1190), -(18889,58202,'kill_backpack_mining_success',1190), -(18890,58203,'kill_backpack_monk_attack',1190), -(18891,58204,'kill_backpack_monk_attack01',1190), -(18892,58205,'kill_backpack_monk_attack02',1190), -(18893,58206,'kill_backpack_monk_attack03',1190), -(18894,58207,'kill_backpack_monk_attack_recoil',1190), -(18895,58208,'kill_backpack_monk_attack_recoil01',1190), -(18896,58209,'kill_backpack_monk_attack_recoil02',1190), -(18897,58210,'kill_backpack_monk_attack_recoil03',1190), -(18898,58211,'kill_backpack_monk_backup',1190), -(18899,58212,'kill_backpack_monk_charge_up',1190), -(18900,58213,'kill_backpack_monk_defensive_buff',1190), -(18901,58214,'kill_backpack_monk_dodge_backhand',1190), -(18902,58215,'kill_backpack_monk_dodge_down',1190), -(18903,58216,'kill_backpack_monk_dodge_forehand',1190), -(18904,58217,'kill_backpack_monk_dodge_thrust',1190), -(18905,58218,'kill_backpack_monk_enter',1190), -(18906,58219,'kill_backpack_monk_exit',1190), -(18907,58220,'kill_backpack_monk_feint',1190), -(18908,58221,'kill_backpack_monk_idle',1190), -(18909,58222,'kill_backpack_monk_kick',1190), -(18910,58223,'kill_backpack_monk_kick_flying',1190), -(18911,58224,'kill_backpack_monk_kick_spin',1190), -(18912,58225,'kill_backpack_monk_knockdowntoknees',1190), -(18913,58226,'kill_backpack_monk_knockedtoback',1190), -(18914,58227,'kill_backpack_monk_knockedtoback_getup',1190), -(18915,58228,'kill_backpack_monk_offensive_buff',1190), -(18916,58229,'kill_backpack_monk_offensive_buff_short',1190), -(18917,58230,'kill_backpack_monk_ouch_backhand',1190), -(18918,58231,'kill_backpack_monk_ouch_down',1190), -(18919,58232,'kill_backpack_monk_ouch_forehand',1190), -(18920,58233,'kill_backpack_monk_ouch_thrust',1190), -(18921,58234,'kill_backpack_monk_parry_backhand',1190), -(18922,58235,'kill_backpack_monk_parry_down',1190), -(18923,58236,'kill_backpack_monk_parry_forehand',1190), -(18924,58237,'kill_backpack_monk_parry_thrust',1190), -(18925,58238,'kill_backpack_monk_strafe_left',1190), -(18926,58239,'kill_backpack_monk_strafe_right',1190), -(18927,58240,'kill_backpack_monk_super_buff',1190), -(18928,58241,'kill_backpack_monk_taunt_combat_art',1190), -(18929,58242,'kill_backpack_monk_walk',1190), -(18930,58243,'kill_backpack_monk_whirling_attack',1190), -(18931,58244,'kill_backpack_monk_wild_swing',1190), -(18932,58245,'kill_backpack_offensive_buff',1190), -(18933,58246,'kill_backpack_ouch',1190), -(18934,58247,'kill_backpack_pike_attack',1190), -(18935,58248,'kill_backpack_pike_attack01',1190), -(18936,58249,'kill_backpack_pike_attack02',1190), -(18937,58250,'kill_backpack_pike_attack03',1190), -(18938,58251,'kill_backpack_pike_attack_recoil',1190), -(18939,58252,'kill_backpack_pike_attack_recoil01',1190), -(18940,58253,'kill_backpack_pike_attack_recoil02',1190), -(18941,58254,'kill_backpack_pike_attack_recoil03',1190), -(18942,58255,'kill_backpack_pike_backup',1190), -(18943,58256,'kill_backpack_pike_charge_up',1190), -(18944,58257,'kill_backpack_pike_death_blow',1190), -(18945,58258,'kill_backpack_pike_defensive_buff',1190), -(18946,58259,'kill_backpack_pike_dodge_backhand',1190), -(18947,58260,'kill_backpack_pike_dodge_down',1190), -(18948,58261,'kill_backpack_pike_dodge_forehand',1190), -(18949,58262,'kill_backpack_pike_dodge_thrust',1190), -(18950,58263,'kill_backpack_pike_enter',1190), -(18951,58264,'kill_backpack_pike_exit',1190), -(18952,58265,'kill_backpack_pike_feint',1190), -(18953,58266,'kill_backpack_pike_idle',1190), -(18954,58267,'kill_backpack_pike_kick',1190), -(18955,58268,'kill_backpack_pike_knockdowntoknees',1190), -(18956,58269,'kill_backpack_pike_knockedtoback',1190), -(18957,58270,'kill_backpack_pike_knockedtoback_getup',1190), -(18958,58271,'kill_backpack_pike_offensive_buff',1190), -(18959,58272,'kill_backpack_pike_ouch_backhand',1190), -(18960,58273,'kill_backpack_pike_ouch_down',1190), -(18961,58274,'kill_backpack_pike_ouch_forehand',1190), -(18962,58275,'kill_backpack_pike_ouch_thrust',1190), -(18963,58276,'kill_backpack_pike_parry_backhand',1190), -(18964,58277,'kill_backpack_pike_parry_down',1190), -(18965,58278,'kill_backpack_pike_parry_forehand',1190), -(18966,58279,'kill_backpack_pike_parry_thrust',1190), -(18967,58280,'kill_backpack_pike_strafe_left',1190), -(18968,58281,'kill_backpack_pike_strafe_right',1190), -(18969,58282,'kill_backpack_pike_super_buff',1190), -(18970,58283,'kill_backpack_pike_taunt',1190), -(18971,58284,'kill_backpack_pike_walk',1190), -(18972,58285,'kill_backpack_pike_whirling_attack',1190), -(18973,58286,'kill_backpack_pike_wild_swing',1190), -(18974,58287,'kill_backpack_ponder',1190), -(18975,58288,'kill_backpack_pugilist_attack',1190), -(18976,58289,'kill_backpack_pugilist_attack01',1190), -(18977,58290,'kill_backpack_pugilist_attack02',1190), -(18978,58291,'kill_backpack_pugilist_attack03',1190), -(18979,58292,'kill_backpack_pugilist_attack_recoil',1190), -(18980,58293,'kill_backpack_pugilist_attack_recoil01',1190), -(18981,58294,'kill_backpack_pugilist_attack_recoil02',1190), -(18982,58295,'kill_backpack_pugilist_attack_recoil03',1190), -(18983,58296,'kill_backpack_pugilist_backup',1190), -(18984,58297,'kill_backpack_pugilist_charge_up',1190), -(18985,58298,'kill_backpack_pugilist_defensive_buff',1190), -(18986,58299,'kill_backpack_pugilist_dodge_backhand',1190), -(18987,58300,'kill_backpack_pugilist_dodge_down',1190), -(18988,58301,'kill_backpack_pugilist_dodge_forehand',1190), -(18989,58302,'kill_backpack_pugilist_dodge_thrust',1190), -(18990,58303,'kill_backpack_pugilist_enter',1190), -(18991,58304,'kill_backpack_pugilist_exit',1190), -(18992,58305,'kill_backpack_pugilist_feint',1190), -(18993,58306,'kill_backpack_pugilist_idle',1190), -(18994,58307,'kill_backpack_pugilist_kick',1190), -(18995,58308,'kill_backpack_pugilist_knockdowntoknees',1190), -(18996,58309,'kill_backpack_pugilist_knockedtoback',1190), -(18997,58310,'kill_backpack_pugilist_knockedtoback_getup',1190), -(18998,58311,'kill_backpack_pugilist_offensive_buff',1190), -(18999,58312,'kill_backpack_pugilist_ouch_backhand',1190), -(19000,58313,'kill_backpack_pugilist_ouch_down',1190), -(19001,58314,'kill_backpack_pugilist_ouch_forehand',1190), -(19002,58315,'kill_backpack_pugilist_ouch_thrust',1190), -(19003,58316,'kill_backpack_pugilist_parry_backhand',1190), -(19004,58317,'kill_backpack_pugilist_parry_down',1190), -(19005,58318,'kill_backpack_pugilist_parry_forehand',1190), -(19006,58319,'kill_backpack_pugilist_parry_thrust',1190), -(19007,58320,'kill_backpack_pugilist_strafe_left',1190), -(19008,58321,'kill_backpack_pugilist_strafe_right',1190), -(19009,58322,'kill_backpack_pugilist_super_buff',1190), -(19010,58323,'kill_backpack_pugilist_taunt',1190), -(19011,58324,'kill_backpack_pugilist_walk',1190), -(19012,58325,'kill_backpack_pugilist_whirling_attack',1190), -(19013,58326,'kill_backpack_pugilist_wild_swing',1190), -(19014,58327,'kill_backpack_resurrect',1190), -(19015,58328,'kill_backpack_right_hand_fist',1190), -(19016,58329,'kill_backpack_right_hand_relaxed',1190), -(19017,58330,'kill_backpack_rude',1190), -(19018,58331,'kill_backpack_sad',1190), -(19019,58332,'kill_backpack_salute_freeport',1190), -(19020,58333,'kill_backpack_scheme',1190), -(19021,58334,'kill_backpack_scratch',1190), -(19022,58335,'kill_backpack_scribing_idle',1190), -(19023,58336,'kill_backpack_seenoevil',1190), -(19024,58337,'kill_backpack_shame',1190), -(19025,58338,'kill_backpack_shield_block_backhand',1190), -(19026,58339,'kill_backpack_shield_block_down',1190), -(19027,58340,'kill_backpack_shield_block_forehand',1190), -(19028,58341,'kill_backpack_shield_block_thrust',1190), -(19029,58342,'kill_backpack_shield_shove',1190), -(19030,58343,'kill_backpack_shiver',1190), -(19031,58344,'kill_backpack_sit_drink',1190), -(19032,58345,'kill_backpack_sit_enter',1190), -(19033,58346,'kill_backpack_sit_exit',1190), -(19034,58347,'kill_backpack_sit_idle',1190), -(19035,58348,'kill_backpack_sneeze',1190), -(19036,58349,'kill_backpack_sniff',1190), -(19037,58350,'kill_backpack_speaknoevil',1190), -(19038,58351,'kill_backpack_square',1190), -(19039,58352,'kill_backpack_stinky',1190), -(19040,58353,'kill_backpack_sulk',1190), -(19041,58354,'kill_backpack_super_buff',1190), -(19042,58355,'kill_backpack_swim_attack',1190), -(19043,58356,'kill_backpack_swim_backup',1190), -(19044,58357,'kill_backpack_swim_idle',1190), -(19045,58358,'kill_backpack_swim_ouch',1190), -(19046,58359,'kill_backpack_swim_walk',1190), -(19047,58360,'kill_backpack_tail',1190), -(19048,58361,'kill_backpack_tailoring_failure',1190), -(19049,58362,'kill_backpack_tailoring_idle',1190), -(19050,58363,'kill_backpack_tailoring_success',1190), -(19051,58364,'kill_backpack_tapfoot',1190), -(19052,58365,'kill_backpack_taunt_combat_art',1190), -(19053,58366,'kill_backpack_threaten',1190), -(19054,58367,'kill_backpack_untrained_attack',1190), -(19055,58368,'kill_backpack_untrained_backup',1190), -(19056,58369,'kill_backpack_untrained_dodge',1190), -(19057,58370,'kill_backpack_untrained_dodge01',1190), -(19058,58371,'kill_backpack_untrained_dodge02',1190), -(19059,58372,'kill_backpack_untrained_idle',1190), -(19060,58373,'kill_backpack_untrained_ouch',1190), -(19061,58374,'kill_backpack_untrained_ouch01',1190), -(19062,58375,'kill_backpack_untrained_parry',1190), -(19063,58376,'kill_backpack_untrained_recoil',1190), -(19064,58377,'kill_backpack_untrained_strafe_left',1190), -(19065,58378,'kill_backpack_untrained_strafe_right',1190), -(19066,58379,'kill_backpack_untrained_walk',1190), -(19067,58380,'kill_backpack_whirling_attack',1190), -(19068,58381,'kill_backpack_whistle',1190), -(19069,58382,'kill_backpack_wild_swing',1190), -(19070,58383,'kill_backpack_wild_swing_recoilmax',1190), -(19071,58384,'kill_backpack_woodworking_failure',1190), -(19072,58385,'kill_backpack_woodworking_idle',1190), -(19073,58386,'kill_backpack_woodworking_success',1190), -(19074,58387,'kill_backpack_worship_idle',1190), -(19075,58388,'kill_backpack_yeah',1190), -(19076,58391,'kill_attachment',1190), -(19077,58392,'kill_cast_gather_flowers',1190), -(19078,58398,'kill_jump_punch',1190), -(19079,58399,'kill_result_flowers_spew',1190), -(19080,58402,'kill_attack_spit',1190), -(19081,58405,'kill_cast_rocky_uprising',1190), -(19082,58408,'kill_flurry_kick',1190), -(19083,58413,'kill_cast_raptor_claws',1190), -(19084,58417,'kill_result_raptor_spit_p2p',1190), -(19085,58418,'kill_2h_twirl',1190), -(19086,58421,'kill__idle01',1190), -(19087,58422,'kill__idle02',1190), -(19088,58423,'kill_cast01_enter',1190), -(19089,58424,'kill_cast01_exit',1190), -(19090,58425,'kill_cast01_idle',1190), -(19091,58426,'kill_cast02_enter',1190), -(19092,58427,'kill_cast02_exit',1190), -(19093,58428,'kill_cast02_idle',1190), -(19094,58434,'kill_pike_twirl',1190), -(19095,58453,'kill_sound_buff_02',1190), -(19096,58456,'kill_attack_flame',1190), -(19097,58461,'kill_injured_idle',1190), -(19098,58481,'kill_snd_wing_flap',1190), -(19099,58482,'kill_2h_cast_enter',1190), -(19100,58483,'kill_2h_cast_exit',1190), -(19101,58484,'kill_2h_cast_idle',1190), -(19102,58496,'kill_snd_fs',1190), -(19103,58497,'kill_snd_jump_whoosh',1190), -(19104,58500,'kill_cast_belly_flop',1190), -(19105,58503,'kill_cast_rocky_blast',1190), -(19106,58506,'kill_draconian_injured_idle',1190), -(19107,58507,'kill_draconian_search_enter',1190), -(19108,58508,'kill_draconian_search_exit',1190), -(19109,58509,'kill_draconian_search_idle',1190), -(19110,58511,'kill_result_lumpy_spit_p2p',1190), -(19111,58518,'kill_design_illusion_fail',1190), -(19112,58520,'kill_knocktoknees_exit',1190), -(19113,58527,'kill_golem_fx_tubes',1190), -(19114,58528,'kill_golem_summon_fx',1190), -(19115,58532,'kill_snd_dbg_spawn',1190), -(19116,58533,'kill_snd_death',1190), -(19117,58536,'kill_snd_fs_l',1190), -(19118,58537,'kill_snd_fs_r',1190), -(19119,58538,'kill_snd_jump',1190), -(19120,58540,'kill_snd_offensive_buff',1190), -(19121,58554,'kill_snd_whirl_attk',1190), -(19122,58555,'kill_sound_cast',1190), -(19123,58562,'kill_drakota_run_glide',1190), -(19124,58565,'kill_ice_cube_trail_lf',1190), -(19125,58566,'kill_ice_cube_trail_lr',1190), -(19126,58567,'kill_ice_cube_trail_rf',1190), -(19127,58568,'kill_ice_cube_trail_rr',1190), -(19128,58573,'kill_ice_cube_scratch',1190), -(19129,58576,'kill_snd_charge_up',1190), -(19130,58577,'kill_snd_1h_sword_attack',1190), -(19131,58578,'kill_snd_1h_sword_attack01',1190), -(19132,58579,'kill_snd_1h_sword_attack02',1190), -(19133,58580,'kill_snd_1h_sword_attack03',1190), -(19134,58581,'kill_snd_1h_sword_enter',1190), -(19135,58582,'kill_snd_1h_sword_exit',1190), -(19136,58584,'kill_snd_cast02_yell',1190), -(19137,58585,'kill_snd_converse02',1190), -(19138,58586,'kill_snd_dual_wield_attack',1190), -(19139,58587,'kill_snd_dual_wield_attack01',1190), -(19140,58588,'kill_snd_dual_wield_attack02',1190), -(19141,58589,'kill_snd_dual_wield_attack03',1190), -(19142,58594,'kill_snd_idle_02',1190), -(19143,58601,'kill_cast_foot_vine_stomp',1190), -(19144,58604,'kill_cast_thorn_circle',1190), -(19145,58605,'kill_cast_thorn_clap',1190), -(19146,58609,'kill_land_enter',1190), -(19147,58610,'kill_land_exit',1190), -(19148,58611,'kill_result_wl_root_grow_trap',1190), -(19149,58614,'kill_snd_bf',1190), -(19150,58633,'kill_snd_whirling_attack',1190), -(19151,58634,'kill_snd_wild_swing',1190), -(19152,58641,'kill_cast_eat_snowball',1190), -(19153,58642,'kill_cast_frog_eat',1190), -(19154,58647,'kill_eaten_angler',1190), -(19155,58649,'kill_intro',1190), -(19156,58657,'kill_snd_ouch',1190), -(19157,58682,'kill_splash_fx',1190), -(19158,58689,'kill_angler_mount_idle03',1190), -(19159,58694,'kill_design_obelisk_broken',1190), -(19160,58695,'kill_design_obelisk_repair1',1190), -(19161,58706,'kill_design_obelisk_complete',1190), -(19162,58707,'kill_design_obelisk_fixed',1190), -(19163,58708,'kill_design_obelisk_repair2',1190), -(19164,58709,'kill_float',1190), -(19165,58711,'kill_sacrifice',1190), -(19166,58718,'kill_attack_dive',1190), -(19167,58723,'kill_design_obelisk_repair3',1190), -(19168,58724,'kill_design_obelisk_repair4',1190), -(19169,58731,'kill_attack_hug',1190), -(19170,58732,'kill_attack_roar',1190), -(19171,58733,'kill_cast_obelisk_rock_summon',1190), -(19172,58734,'kill_cast_obelisk_wisps_summon',1190), -(19173,58771,'kill_wing_bolts_fx',1190), -(19174,58780,'kill_cast_sacrifice_disperse',1190), -(19175,58781,'kill_cast_sacrifice_stab',1190), -(19176,58784,'kill_design_sky_chokidai_summon',1190), -(19177,58785,'kill_design_sky_drake_summon',1190), -(19178,58786,'kill_design_sky_plant_summon',1190), -(19179,58787,'kill_design_sky_raptor_summon',1190), -(19180,58794,'kill_cast_eye_blast',1190), -(19181,58799,'kill_design_skyward_comm_beam',1190), -(19182,58800,'kill_fly_hover',1190), -(19183,58801,'kill_ground_blast_fx',1190), -(19184,58827,'kill_sound_teleport_in',1190), -(19185,58835,'kill_wing_buffet_fx',1190), -(19186,58842,'kill_breath_attack_ice',1190), -(19187,58843,'kill_breath_attack_necro',1190), -(19188,58850,'kill_attack05',1190), -(19189,58853,'kill_cast_shadow_appear',1190), -(19190,58854,'kill_cast_teleport_down_fx',1190), -(19191,58857,'kill_fly_enter_idle',1190), -(19192,58859,'kill_result_banish_fx',1190), -(19193,58860,'kill_result_cage_cube',1190), -(19194,58871,'kill_dontuse_fly_enter_idle',1190), -(19195,58878,'kill_attack_arm',1190), -(19196,58879,'kill_cast_druid_light_beams',1190), -(19197,58882,'kill_cast_storm_light_parting',1190), -(19198,58883,'kill_cast_storm_rain_lightning',1190), -(19199,58889,'kill_snd_attack',1190), -(19200,58890,'kill_snd_attack01',1190), -(19201,58891,'kill_snd_attack02',1190), -(19202,58892,'kill_snd_attack03',1190), -(19203,58893,'kill_snd_attack_dive',1190), -(19204,58894,'kill_snd_attack_hug',1190), -(19205,58895,'kill_snd_cast',1190), -(19206,58896,'kill_snd_cast_1',1190), -(19207,58897,'kill_snd_combat_enter',1190), -(19208,58898,'kill_snd_combat_idle01',1190), -(19209,58899,'kill_snd_dead_enter',1190), -(19210,58900,'kill_snd_defensive_buff',1190), -(19211,58905,'kill_snd_fs_mud_01',1190), -(19212,58906,'kill_snd_fs_mud_02',1190), -(19213,58908,'kill_snd_run',1190), -(19214,58919,'kill_design_target_aoe_green',1190), -(19215,58920,'kill_design_target_aoe_purple',1190), -(19216,58927,'kill_aa_bar_heal',1190), -(19217,58928,'kill_aa_blood_burst',1190), -(19218,58929,'kill_aa_blood_lust',1190), -(19219,58930,'kill_aa_bubble_shield',1190), -(19220,58931,'kill_aa_bubble_shield_in',1190), -(19221,58932,'kill_aa_cloud_blast',1190), -(19222,58933,'kill_aa_cloud_buff_out',1190), -(19223,58934,'kill_aa_cloud_ring_burst',1190), -(19224,58935,'kill_aa_cold_blast',1190), -(19225,58936,'kill_aa_cyclone',1190), -(19226,58937,'kill_aa_dark_cyclone',1190), -(19227,58938,'kill_aa_dark_ring_vanish',1190), -(19228,58939,'kill_aa_divine_hit',1190), -(19229,58940,'kill_aa_fire_column',1190), -(19230,58941,'kill_aa_flurry_daggers',1190), -(19231,58942,'kill_aa_forced_shader_burst',1190), -(19232,58943,'kill_aa_glow_eyes',1190), -(19233,58944,'kill_aa_hand_buff',1190), -(19234,58945,'kill_aa_hand_cross_dark',1190), -(19235,58946,'kill_aa_hand_dark_rings',1190), -(19236,58947,'kill_aa_hand_flare',1190), -(19237,58948,'kill_aa_hand_leaf',1190), -(19238,58949,'kill_aa_hand_pattern',1190), -(19239,58950,'kill_aa_hand_runes',1190), -(19240,58951,'kill_aa_hand_sparkles',1190), -(19241,58952,'kill_aa_hand_sparkles_dark',1190), -(19242,58953,'kill_aa_hand_sparks',1190), -(19243,58954,'kill_aa_hand_stars',1190), -(19244,58955,'kill_aa_hand_stars_dark',1190), -(19245,58956,'kill_aa_head_halo',1190), -(19246,58957,'kill_aa_heal_hands_blast',1190), -(19247,58958,'kill_aa_ice_comet',1190), -(19248,58959,'kill_aa_ice_comet_shower',1190), -(19249,58960,'kill_aa_light_ward',1190), -(19250,58961,'kill_aa_lightning_bolt',1190), -(19251,58962,'kill_aa_massive_hit',1190), -(19252,58963,'kill_aa_music_beam_p2p',1190), -(19253,58964,'kill_aa_plasma_hit',1190), -(19254,58965,'kill_aa_poison_spore_p2p',1190), -(19255,58966,'kill_aa_radiant_glow',1190), -(19256,58967,'kill_aa_rune_buff_brawler',1190), -(19257,58968,'kill_aa_rune_drop_base',1190), -(19258,58969,'kill_aa_rune_forward',1190), -(19259,58970,'kill_aa_rune_in_buff',1190), -(19260,58971,'kill_aa_rune_rise_base',1190), -(19261,58972,'kill_aa_rune_rise_buff',1190), -(19262,58973,'kill_aa_shimmer_arrow_p2p',1190), -(19263,58974,'kill_aa_snow_tempest',1190), -(19264,58975,'kill_aa_sound_rings_head',1190), -(19265,58976,'kill_aa_sparkle_trail_weapon_blend',1190), -(19266,58977,'kill_aa_spirit_growing',1190), -(19267,58978,'kill_aa_spirit_swirl_shield',1190), -(19268,58979,'kill_aa_swirly_heal',1190), -(19269,58984,'kill_gather_enter',1190), -(19270,58985,'kill_gather_exit',1190), -(19271,58986,'kill_gather_idle',1190), -(19272,59019,'kill_tough_idle',1190), -(19273,59020,'kill_tough_idle_enter',1190), -(19274,59021,'kill_tough_idle_exit',1190), -(19275,59028,'kill_cast_armament_buff',1190), -(19276,59029,'kill_cast_ember_breath',1190), -(19277,59036,'kill_cast_burrow_dust_fx',1190), -(19278,59041,'kill_design_target_aoe_yellow',1190), -(19279,59043,'kill_result_ember_fire_engulfed',1190), -(19280,59044,'kill_result_explode',1190), -(19281,59045,'kill_result_queen_bug_spit_p2p',1190), -(19282,59048,'kill_snd_doz_attack',1190), -(19283,59049,'kill_snd_doz_attack_01',1190), -(19284,59050,'kill_snd_doz_attack_02',1190), -(19285,59051,'kill_snd_doz_attack_03',1190), -(19286,59052,'kill_snd_doz_cast',1190), -(19287,59053,'kill_snd_doz_combat_enter',1190), -(19288,59054,'kill_snd_doz_death',1190), -(19289,59055,'kill_snd_doz_dodge',1190), -(19290,59056,'kill_snd_doz_flyin_01',1190), -(19291,59057,'kill_snd_doz_flyin_land',1190), -(19292,59058,'kill_snd_doz_kick',1190), -(19293,59059,'kill_snd_doz_knocktoknees',1190), -(19294,59060,'kill_snd_doz_ouch',1190), -(19295,59061,'kill_snd_doz_roar_01',1190), -(19296,59062,'kill_snd_doz_shieldshove',1190), -(19297,59063,'kill_snd_doz_whirl_attack',1190), -(19298,59064,'kill_snd_doz_wildswing',1190), -(19299,59071,'kill_cast_hand_fire_trails',1190), -(19300,59074,'kill_cast_wing_blast',1190), -(19301,59081,'kill_cast_pillar_spin',1190), -(19302,59093,'kill_prestige_point_acquired',1190), -(19303,59094,'kill_result_vaporize',1190), -(19304,59103,'kill_cast_tail_fx',1190), -(19305,59110,'kill__dodge_backhand',1190), -(19306,59111,'kill__dodge_down',1190), -(19307,59112,'kill__dodge_forehand',1190), -(19308,59113,'kill__dodge_thrust',1190), -(19309,59114,'kill__knockeddowntoknees',1190), -(19310,59115,'kill__knockedtoback',1190), -(19311,59116,'kill__knockedtoback_getup',1190), -(19312,59117,'kill__knockedtoback_onbackidle',1190), -(19313,59118,'kill__ouch',1190), -(19314,59119,'kill__ouch_backhand',1190), -(19315,59120,'kill__ouch_down',1190), -(19316,59121,'kill__ouch_forehand',1190), -(19317,59122,'kill__ouch_thrust',1190), -(19318,59123,'kill_cast_magic_breath',1190), -(19319,59124,'kill_cast_noxious_breath',1190), -(19320,59126,'kill_cast_prestige_fx',1190), -(19321,59133,'kill_cast_fire_blast',1190), -(19322,59139,'kill_result_dark_vaporize',1190), -(19323,59140,'kill_result_time_warp',1190), -(19324,59151,'kill_gathering_tail_cloak',1190), -(19325,59158,'kill_cast_belly_blast',1190), -(19326,59159,'kill_cast_dark_shout',1190), -(19327,59160,'kill_cast_debris',1190), -(19328,59161,'kill_cast_fire_breath',1190), -(19329,59164,'kill_cast_sonic_blast',1190), -(19330,59165,'kill_ch',1190), -(19331,59168,'kill_eyes rotate down',1190), -(19332,59169,'kill_eyes rotate left',1190), -(19333,59170,'kill_eyes rotate right',1190), -(19334,59171,'kill_eyes rotate up',1190), -(19335,59173,'kill_jaw rotate y max',1190), -(19336,59174,'kill_jaw rotate y min',1190), -(19337,59175,'kill_jaw rotate z max',1190), -(19338,59176,'kill_jaw rotate z min',1190), -(19339,59177,'kill_left blink',1190), -(19340,59178,'kill_left brow down',1190), -(19341,59179,'kill_left brow up',1190), -(19342,59180,'kill_left eye wide',1190), -(19343,59181,'kill_left frown',1190), -(19344,59182,'kill_lower lip roll in',1190), -(19345,59183,'kill_lower lip roll out',1190), -(19346,59184,'kill_mbp',1190), -(19347,59185,'kill_mid brows down',1190), -(19348,59186,'kill_mid brows up',1190), -(19349,59187,'kill_mouth down',1190), -(19350,59188,'kill_mouth open',1190), -(19351,59189,'kill_mouth up',1190), -(19352,59190,'kill_normal fv',1190), -(19353,59191,'kill_oo tight',1190), -(19354,59192,'kill_right blink',1190), -(19355,59193,'kill_right brow down',1190), -(19356,59194,'kill_right brow up',1190), -(19357,59195,'kill_right eye wide',1190), -(19358,59196,'kill_right frown',1190), -(19359,59197,'kill_scrunch left',1190), -(19360,59198,'kill_scrunch right',1190), -(19361,59200,'kill_smile left',1190), -(19362,59201,'kill_smile right',1190), -(19363,59232,'kill_upper lip left up',1190), -(19364,59233,'kill_upper lip right up',1190), -(19365,59234,'kill_upper lip roll in',1190), -(19366,59235,'kill_upper lip roll out',1190), -(19367,59242,'kill_base_rest',1190), -(19368,59243,'kill_cast_flaming_wings',1190), -(19369,59248,'kill_eyes_rotate_down',1190), -(19370,59249,'kill_eyes_rotate_left',1190), -(19371,59250,'kill_eyes_rotate_right',1190), -(19372,59251,'kill_eyes_rotate_up',1190), -(19373,59253,'kill_jaw_rotate_y_max',1190), -(19374,59254,'kill_jaw_rotate_y_min',1190), -(19375,59255,'kill_jaw_rotate_z_max',1190), -(19376,59256,'kill_jaw_rotate_z_min',1190), -(19377,59257,'kill_left_blink',1190), -(19378,59258,'kill_left_brow_down',1190), -(19379,59259,'kill_left_brow_up',1190), -(19380,59260,'kill_left_eye_wide',1190), -(19381,59261,'kill_left_frown',1190), -(19382,59262,'kill_mid_brows_down',1190), -(19383,59263,'kill_mid_brows_up',1190), -(19384,59264,'kill_mouth_down',1190), -(19385,59265,'kill_mouth_open',1190), -(19386,59266,'kill_mouth_up',1190), -(19387,59267,'kill_normalfv',1190), -(19388,59268,'kill_oo_tight',1190), -(19389,59269,'kill_right_blink',1190), -(19390,59270,'kill_right_brow_down',1190), -(19391,59271,'kill_right_brow_up',1190), -(19392,59272,'kill_right_eye_wide',1190), -(19393,59273,'kill_right_frown',1190), -(19394,59274,'kill_scrunch_left',1190), -(19395,59275,'kill_scrunch_right',1190), -(19396,59277,'kill_smile_big_left',1190), -(19397,59278,'kill_smile_big_right',1190), -(19398,59309,'kill_upper_lip_left_up',1190), -(19399,59310,'kill_upper_lip_right_up',1190), -(19400,59325,'kill_snd_doz_big_whoosh',1190), -(19401,59326,'kill_snd_doz_big_whoosh_02',1190), -(19402,59333,'kill_aa_notes_blast',1190), -(19403,59334,'kill_aa_stabbing_blades',1190), -(19404,59348,'kill_snd_lumpy_1h_sword_attack01',1190), -(19405,59349,'kill_snd_lumpy_attack',1190), -(19406,59350,'kill_snd_lumpy_attack_01',1190), -(19407,59351,'kill_snd_lumpy_attack_02',1190), -(19408,59352,'kill_snd_lumpy_attack_03',1190), -(19409,59353,'kill_snd_lumpy_attack_bite',1190), -(19410,59354,'kill_snd_lumpy_attack_bites',1190), -(19411,59355,'kill_snd_lumpy_attack_breath',1190), -(19412,59356,'kill_snd_lumpy_attack_shuffle',1190), -(19413,59357,'kill_snd_lumpy_attack_slam',1190), -(19414,59358,'kill_snd_lumpy_attack_tail',1190), -(19415,59359,'kill_snd_lumpy_cast_1',1190), -(19416,59360,'kill_snd_lumpy_combat_enter',1190), -(19417,59361,'kill_snd_lumpy_dead_enter',1190), -(19418,59362,'kill_snd_lumpy_roll',1190), -(19419,59395,'kill_sound_attack_flame',1190), -(19420,59396,'kill_sound_attack_tail',1190), -(19421,59397,'kill_sound_bites',1190), -(19422,59398,'kill_sound_defensive_buff',1190), -(19423,59402,'kill_sound_idle_01',1190), -(19424,59417,'kill_snd_attack04',1190), -(19425,59422,'kill_snd_fs_mud',1190), -(19426,59424,'kill_snd_mud_elem_attack',1190), -(19427,59425,'kill_snd_mud_elem_attack01',1190), -(19428,59426,'kill_snd_mud_elem_attack02',1190), -(19429,59427,'kill_snd_mud_elem_chargeup',1190), -(19430,59428,'kill_snd_mud_elem_dead_enter',1190), -(19431,59429,'kill_snd_mud_elem_dodge_fore',1190), -(19432,59430,'kill_snd_mud_elem_knocktoback',1190), -(19433,59431,'kill_snd_mud_elem_knocktoknees',1190), -(19434,59432,'kill_snd_mud_elem_ouch_thrust',1190), -(19435,59433,'kill_snd_mud_elem_shield_shove',1190), -(19436,59434,'kill_snd_mud_elem_whirl_attack',1190), -(19437,59435,'kill_snd_mud_elem_wildswing',1190), -(19438,59436,'kill_snd_mud_vox_attck_01',1190), -(19439,59437,'kill_snd_mud_vox_attck_02',1190), -(19440,59438,'kill_snd_mud_vox_attck_roar',1190), -(19441,59439,'kill_snd_mud_vox_cast_1',1190), -(19442,59440,'kill_snd_mud_vox_dead_enter',1190), -(19443,59441,'kill_snd_mud_vox_def_buff',1190), -(19444,59452,'kill_drakota_mount_fly_fall',1190), -(19445,59455,'kill_prestige_point_sound',1190), -(19446,59458,'kill_snd_cast4',1190), -(19447,59459,'kill_snd_doz_spawn',1190), -(19448,59478,'kill_snd_xygoz1_attack',1190), -(19449,59479,'kill_snd_xygoz1_attack01',1190), -(19450,59480,'kill_snd_xygoz1_attack02',1190), -(19451,59481,'kill_snd_xygoz1_attack03',1190), -(19452,59482,'kill_snd_xygoz1_attack_flame',1190), -(19453,59483,'kill_snd_xygoz1_attack_tail',1190), -(19454,59484,'kill_snd_xygoz1_dead_enter',1190), -(19455,59485,'kill_snd_xygoz1_idle01',1190), -(19456,59486,'kill_snd_xygoz1_knockedtoback',1190), -(19457,59487,'kill_snd_xygoz1_superbuff',1190), -(19458,59502,'kill_snd_drakota_vox_01',1190), -(19459,59503,'kill_snd_drakota_vox_02',1190), -(19460,59504,'kill_snd_drakota_vox_03',1190), -(19461,59516,'kill_lower_lip_left_down',1190), -(19462,59517,'kill_lower_lip_right_down',1190), -(19463,59528,'kill_design_skyshrine_time_rift',1190), -(19464,59535,'kill__left_eye_wide',1190), -(19465,59536,'kill__right_eye_wide',1190), -(19466,59580,'kill_yes',1190), -(19467,59611,'kill_snd_vox_short',1190), -(19468,59624,'kill_result_beetle_fireball_p2p',1190), -(19469,59656,'kill_summon_01',1190), -(19470,59657,'kill_1h_sword_cast',1190), -(19471,59658,'kill_1h_sword_cast_enter',1190), -(19472,59659,'kill_1h_sword_cast_exit',1190), -(19473,59660,'kill_1h_sword_cast_idle',1190), -(19474,59661,'kill_1h_sword_combat_art_buff',1190), -(19475,59662,'kill_1h_sword_combat_enter',1190), -(19476,59669,'kill_aa_lightning_blast_hit',1190), -(19477,59675,'kill_knocked_to_back',1190), -(19478,59676,'kill_knocked_to_back_getup',1190), -(19479,59677,'kill_knocked_to_back_idle',1190), -(19480,59688,'kill_design_groundportal_rift',1190), -(19481,59699,'kill_design_corrupted',1190), -(19482,59702,'kill_result_light_explode',1190), -(19483,59713,'kill_design_qey_mage_tower_fire',1190), -(19484,59714,'kill_design_qey_portal_from_hell',1190), -(19485,59721,'kill_aa_time_warp',1190), -(19486,59727,'kill_knockedtoknees_dead',1190), -(19487,59729,'kill_persist_magic_damage',1190), -(19488,59740,'kill_design_qey_fire_room',1190), -(19489,59741,'kill_design_qey_wall_crack',1190), -(19490,59744,'kill_read_book',1190), -(19491,59788,'kill_summon_fx_long',1190), -(19492,59789,'kill_summon_fx_short',1190), -(19493,59790,'kill_time_stop_sound',1190), -(19494,59797,'kill_aa_mental_damage',1190), -(19495,59798,'kill_aa_mental_smite',1190), -(19496,59799,'kill_aa_soothe',1190), -(19497,59804,'kill_idlea',1190), -(19498,59805,'kill_idlleb',1190), -(19499,59839,'kill_winged_lion_backup',1190), -(19500,59840,'kill_winged_lion_fall',1190), -(19501,59841,'kill_winged_lion_fly_backup',1190), -(19502,59842,'kill_winged_lion_fly_climb',1190), -(19503,59843,'kill_winged_lion_fly_dive',1190), -(19504,59844,'kill_winged_lion_fly_down',1190), -(19505,59845,'kill_winged_lion_fly_glide',1190), -(19506,59846,'kill_winged_lion_fly_glide_left',1190), -(19507,59847,'kill_winged_lion_fly_glide_right',1190), -(19508,59848,'kill_winged_lion_fly_idle',1190), -(19509,59849,'kill_winged_lion_fly_run',1190), -(19510,59850,'kill_winged_lion_fly_strafe_left',1190), -(19511,59851,'kill_winged_lion_fly_strafe_right',1190), -(19512,59852,'kill_winged_lion_fly_turn_left',1190), -(19513,59853,'kill_winged_lion_fly_turn_right',1190), -(19514,59854,'kill_winged_lion_fly_up',1190), -(19515,59855,'kill_winged_lion_fly_walk',1190), -(19516,59856,'kill_winged_lion_idle',1190), -(19517,59857,'kill_winged_lion_idle01',1190), -(19518,59858,'kill_winged_lion_jump',1190), -(19519,59859,'kill_winged_lion_jump_substitute',1190), -(19520,59860,'kill_winged_lion_land',1190), -(19521,59861,'kill_winged_lion_long_fall',1190), -(19522,59862,'kill_winged_lion_run',1190), -(19523,59863,'kill_winged_lion_turn_left',1190), -(19524,59864,'kill_winged_lion_turn_right',1190), -(19525,59865,'kill_winged_lion_walk',1190), -(19526,59876,'kill_idle_a',1190), -(19527,59877,'kill_idle_b',1190), -(19528,59878,'kill_idle_c',1190), -(19529,59889,'kill_evil_bird_backup',1190), -(19530,59890,'kill_evil_bird_fall',1190), -(19531,59891,'kill_evil_bird_fly_backup',1190), -(19532,59892,'kill_evil_bird_fly_climb',1190), -(19533,59893,'kill_evil_bird_fly_dive',1190), -(19534,59894,'kill_evil_bird_fly_down',1190), -(19535,59895,'kill_evil_bird_fly_glide',1190), -(19536,59896,'kill_evil_bird_fly_glide_left',1190), -(19537,59897,'kill_evil_bird_fly_glide_right',1190), -(19538,59898,'kill_evil_bird_fly_idle',1190), -(19539,59899,'kill_evil_bird_fly_run',1190), -(19540,59900,'kill_evil_bird_fly_strafe_left',1190), -(19541,59901,'kill_evil_bird_fly_strafe_right',1190), -(19542,59902,'kill_evil_bird_fly_turn_left',1190), -(19543,59903,'kill_evil_bird_fly_turn_right',1190), -(19544,59904,'kill_evil_bird_fly_up',1190), -(19545,59905,'kill_evil_bird_fly_walk',1190), -(19546,59906,'kill_evil_bird_idle',1190), -(19547,59907,'kill_evil_bird_idle01',1190), -(19548,59908,'kill_evil_bird_idle02',1190), -(19549,59909,'kill_evil_bird_idle03',1190), -(19550,59910,'kill_evil_bird_idle04',1190), -(19551,59911,'kill_evil_bird_jump',1190), -(19552,59912,'kill_evil_bird_jump_substitute',1190), -(19553,59913,'kill_evil_bird_land',1190), -(19554,59914,'kill_evil_bird_long_fall',1190), -(19555,59915,'kill_evil_bird_run',1190), -(19556,59916,'kill_evil_bird_turn_left',1190), -(19557,59917,'kill_evil_bird_turn_right',1190), -(19558,59918,'kill_evil_bird_walk',1190), -(19559,59920,'kill_lion_winged_backup',1190), -(19560,59921,'kill_lion_winged_fly_backup',1190), -(19561,59922,'kill_lion_winged_fly_idle',1190), -(19562,59923,'kill_lion_winged_fly_run',1190), -(19563,59924,'kill_lion_winged_fly_strafe_left',1190), -(19564,59925,'kill_lion_winged_fly_strafe_right',1190), -(19565,59926,'kill_lion_winged_fly_turn_left',1190), -(19566,59927,'kill_lion_winged_fly_turn_right',1190), -(19567,59928,'kill_lion_winged_fly_walk',1190), -(19568,59929,'kill_lion_winged_idle01',1190), -(19569,59930,'kill_lion_winged_jump',1190), -(19570,59931,'kill_lion_winged_jump_substitute',1190), -(19571,59932,'kill_lion_winged_run',1190), -(19572,59933,'kill_lion_winged_turn_left',1190), -(19573,59934,'kill_lion_winged_turn_right',1190), -(19574,59935,'kill_lion_winged_walk',1190), -(19575,59946,'kill_dance_a',1190), -(19576,59947,'kill_dance_base',1190), -(19577,59954,'kill_aa_rune_blur_circular',1190), -(19578,59960,'kill_knockdowntoknees_enter',1190), -(19579,59961,'kill_knockdowntoknees_exit',1190), -(19580,59962,'kill_knockdowntoknees_idle',1190), -(19581,59969,'kill_aa_earth_summon',1190), -(19582,59970,'kill_aa_summon_minion',1190), -(19583,59977,'kill_aa_rune_chain_swirl',1190), -(19584,59978,'kill_aa_spirit_heal',1190), -(19585,59991,'kill_scream01',1190), -(19586,60012,'kill_soul_idle',1190), -(19587,60013,'kill_soul_suck_fx',1190), -(19588,60014,'kill_soulsuck_enter',1190), -(19589,60015,'kill_soulsuck_idle',1190), -(19590,60022,'kill_bg_achievement_acquired',1190), -(19591,60027,'kill_design_cloudy_dream',1190), -(19592,60028,'kill_design_kerafyrm_barrier',1190), -(19593,60031,'kill_result_cloudy_dream',1190), -(19594,60063,'kill_winged_lion_fly_fall',1190), -(19595,60070,'kill_aa_result_leash',1190), -(19596,60083,'kill_result_sullon_shadow_curse',1190), -(19597,60094,'kill_evil_bird_idle_egg',1190), -(19598,60107,'kill_result_blood_craze',1190), -(19599,60108,'kill_result_blood_craze_p2p',1190), -(19600,60109,'kill_result_blood_wash',1190), -(19601,60110,'kill_result_extract_will_p2p',1190), -(19602,60123,'kill_result_idol_corruption_p2p',1190), -(19603,60134,'kill_design_damage_level1',1190), -(19604,60135,'kill_design_damage_level2',1190), -(19605,60136,'kill_design_damage_level3',1190), -(19606,60137,'kill_design_damage_level4',1190), -(19607,60138,'kill_design_damage_level5',1190), -(19608,60141,'kill_result_forced_shader_burnt',1190), -(19609,60152,'kill_fly_dead',1190), -(19610,60159,'kill_attack06',1190), -(19611,60163,'kill_crying',1190), -(19612,60165,'kill_giggling',1190), -(19613,60172,'kill_attack_breath_snd',1190), -(19614,60173,'kill_breath_blast_barrier',1190), -(19615,60178,'kill_design_kerafyrm_barrier_big',1190), -(19616,60179,'kill_design_kerafyrm_barrier_fight',1190), -(19617,60180,'kill_design_kerafyrm_barrier_small',1190), -(19618,60181,'kill_flames_backlash_snd',1190), -(19619,60184,'kill_ouch01_snd',1190), -(19620,60185,'kill_ouch02_snd',1190), -(19621,60215,'kill_sound_ulthork_awake',1190), -(19622,60216,'kill_sound_ulthork_combat_enter',1190), -(19623,60217,'kill_sound_ulthork_exhale',1190), -(19624,60218,'kill_sound_ulthork_grunt',1190), -(19625,60219,'kill_sound_ulthork_idle',1190), -(19626,60220,'kill_sound_ulthork_run',1190), -(19627,60221,'kill_sound_ulthork_run01',1190), -(19628,60222,'kill_sound_ulthork_scratch01',1190), -(19629,60223,'kill_sound_ulthork_scratch02',1190), -(19630,60224,'kill_sound_ulthork_snore',1190), -(19631,60225,'kill_sound_ulthork_walk',1190), -(19632,60226,'kill_sound_ulthork_walk01',1190), -(19633,60237,'kill_frogdance',1190), -(19634,60240,'kill_rock_fx',1190), -(19635,60253,'kill_result_compass_hover',1190), -(19636,60260,'kill_arasai_evil_skull_swirls',1190), -(19637,60265,'kill_dark_elf_splash_mist',1190), -(19638,60266,'kill_erudite_book_hover_runes',1190), -(19639,60267,'kill_freeblood_skull_swirls_mesh',1190), -(19640,60268,'kill_gnome_hands_trail_clockwork_blast',1190), -(19641,60269,'kill_halfelf_compass_hover',1190), -(19642,60270,'kill_human_water_dripping_wake',1190), -(19643,60271,'kill_iksar_water_forced_shader_splash',1190), -(19644,60273,'kill_kerra_flea_infestation_trail',1190), -(19645,60275,'kill_ogre_fly_swarm_trail',1190), -(19646,60276,'kill_ratonga_forced_shader_bertox',1190), -(19647,60277,'kill_sarnak_firestrips_trail',1190), -(19648,60309,'kill_troll_poison_spirits_gather',1190), -(19649,60320,'kill_dwarf_rift_crack_dig',1190), -(19650,60321,'kill_fae_fireflies_trail',1190), -(19651,60322,'kill_froglok_godly_light_sparkles',1190), -(19652,60329,'kill_attack_fistslam',1190), -(19653,60330,'kill_attack_groundroar',1190), -(19654,60331,'kill_attack_rage',1190), -(19655,60334,'kill_combat_idle03',1190), -(19656,60337,'kill_halfling_hands_cards_coins_trail',1190), -(19657,60338,'kill_highelf_radiant_sparkles',1190), -(19658,60341,'kill_powerroar',1190), -(19659,60342,'kill_powerslam',1190), -(19660,60374,'kill_targeted_left',1190), -(19661,60375,'kill_targeted_right',1190), -(19662,60376,'kill_transition_left',1190), -(19663,60377,'kill_woodelf_leafy_glow_shader',1190), -(19664,60384,'kill_barbarian_snow_ice_trail',1190), -(19665,60389,'kill_erudite_asteroid_belt',1190), -(19666,60390,'kill_freeblood_bat_swirls_mesh',1190), -(19667,60391,'kill_gnome_clockwork_gears_blast',1190), -(19668,60392,'kill_human_claymore_orbit_trail',1190), -(19669,60394,'kill_kerra_spirit_guide_mesh',1190), -(19670,60396,'kill_portal_jump',1190), -(19671,60397,'kill_portal_stomp',1190), -(19672,60398,'kill_ratonga_brain_storm_text',1190), -(19673,60430,'kill_transition_back',1190), -(19674,60431,'kill_transition_right',1190), -(19675,60440,'kill_cast_skull_head_blast',1190), -(19676,60443,'kill_design_dark_portal',1190), -(19677,60444,'kill_design_light_portal',1190), -(19678,60447,'kill_result_blood_dark',1190), -(19679,60454,'kill_snd_land',1190), -(19680,60469,'kill_snd_winged_lion_idle_01',1190), -(19681,60470,'kill_snd_winged_lion_jump_sub',1190), -(19682,60472,'kill_sound_evil_bird_jump_sub',1190), -(19683,60473,'kill_sound_evil_bird_peck',1190), -(19684,60474,'kill_sound_evil_bird_scratch',1190), -(19685,60475,'kill_sound_evil_bird_vox_idle03',1190), -(19686,60482,'kill_attack_arms',1190), -(19687,60483,'kill_attack_jumpslam',1190), -(19688,60484,'kill_cast_illusionary_charge_up',1190), -(19689,60485,'kill_cast_illusionary_emanation',1190), -(19690,60491,'kill_lose_weapon',1190), -(19691,60493,'kill_result_floating_chain_root',1190), -(19692,60494,'kill_result_illusionary_lights',1190), -(19693,60526,'kill_transition_back_extract',1190), -(19694,60527,'kill_transition_left_extract',1190), -(19695,60528,'kill_transition_right_extract',1190), -(19696,60539,'kill_dance_short',1190), -(19697,60571,'kill_sound_ulthork_charge_up',1190), -(19698,60572,'kill_sound_ulthork_fs',1190), -(19699,60573,'kill_sound_ulthork_idle_01',1190), -(19700,60574,'kill_sound_ulthork_idle_02',1190), -(19701,60575,'kill_sound_ulthork_shield_shove',1190), -(19702,60576,'kill_sound_ulthork_whirl_attack_whsh',1190), -(19703,60588,'kill_mace_blast',1190), -(19704,60590,'kill_rocky_trail',1190), -(19705,60591,'kill_rumble_shake',1190), -(19706,60599,'kill_snd_peck',1190), -(19707,60624,'kill_transition_back01_extract',1190), -(19708,60625,'kill_victory',1190), -(19709,60636,'kill_fear_wave',1190), -(19710,60653,'kill_snd_tbird_pet_angry',1190), -(19711,60654,'kill_snd_tbird_pet_attack01',1190), -(19712,60655,'kill_snd_tbird_pet_happy',1190), -(19713,60656,'kill_snd_tbird_pet_idle01',1190), -(19714,60657,'kill_snd_tbird_pet_idle02',1190), -(19715,60658,'kill_snd_tbird_pet_idle03',1190), -(19716,60659,'kill_snd_tbird_pet_trick',1190), -(19717,60668,'kill_cast_toxic_gathering',1190), -(19718,60669,'kill_cast_toxic_rain',1190), -(19719,60672,'kill_hand_blast',1190), -(19720,60679,'kill_cast_acid_rain',1190), -(19721,60690,'kill_design_circle_warning_zone',1190), -(19722,60691,'kill_design_half_circle_warning_zone',1190), -(19723,60692,'kill_design_oval_warning_zone',1190), -(19724,60693,'kill_design_third_circle_warning_zone',1190), -(19725,60700,'kill_beckon_enter',1190), -(19726,60701,'kill_beckon_exit',1190), -(19727,60708,'kill_aa_double_pyramid',1190), -(19728,60715,'kill_aa_water_summon',1190), -(19729,60722,'kill_aa_ooze_summon',1190), -(19730,60723,'kill_aa_skull_summon',1190), -(19731,60728,'kill_idle01temp',1190), -(19732,60730,'kill_jaw_rotate_max',1190), -(19733,60733,'kill_smile_left',1190), -(19734,60734,'kill_smile_right',1190), -(19735,60745,'kill_design_fire_doorway',1190), -(19736,60746,'kill_design_icy_doorway',1190), -(19737,60757,'kill_dead02',1190), -(19738,60758,'kill_design_fire_pillar',1190), -(19739,60759,'kill_design_green_light_beam',1190), -(19740,60760,'kill_design_ice_pillar',1190), -(19741,60761,'kill_design_purple_light_beam',1190), -(19742,60762,'kill_design_red_light_beam',1190), -(19743,60763,'kill_design_yellow_light_beam',1190), -(19744,60766,'kill_sc_win_chest_fx',1190), -(19745,60779,'kill_result_fire_beam_p2p',1190), -(19746,60780,'kill_result_ice_beam_p2p',1190), -(19747,60793,'kill_piledriver',1190), -(19748,60802,'kill_chargeup',1190), -(19749,60803,'kill_chargeup_enter',1190), -(19750,60804,'kill_chargeup_exit',1190), -(19751,60805,'kill_chargeup_idle',1190), -(19752,60808,'kill_design_lightning_pillar_blue',1190), -(19753,60809,'kill_design_lightning_pillar_red',1190), -(19754,60810,'kill_design_st_boss_lightning_blue',1190), -(19755,60811,'kill_design_st_boss_lightning_red',1190), -(19756,60818,'kill_cast03',1190), -(19757,60819,'kill_cast04',1190), -(19758,60822,'kill_cast_squid_loop',1190), -(19759,60825,'kill_design_orange_light_beam',1190), -(19760,60826,'kill_design_st_boss_platform_charged_blue',1190), -(19761,60827,'kill_design_st_boss_platform_charged_red',1190), -(19762,60834,'kill_blue_crystal_dead',1190), -(19763,60835,'kill_blue_crystal_on',1190), -(19764,60840,'kill_design_urn_shatter',1190), -(19765,60843,'kill_red_crystal_dead',1190), -(19766,60844,'kill_red_crystal_on',1190), -(19767,60845,'kill_result_lightning_floor_blast_blue',1190), -(19768,60846,'kill_result_lightning_floor_blast_red',1190), -(19769,60857,'kill_dead01',1190), -(19770,60858,'kill_design_lightning_pillar_purple',1190), -(19771,60859,'kill_design_st_boss_lightning_purple',1190), -(19772,60860,'kill_design_st_boss_platform_charged_purple',1190), -(19773,60863,'kill_result_damaged',1190), -(19774,60864,'kill_result_glass_blast',1190), -(19775,60865,'kill_result_lightning_floor_blast_purple',1190), -(19776,60866,'kill_result_radiant_glow_no_mesh',1190), -(19777,60867,'kill_result_tether_buff_p2p',1190), -(19778,60874,'kill_cast_blue_buff',1190), -(19779,60877,'kill_cast_red_buff',1190), -(19780,60878,'kill_cast_white_buff',1190), -(19781,60904,'kill_sound_evil_bird_egg_vox',1190), -(19782,60915,'kill_design_ice_column_shatter',1190), -(19783,60916,'kill_drinal_summon',1190), -(19784,60927,'kill_design_circle_warning_zone_blue',1190), -(19785,60928,'kill_design_circle_warning_zone_gold',1190), -(19786,60929,'kill_design_half_circle_warning_zone_blue',1190), -(19787,60930,'kill_design_half_circle_warning_zone_gold',1190), -(19788,60931,'kill_design_oval_warning_zone_blue',1190), -(19789,60932,'kill_design_oval_warning_zone_gold',1190), -(19790,60933,'kill_design_third_circle_warning_zone_blue',1190), -(19791,60934,'kill_design_third_circle_warning_zone_gold',1190), -(19792,60946,'kill_lay_egg_hatch',1190), -(19793,60957,'kill_design_vd_portal_red',1190), -(19794,60991,'kill_status_quest_completes_repeatable',1190), -(19795,60992,'kill_status_quest_completes_tradeskill',1190), -(19796,60993,'kill_status_quest_gives_repeatable',1190), -(19797,60994,'kill_status_quest_gives_tradeskill',1190), -(19798,60995,'kill_status_quest_updates_repeatable',1190), -(19799,60996,'kill_status_quest_updates_tradeskill',1190), -(19800,61007,'kill_drinal_trail_weapon_flames',1190), -(19801,61008,'kill_drinal_trail_weapon_poison',1190), -(19802,61011,'kill_result_flash_weapon_green',1190), -(19803,61022,'kill_drinal_absorb_back_exit',1190), -(19804,61023,'kill_drinal_absorb_back_idle',1190), -(19805,61024,'kill_drinal_absorb_forward_exit',1190), -(19806,61025,'kill_drinal_absorb_forward_idle',1190), -(19807,61026,'kill_drinal_absorb_left_exit',1190), -(19808,61027,'kill_drinal_absorb_left_idle',1190), -(19809,61028,'kill_drinal_absorb_right_exit',1190), -(19810,61029,'kill_drinal_absorb_right_idle',1190), -(19811,61030,'kill_drinal_fireball_gather',1190), -(19812,61031,'kill_drinal_skull_gather',1190), -(19813,61032,'kill_drinal_spirt_gather',1190), -(19814,61033,'kill_drinal_staff_blast',1190), -(19815,61036,'kill_result_drinal_spirits_p2p',1190), -(19816,61037,'kill_result_spirits_blast_out',1190), -(19817,61046,'kill_close_enter',1190), -(19818,61047,'kill_closed_idle',1190), -(19819,61050,'kill_dragon_attack',1190), -(19820,61051,'kill_dragon_idle',1190), -(19821,61054,'kill_open_enter',1190), -(19822,61055,'kill_open_idle',1190), -(19823,61066,'kill_evil_bird_idle05',1190), -(19824,61069,'kill_orbiting_buff_all',1190), -(19825,61070,'kill_orbiting_buff_blue',1190), -(19826,61071,'kill_orbiting_buff_blue_white',1190), -(19827,61072,'kill_orbiting_buff_red',1190), -(19828,61073,'kill_orbiting_buff_red_blue',1190), -(19829,61074,'kill_orbiting_buff_red_white',1190), -(19830,61075,'kill_orbiting_buff_white',1190), -(19831,61088,'kill_result_spike_cage',1190), -(19832,61099,'kill_design_drinals_portal',1190), -(19833,61106,'kill_attack_cannibal',1190), -(19834,61113,'kill_oldidle',1190), -(19835,61122,'kill_cast_shadow_breath',1190), -(19836,61125,'kill_drinal_frontal_blast',1190), -(19837,61126,'kill_drinal_warning_zone',1190), -(19838,61133,'kill_asleep',1190), -(19839,61134,'kill_attack_breath_old',1190), -(19840,61139,'kill_design_groundportal_rift_gehein',1190), -(19841,61140,'kill_dual_wield_knockeddowntoknees',1190), -(19842,61141,'kill_dual_wield_knockedtoback_onbackidle',1190), -(19843,61143,'kill_komodo_npc_glide',1190), -(19844,61177,'kill_tradeart_forge_hammers_anvil',1190), -(19845,61188,'kill_design_agitated',1190), -(19846,61189,'kill_design_distorted',1190), -(19847,61190,'kill_design_fear',1190), -(19848,61208,'kill_snd_tirun_enf_attack',1190), -(19849,61209,'kill_snd_tirun_enf_attack01',1190), -(19850,61210,'kill_snd_tirun_enf_attack02',1190), -(19851,61211,'kill_snd_tirun_enf_attack03',1190), -(19852,61212,'kill_snd_tirun_enf_cast1',1190), -(19853,61213,'kill_snd_tirun_enf_chargeup',1190), -(19854,61214,'kill_snd_tirun_enf_combat_enter',1190), -(19855,61215,'kill_snd_tirun_enf_combat_idle01',1190), -(19856,61216,'kill_snd_tirun_enf_dead',1190), -(19857,61217,'kill_snd_tirun_enf_dodge',1190), -(19858,61218,'kill_snd_tirun_enf_knocktoknees',1190), -(19859,61219,'kill_snd_tirun_enf_ouch',1190), -(19860,61220,'kill_snd_tirun_enf_shield_shove',1190), -(19861,61221,'kill_snd_tirun_enf_whirling_attack',1190), -(19862,61222,'kill_snd_tirun_enf_wild_swing',1190), -(19863,61240,'kill_tradeart_flask_beaker_pour',1190), -(19864,61241,'kill_tradeart_forge_hammer_metal',1190), -(19865,61242,'kill_tradeart_saw_log',1190), -(19866,61253,'kill_design_drinals_floor_panel_blue',1190), -(19867,61254,'kill_design_drinals_floor_panel_challege_blue',1190), -(19868,61255,'kill_design_drinals_floor_panel_challege_red',1190), -(19869,61256,'kill_design_drinals_floor_panel_red',1190), -(19870,61257,'kill_design_drinals_vessel_arc_blue',1190), -(19871,61258,'kill_design_drinals_vessel_arc_red',1190), -(19872,61262,'kill_result_bastion_beam_p2p',1190), -(19873,61277,'kill_shaman_summon_fx',1190), -(19874,61288,'kill_design_tof_rock_collapse01',1190), -(19875,61289,'kill_design_tof_rock_collapse02',1190), -(19876,61290,'kill_design_tof_rock_collapse03',1190), -(19877,61291,'kill_design_tof_rock_collapse04',1190), -(19878,61326,'kill_spit',1190), -(19879,61337,'kill_design_arcane_barrier',1190), -(19880,61338,'kill_design_divine_barrier',1190), -(19881,61342,'kill_result_magic_barrier_beam_p2p',1190), -(19882,61351,'kill_cast_werewolf_appear',1190), -(19883,61352,'kill_cast_werewolf_hair',1190), -(19884,61355,'kill_csat_werewolf_vanish',1190), -(19885,61362,'kill_attack_eye_cone',1190), -(19886,61367,'kill_gazer_charge_up',1190), -(19887,61371,'kill_result_essence_suck_p2p',1190), -(19888,61372,'kill_result_gazer_flame_eye_beam_p2p',1190), -(19889,61387,'kill_sky_float_idle',1190), -(19890,61418,'kill_zap_attack',1190), -(19891,61429,'kill_fs',1190), -(19892,61434,'kill_shaman_crouch_idle',1190), -(19893,61441,'kill_snd_skirth_attack',1190), -(19894,61442,'kill_snd_skirth_attack01',1190), -(19895,61443,'kill_snd_skirth_attack02',1190), -(19896,61444,'kill_snd_skirth_attack03',1190), -(19897,61445,'kill_snd_skirth_aura',1190), -(19898,61446,'kill_snd_skirth_cast_1',1190), -(19899,61447,'kill_snd_skirth_chargeup',1190), -(19900,61448,'kill_snd_skirth_combat_enter',1190), -(19901,61449,'kill_snd_skirth_combat_enter1',1190), -(19902,61450,'kill_snd_skirth_dead_enter',1190), -(19903,61451,'kill_snd_skirth_knocktobackgetup',1190), -(19904,61452,'kill_snd_skirth_ouch',1190), -(19905,61453,'kill_snd_skirth_shiield_shove',1190), -(19906,61454,'kill_snd_skirth_spit',1190), -(19907,61455,'kill_snd_skirth_whirling_attack',1190), -(19908,61456,'kill_snd_skirth_wildswing',1190), -(19909,61481,'kill_zap_enter',1190), -(19910,61482,'kill_zap_exit',1190), -(19911,61483,'kill_zap_idle',1190), -(19912,61528,'kill_were_cast_idle',1190), -(19913,61542,'kill_result_ethernere_fx',1190), -(19914,61550,'kill_snd_skirth_idle03',1190), -(19915,61564,'kill_result_aggression_removal',1190), -(19916,61565,'kill_result_aggression_removal_p2p',1190), -(19917,61566,'kill_result_healing_trail_p2p',1190), -(19918,61567,'kill_result_lifebringer_glade',1190), -(19919,61599,'kill_trdskl_aggro_life_wand',1190), -(19920,61615,'kill_snd_baelon_attack',1190), -(19921,61616,'kill_snd_baelon_attack01',1190), -(19922,61617,'kill_snd_baelon_attack_arms',1190), -(19923,61618,'kill_snd_baelon_fs',1190), -(19924,61619,'kill_snd_baelon_idle02',1190), -(19925,61620,'kill_snd_baelon_idle03',1190), -(19926,61621,'kill_snd_baelon_lose_weapon',1190), -(19927,61622,'kill_snd_baelon_ouch',1190), -(19928,61623,'kill_snd_baelon_powerslam',1190), -(19929,61624,'kill_snd_baelon_summon',1190), -(19930,61625,'kill_snd_baelon_targeted_right',1190), -(19931,61626,'kill_snd_baelon_transition_back',1190), -(19932,61627,'kill_snd_baelon_transition_back01_extract',1190), -(19933,61628,'kill_snd_baelon_transition_back_extract',1190), -(19934,61629,'kill_snd_baelon_transition_left_extract',1190), -(19935,61630,'kill_snd_baelon_transition_right',1190), -(19936,61631,'kill_snd_baelon_transition_right_extract',1190), -(19937,61632,'kill_snd_baelon_unarmed_attack',1190), -(19938,61633,'kill_snd_baelon_unarmed_attack01',1190), -(19939,61634,'kill_snd_baelon_unarmed_attack02',1190), -(19940,61635,'kill_snd_baelon_unarmed_attack_fistslam',1190), -(19941,61636,'kill_snd_baelon_unarmed_attack_jumpslam',1190), -(19942,61637,'kill_snd_baelon_unarmed_attack_stomp',1190), -(19943,61638,'kill_snd_baelon_unarmed_dead_enter',1190), -(19944,61639,'kill_snd_baelon_unarmed_fs',1190), -(19945,61640,'kill_snd_baelon_unarmed_idle01',1190), -(19946,61641,'kill_snd_baelon_unarmed_idle02',1190), -(19947,61642,'kill_snd_baelon_unarmed_ouch',1190), -(19948,61643,'kill_snd_baelon_unarmed_portal_jump',1190), -(19949,61644,'kill_snd_baelon_unarmed_portal_stomp',1190), -(19950,61645,'kill_snd_baelon_unarmed_victory',1190), -(19951,61646,'kill_snd_baelon_whirling_attack',1190), -(19952,61647,'kill_snd_baelon_wild_swing',1190), -(19953,61658,'kill_fx_foot_trail_lf',1190), -(19954,61659,'kill_fx_foot_trail_lh',1190), -(19955,61660,'kill_fx_foot_trail_rf',1190), -(19956,61661,'kill_fx_foot_trail_rh',1190), -(19957,61685,'kill_sound_bodyfall',1190), -(19958,61696,'kill_sound_whoosh',1190), -(19959,61698,'kill_untrainted_wildswing',1190), -(19960,61709,'kill_gehein_aura_lp',1190), -(19961,61714,'kill_sfx_attack_vox',1190), -(19962,61715,'kill_sfx_death_vox',1190), -(19963,61716,'kill_sfx_gehein_death_vox',1190), -(19964,61717,'kill_sfx_gehein_vox_attack',1190), -(19965,61718,'kill_sfx_gehein_vox_ouch',1190), -(19966,61719,'kill_sfx_whoosh',1190), -(19967,61720,'kill_sfx_whoosh_high',1190), -(19968,61741,'kill_snd_screecher_attack',1190), -(19969,61742,'kill_snd_screecher_attack01',1190), -(19970,61743,'kill_snd_screecher_attack02',1190), -(19971,61744,'kill_snd_screecher_attack03',1190), -(19972,61745,'kill_snd_screecher_aura_lp',1190), -(19973,61746,'kill_snd_screecher_cast',1190), -(19974,61747,'kill_snd_screecher_cast01',1190), -(19975,61748,'kill_snd_screecher_combat_enter',1190), -(19976,61749,'kill_snd_screecher_dead_enter',1190), -(19977,61750,'kill_snd_screecher_idel01',1190), -(19978,61751,'kill_snd_screecher_idle02',1190), -(19979,61752,'kill_snd_screecher_jump',1190), -(19980,61753,'kill_snd_screecher_ouch',1190), -(19981,61754,'kill_snd_screecher_scream',1190), -(19982,61755,'kill_snd_screecher_scream01',1190), -(19983,61756,'kill_snd_screecher_whirling_attack',1190), -(19984,61770,'kill_result_life_statue_fx',1190), -(19985,61781,'kill_dont_use_ouch',1190), -(19986,61792,'kill_fly_in_old',1190), -(19987,61793,'kill_ilde01',1190), -(19988,61813,'kill_snd_komodo_attack',1190), -(19989,61814,'kill_snd_komodo_attack01',1190), -(19990,61815,'kill_snd_komodo_cast01',1190), -(19991,61816,'kill_snd_komodo_dead_enter',1190), -(19992,61817,'kill_snd_komodo_knocktoback',1190), -(19993,61818,'kill_snd_komodo_ouch',1190), -(19994,61819,'kill_snd_komodo_whirling_attack',1190), -(19995,61820,'kill_snd_komodo_wild_swing',1190), -(19996,61831,'kill_design_etherene_fire',1190), -(19997,61832,'kill_design_ethernere_vines',1190), -(19998,61843,'kill_idle05',1190), -(19999,61858,'kill_sfx_vox_gehein_laugh',1190), -(20000,61860,'kill_snd_chitari_1h_sword_attack',1190), -(20001,61861,'kill_snd_chitari_1h_sword_attack01',1190), -(20002,61862,'kill_snd_chitari_1h_sword_attack02',1190), -(20003,61863,'kill_snd_chitari_1h_sword_enter',1190), -(20004,61864,'kill_snd_chitari_attack',1190), -(20005,61865,'kill_snd_chitari_attack01',1190), -(20006,61866,'kill_snd_chitari_attack02',1190), -(20007,61867,'kill_snd_chitari_attack03',1190), -(20008,61868,'kill_snd_chitari_attack_cannibal',1190), -(20009,61869,'kill_snd_chitari_charge_up',1190), -(20010,61870,'kill_snd_chitari_dead_enter',1190), -(20011,61871,'kill_snd_chitari_idle01',1190), -(20012,61872,'kill_snd_chitari_knockedtoback_getup',1190), -(20013,61873,'kill_snd_chitari_ouch',1190), -(20014,61874,'kill_snd_chitari_ouch_forehand',1190), -(20015,61875,'kill_snd_chitari_shield_shove',1190), -(20016,61876,'kill_snd_chitari_whirling_attack',1190), -(20017,61877,'kill_snd_chitari_wild_swing',1190), -(20018,61884,'kill_aa_smoke_teleport',1190), -(20019,61885,'kill_aa_wave_splash',1190), -(20020,61886,'kill_aa_whirlwind_teleport',1190), -(20021,61891,'kill_idle04_',1190), -(20022,61898,'kill_aa_scythe_slash',1190), -(20023,61905,'kill_aa_frozen_rain',1190), -(20024,61906,'kill_aa_toxic_mist',1190), -(20025,61914,'kill_result_bone_glow_3',1190), -(20026,61915,'kill_result_fire_attack_p2p',1190), -(20027,61926,'kill_dontuse_knockedtoback',1190), -(20028,61927,'kill_dontuse_knockedtoback_getup',1190), -(20029,61928,'kill_dontuse_knockedtoback_onbackidle',1190), -(20030,61935,'kill_aa_fire_swirl_shield',1190), -(20031,61936,'kill_aa_head_skeleton_hands_blast',1190), -(20032,61937,'kill_aa_heal_skeleton_hands_blast',1190), -(20033,61938,'kill_aa_planar_fire_blast',1190), -(20034,61939,'kill_aa_second_skin',1190), -(20035,61946,'kill_aa_cast_wind_spin',1190), -(20036,61947,'kill_aa_dark_swirly_wisps',1190), -(20037,61948,'kill_aa_heal_splash',1190), -(20038,61949,'kill_aa_lightning_siphon',1190), -(20039,61950,'kill_aa_nature_heal',1190), -(20040,61951,'kill_aa_scimitar_cyclone',1190), -(20041,61952,'kill_aa_spirit_swirl_buff_ward',1190), -(20042,61980,'kill_snd_were_1h_sword_attack01_vox',1190), -(20043,61981,'kill_snd_were_1h_sword_attack02_vox',1190), -(20044,61982,'kill_snd_were_1h_sword_attack03_vox',1190), -(20045,61983,'kill_snd_were_1h_sword_attack_vox',1190), -(20046,61984,'kill_snd_were_attack01_vox',1190), -(20047,61985,'kill_snd_were_attack02_vox',1190), -(20048,61986,'kill_snd_were_attack_vox',1190), -(20049,61987,'kill_snd_were_cast_vox',1190), -(20050,61988,'kill_snd_were_combat_idle01_vox',1190), -(20051,61989,'kill_snd_were_dead_enter_vox',1190), -(20052,61990,'kill_snd_were_dual_wield_attack01_vox',1190), -(20053,61991,'kill_snd_were_dual_wield_attack02_vox',1190), -(20054,61992,'kill_snd_were_dual_wield_attack03_vox',1190), -(20055,61993,'kill_snd_were_dual_wield_attack_vox',1190), -(20056,61994,'kill_snd_were_kick_vox',1190), -(20057,61995,'kill_snd_were_ouch_vox',1190), -(20058,61996,'kill_snd_were_shield_shove_vox',1190), -(20059,61997,'kill_snd_were_super_buff_vox',1190), -(20060,61998,'kill_snd_were_wild_swing_vox',1190), -(20061,62010,'kill_swoosh_huge',1190), -(20062,62017,'kill_aa_arrow_rapid_salvo',1190), -(20063,62018,'kill_aa_fire_arrow_p2p',1190), -(20064,62019,'kill_aa_music_dagger_buff',1190), -(20065,62020,'kill_aa_sound_wave_blast',1190), -(20066,62021,'kill_bird_squawk_sound',1190), -(20067,62022,'kill_cast_bagpipe_sound',1190), -(20068,62023,'kill_cast_bard_bagpipes',1190), -(20069,62030,'kill_scaled_hands_attack03',1190), -(20070,62037,'kill_cast_dome_barrier_fx',1190), -(20071,62042,'kill_design_comm_on',1190), -(20072,62043,'kill_design_tourbillion_flux_fx',1190), -(20073,62044,'kill_design_tourbillion_persist_fx',1190), -(20074,62047,'kill_result_tourbillion_essence_suck_p2p',1190), -(20075,62060,'kill_result_forced_shader_ethernere',1190), -(20076,62067,'kill_bodyfall',1190), -(20077,62105,'kill_whoosh_large',1190), -(20078,62106,'kill_whoosh_lrg',1190), -(20079,62121,'kill_snd_attack_long',1190), -(20080,62122,'kill_snd_attack_short',1190), -(20081,62127,'kill_snd_gargoyle_attack',1190), -(20082,62128,'kill_snd_gargoyle_attack03',1190), -(20083,62129,'kill_snd_gargoyle_cast_1',1190), -(20084,62130,'kill_snd_gargoyle_charge_up',1190), -(20085,62131,'kill_snd_gargoyle_combat_enter',1190), -(20086,62132,'kill_snd_gargoyle_dead_enter',1190), -(20087,62133,'kill_snd_gargoyle_kick',1190), -(20088,62134,'kill_snd_gargoyle_knocktoback_getup',1190), -(20089,62135,'kill_snd_gargoyle_ouch_forehand',1190), -(20090,62136,'kill_snd_gargoyle_shield_shove',1190), -(20091,62137,'kill_snd_jump_fx',1190), -(20092,62139,'kill_snd_rx_cast1',1190), -(20093,62140,'kill_snd_rx_chargeup',1190), -(20094,62141,'kill_snd_rx_combat_enter',1190), -(20095,62142,'kill_snd_rx_dead_enter',1190), -(20096,62152,'kill_cookie_ouch_fx',1190), -(20097,62157,'kill_skyshrine_drake_backup',1190), -(20098,62158,'kill_skyshrine_drake_fall',1190), -(20099,62159,'kill_skyshrine_drake_fly_backup',1190), -(20100,62160,'kill_skyshrine_drake_fly_climb',1190), -(20101,62161,'kill_skyshrine_drake_fly_dive',1190), -(20102,62162,'kill_skyshrine_drake_fly_down',1190), -(20103,62163,'kill_skyshrine_drake_fly_glide',1190), -(20104,62164,'kill_skyshrine_drake_fly_glide_left',1190), -(20105,62165,'kill_skyshrine_drake_fly_glide_right',1190), -(20106,62166,'kill_skyshrine_drake_fly_idle',1190), -(20107,62167,'kill_skyshrine_drake_fly_run',1190), -(20108,62168,'kill_skyshrine_drake_fly_strafe_left',1190), -(20109,62169,'kill_skyshrine_drake_fly_strafe_right',1190), -(20110,62170,'kill_skyshrine_drake_fly_turn_left',1190), -(20111,62171,'kill_skyshrine_drake_fly_turn_right',1190), -(20112,62172,'kill_skyshrine_drake_fly_up',1190), -(20113,62173,'kill_skyshrine_drake_fly_walk',1190), -(20114,62174,'kill_skyshrine_drake_idle',1190), -(20115,62175,'kill_skyshrine_drake_idle01',1190), -(20116,62176,'kill_skyshrine_drake_jump',1190), -(20117,62177,'kill_skyshrine_drake_jump_substitute',1190), -(20118,62178,'kill_skyshrine_drake_land',1190), -(20119,62179,'kill_skyshrine_drake_long_fall',1190), -(20120,62180,'kill_skyshrine_drake_turn_left',1190), -(20121,62181,'kill_skyshrine_drake_turn_right',1190), -(20122,62182,'kill_skyshrine_drake_walk',1190); -/*!40000 ALTER TABLE `visual_states` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/web_routes.sql b/database/login/web_routes.sql deleted file mode 100644 index b73fe08..0000000 --- a/database/login/web_routes.sql +++ /dev/null @@ -1,50 +0,0 @@ --- Table: `web_routes` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `web_routes` --- - -DROP TABLE IF EXISTS `web_routes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `web_routes` ( - `status` int(10) unsigned NOT NULL DEFAULT 4294967295, - `route` varchar(512) NOT NULL DEFAULT '' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for web_routes) -ALTER TABLE `web_routes` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/web_users.sql b/database/login/web_users.sql deleted file mode 100644 index 6e2bd6c..0000000 --- a/database/login/web_users.sql +++ /dev/null @@ -1,53 +0,0 @@ --- Table: `web_users` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `web_users` --- - -DROP TABLE IF EXISTS `web_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `web_users` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `username` varchar(50) NOT NULL DEFAULT '', - `passwd` varchar(512) NOT NULL DEFAULT '', - `status` int(10) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - --- (data omitted for web_users) -ALTER TABLE `web_users` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/login/world_zones.sql b/database/login/world_zones.sql new file mode 100644 index 0000000..68b19f3 --- /dev/null +++ b/database/login/world_zones.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS world_zones; +CREATE TABLE world_zones ( + id INTEGER PRIMARY KEY, + server_id INTEGER NOT NULL DEFAULT 0, + zone_id INTEGER NOT NULL DEFAULT 0, + name TEXT NOT NULL DEFAULT '', + description TEXT NOT NULL DEFAULT '', + UNIQUE(server_id, zone_id) +); diff --git a/database/login/worldservers.sql b/database/login/worldservers.sql new file mode 100644 index 0000000..55df8e5 --- /dev/null +++ b/database/login/worldservers.sql @@ -0,0 +1,33 @@ +DROP TABLE IF EXISTS worldservers; +CREATE TABLE worldservers ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL DEFAULT '' UNIQUE, + disabled INTEGER NOT NULL DEFAULT 0, + account TEXT NOT NULL DEFAULT '' UNIQUE, + chat_shortname TEXT NOT NULL DEFAULT '', + description TEXT NOT NULL, + server_type TEXT NOT NULL DEFAULT '0', + password TEXT NOT NULL DEFAULT '', + serverop TEXT NOT NULL DEFAULT '', + lastseen INTEGER NOT NULL DEFAULT 0, + admin_id INTEGER NOT NULL DEFAULT 0, + greenname INTEGER NOT NULL DEFAULT 0, + showdown INTEGER NOT NULL DEFAULT 0, + chat TEXT NOT NULL DEFAULT '0', + note TEXT NOT NULL, + ip_address TEXT NOT NULL DEFAULT '0', + reset_needed INTEGER NOT NULL DEFAULT 0, + created_date INTEGER NOT NULL DEFAULT 0, + hide_status INTEGER NOT NULL DEFAULT 0, + hide_details INTEGER NOT NULL DEFAULT 0, + hide_admin INTEGER NOT NULL DEFAULT 0, + hide_serverlist INTEGER NOT NULL DEFAULT 0, + server_url TEXT DEFAULT '', + server_category TEXT DEFAULT 'Standard', + server_admin TEXT NOT NULL DEFAULT '', + server_sticky INTEGER NOT NULL DEFAULT 0, + gm_list TEXT, + reset_zone_descriptions INTEGER NOT NULL DEFAULT 0, + reset_login_appearances INTEGER NOT NULL DEFAULT 0, + login_version TEXT NOT NULL DEFAULT '0' +); diff --git a/database/login/worldservers_reset.sql b/database/login/worldservers_reset.sql new file mode 100644 index 0000000..e9410d0 --- /dev/null +++ b/database/login/worldservers_reset.sql @@ -0,0 +1,10 @@ +DROP TABLE IF EXISTS worldservers_reset; +CREATE TABLE worldservers_reset ( + id INTEGER PRIMARY KEY, + world_id INTEGER NOT NULL, + token TEXT NOT NULL UNIQUE, + new_plain TEXT NOT NULL, + new_hash TEXT NOT NULL, + expires INTEGER NOT NULL +); +CREATE INDEX idx_worldservers_reset_world_id ON worldservers_reset(world_id); diff --git a/database/login/worldservers_verify.sql b/database/login/worldservers_verify.sql new file mode 100644 index 0000000..01e8d34 --- /dev/null +++ b/database/login/worldservers_verify.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS worldservers_verify; +CREATE TABLE worldservers_verify ( + id INTEGER PRIMARY KEY, + world_id INTEGER NOT NULL, + token TEXT NOT NULL UNIQUE, + expires INTEGER NOT NULL +); +CREATE INDEX idx_worldservers_verify_world_id ON worldservers_verify(world_id); diff --git a/database/login/worldstats.sql b/database/login/worldstats.sql new file mode 100644 index 0000000..389e9f5 --- /dev/null +++ b/database/login/worldstats.sql @@ -0,0 +1,11 @@ +DROP TABLE IF EXISTS worldstats; +CREATE TABLE worldstats ( + id INTEGER PRIMARY KEY, + world_id INTEGER NOT NULL UNIQUE DEFAULT 0, + world_status INTEGER NOT NULL DEFAULT -1, + current_players INTEGER NOT NULL DEFAULT 0, + current_zones INTEGER NOT NULL DEFAULT 0, + connected_time INTEGER NOT NULL DEFAULT (strftime('%s', 'now')), + last_update INTEGER NOT NULL DEFAULT 0, + world_max_level INTEGER NOT NULL DEFAULT 0 +); diff --git a/database/login/zones.sql b/database/login/zones.sql deleted file mode 100644 index a831004..0000000 --- a/database/login/zones.sql +++ /dev/null @@ -1,766 +0,0 @@ --- Table: `zones` -USE `eq2ls`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `zones` --- - -DROP TABLE IF EXISTS `zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `zones` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `expansion_id` tinyint(3) unsigned NOT NULL DEFAULT 0, - `name` varchar(64) NOT NULL DEFAULT '', - `file` varchar(64) NOT NULL DEFAULT '', - `description` varchar(255) NOT NULL DEFAULT 'Describe me in the zones table! :)', - `safe_x` float NOT NULL DEFAULT 0, - `safe_y` float NOT NULL DEFAULT 0, - `safe_z` float NOT NULL DEFAULT 0, - `safe_heading` float NOT NULL DEFAULT 0, - `underworld` float NOT NULL DEFAULT -1000000, - `xp_modifier` float NOT NULL DEFAULT 0, - `min_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0, - `max_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0, - `zone_type` varchar(64) DEFAULT '', - `always_loaded` tinyint(3) unsigned NOT NULL DEFAULT 0, - `city_zone` tinyint(3) unsigned NOT NULL DEFAULT 0, - `weather_allowed` tinyint(3) unsigned NOT NULL DEFAULT 0, - `min_status` int(10) NOT NULL DEFAULT 0, - `min_level` int(10) NOT NULL DEFAULT 0, - `max_level` int(10) NOT NULL DEFAULT 0, - `start_zone` tinyint(3) NOT NULL DEFAULT 0, - `instance_type` enum('NONE','GROUP_LOCKOUT_INSTANCE','GROUP_PERSIST_INSTANCE','RAID_LOCKOUT_INSTANCE','RAID_PERSIST_INSTANCE','SOLO_LOCKOUT_INSTANCE','SOLO_PERSIST_INSTANCE','TRADESKILL_INSTANCE','PUBLIC_INSTANCE','PERSONAL_HOUSE_INSTANCE','GUILD_HOUSE_INSTANCE') NOT NULL DEFAULT 'NONE', - `default_reenter_time` int(10) unsigned NOT NULL DEFAULT 0, - `default_reset_time` int(10) unsigned NOT NULL DEFAULT 0, - `default_lockout_time` int(10) unsigned NOT NULL DEFAULT 0, - `force_group_to_zone` smallint(5) unsigned NOT NULL DEFAULT 0, - `lua_script` varchar(255) DEFAULT '', - `shutdown_timer` int(10) unsigned NOT NULL DEFAULT 300 COMMENT 'In seconds', - `zone_motd` varchar(250) DEFAULT '', - `ruleset_id` int(10) unsigned NOT NULL DEFAULT 0, - `login_checksum` int(10) unsigned NOT NULL DEFAULT 0, - `sky_file` varchar(64) NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `NewIndex` (`name`), - KEY `ZoneDescIDX` (`description`) -) ENGINE=InnoDB AUTO_INCREMENT=668 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2ls --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `zones` --- - -LOCK TABLES `zones` WRITE; -/*!40000 ALTER TABLE `zones` DISABLE KEYS */; -INSERT INTO `zones` VALUES -(1,50,'GMHall','qey_guildhall_tier3','GM Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2968162667,'qey_guildhall_tier3'), -(2,0,'Splitpaw1','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Alone in the Dark',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2642218879,'adv02_dun_sundered_splitpaw'), -(3,0,'SplitpawDen','adv02_dun_sundered_splitpaw_hub','Sundered Splitpaw: Splitpaw Den ',7.13,-69.56,-311.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2078270933,'adv02_dun_sundered_splitpaw_hub'), -(4,0,'CrustaceanCave','adv04_crab_cave','Cavern of the Crustaceans',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1437304064,'adv04_crab_cave'), -(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux\'laio\'s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1679741196,'adv04_dun_bird_cage'), -(6,0,'Antechamber','adv04_dun_drgn_temple','Antechamber of Fate',-11.35,0.4,-34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3992515775,'adv04_dun_drgn_temple'), -(7,0,'ForsakenCity','adv04_dun_endless','The Forsaken City',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,587354683,'adv04_dun_endless'), -(8,0,'SepulcherZanFi','adv04_dun_temple','The Sepulcher of Zan Fi',-1,0.7,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3635271022,'adv04_dun_temple'), -(9,0,'MysticLake','adv04_rgn_mystic_lake','The Mystic Lake ',151.74,-32.94,34.7,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3461788758,'adv04_rgn_mystic_lake'), -(10,0,'VillageShin','adv04_rgn_village','The Village of Shin ',-17.6,-2.38,129.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2336498437,'adv04_rgn_village'), -(11,0,'TrialBoFen','adv04_tower_cave','Trial of Bo Fen',-13.4,0,-2.11,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4038375427,'adv04_tower_cave'), -(12,0,'antonica','antonica','Antonica',436.2,-37.5,819.56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2242566679,'antonica'), -(13,0,'ShatteredVale1','antonica_epic01_vale','The Shattered Vale ',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3880090772,'antonica_epic01_vale'), -(14,0,'Firemyst1','antonica_epic02_firemyst','Firemyst Gully: A Foul Wind',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1313197908,'antonica_epic02_firemyst'), -(15,0,'Stormhold','befallen','Stormhold',-30,23,43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3163675467,'befallen'), -(16,0,'TombValor1','befallen_epic01','The Tomb of Valor',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,330791385,'befallen_epic01'), -(17,0,'Blackburrow','blackburrow','Blackburrow',76.2,-2.28,20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,418741681,'blackburrow'), -(18,0,'MaidMist','boat_06p_enchanted','The Maid for the Mist',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3294470509,'boat_06p_enchanted'), -(19,0,'FangedSea','boat_06p_everfrost','The Fanged Sea',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3400822130,'boat_06p_everfrost'), -(20,0,'LMSIntruder','boat_06p_feerrott','The LMS Intruder',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2766328670,'boat_06p_feerrott'), -(21,0,'JourneyFreeport','boat_06p_freeport','Journey to Freeport',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1691559112,'boat_06p_freeport'), -(22,0,'SmarmySprocket','boat_06p_hold_of_prexus','Aboard the Smarmy Sprocket',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3493494422,'boat_06p_hold_of_prexus'), -(23,0,'BurningCauldron','boat_06p_lavastorm','The Burning Cauldron',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,85224425,'boat_06p_lavastorm'), -(24,0,'PrizePrexus','boat_06p_orcishwastes','The Prize of Prexus',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,687197178,'boat_06p_orcishwastes'), -(25,0,'JourneyQeynos','boat_06p_qeynos','Journey to Qeynos',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1629504455,'boat_06p_qeynos'), -(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2933294842,'boat_06p_tutorial01'), -(27,0,'FarJourneyFreeport','boat_06p_tutorial02','The Far Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3521329369,'boat_06p_tutorial02'), -(28,0,'CazicThule1','cazicthule','The Temple of Cazic-Thule',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,953361327,'cazicthule'), -(29,0,'SanctumFear1','cazicthule_epic01_sanctum','The Sanctum of Fear',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2868411969,'cazicthule_epic01_sanctum'), -(30,0,'CharCreation','character_create','Character Creation Screen',-127,58.2,-893.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,389319796,'character_create'), -(31,0,'Bloodskull2','cmmn_epic01_orc','The Bloodskull Valley: A Noble Confrontation',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,802190119,'cmmn_epic01_orc'), -(32,0,'EternalGorge1','cmmn_epic02_mage','The Eternal Gorge ',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3119513962,'cmmn_epic02_mage'), -(33,0,'Commonlands','commonlands','The Commonlands',-1052.73,-144.95,-682.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3471412372,'commonlands'), -(34,0,'Darklight','darklight_wood','Darklight Wood ',-414.24,-63.14,258.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,8,'NONE',0,0,0,0,NULL,300,NULL,0,1978857252,'darklight_wood'), -(35,0,'Deathfist1','deathfist','Deathfist Citadel',-0.03,0.5,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2143427729,'deathfist'), -(36,0,'DrownedCaverns1','adv02_dun_drowned_caverns','The Drowned Caverns: Arena of Heroes',95.83,22.83,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2606878460,'adv02_dun_drowned_caverns'), -(37,1,'ModelDemo','commonlands','GM Model Demos',-614.67,-47.53,-239.79,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1045650867,'commonlands'), -(38,0,'DraflingTower','drafling_tower','The Tower of the Drafling',-2.81,0,-8.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3363951083,'drafling_tower'), -(39,0,'EnchantedLands','enchanted','Enchanted Lands',242.55,12.21,-978.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,692296008,'enchanted'), -(40,0,'TangledWeeds','enchanted_mini01','Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2125525214,'enchanted_mini01'), -(41,0,'Everfrost','everfrost','Everfrost ',-40.27,-1.5,-1183.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2971640549,'everfrost'), -(42,0,'Miraguls','everfrost_epic01_menagerie','Miragul\'s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2633911975,'everfrost_epic01_menagerie'), -(45,0,'Haven','exile_city','Haven ',-50,-82.8,-145.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3194957246,'exile_city'), -(46,10,'Majdul','exp01_cty_majdul','Maj\'Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,247471241,'exp01_cty_majdul'), -(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj\'Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1297812899,'exp01_cty_majdul_1r01'), -(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj\'Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2829996334,'exp01_cty_majdul_1r02'), -(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3134471404,'exp01_cty_majdul_2r01'), -(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4034869404,'exp01_cty_majdul_2r02'), -(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj\'Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3517135728,'exp01_cty_majdul_3r01'), -(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj\'Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3142330392,'exp01_cty_majdul_3r02'), -(53,10,'Arena','exp01_cty_majdul_arena01','Maj\'Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1193689160,'exp01_cty_majdul_arena01'), -(54,10,'Arena2','exp01_cty_majdul_arena02','The Arena v2',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,913624109,'exp01_cty_majdul_arena02'), -(55,10,'CourtBlades','exp01_cty_majdul_blades','The Court of the Blades',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2914789014,'exp01_cty_majdul_blades'), -(56,10,'CourtCoin','exp01_cty_majdul_coin','The Court of the Coin',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4244223063,'exp01_cty_majdul_coin'), -(57,10,'LibraryLight','exp01_cty_majdul_library','The Library of Light',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,520408650,'exp01_cty_majdul_library'), -(58,10,'TowerMoon','exp01_cty_majdul_moon','The Tower of the Moon',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1392070889,'exp01_cty_majdul_moon'), -(59,10,'CourtTears','exp01_cty_majdul_tears','The Court of Tears',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2026106351,'exp01_cty_majdul_tears'), -(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj\'Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3952194529,'exp01_cty_majdul_truth'), -(61,10,'CleftsRujark','exp01_dun_clefts_of_rujark','The Clefts of Rujark',147.16,-7.76,-90.58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4246189845,'exp01_dun_clefts_of_rujark'), -(62,10,'LivingTombs','exp01_dun_living_tombs','The Living Tombs',-293.72,15.23,291.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1490971066,'exp01_dun_living_tombs'), -(63,10,'PedestalSky','exp01_dun_pedestal_of_sky','Pedestal of Sky',0,-0.55,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2258780775,'exp01_dun_pedestal_of_sky'), -(64,10,'PoetPalace','exp01_dun_poets_palace','The Poets Palace',-94,147,39,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1460452816,'exp01_dun_poets_palace'), -(65,10,'ShimmeringCitadel','exp01_dun_shimmering_citadel','The Shimmering Citadel',58.94,98.3,-129.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3499314672,'exp01_dun_shimmering_citadel'), -(66,10,'UnusualBottle','exp01_dun_shimmering_citadel_epic01_bottle','An Unusual Bottle',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2238196469,'exp01_dun_shimmering_citadel_epic01_bottle'), -(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master\'s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3131802491,'exp01_dun_shimmering_citadel_epic02_prism'), -(68,10,'SilentCity','exp01_dun_silent_city','The Silent City',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3364154278,'exp01_dun_silent_city'), -(69,10,'FountainLife','exp01_dun_silent_city_epic01_temple','The Fountain of Life',0,-6.71,22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1250120736,'exp01_dun_silent_city_epic01_temple'), -(70,10,'PillarsFlame','exp01_rgn_pillars_of_flame','The Pillars of Flame',1382,-147,-854,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,464322516,'exp01_rgn_pillars_of_flame'), -(71,10,'CazelMesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel\'s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2346526326,'exp01_rgn_pillars_of_flame_epic01_cazel'), -(72,10,'HallsDiscipline','exp01_rgn_pillars_of_flame_epic02_discipline','Halls of Discipline',-11,-5.6,-4.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2657155766,'exp01_rgn_pillars_of_flame_epic02_discipline'), -(73,10,'SinkingSands','exp01_rgn_sinking_sands','The Sinking Sands',-1508.64,-214.09,-395.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1641630735,'exp01_rgn_sinking_sands'), -(74,10,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','The Vault of Dust',-10,8,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1879067363,'exp01_rgn_sinking_sands_epic01_lockjaw'), -(75,20,'Deathtoll','exp02_dun_dragon_necropolis','Deathtoll',-189.17,126.19,66.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3628258851,'exp02_dun_dragon_necropolis'), -(76,20,'HallsFate','exp02_dun_halls_of_fate','The Halls of Fate',-0.43,39.2,-93.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2785872257,'exp02_dun_halls_of_fate'), -(77,20,'Blackscale','exp02_dun_halls_of_fate_epic01_sepulcher','The Blackscale Sepulcher ',-2.91,12.54,0.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3865441725,'exp02_dun_halls_of_fate_epic01_sepulcher'), -(78,20,'DenDevourer','exp02_dun_halls_of_fate_epic02_devourer','The Den of the Devourer ',1.6,-0.15,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2030006797,'exp02_dun_halls_of_fate_epic02_devourer'), -(79,20,'SanctumScaleborn','exp02_dun_lair_of_scale','Sanctum of the Scaleborn',12,135,-233,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,695028551,'exp02_dun_lair_of_scale'), -(80,20,'HallsSeeing','exp02_dun_lair_of_scale_epic01_seeing','Halls of the Seeing',-628.06,159.68,-234.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2782224465,'exp02_dun_lair_of_scale_epic01_seeing'), -(81,20,'LyceumAbhorrence','exp02_dun_lair_of_scale_epic02_hallowed','The Lyceum of Abhorrence',26.73,157.56,-571.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,984615617,'exp02_dun_lair_of_scale_epic02_hallowed'), -(82,20,'PalaceAwakened','exp02_dun_shrines_of_sky','Palace of the Awakened',44,0,-101,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2129470810,'exp02_dun_shrines_of_sky'), -(83,20,'VaultElArad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El\'Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1968164420,'exp02_dun_shrines_of_sky_epic01_vaults'), -(84,20,'NestGreatEgg','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3466289623,'exp02_dun_shrines_of_sky_epic02_nest'), -(85,20,'BarrenSky','exp02_rgn_realm_of_dawn','The Barren Sky',506.75,-114.37,10.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4122226678,'exp02_rgn_realm_of_dawn'), -(86,20,'exp02_rgn_realm_of_dawn_arena','exp02_rgn_realm_of_dawn_arena','Describe me in the zones table! :)',0,-2.85,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1445881603,'exp02_rgn_realm_of_dawn_arena'), -(87,20,'Bonemire','exp02_rgn_realm_of_night','The Bonemire',963.37,-108.17,469.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2461862690,'exp02_rgn_realm_of_night'), -(88,20,'TenebrousTangle','exp02_rgn_realm_of_twilight','Tenebrous Tangle',-496.78,-60.1,-853.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3365769829,'exp02_rgn_realm_of_twilight'), -(89,30,'CastleMistmoore','exp03_dun_castle_mistmoore','Castle Mistmoore',81,43,-4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,715932856,'exp03_dun_castle_mistmoore'), -(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore\'s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,54440071,'exp03_dun_castle_mistmoore_epic01_coffinchamber'), -(91,30,'Crushbone','exp03_dun_crushbone_keep','Crushbone Keep',7,-16,-78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3963117417,'exp03_dun_crushbone_keep'), -(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D\'Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,480928156,'exp03_dun_crushbone_keep_epic01_throne'), -(93,30,'Acadechism','exp03_dun_crushbone_keep_epic02_boss','The Acadechism ',-0.52,-0.16,-12.01,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1318370063,'exp03_dun_crushbone_keep_epic02_boss'), -(94,30,'Estate of Unrest','exp03_dun_estate_of_unrest','The Estate of Unrest',7.91,0.3,-88.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3225497653,'exp03_dun_estate_of_unrest'), -(95,30,'NewTunaria','exp03_dun_felwithe','New Tunaria',-1038,55,-1379,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2465751372,'exp03_dun_felwithe'), -(96,30,'ThroneNewTunaria','exp03_dun_felwithe_epic01_throne','Throne of New Tunaria',57,67,-699,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2494575554,'exp03_dun_felwithe_epic01_throne'), -(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender\'s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3140052190,'exp03_dun_hollow_stump'), -(98,30,'ChamberTruthbringer','exp03_dun_hollow_stump2','The Chamber of the Truthbringer',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2495251601,'exp03_dun_hollow_stump2'), -(99,30,'Kaladim','exp03_dun_kaladim','Kaladim ',5,-1,-27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2172437289,'exp03_dun_kaladim'), -(100,30,'Stormguard','exp03_dun_kaladim_stormguard_hall','Stormguard Hall',157,17.5,-65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1517940891,'exp03_dun_kaladim_stormguard_hall'), -(101,30,'Klakanon','exp03_dun_klakanon','Klak\'Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,738715765,'exp03_dun_klakanon'), -(102,30,'ClockworkMenace','exp03_dun_klakanon_epic01_menace','The Clockwork Menace Factory',132.31,22.75,-65.73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,274925249,'exp03_dun_klakanon_epic01_menace'), -(103,30,'CourtInnovation','exp03_dun_klakanon_epic02_court','Court of Innovation',-15.13,6.83,81.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2766743326,'exp03_dun_klakanon_epic02_court'), -(104,30,'MistmooreCatacombs','exp03_dun_mistmoore_catacombs','Mistmoore Catacombs',12.99,-159.06,-109.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,263748089,'exp03_dun_mistmoore_catacombs'), -(105,30,'Freethinkers','exp03_dun_mistmoore_catacombs_epic01_freethinker','Freethinker Hideout',-17.15,6.16,-0.51,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3669200752,'exp03_dun_mistmoore_catacombs_epic01_freethinker'), -(106,30,'CryptValdoon','exp03_dun_mistmoore_catacombs_epic02_oldcatacombs','Crypt of Valdoon ',168,0,40,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,28333672,'exp03_dun_mistmoore_catacombs_epic02_oldcatacombs'), -(107,30,'ObeliskBlight','exp03_dun_obelisk_epic01_blight','The Obelisk of Blight ',129.85,-14.29,5.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3174147112,'exp03_dun_obelisk_epic01_blight'), -(108,30,'Butcherblock','exp03_rgn_butcherblock','Butcherblock Mountains ',-1065,90,-389,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,697098529,'exp03_rgn_butcherblock'), -(109,30,'EmeraldHalls','exp03_rgn_emerald_halls','The Emerald Halls',-156.06,4.67,-239.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3392298569,'exp03_rgn_emerald_halls'), -(110,30,'Kelethin1Room','exp03_rgn_gf_ph_1room','Greater Faydark: 1 Room Apartment',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1645828791,'exp03_rgn_gf_ph_1room'), -(111,30,'Kelethin2Room','exp03_rgn_gf_ph_2room','Greater Faydark: 2 Rooms Apartment',0,-0.1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2776941267,'exp03_rgn_gf_ph_2room'), -(112,30,'Kelethin3Room','exp03_rgn_gf_ph_3room','Greater Faydark: 3 Rooms Residence',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,75565844,'exp03_rgn_gf_ph_3room'), -(113,30,'Kelethin4Room','exp03_rgn_gf_ph_4room','Greater Faydark: 4 Rooms Residence',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,669090026,'exp03_rgn_gf_ph_4room'), -(114,30,'GreaterFaydark','exp03_rgn_greater_faydark','Greater Faydark',-116.83,-43.94,-785.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,4,'NONE',0,0,0,0,NULL,300,NULL,0,1796453226,'exp03_rgn_greater_faydark'), -(115,30,'LesserFaydark','exp03_rgn_lesser_faydark','The Lesser Faydark ',-717,-55.3,112.7,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3327990583,'exp03_rgn_lesser_faydark'), -(116,30,'LopingPlains','exp03_rgn_loping_plains','Loping Plains ',-537,-5,-401,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1576609597,'exp03_rgn_loping_plains'), -(117,30,'Steamfont','exp03_rgn_steamfont','Steamfont Mountains ',-492,125,596,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3355489122,'exp03_rgn_steamfont'), -(118,30,'MinesMeldrath','exp03_rgn_steamfont_epic01_mines','The Mines of Meldrath ',12.53,-0.6,-4.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3273265723,'exp03_rgn_steamfont_epic01_mines'), -(119,0,'FallenGate','fallengate','Fallen Gate ',-19.57,20,149.02,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,380935007,'fallengate'), -(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda\'loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1848001339,'fallengate_epic01_boss'), -(121,0,'Feerrott','feerrott','The Feerrott',-118.63,7.41,-74.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1328033086,'feerrott'), -(122,0,'TremblingLagoon1','feerrott_epic01_temple','The Trembling Lagoon',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2246576723,'feerrott_epic01_temple'), -(123,0,'Kugup','feerrott_epic02_froglok','The Lost Village of Kugup',-113.46,15.97,147.36,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1262464412,'feerrott_epic02_froglok'), -(124,0,'SunkenCity','fprt_adv01_sunken','Sunken City',-61,-0.15,60.35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4288698253,'fprt_adv01_sunken'), -(125,0,'Graveyard','fprt_adv02_graveyard','The Graveyard',-98.43,-15.73,-92.53,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3531349867,'fprt_adv02_graveyard'), -(126,0,'Sprawl','fprt_adv03_sprawl','The Sprawl',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,621563996,'fprt_adv03_sprawl'), -(127,0,'Ruins','fprt_adv04_ruins','The Ruins',-178.54,-1,79.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,82557590,'fprt_adv04_ruins'), -(128,0,'EastFreeport','fprt_east','East Freeport',-305.04,-56.07,73.57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3673921062,'fprt_east'), -(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3155501257,'fprt_epic01_storeroom01'), -(130,0,'fprt_epic02_a01_dungeon01','fprt_epic02_a01_dungeon01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3386855379,'fprt_epic02_a01_dungeon01'), -(131,0,'fprt_epic03_a01_dungeon02','fprt_epic03_a01_dungeon02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3101595178,'fprt_epic03_a01_dungeon02'), -(132,0,'FreeportAcademy','fprt_epic04_a04_academy01','Freeport: Academy of Arcane Sciences',0,-0.66,0.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3767002235,'fprt_epic04_a04_academy01'), -(133,0,'FreeportTemple','fprt_epic05_a02_temple01','Freeport: The Temple of Dismal Rage',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1831281545,'fprt_epic05_a02_temple01'), -(134,0,'BigBend','fprt_hood01','Big Bend',-26.67,-4.64,102.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,578827427,'fprt_hood01'), -(135,0,'Stonestair','fprt_hood02','Stonestair Byway',-101.2,-4.65,-26.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,202759038,'fprt_hood02'), -(136,0,'TempleSt','fprt_hood03','Temple Street',-60.93,2.86,128.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2595880091,'fprt_hood03'), -(137,0,'BeggarsCourt','fprt_hood04','Beggar\'s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3536645693,'fprt_hood04'), -(138,0,'Longshadow','fprt_hood05','Longshadow Alley',-50.84,-4.67,-85.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,449901455,'fprt_hood05'), -(139,0,'ScaleYard','fprt_hood06','Scale Yard',0.1,-4.5,105,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3728081010,'fprt_hood06'), -(140,0,'fprt_hood_epic01','fprt_hood_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1624467568,'fprt_hood_epic01'), -(141,0,'ArchiveValeein','fprt_hood_epic02','Archive of Valeein',-1.71924,-1.51351,6.55359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2439079626,'fprt_hood_epic02'), -(142,0,'fprt_hood_epic03','fprt_hood_epic03','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3925693770,'fprt_hood_epic03'), -(143,0,'fprt_hood_epic04','fprt_hood_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,122419003,'fprt_hood_epic04'), -(144,0,'NorthFreeport','fprt_north','North Freeport',-88,-9,-117,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1554806586,'fprt_north'), -(145,0,'Freeport2Room1','fprt_ph_1r01','a two room apartment, version 1',-6.5,0.75,-13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1296677832,'fprt_ph_1r01'), -(146,0,'Freeport2Room2','fprt_ph_1r02','a two room apartment, version 2',10,0.5,-10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1633763916,'fprt_ph_1r02'), -(147,0,'Freeport3Room1','fprt_ph_2r01','a three room house, version 1',-8.5,1.18,-7.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2107461564,'fprt_ph_2r01'), -(148,0,'Freeport3Room2','fprt_ph_2r02','a three room house, version 2',-6.5,1.5,-12.15,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2517432944,'fprt_ph_2r02'), -(149,0,'Freeport4Room1','fprt_ph_3r01','a four room house, version 1',8.5,1,8.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3059503183,'fprt_ph_3r01'), -(150,0,'Freeport4Room2','fprt_ph_3r02','a four room house, version 2',-7.5,0.4,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2332833260,'fprt_ph_3r02'), -(151,0,'Freeport4Room3','fprt_ph_3r03','a four room house, version 3',-9.5,1,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4069184774,'fprt_ph_3r03'), -(152,0,'Freeport6Room1','fprt_ph_5r01','a six room house, version 1',-3.62,-0.5,-2.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2279293680,'fprt_ph_5r01'), -(153,0,'Freeport6Room2','fprt_ph_5r02','a six room house, version 2',28.75,-0.5,5.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4249795054,'fprt_ph_5r02'), -(154,0,'ThievesWay','fprt_sewer01','The Thieves\' Way',-123,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2245891121,'fprt_sewer01'), -(155,0,'SerpentSewer','fprt_sewer02','The Serpent Sewer ',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2853519654,'fprt_sewer02'), -(156,0,'Edgewater','fprt_sewer03','Edgewater Drains',29,32,73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,938776093,'fprt_sewer03'), -(157,0,'fprt_sewer_epic01','fprt_sewer_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4065867901,'fprt_sewer_epic01'), -(158,0,'fprt_sewer_epic02','fprt_sewer_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3904734492,'fprt_sewer_epic02'), -(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2729254407,'fprt_sewer_epic03'), -(160,0,'DarkbladeDen','fprt_sewer_epic04','The Darkblade Den of Assassins',-8.53,-0.62,12.68,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2374182736,'fprt_sewer_epic04'), -(161,0,'fprt_sewer_epic05','fprt_sewer_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,867121339,'fprt_sewer_epic05'), -(162,0,'fprt_sewer_epic06','fprt_sewer_epic06','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1116256801,'fprt_sewer_epic06'), -(163,0,'fprt_sewer_epic07','fprt_sewer_epic07','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1321185,'fprt_sewer_epic07'), -(164,0,'fprt_sewer_epic08','fprt_sewer_epic08','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,125341182,'fprt_sewer_epic08'), -(165,0,'fprt_sewer_epic09','fprt_sewer_epic09','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2664820379,'fprt_sewer_epic09'), -(166,0,'SouthFreeport','fprt_south','South Freeport',-175,-57,148,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,190556331,'fprt_south'), -(167,0,'BroodLostTongue','fprt_tradeskill01','The Brood of the Lost Tongue',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4020093839,'fprt_tradeskill01'), -(168,0,'WestFreeport','fprt_west','West Freeport',90.43,-21.98,42.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2219792691,'fprt_west'), -(169,0,'FreeportMilitia','fprt_west_militia','Freeport Militia',135,-16,129,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3758488065,'fprt_west_militia'), -(170,0,'PrisonGrimgadget','holdofprexus','The Prison of Admiral Grimgadget ',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1598578194,'holdofprexus'), -(171,0,'Lavastorm','lavastorm','Lavastorm ',84.73,-33.09,138.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4134789718,'lavastorm'), -(172,0,'SanctumFire','lavastorm_epic01_sanctum','The Sanctum of Fire',-332,-80,-675,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2816820645,'lavastorm_epic01_sanctum'), -(173,0,'MaidensGulch1','lavastorm_epic02_gulch','Maiden\'s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1227024913,'lavastorm_epic02_gulch'), -(174,0,'HauntedHouse','live_haunted_mansion','The Haunted House',-2.75,0,9.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3627449501,'live_haunted_mansion'), -(175,0,'BarBrell','live_irontoes','Bar of Brell',352,-20,143,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1695982209,'live_irontoes'), -(176,0,'CryptTHaen','mod01_dun_crypt_of_thaen','Crypt of T\'Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3291665793,'mod01_dun_crypt_of_thaen'), -(177,0,'TombNight','mod01_dun_tombs_of_night','The Tombs of Night',116.64,-1.26,128.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1645287631,'mod01_dun_tombs_of_night'), -(178,0,'Nektropos1','nektropos_castle','Nektropos Castle',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,401694680,'nektropos_castle'), -(179,0,'Nektulos','nektulos','Nektulos Forest',-344.65,0.66,-1264.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1475203678,'nektulos'), -(180,0,'BattleCauldronHollow','nektulos_epic01_cauldroncove','The Battle of Cauldron Hollow',946,10,-621.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2897066563,'nektulos_epic01_cauldroncove'), -(181,0,'Unearthing','nektulos_mini01','Unearthing ',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3670867982,'nektulos_mini01'), -(182,0,'DireHollow1','nektulos_mini02','Dire Hollow: Barrow Ruins',-0.05,-0.64,-0.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3285202266,'nektulos_mini02'), -(183,0,'UnderrotCavern','nektulos_mini03','The Underrot Caverns: Moldy Crypt',-0.26,-0.48,0.86,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3454396251,'nektulos_mini03'), -(184,0,'Neriak','neriak','Neriak, City of Hate',175.54,29.87,199.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2399093912,'neriak'), -(185,0,'Neriak1Room','neriak_ph_1room','a Nerian residence 1',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1866624788,'neriak_ph_1room'), -(186,0,'Neriak3Room','neriak_ph_3room','a Nerian residence 3',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1590125928,'neriak_ph_3room'), -(187,0,'Neriak5Room','neriak_ph_5room','a Nerian residence 5',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2417746180,'neriak_ph_5room'), -(188,0,'Vestibule','obelisk_epic01_vestibule','The Vestibule',-484,407,380,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2893098560,'obelisk_epic01_vestibule'), -(189,0,'ObeliskLostSouls','obelisk_of_lostsouls','The Obelisk of Lost Souls',-13.78,624.84,134.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2537411576,'obelisk_of_lostsouls'), -(190,0,'Zek','orcishwastes','Zek, the Orcish Wastes',509.44,-41.31,289.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3094052578,'orcishwastes'), -(191,0,'SullonMines','orcishwastes_mini01','Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2610132812,'orcishwastes_mini01'), -(192,0,'Permafrost','permafrost','Permafrost',-5,0,-83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3961969058,'permafrost'), -(193,0,'DrayeksChamber1','permafrost_epic01_icebound','Drayek\'s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,809955926,'permafrost_epic01_icebound'), -(194,0,'CryptVox','permafrost_epic02_crypt','The Crypt of Vox',-2.49,10.63,-404.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1626179814,'permafrost_epic02_crypt'), -(195,0,'Oakmyst','qey_adv01_oakmyst','Oakmyst Forest',1093.17,-10.15,-382.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1587861986,'qey_adv01_oakmyst'), -(196,0,'ForestRuins','qey_adv02_ruins','The Forest Ruins',897,-14.5,-575,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2672310568,'qey_adv02_ruins'), -(197,0,'Caves','qey_adv03_caves','The Caves',1.5,3.62,-23.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3132916059,'qey_adv03_caves'), -(198,0,'PeatBog','qey_adv04_bog','The Peat Bog ',561.65,-27.41,417.99,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,870105190,'qey_adv04_bog'), -(199,0,'DownBelow','qey_catacomb01','The Down Below ',-195.98,-0.1,-200.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,184500816,'qey_catacomb01'), -(200,0,'VerminSnye','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2945046990,'qey_catacomb02'), -(201,0,'CryptBetrayal','qey_catacomb03','The Crypt of Betrayal ',120.88,7.02,-49.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,964742035,'qey_catacomb03'), -(202,0,'CrowsTomb','qey_catacomb_epic01','Crow\'s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2271733143,'qey_catacomb_epic01'), -(203,0,'CryptDecrepit','qey_catacomb_epic02','A Decrepit Crypt',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1435904733,'qey_catacomb_epic02'), -(204,0,'ScarabHive','qey_catacomb_epic03','The Deathly Scarab Hive ',-20,3.37,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1044089428,'qey_catacomb_epic03'), -(205,0,'qey_catacomb_epic04','qey_catacomb_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3211469419,'qey_catacomb_epic04'), -(206,0,'qey_catacomb_epic05','qey_catacomb_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1908807800,'qey_catacomb_epic05'), -(207,0,'ElddarGrove','qey_elddar','The Elddar Grove',666.15,-10.14,-392.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,843773804,'qey_elddar'), -(208,0,'Cache','qey_epic01_p19_cache','The Cache',-25,0,-20,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1930595139,'qey_epic01_p19_cache'), -(209,0,'StarcrestBank','qey_epic02_village02_bank','Starcrest: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1552498994,'qey_epic02_village02_bank'), -(211,0,'WillowWoodBank','qey_epic04_village05_bank','Willow Wood: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2824516912,'qey_epic04_village05_bank'), -(212,0,'qey_epic05_village06_scribe','qey_epic05_village06_scribe','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,730617311,'qey_epic05_village06_scribe'), -(213,0,'IrontoeInn','qey_epic06_p12_irontoes','Qeynos: Irontoe East Inn',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3530459728,'qey_epic06_p12_irontoes'), -(214,0,'SneedsTradingPost','qey_epic07_p08_sneeds','Qeynos: Sneed Galliway\'s Trading Post',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,866837445,'qey_epic07_p08_sneeds'), -(215,0,'VoleensBakery','qey_epic08_p06_voleens','Qeynos: Voleen\'s Bakery',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2546749187,'qey_epic08_p06_voleens'), -(216,0,'qey_epic09_l02_steel','qey_epic09_l02_steel','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3864565992,'qey_epic09_l02_steel'), -(217,0,'qey_epic10_p01_bank','qey_epic10_p01_bank','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,427344810,'qey_epic10_p01_bank'), -(218,0,'qey_epic11_l10_arbor','qey_epic11_l10_arbor','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3376886942,'qey_epic11_l10_arbor'), -(219,0,'qey_epic12_l08_sanctum','qey_epic12_l08_sanctum','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2078500680,'qey_epic12_l08_sanctum'), -(220,0,'QeynosMageTower','qey_epic13_l04_towers','Qeynos: Mage Tower',719,48,114,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,374794994,'qey_epic13_l04_towers'), -(221,0,'QeynosHarbor','qey_harbor','Qeynos Harbor',999.14,-25.79,27.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1739788496,'qey_harbor'), -(222,0,'NorthQeynos','qey_north','North Qeynos',267.77,-21.55,-19.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1841518510,'qey_north'), -(223,0,'Qeynos2Room1','qey_ph_1r01','a two room apartment, version 1',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3500249586,'qey_ph_1r01'), -(224,0,'Qeynos2Room2','qey_ph_1r02','a two room apartment, version 2',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3956101406,'qey_ph_1r02'), -(225,0,'Qeynos3Room1','qey_ph_2r01','a three room house, version 1',0,0,4.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1050379564,'qey_ph_2r01'), -(226,0,'Qeynos3Room2','qey_ph_2r02','a three room house, version 2',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2058287807,'qey_ph_2r02'), -(227,0,'Qeynos4Room1','qey_ph_3r01','a four room house, version 1',0.07,-2,7.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2993828484,'qey_ph_3r01'), -(228,0,'Qeynos4Room2','qey_ph_3r02','a four room house, version 2',0.05,-2,8.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,867876040,'qey_ph_3r02'), -(229,0,'Qeynos4Room3','qey_ph_3r03','a four room house, version 3',0.05,-2,8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1771836431,'qey_ph_3r03'), -(230,0,'Qeynos6Room1','qey_ph_5r01','a six room house, version 1',-2.59,0,9.48,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1374238603,'qey_ph_5r01'), -(231,0,'SouthQeynos','qey_south','South Qeynos',477.37,-11.52,137.83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1504263346,'qey_south'), -(232,0,'Commonwealth','qey_tradeskill01','The Elusive Commonwealth',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1504802193,'qey_tradeskill01'), -(233,0,'Nettleville','qey_village01','Nettleville',684.31,-35.4,339.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1309271643,'qey_village01'), -(234,0,'Starcrest','qey_village02','Starcrest Commune',724.88,-35.2,325.29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,914866192,'qey_village02'), -(235,0,'Graystone','qey_village03','Graystone Yard',950.74,-25.22,-156.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,35815252,'qey_village03'), -(236,0,'Castleview','qey_village04','Castleview Hamlet',780.79,-35.94,-94.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1042690246,'qey_village04'), -(237,0,'WillowWood','qey_village05','The Willow Wood',829.24,-20.36,-780.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1899528945,'qey_village05'), -(238,0,'Baubbleshire','qey_village06','The Baubbleshire',966.52,-18.2,-436.97,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1133934497,'qey_village06'), -(239,0,'Rivervale','rivervale','Rivervale',79.77,-11.61,33.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,805193270,'rivervale'), -(240,0,'rivervale_epic01_ph01','rivervale_epic01_ph01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3504623534,'rivervale_epic01_ph01'), -(241,0,'rivervale_epic02_ph02','rivervale_epic02_ph02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,897144292,'rivervale_epic02_ph02'), -(242,0,'Runnyeye','runnyeye','Runnyeye',-58,0.11,57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2485707951,'runnyeye'), -(243,0,'ChamberRulgax','runnyeye_epic01_eye','The Chamber of Rulgax',65.43,-34.31,192.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2024822938,'runnyeye_epic01_eye'), -(244,0,'OverlordsThroneRoom','runnyeye_epic02_goblin','The Overlord\'s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2562976307,'runnyeye_epic02_goblin'), -(245,0,'SolEye','solusekseye','Solusek\'s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1322389444,'solusekseye'), -(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen\'s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3381789812,'solusekseye_epic01_nagafen'), -(247,0,'BastionFlames','solusekseye_epic02_bastion','The Bastion of Flames',-147.93,-414.98,-290.9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,220397575,'solusekseye_epic02_bastion'), -(248,0,'OratoriumThyr1','solusekseye_epic03_thyr','The Oratorium of Thyr',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2646304963,'solusekseye_epic03_thyr'), -(249,0,'ThunderingSteppes','steppes','The Thundering Steppes',1000,-1,250,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1442587250,'steppes'), -(250,0,'CoveDecay1','steppes_epic01_cove','The Cove of Decay',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1675261020,'steppes_epic01_cove'), -(251,0,'PirateStash','steppes_mini01','A Pirate\'s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2597747579,'steppes_mini01'), -(252,0,'thunderdome','thunderdome','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3492108284,'thunderdome'), -(253,0,'QueensColony','tutorial_island02','Queen\'s Colony',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,1,'NONE',0,0,0,0,NULL,300,NULL,0,235639746,'tutorial_island02'), -(254,0,'SourceEvil','tutorial_island02_epic01','The Source of Evil',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1139089258,'tutorial_island02_epic01'), -(255,0,'MizansCellar','tutorial_island02_epic02','Mizan\'s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,853356513,'tutorial_island02_epic02'), -(256,0,'RuinsVarsoon','varsoon','The Ruins of Varsoon',95,17.9,-96.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,783825492,'varsoon'), -(257,0,'ChamberImmortality','vrsn_epic01_boss','Chamber of Immortality ',203.16,-12.14,138.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1531502647,'vrsn_epic01_boss'), -(258,0,'WailingCaves','wailingcaves','The Wailing Caves',-103,-33,-138,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3367326908,'wailingcaves'), -(259,0,'ShardFear','shard_of_fear','Shard of Fear',-4.66,11.56,479.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2913550259,'shard_of_fear'), -(260,40,'Gorowyn1Room','exp04_rgn_gorowyn_ph_1room','Gorowyn 1 Room Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3339258185,'exp04_rgn_gorowyn_ph_1room'), -(261,40,'KunzarJungle','exp04_rgn_kunzar_jungle','Kunzar Jungle',-450,150,-870,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,135989668,'exp04_rgn_kunzar_jungle'), -(262,40,'KylongPlains','exp04_rgn_kylong_plains','Kylong Plains',742,11,203,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3387257629,'exp04_rgn_kylong_plains'), -(263,40,'TimorousDeep','exp04_rgn_timorous_deep','Timorous Deep',-257.5,2.7,181.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,16,'NONE',0,0,0,0,NULL,300,NULL,0,3292189791,'exp04_rgn_timorous_deep'), -(264,40,'FensNathsar','exp04_rgn_fens_of_nathsar','Fens of Nathsar',489.5,12.6,1509.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,189371831,'exp04_rgn_fens_of_nathsar'), -(265,40,'JarsathWastes','exp04_rgn_jarsath_wastes','Jarsath Wastes',-1057,-83,-560,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1721963361,'exp04_rgn_jarsath_wastes'), -(267,40,'Chelsith','exp04_dun_chelsith','Chelsith',-75,30.3,510,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1080201912,'exp04_dun_chelsith'), -(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor\'s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1170290470,'exp04_dun_karnors_castle'), -(270,40,'Sebilis','exp04_dun_sebilis','Sebilis',18,0,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1873729493,'exp04_dun_sebilis'), -(271,40,'VeeshansPeak','exp04_dun_veeshans_peak','Veeshan\'s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2773136085,'exp04_dun_veeshans_peak'), -(272,40,'TombThuuga','exp04_dun_charasis_epic01_queens','The Tomb of Thuuga',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2482499672,'exp04_dun_charasis_epic01_queens'), -(273,40,'Chardok','exp04_dun_chardok','Chardok',27.44,-29.78,-340.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,758372554,'exp04_dun_chardok'), -(274,40,'Gorowyn3Room','exp04_rgn_gorowyn_ph_3room','Gorowyn 3 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,207940048,'exp04_rgn_gorowyn_ph_3room'), -(275,40,'Gorowyn5Room','exp04_rgn_gorowyn_ph_5room','Gorowyn 5 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3852789577,'exp04_rgn_gorowyn_ph_5room'), -(276,40,'Pawbuster','exp04_dun_karnors_castle_epic01_pawbuster','The Execution Throne Room',-12.86,1.95,29.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4050761660,'exp04_dun_karnors_castle_epic01_pawbuster'), -(277,40,'ProtectorsRealm','exp04_dun_sebilis_epic01_crypt','The Protector\'s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1896505173,'exp04_dun_sebilis_epic01_crypt'), -(278,0,'OutpostOverlord','tutorial_island02','Outpost of the Overlord',-12.43,-4.94,222.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,2,'NONE',0,0,0,0,NULL,300,NULL,0,2331579180,'tutorial_island02'), -(279,0,'Truthbringer','qey_tradeskill01','The Charter of the Truthbringer',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2254477089,'qey_tradeskill01'), -(280,0,'Deductive','qey_tradeskill01','The Deductive Directory',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2963804548,'qey_tradeskill01'), -(281,0,'Ironforge','qey_tradeskill01','The Ironforge Exchange',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3822793044,'qey_tradeskill01'), -(282,0,'Wayfarers','qey_tradeskill01','Wayfarer\'s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3109275695,'qey_tradeskill01'), -(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller\'s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2442508618,'qey_tradeskill01'), -(284,0,'CoveDecay6','steppes_epic01_cove','The Cove of Decay: A Treaty for Treasure',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3368285039,'steppes_epic01_cove'), -(285,0,'CircleVaniki','fprt_tradeskill01','The Circle of Vaniki',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1207827539,'fprt_tradeskill01'), -(286,0,'Wanderlust','fprt_tradeskill01','The Ring of Wanderlust',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1815400861,'fprt_tradeskill01'), -(287,0,'Ransackers','fprt_tradeskill01','The Ransackers Annex',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2343039238,'fprt_tradeskill01'), -(288,0,'DarkBargainers','fprt_tradeskill01','The Dark Bargainers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2653325751,'fprt_tradeskill01'), -(289,0,'WarHagglers','fprt_tradeskill01','The War Hagglers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,87161584,'fprt_tradeskill01'), -(290,0,'NepetaCataria','fprt_tradeskill01','Nepeta Cataria',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1918315345,'fprt_tradeskill01'), -(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter\'s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,760423874,'fprt_tradeskill01'), -(292,0,'Luminary','qey_tradeskill01','The Luminary Cache',8.39294,0,-10.6062,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3429099711,'qey_tradeskill01'), -(293,0,'Runnyeye2','runnyeye_advanced','Runnyeye: The Gathering',-93.4526,-27.4416,58.496,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,655533918,'runnyeye_advanced'), -(294,50,'Veksar1','exp05_dun_veksar','Veksar: The Invasion',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1027562245,'exp05_dun_veksar'), -(295,40,'VoES','exp04_dun_charasis_north','Charasis: Vault of Eternal Sleep',0,0,23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,760135195,'exp04_dun_charasis_north'), -(296,40,'MaidensChamber','exp04_dun_charasis_south','Charasis: Maiden\'s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1193908363,'exp04_dun_charasis_south'), -(297,40,'TempleKorsha','exp04_dun_chardok_epic01_throne','The Temple of Kor-Sha',816,-27,206,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2801650478,'exp04_dun_chardok_epic01_throne'), -(298,40,'CourtKorucust','exp04_dun_chardok_epic02_prison','Court of Korucust',-650,-66,204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,541835034,'exp04_dun_chardok_epic02_prison'), -(299,40,'ChamberDestiny','exp04_dun_chelsith_epic01_behemoth','The Chamber of Destiny',192,-10,29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2844302977,'exp04_dun_chelsith_epic01_behemoth'), -(300,40,'VenrilsLair','exp04_dun_sebilis_epic02_venril','Venril Sathir\'s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2553967894,'exp04_dun_sebilis_epic02_venril'), -(301,40,'TrakanonsLair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,913159877,'exp04_dun_veeshans_peak_epic01_trakanon'), -(302,0,'ShardHate','shard_of_hate','Shard of Hate',45,0.2,290,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4135995094,'shard_of_hate'), -(303,40,'CryptAgony','exp04_dun_sebilis_epic01_crypt','The Crypt of Agony',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,266969978,'exp04_dun_sebilis_epic01_crypt'), -(305,0,'ArticaesLair','everfrost_epic01_menagerie','Ar\'ticae\'s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3796545588,'everfrost_epic01_menagerie'), -(306,0,'Bloodskull1','cmmn_epic01_orc','Bloodskull Valley: Maulic\'s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1447116011,'cmmn_epic01_orc'), -(307,0,'Bloodskull3','cmmn_epic01_orc','Bloodskull Valley: Righting the Scales',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1939902408,'cmmn_epic01_orc'), -(308,0,'Bloodskull4','cmmn_epic01_orc','Bloodskull Valley: The Excavation Site',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2140909834,'cmmn_epic01_orc'), -(309,0,'Bloodskull5','cmmn_epic01_orc','Bloodskull Valley: The Training Grounds',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3502321105,'cmmn_epic01_orc'), -(310,0,'TremblingLagoon2','feerrott_epic01_temple','Trembling Lagoon: Cleansing of the Cove',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,577145340,'feerrott_epic01_temple'), -(311,0,'CoveDecay2','steppes_epic01_cove','The Cove of Decay: Epic Angler',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3356317793,'steppes_epic01_cove'), -(312,0,'CoveDecay3','steppes_epic01_cove','Cove of Decay: Horror Beneath the Waves',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1282445722,'steppes_epic01_cove'), -(313,0,'CoveDecay5','steppes_epic01_cove','Cove of Decay: Mjolni\'s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,295656652,'steppes_epic01_cove'), -(314,0,'IsleRefuge2','tutorial_island02','Darathar\'s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3299576964,'tutorial_island02'), -(315,0,'Deathfist2','deathfist','Deathfist Citadel: Assault',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1875388458,'deathfist'), -(316,0,'Deathfist3','deathfist','Deathfist Citadel: Onslaught',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1654839403,'deathfist'), -(317,0,'Deathfist4','deathfist','Deathfist Citadel: The Arena of Zek',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2388724028,'deathfist'), -(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek\'s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1179826618,'permafrost_epic01_icebound'), -(319,0,'TremblingLagoon3','feerrott_epic01_temple','Trembling Lagoon: Dythra\'s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1536753323,'feerrott_epic01_temple'), -(320,0,'EchoesTime1','cmmn_epic02_mage','Echoes of Time',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,710155441,'cmmn_epic02_mage'), -(321,0,'Firemyst2','antonica_epic02_firemyst','The Firemyst Gully: A Gallant Confrontation',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3335465554,'antonica_epic02_firemyst'), -(322,0,'Firemyst3','antonica_epic02_firemyst','The Firemyst Gully: In Pursuit',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1877036992,'antonica_epic02_firemyst'), -(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon\'s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2192926045,'antonica_epic02_firemyst'), -(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash\'s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2942727750,'tutorial_island02_epic01'), -(325,0,'IsleRefuge1','tutorial_island02','Isle of Refuge',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2252985298,'tutorial_island02'), -(326,0,'Icespire','everfrost_epic02_icespire','Icespire Summit',-63.16,58.9,-885.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4066447367,'everfrost_epic02_icespire'), -(327,0,'DruidRing','antonica_epic01_vale','Imperiled Druid Ring',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4155975111,'antonica_epic01_vale'), -(328,0,'ShatteredVale3','antonica_epic01_vale','Invasion of the Vale',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3338713433,'antonica_epic01_vale'), -(329,0,'MaidensGulch3','lavastorm_epic02_gulch','Maiden\'s Gulch: Rescue of the Sage',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1526471034,'lavastorm_epic02_gulch'), -(330,0,'Nektropos2','nektropos_castle','Nektropos Castle: Craftsman Errands',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1334746619,'nektropos_castle'), -(331,0,'Nektropos3','nektropos_castle','Nektropos Castle: The Return',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3051981584,'nektropos_castle'), -(332,0,'Nektropos4','nektropos_castle','Nektropos Castle: Tribulation',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3927417108,'nektropos_castle'), -(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith\'s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4089148686,'cazicthule_epic01_sanctum '), -(334,0,'ShatteredStillness','antonica_epic02_firemyst','Shattered Stillness',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3520240139,'antonica_epic02_firemyst'), -(335,0,'ShatteredVale2','antonica_epic01_vale','The Shattered Vale: A Bold Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1609089866,'antonica_epic01_vale'), -(336,0,'ShatteredVale4','antonica_epic01_vale','The Shattered Vale: Lordly Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2695716024,'antonica_epic01_vale'), -(337,0,'ShatteredVale5','antonica_epic01_vale','The Shattered Vale: Stones of the Avatars',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3330380441,'antonica_epic01_vale'), -(338,0,'SpiritsLost','cazicthule','Spirits of the Lost',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3324942373,'cazicthule'), -(339,0,'CauldronHollow','nektulos_epic01_cauldroncove','The Cauldron Hollow',946,10,-621.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3723528959,'nektulos_epic01_cauldroncove'), -(340,0,'CaveWonder1','enchanted_mini01 ','The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3327956550,'enchanted_mini01 '), -(341,0,'CaveWonder2','enchanted_mini01','Heroic: The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3221976462,'enchanted_mini01'), -(342,0,'SanctumFear2','cazicthule_epic01_sanctum ','Sanctum of Fear: Chamber of the Keeper',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,507325671,'cazicthule_epic01_sanctum '), -(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden\'s Gulch: Commune of K\'Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1048492947,'lavastorm_epic02_gulch'), -(344,0,'CoveDecay4','steppes_epic01_cove','The Cove of Decay: A Heroic Confrontation',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4248896629,'steppes_epic01_cove'), -(345,0,'TombValor2','befallen_epic01','Tomb of Valor: Defiled',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1782317725,'befallen_epic01'), -(346,0,'EternalGorge2','cmmn_epic02_mage','The Eternal Gorge: A Daring Confrontation',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1806482132,'cmmn_epic02_mage'), -(347,0,'EternalGorge3','cmmn_epic02_mage','The Eternal Gorge: Tears of the Daughters',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1153144978,'cmmn_epic02_mage'), -(348,0,'CircleElders','tutorial_island02_epic01','The Circle of Elders',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3366202526,'tutorial_island02_epic01'), -(349,0,'Gobblerock','fprt_sewer02','Gobblerock\'s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1041909749,'fprt_sewer02'), -(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller\'s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3046659043,'fprt_tradeskill01'), -(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K\'Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2136244020,'fprt_tradeskill01'), -(352,0,'LairNecromancer','fallengate_epic01_boss','The Lair of the Necromancer',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2347698360,'fallengate_epic01_boss'), -(353,10,'LibraryLight2','exp01_cty_majdul_library','The Library of Light: Scholar Errands',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2219248866,'exp01_cty_majdul_library'), -(354,20,'NestGreatEgg2','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg: Outfitter Errands',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2124039412,'exp02_dun_shrines_of_sky_epic02_nest'), -(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim\'s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,402095699,'solusekseye_epic03_thyr'), -(356,0,'QSSBootstrutter','boat_06p_feerrott','The QSS Bootstrutter',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3305484660,'boat_06p_feerrott'), -(357,0,'RumblerCaves','steppes_mini01','The Rumbler Caves',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4050420393,'steppes_mini01'), -(358,0,'SeaBiscuit1','boat_06p_enchanted','The Sea Biscuit: Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1980603774,'boat_06p_enchanted'), -(359,0,'SeaBiscuit2','boat_06p_enchanted','The Sea Biscuit: Heroic Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2333013113,'boat_06p_enchanted'), -(360,0,'SeaBiscuit3','boat_06p_feerrott','The Sea Biscuit: Heroic Jungle Cruise',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2365341412,'boat_06p_feerrott'), -(361,0,'SeaBiscuit4','boat_06p_orcishwastes','The Sea Biscuit: Heroic Orc Excursion',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1690191457,'boat_06p_orcishwastes'), -(362,0,'SeaBiscuit5','boat_06p_feerrott','The Sea Biscuit: Jungle Cruise',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3949813243,'boat_06p_feerrott'), -(363,0,'SeaBiscuit6','boat_06p_orcishwastes','The Sea Biscuit: Orc Excursion',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1083287642,'boat_06p_orcishwastes'), -(364,0,'Stalwart','qey_tradeskill01','The Stalwart Township',6,-0.48,-10.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1246738728,'qey_tradeskill01'), -(365,0,'DrownedCaverns2','adv02_dun_drowned_caverns','The Drowned Caverns: Brutal Acts of War',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2128757352,'adv02_dun_drowned_caverns'), -(366,0,'DrownedCaverns3','adv02_dun_drowned_caverns','The Drowned Caverns: Flammable Fur',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2366967768,'adv02_dun_drowned_caverns'), -(367,0,'DrownedCaverns4','adv02_dun_drowned_caverns','The Drowned Caverns: Hot Water',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,817852260,'adv02_dun_drowned_caverns'), -(368,0,'DrownedCaverns5','adv02_dun_drowned_caverns','The Drowned Caverns: Outer Grotto',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1358293133,'adv02_dun_drowned_caverns'), -(369,0,'Splitpaw2','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw\'s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,246626574,'adv02_dun_sundered_splitpaw'), -(370,0,'Splitpaw3','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Captive Audience',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1406658297,'adv02_dun_sundered_splitpaw'), -(371,0,'Splitpaw4','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Crawler Nest',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2072242411,'adv02_dun_sundered_splitpaw'), -(372,0,'Splitpaw5','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Delving into the Darkness',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1568159668,'adv02_dun_sundered_splitpaw'), -(373,0,'Splitpaw6','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator\'s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1108437045,'adv02_dun_sundered_splitpaw'), -(374,0,'Splitpaw7','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Hideout',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4160317729,'adv02_dun_sundered_splitpaw'), -(375,0,'Splitpaw8','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Trial of Harclave',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,640136091,'adv02_dun_sundered_splitpaw'), -(376,0,'Splitpaw9','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Upper Tunnels',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1849807013,'adv02_dun_sundered_splitpaw'), -(377,50,'QeynosGuild1','qey_guildhall_tier1','Guild Hall',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3530974985,'qey_guildhall_tier1'), -(378,50,'QeynosGuild2','qey_guildhall_tier2','Large Qeynos Guild Hall',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2736504342,'qey_guildhall_tier2'), -(379,50,'AntonicaGuild','qey_guildhall_tier3','Antonica Guild Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3464306773,'qey_guildhall_tier3'), -(380,50,'qey_guildhall_tier4','qey_guildhall_tier4','Qeynos: Tier 4 Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1113185173,'qey_guildhall_tier4'), -(381,50,'FreeportGuild1','fprt_guildhall_tier1','Guild Hall',0.059904,0.153986,15.6427,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2493701805,'fprt_guildhall_tier1'), -(382,50,'FreeportGuild2','fprt_guildhall_tier2','Large Freeport Guild Hall',0.003907,0.153989,16.3804,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1615399354,'fprt_guildhall_tier2'), -(383,50,'CommonlandsGuild','fprt_guildhall_tier3','Commonlands Guild Hall',-1468.19,-136.974,-1307.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1257767219,'fprt_guildhall_tier3'), -(384,50,'fprt_guildhall_tier4','fprt_guildhall_tier4','Freeport: Tier 4 Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3537265728,'fprt_guildhall_tier4'), -(385,50,'MoorsYkesha','exp05_rgn_innothule','Moors of Ykesha',1911,454,1013,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2788275878,'exp05_rgn_innothule'), -(386,50,'BefallenAsylum','exp05_dun_befallen_asylum','Befallen: Necrotic Asylum',23.25,0.25,-0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1633749115,'exp05_dun_befallen_asylum'), -(387,50,'BefallenCavern','exp05_dun_befallen_cavern','Befallen: Cavern of the Afflicted',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,752000273,'exp05_dun_befallen_cavern'), -(388,50,'BefallenForsaken','exp05_dun_befallen_forsaken','Befallen: Halls of the Forsaken',7.25,0.25,0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1084983315,'exp05_dun_befallen_forsaken'), -(389,50,'GukUpper','exp05_dun_guk_upper','The Ruins of Guk: Halls of the Fallen',-33.5,0.2,12.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,107619541,'exp05_dun_guk_upper'), -(390,50,'GukLower','exp05_dun_guk_lower','The Ruins of Guk: The Lower Corridors',3.33,-2,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,413842749,'exp05_dun_guk_lower'), -(391,50,'GukStronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha\'s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1474385698,'exp05_dun_guk_stronghold'), -(392,50,'GukStrongholdRaid','exp05_dun_guk_stronghold_raid','Ykesha\'s Inner Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1898012092,'exp05_dun_guk_stronghold_raid'), -(393,50,'Korsha','exp05_dun_korsha','Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2386622022,'exp05_dun_korsha'), -(394,50,'Veksar2','exp05_dun_veksar','Veksar: The Sunken Theater',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,371997069,'exp05_dun_veksar'), -(395,50,'MiragulEpic','exp05_dun_miragul_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,9398401,'exp05_dun_miragul_epic01'), -(396,50,'MiragulAnathema','exp05_dun_miragul_lower','Miragul\'s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1724480869,'exp05_dun_miragul_lower'), -(397,50,'MiragulCrucible','exp05_dun_miragul_shard','Miragul\'s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2882183615,'exp05_dun_miragul_shard'), -(398,50,'MiragulScion','exp05_dun_miragul_upper','Miragul\'s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3233187539,'exp05_dun_miragul_upper'), -(399,50,'MistmooreAbbey','exp05_dun_mistmoore_abbey','Evernight Abbey',0,-0.25,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3136916931,'exp05_dun_mistmoore_abbey'), -(400,50,'MistmooreDragon','exp05_dun_mistmoore_dragon','Zarrakon\'s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3669361454,'exp05_dun_mistmoore_dragon'), -(401,50,'MistmooreManor','exp05_dun_mistmoore_manor','Mistmyr Manor',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,238657033,'exp05_dun_mistmoore_manor'), -(402,50,'MistmooreRepository','exp05_dun_mistmoore_repository','Ravenscale Repository',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1099149777,'exp05_dun_mistmoore_repository'), -(403,50,'WardElements','exp05_dun_najena_atheneum','Ward of Elements',-67,-354,106,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1246840166,'exp05_dun_najena_atheneum'), -(404,50,'NajenaForge','exp05_dun_najena_forge','The Deep Forge',-0.25,0.15,24,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1435795796,'exp05_dun_najena_forge'), -(405,50,'NajenaHollow','exp05_dun_najena_hollow','Najena\'s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1985747884,'exp05_dun_najena_hollow'), -(406,50,'Bazzul','exp05_dun_void_anchor','Anchor of Bazzul',-515.3,-0.6,657.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,297392421,'exp05_dun_void_anchor'), -(407,50,'Ferzhul','exp05_dun_void_palace','Palace of Ferzhul',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,274203338,'exp05_dun_void_palace'), -(408,50,'PalaceAncientOne','exp05_dun_void_palace','Palace of the Ancient One',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,375924650,'exp05_dun_void_palace'), -(409,50,'Ankzul','exp05_dun_void_pit','Obelisk of Ahkzul',546.15,6.1,-318.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,524307527,'exp05_dun_void_pit'), -(410,40,'NuRoga','exp04_dun_droga_nurga','Nu\'Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2653575693,'exp04_dun_droga_nurga'), -(411,0,'IcyKeep1','permafrost','The Icy Keep (Easy)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2057982584,'permafrost'), -(412,0,'Frostfell','everfrost_frostfell','Frostfell Wonderland Village',65,-3,-1200,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3311558711,'everfrost_frostfell'), -(413,0,'TheFuture','everfrost_frostfell','The Future',-502.92,-6,-355.49,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4130976405,'everfrost_frostfell'), -(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat\'s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2297313179,'fprt_ph_1r01'), -(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle\'s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2876833616,'qey_epic03_village03_ph'), -(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle\'s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4197602164,'qey_ph_1r01'), -(417,30,'McScroogleHQ','exp03_dun_klakanon_epic01_menace','McScroogle Corp. HQ',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1634382156,'exp03_dun_klakanon_epic01_menace'), -(418,0,'IcyKeep2','permafrost','The Icy Keep (Hard)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,431849093,'permafrost'), -(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle\'s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3301442772,'qey_guildhall_tier1'), -(420,0,'Firemyst5','antonica_epic02_firemyst','The Firemyst Gully: Supply Stocking',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,138580763,'antonica_epic02_firemyst'), -(421,30,'RilgorsChambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog\'s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1821662383,'exp03_dun_klakanon_epic01_menace'), -(422,30,'ClockworkWorkshop','exp03_dun_klakanon ','The Clockwork Workshop',130,9,52,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1180254437,'exp03_dun_klakanon '), -(423,0,'EndlessCatacombs','adv04_dun_endless','The Endless Catacombs',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2483512159,'adv04_dun_endless'), -(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord\'s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3243271695,'fprt_guildhall_tier2'), -(425,50,'TombMadCrusader','exp05_dun_befallen_cavern','Tomb of the Mad Crusader',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,675527825,'exp05_dun_befallen_cavern'), -(426,0,'WitchesCove','nektulos_epic01_cauldroncove','The Witches\' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3151346832,'nektulos_epic01_cauldroncove'), -(427,0,'Firemyst','antonica_epic02_firemyst','The Firemyst Gully',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1001393294,'antonica_epic02_firemyst'), -(428,50,'DryadGrotto','exp05_dun_guk_upper_epic01_cave','Enchanted Dryad Grotto',13.8052,-32.8927,-322.195,0,-1000000,0,1,80,'0',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4187233331,'exp05_dun_guk_upper_epic01_cave'), -(429,10,'PoetsPalace2','exp01_dun_poets_palace_community','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3656598577,'exp01_dun_poets_palace_community'), -(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor\'s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,241278901,'exp04_dun_charasis_west'), -(432,40,'KurnsTower','exp04_dun_kurns_tower','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4282593199,'exp04_dun_kurns_tower'), -(433,40,'MoppetShoppe','exp04_dun_sebilis_quarters','The Moppet Shoppe',-17.4,31,479.8,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1525821771,'exp04_dun_sebilis_quarters'), -(434,50,'LowerGuk1','exp05_dun_guk_lower_epic01_cave','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2474119725,'exp05_dun_guk_lower_epic01_cave'), -(435,0,'Mystic','live_epic_mystic','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1533911469,'live_epic_mystic'), -(436,0,'HauntedUnrest','live_haunted_unrest','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1547071487,'live_haunted_unrest'), -(437,0,'RodcetDiety','live_rodcet_diety','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1148846749,'live_rodcet_diety'), -(438,0,'Buccaneers','befallen_epic01','The Buccaneer\'s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,622152942,'befallen_epic01'), -(439,0,'TombNight2','mod01_dun_tombs_of_night','The Tombs of Night: A Search For Answers',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2581166184,'mod01_dun_tombs_of_night'), -(440,50,'LegendsMuseum','qey_guildhall_tier1','Legends of Norrath Museum',1.13356,1,-0.742676,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4025127940,'qey_guildhall_tier1'), -(441,10,'ZygomydGrotto','exp01_rgn_sinking_sands_epic01_lockjaw','Enchanted Zygomyd Grotto',213.457,-4.79144,-46.9508,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,422052312,'exp01_rgn_sinking_sands_epic01_lockjaw'), -(442,30,'BrownieGrotto','exp03_dun_hollow_stump2','Enchanted Brownie Grotto',-216.12,-38.9957,29.9802,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1114913268,'exp03_dun_hollow_stump2'), -(443,30,'FayGrotto','exp03_rgn_emerald_halls_event','Enchanted Fay Grotto',389.893,94.241,-800.458,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3424608148,'exp03_rgn_emerald_halls_event'), -(444,50,'NaiadGrotto','exp05_dun_guk_lower_epic01_cave','Enchanted Naiad Grotto',-4.4465,-2.40918,2.62357,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2260864416,'exp05_dun_guk_lower_epic01_cave'), -(445,0,'HoldFallen','fprt_epic05_a02_temple01','Hold of the Fallen',10.7279,1,-0.867747,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3192830649,'fprt_epic05_a02_temple01'), -(446,0,'RitePassage','fprt_epic05_a02_temple01','Rite of Passage',9.72787,1,1.13225,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3789732280,'fprt_epic05_a02_temple01'), -(447,0,'CondemnedCatacomb','qey_catacomb01','The Condemned Catacomb',-217.584,0.5,-56.58,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1996344389,'qey_catacomb01'), -(448,0,'PrivateLounge','qey_ph_1r01','Bar of Brell: Private Lounge',-6.21334,0.0025,-0.20449,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2145600684,'qey_ph_1r01'), -(449,0,'Blumbles','steppes_mini01','Blumble\'s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2556324114,'steppes_mini01'), -(450,0,'SmallHideout','tutorial_island02_epic02','a small hideout',-4.89851,-8,161.891,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1266491077,'tutorial_island02_epic02'), -(451,60,'LibraryErudin','exp06_dun_erudin_erudin01','Library of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2187208939,'exp06_dun_erudin_erudin01'), -(452,60,'ResearchHalls','exp06_dun_erudin_erudin02','Erudin Research Halls',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1883324183,'exp06_dun_erudin_erudin02'), -(453,60,'PalaceErudin','exp06_dun_erudin_erudin03','Royal Palace of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2369621886,'exp06_dun_erudin_erudin03'), -(454,60,'Vigilant1','exp06_dun_sentinal','The Vigilant: Final Destruction',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2212927518,'exp06_dun_sentinal'), -(455,60,'TheHole','exp06_dun_thehole','The Hole',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4112900241,'exp06_dun_thehole'), -(456,60,'DemitriksBastion','exp06_dun_thehole_wing1','Demitrik\'s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1578585151,'exp06_dun_thehole_wing1'), -(457,60,'TheOuterVault','exp06_dun_thehole_wing2','The Outer Vault',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,295985198,'exp06_dun_thehole_wing2'), -(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit\'s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,356553526,'exp06_dun_thehole_wing3'), -(459,60,'ToxxuliasMound','exp06_dun_toxxulia_mound01','Lair of the Dragon Queen',12.9,148.77,2427.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3838745552,'exp06_dun_toxxulia_mound01'), -(460,60,'Conservatory','exp06_dun_vastydeep01','Vasty Deep: The Conservatory',-9.24,-7,-30.71,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,954080035,'exp06_dun_vastydeep01'), -(461,60,'AbandonedLabs','exp06_dun_vastydeep02','Vasty Deep: The Abandoned Labs',-0.89,-1.57,-1.28,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2073480066,'exp06_dun_vastydeep02'), -(462,60,'VestigialCella','exp06_dun_vastydeep03','Vasty Deep: The Vestigial Cella',-12.9,-10,-3.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1092966222,'exp06_dun_vastydeep03'), -(463,60,'AbominableLaboratory','exp06_dun_vastydeep02','Perah\'Celsis\' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2962342588,'exp06_dun_vastydeep02'), -(464,60,'StonebruntHighlands','exp06_rgn_odus_north','The Stonebrunt Highlands',-481.65,370.17,1513.09,45,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2369118810,'exp06_rgn_odus_north'), -(465,60,'SunderedFrontier','exp06_rgn_odus_south','The Sundered Frontier',2213.66,-210.17,2469.19,90,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,168443344,'exp06_rgn_odus_south'), -(466,60,'exp06_rgn_odus_south_epic01_panda','exp06_rgn_odus_south_epic01_panda','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1822966042,'exp06_rgn_odus_south_epic01_panda'), -(467,0,'BG_Ganak','battleground_ctf','Battlefield of Ganak',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2342906850,'battleground_ctf'), -(468,0,'BG_Smugglers','battleground_nodes','Smugglers Den',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2939036782,'battleground_nodes'), -(469,0,'BG_Gears','battleground_relic01','Gears of Klak\'Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1385404002,'battleground_relic01'), -(470,61,'FrostfangSea','halas','FrostFang Sea',-229.542,34.6202,-725.879,0,-1000000,0,1,80,'',0,0,0,0,0,0,32,'NONE',0,0,0,0,NULL,300,NULL,0,3132425949,'halas'), -(472,0,'cmmn_epic01_orc','cmmn_epic01_orc','Bloodskull Valley: Kaljanar\'s Lair',-8.26939,-46,733.468,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4207969976,'cmmn_epic01_orc'), -(473,0,'fprt_ph_5r01','fprt_ph_5r01','the Thexian Meeting',-3.87325,-0.497519,-2.07887,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1293060228,'fprt_ph_5r01'), -(474,0,'solusekseye_epic03_thyr','solusekseye_epic03_thyr','The Oratorium of Thyr: Deserted',-205.749,-617,-189.786,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1724471149,'solusekseye_epic03_thyr'), -(475,0,'MurkwaterNook','fprt_sewer_epic03','The Murkwater Nook',3.80113,0.5,-17.8084,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2224401447,'fprt_sewer_epic03'), -(476,0,'ShatteredStillnessEpic','antonica_epic02_firemyst','Shattered Stillness: Epic',-1187.3,-1187.3,-1187.3,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,19001049,'antonica_epic02_firemyst'), -(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate\'s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2609903017,'steppes_mini01'), -(478,0,'RumblerCavesHeroic','steppes_mini01','Heroic: Rumbler Caves',955.493,-22,1192.34,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2259272861,'steppes_mini01'), -(479,0,'HollowHedge','live_haunted_cauldroncove','The Hollow Hedge',884.89,7.44304,-476.69,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,697470619,'live_haunted_cauldroncove'), -(480,70,'GreatDivide','exp07_rgn_great_divide','Great Divide',-1422.07,-510.27,-2275.1,35.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2941246892,'exp07_rgn_great_divide'), -(481,70,'EasternWastes','exp07_rgn_eastern_wastes','Eastern Wastes',-946.3,-336.29,2365.81,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,627308595,'exp07_rgn_eastern_wastes'), -(482,70,'CrystalCaverns','exp07_dun_crystalcavern','Crystal Caverns: Collapse',23,-34.32,91.35,260,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4189128104,'exp07_dun_crystalcavern'), -(483,70,'KaelDrakkel','exp07_dun_kael_drakkel','Kael Drakkel',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2072927759,'exp07_dun_kael_drakkel'), -(484,70,'IceshardKeep','exp07_dun_kael_iceshard_keep','Iceshard Keep',-563.9,73.3,-25.17,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1856150992,'exp07_dun_kael_iceshard_keep'), -(485,70,'TempleZek','exp07_dun_kael_temple_zek','The Temple of Rallos Zek',-618.54,76.9,-1110.49,20,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2060249267,'exp07_dun_kael_temple_zek'), -(486,70,'ThroneStorms','exp07_dun_kael_throne','Throne of Storms',153.28,20.17,1614.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3674709028,'exp07_dun_kael_throne'), -(487,70,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3842703654,'exp07_dun_kraytocs_fortress'), -(488,70,'TowerFrozenShadow','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Shadowed Corridors',2,-2,18.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2305975907,'exp07_dun_toweroffrozenshadow'), -(489,70,'ForgottenPools','exp07_dun_velks_forgotten_pools','Forgotten Pools',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2351575362,'exp07_dun_velks_forgotten_pools'), -(490,70,'TheAscent','exp07_dun_velks_the_ascent','The Ascent',-448,115,-285,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,737340354,'exp07_dun_velks_the_ascent'), -(491,0,'ShatteredVale6','antonica_epic01_vale_gu54','Describe me in the zones table! :)',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1733527721,'antonica_epic01_vale_gu54'), -(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4258451007,'exp05_dun_guk_spire'), -(493,50,'PalaceAncient','exp05_dun_void_palace_crafter','Palace of the Ancient One',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,417408192,'exp05_dun_void_palace_crafter'), -(494,60,'UnderfootDepths','exp06_dun_thehole_raid','Underfoot Depths',0,32,-63,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3918641367,'exp06_dun_thehole_raid'), -(495,70,'SullonsSpire','exp07_dun_drunder_sullon_spire','Sullon\'s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2509995897,'exp07_dun_drunder_sullon_spire'), -(496,70,'TallonsStronghold','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4211773782,'exp07_dun_drunder_tallon_stronghold'), -(497,70,'VallonsTower','exp07_dun_drunder_vallon_tower','Vallon\'s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,682362450,'exp07_dun_drunder_vallon_tower'), -(498,70,'OuterKael','exp07_dun_kael_drakkel_hub','Outer Kael',-2135,57.36,-1200,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2607747591,'exp07_dun_kael_drakkel_hub'), -(499,70,'Thurgadin','exp_07_thurgadin_velious','Thurgadin, City of the Coldain',985,-308,367,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3581557641,'exp_07_thurgadin_velious'), -(501,61,'Halas1Room','halas_ph_1room','Halas One Room Housing',51.16,49.48,138.12,179,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,802201839,'halas_ph_1room'), -(502,61,'Halas3Room','halas_ph_3room','New Halas Three Room Housing',34.38,49.48,-3.1,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2463865530,'halas_ph_3room'), -(503,61,'Halas5Room','halas_ph_5room','New Halas Five Room Housing',33.78,49.48,-154.57,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3741636536,'halas_ph_5room'), -(504,0,'SummerHome','home_everfrost_menagerie','Everfrost Summer Home',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1539707629,'home_everfrost_menagerie'), -(505,10,'VacationSuite','home_majdul_bottle','Maj\'Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1540644614,'home_majdul_bottle'), -(506,10,'PersonalLibrary','home_majdul_library','Personal Library',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3298151362,'home_majdul_library'), -(507,0,'OperaHouse','home_neriak_opera','Private Opera House',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,834698580,'home_neriak_opera'), -(508,0,'Dojo','home_qeynos_dojo','Personal Dojo',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3841277655,'home_qeynos_dojo'), -(509,0,'live_epic_mystic_odus','live_epic_mystic_odus','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,486657895,'live_epic_mystic_odus'), -(510,61,'SkybladeSkiff','live_ph_skyblade01','Skyblade Skiff',-0.3,9.86,76.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3371790322,'live_ph_skyblade01'), -(511,0,'MistmooreCragsEstate','mistmoore_ph_5r01','Mistmoore Crags Estate',6.89,0.3,-11.2,112.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1718101213,'mistmoore_ph_5r01'), -(512,0,'IcyKeep','permafrost_frostfell','The Icy Keep (Easy)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1450981306,'permafrost_frostfell'), -(513,0,'LoveShard','shard_of_love','Shard of Love: A Moment of Valor',33.32,-7.56,105.31,11,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,599278352,'shard_of_love'), -(514,0,'veteran_ph_mistmoore','veteran_ph_mistmoore','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2561929907,'veteran_ph_mistmoore'), -(515,50,'HalasGuild1','qey_guildhall_tier1','Halas Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,285232141,'qey_guildhall_tier1'), -(516,61,'IllbodingDark','halas_epic01_necro','Cave of Illboding Dark',738.774,41.9821,133.181,0,-1000000,0,12,15,'Instanced Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3635449592,'halas_epic01_necro'), -(517,61,'IllbodingDark1','halas_epic01_necro','Cave of Illboding Dark: The Source',738.774,41.9821,133.181,0,-1000000,0,12,15,'Instanced Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3649530009,'halas_epic01_necro'), -(522,60,'VastyDeep','exp06_dun_vastydeep04','The Vasty Deep',14,-34,66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,874710987,'exp06_dun_vastydeep04'), -(523,60,'RoehnTheer','exp06_dun_erudin_erudin03','The Palace of Roehn Theer',-4,3,3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2576445076,'exp06_dun_erudin_erudin03'), -(524,10,'DelvingDead','exp01_dun_silent_city','Silent City: The Delving Dead',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,710129786,'exp01_dun_silent_city'), -(525,0,'TangledWeeds2','enchanted_mini01','Heroic: Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1850595577,'enchanted_mini01'), -(526,0,'DarkenedDen','orcishwastes_mini01','The Darkened Den',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1976475018,'orcishwastes_mini01'), -(527,0,'DarkenedDen2','orcishwastes_mini01','Heroic: The Darkened Den',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3511599308,'orcishwastes_mini01'), -(528,0,'TallonHalls2','orcishwastes_mini01','Heroic: The Tallon Hording Halls',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3177504651,'orcishwastes_mini01'), -(529,0,'SullonMines2','orcishwastes_mini01','Heroic: The Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2808492783,'orcishwastes_mini01'), -(530,0,'TombNight3','mod01_dun_tombs_of_night','The Tombs of Night: Retribution',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3382395703,'mod01_dun_tombs_of_night'), -(531,0,'EchoesTime2','cmmn_epic02_mage','Echoes of Time: Epic',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1417748158,'cmmn_epic02_mage'), -(532,0,'IcyKeep3','permafrost_frostfell','Icy Keep: Retribution',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3963619840,'permafrost_frostfell'), -(533,0,'Acquisition','nektulos_mini01','Acquisition',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,233219426,'nektulos_mini01'), -(534,0,'QinLo1','adv04_dun_endless','Trial of Qin Lo: Solo',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3975257256,'adv04_dun_endless'), -(535,80,'ChampionsRespite','battleground_lobby','Champion\'s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'battleground_lobby'), -(536,80,'TenebrousRefuge','home_floating_island','Tenebrous Island Refuge',-41.4936,-1.48073,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,912708921,'home_floating_island'), -(537,80,'SleepersTomb','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048562755,'exp08_dun_sleepers_tomb'), -(538,80,'SleepersTomb1','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,257992003,'exp08_dun_sleepers_tomb_destroyed'), -(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'exp08_dun_sleepers_tomb_destroyed'), -(540,80,'SleepersTomb3','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2674969966,'exp08_dun_sleepers_tomb'), -(541,80,'SleepersTomb4','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3137546384,'exp08_dun_sleepers_tomb'), -(542,80,'SleepersTomb5','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3100543520,'exp08_dun_sleepers_tomb'), -(543,70,'TempleZek1','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone',-603.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,763380135,'exp07_dun_kael_temple_zek'), -(544,70,'TempleZek2','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone [Challenge]',-621.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3933678329,'exp07_dun_kael_temple_zek'), -(545,70,'ThroneStorms1','exp07_dun_kael_throne','Throne of Storms: Hall of Legends',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1777546843,'exp07_dun_kael_throne'), -(546,70,'ThrownStorms2','exp07_dun_kael_throne','Throne of Storms: Hall of Legends [Challenge]',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2257287777,'exp07_dun_kael_throne'), -(547,0,'BuriedHideout','qey_catacomb_epic03','A Buried Hideout',-22,3.5,20.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1939516724,'qey_catacomb_epic03'), -(548,0,'DireHollow2','nektulos_mini02','Dire Hollow: Grim Tidings',0.8,-1,3.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,378944620,'nektulos_mini02'), -(549,70,'FortressDrunder','exp07_dun_drunder_fortress','The Fortress of Drunder',-2.1,-0.21,23.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,611439565,'exp07_dun_drunder_fortress'), -(550,0,'desertedmine','orcishwastes_mini01','The Deserted Mine',382.376,8,-95.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4206523056,'orcishwastes_mini01'), -(551,70,'TowerFrozenShadow1','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Umbral Halls',-68.33,293.5,-7.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3725736583,'exp07_dun_toweroffrozenshadow'), -(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl\'Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'exp07_dun_toweroffrozenshadow'), -(553,0,'HiddenVillage','feerrott_epic02_froglok','The Hidden Village of Kugup',-140.131,14,142.309,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3407712702,'feerrott_epic02_froglok'), -(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al\'Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'exp01_dun_shimmering_citadel'), -(555,0,'GatesAhket','exp01_dun_living_tombs','The Gates of Ahket Aken',-633.189,5,371.191,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1715039045,'exp01_dun_living_tombs'), -(556,0,'MeetingMinds','feerrott_epic01_temple','A Meeting of the Minds',-905.273,-8,220.462,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3583391343,'feerrott_epic01_temple'), -(557,0,'LockjawLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw\'s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3143832939,'exp01_rgn_sinking_sands_epic01_lockjaw'), -(558,0,'Meditation','adv04_tower_cave','The Mediation Chamber',-13.8528,0.0025,-2.60848,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3350653370,'adv04_tower_cave'), -(559,0,'Freeport','freeport_combined','The City of Freeport',-232.028,-56.065,172.565,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,716469914,'freeport_combined'), -(560,0,'Nizara','adv04_dun_endless','Nizara, City of the Nayad',-48.9533,-89,-8.30118,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,729645890,'adv04_dun_endless'), -(561,0,'ZanFi','adv04_dun_drgn_temple','Sepulcher of Zan Fi',22.0348,2,35.0558,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2763425328,'adv04_dun_drgn_temple'), -(562,0,'Jiang1','adv04_dun_endless','Trial of Jiang Anlan: Solo',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2616412967,'adv04_dun_endless'), -(563,0,'Jiang2','adv04_dun_endless','Trial of Jiang Anlan: Heroic',51.0781,-89,-8.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2591092899,'adv04_dun_endless'), -(564,0,'TempleScale1','exp02_dun_lair_of_scale','The Temple of Scale',11.1522,135.658,-214.027,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,994882643,'exp02_dun_lair_of_scale'), -(565,0,'TempleScale2','exp02_dun_lair_of_scale','The Temple of Scale: Pedestal of the Priestess',-12.8215,57.6019,263.487,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4267147135,'exp02_dun_lair_of_scale'), -(566,0,'SunKai1','adv04_dun_endless','Trial of Sun Kai: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1106002034,'adv04_dun_endless'), -(567,0,'SunKai2','adv04_dun_endless','Trial of Sun Kai: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2446330851,'adv04_dun_endless'), -(568,0,'LiZhong2','adv04_dun_endless','Trial of Li Zhong: Heroic',1.21633,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3502512801,'adv04_dun_endless'), -(569,0,'Sagacious1','adv04_dun_endless','Trial of Sagacious Ting: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1462123052,'adv04_dun_endless'), -(570,0,'Sagacious2','adv04_dun_endless','Trial of Sagacious Ting: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1227304061,'adv04_dun_endless'), -(571,0,'BoFen1','adv04_dun_endless','Trial of Bo Fen: Solo',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1065240210,'adv04_dun_endless'), -(572,0,'BoFen2','adv04_dun_endless','Trial of Bo Fen: Heroic',51.0781,-89,-8.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4031776815,'adv04_dun_endless'), -(573,0,'LinVo1','adv04_dun_endless','Trial of Lin Vo: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3776901092,'adv04_dun_endless'), -(574,0,'LinVo2','adv04_dun_endless','Trial of Lin Vo: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3124172364,'adv04_dun_endless'), -(575,0,'QinLo2','adv04_dun_endless','Trial of Qin Lo: Heroic',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3728328101,'adv04_dun_endless'), -(576,0,'Munzoks','exp05_dun_void_anchor','Munzok\'s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1140436936,'exp05_dun_void_anchor'), -(577,0,'CommuneKDal','lavastorm_epic02_gulch','Commune of K`Dal',-189.774,4,-338.747,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,603402304,'lavastorm_epic02_gulch'), -(578,0,'ForgeOfAges','lavastorm_epic01_sanctum','The Infernal Forge of Ages',-313.356,-48,-744.563,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1977557393,'lavastorm_epic01_sanctum'), -(584,70,'ThurgadinGrandHall','thurgadin_prestige_home','Thurgadin Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1249872435,'thurgadin_prestige_home'), -(585,70,'CrystallineBreaks','exp07_dun_crystalcavern','Crystalline Breaks',23.9496,-33,92.1147,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1540772621,'exp07_dun_crystalcavern'), -(586,70,'HoldOfRime1','exp07_dun_velks_the_ascent','Hold of Rime: The Ascent',1.28,-5,-2.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,685883790,'exp07_dun_velks_the_ascent'), -(587,70,'HoldOfRime2','exp07_dun_kraytocs_fortress','Hold of Rime: The Fortress Spire',-53.72,1,-25.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2268102256,'exp07_dun_kraytocs_fortress'), -(588,70,'KraytocsFortress2','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707353607,'exp07_dun_kraytocs_fortress'), -(589,80,'Qeynos','qeynos_combined01','Qeynos Capitol District',396.938,-20.9182,-175.205,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,740104698,'qeynos_combined01'), -(590,0,'UnkemptVale','antonica_epic01_vale','The Unkempt Vale: A Lordly Confrontation',-2358.17,11,-53.2353,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938907661,'antonica_epic01_vale'), -(591,0,'FarPelican','boat_06p_feerrott','The Far Pelican',0.912209,2,-18.9637,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1683841340,'boat_06p_feerrott'), -(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub\'s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'boat_06p_lavastorm'), -(593,0,'ChamberKeeper','cazicthule_epic01_sanctum','The Chamber of the Keeper',0.464886,-9.9975,-179.077,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,868877514,'cazicthule_epic01_sanctum'), -(594,0,'GnollCave','enchanted_mini01','A Gnoll Cave',-340.291,3.79318,-628.419,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3769515479,'enchanted_mini01'), -(595,0,'ForbiddenSepulcher','everfrost_epic02_icespire','The Forbidden Sepulcher',-75.0322,60,-893.966,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1896185871,'everfrost_epic02_icespire'), -(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj\'Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1613383542,'exp01_cty_majdul_3r02'), -(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar\'s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'exp01_dun_shimmering_citadel_epic01_bottle'), -(598,10,'PalaceSabaron','exp01_dun_shimmering_citadel_epic02_prism','The Palace of Sabaron',-19.5178,-6.1451,-26.9855,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,39282643,'exp01_dun_shimmering_citadel_epic02_prism'), -(599,10,'AncientsTable','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient\'s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,694743090,'exp01_rgn_pillars_of_flame_epic01_cazel'), -(600,10,'ScornfeatherRoost','exp01_rgn_pillars_of_flame_epic01_cazel','Scornfeather Roost',2.83403,1,5.48852,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,98362481,'exp01_rgn_pillars_of_flame_epic01_cazel'), -(601,10,'HiddenCache','exp01_rgn_sinking_sands_epic01_lockjaw','The Hidden Cache',111.747,-10,-109.677,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1637906398,'exp01_rgn_sinking_sands_epic01_lockjaw'), -(602,10,'Sanctorium','exp01_rgn_sinking_sands_epic01_lockjaw','The Sanctorium',-8.69045,8,7.14274,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2362130991,'exp01_rgn_sinking_sands_epic01_lockjaw'), -(603,20,'LaboratoryLordVyemm','exp02_dun_halls_of_fate','The Laboratory of Lord Vyemm',-124.634,-68,451.577,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,598407856,'exp02_dun_halls_of_fate'), -(604,20,'AscentAwakened','exp02_dun_shrines_of_sky','Ascent of the Awakened',-66.3987,0.5,1.96815,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,931857537,'exp02_dun_shrines_of_sky'), -(605,30,'HauntedVaults','exp03_dun_kaladim_stormguard_hall','The Haunted Vaults',157.515,18,-61.1178,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,759321130,'exp03_dun_kaladim_stormguard_hall'), -(606,40,'EmperorsAthenaeum','exp04_dun_charasis_west','Emperor\'s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4005035570,'exp04_dun_charasis_west'), -(607,40,'TempleCabilis','exp04_dun_sebilis_quarters','Lost Temple of Cabilis',109.789,-10.4975,219.764,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2450210553,'exp04_dun_sebilis_quarters'), -(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'exp05_dun_guk_spire'), -(609,50,'PlanarShard','exp05_dun_miragul_shard','Miragul\'s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3746534304,'exp05_dun_miragul_shard'), -(610,60,'Vigilant2','exp06_dun_sentinal','The Vigilant: Incursion',0.86,3,126.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1989186960,'exp06_dun_sentinal'), -(611,60,'Vigilant3','exp06_dun_sentinal','The Vigilant: Infiltration',4.27,85,-23.32,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1121019415,'exp06_dun_sentinal'), -(612,60,'Vigilant4','exp06_dun_sentinal','The Vigilant: Rescue',0.06,62,-116.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,120899782,'exp06_dun_sentinal'), -(613,60,'DarkCave','exp06_rgn_odus_north','A Dark Cave',191.68,239,255.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,70815476,'exp06_rgn_odus_north'), -(614,70,'SpireRage','exp07_dun_drunder_sullon_spire','Spire of Rage',2.12005,0,-6.13393,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2851100105,'exp07_dun_drunder_sullon_spire'), -(615,70,'SullonsSpire2','exp07_dun_drunder_sullon_spire','Sullon\'s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2650249652,'exp07_dun_drunder_sullon_spire'), -(616,70,'CitadelVuul','exp07_dun_drunder_tallon_stronghold','Citadel of V\'uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1196441431,'exp07_dun_drunder_tallon_stronghold'), -(617,70,'TallonsStronghold2','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1525292467,'exp07_dun_drunder_tallon_stronghold'), -(618,70,'VallonsTower2','exp07_dun_drunder_vallon_tower','Vallon\'s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3334958337,'exp07_dun_drunder_vallon_tower'), -(619,70,'ElementsWar','exp07_dun_plane_of_war','Elements of War',-61.5,102,-104.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2667052143,'exp07_dun_plane_of_war'), -(620,70,'ElementsWar2','exp07_dun_plane_of_war','Elements of War [Challenge]',-60.5,102,-101.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,702515518,'exp07_dun_plane_of_war'), -(621,70,'PlaneWar','exp07_dun_plane_of_war','Plane of War',-60.7,56,818.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4064403794,'exp07_dun_plane_of_war'), -(622,80,'Skyshrine','exp08_dun_skyshrine_courtyard01_scorched','Skyshrine: The City of Dracur',-1.03,0,-24.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3070042545,'exp08_dun_skyshrine_courtyard01_scorched'), -(623,80,'WitheredLands','exp08_rgn_withered_lands','The Withered Lands',-555.08,-685.734,367.063,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1535573742,'exp08_rgn_withered_lands'), -(624,90,'Chelsith2','exp09_dun_deepchelsith','Chelsith: The Ancient Vault',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3466679736,'exp09_dun_deepchelsith'), -(625,90,'Chelsith1','exp09_dun_deepchelsith','Chelsith: The Ancient Vault [Advanced Solo]',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2241866888,'exp09_dun_deepchelsith'), -(626,90,'HarrowsEnd24','exp09_dun_drinals_castle','Harrow\'s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1203059563,'exp09_dun_drinals_castle'), -(627,90,'HarrowsEnd6','exp09_dun_drinals_castle','Harrow\'s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4194809031,'exp09_dun_drinals_castle'), -(628,90,'Dreadcutter','exp09_dun_drinals_ferry','The Dreadcutter',-6.17,24,74.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,302382115,'exp09_dun_drinals_ferry'), -(629,90,'Dreadcutter1','exp09_dun_drinals_ferry','The Dreadcutter [Advanced Solo]',-6.29,24,74.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2542978235,'exp09_dun_drinals_ferry'), -(630,90,'AltarAbhorrence24','exp09_dun_temple_of_faceless','Altar of Abhorrence (Raid)',-405.79,2,464.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,324758579,'exp09_dun_temple_of_faceless'), -(631,90,'TempleFaceless6','exp09_dun_temple_of_faceless','Temple of the Faceless (Heroic)',-404.79,2,463.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1777943443,'exp09_dun_temple_of_faceless'), -(632,90,'TempleFaceless1','exp09_dun_temple_of_faceless','Temple of the Faceless: Imprisonment (Advanced Solo)',-405.79,2,462.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2969993788,'exp09_dun_temple_of_faceless'), -(633,90,'ThroneFear6','exp09_dun_throne_of_fear','Throne of Fear (Heroic)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,981143259,'exp09_dun_throne_of_fear'), -(634,90,'ThroneFear1','exp09_dun_throne_of_fear','Throne of Fear: Ascension (Advanced Solo)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2159319178,'exp09_dun_throne_of_fear'), -(635,90,'ThroneFear2','exp09_dun_throne_of_fear','Throne of Fear: The Fear Gate',210.733,72.34,44.4457,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3648292296,'exp09_dun_throne_of_fear'), -(636,90,'WurmbonesEnd','exp09_dun_wurmbones_end','Wurmbone\'s End',-16.89,-128,335.57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2090669585,'exp09_dun_wurmbones_end'), -(637,90,'WurmbonesEnd1','exp09_dun_wurmbones_end','Wurmbone\'s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,418475608,'exp09_dun_wurmbones_end'), -(638,90,'WurmboneCrag','exp09_dun_wurmbone_gulch','Wurmbone Crag',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4070843496,'exp09_dun_wurmbone_gulch'), -(639,90,'WurmboneCrag1','exp09_dun_wurmbone_gulch','Wurmbone Crag [Advanced Solo]',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1585901758,'exp09_dun_wurmbone_gulch'), -(640,90,'EidolonJungle','exp09_rgn_eidolon_jungle','The Eidolon Jungle',-2159.75,222.393,768.29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,545027572,'exp09_rgn_eidolon_jungle'), -(641,90,'ObolPlains','exp09_rgn_plains_of_obol','Obol Plains',64.8961,13.5217,965.592,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126142372,'exp09_rgn_plains_of_obol'), -(642,0,'VaultFallen','fallengate_epic01_boss','The Vault of the Fallen',35.3134,-26.21,-189.683,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,932928636,'fallengate_epic01_boss'), -(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'fprt_epic01_storeroom01'), -(644,0,'BigBend2','fprt_hood01','Big Bend: Sanctum of Spirits',-4.04,3,-69.27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366221557,'fprt_hood01'), -(645,0,'StonestairByway2','fprt_hood02','Stonestair Byway: The Animus Corridors',9.07333,-4,-101.943,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4205698383,'fprt_hood02'), -(646,0,'TempleStreet2','fprt_hood03','Temple Street: Vault of Necromechanica',17.7,3.5,23.14,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1757098077,'fprt_hood03'), -(647,0,'BeggarsCourt2','fprt_hood04','Beggar\'s Court: Sweat-Stained Cobbles',67.1062,-6.5,112.909,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2708424193,'fprt_hood04'), -(648,0,'LongshadowAlley2','fprt_hood05','Longshadow Alley: Daeneth Cloister',13.8144,3.5,74.3103,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2777048224,'fprt_hood05'), -(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors\' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'fprt_hood06'), -(650,0,'Court','home_citadel','Court',98.3708,146.589,-58.8835,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864808754,'home_citadel'), -(651,0,'FelwitheMansion','home_felwithe_throne','Felwithe Mansion',-76.8586,69.2698,-888.608,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2163020640,'home_felwithe_throne'), -(652,0,'ArcaneAcademy','home_freeport','Arcane Academy',-5.84555,-6.23708,-123.799,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2085328324,'home_freeport'), -(653,0,'TowerofKnowledge','home_magetower','Tower of Knowledge',-19.8019,-1.08077,-0.287789,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,979361544,'home_magetower'), -(654,10,'AstronomersTower','home_majdul_moon','Maj\'Dul Astronomer\'s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2077481292,'home_majdul_moon'), -(655,0,'PersonalPlanetarium','home_poets_pedestal','Personal Planetarium',-48.9755,-0.570557,-0.313724,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2895880348,'home_poets_pedestal'), -(656,0,'StormTowerIsle','home_stormy_isle','Storm Tower Isle',35.6977,44.7829,-101.576,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,457594060,'home_stormy_isle'), -(657,0,'SecludedSanctum','home_sullon_spire','Secluded Sanctum',117.699,356.786,-54.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2665644280,'home_sullon_spire'), -(658,0,'UncannyEstate','home_unrest','Uncanny Estate',-0.011612,-0.064752,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2261834051,'home_unrest'), -(659,0,'ResearchSanctum','home_vasty_library','Research Sanctum',21.2437,-14.9975,-383.902,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2580496839,'home_vasty_library'), -(660,90,'QeynosProvince','qeynos_combined02','Qeynos Province District',819.286,-23.3299,65.9943,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1888326245,'qeynos_combined02'), -(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers\' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1813992810,'qey_epic06_p12_irontoes'), -(662,0,'SeedTunarbos','qey_ph_3r01','The Seed of Tunarbos',0.066109,-2,7.9765,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,597408693,'qey_ph_3r01'), -(663,0,'FightClub','qey_ph_3r03','Fight Club',1.60767,-1.99737,7.14355,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,902117370,'qey_ph_3r03'), -(664,80,'GrandHall','thurgadin_prestige_home','Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1066222316,'thurgadin_prestige_home'), -(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar\'s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'tutorial_island02'), -(666,0,'PermafrostCrypt','permafrost_frostfell','Permafrost Crypt: Decorating Retribution',-35.4254,2.72433,-575.952,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3906013280,'permafrost_frostfell'), -(667,0,'IcyKeep4','permafrost_frostfell','The Icy Keep (Hard)',0.995131,1,3.07628,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3727147705,'permafrost_frostfell'); -/*!40000 ALTER TABLE `zones` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:01 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/world/web_routes.sql b/database/world/web_routes.sql deleted file mode 100644 index e28cec0..0000000 --- a/database/world/web_routes.sql +++ /dev/null @@ -1,83 +0,0 @@ --- Table: `web_routes` -USE `eq2emu`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `web_routes` --- - -DROP TABLE IF EXISTS `web_routes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `web_routes` ( - `status` int(10) unsigned NOT NULL DEFAULT 4294967295, - `route` varchar(512) NOT NULL DEFAULT '' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Dumping data for table `web_routes` --- - -LOCK TABLES `web_routes` WRITE; -/*!40000 ALTER TABLE `web_routes` DISABLE KEYS */; -/*!40000 ALTER TABLE `web_routes` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - -SET FOREIGN_KEY_CHECKS=1; diff --git a/database/world/web_users.sql b/database/world/web_users.sql deleted file mode 100644 index 46fdbdc..0000000 --- a/database/world/web_users.sql +++ /dev/null @@ -1,53 +0,0 @@ --- Table: `web_users` -USE `eq2emu`; -SET FOREIGN_KEY_CHECKS=0; - -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: eq2emu --- ------------------------------------------------------ --- Server version 10.11.11-MariaDB-0+deb12u1 - -/*!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 utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `web_users` --- - -DROP TABLE IF EXISTS `web_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `web_users` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `username` varchar(50) NOT NULL DEFAULT '', - `passwd` varchar(512) NOT NULL DEFAULT '', - `status` int(10) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2025-07-02 0:00:48 - --- (data omitted for web_users) -ALTER TABLE `web_users` AUTO_INCREMENT = 1; - -SET FOREIGN_KEY_CHECKS=1;