currentlsdb.sql 3.6 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. -- MariaDB dump 10.17 Distrib 10.4.12-MariaDB, for Win64 (AMD64)
  2. --
  3. -- Host: localhost Database: eq2ls
  4. -- ------------------------------------------------------
  5. -- Server version 10.4.12-MariaDB
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8mb4 */;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16. --
  17. -- Table structure for table `account`
  18. --
  19. DROP TABLE IF EXISTS `account`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. /*!40101 SET character_set_client = utf8 */;
  22. CREATE TABLE `account` (
  23. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  24. `name` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  25. `passwd` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  26. `ip_address` varchar(50) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  27. `email_address` varchar(50) COLLATE latin1_general_ci NOT NULL DEFAULT 'Unknown',
  28. `created_date` int(10) NOT NULL DEFAULT 0,
  29. `key1` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  30. `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  31. `hack_count` tinyint(3) unsigned NOT NULL DEFAULT 0,
  32. `last_client_version` smallint(5) unsigned NOT NULL DEFAULT 0,
  33. `account_enabled` tinyint(1) unsigned NOT NULL DEFAULT 1,
  34. PRIMARY KEY (`id`),
  35. UNIQUE KEY `Name` (`name`)
  36. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  37. /*!40101 SET character_set_client = @saved_cs_client */;
  38. --
  39. -- Dumping data for table `account`
  40. --
  41. LOCK TABLES `account` WRITE;
  42. /*!40000 ALTER TABLE `account` DISABLE KEYS */;
  43. /*!40000 ALTER TABLE `account` ENABLE KEYS */;
  44. UNLOCK TABLES;
  45. --
  46. -- Table structure for table `appearances`
  47. --
  48. DROP TABLE IF EXISTS `appearances`;
  49. /*!40101 SET @saved_cs_client = @@character_set_client */;
  50. /*!40101 SET character_set_client = utf8 */;
  51. CREATE TABLE `appearances` (
  52. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  53. `appearance_id` int(10) unsigned NOT NULL,
  54. `name` varchar(250) COLLATE latin1_general_ci NOT NULL,
  55. `min_client_version` smallint(5) unsigned NOT NULL DEFAULT 0,
  56. PRIMARY KEY (`id`),
  57. UNIQUE KEY `AppIDX` (`appearance_id`)
  58. ) ENGINE=InnoDB AUTO_INCREMENT=21547 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  59. /*!40101 SET character_set_client = @saved_cs_client */;
  60. --
  61. -- Dumping data for table `appearances`
  62. --
  63. LOCK TABLES `appearances` WRITE;
  64. /*!40000 ALTER TABLE `appearances` DISABLE KEYS */;
  65. 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);
  66. 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);
  67. /*!40000 ALTER TABLE `appearances` ENABLE KEYS */;
  68. UNLOCK TABLES;
  69. --
  70. -- Table structure for table `bug_notes`
  71. --
  72. DROP TABLE IF EXISTS `bug_notes`;
  73. /*!40101 SET @saved_cs_client = @@character_set_client */;
  74. /*!40101 SET character_set_client = utf8 */;
  75. CREATE TABLE `bug_notes` (
  76. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  77. `bug_id` int(10) unsigned NOT NULL DEFAULT 0,
  78. `note` text COLLATE latin1_general_ci DEFAULT NULL,
  79. `author` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  80. `note_date` int(10) unsigned NOT NULL DEFAULT 0,
  81. PRIMARY KEY (`id`),
  82. KEY `BugIDX` (`bug_id`)
  83. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci ROW_FORMAT=COMPACT;
  84. /*!40101 SET character_set_client = @saved_cs_client */;
  85. --
  86. -- Dumping data for table `bug_notes`
  87. --
  88. LOCK TABLES `bug_notes` WRITE;
  89. /*!40000 ALTER TABLE `bug_notes` DISABLE KEYS */;
  90. /*!40000 ALTER TABLE `bug_notes` ENABLE KEYS */;
  91. UNLOCK TABLES;
  92. --
  93. -- Table structure for table `bugs`
  94. --
  95. DROP TABLE IF EXISTS `bugs`;
  96. /*!40101 SET @saved_cs_client = @@character_set_client */;
  97. /*!40101 SET character_set_client = utf8 */;
  98. CREATE TABLE `bugs` (
  99. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  100. `Status` enum('New','Invalid','Fixed','Server Specific','Assigned','Duplicate','Closed','Not Implemented','Deleted','Not a Bug','By Design','Fixed in Dev') CHARACTER SET latin2 COLLATE latin2_bin NOT NULL DEFAULT 'New',
  101. `world_id` int(10) unsigned NOT NULL DEFAULT 0,
  102. `account_id` int(10) unsigned NOT NULL DEFAULT 0,
  103. `player` varchar(64) NOT NULL DEFAULT ' ',
  104. `category` varchar(64) NOT NULL DEFAULT ' ',
  105. `subcategory` varchar(64) NOT NULL DEFAULT ' ',
  106. `causes_crash` varchar(64) NOT NULL DEFAULT '',
  107. `reproducible` varchar(64) NOT NULL DEFAULT '',
  108. `summary` varchar(128) NOT NULL DEFAULT ' ',
  109. `description` text NOT NULL,
  110. `version` varchar(32) NOT NULL DEFAULT '',
  111. `spawn_name` varchar(64) NOT NULL DEFAULT 'N/A',
  112. `spawn_id` int(10) unsigned NOT NULL DEFAULT 0,
  113. `bug_datetime` timestamp NOT NULL DEFAULT current_timestamp(),
  114. `zone_id` int(10) unsigned NOT NULL DEFAULT 0,
  115. `assign_to_forum_id` int(10) DEFAULT 0,
  116. `fixed_by_forum_id` int(10) unsigned NOT NULL DEFAULT 0,
  117. `forum_id` int(10) unsigned NOT NULL DEFAULT 0,
  118. `post_id` int(10) unsigned NOT NULL DEFAULT 0,
  119. `priority` tinyint(3) unsigned NOT NULL DEFAULT 0,
  120. `bug_updated` int(10) NOT NULL DEFAULT 0,
  121. `bug_type` tinyint(1) unsigned NOT NULL DEFAULT 0,
  122. PRIMARY KEY (`id`)
  123. ) ENGINE=MyISAM AUTO_INCREMENT=606 DEFAULT CHARSET=latin1;
  124. /*!40101 SET character_set_client = @saved_cs_client */;
  125. --
  126. -- Dumping data for table `bugs`
  127. --
  128. LOCK TABLES `bugs` WRITE;
  129. /*!40000 ALTER TABLE `bugs` DISABLE KEYS */;
  130. /*!40000 ALTER TABLE `bugs` ENABLE KEYS */;
  131. UNLOCK TABLES;
  132. --
  133. -- Table structure for table `log_messages`
  134. --
  135. DROP TABLE IF EXISTS `log_messages`;
  136. /*!40101 SET @saved_cs_client = @@character_set_client */;
  137. /*!40101 SET character_set_client = utf8 */;
  138. CREATE TABLE `log_messages` (
  139. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  140. `log_time` int(10) unsigned NOT NULL DEFAULT 0,
  141. `log_type` varchar(64) COLLATE latin1_general_ci NOT NULL,
  142. `message` text COLLATE latin1_general_ci NOT NULL,
  143. `account` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  144. `client_data_version` int(10) unsigned NOT NULL DEFAULT 0,
  145. `log_entry_archived` tinyint(1) unsigned NOT NULL DEFAULT 0,
  146. `type` text COLLATE latin1_general_ci DEFAULT NULL,
  147. `name` text COLLATE latin1_general_ci NOT NULL DEFAULT '',
  148. `version` text COLLATE latin1_general_ci DEFAULT 0,
  149. PRIMARY KEY (`id`)
  150. ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  151. /*!40101 SET character_set_client = @saved_cs_client */;
  152. --
  153. -- Dumping data for table `log_messages`
  154. --
  155. LOCK TABLES `log_messages` WRITE;
  156. /*!40000 ALTER TABLE `log_messages` DISABLE KEYS */;
  157. INSERT INTO `log_messages` VALUES (1,1387653218,'Verify Log','build=\"SOEBuild=10586L\" version=\"SOEVersionString=2013/11/20 14:00:57\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(125): Resource leak! (ui/default/images/window_elements_specific.dds)\"\nbuild=\"SOEBuild=10586L\" version=\"SOEVersionString=2013/11/20 14:00:57\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(125): Resource leak! (ui/default/images/specialelements.dds)\"\nbuild=\"SOEBuild=10586L\" version=\"SOEVersionString=2013/11/20 14:00:57\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10586L\" version=\"SOEVersionString=2013/11/20 14:00:57\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','admin',57123,0,NULL,'','0'),(2,1387653577,'Verify Log','build=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(19148): CRC missmatch in EqCreateGhostCmd state buf.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\CompressedXOR.cpp(244): Bogus compressed data. This is normally caused by mismatched client and server.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 255 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 36.12 -730.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 20 not found in lut.\"\n','admin',57123,0,NULL,'','0'),(3,1387654532,'Verify Log','build=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(125): Resource leak! (ui/default/images/window_elements_specific.dds)\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','admin',57123,0,NULL,'','0'),(4,1387656028,'Verify Log','build=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(19148): CRC missmatch in EqCreateGhostCmd state buf.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\CompressedXOR.cpp(244): Bogus compressed data. This is normally caused by mismatched client and server.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 255 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 36.12 -730.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 20 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 36.52 -721.75\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(125): Resource leak! (ui/default/images/specialelements.dds)\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','admin',57123,0,NULL,'','0'),(5,1387656871,'Verify Log','build=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(19148): CRC missmatch in EqCreateGhostCmd state buf.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\CompressedXOR.cpp(244): Bogus compressed data. This is normally caused by mismatched client and server.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 34.62 -725.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 255 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-229.54 36.12 -730.88\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 20 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-228.13 38.70 -745.32\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\EqConstants_Client.cpp(2344): Failed to find 13, returning :gc7490d79ba52dd9be:hit\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-228.13 38.70 -745.32\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\EqConstants_Client.cpp(2365): Failed to find 13, returning :gc7490d79be57093d4:hits\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-228.13 38.70 -745.32\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\EqConstants_Client.cpp(2389): Failed to find 13, returning :gc50a5a57b3018845e:melee\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-228.13 38.70 -745.32\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\EqConstants_Client.cpp(2323): Failed to find 13, returning :gc7490d79b9d609f5e:Hit\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-230.63 41.71 -743.89\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(13467): Unhandled client cmd 160, last: 652\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-230.63 41.71 -743.89\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(13467): Unhandled client cmd 0, last: 160\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-332.50 45.79 -763.37\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(125): Resource leak! (ui/default/images/specialelements.dds)\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','admin',57123,0,NULL,'','0'),(6,1387657163,'Verify Log','build=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-336.91 40.32 -765.24\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\Client\\src\\GameScene.cpp(19148): CRC missmatch in EqCreateGhostCmd state buf.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-336.91 40.32 -765.24\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 255 not found in lut.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-336.91 40.32 -765.24\" performance=\"7\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\CompressedXOR.cpp(244): Bogus compressed data. This is normally caused by mismatched client and server.\"\nbuild=\"SOEBuild=10648L\" version=\"SOEVersionString=2013/12/16 11:02:09\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"halas\" loc=\"-336.91 40.32 -765.24\" performance=\"7\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(126): VeNetLUT: ID 20 not found in lut.\"\n','admin',57123,0,NULL,'','0'),(7,1581736967,'Alert Log','build=\"SOEBuild=7198\" version=\"SOEVersionString=2010/12/14 22:01:57\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"2\" verify=\"E:\\dev\\eq2\\game\\client\\src\\ClientNet.cpp(603): Failed to deserialize net message (type 236); last message type -1 00458671 10e74470\"\n','devn00b',1084,0,NULL,'','0'),(8,1582069362,'Crash Log','build=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option r_usethreepointoshaders is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option r_shader3_darkness is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoFloat.cpp(310): [DEVL] Option r_S3LightRange is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option r_run_point_light_cpu_shadows is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option r_gpu_shadows_keep is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoList.cpp(243): [DEVL] Option suspend_mount_mode is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option stereo_display_enable is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoFloat.cpp(310): [DEVL] Option stereo_display_convergence is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoFloat.cpp(310): [DEVL] Option stereo_display_separation is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option stereo_display_software_cursor is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoFloat.cpp(310): [DEVL] Option software_cursor_scale is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option stereo_display_world_depth_chat_bubbles is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game\\client\\src\\OptionInfoBoolean.cpp(262): [DEVL] Option r_depthoffield is invalid.\"\nbuild=\"SOEBuild=6065L\" version=\"SOEVersionString=2009/11/19 16:05:47\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"2\" alert=\"E:\\live\\eq2\\game','devn00b',1084,0,NULL,'','0'),(9,1582605938,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','devn00b',60114,0,NULL,'','0'),(10,1582607048,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Erro','image',60114,0,NULL,'','0'),(11,1582640950,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\n','image',60114,0,NULL,'','0'),(12,1582660496,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/darkelf_female/darkelf_female\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\ProxyAppUtil.cpp(2312): ERROR - Invalid base appearance.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(119): No customization definiton\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(302): Invalid customization definition\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1519.16 -31.14 -1019.06\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\src\\ZoneScene.cpp(6185): Camera is not in a room.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1516.70 -31.04 -1015.91\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/erudite_male/erudite_male_thin\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1516.70 -31.04 -1015.91\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/aerakyn_male/aerakyn_male_standard\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1516.70 -31.04 -1015.91\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/barbarian_male/barbarian_male_muscular\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1516.70 -31.04 -1015.91\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/dwarf_male/dwarf_male_standard\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(13,1582662791,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/darkelf_female/darkelf_female\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\ProxyAppUtil.cpp(2312): ERROR - Invalid base appearance.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(119): No customization definiton\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(302): Invalid customization definition\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1519.16 -31.14 -1019.06\" performance=\"2\" alert=\"G:\\live\\eq2\\game\\Client\\src\\ZoneScene.cpp(6185): Camera is not in a room.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(14,1582663254,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\util\\VeNetLUT.cpp(97): VeNetLUT: String \'ec/pc01/darkelf_female/darkelf_female\' not found in lut.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\game\\gamecommon\\client\\ProxyAppUtil.cpp(2312): ERROR - Invalid base appearance.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(119): No customization definiton\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\game\\Client\\UI\\src\\CreateRec.cpp(302): Invalid customization definition\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-1519.16 -31.14 -1019.06\" performance=\"6\" alert=\"G:\\live\\eq2\\game\\Client\\src\\ZoneScene.cpp(6185): Camera is not in a room.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(15,1582663400,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(16,1582663667,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(17,1582663838,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(21) : Error, File not found, runtimevdl/services.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"3\" alert=\"G:\\live\\eq2\\framework\\vdl\\VdlErr.cpp(85): (VDL Parser) runtimevdl/cbaseclasses.vdl(22) : Error, File not found, runtimevdl/soemote.vdl.\n\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(18893): Restore: SetDeviceGammaRamp(\\\\.\\DISPLAY1) failed: 87\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"<None>\" loc=\" 0.00 0.00 0.00\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\core\\devices\\DirectX9RenderDevice.cpp(1881): Failed gamma restoration test during startup. Gamma settings will be ignored.\"\n','image',60114,0,NULL,'','0'),(18,1582775683,'Verify Log','build=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/templates/t2_bmp1_uvset_spwv_blend.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (cooked/interiors/scenes/regions/antonica/halas/hal_collision_flying01_l0.sp)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (cooked/interiors/scenes/regions/antonica/halas/hal_deserted_islands01_l0.sp)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (cooked/interiors/scenes/regions/antonica/halas/hal_3dsketch_island04_l0.sp)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/nodraw.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_bromze_metal_02.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_wood_base_snow_02.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_ice_layered.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_ice_solid_blue.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_ice_chunks.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_snow_drifty01.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-124.68 59.82 -890.29\" performance=\"6\" alert=\"G:\\live\\eq2\\framework\\resman\\ResourceManager.cpp(126): Resource leak! (shaders/interiors/regions/antonica/halas/hal_snow_drifty01_to_darker.vdl)\"\nbuild=\"SOEBuild=12133L\" version=\"SOEVersionString=2015/8/17 11:12:50\" build_type=\"USER OPTIMIZED\" ls_address=\"none\" zone=\"ZoneScene::onOpen\" loc=\"-','image',60114,0,NULL,'','0');
  158. /*!40000 ALTER TABLE `log_messages` ENABLE KEYS */;
  159. UNLOCK TABLES;
  160. --
  161. -- Table structure for table `login_char_colors`
  162. --
  163. DROP TABLE IF EXISTS `login_char_colors`;
  164. /*!40101 SET @saved_cs_client = @@character_set_client */;
  165. /*!40101 SET character_set_client = utf8 */;
  166. CREATE TABLE `login_char_colors` (
  167. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  168. `login_characters_id` int(10) unsigned NOT NULL,
  169. `signed_value` tinyint(4) NOT NULL DEFAULT 0,
  170. `type` varchar(32) COLLATE latin1_general_ci NOT NULL,
  171. `red` smallint(6) NOT NULL DEFAULT 0,
  172. `green` smallint(6) NOT NULL DEFAULT 0,
  173. `blue` smallint(6) NOT NULL DEFAULT 0,
  174. PRIMARY KEY (`id`),
  175. UNIQUE KEY `id` (`id`),
  176. KEY `id_2` (`id`),
  177. KEY `CharID` (`login_characters_id`)
  178. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  179. /*!40101 SET character_set_client = @saved_cs_client */;
  180. --
  181. -- Dumping data for table `login_char_colors`
  182. --
  183. LOCK TABLES `login_char_colors` WRITE;
  184. /*!40000 ALTER TABLE `login_char_colors` DISABLE KEYS */;
  185. /*!40000 ALTER TABLE `login_char_colors` ENABLE KEYS */;
  186. UNLOCK TABLES;
  187. --
  188. -- Table structure for table `login_characters`
  189. --
  190. DROP TABLE IF EXISTS `login_characters`;
  191. /*!40101 SET @saved_cs_client = @@character_set_client */;
  192. /*!40101 SET character_set_client = utf8 */;
  193. CREATE TABLE `login_characters` (
  194. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  195. `account_id` int(10) unsigned NOT NULL DEFAULT 0,
  196. `server_id` int(10) unsigned NOT NULL DEFAULT 0,
  197. `name` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  198. `race` tinyint(3) unsigned NOT NULL DEFAULT 0,
  199. `class` tinyint(3) unsigned NOT NULL DEFAULT 0,
  200. `gender` tinyint(3) unsigned NOT NULL DEFAULT 0,
  201. `deity` tinyint(3) unsigned NOT NULL DEFAULT 0,
  202. `body_size` float NOT NULL DEFAULT 0,
  203. `body_age` float NOT NULL DEFAULT 0,
  204. `current_zone` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT 'antonica',
  205. `current_zone_id` int(10) unsigned NOT NULL DEFAULT 0,
  206. `level` int(10) unsigned NOT NULL DEFAULT 1,
  207. `tradeskill_class` tinyint(3) unsigned NOT NULL DEFAULT 0,
  208. `tradeskill_level` int(10) unsigned NOT NULL DEFAULT 1,
  209. `soga_wing_type` mediumint(8) unsigned NOT NULL,
  210. `soga_chest_type` mediumint(8) unsigned NOT NULL,
  211. `soga_legs_type` mediumint(8) unsigned NOT NULL,
  212. `soga_hair_type` mediumint(8) unsigned NOT NULL,
  213. `soga_facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  214. `legs_type` mediumint(8) unsigned NOT NULL,
  215. `chest_type` mediumint(8) unsigned NOT NULL,
  216. `wing_type` mediumint(8) unsigned NOT NULL,
  217. `hair_type` mediumint(8) unsigned NOT NULL,
  218. `facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  219. `deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
  220. `unix_timestamp` int(10) NOT NULL DEFAULT 0,
  221. `created_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  222. `last_played` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  223. `char_id` int(11) NOT NULL DEFAULT 0,
  224. PRIMARY KEY (`id`),
  225. KEY `ServerIDX` (`account_id`,`server_id`,`char_id`)
  226. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  227. /*!40101 SET character_set_client = @saved_cs_client */;
  228. --
  229. -- Dumping data for table `login_characters`
  230. --
  231. LOCK TABLES `login_characters` WRITE;
  232. /*!40000 ALTER TABLE `login_characters` DISABLE KEYS */;
  233. /*!40000 ALTER TABLE `login_characters` ENABLE KEYS */;
  234. UNLOCK TABLES;
  235. --
  236. -- Table structure for table `login_config`
  237. --
  238. DROP TABLE IF EXISTS `login_config`;
  239. /*!40101 SET @saved_cs_client = @@character_set_client */;
  240. /*!40101 SET character_set_client = utf8 */;
  241. CREATE TABLE `login_config` (
  242. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  243. `config_name` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  244. `config_value` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  245. PRIMARY KEY (`id`)
  246. ) ENGINE=InnoDB AUTO_INCREMENT=3 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';
  247. /*!40101 SET character_set_client = @saved_cs_client */;
  248. --
  249. -- Dumping data for table `login_config`
  250. --
  251. LOCK TABLES `login_config` WRITE;
  252. /*!40000 ALTER TABLE `login_config` DISABLE KEYS */;
  253. INSERT INTO `login_config` VALUES (1,'login_heartbeat','1582776503'),(2,'max_server_offline_age','604800');
  254. /*!40000 ALTER TABLE `login_config` ENABLE KEYS */;
  255. UNLOCK TABLES;
  256. --
  257. -- Table structure for table `login_equipment`
  258. --
  259. DROP TABLE IF EXISTS `login_equipment`;
  260. /*!40101 SET @saved_cs_client = @@character_set_client */;
  261. /*!40101 SET character_set_client = utf8 */;
  262. CREATE TABLE `login_equipment` (
  263. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  264. `login_characters_id` int(10) unsigned NOT NULL DEFAULT 0,
  265. `equip_type` smallint(5) unsigned NOT NULL DEFAULT 0,
  266. `red` tinyint(3) unsigned NOT NULL DEFAULT 255,
  267. `green` tinyint(3) unsigned NOT NULL DEFAULT 255,
  268. `blue` tinyint(3) unsigned NOT NULL DEFAULT 255,
  269. `highlight_red` tinyint(3) unsigned NOT NULL DEFAULT 255,
  270. `highlight_green` tinyint(3) unsigned NOT NULL DEFAULT 255,
  271. `highlight_blue` tinyint(3) unsigned NOT NULL DEFAULT 255,
  272. `slot` int(11) NOT NULL DEFAULT 0,
  273. `last_updated` timestamp NOT NULL DEFAULT current_timestamp(),
  274. PRIMARY KEY (`id`),
  275. UNIQUE KEY `CharSlotIDX` (`login_characters_id`,`slot`)
  276. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  277. /*!40101 SET character_set_client = @saved_cs_client */;
  278. --
  279. -- Dumping data for table `login_equipment`
  280. --
  281. LOCK TABLES `login_equipment` WRITE;
  282. /*!40000 ALTER TABLE `login_equipment` DISABLE KEYS */;
  283. /*!40000 ALTER TABLE `login_equipment` ENABLE KEYS */;
  284. UNLOCK TABLES;
  285. --
  286. -- Table structure for table `login_versions`
  287. --
  288. DROP TABLE IF EXISTS `login_versions`;
  289. /*!40101 SET @saved_cs_client = @@character_set_client */;
  290. /*!40101 SET character_set_client = utf8 */;
  291. CREATE TABLE `login_versions` (
  292. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  293. `version` varchar(30) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  294. PRIMARY KEY (`id`),
  295. UNIQUE KEY `NewIndex` (`version`)
  296. ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  297. /*!40101 SET character_set_client = @saved_cs_client */;
  298. --
  299. -- Dumping data for table `login_versions`
  300. --
  301. LOCK TABLES `login_versions` WRITE;
  302. /*!40000 ALTER TABLE `login_versions` DISABLE KEYS */;
  303. INSERT INTO `login_versions` VALUES (4,'0.7.2-dev'),(1,'0.7'),(2,'0.7.1-dev'),(3,'0.7.1'),(5,'0.7.2'),(6,'0.7.3-dev');
  304. /*!40000 ALTER TABLE `login_versions` ENABLE KEYS */;
  305. UNLOCK TABLES;
  306. --
  307. -- Table structure for table `login_worldservers`
  308. --
  309. DROP TABLE IF EXISTS `login_worldservers`;
  310. /*!40101 SET @saved_cs_client = @@character_set_client */;
  311. /*!40101 SET character_set_client = utf8 */;
  312. CREATE TABLE `login_worldservers` (
  313. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  314. `name` varchar(250) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  315. `disabled` tinyint(3) unsigned NOT NULL DEFAULT 0,
  316. `account` varchar(30) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  317. `chat_shortname` varchar(20) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  318. `description` text COLLATE latin1_general_ci NOT NULL,
  319. `server_type` varchar(15) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  320. `password` varchar(32) COLLATE latin1_general_ci NOT NULL,
  321. `serverop` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  322. `lastseen` int(10) unsigned NOT NULL DEFAULT 0,
  323. `admin_id` int(11) unsigned NOT NULL DEFAULT 0,
  324. `greenname` tinyint(1) unsigned NOT NULL DEFAULT 0,
  325. `showdown` tinyint(4) NOT NULL DEFAULT 0,
  326. `chat` varchar(20) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  327. `note` tinytext COLLATE latin1_general_ci NOT NULL,
  328. `ip_address` varchar(50) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  329. `reset_needed` tinyint(3) unsigned NOT NULL DEFAULT 0,
  330. `created_date` int(10) unsigned NOT NULL DEFAULT 0,
  331. `hide_status` tinyint(1) unsigned NOT NULL DEFAULT 0,
  332. `hide_details` tinyint(1) unsigned NOT NULL DEFAULT 0,
  333. `hide_admin` tinyint(1) unsigned NOT NULL DEFAULT 0,
  334. `hide_serverlist` tinyint(1) NOT NULL DEFAULT 0,
  335. `server_url` varchar(250) COLLATE latin1_general_ci DEFAULT '',
  336. `server_category` enum('Standard','Preferred','Premium','Development') COLLATE latin1_general_ci DEFAULT 'Standard',
  337. `server_admin` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  338. `server_sticky` tinyint(1) unsigned NOT NULL DEFAULT 0,
  339. `gm_list` text COLLATE latin1_general_ci DEFAULT NULL,
  340. `reset_zone_descriptions` tinyint(1) unsigned NOT NULL DEFAULT 0,
  341. `reset_login_appearances` tinyint(1) unsigned NOT NULL DEFAULT 0,
  342. `login_version` varchar(32) COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  343. PRIMARY KEY (`id`),
  344. UNIQUE KEY `account` (`account`),
  345. UNIQUE KEY `NameIDX` (`name`)
  346. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  347. /*!40101 SET character_set_client = @saved_cs_client */;
  348. --
  349. -- Dumping data for table `login_worldservers`
  350. --
  351. LOCK TABLES `login_worldservers` WRITE;
  352. /*!40000 ALTER TABLE `login_worldservers` DISABLE KEYS */;
  353. INSERT INTO `login_worldservers` VALUES (1,'Zeklabs',0,'zeklabs','','zeklabs','0','ed8acc7338a6ba5072472ae4554c16','admin',1582775680,1,0,0,'0','','10.1.1.2',0,1387650563,1,1,1,1,'','Standard','Admin',0,NULL,0,0,'0.7.3-dev');
  354. /*!40000 ALTER TABLE `login_worldservers` ENABLE KEYS */;
  355. UNLOCK TABLES;
  356. --
  357. -- Table structure for table `login_worldstats`
  358. --
  359. DROP TABLE IF EXISTS `login_worldstats`;
  360. /*!40101 SET @saved_cs_client = @@character_set_client */;
  361. /*!40101 SET character_set_client = utf8 */;
  362. CREATE TABLE `login_worldstats` (
  363. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  364. `world_id` int(11) unsigned NOT NULL DEFAULT 0,
  365. `world_status` int(11) NOT NULL DEFAULT -1,
  366. `current_players` int(11) unsigned NOT NULL DEFAULT 0,
  367. `current_zones` int(11) unsigned NOT NULL DEFAULT 0,
  368. `connected_time` timestamp NOT NULL DEFAULT current_timestamp(),
  369. `last_update` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  370. `world_max_level` tinyint(3) unsigned NOT NULL DEFAULT 0,
  371. PRIMARY KEY (`id`),
  372. UNIQUE KEY `NewIndex` (`world_id`)
  373. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  374. /*!40101 SET character_set_client = @saved_cs_client */;
  375. --
  376. -- Dumping data for table `login_worldstats`
  377. --
  378. LOCK TABLES `login_worldstats` WRITE;
  379. /*!40000 ALTER TABLE `login_worldstats` DISABLE KEYS */;
  380. INSERT INTO `login_worldstats` VALUES (1,1,1,0,1,'2020-02-28 05:11:28','2020-02-28 05:12:28',0);
  381. /*!40000 ALTER TABLE `login_worldstats` ENABLE KEYS */;
  382. UNLOCK TABLES;
  383. --
  384. -- Table structure for table `ls_character_picture`
  385. --
  386. DROP TABLE IF EXISTS `ls_character_picture`;
  387. /*!40101 SET @saved_cs_client = @@character_set_client */;
  388. /*!40101 SET character_set_client = utf8 */;
  389. CREATE TABLE `ls_character_picture` (
  390. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  391. `server_id` int(10) unsigned NOT NULL,
  392. `account_id` int(10) unsigned NOT NULL,
  393. `character_id` int(10) NOT NULL,
  394. `picture` text NOT NULL,
  395. PRIMARY KEY (`id`),
  396. UNIQUE KEY `character_id` (`character_id`,`server_id`,`account_id`)
  397. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  398. /*!40101 SET character_set_client = @saved_cs_client */;
  399. --
  400. -- Dumping data for table `ls_character_picture`
  401. --
  402. LOCK TABLES `ls_character_picture` WRITE;
  403. /*!40000 ALTER TABLE `ls_character_picture` DISABLE KEYS */;
  404. /*!40000 ALTER TABLE `ls_character_picture` ENABLE KEYS */;
  405. UNLOCK TABLES;
  406. --
  407. -- Table structure for table `ls_sessions`
  408. --
  409. DROP TABLE IF EXISTS `ls_sessions`;
  410. /*!40101 SET @saved_cs_client = @@character_set_client */;
  411. /*!40101 SET character_set_client = utf8 */;
  412. CREATE TABLE `ls_sessions` (
  413. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  414. `session_id` varchar(64) COLLATE latin1_general_ci NOT NULL,
  415. `session_owner` int(10) unsigned NOT NULL DEFAULT 0,
  416. `session_ip` varchar(64) COLLATE latin1_general_ci NOT NULL,
  417. `session_state` enum('Launchpad','Patcher','Login','CharSel','World','Chat') COLLATE latin1_general_ci NOT NULL DEFAULT 'Patcher',
  418. `session_create_date` int(10) unsigned NOT NULL DEFAULT 0,
  419. `session_expire_date` int(10) unsigned NOT NULL DEFAULT 0,
  420. PRIMARY KEY (`id`),
  421. UNIQUE KEY `NewIndex1` (`session_id`,`session_owner`),
  422. KEY `FK_ls_sessions` (`session_owner`),
  423. CONSTRAINT `FK_ls_sessions` FOREIGN KEY (`session_owner`) REFERENCES `ls_accounts` (`id`) ON DELETE CASCADE
  424. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  425. /*!40101 SET character_set_client = @saved_cs_client */;
  426. --
  427. -- Dumping data for table `ls_sessions`
  428. --
  429. LOCK TABLES `ls_sessions` WRITE;
  430. /*!40000 ALTER TABLE `ls_sessions` DISABLE KEYS */;
  431. /*!40000 ALTER TABLE `ls_sessions` ENABLE KEYS */;
  432. UNLOCK TABLES;
  433. --
  434. -- Table structure for table `ls_world_zones`
  435. --
  436. DROP TABLE IF EXISTS `ls_world_zones`;
  437. /*!40101 SET @saved_cs_client = @@character_set_client */;
  438. /*!40101 SET character_set_client = utf8 */;
  439. CREATE TABLE `ls_world_zones` (
  440. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  441. `server_id` int(10) unsigned NOT NULL DEFAULT 0,
  442. `zone_id` int(10) unsigned NOT NULL DEFAULT 0,
  443. `name` varchar(128) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  444. `description` varchar(128) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  445. PRIMARY KEY (`id`),
  446. UNIQUE KEY `id` (`id`),
  447. UNIQUE KEY `IDXServerZone` (`server_id`,`zone_id`),
  448. KEY `id_2` (`id`)
  449. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  450. /*!40101 SET character_set_client = @saved_cs_client */;
  451. --
  452. -- Dumping data for table `ls_world_zones`
  453. --
  454. LOCK TABLES `ls_world_zones` WRITE;
  455. /*!40000 ALTER TABLE `ls_world_zones` DISABLE KEYS */;
  456. /*!40000 ALTER TABLE `ls_world_zones` ENABLE KEYS */;
  457. UNLOCK TABLES;
  458. --
  459. -- Table structure for table `opcodes`
  460. --
  461. DROP TABLE IF EXISTS `opcodes`;
  462. /*!40101 SET @saved_cs_client = @@character_set_client */;
  463. /*!40101 SET character_set_client = utf8 */;
  464. CREATE TABLE `opcodes` (
  465. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  466. `version_range1` smallint(5) unsigned NOT NULL DEFAULT 0,
  467. `version_range2` smallint(5) unsigned NOT NULL DEFAULT 0,
  468. `name` varchar(255) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  469. `opcode` smallint(5) unsigned NOT NULL DEFAULT 0,
  470. `table_data_version` smallint(5) unsigned NOT NULL DEFAULT 1,
  471. PRIMARY KEY (`id`),
  472. UNIQUE KEY `newindex` (`version_range1`,`name`,`version_range2`)
  473. ) ENGINE=InnoDB AUTO_INCREMENT=29498 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  474. /*!40101 SET character_set_client = @saved_cs_client */;
  475. --
  476. -- Dumping data for table `opcodes`
  477. --
  478. LOCK TABLES `opcodes` WRITE;
  479. /*!40000 ALTER TABLE `opcodes` DISABLE KEYS */;
  480. INSERT INTO `opcodes` VALUES (1,0,0,'OP_LoginRequestMsg',0,1),(2,0,0,'OP_LoginByNumRequestMsg',1,1),(3,0,0,'OP_WSLoginRequestMsg',2,1),(4,0,0,'OP_ESLoginRequestMsg',3,1),(5,0,0,'OP_LoginReplyMsg',4,1),(6,0,0,'OP_WSStatusReplyMsg',5,1),(7,0,0,'OP_WorldStatusChangeMsg',6,1),(8,0,0,'OP_AllWSDescRequestMsg',7,1),(9,0,0,'OP_WorldListMsg',8,1),(10,0,0,'OP_AllCharactersDescRequestMsg',9,1),(11,0,0,'OP_AllCharactersDescReplyMsg',10,1),(12,0,0,'OP_CreateCharacterRequestMsg',11,1),(13,0,0,'OP_CreateCharacterReplyMsg',12,1),(14,0,0,'OP_WSCreateCharacterRequestMsg',13,1),(15,0,0,'OP_WSCreateCharacterReplyMsg',14,1),(16,0,0,'OP_ReskinCharacterRequestMsg',15,1),(17,0,0,'OP_DeleteCharacterRequestMsg',16,1),(18,0,0,'OP_DeleteCharacterReplyMsg',17,1),(19,0,0,'OP_PlayCharacterRequestMsg',18,1),(20,0,0,'OP_PlayCharacterReplyMsg',19,1),(21,0,0,'OP_ExpectClientAsCharacterReplyMs',22,1),(22,0,0,'OP_ServerPlayCharacterRequestMsg',23,1),(23,0,0,'OP_ServerPlayCharacterReplyMsg',24,1),(24,0,0,'OP_ESInitMsg',25,1),(25,0,0,'OP_ESReadyForClientsMsg',26,1),(26,0,0,'OP_CreateZoneInstanceMsg',27,1),(27,0,0,'OP_ZoneInstanceCreateReplyMsg',28,1),(28,0,0,'OP_ZoneInstanceDestroyedMsg',29,1),(29,0,0,'OP_ExpectClientAsCharacterRequest',30,1),(30,0,0,'OP_ZoneInfoMsg',31,1),(31,0,0,'OP_DoneLoadingZoneResourcesMsg',32,1),(32,0,0,'OP_DoneSendingInitialEntitiesMsg',33,1),(33,0,0,'OP_DoneLoadingEntityResourcesMsg',34,1),(34,0,0,'OP_PredictionUpdateMsg',35,1),(35,0,0,'OP_UpdatePositionMsg',36,1),(36,0,0,'OP_SetRemoteCmdsMsg',37,1),(37,0,0,'OP_RemoteCmdMsg',38,1),(38,0,0,'OP_GameWorldTimeMsg',39,1),(39,0,0,'OP_MOTDMsg',40,1),(40,0,0,'OP_ZoneMOTDMsg',41,1),(41,0,0,'OP_AvatarCreatedMsg',42,1),(42,0,0,'OP_AvatarDestroyedMsg',43,1),(43,0,0,'OP_RequestCampMsg',45,1),(44,0,0,'OP_CampStartedMsg',46,1),(45,0,0,'OP_CampAbortedMsg',47,1),(46,0,0,'OP_WhoQueryRequestMsg',48,1),(47,0,0,'OP_WhoQueryReplyMsg',49,1),(48,0,0,'OP_MonitorReplyMsg',50,1),(49,0,0,'OP_Unknown_51',51,1),(50,0,0,'OP_MonitorCharacterListRequestMsg',52,1),(51,0,0,'OP_ClientCmdMsg',53,1),(52,0,0,'OP_DispatchESMsg',54,1),(53,0,0,'OP_DispatchClientCmdMsg',55,1),(54,0,0,'OP_UpdateTargetMsg',56,1),(55,0,0,'OP_UpdateTargetLocMsg',57,1),(56,0,0,'OP_UpdateCharacterSheetMsg',58,1),(57,0,0,'OP_UpdateSpellBookMsg',59,1),(58,0,0,'OP_UpdateInventoryMsg',61,1),(59,0,0,'OP_UpdateRecipeBookMsg',63,1),(60,0,0,'OP_RequestRecipeDetailsMsg',64,1),(61,0,0,'OP_RecipeDetailsMsg',65,1),(62,0,0,'OP_UpdateSkillBookMsg',66,1),(63,0,0,'OP_UpdateSkillsMsg',67,1),(64,0,0,'OP_UpdateOpportunityMsg',68,1),(65,0,0,'OP_ChangeZoneMsg',70,1),(66,0,0,'OP_ClientTeleportRequestMsg',71,1),(67,0,0,'OP_TeleportWithinZoneMsg',72,1),(68,0,0,'OP_TeleportWithinZoneNoReloadMsg',73,1),(69,0,0,'OP_MigrateClientToZoneRequestMsg',74,1),(70,0,0,'OP_MigrateClientToZoneReplyMsg',75,1),(71,0,0,'OP_ReadyToZoneMsg',76,1),(72,0,0,'OP_RemoveClientFromGroupMsg',77,1),(73,0,0,'OP_RemoveGroupFromGroupMsg',78,1),(74,0,0,'OP_MakeGroupLeaderMsg',79,1),(75,0,0,'OP_GroupCreatedMsg',80,1),(76,0,0,'OP_GroupDestroyedMsg',81,1),(77,0,0,'OP_GroupMemberAddedMsg',82,1),(78,0,0,'OP_GroupMemberRemovedMsg',83,1),(79,0,0,'OP_GroupRemovedFromGroupMsg',84,1),(80,0,0,'OP_GroupLeaderChangedMsg',85,1),(81,0,0,'OP_GroupResendOOZDataMsg',86,1),(82,0,0,'OP_GroupSettingsChangedMsg',87,1),(83,0,0,'OP_OutOfZoneMemberDataMsg',88,1),(84,0,0,'OP_SendLatestRequestMsg',89,1),(85,0,0,'OP_ClearDataMsg',90,1),(86,0,0,'OP_SetSocialMsg',91,1),(87,0,0,'OP_ESStatusMsg',92,1),(88,0,0,'OP_ESZoneInstanceStatusMsg',93,1),(89,0,0,'OP_ZonesStatusRequestMsg',94,1),(90,0,0,'OP_ZonesStatusMsg',95,1),(91,0,0,'OP_ESWeatherRequestMsg',96,1),(92,0,0,'OP_ESWeatherRequestEndMsg',97,1),(93,0,0,'OP_DialogSelectMsg',98,1),(94,0,0,'OP_DialogCloseMsg',99,1),(95,0,0,'OP_RemoveSpellEffectMsg',100,1),(96,0,0,'OP_RemoveConcentrationMsg',101,1),(97,0,0,'OP_QuestJournalOpenMsg',104,1),(98,0,0,'OP_QuestJournalInspectMsg',105,1),(99,0,0,'OP_QuestJournalSetVisibleMsg',106,1),(100,0,0,'OP_QuestJournalWaypointMsg',107,1),(101,0,0,'OP_CreateGuildRequestMsg',108,1),(102,0,0,'OP_CreateGuildReplyMsg',109,1),(103,0,0,'OP_GuildsayMsg',110,1),(104,0,0,'OP_GuildUpdateMsg',111,1),(105,0,0,'OP_DeleteGuildMsg',112,1),(106,0,0,'OP_FellowshipExpMsg',113,1),(107,0,0,'OP_ConsignmentCloseStoreMsg',114,1),(108,0,0,'OP_ConsignItemRequestMsg',115,1),(109,0,0,'OP_ConsignItemResponseMsg',116,1),(110,0,0,'OP_PurchaseConsignmentRequestMsg',117,1),(111,0,0,'OP_HouseDeletedRemotelyMsg',118,1),(112,0,0,'OP_UpdateHouseDataMsg',119,1),(113,0,0,'OP_UpdateHouseAccessDataMsg',120,1),(114,0,0,'OP_PlayerHouseBaseScreenMsg',121,1),(115,0,0,'OP_PlayerHousePurchaseScreenMsg',122,1),(116,0,0,'OP_PlayerHouseAccessUpdateMsg',123,1),(117,0,0,'OP_PlayerHouseDisplayStatusMsg',124,1),(118,0,0,'OP_PlayerHouseCloseUIMsg',125,1),(119,0,0,'OP_BuyPlayerHouseMsg',126,1),(120,0,0,'OP_BuyPlayerHouseTintMsg',127,1),(121,0,0,'OP_CollectAllHouseItemsMsg',128,1),(122,0,0,'OP_RelinquishHouseMsg',129,1),(123,0,0,'OP_EnterHouseMsg',130,1),(124,0,0,'OP_ExitHouseMsg',131,1),(125,0,0,'OP_HouseDefaultAccessSetMsg',132,1),(126,0,0,'OP_HouseAccessSetMsg',133,1),(127,0,0,'OP_HouseAccessRemoveMsg',134,1),(128,0,0,'OP_PayHouseUpkeepMsg',135,1),(129,0,0,'OP_MoveableObjectPlacementCriteri',136,1),(130,0,0,'OP_EnterMoveObjectModeMsg',137,1),(131,0,0,'OP_PositionMoveableObject',138,1),(132,0,0,'OP_CancelMoveObjectModeMsg',139,1),(133,0,0,'OP_ShaderCustomizationMsg',140,1),(134,0,0,'OP_ReplaceableSubMeshesMsg',141,1),(135,0,0,'OP_HouseCustomizationScreenMsg',142,1),(136,0,0,'OP_CustomizationPurchaseRequestMs',143,1),(137,0,0,'OP_CustomizationSetRequestMsg',144,1),(138,0,0,'OP_CustomizationReplyMsg',145,1),(139,0,0,'OP_TintWidgetsMsg',146,1),(140,0,0,'OP_ExamineConsignmentRequestMsg',147,1),(141,0,0,'OP_ExamineConsignmentResponseMsg',148,1),(142,0,0,'OP_UISettingsResponseMsg',149,1),(143,0,0,'OP_UIResetMsg',150,1),(144,0,0,'OP_KeymapLoadMsg',151,1),(145,0,0,'OP_KeymapNoneMsg',152,1),(146,0,0,'OP_KeymapDataMsg',153,1),(147,0,0,'OP_KeymapSaveMsg',154,1),(148,0,0,'OP_DispatchSpellCmdMsg',155,1),(149,0,0,'OP_EntityVerbsRequestMsg',157,1),(150,0,0,'OP_EntityVerbsReplyMsg',158,1),(151,0,0,'OP_EntityVerbsVerbMsg',159,1),(152,0,0,'OP_ChatRelationshipUpdateMsg',161,1),(153,0,0,'OP_LootItemsRequestMsg',162,1),(154,0,0,'OP_StoppedLootingMsg',163,1),(155,0,0,'OP_SitMsg',164,1),(156,0,0,'OP_StandMsg',165,1),(157,0,0,'OP_SatMsg',166,1),(158,0,0,'OP_StoodMsg',167,1),(159,0,0,'OP_ClearForTakeOffMsg',168,1),(160,0,0,'OP_ReadyForTakeOffMsg',169,1),(161,0,0,'OP_ShowIllusionsMsg',170,1),(162,0,0,'OP_HideIllusionsMsg',171,1),(163,0,0,'OP_ExamineItemRequestMsg',172,1),(164,0,0,'OP_ReadBookPageMsg',173,1),(165,0,0,'OP_DefaultGroupOptionsRequestMsg',174,1),(166,0,0,'OP_DefaultGroupOptionsMsg',175,1),(167,0,0,'OP_GroupOptionsMsg',176,1),(168,0,0,'OP_DisplayGroupOptionsScreenMsg',177,1),(169,0,0,'OP_DisplayInnVisitScreenMsg',178,1),(170,0,0,'OP_DumpSchedulerMsg',179,1),(171,0,0,'OP_LSRequestPlayerDescMsg',180,1),(172,0,0,'OP_LSCheckAcctLockMsg',181,1),(173,0,0,'OP_WSAcctLockStatusMsg',182,1),(174,0,0,'OP_RequestHelpRepathMsg',183,1),(175,0,0,'OP_RequestTargetLocMsg',184,1),(176,0,0,'OP_UpdateMotdMsg',185,1),(177,0,0,'OP_PerformPlayerKnockbackMsg',186,1),(178,0,0,'OP_PerformCameraShakeMsg',187,1),(179,0,0,'OP_PopulateSkillMapsMsg',188,1),(180,0,0,'OP_CancelledFeignMsg',190,1),(181,0,0,'OP_SignalMsg',191,1),(182,0,0,'OP_ShowCreateFromRecipeUIMsg',192,1),(183,0,0,'OP_CancelCreateFromRecipeMsg',193,1),(184,0,0,'OP_BeginItemCreationMsg',194,1),(185,0,0,'OP_StopItemCreationMsg',195,1),(186,0,0,'OP_ShowItemCreationProcessUIMsg',196,1),(187,0,0,'OP_UpdateItemCreationProcessUIMsg',197,1),(188,0,0,'OP_DisplayTSEventReactionMsg',198,1),(189,0,0,'OP_ShowRecipeBookMsg',199,1),(190,0,0,'OP_KnowledgebaseRequestMsg',200,1),(191,0,0,'OP_KnowledgebaseResponseMsg',201,1),(192,0,0,'OP_CSTicketHeaderRequestMsg',202,1),(193,0,0,'OP_CSTicketInfoMsg',203,1),(194,0,0,'OP_CSTicketCommentRequestMsg',204,1),(195,0,0,'OP_CSTicketCommentResponseMsg',205,1),(196,0,0,'OP_CSTicketCreateMsg',206,1),(197,0,0,'OP_CSTicketAddCommentMsg',207,1),(198,0,0,'OP_CSTicketDeleteMsg',208,1),(199,0,0,'OP_CSTicketChangeNotificationMsg',209,1),(200,0,0,'OP_WorldDataUpdateMsg',210,1),(201,0,0,'OP_KnownLanguagesMsg',211,1),(202,0,0,'OP_LsRequestClientCrashLogMsg',212,1),(203,0,0,'OP_LsClientBaselogReplyMsg',213,1),(204,0,0,'OP_LsClientCrashlogReplyMsg',214,1),(205,0,0,'OP_LsClientAlertlogReplyMsg',215,1),(206,0,0,'OP_LsClientVerifylogReplyMsg',216,1),(207,0,0,'OP_ClientTeleportToLocationMsg',217,1),(208,0,0,'OP_UpdateClientPredFlagsMsg',218,1),(209,0,0,'OP_ChangeServerControlFlagMsg',219,1),(210,0,0,'OP_CSToolsRequestMsg',220,1),(211,0,0,'OP_CSToolsResponseMsg',221,1),(212,0,0,'OP_AddSocialStructureStandingMsg',222,1),(213,0,0,'OP_CreateBoatTransportsMsg',223,1),(214,0,0,'OP_PositionBoatTransportMsg',224,1),(215,0,0,'OP_MigrateBoatTransportMsg',225,1),(216,0,0,'OP_MigrateBoatTransportReplyMsg',226,1),(217,0,0,'OP_DisplayDebugNLLPointsMsg',227,1),(218,0,0,'OP_ExamineInfoRequestMsg',228,1),(219,0,0,'OP_QuickbarInitMsg',229,1),(220,0,0,'OP_QuickbarUpdateMsg',230,1),(221,0,0,'OP_MacroInitMsg',231,1),(222,0,0,'OP_MacroUpdateMsg',232,1),(223,0,0,'OP_QuestionnaireMsg',233,1),(224,0,0,'OP_LevelChangedMsg',234,1),(225,0,0,'OP_SpellGainedMsg',235,1),(226,0,0,'OP_EncounterBrokenMsg',236,1),(227,0,0,'OP_OnscreenMsgMsg',237,1),(228,0,0,'OP_DisplayWarningMsg',238,1),(229,0,0,'OP_ModifyGuildMsg',239,1),(230,0,0,'OP_GuildEventMsg',240,1),(231,0,0,'OP_GuildEventAddMsg',241,1),(232,0,0,'OP_GuildEventActionMsg',242,1),(233,0,0,'OP_GuildEventListMsg',243,1),(234,0,0,'OP_RequestGuildEventDetailsMsg',244,1),(235,0,0,'OP_GuildEventDetailsMsg',245,1),(236,0,0,'OP_RequestGuildInfoMsg',246,1),(237,0,0,'OP_GuildBankActionMsg',247,1),(238,0,0,'OP_GuildBankActionResponseMsg',248,1),(239,0,0,'OP_GuildBankItemDetailsRequestMsg',249,1),(240,0,0,'OP_GuildBankItemDetailsResponseMs',250,1),(241,0,0,'OP_GuildBankUpdateMsg',251,1),(242,0,0,'OP_GuildBankEventListMsg',252,1),(243,0,0,'OP_RequestGuildBankEventDetailsMs',253,1),(244,0,0,'OP_RewardPackMsg',254,1),(245,0,0,'OP_RenameGuildMsg',255,1),(246,0,0,'OP_ZoneToFriendRequestMsg',257,1),(247,0,0,'OP_ZoneToFriendReplyMsg',258,1),(248,0,0,'OP_ChatCreateChannelMsg',259,1),(249,0,0,'OP_ChatJoinChannelMsg',260,1),(250,0,0,'OP_ChatWhoChannelMsg',261,1),(251,0,0,'OP_ChatLeaveChannelMsg',262,1),(252,0,0,'OP_ChatTellChannelMsg',263,1),(253,0,0,'OP_ChatTellUserMsg',264,1),(254,0,0,'OP_ChatToggleFriendMsg',265,1),(255,0,0,'OP_ChatToggleIgnoreMsg',266,1),(256,0,0,'OP_ChatSendFriendsMsg',267,1),(257,0,0,'OP_ChatSendIgnoresMsg',268,1),(258,0,0,'OP_QuestReward',294,1),(259,0,0,'OP_ChatFiltersMsg',309,1),(260,0,0,'OP_MailGetHeadersMsg',310,1),(261,0,0,'OP_MailGetMessageMsg',311,1),(262,0,0,'OP_MailSendMessageMsg',312,1),(263,0,0,'OP_MailDeleteMessageMsg',313,1),(264,0,0,'OP_MailGetHeadersReplyMsg',314,1),(265,0,0,'OP_MailGetMessageReplyMsg',315,1),(266,0,0,'OP_MailSendMessageReplyMsg',316,1),(267,0,0,'OP_MailCommitSendMessageMsg',317,1),(268,0,0,'OP_MailSendSystemMessageMsg',318,1),(269,0,0,'OP_MailRemoveAttachFromMailMsg',319,1),(270,0,0,'OP_WaypointRequestMsg',321,1),(271,0,0,'OP_WaypointReplyMsg',322,1),(272,0,0,'OP_WaypointSelectMsg',323,1),(273,0,0,'OP_WaypointUpdateMsg',324,1),(274,0,0,'OP_CharNameChangedMsg',325,1),(275,0,0,'OP_ShowZoneTeleporterDestinations',326,1),(276,0,0,'OP_SelectZoneTeleporterDestinatio',327,1),(277,0,0,'OP_ReloadLocalizedTxtMsg',328,1),(278,0,0,'OP_RequestGuildMembershipMsg',329,1),(279,0,0,'OP_GuildMembershipResponseMsg',330,1),(280,0,0,'OP_LeaveGuildNotifyMsg',331,1),(281,0,0,'OP_JoinGuildNotifyMsg',332,1),(282,0,0,'OP_AvatarUpdateMsg',334,1),(283,0,0,'OP_BioUpdateMsg',335,1),(284,0,0,'OP_InspectPlayerMsg',336,1),(285,0,0,'OP_WSServerLockMsg',337,1),(286,0,0,'OP_LSServerLockMsg',338,1),(287,0,0,'OP_WSServerHideMsg',339,1),(288,0,0,'OP_CsCategoryRequestMsg',340,1),(289,0,0,'OP_CsCategoryResponseMsg',341,1),(290,0,0,'OP_KnowledgeWindowSlotMappingMsg',342,1),(291,0,0,'OP_LFGUpdateMsg',343,1),(292,0,0,'OP_AFKUpdateMsg',344,1),(293,0,0,'OP_AnonUpdateMsg',345,1),(294,0,0,'OP_UpdateActivePublicZonesMsg',346,1),(295,0,0,'OP_UnknownNpcMsg',347,1),(296,0,0,'OP_PromoFlagsDetailsMsg',348,1),(297,0,0,'OP_ConsignViewCreateMsg',349,1),(298,0,0,'OP_ConsignViewGetPageMsg',350,1),(299,0,0,'OP_ConsignViewReleaseMsg',351,1),(300,0,0,'OP_ConsignRemoveItemsMsg',352,1),(301,0,0,'OP_UpdateDebugRadiiMsg',353,1),(302,0,0,'OP_SnoopMsg',354,1),(303,0,0,'OP_ReportMsg',355,1),(304,0,0,'OP_UpdateRaidMsg',356,1),(305,0,0,'OP_ConsignViewSortMsg',357,1),(306,0,0,'OP_TitleUpdateMsg',358,1),(307,0,0,'OP_ClientFellMsg',359,1),(308,0,0,'OP_ClientInDeathRegionMsg',360,1),(309,0,0,'OP_CampClientMsg',361,1),(310,0,0,'OP_CSToolAccessResponseMsg',362,1),(311,0,0,'OP_TrackingUpdateMsg',363,1),(312,0,0,'OP_BeginTrackingMsg',364,1),(313,0,0,'OP_StopTrackingMsg',365,1),(314,0,0,'OP_GetAvatarAccessRequestForCSToo',366,1),(315,0,0,'OP_AdvancementRequestMsg',367,1),(316,0,0,'OP_UpdateAvgFrameTimeMsg',368,1),(317,0,0,'OP_MapFogDataInitMsg',369,1),(318,0,0,'OP_MapFogDataUpdateMsg',370,1),(319,0,0,'OP_CloseGroupInviteWindowMsg',371,1),(320,0,0,'OP_UpdateGroupMemberDataMsg',372,1),(321,0,0,'OP_WorldPingMsg',373,1),(322,0,0,'OP_MoveLogUpdateMsg',374,1),(323,0,0,'OP_OfferQuestMsg',375,1),(324,0,0,'OP_WorldShutdownUpdateMsg',376,1),(325,0,0,'OP_DisplayMailScreenMsg',377,1),(326,0,0,'OP_ClientIdleBeginMsg',378,1),(327,0,0,'OP_ClientIdleEndMsg',379,1),(328,0,0,'OP_PurchaseConsignmentLoreCheckRe',380,1),(329,0,0,'OP_NotifyApprenticeStoppedMentori',381,1),(330,0,0,'OP_CorruptedClientMsg',382,1),(331,0,0,'OP_WorldDataChangeMsg',383,1),(332,0,0,'OP_MailEventNotificationMsg',384,1),(333,0,0,'OP_RestartZoneMsg',385,1),(334,0,0,'OP_FlightPathsMsg',386,1),(335,0,0,'OP_CharacterLinkdeadMsg',387,1),(336,0,0,'OP_CharTransferStartRequestMsg',388,1),(337,0,0,'OP_CharTransferStartReplyMsg',389,1),(338,0,0,'OP_CharTransferRequestMsg',390,1),(339,0,0,'OP_CharTransferReplyMsg',391,1),(340,0,0,'OP_CharTransferRollbackRequestMsg',392,1),(341,0,0,'OP_CharTransferCommitRequestMsg',393,1),(342,0,0,'OP_CharTransferRollbackReplyMsg',394,1),(343,0,0,'OP_CharTransferCommitReplyMsg',395,1),(344,0,0,'OP_GetCharacterSerializedRequestM',396,1),(345,0,0,'OP_GetCharacterSerializedReplyMsg',397,1),(346,0,0,'OP_CreateCharFromCBBRequestMsg',398,1),(347,0,0,'OP_CreateCharFromCBBReplyMsg',399,1),(348,0,0,'OP_HousingDataChangedMsg',400,1),(349,0,0,'OP_HousingRestoreMsg',401,1),(350,0,0,'OP_AuctionItem',402,1),(351,0,0,'OP_AuctionItemReply',403,1),(352,0,0,'OP_AuctionCoin',404,1),(353,0,0,'OP_AuctionCoinReply',405,1),(354,0,0,'OP_AuctionCharacter',406,1),(355,0,0,'OP_AuctionCharacterReply',407,1),(356,0,0,'OP_AuctionCommitMsg',408,1),(357,0,0,'OP_AuctionAbortMsg',409,1),(358,0,0,'OP_CharTransferValidateRequestMsg',410,1),(359,0,0,'OP_CharTransferValidateReplyMsg',411,1),(360,0,0,'OP_RaceRestrictionMsg',412,1),(361,0,0,'OP_SetInstanceDisplayNameMsg',413,1),(362,0,0,'OP_GetAuctionAssetIDMsg',414,1),(363,0,0,'OP_GetAuctionAssetIDReplyMsg',415,1),(364,0,0,'OP_ResendWorldChannelsMsg',416,1),(365,0,0,'OP_DisplayExchangeScreenMsg',417,1),(366,0,0,'OP_ArenaGameTypesMsg',418,1),(367,0,0,'OP_AuditAuctionEventMsg',420,1),(368,0,0,'OP_InviteRequestMsg',422,1),(369,0,0,'OP_InviteResponseMsg',423,1),(370,0,0,'OP_InviteTargetResponseMsg',424,1),(371,0,0,'OP_InspectPlayerRequestMsg',425,1),(372,0,0,'OP_DispatchMsg',426,1),(373,0,0,'OP_DisplayEventMsg',427,1),(374,0,0,'OP_PrePossessionMsg',428,1),(375,0,0,'OP_PostPossessionMsg',429,1),(376,0,0,'OP_AdventureList',454,1),(377,0,0,'OP_CancelSpellCast',455,1),(378,0,0,'OP_UpdateTitleCmd',461,1),(379,0,0,'OP_AttackAllowed',467,1),(380,0,0,'OP_AttackNotAllowed',468,1),(381,0,0,'OP_DressingRoom',474,1),(382,0,0,'OP_SkillInfoRequest',478,1),(383,0,0,'OP_SkillInfoResponse',479,1),(384,0,0,'OP_EqHearChatCmd',480,1),(385,0,0,'OP_EqDisplayTextCmd',481,1),(386,0,0,'OP_EqCreateGhostCmd',482,1),(387,0,0,'OP_EqCreateWidgetCmd',483,1),(388,0,0,'OP_EqCreateSignWidgetCmd',484,1),(389,0,0,'OP_EqDestroyGhostCmd',485,1),(390,0,0,'OP_EqUpdateGhostCmd',486,1),(391,0,0,'OP_EqSetControlGhostCmd',487,1),(392,0,0,'OP_EqSetPOVGhostCmd',488,1),(393,0,0,'OP_EqHearCombatCmd',489,1),(394,0,0,'OP_EqHearSpellCastCmd',490,1),(395,0,0,'OP_EqHearSpellInterruptCmd',493,1),(396,0,0,'OP_EqHearSpellFizzleCmd',494,1),(397,0,0,'OP_EqHearConsiderCmd',495,1),(398,0,0,'OP_EqUpdateSubClassesCmd',496,1),(399,0,0,'OP_EqCreateListBoxCmd',497,1),(400,0,0,'OP_EqSetDebugPathPointsCmd',498,1),(401,0,0,'OP_EqCannedEmoteCmd',500,1),(402,0,0,'OP_EqStateCmd',501,1),(403,0,0,'OP_EqPlaySoundCmd',502,1),(404,0,0,'OP_EqPlaySound3DCmd',503,1),(405,0,0,'OP_EqPlayVoiceCmd',504,1),(406,0,0,'OP_EqHearDrowningCmd',505,1),(407,0,0,'OP_EqHearDeathCmd',506,1),(408,0,0,'OP_EqGroupMemberRemovedCmd',507,1),(409,0,0,'OP_EqHearChainEffectCmd',508,1),(410,0,0,'OP_EqReceiveOfferCmd',509,1),(411,0,0,'OP_EqInspectPCResultsCmd',510,1),(412,0,0,'OP_EqDrawablePathGraphCmd',511,1),(413,0,0,'OP_EqDialogOpenCmd',512,1),(414,0,0,'OP_EqDialogCloseCmd',513,1),(415,0,0,'OP_EqFactionUpdateCmd',514,1),(416,0,0,'OP_EqCollectionUpdateCmd',515,1),(417,0,0,'OP_EqCollectionFilterCmd',516,1),(418,0,0,'OP_EqCollectionItemCmd',517,1),(419,0,0,'OP_EqQuestJournalUpdateCmd',518,1),(420,0,0,'OP_EqQuestJournalReplyCmd',520,1),(421,0,0,'OP_EqQuestGroupCmd',521,1),(422,0,0,'OP_EqUpdateMerchantCmd',522,1),(423,0,0,'OP_EqUpdateStoreCmd',523,1),(424,0,0,'OP_EqUpdatePlayerTradeCmd',524,1),(425,0,0,'OP_EqHelpPathCmd',525,1),(426,0,0,'OP_EqHelpPathClearCmd',526,1),(427,0,0,'OP_EqUpdateBankCmd',527,1),(428,0,0,'OP_EqExamineInfoCmd',528,1),(429,0,0,'OP_EqCloseWindowCmd',529,1),(430,0,0,'OP_EqUpdateLootCmd',530,1),(431,0,0,'OP_EqJunctionListCmd',531,1),(432,0,0,'OP_EqShowDeathWindowCmd',532,1),(433,0,0,'OP_EqDisplaySpellFailCmd',533,1),(434,0,0,'OP_EqSpellCastStartCmd',534,1),(435,0,0,'OP_EqSpellCastEndCmd',535,1),(436,0,0,'OP_EqResurrectedCmd',536,1),(437,0,0,'OP_EqChoiceWinCmd',537,1),(438,0,0,'OP_EqSetDefaultVerbCmd',538,1),(439,0,0,'OP_EqInstructionWindowCmd',540,1),(440,0,0,'OP_EqInstructionWindowCloseCmd',541,1),(441,0,0,'OP_EqInstructionWindowGoalCmd',542,1),(442,0,0,'OP_EqInstructionWindowTaskCmd',543,1),(443,0,0,'OP_EqEnableGameEventCmd',544,1),(444,0,0,'OP_EqShowWindowCmd',545,1),(445,0,0,'OP_EqEnableWindowCmd',546,1),(446,0,0,'OP_EqFlashWindowCmd',547,1),(447,0,0,'OP_EqHearPlayFlavorCmd',548,1),(448,0,0,'OP_EqUpdateSignWidgetCmd',550,1),(449,0,0,'OP_EqDebugPVDCmd',551,1),(450,0,0,'OP_EqShowBookCmd',552,1),(451,0,0,'OP_EqQuestionnaireCmd',553,1),(452,0,0,'OP_EqGetProbsCmd',554,1),(453,0,0,'OP_EqHearHealCmd',555,1),(454,0,0,'OP_EqChatChannelUpdateCmd',556,1),(455,0,0,'OP_EqWhoChannelQueryReplyCmd',557,1),(456,0,0,'OP_EqAvailWorldChannelsCmd',558,1),(457,0,0,'OP_EqUpdateTargetCmd',559,1),(458,0,0,'OP_EqConsignmentItemsCmd',561,1),(459,0,0,'OP_EqStartBrokerCmd',563,1),(460,0,0,'OP_EqMapExplorationCmd',564,1),(461,0,0,'OP_EqStoreLogCmd',565,1),(462,0,0,'OP_EqSpellMoveToRangeAndRetryCmd',566,1),(463,0,0,'OP_EqUpdatePlayerMailCmd',567,1),(464,0,0,'OP_EqArenaResultsCmd',568,1),(465,0,0,'OP_EqGuildBankEventActionCmd',569,1),(466,0,0,'OP_EqGuildBankExamineInfoCmd',570,1),(467,0,0,'OP_EqHearSpellNoLandCmd',571,1),(468,0,0,'OP_Lottery',572,1),(469,0,0,'OP_GuildRecruitingMemberInfo',573,1),(470,0,0,'OP_GuildRecruiting',574,1),(471,0,0,'OP_GuildRecruitingDetails',575,1),(472,0,0,'OP_GuildRecruitingImage',576,1),(473,0,0,'OP_PointOfInterest',597,1),(474,0,0,'OP_TraitsList',599,1),(475,0,0,'OP_RecipeList',608,1),(476,0,0,'OP_CharacterAchievements',655,1),(477,0,0,'OP_AddClientToGroupMsg',999,1),(478,0,0,'OP_AddGroupToGroupMsg',999,1),(479,0,0,'OP_GuildKickMsg',999,1),(480,0,0,'OP_PurchaseConsignmentResponseMsg',999,1),(481,0,0,'OP_ProcessScriptMsg',999,1),(482,0,0,'OP_ProcessWorkspaceMsg',999,1),(483,0,0,'OP_QuickbarAddMsg',999,1),(484,0,0,'OP_SkillSlotMapping',999,1),(485,0,0,'OP_MapRequest',999,1),(486,0,0,'OP_BadLanguageFilter',999,1),(487,0,0,'OP_Unknown',10000,1),(488,0,0,'OP_WSWeatherUpdateMsg',10012,1),(489,839,844,'OP_LoginRequestMsg',0,1),(490,839,844,'OP_LoginByNumRequestMsg',1,1),(491,839,844,'OP_WSLoginRequestMsg',2,1),(492,839,844,'OP_ESLoginRequestMsg',3,1),(493,839,844,'OP_LoginReplyMsg',4,1),(494,839,844,'OP_WSStatusReplyMsg',5,1),(495,839,844,'OP_WorldStatusChangeMsg',6,1),(496,839,844,'OP_AllWSDescRequestMsg',7,1),(497,839,844,'OP_WorldListMsg',8,1),(498,839,844,'OP_AllCharactersDescRequestMsg',9,1),(499,839,844,'OP_AllCharactersDescReplyMsg',10,1),(500,839,844,'OP_CreateCharacterRequestMsg',11,1),(501,839,844,'OP_CreateCharacterReplyMsg',12,1),(502,839,844,'OP_WSCreateCharacterRequestMsg',13,1),(503,839,844,'OP_WSCreateCharacterReplyMsg',14,1),(504,839,844,'OP_ReskinCharacterRequestMsg',15,1),(505,839,844,'OP_DeleteCharacterRequestMsg',16,1),(506,839,844,'OP_DeleteCharacterReplyMsg',17,1),(507,839,844,'OP_PlayCharacterRequestMsg',18,1),(508,839,844,'OP_PlayCharacterReplyMsg',19,1),(509,839,844,'OP_ExpectClientAsCharacterReplyMs',22,1),(510,839,844,'OP_ServerPlayCharacterRequestMsg',23,1),(511,839,844,'OP_ServerPlayCharacterReplyMsg',24,1),(512,839,844,'OP_ESInitMsg',25,1),(513,839,844,'OP_ESReadyForClientsMsg',26,1),(514,839,844,'OP_CreateZoneInstanceMsg',27,1),(515,839,844,'OP_ZoneInstanceCreateReplyMsg',28,1),(516,839,844,'OP_ZoneInstanceDestroyedMsg',29,1),(517,839,844,'OP_ExpectClientAsCharacterRequest',30,1),(518,839,844,'OP_ZoneInfoMsg',31,1),(519,839,844,'OP_DoneLoadingZoneResourcesMsg',32,1),(520,839,844,'OP_DoneSendingInitialEntitiesMsg',33,1),(521,839,844,'OP_DoneLoadingEntityResourcesMsg',34,1),(522,839,844,'OP_PredictionUpdateMsg',35,1),(523,839,844,'OP_UpdatePositionMsg',36,1),(524,839,844,'OP_SetRemoteCmdsMsg',37,1),(525,839,844,'OP_RemoteCmdMsg',38,1),(526,839,844,'OP_GameWorldTimeMsg',39,1),(527,839,844,'OP_MOTDMsg',40,1),(528,839,844,'OP_ZoneMOTDMsg',41,1),(529,839,844,'OP_AvatarCreatedMsg',42,1),(530,839,844,'OP_AvatarDestroyedMsg',43,1),(531,839,844,'OP_RequestCampMsg',45,1),(532,839,844,'OP_CampStartedMsg',46,1),(533,839,844,'OP_CampAbortedMsg',47,1),(534,839,844,'OP_WhoQueryRequestMsg',48,1),(535,839,844,'OP_WhoQueryReplyMsg',49,1),(536,839,844,'OP_MonitorReplyMsg',50,1),(537,839,844,'OP_MonitorCharacterListMsg',51,1),(538,839,844,'OP_MonitorCharacterListRequestMsg',52,1),(539,839,844,'OP_ClientCmdMsg',53,1),(540,839,844,'OP_DispatchESMsg',54,1),(541,839,844,'OP_DispatchClientCmdMsg',55,1),(542,839,844,'OP_UpdateTargetMsg',56,1),(543,839,844,'OP_UpdateTargetLocMsg',57,1),(544,839,844,'OP_UpdateCharacterSheetMsg',58,1),(545,839,844,'OP_UpdateSpellBookMsg',59,1),(546,839,844,'OP_UpdateInventoryMsg',61,1),(547,839,844,'OP_UpdateRecipeBookMsg',63,1),(548,839,844,'OP_RequestRecipeDetailsMsg',64,1),(549,839,844,'OP_RecipeDetailsMsg',65,1),(550,839,844,'OP_UpdateSkillBookMsg',66,1),(551,839,844,'OP_UpdateSkillsMsg',67,1),(552,839,844,'OP_UpdateOpportunityMsg',68,1),(553,839,844,'OP_ChangeZoneMsg',70,1),(554,839,844,'OP_ClientTeleportRequestMsg',71,1),(555,839,844,'OP_TeleportWithinZoneMsg',72,1),(556,839,844,'OP_TeleportWithinZoneNoReloadMsg',73,1),(557,839,844,'OP_MigrateClientToZoneRequestMsg',74,1),(558,839,844,'OP_MigrateClientToZoneReplyMsg',75,1),(559,839,844,'OP_ReadyToZoneMsg',76,1),(560,839,844,'OP_RemoveClientFromGroupMsg',77,1),(561,839,844,'OP_RemoveGroupFromGroupMsg',78,1),(562,839,844,'OP_MakeGroupLeaderMsg',79,1),(563,839,844,'OP_GroupCreatedMsg',80,1),(564,839,844,'OP_GroupDestroyedMsg',81,1),(565,839,844,'OP_GroupMemberAddedMsg',82,1),(566,839,844,'OP_GroupMemberRemovedMsg',83,1),(567,839,844,'OP_GroupRemovedFromGroupMsg',84,1),(568,839,844,'OP_GroupLeaderChangedMsg',85,1),(569,839,844,'OP_GroupResendOOZDataMsg',86,1),(570,839,844,'OP_GroupSettingsChangedMsg',87,1),(571,839,844,'OP_OutOfZoneMemberDataMsg',88,1),(572,839,844,'OP_SendLatestRequestMsg',89,1),(573,839,844,'OP_ClearDataMsg',90,1),(574,839,844,'OP_SetSocialMsg',91,1),(575,839,844,'OP_ESStatusMsg',92,1),(576,839,844,'OP_ESZoneInstanceStatusMsg',93,1),(577,839,844,'OP_ZonesStatusRequestMsg',94,1),(578,839,844,'OP_ZonesStatusMsg',95,1),(579,839,844,'OP_ESWeatherRequestMsg',96,1),(580,839,844,'OP_ESWeatherRequestEndMsg',97,1),(581,839,844,'OP_DialogSelectMsg',98,1),(582,839,844,'OP_DialogCloseMsg',99,1),(583,839,844,'OP_RemoveSpellEffectMsg',100,1),(584,839,844,'OP_RemoveConcentrationMsg',101,1),(585,839,844,'OP_QuestJournalOpenMsg',102,1),(586,839,844,'OP_QuestJournalInspectMsg',103,1),(587,839,844,'OP_QuestJournalSetVisibleMsg',104,1),(588,839,844,'OP_QuestJournalWaypointMsg',105,1),(589,839,844,'OP_CreateGuildRequestMsg',108,1),(590,839,844,'OP_CreateGuildReplyMsg',109,1),(591,839,844,'OP_GuildsayMsg',110,1),(592,839,844,'OP_GuildUpdateMsg',111,1),(593,839,844,'OP_DeleteGuildMsg',112,1),(594,839,844,'OP_FellowshipExpMsg',113,1),(595,839,844,'OP_ConsignmentCloseStoreMsg',114,1),(596,839,844,'OP_ConsignItemRequestMsg',115,1),(597,839,844,'OP_ConsignItemResponseMsg',116,1),(598,839,844,'OP_PurchaseConsignmentRequestMsg',117,1),(599,839,844,'OP_HouseDeletedRemotelyMsg',118,1),(600,839,844,'OP_UpdateHouseDataMsg',119,1),(601,839,844,'OP_UpdateHouseAccessDataMsg',120,1),(602,839,844,'OP_PlayerHouseBaseScreenMsg',121,1),(603,839,844,'OP_PlayerHousePurchaseScreenMsg',122,1),(604,839,844,'OP_PlayerHouseAccessUpdateMsg',123,1),(605,839,844,'OP_PlayerHouseDisplayStatusMsg',124,1),(606,839,844,'OP_PlayerHouseCloseUIMsg',125,1),(607,839,844,'OP_BuyPlayerHouseMsg',126,1),(608,839,844,'OP_BuyPlayerHouseTintMsg',127,1),(609,839,844,'OP_CollectAllHouseItemsMsg',128,1),(610,839,844,'OP_RelinquishHouseMsg',129,1),(611,839,844,'OP_EnterHouseMsg',130,1),(612,839,844,'OP_ExitHouseMsg',131,1),(613,839,844,'OP_HouseDefaultAccessSetMsg',132,1),(614,839,844,'OP_HouseAccessSetMsg',133,1),(615,839,844,'OP_HouseAccessRemoveMsg',134,1),(616,839,844,'OP_PayHouseUpkeepMsg',135,1),(617,839,844,'OP_MoveableObjectPlacementCriteri',136,1),(618,839,844,'OP_EnterMoveObjectModeMsg',137,1),(619,839,844,'OP_PositionMoveableObject',138,1),(620,839,844,'OP_CancelMoveObjectModeMsg',139,1),(621,839,844,'OP_ShaderCustomizationMsg',140,1),(622,839,844,'OP_ReplaceableSubMeshesMsg',141,1),(623,839,844,'OP_HouseCustomizationScreenMsg',142,1),(624,839,844,'OP_CustomizationPurchaseRequestMs',143,1),(625,839,844,'OP_CustomizationSetRequestMsg',144,1),(626,839,844,'OP_CustomizationReplyMsg',145,1),(627,839,844,'OP_TintWidgetsMsg',146,1),(628,839,844,'OP_ExamineConsignmentRequestMsg',147,1),(629,839,844,'OP_ExamineConsignmentResponseMsg',148,1),(630,839,844,'OP_UISettingsResponseMsg',149,1),(631,839,844,'OP_UIResetMsg',150,1),(632,839,844,'OP_KeymapLoadMsg',151,1),(633,839,844,'OP_KeymapNoneMsg',152,1),(634,839,844,'OP_KeymapDataMsg',153,1),(635,839,844,'OP_KeymapSaveMsg',154,1),(636,839,844,'OP_DispatchSpellCmdMsg',155,1),(637,839,844,'OP_EntityVerbsRequestMsg',157,1),(638,839,844,'OP_EntityVerbsReplyMsg',158,1),(639,839,844,'OP_EntityVerbsVerbMsg',159,1),(640,839,844,'OP_ChatRelationshipUpdateMsg',161,1),(641,839,844,'OP_LootItemsRequestMsg',162,1),(642,839,844,'OP_StoppedLootingMsg',163,1),(643,839,844,'OP_SitMsg',164,1),(644,839,844,'OP_StandMsg',165,1),(645,839,844,'OP_SatMsg',166,1),(646,839,844,'OP_StoodMsg',167,1),(647,839,844,'OP_ClearForTakeOffMsg',168,1),(648,839,844,'OP_ReadyForTakeOffMsg',169,1),(649,839,844,'OP_ShowIllusionsMsg',170,1),(650,839,844,'OP_HideIllusionsMsg',171,1),(651,839,844,'OP_ExamineItemRequestMsg',172,1),(652,839,844,'OP_ReadBookPageMsg',173,1),(653,839,844,'OP_DefaultGroupOptionsRequestMsg',174,1),(654,839,844,'OP_DefaultGroupOptionsMsg',175,1),(655,839,844,'OP_GroupOptionsMsg',176,1),(656,839,844,'OP_DisplayGroupOptionsScreenMsg',177,1),(657,839,844,'OP_DisplayInnVisitScreenMsg',178,1),(658,839,844,'OP_DumpSchedulerMsg',179,1),(659,839,844,'OP_LSRequestPlayerDescMsg',180,1),(660,839,844,'OP_LSCheckAcctLockMsg',181,1),(661,839,844,'OP_WSAcctLockStatusMsg',182,1),(662,839,844,'OP_RequestHelpRepathMsg',183,1),(663,839,844,'OP_RequestTargetLocMsg',184,1),(664,839,844,'OP_UpdateMotdMsg',185,1),(665,839,844,'OP_PerformPlayerKnockbackMsg',186,1),(666,839,844,'OP_PerformCameraShakeMsg',187,1),(667,839,844,'OP_PopulateSkillMapsMsg',188,1),(668,839,844,'OP_CancelledFeignMsg',190,1),(669,839,844,'OP_SignalMsg',191,1),(670,839,844,'OP_ShowCreateFromRecipeUIMsg',192,1),(671,839,844,'OP_CancelCreateFromRecipeMsg',193,1),(672,839,844,'OP_BeginItemCreationMsg',194,1),(673,839,844,'OP_StopItemCreationMsg',195,1),(674,839,844,'OP_ShowItemCreationProcessUIMsg',196,1),(675,839,844,'OP_UpdateItemCreationProcessUIMsg',197,1),(676,839,844,'OP_DisplayTSEventReactionMsg',198,1),(677,839,844,'OP_ShowRecipeBookMsg',199,1),(678,839,844,'OP_KnowledgebaseRequestMsg',200,1),(679,839,844,'OP_KnowledgebaseResponseMsg',201,1),(680,839,844,'OP_CSTicketHeaderRequestMsg',202,1),(681,839,844,'OP_CSTicketInfoMsg',203,1),(682,839,844,'OP_CSTicketCommentRequestMsg',204,1),(683,839,844,'OP_CSTicketCommentResponseMsg',205,1),(684,839,844,'OP_CSTicketCreateMsg',206,1),(685,839,844,'OP_CSTicketAddCommentMsg',207,1),(686,839,844,'OP_CSTicketDeleteMsg',208,1),(687,839,844,'OP_CSTicketChangeNotificationMsg',209,1),(688,839,844,'OP_WorldDataUpdateMsg',210,1),(689,839,844,'OP_KnownLanguagesMsg',211,1),(690,839,844,'OP_LsRequestClientCrashLogMsg',212,1),(691,839,844,'OP_LsClientBaselogReplyMsg',213,1),(692,839,844,'OP_LsClientCrashlogReplyMsg',214,1),(693,839,844,'OP_LsClientAlertlogReplyMsg',215,1),(694,839,844,'OP_LsClientVerifylogReplyMsg',216,1),(695,839,844,'OP_ClientTeleportToLocationMsg',217,1),(696,839,844,'OP_UpdateClientPredFlagsMsg',218,1),(697,839,844,'OP_ChangeServerControlFlagMsg',219,1),(698,839,844,'OP_CSToolsRequestMsg',220,1),(699,839,844,'OP_CSToolsResponseMsg',221,1),(700,839,844,'OP_AddSocialStructureStandingMsg',222,1),(701,839,844,'OP_CreateBoatTransportsMsg',223,1),(702,839,844,'OP_PositionBoatTransportMsg',224,1),(703,839,844,'OP_MigrateBoatTransportMsg',225,1),(704,839,844,'OP_MigrateBoatTransportReplyMsg',226,1),(705,839,844,'OP_DisplayDebugNLLPointsMsg',227,1),(706,839,844,'OP_ExamineInfoRequestMsg',228,1),(707,839,844,'OP_QuickbarInitMsg',229,1),(708,839,844,'OP_QuickbarUpdateMsg',230,1),(709,839,844,'OP_MacroInitMsg',231,1),(710,839,844,'OP_MacroUpdateMsg',232,1),(711,839,844,'OP_QuestionnaireMsg',233,1),(712,839,844,'OP_LevelChangedMsg',234,1),(713,839,844,'OP_SpellGainedMsg',235,1),(714,839,844,'OP_EncounterBrokenMsg',236,1),(715,839,844,'OP_OnscreenMsgMsg',237,1),(716,839,844,'OP_DisplayWarningMsg',238,1),(717,839,844,'OP_ModifyGuildMsg',239,1),(718,839,844,'OP_GuildEventMsg',240,1),(719,839,844,'OP_GuildEventAddMsg',241,1),(720,839,844,'OP_GuildEventActionMsg',242,1),(721,839,844,'OP_GuildEventListMsg',243,1),(722,839,844,'OP_RequestGuildEventDetailsMsg',244,1),(723,839,844,'OP_GuildEventDetailsMsg',245,1),(724,839,844,'OP_RequestGuildInfoMsg',246,1),(725,839,844,'OP_GuildBankActionMsg',247,1),(726,839,844,'OP_GuildBankActionResponseMsg',248,1),(727,839,844,'OP_GuildBankItemDetailsRequestMsg',249,1),(728,839,844,'OP_GuildBankItemDetailsResponseMs',250,1),(729,839,844,'OP_GuildBankUpdateMsg',251,1),(730,839,844,'OP_GuildBankEventListMsg',252,1),(731,839,844,'OP_RequestGuildBankEventDetailsMs',253,1),(732,839,844,'OP_RewardPackMsg',254,1),(733,839,844,'OP_RenameGuildMsg',255,1),(734,839,844,'OP_ZoneToFriendRequestMsg',257,1),(735,839,844,'OP_ZoneToFriendReplyMsg',258,1),(736,839,844,'OP_ChatCreateChannelMsg',259,1),(737,839,844,'OP_ChatJoinChannelMsg',260,1),(738,839,844,'OP_ChatWhoChannelMsg',261,1),(739,839,844,'OP_ChatLeaveChannelMsg',262,1),(740,839,844,'OP_ChatTellChannelMsg',263,1),(741,839,844,'OP_ChatTellUserMsg',264,1),(742,839,844,'OP_ChatToggleFriendMsg',265,1),(743,839,844,'OP_ChatToggleIgnoreMsg',266,1),(744,839,844,'OP_ChatSendFriendsMsg',267,1),(745,839,844,'OP_ChatSendIgnoresMsg',268,1),(746,839,844,'OP_QuestReward',294,1),(747,839,844,'OP_ChatFiltersMsg',309,1),(748,839,844,'OP_MailGetHeadersMsg',310,1),(749,839,844,'OP_MailGetMessageMsg',311,1),(750,839,844,'OP_MailSendMessageMsg',312,1),(751,839,844,'OP_MailDeleteMessageMsg',313,1),(752,839,844,'OP_MailGetHeadersReplyMsg',314,1),(753,839,844,'OP_MailGetMessageReplyMsg',315,1),(754,839,844,'OP_MailSendMessageReplyMsg',316,1),(755,839,844,'OP_MailCommitSendMessageMsg',317,1),(756,839,844,'OP_MailSendSystemMessageMsg',318,1),(757,839,844,'OP_MailRemoveAttachFromMailMsg',319,1),(758,839,844,'OP_WaypointRequestMsg',321,1),(759,839,844,'OP_WaypointReplyMsg',322,1),(760,839,844,'OP_WaypointSelectMsg',323,1),(761,839,844,'OP_WaypointUpdateMsg',324,1),(762,839,844,'OP_CharNameChangedMsg',325,1),(763,839,844,'OP_ShowZoneTeleporterDestinations',326,1),(764,839,844,'OP_SelectZoneTeleporterDestinatio',327,1),(765,839,844,'OP_ReloadLocalizedTxtMsg',328,1),(766,839,844,'OP_RequestGuildMembershipMsg',329,1),(767,839,844,'OP_GuildMembershipResponseMsg',330,1),(768,839,844,'OP_LeaveGuildNotifyMsg',331,1),(769,839,844,'OP_JoinGuildNotifyMsg',332,1),(770,839,844,'OP_AvatarUpdateMsg',334,1),(771,839,844,'OP_BioUpdateMsg',335,1),(772,839,844,'OP_InspectPlayerMsg',336,1),(773,839,844,'OP_WSServerLockMsg',337,1),(774,839,844,'OP_LSServerLockMsg',338,1),(775,839,844,'OP_WSServerHideMsg',339,1),(776,839,844,'OP_CsCategoryRequestMsg',340,1),(777,839,844,'OP_CsCategoryResponseMsg',341,1),(778,839,844,'OP_KnowledgeWindowSlotMappingMsg',342,1),(779,839,844,'OP_LFGUpdateMsg',343,1),(780,839,844,'OP_AFKUpdateMsg',344,1),(781,839,844,'OP_AnonUpdateMsg',345,1),(782,839,844,'OP_UpdateActivePublicZonesMsg',346,1),(783,839,844,'OP_UnknownNpcMsg',347,1),(784,839,844,'OP_PromoFlagsDetailsMsg',348,1),(785,839,844,'OP_ConsignViewCreateMsg',349,1),(786,839,844,'OP_ConsignViewGetPageMsg',350,1),(787,839,844,'OP_ConsignViewReleaseMsg',351,1),(788,839,844,'OP_ConsignRemoveItemsMsg',352,1),(789,839,844,'OP_UpdateDebugRadiiMsg',353,1),(790,839,844,'OP_SnoopMsg',354,1),(791,839,844,'OP_ReportMsg',355,1),(792,839,844,'OP_UpdateRaidMsg',356,1),(793,839,844,'OP_ConsignViewSortMsg',357,1),(794,839,844,'OP_TitleUpdateMsg',358,1),(795,839,844,'OP_ClientFellMsg',359,1),(796,839,844,'OP_ClientInDeathRegionMsg',360,1),(797,839,844,'OP_CampClientMsg',361,1),(798,839,844,'OP_CSToolAccessResponseMsg',362,1),(799,839,844,'OP_TrackingUpdateMsg',363,1),(800,839,844,'OP_BeginTrackingMsg',364,1),(801,839,844,'OP_StopTrackingMsg',365,1),(802,839,844,'OP_GetAvatarAccessRequestForCSToo',366,1),(803,839,844,'OP_AdvancementRequestMsg',367,1),(804,839,844,'OP_UpdateAvgFrameTimeMsg',368,1),(805,839,844,'OP_MapFogDataInitMsg',369,1),(806,839,844,'OP_MapFogDataUpdateMsg',370,1),(807,839,844,'OP_CloseGroupInviteWindowMsg',371,1),(808,839,844,'OP_UpdateGroupMemberDataMsg',372,1),(809,839,844,'OP_WorldPingMsg',373,1),(810,839,844,'OP_MoveLogUpdateMsg',374,1),(811,839,844,'OP_OfferQuestMsg',375,1),(812,839,844,'OP_WorldShutdownUpdateMsg',376,1),(813,839,844,'OP_DisplayMailScreenMsg',377,1),(814,839,844,'OP_ClientIdleBeginMsg',378,1),(815,839,844,'OP_ClientIdleEndMsg',379,1),(816,839,844,'OP_PurchaseConsignmentLoreCheckRe',380,1),(817,839,844,'OP_NotifyApprenticeStoppedMentori',381,1),(818,839,844,'OP_CorruptedClientMsg',382,1),(819,839,844,'OP_WorldDataChangeMsg',383,1),(820,839,844,'OP_MailEventNotificationMsg',384,1),(821,839,844,'OP_RestartZoneMsg',385,1),(822,839,844,'OP_FlightPathsMsg',386,1),(823,839,844,'OP_CharacterLinkdeadMsg',387,1),(824,839,844,'OP_CharTransferStartRequestMsg',388,1),(825,839,844,'OP_CharTransferStartReplyMsg',389,1),(826,839,844,'OP_CharTransferRequestMsg',390,1),(827,839,844,'OP_CharTransferReplyMsg',391,1),(828,839,844,'OP_CharTransferRollbackRequestMsg',392,1),(829,839,844,'OP_CharTransferCommitRequestMsg',393,1),(830,839,844,'OP_CharTransferRollbackReplyMsg',394,1),(831,839,844,'OP_CharTransferCommitReplyMsg',395,1),(832,839,844,'OP_GetCharacterSerializedRequestM',396,1),(833,839,844,'OP_GetCharacterSerializedReplyMsg',397,1),(834,839,844,'OP_CreateCharFromCBBRequestMsg',398,1),(835,839,844,'OP_CreateCharFromCBBReplyMsg',399,1),(836,839,844,'OP_HousingDataChangedMsg',400,1),(837,839,844,'OP_HousingRestoreMsg',401,1),(838,839,844,'OP_AuctionItem',402,1),(839,839,844,'OP_AuctionItemReply',403,1),(840,839,844,'OP_AuctionCoin',404,1),(841,839,844,'OP_AuctionCoinReply',405,1),(842,839,844,'OP_AuctionCharacter',406,1),(843,839,844,'OP_AuctionCharacterReply',407,1),(844,839,844,'OP_AuctionCommitMsg',408,1),(845,839,844,'OP_AuctionAbortMsg',409,1),(846,839,844,'OP_CharTransferValidateRequestMsg',410,1),(847,839,844,'OP_CharTransferValidateReplyMsg',411,1),(848,839,844,'OP_RaceRestrictionMsg',412,1),(849,839,844,'OP_SetInstanceDisplayNameMsg',413,1),(850,839,844,'OP_GetAuctionAssetIDMsg',414,1),(851,839,844,'OP_GetAuctionAssetIDReplyMsg',415,1),(852,839,844,'OP_ResendWorldChannelsMsg',416,1),(853,839,844,'OP_DisplayExchangeScreenMsg',417,1),(854,839,844,'OP_ArenaGameTypesMsg',418,1),(855,839,844,'OP_AuditAuctionEventMsg',420,1),(856,839,844,'OP_InviteRequestMsg',422,1),(857,839,844,'OP_InviteResponseMsg',423,1),(858,839,844,'OP_InviteTargetResponseMsg',424,1),(859,839,844,'OP_InspectPlayerRequestMsg',425,1),(860,839,844,'OP_DispatchMsg',426,1),(861,839,844,'OP_DisplayEventMsg',427,1),(862,839,844,'OP_PrePossessionMsg',428,1),(863,839,844,'OP_PostPossessionMsg',429,1),(864,839,844,'OP_AdventureList',454,1),(865,839,844,'OP_CancelSpellCast',455,1),(866,839,844,'OP_UpdateTitleCmd',461,1),(867,839,844,'OP_AttackAllowed',467,1),(868,839,844,'OP_AttackNotAllowed',468,1),(869,839,844,'OP_DressingRoom',474,1),(870,839,844,'OP_SkillInfoRequest',478,1),(871,839,844,'OP_SkillInfoResponse',479,1),(872,839,844,'OP_EqHearChatCmd',480,1),(873,839,844,'OP_EqDisplayTextCmd',481,1),(874,839,844,'OP_EqCreateGhostCmd',482,1),(875,839,844,'OP_EqCreateWidgetCmd',483,1),(876,839,844,'OP_EqCreateSignWidgetCmd',484,1),(877,839,844,'OP_EqDestroyGhostCmd',485,1),(878,839,844,'OP_EqUpdateGhostCmd',486,1),(879,839,844,'OP_EqSetControlGhostCmd',487,1),(880,839,844,'OP_EqSetPOVGhostCmd',488,1),(881,839,844,'OP_EqHearCombatCmd',489,1),(882,839,844,'OP_EqHearSpellCastCmd',490,1),(883,839,844,'OP_EqHearSpellInterruptCmd',493,1),(884,839,844,'OP_EqHearSpellFizzleCmd',494,1),(885,839,844,'OP_EqHearConsiderCmd',495,1),(886,839,844,'OP_EqUpdateSubClassesCmd',496,1),(887,839,844,'OP_EqCreateListBoxCmd',497,1),(888,839,844,'OP_EqSetDebugPathPointsCmd',498,1),(889,839,844,'OP_EqCannedEmoteCmd',500,1),(890,839,844,'OP_EqStateCmd',501,1),(891,839,844,'OP_EqPlaySoundCmd',502,1),(892,839,844,'OP_EqPlaySound3DCmd',503,1),(893,839,844,'OP_EqPlayVoiceCmd',504,1),(894,839,844,'OP_EqHearDrowningCmd',505,1),(895,839,844,'OP_EqHearDeathCmd',506,1),(896,839,844,'OP_EqGroupMemberRemovedCmd',507,1),(897,839,844,'OP_EqHearChainEffectCmd',508,1),(898,839,844,'OP_EqReceiveOfferCmd',509,1),(899,839,844,'OP_EqInspectPCResultsCmd',510,1),(900,839,844,'OP_EqDrawablePathGraphCmd',511,1),(901,839,844,'OP_EqDialogOpenCmd',512,1),(902,839,844,'OP_EqDialogCloseCmd',513,1),(903,839,844,'OP_EqFactionUpdateCmd',514,1),(904,839,844,'OP_EqCollectionUpdateCmd',515,1),(905,839,844,'OP_EqCollectionFilterCmd',516,1),(906,839,844,'OP_EqCollectionItemCmd',517,1),(907,839,844,'OP_EqQuestJournalUpdateCmd',518,1),(908,839,844,'OP_EqQuestJournalReplyCmd',520,1),(909,839,844,'OP_EqQuestGroupCmd',521,1),(910,839,844,'OP_EqUpdateMerchantCmd',522,1),(911,839,844,'OP_EqUpdateStoreCmd',523,1),(912,839,844,'OP_EqUpdatePlayerTradeCmd',524,1),(913,839,844,'OP_EqHelpPathCmd',525,1),(914,839,844,'OP_EqHelpPathClearCmd',526,1),(915,839,844,'OP_EqUpdateBankCmd',527,1),(916,839,844,'OP_EqExamineInfoCmd',528,1),(917,839,844,'OP_EqCloseWindowCmd',529,1),(918,839,844,'OP_EqUpdateLootCmd',530,1),(919,839,844,'OP_EqJunctionListCmd',531,1),(920,839,844,'OP_EqShowDeathWindowCmd',532,1),(921,839,844,'OP_EqDisplaySpellFailCmd',533,1),(922,839,844,'OP_EqSpellCastStartCmd',534,1),(923,839,844,'OP_EqSpellCastEndCmd',535,1),(924,839,844,'OP_EqResurrectedCmd',536,1),(925,839,844,'OP_EqChoiceWinCmd',537,1),(926,839,844,'OP_EqSetDefaultVerbCmd',538,1),(927,839,844,'OP_EqInstructionWindowCmd',540,1),(928,839,844,'OP_EqInstructionWindowCloseCmd',541,1),(929,839,844,'OP_EqInstructionWindowGoalCmd',542,1),(930,839,844,'OP_EqInstructionWindowTaskCmd',543,1),(931,839,844,'OP_EqEnableGameEventCmd',544,1),(932,839,844,'OP_EqShowWindowCmd',545,1),(933,839,844,'OP_EqEnableWindowCmd',546,1),(934,839,844,'OP_EqFlashWindowCmd',547,1),(935,839,844,'OP_EqHearPlayFlavorCmd',548,1),(936,839,844,'OP_EqUpdateSignWidgetCmd',550,1),(937,839,844,'OP_EqDebugPVDCmd',551,1),(938,839,844,'OP_EqShowBookCmd',552,1),(939,839,844,'OP_EqQuestionnaireCmd',553,1),(940,839,844,'OP_EqGetProbsCmd',554,1),(941,839,844,'OP_EqHearHealCmd',555,1),(942,839,844,'OP_EqChatChannelUpdateCmd',556,1),(943,839,844,'OP_EqWhoChannelQueryReplyCmd',557,1),(944,839,844,'OP_EqAvailWorldChannelsCmd',558,1),(945,839,844,'OP_EqUpdateTargetCmd',559,1),(946,839,844,'OP_EqConsignmentItemsCmd',561,1),(947,839,844,'OP_EqStartBrokerCmd',563,1),(948,839,844,'OP_EqMapExplorationCmd',564,1),(949,839,844,'OP_EqStoreLogCmd',565,1),(950,839,844,'OP_EqSpellMoveToRangeAndRetryCmd',566,1),(951,839,844,'OP_EqUpdatePlayerMailCmd',567,1),(952,839,844,'OP_EqArenaResultsCmd',568,1),(953,839,844,'OP_EqGuildBankEventActionCmd',569,1),(954,839,844,'OP_EqGuildBankExamineInfoCmd',570,1),(955,839,844,'OP_EqHearSpellNoLandCmd',571,1),(956,839,844,'OP_Lottery',572,1),(957,839,844,'OP_GuildRecruitingMemberInfo',573,1),(958,839,844,'OP_GuildRecruiting',574,1),(959,839,844,'OP_GuildRecruitingDetails',575,1),(960,839,844,'OP_GuildRecruitingImage',576,1),(961,839,844,'OP_PointOfInterest',597,1),(962,839,844,'OP_TraitsList',599,1),(963,839,844,'OP_RecipeList',608,1),(964,839,844,'OP_CharacterAchievements',655,1),(965,839,844,'OP_AddClientToGroupMsg',999,1),(966,839,844,'OP_AddGroupToGroupMsg',999,1),(967,839,844,'OP_GuildKickMsg',999,1),(968,839,844,'OP_PurchaseConsignmentResponseMsg',999,1),(969,839,844,'OP_ProcessScriptMsg',999,1),(970,839,844,'OP_ProcessWorkspaceMsg',999,1),(971,839,844,'OP_QuickbarAddMsg',999,1),(972,839,844,'OP_SkillSlotMapping',999,1),(973,839,844,'OP_MapRequest',999,1),(974,839,844,'OP_BadLanguageFilter',999,1),(975,839,844,'OP_Unknown',10000,1),(976,839,844,'OP_WSWeatherUpdateMsg',10012,1),(977,908,927,'OP_LoginRequestMsg',0,1),(978,908,927,'OP_LoginByNumRequestMsg',1,1),(979,908,927,'OP_WSLoginRequestMsg',2,1),(980,908,927,'OP_ESLoginRequestMsg',3,1),(981,908,927,'OP_LoginReplyMsg',4,1),(982,908,927,'OP_WSStatusReplyMsg',5,1),(983,908,927,'OP_WorldStatusChangeMsg',6,1),(984,908,927,'OP_AllWSDescRequestMsg',7,1),(985,908,927,'OP_WorldListMsg',8,1),(986,908,927,'OP_AllCharactersDescRequestMsg',9,1),(987,908,927,'OP_AllCharactersDescReplyMsg',10,1),(988,908,927,'OP_CreateCharacterRequestMsg',11,1),(989,908,927,'OP_CreateCharacterReplyMsg',12,1),(990,908,927,'OP_WSCreateCharacterRequestMsg',13,1),(991,908,927,'OP_WSCreateCharacterReplyMsg',14,1),(992,908,927,'OP_ReskinCharacterRequestMsg',15,1),(993,908,927,'OP_DeleteCharacterRequestMsg',16,1),(994,908,927,'OP_DeleteCharacterReplyMsg',17,1),(995,908,927,'OP_PlayCharacterRequestMsg',18,1),(996,908,927,'OP_PlayCharacterReplyMsg',19,1),(997,908,927,'OP_ExpectClientAsCharacterReplyMs',22,1),(998,908,927,'OP_ServerPlayCharacterRequestMsg',23,1),(999,908,927,'OP_ServerPlayCharacterReplyMsg',24,1),(1000,908,927,'OP_ESInitMsg',25,1),(1001,908,927,'OP_ESReadyForClientsMsg',26,1),(1002,908,927,'OP_CreateZoneInstanceMsg',27,1),(1003,908,927,'OP_ZoneInstanceCreateReplyMsg',28,1),(1004,908,927,'OP_ZoneInstanceDestroyedMsg',29,1),(1005,908,927,'OP_ExpectClientAsCharacterRequest',30,1),(1006,908,927,'OP_ZoneInfoMsg',31,1),(1007,908,927,'OP_DoneLoadingZoneResourcesMsg',32,1),(1008,908,927,'OP_DoneSendingInitialEntitiesMsg',33,1),(1009,908,927,'OP_DoneLoadingEntityResourcesMsg',34,1),(1010,908,927,'OP_PredictionUpdateMsg',35,1),(1011,908,927,'OP_UpdatePositionMsg',37,1),(1012,908,927,'OP_SetRemoteCmdsMsg',39,1),(1013,908,927,'OP_RemoteCmdMsg',40,1),(1014,908,927,'OP_GameWorldTimeMsg',41,1),(1015,908,927,'OP_MOTDMsg',42,1),(1016,908,927,'OP_ZoneMOTDMsg',43,1),(1017,908,927,'OP_AvatarCreatedMsg',44,1),(1018,908,927,'OP_AvatarDestroyedMsg',45,1),(1019,908,927,'OP_RequestCampMsg',47,1),(1020,908,927,'OP_CampStartedMsg',48,1),(1021,908,927,'OP_CampAbortedMsg',49,1),(1022,908,927,'OP_WhoQueryRequestMsg',50,1),(1023,908,927,'OP_WhoQueryReplyMsg',51,1),(1024,908,927,'OP_MonitorReplyMsg',52,1),(1025,908,927,'OP_MonitorCharacterListMsg',53,1),(1026,908,927,'OP_MonitorCharacterListRequestMsg',54,1),(1027,908,927,'OP_ClientCmdMsg',55,1),(1028,908,927,'OP_DispatchESMsg',56,1),(1029,908,927,'OP_DispatchClientCmdMsg',57,1),(1030,908,927,'OP_UpdateTargetMsg',58,1),(1031,908,927,'OP_UpdateTargetLocMsg',59,1),(1032,908,927,'OP_UpdateCharacterSheetMsg',60,1),(1033,908,927,'OP_UpdateSpellBookMsg',61,1),(1034,908,927,'OP_UpdateInventoryMsg',63,1),(1035,908,927,'OP_UpdateRecipeBookMsg',65,1),(1036,908,927,'OP_RequestRecipeDetailsMsg',66,1),(1037,908,927,'OP_RecipeDetailsMsg',67,1),(1038,908,927,'OP_UpdateSkillBookMsg',68,1),(1039,908,927,'OP_UpdateSkillsMsg',69,1),(1040,908,927,'OP_UpdateOpportunityMsg',70,1),(1041,908,927,'OP_ChangeZoneMsg',72,1),(1042,908,927,'OP_ClientTeleportRequestMsg',73,1),(1043,908,927,'OP_TeleportWithinZoneMsg',74,1),(1044,908,927,'OP_TeleportWithinZoneNoReloadMsg',75,1),(1045,908,927,'OP_MigrateClientToZoneRequestMsg',76,1),(1046,908,927,'OP_MigrateClientToZoneReplyMsg',77,1),(1047,908,927,'OP_ReadyToZoneMsg',78,1),(1048,908,927,'OP_RemoveClientFromGroupMsg',79,1),(1049,908,927,'OP_RemoveGroupFromGroupMsg',80,1),(1050,908,927,'OP_MakeGroupLeaderMsg',81,1),(1051,908,927,'OP_GroupCreatedMsg',82,1),(1052,908,927,'OP_GroupDestroyedMsg',83,1),(1053,908,927,'OP_GroupMemberAddedMsg',84,1),(1054,908,927,'OP_GroupMemberRemovedMsg',85,1),(1055,908,927,'OP_GroupRemovedFromGroupMsg',86,1),(1056,908,927,'OP_GroupLeaderChangedMsg',87,1),(1057,908,927,'OP_GroupResendOOZDataMsg',88,1),(1058,908,927,'OP_GroupSettingsChangedMsg',89,1),(1059,908,927,'OP_OutOfZoneMemberDataMsg',90,1),(1060,908,927,'OP_SendLatestRequestMsg',91,1),(1061,908,927,'OP_ClearDataMsg',92,1),(1062,908,927,'OP_SetSocialMsg',93,1),(1063,908,927,'OP_ESStatusMsg',94,1),(1064,908,927,'OP_ESZoneInstanceStatusMsg',95,1),(1065,908,927,'OP_ZonesStatusRequestMsg',96,1),(1066,908,927,'OP_ZonesStatusMsg',97,1),(1067,908,927,'OP_ESWeatherRequestMsg',98,1),(1068,908,927,'OP_ESWeatherRequestEndMsg',99,1),(1069,908,927,'OP_DialogSelectMsg',102,1),(1070,908,927,'OP_DialogCloseMsg',103,1),(1071,908,927,'OP_RemoveSpellEffectMsg',104,1),(1072,908,927,'OP_RemoveConcentrationMsg',105,1),(1073,908,927,'OP_QuestJournalOpenMsg',106,1),(1074,908,927,'OP_QuestJournalInspectMsg',107,1),(1075,908,927,'OP_QuestJournalSetVisibleMsg',108,1),(1076,908,927,'OP_QuestJournalWaypointMsg',109,1),(1077,908,927,'OP_CreateGuildRequestMsg',110,1),(1078,908,927,'OP_CreateGuildReplyMsg',111,1),(1079,908,927,'OP_GuildsayMsg',112,1),(1080,908,927,'OP_GuildUpdateMsg',115,1),(1081,908,927,'OP_DeleteGuildMsg',116,1),(1082,908,927,'OP_FellowshipExpMsg',117,1),(1083,908,927,'OP_ConsignmentCloseStoreMsg',118,1),(1084,908,927,'OP_ConsignItemRequestMsg',119,1),(1085,908,927,'OP_ConsignItemResponseMsg',120,1),(1086,908,927,'OP_PurchaseConsignmentRequestMsg',121,1),(1087,908,927,'OP_HouseDeletedRemotelyMsg',122,1),(1088,908,927,'OP_UpdateHouseDataMsg',123,1),(1089,908,927,'OP_UpdateHouseAccessDataMsg',124,1),(1090,908,927,'OP_PlayerHouseBaseScreenMsg',125,1),(1091,908,927,'OP_PlayerHousePurchaseScreenMsg',126,1),(1092,908,927,'OP_PlayerHouseAccessUpdateMsg',127,1),(1093,908,927,'OP_PlayerHouseDisplayStatusMsg',128,1),(1094,908,927,'OP_PlayerHouseCloseUIMsg',129,1),(1095,908,927,'OP_BuyPlayerHouseMsg',130,1),(1096,908,927,'OP_BuyPlayerHouseTintMsg',131,1),(1097,908,927,'OP_CollectAllHouseItemsMsg',132,1),(1098,908,927,'OP_RelinquishHouseMsg',133,1),(1099,908,927,'OP_EnterHouseMsg',134,1),(1100,908,927,'OP_ExitHouseMsg',135,1),(1101,908,927,'OP_HouseDefaultAccessSetMsg',136,1),(1102,908,927,'OP_HouseAccessSetMsg',137,1),(1103,908,927,'OP_HouseAccessRemoveMsg',138,1),(1104,908,927,'OP_PayHouseUpkeepMsg',139,1),(1105,908,927,'OP_MoveableObjectPlacementCriteri',141,1),(1106,908,927,'OP_EnterMoveObjectModeMsg',142,1),(1107,908,927,'OP_PositionMoveableObject',143,1),(1108,908,927,'OP_CancelMoveObjectModeMsg',144,1),(1109,908,927,'OP_ShaderCustomizationMsg',145,1),(1110,908,927,'OP_ReplaceableSubMeshesMsg',146,1),(1111,908,927,'OP_HouseCustomizationScreenMsg',147,1),(1112,908,927,'OP_CustomizationPurchaseRequestMs',148,1),(1113,908,927,'OP_CustomizationSetRequestMsg',149,1),(1114,908,927,'OP_CustomizationReplyMsg',150,1),(1115,908,927,'OP_TintWidgetsMsg',151,1),(1116,908,927,'OP_ExamineConsignmentRequestMsg',152,1),(1117,908,927,'OP_ExamineConsignmentResponseMsg',153,1),(1118,908,927,'OP_UISettingsResponseMsg',154,1),(1119,908,927,'OP_UIResetMsg',155,1),(1120,908,927,'OP_KeymapLoadMsg',156,1),(1121,908,927,'OP_KeymapNoneMsg',157,1),(1122,908,927,'OP_KeymapDataMsg',158,1),(1123,908,927,'OP_KeymapSaveMsg',159,1),(1124,908,927,'OP_DispatchSpellCmdMsg',160,1),(1125,908,927,'OP_EntityVerbsRequestMsg',162,1),(1126,908,927,'OP_EntityVerbsReplyMsg',163,1),(1127,908,927,'OP_EntityVerbsVerbMsg',164,1),(1128,908,927,'OP_ChatRelationshipUpdateMsg',166,1),(1129,908,927,'OP_LootItemsRequestMsg',167,1),(1130,908,927,'OP_StoppedLootingMsg',168,1),(1131,908,927,'OP_SitMsg',169,1),(1132,908,927,'OP_StandMsg',170,1),(1133,908,927,'OP_SatMsg',171,1),(1134,908,927,'OP_StoodMsg',172,1),(1135,908,927,'OP_ClearForTakeOffMsg',173,1),(1136,908,927,'OP_ReadyForTakeOffMsg',174,1),(1137,908,927,'OP_ShowIllusionsMsg',175,1),(1138,908,927,'OP_HideIllusionsMsg',176,1),(1139,908,927,'OP_ExamineItemRequestMsg',177,1),(1140,908,927,'OP_ReadBookPageMsg',178,1),(1141,908,927,'OP_DefaultGroupOptionsRequestMsg',179,1),(1142,908,927,'OP_DefaultGroupOptionsMsg',180,1),(1143,908,927,'OP_GroupOptionsMsg',181,1),(1144,908,927,'OP_DisplayGroupOptionsScreenMsg',182,1),(1145,908,927,'OP_DisplayInnVisitScreenMsg',183,1),(1146,908,927,'OP_DumpSchedulerMsg',184,1),(1147,908,927,'OP_LSRequestPlayerDescMsg',185,1),(1148,908,927,'OP_LSCheckAcctLockMsg',186,1),(1149,908,927,'OP_WSAcctLockStatusMsg',187,1),(1150,908,927,'OP_RequestHelpRepathMsg',188,1),(1151,908,927,'OP_RequestTargetLocMsg',189,1),(1152,908,927,'OP_UpdateMotdMsg',190,1),(1153,908,927,'OP_PerformPlayerKnockbackMsg',191,1),(1154,908,927,'OP_PerformCameraShakeMsg',192,1),(1155,908,927,'OP_PopulateSkillMapsMsg',195,1),(1156,908,927,'OP_CancelledFeignMsg',197,1),(1157,908,927,'OP_SignalMsg',198,1),(1158,908,927,'OP_ShowCreateFromRecipeUIMsg',199,1),(1159,908,927,'OP_CancelCreateFromRecipeMsg',200,1),(1160,908,927,'OP_BeginItemCreationMsg',201,1),(1161,908,927,'OP_StopItemCreationMsg',202,1),(1162,908,927,'OP_ShowItemCreationProcessUIMsg',203,1),(1163,908,927,'OP_UpdateItemCreationProcessUIMsg',204,1),(1164,908,927,'OP_DisplayTSEventReactionMsg',205,1),(1165,908,927,'OP_ShowRecipeBookMsg',206,1),(1166,908,927,'OP_KnowledgebaseRequestMsg',207,1),(1167,908,927,'OP_KnowledgebaseResponseMsg',208,1),(1168,908,927,'OP_CSTicketHeaderRequestMsg',209,1),(1169,908,927,'OP_CSTicketInfoMsg',210,1),(1170,908,927,'OP_CSTicketCommentRequestMsg',211,1),(1171,908,927,'OP_CSTicketCommentResponseMsg',212,1),(1172,908,927,'OP_CSTicketCreateMsg',213,1),(1173,908,927,'OP_CSTicketAddCommentMsg',214,1),(1174,908,927,'OP_CSTicketDeleteMsg',215,1),(1175,908,927,'OP_CSTicketChangeNotificationMsg',216,1),(1176,908,927,'OP_WorldDataUpdateMsg',217,1),(1177,908,927,'OP_KnownLanguagesMsg',218,1),(1178,908,927,'OP_LsRequestClientCrashLogMsg',219,1),(1179,908,927,'OP_LsClientBaselogReplyMsg',220,1),(1180,908,927,'OP_LsClientCrashlogReplyMsg',221,1),(1181,908,927,'OP_LsClientAlertlogReplyMsg',222,1),(1182,908,927,'OP_LsClientVerifylogReplyMsg',223,1),(1183,908,927,'OP_ClientTeleportToLocationMsg',224,1),(1184,908,927,'OP_UpdateClientPredFlagsMsg',225,1),(1185,908,927,'OP_ChangeServerControlFlagMsg',226,1),(1186,908,927,'OP_CSToolsRequestMsg',227,1),(1187,908,927,'OP_CSToolsResponseMsg',228,1),(1188,908,927,'OP_AddSocialStructureStandingMsg',229,1),(1189,908,927,'OP_CreateBoatTransportsMsg',230,1),(1190,908,927,'OP_PositionBoatTransportMsg',231,1),(1191,908,927,'OP_MigrateBoatTransportMsg',232,1),(1192,908,927,'OP_MigrateBoatTransportReplyMsg',233,1),(1193,908,927,'OP_DisplayDebugNLLPointsMsg',234,1),(1194,908,927,'OP_ExamineInfoRequestMsg',235,1),(1195,908,927,'OP_QuickbarInitMsg',236,1),(1196,908,927,'OP_QuickbarUpdateMsg',237,1),(1197,908,927,'OP_MacroInitMsg',238,1),(1198,908,927,'OP_MacroUpdateMsg',239,1),(1199,908,927,'OP_QuestionnaireMsg',240,1),(1200,908,927,'OP_LevelChangedMsg',241,1),(1201,908,927,'OP_SpellGainedMsg',242,1),(1202,908,927,'OP_EncounterBrokenMsg',243,1),(1203,908,927,'OP_OnscreenMsgMsg',244,1),(1204,908,927,'OP_DisplayWarningMsg',245,1),(1205,908,927,'OP_ModifyGuildMsg',246,1),(1206,908,927,'OP_GuildEventMsg',247,1),(1207,908,927,'OP_GuildEventAddMsg',248,1),(1208,908,927,'OP_GuildEventActionMsg',249,1),(1209,908,927,'OP_GuildEventListMsg',250,1),(1210,908,927,'OP_RequestGuildEventDetailsMsg',251,1),(1211,908,927,'OP_GuildEventDetailsMsg',252,1),(1212,908,927,'OP_RequestGuildInfoMsg',253,1),(1213,908,927,'OP_GuildBankActionMsg',254,1),(1214,908,927,'OP_GuildBankActionResponseMsg',255,1),(1215,908,927,'OP_GuildBankItemDetailsRequestMsg',256,1),(1216,908,927,'OP_GuildBankItemDetailsResponseMs',257,1),(1217,908,927,'OP_GuildBankUpdateMsg',258,1),(1218,908,927,'OP_GuildBankEventListMsg',259,1),(1219,908,927,'OP_RequestGuildBankEventDetailsMs',260,1),(1220,908,927,'OP_RewardPackMsg',261,1),(1221,908,927,'OP_RenameGuildMsg',262,1),(1222,908,927,'OP_ZoneToFriendRequestMsg',264,1),(1223,908,927,'OP_ZoneToFriendReplyMsg',265,1),(1224,908,927,'OP_ChatCreateChannelMsg',266,1),(1225,908,927,'OP_ChatJoinChannelMsg',267,1),(1226,908,927,'OP_ChatWhoChannelMsg',268,1),(1227,908,927,'OP_ChatLeaveChannelMsg',269,1),(1228,908,927,'OP_ChatTellChannelMsg',270,1),(1229,908,927,'OP_ChatTellUserMsg',271,1),(1230,908,927,'OP_ChatToggleFriendMsg',272,1),(1231,908,927,'OP_ChatToggleIgnoreMsg',273,1),(1232,908,927,'OP_ChatSendFriendsMsg',274,1),(1233,908,927,'OP_ChatSendIgnoresMsg',275,1),(1234,908,927,'OP_QuestReward',302,1),(1235,908,927,'OP_ChatFiltersMsg',317,1),(1236,908,927,'OP_MailGetHeadersMsg',318,1),(1237,908,927,'OP_MailGetMessageMsg',319,1),(1238,908,927,'OP_MailSendMessageMsg',320,1),(1239,908,927,'OP_MailDeleteMessageMsg',321,1),(1240,908,927,'OP_MailGetHeadersReplyMsg',322,1),(1241,908,927,'OP_MailGetMessageReplyMsg',323,1),(1242,908,927,'OP_MailSendMessageReplyMsg',324,1),(1243,908,927,'OP_MailCommitSendMessageMsg',325,1),(1244,908,927,'OP_MailSendSystemMessageMsg',326,1),(1245,908,927,'OP_MailRemoveAttachFromMailMsg',327,1),(1246,908,927,'OP_WaypointRequestMsg',329,1),(1247,908,927,'OP_WaypointReplyMsg',330,1),(1248,908,927,'OP_WaypointSelectMsg',331,1),(1249,908,927,'OP_WaypointUpdateMsg',332,1),(1250,908,927,'OP_CharNameChangedMsg',333,1),(1251,908,927,'OP_ShowZoneTeleporterDestinations',334,1),(1252,908,927,'OP_SelectZoneTeleporterDestinatio',335,1),(1253,908,927,'OP_ReloadLocalizedTxtMsg',336,1),(1254,908,927,'OP_RequestGuildMembershipMsg',337,1),(1255,908,927,'OP_GuildMembershipResponseMsg',338,1),(1256,908,927,'OP_LeaveGuildNotifyMsg',339,1),(1257,908,927,'OP_JoinGuildNotifyMsg',340,1),(1258,908,927,'OP_AvatarUpdateMsg',342,1),(1259,908,927,'OP_BioUpdateMsg',343,1),(1260,908,927,'OP_InspectPlayerMsg',344,1),(1261,908,927,'OP_WSServerLockMsg',345,1),(1262,908,927,'OP_LSServerLockMsg',346,1),(1263,908,927,'OP_WSServerHideMsg',347,1),(1264,908,927,'OP_CsCategoryRequestMsg',348,1),(1265,908,927,'OP_CsCategoryResponseMsg',349,1),(1266,908,927,'OP_KnowledgeWindowSlotMappingMsg',350,1),(1267,908,927,'OP_LFGUpdateMsg',351,1),(1268,908,927,'OP_AFKUpdateMsg',352,1),(1269,908,927,'OP_AnonUpdateMsg',353,1),(1270,908,927,'OP_UpdateActivePublicZonesMsg',354,1),(1271,908,927,'OP_UnknownNpcMsg',355,1),(1272,908,927,'OP_PromoFlagsDetailsMsg',356,1),(1273,908,927,'OP_ConsignViewCreateMsg',357,1),(1274,908,927,'OP_ConsignViewGetPageMsg',358,1),(1275,908,927,'OP_ConsignViewReleaseMsg',359,1),(1276,908,927,'OP_ConsignRemoveItemsMsg',360,1),(1277,908,927,'OP_UpdateDebugRadiiMsg',361,1),(1278,908,927,'OP_SnoopMsg',362,1),(1279,908,927,'OP_ReportMsg',363,1),(1280,908,927,'OP_UpdateRaidMsg',364,1),(1281,908,927,'OP_ConsignViewSortMsg',365,1),(1282,908,927,'OP_TitleUpdateMsg',366,1),(1283,908,927,'OP_ClientFellMsg',367,1),(1284,908,927,'OP_ClientInDeathRegionMsg',368,1),(1285,908,927,'OP_CampClientMsg',369,1),(1286,908,927,'OP_CSToolAccessResponseMsg',370,1),(1287,908,927,'OP_TrackingUpdateMsg',371,1),(1288,908,927,'OP_BeginTrackingMsg',372,1),(1289,908,927,'OP_StopTrackingMsg',373,1),(1290,908,927,'OP_GetAvatarAccessRequestForCSToo',374,1),(1291,908,927,'OP_AdvancementRequestMsg',375,1),(1292,908,927,'OP_UpdateAvgFrameTimeMsg',376,1),(1293,908,927,'OP_MapFogDataInitMsg',377,1),(1294,908,927,'OP_MapFogDataUpdateMsg',378,1),(1295,908,927,'OP_CloseGroupInviteWindowMsg',379,1),(1296,908,927,'OP_UpdateGroupMemberDataMsg',380,1),(1297,908,927,'OP_WorldPingMsg',381,1),(1298,908,927,'OP_MoveLogUpdateMsg',382,1),(1299,908,927,'OP_OfferQuestMsg',383,1),(1300,908,927,'OP_WorldShutdownUpdateMsg',384,1),(1301,908,927,'OP_DisplayMailScreenMsg',385,1),(1302,908,927,'OP_ClientIdleBeginMsg',386,1),(1303,908,927,'OP_ClientIdleEndMsg',387,1),(1304,908,927,'OP_PurchaseConsignmentLoreCheckRe',388,1),(1305,908,927,'OP_NotifyApprenticeStoppedMentori',389,1),(1306,908,927,'OP_CorruptedClientMsg',390,1),(1307,908,927,'OP_WorldDataChangeMsg',391,1),(1308,908,927,'OP_MailEventNotificationMsg',392,1),(1309,908,927,'OP_RestartZoneMsg',393,1),(1310,908,927,'OP_FlightPathsMsg',394,1),(1311,908,927,'OP_CharacterLinkdeadMsg',395,1),(1312,908,927,'OP_CharTransferStartRequestMsg',396,1),(1313,908,927,'OP_CharTransferStartReplyMsg',397,1),(1314,908,927,'OP_CharTransferRequestMsg',398,1),(1315,908,927,'OP_CharTransferReplyMsg',399,1),(1316,908,927,'OP_CharTransferRollbackRequestMsg',400,1),(1317,908,927,'OP_CharTransferCommitRequestMsg',401,1),(1318,908,927,'OP_CharTransferRollbackReplyMsg',402,1),(1319,908,927,'OP_CharTransferCommitReplyMsg',403,1),(1320,908,927,'OP_GetCharacterSerializedRequestM',404,1),(1321,908,927,'OP_GetCharacterSerializedReplyMsg',405,1),(1322,908,927,'OP_CreateCharFromCBBRequestMsg',406,1),(1323,908,927,'OP_CreateCharFromCBBReplyMsg',407,1),(1324,908,927,'OP_HousingDataChangedMsg',408,1),(1325,908,927,'OP_HousingRestoreMsg',409,1),(1326,908,927,'OP_AuctionItem',410,1),(1327,908,927,'OP_AuctionItemReply',411,1),(1328,908,927,'OP_AuctionCoin',412,1),(1329,908,927,'OP_AuctionCoinReply',413,1),(1330,908,927,'OP_AuctionCharacter',414,1),(1331,908,927,'OP_AuctionCharacterReply',415,1),(1332,908,927,'OP_AuctionCommitMsg',416,1),(1333,908,927,'OP_AuctionAbortMsg',417,1),(1334,908,927,'OP_CharTransferValidateRequestMsg',418,1),(1335,908,927,'OP_CharTransferValidateReplyMsg',419,1),(1336,908,927,'OP_RaceRestrictionMsg',420,1),(1337,908,927,'OP_SetInstanceDisplayNameMsg',421,1),(1338,908,927,'OP_GetAuctionAssetIDMsg',422,1),(1339,908,927,'OP_GetAuctionAssetIDReplyMsg',423,1),(1340,908,927,'OP_ResendWorldChannelsMsg',424,1),(1341,908,927,'OP_DisplayExchangeScreenMsg',425,1),(1342,908,927,'OP_ArenaGameTypesMsg',426,1),(1343,908,927,'OP_AuditAuctionEventMsg',428,1),(1344,908,927,'OP_InviteRequestMsg',430,1),(1345,908,927,'OP_InviteResponseMsg',431,1),(1346,908,927,'OP_InviteTargetResponseMsg',432,1),(1347,908,927,'OP_InspectPlayerRequestMsg',433,1),(1348,908,927,'OP_DispatchMsg',434,1),(1349,908,927,'OP_DisplayEventMsg',435,1),(1350,908,927,'OP_PrePossessionMsg',436,1),(1351,908,927,'OP_PostPossessionMsg',437,1),(1352,908,927,'OP_AdventureList',462,1),(1353,908,927,'OP_CancelSpellCast',463,1),(1354,908,927,'OP_UpdateTitleCmd',469,1),(1355,908,927,'OP_AttackAllowed',475,1),(1356,908,927,'OP_AttackNotAllowed',476,1),(1357,908,927,'OP_DressingRoom',482,1),(1358,908,927,'OP_SkillInfoRequest',486,1),(1359,908,927,'OP_SkillInfoResponse',487,1),(1360,908,927,'OP_BadLanguageFilter',490,1),(1361,908,927,'OP_MapRequest',492,1),(1362,908,927,'OP_EqUnknown',493,1),(1363,908,927,'OP_EqHearChatCmd',494,1),(1364,908,927,'OP_EqDisplayTextCmd',495,1),(1365,908,927,'OP_EqCreateGhostCmd',496,1),(1366,908,927,'OP_EqCreateWidgetCmd',497,1),(1367,908,927,'OP_EqCreateSignWidgetCmd',498,1),(1368,908,927,'OP_EqDestroyGhostCmd',499,1),(1369,908,927,'OP_EqUpdateGhostCmd',500,1),(1370,908,927,'OP_EqSetControlGhostCmd',501,1),(1371,908,927,'OP_EqSetPOVGhostCmd',502,1),(1372,908,927,'OP_EqHearCombatCmd',503,1),(1373,908,927,'OP_EqHearSpellCastCmd',504,1),(1374,908,927,'OP_EqHearSpellInterruptCmd',507,1),(1375,908,927,'OP_EqHearSpellFizzleCmd',508,1),(1376,908,927,'OP_EqHearConsiderCmd',509,1),(1377,908,927,'OP_EqUpdateSubClassesCmd',510,1),(1378,908,927,'OP_EqCreateListBoxCmd',511,1),(1379,908,927,'OP_EqSetDebugPathPointsCmd',512,1),(1380,908,927,'OP_EqCannedEmoteCmd',514,1),(1381,908,927,'OP_EqStateCmd',515,1),(1382,908,927,'OP_EqPlaySoundCmd',516,1),(1383,908,927,'OP_EqPlaySound3DCmd',517,1),(1384,908,927,'OP_EqPlayVoiceCmd',518,1),(1385,908,927,'OP_EqHearDrowningCmd',519,1),(1386,908,927,'OP_EqHearDeathCmd',520,1),(1387,908,927,'OP_EqGroupMemberRemovedCmd',521,1),(1388,908,927,'OP_EqHearChainEffectCmd',522,1),(1389,908,927,'OP_EqReceiveOfferCmd',523,1),(1390,908,927,'OP_EqInspectPCResultsCmd',524,1),(1391,908,927,'OP_EqDrawablePathGraphCmd',525,1),(1392,908,927,'OP_EqDialogOpenCmd',526,1),(1393,908,927,'OP_EqDialogCloseCmd',527,1),(1394,908,927,'OP_EqFactionUpdateCmd',528,1),(1395,908,927,'OP_EqCollectionUpdateCmd',529,1),(1396,908,927,'OP_EqCollectionFilterCmd',530,1),(1397,908,927,'OP_EqCollectionItemCmd',531,1),(1398,908,927,'OP_EqQuestJournalUpdateCmd',532,1),(1399,908,927,'OP_EqQuestJournalReplyCmd',534,1),(1400,908,927,'OP_EqQuestGroupCmd',535,1),(1401,908,927,'OP_EqUpdateMerchantCmd',536,1),(1402,908,927,'OP_EqUpdateStoreCmd',537,1),(1403,908,927,'OP_EqUpdatePlayerTradeCmd',538,1),(1404,908,927,'OP_EqHelpPathCmd',539,1),(1405,908,927,'OP_EqHelpPathClearCmd',540,1),(1406,908,927,'OP_EqUpdateBankCmd',541,1),(1407,908,927,'OP_EqExamineInfoCmd',542,1),(1408,908,927,'OP_EqCloseWindowCmd',543,1),(1409,908,927,'OP_EqUpdateLootCmd',544,1),(1410,908,927,'OP_EqJunctionListCmd',545,1),(1411,908,927,'OP_EqShowDeathWindowCmd',546,1),(1412,908,927,'OP_EqDisplaySpellFailCmd',547,1),(1413,908,927,'OP_EqSpellCastStartCmd',548,1),(1414,908,927,'OP_EqSpellCastEndCmd',549,1),(1415,908,927,'OP_EqResurrectedCmd',550,1),(1416,908,927,'OP_EqChoiceWinCmd',551,1),(1417,908,927,'OP_EqSetDefaultVerbCmd',552,1),(1418,908,927,'OP_EqInstructionWindowCmd',554,1),(1419,908,927,'OP_EqInstructionWindowCloseCmd',555,1),(1420,908,927,'OP_EqInstructionWindowGoalCmd',556,1),(1421,908,927,'OP_EqInstructionWindowTaskCmd',557,1),(1422,908,927,'OP_EqEnableGameEventCmd',558,1),(1423,908,927,'OP_EqShowWindowCmd',559,1),(1424,908,927,'OP_EqEnableWindowCmd',560,1),(1425,908,927,'OP_EqFlashWindowCmd',561,1),(1426,908,927,'OP_EqHearPlayFlavorCmd',562,1),(1427,908,927,'OP_EqUpdateSignWidgetCmd',564,1),(1428,908,927,'OP_EqDebugPVDCmd',565,1),(1429,908,927,'OP_EqShowBookCmd',566,1),(1430,908,927,'OP_EqQuestionnaireCmd',567,1),(1431,908,927,'OP_EqGetProbsCmd',568,1),(1432,908,927,'OP_EqHearHealCmd',569,1),(1433,908,927,'OP_EqChatChannelUpdateCmd',570,1),(1434,908,927,'OP_EqWhoChannelQueryReplyCmd',571,1),(1435,908,927,'OP_EqAvailWorldChannelsCmd',572,1),(1436,908,927,'OP_EqUpdateTargetCmd',573,1),(1437,908,927,'OP_EqConsignmentItemsCmd',575,1),(1438,908,927,'OP_EqStartBrokerCmd',577,1),(1439,908,927,'OP_EqMapExplorationCmd',578,1),(1440,908,927,'OP_EqStoreLogCmd',579,1),(1441,908,927,'OP_EqSpellMoveToRangeAndRetryCmd',580,1),(1442,908,927,'OP_EqUpdatePlayerMailCmd',581,1),(1443,908,927,'OP_EqArenaResultsCmd',582,1),(1444,908,927,'OP_EqGuildBankEventActionCmd',583,1),(1445,908,927,'OP_EqGuildBankExamineInfoCmd',584,1),(1446,908,927,'OP_EqHearSpellNoLandCmd',585,1),(1447,908,927,'OP_Lottery',589,1),(1448,908,927,'OP_GuildRecruitingMemberInfo',590,1),(1449,908,927,'OP_GuildRecruiting',591,1),(1450,908,927,'OP_GuildRecruitingDetails',592,1),(1451,908,927,'OP_GuildRecruitingImage',593,1),(1452,908,927,'OP_PointOfInterest',614,1),(1453,908,927,'OP_TraitsList',616,1),(1454,908,927,'OP_RecipeList',625,1),(1455,908,927,'OP_CharacterAchievements',655,1),(1456,908,927,'OP_AddClientToGroupMsg',1010,1),(1457,908,927,'OP_AddGroupToGroupMsg',1010,1),(1458,908,927,'OP_GuildKickMsg',1010,1),(1459,908,927,'OP_ProcessScriptMsg',1010,1),(1460,908,927,'OP_ProcessWorkspaceMsg',1010,1),(1461,908,927,'OP_PurchaseConsignmentResponseMsg',1010,1),(1462,908,927,'OP_QuickbarAddMsg',1010,1),(1463,908,927,'OP_SkillSlotMapping',1010,1),(1464,908,927,'OP_Unknown',10014,1),(1465,908,927,'OP_WSWeatherUpdateMsg',10015,1),(1466,1008,1011,'OP_LoginRequestMsg',0,1),(1467,1008,1011,'OP_LoginByNumRequestMsg',1,1),(1468,1008,1011,'OP_WSLoginRequestMsg',2,1),(1469,1008,1011,'OP_ESLoginRequestMsg',3,1),(1470,1008,1011,'OP_LoginReplyMsg',4,1),(1471,1008,1011,'OP_WSStatusReplyMsg',5,1),(1472,1008,1011,'OP_WorldStatusChangeMsg',6,1),(1473,1008,1011,'OP_AllWSDescRequestMsg',7,1),(1474,1008,1011,'OP_WorldListMsg',8,1),(1475,1008,1011,'OP_AllCharactersDescRequestMsg',9,1),(1476,1008,1011,'OP_AllCharactersDescReplyMsg',10,1),(1477,1008,1011,'OP_CreateCharacterRequestMsg',11,1),(1478,1008,1011,'OP_CreateCharacterReplyMsg',12,1),(1479,1008,1011,'OP_WSCreateCharacterRequestMsg',13,1),(1480,1008,1011,'OP_WSCreateCharacterReplyMsg',14,1),(1481,1008,1011,'OP_ReskinCharacterRequestMsg',15,1),(1482,1008,1011,'OP_DeleteCharacterRequestMsg',16,1),(1483,1008,1011,'OP_DeleteCharacterReplyMsg',17,1),(1484,1008,1011,'OP_PlayCharacterRequestMsg',18,1),(1485,1008,1011,'OP_PlayCharacterReplyMsg',19,1),(1486,1008,1011,'OP_ExpectClientAsCharacterReplyMs',22,1),(1487,1008,1011,'OP_ServerPlayCharacterRequestMsg',23,1),(1488,1008,1011,'OP_ServerPlayCharacterReplyMsg',24,1),(1489,1008,1011,'OP_ESInitMsg',25,1),(1490,1008,1011,'OP_ESReadyForClientsMsg',26,1),(1491,1008,1011,'OP_CreateZoneInstanceMsg',27,1),(1492,1008,1011,'OP_ZoneInstanceCreateReplyMsg',28,1),(1493,1008,1011,'OP_ZoneInstanceDestroyedMsg',29,1),(1494,1008,1011,'OP_ExpectClientAsCharacterRequest',30,1),(1495,1008,1011,'OP_ZoneInfoMsg',31,1),(1496,1008,1011,'OP_DoneLoadingZoneResourcesMsg',32,1),(1497,1008,1011,'OP_DoneSendingInitialEntitiesMsg',33,1),(1498,1008,1011,'OP_DoneLoadingEntityResourcesMsg',34,1),(1499,1008,1011,'OP_PredictionUpdateMsg',35,1),(1500,1008,1011,'OP_UpdatePositionMsg',37,1),(1501,1008,1011,'OP_SetRemoteCmdsMsg',39,1),(1502,1008,1011,'OP_RemoteCmdMsg',40,1),(1503,1008,1011,'OP_GameWorldTimeMsg',41,1),(1504,1008,1011,'OP_MOTDMsg',42,1),(1505,1008,1011,'OP_ZoneMOTDMsg',43,1),(1506,1008,1011,'OP_AvatarCreatedMsg',44,1),(1507,1008,1011,'OP_AvatarDestroyedMsg',45,1),(1508,1008,1011,'OP_RequestCampMsg',47,1),(1509,1008,1011,'OP_CampStartedMsg',48,1),(1510,1008,1011,'OP_CampAbortedMsg',49,1),(1511,1008,1011,'OP_WhoQueryRequestMsg',50,1),(1512,1008,1011,'OP_WhoQueryReplyMsg',51,1),(1513,1008,1011,'OP_MonitorReplyMsg',52,1),(1514,1008,1011,'OP_MonitorCharacterListMsg',53,1),(1515,1008,1011,'OP_MonitorCharacterListRequestMsg',54,1),(1516,1008,1011,'OP_ClientCmdMsg',55,1),(1517,1008,1011,'OP_DispatchESMsg',56,1),(1518,1008,1011,'OP_DispatchClientCmdMsg',57,1),(1519,1008,1011,'OP_UpdateTargetMsg',58,1),(1520,1008,1011,'OP_UpdateTargetLocMsg',59,1),(1521,1008,1011,'OP_UpdateCharacterSheetMsg',60,1),(1522,1008,1011,'OP_UpdateSpellBookMsg',61,1),(1523,1008,1011,'OP_UpdateInventoryMsg',63,1),(1524,1008,1011,'OP_UpdateRecipeBookMsg',65,1),(1525,1008,1011,'OP_RequestRecipeDetailsMsg',66,1),(1526,1008,1011,'OP_RecipeDetailsMsg',67,1),(1527,1008,1011,'OP_UpdateSkillBookMsg',68,1),(1528,1008,1011,'OP_UpdateSkillsMsg',69,1),(1529,1008,1011,'OP_UpdateOpportunityMsg',70,1),(1530,1008,1011,'OP_ChangeZoneMsg',72,1),(1531,1008,1011,'OP_ClientTeleportRequestMsg',73,1),(1532,1008,1011,'OP_TeleportWithinZoneMsg',74,1),(1533,1008,1011,'OP_TeleportWithinZoneNoReloadMsg',75,1),(1534,1008,1011,'OP_MigrateClientToZoneRequestMsg',76,1),(1535,1008,1011,'OP_MigrateClientToZoneReplyMsg',77,1),(1536,1008,1011,'OP_ReadyToZoneMsg',78,1),(1537,1008,1011,'OP_RemoveClientFromGroupMsg',79,1),(1538,1008,1011,'OP_RemoveGroupFromGroupMsg',80,1),(1539,1008,1011,'OP_MakeGroupLeaderMsg',81,1),(1540,1008,1011,'OP_GroupCreatedMsg',82,1),(1541,1008,1011,'OP_GroupDestroyedMsg',83,1),(1542,1008,1011,'OP_GroupMemberAddedMsg',84,1),(1543,1008,1011,'OP_GroupMemberRemovedMsg',85,1),(1544,1008,1011,'OP_GroupRemovedFromGroupMsg',86,1),(1545,1008,1011,'OP_GroupLeaderChangedMsg',87,1),(1546,1008,1011,'OP_GroupResendOOZDataMsg',88,1),(1547,1008,1011,'OP_GroupSettingsChangedMsg',89,1),(1548,1008,1011,'OP_OutOfZoneMemberDataMsg',90,1),(1549,1008,1011,'OP_SendLatestRequestMsg',91,1),(1550,1008,1011,'OP_ClearDataMsg',92,1),(1551,1008,1011,'OP_SetSocialMsg',93,1),(1552,1008,1011,'OP_ESStatusMsg',94,1),(1553,1008,1011,'OP_ESZoneInstanceStatusMsg',95,1),(1554,1008,1011,'OP_ZonesStatusRequestMsg',96,1),(1555,1008,1011,'OP_ZonesStatusMsg',97,1),(1556,1008,1011,'OP_ESWeatherRequestMsg',98,1),(1557,1008,1011,'OP_ESWeatherRequestEndMsg',99,1),(1558,1008,1011,'OP_DialogSelectMsg',102,1),(1559,1008,1011,'OP_DialogCloseMsg',103,1),(1560,1008,1011,'OP_RemoveSpellEffectMsg',104,1),(1561,1008,1011,'OP_RemoveConcentrationMsg',105,1),(1562,1008,1011,'OP_QuestJournalOpenMsg',106,1),(1563,1008,1011,'OP_QuestJournalInspectMsg',107,1),(1564,1008,1011,'OP_QuestJournalSetVisibleMsg',108,1),(1565,1008,1011,'OP_QuestJournalWaypointMsg',109,1),(1566,1008,1011,'OP_CreateGuildRequestMsg',110,1),(1567,1008,1011,'OP_CreateGuildReplyMsg',111,1),(1568,1008,1011,'OP_GuildsayMsg',112,1),(1569,1008,1011,'OP_GuildUpdateMsg',115,1),(1570,1008,1011,'OP_DeleteGuildMsg',116,1),(1571,1008,1011,'OP_FellowshipExpMsg',117,1),(1572,1008,1011,'OP_ConsignmentCloseStoreMsg',118,1),(1573,1008,1011,'OP_ConsignItemRequestMsg',119,1),(1574,1008,1011,'OP_ConsignItemResponseMsg',120,1),(1575,1008,1011,'OP_PurchaseConsignmentRequestMsg',121,1),(1576,1008,1011,'OP_HouseDeletedRemotelyMsg',122,1),(1577,1008,1011,'OP_UpdateHouseDataMsg',123,1),(1578,1008,1011,'OP_UpdateHouseAccessDataMsg',124,1),(1579,1008,1011,'OP_PlayerHouseBaseScreenMsg',125,1),(1580,1008,1011,'OP_PlayerHousePurchaseScreenMsg',126,1),(1581,1008,1011,'OP_PlayerHouseAccessUpdateMsg',127,1),(1582,1008,1011,'OP_PlayerHouseDisplayStatusMsg',128,1),(1583,1008,1011,'OP_PlayerHouseCloseUIMsg',129,1),(1584,1008,1011,'OP_BuyPlayerHouseMsg',130,1),(1585,1008,1011,'OP_BuyPlayerHouseTintMsg',131,1),(1586,1008,1011,'OP_CollectAllHouseItemsMsg',132,1),(1587,1008,1011,'OP_RelinquishHouseMsg',133,1),(1588,1008,1011,'OP_EnterHouseMsg',134,1),(1589,1008,1011,'OP_ExitHouseMsg',135,1),(1590,1008,1011,'OP_HouseDefaultAccessSetMsg',136,1),(1591,1008,1011,'OP_HouseAccessSetMsg',137,1),(1592,1008,1011,'OP_HouseAccessRemoveMsg',138,1),(1593,1008,1011,'OP_PayHouseUpkeepMsg',139,1),(1594,1008,1011,'OP_MoveableObjectPlacementCriteri',141,1),(1595,1008,1011,'OP_EnterMoveObjectModeMsg',142,1),(1596,1008,1011,'OP_PositionMoveableObject',143,1),(1597,1008,1011,'OP_CancelMoveObjectModeMsg',144,1),(1598,1008,1011,'OP_ShaderCustomizationMsg',145,1),(1599,1008,1011,'OP_ReplaceableSubMeshesMsg',146,1),(1600,1008,1011,'OP_HouseCustomizationScreenMsg',147,1),(1601,1008,1011,'OP_CustomizationPurchaseRequestMs',148,1),(1602,1008,1011,'OP_CustomizationSetRequestMsg',149,1),(1603,1008,1011,'OP_CustomizationReplyMsg',150,1),(1604,1008,1011,'OP_TintWidgetsMsg',151,1),(1605,1008,1011,'OP_ExamineConsignmentRequestMsg',152,1),(1606,1008,1011,'OP_ExamineConsignmentResponseMsg',153,1),(1607,1008,1011,'OP_UISettingsResponseMsg',154,1),(1608,1008,1011,'OP_UIResetMsg',156,1),(1609,1008,1011,'OP_KeymapLoadMsg',157,1),(1610,1008,1011,'OP_KeymapNoneMsg',158,1),(1611,1008,1011,'OP_KeymapDataMsg',159,1),(1612,1008,1011,'OP_KeymapSaveMsg',160,1),(1613,1008,1011,'OP_DispatchSpellCmdMsg',161,1),(1614,1008,1011,'OP_EntityVerbsRequestMsg',163,1),(1615,1008,1011,'OP_EntityVerbsReplyMsg',164,1),(1616,1008,1011,'OP_EntityVerbsVerbMsg',165,1),(1617,1008,1011,'OP_ChatRelationshipUpdateMsg',167,1),(1618,1008,1011,'OP_LootItemsRequestMsg',168,1),(1619,1008,1011,'OP_StoppedLootingMsg',169,1),(1620,1008,1011,'OP_SitMsg',170,1),(1621,1008,1011,'OP_StandMsg',171,1),(1622,1008,1011,'OP_SatMsg',172,1),(1623,1008,1011,'OP_StoodMsg',173,1),(1624,1008,1011,'OP_ClearForTakeOffMsg',174,1),(1625,1008,1011,'OP_ReadyForTakeOffMsg',175,1),(1626,1008,1011,'OP_ShowIllusionsMsg',176,1),(1627,1008,1011,'OP_HideIllusionsMsg',177,1),(1628,1008,1011,'OP_ExamineItemRequestMsg',178,1),(1629,1008,1011,'OP_ReadBookPageMsg',179,1),(1630,1008,1011,'OP_DefaultGroupOptionsRequestMsg',180,1),(1631,1008,1011,'OP_DefaultGroupOptionsMsg',181,1),(1632,1008,1011,'OP_GroupOptionsMsg',182,1),(1633,1008,1011,'OP_DisplayGroupOptionsScreenMsg',183,1),(1634,1008,1011,'OP_DisplayInnVisitScreenMsg',184,1),(1635,1008,1011,'OP_DumpSchedulerMsg',185,1),(1636,1008,1011,'OP_LSRequestPlayerDescMsg',186,1),(1637,1008,1011,'OP_LSCheckAcctLockMsg',187,1),(1638,1008,1011,'OP_WSAcctLockStatusMsg',188,1),(1639,1008,1011,'OP_RequestHelpRepathMsg',189,1),(1640,1008,1011,'OP_RequestTargetLocMsg',190,1),(1641,1008,1011,'OP_UpdateMotdMsg',191,1),(1642,1008,1011,'OP_PerformPlayerKnockbackMsg',192,1),(1643,1008,1011,'OP_PerformCameraShakeMsg',193,1),(1644,1008,1011,'OP_PopulateSkillMapsMsg',196,1),(1645,1008,1011,'OP_CancelledFeignMsg',198,1),(1646,1008,1011,'OP_SignalMsg',199,1),(1647,1008,1011,'OP_ShowCreateFromRecipeUIMsg',200,1),(1648,1008,1011,'OP_CancelCreateFromRecipeMsg',201,1),(1649,1008,1011,'OP_BeginItemCreationMsg',202,1),(1650,1008,1011,'OP_StopItemCreationMsg',203,1),(1651,1008,1011,'OP_ShowItemCreationProcessUIMsg',204,1),(1652,1008,1011,'OP_UpdateItemCreationProcessUIMsg',205,1),(1653,1008,1011,'OP_DisplayTSEventReactionMsg',206,1),(1654,1008,1011,'OP_ShowRecipeBookMsg',207,1),(1655,1008,1011,'OP_KnowledgebaseRequestMsg',208,1),(1656,1008,1011,'OP_KnowledgebaseResponseMsg',209,1),(1657,1008,1011,'OP_CSTicketHeaderRequestMsg',210,1),(1658,1008,1011,'OP_CSTicketInfoMsg',211,1),(1659,1008,1011,'OP_CSTicketCommentRequestMsg',212,1),(1660,1008,1011,'OP_CSTicketCommentResponseMsg',213,1),(1661,1008,1011,'OP_CSTicketCreateMsg',214,1),(1662,1008,1011,'OP_CSTicketAddCommentMsg',215,1),(1663,1008,1011,'OP_CSTicketDeleteMsg',216,1),(1664,1008,1011,'OP_CSTicketChangeNotificationMsg',217,1),(1665,1008,1011,'OP_WorldDataUpdateMsg',218,1),(1666,1008,1011,'OP_KnownLanguagesMsg',219,1),(1667,1008,1011,'OP_LsRequestClientCrashLogMsg',220,1),(1668,1008,1011,'OP_LsClientBaselogReplyMsg',221,1),(1669,1008,1011,'OP_LsClientCrashlogReplyMsg',222,1),(1670,1008,1011,'OP_LsClientAlertlogReplyMsg',223,1),(1671,1008,1011,'OP_LsClientVerifylogReplyMsg',224,1),(1672,1008,1011,'OP_ClientTeleportToLocationMsg',225,1),(1673,1008,1011,'OP_UpdateClientPredFlagsMsg',226,1),(1674,1008,1011,'OP_ChangeServerControlFlagMsg',227,1),(1675,1008,1011,'OP_CSToolsRequestMsg',228,1),(1676,1008,1011,'OP_CSToolsResponseMsg',229,1),(1677,1008,1011,'OP_AddSocialStructureStandingMsg',230,1),(1678,1008,1011,'OP_CreateBoatTransportsMsg',231,1),(1679,1008,1011,'OP_PositionBoatTransportMsg',232,1),(1680,1008,1011,'OP_MigrateBoatTransportMsg',233,1),(1681,1008,1011,'OP_MigrateBoatTransportReplyMsg',234,1),(1682,1008,1011,'OP_DisplayDebugNLLPointsMsg',235,1),(1683,1008,1011,'OP_ExamineInfoRequestMsg',236,1),(1684,1008,1011,'OP_QuickbarInitMsg',237,1),(1685,1008,1011,'OP_QuickbarUpdateMsg',238,1),(1686,1008,1011,'OP_MacroInitMsg',239,1),(1687,1008,1011,'OP_MacroUpdateMsg',240,1),(1688,1008,1011,'OP_QuestionnaireMsg',241,1),(1689,1008,1011,'OP_LevelChangedMsg',242,1),(1690,1008,1011,'OP_SpellGainedMsg',243,1),(1691,1008,1011,'OP_EncounterBrokenMsg',244,1),(1692,1008,1011,'OP_OnscreenMsgMsg',245,1),(1693,1008,1011,'OP_DisplayWarningMsg',246,1),(1694,1008,1011,'OP_ModifyGuildMsg',247,1),(1695,1008,1011,'OP_GuildEventMsg',248,1),(1696,1008,1011,'OP_GuildEventAddMsg',249,1),(1697,1008,1011,'OP_GuildEventActionMsg',250,1),(1698,1008,1011,'OP_GuildEventListMsg',251,1),(1699,1008,1011,'OP_RequestGuildEventDetailsMsg',252,1),(1700,1008,1011,'OP_GuildEventDetailsMsg',253,1),(1701,1008,1011,'OP_RequestGuildInfoMsg',254,1),(1702,1008,1011,'OP_GuildBankActionMsg',255,1),(1703,1008,1011,'OP_GuildBankActionResponseMsg',256,1),(1704,1008,1011,'OP_GuildBankItemDetailsRequestMsg',257,1),(1705,1008,1011,'OP_GuildBankItemDetailsResponseMs',258,1),(1706,1008,1011,'OP_GuildBankUpdateMsg',259,1),(1707,1008,1011,'OP_GuildBankEventListMsg',260,1),(1708,1008,1011,'OP_RequestGuildBankEventDetailsMs',261,1),(1709,1008,1011,'OP_RewardPackMsg',262,1),(1710,1008,1011,'OP_RenameGuildMsg',263,1),(1711,1008,1011,'OP_ZoneToFriendRequestMsg',265,1),(1712,1008,1011,'OP_ZoneToFriendReplyMsg',266,1),(1713,1008,1011,'OP_ChatCreateChannelMsg',267,1),(1714,1008,1011,'OP_ChatJoinChannelMsg',268,1),(1715,1008,1011,'OP_ChatWhoChannelMsg',269,1),(1716,1008,1011,'OP_ChatLeaveChannelMsg',270,1),(1717,1008,1011,'OP_ChatTellChannelMsg',271,1),(1718,1008,1011,'OP_ChatTellUserMsg',272,1),(1719,1008,1011,'OP_ChatToggleFriendMsg',273,1),(1720,1008,1011,'OP_ChatToggleIgnoreMsg',274,1),(1721,1008,1011,'OP_ChatSendFriendsMsg',275,1),(1722,1008,1011,'OP_ChatSendIgnoresMsg',276,1),(1723,1008,1011,'OP_QuestReward',303,1),(1724,1008,1011,'OP_ChatFiltersMsg',318,1),(1725,1008,1011,'OP_MailGetHeadersMsg',319,1),(1726,1008,1011,'OP_MailGetMessageMsg',320,1),(1727,1008,1011,'OP_MailSendMessageMsg',321,1),(1728,1008,1011,'OP_MailDeleteMessageMsg',322,1),(1729,1008,1011,'OP_MailGetHeadersReplyMsg',323,1),(1730,1008,1011,'OP_MailGetMessageReplyMsg',324,1),(1731,1008,1011,'OP_MailSendMessageReplyMsg',325,1),(1732,1008,1011,'OP_MailCommitSendMessageMsg',326,1),(1733,1008,1011,'OP_MailSendSystemMessageMsg',327,1),(1734,1008,1011,'OP_MailRemoveAttachFromMailMsg',328,1),(1735,1008,1011,'OP_WaypointRequestMsg',330,1),(1736,1008,1011,'OP_WaypointReplyMsg',331,1),(1737,1008,1011,'OP_WaypointSelectMsg',332,1),(1738,1008,1011,'OP_WaypointUpdateMsg',333,1),(1739,1008,1011,'OP_CharNameChangedMsg',334,1),(1740,1008,1011,'OP_ShowZoneTeleporterDestinations',335,1),(1741,1008,1011,'OP_SelectZoneTeleporterDestinatio',336,1),(1742,1008,1011,'OP_ReloadLocalizedTxtMsg',337,1),(1743,1008,1011,'OP_RequestGuildMembershipMsg',338,1),(1744,1008,1011,'OP_GuildMembershipResponseMsg',339,1),(1745,1008,1011,'OP_LeaveGuildNotifyMsg',340,1),(1746,1008,1011,'OP_JoinGuildNotifyMsg',341,1),(1747,1008,1011,'OP_AvatarUpdateMsg',343,1),(1748,1008,1011,'OP_BioUpdateMsg',344,1),(1749,1008,1011,'OP_InspectPlayerMsg',345,1),(1750,1008,1011,'OP_WSServerLockMsg',346,1),(1751,1008,1011,'OP_LSServerLockMsg',347,1),(1752,1008,1011,'OP_WSServerHideMsg',348,1),(1753,1008,1011,'OP_CsCategoryRequestMsg',349,1),(1754,1008,1011,'OP_CsCategoryResponseMsg',350,1),(1755,1008,1011,'OP_KnowledgeWindowSlotMappingMsg',351,1),(1756,1008,1011,'OP_LFGUpdateMsg',352,1),(1757,1008,1011,'OP_AFKUpdateMsg',353,1),(1758,1008,1011,'OP_AnonUpdateMsg',354,1),(1759,1008,1011,'OP_UpdateActivePublicZonesMsg',355,1),(1760,1008,1011,'OP_UnknownNpcMsg',356,1),(1761,1008,1011,'OP_PromoFlagsDetailsMsg',357,1),(1762,1008,1011,'OP_ConsignViewCreateMsg',358,1),(1763,1008,1011,'OP_ConsignViewGetPageMsg',359,1),(1764,1008,1011,'OP_ConsignViewReleaseMsg',360,1),(1765,1008,1011,'OP_ConsignRemoveItemsMsg',361,1),(1766,1008,1011,'OP_UpdateDebugRadiiMsg',362,1),(1767,1008,1011,'OP_SnoopMsg',363,1),(1768,1008,1011,'OP_ReportMsg',364,1),(1769,1008,1011,'OP_UpdateRaidMsg',365,1),(1770,1008,1011,'OP_ConsignViewSortMsg',366,1),(1771,1008,1011,'OP_TitleUpdateMsg',367,1),(1772,1008,1011,'OP_ClientFellMsg',368,1),(1773,1008,1011,'OP_ClientInDeathRegionMsg',369,1),(1774,1008,1011,'OP_CampClientMsg',370,1),(1775,1008,1011,'OP_CSToolAccessResponseMsg',371,1),(1776,1008,1011,'OP_TrackingUpdateMsg',372,1),(1777,1008,1011,'OP_BeginTrackingMsg',373,1),(1778,1008,1011,'OP_StopTrackingMsg',374,1),(1779,1008,1011,'OP_GetAvatarAccessRequestForCSToo',375,1),(1780,1008,1011,'OP_AdvancementRequestMsg',376,1),(1781,1008,1011,'OP_UpdateAvgFrameTimeMsg',377,1),(1782,1008,1011,'OP_MapFogDataInitMsg',378,1),(1783,1008,1011,'OP_MapFogDataUpdateMsg',379,1),(1784,1008,1011,'OP_CloseGroupInviteWindowMsg',380,1),(1785,1008,1011,'OP_UpdateGroupMemberDataMsg',381,1),(1786,1008,1011,'OP_WorldPingMsg',382,1),(1787,1008,1011,'OP_MoveLogUpdateMsg',383,1),(1788,1008,1011,'OP_OfferQuestMsg',384,1),(1789,1008,1011,'OP_WorldShutdownUpdateMsg',385,1),(1790,1008,1011,'OP_DisplayMailScreenMsg',386,1),(1791,1008,1011,'OP_ClientIdleBeginMsg',387,1),(1792,1008,1011,'OP_ClientIdleEndMsg',388,1),(1793,1008,1011,'OP_PurchaseConsignmentLoreCheckRe',389,1),(1794,1008,1011,'OP_NotifyApprenticeStoppedMentori',390,1),(1795,1008,1011,'OP_CorruptedClientMsg',391,1),(1796,1008,1011,'OP_WorldDataChangeMsg',392,1),(1797,1008,1011,'OP_MailEventNotificationMsg',393,1),(1798,1008,1011,'OP_RestartZoneMsg',394,1),(1799,1008,1011,'OP_FlightPathsMsg',395,1),(1800,1008,1011,'OP_CharacterLinkdeadMsg',396,1),(1801,1008,1011,'OP_CharTransferStartRequestMsg',397,1),(1802,1008,1011,'OP_CharTransferStartReplyMsg',398,1),(1803,1008,1011,'OP_CharTransferRequestMsg',399,1),(1804,1008,1011,'OP_CharTransferReplyMsg',400,1),(1805,1008,1011,'OP_CharTransferRollbackRequestMsg',401,1),(1806,1008,1011,'OP_CharTransferCommitRequestMsg',402,1),(1807,1008,1011,'OP_CharTransferRollbackReplyMsg',403,1),(1808,1008,1011,'OP_CharTransferCommitReplyMsg',404,1),(1809,1008,1011,'OP_GetCharacterSerializedRequestM',405,1),(1810,1008,1011,'OP_GetCharacterSerializedReplyMsg',406,1),(1811,1008,1011,'OP_CreateCharFromCBBRequestMsg',407,1),(1812,1008,1011,'OP_CreateCharFromCBBReplyMsg',408,1),(1813,1008,1011,'OP_HousingDataChangedMsg',409,1),(1814,1008,1011,'OP_HousingRestoreMsg',410,1),(1815,1008,1011,'OP_AuctionItem',411,1),(1816,1008,1011,'OP_AuctionItemReply',412,1),(1817,1008,1011,'OP_AuctionCoin',413,1),(1818,1008,1011,'OP_AuctionCoinReply',414,1),(1819,1008,1011,'OP_AuctionCharacter',415,1),(1820,1008,1011,'OP_AuctionCharacterReply',416,1),(1821,1008,1011,'OP_AuctionCommitMsg',417,1),(1822,1008,1011,'OP_AuctionAbortMsg',418,1),(1823,1008,1011,'OP_CharTransferValidateRequestMsg',419,1),(1824,1008,1011,'OP_CharTransferValidateReplyMsg',420,1),(1825,1008,1011,'OP_RaceRestrictionMsg',421,1),(1826,1008,1011,'OP_SetInstanceDisplayNameMsg',422,1),(1827,1008,1011,'OP_GetAuctionAssetIDMsg',423,1),(1828,1008,1011,'OP_GetAuctionAssetIDReplyMsg',424,1),(1829,1008,1011,'OP_ResendWorldChannelsMsg',425,1),(1830,1008,1011,'OP_DisplayExchangeScreenMsg',426,1),(1831,1008,1011,'OP_ArenaGameTypesMsg',427,1),(1832,1008,1011,'OP_AuditAuctionEventMsg',429,1),(1833,1008,1011,'OP_InviteRequestMsg',431,1),(1834,1008,1011,'OP_InviteResponseMsg',432,1),(1835,1008,1011,'OP_InviteTargetResponseMsg',433,1),(1836,1008,1011,'OP_InspectPlayerRequestMsg',434,1),(1837,1008,1011,'OP_DispatchMsg',435,1),(1838,1008,1011,'OP_DisplayEventMsg',436,1),(1839,1008,1011,'OP_PrePossessionMsg',437,1),(1840,1008,1011,'OP_PostPossessionMsg',438,1),(1841,1008,1011,'OP_AdventureList',464,1),(1842,1008,1011,'OP_CancelSpellCast',465,1),(1843,1008,1011,'OP_UpdateTitleCmd',471,1),(1844,1008,1011,'OP_AttackAllowed',477,1),(1845,1008,1011,'OP_AttackNotAllowed',478,1),(1846,1008,1011,'OP_DressingRoom',485,1),(1847,1008,1011,'OP_SkillInfoRequest',489,1),(1848,1008,1011,'OP_SkillInfoResponse',490,1),(1849,1008,1011,'OP_BadLanguageFilter',494,1),(1850,1008,1011,'OP_MapRequest',495,1),(1851,1008,1011,'OP_EqUnknown',520,1),(1852,1008,1011,'OP_EqHearChatCmd',522,1),(1853,1008,1011,'OP_EqDisplayTextCmd',523,1),(1854,1008,1011,'OP_EqCreateGhostCmd',524,1),(1855,1008,1011,'OP_EqCreateWidgetCmd',525,1),(1856,1008,1011,'OP_EqCreateSignWidgetCmd',526,1),(1857,1008,1011,'OP_EqDestroyGhostCmd',527,1),(1858,1008,1011,'OP_EqUpdateGhostCmd',528,1),(1859,1008,1011,'OP_EqSetControlGhostCmd',529,1),(1860,1008,1011,'OP_EqSetPOVGhostCmd',530,1),(1861,1008,1011,'OP_EqHearCombatCmd',531,1),(1862,1008,1011,'OP_EqHearSpellCastCmd',532,1),(1863,1008,1011,'OP_EqHearSpellInterruptCmd',535,1),(1864,1008,1011,'OP_EqHearSpellFizzleCmd',536,1),(1865,1008,1011,'OP_EqHearConsiderCmd',537,1),(1866,1008,1011,'OP_EqUpdateSubClassesCmd',538,1),(1867,1008,1011,'OP_EqCreateListBoxCmd',539,1),(1868,1008,1011,'OP_EqSetDebugPathPointsCmd',540,1),(1869,1008,1011,'OP_EqCannedEmoteCmd',542,1),(1870,1008,1011,'OP_EqStateCmd',543,1),(1871,1008,1011,'OP_EqPlaySoundCmd',544,1),(1872,1008,1011,'OP_EqPlaySound3DCmd',545,1),(1873,1008,1011,'OP_EqPlayVoiceCmd',546,1),(1874,1008,1011,'OP_EqHearDrowningCmd',547,1),(1875,1008,1011,'OP_EqHearDeathCmd',548,1),(1876,1008,1011,'OP_EqGroupMemberRemovedCmd',549,1),(1877,1008,1011,'OP_EqHearChainEffectCmd',550,1),(1878,1008,1011,'OP_EqReceiveOfferCmd',551,1),(1879,1008,1011,'OP_EqInspectPCResultsCmd',552,1),(1880,1008,1011,'OP_EqDrawablePathGraphCmd',553,1),(1881,1008,1011,'OP_EqDialogOpenCmd',554,1),(1882,1008,1011,'OP_EqDialogCloseCmd',555,1),(1883,1008,1011,'OP_EqFactionUpdateCmd',556,1),(1884,1008,1011,'OP_EqCollectionUpdateCmd',557,1),(1885,1008,1011,'OP_EqCollectionFilterCmd',558,1),(1886,1008,1011,'OP_EqCollectionItemCmd',559,1),(1887,1008,1011,'OP_EqQuestJournalUpdateCmd',560,1),(1888,1008,1011,'OP_EqQuestJournalReplyCmd',562,1),(1889,1008,1011,'OP_EqQuestGroupCmd',563,1),(1890,1008,1011,'OP_EqUpdateMerchantCmd',564,1),(1891,1008,1011,'OP_EqUpdateStoreCmd',565,1),(1892,1008,1011,'OP_EqUpdatePlayerTradeCmd',566,1),(1893,1008,1011,'OP_EqHelpPathCmd',567,1),(1894,1008,1011,'OP_EqHelpPathClearCmd',568,1),(1895,1008,1011,'OP_EqUpdateBankCmd',569,1),(1896,1008,1011,'OP_EqExamineInfoCmd',570,1),(1897,1008,1011,'OP_EqCloseWindowCmd',571,1),(1898,1008,1011,'OP_EqUpdateLootCmd',572,1),(1899,1008,1011,'OP_EqJunctionListCmd',573,1),(1900,1008,1011,'OP_EqShowDeathWindowCmd',574,1),(1901,1008,1011,'OP_EqDisplaySpellFailCmd',575,1),(1902,1008,1011,'OP_EqSpellCastStartCmd',576,1),(1903,1008,1011,'OP_EqSpellCastEndCmd',577,1),(1904,1008,1011,'OP_EqResurrectedCmd',578,1),(1905,1008,1011,'OP_EqChoiceWinCmd',579,1),(1906,1008,1011,'OP_EqSetDefaultVerbCmd',580,1),(1907,1008,1011,'OP_EqInstructionWindowCmd',582,1),(1908,1008,1011,'OP_EqInstructionWindowCloseCmd',583,1),(1909,1008,1011,'OP_EqInstructionWindowGoalCmd',584,1),(1910,1008,1011,'OP_EqInstructionWindowTaskCmd',585,1),(1911,1008,1011,'OP_EqEnableGameEventCmd',586,1),(1912,1008,1011,'OP_EqShowWindowCmd',587,1),(1913,1008,1011,'OP_EqEnableWindowCmd',588,1),(1914,1008,1011,'OP_EqFlashWindowCmd',589,1),(1915,1008,1011,'OP_EqHearPlayFlavorCmd',590,1),(1916,1008,1011,'OP_EqUpdateSignWidgetCmd',592,1),(1917,1008,1011,'OP_EqDebugPVDCmd',593,1),(1918,1008,1011,'OP_EqShowBookCmd',594,1),(1919,1008,1011,'OP_EqQuestionnaireCmd',595,1),(1920,1008,1011,'OP_EqGetProbsCmd',596,1),(1921,1008,1011,'OP_EqHearHealCmd',597,1),(1922,1008,1011,'OP_EqChatChannelUpdateCmd',598,1),(1923,1008,1011,'OP_EqWhoChannelQueryReplyCmd',599,1),(1924,1008,1011,'OP_EqAvailWorldChannelsCmd',600,1),(1925,1008,1011,'OP_EqUpdateTargetCmd',601,1),(1926,1008,1011,'OP_EqConsignmentItemsCmd',603,1),(1927,1008,1011,'OP_EqStartBrokerCmd',605,1),(1928,1008,1011,'OP_EqMapExplorationCmd',606,1),(1929,1008,1011,'OP_EqStoreLogCmd',607,1),(1930,1008,1011,'OP_EqSpellMoveToRangeAndRetryCmd',608,1),(1931,1008,1011,'OP_EqUpdatePlayerMailCmd',609,1),(1932,1008,1011,'OP_EqArenaResultsCmd',610,1),(1933,1008,1011,'OP_EqGuildBankEventActionCmd',611,1),(1934,1008,1011,'OP_EqGuildBankExamineInfoCmd',612,1),(1935,1008,1011,'OP_EqHearSpellNoLandCmd',613,1),(1936,1008,1011,'OP_Lottery',617,1),(1937,1008,1011,'OP_GuildRecruitingMemberInfo',618,1),(1938,1008,1011,'OP_GuildRecruiting',619,1),(1939,1008,1011,'OP_GuildRecruitingDetails',620,1),(1940,1008,1011,'OP_GuildRecruitingImage',621,1),(1941,1008,1011,'OP_PointOfInterest',642,1),(1942,1008,1011,'OP_TraitsList',644,1),(1943,1008,1011,'OP_RecipeList',653,1),(1944,1008,1011,'OP_CharacterAchievements',655,1),(1945,1008,1011,'OP_AddClientToGroupMsg',1041,1),(1946,1008,1011,'OP_AddGroupToGroupMsg',1041,1),(1947,1008,1011,'OP_GuildKickMsg',1041,1),(1948,1008,1011,'OP_ProcessScriptMsg',1041,1),(1949,1008,1011,'OP_ProcessWorkspaceMsg',1041,1),(1950,1008,1011,'OP_PurchaseConsignmentResponseMsg',1041,1),(1951,1008,1011,'OP_QuickbarAddMsg',1041,1),(1952,1008,1011,'OP_SkillSlotMapping',1041,1),(1953,1008,1011,'OP_Unknown',10045,1),(1954,1008,1011,'OP_WSWeatherUpdateMsg',10046,1),(1955,1045,1086,'OP_LoginRequestMsg',0,1),(1956,1045,1086,'OP_LoginByNumRequestMsg',1,1),(1957,1045,1086,'OP_WSLoginRequestMsg',2,1),(1958,1045,1086,'OP_ESLoginRequestMsg',3,1),(1959,1045,1086,'OP_LoginReplyMsg',4,1),(1960,1045,1086,'OP_WSStatusReplyMsg',5,1),(1961,1045,1086,'OP_WorldStatusChangeMsg',6,1),(1962,1045,1086,'OP_AllWSDescRequestMsg',7,1),(1963,1045,1086,'OP_WorldListMsg',8,1),(1964,1045,1086,'OP_AllCharactersDescRequestMsg',9,1),(1965,1045,1086,'OP_AllCharactersDescReplyMsg',10,1),(1966,1045,1086,'OP_CreateCharacterRequestMsg',11,1),(1967,1045,1086,'OP_CreateCharacterReplyMsg',12,1),(1968,1045,1086,'OP_WSCreateCharacterRequestMsg',13,1),(1969,1045,1086,'OP_WSCreateCharacterReplyMsg',14,1),(1970,1045,1086,'OP_ReskinCharacterRequestMsg',15,1),(1971,1045,1086,'OP_DeleteCharacterRequestMsg',16,1),(1972,1045,1086,'OP_DeleteCharacterReplyMsg',17,1),(1973,1045,1086,'OP_PlayCharacterRequestMsg',18,1),(1974,1045,1086,'OP_PlayCharacterReplyMsg',19,1),(1975,1045,1086,'OP_ExpectClientAsCharacterReplyMs',22,1),(1976,1045,1086,'OP_ServerPlayCharacterRequestMsg',23,1),(1977,1045,1086,'OP_ServerPlayCharacterReplyMsg',24,1),(1978,1045,1086,'OP_ESInitMsg',25,1),(1979,1045,1086,'OP_ESReadyForClientsMsg',26,1),(1980,1045,1086,'OP_CreateZoneInstanceMsg',27,1),(1981,1045,1086,'OP_ZoneInstanceCreateReplyMsg',28,1),(1982,1045,1086,'OP_ZoneInstanceDestroyedMsg',29,1),(1983,1045,1086,'OP_ExpectClientAsCharacterRequest',30,1),(1984,1045,1086,'OP_ZoneInfoMsg',31,1),(1985,1045,1086,'OP_DoneLoadingZoneResourcesMsg',32,1),(1986,1045,1086,'OP_DoneSendingInitialEntitiesMsg',33,1),(1987,1045,1086,'OP_DoneLoadingEntityResourcesMsg',34,1),(1988,1045,1086,'OP_PredictionUpdateMsg',35,1),(1989,1045,1086,'OP_UpdatePositionMsg',37,1),(1990,1045,1086,'OP_SetRemoteCmdsMsg',39,1),(1991,1045,1086,'OP_RemoteCmdMsg',40,1),(1992,1045,1086,'OP_GameWorldTimeMsg',41,1),(1993,1045,1086,'OP_MOTDMsg',42,1),(1994,1045,1086,'OP_ZoneMOTDMsg',43,1),(1995,1045,1086,'OP_AvatarCreatedMsg',44,1),(1996,1045,1086,'OP_AvatarDestroyedMsg',45,1),(1997,1045,1086,'OP_RequestCampMsg',47,1),(1998,1045,1086,'OP_CampStartedMsg',48,1),(1999,1045,1086,'OP_CampAbortedMsg',49,1),(2000,1045,1086,'OP_WhoQueryRequestMsg',50,1),(2001,1045,1086,'OP_WhoQueryReplyMsg',51,1),(2002,1045,1086,'OP_MonitorReplyMsg',52,1),(2003,1045,1086,'OP_MonitorCharacterListMsg',53,1),(2004,1045,1086,'OP_MonitorCharacterListRequestMsg',54,1),(2005,1045,1086,'OP_ClientCmdMsg',55,1),(2006,1045,1086,'OP_DispatchESMsg',56,1),(2007,1045,1086,'OP_DispatchClientCmdMsg',57,1),(2008,1045,1086,'OP_UpdateTargetMsg',58,1),(2009,1045,1086,'OP_UpdateTargetLocMsg',59,1),(2010,1045,1086,'OP_UpdateCharacterSheetMsg',60,1),(2011,1045,1086,'OP_UpdateSpellBookMsg',61,1),(2012,1045,1086,'OP_UpdateInventoryMsg',63,1),(2013,1045,1086,'OP_UpdateRecipeBookMsg',65,1),(2014,1045,1086,'OP_RequestRecipeDetailsMsg',66,1),(2015,1045,1086,'OP_RecipeDetailsMsg',67,1),(2016,1045,1086,'OP_UpdateSkillBookMsg',68,1),(2017,1045,1086,'OP_UpdateSkillsMsg',69,1),(2018,1045,1086,'OP_UpdateOpportunityMsg',70,1),(2019,1045,1086,'OP_ChangeZoneMsg',72,1),(2020,1045,1086,'OP_ClientTeleportRequestMsg',73,1),(2021,1045,1086,'OP_TeleportWithinZoneMsg',74,1),(2022,1045,1086,'OP_TeleportWithinZoneNoReloadMsg',75,1),(2023,1045,1086,'OP_MigrateClientToZoneRequestMsg',76,1),(2024,1045,1086,'OP_MigrateClientToZoneReplyMsg',77,1),(2025,1045,1086,'OP_ReadyToZoneMsg',78,1),(2026,1045,1086,'OP_RemoveClientFromGroupMsg',79,1),(2027,1045,1086,'OP_RemoveGroupFromGroupMsg',80,1),(2028,1045,1086,'OP_MakeGroupLeaderMsg',81,1),(2029,1045,1086,'OP_GroupCreatedMsg',82,1),(2030,1045,1086,'OP_GroupDestroyedMsg',83,1),(2031,1045,1086,'OP_GroupMemberAddedMsg',84,1),(2032,1045,1086,'OP_GroupMemberRemovedMsg',85,1),(2033,1045,1086,'OP_GroupRemovedFromGroupMsg',86,1),(2034,1045,1086,'OP_GroupLeaderChangedMsg',87,1),(2035,1045,1086,'OP_GroupResendOOZDataMsg',88,1),(2036,1045,1086,'OP_GroupSettingsChangedMsg',89,1),(2037,1045,1086,'OP_OutOfZoneMemberDataMsg',90,1),(2038,1045,1086,'OP_SendLatestRequestMsg',91,1),(2039,1045,1086,'OP_ClearDataMsg',92,1),(2040,1045,1086,'OP_SetSocialMsg',93,1),(2041,1045,1086,'OP_ESStatusMsg',94,1),(2042,1045,1086,'OP_ESZoneInstanceStatusMsg',95,1),(2043,1045,1086,'OP_ZonesStatusRequestMsg',96,1),(2044,1045,1086,'OP_ZonesStatusMsg',97,1),(2045,1045,1086,'OP_ESWeatherRequestMsg',98,1),(2046,1045,1086,'OP_ESWeatherRequestEndMsg',99,1),(2047,1045,1086,'OP_DialogSelectMsg',102,1),(2048,1045,1086,'OP_DialogCloseMsg',103,1),(2049,1045,1086,'OP_RemoveSpellEffectMsg',104,1),(2050,1045,1086,'OP_RemoveConcentrationMsg',105,1),(2051,1045,1086,'OP_QuestJournalOpenMsg',106,1),(2052,1045,1086,'OP_QuestJournalInspectMsg',107,1),(2053,1045,1086,'OP_QuestJournalSetVisibleMsg',108,1),(2054,1045,1086,'OP_QuestJournalWaypointMsg',109,1),(2055,1045,1086,'OP_CreateGuildRequestMsg',110,1),(2056,1045,1086,'OP_CreateGuildReplyMsg',111,1),(2057,1045,1086,'OP_GuildsayMsg',112,1),(2058,1045,1086,'OP_GuildUpdateMsg',119,1),(2059,1045,1086,'OP_DeleteGuildMsg',120,1),(2060,1045,1086,'OP_FellowshipExpMsg',121,1),(2061,1045,1086,'OP_ConsignmentCloseStoreMsg',122,1),(2062,1045,1086,'OP_ConsignItemRequestMsg',123,1),(2063,1045,1086,'OP_ConsignItemResponseMsg',124,1),(2064,1045,1086,'OP_PurchaseConsignmentRequestMsg',125,1),(2065,1045,1086,'OP_HouseDeletedRemotelyMsg',126,1),(2066,1045,1086,'OP_UpdateHouseDataMsg',127,1),(2067,1045,1086,'OP_UpdateHouseAccessDataMsg',128,1),(2068,1045,1086,'OP_PlayerHouseBaseScreenMsg',129,1),(2069,1045,1086,'OP_PlayerHousePurchaseScreenMsg',130,1),(2070,1045,1086,'OP_PlayerHouseAccessUpdateMsg',131,1),(2071,1045,1086,'OP_PlayerHouseDisplayStatusMsg',132,1),(2072,1045,1086,'OP_PlayerHouseCloseUIMsg',133,1),(2073,1045,1086,'OP_BuyPlayerHouseMsg',134,1),(2074,1045,1086,'OP_BuyPlayerHouseTintMsg',135,1),(2075,1045,1086,'OP_CollectAllHouseItemsMsg',136,1),(2076,1045,1086,'OP_RelinquishHouseMsg',137,1),(2077,1045,1086,'OP_EnterHouseMsg',138,1),(2078,1045,1086,'OP_ExitHouseMsg',139,1),(2079,1045,1086,'OP_HouseDefaultAccessSetMsg',140,1),(2080,1045,1086,'OP_HouseAccessSetMsg',141,1),(2081,1045,1086,'OP_HouseAccessRemoveMsg',142,1),(2082,1045,1086,'OP_PayHouseUpkeepMsg',143,1),(2083,1045,1086,'OP_MoveableObjectPlacementCriteri',145,1),(2084,1045,1086,'OP_EnterMoveObjectModeMsg',146,1),(2085,1045,1086,'OP_PositionMoveableObject',147,1),(2086,1045,1086,'OP_CancelMoveObjectModeMsg',148,1),(2087,1045,1086,'OP_ShaderCustomizationMsg',149,1),(2088,1045,1086,'OP_ReplaceableSubMeshesMsg',150,1),(2089,1045,1086,'OP_HouseCustomizationScreenMsg',151,1),(2090,1045,1086,'OP_CustomizationPurchaseRequestMs',152,1),(2091,1045,1086,'OP_CustomizationSetRequestMsg',153,1),(2092,1045,1086,'OP_CustomizationReplyMsg',154,1),(2093,1045,1086,'OP_TintWidgetsMsg',155,1),(2094,1045,1086,'OP_ExamineConsignmentRequestMsg',156,1),(2095,1045,1086,'OP_ExamineConsignmentResponseMsg',157,1),(2096,1045,1086,'OP_UISettingsResponseMsg',158,1),(2097,1045,1086,'OP_UIResetMsg',160,1),(2098,1045,1086,'OP_KeymapLoadMsg',161,1),(2099,1045,1086,'OP_KeymapNoneMsg',162,1),(2100,1045,1086,'OP_KeymapDataMsg',163,1),(2101,1045,1086,'OP_KeymapSaveMsg',164,1),(2102,1045,1086,'OP_DispatchSpellCmdMsg',165,1),(2103,1045,1086,'OP_EntityVerbsRequestMsg',167,1),(2104,1045,1086,'OP_EntityVerbsReplyMsg',168,1),(2105,1045,1086,'OP_EntityVerbsVerbMsg',169,1),(2106,1045,1086,'OP_ChatRelationshipUpdateMsg',171,1),(2107,1045,1086,'OP_LootItemsRequestMsg',172,1),(2108,1045,1086,'OP_StoppedLootingMsg',173,1),(2109,1045,1086,'OP_SitMsg',174,1),(2110,1045,1086,'OP_StandMsg',175,1),(2111,1045,1086,'OP_SatMsg',176,1),(2112,1045,1086,'OP_StoodMsg',177,1),(2113,1045,1086,'OP_ClearForTakeOffMsg',178,1),(2114,1045,1086,'OP_ReadyForTakeOffMsg',179,1),(2115,1045,1086,'OP_ShowIllusionsMsg',180,1),(2116,1045,1086,'OP_HideIllusionsMsg',181,1),(2117,1045,1086,'OP_ExamineItemRequestMsg',182,1),(2118,1045,1086,'OP_ReadBookPageMsg',183,1),(2119,1045,1086,'OP_DefaultGroupOptionsRequestMsg',184,1),(2120,1045,1086,'OP_DefaultGroupOptionsMsg',185,1),(2121,1045,1086,'OP_GroupOptionsMsg',186,1),(2122,1045,1086,'OP_DisplayGroupOptionsScreenMsg',187,1),(2123,1045,1086,'OP_DisplayInnVisitScreenMsg',188,1),(2124,1045,1086,'OP_DumpSchedulerMsg',189,1),(2125,1045,1086,'OP_LSRequestPlayerDescMsg',190,1),(2126,1045,1086,'OP_LSCheckAcctLockMsg',191,1),(2127,1045,1086,'OP_WSAcctLockStatusMsg',192,1),(2128,1045,1086,'OP_RequestHelpRepathMsg',193,1),(2129,1045,1086,'OP_RequestTargetLocMsg',194,1),(2130,1045,1086,'OP_UpdateMotdMsg',195,1),(2131,1045,1086,'OP_PerformPlayerKnockbackMsg',196,1),(2132,1045,1086,'OP_PerformCameraShakeMsg',197,1),(2133,1045,1086,'OP_PopulateSkillMapsMsg',200,1),(2134,1045,1086,'OP_CancelledFeignMsg',202,1),(2135,1045,1086,'OP_SignalMsg',203,1),(2136,1045,1086,'OP_ShowCreateFromRecipeUIMsg',204,1),(2137,1045,1086,'OP_CancelCreateFromRecipeMsg',205,1),(2138,1045,1086,'OP_BeginItemCreationMsg',206,1),(2139,1045,1086,'OP_StopItemCreationMsg',207,1),(2140,1045,1086,'OP_ShowItemCreationProcessUIMsg',208,1),(2141,1045,1086,'OP_UpdateItemCreationProcessUIMsg',209,1),(2142,1045,1086,'OP_DisplayTSEventReactionMsg',210,1),(2143,1045,1086,'OP_ShowRecipeBookMsg',211,1),(2144,1045,1086,'OP_KnowledgebaseRequestMsg',212,1),(2145,1045,1086,'OP_KnowledgebaseResponseMsg',213,1),(2146,1045,1086,'OP_CSTicketHeaderRequestMsg',214,1),(2147,1045,1086,'OP_CSTicketInfoMsg',215,1),(2148,1045,1086,'OP_CSTicketCommentRequestMsg',216,1),(2149,1045,1086,'OP_CSTicketCommentResponseMsg',217,1),(2150,1045,1086,'OP_CSTicketCreateMsg',218,1),(2151,1045,1086,'OP_CSTicketAddCommentMsg',219,1),(2152,1045,1086,'OP_CSTicketDeleteMsg',220,1),(2153,1045,1086,'OP_CSTicketChangeNotificationMsg',221,1),(2154,1045,1086,'OP_WorldDataUpdateMsg',222,1),(2155,1045,1086,'OP_KnownLanguagesMsg',223,1),(2156,1045,1086,'OP_LsRequestClientCrashLogMsg',224,1),(2157,1045,1086,'OP_LsClientBaselogReplyMsg',225,1),(2158,1045,1086,'OP_LsClientCrashlogReplyMsg',226,1),(2159,1045,1086,'OP_LsClientAlertlogReplyMsg',227,1),(2160,1045,1086,'OP_LsClientVerifylogReplyMsg',228,1),(2161,1045,1086,'OP_ClientTeleportToLocationMsg',229,1),(2162,1045,1086,'OP_UpdateClientPredFlagsMsg',230,1),(2163,1045,1086,'OP_ChangeServerControlFlagMsg',231,1),(2164,1045,1086,'OP_CSToolsRequestMsg',232,1),(2165,1045,1086,'OP_CSToolsResponseMsg',233,1),(2166,1045,1086,'OP_AddSocialStructureStandingMsg',234,1),(2167,1045,1086,'OP_CreateBoatTransportsMsg',235,1),(2168,1045,1086,'OP_PositionBoatTransportMsg',236,1),(2169,1045,1086,'OP_MigrateBoatTransportMsg',237,1),(2170,1045,1086,'OP_MigrateBoatTransportReplyMsg',238,1),(2171,1045,1086,'OP_DisplayDebugNLLPointsMsg',239,1),(2172,1045,1086,'OP_ExamineInfoRequestMsg',240,1),(2173,1045,1086,'OP_QuickbarInitMsg',241,1),(2174,1045,1086,'OP_QuickbarUpdateMsg',242,1),(2175,1045,1086,'OP_MacroInitMsg',243,1),(2176,1045,1086,'OP_MacroUpdateMsg',244,1),(2177,1045,1086,'OP_QuestionnaireMsg',245,1),(2178,1045,1086,'OP_LevelChangedMsg',246,1),(2179,1045,1086,'OP_SpellGainedMsg',247,1),(2180,1045,1086,'OP_EncounterBrokenMsg',248,1),(2181,1045,1086,'OP_OnscreenMsgMsg',249,1),(2182,1045,1086,'OP_DisplayWarningMsg',250,1),(2183,1045,1086,'OP_ModifyGuildMsg',251,1),(2184,1045,1086,'OP_GuildEventMsg',252,1),(2185,1045,1086,'OP_GuildEventAddMsg',253,1),(2186,1045,1086,'OP_GuildEventActionMsg',254,1),(2187,1045,1086,'OP_GuildEventListMsg',255,1),(2188,1045,1086,'OP_RequestGuildEventDetailsMsg',256,1),(2189,1045,1086,'OP_GuildEventDetailsMsg',257,1),(2190,1045,1086,'OP_RequestGuildInfoMsg',258,1),(2191,1045,1086,'OP_GuildBankActionMsg',259,1),(2192,1045,1086,'OP_GuildBankActionResponseMsg',260,1),(2193,1045,1086,'OP_GuildBankItemDetailsRequestMsg',261,1),(2194,1045,1086,'OP_GuildBankItemDetailsResponseMs',262,1),(2195,1045,1086,'OP_GuildBankUpdateMsg',263,1),(2196,1045,1086,'OP_GuildBankEventListMsg',264,1),(2197,1045,1086,'OP_RequestGuildBankEventDetailsMs',265,1),(2198,1045,1086,'OP_RewardPackMsg',266,1),(2199,1045,1086,'OP_RenameGuildMsg',267,1),(2200,1045,1086,'OP_ZoneToFriendRequestMsg',269,1),(2201,1045,1086,'OP_ZoneToFriendReplyMsg',270,1),(2202,1045,1086,'OP_ChatCreateChannelMsg',271,1),(2203,1045,1086,'OP_ChatJoinChannelMsg',272,1),(2204,1045,1086,'OP_ChatWhoChannelMsg',273,1),(2205,1045,1086,'OP_ChatLeaveChannelMsg',274,1),(2206,1045,1086,'OP_ChatTellChannelMsg',275,1),(2207,1045,1086,'OP_ChatTellUserMsg',276,1),(2208,1045,1086,'OP_ChatToggleFriendMsg',277,1),(2209,1045,1086,'OP_ChatToggleIgnoreMsg',278,1),(2210,1045,1086,'OP_ChatSendFriendsMsg',279,1),(2211,1045,1086,'OP_ChatSendIgnoresMsg',280,1),(2212,1045,1086,'OP_QuestReward',307,1),(2213,1045,1086,'OP_ChatFiltersMsg',322,1),(2214,1045,1086,'OP_MailGetHeadersMsg',323,1),(2215,1045,1086,'OP_MailGetMessageMsg',324,1),(2216,1045,1086,'OP_MailSendMessageMsg',325,1),(2217,1045,1086,'OP_MailDeleteMessageMsg',326,1),(2218,1045,1086,'OP_MailGetHeadersReplyMsg',327,1),(2219,1045,1086,'OP_MailGetMessageReplyMsg',328,1),(2220,1045,1086,'OP_MailSendMessageReplyMsg',329,1),(2221,1045,1086,'OP_MailCommitSendMessageMsg',330,1),(2222,1045,1086,'OP_MailSendSystemMessageMsg',331,1),(2223,1045,1086,'OP_MailRemoveAttachFromMailMsg',332,1),(2224,1045,1086,'OP_WaypointRequestMsg',334,1),(2225,1045,1086,'OP_WaypointReplyMsg',335,1),(2226,1045,1086,'OP_WaypointSelectMsg',336,1),(2227,1045,1086,'OP_WaypointUpdateMsg',337,1),(2228,1045,1086,'OP_CharNameChangedMsg',338,1),(2229,1045,1086,'OP_ShowZoneTeleporterDestinations',339,1),(2230,1045,1086,'OP_SelectZoneTeleporterDestinatio',340,1),(2231,1045,1086,'OP_ReloadLocalizedTxtMsg',341,1),(2232,1045,1086,'OP_RequestGuildMembershipMsg',342,1),(2233,1045,1086,'OP_GuildMembershipResponseMsg',343,1),(2234,1045,1086,'OP_LeaveGuildNotifyMsg',344,1),(2235,1045,1086,'OP_JoinGuildNotifyMsg',345,1),(2236,1045,1086,'OP_AvatarUpdateMsg',347,1),(2237,1045,1086,'OP_BioUpdateMsg',348,1),(2238,1045,1086,'OP_InspectPlayerMsg',349,1),(2239,1045,1086,'OP_WSServerLockMsg',350,1),(2240,1045,1086,'OP_LSServerLockMsg',351,1),(2241,1045,1086,'OP_WSServerHideMsg',352,1),(2242,1045,1086,'OP_CsCategoryRequestMsg',353,1),(2243,1045,1086,'OP_CsCategoryResponseMsg',354,1),(2244,1045,1086,'OP_KnowledgeWindowSlotMappingMsg',355,1),(2245,1045,1086,'OP_LFGUpdateMsg',356,1),(2246,1045,1086,'OP_AFKUpdateMsg',357,1),(2247,1045,1086,'OP_AnonUpdateMsg',358,1),(2248,1045,1086,'OP_UpdateActivePublicZonesMsg',359,1),(2249,1045,1086,'OP_UnknownNpcMsg',360,1),(2250,1045,1086,'OP_PromoFlagsDetailsMsg',361,1),(2251,1045,1086,'OP_ConsignViewCreateMsg',362,1),(2252,1045,1086,'OP_ConsignViewGetPageMsg',363,1),(2253,1045,1086,'OP_ConsignViewReleaseMsg',364,1),(2254,1045,1086,'OP_ConsignRemoveItemsMsg',365,1),(2255,1045,1086,'OP_UpdateDebugRadiiMsg',366,1),(2256,1045,1086,'OP_SnoopMsg',367,1),(2257,1045,1086,'OP_ReportMsg',368,1),(2258,1045,1086,'OP_UpdateRaidMsg',369,1),(2259,1045,1086,'OP_ConsignViewSortMsg',370,1),(2260,1045,1086,'OP_TitleUpdateMsg',371,1),(2261,1045,1086,'OP_ClientFellMsg',372,1),(2262,1045,1086,'OP_ClientInDeathRegionMsg',373,1),(2263,1045,1086,'OP_CampClientMsg',374,1),(2264,1045,1086,'OP_CSToolAccessResponseMsg',375,1),(2265,1045,1086,'OP_TrackingUpdateMsg',376,1),(2266,1045,1086,'OP_BeginTrackingMsg',377,1),(2267,1045,1086,'OP_StopTrackingMsg',378,1),(2268,1045,1086,'OP_GetAvatarAccessRequestForCSToo',379,1),(2269,1045,1086,'OP_AdvancementRequestMsg',380,1),(2270,1045,1086,'OP_UpdateAvgFrameTimeMsg',381,1),(2271,1045,1086,'OP_MapFogDataInitMsg',382,1),(2272,1045,1086,'OP_MapFogDataUpdateMsg',383,1),(2273,1045,1086,'OP_CloseGroupInviteWindowMsg',384,1),(2274,1045,1086,'OP_UpdateGroupMemberDataMsg',385,1),(2275,1045,1086,'OP_WorldPingMsg',386,1),(2276,1045,1086,'OP_MoveLogUpdateMsg',387,1),(2277,1045,1086,'OP_OfferQuestMsg',388,1),(2278,1045,1086,'OP_WorldShutdownUpdateMsg',389,1),(2279,1045,1086,'OP_DisplayMailScreenMsg',390,1),(2280,1045,1086,'OP_ClientIdleBeginMsg',391,1),(2281,1045,1086,'OP_ClientIdleEndMsg',392,1),(2282,1045,1086,'OP_PurchaseConsignmentLoreCheckRe',393,1),(2283,1045,1086,'OP_NotifyApprenticeStoppedMentori',394,1),(2284,1045,1086,'OP_CorruptedClientMsg',395,1),(2285,1045,1086,'OP_WorldDataChangeMsg',396,1),(2286,1045,1086,'OP_MailEventNotificationMsg',397,1),(2287,1045,1086,'OP_RestartZoneMsg',398,1),(2288,1045,1086,'OP_FlightPathsMsg',399,1),(2289,1045,1086,'OP_CharacterLinkdeadMsg',400,1),(2290,1045,1086,'OP_CharTransferStartRequestMsg',401,1),(2291,1045,1086,'OP_CharTransferStartReplyMsg',402,1),(2292,1045,1086,'OP_CharTransferRequestMsg',403,1),(2293,1045,1086,'OP_CharTransferReplyMsg',404,1),(2294,1045,1086,'OP_CharTransferRollbackRequestMsg',405,1),(2295,1045,1086,'OP_CharTransferCommitRequestMsg',406,1),(2296,1045,1086,'OP_CharTransferRollbackReplyMsg',407,1),(2297,1045,1086,'OP_CharTransferCommitReplyMsg',408,1),(2298,1045,1086,'OP_GetCharacterSerializedRequestM',409,1),(2299,1045,1086,'OP_GetCharacterSerializedReplyMsg',410,1),(2300,1045,1086,'OP_CreateCharFromCBBRequestMsg',411,1),(2301,1045,1086,'OP_CreateCharFromCBBReplyMsg',412,1),(2302,1045,1086,'OP_HousingDataChangedMsg',413,1),(2303,1045,1086,'OP_HousingRestoreMsg',414,1),(2304,1045,1086,'OP_AuctionItem',415,1),(2305,1045,1086,'OP_AuctionItemReply',416,1),(2306,1045,1086,'OP_AuctionCoin',417,1),(2307,1045,1086,'OP_AuctionCoinReply',418,1),(2308,1045,1086,'OP_AuctionCharacter',419,1),(2309,1045,1086,'OP_AuctionCharacterReply',420,1),(2310,1045,1086,'OP_AuctionCommitMsg',421,1),(2311,1045,1086,'OP_AuctionAbortMsg',422,1),(2312,1045,1086,'OP_CharTransferValidateRequestMsg',423,1),(2313,1045,1086,'OP_CharTransferValidateReplyMsg',424,1),(2314,1045,1086,'OP_RaceRestrictionMsg',425,1),(2315,1045,1086,'OP_SetInstanceDisplayNameMsg',426,1),(2316,1045,1086,'OP_GetAuctionAssetIDMsg',427,1),(2317,1045,1086,'OP_GetAuctionAssetIDReplyMsg',428,1),(2318,1045,1086,'OP_ResendWorldChannelsMsg',429,1),(2319,1045,1086,'OP_DisplayExchangeScreenMsg',430,1),(2320,1045,1086,'OP_ArenaGameTypesMsg',431,1),(2321,1045,1086,'OP_AuditAuctionEventMsg',433,1),(2322,1045,1086,'OP_InviteRequestMsg',435,1),(2323,1045,1086,'OP_InviteResponseMsg',436,1),(2324,1045,1086,'OP_InviteTargetResponseMsg',437,1),(2325,1045,1086,'OP_InspectPlayerRequestMsg',438,1),(2326,1045,1086,'OP_DispatchMsg',439,1),(2327,1045,1086,'OP_DisplayEventMsg',440,1),(2328,1045,1086,'OP_PrePossessionMsg',441,1),(2329,1045,1086,'OP_PostPossessionMsg',442,1),(2330,1045,1086,'OP_AdventureList',474,1),(2331,1045,1086,'OP_CancelSpellCast',475,1),(2332,1045,1086,'OP_UpdateTitleCmd',483,1),(2333,1045,1086,'OP_AttackAllowed',487,1),(2334,1045,1086,'OP_AttackNotAllowed',488,1),(2335,1045,1086,'OP_DressingRoom',494,1),(2336,1045,1086,'OP_SkillInfoRequest',498,1),(2337,1045,1086,'OP_SkillInfoResponse',499,1),(2338,1045,1086,'OP_BadLanguageFilter',503,1),(2339,1045,1086,'OP_MapRequest',504,1),(2340,1045,1086,'OP_EqUnknown',539,1),(2341,1045,1086,'OP_EqHearChatCmd',541,1),(2342,1045,1086,'OP_EqDisplayTextCmd',542,1),(2343,1045,1086,'OP_EqCreateGhostCmd',543,1),(2344,1045,1086,'OP_EqCreateWidgetCmd',544,1),(2345,1045,1086,'OP_EqCreateSignWidgetCmd',545,1),(2346,1045,1086,'OP_EqDestroyGhostCmd',546,1),(2347,1045,1086,'OP_EqUpdateGhostCmd',547,1),(2348,1045,1086,'OP_EqSetControlGhostCmd',548,1),(2349,1045,1086,'OP_EqSetPOVGhostCmd',549,1),(2350,1045,1086,'OP_EqHearCombatCmd',550,1),(2351,1045,1086,'OP_EqHearSpellCastCmd',551,1),(2352,1045,1086,'OP_EqHearSpellInterruptCmd',554,1),(2353,1045,1086,'OP_EqHearSpellFizzleCmd',555,1),(2354,1045,1086,'OP_EqHearConsiderCmd',556,1),(2355,1045,1086,'OP_EqUpdateSubClassesCmd',557,1),(2356,1045,1086,'OP_EqCreateListBoxCmd',558,1),(2357,1045,1086,'OP_EqSetDebugPathPointsCmd',559,1),(2358,1045,1086,'OP_EqCannedEmoteCmd',561,1),(2359,1045,1086,'OP_EqStateCmd',562,1),(2360,1045,1086,'OP_EqPlaySoundCmd',563,1),(2361,1045,1086,'OP_EqPlaySound3DCmd',564,1),(2362,1045,1086,'OP_EqPlayVoiceCmd',565,1),(2363,1045,1086,'OP_EqHearDrowningCmd',566,1),(2364,1045,1086,'OP_EqHearDeathCmd',567,1),(2365,1045,1086,'OP_EqGroupMemberRemovedCmd',568,1),(2366,1045,1086,'OP_EqHearChainEffectCmd',569,1),(2367,1045,1086,'OP_EqReceiveOfferCmd',570,1),(2368,1045,1086,'OP_EqInspectPCResultsCmd',571,1),(2369,1045,1086,'OP_EqDrawablePathGraphCmd',572,1),(2370,1045,1086,'OP_EqDialogOpenCmd',573,1),(2371,1045,1086,'OP_EqDialogCloseCmd',574,1),(2372,1045,1086,'OP_EqFactionUpdateCmd',575,1),(2373,1045,1086,'OP_EqCollectionUpdateCmd',576,1),(2374,1045,1086,'OP_EqCollectionFilterCmd',577,1),(2375,1045,1086,'OP_EqCollectionItemCmd',578,1),(2376,1045,1086,'OP_EqQuestJournalUpdateCmd',579,1),(2377,1045,1086,'OP_EqQuestJournalReplyCmd',581,1),(2378,1045,1086,'OP_EqQuestGroupCmd',582,1),(2379,1045,1086,'OP_EqUpdateMerchantCmd',583,1),(2380,1045,1086,'OP_EqUpdateStoreCmd',584,1),(2381,1045,1086,'OP_EqUpdatePlayerTradeCmd',585,1),(2382,1045,1086,'OP_EqHelpPathCmd',586,1),(2383,1045,1086,'OP_EqHelpPathClearCmd',587,1),(2384,1045,1086,'OP_EqUpdateBankCmd',588,1),(2385,1045,1086,'OP_EqExamineInfoCmd',589,1),(2386,1045,1086,'OP_EqCloseWindowCmd',590,1),(2387,1045,1086,'OP_EqUpdateLootCmd',591,1),(2388,1045,1086,'OP_EqJunctionListCmd',592,1),(2389,1045,1086,'OP_EqShowDeathWindowCmd',593,1),(2390,1045,1086,'OP_EqDisplaySpellFailCmd',594,1),(2391,1045,1086,'OP_EqSpellCastStartCmd',595,1),(2392,1045,1086,'OP_EqSpellCastEndCmd',596,1),(2393,1045,1086,'OP_EqResurrectedCmd',597,1),(2394,1045,1086,'OP_EqChoiceWinCmd',598,1),(2395,1045,1086,'OP_EqSetDefaultVerbCmd',599,1),(2396,1045,1086,'OP_EqInstructionWindowCmd',601,1),(2397,1045,1086,'OP_EqInstructionWindowCloseCmd',602,1),(2398,1045,1086,'OP_EqInstructionWindowGoalCmd',603,1),(2399,1045,1086,'OP_EqInstructionWindowTaskCmd',604,1),(2400,1045,1086,'OP_EqEnableGameEventCmd',605,1),(2401,1045,1086,'OP_EqShowWindowCmd',606,1),(2402,1045,1086,'OP_EqEnableWindowCmd',607,1),(2403,1045,1086,'OP_EqFlashWindowCmd',608,1),(2404,1045,1086,'OP_EqHearPlayFlavorCmd',609,1),(2405,1045,1086,'OP_EqUpdateSignWidgetCmd',611,1),(2406,1045,1086,'OP_EqDebugPVDCmd',612,1),(2407,1045,1086,'OP_EqShowBookCmd',613,1),(2408,1045,1086,'OP_EqQuestionnaireCmd',614,1),(2409,1045,1086,'OP_EqGetProbsCmd',615,1),(2410,1045,1086,'OP_EqHearHealCmd',616,1),(2411,1045,1086,'OP_EqChatChannelUpdateCmd',617,1),(2412,1045,1086,'OP_EqWhoChannelQueryReplyCmd',618,1),(2413,1045,1086,'OP_EqAvailWorldChannelsCmd',619,1),(2414,1045,1086,'OP_EqUpdateTargetCmd',620,1),(2415,1045,1086,'OP_EqConsignmentItemsCmd',622,1),(2416,1045,1086,'OP_EqStartBrokerCmd',624,1),(2417,1045,1086,'OP_EqMapExplorationCmd',625,1),(2418,1045,1086,'OP_EqStoreLogCmd',626,1),(2419,1045,1086,'OP_EqSpellMoveToRangeAndRetryCmd',627,1),(2420,1045,1086,'OP_EqUpdatePlayerMailCmd',628,1),(2421,1045,1086,'OP_EqArenaResultsCmd',629,1),(2422,1045,1086,'OP_EqGuildBankEventActionCmd',630,1),(2423,1045,1086,'OP_EqGuildBankExamineInfoCmd',631,1),(2424,1045,1086,'OP_EqHearSpellNoLandCmd',632,1),(2425,1045,1086,'OP_Lottery',636,1),(2426,1045,1086,'OP_GuildRecruitingMemberInfo',637,1),(2427,1045,1086,'OP_GuildRecruiting',638,1),(2428,1045,1086,'OP_GuildRecruitingDetails',639,1),(2429,1045,1086,'OP_GuildRecruitingImage',640,1),(2430,1045,1086,'OP_PointOfInterest',661,1),(2431,1045,1086,'OP_TraitsList',663,1),(2432,1045,1086,'OP_RecipeList',672,1),(2433,1045,1086,'OP_CharacterAchievements',674,1),(2434,1045,1086,'OP_AddClientToGroupMsg',1054,1),(2435,1045,1086,'OP_AddGroupToGroupMsg',1054,1),(2436,1045,1086,'OP_GuildKickMsg',1054,1),(2437,1045,1086,'OP_ProcessScriptMsg',1054,1),(2438,1045,1086,'OP_ProcessWorkspaceMsg',1054,1),(2439,1045,1086,'OP_PurchaseConsignmentResponseMsg',1054,1),(2440,1045,1086,'OP_QuickbarAddMsg',1054,1),(2441,1045,1086,'OP_SkillSlotMapping',1054,1),(2442,1045,1086,'OP_Unknown',10058,1),(2443,1045,1086,'OP_WSWeatherUpdateMsg',10059,1),(2444,1096,1096,'OP_LoginRequestMsg',0,1),(2445,1096,1096,'OP_LoginByNumRequestMsg',1,1),(2446,1096,1096,'OP_WSLoginRequestMsg',2,1),(2447,1096,1096,'OP_ESLoginRequestMsg',3,1),(2448,1096,1096,'OP_LoginReplyMsg',4,1),(2449,1096,1096,'OP_WSStatusReplyMsg',5,1),(2450,1096,1096,'OP_WorldStatusChangeMsg',6,1),(2451,1096,1096,'OP_AllWSDescRequestMsg',7,1),(2452,1096,1096,'OP_WorldListMsg',8,1),(2453,1096,1096,'OP_AllCharactersDescRequestMsg',9,1),(2454,1096,1096,'OP_AllCharactersDescReplyMsg',10,1),(2455,1096,1096,'OP_CreateCharacterRequestMsg',11,1),(2456,1096,1096,'OP_CreateCharacterReplyMsg',12,1),(2457,1096,1096,'OP_WSCreateCharacterRequestMsg',13,1),(2458,1096,1096,'OP_WSCreateCharacterReplyMsg',14,1),(2459,1096,1096,'OP_ReskinCharacterRequestMsg',15,1),(2460,1096,1096,'OP_DeleteCharacterRequestMsg',16,1),(2461,1096,1096,'OP_DeleteCharacterReplyMsg',17,1),(2462,1096,1096,'OP_PlayCharacterRequestMsg',18,1),(2463,1096,1096,'OP_PlayCharacterReplyMsg',19,1),(2464,1096,1096,'OP_ExpectClientAsCharacterReplyMs',22,1),(2465,1096,1096,'OP_ServerPlayCharacterRequestMsg',23,1),(2466,1096,1096,'OP_ServerPlayCharacterReplyMsg',24,1),(2467,1096,1096,'OP_ESInitMsg',25,1),(2468,1096,1096,'OP_ESReadyForClientsMsg',26,1),(2469,1096,1096,'OP_CreateZoneInstanceMsg',27,1),(2470,1096,1096,'OP_ZoneInstanceCreateReplyMsg',28,1),(2471,1096,1096,'OP_ZoneInstanceDestroyedMsg',29,1),(2472,1096,1096,'OP_ExpectClientAsCharacterRequest',30,1),(2473,1096,1096,'OP_ZoneInfoMsg',32,1),(2474,1096,1096,'OP_DoneLoadingZoneResourcesMsg',33,1),(2475,1096,1096,'OP_DoneSendingInitialEntitiesMsg',34,1),(2476,1096,1096,'OP_DoneLoadingEntityResourcesMsg',35,1),(2477,1096,1096,'OP_PredictionUpdateMsg',36,1),(2478,1096,1096,'OP_UpdatePositionMsg',38,1),(2479,1096,1096,'OP_SetRemoteCmdsMsg',40,1),(2480,1096,1096,'OP_RemoteCmdMsg',41,1),(2481,1096,1096,'OP_GameWorldTimeMsg',42,1),(2482,1096,1096,'OP_MOTDMsg',43,1),(2483,1096,1096,'OP_ZoneMOTDMsg',44,1),(2484,1096,1096,'OP_AvatarCreatedMsg',45,1),(2485,1096,1096,'OP_AvatarDestroyedMsg',46,1),(2486,1096,1096,'OP_RequestCampMsg',48,1),(2487,1096,1096,'OP_CampStartedMsg',49,1),(2488,1096,1096,'OP_CampAbortedMsg',50,1),(2489,1096,1096,'OP_WhoQueryRequestMsg',51,1),(2490,1096,1096,'OP_WhoQueryReplyMsg',52,1),(2491,1096,1096,'OP_MonitorReplyMsg',53,1),(2492,1096,1096,'OP_MonitorCharacterListMsg',54,1),(2493,1096,1096,'OP_MonitorCharacterListRequestMsg',55,1),(2494,1096,1096,'OP_ClientCmdMsg',56,1),(2495,1096,1096,'OP_DispatchESMsg',57,1),(2496,1096,1096,'OP_DispatchClientCmdMsg',58,1),(2497,1096,1096,'OP_UpdateTargetMsg',59,1),(2498,1096,1096,'OP_UpdateTargetLocMsg',60,1),(2499,1096,1096,'OP_UpdateCharacterSheetMsg',61,1),(2500,1096,1096,'OP_UpdateSpellBookMsg',62,1),(2501,1096,1096,'OP_UpdateInventoryMsg',64,1),(2502,1096,1096,'OP_UpdateRecipeBookMsg',66,1),(2503,1096,1096,'OP_RequestRecipeDetailsMsg',67,1),(2504,1096,1096,'OP_RecipeDetailsMsg',68,1),(2505,1096,1096,'OP_UpdateSkillBookMsg',69,1),(2506,1096,1096,'OP_UpdateSkillsMsg',70,1),(2507,1096,1096,'OP_UpdateOpportunityMsg',71,1),(2508,1096,1096,'OP_ChangeZoneMsg',73,1),(2509,1096,1096,'OP_ClientTeleportRequestMsg',74,1),(2510,1096,1096,'OP_TeleportWithinZoneMsg',75,1),(2511,1096,1096,'OP_TeleportWithinZoneNoReloadMsg',76,1),(2512,1096,1096,'OP_MigrateClientToZoneRequestMsg',77,1),(2513,1096,1096,'OP_MigrateClientToZoneReplyMsg',78,1),(2514,1096,1096,'OP_ReadyToZoneMsg',80,1),(2515,1096,1096,'OP_RemoveClientFromGroupMsg',81,1),(2516,1096,1096,'OP_RemoveGroupFromGroupMsg',82,1),(2517,1096,1096,'OP_MakeGroupLeaderMsg',83,1),(2518,1096,1096,'OP_GroupCreatedMsg',84,1),(2519,1096,1096,'OP_GroupDestroyedMsg',85,1),(2520,1096,1096,'OP_GroupMemberAddedMsg',86,1),(2521,1096,1096,'OP_GroupMemberRemovedMsg',87,1),(2522,1096,1096,'OP_GroupRemovedFromGroupMsg',88,1),(2523,1096,1096,'OP_GroupLeaderChangedMsg',89,1),(2524,1096,1096,'OP_GroupResendOOZDataMsg',90,1),(2525,1096,1096,'OP_GroupSettingsChangedMsg',91,1),(2526,1096,1096,'OP_OutOfZoneMemberDataMsg',92,1),(2527,1096,1096,'OP_SendLatestRequestMsg',93,1),(2528,1096,1096,'OP_ClearDataMsg',94,1),(2529,1096,1096,'OP_SetSocialMsg',95,1),(2530,1096,1096,'OP_ESStatusMsg',96,1),(2531,1096,1096,'OP_ESZoneInstanceStatusMsg',97,1),(2532,1096,1096,'OP_ZonesStatusRequestMsg',98,1),(2533,1096,1096,'OP_ZonesStatusMsg',99,1),(2534,1096,1096,'OP_ESWeatherRequestMsg',100,1),(2535,1096,1096,'OP_ESWeatherRequestEndMsg',101,1),(2536,1096,1096,'OP_DialogSelectMsg',105,1),(2537,1096,1096,'OP_DialogCloseMsg',106,1),(2538,1096,1096,'OP_RemoveSpellEffectMsg',107,1),(2539,1096,1096,'OP_RemoveConcentrationMsg',108,1),(2540,1096,1096,'OP_QuestJournalOpenMsg',109,1),(2541,1096,1096,'OP_QuestJournalInspectMsg',110,1),(2542,1096,1096,'OP_QuestJournalSetVisibleMsg',111,1),(2543,1096,1096,'OP_QuestJournalWaypointMsg',112,1),(2544,1096,1096,'OP_CreateGuildRequestMsg',113,1),(2545,1096,1096,'OP_CreateGuildReplyMsg',114,1),(2546,1096,1096,'OP_GuildsayMsg',115,1),(2547,1096,1096,'OP_FellowshipExpMsg',118,1),(2548,1096,1096,'OP_DeleteGuildMsg',119,1),(2549,1096,1096,'OP_GuildUpdateMsg',120,1),(2550,1096,1096,'OP_ConsignmentCloseStoreMsg',121,1),(2551,1096,1096,'OP_ConsignItemRequestMsg',122,1),(2552,1096,1096,'OP_ConsignItemResponseMsg',123,1),(2553,1096,1096,'OP_PurchaseConsignmentRequestMsg',124,1),(2554,1096,1096,'OP_HouseDeletedRemotelyMsg',125,1),(2555,1096,1096,'OP_UpdateHouseDataMsg',126,1),(2556,1096,1096,'OP_UpdateHouseAccessDataMsg',127,1),(2557,1096,1096,'OP_PlayerHouseBaseScreenMsg',128,1),(2558,1096,1096,'OP_PlayerHousePurchaseScreenMsg',129,1),(2559,1096,1096,'OP_PlayerHouseAccessUpdateMsg',130,1),(2560,1096,1096,'OP_PlayerHouseDisplayStatusMsg',131,1),(2561,1096,1096,'OP_PlayerHouseCloseUIMsg',132,1),(2562,1096,1096,'OP_BuyPlayerHouseMsg',133,1),(2563,1096,1096,'OP_BuyPlayerHouseTintMsg',134,1),(2564,1096,1096,'OP_CollectAllHouseItemsMsg',135,1),(2565,1096,1096,'OP_RelinquishHouseMsg',136,1),(2566,1096,1096,'OP_EnterHouseMsg',137,1),(2567,1096,1096,'OP_ExitHouseMsg',138,1),(2568,1096,1096,'OP_HouseDefaultAccessSetMsg',139,1),(2569,1096,1096,'OP_HouseAccessSetMsg',140,1),(2570,1096,1096,'OP_HouseAccessRemoveMsg',141,1),(2571,1096,1096,'OP_PayHouseUpkeepMsg',142,1),(2572,1096,1096,'OP_MoveableObjectPlacementCriteri',146,1),(2573,1096,1096,'OP_EnterMoveObjectModeMsg',147,1),(2574,1096,1096,'OP_PositionMoveableObject',148,1),(2575,1096,1096,'OP_CancelMoveObjectModeMsg',149,1),(2576,1096,1096,'OP_ShaderCustomizationMsg',150,1),(2577,1096,1096,'OP_ReplaceableSubMeshesMsg',151,1),(2578,1096,1096,'OP_HouseCustomizationScreenMsg',152,1),(2579,1096,1096,'OP_CustomizationPurchaseRequestMs',153,1),(2580,1096,1096,'OP_CustomizationSetRequestMsg',154,1),(2581,1096,1096,'OP_CustomizationReplyMsg',155,1),(2582,1096,1096,'OP_TintWidgetsMsg',156,1),(2583,1096,1096,'OP_ExamineConsignmentRequestMsg',157,1),(2584,1096,1096,'OP_ExamineConsignmentResponseMsg',158,1),(2585,1096,1096,'OP_UISettingsResponseMsg',159,1),(2586,1096,1096,'OP_UIResetMsg',160,1),(2587,1096,1096,'OP_KeymapLoadMsg',161,1),(2588,1096,1096,'OP_KeymapNoneMsg',162,1),(2589,1096,1096,'OP_KeymapDataMsg',163,1),(2590,1096,1096,'OP_KeymapSaveMsg',164,1),(2591,1096,1096,'OP_DispatchSpellCmdMsg',165,1),(2592,1096,1096,'OP_EntityVerbsRequestMsg',166,1),(2593,1096,1096,'OP_EntityVerbsReplyMsg',167,1),(2594,1096,1096,'OP_EntityVerbsVerbMsg',168,1),(2595,1096,1096,'OP_ChatRelationshipUpdateMsg',170,1),(2596,1096,1096,'OP_LootItemsRequestMsg',171,1),(2597,1096,1096,'OP_StoppedLootingMsg',172,1),(2598,1096,1096,'OP_SitMsg',173,1),(2599,1096,1096,'OP_StandMsg',174,1),(2600,1096,1096,'OP_SatMsg',175,1),(2601,1096,1096,'OP_StoodMsg',176,1),(2602,1096,1096,'OP_ClearForTakeOffMsg',177,1),(2603,1096,1096,'OP_ReadyForTakeOffMsg',178,1),(2604,1096,1096,'OP_ShowIllusionsMsg',179,1),(2605,1096,1096,'OP_HideIllusionsMsg',180,1),(2606,1096,1096,'OP_ExamineItemRequestMsg',181,1),(2607,1096,1096,'OP_ReadBookPageMsg',182,1),(2608,1096,1096,'OP_DefaultGroupOptionsRequestMsg',183,1),(2609,1096,1096,'OP_DefaultGroupOptionsMsg',184,1),(2610,1096,1096,'OP_GroupOptionsMsg',185,1),(2611,1096,1096,'OP_DisplayGroupOptionsScreenMsg',186,1),(2612,1096,1096,'OP_DisplayInnVisitScreenMsg',188,1),(2613,1096,1096,'OP_DumpSchedulerMsg',189,1),(2614,1096,1096,'OP_LSRequestPlayerDescMsg',190,1),(2615,1096,1096,'OP_LSCheckAcctLockMsg',191,1),(2616,1096,1096,'OP_WSAcctLockStatusMsg',192,1),(2617,1096,1096,'OP_RequestHelpRepathMsg',193,1),(2618,1096,1096,'OP_RequestTargetLocMsg',194,1),(2619,1096,1096,'OP_UpdateMotdMsg',195,1),(2620,1096,1096,'OP_PerformPlayerKnockbackMsg',197,1),(2621,1096,1096,'OP_PerformCameraShakeMsg',198,1),(2622,1096,1096,'OP_PopulateSkillMapsMsg',199,1),(2623,1096,1096,'OP_CancelledFeignMsg',201,1),(2624,1096,1096,'OP_SignalMsg',202,1),(2625,1096,1096,'OP_ShowCreateFromRecipeUIMsg',203,1),(2626,1096,1096,'OP_CancelCreateFromRecipeMsg',204,1),(2627,1096,1096,'OP_BeginItemCreationMsg',205,1),(2628,1096,1096,'OP_StopItemCreationMsg',206,1),(2629,1096,1096,'OP_ShowItemCreationProcessUIMsg',207,1),(2630,1096,1096,'OP_UpdateItemCreationProcessUIMsg',208,1),(2631,1096,1096,'OP_DisplayTSEventReactionMsg',209,1),(2632,1096,1096,'OP_ShowRecipeBookMsg',210,1),(2633,1096,1096,'OP_KnowledgebaseRequestMsg',211,1),(2634,1096,1096,'OP_KnowledgebaseResponseMsg',212,1),(2635,1096,1096,'OP_CSTicketHeaderRequestMsg',213,1),(2636,1096,1096,'OP_CSTicketInfoMsg',214,1),(2637,1096,1096,'OP_CSTicketCommentRequestMsg',215,1),(2638,1096,1096,'OP_CSTicketCommentResponseMsg',216,1),(2639,1096,1096,'OP_CSTicketCreateMsg',217,1),(2640,1096,1096,'OP_CSTicketAddCommentMsg',218,1),(2641,1096,1096,'OP_CSTicketDeleteMsg',219,1),(2642,1096,1096,'OP_CSTicketChangeNotificationMsg',220,1),(2643,1096,1096,'OP_WorldDataUpdateMsg',221,1),(2644,1096,1096,'OP_KnownLanguagesMsg',222,1),(2645,1096,1096,'OP_LsRequestClientCrashLogMsg',223,1),(2646,1096,1096,'OP_LsClientBaselogReplyMsg',224,1),(2647,1096,1096,'OP_LsClientCrashlogReplyMsg',225,1),(2648,1096,1096,'OP_LsClientAlertlogReplyMsg',226,1),(2649,1096,1096,'OP_LsClientVerifylogReplyMsg',227,1),(2650,1096,1096,'OP_ClientTeleportToLocationMsg',228,1),(2651,1096,1096,'OP_UpdateClientPredFlagsMsg',229,1),(2652,1096,1096,'OP_ChangeServerControlFlagMsg',230,1),(2653,1096,1096,'OP_CSToolsRequestMsg',231,1),(2654,1096,1096,'OP_CSToolsResponseMsg',232,1),(2655,1096,1096,'OP_AddSocialStructureStandingMsg',233,1),(2656,1096,1096,'OP_CreateBoatTransportsMsg',234,1),(2657,1096,1096,'OP_PositionBoatTransportMsg',235,1),(2658,1096,1096,'OP_MigrateBoatTransportMsg',236,1),(2659,1096,1096,'OP_MigrateBoatTransportReplyMsg',237,1),(2660,1096,1096,'OP_DisplayDebugNLLPointsMsg',238,1),(2661,1096,1096,'OP_ExamineInfoRequestMsg',239,1),(2662,1096,1096,'OP_QuickbarInitMsg',240,1),(2663,1096,1096,'OP_QuickbarUpdateMsg',241,1),(2664,1096,1096,'OP_MacroInitMsg',242,1),(2665,1096,1096,'OP_MacroUpdateMsg',243,1),(2666,1096,1096,'OP_QuestionnaireMsg',244,1),(2667,1096,1096,'OP_LevelChangedMsg',245,1),(2668,1096,1096,'OP_SpellGainedMsg',246,1),(2669,1096,1096,'OP_EncounterBrokenMsg',247,1),(2670,1096,1096,'OP_OnscreenMsgMsg',248,1),(2671,1096,1096,'OP_DisplayWarningMsg',249,1),(2672,1096,1096,'OP_ModifyGuildMsg',250,1),(2673,1096,1096,'OP_GuildEventMsg',251,1),(2674,1096,1096,'OP_GuildEventAddMsg',252,1),(2675,1096,1096,'OP_GuildEventActionMsg',253,1),(2676,1096,1096,'OP_GuildEventListMsg',254,1),(2677,1096,1096,'OP_RequestGuildEventDetailsMsg',255,1),(2678,1096,1096,'OP_GuildEventDetailsMsg',256,1),(2679,1096,1096,'OP_RequestGuildInfoMsg',257,1),(2680,1096,1096,'OP_GuildBankActionMsg',258,1),(2681,1096,1096,'OP_GuildBankActionResponseMsg',259,1),(2682,1096,1096,'OP_GuildBankItemDetailsRequestMsg',260,1),(2683,1096,1096,'OP_GuildBankItemDetailsResponseMs',261,1),(2684,1096,1096,'OP_GuildBankUpdateMsg',262,1),(2685,1096,1096,'OP_GuildBankEventListMsg',263,1),(2686,1096,1096,'OP_RequestGuildBankEventDetailsMs',264,1),(2687,1096,1096,'OP_RewardPackMsg',265,1),(2688,1096,1096,'OP_RenameGuildMsg',266,1),(2689,1096,1096,'OP_ZoneToFriendRequestMsg',268,1),(2690,1096,1096,'OP_ZoneToFriendReplyMsg',269,1),(2691,1096,1096,'OP_ChatCreateChannelMsg',270,1),(2692,1096,1096,'OP_ChatJoinChannelMsg',271,1),(2693,1096,1096,'OP_ChatWhoChannelMsg',272,1),(2694,1096,1096,'OP_ChatLeaveChannelMsg',273,1),(2695,1096,1096,'OP_ChatTellChannelMsg',274,1),(2696,1096,1096,'OP_ChatTellUserMsg',275,1),(2697,1096,1096,'OP_ChatToggleFriendMsg',276,1),(2698,1096,1096,'OP_ChatToggleIgnoreMsg',277,1),(2699,1096,1096,'OP_ChatSendFriendsMsg',278,1),(2700,1096,1096,'OP_ChatSendIgnoresMsg',279,1),(2701,1096,1096,'OP_QuestReward',304,1),(2702,1096,1096,'OP_ChatFiltersMsg',319,1),(2703,1096,1096,'OP_MailGetHeadersMsg',320,1),(2704,1096,1096,'OP_MailGetMessageMsg',321,1),(2705,1096,1096,'OP_MailSendMessageMsg',322,1),(2706,1096,1096,'OP_MailDeleteMessageMsg',323,1),(2707,1096,1096,'OP_MailGetHeadersReplyMsg',324,1),(2708,1096,1096,'OP_MailGetMessageReplyMsg',325,1),(2709,1096,1096,'OP_MailSendMessageReplyMsg',326,1),(2710,1096,1096,'OP_MailCommitSendMessageMsg',327,1),(2711,1096,1096,'OP_MailSendSystemMessageMsg',328,1),(2712,1096,1096,'OP_MailRemoveAttachFromMailMsg',329,1),(2713,1096,1096,'OP_WaypointRequestMsg',331,1),(2714,1096,1096,'OP_WaypointReplyMsg',332,1),(2715,1096,1096,'OP_WaypointSelectMsg',333,1),(2716,1096,1096,'OP_WaypointUpdateMsg',334,1),(2717,1096,1096,'OP_CharNameChangedMsg',335,1),(2718,1096,1096,'OP_ShowZoneTeleporterDestinations',336,1),(2719,1096,1096,'OP_SelectZoneTeleporterDestinatio',337,1),(2720,1096,1096,'OP_ReloadLocalizedTxtMsg',338,1),(2721,1096,1096,'OP_RequestGuildMembershipMsg',339,1),(2722,1096,1096,'OP_GuildMembershipResponseMsg',340,1),(2723,1096,1096,'OP_LeaveGuildNotifyMsg',341,1),(2724,1096,1096,'OP_JoinGuildNotifyMsg',342,1),(2725,1096,1096,'OP_AvatarUpdateMsg',343,1),(2726,1096,1096,'OP_BioUpdateMsg',345,1),(2727,1096,1096,'OP_InspectPlayerMsg',346,1),(2728,1096,1096,'OP_WSServerLockMsg',347,1),(2729,1096,1096,'OP_LSServerLockMsg',348,1),(2730,1096,1096,'OP_WSServerHideMsg',349,1),(2731,1096,1096,'OP_CsCategoryRequestMsg',350,1),(2732,1096,1096,'OP_CsCategoryResponseMsg',351,1),(2733,1096,1096,'OP_KnowledgeWindowSlotMappingMsg',352,1),(2734,1096,1096,'OP_LFGUpdateMsg',3533,1),(2735,1096,1096,'OP_AFKUpdateMsg',353,1),(2736,1096,1096,'OP_AnonUpdateMsg',354,1),(2737,1096,1096,'OP_UpdateActivePublicZonesMsg',355,1),(2738,1096,1096,'OP_UnknownNpcMsg',356,1),(2739,1096,1096,'OP_PromoFlagsDetailsMsg',357,1),(2740,1096,1096,'OP_ConsignViewCreateMsg',358,1),(2741,1096,1096,'OP_ConsignViewGetPageMsg',359,1),(2742,1096,1096,'OP_ConsignViewReleaseMsg',360,1),(2743,1096,1096,'OP_ConsignRemoveItemsMsg',361,1),(2744,1096,1096,'OP_UpdateDebugRadiiMsg',362,1),(2745,1096,1096,'OP_SnoopMsg',363,1),(2746,1096,1096,'OP_ReportMsg',364,1),(2747,1096,1096,'OP_UpdateRaidMsg',365,1),(2748,1096,1096,'OP_ConsignViewSortMsg',366,1),(2749,1096,1096,'OP_TitleUpdateMsg',367,1),(2750,1096,1096,'OP_ClientFellMsg',368,1),(2751,1096,1096,'OP_ClientInDeathRegionMsg',369,1),(2752,1096,1096,'OP_CampClientMsg',370,1),(2753,1096,1096,'OP_CSToolAccessResponseMsg',371,1),(2754,1096,1096,'OP_TrackingUpdateMsg',372,1),(2755,1096,1096,'OP_BeginTrackingMsg',373,1),(2756,1096,1096,'OP_StopTrackingMsg',374,1),(2757,1096,1096,'OP_GetAvatarAccessRequestForCSToo',375,1),(2758,1096,1096,'OP_AdvancementRequestMsg',376,1),(2759,1096,1096,'OP_UpdateAvgFrameTimeMsg',377,1),(2760,1096,1096,'OP_MapFogDataInitMsg',378,1),(2761,1096,1096,'OP_MapFogDataUpdateMsg',379,1),(2762,1096,1096,'OP_CloseGroupInviteWindowMsg',380,1),(2763,1096,1096,'OP_UpdateGroupMemberDataMsg',381,1),(2764,1096,1096,'OP_WorldPingMsg',382,1),(2765,1096,1096,'OP_MoveLogUpdateMsg',383,1),(2766,1096,1096,'OP_OfferQuestMsg',384,1),(2767,1096,1096,'OP_WorldShutdownUpdateMsg',385,1),(2768,1096,1096,'OP_DisplayMailScreenMsg',386,1),(2769,1096,1096,'OP_ClientIdleBeginMsg',387,1),(2770,1096,1096,'OP_ClientIdleEndMsg',388,1),(2771,1096,1096,'OP_PurchaseConsignmentLoreCheckRe',389,1),(2772,1096,1096,'OP_NotifyApprenticeStoppedMentori',390,1),(2773,1096,1096,'OP_CorruptedClientMsg',391,1),(2774,1096,1096,'OP_WorldDataChangeMsg',392,1),(2775,1096,1096,'OP_MailEventNotificationMsg',393,1),(2776,1096,1096,'OP_RestartZoneMsg',394,1),(2777,1096,1096,'OP_FlightPathsMsg',395,1),(2778,1096,1096,'OP_CharacterLinkdeadMsg',396,1),(2779,1096,1096,'OP_CharTransferStartRequestMsg',397,1),(2780,1096,1096,'OP_CharTransferStartReplyMsg',398,1),(2781,1096,1096,'OP_CharTransferRequestMsg',399,1),(2782,1096,1096,'OP_CharTransferReplyMsg',400,1),(2783,1096,1096,'OP_CharTransferRollbackRequestMsg',401,1),(2784,1096,1096,'OP_CharTransferCommitRequestMsg',402,1),(2785,1096,1096,'OP_CharTransferRollbackReplyMsg',403,1),(2786,1096,1096,'OP_CharTransferCommitReplyMsg',404,1),(2787,1096,1096,'OP_GetCharacterSerializedRequestM',405,1),(2788,1096,1096,'OP_GetCharacterSerializedReplyMsg',406,1),(2789,1096,1096,'OP_CreateCharFromCBBRequestMsg',407,1),(2790,1096,1096,'OP_CreateCharFromCBBReplyMsg',408,1),(2791,1096,1096,'OP_HousingDataChangedMsg',409,1),(2792,1096,1096,'OP_HousingRestoreMsg',410,1),(2793,1096,1096,'OP_AuctionItem',411,1),(2794,1096,1096,'OP_AuctionItemReply',412,1),(2795,1096,1096,'OP_AuctionCoin',413,1),(2796,1096,1096,'OP_AuctionCoinReply',414,1),(2797,1096,1096,'OP_AuctionCharacter',415,1),(2798,1096,1096,'OP_AuctionCharacterReply',416,1),(2799,1096,1096,'OP_AuctionCommitMsg',417,1),(2800,1096,1096,'OP_AuctionAbortMsg',418,1),(2801,1096,1096,'OP_CharTransferValidateRequestMsg',419,1),(2802,1096,1096,'OP_CharTransferValidateReplyMsg',420,1),(2803,1096,1096,'OP_RaceRestrictionMsg',421,1),(2804,1096,1096,'OP_SetInstanceDisplayNameMsg',422,1),(2805,1096,1096,'OP_GetAuctionAssetIDMsg',423,1),(2806,1096,1096,'OP_GetAuctionAssetIDReplyMsg',424,1),(2807,1096,1096,'OP_ResendWorldChannelsMsg',425,1),(2808,1096,1096,'OP_DisplayExchangeScreenMsg',426,1),(2809,1096,1096,'OP_ArenaGameTypesMsg',428,1),(2810,1096,1096,'OP_AuditAuctionEventMsg',429,1),(2811,1096,1096,'OP_InviteRequestMsg',431,1),(2812,1096,1096,'OP_InviteResponseMsg',432,1),(2813,1096,1096,'OP_InviteTargetResponseMsg',433,1),(2814,1096,1096,'OP_InspectPlayerRequestMsg',434,1),(2815,1096,1096,'OP_DispatchMsg',435,1),(2816,1096,1096,'OP_DisplayEventMsg',436,1),(2817,1096,1096,'OP_PrePossessionMsg',437,1),(2818,1096,1096,'OP_PostPossessionMsg',438,1),(2819,1096,1096,'OP_AdventureList',470,1),(2820,1096,1096,'OP_CancelSpellCast',471,1),(2821,1096,1096,'OP_UpdateTitleCmd',476,1),(2822,1096,1096,'OP_AttackAllowed',482,1),(2823,1096,1096,'OP_AttackNotAllowed',483,1),(2824,1096,1096,'OP_DressingRoom',492,1),(2825,1096,1096,'OP_SkillInfoRequest',496,1),(2826,1096,1096,'OP_SkillInfoResponse',497,1),(2827,1096,1096,'OP_BadLanguageFilter',501,1),(2828,1096,1096,'OP_MapRequest',503,1),(2829,1096,1096,'OP_Unknown',509,1),(2830,1096,1096,'OP_EqUnknown',541,1),(2831,1096,1096,'OP_EqHearChatCmd',543,1),(2832,1096,1096,'OP_EqDisplayTextCmd',544,1),(2833,1096,1096,'OP_EqCreateGhostCmd',545,1),(2834,1096,1096,'OP_EqCreateWidgetCmd',546,1),(2835,1096,1096,'OP_EqCreateSignWidgetCmd',547,1),(2836,1096,1096,'OP_EqDestroyGhostCmd',548,1),(2837,1096,1096,'OP_EqUpdateGhostCmd',549,1),(2838,1096,1096,'OP_EqSetControlGhostCmd',550,1),(2839,1096,1096,'OP_EqSetPOVGhostCmd',551,1),(2840,1096,1096,'OP_EqHearCombatCmd',552,1),(2841,1096,1096,'OP_EqHearSpellCastCmd',553,1),(2842,1096,1096,'OP_EqHearSpellInterruptCmd',556,1),(2843,1096,1096,'OP_EqHearSpellFizzleCmd',557,1),(2844,1096,1096,'OP_EqHearConsiderCmd',558,1),(2845,1096,1096,'OP_EqUpdateSubClassesCmd',559,1),(2846,1096,1096,'OP_EqCreateListBoxCmd',560,1),(2847,1096,1096,'OP_EqSetDebugPathPointsCmd',561,1),(2848,1096,1096,'OP_EqCannedEmoteCmd',563,1),(2849,1096,1096,'OP_EqStateCmd',564,1),(2850,1096,1096,'OP_EqPlaySoundCmd',565,1),(2851,1096,1096,'OP_EqPlaySound3DCmd',566,1),(2852,1096,1096,'OP_EqPlayVoiceCmd',567,1),(2853,1096,1096,'OP_EqHearDrowningCmd',568,1),(2854,1096,1096,'OP_EqHearDeathCmd',569,1),(2855,1096,1096,'OP_EqGroupMemberRemovedCmd',570,1),(2856,1096,1096,'OP_EqHearChainEffectCmd',571,1),(2857,1096,1096,'OP_EqReceiveOfferCmd',572,1),(2858,1096,1096,'OP_EqInspectPCResultsCmd',573,1),(2859,1096,1096,'OP_EqDrawablePathGraphCmd',574,1),(2860,1096,1096,'OP_EqDialogOpenCmd',575,1),(2861,1096,1096,'OP_EqDialogCloseCmd',576,1),(2862,1096,1096,'OP_EqFactionUpdateCmd',577,1),(2863,1096,1096,'OP_EqCollectionUpdateCmd',578,1),(2864,1096,1096,'OP_EqCollectionFilterCmd',579,1),(2865,1096,1096,'OP_EqCollectionItemCmd',580,1),(2866,1096,1096,'OP_EqQuestJournalUpdateCmd',581,1),(2867,1096,1096,'OP_EqQuestJournalReplyCmd',583,1),(2868,1096,1096,'OP_EqQuestGroupCmd',584,1),(2869,1096,1096,'OP_EqUpdateMerchantCmd',585,1),(2870,1096,1096,'OP_EqUpdateStoreCmd',586,1),(2871,1096,1096,'OP_EqUpdatePlayerTradeCmd',587,1),(2872,1096,1096,'OP_EqHelpPathCmd',588,1),(2873,1096,1096,'OP_EqHelpPathClearCmd',589,1),(2874,1096,1096,'OP_EqUpdateBankCmd',590,1),(2875,1096,1096,'OP_EqExamineInfoCmd',591,1),(2876,1096,1096,'OP_EqCloseWindowCmd',592,1),(2877,1096,1096,'OP_EqUpdateLootCmd',593,1),(2878,1096,1096,'OP_EqJunctionListCmd',594,1),(2879,1096,1096,'OP_EqShowDeathWindowCmd',595,1),(2880,1096,1096,'OP_EqDisplaySpellFailCmd',596,1),(2881,1096,1096,'OP_EqSpellCastStartCmd',597,1),(2882,1096,1096,'OP_EqSpellCastEndCmd',598,1),(2883,1096,1096,'OP_EqResurrectedCmd',599,1),(2884,1096,1096,'OP_EqChoiceWinCmd',600,1),(2885,1096,1096,'OP_EqSetDefaultVerbCmd',601,1),(2886,1096,1096,'OP_EqInstructionWindowCmd',603,1),(2887,1096,1096,'OP_EqInstructionWindowCloseCmd',604,1),(2888,1096,1096,'OP_EqInstructionWindowGoalCmd',605,1),(2889,1096,1096,'OP_EqInstructionWindowTaskCmd',606,1),(2890,1096,1096,'OP_EqEnableGameEventCmd',607,1),(2891,1096,1096,'OP_EqShowWindowCmd',608,1),(2892,1096,1096,'OP_EqEnableWindowCmd',609,1),(2893,1096,1096,'OP_EqFlashWindowCmd',610,1),(2894,1096,1096,'OP_EqHearPlayFlavorCmd',611,1),(2895,1096,1096,'OP_EqUpdateSignWidgetCmd',613,1),(2896,1096,1096,'OP_EqDebugPVDCmd',614,1),(2897,1096,1096,'OP_EqShowBookCmd',614,1),(2898,1096,1096,'OP_EqQuestionnaireCmd',616,1),(2899,1096,1096,'OP_EqGetProbsCmd',617,1),(2900,1096,1096,'OP_EqHearHealCmd',618,1),(2901,1096,1096,'OP_EqChatChannelUpdateCmd',619,1),(2902,1096,1096,'OP_EqWhoChannelQueryReplyCmd',620,1),(2903,1096,1096,'OP_EqAvailWorldChannelsCmd',621,1),(2904,1096,1096,'OP_EqUpdateTargetCmd',622,1),(2905,1096,1096,'OP_EqConsignmentItemsCmd',624,1),(2906,1096,1096,'OP_EqStartBrokerCmd',626,1),(2907,1096,1096,'OP_EqMapExplorationCmd',627,1),(2908,1096,1096,'OP_EqStoreLogCmd',628,1),(2909,1096,1096,'OP_EqSpellMoveToRangeAndRetryCmd',629,1),(2910,1096,1096,'OP_EqUpdatePlayerMailCmd',630,1),(2911,1096,1096,'OP_EqArenaResultsCmd',631,1),(2912,1096,1096,'OP_EqGuildBankEventActionCmd',632,1),(2913,1096,1096,'OP_EqGuildBankExamineInfoCmd',633,1),(2914,1096,1096,'OP_EqHearSpellNoLandCmd',634,1),(2915,1096,1096,'OP_GuildList',637,1),(2916,1096,1096,'OP_Lottery',638,1),(2917,1096,1096,'OP_GuildRecruitingMemberInfo',639,1),(2918,1096,1096,'OP_GuildRecruiting',640,1),(2919,1096,1096,'OP_GuildRecruitingDetails',641,1),(2920,1096,1096,'OP_GuildRecruitingImage',642,1),(2921,1096,1096,'OP_TradeskillList',659,1),(2922,1096,1096,'OP_PointOfInterest',663,1),(2923,1096,1096,'OP_TraitsList',665,1),(2924,1096,1096,'OP_RecipeList',674,1),(2925,1096,1096,'OP_CharacterAchievements',677,1),(2926,1096,1096,'OP_AddClientToGroupMsg',999,1),(2927,1096,1096,'OP_AddGroupToGroupMsg',1000,1),(2928,1096,1096,'OP_WSWeatherUpdateMsg',1001,1),(2929,1096,1096,'OP_SkillSlotMapping',1002,1),(2930,1096,1096,'OP_GuildKickMsg',1003,1),(2931,1096,1096,'OP_PurchaseConsignmentResponseMsg',1004,1),(2932,1096,1096,'OP_ProcessScriptMsg',1005,1),(2933,1096,1096,'OP_ProcessWorkspaceMsg',1006,1),(2934,1096,1096,'OP_QuickbarAddMsg',1007,1),(2935,0,0,'OP_BagOptions',999,1),(2936,839,844,'OP_BagOptions',999,1),(2937,908,927,'OP_BagOptions',999,1),(2938,1008,1011,'OP_BagOptions',999,1),(2939,1045,1086,'OP_BagOptions',999,1),(2940,1096,1096,'OP_BagOptions',999,1),(2941,0,0,'OP_AchievementUpdateMsg',999,1),(2942,839,844,'OP_AchievementUpdateMsg',999,1),(2943,908,927,'OP_AchievementUpdateMsg',999,1),(2944,1008,1011,'OP_AchievementUpdateMsg',999,1),(2945,1045,1086,'OP_AchievementUpdateMsg',999,1),(2946,1096,1096,'OP_AchievementUpdateMsg',678,1),(2947,1096,1096,'OP_PetOptions',187,1),(2948,1045,1086,'OP_PetOptions',999,1),(2949,1008,1011,'OP_PetOptions',999,1),(2950,908,927,'OP_PetOptions',999,1),(2951,839,844,'OP_PetOptions',999,1),(2952,0,0,'OP_PetOptions',999,1),(2953,1193,1195,'OP_LoginRequestMsg',0,1),(2954,1193,1195,'OP_LoginByNumRequestMsg',1,1),(2955,1193,1195,'OP_WSLoginRequestMsg',2,1),(2956,1193,1195,'OP_ESLoginRequestMsg',3,1),(2957,1193,1195,'OP_LoginReplyMsg',4,1),(2958,1193,1195,'OP_WSStatusReplyMsg',5,1),(2959,1193,1195,'OP_WorldStatusChangeMsg',6,1),(2960,1193,1195,'OP_AllWSDescRequestMsg',7,1),(2961,1193,1195,'OP_WorldListMsg',8,1),(2962,1193,1195,'OP_AllCharactersDescRequestMsg',9,1),(2963,1193,1195,'OP_AllCharactersDescReplyMsg',10,1),(2964,1193,1195,'OP_CreateCharacterRequestMsg',11,1),(2965,1193,1195,'OP_CreateCharacterReplyMsg',12,1),(2966,1193,1195,'OP_WSCreateCharacterRequestMsg',13,1),(2967,1193,1195,'OP_WSCreateCharacterReplyMsg',14,1),(2968,1193,1195,'OP_ReskinCharacterRequestMsg',15,1),(2969,1193,1195,'OP_DeleteCharacterRequestMsg',16,1),(2970,1193,1195,'OP_DeleteCharacterReplyMsg',17,1),(2971,1193,1195,'OP_PlayCharacterRequestMsg',18,1),(2972,1193,1195,'OP_PlayCharacterReplyMsg',19,1),(2973,1193,1195,'OP_ExpectClientAsCharacterReplyMs',22,1),(2974,1193,1195,'OP_ServerPlayCharacterRequestMsg',23,1),(2975,1193,1195,'OP_ServerPlayCharacterReplyMsg',24,1),(2976,1193,1195,'OP_ESInitMsg',25,1),(2977,1193,1195,'OP_ESReadyForClientsMsg',26,1),(2978,1193,1195,'OP_CreateZoneInstanceMsg',29,1),(2979,1193,1195,'OP_ZoneInstanceCreateReplyMsg',30,1),(2980,1193,1195,'OP_ZoneInstanceDestroyedMsg',31,1),(2981,1193,1195,'OP_ExpectClientAsCharacterRequest',32,1),(2982,1193,1195,'OP_ZoneInfoMsg',33,1),(2983,1193,1195,'OP_DoneLoadingZoneResourcesMsg',34,1),(2984,1193,1195,'OP_DoneSendingInitialEntitiesMsg',35,1),(2985,1193,1195,'OP_DoneLoadingEntityResourcesMsg',36,1),(2986,1193,1195,'OP_PredictionUpdateMsg',37,1),(2987,1193,1195,'OP_UpdatePositionMsg',39,1),(2988,1193,1195,'OP_SetRemoteCmdsMsg',41,1),(2989,1193,1195,'OP_RemoteCmdMsg',42,1),(2990,1193,1195,'OP_GameWorldTimeMsg',43,1),(2991,1193,1195,'OP_MOTDMsg',44,1),(2992,1193,1195,'OP_ZoneMOTDMsg',45,1),(2993,1193,1195,'OP_AvatarCreatedMsg',46,1),(2994,1193,1195,'OP_AvatarDestroyedMsg',47,1),(2995,1193,1195,'OP_RequestCampMsg',50,1),(2996,1193,1195,'OP_CampStartedMsg',51,1),(2997,1193,1195,'OP_CampAbortedMsg',52,1),(2998,1193,1195,'OP_WhoQueryRequestMsg',53,1),(2999,1193,1195,'OP_WhoQueryReplyMsg',54,1),(3000,1193,1195,'OP_MonitorReplyMsg',55,1),(3001,1193,1195,'OP_MonitorCharacterListMsg',56,1),(3002,1193,1195,'OP_MonitorCharacterListRequestMsg',57,1),(3003,1193,1195,'OP_ClientCmdMsg',58,1),(3004,1193,1195,'OP_DispatchESMsg',59,1),(3005,1193,1195,'OP_DispatchClientCmdMsg',60,1),(3006,1193,1195,'OP_UpdateTargetMsg',61,1),(3007,1193,1195,'OP_UpdateTargetLocMsg',62,1),(3008,1193,1195,'OP_UpdateCharacterSheetMsg',63,1),(3009,1193,1195,'OP_CharacterPet',64,1),(3010,1193,1195,'OP_CharacterMerc',65,1),(3011,1193,1195,'OP_UpdateSpellBookMsg',66,1),(3012,1193,1195,'OP_UpdateInventoryMsg',68,1),(3013,1193,1195,'OP_AfterInvSpellUpdate',69,1),(3014,1193,1195,'OP_UpdateRecipeBookMsg',70,1),(3015,1193,1195,'OP_RequestRecipeDetailsMsg',71,1),(3016,1193,1195,'OP_RecipeDetailsMsg',72,1),(3017,1193,1195,'OP_UpdateSkillBookMsg',73,1),(3018,1193,1195,'OP_UpdateSkillsMsg',74,1),(3019,1193,1195,'OP_UpdateOpportunityMsg',75,1),(3020,1193,1195,'OP_ChangeZoneMsg',77,1),(3021,1193,1195,'OP_ClientTeleportRequestMsg',78,1),(3022,1193,1195,'OP_TeleportWithinZoneMsg',79,1),(3023,1193,1195,'OP_TeleportWithinZoneNoReloadMsg',80,1),(3024,1193,1195,'OP_MigrateClientToZoneRequestMsg',81,1),(3025,1193,1195,'OP_MigrateClientToZoneReplyMsg',82,1),(3026,1193,1195,'OP_ReadyToZoneMsg',84,1),(3027,1193,1195,'OP_RemoveClientFromGroupMsg',85,1),(3028,1193,1195,'OP_RemoveGroupFromGroupMsg',86,1),(3029,1193,1195,'OP_MakeGroupLeaderMsg',87,1),(3030,1193,1195,'OP_GroupCreatedMsg',88,1),(3031,1193,1195,'OP_GroupDestroyedMsg',89,1),(3032,1193,1195,'OP_GroupMemberAddedMsg',90,1),(3033,1193,1195,'OP_GroupMemberRemovedMsg',91,1),(3034,1193,1195,'OP_GroupRemovedFromGroupMsg',92,1),(3035,1193,1195,'OP_GroupLeaderChangedMsg',93,1),(3036,1193,1195,'OP_GroupResendOOZDataMsg',94,1),(3037,1193,1195,'OP_GroupSettingsChangedMsg',95,1),(3038,1193,1195,'OP_OutOfZoneMemberDataMsg',96,1),(3039,1193,1195,'OP_SendLatestRequestMsg',97,1),(3040,1193,1195,'OP_ClearDataMsg',98,1),(3041,1193,1195,'OP_SetSocialMsg',99,1),(3042,1193,1195,'OP_ESStatusMsg',100,1),(3043,1193,1195,'OP_ESZoneInstanceStatusMsg',101,1),(3044,1193,1195,'OP_ZonesStatusRequestMsg',102,1),(3045,1193,1195,'OP_ZonesStatusMsg',103,1),(3046,1193,1195,'OP_ESWeatherRequestMsg',104,1),(3047,1193,1195,'OP_ESWeatherRequestEndMsg',105,1),(3048,1193,1195,'OP_DialogSelectMsg',109,1),(3049,1193,1195,'OP_DialogCloseMsg',110,1),(3050,1193,1195,'OP_RemoveSpellEffectMsg',111,1),(3051,1193,1195,'OP_RemoveConcentrationMsg',112,1),(3052,1193,1195,'OP_QuestJournalOpenMsg',113,1),(3053,1193,1195,'OP_QuestJournalInspectMsg',114,1),(3054,1193,1195,'OP_QuestJournalSetVisibleMsg',115,1),(3055,1193,1195,'OP_QuestJournalWaypointMsg',116,1),(3056,1193,1195,'OP_CreateGuildRequestMsg',119,1),(3057,1193,1195,'OP_CreateGuildReplyMsg',120,1),(3058,1193,1195,'OP_GuildsayMsg',121,1),(3059,1193,1195,'OP_FellowshipExpMsg',122,1),(3060,1193,1195,'OP_DeleteGuildMsg',123,1),(3061,1193,1195,'OP_GuildUpdateMsg',124,1),(3062,1193,1195,'OP_ConsignmentCloseStoreMsg',125,1),(3063,1193,1195,'OP_ConsignItemRequestMsg',126,1),(3064,1193,1195,'OP_ConsignItemResponseMsg',127,1),(3065,1193,1195,'OP_PurchaseConsignmentRequestMsg',128,1),(3066,1193,1195,'OP_LikeOption',135,1),(3067,1193,1195,'OP_PublishHouse',137,1),(3068,1193,1195,'OP_PlayerMadeInstacnesScreen',138,1),(3069,1193,1195,'OP_PlayerMadeInstances',139,1),(3070,1193,1195,'OP_HouseDeletedRemotelyMsg',140,1),(3071,1193,1195,'OP_UpdateHouseDataMsg',141,1),(3072,1193,1195,'OP_UpdateHouseAccessDataMsg',142,1),(3073,1193,1195,'OP_PlayerHouseBaseScreenMsg',143,1),(3074,1193,1195,'OP_PlayerHousePurchaseScreenMsg',144,1),(3075,1193,1195,'OP_PlayerHouseAccessUpdateMsg',145,1),(3076,1193,1195,'OP_PlayerHouseDisplayStatusMsg',146,1),(3077,1193,1195,'OP_PlayerHouseCloseUIMsg',147,1),(3078,1193,1195,'OP_BuyPlayerHouseMsg',148,1),(3079,1193,1195,'OP_BuyPlayerHouseTintMsg',149,1),(3080,1193,1195,'OP_CollectAllHouseItemsMsg',150,1),(3081,1193,1195,'OP_RelinquishHouseMsg',151,1),(3082,1193,1195,'OP_EnterHouseMsg',152,1),(3083,1193,1195,'OP_ExitHouseMsg',153,1),(3084,1193,1195,'OP_HouseDefaultAccessSetMsg',154,1),(3085,1193,1195,'OP_HouseAccessSetMsg',155,1),(3086,1193,1195,'OP_HouseAccessRemoveMsg',156,1),(3087,1193,1195,'OP_PayHouseUpkeepMsg',157,1),(3088,1193,1195,'OP_MoveableObjectPlacementCriteri',158,1),(3089,1193,1195,'OP_EnterMoveObjectModeMsg',159,1),(3090,1193,1195,'OP_PositionMoveableObject',160,1),(3091,1193,1195,'OP_CancelMoveObjectModeMsg',161,1),(3092,1193,1195,'OP_ShaderCustomizationMsg',162,1),(3093,1193,1195,'OP_ReplaceableSubMeshesMsg',163,1),(3094,1193,1195,'OP_HouseCustomizationScreenMsg',164,1),(3095,1193,1195,'OP_CustomizationPurchaseRequestMs',165,1),(3096,1193,1195,'OP_CustomizationSetRequestMsg',166,1),(3097,1193,1195,'OP_CustomizationReplyMsg',167,1),(3098,1193,1195,'OP_TintWidgetsMsg',168,1),(3099,1193,1195,'OP_ExamineConsignmentRequestMsg',169,1),(3100,1193,1195,'OP_ExamineConsignmentResponseMsg',170,1),(3101,1193,1195,'OP_UISettingsResponseMsg',171,1),(3102,1193,1195,'OP_UIResetMsg',172,1),(3103,1193,1195,'OP_KeymapLoadMsg',173,1),(3104,1193,1195,'OP_KeymapNoneMsg',174,1),(3105,1193,1195,'OP_KeymapDataMsg',175,1),(3106,1193,1195,'OP_KeymapSaveMsg',176,1),(3107,1193,1195,'OP_DispatchSpellCmdMsg',177,1),(3108,1193,1195,'OP_EntityVerbsRequestMsg',178,1),(3109,1193,1195,'OP_EntityVerbsReplyMsg',179,1),(3110,1193,1195,'OP_EntityVerbsVerbMsg',180,1),(3111,1193,1195,'OP_ChatRelationshipUpdateMsg',182,1),(3112,1193,1195,'OP_LootItemsRequestMsg',183,1),(3113,1193,1195,'OP_StoppedLootingMsg',184,1),(3114,1193,1195,'OP_SitMsg',185,1),(3115,1193,1195,'OP_StandMsg',186,1),(3116,1193,1195,'OP_SatMsg',187,1),(3117,1193,1195,'OP_StoodMsg',188,1),(3118,1193,1195,'OP_ClearForTakeOffMsg',189,1),(3119,1193,1195,'OP_ReadyForTakeOffMsg',190,1),(3120,1193,1195,'OP_ShowIllusionsMsg',191,1),(3121,1193,1195,'OP_HideIllusionsMsg',192,1),(3122,1193,1195,'OP_ExamineItemRequestMsg',193,1),(3123,1193,1195,'OP_ReadBookPageMsg',194,1),(3124,1193,1195,'OP_DefaultGroupOptionsRequestMsg',195,1),(3125,1193,1195,'OP_DefaultGroupOptionsMsg',196,1),(3126,1193,1195,'OP_GroupOptionsMsg',197,1),(3127,1193,1195,'OP_DisplayGroupOptionsScreenMsg',198,1),(3128,1193,1195,'OP_PetOptions',199,1),(3129,1193,1195,'OP_DisplayInnVisitScreenMsg',200,1),(3130,1193,1195,'OP_DumpSchedulerMsg',201,1),(3131,1193,1195,'OP_LSCheckAcctLockMsg',202,1),(3132,1193,1195,'OP_WSAcctLockStatusMsg',203,1),(3133,1193,1195,'OP_RequestHelpRepathMsg',204,1),(3134,1193,1195,'OP_RequestTargetLocMsg',205,1),(3135,1193,1195,'OP_UpdateMotdMsg',206,1),(3136,1193,1195,'OP_DestUpdateReq',208,1),(3137,1193,1195,'OP_PerformPlayerKnockbackMsg',211,1),(3138,1193,1195,'OP_PerformCameraShakeMsg',212,1),(3139,1193,1195,'OP_PopulateSkillMapsMsg',213,1),(3140,1193,1195,'OP_CancelledFeignMsg',214,1),(3141,1193,1195,'OP_SysClient',216,1),(3142,1193,1195,'OP_ShowCreateFromRecipeUIMsg',217,1),(3143,1193,1195,'OP_CancelCreateFromRecipeMsg',218,1),(3144,1193,1195,'OP_BeginItemCreationMsg',219,1),(3145,1193,1195,'OP_StopItemCreationMsg',220,1),(3146,1193,1195,'OP_ShowItemCreationProcessUIMsg',221,1),(3147,1193,1195,'OP_UpdateItemCreationProcessUIMsg',222,1),(3148,1193,1195,'OP_DisplayTSEventReactionMsg',223,1),(3149,1193,1195,'OP_ShowRecipeBookMsg',224,1),(3150,1193,1195,'OP_KnowledgebaseRequestMsg',225,1),(3151,1193,1195,'OP_KnowledgebaseResponseMsg',226,1),(3152,1193,1195,'OP_CSTicketHeaderRequestMsg',227,1),(3153,1193,1195,'OP_CSTicketInfoMsg',228,1),(3154,1193,1195,'OP_CSTicketCommentRequestMsg',229,1),(3155,1193,1195,'OP_CSTicketCommentResponseMsg',230,1),(3156,1193,1195,'OP_CSTicketCreateMsg',231,1),(3157,1193,1195,'OP_CSTicketAddCommentMsg',232,1),(3158,1193,1195,'OP_CSTicketDeleteMsg',233,1),(3159,1193,1195,'OP_CSTicketChangeNotificationMsg',234,1),(3160,1193,1195,'OP_WorldDataUpdateMsg',235,1),(3161,1193,1195,'OP_KnownLanguagesMsg',236,1),(3162,1193,1195,'OP_LsRequestClientCrashLogMsg',237,1),(3163,1193,1195,'OP_LsClientBaselogReplyMsg',238,1),(3164,1193,1195,'OP_LsClientCrashlogReplyMsg',239,1),(3165,1193,1195,'OP_LsClientAlertlogReplyMsg',240,1),(3166,1193,1195,'OP_LsClientVerifylogReplyMsg',241,1),(3167,1193,1195,'OP_ClientTeleportToLocationMsg',242,1),(3168,1193,1195,'OP_UpdateClientPredFlagsMsg',243,1),(3169,1193,1195,'OP_ChangeServerControlFlagMsg',244,1),(3170,1193,1195,'OP_CSToolsRequestMsg',245,1),(3171,1193,1195,'OP_CSToolsResponseMsg',246,1),(3172,1193,1195,'OP_AddSocialStructureStandingMsg',247,1),(3173,1193,1195,'OP_CreateBoatTransportsMsg',248,1),(3174,1193,1195,'OP_PositionBoatTransportMsg',249,1),(3175,1193,1195,'OP_MigrateBoatTransportMsg',250,1),(3176,1193,1195,'OP_MigrateBoatTransportReplyMsg',251,1),(3177,1193,1195,'OP_DisplayDebugNLLPointsMsg',252,1),(3178,1193,1195,'OP_ExamineInfoRequestMsg',253,1),(3179,1193,1195,'OP_QuickbarInitMsg',254,1),(3180,1193,1195,'OP_QuickbarUpdateMsg',255,1),(3181,1193,1195,'OP_MacroInitMsg',256,1),(3182,1193,1195,'OP_MacroUpdateMsg',257,1),(3183,1193,1195,'OP_QuestionnaireMsg',258,1),(3184,1193,1195,'OP_LevelChangedMsg',259,1),(3185,1193,1195,'OP_SpellGainedMsg',260,1),(3186,1193,1195,'OP_EncounterBrokenMsg',261,1),(3187,1193,1195,'OP_OnscreenMsgMsg',262,1),(3188,1193,1195,'OP_DisplayWarningMsg',263,1),(3189,1193,1195,'OP_ModifyGuildMsg',264,1),(3190,1193,1195,'OP_GuildEventMsg',265,1),(3191,1193,1195,'OP_GuildEventAddMsg',266,1),(3192,1193,1195,'OP_GuildEventActionMsg',267,1),(3193,1193,1195,'OP_GuildEventListMsg',268,1),(3194,1193,1195,'OP_RequestGuildEventDetailsMsg',269,1),(3195,1193,1195,'OP_GuildEventDetailsMsg',270,1),(3196,1193,1195,'OP_RequestGuildInfoMsg',271,1),(3197,1193,1195,'OP_GuildBankActionMsg',272,1),(3198,1193,1195,'OP_GuildBankActionResponseMsg',273,1),(3199,1193,1195,'OP_GuildBankItemDetailsRequestMsg',274,1),(3200,1193,1195,'OP_GuildBankItemDetailsResponseMs',275,1),(3201,1193,1195,'OP_GuildBankUpdateMsg',276,1),(3202,1193,1195,'OP_GuildBankEventListMsg',277,1),(3203,1193,1195,'OP_RequestGuildBankEventDetailsMs',278,1),(3204,1193,1195,'OP_RewardPackMsg',279,1),(3205,1193,1195,'OP_RenameGuildMsg',280,1),(3206,1193,1195,'OP_ZoneToFriendRequestMsg',281,1),(3207,1193,1195,'OP_ZoneToFriendReplyMsg',282,1),(3208,1193,1195,'OP_ChatCreateChannelMsg',283,1),(3209,1193,1195,'OP_ChatJoinChannelMsg',284,1),(3210,1193,1195,'OP_ChatWhoChannelMsg',285,1),(3211,1193,1195,'OP_ChatLeaveChannelMsg',286,1),(3212,1193,1195,'OP_ChatTellChannelMsg',287,1),(3213,1193,1195,'OP_ChatTellUserMsg',288,1),(3214,1193,1195,'OP_ChatToggleFriendMsg',289,1),(3215,1193,1195,'OP_BrokerAddBag',290,1),(3216,1193,1195,'OP_BrokerRemoveBag',291,1),(3217,1193,1195,'OP_ChatToggleIgnoreMsg',292,1),(3218,1193,1195,'OP_ChatSendFriendsMsg',293,1),(3219,1193,1195,'OP_ChatSendIgnoresMsg',294,1),(3220,1193,1195,'OP_QuestReward',318,1),(3221,1193,1195,'OP_ChatFiltersMsg',333,1),(3222,1193,1195,'OP_MailGetMessageMsg',336,1),(3223,1193,1195,'OP_MailSendMessageMsg',337,1),(3224,1193,1195,'OP_MailDeleteMessageMsg',338,1),(3225,1193,1195,'OP_MailGetHeadersReplyMsg',339,1),(3226,1193,1195,'OP_MailGetMessageReplyMsg',340,1),(3227,1193,1195,'OP_MailSendMessageReplyMsg',341,1),(3228,1193,1195,'OP_MailCommitSendMessageMsg',342,1),(3229,1193,1195,'OP_MailSendSystemMessageMsg',343,1),(3230,1193,1195,'OP_MailRemoveAttachFromMailMsg',344,1),(3231,1193,1195,'OP_WaypointRequestMsg',346,1),(3232,1193,1195,'OP_WaypointReplyMsg',347,1),(3233,1193,1195,'OP_WaypointSelectMsg',348,1),(3234,1193,1195,'OP_WaypointUpdateMsg',349,1),(3235,1193,1195,'OP_CharNameChangedMsg',350,1),(3236,1193,1195,'OP_ShowZoneTeleporterDestinations',351,1),(3237,1193,1195,'OP_SelectZoneTeleporterDestinatio',352,1),(3238,1193,1195,'OP_ReloadLocalizedTxtMsg',353,1),(3239,1193,1195,'OP_RequestGuildMembershipMsg',354,1),(3240,1193,1195,'OP_GuildMembershipResponseMsg',355,1),(3241,1193,1195,'OP_LeaveGuildNotifyMsg',356,1),(3242,1193,1195,'OP_JoinGuildNotifyMsg',357,1),(3243,1193,1195,'OP_AvatarUpdateMsg',358,1),(3244,1193,1195,'OP_BioUpdateMsg',360,1),(3245,1193,1195,'OP_InspectPlayerMsg',361,1),(3246,1193,1195,'OP_WSServerLockMsg',362,1),(3247,1193,1195,'OP_LSServerLockMsg',363,1),(3248,1193,1195,'OP_WSServerHideMsg',364,1),(3249,1193,1195,'OP_CsCategoryRequestMsg',365,1),(3250,1193,1195,'OP_CsCategoryResponseMsg',366,1),(3251,1193,1195,'OP_KnowledgeWindowSlotMappingMsg',367,1),(3252,1193,1195,'OP_AFKUpdateMsg',368,1),(3253,1193,1195,'OP_AnonUpdateMsg',369,1),(3254,1193,1195,'OP_UpdateActivePublicZonesMsg',370,1),(3255,1193,1195,'OP_UnknownNpcMsg',371,1),(3256,1193,1195,'OP_PromoFlagsDetailsMsg',372,1),(3257,1193,1195,'OP_ConsignViewCreateMsg',373,1),(3258,1193,1195,'OP_ConsignViewGetPageMsg',374,1),(3259,1193,1195,'OP_ConsignViewReleaseMsg',375,1),(3260,1193,1195,'OP_ConsignRemoveItemsMsg',376,1),(3261,1193,1195,'OP_UpdateDebugRadiiMsg',377,1),(3262,1193,1195,'OP_ReportMsg',378,1),(3263,1193,1195,'OP_UpdateRaidMsg',379,1),(3264,1193,1195,'OP_ConsignViewSortMsg',381,1),(3265,1193,1195,'OP_TitleUpdateMsg',382,1),(3266,1193,1195,'OP_ClientFellMsg',383,1),(3267,1193,1195,'OP_ClientInDeathRegionMsg',384,1),(3268,1193,1195,'OP_CampClientMsg',385,1),(3269,1193,1195,'OP_CSToolAccessResponseMsg',386,1),(3270,1193,1195,'OP_TrackingUpdateMsg',387,1),(3271,1193,1195,'OP_BeginTrackingMsg',388,1),(3272,1193,1195,'OP_StopTrackingMsg',389,1),(3273,1193,1195,'OP_GetAvatarAccessRequestForCSToo',391,1),(3274,1193,1195,'OP_AdvancementRequestMsg',392,1),(3275,1193,1195,'OP_MapFogDataInitMsg',393,1),(3276,1193,1195,'OP_MapFogDataUpdateMsg',394,1),(3277,1193,1195,'OP_CloseGroupInviteWindowMsg',395,1),(3278,1193,1195,'OP_UpdateGroupMemberDataMsg',396,1),(3279,1193,1195,'OP_WorldPingMsg',397,1),(3280,1193,1195,'OP_MoveLogUpdateMsg',388,1),(3281,1193,1195,'OP_OfferQuestMsg',399,1),(3282,1193,1195,'OP_WorldShutdownUpdateMsg',401,1),(3283,1193,1195,'OP_DisplayMailScreenMsg',402,1),(3284,1193,1195,'OP_ClientIdleBeginMsg',403,1),(3285,1193,1195,'OP_ClientIdleEndMsg',404,1),(3286,1193,1195,'OP_PurchaseConsignmentLoreCheckRe',405,1),(3287,1193,1195,'OP_NotifyApprenticeStoppedMentori',406,1),(3288,1193,1195,'OP_CorruptedClientMsg',407,1),(3289,1193,1195,'OP_WorldDataChangeMsg',408,1),(3290,1193,1195,'OP_MailEventNotificationMsg',409,1),(3291,1193,1195,'OP_RestartZoneMsg',410,1),(3292,1193,1195,'OP_FlightPathsMsg',411,1),(3293,1193,1195,'OP_CharacterLinkdeadMsg',412,1),(3294,1193,1195,'OP_CharTransferStartRequestMsg',413,1),(3295,1193,1195,'OP_CharTransferStartReplyMsg',414,1),(3296,1193,1195,'OP_CharTransferRequestMsg',415,1),(3297,1193,1195,'OP_CharTransferReplyMsg',416,1),(3298,1193,1195,'OP_CharTransferRollbackRequestMsg',417,1),(3299,1193,1195,'OP_CharTransferCommitRequestMsg',418,1),(3300,1193,1195,'OP_CharTransferRollbackReplyMsg',419,1),(3301,1193,1195,'OP_CharTransferCommitReplyMsg',420,1),(3302,1193,1195,'OP_GetCharacterSerializedRequestM',421,1),(3303,1193,1195,'OP_GetCharacterSerializedReplyMsg',422,1),(3304,1193,1195,'OP_CreateCharFromCBBRequestMsg',423,1),(3305,1193,1195,'OP_CreateCharFromCBBReplyMsg',424,1),(3306,1193,1195,'OP_HousingDataChangedMsg',425,1),(3307,1193,1195,'OP_HousingRestoreMsg',426,1),(3308,1193,1195,'OP_AuctionItem',427,1),(3309,1193,1195,'OP_AuctionItemReply',428,1),(3310,1193,1195,'OP_AuctionCoin',429,1),(3311,1193,1195,'OP_AuctionCoinReply',430,1),(3312,1193,1195,'OP_AuctionCharacter',431,1),(3313,1193,1195,'OP_AuctionCharacterReply',432,1),(3314,1193,1195,'OP_AuctionCommitMsg',433,1),(3315,1193,1195,'OP_AuctionAbortMsg',434,1),(3316,1193,1195,'OP_CharTransferValidateRequestMsg',435,1),(3317,1193,1195,'OP_CharTransferValidateReplyMsg',436,1),(3318,1193,1195,'OP_RaceRestrictionMsg',437,1),(3319,1193,1195,'OP_SetInstanceDisplayNameMsg',438,1),(3320,1193,1195,'OP_GetAuctionAssetIDMsg',439,1),(3321,1193,1195,'OP_GetAuctionAssetIDReplyMsg',440,1),(3322,1193,1195,'OP_ResendWorldChannelsMsg',441,1),(3323,1193,1195,'OP_DisplayExchangeScreenMsg',442,1),(3324,1193,1195,'OP_ArenaGameTypesMsg',443,1),(3325,1193,1195,'OP_AuditAuctionEventMsg',444,1),(3326,1193,1195,'OP_InviteRequestMsg',445,1),(3327,1193,1195,'OP_InviteResponseMsg',446,1),(3328,1193,1195,'OP_InviteTargetResponseMsg',447,1),(3329,1193,1195,'OP_InspectPlayerRequestMsg',448,1),(3330,1193,1195,'OP_DispatchMsg',449,1),(3331,1193,1195,'OP_DisplayEventMsg',450,1),(3332,1193,1195,'OP_PrePossessionMsg',451,1),(3333,1193,1195,'OP_PostPossessionMsg',452,1),(3334,1193,1195,'OP_ArenaCreate',454,1),(3335,1193,1195,'OP_ArenaList',455,1),(3336,1193,1195,'OP_ArenaWindow',463,1),(3337,1193,1195,'OP_HouseItemsList',481,1),(3338,1193,1195,'OP_CurrentPet',483,1),(3339,1193,1195,'OP_AdventureList',486,1),(3340,1193,1195,'OP_CancelSpellCast',487,1),(3341,1193,1195,'OP_UpdateTitleCmd',492,1),(3342,1193,1195,'OP_AttackAllowed',498,1),(3343,1193,1195,'OP_AttackNotAllowed',499,1),(3344,1193,1195,'OP_BagOptions',500,1),(3345,1193,1195,'OP_LFGGroupSearch',502,1),(3346,1193,1195,'OP_CharacterHousingList',505,1),(3347,1193,1195,'OP_DressingRoom',508,1),(3348,1193,1195,'OP_PlayLon',509,1),(3349,1193,1195,'OP_SkillInfoRequest',512,1),(3350,1193,1195,'OP_SkillInfoResponse',513,1),(3351,1193,1195,'OP_LFGUpdateMsg',516,1),(3352,1193,1195,'OP_BadLanguageFilter',517,1),(3353,1193,1195,'OP_VoiceChatChannel',518,1),(3354,1193,1195,'OP_MapRequest',519,1),(3355,1193,1195,'OP_MarketFundsUpdate',524,1),(3356,1193,1195,'OP_UIEvent',525,1),(3357,1193,1195,'OP_MarketAddFundsRequest',526,1),(3358,1193,1195,'OP_MarketAddFundsReply',527,1),(3359,1193,1195,'OP_MarketPurchase',529,1),(3360,1193,1195,'OP_MarketPlacePrices',530,1),(3361,1193,1195,'OP_MarketPlaceItems',533,1),(3362,1193,1195,'OP_RecipeBook',534,1),(3363,1193,1195,'OP_CreateCharacterDungeon',543,1),(3364,1193,1195,'OP_DungeonMakerEnter',544,1),(3365,1193,1195,'OP_DungeonMakerItemRequest',546,1),(3366,1193,1195,'OP_CharacterCreatedDungeons',547,1),(3367,1193,1195,'OP_DungeonMakerToolboxList',548,1),(3368,1193,1195,'OP_DungeonMakerUnknown',549,1),(3369,1193,1195,'OP_DungeonMakerUnknown1',550,1),(3370,1193,1195,'OP_PlayerPollPopup',552,1),(3371,1193,1195,'OP_PlayerPollAnswer',553,1),(3372,1193,1195,'OP_MentorPopup',554,1),(3373,1193,1195,'OP_LoadWelcomeWindow',556,1),(3374,1193,1195,'OP_OpenCharCust',557,1),(3375,1193,1195,'OP_SubmitCharCust',558,1),(3376,1193,1195,'OP_QueAllBgSolo',560,1),(3377,1193,1195,'OP_ZoneBgInstanceList',562,1),(3378,1193,1195,'OP_WorldTravelAvail',566,1),(3379,1193,1195,'OP_PaperdollImage',569,1),(3380,1193,1195,'OP_LoadCalendarEvents',570,1),(3381,1193,1195,'OP_VideoUploaded',571,1),(3382,1193,1195,'OP_SavageBarInitMsg',572,1),(3383,1193,1195,'OP_PetOptionsResponse',573,1),(3384,1193,1195,'OP_DungeonMakerItemResponse',574,1),(3385,1193,1195,'OP_CharacterMounts',576,1),(3386,1193,1195,'OP_EqBetaCopyRequest',585,1),(3387,1193,1195,'OP_EqHearChatCmd',586,1),(3388,1193,1195,'OP_EqDisplayTextCmd',587,1),(3389,1193,1195,'OP_EqCreateGhostCmd',588,1),(3390,1193,1195,'OP_EqCreateWidgetCmd',589,1),(3391,1193,1195,'OP_EqCreateSignWidgetCmd',590,1),(3392,1193,1195,'OP_EqDestroyGhostCmd',591,1),(3393,1193,1195,'OP_EqUpdateGhostCmd',592,1),(3394,1193,1195,'OP_EqSetControlGhostCmd',593,1),(3395,1193,1195,'OP_EqSetPOVGhostCmd',594,1),(3396,1193,1195,'OP_EqHearCombatCmd',595,1),(3397,1193,1195,'OP_EqHearSpellCastCmd',596,1),(3398,1193,1195,'OP_EQHearProcCmd',597,1),(3399,1193,1195,'OP_EQHearResEffectCmd',598,1),(3400,1193,1195,'OP_EqHearSpellInterruptCmd',599,1),(3401,1193,1195,'OP_EqHearSpellFizzleCmd',600,1),(3402,1193,1195,'OP_EqHearConsiderCmd',601,1),(3403,1193,1195,'OP_EqUpdateSubClassesCmd',602,1),(3404,1193,1195,'OP_EqCreateListBoxCmd',603,1),(3405,1193,1195,'OP_EqSetDebugPathPointsCmd',604,1),(3406,1193,1195,'OP_EqCannedEmoteCmd',606,1),(3407,1193,1195,'OP_EqStateCmd',607,1),(3408,1193,1195,'OP_EqPlaySoundCmd',608,1),(3409,1193,1195,'OP_EqPlaySound3DCmd',609,1),(3410,1193,1195,'OP_EqPlayVoiceCmd',610,1),(3411,1193,1195,'OP_EqHearDrowningCmd',611,1),(3412,1193,1195,'OP_EqHearDeathCmd',612,1),(3413,1193,1195,'OP_EqGroupMemberRemovedCmd',613,1),(3414,1193,1195,'OP_EqHearChainEffectCmd',614,1),(3415,1193,1195,'OP_EqReceiveOfferCmd',615,1),(3416,1193,1195,'OP_EqInspectPCResultsCmd',616,1),(3417,1193,1195,'OP_EqDrawablePathGraphCmd',617,1),(3418,1193,1195,'OP_EqDialogOpenCmd',618,1),(3419,1193,1195,'OP_EqDialogCloseCmd',619,1),(3420,1193,1195,'OP_EqFactionUpdateCmd',620,1),(3421,1193,1195,'OP_EqCollectionUpdateCmd',621,1),(3422,1193,1195,'OP_EqCollectionFilterCmd',622,1),(3423,1193,1195,'OP_EqCollectionItemCmd',623,1),(3424,1193,1195,'OP_EqQuestJournalUpdateCmd',624,1),(3425,1193,1195,'OP_EqMentoring',625,1),(3426,1193,1195,'OP_EqQuestJournalReplyCmd',626,1),(3427,1193,1195,'OP_EqQuestGroupCmd',627,1),(3428,1193,1195,'OP_EqUpdateMerchantCmd',628,1),(3429,1193,1195,'OP_EqUpdateStoreCmd',629,1),(3430,1193,1195,'OP_EqUpdatePlayerTradeCmd',630,1),(3431,1193,1195,'OP_EqHelpPathCmd',631,1),(3432,1193,1195,'OP_EqHelpPathClearCmd',632,1),(3433,1193,1195,'OP_EqUpdateBankCmd',633,1),(3434,1193,1195,'OP_EqExamineInfoCmd',634,1),(3435,1193,1195,'OP_EqCloseWindowCmd',635,1),(3436,1193,1195,'OP_EqUpdateLootCmd',636,1),(3437,1193,1195,'OP_EqJunctionListCmd',637,1),(3438,1193,1195,'OP_EqShowDeathWindowCmd',638,1),(3439,1193,1195,'OP_EqDisplaySpellFailCmd',639,1),(3440,1193,1195,'OP_EqSpellCastStartCmd',640,1),(3441,1193,1195,'OP_EqSpellCastEndCmd',641,1),(3442,1193,1195,'OP_EqResurrectedCmd',642,1),(3443,1193,1195,'OP_EqChoiceWinCmd',643,1),(3444,1193,1195,'OP_EqSetDefaultVerbCmd',644,1),(3445,1193,1195,'OP_EqInstructionWindowCmd',645,1),(3446,1193,1195,'OP_EqInstructionWindowCloseCmd',646,1),(3447,1193,1195,'OP_EqInstructionWindowGoalCmd',647,1),(3448,1193,1195,'OP_EqInstructionWindowTaskCmd',648,1),(3449,1193,1195,'OP_EqEnableGameEventCmd',649,1),(3450,1193,1195,'OP_EqShowWindowCmd',650,1),(3451,1193,1195,'OP_EqEnableWindowCmd',651,1),(3452,1193,1195,'OP_EqFlashWindowCmd',652,1),(3453,1193,1195,'OP_EqHearPlayFlavorCmd',654,1),(3454,1193,1195,'OP_EqUpdateSignWidgetCmd',655,1),(3455,1193,1195,'OP_EqDebugPVDCmd',656,1),(3456,1193,1195,'OP_EqShowBookCmd',657,1),(3457,1193,1195,'OP_EqQuestionnaireCmd',658,1),(3458,1193,1195,'OP_EqGetProbsCmd',660,1),(3459,1193,1195,'OP_EqHearHealCmd',661,1),(3460,1193,1195,'OP_EqChatChannelUpdateCmd',662,1),(3461,1193,1195,'OP_EqWhoChannelQueryReplyCmd',663,1),(3462,1193,1195,'OP_EqAvailWorldChannelsCmd',664,1),(3463,1193,1195,'OP_EqUpdateTargetCmd',665,1),(3464,1193,1195,'OP_BrokerSellList',666,1),(3465,1193,1195,'OP_EqConsignmentItemsCmd',667,1),(3466,1193,1195,'OP_EqStartBrokerCmd',669,1),(3467,1193,1195,'OP_EqMapExplorationCmd',670,1),(3468,1193,1195,'OP_EqStoreLogCmd',671,1),(3469,1193,1195,'OP_EqSpellMoveToRangeAndRetryCmd',672,1),(3470,1193,1195,'OP_EqUpdatePlayerMailCmd',673,1),(3471,1193,1195,'OP_GuildStatusUpdate',676,1),(3472,1193,1195,'OP_EqArenaResultsCmd',677,1),(3473,1193,1195,'OP_EqGuildBankEventActionCmd',678,1),(3474,1193,1195,'OP_EqGuildBankExamineInfoCmd',679,1),(3475,1193,1195,'OP_EqHearSpellNoLandCmd',680,1),(3476,1193,1195,'OP_Lottery',681,1),(3477,1193,1195,'OP_GuildRecruitingMemberInfo',682,1),(3478,1193,1195,'OP_GuildRecruiting',683,1),(3479,1193,1195,'OP_GuildRecruitingDetails',684,1),(3480,1193,1195,'OP_GuildRecruitingImage',685,1),(3481,1193,1195,'OP_TradeskillList',703,1),(3482,1193,1195,'OP_CharRenamed',687,1),(3483,1193,1195,'OP_UseAdornment',697,1),(3484,1193,1195,'OP_ExpPurchWindow',703,1),(3485,1193,1195,'OP_PointOfInterest',707,1),(3486,1193,1195,'OP_PointOfInterest2',708,1),(3487,1193,1195,'OP_TraitsList',709,1),(3488,1193,1195,'OP_CustomizeHouseDisplay',712,1),(3489,1193,1195,'OP_VoiceChatServer',713,1),(3490,1193,1195,'OP_SupplyDepot',717,1),(3491,1193,1195,'OP_EQHearThreatCmd',718,1),(3492,1193,1195,'OP_RecipeList',719,1),(3493,1193,1195,'OP_Research',720,1),(3494,1193,1195,'OP_CharacterCurrency',721,1),(3495,1193,1195,'OP_CharacterAchievements',722,1),(3496,1193,1195,'OP_AchievementUpdateMsg',723,1),(3497,1193,1195,'OP_EQHearDispellCmd',724,1),(3498,1193,1195,'OP_JournalQuestStoryline',725,1),(3499,1193,1195,'OP_DungeonPlayAsAvatarList',726,1),(3500,1193,1195,'OP_DungeonPlayAsAvatarSelected',727,1),(3501,1193,1195,'OP_MercHireWindow',728,1),(3502,1193,1195,'OP_MercUnknown',729,1),(3503,1193,1195,'OP_Unknown',746,1),(3504,1198,1199,'OP_LoginRequestMsg',0,1),(3505,1198,1199,'OP_LoginByNumRequestMsg',1,1),(3506,1198,1199,'OP_WSLoginRequestMsg',2,1),(3507,1198,1199,'OP_ESLoginRequestMsg',3,1),(3508,1198,1199,'OP_LoginReplyMsg',4,1),(3509,1198,1199,'OP_WSStatusReplyMsg',5,1),(3510,1198,1199,'OP_WorldStatusChangeMsg',6,1),(3511,1198,1199,'OP_AllWSDescRequestMsg',7,1),(3512,1198,1199,'OP_WorldListMsg',8,1),(3513,1198,1199,'OP_AllCharactersDescRequestMsg',9,1),(3514,1198,1199,'OP_AllCharactersDescReplyMsg',10,1),(3515,1198,1199,'OP_CreateCharacterRequestMsg',11,1),(3516,1198,1199,'OP_CreateCharacterReplyMsg',12,1),(3517,1198,1199,'OP_WSCreateCharacterRequestMsg',13,1),(3518,1198,1199,'OP_WSCreateCharacterReplyMsg',14,1),(3519,1198,1199,'OP_ReskinCharacterRequestMsg',15,1),(3520,1198,1199,'OP_DeleteCharacterRequestMsg',16,1),(3521,1198,1199,'OP_DeleteCharacterReplyMsg',17,1),(3522,1198,1199,'OP_PlayCharacterRequestMsg',18,1),(3523,1198,1199,'OP_PlayCharacterReplyMsg',19,1),(3524,1198,1199,'OP_ExpectClientAsCharacterReplyMs',22,1),(3525,1198,1199,'OP_ServerPlayCharacterRequestMsg',23,1),(3526,1198,1199,'OP_ServerPlayCharacterReplyMsg',24,1),(3527,1198,1199,'OP_ESInitMsg',25,1),(3528,1198,1199,'OP_ESReadyForClientsMsg',26,1),(3529,1198,1199,'OP_CreateZoneInstanceMsg',29,1),(3530,1198,1199,'OP_ZoneInstanceCreateReplyMsg',30,1),(3531,1198,1199,'OP_ZoneInstanceDestroyedMsg',31,1),(3532,1198,1199,'OP_ExpectClientAsCharacterRequest',32,1),(3533,1198,1199,'OP_ZoneInfoMsg',33,1),(3534,1198,1199,'OP_DoneLoadingZoneResourcesMsg',34,1),(3535,1198,1199,'OP_DoneSendingInitialEntitiesMsg',35,1),(3536,1198,1199,'OP_DoneLoadingEntityResourcesMsg',36,1),(3537,1198,1199,'OP_PredictionUpdateMsg',37,1),(3538,1198,1199,'OP_UpdatePositionMsg',39,1),(3539,1198,1199,'OP_SetRemoteCmdsMsg',41,1),(3540,1198,1199,'OP_RemoteCmdMsg',42,1),(3541,1198,1199,'OP_GameWorldTimeMsg',43,1),(3542,1198,1199,'OP_MOTDMsg',44,1),(3543,1198,1199,'OP_ZoneMOTDMsg',45,1),(3544,1198,1199,'OP_AvatarCreatedMsg',46,1),(3545,1198,1199,'OP_AvatarDestroyedMsg',47,1),(3546,1198,1199,'OP_RequestCampMsg',50,1),(3547,1198,1199,'OP_CampStartedMsg',51,1),(3548,1198,1199,'OP_CampAbortedMsg',52,1),(3549,1198,1199,'OP_WhoQueryRequestMsg',53,1),(3550,1198,1199,'OP_WhoQueryReplyMsg',54,1),(3551,1198,1199,'OP_MonitorReplyMsg',55,1),(3552,1198,1199,'OP_MonitorCharacterListMsg',56,1),(3553,1198,1199,'OP_MonitorCharacterListRequestMsg',57,1),(3554,1198,1199,'OP_ClientCmdMsg',58,1),(3555,1198,1199,'OP_DispatchESMsg',59,1),(3556,1198,1199,'OP_DispatchClientCmdMsg',60,1),(3557,1198,1199,'OP_UpdateTargetMsg',61,1),(3558,1198,1199,'OP_UpdateTargetLocMsg',62,1),(3559,1198,1199,'OP_UpdateCharacterSheetMsg',63,1),(3560,1198,1199,'OP_CharacterPet',64,1),(3561,1198,1199,'OP_CharacterMerc',65,1),(3562,1198,1199,'OP_UpdateSpellBookMsg',66,1),(3563,1198,1199,'OP_UpdateInventoryMsg',68,1),(3564,1198,1199,'OP_AfterInvSpellUpdate',69,1),(3565,1198,1199,'OP_UpdateRecipeBookMsg',70,1),(3566,1198,1199,'OP_RequestRecipeDetailsMsg',71,1),(3567,1198,1199,'OP_RecipeDetailsMsg',72,1),(3568,1198,1199,'OP_UpdateSkillBookMsg',73,1),(3569,1198,1199,'OP_UpdateSkillsMsg',74,1),(3570,1198,1199,'OP_UpdateOpportunityMsg',75,1),(3571,1198,1199,'OP_ChangeZoneMsg',77,1),(3572,1198,1199,'OP_ClientTeleportRequestMsg',78,1),(3573,1198,1199,'OP_TeleportWithinZoneMsg',79,1),(3574,1198,1199,'OP_TeleportWithinZoneNoReloadMsg',80,1),(3575,1198,1199,'OP_MigrateClientToZoneRequestMsg',81,1),(3576,1198,1199,'OP_MigrateClientToZoneReplyMsg',82,1),(3577,1198,1199,'OP_ReadyToZoneMsg',84,1),(3578,1198,1199,'OP_RemoveClientFromGroupMsg',85,1),(3579,1198,1199,'OP_RemoveGroupFromGroupMsg',86,1),(3580,1198,1199,'OP_MakeGroupLeaderMsg',87,1),(3581,1198,1199,'OP_GroupCreatedMsg',88,1),(3582,1198,1199,'OP_GroupDestroyedMsg',89,1),(3583,1198,1199,'OP_GroupMemberAddedMsg',90,1),(3584,1198,1199,'OP_GroupMemberRemovedMsg',91,1),(3585,1198,1199,'OP_GroupRemovedFromGroupMsg',92,1),(3586,1198,1199,'OP_GroupLeaderChangedMsg',93,1),(3587,1198,1199,'OP_GroupResendOOZDataMsg',94,1),(3588,1198,1199,'OP_GroupSettingsChangedMsg',95,1),(3589,1198,1199,'OP_OutOfZoneMemberDataMsg',96,1),(3590,1198,1199,'OP_SendLatestRequestMsg',97,1),(3591,1198,1199,'OP_ClearDataMsg',98,1),(3592,1198,1199,'OP_SetSocialMsg',99,1),(3593,1198,1199,'OP_ESStatusMsg',100,1),(3594,1198,1199,'OP_ESZoneInstanceStatusMsg',101,1),(3595,1198,1199,'OP_ZonesStatusRequestMsg',102,1),(3596,1198,1199,'OP_ZonesStatusMsg',103,1),(3597,1198,1199,'OP_ESWeatherRequestMsg',104,1),(3598,1198,1199,'OP_ESWeatherRequestEndMsg',105,1),(3599,1198,1199,'OP_DialogSelectMsg',109,1),(3600,1198,1199,'OP_DialogCloseMsg',110,1),(3601,1198,1199,'OP_RemoveSpellEffectMsg',111,1),(3602,1198,1199,'OP_RemoveConcentrationMsg',112,1),(3603,1198,1199,'OP_QuestJournalOpenMsg',113,1),(3604,1198,1199,'OP_QuestJournalInspectMsg',114,1),(3605,1198,1199,'OP_QuestJournalSetVisibleMsg',115,1),(3606,1198,1199,'OP_QuestJournalWaypointMsg',116,1),(3607,1198,1199,'OP_CreateGuildRequestMsg',119,1),(3608,1198,1199,'OP_CreateGuildReplyMsg',120,1),(3609,1198,1199,'OP_GuildsayMsg',121,1),(3610,1198,1199,'OP_FellowshipExpMsg',122,1),(3611,1198,1199,'OP_DeleteGuildMsg',123,1),(3612,1198,1199,'OP_GuildUpdateMsg',124,1),(3613,1198,1199,'OP_ConsignmentCloseStoreMsg',125,1),(3614,1198,1199,'OP_ConsignItemRequestMsg',126,1),(3615,1198,1199,'OP_ConsignItemResponseMsg',127,1),(3616,1198,1199,'OP_PurchaseConsignmentRequestMsg',128,1),(3617,1198,1199,'OP_LikeOption',135,1),(3618,1198,1199,'OP_PublishHouse',137,1),(3619,1198,1199,'OP_PlayerMadeInstacnesScreen',138,1),(3620,1198,1199,'OP_PlayerMadeInstances',139,1),(3621,1198,1199,'OP_HouseDeletedRemotelyMsg',140,1),(3622,1198,1199,'OP_UpdateHouseDataMsg',141,1),(3623,1198,1199,'OP_UpdateHouseAccessDataMsg',142,1),(3624,1198,1199,'OP_PlayerHouseBaseScreenMsg',143,1),(3625,1198,1199,'OP_PlayerHousePurchaseScreenMsg',144,1),(3626,1198,1199,'OP_PlayerHouseAccessUpdateMsg',145,1),(3627,1198,1199,'OP_PlayerHouseDisplayStatusMsg',146,1),(3628,1198,1199,'OP_PlayerHouseCloseUIMsg',147,1),(3629,1198,1199,'OP_BuyPlayerHouseMsg',148,1),(3630,1198,1199,'OP_BuyPlayerHouseTintMsg',149,1),(3631,1198,1199,'OP_CollectAllHouseItemsMsg',150,1),(3632,1198,1199,'OP_RelinquishHouseMsg',151,1),(3633,1198,1199,'OP_EnterHouseMsg',152,1),(3634,1198,1199,'OP_ExitHouseMsg',153,1),(3635,1198,1199,'OP_HouseDefaultAccessSetMsg',154,1),(3636,1198,1199,'OP_HouseAccessSetMsg',155,1),(3637,1198,1199,'OP_HouseAccessRemoveMsg',156,1),(3638,1198,1199,'OP_PayHouseUpkeepMsg',157,1),(3639,1198,1199,'OP_MoveableObjectPlacementCriteri',158,1),(3640,1198,1199,'OP_EnterMoveObjectModeMsg',159,1),(3641,1198,1199,'OP_PositionMoveableObject',160,1),(3642,1198,1199,'OP_CancelMoveObjectModeMsg',161,1),(3643,1198,1199,'OP_ShaderCustomizationMsg',162,1),(3644,1198,1199,'OP_ReplaceableSubMeshesMsg',163,1),(3645,1198,1199,'OP_HouseCustomizationScreenMsg',164,1),(3646,1198,1199,'OP_CustomizationPurchaseRequestMs',165,1),(3647,1198,1199,'OP_CustomizationSetRequestMsg',166,1),(3648,1198,1199,'OP_CustomizationReplyMsg',167,1),(3649,1198,1199,'OP_TintWidgetsMsg',168,1),(3650,1198,1199,'OP_ExamineConsignmentRequestMsg',169,1),(3651,1198,1199,'OP_ExamineConsignmentResponseMsg',170,1),(3652,1198,1199,'OP_UISettingsResponseMsg',171,1),(3653,1198,1199,'OP_UIResetMsg',172,1),(3654,1198,1199,'OP_KeymapLoadMsg',173,1),(3655,1198,1199,'OP_KeymapNoneMsg',174,1),(3656,1198,1199,'OP_KeymapDataMsg',175,1),(3657,1198,1199,'OP_KeymapSaveMsg',176,1),(3658,1198,1199,'OP_DispatchSpellCmdMsg',177,1),(3659,1198,1199,'OP_EntityVerbsRequestMsg',178,1),(3660,1198,1199,'OP_EntityVerbsReplyMsg',179,1),(3661,1198,1199,'OP_EntityVerbsVerbMsg',180,1),(3662,1198,1199,'OP_ChatRelationshipUpdateMsg',182,1),(3663,1198,1199,'OP_LootItemsRequestMsg',183,1),(3664,1198,1199,'OP_StoppedLootingMsg',184,1),(3665,1198,1199,'OP_SitMsg',185,1),(3666,1198,1199,'OP_StandMsg',186,1),(3667,1198,1199,'OP_SatMsg',187,1),(3668,1198,1199,'OP_StoodMsg',188,1),(3669,1198,1199,'OP_ClearForTakeOffMsg',189,1),(3670,1198,1199,'OP_ReadyForTakeOffMsg',190,1),(3671,1198,1199,'OP_ShowIllusionsMsg',191,1),(3672,1198,1199,'OP_HideIllusionsMsg',192,1),(3673,1198,1199,'OP_ExamineItemRequestMsg',193,1),(3674,1198,1199,'OP_ReadBookPageMsg',194,1),(3675,1198,1199,'OP_DefaultGroupOptionsRequestMsg',195,1),(3676,1198,1199,'OP_DefaultGroupOptionsMsg',196,1),(3677,1198,1199,'OP_GroupOptionsMsg',197,1),(3678,1198,1199,'OP_DisplayGroupOptionsScreenMsg',198,1),(3679,1198,1199,'OP_PetOptions',199,1),(3680,1198,1199,'OP_DisplayInnVisitScreenMsg',200,1),(3681,1198,1199,'OP_DumpSchedulerMsg',201,1),(3682,1198,1199,'OP_LSCheckAcctLockMsg',202,1),(3683,1198,1199,'OP_WSAcctLockStatusMsg',203,1),(3684,1198,1199,'OP_RequestHelpRepathMsg',204,1),(3685,1198,1199,'OP_RequestTargetLocMsg',205,1),(3686,1198,1199,'OP_UpdateMotdMsg',206,1),(3687,1198,1199,'OP_DestUpdateReq',208,1),(3688,1198,1199,'OP_PerformPlayerKnockbackMsg',211,1),(3689,1198,1199,'OP_PerformCameraShakeMsg',212,1),(3690,1198,1199,'OP_PopulateSkillMapsMsg',213,1),(3691,1198,1199,'OP_CancelledFeignMsg',214,1),(3692,1198,1199,'OP_SysClient',216,1),(3693,1198,1199,'OP_ShowCreateFromRecipeUIMsg',217,1),(3694,1198,1199,'OP_CancelCreateFromRecipeMsg',218,1),(3695,1198,1199,'OP_BeginItemCreationMsg',219,1),(3696,1198,1199,'OP_StopItemCreationMsg',220,1),(3697,1198,1199,'OP_ShowItemCreationProcessUIMsg',221,1),(3698,1198,1199,'OP_UpdateItemCreationProcessUIMsg',222,1),(3699,1198,1199,'OP_DisplayTSEventReactionMsg',223,1),(3700,1198,1199,'OP_ShowRecipeBookMsg',224,1),(3701,1198,1199,'OP_KnowledgebaseRequestMsg',225,1),(3702,1198,1199,'OP_KnowledgebaseResponseMsg',226,1),(3703,1198,1199,'OP_CSTicketHeaderRequestMsg',227,1),(3704,1198,1199,'OP_CSTicketInfoMsg',228,1),(3705,1198,1199,'OP_CSTicketCommentRequestMsg',229,1),(3706,1198,1199,'OP_CSTicketCommentResponseMsg',230,1),(3707,1198,1199,'OP_CSTicketCreateMsg',231,1),(3708,1198,1199,'OP_CSTicketAddCommentMsg',232,1),(3709,1198,1199,'OP_CSTicketDeleteMsg',233,1),(3710,1198,1199,'OP_CSTicketChangeNotificationMsg',234,1),(3711,1198,1199,'OP_WorldDataUpdateMsg',235,1),(3712,1198,1199,'OP_KnownLanguagesMsg',236,1),(3713,1198,1199,'OP_LsRequestClientCrashLogMsg',237,1),(3714,1198,1199,'OP_LsClientBaselogReplyMsg',238,1),(3715,1198,1199,'OP_LsClientCrashlogReplyMsg',239,1),(3716,1198,1199,'OP_LsClientAlertlogReplyMsg',240,1),(3717,1198,1199,'OP_LsClientVerifylogReplyMsg',241,1),(3718,1198,1199,'OP_ClientTeleportToLocationMsg',242,1),(3719,1198,1199,'OP_UpdateClientPredFlagsMsg',243,1),(3720,1198,1199,'OP_ChangeServerControlFlagMsg',244,1),(3721,1198,1199,'OP_CSToolsRequestMsg',245,1),(3722,1198,1199,'OP_CSToolsResponseMsg',246,1),(3723,1198,1199,'OP_AddSocialStructureStandingMsg',247,1),(3724,1198,1199,'OP_CreateBoatTransportsMsg',248,1),(3725,1198,1199,'OP_PositionBoatTransportMsg',249,1),(3726,1198,1199,'OP_MigrateBoatTransportMsg',250,1),(3727,1198,1199,'OP_MigrateBoatTransportReplyMsg',251,1),(3728,1198,1199,'OP_DisplayDebugNLLPointsMsg',252,1),(3729,1198,1199,'OP_ExamineInfoRequestMsg',253,1),(3730,1198,1199,'OP_QuickbarInitMsg',254,1),(3731,1198,1199,'OP_QuickbarUpdateMsg',255,1),(3732,1198,1199,'OP_MacroInitMsg',256,1),(3733,1198,1199,'OP_MacroUpdateMsg',257,1),(3734,1198,1199,'OP_QuestionnaireMsg',258,1),(3735,1198,1199,'OP_LevelChangedMsg',259,1),(3736,1198,1199,'OP_SpellGainedMsg',260,1),(3737,1198,1199,'OP_EncounterBrokenMsg',261,1),(3738,1198,1199,'OP_OnscreenMsgMsg',262,1),(3739,1198,1199,'OP_DisplayWarningMsg',263,1),(3740,1198,1199,'OP_ModifyGuildMsg',264,1),(3741,1198,1199,'OP_GuildEventMsg',265,1),(3742,1198,1199,'OP_GuildEventAddMsg',266,1),(3743,1198,1199,'OP_GuildEventActionMsg',267,1),(3744,1198,1199,'OP_GuildEventListMsg',268,1),(3745,1198,1199,'OP_RequestGuildEventDetailsMsg',269,1),(3746,1198,1199,'OP_GuildEventDetailsMsg',270,1),(3747,1198,1199,'OP_RequestGuildInfoMsg',271,1),(3748,1198,1199,'OP_GuildBankActionMsg',272,1),(3749,1198,1199,'OP_GuildBankActionResponseMsg',273,1),(3750,1198,1199,'OP_GuildBankItemDetailsRequestMsg',274,1),(3751,1198,1199,'OP_GuildBankItemDetailsResponseMs',275,1),(3752,1198,1199,'OP_GuildBankUpdateMsg',276,1),(3753,1198,1199,'OP_GuildBankEventListMsg',277,1),(3754,1198,1199,'OP_RequestGuildBankEventDetailsMs',278,1),(3755,1198,1199,'OP_RewardPackMsg',279,1),(3756,1198,1199,'OP_RenameGuildMsg',280,1),(3757,1198,1199,'OP_ZoneToFriendRequestMsg',281,1),(3758,1198,1199,'OP_ZoneToFriendReplyMsg',282,1),(3759,1198,1199,'OP_ChatCreateChannelMsg',283,1),(3760,1198,1199,'OP_ChatJoinChannelMsg',284,1),(3761,1198,1199,'OP_ChatWhoChannelMsg',285,1),(3762,1198,1199,'OP_ChatLeaveChannelMsg',286,1),(3763,1198,1199,'OP_ChatTellChannelMsg',287,1),(3764,1198,1199,'OP_ChatTellUserMsg',288,1),(3765,1198,1199,'OP_ChatToggleFriendMsg',289,1),(3766,1198,1199,'OP_BrokerAddBag',290,1),(3767,1198,1199,'OP_BrokerRemoveBag',291,1),(3768,1198,1199,'OP_ChatToggleIgnoreMsg',292,1),(3769,1198,1199,'OP_ChatSendFriendsMsg',293,1),(3770,1198,1199,'OP_ChatSendIgnoresMsg',294,1),(3771,1198,1199,'OP_QuestReward',318,1),(3772,1198,1199,'OP_ChatFiltersMsg',333,1),(3773,1198,1199,'OP_MailGetMessageMsg',336,1),(3774,1198,1199,'OP_MailSendMessageMsg',337,1),(3775,1198,1199,'OP_MailDeleteMessageMsg',338,1),(3776,1198,1199,'OP_MailGetHeadersReplyMsg',339,1),(3777,1198,1199,'OP_MailGetMessageReplyMsg',340,1),(3778,1198,1199,'OP_MailSendMessageReplyMsg',341,1),(3779,1198,1199,'OP_MailCommitSendMessageMsg',342,1),(3780,1198,1199,'OP_MailSendSystemMessageMsg',343,1),(3781,1198,1199,'OP_MailRemoveAttachFromMailMsg',344,1),(3782,1198,1199,'OP_WaypointRequestMsg',346,1),(3783,1198,1199,'OP_WaypointReplyMsg',347,1),(3784,1198,1199,'OP_WaypointSelectMsg',348,1),(3785,1198,1199,'OP_WaypointUpdateMsg',349,1),(3786,1198,1199,'OP_CharNameChangedMsg',350,1),(3787,1198,1199,'OP_ShowZoneTeleporterDestinations',351,1),(3788,1198,1199,'OP_SelectZoneTeleporterDestinatio',352,1),(3789,1198,1199,'OP_ReloadLocalizedTxtMsg',353,1),(3790,1198,1199,'OP_RequestGuildMembershipMsg',354,1),(3791,1198,1199,'OP_GuildMembershipResponseMsg',355,1),(3792,1198,1199,'OP_LeaveGuildNotifyMsg',356,1),(3793,1198,1199,'OP_JoinGuildNotifyMsg',357,1),(3794,1198,1199,'OP_AvatarUpdateMsg',358,1),(3795,1198,1199,'OP_BioUpdateMsg',360,1),(3796,1198,1199,'OP_InspectPlayerMsg',361,1),(3797,1198,1199,'OP_WSServerLockMsg',362,1),(3798,1198,1199,'OP_LSServerLockMsg',363,1),(3799,1198,1199,'OP_WSServerHideMsg',364,1),(3800,1198,1199,'OP_CsCategoryRequestMsg',365,1),(3801,1198,1199,'OP_CsCategoryResponseMsg',366,1),(3802,1198,1199,'OP_KnowledgeWindowSlotMappingMsg',367,1),(3803,1198,1199,'OP_AFKUpdateMsg',368,1),(3804,1198,1199,'OP_AnonUpdateMsg',369,1),(3805,1198,1199,'OP_UpdateActivePublicZonesMsg',370,1),(3806,1198,1199,'OP_UnknownNpcMsg',371,1),(3807,1198,1199,'OP_PromoFlagsDetailsMsg',372,1),(3808,1198,1199,'OP_ConsignViewCreateMsg',373,1),(3809,1198,1199,'OP_ConsignViewGetPageMsg',374,1),(3810,1198,1199,'OP_ConsignViewReleaseMsg',375,1),(3811,1198,1199,'OP_ConsignRemoveItemsMsg',376,1),(3812,1198,1199,'OP_UpdateDebugRadiiMsg',377,1),(3813,1198,1199,'OP_ReportMsg',378,1),(3814,1198,1199,'OP_UpdateRaidMsg',379,1),(3815,1198,1199,'OP_ConsignViewSortMsg',381,1),(3816,1198,1199,'OP_TitleUpdateMsg',382,1),(3817,1198,1199,'OP_ClientFellMsg',383,1),(3818,1198,1199,'OP_ClientInDeathRegionMsg',384,1),(3819,1198,1199,'OP_CampClientMsg',385,1),(3820,1198,1199,'OP_CSToolAccessResponseMsg',386,1),(3821,1198,1199,'OP_TrackingUpdateMsg',387,1),(3822,1198,1199,'OP_BeginTrackingMsg',388,1),(3823,1198,1199,'OP_StopTrackingMsg',389,1),(3824,1198,1199,'OP_GetAvatarAccessRequestForCSToo',391,1),(3825,1198,1199,'OP_AdvancementRequestMsg',392,1),(3826,1198,1199,'OP_MapFogDataInitMsg',393,1),(3827,1198,1199,'OP_MapFogDataUpdateMsg',394,1),(3828,1198,1199,'OP_CloseGroupInviteWindowMsg',395,1),(3829,1198,1199,'OP_UpdateGroupMemberDataMsg',396,1),(3830,1198,1199,'OP_WorldPingMsg',397,1),(3831,1198,1199,'OP_MoveLogUpdateMsg',388,1),(3832,1198,1199,'OP_OfferQuestMsg',399,1),(3833,1198,1199,'OP_WorldShutdownUpdateMsg',401,1),(3834,1198,1199,'OP_DisplayMailScreenMsg',402,1),(3835,1198,1199,'OP_ClientIdleBeginMsg',403,1),(3836,1198,1199,'OP_ClientIdleEndMsg',404,1),(3837,1198,1199,'OP_PurchaseConsignmentLoreCheckRe',405,1),(3838,1198,1199,'OP_NotifyApprenticeStoppedMentori',406,1),(3839,1198,1199,'OP_CorruptedClientMsg',407,1),(3840,1198,1199,'OP_WorldDataChangeMsg',408,1),(3841,1198,1199,'OP_MailEventNotificationMsg',409,1),(3842,1198,1199,'OP_RestartZoneMsg',410,1),(3843,1198,1199,'OP_FlightPathsMsg',411,1),(3844,1198,1199,'OP_CharacterLinkdeadMsg',412,1),(3845,1198,1199,'OP_CharTransferStartRequestMsg',413,1),(3846,1198,1199,'OP_CharTransferStartReplyMsg',414,1),(3847,1198,1199,'OP_CharTransferRequestMsg',415,1),(3848,1198,1199,'OP_CharTransferReplyMsg',416,1),(3849,1198,1199,'OP_CharTransferRollbackRequestMsg',417,1),(3850,1198,1199,'OP_CharTransferCommitRequestMsg',418,1),(3851,1198,1199,'OP_CharTransferRollbackReplyMsg',419,1),(3852,1198,1199,'OP_CharTransferCommitReplyMsg',420,1),(3853,1198,1199,'OP_GetCharacterSerializedRequestM',421,1),(3854,1198,1199,'OP_GetCharacterSerializedReplyMsg',422,1),(3855,1198,1199,'OP_CreateCharFromCBBRequestMsg',423,1),(3856,1198,1199,'OP_CreateCharFromCBBReplyMsg',424,1),(3857,1198,1199,'OP_HousingDataChangedMsg',425,1),(3858,1198,1199,'OP_HousingRestoreMsg',426,1),(3859,1198,1199,'OP_AuctionItem',427,1),(3860,1198,1199,'OP_AuctionItemReply',428,1),(3861,1198,1199,'OP_AuctionCoin',429,1),(3862,1198,1199,'OP_AuctionCoinReply',430,1),(3863,1198,1199,'OP_AuctionCharacter',431,1),(3864,1198,1199,'OP_AuctionCharacterReply',432,1),(3865,1198,1199,'OP_AuctionCommitMsg',433,1),(3866,1198,1199,'OP_AuctionAbortMsg',434,1),(3867,1198,1199,'OP_CharTransferValidateRequestMsg',435,1),(3868,1198,1199,'OP_CharTransferValidateReplyMsg',436,1),(3869,1198,1199,'OP_RaceRestrictionMsg',437,1),(3870,1198,1199,'OP_SetInstanceDisplayNameMsg',438,1),(3871,1198,1199,'OP_GetAuctionAssetIDMsg',439,1),(3872,1198,1199,'OP_GetAuctionAssetIDReplyMsg',440,1),(3873,1198,1199,'OP_ResendWorldChannelsMsg',441,1),(3874,1198,1199,'OP_DisplayExchangeScreenMsg',442,1),(3875,1198,1199,'OP_ArenaGameTypesMsg',443,1),(3876,1198,1199,'OP_AuditAuctionEventMsg',444,1),(3877,1198,1199,'OP_InviteRequestMsg',445,1),(3878,1198,1199,'OP_InviteResponseMsg',446,1),(3879,1198,1199,'OP_InviteTargetResponseMsg',447,1),(3880,1198,1199,'OP_InspectPlayerRequestMsg',448,1),(3881,1198,1199,'OP_DispatchMsg',449,1),(3882,1198,1199,'OP_DisplayEventMsg',450,1),(3883,1198,1199,'OP_PrePossessionMsg',451,1),(3884,1198,1199,'OP_PostPossessionMsg',452,1),(3885,1198,1199,'OP_ArenaCreate',454,1),(3886,1198,1199,'OP_ArenaList',455,1),(3887,1198,1199,'OP_ArenaWindow',463,1),(3888,1198,1199,'OP_HouseItemsList',481,1),(3889,1198,1199,'OP_CurrentPet',483,1),(3890,1198,1199,'OP_AdventureList',486,1),(3891,1198,1199,'OP_CancelSpellCast',487,1),(3892,1198,1199,'OP_UpdateTitleCmd',492,1),(3893,1198,1199,'OP_AttackAllowed',498,1),(3894,1198,1199,'OP_AttackNotAllowed',499,1),(3895,1198,1199,'OP_BagOptions',500,1),(3896,1198,1199,'OP_LFGGroupSearch',502,1),(3897,1198,1199,'OP_CharacterHousingList',505,1),(3898,1198,1199,'OP_DressingRoom',508,1),(3899,1198,1199,'OP_PlayLon',509,1),(3900,1198,1199,'OP_SkillInfoRequest',512,1),(3901,1198,1199,'OP_SkillInfoResponse',513,1),(3902,1198,1199,'OP_LFGUpdateMsg',516,1),(3903,1198,1199,'OP_BadLanguageFilter',517,1),(3904,1198,1199,'OP_VoiceChatChannel',518,1),(3905,1198,1199,'OP_MapRequest',519,1),(3906,1198,1199,'OP_MarketFundsUpdate',524,1),(3907,1198,1199,'OP_UIEvent',525,1),(3908,1198,1199,'OP_MarketAddFundsRequest',526,1),(3909,1198,1199,'OP_MarketAddFundsReply',527,1),(3910,1198,1199,'OP_MarketPurchase',529,1),(3911,1198,1199,'OP_MarketPlacePrices',530,1),(3912,1198,1199,'OP_MarketPlaceItems',533,1),(3913,1198,1199,'OP_RecipeBook',534,1),(3914,1198,1199,'OP_CreateCharacterDungeon',543,1),(3915,1198,1199,'OP_DungeonMakerEnter',544,1),(3916,1198,1199,'OP_DungeonMakerItemRequest',546,1),(3917,1198,1199,'OP_CharacterCreatedDungeons',547,1),(3918,1198,1199,'OP_DungeonMakerToolboxList',548,1),(3919,1198,1199,'OP_DungeonMakerUnknown',549,1),(3920,1198,1199,'OP_DungeonMakerUnknown1',550,1),(3921,1198,1199,'OP_PlayerPollPopup',552,1),(3922,1198,1199,'OP_PlayerPollAnswer',553,1),(3923,1198,1199,'OP_MentorPopup',554,1),(3924,1198,1199,'OP_LoadWelcomeWindow',556,1),(3925,1198,1199,'OP_OpenCharCust',557,1),(3926,1198,1199,'OP_SubmitCharCust',558,1),(3927,1198,1199,'OP_QueAllBgSolo',560,1),(3928,1198,1199,'OP_ZoneBgInstanceList',562,1),(3929,1198,1199,'OP_WorldTravelAvail',566,1),(3930,1198,1199,'OP_PaperdollImage',569,1),(3931,1198,1199,'OP_LoadCalendarEvents',570,1),(3932,1198,1199,'OP_VideoUploaded',571,1),(3933,1198,1199,'OP_SavageBarInitMsg',572,1),(3934,1198,1199,'OP_PetOptionsResponse',573,1),(3935,1198,1199,'OP_DungeonMakerItemResponse',574,1),(3936,1198,1199,'OP_CharacterMounts',576,1),(3937,1198,1199,'OP_EqBetaCopyRequest',586,1),(3938,1198,1199,'OP_EqHearChatCmd',587,1),(3939,1198,1199,'OP_EqDisplayTextCmd',588,1),(3940,1198,1199,'OP_EqCreateGhostCmd',589,1),(3941,1198,1199,'OP_EqCreateWidgetCmd',590,1),(3942,1198,1199,'OP_EqCreateSignWidgetCmd',591,1),(3943,1198,1199,'OP_EqDestroyGhostCmd',592,1),(3944,1198,1199,'OP_EqUpdateGhostCmd',593,1),(3945,1198,1199,'OP_EqSetControlGhostCmd',594,1),(3946,1198,1199,'OP_EqSetPOVGhostCmd',595,1),(3947,1198,1199,'OP_EqHearCombatCmd',596,1),(3948,1198,1199,'OP_EqHearSpellCastCmd',597,1),(3949,1198,1199,'OP_EQHearProcCmd',598,1),(3950,1198,1199,'OP_EQHearResEffectCmd',599,1),(3951,1198,1199,'OP_EqHearSpellInterruptCmd',600,1),(3952,1198,1199,'OP_EqHearSpellFizzleCmd',601,1),(3953,1198,1199,'OP_EqHearConsiderCmd',602,1),(3954,1198,1199,'OP_EqUpdateSubClassesCmd',603,1),(3955,1198,1199,'OP_EqCreateListBoxCmd',604,1),(3956,1198,1199,'OP_EqSetDebugPathPointsCmd',605,1),(3957,1198,1199,'OP_EqCannedEmoteCmd',607,1),(3958,1198,1199,'OP_EqStateCmd',608,1),(3959,1198,1199,'OP_EqPlaySoundCmd',609,1),(3960,1198,1199,'OP_EqPlaySound3DCmd',610,1),(3961,1198,1199,'OP_EqPlayVoiceCmd',611,1),(3962,1198,1199,'OP_EqHearDrowningCmd',612,1),(3963,1198,1199,'OP_EqHearDeathCmd',613,1),(3964,1198,1199,'OP_EqGroupMemberRemovedCmd',614,1),(3965,1198,1199,'OP_EqHearChainEffectCmd',615,1),(3966,1198,1199,'OP_EqReceiveOfferCmd',616,1),(3967,1198,1199,'OP_EqInspectPCResultsCmd',617,1),(3968,1198,1199,'OP_EqDrawablePathGraphCmd',618,1),(3969,1198,1199,'OP_EqDialogOpenCmd',619,1),(3970,1198,1199,'OP_EqDialogCloseCmd',620,1),(3971,1198,1199,'OP_EqFactionUpdateCmd',621,1),(3972,1198,1199,'OP_EqCollectionUpdateCmd',622,1),(3973,1198,1199,'OP_EqCollectionFilterCmd',623,1),(3974,1198,1199,'OP_EqCollectionItemCmd',624,1),(3975,1198,1199,'OP_EqQuestJournalUpdateCmd',625,1),(3976,1198,1199,'OP_EqMentoring',626,1),(3977,1198,1199,'OP_EqQuestJournalReplyCmd',627,1),(3978,1198,1199,'OP_EqQuestGroupCmd',628,1),(3979,1198,1199,'OP_EqUpdateMerchantCmd',629,1),(3980,1198,1199,'OP_EqUpdateStoreCmd',630,1),(3981,1198,1199,'OP_EqUpdatePlayerTradeCmd',631,1),(3982,1198,1199,'OP_EqHelpPathCmd',632,1),(3983,1198,1199,'OP_EqHelpPathClearCmd',633,1),(3984,1198,1199,'OP_EqUpdateBankCmd',634,1),(3985,1198,1199,'OP_EqExamineInfoCmd',635,1),(3986,1198,1199,'OP_EqCloseWindowCmd',636,1),(3987,1198,1199,'OP_EqUpdateLootCmd',637,1),(3988,1198,1199,'OP_EqJunctionListCmd',638,1),(3989,1198,1199,'OP_EqShowDeathWindowCmd',639,1),(3990,1198,1199,'OP_EqDisplaySpellFailCmd',640,1),(3991,1198,1199,'OP_EqSpellCastStartCmd',641,1),(3992,1198,1199,'OP_EqSpellCastEndCmd',642,1),(3993,1198,1199,'OP_EqResurrectedCmd',643,1),(3994,1198,1199,'OP_EqChoiceWinCmd',644,1),(3995,1198,1199,'OP_EqSetDefaultVerbCmd',645,1),(3996,1198,1199,'OP_EqInstructionWindowCmd',646,1),(3997,1198,1199,'OP_EqInstructionWindowCloseCmd',647,1),(3998,1198,1199,'OP_EqInstructionWindowGoalCmd',648,1),(3999,1198,1199,'OP_EqInstructionWindowTaskCmd',649,1),(4000,1198,1199,'OP_EqEnableGameEventCmd',650,1),(4001,1198,1199,'OP_EqShowWindowCmd',651,1),(4002,1198,1199,'OP_EqEnableWindowCmd',652,1),(4003,1198,1199,'OP_EqFlashWindowCmd',653,1),(4004,1198,1199,'OP_EqHearPlayFlavorCmd',655,1),(4005,1198,1199,'OP_EqUpdateSignWidgetCmd',656,1),(4006,1198,1199,'OP_EqDebugPVDCmd',657,1),(4007,1198,1199,'OP_EqShowBookCmd',658,1),(4008,1198,1199,'OP_EqQuestionnaireCmd',659,1),(4009,1198,1199,'OP_EqGetProbsCmd',661,1),(4010,1198,1199,'OP_EqHearHealCmd',662,1),(4011,1198,1199,'OP_EqChatChannelUpdateCmd',663,1),(4012,1198,1199,'OP_EqWhoChannelQueryReplyCmd',664,1),(4013,1198,1199,'OP_EqAvailWorldChannelsCmd',665,1),(4014,1198,1199,'OP_EqUpdateTargetCmd',666,1),(4015,1198,1199,'OP_BrokerSellList',667,1),(4016,1198,1199,'OP_EqConsignmentItemsCmd',668,1),(4017,1198,1199,'OP_EqStartBrokerCmd',670,1),(4018,1198,1199,'OP_EqMapExplorationCmd',671,1),(4019,1198,1199,'OP_EqStoreLogCmd',672,1),(4020,1198,1199,'OP_EqSpellMoveToRangeAndRetryCmd',673,1),(4021,1198,1199,'OP_EqUpdatePlayerMailCmd',674,1),(4022,1198,1199,'OP_GuildStatusUpdate',677,1),(4023,1198,1199,'OP_EqArenaResultsCmd',678,1),(4024,1198,1199,'OP_EqGuildBankEventActionCmd',679,1),(4025,1198,1199,'OP_EqGuildBankExamineInfoCmd',680,1),(4026,1198,1199,'OP_EqHearSpellNoLandCmd',681,1),(4027,1198,1199,'OP_Lottery',682,1),(4028,1198,1199,'OP_GuildRecruitingMemberInfo',683,1),(4029,1198,1199,'OP_GuildRecruiting',684,1),(4030,1198,1199,'OP_GuildRecruitingDetails',685,1),(4031,1198,1199,'OP_GuildRecruitingImage',686,1),(4032,1198,1199,'OP_TradeskillList',704,1),(4033,1198,1199,'OP_CharRenamed',688,1),(4034,1198,1199,'OP_UseAdornment',698,1),(4035,1198,1199,'OP_ExpPurchWindow',704,1),(4036,1198,1199,'OP_PointOfInterest',708,1),(4037,1198,1199,'OP_PointOfInterest2',709,1),(4038,1198,1199,'OP_TraitsList',710,1),(4039,1198,1199,'OP_CustomizeHouseDisplay',713,1),(4040,1198,1199,'OP_VoiceChatServer',714,1),(4041,1198,1199,'OP_SupplyDepot',718,1),(4042,1198,1199,'OP_EQHearThreatCmd',719,1),(4043,1198,1199,'OP_RecipeList',720,1),(4044,1198,1199,'OP_Research',721,1),(4045,1198,1199,'OP_CharacterCurrency',722,1),(4046,1198,1199,'OP_CharacterAchievements',723,1),(4047,1198,1199,'OP_AchievementUpdateMsg',724,1),(4048,1198,1199,'OP_EQHearDispellCmd',725,1),(4049,1198,1199,'OP_JournalQuestStoryline',726,1),(4050,1198,1199,'OP_DungeonPlayAsAvatarList',727,1),(4051,1198,1199,'OP_DungeonPlayAsAvatarSelected',728,1),(4052,1198,1199,'OP_MercHireWindow',729,1),(4053,1198,1199,'OP_MercUnknown',730,1),(4054,1198,1199,'OP_Unknown',747,1),(4055,0,0,'OP_BrokerAddBag',9999,1),(4056,839,844,'OP_BrokerAddBag',9999,1),(4057,908,927,'OP_BrokerAddBag',9999,1),(4058,1008,1011,'OP_BrokerAddBag',9999,1),(4059,1045,1086,'OP_BrokerAddBag',9999,1),(4060,1096,1096,'OP_BrokerAddBag',9999,1),(4062,0,0,'OP_CharacterCurrency',654,1),(4063,839,844,'OP_CharacterCurrency',654,1),(4064,908,927,'OP_CharacterCurrency',654,1),(4065,1008,1011,'OP_CharacterCurrency',654,1),(4066,1045,1086,'OP_CharacterCurrency',673,1),(4067,1096,1096,'OP_CharacterCurrency',676,1),(4068,0,0,'OP_CharacterPet',9999,1),(4069,839,844,'OP_CharacterPet',9999,1),(4070,908,927,'OP_CharacterPet',9999,1),(4071,1008,1011,'OP_CharacterPet',9999,1),(4072,1045,1086,'OP_CharacterPet',9999,1),(4073,1096,1096,'OP_CharacterPet',9999,1),(4075,0,0,'OP_TradeskillList',9999,1),(4076,839,844,'OP_TradeskillList',9999,1),(4077,908,927,'OP_TradeskillList',9999,1),(4078,1008,1011,'OP_TradeskillList',9999,1),(4079,1045,1086,'OP_TradeskillList',9999,1),(4083,1204,1205,'OP_LoginRequestMsg',0,1),(4084,1204,1205,'OP_LoginByNumRequestMsg',1,1),(4085,1204,1205,'OP_WSLoginRequestMsg',2,1),(4086,1204,1205,'OP_ESLoginRequestMsg',3,1),(4087,1204,1205,'OP_LoginReplyMsg',4,1),(4088,1204,1205,'OP_WSStatusReplyMsg',5,1),(4089,1204,1205,'OP_WorldStatusChangeMsg',6,1),(4090,1204,1205,'OP_AllWSDescRequestMsg',7,1),(4091,1204,1205,'OP_WorldListMsg',8,1),(4092,1204,1205,'OP_AllCharactersDescRequestMsg',9,1),(4093,1204,1205,'OP_AllCharactersDescReplyMsg',10,1),(4094,1204,1205,'OP_CreateCharacterRequestMsg',11,1),(4095,1204,1205,'OP_CreateCharacterReplyMsg',12,1),(4096,1204,1205,'OP_WSCreateCharacterRequestMsg',13,1),(4097,1204,1205,'OP_WSCreateCharacterReplyMsg',14,1),(4098,1204,1205,'OP_ReskinCharacterRequestMsg',15,1),(4099,1204,1205,'OP_DeleteCharacterRequestMsg',16,1),(4100,1204,1205,'OP_DeleteCharacterReplyMsg',17,1),(4101,1204,1205,'OP_PlayCharacterRequestMsg',18,1),(4102,1204,1205,'OP_PlayCharacterReplyMsg',19,1),(4103,1204,1205,'OP_ExpectClientAsCharacterReplyMs',22,1),(4104,1204,1205,'OP_ServerPlayCharacterRequestMsg',23,1),(4105,1204,1205,'OP_ServerPlayCharacterReplyMsg',24,1),(4106,1204,1205,'OP_ESInitMsg',25,1),(4107,1204,1205,'OP_ESReadyForClientsMsg',26,1),(4108,1204,1205,'OP_CreateZoneInstanceMsg',29,1),(4109,1204,1205,'OP_ZoneInstanceCreateReplyMsg',30,1),(4110,1204,1205,'OP_ZoneInstanceDestroyedMsg',31,1),(4111,1204,1205,'OP_ExpectClientAsCharacterRequest',32,1),(4112,1204,1205,'OP_ZoneInfoMsg',33,1),(4113,1204,1205,'OP_DoneLoadingZoneResourcesMsg',34,1),(4114,1204,1205,'OP_DoneSendingInitialEntitiesMsg',35,1),(4115,1204,1205,'OP_DoneLoadingEntityResourcesMsg',36,1),(4116,1204,1205,'OP_PredictionUpdateMsg',37,1),(4117,1204,1205,'OP_UpdatePositionMsg',39,1),(4118,1204,1205,'OP_SetRemoteCmdsMsg',41,1),(4119,1204,1205,'OP_RemoteCmdMsg',42,1),(4120,1204,1205,'OP_GameWorldTimeMsg',43,1),(4121,1204,1205,'OP_MOTDMsg',44,1),(4122,1204,1205,'OP_ZoneMOTDMsg',45,1),(4123,1204,1205,'OP_AvatarCreatedMsg',46,1),(4124,1204,1205,'OP_AvatarDestroyedMsg',47,1),(4125,1204,1205,'OP_RequestCampMsg',50,1),(4126,1204,1205,'OP_CampStartedMsg',51,1),(4127,1204,1205,'OP_CampAbortedMsg',52,1),(4128,1204,1205,'OP_WhoQueryRequestMsg',53,1),(4129,1204,1205,'OP_WhoQueryReplyMsg',54,1),(4130,1204,1205,'OP_MonitorReplyMsg',55,1),(4131,1204,1205,'OP_MonitorCharacterListMsg',56,1),(4132,1204,1205,'OP_MonitorCharacterListRequestMsg',57,1),(4133,1204,1205,'OP_ClientCmdMsg',58,1),(4134,1204,1205,'OP_DispatchESMsg',59,1),(4135,1204,1205,'OP_DispatchClientCmdMsg',60,1),(4136,1204,1205,'OP_UpdateTargetMsg',61,1),(4137,1204,1205,'OP_UpdateTargetLocMsg',62,1),(4138,1204,1205,'OP_UpdateCharacterSheetMsg',63,1),(4139,1204,1205,'OP_CharacterPet',64,1),(4140,1204,1205,'OP_CharacterMerc',65,1),(4141,1204,1205,'OP_UpdateSpellBookMsg',66,1),(4142,1204,1205,'OP_UpdateInventoryMsg',68,1),(4143,1204,1205,'OP_AfterInvSpellUpdate',69,1),(4144,1204,1205,'OP_UpdateRecipeBookMsg',70,1),(4145,1204,1205,'OP_RequestRecipeDetailsMsg',71,1),(4146,1204,1205,'OP_RecipeDetailsMsg',72,1),(4147,1204,1205,'OP_UpdateSkillBookMsg',73,1),(4148,1204,1205,'OP_UpdateSkillsMsg',74,1),(4149,1204,1205,'OP_UpdateOpportunityMsg',75,1),(4150,1204,1205,'OP_ChangeZoneMsg',77,1),(4151,1204,1205,'OP_ClientTeleportRequestMsg',78,1),(4152,1204,1205,'OP_TeleportWithinZoneMsg',79,1),(4153,1204,1205,'OP_TeleportWithinZoneNoReloadMsg',80,1),(4154,1204,1205,'OP_MigrateClientToZoneRequestMsg',81,1),(4155,1204,1205,'OP_MigrateClientToZoneReplyMsg',82,1),(4156,1204,1205,'OP_ReadyToZoneMsg',84,1),(4157,1204,1205,'OP_RemoveClientFromGroupMsg',85,1),(4158,1204,1205,'OP_RemoveGroupFromGroupMsg',86,1),(4159,1204,1205,'OP_MakeGroupLeaderMsg',87,1),(4160,1204,1205,'OP_GroupCreatedMsg',88,1),(4161,1204,1205,'OP_GroupDestroyedMsg',89,1),(4162,1204,1205,'OP_GroupMemberAddedMsg',90,1),(4163,1204,1205,'OP_GroupMemberRemovedMsg',91,1),(4164,1204,1205,'OP_GroupRemovedFromGroupMsg',92,1),(4165,1204,1205,'OP_GroupLeaderChangedMsg',93,1),(4166,1204,1205,'OP_GroupResendOOZDataMsg',94,1),(4167,1204,1205,'OP_GroupSettingsChangedMsg',95,1),(4168,1204,1205,'OP_OutOfZoneMemberDataMsg',96,1),(4169,1204,1205,'OP_SendLatestRequestMsg',97,1),(4170,1204,1205,'OP_ClearDataMsg',98,1),(4171,1204,1205,'OP_SetSocialMsg',99,1),(4172,1204,1205,'OP_ESStatusMsg',100,1),(4173,1204,1205,'OP_ESZoneInstanceStatusMsg',101,1),(4174,1204,1205,'OP_ZonesStatusRequestMsg',102,1),(4175,1204,1205,'OP_ZonesStatusMsg',103,1),(4176,1204,1205,'OP_ESWeatherRequestMsg',104,1),(4177,1204,1205,'OP_ESWeatherRequestEndMsg',105,1),(4178,1204,1205,'OP_DialogSelectMsg',109,1),(4179,1204,1205,'OP_DialogCloseMsg',110,1),(4180,1204,1205,'OP_RemoveSpellEffectMsg',111,1),(4181,1204,1205,'OP_RemoveConcentrationMsg',112,1),(4182,1204,1205,'OP_QuestJournalOpenMsg',113,1),(4183,1204,1205,'OP_QuestJournalInspectMsg',114,1),(4184,1204,1205,'OP_QuestJournalSetVisibleMsg',115,1),(4185,1204,1205,'OP_QuestJournalWaypointMsg',116,1),(4186,1204,1205,'OP_CreateGuildRequestMsg',119,1),(4187,1204,1205,'OP_CreateGuildReplyMsg',120,1),(4188,1204,1205,'OP_GuildsayMsg',121,1),(4189,1204,1205,'OP_FellowshipExpMsg',122,1),(4190,1204,1205,'OP_DeleteGuildMsg',123,1),(4191,1204,1205,'OP_GuildUpdateMsg',124,1),(4192,1204,1205,'OP_ConsignmentCloseStoreMsg',125,1),(4193,1204,1205,'OP_ConsignItemRequestMsg',126,1),(4194,1204,1205,'OP_ConsignItemResponseMsg',127,1),(4195,1204,1205,'OP_PurchaseConsignmentRequestMsg',128,1),(4196,1204,1205,'OP_LikeOption',135,1),(4197,1204,1205,'OP_PublishHouse',138,1),(4198,1204,1205,'OP_PlayerMadeInstacnesScreen',139,1),(4199,1204,1205,'OP_PlayerMadeInstances',140,1),(4200,1204,1205,'OP_HouseDeletedRemotelyMsg',141,1),(4201,1204,1205,'OP_UpdateHouseDataMsg',142,1),(4202,1204,1205,'OP_UpdateHouseAccessDataMsg',143,1),(4203,1204,1205,'OP_PlayerHouseBaseScreenMsg',144,1),(4204,1204,1205,'OP_PlayerHousePurchaseScreenMsg',145,1),(4205,1204,1205,'OP_PlayerHouseAccessUpdateMsg',146,1),(4206,1204,1205,'OP_PlayerHouseDisplayStatusMsg',147,1),(4207,1204,1205,'OP_PlayerHouseCloseUIMsg',148,1),(4208,1204,1205,'OP_BuyPlayerHouseMsg',149,1),(4209,1204,1205,'OP_BuyPlayerHouseTintMsg',150,1),(4210,1204,1205,'OP_CollectAllHouseItemsMsg',151,1),(4211,1204,1205,'OP_RelinquishHouseMsg',152,1),(4212,1204,1205,'OP_EnterHouseMsg',153,1),(4213,1204,1205,'OP_ExitHouseMsg',154,1),(4214,1204,1205,'OP_HouseDefaultAccessSetMsg',155,1),(4215,1204,1205,'OP_HouseAccessSetMsg',156,1),(4216,1204,1205,'OP_HouseAccessRemoveMsg',157,1),(4217,1204,1205,'OP_PayHouseUpkeepMsg',158,1),(4218,1204,1205,'OP_MoveableObjectPlacementCriteri',159,1),(4219,1204,1205,'OP_EnterMoveObjectModeMsg',160,1),(4220,1204,1205,'OP_PositionMoveableObject',161,1),(4221,1204,1205,'OP_CancelMoveObjectModeMsg',162,1),(4222,1204,1205,'OP_ShaderCustomizationMsg',163,1),(4223,1204,1205,'OP_ReplaceableSubMeshesMsg',164,1),(4224,1204,1205,'OP_HouseCustomizationScreenMsg',165,1),(4225,1204,1205,'OP_CustomizationPurchaseRequestMs',166,1),(4226,1204,1205,'OP_CustomizationSetRequestMsg',167,1),(4227,1204,1205,'OP_CustomizationReplyMsg',168,1),(4228,1204,1205,'OP_TintWidgetsMsg',169,1),(4229,1204,1205,'OP_ExamineConsignmentRequestMsg',170,1),(4230,1204,1205,'OP_ExamineConsignmentResponseMsg',171,1),(4231,1204,1205,'OP_UISettingsResponseMsg',172,1),(4232,1204,1205,'OP_UIResetMsg',173,1),(4233,1204,1205,'OP_KeymapLoadMsg',174,1),(4234,1204,1205,'OP_KeymapNoneMsg',175,1),(4235,1204,1205,'OP_KeymapDataMsg',176,1),(4236,1204,1205,'OP_KeymapSaveMsg',177,1),(4237,1204,1205,'OP_DispatchSpellCmdMsg',178,1),(4238,1204,1205,'OP_EntityVerbsRequestMsg',179,1),(4239,1204,1205,'OP_EntityVerbsReplyMsg',180,1),(4240,1204,1205,'OP_EntityVerbsVerbMsg',181,1),(4241,1204,1205,'OP_ChatRelationshipUpdateMsg',183,1),(4242,1204,1205,'OP_LootItemsRequestMsg',184,1),(4243,1204,1205,'OP_StoppedLootingMsg',185,1),(4244,1204,1205,'OP_SitMsg',186,1),(4245,1204,1205,'OP_StandMsg',187,1),(4246,1204,1205,'OP_SatMsg',188,1),(4247,1204,1205,'OP_StoodMsg',189,1),(4248,1204,1205,'OP_ClearForTakeOffMsg',190,1),(4249,1204,1205,'OP_ReadyForTakeOffMsg',191,1),(4250,1204,1205,'OP_ShowIllusionsMsg',192,1),(4251,1204,1205,'OP_HideIllusionsMsg',193,1),(4252,1204,1205,'OP_ExamineItemRequestMsg',194,1),(4253,1204,1205,'OP_ReadBookPageMsg',195,1),(4254,1204,1205,'OP_DefaultGroupOptionsRequestMsg',196,1),(4255,1204,1205,'OP_DefaultGroupOptionsMsg',197,1),(4256,1204,1205,'OP_GroupOptionsMsg',198,1),(4257,1204,1205,'OP_DisplayGroupOptionsScreenMsg',199,1),(4258,1204,1205,'OP_PetOptions',200,1),(4259,1204,1205,'OP_DisplayInnVisitScreenMsg',201,1),(4260,1204,1205,'OP_DumpSchedulerMsg',202,1),(4261,1204,1205,'OP_LSCheckAcctLockMsg',203,1),(4262,1204,1205,'OP_WSAcctLockStatusMsg',204,1),(4263,1204,1205,'OP_RequestHelpRepathMsg',205,1),(4264,1204,1205,'OP_RequestTargetLocMsg',206,1),(4265,1204,1205,'OP_UpdateMotdMsg',207,1),(4266,1204,1205,'OP_DestUpdateReq',209,1),(4267,1204,1205,'OP_PerformPlayerKnockbackMsg',212,1),(4268,1204,1205,'OP_PerformCameraShakeMsg',213,1),(4269,1204,1205,'OP_PopulateSkillMapsMsg',214,1),(4270,1204,1205,'OP_CancelledFeignMsg',215,1),(4271,1204,1205,'OP_SysClient',217,1),(4272,1204,1205,'OP_ShowCreateFromRecipeUIMsg',218,1),(4273,1204,1205,'OP_CancelCreateFromRecipeMsg',219,1),(4274,1204,1205,'OP_BeginItemCreationMsg',220,1),(4275,1204,1205,'OP_StopItemCreationMsg',221,1),(4276,1204,1205,'OP_ShowItemCreationProcessUIMsg',222,1),(4277,1204,1205,'OP_UpdateItemCreationProcessUIMsg',223,1),(4278,1204,1205,'OP_DisplayTSEventReactionMsg',224,1),(4279,1204,1205,'OP_ShowRecipeBookMsg',225,1),(4280,1204,1205,'OP_KnowledgebaseRequestMsg',226,1),(4281,1204,1205,'OP_KnowledgebaseResponseMsg',227,1),(4282,1204,1205,'OP_CSTicketHeaderRequestMsg',228,1),(4283,1204,1205,'OP_CSTicketInfoMsg',229,1),(4284,1204,1205,'OP_CSTicketCommentRequestMsg',230,1),(4285,1204,1205,'OP_CSTicketCommentResponseMsg',231,1),(4286,1204,1205,'OP_CSTicketCreateMsg',232,1),(4287,1204,1205,'OP_CSTicketAddCommentMsg',233,1),(4288,1204,1205,'OP_CSTicketDeleteMsg',234,1),(4289,1204,1205,'OP_CSTicketChangeNotificationMsg',235,1),(4290,1204,1205,'OP_WorldDataUpdateMsg',236,1),(4291,1204,1205,'OP_KnownLanguagesMsg',237,1),(4292,1204,1205,'OP_LsRequestClientCrashLogMsg',238,1),(4293,1204,1205,'OP_LsClientBaselogReplyMsg',239,1),(4294,1204,1205,'OP_LsClientCrashlogReplyMsg',240,1),(4295,1204,1205,'OP_LsClientAlertlogReplyMsg',241,1),(4296,1204,1205,'OP_LsClientVerifylogReplyMsg',242,1),(4297,1204,1205,'OP_ClientTeleportToLocationMsg',243,1),(4298,1204,1205,'OP_UpdateClientPredFlagsMsg',244,1),(4299,1204,1205,'OP_ChangeServerControlFlagMsg',245,1),(4300,1204,1205,'OP_CSToolsRequestMsg',246,1),(4301,1204,1205,'OP_CSToolsResponseMsg',247,1),(4302,1204,1205,'OP_AddSocialStructureStandingMsg',248,1),(4303,1204,1205,'OP_CreateBoatTransportsMsg',249,1),(4304,1204,1205,'OP_PositionBoatTransportMsg',250,1),(4305,1204,1205,'OP_MigrateBoatTransportMsg',251,1),(4306,1204,1205,'OP_MigrateBoatTransportReplyMsg',252,1),(4307,1204,1205,'OP_DisplayDebugNLLPointsMsg',253,1),(4308,1204,1205,'OP_ExamineInfoRequestMsg',254,1),(4309,1204,1205,'OP_QuickbarInitMsg',255,1),(4310,1204,1205,'OP_QuickbarUpdateMsg',256,1),(4311,1204,1205,'OP_MacroInitMsg',257,1),(4312,1204,1205,'OP_MacroUpdateMsg',258,1),(4313,1204,1205,'OP_QuestionnaireMsg',259,1),(4314,1204,1205,'OP_LevelChangedMsg',260,1),(4315,1204,1205,'OP_SpellGainedMsg',261,1),(4316,1204,1205,'OP_EncounterBrokenMsg',262,1),(4317,1204,1205,'OP_OnscreenMsgMsg',263,1),(4318,1204,1205,'OP_DisplayWarningMsg',264,1),(4319,1204,1205,'OP_ModifyGuildMsg',265,1),(4320,1204,1205,'OP_GuildEventMsg',266,1),(4321,1204,1205,'OP_GuildEventAddMsg',267,1),(4322,1204,1205,'OP_GuildEventActionMsg',268,1),(4323,1204,1205,'OP_GuildEventListMsg',269,1),(4324,1204,1205,'OP_RequestGuildEventDetailsMsg',270,1),(4325,1204,1205,'OP_GuildEventDetailsMsg',271,1),(4326,1204,1205,'OP_RequestGuildInfoMsg',272,1),(4327,1204,1205,'OP_GuildBankActionMsg',273,1),(4328,1204,1205,'OP_GuildBankActionResponseMsg',274,1),(4329,1204,1205,'OP_GuildBankItemDetailsRequestMsg',275,1),(4330,1204,1205,'OP_GuildBankItemDetailsResponseMs',276,1),(4331,1204,1205,'OP_GuildBankUpdateMsg',277,1),(4332,1204,1205,'OP_GuildBankEventListMsg',278,1),(4333,1204,1205,'OP_RequestGuildBankEventDetailsMs',279,1),(4334,1204,1205,'OP_RewardPackMsg',280,1),(4335,1204,1205,'OP_RenameGuildMsg',281,1),(4336,1204,1205,'OP_ZoneToFriendRequestMsg',282,1),(4337,1204,1205,'OP_ZoneToFriendReplyMsg',283,1),(4338,1204,1205,'OP_ChatCreateChannelMsg',284,1),(4339,1204,1205,'OP_ChatJoinChannelMsg',285,1),(4340,1204,1205,'OP_ChatWhoChannelMsg',286,1),(4341,1204,1205,'OP_ChatLeaveChannelMsg',287,1),(4342,1204,1205,'OP_ChatTellChannelMsg',288,1),(4343,1204,1205,'OP_ChatTellUserMsg',289,1),(4344,1204,1205,'OP_ChatToggleFriendMsg',290,1),(4345,1204,1205,'OP_BrokerAddBag',291,1),(4346,1204,1205,'OP_BrokerRemoveBag',292,1),(4347,1204,1205,'OP_ChatToggleIgnoreMsg',293,1),(4348,1204,1205,'OP_ChatSendFriendsMsg',294,1),(4349,1204,1205,'OP_ChatSendIgnoresMsg',295,1),(4350,1204,1205,'OP_QuestReward',319,1),(4351,1204,1205,'OP_ChatFiltersMsg',334,1),(4352,1204,1205,'OP_MailGetMessageMsg',337,1),(4353,1204,1205,'OP_MailSendMessageMsg',338,1),(4354,1204,1205,'OP_MailDeleteMessageMsg',339,1),(4355,1204,1205,'OP_MailGetHeadersReplyMsg',340,1),(4356,1204,1205,'OP_MailGetMessageReplyMsg',341,1),(4357,1204,1205,'OP_MailSendMessageReplyMsg',342,1),(4358,1204,1205,'OP_MailCommitSendMessageMsg',343,1),(4359,1204,1205,'OP_MailSendSystemMessageMsg',344,1),(4360,1204,1205,'OP_MailRemoveAttachFromMailMsg',345,1),(4361,1204,1205,'OP_WaypointRequestMsg',347,1),(4362,1204,1205,'OP_WaypointReplyMsg',348,1),(4363,1204,1205,'OP_WaypointSelectMsg',349,1),(4364,1204,1205,'OP_WaypointUpdateMsg',350,1),(4365,1204,1205,'OP_CharNameChangedMsg',351,1),(4366,1204,1205,'OP_ShowZoneTeleporterDestinations',352,1),(4367,1204,1205,'OP_SelectZoneTeleporterDestinatio',353,1),(4368,1204,1205,'OP_ReloadLocalizedTxtMsg',354,1),(4369,1204,1205,'OP_RequestGuildMembershipMsg',355,1),(4370,1204,1205,'OP_GuildMembershipResponseMsg',356,1),(4371,1204,1205,'OP_LeaveGuildNotifyMsg',357,1),(4372,1204,1205,'OP_JoinGuildNotifyMsg',358,1),(4373,1204,1205,'OP_AvatarUpdateMsg',359,1),(4374,1204,1205,'OP_BioUpdateMsg',361,1),(4375,1204,1205,'OP_InspectPlayerMsg',362,1),(4376,1204,1205,'OP_WSServerLockMsg',363,1),(4377,1204,1205,'OP_LSServerLockMsg',364,1),(4378,1204,1205,'OP_WSServerHideMsg',365,1),(4379,1204,1205,'OP_CsCategoryRequestMsg',366,1),(4380,1204,1205,'OP_CsCategoryResponseMsg',367,1),(4381,1204,1205,'OP_KnowledgeWindowSlotMappingMsg',368,1),(4382,1204,1205,'OP_AFKUpdateMsg',369,1),(4383,1204,1205,'OP_AnonUpdateMsg',370,1),(4384,1204,1205,'OP_UpdateActivePublicZonesMsg',371,1),(4385,1204,1205,'OP_UnknownNpcMsg',372,1),(4386,1204,1205,'OP_PromoFlagsDetailsMsg',373,1),(4387,1204,1205,'OP_ConsignViewCreateMsg',374,1),(4388,1204,1205,'OP_ConsignViewGetPageMsg',375,1),(4389,1204,1205,'OP_ConsignViewReleaseMsg',376,1),(4390,1204,1205,'OP_ConsignRemoveItemsMsg',377,1),(4391,1204,1205,'OP_UpdateDebugRadiiMsg',378,1),(4392,1204,1205,'OP_ReportMsg',379,1),(4393,1204,1205,'OP_UpdateRaidMsg',380,1),(4394,1204,1205,'OP_ConsignViewSortMsg',382,1),(4395,1204,1205,'OP_TitleUpdateMsg',383,1),(4396,1204,1205,'OP_ClientFellMsg',384,1),(4397,1204,1205,'OP_ClientInDeathRegionMsg',385,1),(4398,1204,1205,'OP_CampClientMsg',386,1),(4399,1204,1205,'OP_CSToolAccessResponseMsg',387,1),(4400,1204,1205,'OP_TrackingUpdateMsg',388,1),(4401,1204,1205,'OP_BeginTrackingMsg',389,1),(4402,1204,1205,'OP_StopTrackingMsg',390,1),(4403,1204,1205,'OP_GetAvatarAccessRequestForCSToo',392,1),(4404,1204,1205,'OP_AdvancementRequestMsg',393,1),(4405,1204,1205,'OP_MapFogDataInitMsg',394,1),(4406,1204,1205,'OP_MapFogDataUpdateMsg',395,1),(4407,1204,1205,'OP_CloseGroupInviteWindowMsg',396,1),(4408,1204,1205,'OP_UpdateGroupMemberDataMsg',397,1),(4409,1204,1205,'OP_WorldPingMsg',398,1),(4410,1204,1205,'OP_MoveLogUpdateMsg',389,1),(4411,1204,1205,'OP_OfferQuestMsg',400,1),(4412,1204,1205,'OP_WorldShutdownUpdateMsg',402,1),(4413,1204,1205,'OP_DisplayMailScreenMsg',403,1),(4414,1204,1205,'OP_ClientIdleBeginMsg',404,1),(4415,1204,1205,'OP_ClientIdleEndMsg',405,1),(4416,1204,1205,'OP_PurchaseConsignmentLoreCheckRe',406,1),(4417,1204,1205,'OP_NotifyApprenticeStoppedMentori',407,1),(4418,1204,1205,'OP_CorruptedClientMsg',408,1),(4419,1204,1205,'OP_WorldDataChangeMsg',409,1),(4420,1204,1205,'OP_MailEventNotificationMsg',410,1),(4421,1204,1205,'OP_RestartZoneMsg',411,1),(4422,1204,1205,'OP_FlightPathsMsg',412,1),(4423,1204,1205,'OP_CharacterLinkdeadMsg',413,1),(4424,1204,1205,'OP_CharTransferStartRequestMsg',414,1),(4425,1204,1205,'OP_CharTransferStartReplyMsg',415,1),(4426,1204,1205,'OP_CharTransferRequestMsg',416,1),(4427,1204,1205,'OP_CharTransferReplyMsg',417,1),(4428,1204,1205,'OP_CharTransferRollbackRequestMsg',418,1),(4429,1204,1205,'OP_CharTransferCommitRequestMsg',419,1),(4430,1204,1205,'OP_CharTransferRollbackReplyMsg',420,1),(4431,1204,1205,'OP_CharTransferCommitReplyMsg',421,1),(4432,1204,1205,'OP_GetCharacterSerializedRequestM',422,1),(4433,1204,1205,'OP_GetCharacterSerializedReplyMsg',423,1),(4434,1204,1205,'OP_CreateCharFromCBBRequestMsg',424,1),(4435,1204,1205,'OP_CreateCharFromCBBReplyMsg',425,1),(4436,1204,1205,'OP_HousingDataChangedMsg',426,1),(4437,1204,1205,'OP_HousingRestoreMsg',427,1),(4438,1204,1205,'OP_AuctionItem',428,1),(4439,1204,1205,'OP_AuctionItemReply',429,1),(4440,1204,1205,'OP_AuctionCoin',430,1),(4441,1204,1205,'OP_AuctionCoinReply',431,1),(4442,1204,1205,'OP_AuctionCharacter',432,1),(4443,1204,1205,'OP_AuctionCharacterReply',433,1),(4444,1204,1205,'OP_AuctionCommitMsg',434,1),(4445,1204,1205,'OP_AuctionAbortMsg',435,1),(4446,1204,1205,'OP_CharTransferValidateRequestMsg',436,1),(4447,1204,1205,'OP_CharTransferValidateReplyMsg',437,1),(4448,1204,1205,'OP_RaceRestrictionMsg',438,1),(4449,1204,1205,'OP_SetInstanceDisplayNameMsg',439,1),(4450,1204,1205,'OP_GetAuctionAssetIDMsg',440,1),(4451,1204,1205,'OP_GetAuctionAssetIDReplyMsg',441,1),(4452,1204,1205,'OP_ResendWorldChannelsMsg',442,1),(4453,1204,1205,'OP_DisplayExchangeScreenMsg',443,1),(4454,1204,1205,'OP_ArenaGameTypesMsg',444,1),(4455,1204,1205,'OP_AuditAuctionEventMsg',445,1),(4456,1204,1205,'OP_InviteRequestMsg',446,1),(4457,1204,1205,'OP_InviteResponseMsg',447,1),(4458,1204,1205,'OP_InviteTargetResponseMsg',448,1),(4459,1204,1205,'OP_InspectPlayerRequestMsg',449,1),(4460,1204,1205,'OP_DispatchMsg',450,1),(4461,1204,1205,'OP_DisplayEventMsg',451,1),(4462,1204,1205,'OP_PrePossessionMsg',452,1),(4463,1204,1205,'OP_PostPossessionMsg',453,1),(4464,1204,1205,'OP_ArenaCreate',455,1),(4465,1204,1205,'OP_ArenaList',456,1),(4466,1204,1205,'OP_ArenaWindow',464,1),(4467,1204,1205,'OP_HouseItemsList',482,1),(4468,1204,1205,'OP_CurrentPet',484,1),(4469,1204,1205,'OP_AdventureList',487,1),(4470,1204,1205,'OP_CancelSpellCast',488,1),(4471,1204,1205,'OP_UpdateTitleCmd',493,1),(4472,1204,1205,'OP_AttackAllowed',499,1),(4473,1204,1205,'OP_AttackNotAllowed',500,1),(4474,1204,1205,'OP_BagOptions',501,1),(4475,1204,1205,'OP_LFGGroupSearch',503,1),(4476,1204,1205,'OP_CharacterHousingList',506,1),(4477,1204,1205,'OP_DressingRoom',509,1),(4478,1204,1205,'OP_PlayLon',510,1),(4479,1204,1205,'OP_SkillInfoRequest',513,1),(4480,1204,1205,'OP_SkillInfoResponse',514,1),(4481,1204,1205,'OP_LFGUpdateMsg',517,1),(4482,1204,1205,'OP_BadLanguageFilter',518,1),(4483,1204,1205,'OP_VoiceChatChannel',519,1),(4484,1204,1205,'OP_MapRequest',520,1),(4485,1204,1205,'OP_MarketFundsUpdate',525,1),(4486,1204,1205,'OP_UIEvent',526,1),(4487,1204,1205,'OP_MarketAddFundsRequest',527,1),(4488,1204,1205,'OP_MarketAddFundsReply',528,1),(4489,1204,1205,'OP_MarketPurchase',530,1),(4490,1204,1205,'OP_MarketPlacePrices',531,1),(4491,1204,1205,'OP_MarketPlaceItems',534,1),(4492,1204,1205,'OP_RecipeBook',535,1),(4493,1204,1205,'OP_CreateCharacterDungeon',544,1),(4494,1204,1205,'OP_DungeonMakerEnter',545,1),(4495,1204,1205,'OP_DungeonMakerItemRequest',547,1),(4496,1204,1205,'OP_CharacterCreatedDungeons',548,1),(4497,1204,1205,'OP_DungeonMakerToolboxList',549,1),(4498,1204,1205,'OP_DungeonMakerUnknown',550,1),(4499,1204,1205,'OP_DungeonMakerUnknown1',551,1),(4500,1204,1205,'OP_PlayerPollPopup',553,1),(4501,1204,1205,'OP_PlayerPollAnswer',554,1),(4502,1204,1205,'OP_MentorPopup',555,1),(4503,1204,1205,'OP_LoadWelcomeWindow',557,1),(4504,1204,1205,'OP_OpenCharCust',558,1),(4505,1204,1205,'OP_SubmitCharCust',559,1),(4506,1204,1205,'OP_QueAllBgSolo',561,1),(4507,1204,1205,'OP_ZoneBgInstanceList',563,1),(4508,1204,1205,'OP_WorldTravelAvail',567,1),(4509,1204,1205,'OP_PaperdollImage',570,1),(4510,1204,1205,'OP_LoadCalendarEvents',571,1),(4511,1204,1205,'OP_VideoUploaded',572,1),(4512,1204,1205,'OP_SavageBarInitMsg',573,1),(4513,1204,1205,'OP_PetOptionsResponse',574,1),(4514,1204,1205,'OP_DungeonMakerItemResponse',575,1),(4515,1204,1205,'OP_CharacterMounts',577,1),(4516,1204,1205,'OP_EqBetaCopyRequest',587,1),(4517,1204,1205,'OP_EqHearChatCmd',588,1),(4518,1204,1205,'OP_EqDisplayTextCmd',589,1),(4519,1204,1205,'OP_EqCreateGhostCmd',590,1),(4520,1204,1205,'OP_EqCreateWidgetCmd',591,1),(4521,1204,1205,'OP_EqCreateSignWidgetCmd',592,1),(4522,1204,1205,'OP_EqDestroyGhostCmd',593,1),(4523,1204,1205,'OP_EqUpdateGhostCmd',594,1),(4524,1204,1205,'OP_EqSetControlGhostCmd',595,1),(4525,1204,1205,'OP_EqSetPOVGhostCmd',596,1),(4526,1204,1205,'OP_EqHearCombatCmd',597,1),(4527,1204,1205,'OP_EqHearSpellCastCmd',598,1),(4528,1204,1205,'OP_EQHearProcCmd',599,1),(4529,1204,1205,'OP_EQHearResEffectCmd',600,1),(4530,1204,1205,'OP_EqHearSpellInterruptCmd',601,1),(4531,1204,1205,'OP_EqHearSpellFizzleCmd',602,1),(4532,1204,1205,'OP_EqHearConsiderCmd',603,1),(4533,1204,1205,'OP_EqUpdateSubClassesCmd',604,1),(4534,1204,1205,'OP_EqCreateListBoxCmd',605,1),(4535,1204,1205,'OP_EqSetDebugPathPointsCmd',606,1),(4536,1204,1205,'OP_EqCannedEmoteCmd',608,1),(4537,1204,1205,'OP_EqStateCmd',609,1),(4538,1204,1205,'OP_EqPlaySoundCmd',610,1),(4539,1204,1205,'OP_EqPlaySound3DCmd',611,1),(4540,1204,1205,'OP_EqPlayVoiceCmd',612,1),(4541,1204,1205,'OP_EqHearDrowningCmd',613,1),(4542,1204,1205,'OP_EqHearDeathCmd',614,1),(4543,1204,1205,'OP_EqGroupMemberRemovedCmd',615,1),(4544,1204,1205,'OP_EqHearChainEffectCmd',616,1),(4545,1204,1205,'OP_EqReceiveOfferCmd',617,1),(4546,1204,1205,'OP_EqInspectPCResultsCmd',618,1),(4547,1204,1205,'OP_EqDrawablePathGraphCmd',619,1),(4548,1204,1205,'OP_EqDialogOpenCmd',620,1),(4549,1204,1205,'OP_EqDialogCloseCmd',621,1),(4550,1204,1205,'OP_EqFactionUpdateCmd',622,1),(4551,1204,1205,'OP_EqCollectionUpdateCmd',623,1),(4552,1204,1205,'OP_EqCollectionFilterCmd',624,1),(4553,1204,1205,'OP_EqCollectionItemCmd',625,1),(4554,1204,1205,'OP_EqQuestJournalUpdateCmd',626,1),(4555,1204,1205,'OP_EqMentoring',627,1),(4556,1204,1205,'OP_EqQuestJournalReplyCmd',628,1),(4557,1204,1205,'OP_EqQuestGroupCmd',629,1),(4558,1204,1205,'OP_EqUpdateMerchantCmd',630,1),(4559,1204,1205,'OP_EqUpdateStoreCmd',631,1),(4560,1204,1205,'OP_EqUpdatePlayerTradeCmd',632,1),(4561,1204,1205,'OP_EqHelpPathCmd',633,1),(4562,1204,1205,'OP_EqHelpPathClearCmd',634,1),(4563,1204,1205,'OP_EqUpdateBankCmd',635,1),(4564,1204,1205,'OP_EqExamineInfoCmd',636,1),(4565,1204,1205,'OP_EqCloseWindowCmd',637,1),(4566,1204,1205,'OP_EqUpdateLootCmd',638,1),(4567,1204,1205,'OP_EqJunctionListCmd',639,1),(4568,1204,1205,'OP_EqShowDeathWindowCmd',640,1),(4569,1204,1205,'OP_EqDisplaySpellFailCmd',641,1),(4570,1204,1205,'OP_EqSpellCastStartCmd',642,1),(4571,1204,1205,'OP_EqSpellCastEndCmd',643,1),(4572,1204,1205,'OP_EqResurrectedCmd',644,1),(4573,1204,1205,'OP_EqChoiceWinCmd',645,1),(4574,1204,1205,'OP_EqSetDefaultVerbCmd',646,1),(4575,1204,1205,'OP_EqInstructionWindowCmd',647,1),(4576,1204,1205,'OP_EqInstructionWindowCloseCmd',648,1),(4577,1204,1205,'OP_EqInstructionWindowGoalCmd',649,1),(4578,1204,1205,'OP_EqInstructionWindowTaskCmd',650,1),(4579,1204,1205,'OP_EqEnableGameEventCmd',651,1),(4580,1204,1205,'OP_EqShowWindowCmd',652,1),(4581,1204,1205,'OP_EqEnableWindowCmd',653,1),(4582,1204,1205,'OP_EqFlashWindowCmd',654,1),(4583,1204,1205,'OP_EqHearPlayFlavorCmd',656,1),(4584,1204,1205,'OP_EqUpdateSignWidgetCmd',657,1),(4585,1204,1205,'OP_EqDebugPVDCmd',658,1),(4586,1204,1205,'OP_EqShowBookCmd',659,1),(4587,1204,1205,'OP_EqQuestionnaireCmd',660,1),(4588,1204,1205,'OP_EqGetProbsCmd',662,1),(4589,1204,1205,'OP_EqHearHealCmd',663,1),(4590,1204,1205,'OP_EqChatChannelUpdateCmd',664,1),(4591,1204,1205,'OP_EqWhoChannelQueryReplyCmd',665,1),(4592,1204,1205,'OP_EqAvailWorldChannelsCmd',666,1),(4593,1204,1205,'OP_EqUpdateTargetCmd',667,1),(4594,1204,1205,'OP_BrokerSellList',668,1),(4595,1204,1205,'OP_EqConsignmentItemsCmd',669,1),(4596,1204,1205,'OP_EqStartBrokerCmd',671,1),(4597,1204,1205,'OP_EqMapExplorationCmd',672,1),(4598,1204,1205,'OP_EqStoreLogCmd',673,1),(4599,1204,1205,'OP_EqSpellMoveToRangeAndRetryCmd',674,1),(4600,1204,1205,'OP_EqUpdatePlayerMailCmd',675,1),(4601,1204,1205,'OP_GuildStatusUpdate',678,1),(4602,1204,1205,'OP_EqArenaResultsCmd',679,1),(4603,1204,1205,'OP_EqGuildBankEventActionCmd',680,1),(4604,1204,1205,'OP_EqGuildBankExamineInfoCmd',681,1),(4605,1204,1205,'OP_EqHearSpellNoLandCmd',682,1),(4606,1204,1205,'OP_Lottery',683,1),(4607,1204,1205,'OP_GuildRecruitingMemberInfo',684,1),(4608,1204,1205,'OP_GuildRecruiting',685,1),(4609,1204,1205,'OP_GuildRecruitingDetails',686,1),(4610,1204,1205,'OP_GuildRecruitingImage',687,1),(4611,1204,1205,'OP_TradeskillList',705,1),(4612,1204,1205,'OP_CharRenamed',689,1),(4613,1204,1205,'OP_UseAdornment',699,1),(4614,1204,1205,'OP_ExpPurchWindow',705,1),(4615,1204,1205,'OP_PointOfInterest',709,1),(4616,1204,1205,'OP_PointOfInterest2',710,1),(4617,1204,1205,'OP_TraitsList',711,1),(4618,1204,1205,'OP_CustomizeHouseDisplay',714,1),(4619,1204,1205,'OP_VoiceChatServer',715,1),(4620,1204,1205,'OP_SupplyDepot',719,1),(4621,1204,1205,'OP_EQHearThreatCmd',720,1),(4622,1204,1205,'OP_RecipeList',721,1),(4623,1204,1205,'OP_Research',722,1),(4624,1204,1205,'OP_CharacterCurrency',723,1),(4625,1204,1205,'OP_CharacterAchievements',724,1),(4626,1204,1205,'OP_AchievementUpdateMsg',725,1),(4627,1204,1205,'OP_EQHearDispellCmd',726,1),(4628,1204,1205,'OP_JournalQuestStoryline',727,1),(4629,1204,1205,'OP_DungeonPlayAsAvatarList',728,1),(4630,1204,1205,'OP_DungeonPlayAsAvatarSelected',729,1),(4631,1204,1205,'OP_MercHireWindow',730,1),(4632,1204,1205,'OP_MercUnknown',731,1),(4633,1204,1205,'OP_Unknown',748,1),(4634,1208,1208,'OP_LoginRequestMsg',0,1),(4635,1208,1208,'OP_LoginByNumRequestMsg',1,1),(4636,1208,1208,'OP_WSLoginRequestMsg',2,1),(4637,1208,1208,'OP_ESLoginRequestMsg',3,1),(4638,1208,1208,'OP_LoginReplyMsg',4,1),(4639,1208,1208,'OP_WSStatusReplyMsg',5,1),(4640,1208,1208,'OP_WorldStatusChangeMsg',6,1),(4641,1208,1208,'OP_AllWSDescRequestMsg',7,1),(4642,1208,1208,'OP_WorldListMsg',8,1),(4643,1208,1208,'OP_AllCharactersDescRequestMsg',9,1),(4644,1208,1208,'OP_AllCharactersDescReplyMsg',10,1),(4645,1208,1208,'OP_CreateCharacterRequestMsg',11,1),(4646,1208,1208,'OP_CreateCharacterReplyMsg',12,1),(4647,1208,1208,'OP_WSCreateCharacterRequestMsg',13,1),(4648,1208,1208,'OP_WSCreateCharacterReplyMsg',14,1),(4649,1208,1208,'OP_ReskinCharacterRequestMsg',15,1),(4650,1208,1208,'OP_DeleteCharacterRequestMsg',16,1),(4651,1208,1208,'OP_DeleteCharacterReplyMsg',17,1),(4652,1208,1208,'OP_PlayCharacterRequestMsg',18,1),(4653,1208,1208,'OP_PlayCharacterReplyMsg',19,1),(4654,1208,1208,'OP_ExpectClientAsCharacterReplyMs',22,1),(4655,1208,1208,'OP_ServerPlayCharacterRequestMsg',23,1),(4656,1208,1208,'OP_ServerPlayCharacterReplyMsg',24,1),(4657,1208,1208,'OP_ESInitMsg',25,1),(4658,1208,1208,'OP_ESReadyForClientsMsg',26,1),(4659,1208,1208,'OP_CreateZoneInstanceMsg',29,1),(4660,1208,1208,'OP_ZoneInstanceCreateReplyMsg',30,1),(4661,1208,1208,'OP_ZoneInstanceDestroyedMsg',31,1),(4662,1208,1208,'OP_ExpectClientAsCharacterRequest',32,1),(4663,1208,1208,'OP_ZoneInfoMsg',33,1),(4664,1208,1208,'OP_DoneLoadingZoneResourcesMsg',34,1),(4665,1208,1208,'OP_DoneSendingInitialEntitiesMsg',35,1),(4666,1208,1208,'OP_DoneLoadingEntityResourcesMsg',36,1),(4667,1208,1208,'OP_PredictionUpdateMsg',37,1),(4668,1208,1208,'OP_UpdatePositionMsg',39,1),(4669,1208,1208,'OP_SetRemoteCmdsMsg',41,1),(4670,1208,1208,'OP_RemoteCmdMsg',42,1),(4671,1208,1208,'OP_GameWorldTimeMsg',43,1),(4672,1208,1208,'OP_MOTDMsg',44,1),(4673,1208,1208,'OP_ZoneMOTDMsg',45,1),(4674,1208,1208,'OP_AvatarCreatedMsg',46,1),(4675,1208,1208,'OP_AvatarDestroyedMsg',47,1),(4676,1208,1208,'OP_RequestCampMsg',50,1),(4677,1208,1208,'OP_CampStartedMsg',51,1),(4678,1208,1208,'OP_CampAbortedMsg',52,1),(4679,1208,1208,'OP_WhoQueryRequestMsg',53,1),(4680,1208,1208,'OP_WhoQueryReplyMsg',54,1),(4681,1208,1208,'OP_MonitorReplyMsg',55,1),(4682,1208,1208,'OP_MonitorCharacterListMsg',56,1),(4683,1208,1208,'OP_MonitorCharacterListRequestMsg',57,1),(4684,1208,1208,'OP_ClientCmdMsg',58,1),(4685,1208,1208,'OP_DispatchESMsg',59,1),(4686,1208,1208,'OP_DispatchClientCmdMsg',60,1),(4687,1208,1208,'OP_UpdateTargetMsg',61,1),(4688,1208,1208,'OP_UpdateTargetLocMsg',62,1),(4689,1208,1208,'OP_UpdateCharacterSheetMsg',63,1),(4690,1208,1208,'OP_CharacterPet',64,1),(4691,1208,1208,'OP_CharacterMerc',65,1),(4692,1208,1208,'OP_UpdateSpellBookMsg',66,1),(4693,1208,1208,'OP_UpdateInventoryMsg',68,1),(4694,1208,1208,'OP_AfterInvSpellUpdate',69,1),(4695,1208,1208,'OP_UpdateRecipeBookMsg',70,1),(4696,1208,1208,'OP_RequestRecipeDetailsMsg',71,1),(4697,1208,1208,'OP_RecipeDetailsMsg',72,1),(4698,1208,1208,'OP_UpdateSkillBookMsg',73,1),(4699,1208,1208,'OP_UpdateSkillsMsg',74,1),(4700,1208,1208,'OP_UpdateOpportunityMsg',75,1),(4701,1208,1208,'OP_ChangeZoneMsg',77,1),(4702,1208,1208,'OP_ClientTeleportRequestMsg',78,1),(4703,1208,1208,'OP_TeleportWithinZoneMsg',79,1),(4704,1208,1208,'OP_TeleportWithinZoneNoReloadMsg',80,1),(4705,1208,1208,'OP_MigrateClientToZoneRequestMsg',81,1),(4706,1208,1208,'OP_MigrateClientToZoneReplyMsg',82,1),(4707,1208,1208,'OP_ReadyToZoneMsg',84,1),(4708,1208,1208,'OP_RemoveClientFromGroupMsg',85,1),(4709,1208,1208,'OP_RemoveGroupFromGroupMsg',86,1),(4710,1208,1208,'OP_MakeGroupLeaderMsg',87,1),(4711,1208,1208,'OP_GroupCreatedMsg',88,1),(4712,1208,1208,'OP_GroupDestroyedMsg',89,1),(4713,1208,1208,'OP_GroupMemberAddedMsg',90,1),(4714,1208,1208,'OP_GroupMemberRemovedMsg',91,1),(4715,1208,1208,'OP_GroupRemovedFromGroupMsg',92,1),(4716,1208,1208,'OP_GroupLeaderChangedMsg',93,1),(4717,1208,1208,'OP_GroupResendOOZDataMsg',94,1),(4718,1208,1208,'OP_GroupSettingsChangedMsg',95,1),(4719,1208,1208,'OP_OutOfZoneMemberDataMsg',96,1),(4720,1208,1208,'OP_SendLatestRequestMsg',97,1),(4721,1208,1208,'OP_ClearDataMsg',98,1),(4722,1208,1208,'OP_SetSocialMsg',99,1),(4723,1208,1208,'OP_ESStatusMsg',100,1),(4724,1208,1208,'OP_ESZoneInstanceStatusMsg',101,1),(4725,1208,1208,'OP_ZonesStatusRequestMsg',102,1),(4726,1208,1208,'OP_ZonesStatusMsg',103,1),(4727,1208,1208,'OP_ESWeatherRequestMsg',104,1),(4728,1208,1208,'OP_ESWeatherRequestEndMsg',105,1),(4729,1208,1208,'OP_DialogSelectMsg',109,1),(4730,1208,1208,'OP_DialogCloseMsg',110,1),(4731,1208,1208,'OP_RemoveSpellEffectMsg',111,1),(4732,1208,1208,'OP_RemoveConcentrationMsg',112,1),(4733,1208,1208,'OP_QuestJournalOpenMsg',113,1),(4734,1208,1208,'OP_QuestJournalInspectMsg',114,1),(4735,1208,1208,'OP_QuestJournalSetVisibleMsg',115,1),(4736,1208,1208,'OP_QuestJournalWaypointMsg',116,1),(4737,1208,1208,'OP_CreateGuildRequestMsg',119,1),(4738,1208,1208,'OP_CreateGuildReplyMsg',120,1),(4739,1208,1208,'OP_GuildsayMsg',121,1),(4740,1208,1208,'OP_FellowshipExpMsg',122,1),(4741,1208,1208,'OP_DeleteGuildMsg',123,1),(4742,1208,1208,'OP_GuildUpdateMsg',124,1),(4743,1208,1208,'OP_ConsignmentCloseStoreMsg',125,1),(4744,1208,1208,'OP_ConsignItemRequestMsg',126,1),(4745,1208,1208,'OP_ConsignItemResponseMsg',127,1),(4746,1208,1208,'OP_PurchaseConsignmentRequestMsg',128,1),(4747,1208,1208,'OP_LikeOption',135,1),(4748,1208,1208,'OP_PublishHouse',138,1),(4749,1208,1208,'OP_PlayerMadeInstacnesScreen',139,1),(4750,1208,1208,'OP_PlayerMadeInstances',140,1),(4751,1208,1208,'OP_HouseDeletedRemotelyMsg',141,1),(4752,1208,1208,'OP_UpdateHouseDataMsg',142,1),(4753,1208,1208,'OP_UpdateHouseAccessDataMsg',143,1),(4754,1208,1208,'OP_PlayerHouseBaseScreenMsg',144,1),(4755,1208,1208,'OP_PlayerHousePurchaseScreenMsg',145,1),(4756,1208,1208,'OP_PlayerHouseAccessUpdateMsg',146,1),(4757,1208,1208,'OP_PlayerHouseDisplayStatusMsg',147,1),(4758,1208,1208,'OP_PlayerHouseCloseUIMsg',148,1),(4759,1208,1208,'OP_BuyPlayerHouseMsg',149,1),(4760,1208,1208,'OP_BuyPlayerHouseTintMsg',150,1),(4761,1208,1208,'OP_CollectAllHouseItemsMsg',151,1),(4762,1208,1208,'OP_RelinquishHouseMsg',152,1),(4763,1208,1208,'OP_EnterHouseMsg',153,1),(4764,1208,1208,'OP_ExitHouseMsg',154,1),(4765,1208,1208,'OP_HouseDefaultAccessSetMsg',155,1),(4766,1208,1208,'OP_HouseAccessSetMsg',156,1),(4767,1208,1208,'OP_HouseAccessRemoveMsg',157,1),(4768,1208,1208,'OP_PayHouseUpkeepMsg',158,1),(4769,1208,1208,'OP_MoveableObjectPlacementCriteri',159,1),(4770,1208,1208,'OP_EnterMoveObjectModeMsg',160,1),(4771,1208,1208,'OP_PositionMoveableObject',161,1),(4772,1208,1208,'OP_CancelMoveObjectModeMsg',162,1),(4773,1208,1208,'OP_ShaderCustomizationMsg',163,1),(4774,1208,1208,'OP_ReplaceableSubMeshesMsg',164,1),(4775,1208,1208,'OP_HouseCustomizationScreenMsg',165,1),(4776,1208,1208,'OP_CustomizationPurchaseRequestMs',166,1),(4777,1208,1208,'OP_CustomizationSetRequestMsg',167,1),(4778,1208,1208,'OP_CustomizationReplyMsg',168,1),(4779,1208,1208,'OP_TintWidgetsMsg',169,1),(4780,1208,1208,'OP_ExamineConsignmentRequestMsg',170,1),(4781,1208,1208,'OP_ExamineConsignmentResponseMsg',171,1),(4782,1208,1208,'OP_UISettingsResponseMsg',172,1),(4783,1208,1208,'OP_UIResetMsg',173,1),(4784,1208,1208,'OP_KeymapLoadMsg',174,1),(4785,1208,1208,'OP_KeymapNoneMsg',175,1),(4786,1208,1208,'OP_KeymapDataMsg',176,1),(4787,1208,1208,'OP_KeymapSaveMsg',177,1),(4788,1208,1208,'OP_DispatchSpellCmdMsg',178,1),(4789,1208,1208,'OP_EntityVerbsRequestMsg',179,1),(4790,1208,1208,'OP_EntityVerbsReplyMsg',180,1),(4791,1208,1208,'OP_EntityVerbsVerbMsg',181,1),(4792,1208,1208,'OP_ChatRelationshipUpdateMsg',183,1),(4793,1208,1208,'OP_LootItemsRequestMsg',184,1),(4794,1208,1208,'OP_StoppedLootingMsg',185,1),(4795,1208,1208,'OP_SitMsg',186,1),(4796,1208,1208,'OP_StandMsg',187,1),(4797,1208,1208,'OP_SatMsg',188,1),(4798,1208,1208,'OP_StoodMsg',189,1),(4799,1208,1208,'OP_ClearForTakeOffMsg',190,1),(4800,1208,1208,'OP_ReadyForTakeOffMsg',191,1),(4801,1208,1208,'OP_ShowIllusionsMsg',192,1),(4802,1208,1208,'OP_HideIllusionsMsg',193,1),(4803,1208,1208,'OP_ExamineItemRequestMsg',194,1),(4804,1208,1208,'OP_ReadBookPageMsg',195,1),(4805,1208,1208,'OP_DefaultGroupOptionsRequestMsg',196,1),(4806,1208,1208,'OP_DefaultGroupOptionsMsg',197,1),(4807,1208,1208,'OP_GroupOptionsMsg',198,1),(4808,1208,1208,'OP_DisplayGroupOptionsScreenMsg',199,1),(4809,1208,1208,'OP_PetOptions',200,1),(4810,1208,1208,'OP_DisplayInnVisitScreenMsg',201,1),(4811,1208,1208,'OP_DumpSchedulerMsg',202,1),(4812,1208,1208,'OP_LSCheckAcctLockMsg',203,1),(4813,1208,1208,'OP_WSAcctLockStatusMsg',204,1),(4814,1208,1208,'OP_RequestHelpRepathMsg',205,1),(4815,1208,1208,'OP_RequestTargetLocMsg',206,1),(4816,1208,1208,'OP_UpdateMotdMsg',207,1),(4817,1208,1208,'OP_DestUpdateReq',209,1),(4818,1208,1208,'OP_PerformPlayerKnockbackMsg',212,1),(4819,1208,1208,'OP_PerformCameraShakeMsg',213,1),(4820,1208,1208,'OP_PopulateSkillMapsMsg',214,1),(4821,1208,1208,'OP_CancelledFeignMsg',215,1),(4822,1208,1208,'OP_SysClient',217,1),(4823,1208,1208,'OP_ShowCreateFromRecipeUIMsg',218,1),(4824,1208,1208,'OP_CancelCreateFromRecipeMsg',219,1),(4825,1208,1208,'OP_BeginItemCreationMsg',220,1),(4826,1208,1208,'OP_StopItemCreationMsg',221,1),(4827,1208,1208,'OP_ShowItemCreationProcessUIMsg',222,1),(4828,1208,1208,'OP_UpdateItemCreationProcessUIMsg',223,1),(4829,1208,1208,'OP_DisplayTSEventReactionMsg',224,1),(4830,1208,1208,'OP_ShowRecipeBookMsg',225,1),(4831,1208,1208,'OP_KnowledgebaseRequestMsg',226,1),(4832,1208,1208,'OP_KnowledgebaseResponseMsg',227,1),(4833,1208,1208,'OP_CSTicketHeaderRequestMsg',228,1),(4834,1208,1208,'OP_CSTicketInfoMsg',229,1),(4835,1208,1208,'OP_CSTicketCommentRequestMsg',230,1),(4836,1208,1208,'OP_CSTicketCommentResponseMsg',231,1),(4837,1208,1208,'OP_CSTicketCreateMsg',232,1),(4838,1208,1208,'OP_CSTicketAddCommentMsg',233,1),(4839,1208,1208,'OP_CSTicketDeleteMsg',234,1),(4840,1208,1208,'OP_CSTicketChangeNotificationMsg',235,1),(4841,1208,1208,'OP_WorldDataUpdateMsg',236,1),(4842,1208,1208,'OP_KnownLanguagesMsg',237,1),(4843,1208,1208,'OP_LsRequestClientCrashLogMsg',238,1),(4844,1208,1208,'OP_LsClientBaselogReplyMsg',239,1),(4845,1208,1208,'OP_LsClientCrashlogReplyMsg',240,1),(4846,1208,1208,'OP_LsClientAlertlogReplyMsg',241,1),(4847,1208,1208,'OP_LsClientVerifylogReplyMsg',242,1),(4848,1208,1208,'OP_ClientTeleportToLocationMsg',243,1),(4849,1208,1208,'OP_UpdateClientPredFlagsMsg',244,1),(4850,1208,1208,'OP_ChangeServerControlFlagMsg',245,1),(4851,1208,1208,'OP_CSToolsRequestMsg',246,1),(4852,1208,1208,'OP_CSToolsResponseMsg',247,1),(4853,1208,1208,'OP_AddSocialStructureStandingMsg',248,1),(4854,1208,1208,'OP_CreateBoatTransportsMsg',249,1),(4855,1208,1208,'OP_PositionBoatTransportMsg',250,1),(4856,1208,1208,'OP_MigrateBoatTransportMsg',251,1),(4857,1208,1208,'OP_MigrateBoatTransportReplyMsg',252,1),(4858,1208,1208,'OP_DisplayDebugNLLPointsMsg',253,1),(4859,1208,1208,'OP_ExamineInfoRequestMsg',254,1),(4860,1208,1208,'OP_QuickbarInitMsg',255,1),(4861,1208,1208,'OP_QuickbarUpdateMsg',256,1),(4862,1208,1208,'OP_MacroInitMsg',257,1),(4863,1208,1208,'OP_MacroUpdateMsg',258,1),(4864,1208,1208,'OP_QuestionnaireMsg',259,1),(4865,1208,1208,'OP_LevelChangedMsg',260,1),(4866,1208,1208,'OP_SpellGainedMsg',261,1),(4867,1208,1208,'OP_EncounterBrokenMsg',262,1),(4868,1208,1208,'OP_OnscreenMsgMsg',263,1),(4869,1208,1208,'OP_DisplayWarningMsg',264,1),(4870,1208,1208,'OP_ModifyGuildMsg',265,1),(4871,1208,1208,'OP_GuildEventMsg',266,1),(4872,1208,1208,'OP_GuildEventAddMsg',267,1),(4873,1208,1208,'OP_GuildEventActionMsg',268,1),(4874,1208,1208,'OP_GuildEventListMsg',269,1),(4875,1208,1208,'OP_RequestGuildEventDetailsMsg',270,1),(4876,1208,1208,'OP_GuildEventDetailsMsg',271,1),(4877,1208,1208,'OP_RequestGuildInfoMsg',272,1),(4878,1208,1208,'OP_GuildBankActionMsg',273,1),(4879,1208,1208,'OP_GuildBankActionResponseMsg',274,1),(4880,1208,1208,'OP_GuildBankItemDetailsRequestMsg',275,1),(4881,1208,1208,'OP_GuildBankItemDetailsResponseMs',276,1),(4882,1208,1208,'OP_GuildBankUpdateMsg',277,1),(4883,1208,1208,'OP_GuildBankEventListMsg',278,1),(4884,1208,1208,'OP_RequestGuildBankEventDetailsMs',279,1),(4885,1208,1208,'OP_RewardPackMsg',280,1),(4886,1208,1208,'OP_RenameGuildMsg',281,1),(4887,1208,1208,'OP_ZoneToFriendRequestMsg',282,1),(4888,1208,1208,'OP_ZoneToFriendReplyMsg',283,1),(4889,1208,1208,'OP_ChatCreateChannelMsg',284,1),(4890,1208,1208,'OP_ChatJoinChannelMsg',285,1),(4891,1208,1208,'OP_ChatWhoChannelMsg',286,1),(4892,1208,1208,'OP_ChatLeaveChannelMsg',287,1),(4893,1208,1208,'OP_ChatTellChannelMsg',288,1),(4894,1208,1208,'OP_ChatTellUserMsg',289,1),(4895,1208,1208,'OP_ChatToggleFriendMsg',290,1),(4896,1208,1208,'OP_BrokerAddBag',291,1),(4897,1208,1208,'OP_BrokerRemoveBag',292,1),(4898,1208,1208,'OP_ChatToggleIgnoreMsg',293,1),(4899,1208,1208,'OP_ChatSendFriendsMsg',294,1),(4900,1208,1208,'OP_ChatSendIgnoresMsg',295,1),(4901,1208,1208,'OP_QuestReward',319,1),(4902,1208,1208,'OP_ChatFiltersMsg',334,1),(4903,1208,1208,'OP_MailGetMessageMsg',337,1),(4904,1208,1208,'OP_MailSendMessageMsg',338,1),(4905,1208,1208,'OP_MailDeleteMessageMsg',339,1),(4906,1208,1208,'OP_MailGetHeadersReplyMsg',340,1),(4907,1208,1208,'OP_MailGetMessageReplyMsg',341,1),(4908,1208,1208,'OP_MailSendMessageReplyMsg',342,1),(4909,1208,1208,'OP_MailCommitSendMessageMsg',343,1),(4910,1208,1208,'OP_MailSendSystemMessageMsg',344,1),(4911,1208,1208,'OP_MailRemoveAttachFromMailMsg',345,1),(4912,1208,1208,'OP_WaypointRequestMsg',347,1),(4913,1208,1208,'OP_WaypointReplyMsg',348,1),(4914,1208,1208,'OP_WaypointSelectMsg',349,1),(4915,1208,1208,'OP_WaypointUpdateMsg',350,1),(4916,1208,1208,'OP_CharNameChangedMsg',351,1),(4917,1208,1208,'OP_ShowZoneTeleporterDestinations',352,1),(4918,1208,1208,'OP_SelectZoneTeleporterDestinatio',353,1),(4919,1208,1208,'OP_ReloadLocalizedTxtMsg',354,1),(4920,1208,1208,'OP_RequestGuildMembershipMsg',355,1),(4921,1208,1208,'OP_GuildMembershipResponseMsg',356,1),(4922,1208,1208,'OP_LeaveGuildNotifyMsg',357,1),(4923,1208,1208,'OP_JoinGuildNotifyMsg',358,1),(4924,1208,1208,'OP_AvatarUpdateMsg',359,1),(4925,1208,1208,'OP_BioUpdateMsg',361,1),(4926,1208,1208,'OP_InspectPlayerMsg',362,1),(4927,1208,1208,'OP_WSServerLockMsg',363,1),(4928,1208,1208,'OP_LSServerLockMsg',364,1),(4929,1208,1208,'OP_WSServerHideMsg',365,1),(4930,1208,1208,'OP_CsCategoryRequestMsg',366,1),(4931,1208,1208,'OP_CsCategoryResponseMsg',367,1),(4932,1208,1208,'OP_KnowledgeWindowSlotMappingMsg',368,1),(4933,1208,1208,'OP_AFKUpdateMsg',369,1),(4934,1208,1208,'OP_AnonUpdateMsg',370,1),(4935,1208,1208,'OP_UpdateActivePublicZonesMsg',371,1),(4936,1208,1208,'OP_UnknownNpcMsg',372,1),(4937,1208,1208,'OP_PromoFlagsDetailsMsg',373,1),(4938,1208,1208,'OP_ConsignViewCreateMsg',374,1),(4939,1208,1208,'OP_ConsignViewGetPageMsg',375,1),(4940,1208,1208,'OP_ConsignViewReleaseMsg',376,1),(4941,1208,1208,'OP_ConsignRemoveItemsMsg',377,1),(4942,1208,1208,'OP_UpdateDebugRadiiMsg',378,1),(4943,1208,1208,'OP_ReportMsg',379,1),(4944,1208,1208,'OP_UpdateRaidMsg',380,1),(4945,1208,1208,'OP_ConsignViewSortMsg',382,1),(4946,1208,1208,'OP_TitleUpdateMsg',383,1),(4947,1208,1208,'OP_ClientFellMsg',384,1),(4948,1208,1208,'OP_ClientInDeathRegionMsg',385,1),(4949,1208,1208,'OP_CampClientMsg',386,1),(4950,1208,1208,'OP_CSToolAccessResponseMsg',387,1),(4951,1208,1208,'OP_TrackingUpdateMsg',388,1),(4952,1208,1208,'OP_BeginTrackingMsg',389,1),(4953,1208,1208,'OP_StopTrackingMsg',390,1),(4954,1208,1208,'OP_GetAvatarAccessRequestForCSToo',392,1),(4955,1208,1208,'OP_AdvancementRequestMsg',393,1),(4956,1208,1208,'OP_MapFogDataInitMsg',394,1),(4957,1208,1208,'OP_MapFogDataUpdateMsg',395,1),(4958,1208,1208,'OP_CloseGroupInviteWindowMsg',396,1),(4959,1208,1208,'OP_UpdateGroupMemberDataMsg',397,1),(4960,1208,1208,'OP_WorldPingMsg',398,1),(4961,1208,1208,'OP_MoveLogUpdateMsg',389,1),(4962,1208,1208,'OP_OfferQuestMsg',400,1),(4963,1208,1208,'OP_WorldShutdownUpdateMsg',402,1),(4964,1208,1208,'OP_DisplayMailScreenMsg',403,1),(4965,1208,1208,'OP_ClientIdleBeginMsg',404,1),(4966,1208,1208,'OP_ClientIdleEndMsg',405,1),(4967,1208,1208,'OP_PurchaseConsignmentLoreCheckRe',406,1),(4968,1208,1208,'OP_NotifyApprenticeStoppedMentori',407,1),(4969,1208,1208,'OP_CorruptedClientMsg',408,1),(4970,1208,1208,'OP_WorldDataChangeMsg',409,1),(4971,1208,1208,'OP_MailEventNotificationMsg',410,1),(4972,1208,1208,'OP_RestartZoneMsg',411,1),(4973,1208,1208,'OP_FlightPathsMsg',412,1),(4974,1208,1208,'OP_CharacterLinkdeadMsg',413,1),(4975,1208,1208,'OP_CharTransferStartRequestMsg',414,1),(4976,1208,1208,'OP_CharTransferStartReplyMsg',415,1),(4977,1208,1208,'OP_CharTransferRequestMsg',416,1),(4978,1208,1208,'OP_CharTransferReplyMsg',417,1),(4979,1208,1208,'OP_CharTransferRollbackRequestMsg',418,1),(4980,1208,1208,'OP_CharTransferCommitRequestMsg',419,1),(4981,1208,1208,'OP_CharTransferRollbackReplyMsg',420,1),(4982,1208,1208,'OP_CharTransferCommitReplyMsg',421,1),(4983,1208,1208,'OP_GetCharacterSerializedRequestM',422,1),(4984,1208,1208,'OP_GetCharacterSerializedReplyMsg',423,1),(4985,1208,1208,'OP_CreateCharFromCBBRequestMsg',424,1),(4986,1208,1208,'OP_CreateCharFromCBBReplyMsg',425,1),(4987,1208,1208,'OP_HousingDataChangedMsg',426,1),(4988,1208,1208,'OP_HousingRestoreMsg',427,1),(4989,1208,1208,'OP_AuctionItem',428,1),(4990,1208,1208,'OP_AuctionItemReply',429,1),(4991,1208,1208,'OP_AuctionCoin',430,1),(4992,1208,1208,'OP_AuctionCoinReply',431,1),(4993,1208,1208,'OP_AuctionCharacter',432,1),(4994,1208,1208,'OP_AuctionCharacterReply',433,1),(4995,1208,1208,'OP_AuctionCommitMsg',434,1),(4996,1208,1208,'OP_AuctionAbortMsg',435,1),(4997,1208,1208,'OP_CharTransferValidateRequestMsg',436,1),(4998,1208,1208,'OP_CharTransferValidateReplyMsg',437,1),(4999,1208,1208,'OP_RaceRestrictionMsg',438,1),(5000,1208,1208,'OP_SetInstanceDisplayNameMsg',439,1),(5001,1208,1208,'OP_GetAuctionAssetIDMsg',440,1),(5002,1208,1208,'OP_GetAuctionAssetIDReplyMsg',441,1),(5003,1208,1208,'OP_ResendWorldChannelsMsg',442,1),(5004,1208,1208,'OP_DisplayExchangeScreenMsg',443,1),(5005,1208,1208,'OP_ArenaGameTypesMsg',444,1),(5006,1208,1208,'OP_AuditAuctionEventMsg',445,1),(5007,1208,1208,'OP_InviteRequestMsg',446,1),(5008,1208,1208,'OP_InviteResponseMsg',447,1),(5009,1208,1208,'OP_InviteTargetResponseMsg',448,1),(5010,1208,1208,'OP_InspectPlayerRequestMsg',449,1),(5011,1208,1208,'OP_DispatchMsg',450,1),(5012,1208,1208,'OP_DisplayEventMsg',451,1),(5013,1208,1208,'OP_PrePossessionMsg',452,1),(5014,1208,1208,'OP_PostPossessionMsg',453,1),(5015,1208,1208,'OP_ArenaCreate',455,1),(5016,1208,1208,'OP_ArenaList',456,1),(5017,1208,1208,'OP_ArenaWindow',464,1),(5018,1208,1208,'OP_HouseItemsList',482,1),(5019,1208,1208,'OP_CurrentPet',484,1),(5020,1208,1208,'OP_AdventureList',487,1),(5021,1208,1208,'OP_CancelSpellCast',488,1),(5022,1208,1208,'OP_UpdateTitleCmd',493,1),(5023,1208,1208,'OP_AttackAllowed',499,1),(5024,1208,1208,'OP_AttackNotAllowed',500,1),(5025,1208,1208,'OP_BagOptions',501,1),(5026,1208,1208,'OP_LFGGroupSearch',503,1),(5027,1208,1208,'OP_CharacterHousingList',506,1),(5028,1208,1208,'OP_DressingRoom',509,1),(5029,1208,1208,'OP_PlayLon',510,1),(5030,1208,1208,'OP_SkillInfoRequest',513,1),(5031,1208,1208,'OP_SkillInfoResponse',514,1),(5032,1208,1208,'OP_LFGUpdateMsg',517,1),(5033,1208,1208,'OP_BadLanguageFilter',518,1),(5034,1208,1208,'OP_VoiceChatChannel',519,1),(5035,1208,1208,'OP_MapRequest',520,1),(5036,1208,1208,'OP_MarketFundsUpdate',525,1),(5037,1208,1208,'OP_UIEvent',526,1),(5038,1208,1208,'OP_MarketAddFundsRequest',527,1),(5039,1208,1208,'OP_MarketAddFundsReply',528,1),(5040,1208,1208,'OP_MarketPurchase',530,1),(5041,1208,1208,'OP_MarketPlacePrices',531,1),(5042,1208,1208,'OP_MarketPlaceItems',534,1),(5043,1208,1208,'OP_RecipeBook',535,1),(5044,1208,1208,'OP_CreateCharacterDungeon',544,1),(5045,1208,1208,'OP_DungeonMakerEnter',545,1),(5046,1208,1208,'OP_DungeonMakerItemRequest',547,1),(5047,1208,1208,'OP_CharacterCreatedDungeons',548,1),(5048,1208,1208,'OP_DungeonMakerToolboxList',549,1),(5049,1208,1208,'OP_DungeonMakerUnknown',550,1),(5050,1208,1208,'OP_DungeonMakerUnknown1',551,1),(5051,1208,1208,'OP_PlayerPollPopup',553,1),(5052,1208,1208,'OP_PlayerPollAnswer',554,1),(5053,1208,1208,'OP_MentorPopup',555,1),(5054,1208,1208,'OP_LoadWelcomeWindow',557,1),(5055,1208,1208,'OP_OpenCharCust',558,1),(5056,1208,1208,'OP_SubmitCharCust',559,1),(5057,1208,1208,'OP_QueAllBgSolo',561,1),(5058,1208,1208,'OP_ZoneBgInstanceList',563,1),(5059,1208,1208,'OP_WorldTravelAvail',567,1),(5060,1208,1208,'OP_PaperdollImage',571,1),(5061,1208,1208,'OP_LoadCalendarEvents',572,1),(5062,1208,1208,'OP_VideoUploaded',573,1),(5063,1208,1208,'OP_SavageBarInitMsg',574,1),(5064,1208,1208,'OP_PetOptionsResponse',575,1),(5065,1208,1208,'OP_DungeonMakerItemResponse',576,1),(5066,1208,1208,'OP_CharacterMounts',578,1),(5067,1208,1208,'OP_EqBetaCopyRequest',588,1),(5068,1208,1208,'OP_EqHearChatCmd',589,1),(5069,1208,1208,'OP_EqDisplayTextCmd',590,1),(5070,1208,1208,'OP_EqCreateGhostCmd',591,1),(5071,1208,1208,'OP_EqCreateWidgetCmd',592,1),(5072,1208,1208,'OP_EqCreateSignWidgetCmd',593,1),(5073,1208,1208,'OP_EqDestroyGhostCmd',594,1),(5074,1208,1208,'OP_EqUpdateGhostCmd',595,1),(5075,1208,1208,'OP_EqSetControlGhostCmd',596,1),(5076,1208,1208,'OP_EqSetPOVGhostCmd',597,1),(5077,1208,1208,'OP_EqHearCombatCmd',598,1),(5078,1208,1208,'OP_EqHearSpellCastCmd',599,1),(5079,1208,1208,'OP_EQHearProcCmd',600,1),(5080,1208,1208,'OP_EQHearResEffectCmd',601,1),(5081,1208,1208,'OP_EqHearSpellInterruptCmd',602,1),(5082,1208,1208,'OP_EqHearSpellFizzleCmd',603,1),(5083,1208,1208,'OP_EqHearConsiderCmd',604,1),(5084,1208,1208,'OP_EqUpdateSubClassesCmd',605,1),(5085,1208,1208,'OP_EqCreateListBoxCmd',606,1),(5086,1208,1208,'OP_EqSetDebugPathPointsCmd',607,1),(5087,1208,1208,'OP_EqCannedEmoteCmd',609,1),(5088,1208,1208,'OP_EqStateCmd',610,1),(5089,1208,1208,'OP_EqPlaySoundCmd',611,1),(5090,1208,1208,'OP_EqPlaySound3DCmd',612,1),(5091,1208,1208,'OP_EqPlayVoiceCmd',613,1),(5092,1208,1208,'OP_EqHearDrowningCmd',614,1),(5093,1208,1208,'OP_EqHearDeathCmd',615,1),(5094,1208,1208,'OP_EqGroupMemberRemovedCmd',616,1),(5095,1208,1208,'OP_EqHearChainEffectCmd',617,1),(5096,1208,1208,'OP_EqReceiveOfferCmd',618,1),(5097,1208,1208,'OP_EqInspectPCResultsCmd',619,1),(5098,1208,1208,'OP_EqDrawablePathGraphCmd',620,1),(5099,1208,1208,'OP_EqDialogOpenCmd',621,1),(5100,1208,1208,'OP_EqDialogCloseCmd',622,1),(5101,1208,1208,'OP_EqFactionUpdateCmd',623,1),(5102,1208,1208,'OP_EqCollectionUpdateCmd',624,1),(5103,1208,1208,'OP_EqCollectionFilterCmd',625,1),(5104,1208,1208,'OP_EqCollectionItemCmd',626,1),(5105,1208,1208,'OP_EqQuestJournalUpdateCmd',627,1),(5106,1208,1208,'OP_EqMentoring',628,1),(5107,1208,1208,'OP_EqQuestJournalReplyCmd',629,1),(5108,1208,1208,'OP_EqQuestGroupCmd',630,1),(5109,1208,1208,'OP_EqUpdateMerchantCmd',631,1),(5110,1208,1208,'OP_EqUpdateStoreCmd',632,1),(5111,1208,1208,'OP_EqUpdatePlayerTradeCmd',633,1),(5112,1208,1208,'OP_EqHelpPathCmd',634,1),(5113,1208,1208,'OP_EqHelpPathClearCmd',635,1),(5114,1208,1208,'OP_EqUpdateBankCmd',636,1),(5115,1208,1208,'OP_EqExamineInfoCmd',637,1),(5116,1208,1208,'OP_EqCloseWindowCmd',638,1),(5117,1208,1208,'OP_EqUpdateLootCmd',639,1),(5118,1208,1208,'OP_EqJunctionListCmd',640,1),(5119,1208,1208,'OP_EqShowDeathWindowCmd',641,1),(5120,1208,1208,'OP_EqDisplaySpellFailCmd',642,1),(5121,1208,1208,'OP_EqSpellCastStartCmd',643,1),(5122,1208,1208,'OP_EqSpellCastEndCmd',644,1),(5123,1208,1208,'OP_EqResurrectedCmd',645,1),(5124,1208,1208,'OP_EqChoiceWinCmd',646,1),(5125,1208,1208,'OP_EqSetDefaultVerbCmd',647,1),(5126,1208,1208,'OP_EqInstructionWindowCmd',648,1),(5127,1208,1208,'OP_EqInstructionWindowCloseCmd',649,1),(5128,1208,1208,'OP_EqInstructionWindowGoalCmd',650,1),(5129,1208,1208,'OP_EqInstructionWindowTaskCmd',651,1),(5130,1208,1208,'OP_EqEnableGameEventCmd',652,1),(5131,1208,1208,'OP_EqShowWindowCmd',653,1),(5132,1208,1208,'OP_EqEnableWindowCmd',654,1),(5133,1208,1208,'OP_EqFlashWindowCmd',655,1),(5134,1208,1208,'OP_EqHearPlayFlavorCmd',657,1),(5135,1208,1208,'OP_EqUpdateSignWidgetCmd',658,1),(5136,1208,1208,'OP_EqDebugPVDCmd',659,1),(5137,1208,1208,'OP_EqShowBookCmd',660,1),(5138,1208,1208,'OP_EqQuestionnaireCmd',661,1),(5139,1208,1208,'OP_EqGetProbsCmd',663,1),(5140,1208,1208,'OP_EqHearHealCmd',664,1),(5141,1208,1208,'OP_EqChatChannelUpdateCmd',665,1),(5142,1208,1208,'OP_EqWhoChannelQueryReplyCmd',666,1),(5143,1208,1208,'OP_EqAvailWorldChannelsCmd',667,1),(5144,1208,1208,'OP_EqUpdateTargetCmd',668,1),(5145,1208,1208,'OP_BrokerSellList',669,1),(5146,1208,1208,'OP_EqConsignmentItemsCmd',670,1),(5147,1208,1208,'OP_EqStartBrokerCmd',672,1),(5148,1208,1208,'OP_EqMapExplorationCmd',673,1),(5149,1208,1208,'OP_EqStoreLogCmd',674,1),(5150,1208,1208,'OP_EqSpellMoveToRangeAndRetryCmd',675,1),(5151,1208,1208,'OP_EqUpdatePlayerMailCmd',676,1),(5152,1208,1208,'OP_GuildStatusUpdate',679,1),(5153,1208,1208,'OP_EqArenaResultsCmd',680,1),(5154,1208,1208,'OP_EqGuildBankEventActionCmd',681,1),(5155,1208,1208,'OP_EqGuildBankExamineInfoCmd',682,1),(5156,1208,1208,'OP_EqHearSpellNoLandCmd',683,1),(5157,1208,1208,'OP_Lottery',684,1),(5158,1208,1208,'OP_GuildRecruitingMemberInfo',685,1),(5159,1208,1208,'OP_GuildRecruiting',686,1),(5160,1208,1208,'OP_GuildRecruitingDetails',687,1),(5161,1208,1208,'OP_GuildRecruitingImage',688,1),(5162,1208,1208,'OP_TradeskillList',706,1),(5163,1208,1208,'OP_CharRenamed',690,1),(5164,1208,1208,'OP_UseAdornment',700,1),(5165,1208,1208,'OP_ExpPurchWindow',706,1),(5166,1208,1208,'OP_PointOfInterest',710,1),(5167,1208,1208,'OP_PointOfInterest2',711,1),(5168,1208,1208,'OP_TraitsList',712,1),(5169,1208,1208,'OP_CustomizeHouseDisplay',715,1),(5170,1208,1208,'OP_VoiceChatServer',716,1),(5171,1208,1208,'OP_SupplyDepot',720,1),(5172,1208,1208,'OP_EQHearThreatCmd',721,1),(5173,1208,1208,'OP_RecipeList',722,1),(5174,1208,1208,'OP_Research',723,1),(5175,1208,1208,'OP_CharacterCurrency',724,1),(5176,1208,1208,'OP_CharacterAchievements',725,1),(5177,1208,1208,'OP_AchievementUpdateMsg',726,1),(5178,1208,1208,'OP_EQHearDispellCmd',727,1),(5179,1208,1208,'OP_JournalQuestStoryline',728,1),(5180,1208,1208,'OP_DungeonPlayAsAvatarList',729,1),(5181,1208,1208,'OP_DungeonPlayAsAvatarSelected',730,1),(5182,1208,1208,'OP_MercHireWindow',731,1),(5183,1208,1208,'OP_MercUnknown',732,1),(5184,1208,1208,'OP_Unknown',748,1),(5657,1096,1096,'OP_RecipeBook',999,1),(5658,1045,1086,'OP_RecipeBook',999,1),(5659,1008,1011,'OP_RecipeBook',999,1),(5660,908,927,'OP_RecipeBook',999,1),(5661,839,844,'OP_RecipeBook',999,1),(5662,0,0,'OP_RecipeBook',999,1),(5663,57000,57002,'OP_LoginRequestMsg',0,1),(5664,57000,57002,'OP_LoginByNumRequestMsg',1,1),(5665,57000,57002,'OP_WSLoginRequestMsg',2,1),(5666,57000,57002,'OP_ESLoginRequestMsg',3,1),(5667,57000,57002,'OP_LoginReplyMsg',4,1),(5668,57000,57002,'OP_WSStatusReplyMsg',5,1),(5669,57000,57002,'OP_WorldStatusChangeMsg',6,1),(5670,57000,57002,'OP_AllWSDescRequestMsg',7,1),(5671,57000,57002,'OP_WorldListMsg',8,1),(5672,57000,57002,'OP_AllCharactersDescRequestMsg',9,1),(5673,57000,57002,'OP_AllCharactersDescReplyMsg',10,1),(5674,57000,57002,'OP_CreateCharacterRequestMsg',11,1),(5675,57000,57002,'OP_CreateCharacterReplyMsg',12,1),(5676,57000,57002,'OP_WSCreateCharacterRequestMsg',13,1),(5677,57000,57002,'OP_WSCreateCharacterReplyMsg',14,1),(5678,57000,57002,'OP_ReskinCharacterRequestMsg',15,1),(5679,57000,57002,'OP_DeleteCharacterRequestMsg',16,1),(5680,57000,57002,'OP_DeleteCharacterReplyMsg',17,1),(5681,57000,57002,'OP_PlayCharacterRequestMsg',18,1),(5682,57000,57002,'OP_PlayCharacterReplyMsg',19,1),(5683,57000,57002,'OP_ExpectClientAsCharacterReplyMs',22,1),(5684,57000,57002,'OP_ServerPlayCharacterRequestMsg',23,1),(5685,57000,57002,'OP_ServerPlayCharacterReplyMsg',24,1),(5686,57000,57002,'OP_ESInitMsg',25,1),(5687,57000,57002,'OP_ESReadyForClientsMsg',26,1),(5688,57000,57002,'OP_CreateZoneInstanceMsg',29,1),(5689,57000,57002,'OP_ZoneInstanceCreateReplyMsg',30,1),(5690,57000,57002,'OP_ZoneInstanceDestroyedMsg',31,1),(5691,57000,57002,'OP_ExpectClientAsCharacterRequest',32,1),(5692,57000,57002,'OP_ZoneInfoMsg',33,1),(5693,57000,57002,'OP_DoneLoadingZoneResourcesMsg',34,1),(5694,57000,57002,'OP_DoneSendingInitialEntitiesMsg',35,1),(5695,57000,57002,'OP_DoneLoadingEntityResourcesMsg',36,1),(5696,57000,57002,'OP_PredictionUpdateMsg',37,1),(5697,57000,57002,'OP_UpdatePositionMsg',39,1),(5698,57000,57002,'OP_SetRemoteCmdsMsg',41,1),(5699,57000,57002,'OP_RemoteCmdMsg',42,1),(5700,57000,57002,'OP_GameWorldTimeMsg',43,1),(5701,57000,57002,'OP_MOTDMsg',44,1),(5702,57000,57002,'OP_ZoneMOTDMsg',45,1),(5703,57000,57002,'OP_AvatarCreatedMsg',46,1),(5704,57000,57002,'OP_AvatarDestroyedMsg',47,1),(5705,57000,57002,'OP_RequestCampMsg',50,1),(5706,57000,57002,'OP_CampStartedMsg',51,1),(5707,57000,57002,'OP_CampAbortedMsg',52,1),(5708,57000,57002,'OP_WhoQueryRequestMsg',53,1),(5709,57000,57002,'OP_WhoQueryReplyMsg',54,1),(5710,57000,57002,'OP_MonitorReplyMsg',55,1),(5711,57000,57002,'OP_MonitorCharacterListMsg',56,1),(5712,57000,57002,'OP_MonitorCharacterListRequestMsg',57,1),(5713,57000,57002,'OP_ClientCmdMsg',58,1),(5714,57000,57002,'OP_DispatchESMsg',59,1),(5715,57000,57002,'OP_DispatchClientCmdMsg',60,1),(5716,57000,57002,'OP_UpdateTargetMsg',61,1),(5717,57000,57002,'OP_UpdateTargetLocMsg',62,1),(5718,57000,57002,'OP_UpdateCharacterSheetMsg',63,1),(5719,57000,57002,'OP_CharacterPet',64,1),(5720,57000,57002,'OP_CharacterMerc',65,1),(5721,57000,57002,'OP_UpdateSpellBookMsg',66,1),(5722,57000,57002,'OP_UpdateInventoryMsg',68,1),(5723,57000,57002,'OP_AfterInvSpellUpdate',69,1),(5724,57000,57002,'OP_UpdateRecipeBookMsg',70,1),(5725,57000,57002,'OP_RequestRecipeDetailsMsg',71,1),(5726,57000,57002,'OP_RecipeDetailsMsg',72,1),(5727,57000,57002,'OP_UpdateSkillBookMsg',73,1),(5728,57000,57002,'OP_UpdateSkillsMsg',74,1),(5729,57000,57002,'OP_UpdateOpportunityMsg',75,1),(5730,57000,57002,'OP_ChangeZoneMsg',77,1),(5731,57000,57002,'OP_ClientTeleportRequestMsg',78,1),(5732,57000,57002,'OP_TeleportWithinZoneMsg',79,1),(5733,57000,57002,'OP_TeleportWithinZoneNoReloadMsg',80,1),(5734,57000,57002,'OP_MigrateClientToZoneRequestMsg',81,1),(5735,57000,57002,'OP_MigrateClientToZoneReplyMsg',82,1),(5736,57000,57002,'OP_ReadyToZoneMsg',84,1),(5737,57000,57002,'OP_RemoveClientFromGroupMsg',85,1),(5738,57000,57002,'OP_RemoveGroupFromGroupMsg',86,1),(5739,57000,57002,'OP_MakeGroupLeaderMsg',87,1),(5740,57000,57002,'OP_GroupCreatedMsg',88,1),(5741,57000,57002,'OP_GroupDestroyedMsg',89,1),(5742,57000,57002,'OP_GroupMemberAddedMsg',90,1),(5743,57000,57002,'OP_GroupMemberRemovedMsg',91,1),(5744,57000,57002,'OP_GroupRemovedFromGroupMsg',92,1),(5745,57000,57002,'OP_GroupLeaderChangedMsg',93,1),(5746,57000,57002,'OP_GroupResendOOZDataMsg',94,1),(5747,57000,57002,'OP_GroupSettingsChangedMsg',95,1),(5748,57000,57002,'OP_OutOfZoneMemberDataMsg',96,1),(5749,57000,57002,'OP_SendLatestRequestMsg',97,1),(5750,57000,57002,'OP_ClearDataMsg',98,1),(5751,57000,57002,'OP_SetSocialMsg',99,1),(5752,57000,57002,'OP_ESStatusMsg',100,1),(5753,57000,57002,'OP_ESZoneInstanceStatusMsg',101,1),(5754,57000,57002,'OP_ZonesStatusRequestMsg',102,1),(5755,57000,57002,'OP_ZonesStatusMsg',103,1),(5756,57000,57002,'OP_ESWeatherRequestMsg',104,1),(5757,57000,57002,'OP_ESWeatherRequestEndMsg',105,1),(5758,57000,57002,'OP_DialogSelectMsg',109,1),(5759,57000,57002,'OP_DialogCloseMsg',110,1),(5760,57000,57002,'OP_RemoveSpellEffectMsg',111,1),(5761,57000,57002,'OP_RemoveConcentrationMsg',112,1),(5762,57000,57002,'OP_QuestJournalOpenMsg',113,1),(5763,57000,57002,'OP_QuestJournalInspectMsg',114,1),(5764,57000,57002,'OP_QuestJournalSetVisibleMsg',115,1),(5765,57000,57002,'OP_QuestJournalWaypointMsg',116,1),(5766,57000,57002,'OP_CreateGuildRequestMsg',119,1),(5767,57000,57002,'OP_CreateGuildReplyMsg',120,1),(5768,57000,57002,'OP_GuildsayMsg',121,1),(5769,57000,57002,'OP_FellowshipExpMsg',122,1),(5770,57000,57002,'OP_DeleteGuildMsg',123,1),(5771,57000,57002,'OP_GuildUpdateMsg',124,1),(5772,57000,57002,'OP_ConsignmentCloseStoreMsg',125,1),(5773,57000,57002,'OP_ConsignItemRequestMsg',126,1),(5774,57000,57002,'OP_ConsignItemResponseMsg',127,1),(5775,57000,57002,'OP_PurchaseConsignmentRequestMsg',128,1),(5776,57000,57002,'OP_LikeOption',135,1),(5777,57000,57002,'OP_PublishHouse',138,1),(5778,57000,57002,'OP_PlayerMadeInstacnesScreen',139,1),(5779,57000,57002,'OP_PlayerMadeInstances',140,1),(5780,57000,57002,'OP_HouseDeletedRemotelyMsg',141,1),(5781,57000,57002,'OP_UpdateHouseDataMsg',142,1),(5782,57000,57002,'OP_UpdateHouseAccessDataMsg',143,1),(5783,57000,57002,'OP_PlayerHouseBaseScreenMsg',144,1),(5784,57000,57002,'OP_PlayerHousePurchaseScreenMsg',145,1),(5785,57000,57002,'OP_PlayerHouseAccessUpdateMsg',146,1),(5786,57000,57002,'OP_PlayerHouseDisplayStatusMsg',147,1),(5787,57000,57002,'OP_PlayerHouseCloseUIMsg',148,1),(5788,57000,57002,'OP_BuyPlayerHouseMsg',149,1),(5789,57000,57002,'OP_BuyPlayerHouseTintMsg',150,1),(5790,57000,57002,'OP_CollectAllHouseItemsMsg',151,1),(5791,57000,57002,'OP_RelinquishHouseMsg',152,1),(5792,57000,57002,'OP_EnterHouseMsg',153,1),(5793,57000,57002,'OP_ExitHouseMsg',154,1),(5794,57000,57002,'OP_HouseDefaultAccessSetMsg',155,1),(5795,57000,57002,'OP_HouseAccessSetMsg',156,1),(5796,57000,57002,'OP_HouseAccessRemoveMsg',157,1),(5797,57000,57002,'OP_PayHouseUpkeepMsg',158,1),(5798,57000,57002,'OP_MoveableObjectPlacementCriteri',159,1),(5799,57000,57002,'OP_EnterMoveObjectModeMsg',160,1),(5800,57000,57002,'OP_PositionMoveableObject',161,1),(5801,57000,57002,'OP_CancelMoveObjectModeMsg',162,1),(5802,57000,57002,'OP_ShaderCustomizationMsg',163,1),(5803,57000,57002,'OP_ReplaceableSubMeshesMsg',164,1),(5804,57000,57002,'OP_HouseCustomizationScreenMsg',165,1),(5805,57000,57002,'OP_CustomizationPurchaseRequestMs',166,1),(5806,57000,57002,'OP_CustomizationSetRequestMsg',167,1),(5807,57000,57002,'OP_CustomizationReplyMsg',168,1),(5808,57000,57002,'OP_TintWidgetsMsg',169,1),(5809,57000,57002,'OP_ExamineConsignmentRequestMsg',170,1),(5810,57000,57002,'OP_ExamineConsignmentResponseMsg',171,1),(5811,57000,57002,'OP_UISettingsResponseMsg',172,1),(5812,57000,57002,'OP_UIResetMsg',173,1),(5813,57000,57002,'OP_KeymapLoadMsg',174,1),(5814,57000,57002,'OP_KeymapNoneMsg',175,1),(5815,57000,57002,'OP_KeymapDataMsg',176,1),(5816,57000,57002,'OP_KeymapSaveMsg',177,1),(5817,57000,57002,'OP_DispatchSpellCmdMsg',178,1),(5818,57000,57002,'OP_EntityVerbsRequestMsg',179,1),(5819,57000,57002,'OP_EntityVerbsReplyMsg',180,1),(5820,57000,57002,'OP_EntityVerbsVerbMsg',181,1),(5821,57000,57002,'OP_ChatRelationshipUpdateMsg',183,1),(5822,57000,57002,'OP_LootItemsRequestMsg',184,1),(5823,57000,57002,'OP_StoppedLootingMsg',185,1),(5824,57000,57002,'OP_SitMsg',186,1),(5825,57000,57002,'OP_StandMsg',187,1),(5826,57000,57002,'OP_SatMsg',188,1),(5827,57000,57002,'OP_StoodMsg',189,1),(5828,57000,57002,'OP_ClearForTakeOffMsg',190,1),(5829,57000,57002,'OP_ReadyForTakeOffMsg',191,1),(5830,57000,57002,'OP_ShowIllusionsMsg',192,1),(5831,57000,57002,'OP_HideIllusionsMsg',193,1),(5832,57000,57002,'OP_ExamineItemRequestMsg',194,1),(5833,57000,57002,'OP_ReadBookPageMsg',195,1),(5834,57000,57002,'OP_DefaultGroupOptionsRequestMsg',196,1),(5835,57000,57002,'OP_DefaultGroupOptionsMsg',197,1),(5836,57000,57002,'OP_GroupOptionsMsg',198,1),(5837,57000,57002,'OP_DisplayGroupOptionsScreenMsg',199,1),(5838,57000,57002,'OP_PetOptions',200,1),(5839,57000,57002,'OP_DisplayInnVisitScreenMsg',201,1),(5840,57000,57002,'OP_DumpSchedulerMsg',202,1),(5841,57000,57002,'OP_LSCheckAcctLockMsg',203,1),(5842,57000,57002,'OP_WSAcctLockStatusMsg',204,1),(5843,57000,57002,'OP_RequestHelpRepathMsg',205,1),(5844,57000,57002,'OP_RequestTargetLocMsg',206,1),(5845,57000,57002,'OP_UpdateMotdMsg',207,1),(5846,57000,57002,'OP_DestUpdateReq',209,1),(5847,57000,57002,'OP_PerformPlayerKnockbackMsg',212,1),(5848,57000,57002,'OP_PerformCameraShakeMsg',213,1),(5849,57000,57002,'OP_PopulateSkillMapsMsg',214,1),(5850,57000,57002,'OP_CancelledFeignMsg',215,1),(5851,57000,57002,'OP_SysClient',217,1),(5852,57000,57002,'OP_ShowCreateFromRecipeUIMsg',218,1),(5853,57000,57002,'OP_CancelCreateFromRecipeMsg',219,1),(5854,57000,57002,'OP_BeginItemCreationMsg',220,1),(5855,57000,57002,'OP_StopItemCreationMsg',221,1),(5856,57000,57002,'OP_ShowItemCreationProcessUIMsg',222,1),(5857,57000,57002,'OP_UpdateItemCreationProcessUIMsg',223,1),(5858,57000,57002,'OP_DisplayTSEventReactionMsg',224,1),(5859,57000,57002,'OP_ShowRecipeBookMsg',225,1),(5860,57000,57002,'OP_KnowledgebaseRequestMsg',226,1),(5861,57000,57002,'OP_KnowledgebaseResponseMsg',227,1),(5862,57000,57002,'OP_CSTicketHeaderRequestMsg',228,1),(5863,57000,57002,'OP_CSTicketInfoMsg',229,1),(5864,57000,57002,'OP_CSTicketCommentRequestMsg',230,1),(5865,57000,57002,'OP_CSTicketCommentResponseMsg',231,1),(5866,57000,57002,'OP_CSTicketCreateMsg',232,1),(5867,57000,57002,'OP_CSTicketAddCommentMsg',233,1),(5868,57000,57002,'OP_CSTicketDeleteMsg',234,1),(5869,57000,57002,'OP_CSTicketChangeNotificationMsg',235,1),(5870,57000,57002,'OP_WorldDataUpdateMsg',236,1),(5871,57000,57002,'OP_KnownLanguagesMsg',237,1),(5872,57000,57002,'OP_LsRequestClientCrashLogMsg',238,1),(5873,57000,57002,'OP_LsClientBaselogReplyMsg',239,1),(5874,57000,57002,'OP_LsClientCrashlogReplyMsg',240,1),(5875,57000,57002,'OP_LsClientAlertlogReplyMsg',241,1),(5876,57000,57002,'OP_LsClientVerifylogReplyMsg',242,1),(5877,57000,57002,'OP_ClientTeleportToLocationMsg',243,1),(5878,57000,57002,'OP_UpdateClientPredFlagsMsg',244,1),(5879,57000,57002,'OP_ChangeServerControlFlagMsg',245,1),(5880,57000,57002,'OP_CSToolsRequestMsg',246,1),(5881,57000,57002,'OP_CSToolsResponseMsg',247,1),(5882,57000,57002,'OP_AddSocialStructureStandingMsg',248,1),(5883,57000,57002,'OP_CreateBoatTransportsMsg',249,1),(5884,57000,57002,'OP_PositionBoatTransportMsg',250,1),(5885,57000,57002,'OP_MigrateBoatTransportMsg',251,1),(5886,57000,57002,'OP_MigrateBoatTransportReplyMsg',252,1),(5887,57000,57002,'OP_DisplayDebugNLLPointsMsg',253,1),(5888,57000,57002,'OP_ExamineInfoRequestMsg',254,1),(5889,57000,57002,'OP_QuickbarInitMsg',255,1),(5890,57000,57002,'OP_QuickbarUpdateMsg',256,1),(5891,57000,57002,'OP_MacroInitMsg',257,1),(5892,57000,57002,'OP_MacroUpdateMsg',258,1),(5893,57000,57002,'OP_QuestionnaireMsg',259,1),(5894,57000,57002,'OP_LevelChangedMsg',260,1),(5895,57000,57002,'OP_SpellGainedMsg',261,1),(5896,57000,57002,'OP_EncounterBrokenMsg',262,1),(5897,57000,57002,'OP_OnscreenMsgMsg',263,1),(5898,57000,57002,'OP_DisplayWarningMsg',264,1),(5899,57000,57002,'OP_ModifyGuildMsg',265,1),(5900,57000,57002,'OP_GuildEventMsg',266,1),(5901,57000,57002,'OP_GuildEventAddMsg',267,1),(5902,57000,57002,'OP_GuildEventActionMsg',268,1),(5903,57000,57002,'OP_GuildEventListMsg',269,1),(5904,57000,57002,'OP_RequestGuildEventDetailsMsg',270,1),(5905,57000,57002,'OP_GuildEventDetailsMsg',271,1),(5906,57000,57002,'OP_RequestGuildInfoMsg',272,1),(5907,57000,57002,'OP_GuildBankActionMsg',273,1),(5908,57000,57002,'OP_GuildBankActionResponseMsg',274,1),(5909,57000,57002,'OP_GuildBankItemDetailsRequestMsg',275,1),(5910,57000,57002,'OP_GuildBankItemDetailsResponseMs',276,1),(5911,57000,57002,'OP_GuildBankUpdateMsg',277,1),(5912,57000,57002,'OP_GuildBankEventListMsg',278,1),(5913,57000,57002,'OP_RequestGuildBankEventDetailsMs',279,1),(5914,57000,57002,'OP_RewardPackMsg',280,1),(5915,57000,57002,'OP_RenameGuildMsg',281,1),(5916,57000,57002,'OP_ZoneToFriendRequestMsg',282,1),(5917,57000,57002,'OP_ZoneToFriendReplyMsg',283,1),(5918,57000,57002,'OP_ChatCreateChannelMsg',284,1),(5919,57000,57002,'OP_ChatJoinChannelMsg',285,1),(5920,57000,57002,'OP_ChatWhoChannelMsg',286,1),(5921,57000,57002,'OP_ChatLeaveChannelMsg',287,1),(5922,57000,57002,'OP_ChatTellChannelMsg',288,1),(5923,57000,57002,'OP_ChatTellUserMsg',289,1),(5924,57000,57002,'OP_ChatToggleFriendMsg',290,1),(5925,57000,57002,'OP_BrokerAddBag',291,1),(5926,57000,57002,'OP_BrokerRemoveBag',292,1),(5927,57000,57002,'OP_ChatToggleIgnoreMsg',293,1),(5928,57000,57002,'OP_ChatSendFriendsMsg',294,1),(5929,57000,57002,'OP_ChatSendIgnoresMsg',295,1),(5930,57000,57002,'OP_QuestReward',319,1),(5931,57000,57002,'OP_ChatFiltersMsg',334,1),(5932,57000,57002,'OP_MailGetMessageMsg',337,1),(5933,57000,57002,'OP_MailSendMessageMsg',338,1),(5934,57000,57002,'OP_MailDeleteMessageMsg',339,1),(5935,57000,57002,'OP_MailGetHeadersReplyMsg',340,1),(5936,57000,57002,'OP_MailGetMessageReplyMsg',341,1),(5937,57000,57002,'OP_MailSendMessageReplyMsg',342,1),(5938,57000,57002,'OP_MailCommitSendMessageMsg',343,1),(5939,57000,57002,'OP_MailSendSystemMessageMsg',344,1),(5940,57000,57002,'OP_MailRemoveAttachFromMailMsg',345,1),(5941,57000,57002,'OP_WaypointRequestMsg',347,1),(5942,57000,57002,'OP_WaypointReplyMsg',348,1),(5943,57000,57002,'OP_WaypointSelectMsg',349,1),(5944,57000,57002,'OP_WaypointUpdateMsg',350,1),(5945,57000,57002,'OP_CharNameChangedMsg',351,1),(5946,57000,57002,'OP_ShowZoneTeleporterDestinations',352,1),(5947,57000,57002,'OP_SelectZoneTeleporterDestinatio',353,1),(5948,57000,57002,'OP_ReloadLocalizedTxtMsg',354,1),(5949,57000,57002,'OP_RequestGuildMembershipMsg',355,1),(5950,57000,57002,'OP_GuildMembershipResponseMsg',356,1),(5951,57000,57002,'OP_LeaveGuildNotifyMsg',357,1),(5952,57000,57002,'OP_JoinGuildNotifyMsg',358,1),(5953,57000,57002,'OP_AvatarUpdateMsg',359,1),(5954,57000,57002,'OP_BioUpdateMsg',361,1),(5955,57000,57002,'OP_InspectPlayerMsg',362,1),(5956,57000,57002,'OP_WSServerLockMsg',363,1),(5957,57000,57002,'OP_LSServerLockMsg',364,1),(5958,57000,57002,'OP_WSServerHideMsg',365,1),(5959,57000,57002,'OP_CsCategoryRequestMsg',366,1),(5960,57000,57002,'OP_CsCategoryResponseMsg',367,1),(5961,57000,57002,'OP_KnowledgeWindowSlotMappingMsg',368,1),(5962,57000,57002,'OP_AFKUpdateMsg',369,1),(5963,57000,57002,'OP_AnonUpdateMsg',370,1),(5964,57000,57002,'OP_UpdateActivePublicZonesMsg',371,1),(5965,57000,57002,'OP_UnknownNpcMsg',372,1),(5966,57000,57002,'OP_PromoFlagsDetailsMsg',373,1),(5967,57000,57002,'OP_ConsignViewCreateMsg',374,1),(5968,57000,57002,'OP_ConsignViewGetPageMsg',375,1),(5969,57000,57002,'OP_ConsignViewReleaseMsg',376,1),(5970,57000,57002,'OP_ConsignRemoveItemsMsg',377,1),(5971,57000,57002,'OP_UpdateDebugRadiiMsg',378,1),(5972,57000,57002,'OP_ReportMsg',379,1),(5973,57000,57002,'OP_UpdateRaidMsg',380,1),(5974,57000,57002,'OP_ConsignViewSortMsg',382,1),(5975,57000,57002,'OP_TitleUpdateMsg',383,1),(5976,57000,57002,'OP_ClientFellMsg',384,1),(5977,57000,57002,'OP_ClientInDeathRegionMsg',385,1),(5978,57000,57002,'OP_CampClientMsg',386,1),(5979,57000,57002,'OP_CSToolAccessResponseMsg',387,1),(5980,57000,57002,'OP_TrackingUpdateMsg',388,1),(5981,57000,57002,'OP_BeginTrackingMsg',389,1),(5982,57000,57002,'OP_StopTrackingMsg',390,1),(5983,57000,57002,'OP_GetAvatarAccessRequestForCSToo',392,1),(5984,57000,57002,'OP_AdvancementRequestMsg',393,1),(5985,57000,57002,'OP_MapFogDataInitMsg',394,1),(5986,57000,57002,'OP_MapFogDataUpdateMsg',395,1),(5987,57000,57002,'OP_CloseGroupInviteWindowMsg',396,1),(5988,57000,57002,'OP_UpdateGroupMemberDataMsg',397,1),(5989,57000,57002,'OP_WorldPingMsg',398,1),(5990,57000,57002,'OP_MoveLogUpdateMsg',389,1),(5991,57000,57002,'OP_OfferQuestMsg',400,1),(5992,57000,57002,'OP_WorldShutdownUpdateMsg',402,1),(5993,57000,57002,'OP_DisplayMailScreenMsg',403,1),(5994,57000,57002,'OP_ClientIdleBeginMsg',404,1),(5995,57000,57002,'OP_ClientIdleEndMsg',405,1),(5996,57000,57002,'OP_PurchaseConsignmentLoreCheckRe',406,1),(5997,57000,57002,'OP_NotifyApprenticeStoppedMentori',407,1),(5998,57000,57002,'OP_CorruptedClientMsg',408,1),(5999,57000,57002,'OP_WorldDataChangeMsg',409,1),(6000,57000,57002,'OP_MailEventNotificationMsg',410,1),(6001,57000,57002,'OP_RestartZoneMsg',411,1),(6002,57000,57002,'OP_FlightPathsMsg',412,1),(6003,57000,57002,'OP_CharacterLinkdeadMsg',413,1),(6004,57000,57002,'OP_CharTransferStartRequestMsg',414,1),(6005,57000,57002,'OP_CharTransferStartReplyMsg',415,1),(6006,57000,57002,'OP_CharTransferRequestMsg',416,1),(6007,57000,57002,'OP_CharTransferReplyMsg',417,1),(6008,57000,57002,'OP_CharTransferRollbackRequestMsg',418,1),(6009,57000,57002,'OP_CharTransferCommitRequestMsg',419,1),(6010,57000,57002,'OP_CharTransferRollbackReplyMsg',420,1),(6011,57000,57002,'OP_CharTransferCommitReplyMsg',421,1),(6012,57000,57002,'OP_GetCharacterSerializedRequestM',422,1),(6013,57000,57002,'OP_GetCharacterSerializedReplyMsg',423,1),(6014,57000,57002,'OP_CreateCharFromCBBRequestMsg',424,1),(6015,57000,57002,'OP_CreateCharFromCBBReplyMsg',425,1),(6016,57000,57002,'OP_HousingDataChangedMsg',426,1),(6017,57000,57002,'OP_HousingRestoreMsg',427,1),(6018,57000,57002,'OP_AuctionItem',428,1),(6019,57000,57002,'OP_AuctionItemReply',429,1),(6020,57000,57002,'OP_AuctionCoin',430,1),(6021,57000,57002,'OP_AuctionCoinReply',431,1),(6022,57000,57002,'OP_AuctionCharacter',432,1),(6023,57000,57002,'OP_AuctionCharacterReply',433,1),(6024,57000,57002,'OP_AuctionCommitMsg',434,1),(6025,57000,57002,'OP_AuctionAbortMsg',435,1),(6026,57000,57002,'OP_CharTransferValidateRequestMsg',436,1),(6027,57000,57002,'OP_CharTransferValidateReplyMsg',437,1),(6028,57000,57002,'OP_RaceRestrictionMsg',438,1),(6029,57000,57002,'OP_SetInstanceDisplayNameMsg',439,1),(6030,57000,57002,'OP_GetAuctionAssetIDMsg',440,1),(6031,57000,57002,'OP_GetAuctionAssetIDReplyMsg',441,1),(6032,57000,57002,'OP_ResendWorldChannelsMsg',442,1),(6033,57000,57002,'OP_DisplayExchangeScreenMsg',443,1),(6034,57000,57002,'OP_ArenaGameTypesMsg',444,1),(6035,57000,57002,'OP_AuditAuctionEventMsg',445,1),(6036,57000,57002,'OP_InviteRequestMsg',446,1),(6037,57000,57002,'OP_InviteResponseMsg',447,1),(6038,57000,57002,'OP_InviteTargetResponseMsg',448,1),(6039,57000,57002,'OP_InspectPlayerRequestMsg',449,1),(6040,57000,57002,'OP_DispatchMsg',450,1),(6041,57000,57002,'OP_DisplayEventMsg',451,1),(6042,57000,57002,'OP_PrePossessionMsg',452,1),(6043,57000,57002,'OP_PostPossessionMsg',453,1),(6044,57000,57002,'OP_ArenaCreate',455,1),(6045,57000,57002,'OP_ArenaList',456,1),(6046,57000,57002,'OP_ArenaWindow',464,1),(6047,57000,57002,'OP_HouseItemsList',482,1),(6048,57000,57002,'OP_CurrentPet',484,1),(6049,57000,57002,'OP_AdventureList',487,1),(6050,57000,57002,'OP_CancelSpellCast',488,1),(6051,57000,57002,'OP_UpdateTitleCmd',493,1),(6052,57000,57002,'OP_AttackAllowed',499,1),(6053,57000,57002,'OP_AttackNotAllowed',500,1),(6054,57000,57002,'OP_BagOptions',501,1),(6055,57000,57002,'OP_LFGGroupSearch',503,1),(6056,57000,57002,'OP_CharacterHousingList',506,1),(6057,57000,57002,'OP_DressingRoom',509,1),(6058,57000,57002,'OP_PlayLon',510,1),(6059,57000,57002,'OP_SkillInfoRequest',513,1),(6060,57000,57002,'OP_SkillInfoResponse',514,1),(6061,57000,57002,'OP_LFGUpdateMsg',517,1),(6062,57000,57002,'OP_BadLanguageFilter',518,1),(6063,57000,57002,'OP_VoiceChatChannel',519,1),(6064,57000,57002,'OP_MapRequest',520,1),(6065,57000,57002,'OP_MarketFundsUpdate',525,1),(6066,57000,57002,'OP_UIEvent',526,1),(6067,57000,57002,'OP_MarketAddFundsRequest',527,1),(6068,57000,57002,'OP_MarketAddFundsReply',528,1),(6069,57000,57002,'OP_MarketPurchase',530,1),(6070,57000,57002,'OP_MarketPlacePrices',531,1),(6071,57000,57002,'OP_MarketPlaceItems',534,1),(6072,57000,57002,'OP_RecipeBook',535,1),(6073,57000,57002,'OP_CreateCharacterDungeon',544,1),(6074,57000,57002,'OP_DungeonMakerEnter',545,1),(6075,57000,57002,'OP_DungeonMakerItemRequest',547,1),(6076,57000,57002,'OP_CharacterCreatedDungeons',548,1),(6077,57000,57002,'OP_DungeonMakerToolboxList',549,1),(6078,57000,57002,'OP_DungeonMakerUnknown',550,1),(6079,57000,57002,'OP_DungeonMakerUnknown1',551,1),(6080,57000,57002,'OP_PlayerPollPopup',553,1),(6081,57000,57002,'OP_PlayerPollAnswer',554,1),(6082,57000,57002,'OP_MentorPopup',555,1),(6083,57000,57002,'OP_LoadWelcomeWindow',557,1),(6084,57000,57002,'OP_OpenCharCust',558,1),(6085,57000,57002,'OP_SubmitCharCust',559,1),(6086,57000,57002,'OP_QueAllBgSolo',561,1),(6087,57000,57002,'OP_ZoneBgInstanceList',563,1),(6088,57000,57002,'OP_WorldTravelAvail',567,1),(6089,57000,57002,'OP_PaperdollImage',571,1),(6090,57000,57002,'OP_LoadCalendarEvents',572,1),(6091,57000,57002,'OP_VideoUploaded',573,1),(6092,57000,57002,'OP_SavageBarInitMsg',574,1),(6093,57000,57002,'OP_PetOptionsResponse',575,1),(6094,57000,57002,'OP_DungeonMakerItemResponse',576,1),(6095,57000,57002,'OP_CharacterMounts',578,1),(6096,57000,57002,'OP_EqBetaCopyRequest',588,1),(6097,57000,57002,'OP_EqHearChatCmd',589,1),(6098,57000,57002,'OP_EqDisplayTextCmd',590,1),(6099,57000,57002,'OP_EqCreateGhostCmd',591,1),(6100,57000,57002,'OP_EqCreateWidgetCmd',592,1),(6101,57000,57002,'OP_EqCreateSignWidgetCmd',593,1),(6102,57000,57002,'OP_EqDestroyGhostCmd',594,1),(6103,57000,57002,'OP_EqUpdateGhostCmd',595,1),(6104,57000,57002,'OP_EqSetControlGhostCmd',596,1),(6105,57000,57002,'OP_EqSetPOVGhostCmd',597,1),(6106,57000,57002,'OP_EqHearCombatCmd',598,1),(6107,57000,57002,'OP_EqHearSpellCastCmd',599,1),(6108,57000,57002,'OP_EQHearProcCmd',600,1),(6109,57000,57002,'OP_EQHearResEffectCmd',601,1),(6110,57000,57002,'OP_EqHearSpellInterruptCmd',602,1),(6111,57000,57002,'OP_EqHearSpellFizzleCmd',603,1),(6112,57000,57002,'OP_EqHearConsiderCmd',604,1),(6113,57000,57002,'OP_EqUpdateSubClassesCmd',605,1),(6114,57000,57002,'OP_EqCreateListBoxCmd',606,1),(6115,57000,57002,'OP_EqSetDebugPathPointsCmd',607,1),(6116,57000,57002,'OP_EqCannedEmoteCmd',609,1),(6117,57000,57002,'OP_EqStateCmd',610,1),(6118,57000,57002,'OP_EqPlaySoundCmd',611,1),(6119,57000,57002,'OP_EqPlaySound3DCmd',612,1),(6120,57000,57002,'OP_EqPlayVoiceCmd',613,1),(6121,57000,57002,'OP_EqHearDrowningCmd',614,1),(6122,57000,57002,'OP_EqHearDeathCmd',615,1),(6123,57000,57002,'OP_EqGroupMemberRemovedCmd',616,1),(6124,57000,57002,'OP_EqHearChainEffectCmd',617,1),(6125,57000,57002,'OP_EqReceiveOfferCmd',618,1),(6126,57000,57002,'OP_EqInspectPCResultsCmd',619,1),(6127,57000,57002,'OP_EqDrawablePathGraphCmd',620,1),(6128,57000,57002,'OP_EqDialogOpenCmd',621,1),(6129,57000,57002,'OP_EqDialogCloseCmd',622,1),(6130,57000,57002,'OP_EqFactionUpdateCmd',623,1),(6131,57000,57002,'OP_EqCollectionUpdateCmd',624,1),(6132,57000,57002,'OP_EqCollectionFilterCmd',625,1),(6133,57000,57002,'OP_EqCollectionItemCmd',626,1),(6134,57000,57002,'OP_EqQuestJournalUpdateCmd',627,1),(6135,57000,57002,'OP_EqMentoring',628,1),(6136,57000,57002,'OP_EqQuestJournalReplyCmd',629,1),(6137,57000,57002,'OP_EqQuestGroupCmd',630,1),(6138,57000,57002,'OP_EqUpdateMerchantCmd',631,1),(6139,57000,57002,'OP_EqUpdateStoreCmd',632,1),(6140,57000,57002,'OP_EqUpdatePlayerTradeCmd',633,1),(6141,57000,57002,'OP_EqHelpPathCmd',634,1),(6142,57000,57002,'OP_EqHelpPathClearCmd',635,1),(6143,57000,57002,'OP_EqUpdateBankCmd',636,1),(6144,57000,57002,'OP_EqExamineInfoCmd',637,1),(6145,57000,57002,'OP_EqCloseWindowCmd',638,1),(6146,57000,57002,'OP_EqUpdateLootCmd',639,1),(6147,57000,57002,'OP_EqJunctionListCmd',640,1),(6148,57000,57002,'OP_EqShowDeathWindowCmd',641,1),(6149,57000,57002,'OP_EqDisplaySpellFailCmd',642,1),(6150,57000,57002,'OP_EqSpellCastStartCmd',643,1),(6151,57000,57002,'OP_EqSpellCastEndCmd',644,1),(6152,57000,57002,'OP_EqResurrectedCmd',645,1),(6153,57000,57002,'OP_EqChoiceWinCmd',646,1),(6154,57000,57002,'OP_EqSetDefaultVerbCmd',647,1),(6155,57000,57002,'OP_EqInstructionWindowCmd',648,1),(6156,57000,57002,'OP_EqInstructionWindowCloseCmd',649,1),(6157,57000,57002,'OP_EqInstructionWindowGoalCmd',650,1),(6158,57000,57002,'OP_EqInstructionWindowTaskCmd',651,1),(6159,57000,57002,'OP_EqEnableGameEventCmd',652,1),(6160,57000,57002,'OP_EqShowWindowCmd',653,1),(6161,57000,57002,'OP_EqEnableWindowCmd',654,1),(6162,57000,57002,'OP_EqFlashWindowCmd',655,1),(6163,57000,57002,'OP_EqHearPlayFlavorCmd',657,1),(6164,57000,57002,'OP_EqUpdateSignWidgetCmd',658,1),(6165,57000,57002,'OP_EqDebugPVDCmd',659,1),(6166,57000,57002,'OP_EqShowBookCmd',660,1),(6167,57000,57002,'OP_EqQuestionnaireCmd',661,1),(6168,57000,57002,'OP_EqGetProbsCmd',663,1),(6169,57000,57002,'OP_EqHearHealCmd',664,1),(6170,57000,57002,'OP_EqChatChannelUpdateCmd',665,1),(6171,57000,57002,'OP_EqWhoChannelQueryReplyCmd',666,1),(6172,57000,57002,'OP_EqAvailWorldChannelsCmd',667,1),(6173,57000,57002,'OP_EqUpdateTargetCmd',668,1),(6174,57000,57002,'OP_BrokerSellList',669,1),(6175,57000,57002,'OP_EqConsignmentItemsCmd',670,1),(6176,57000,57002,'OP_EqStartBrokerCmd',672,1),(6177,57000,57002,'OP_EqMapExplorationCmd',673,1),(6178,57000,57002,'OP_EqStoreLogCmd',674,1),(6179,57000,57002,'OP_EqSpellMoveToRangeAndRetryCmd',675,1),(6180,57000,57002,'OP_EqUpdatePlayerMailCmd',676,1),(6181,57000,57002,'OP_GuildStatusUpdate',679,1),(6182,57000,57002,'OP_EqArenaResultsCmd',680,1),(6183,57000,57002,'OP_EqGuildBankEventActionCmd',681,1),(6184,57000,57002,'OP_EqGuildBankExamineInfoCmd',682,1),(6185,57000,57002,'OP_EqHearSpellNoLandCmd',683,1),(6186,57000,57002,'OP_Lottery',684,1),(6187,57000,57002,'OP_GuildRecruitingMemberInfo',685,1),(6188,57000,57002,'OP_GuildRecruiting',686,1),(6189,57000,57002,'OP_GuildRecruitingDetails',687,1),(6190,57000,57002,'OP_GuildRecruitingImage',688,1),(6191,57000,57002,'OP_TradeskillList',706,1),(6192,57000,57002,'OP_CharRenamed',690,1),(6193,57000,57002,'OP_UseAdornment',700,1),(6194,57000,57002,'OP_ExpPurchWindow',706,1),(6195,57000,57002,'OP_PointOfInterest',710,1),(6196,57000,57002,'OP_PointOfInterest2',711,1),(6197,57000,57002,'OP_TraitsList',712,1),(6198,57000,57002,'OP_CustomizeHouseDisplay',715,1),(6199,57000,57002,'OP_VoiceChatServer',716,1),(6200,57000,57002,'OP_SupplyDepot',720,1),(6201,57000,57002,'OP_EQHearThreatCmd',721,1),(6202,57000,57002,'OP_RecipeList',722,1),(6203,57000,57002,'OP_Research',723,1),(6204,57000,57002,'OP_CharacterCurrency',724,1),(6205,57000,57002,'OP_CharacterAchievements',725,1),(6206,57000,57002,'OP_AchievementUpdateMsg',726,1),(6207,57000,57002,'OP_EQHearDispellCmd',727,1),(6208,57000,57002,'OP_JournalQuestStoryline',728,1),(6209,57000,57002,'OP_DungeonPlayAsAvatarList',729,1),(6210,57000,57002,'OP_DungeonPlayAsAvatarSelected',730,1),(6211,57000,57002,'OP_MercHireWindow',731,1),(6212,57000,57002,'OP_MercUnknown',732,1),(6213,57000,57002,'OP_Unknown',748,1),(6686,57003,57014,'OP_LoginRequestMsg',0,1),(6687,57003,57014,'OP_LoginByNumRequestMsg',1,1),(6688,57003,57014,'OP_WSLoginRequestMsg',2,1),(6689,57003,57014,'OP_ESLoginRequestMsg',3,1),(6690,57003,57014,'OP_LoginReplyMsg',4,1),(6691,57003,57014,'OP_WSStatusReplyMsg',5,1),(6692,57003,57014,'OP_WorldStatusChangeMsg',6,1),(6693,57003,57014,'OP_AllWSDescRequestMsg',7,1),(6694,57003,57014,'OP_WorldListMsg',8,1),(6695,57003,57014,'OP_AllCharactersDescRequestMsg',9,1),(6696,57003,57014,'OP_AllCharactersDescReplyMsg',10,1),(6697,57003,57014,'OP_CreateCharacterRequestMsg',11,1),(6698,57003,57014,'OP_CreateCharacterReplyMsg',12,1),(6699,57003,57014,'OP_WSCreateCharacterRequestMsg',13,1),(6700,57003,57014,'OP_WSCreateCharacterReplyMsg',14,1),(6701,57003,57014,'OP_ReskinCharacterRequestMsg',15,1),(6702,57003,57014,'OP_DeleteCharacterRequestMsg',16,1),(6703,57003,57014,'OP_DeleteCharacterReplyMsg',17,1),(6704,57003,57014,'OP_PlayCharacterRequestMsg',18,1),(6705,57003,57014,'OP_PlayCharacterReplyMsg',19,1),(6706,57003,57014,'OP_ExpectClientAsCharacterReplyMs',22,1),(6707,57003,57014,'OP_ServerPlayCharacterRequestMsg',23,1),(6708,57003,57014,'OP_ServerPlayCharacterReplyMsg',24,1),(6709,57003,57014,'OP_ESInitMsg',25,1),(6710,57003,57014,'OP_ESReadyForClientsMsg',26,1),(6711,57003,57014,'OP_CreateZoneInstanceMsg',29,1),(6712,57003,57014,'OP_ZoneInstanceCreateReplyMsg',30,1),(6713,57003,57014,'OP_ZoneInstanceDestroyedMsg',31,1),(6714,57003,57014,'OP_ExpectClientAsCharacterRequest',32,1),(6715,57003,57014,'OP_ZoneInfoMsg',33,1),(6716,57003,57014,'OP_DoneLoadingZoneResourcesMsg',34,1),(6717,57003,57014,'OP_DoneSendingInitialEntitiesMsg',35,1),(6718,57003,57014,'OP_DoneLoadingEntityResourcesMsg',36,1),(6719,57003,57014,'OP_PredictionUpdateMsg',37,1),(6720,57003,57014,'OP_UpdatePositionMsg',39,1),(6721,57003,57014,'OP_SetRemoteCmdsMsg',41,1),(6722,57003,57014,'OP_RemoteCmdMsg',42,1),(6723,57003,57014,'OP_GameWorldTimeMsg',43,1),(6724,57003,57014,'OP_MOTDMsg',44,1),(6725,57003,57014,'OP_ZoneMOTDMsg',45,1),(6726,57003,57014,'OP_AvatarCreatedMsg',46,1),(6727,57003,57014,'OP_AvatarDestroyedMsg',47,1),(6728,57003,57014,'OP_RequestCampMsg',50,1),(6729,57003,57014,'OP_CampStartedMsg',51,1),(6730,57003,57014,'OP_CampAbortedMsg',52,1),(6731,57003,57014,'OP_WhoQueryRequestMsg',53,1),(6732,57003,57014,'OP_WhoQueryReplyMsg',54,1),(6733,57003,57014,'OP_MonitorReplyMsg',55,1),(6734,57003,57014,'OP_MonitorCharacterListMsg',56,1),(6735,57003,57014,'OP_MonitorCharacterListRequestMsg',57,1),(6736,57003,57014,'OP_ClientCmdMsg',58,1),(6737,57003,57014,'OP_DispatchESMsg',59,1),(6738,57003,57014,'OP_DispatchClientCmdMsg',60,1),(6739,57003,57014,'OP_UpdateTargetMsg',61,1),(6740,57003,57014,'OP_UpdateTargetLocMsg',62,1),(6741,57003,57014,'OP_UpdateCharacterSheetMsg',63,1),(6742,57003,57014,'OP_CharacterPet',64,1),(6743,57003,57014,'OP_CharacterMerc',65,1),(6744,57003,57014,'OP_UpdateSpellBookMsg',66,1),(6745,57003,57014,'OP_UpdateInventoryMsg',68,1),(6746,57003,57014,'OP_AfterInvSpellUpdate',69,1),(6747,57003,57014,'OP_UpdateRecipeBookMsg',70,1),(6748,57003,57014,'OP_RequestRecipeDetailsMsg',71,1),(6749,57003,57014,'OP_RecipeDetailsMsg',72,1),(6750,57003,57014,'OP_UpdateSkillBookMsg',73,1),(6751,57003,57014,'OP_UpdateSkillsMsg',74,1),(6752,57003,57014,'OP_UpdateOpportunityMsg',75,1),(6753,57003,57014,'OP_ChangeZoneMsg',77,1),(6754,57003,57014,'OP_ClientTeleportRequestMsg',78,1),(6755,57003,57014,'OP_TeleportWithinZoneMsg',79,1),(6756,57003,57014,'OP_TeleportWithinZoneNoReloadMsg',80,1),(6757,57003,57014,'OP_MigrateClientToZoneRequestMsg',81,1),(6758,57003,57014,'OP_MigrateClientToZoneReplyMsg',82,1),(6759,57003,57014,'OP_ReadyToZoneMsg',84,1),(6760,57003,57014,'OP_RemoveClientFromGroupMsg',85,1),(6761,57003,57014,'OP_RemoveGroupFromGroupMsg',86,1),(6762,57003,57014,'OP_MakeGroupLeaderMsg',87,1),(6763,57003,57014,'OP_GroupCreatedMsg',88,1),(6764,57003,57014,'OP_GroupDestroyedMsg',89,1),(6765,57003,57014,'OP_GroupMemberAddedMsg',90,1),(6766,57003,57014,'OP_GroupMemberRemovedMsg',91,1),(6767,57003,57014,'OP_GroupRemovedFromGroupMsg',92,1),(6768,57003,57014,'OP_GroupLeaderChangedMsg',93,1),(6769,57003,57014,'OP_GroupResendOOZDataMsg',94,1),(6770,57003,57014,'OP_GroupSettingsChangedMsg',95,1),(6771,57003,57014,'OP_OutOfZoneMemberDataMsg',96,1),(6772,57003,57014,'OP_SendLatestRequestMsg',97,1),(6773,57003,57014,'OP_ClearDataMsg',98,1),(6774,57003,57014,'OP_SetSocialMsg',99,1),(6775,57003,57014,'OP_ESStatusMsg',100,1),(6776,57003,57014,'OP_ESZoneInstanceStatusMsg',101,1),(6777,57003,57014,'OP_ZonesStatusRequestMsg',102,1),(6778,57003,57014,'OP_ZonesStatusMsg',103,1),(6779,57003,57014,'OP_ESWeatherRequestMsg',104,1),(6780,57003,57014,'OP_ESWeatherRequestEndMsg',105,1),(6781,57003,57014,'OP_DialogSelectMsg',109,1),(6782,57003,57014,'OP_DialogCloseMsg',110,1),(6783,57003,57014,'OP_RemoveSpellEffectMsg',111,1),(6784,57003,57014,'OP_RemoveConcentrationMsg',112,1),(6785,57003,57014,'OP_QuestJournalOpenMsg',113,1),(6786,57003,57014,'OP_QuestJournalInspectMsg',114,1),(6787,57003,57014,'OP_QuestJournalSetVisibleMsg',115,1),(6788,57003,57014,'OP_QuestJournalWaypointMsg',116,1),(6789,57003,57014,'OP_CreateGuildRequestMsg',119,1),(6790,57003,57014,'OP_CreateGuildReplyMsg',120,1),(6791,57003,57014,'OP_GuildsayMsg',121,1),(6792,57003,57014,'OP_FellowshipExpMsg',122,1),(6793,57003,57014,'OP_DeleteGuildMsg',123,1),(6794,57003,57014,'OP_GuildUpdateMsg',124,1),(6795,57003,57014,'OP_ConsignmentCloseStoreMsg',125,1),(6796,57003,57014,'OP_ConsignItemRequestMsg',126,1),(6797,57003,57014,'OP_ConsignItemResponseMsg',127,1),(6798,57003,57014,'OP_PurchaseConsignmentRequestMsg',128,1),(6799,57003,57014,'OP_LikeOption',135,1),(6800,57003,57014,'OP_PublishHouse',138,1),(6801,57003,57014,'OP_PlayerMadeInstacnesScreen',139,1),(6802,57003,57014,'OP_PlayerMadeInstances',140,1),(6803,57003,57014,'OP_HouseDeletedRemotelyMsg',142,1),(6804,57003,57014,'OP_UpdateHouseDataMsg',143,1),(6805,57003,57014,'OP_UpdateHouseAccessDataMsg',144,1),(6806,57003,57014,'OP_PlayerHouseBaseScreenMsg',145,1),(6807,57003,57014,'OP_PlayerHousePurchaseScreenMsg',146,1),(6808,57003,57014,'OP_PlayerHouseAccessUpdateMsg',147,1),(6809,57003,57014,'OP_PlayerHouseDisplayStatusMsg',148,1),(6810,57003,57014,'OP_PlayerHouseCloseUIMsg',149,1),(6811,57003,57014,'OP_BuyPlayerHouseMsg',150,1),(6812,57003,57014,'OP_BuyPlayerHouseTintMsg',151,1),(6813,57003,57014,'OP_CollectAllHouseItemsMsg',152,1),(6814,57003,57014,'OP_RelinquishHouseMsg',153,1),(6815,57003,57014,'OP_EnterHouseMsg',154,1),(6816,57003,57014,'OP_ExitHouseMsg',155,1),(6817,57003,57014,'OP_HouseDefaultAccessSetMsg',156,1),(6818,57003,57014,'OP_HouseAccessSetMsg',157,1),(6819,57003,57014,'OP_HouseAccessRemoveMsg',158,1),(6820,57003,57014,'OP_PayHouseUpkeepMsg',159,1),(6821,57003,57014,'OP_MoveableObjectPlacementCriteri',160,1),(6822,57003,57014,'OP_EnterMoveObjectModeMsg',161,1),(6823,57003,57014,'OP_PositionMoveableObject',162,1),(6824,57003,57014,'OP_CancelMoveObjectModeMsg',163,1),(6825,57003,57014,'OP_ShaderCustomizationMsg',164,1),(6826,57003,57014,'OP_ReplaceableSubMeshesMsg',165,1),(6827,57003,57014,'OP_HouseCustomizationScreenMsg',166,1),(6828,57003,57014,'OP_CustomizationPurchaseRequestMs',167,1),(6829,57003,57014,'OP_CustomizationSetRequestMsg',168,1),(6830,57003,57014,'OP_CustomizationReplyMsg',169,1),(6831,57003,57014,'OP_TintWidgetsMsg',170,1),(6832,57003,57014,'OP_ExamineConsignmentRequestMsg',171,1),(6833,57003,57014,'OP_ExamineConsignmentResponseMsg',172,1),(6834,57003,57014,'OP_UISettingsResponseMsg',173,1),(6835,57003,57014,'OP_UIResetMsg',174,1),(6836,57003,57014,'OP_KeymapLoadMsg',175,1),(6837,57003,57014,'OP_KeymapNoneMsg',176,1),(6838,57003,57014,'OP_KeymapDataMsg',177,1),(6839,57003,57014,'OP_KeymapSaveMsg',178,1),(6840,57003,57014,'OP_DispatchSpellCmdMsg',179,1),(6841,57003,57014,'OP_EntityVerbsRequestMsg',180,1),(6842,57003,57014,'OP_EntityVerbsReplyMsg',181,1),(6843,57003,57014,'OP_EntityVerbsVerbMsg',182,1),(6844,57003,57014,'OP_ChatRelationshipUpdateMsg',184,1),(6845,57003,57014,'OP_LootItemsRequestMsg',185,1),(6846,57003,57014,'OP_StoppedLootingMsg',186,1),(6847,57003,57014,'OP_SitMsg',187,1),(6848,57003,57014,'OP_StandMsg',188,1),(6849,57003,57014,'OP_SatMsg',189,1),(6850,57003,57014,'OP_StoodMsg',190,1),(6851,57003,57014,'OP_ClearForTakeOffMsg',191,1),(6852,57003,57014,'OP_ReadyForTakeOffMsg',192,1),(6853,57003,57014,'OP_ShowIllusionsMsg',193,1),(6854,57003,57014,'OP_HideIllusionsMsg',194,1),(6855,57003,57014,'OP_ExamineItemRequestMsg',195,1),(6856,57003,57014,'OP_ReadBookPageMsg',196,1),(6857,57003,57014,'OP_DefaultGroupOptionsRequestMsg',197,1),(6858,57003,57014,'OP_DefaultGroupOptionsMsg',198,1),(6859,57003,57014,'OP_GroupOptionsMsg',199,1),(6860,57003,57014,'OP_DisplayGroupOptionsScreenMsg',200,1),(6861,57003,57014,'OP_PetOptions',201,1),(6862,57003,57014,'OP_DisplayInnVisitScreenMsg',202,1),(6863,57003,57014,'OP_DumpSchedulerMsg',203,1),(6864,57003,57014,'OP_LSCheckAcctLockMsg',204,1),(6865,57003,57014,'OP_WSAcctLockStatusMsg',205,1),(6866,57003,57014,'OP_RequestHelpRepathMsg',206,1),(6867,57003,57014,'OP_RequestTargetLocMsg',207,1),(6868,57003,57014,'OP_UpdateMotdMsg',208,1),(6869,57003,57014,'OP_DestUpdateReq',210,1),(6870,57003,57014,'OP_PerformPlayerKnockbackMsg',213,1),(6871,57003,57014,'OP_PerformCameraShakeMsg',214,1),(6872,57003,57014,'OP_PopulateSkillMapsMsg',215,1),(6873,57003,57014,'OP_CancelledFeignMsg',216,1),(6874,57003,57014,'OP_SysClient',218,1),(6875,57003,57014,'OP_ShowCreateFromRecipeUIMsg',219,1),(6876,57003,57014,'OP_CancelCreateFromRecipeMsg',220,1),(6877,57003,57014,'OP_BeginItemCreationMsg',221,1),(6878,57003,57014,'OP_StopItemCreationMsg',222,1),(6879,57003,57014,'OP_ShowItemCreationProcessUIMsg',223,1),(6880,57003,57014,'OP_UpdateItemCreationProcessUIMsg',224,1),(6881,57003,57014,'OP_DisplayTSEventReactionMsg',225,1),(6882,57003,57014,'OP_ShowRecipeBookMsg',226,1),(6883,57003,57014,'OP_KnowledgebaseRequestMsg',227,1),(6884,57003,57014,'OP_KnowledgebaseResponseMsg',228,1),(6885,57003,57014,'OP_CSTicketHeaderRequestMsg',229,1),(6886,57003,57014,'OP_CSTicketInfoMsg',230,1),(6887,57003,57014,'OP_CSTicketCommentRequestMsg',231,1),(6888,57003,57014,'OP_CSTicketCommentResponseMsg',232,1),(6889,57003,57014,'OP_CSTicketCreateMsg',233,1),(6890,57003,57014,'OP_CSTicketAddCommentMsg',234,1),(6891,57003,57014,'OP_CSTicketDeleteMsg',235,1),(6892,57003,57014,'OP_CSTicketChangeNotificationMsg',236,1),(6893,57003,57014,'OP_WorldDataUpdateMsg',237,1),(6894,57003,57014,'OP_KnownLanguagesMsg',238,1),(6895,57003,57014,'OP_LsRequestClientCrashLogMsg',239,1),(6896,57003,57014,'OP_LsClientBaselogReplyMsg',240,1),(6897,57003,57014,'OP_LsClientCrashlogReplyMsg',241,1),(6898,57003,57014,'OP_LsClientAlertlogReplyMsg',242,1),(6899,57003,57014,'OP_LsClientVerifylogReplyMsg',243,1),(6900,57003,57014,'OP_ClientTeleportToLocationMsg',244,1),(6901,57003,57014,'OP_UpdateClientPredFlagsMsg',245,1),(6902,57003,57014,'OP_ChangeServerControlFlagMsg',246,1),(6903,57003,57014,'OP_CSToolsRequestMsg',247,1),(6904,57003,57014,'OP_CSToolsResponseMsg',248,1),(6905,57003,57014,'OP_AddSocialStructureStandingMsg',249,1),(6906,57003,57014,'OP_CreateBoatTransportsMsg',250,1),(6907,57003,57014,'OP_PositionBoatTransportMsg',251,1),(6908,57003,57014,'OP_MigrateBoatTransportMsg',252,1),(6909,57003,57014,'OP_MigrateBoatTransportReplyMsg',253,1),(6910,57003,57014,'OP_DisplayDebugNLLPointsMsg',254,1),(6911,57003,57014,'OP_ExamineInfoRequestMsg',255,1),(6912,57003,57014,'OP_QuickbarInitMsg',256,1),(6913,57003,57014,'OP_QuickbarUpdateMsg',257,1),(6914,57003,57014,'OP_MacroInitMsg',258,1),(6915,57003,57014,'OP_MacroUpdateMsg',259,1),(6916,57003,57014,'OP_QuestionnaireMsg',260,1),(6917,57003,57014,'OP_LevelChangedMsg',261,1),(6918,57003,57014,'OP_SpellGainedMsg',262,1),(6919,57003,57014,'OP_EncounterBrokenMsg',263,1),(6920,57003,57014,'OP_OnscreenMsgMsg',264,1),(6921,57003,57014,'OP_DisplayWarningMsg',265,1),(6922,57003,57014,'OP_ModifyGuildMsg',266,1),(6923,57003,57014,'OP_GuildEventMsg',267,1),(6924,57003,57014,'OP_GuildEventAddMsg',268,1),(6925,57003,57014,'OP_GuildEventActionMsg',269,1),(6926,57003,57014,'OP_GuildEventListMsg',270,1),(6927,57003,57014,'OP_RequestGuildEventDetailsMsg',271,1),(6928,57003,57014,'OP_GuildEventDetailsMsg',272,1),(6929,57003,57014,'OP_RequestGuildInfoMsg',273,1),(6930,57003,57014,'OP_GuildBankActionMsg',274,1),(6931,57003,57014,'OP_GuildBankActionResponseMsg',275,1),(6932,57003,57014,'OP_GuildBankItemDetailsRequestMsg',276,1),(6933,57003,57014,'OP_GuildBankItemDetailsResponseMs',277,1),(6934,57003,57014,'OP_GuildBankUpdateMsg',278,1),(6935,57003,57014,'OP_GuildBankEventListMsg',279,1),(6936,57003,57014,'OP_RequestGuildBankEventDetailsMs',280,1),(6937,57003,57014,'OP_RewardPackMsg',281,1),(6938,57003,57014,'OP_RenameGuildMsg',282,1),(6939,57003,57014,'OP_ZoneToFriendRequestMsg',283,1),(6940,57003,57014,'OP_ZoneToFriendReplyMsg',284,1),(6941,57003,57014,'OP_ChatCreateChannelMsg',285,1),(6942,57003,57014,'OP_ChatJoinChannelMsg',286,1),(6943,57003,57014,'OP_ChatWhoChannelMsg',287,1),(6944,57003,57014,'OP_ChatLeaveChannelMsg',288,1),(6945,57003,57014,'OP_ChatTellChannelMsg',289,1),(6946,57003,57014,'OP_ChatTellUserMsg',290,1),(6947,57003,57014,'OP_ChatToggleFriendMsg',291,1),(6948,57003,57014,'OP_BrokerAddBag',292,1),(6949,57003,57014,'OP_BrokerRemoveBag',293,1),(6950,57003,57014,'OP_ChatToggleIgnoreMsg',294,1),(6951,57003,57014,'OP_ChatSendFriendsMsg',295,1),(6952,57003,57014,'OP_ChatSendIgnoresMsg',296,1),(6953,57003,57014,'OP_QuestReward',320,1),(6954,57003,57014,'OP_ChatFiltersMsg',335,1),(6955,57003,57014,'OP_MailGetMessageMsg',338,1),(6956,57003,57014,'OP_MailSendMessageMsg',339,1),(6957,57003,57014,'OP_MailDeleteMessageMsg',340,1),(6958,57003,57014,'OP_MailGetHeadersReplyMsg',341,1),(6959,57003,57014,'OP_MailGetMessageReplyMsg',342,1),(6960,57003,57014,'OP_MailSendMessageReplyMsg',343,1),(6961,57003,57014,'OP_MailCommitSendMessageMsg',344,1),(6962,57003,57014,'OP_MailSendSystemMessageMsg',345,1),(6963,57003,57014,'OP_MailRemoveAttachFromMailMsg',346,1),(6964,57003,57014,'OP_WaypointRequestMsg',348,1),(6965,57003,57014,'OP_WaypointReplyMsg',349,1),(6966,57003,57014,'OP_WaypointSelectMsg',350,1),(6967,57003,57014,'OP_WaypointUpdateMsg',351,1),(6968,57003,57014,'OP_CharNameChangedMsg',352,1),(6969,57003,57014,'OP_ShowZoneTeleporterDestinations',353,1),(6970,57003,57014,'OP_SelectZoneTeleporterDestinatio',354,1),(6971,57003,57014,'OP_ReloadLocalizedTxtMsg',355,1),(6972,57003,57014,'OP_RequestGuildMembershipMsg',356,1),(6973,57003,57014,'OP_GuildMembershipResponseMsg',357,1),(6974,57003,57014,'OP_LeaveGuildNotifyMsg',358,1),(6975,57003,57014,'OP_JoinGuildNotifyMsg',359,1),(6976,57003,57014,'OP_AvatarUpdateMsg',360,1),(6977,57003,57014,'OP_BioUpdateMsg',362,1),(6978,57003,57014,'OP_InspectPlayerMsg',363,1),(6979,57003,57014,'OP_WSServerLockMsg',364,1),(6980,57003,57014,'OP_LSServerLockMsg',365,1),(6981,57003,57014,'OP_WSServerHideMsg',366,1),(6982,57003,57014,'OP_CsCategoryRequestMsg',367,1),(6983,57003,57014,'OP_CsCategoryResponseMsg',368,1),(6984,57003,57014,'OP_KnowledgeWindowSlotMappingMsg',369,1),(6985,57003,57014,'OP_AFKUpdateMsg',370,1),(6986,57003,57014,'OP_AnonUpdateMsg',371,1),(6987,57003,57014,'OP_UpdateActivePublicZonesMsg',372,1),(6988,57003,57014,'OP_UnknownNpcMsg',373,1),(6989,57003,57014,'OP_PromoFlagsDetailsMsg',374,1),(6990,57003,57014,'OP_ConsignViewCreateMsg',375,1),(6991,57003,57014,'OP_ConsignViewGetPageMsg',376,1),(6992,57003,57014,'OP_ConsignViewReleaseMsg',377,1),(6993,57003,57014,'OP_ConsignRemoveItemsMsg',378,1),(6994,57003,57014,'OP_UpdateDebugRadiiMsg',379,1),(6995,57003,57014,'OP_ReportMsg',380,1),(6996,57003,57014,'OP_UpdateRaidMsg',381,1),(6997,57003,57014,'OP_ConsignViewSortMsg',383,1),(6998,57003,57014,'OP_TitleUpdateMsg',384,1),(6999,57003,57014,'OP_ClientFellMsg',385,1),(7000,57003,57014,'OP_ClientInDeathRegionMsg',386,1),(7001,57003,57014,'OP_CampClientMsg',387,1),(7002,57003,57014,'OP_CSToolAccessResponseMsg',388,1),(7003,57003,57014,'OP_TrackingUpdateMsg',389,1),(7004,57003,57014,'OP_BeginTrackingMsg',390,1),(7005,57003,57014,'OP_StopTrackingMsg',391,1),(7006,57003,57014,'OP_GetAvatarAccessRequestForCSToo',393,1),(7007,57003,57014,'OP_AdvancementRequestMsg',394,1),(7008,57003,57014,'OP_MapFogDataInitMsg',395,1),(7009,57003,57014,'OP_MapFogDataUpdateMsg',396,1),(7010,57003,57014,'OP_CloseGroupInviteWindowMsg',397,1),(7011,57003,57014,'OP_UpdateGroupMemberDataMsg',398,1),(7012,57003,57014,'OP_WorldPingMsg',399,1),(7013,57003,57014,'OP_MoveLogUpdateMsg',390,1),(7014,57003,57014,'OP_OfferQuestMsg',401,1),(7015,57003,57014,'OP_WorldShutdownUpdateMsg',403,1),(7016,57003,57014,'OP_DisplayMailScreenMsg',404,1),(7017,57003,57014,'OP_ClientIdleBeginMsg',405,1),(7018,57003,57014,'OP_ClientIdleEndMsg',406,1),(7019,57003,57014,'OP_PurchaseConsignmentLoreCheckRe',407,1),(7020,57003,57014,'OP_NotifyApprenticeStoppedMentori',408,1),(7021,57003,57014,'OP_CorruptedClientMsg',409,1),(7022,57003,57014,'OP_WorldDataChangeMsg',410,1),(7023,57003,57014,'OP_MailEventNotificationMsg',411,1),(7024,57003,57014,'OP_RestartZoneMsg',412,1),(7025,57003,57014,'OP_FlightPathsMsg',413,1),(7026,57003,57014,'OP_CharacterLinkdeadMsg',414,1),(7027,57003,57014,'OP_CharTransferStartRequestMsg',415,1),(7028,57003,57014,'OP_CharTransferStartReplyMsg',416,1),(7029,57003,57014,'OP_CharTransferRequestMsg',417,1),(7030,57003,57014,'OP_CharTransferReplyMsg',418,1),(7031,57003,57014,'OP_CharTransferRollbackRequestMsg',419,1),(7032,57003,57014,'OP_CharTransferCommitRequestMsg',420,1),(7033,57003,57014,'OP_CharTransferRollbackReplyMsg',421,1),(7034,57003,57014,'OP_CharTransferCommitReplyMsg',422,1),(7035,57003,57014,'OP_GetCharacterSerializedRequestM',423,1),(7036,57003,57014,'OP_GetCharacterSerializedReplyMsg',424,1),(7037,57003,57014,'OP_CreateCharFromCBBRequestMsg',425,1),(7038,57003,57014,'OP_CreateCharFromCBBReplyMsg',426,1),(7039,57003,57014,'OP_HousingDataChangedMsg',427,1),(7040,57003,57014,'OP_HousingRestoreMsg',428,1),(7041,57003,57014,'OP_AuctionItem',429,1),(7042,57003,57014,'OP_AuctionItemReply',430,1),(7043,57003,57014,'OP_AuctionCoin',431,1),(7044,57003,57014,'OP_AuctionCoinReply',432,1),(7045,57003,57014,'OP_AuctionCharacter',433,1),(7046,57003,57014,'OP_AuctionCharacterReply',434,1),(7047,57003,57014,'OP_AuctionCommitMsg',435,1),(7048,57003,57014,'OP_AuctionAbortMsg',436,1),(7049,57003,57014,'OP_CharTransferValidateRequestMsg',437,1),(7050,57003,57014,'OP_CharTransferValidateReplyMsg',438,1),(7051,57003,57014,'OP_RaceRestrictionMsg',439,1),(7052,57003,57014,'OP_SetInstanceDisplayNameMsg',440,1),(7053,57003,57014,'OP_GetAuctionAssetIDMsg',441,1),(7054,57003,57014,'OP_GetAuctionAssetIDReplyMsg',442,1),(7055,57003,57014,'OP_ResendWorldChannelsMsg',443,1),(7056,57003,57014,'OP_DisplayExchangeScreenMsg',444,1),(7057,57003,57014,'OP_ArenaGameTypesMsg',445,1),(7058,57003,57014,'OP_AuditAuctionEventMsg',446,1),(7059,57003,57014,'OP_InviteRequestMsg',447,1),(7060,57003,57014,'OP_InviteResponseMsg',448,1),(7061,57003,57014,'OP_InviteTargetResponseMsg',449,1),(7062,57003,57014,'OP_InspectPlayerRequestMsg',450,1),(7063,57003,57014,'OP_DispatchMsg',451,1),(7064,57003,57014,'OP_DisplayEventMsg',452,1),(7065,57003,57014,'OP_PrePossessionMsg',453,1),(7066,57003,57014,'OP_PostPossessionMsg',454,1),(7067,57003,57014,'OP_ArenaCreate',456,1),(7068,57003,57014,'OP_ArenaList',457,1),(7069,57003,57014,'OP_ArenaWindow',465,1),(7070,57003,57014,'OP_HouseItemsList',483,1),(7071,57003,57014,'OP_CurrentPet',485,1),(7072,57003,57014,'OP_AdventureList',488,1),(7073,57003,57014,'OP_CancelSpellCast',489,1),(7074,57003,57014,'OP_UpdateTitleCmd',494,1),(7075,57003,57014,'OP_AttackAllowed',500,1),(7076,57003,57014,'OP_AttackNotAllowed',501,1),(7077,57003,57014,'OP_BagOptions',502,1),(7078,57003,57014,'OP_LFGGroupSearch',504,1),(7079,57003,57014,'OP_CharacterHousingList',507,1),(7080,57003,57014,'OP_DressingRoom',510,1),(7081,57003,57014,'OP_PlayLon',511,1),(7082,57003,57014,'OP_SkillInfoRequest',514,1),(7083,57003,57014,'OP_SkillInfoResponse',515,1),(7084,57003,57014,'OP_LFGUpdateMsg',518,1),(7085,57003,57014,'OP_BadLanguageFilter',519,1),(7086,57003,57014,'OP_VoiceChatChannel',520,1),(7087,57003,57014,'OP_MapRequest',521,1),(7088,57003,57014,'OP_MarketFundsUpdate',526,1),(7089,57003,57014,'OP_UIEvent',527,1),(7090,57003,57014,'OP_MarketAddFundsRequest',528,1),(7091,57003,57014,'OP_MarketAddFundsReply',529,1),(7092,57003,57014,'OP_MarketPurchase',531,1),(7093,57003,57014,'OP_MarketPlacePrices',532,1),(7094,57003,57014,'OP_MarketPlaceItems',535,1),(7095,57003,57014,'OP_RecipeBook',536,1),(7096,57003,57014,'OP_CreateCharacterDungeon',545,1),(7097,57003,57014,'OP_DungeonMakerEnter',546,1),(7098,57003,57014,'OP_DungeonMakerItemRequest',548,1),(7099,57003,57014,'OP_CharacterCreatedDungeons',549,1),(7100,57003,57014,'OP_DungeonMakerToolboxList',550,1),(7101,57003,57014,'OP_DungeonMakerUnknown',551,1),(7102,57003,57014,'OP_DungeonMakerUnknown1',552,1),(7103,57003,57014,'OP_PlayerPollPopup',554,1),(7104,57003,57014,'OP_PlayerPollAnswer',555,1),(7105,57003,57014,'OP_MentorPopup',556,1),(7106,57003,57014,'OP_LoadWelcomeWindow',558,1),(7107,57003,57014,'OP_OpenCharCust',559,1),(7108,57003,57014,'OP_SubmitCharCust',560,1),(7109,57003,57014,'OP_QueAllBgSolo',562,1),(7110,57003,57014,'OP_ZoneBgInstanceList',564,1),(7111,57003,57014,'OP_WorldTravelAvail',568,1),(7112,57003,57014,'OP_PaperdollImage',572,1),(7113,57003,57014,'OP_LoadCalendarEvents',573,1),(7114,57003,57014,'OP_VideoUploaded',574,1),(7115,57003,57014,'OP_SavageBarInitMsg',575,1),(7116,57003,57014,'OP_PetOptionsResponse',576,1),(7117,57003,57014,'OP_DungeonMakerItemResponse',577,1),(7118,57003,57014,'OP_CharacterMounts',579,1),(7119,57003,57014,'OP_EqBetaCopyRequest',589,1),(7120,57003,57014,'OP_EqHearChatCmd',590,1),(7121,57003,57014,'OP_EqDisplayTextCmd',591,1),(7122,57003,57014,'OP_EqCreateGhostCmd',592,1),(7123,57003,57014,'OP_EqCreateWidgetCmd',593,1),(7124,57003,57014,'OP_EqCreateSignWidgetCmd',594,1),(7125,57003,57014,'OP_EqDestroyGhostCmd',595,1),(7126,57003,57014,'OP_EqUpdateGhostCmd',596,1),(7127,57003,57014,'OP_EqSetControlGhostCmd',597,1),(7128,57003,57014,'OP_EqSetPOVGhostCmd',598,1),(7129,57003,57014,'OP_EqHearCombatCmd',599,1),(7130,57003,57014,'OP_EqHearSpellCastCmd',600,1),(7131,57003,57014,'OP_EQHearProcCmd',601,1),(7132,57003,57014,'OP_EQHearResEffectCmd',602,1),(7133,57003,57014,'OP_EqHearSpellInterruptCmd',603,1),(7134,57003,57014,'OP_EqHearSpellFizzleCmd',604,1),(7135,57003,57014,'OP_EqHearConsiderCmd',605,1),(7136,57003,57014,'OP_EqUpdateSubClassesCmd',606,1),(7137,57003,57014,'OP_EqCreateListBoxCmd',607,1),(7138,57003,57014,'OP_EqSetDebugPathPointsCmd',608,1),(7139,57003,57014,'OP_EqCannedEmoteCmd',610,1),(7140,57003,57014,'OP_EqStateCmd',611,1),(7141,57003,57014,'OP_EqPlaySoundCmd',612,1),(7142,57003,57014,'OP_EqPlaySound3DCmd',613,1),(7143,57003,57014,'OP_EqPlayVoiceCmd',614,1),(7144,57003,57014,'OP_EqHearDrowningCmd',615,1),(7145,57003,57014,'OP_EqHearDeathCmd',616,1),(7146,57003,57014,'OP_EqGroupMemberRemovedCmd',617,1),(7147,57003,57014,'OP_EqHearChainEffectCmd',618,1),(7148,57003,57014,'OP_EqReceiveOfferCmd',619,1),(7149,57003,57014,'OP_EqInspectPCResultsCmd',620,1),(7150,57003,57014,'OP_EqDrawablePathGraphCmd',621,1),(7151,57003,57014,'OP_EqDialogOpenCmd',622,1),(7152,57003,57014,'OP_EqDialogCloseCmd',623,1),(7153,57003,57014,'OP_EqFactionUpdateCmd',624,1),(7154,57003,57014,'OP_EqCollectionUpdateCmd',625,1),(7155,57003,57014,'OP_EqCollectionFilterCmd',626,1),(7156,57003,57014,'OP_EqCollectionItemCmd',627,1),(7157,57003,57014,'OP_EqQuestJournalUpdateCmd',628,1),(7158,57003,57014,'OP_EqMentoring',629,1),(7159,57003,57014,'OP_EqQuestJournalReplyCmd',630,1),(7160,57003,57014,'OP_EqQuestGroupCmd',631,1),(7161,57003,57014,'OP_EqUpdateMerchantCmd',632,1),(7162,57003,57014,'OP_EqUpdateStoreCmd',633,1),(7163,57003,57014,'OP_EqUpdatePlayerTradeCmd',634,1),(7164,57003,57014,'OP_EqHelpPathCmd',635,1),(7165,57003,57014,'OP_EqHelpPathClearCmd',636,1),(7166,57003,57014,'OP_EqUpdateBankCmd',637,1),(7167,57003,57014,'OP_EqExamineInfoCmd',638,1),(7168,57003,57014,'OP_EqCloseWindowCmd',639,1),(7169,57003,57014,'OP_EqUpdateLootCmd',640,1),(7170,57003,57014,'OP_EqJunctionListCmd',641,1),(7171,57003,57014,'OP_EqShowDeathWindowCmd',642,1),(7172,57003,57014,'OP_EqDisplaySpellFailCmd',643,1),(7173,57003,57014,'OP_EqSpellCastStartCmd',644,1),(7174,57003,57014,'OP_EqSpellCastEndCmd',645,1),(7175,57003,57014,'OP_EqResurrectedCmd',646,1),(7176,57003,57014,'OP_EqChoiceWinCmd',647,1),(7177,57003,57014,'OP_EqSetDefaultVerbCmd',648,1),(7178,57003,57014,'OP_EqInstructionWindowCmd',649,1),(7179,57003,57014,'OP_EqInstructionWindowCloseCmd',650,1),(7180,57003,57014,'OP_EqInstructionWindowGoalCmd',651,1),(7181,57003,57014,'OP_EqInstructionWindowTaskCmd',652,1),(7182,57003,57014,'OP_EqEnableGameEventCmd',653,1),(7183,57003,57014,'OP_EqShowWindowCmd',654,1),(7184,57003,57014,'OP_EqEnableWindowCmd',655,1),(7185,57003,57014,'OP_EqFlashWindowCmd',656,1),(7186,57003,57014,'OP_EqHearPlayFlavorCmd',658,1),(7187,57003,57014,'OP_EqUpdateSignWidgetCmd',659,1),(7188,57003,57014,'OP_EqDebugPVDCmd',660,1),(7189,57003,57014,'OP_EqShowBookCmd',661,1),(7190,57003,57014,'OP_EqQuestionnaireCmd',662,1),(7191,57003,57014,'OP_EqGetProbsCmd',664,1),(7192,57003,57014,'OP_EqHearHealCmd',665,1),(7193,57003,57014,'OP_EqChatChannelUpdateCmd',666,1),(7194,57003,57014,'OP_EqWhoChannelQueryReplyCmd',667,1),(7195,57003,57014,'OP_EqAvailWorldChannelsCmd',668,1),(7196,57003,57014,'OP_EqUpdateTargetCmd',669,1),(7197,57003,57014,'OP_BrokerSellList',670,1),(7198,57003,57014,'OP_EqConsignmentItemsCmd',671,1),(7199,57003,57014,'OP_EqStartBrokerCmd',673,1),(7200,57003,57014,'OP_EqMapExplorationCmd',674,1),(7201,57003,57014,'OP_EqStoreLogCmd',675,1),(7202,57003,57014,'OP_EqSpellMoveToRangeAndRetryCmd',676,1),(7203,57003,57014,'OP_EqUpdatePlayerMailCmd',677,1),(7204,57003,57014,'OP_GuildStatusUpdate',680,1),(7205,57003,57014,'OP_EqArenaResultsCmd',681,1),(7206,57003,57014,'OP_EqGuildBankEventActionCmd',682,1),(7207,57003,57014,'OP_EqGuildBankExamineInfoCmd',683,1),(7208,57003,57014,'OP_EqHearSpellNoLandCmd',684,1),(7209,57003,57014,'OP_Lottery',685,1),(7210,57003,57014,'OP_GuildRecruitingMemberInfo',686,1),(7211,57003,57014,'OP_GuildRecruiting',687,1),(7212,57003,57014,'OP_GuildRecruitingDetails',688,1),(7213,57003,57014,'OP_GuildRecruitingImage',689,1),(7214,57003,57014,'OP_TradeskillList',707,1),(7215,57003,57014,'OP_CharRenamed',691,1),(7216,57003,57014,'OP_UseAdornment',701,1),(7217,57003,57014,'OP_ExpPurchWindow',707,1),(7218,57003,57014,'OP_PointOfInterest',711,1),(7219,57003,57014,'OP_PointOfInterest2',712,1),(7220,57003,57014,'OP_TraitsList',713,1),(7221,57003,57014,'OP_CustomizeHouseDisplay',716,1),(7222,57003,57014,'OP_VoiceChatServer',717,1),(7223,57003,57014,'OP_SupplyDepot',721,1),(7224,57003,57014,'OP_EQHearThreatCmd',722,1),(7225,57003,57014,'OP_RecipeList',723,1),(7226,57003,57014,'OP_Research',724,1),(7227,57003,57014,'OP_CharacterCurrency',725,1),(7228,57003,57014,'OP_CharacterAchievements',726,1),(7229,57003,57014,'OP_AchievementUpdateMsg',727,1),(7230,57003,57014,'OP_EQHearDispellCmd',728,1),(7231,57003,57014,'OP_JournalQuestStoryline',729,1),(7232,57003,57014,'OP_DungeonPlayAsAvatarList',730,1),(7233,57003,57014,'OP_DungeonPlayAsAvatarSelected',731,1),(7234,57003,57014,'OP_MercHireWindow',732,1),(7235,57003,57014,'OP_MercUnknown',733,1),(7236,57003,57014,'OP_Unknown',749,1),(7709,57003,57014,'OP_ClearForLandingMsg',491,1),(7710,57003,57014,'OP_Launchpad',570,1),(7711,57003,57014,'OP_ReceipelistUnknown',588,1),(7712,57032,57047,'OP_LoginRequestMsg',0,1),(7713,57032,57047,'OP_LoginByNumRequestMsg',1,1),(7714,57032,57047,'OP_WSLoginRequestMsg',2,1),(7715,57032,57047,'OP_ESLoginRequestMsg',3,1),(7716,57032,57047,'OP_LoginReplyMsg',4,1),(7717,57032,57047,'OP_WSStatusReplyMsg',5,1),(7718,57032,57047,'OP_WorldStatusChangeMsg',6,1),(7719,57032,57047,'OP_AllWSDescRequestMsg',7,1),(7720,57032,57047,'OP_WorldListMsg',8,1),(7721,57032,57047,'OP_AllCharactersDescRequestMsg',9,1),(7722,57032,57047,'OP_AllCharactersDescReplyMsg',10,1),(7723,57032,57047,'OP_CreateCharacterRequestMsg',11,1),(7724,57032,57047,'OP_CreateCharacterReplyMsg',12,1),(7725,57032,57047,'OP_WSCreateCharacterRequestMsg',13,1),(7726,57032,57047,'OP_WSCreateCharacterReplyMsg',14,1),(7727,57032,57047,'OP_ReskinCharacterRequestMsg',15,1),(7728,57032,57047,'OP_DeleteCharacterRequestMsg',16,1),(7729,57032,57047,'OP_DeleteCharacterReplyMsg',17,1),(7730,57032,57047,'OP_PlayCharacterRequestMsg',18,1),(7731,57032,57047,'OP_PlayCharacterReplyMsg',19,1),(7732,57032,57047,'OP_ExpectClientAsCharacterReplyMs',22,1),(7733,57032,57047,'OP_ServerPlayCharacterRequestMsg',23,1),(7734,57032,57047,'OP_ServerPlayCharacterReplyMsg',24,1),(7735,57032,57047,'OP_ESInitMsg',25,1),(7736,57032,57047,'OP_ESReadyForClientsMsg',26,1),(7737,57032,57047,'OP_CreateZoneInstanceMsg',29,1),(7738,57032,57047,'OP_ZoneInstanceCreateReplyMsg',30,1),(7739,57032,57047,'OP_ZoneInstanceDestroyedMsg',31,1),(7740,57032,57047,'OP_ExpectClientAsCharacterRequest',32,1),(7741,57032,57047,'OP_ZoneInfoMsg',33,1),(7742,57032,57047,'OP_DoneLoadingZoneResourcesMsg',34,1),(7743,57032,57047,'OP_DoneSendingInitialEntitiesMsg',35,1),(7744,57032,57047,'OP_DoneLoadingEntityResourcesMsg',36,1),(7745,57032,57047,'OP_PredictionUpdateMsg',37,1),(7746,57032,57047,'OP_UpdatePositionMsg',39,1),(7747,57032,57047,'OP_SetRemoteCmdsMsg',41,1),(7748,57032,57047,'OP_RemoteCmdMsg',42,1),(7749,57032,57047,'OP_GameWorldTimeMsg',43,1),(7750,57032,57047,'OP_MOTDMsg',44,1),(7751,57032,57047,'OP_ZoneMOTDMsg',45,1),(7752,57032,57047,'OP_AvatarCreatedMsg',46,1),(7753,57032,57047,'OP_AvatarDestroyedMsg',47,1),(7754,57032,57047,'OP_RequestCampMsg',50,1),(7755,57032,57047,'OP_CampStartedMsg',51,1),(7756,57032,57047,'OP_CampAbortedMsg',52,1),(7757,57032,57047,'OP_WhoQueryRequestMsg',53,1),(7758,57032,57047,'OP_WhoQueryReplyMsg',54,1),(7759,57032,57047,'OP_MonitorReplyMsg',55,1),(7760,57032,57047,'OP_MonitorCharacterListMsg',56,1),(7761,57032,57047,'OP_MonitorCharacterListRequestMsg',57,1),(7762,57032,57047,'OP_ClientCmdMsg',58,1),(7763,57032,57047,'OP_DispatchESMsg',59,1),(7764,57032,57047,'OP_DispatchClientCmdMsg',60,1),(7765,57032,57047,'OP_UpdateTargetMsg',61,1),(7766,57032,57047,'OP_UpdateTargetLocMsg',62,1),(7767,57032,57047,'OP_UpdateCharacterSheetMsg',63,1),(7768,57032,57047,'OP_CharacterPet',64,1),(7769,57032,57047,'OP_CharacterMerc',65,1),(7770,57032,57047,'OP_UpdateSpellBookMsg',66,1),(7771,57032,57047,'OP_UpdateInventoryMsg',68,1),(7772,57032,57047,'OP_AfterInvSpellUpdate',69,1),(7773,57032,57047,'OP_UpdateRecipeBookMsg',70,1),(7774,57032,57047,'OP_RequestRecipeDetailsMsg',71,1),(7775,57032,57047,'OP_RecipeDetailsMsg',72,1),(7776,57032,57047,'OP_UpdateSkillBookMsg',73,1),(7777,57032,57047,'OP_UpdateSkillsMsg',74,1),(7778,57032,57047,'OP_UpdateOpportunityMsg',75,1),(7779,57032,57047,'OP_ChangeZoneMsg',77,1),(7780,57032,57047,'OP_ClientTeleportRequestMsg',78,1),(7781,57032,57047,'OP_TeleportWithinZoneMsg',79,1),(7782,57032,57047,'OP_TeleportWithinZoneNoReloadMsg',80,1),(7783,57032,57047,'OP_MigrateClientToZoneRequestMsg',81,1),(7784,57032,57047,'OP_MigrateClientToZoneReplyMsg',82,1),(7785,57032,57047,'OP_ReadyToZoneMsg',84,1),(7786,57032,57047,'OP_RemoveClientFromGroupMsg',85,1),(7787,57032,57047,'OP_RemoveGroupFromGroupMsg',86,1),(7788,57032,57047,'OP_MakeGroupLeaderMsg',87,1),(7789,57032,57047,'OP_GroupCreatedMsg',88,1),(7790,57032,57047,'OP_GroupDestroyedMsg',89,1),(7791,57032,57047,'OP_GroupMemberAddedMsg',90,1),(7792,57032,57047,'OP_GroupMemberRemovedMsg',91,1),(7793,57032,57047,'OP_GroupRemovedFromGroupMsg',92,1),(7794,57032,57047,'OP_GroupLeaderChangedMsg',93,1),(7795,57032,57047,'OP_GroupResendOOZDataMsg',94,1),(7796,57032,57047,'OP_GroupSettingsChangedMsg',95,1),(7797,57032,57047,'OP_OutOfZoneMemberDataMsg',96,1),(7798,57032,57047,'OP_SendLatestRequestMsg',97,1),(7799,57032,57047,'OP_ClearDataMsg',98,1),(7800,57032,57047,'OP_SetSocialMsg',99,1),(7801,57032,57047,'OP_ESStatusMsg',100,1),(7802,57032,57047,'OP_ESZoneInstanceStatusMsg',101,1),(7803,57032,57047,'OP_ZonesStatusRequestMsg',102,1),(7804,57032,57047,'OP_ZonesStatusMsg',103,1),(7805,57032,57047,'OP_ESWeatherRequestMsg',104,1),(7806,57032,57047,'OP_ESWeatherRequestEndMsg',105,1),(7807,57032,57047,'OP_DialogSelectMsg',109,1),(7808,57032,57047,'OP_DialogCloseMsg',110,1),(7809,57032,57047,'OP_RemoveSpellEffectMsg',111,1),(7810,57032,57047,'OP_RemoveConcentrationMsg',112,1),(7811,57032,57047,'OP_QuestJournalOpenMsg',113,1),(7812,57032,57047,'OP_QuestJournalInspectMsg',114,1),(7813,57032,57047,'OP_QuestJournalSetVisibleMsg',115,1),(7814,57032,57047,'OP_QuestJournalWaypointMsg',116,1),(7815,57032,57047,'OP_CreateGuildRequestMsg',119,1),(7816,57032,57047,'OP_CreateGuildReplyMsg',120,1),(7817,57032,57047,'OP_GuildsayMsg',121,1),(7818,57032,57047,'OP_FellowshipExpMsg',122,1),(7819,57032,57047,'OP_DeleteGuildMsg',123,1),(7820,57032,57047,'OP_GuildUpdateMsg',124,1),(7821,57032,57047,'OP_ConsignmentCloseStoreMsg',125,1),(7822,57032,57047,'OP_ConsignItemRequestMsg',126,1),(7823,57032,57047,'OP_ConsignItemResponseMsg',127,1),(7824,57032,57047,'OP_PurchaseConsignmentRequestMsg',128,1),(7825,57032,57047,'OP_LikeOption',136,1),(7826,57032,57047,'OP_PublishHouse',138,1),(7827,57032,57047,'OP_PlayerMadeInstancesScreen',139,1),(7828,57032,57047,'OP_PlayerMadeInstances',140,1),(7829,57032,57047,'OP_HouseDeletedRemotelyMsg',142,1),(7830,57032,57047,'OP_UpdateHouseDataMsg',143,1),(7831,57032,57047,'OP_UpdateHouseAccessDataMsg',144,1),(7832,57032,57047,'OP_PlayerHouseBaseScreenMsg',145,1),(7833,57032,57047,'OP_PlayerHousePurchaseScreenMsg',146,1),(7834,57032,57047,'OP_PlayerHouseAccessUpdateMsg',147,1),(7835,57032,57047,'OP_PlayerHouseDisplayStatusMsg',148,1),(7836,57032,57047,'OP_PlayerHouseCloseUIMsg',149,1),(7837,57032,57047,'OP_BuyPlayerHouseMsg',150,1),(7838,57032,57047,'OP_BuyPlayerHouseTintMsg',151,1),(7839,57032,57047,'OP_CollectAllHouseItemsMsg',152,1),(7840,57032,57047,'OP_RelinquishHouseMsg',153,1),(7841,57032,57047,'OP_EnterHouseMsg',154,1),(7842,57032,57047,'OP_ExitHouseMsg',155,1),(7843,57032,57047,'OP_HouseDefaultAccessSetMsg',156,1),(7844,57032,57047,'OP_HouseAccessSetMsg',157,1),(7845,57032,57047,'OP_HouseAccessRemoveMsg',158,1),(7846,57032,57047,'OP_PayHouseUpkeepMsg',159,1),(7847,57032,57047,'OP_MoveableObjectPlacementCriteri',160,1),(7848,57032,57047,'OP_EnterMoveObjectModeMsg',161,1),(7849,57032,57047,'OP_PositionMoveableObject',162,1),(7850,57032,57047,'OP_CancelMoveObjectModeMsg',163,1),(7851,57032,57047,'OP_ShaderCustomizationMsg',164,1),(7852,57032,57047,'OP_ReplaceableSubMeshesMsg',165,1),(7853,57032,57047,'OP_HouseCustomizationScreenMsg',166,1),(7854,57032,57047,'OP_CustomizationPurchaseRequestMs',167,1),(7855,57032,57047,'OP_CustomizationSetRequestMsg',168,1),(7856,57032,57047,'OP_CustomizationReplyMsg',169,1),(7857,57032,57047,'OP_TintWidgetsMsg',170,1),(7858,57032,57047,'OP_ExamineConsignmentRequestMsg',171,1),(7859,57032,57047,'OP_ExamineConsignmentResponseMsg',172,1),(7860,57032,57047,'OP_UISettingsResponseMsg',173,1),(7861,57032,57047,'OP_UIResetMsg',174,1),(7862,57032,57047,'OP_KeymapLoadMsg',175,1),(7863,57032,57047,'OP_KeymapNoneMsg',176,1),(7864,57032,57047,'OP_KeymapDataMsg',177,1),(7865,57032,57047,'OP_KeymapSaveMsg',178,1),(7866,57032,57047,'OP_DispatchSpellCmdMsg',179,1),(7867,57032,57047,'OP_EntityVerbsRequestMsg',180,1),(7868,57032,57047,'OP_EntityVerbsReplyMsg',181,1),(7869,57032,57047,'OP_EntityVerbsVerbMsg',182,1),(7870,57032,57047,'OP_ChatRelationshipUpdateMsg',184,1),(7871,57032,57047,'OP_LootItemsRequestMsg',185,1),(7872,57032,57047,'OP_StoppedLootingMsg',186,1),(7873,57032,57047,'OP_SitMsg',187,1),(7874,57032,57047,'OP_StandMsg',188,1),(7875,57032,57047,'OP_SatMsg',189,1),(7876,57032,57047,'OP_StoodMsg',190,1),(7877,57032,57047,'OP_ClearForTakeOffMsg',191,1),(7878,57032,57047,'OP_ReadyForTakeOffMsg',192,1),(7879,57032,57047,'OP_ShowIllusionsMsg',193,1),(7880,57032,57047,'OP_HideIllusionsMsg',194,1),(7881,57032,57047,'OP_ExamineItemRequestMsg',195,1),(7882,57032,57047,'OP_ReadBookPageMsg',196,1),(7883,57032,57047,'OP_DefaultGroupOptionsRequestMsg',197,1),(7884,57032,57047,'OP_DefaultGroupOptionsMsg',198,1),(7885,57032,57047,'OP_GroupOptionsMsg',199,1),(7886,57032,57047,'OP_DisplayGroupOptionsScreenMsg',200,1),(7887,57032,57047,'OP_PetOptions',201,1),(7888,57032,57047,'OP_DisplayInnVisitScreenMsg',202,1),(7889,57032,57047,'OP_DumpSchedulerMsg',203,1),(7890,57032,57047,'OP_LSCheckAcctLockMsg',204,1),(7891,57032,57047,'OP_WSAcctLockStatusMsg',205,1),(7892,57032,57047,'OP_RequestHelpRepathMsg',206,1),(7893,57032,57047,'OP_RequestTargetLocMsg',207,1),(7894,57032,57047,'OP_UpdateMotdMsg',208,1),(7895,57032,57047,'OP_DestUpdateReq',210,1),(7896,57032,57047,'OP_PerformPlayerKnockbackMsg',213,1),(7897,57032,57047,'OP_PerformCameraShakeMsg',214,1),(7898,57032,57047,'OP_PopulateSkillMapsMsg',215,1),(7899,57032,57047,'OP_CancelledFeignMsg',216,1),(7900,57032,57047,'OP_SysClient',218,1),(7901,57032,57047,'OP_ShowCreateFromRecipeUIMsg',219,1),(7902,57032,57047,'OP_CancelCreateFromRecipeMsg',220,1),(7903,57032,57047,'OP_BeginItemCreationMsg',221,1),(7904,57032,57047,'OP_StopItemCreationMsg',222,1),(7905,57032,57047,'OP_ShowItemCreationProcessUIMsg',223,1),(7906,57032,57047,'OP_UpdateItemCreationProcessUIMsg',224,1),(7907,57032,57047,'OP_DisplayTSEventReactionMsg',225,1),(7908,57032,57047,'OP_ShowRecipeBookMsg',226,1),(7909,57032,57047,'OP_KnowledgebaseRequestMsg',227,1),(7910,57032,57047,'OP_KnowledgebaseResponseMsg',228,1),(7911,57032,57047,'OP_CSTicketHeaderRequestMsg',229,1),(7912,57032,57047,'OP_CSTicketInfoMsg',230,1),(7913,57032,57047,'OP_CSTicketCommentRequestMsg',231,1),(7914,57032,57047,'OP_CSTicketCommentResponseMsg',232,1),(7915,57032,57047,'OP_CSTicketCreateMsg',233,1),(7916,57032,57047,'OP_CSTicketAddCommentMsg',234,1),(7917,57032,57047,'OP_CSTicketDeleteMsg',235,1),(7918,57032,57047,'OP_CSTicketChangeNotificationMsg',236,1),(7919,57032,57047,'OP_WorldDataUpdateMsg',237,1),(7920,57032,57047,'OP_KnownLanguagesMsg',238,1),(7921,57032,57047,'OP_LsRequestClientCrashLogMsg',239,1),(7922,57032,57047,'OP_LsClientBaselogReplyMsg',240,1),(7923,57032,57047,'OP_LsClientCrashlogReplyMsg',241,1),(7924,57032,57047,'OP_LsClientAlertlogReplyMsg',242,1),(7925,57032,57047,'OP_LsClientVerifylogReplyMsg',243,1),(7926,57032,57047,'OP_ClientTeleportToLocationMsg',244,1),(7927,57032,57047,'OP_UpdateClientPredFlagsMsg',245,1),(7928,57032,57047,'OP_ChangeServerControlFlagMsg',246,1),(7929,57032,57047,'OP_CSToolsRequestMsg',247,1),(7930,57032,57047,'OP_CSToolsResponseMsg',248,1),(7931,57032,57047,'OP_AddSocialStructureStandingMsg',249,1),(7932,57032,57047,'OP_CreateBoatTransportsMsg',250,1),(7933,57032,57047,'OP_PositionBoatTransportMsg',251,1),(7934,57032,57047,'OP_MigrateBoatTransportMsg',252,1),(7935,57032,57047,'OP_MigrateBoatTransportReplyMsg',253,1),(7936,57032,57047,'OP_DisplayDebugNLLPointsMsg',254,1),(7937,57032,57047,'OP_ExamineInfoRequestMsg',255,1),(7938,57032,57047,'OP_QuickbarInitMsg',256,1),(7939,57032,57047,'OP_QuickbarUpdateMsg',257,1),(7940,57032,57047,'OP_MacroInitMsg',258,1),(7941,57032,57047,'OP_MacroUpdateMsg',259,1),(7942,57032,57047,'OP_QuestionnaireMsg',260,1),(7943,57032,57047,'OP_LevelChangedMsg',261,1),(7944,57032,57047,'OP_SpellGainedMsg',262,1),(7945,57032,57047,'OP_EncounterBrokenMsg',263,1),(7946,57032,57047,'OP_OnscreenMsgMsg',264,1),(7947,57032,57047,'OP_DisplayWarningMsg',265,1),(7948,57032,57047,'OP_ModifyGuildMsg',266,1),(7949,57032,57047,'OP_GuildEventMsg',267,1),(7950,57032,57047,'OP_GuildEventAddMsg',268,1),(7951,57032,57047,'OP_GuildEventActionMsg',269,1),(7952,57032,57047,'OP_GuildEventListMsg',270,1),(7953,57032,57047,'OP_RequestGuildEventDetailsMsg',271,1),(7954,57032,57047,'OP_GuildEventDetailsMsg',272,1),(7955,57032,57047,'OP_RequestGuildInfoMsg',273,1),(7956,57032,57047,'OP_GuildBankActionMsg',274,1),(7957,57032,57047,'OP_GuildBankActionResponseMsg',275,1),(7958,57032,57047,'OP_GuildBankItemDetailsRequestMsg',276,1),(7959,57032,57047,'OP_GuildBankItemDetailsResponseMs',277,1),(7960,57032,57047,'OP_GuildBankUpdateMsg',278,1),(7961,57032,57047,'OP_GuildBankEventListMsg',279,1),(7962,57032,57047,'OP_RequestGuildBankEventDetailsMs',280,1),(7963,57032,57047,'OP_RewardPackMsg',281,1),(7964,57032,57047,'OP_RenameGuildMsg',282,1),(7965,57032,57047,'OP_ZoneToFriendRequestMsg',283,1),(7966,57032,57047,'OP_ZoneToFriendReplyMsg',284,1),(7967,57032,57047,'OP_ChatCreateChannelMsg',285,1),(7968,57032,57047,'OP_ChatJoinChannelMsg',286,1),(7969,57032,57047,'OP_ChatWhoChannelMsg',287,1),(7970,57032,57047,'OP_ChatLeaveChannelMsg',288,1),(7971,57032,57047,'OP_ChatTellChannelMsg',289,1),(7972,57032,57047,'OP_ChatTellUserMsg',290,1),(7973,57032,57047,'OP_ChatToggleFriendMsg',291,1),(7974,57032,57047,'OP_BrokerAddBag',292,1),(7975,57032,57047,'OP_BrokerRemoveBag',293,1),(7976,57032,57047,'OP_ChatToggleIgnoreMsg',294,1),(7977,57032,57047,'OP_ChatSendFriendsMsg',295,1),(7978,57032,57047,'OP_ChatSendIgnoresMsg',296,1),(7979,57032,57047,'OP_QuestReward',320,1),(7980,57032,57047,'OP_ChatFiltersMsg',335,1),(7981,57032,57047,'OP_MailGetMessageMsg',338,1),(7982,57032,57047,'OP_MailSendMessageMsg',339,1),(7983,57032,57047,'OP_MailDeleteMessageMsg',340,1),(7984,57032,57047,'OP_MailGetHeadersReplyMsg',341,1),(7985,57032,57047,'OP_MailGetMessageReplyMsg',342,1),(7986,57032,57047,'OP_MailSendMessageReplyMsg',343,1),(7987,57032,57047,'OP_MailCommitSendMessageMsg',344,1),(7988,57032,57047,'OP_MailSendSystemMessageMsg',345,1),(7989,57032,57047,'OP_MailRemoveAttachFromMailMsg',346,1),(7990,57032,57047,'OP_WaypointRequestMsg',348,1),(7991,57032,57047,'OP_WaypointReplyMsg',349,1),(7992,57032,57047,'OP_WaypointSelectMsg',350,1),(7993,57032,57047,'OP_WaypointUpdateMsg',351,1),(7994,57032,57047,'OP_CharNameChangedMsg',352,1),(7995,57032,57047,'OP_ShowZoneTeleporterDestinations',353,1),(7996,57032,57047,'OP_SelectZoneTeleporterDestinatio',354,1),(7997,57032,57047,'OP_ReloadLocalizedTxtMsg',355,1),(7998,57032,57047,'OP_RequestGuildMembershipMsg',356,1),(7999,57032,57047,'OP_GuildMembershipResponseMsg',357,1),(8000,57032,57047,'OP_LeaveGuildNotifyMsg',358,1),(8001,57032,57047,'OP_JoinGuildNotifyMsg',359,1),(8002,57032,57047,'OP_AvatarUpdateMsg',360,1),(8003,57032,57047,'OP_BioUpdateMsg',362,1),(8004,57032,57047,'OP_InspectPlayerMsg',363,1),(8005,57032,57047,'OP_WSServerLockMsg',364,1),(8006,57032,57047,'OP_LSServerLockMsg',365,1),(8007,57032,57047,'OP_WSServerHideMsg',366,1),(8008,57032,57047,'OP_CsCategoryRequestMsg',367,1),(8009,57032,57047,'OP_CsCategoryResponseMsg',368,1),(8010,57032,57047,'OP_KnowledgeWindowSlotMappingMsg',369,1),(8011,57032,57047,'OP_AFKUpdateMsg',370,1),(8012,57032,57047,'OP_AnonUpdateMsg',371,1),(8013,57032,57047,'OP_UpdateActivePublicZonesMsg',372,1),(8014,57032,57047,'OP_UnknownNpcMsg',373,1),(8015,57032,57047,'OP_PromoFlagsDetailsMsg',374,1),(8016,57032,57047,'OP_ConsignViewCreateMsg',375,1),(8017,57032,57047,'OP_ConsignViewGetPageMsg',376,1),(8018,57032,57047,'OP_ConsignViewReleaseMsg',377,1),(8019,57032,57047,'OP_ConsignRemoveItemsMsg',378,1),(8020,57032,57047,'OP_UpdateDebugRadiiMsg',379,1),(8021,57032,57047,'OP_ReportMsg',380,1),(8022,57032,57047,'OP_UpdateRaidMsg',381,1),(8023,57032,57047,'OP_ConsignViewSortMsg',383,1),(8024,57032,57047,'OP_TitleUpdateMsg',384,1),(8025,57032,57047,'OP_ClientFellMsg',385,1),(8026,57032,57047,'OP_ClientInDeathRegionMsg',386,1),(8027,57032,57047,'OP_CampClientMsg',387,1),(8028,57032,57047,'OP_CSToolAccessResponseMsg',388,1),(8029,57032,57047,'OP_UpdateGroupMemberDataMsg',388,1),(8030,57032,57047,'OP_TrackingUpdateMsg',389,1),(8031,57032,57047,'OP_BeginTrackingMsg',390,1),(8032,57032,57047,'OP_StopTrackingMsg',391,1),(8033,57032,57047,'OP_GetAvatarAccessRequestForCSToo',393,1),(8034,57032,57047,'OP_AdvancementRequestMsg',394,1),(8035,57032,57047,'OP_MapFogDataInitMsg',395,1),(8036,57032,57047,'OP_MapFogDataUpdateMsg',396,1),(8037,57032,57047,'OP_CloseGroupInviteWindowMsg',397,1),(8038,57032,57047,'OP_WorldPingMsg',399,1),(8039,57032,57047,'OP_MoveLogUpdateMsg',400,1),(8040,57032,57047,'OP_OfferQuestMsg',401,1),(8041,57032,57047,'OP_WorldShutdownUpdateMsg',403,1),(8042,57032,57047,'OP_DisplayMailScreenMsg',404,1),(8043,57032,57047,'OP_ClientIdleBeginMsg',405,1),(8044,57032,57047,'OP_ClientIdleEndMsg',406,1),(8045,57032,57047,'OP_PurchaseConsignmentLoreCheckRe',407,1),(8046,57032,57047,'OP_NotifyApprenticeStoppedMentori',408,1),(8047,57032,57047,'OP_CorruptedClientMsg',409,1),(8048,57032,57047,'OP_WorldDataChangeMsg',410,1),(8049,57032,57047,'OP_MailEventNotificationMsg',411,1),(8050,57032,57047,'OP_RestartZoneMsg',412,1),(8051,57032,57047,'OP_FlightPathsMsg',413,1),(8052,57032,57047,'OP_CharacterLinkdeadMsg',414,1),(8053,57032,57047,'OP_CharTransferStartRequestMsg',415,1),(8054,57032,57047,'OP_CharTransferStartReplyMsg',416,1),(8055,57032,57047,'OP_CharTransferRequestMsg',417,1),(8056,57032,57047,'OP_CharTransferReplyMsg',418,1),(8057,57032,57047,'OP_CharTransferRollbackRequestMsg',419,1),(8058,57032,57047,'OP_CharTransferCommitRequestMsg',420,1),(8059,57032,57047,'OP_CharTransferRollbackReplyMsg',421,1),(8060,57032,57047,'OP_CharTransferCommitReplyMsg',422,1),(8061,57032,57047,'OP_GetCharacterSerializedRequestM',423,1),(8062,57032,57047,'OP_GetCharacterSerializedReplyMsg',424,1),(8063,57032,57047,'OP_CreateCharFromCBBRequestMsg',425,1),(8064,57032,57047,'OP_CreateCharFromCBBReplyMsg',426,1),(8065,57032,57047,'OP_HousingDataChangedMsg',427,1),(8066,57032,57047,'OP_HousingRestoreMsg',428,1),(8067,57032,57047,'OP_AuctionItem',429,1),(8068,57032,57047,'OP_AuctionItemReply',430,1),(8069,57032,57047,'OP_AuctionCoin',431,1),(8070,57032,57047,'OP_AuctionCoinReply',432,1),(8071,57032,57047,'OP_AuctionCharacter',433,1),(8072,57032,57047,'OP_AuctionCharacterReply',434,1),(8073,57032,57047,'OP_AuctionCommitMsg',435,1),(8074,57032,57047,'OP_AuctionAbortMsg',436,1),(8075,57032,57047,'OP_CharTransferValidateRequestMsg',437,1),(8076,57032,57047,'OP_CharTransferValidateReplyMsg',438,1),(8077,57032,57047,'OP_RaceRestrictionMsg',439,1),(8078,57032,57047,'OP_SetInstanceDisplayNameMsg',440,1),(8079,57032,57047,'OP_GetAuctionAssetIDMsg',441,1),(8080,57032,57047,'OP_GetAuctionAssetIDReplyMsg',442,1),(8081,57032,57047,'OP_ResendWorldChannelsMsg',443,1),(8082,57032,57047,'OP_DisplayExchangeScreenMsg',444,1),(8083,57032,57047,'OP_ArenaGameTypesMsg',445,1),(8084,57032,57047,'OP_AuditAuctionEventMsg',446,1),(8085,57032,57047,'OP_InviteRequestMsg',447,1),(8086,57032,57047,'OP_InviteResponseMsg',448,1),(8087,57032,57047,'OP_InviteTargetResponseMsg',449,1),(8088,57032,57047,'OP_InspectPlayerRequestMsg',450,1),(8089,57032,57047,'OP_DispatchMsg',451,1),(8090,57032,57047,'OP_DisplayEventMsg',452,1),(8091,57032,57047,'OP_PrePossessionMsg',453,1),(8092,57032,57047,'OP_PostPossessionMsg',454,1),(8093,57032,57047,'OP_ArenaCreate',456,1),(8094,57032,57047,'OP_ArenaList',457,1),(8095,57032,57047,'OP_ArenaWindow',465,1),(8096,57032,57047,'OP_HouseItemsList',483,1),(8097,57032,57047,'OP_CurrentPet',485,1),(8098,57032,57047,'OP_AdventureList',488,1),(8099,57032,57047,'OP_CancelSpellCast',489,1),(8100,57032,57047,'OP_ClearForLandingMsg',491,1),(8101,57032,57047,'OP_UpdateTitleCmd',494,1),(8102,57032,57047,'OP_AttackAllowed',500,1),(8103,57032,57047,'OP_AttackNotAllowed',501,1),(8104,57032,57047,'OP_BagOptions',502,1),(8105,57032,57047,'OP_LFGGroupSearch',504,1),(8106,57032,57047,'OP_CharacterHousingList',507,1),(8107,57032,57047,'OP_DressingRoom',510,1),(8108,57032,57047,'OP_PlayLon',511,1),(8109,57032,57047,'OP_SkillInfoRequest',514,1),(8110,57032,57047,'OP_SkillInfoResponse',515,1),(8111,57032,57047,'OP_LFGUpdateMsg',518,1),(8112,57032,57047,'OP_BadLanguageFilter',519,1),(8113,57032,57047,'OP_VoiceChatChannel',520,1),(8114,57032,57047,'OP_MapRequest',521,1),(8115,57032,57047,'OP_MarketFundsUpdate',526,1),(8116,57032,57047,'OP_UIEvent',527,1),(8117,57032,57047,'OP_MarketAddFundsRequest',528,1),(8118,57032,57047,'OP_MarketAddFundsReply',529,1),(8119,57032,57047,'OP_MarketPurchase',531,1),(8120,57032,57047,'OP_MarketPlacePrices',532,1),(8121,57032,57047,'OP_MarketPlaceItems',535,1),(8122,57032,57047,'OP_RecipeBook',536,1),(8123,57032,57047,'OP_CreateCharacterDungeon',545,1),(8124,57032,57047,'OP_DungeonMakerEnter',546,1),(8125,57032,57047,'OP_DungeonMakerItemRequest',548,1),(8126,57032,57047,'OP_CharacterCreatedDungeons',549,1),(8127,57032,57047,'OP_DungeonMakerToolboxList',550,1),(8128,57032,57047,'OP_DungeonMakerUnknown',551,1),(8129,57032,57047,'OP_DungeonMakerUnknown1',552,1),(8130,57032,57047,'OP_PlayerPollPopup',554,1),(8131,57032,57047,'OP_PlayerPollAnswer',555,1),(8132,57032,57047,'OP_MentorPopup',556,1),(8133,57032,57047,'OP_LoadWelcomeWindow',558,1),(8134,57032,57047,'OP_OpenCharCust',559,1),(8135,57032,57047,'OP_SubmitCharCust',560,1),(8136,57032,57047,'OP_QueAllBgSolo',562,1),(8137,57032,57047,'OP_ZoneBgInstanceList',564,1),(8138,57032,57047,'OP_WorldTravelAvail',568,1),(8139,57032,57047,'OP_Launchpad',570,1),(8140,57032,57047,'OP_PaperdollImage',572,1),(8141,57032,57047,'OP_LoadCalendarEvents',573,1),(8142,57032,57047,'OP_VideoUploaded',574,1),(8143,57032,57047,'OP_SavageBarInitMsg',575,1),(8144,57032,57047,'OP_PetOptionsResponse',576,1),(8145,57032,57047,'OP_DungeonMakerItemResponse',577,1),(8146,57032,57047,'OP_CharacterMounts',579,1),(8147,57032,57047,'OP_RecipeListUnknown',588,1),(8148,57032,57047,'OP_EqBetaCopyRequest',593,1),(8149,57032,57047,'OP_EqHearChatCmd',594,1),(8150,57032,57047,'OP_EqDisplayTextCmd',595,1),(8151,57032,57047,'OP_EqCreateGhostCmd',596,1),(8152,57032,57047,'OP_EqCreateWidgetCmd',597,1),(8153,57032,57047,'OP_EqCreateSignWidgetCmd',598,1),(8154,57032,57047,'OP_EqDestroyGhostCmd',599,1),(8155,57032,57047,'OP_EqUpdateGhostCmd',600,1),(8156,57032,57047,'OP_EqSetControlGhostCmd',601,1),(8157,57032,57047,'OP_EqSetPOVGhostCmd',602,1),(8158,57032,57047,'OP_EqHearCombatCmd',603,1),(8159,57032,57047,'OP_EqHearSpellCastCmd',604,1),(8160,57032,57047,'OP_EQHearProcCmd',605,1),(8161,57032,57047,'OP_EQHearResEffectCmd',606,1),(8162,57032,57047,'OP_EqHearSpellInterruptCmd',607,1),(8163,57032,57047,'OP_EqHearSpellFizzleCmd',608,1),(8164,57032,57047,'OP_EqHearConsiderCmd',609,1),(8165,57032,57047,'OP_EqUpdateSubClassesCmd',610,1),(8166,57032,57047,'OP_EqCreateListBoxCmd',611,1),(8167,57032,57047,'OP_EqSetDebugPathPointsCmd',612,1),(8168,57032,57047,'OP_EqCannedEmoteCmd',614,1),(8169,57032,57047,'OP_EqStateCmd',615,1),(8170,57032,57047,'OP_EqPlaySoundCmd',616,1),(8171,57032,57047,'OP_EqPlaySound3DCmd',617,1),(8172,57032,57047,'OP_EqPlayVoiceCmd',618,1),(8173,57032,57047,'OP_EqHearDrowningCmd',619,1),(8174,57032,57047,'OP_EqHearDeathCmd',620,1),(8175,57032,57047,'OP_EqGroupMemberRemovedCmd',621,1),(8176,57032,57047,'OP_EqHearChainEffectCmd',622,1),(8177,57032,57047,'OP_EqReceiveOfferCmd',623,1),(8178,57032,57047,'OP_EqInspectPCResultsCmd',624,1),(8179,57032,57047,'OP_EqDrawablePathGraphCmd',625,1),(8180,57032,57047,'OP_EqDialogOpenCmd',626,1),(8181,57032,57047,'OP_EqDialogCloseCmd',627,1),(8182,57032,57047,'OP_EqFactionUpdateCmd',628,1),(8183,57032,57047,'OP_EqCollectionUpdateCmd',629,1),(8184,57032,57047,'OP_EqCollectionFilterCmd',630,1),(8185,57032,57047,'OP_EqCollectionItemCmd',631,1),(8186,57032,57047,'OP_EqQuestJournalUpdateCmd',632,1),(8187,57032,57047,'OP_EqMentoring',633,1),(8188,57032,57047,'OP_EqQuestJournalReplyCmd',634,1),(8189,57032,57047,'OP_EqQuestGroupCmd',635,1),(8190,57032,57047,'OP_EqUpdateMerchantCmd',636,1),(8191,57032,57047,'OP_EqUpdateStoreCmd',637,1),(8192,57032,57047,'OP_EqUpdatePlayerTradeCmd',638,1),(8193,57032,57047,'OP_EqHelpPathCmd',639,1),(8194,57032,57047,'OP_EqHelpPathClearCmd',640,1),(8195,57032,57047,'OP_EqUpdateBankCmd',641,1),(8196,57032,57047,'OP_EqExamineInfoCmd',642,1),(8197,57032,57047,'OP_EqCloseWindowCmd',643,1),(8198,57032,57047,'OP_EqUpdateLootCmd',644,1),(8199,57032,57047,'OP_EqJunctionListCmd',645,1),(8200,57032,57047,'OP_EqShowDeathWindowCmd',646,1),(8201,57032,57047,'OP_EqDisplaySpellFailCmd',647,1),(8202,57032,57047,'OP_EqSpellCastStartCmd',648,1),(8203,57032,57047,'OP_EqSpellCastEndCmd',649,1),(8204,57032,57047,'OP_EqResurrectedCmd',650,1),(8205,57032,57047,'OP_EqChoiceWinCmd',651,1),(8206,57032,57047,'OP_EqSetDefaultVerbCmd',652,1),(8207,57032,57047,'OP_EqInstructionWindowCmd',653,1),(8208,57032,57047,'OP_EqInstructionWindowCloseCmd',654,1),(8209,57032,57047,'OP_EqInstructionWindowGoalCmd',655,1),(8210,57032,57047,'OP_EqInstructionWindowTaskCmd',656,1),(8211,57032,57047,'OP_EqEnableGameEventCmd',657,1),(8212,57032,57047,'OP_EqShowWindowCmd',658,1),(8213,57032,57047,'OP_EqEnableWindowCmd',659,1),(8214,57032,57047,'OP_EqFlashWindowCmd',660,1),(8215,57032,57047,'OP_EqHearPlayFlavorCmd',662,1),(8216,57032,57047,'OP_EqUpdateSignWidgetCmd',663,1),(8217,57032,57047,'OP_EqDebugPVDCmd',664,1),(8218,57032,57047,'OP_EqShowBookCmd',665,1),(8219,57032,57047,'OP_EqQuestionnaireCmd',666,1),(8220,57032,57047,'OP_EqGetProbsCmd',668,1),(8221,57032,57047,'OP_EqHearHealCmd',669,1),(8222,57032,57047,'OP_EqChatChannelUpdateCmd',670,1),(8223,57032,57047,'OP_EqWhoChannelQueryReplyCmd',671,1),(8224,57032,57047,'OP_EqAvailWorldChannelsCmd',672,1),(8225,57032,57047,'OP_EqUpdateTargetCmd',673,1),(8226,57032,57047,'OP_BrokerSellList',674,1),(8227,57032,57047,'OP_EqConsignmentItemsCmd',675,1),(8228,57032,57047,'OP_EqStartBrokerCmd',677,1),(8229,57032,57047,'OP_EqMapExplorationCmd',678,1),(8230,57032,57047,'OP_EqStoreLogCmd',679,1),(8231,57032,57047,'OP_EqSpellMoveToRangeAndRetryCmd',680,1),(8232,57032,57047,'OP_EqUpdatePlayerMailCmd',681,1),(8233,57032,57047,'OP_GuildStatusUpdate',684,1),(8234,57032,57047,'OP_EqArenaResultsCmd',685,1),(8235,57032,57047,'OP_EqGuildBankEventActionCmd',686,1),(8236,57032,57047,'OP_EqGuildBankExamineInfoCmd',687,1),(8237,57032,57047,'OP_EqHearSpellNoLandCmd',688,1),(8238,57032,57047,'OP_Lottery',689,1),(8239,57032,57047,'OP_GuildRecruitingMemberInfo',690,1),(8240,57032,57047,'OP_GuildRecruiting',691,1),(8241,57032,57047,'OP_GuildRecruitingDetails',692,1),(8242,57032,57047,'OP_GuildRecruitingImage',693,1),(8243,57032,57047,'OP_TradeskillList',694,1),(8244,57032,57047,'OP_CharRenamed',695,1),(8245,57032,57047,'OP_UseAdornment',705,1),(8246,57032,57047,'OP_ExpPurchWindow',711,1),(8247,57032,57047,'OP_PointOfInterest',715,1),(8248,57032,57047,'OP_PointOfInterest2',716,1),(8249,57032,57047,'OP_TraitsList',717,1),(8250,57032,57047,'OP_CustomizeHouseDisplay',720,1),(8251,57032,57047,'OP_VoiceChatServer',721,1),(8252,57032,57047,'OP_SupplyDepot',725,1),(8253,57032,57047,'OP_EQHearThreatCmd',726,1),(8254,57032,57047,'OP_RecipeList',727,1),(8255,57032,57047,'OP_Research',728,1),(8256,57032,57047,'OP_CharacterCurrency',729,1),(8257,57032,57047,'OP_CharacterAchievements',730,1),(8258,57032,57047,'OP_AchievementUpdateMsg',731,1),(8259,57032,57047,'OP_EQHearDispellCmd',732,1),(8260,57032,57047,'OP_JournalQuestStoryline',733,1),(8261,57032,57047,'OP_DungeonPlayAsAvatarList',734,1),(8262,57032,57047,'OP_DungeonPlayAsAvatarSelected',735,1),(8263,57032,57047,'OP_MercHireWindow',736,1),(8264,57032,57047,'OP_MercUnknown',737,1),(8265,57032,57047,'OP_Unknown',750,1),(8266,57048,57079,'OP_LoginRequestMsg',0,1),(8267,57048,57079,'OP_LoginByNumRequestMsg',1,1),(8268,57048,57079,'OP_WSLoginRequestMsg',2,1),(8269,57048,57079,'OP_ESLoginRequestMsg',3,1),(8270,57048,57079,'OP_LoginReplyMsg',4,1),(8271,57048,57079,'OP_WSStatusReplyMsg',5,1),(8272,57048,57079,'OP_WorldStatusChangeMsg',6,1),(8273,57048,57079,'OP_AllWSDescRequestMsg',7,1),(8274,57048,57079,'OP_WorldListMsg',8,1),(8275,57048,57079,'OP_AllCharactersDescRequestMsg',9,1),(8276,57048,57079,'OP_AllCharactersDescReplyMsg',10,1),(8277,57048,57079,'OP_CreateCharacterRequestMsg',11,1),(8278,57048,57079,'OP_CreateCharacterReplyMsg',12,1),(8279,57048,57079,'OP_WSCreateCharacterRequestMsg',13,1),(8280,57048,57079,'OP_WSCreateCharacterReplyMsg',14,1),(8281,57048,57079,'OP_ReskinCharacterRequestMsg',15,1),(8282,57048,57079,'OP_DeleteCharacterRequestMsg',16,1),(8283,57048,57079,'OP_DeleteCharacterReplyMsg',17,1),(8284,57048,57079,'OP_PlayCharacterRequestMsg',18,1),(8285,57048,57079,'OP_PlayCharacterReplyMsg',19,1),(8286,57048,57079,'OP_ExpectClientAsCharacterReplyMs',22,1),(8287,57048,57079,'OP_ServerPlayCharacterRequestMsg',23,1),(8288,57048,57079,'OP_ServerPlayCharacterReplyMsg',24,1),(8289,57048,57079,'OP_ESInitMsg',25,1),(8290,57048,57079,'OP_ESReadyForClientsMsg',26,1),(8291,57048,57079,'OP_CreateZoneInstanceMsg',29,1),(8292,57048,57079,'OP_ZoneInstanceCreateReplyMsg',30,1),(8293,57048,57079,'OP_ZoneInstanceDestroyedMsg',31,1),(8294,57048,57079,'OP_ExpectClientAsCharacterRequest',32,1),(8295,57048,57079,'OP_ZoneInfoMsg',33,1),(8296,57048,57079,'OP_DoneLoadingZoneResourcesMsg',34,1),(8297,57048,57079,'OP_DoneSendingInitialEntitiesMsg',35,1),(8298,57048,57079,'OP_DoneLoadingEntityResourcesMsg',36,1),(8299,57048,57079,'OP_PredictionUpdateMsg',37,1),(8300,57048,57079,'OP_UpdatePositionMsg',39,1),(8301,57048,57079,'OP_SetRemoteCmdsMsg',41,1),(8302,57048,57079,'OP_RemoteCmdMsg',42,1),(8303,57048,57079,'OP_GameWorldTimeMsg',43,1),(8304,57048,57079,'OP_MOTDMsg',44,1),(8305,57048,57079,'OP_ZoneMOTDMsg',45,1),(8306,57048,57079,'OP_AvatarCreatedMsg',46,1),(8307,57048,57079,'OP_AvatarDestroyedMsg',47,1),(8308,57048,57079,'OP_RequestCampMsg',50,1),(8309,57048,57079,'OP_CampStartedMsg',51,1),(8310,57048,57079,'OP_CampAbortedMsg',52,1),(8311,57048,57079,'OP_WhoQueryRequestMsg',53,1),(8312,57048,57079,'OP_WhoQueryReplyMsg',54,1),(8313,57048,57079,'OP_MonitorReplyMsg',55,1),(8314,57048,57079,'OP_MonitorCharacterListMsg',56,1),(8315,57048,57079,'OP_MonitorCharacterListRequestMsg',57,1),(8316,57048,57079,'OP_ClientCmdMsg',58,1),(8317,57048,57079,'OP_DispatchESMsg',59,1),(8318,57048,57079,'OP_DispatchClientCmdMsg',60,1),(8319,57048,57079,'OP_UpdateTargetMsg',61,1),(8320,57048,57079,'OP_UpdateTargetLocMsg',62,1),(8321,57048,57079,'OP_UpdateCharacterSheetMsg',63,1),(8322,57048,57079,'OP_CharacterPet',64,1),(8323,57048,57079,'OP_CharacterMerc',65,1),(8324,57048,57079,'OP_UpdateSpellBookMsg',66,1),(8325,57048,57079,'OP_UpdateInventoryMsg',68,1),(8326,57048,57079,'OP_AfterInvSpellUpdate',69,1),(8327,57048,57079,'OP_UpdateRecipeBookMsg',70,1),(8328,57048,57079,'OP_RequestRecipeDetailsMsg',71,1),(8329,57048,57079,'OP_RecipeDetailsMsg',72,1),(8330,57048,57079,'OP_UpdateSkillBookMsg',73,1),(8331,57048,57079,'OP_UpdateSkillsMsg',74,1),(8332,57048,57079,'OP_UpdateOpportunityMsg',75,1),(8333,57048,57079,'OP_ChangeZoneMsg',77,1),(8334,57048,57079,'OP_ClientTeleportRequestMsg',78,1),(8335,57048,57079,'OP_TeleportWithinZoneMsg',79,1),(8336,57048,57079,'OP_TeleportWithinZoneNoReloadMsg',80,1),(8337,57048,57079,'OP_MigrateClientToZoneRequestMsg',81,1),(8338,57048,57079,'OP_MigrateClientToZoneReplyMsg',82,1),(8339,57048,57079,'OP_ReadyToZoneMsg',84,1),(8340,57048,57079,'OP_RemoveClientFromGroupMsg',85,1),(8341,57048,57079,'OP_RemoveGroupFromGroupMsg',86,1),(8342,57048,57079,'OP_MakeGroupLeaderMsg',87,1),(8343,57048,57079,'OP_GroupCreatedMsg',88,1),(8344,57048,57079,'OP_GroupDestroyedMsg',89,1),(8345,57048,57079,'OP_GroupMemberAddedMsg',90,1),(8346,57048,57079,'OP_GroupMemberRemovedMsg',91,1),(8347,57048,57079,'OP_GroupRemovedFromGroupMsg',92,1),(8348,57048,57079,'OP_GroupLeaderChangedMsg',93,1),(8349,57048,57079,'OP_GroupResendOOZDataMsg',94,1),(8350,57048,57079,'OP_GroupSettingsChangedMsg',95,1),(8351,57048,57079,'OP_OutOfZoneMemberDataMsg',96,1),(8352,57048,57079,'OP_SendLatestRequestMsg',97,1),(8353,57048,57079,'OP_ClearDataMsg',98,1),(8354,57048,57079,'OP_SetSocialMsg',99,1),(8355,57048,57079,'OP_ESStatusMsg',100,1),(8356,57048,57079,'OP_ESZoneInstanceStatusMsg',101,1),(8357,57048,57079,'OP_ZonesStatusRequestMsg',102,1),(8358,57048,57079,'OP_ZonesStatusMsg',103,1),(8359,57048,57079,'OP_ESWeatherRequestMsg',104,1),(8360,57048,57079,'OP_ESWeatherRequestEndMsg',105,1),(8361,57048,57079,'OP_DialogSelectMsg',109,1),(8362,57048,57079,'OP_DialogCloseMsg',110,1),(8363,57048,57079,'OP_RemoveSpellEffectMsg',111,1),(8364,57048,57079,'OP_RemoveConcentrationMsg',112,1),(8365,57048,57079,'OP_QuestJournalOpenMsg',113,1),(8366,57048,57079,'OP_QuestJournalInspectMsg',114,1),(8367,57048,57079,'OP_QuestJournalSetVisibleMsg',115,1),(8368,57048,57079,'OP_QuestJournalWaypointMsg',116,1),(8369,57048,57079,'OP_CreateGuildRequestMsg',119,1),(8370,57048,57079,'OP_CreateGuildReplyMsg',120,1),(8371,57048,57079,'OP_GuildsayMsg',121,1),(8372,57048,57079,'OP_FellowshipExpMsg',122,1),(8373,57048,57079,'OP_DeleteGuildMsg',123,1),(8374,57048,57079,'OP_GuildUpdateMsg',124,1),(8375,57048,57079,'OP_ConsignmentCloseStoreMsg',125,1),(8376,57048,57079,'OP_ConsignItemRequestMsg',126,1),(8377,57048,57079,'OP_ConsignItemResponseMsg',127,1),(8378,57048,57079,'OP_PurchaseConsignmentRequestMsg',128,1),(8379,57048,57079,'OP_LikeOption',136,1),(8380,57048,57079,'OP_PublishHouse',138,1),(8381,57048,57079,'OP_PlayerMadeInstancesScreen',139,1),(8382,57048,57079,'OP_PlayerMadeInstances',140,1),(8383,57048,57079,'OP_HouseDeletedRemotelyMsg',142,1),(8384,57048,57079,'OP_UpdateHouseDataMsg',143,1),(8385,57048,57079,'OP_UpdateHouseAccessDataMsg',144,1),(8386,57048,57079,'OP_PlayerHouseBaseScreenMsg',145,1),(8387,57048,57079,'OP_PlayerHousePurchaseScreenMsg',146,1),(8388,57048,57079,'OP_PlayerHouseAccessUpdateMsg',147,1),(8389,57048,57079,'OP_PlayerHouseDisplayStatusMsg',148,1),(8390,57048,57079,'OP_PlayerHouseCloseUIMsg',149,1),(8391,57048,57079,'OP_BuyPlayerHouseMsg',150,1),(8392,57048,57079,'OP_BuyPlayerHouseTintMsg',151,1),(8393,57048,57079,'OP_CollectAllHouseItemsMsg',152,1),(8394,57048,57079,'OP_RelinquishHouseMsg',153,1),(8395,57048,57079,'OP_EnterHouseMsg',154,1),(8396,57048,57079,'OP_ExitHouseMsg',155,1),(8397,57048,57079,'OP_HouseDefaultAccessSetMsg',156,1),(8398,57048,57079,'OP_HouseAccessSetMsg',157,1),(8399,57048,57079,'OP_HouseAccessRemoveMsg',158,1),(8400,57048,57079,'OP_PayHouseUpkeepMsg',159,1),(8401,57048,57079,'OP_MoveableObjectPlacementCriteri',160,1),(8402,57048,57079,'OP_EnterMoveObjectModeMsg',161,1),(8403,57048,57079,'OP_PositionMoveableObject',162,1),(8404,57048,57079,'OP_CancelMoveObjectModeMsg',163,1),(8405,57048,57079,'OP_ShaderCustomizationMsg',164,1),(8406,57048,57079,'OP_ReplaceableSubMeshesMsg',165,1),(8407,57048,57079,'OP_HouseCustomizationScreenMsg',166,1),(8408,57048,57079,'OP_CustomizationPurchaseRequestMs',167,1),(8409,57048,57079,'OP_CustomizationSetRequestMsg',168,1),(8410,57048,57079,'OP_CustomizationReplyMsg',169,1),(8411,57048,57079,'OP_TintWidgetsMsg',170,1),(8412,57048,57079,'OP_ExamineConsignmentRequestMsg',171,1),(8413,57048,57079,'OP_ExamineConsignmentResponseMsg',172,1),(8414,57048,57079,'OP_UISettingsResponseMsg',173,1),(8415,57048,57079,'OP_UIResetMsg',174,1),(8416,57048,57079,'OP_KeymapLoadMsg',175,1),(8417,57048,57079,'OP_KeymapNoneMsg',176,1),(8418,57048,57079,'OP_KeymapDataMsg',177,1),(8419,57048,57079,'OP_KeymapSaveMsg',178,1),(8420,57048,57079,'OP_DispatchSpellCmdMsg',179,1),(8421,57048,57079,'OP_EntityVerbsRequestMsg',180,1),(8422,57048,57079,'OP_EntityVerbsReplyMsg',181,1),(8423,57048,57079,'OP_EntityVerbsVerbMsg',182,1),(8424,57048,57079,'OP_ChatRelationshipUpdateMsg',184,1),(8425,57048,57079,'OP_LootItemsRequestMsg',185,1),(8426,57048,57079,'OP_StoppedLootingMsg',186,1),(8427,57048,57079,'OP_SitMsg',187,1),(8428,57048,57079,'OP_StandMsg',188,1),(8429,57048,57079,'OP_SatMsg',189,1),(8430,57048,57079,'OP_StoodMsg',190,1),(8431,57048,57079,'OP_ClearForTakeOffMsg',191,1),(8432,57048,57079,'OP_ReadyForTakeOffMsg',192,1),(8433,57048,57079,'OP_ShowIllusionsMsg',193,1),(8434,57048,57079,'OP_HideIllusionsMsg',194,1),(8435,57048,57079,'OP_ExamineItemRequestMsg',195,1),(8436,57048,57079,'OP_ReadBookPageMsg',196,1),(8437,57048,57079,'OP_DefaultGroupOptionsRequestMsg',197,1),(8438,57048,57079,'OP_DefaultGroupOptionsMsg',198,1),(8439,57048,57079,'OP_GroupOptionsMsg',199,1),(8440,57048,57079,'OP_DisplayGroupOptionsScreenMsg',200,1),(8441,57048,57079,'OP_PetOptions',201,1),(8442,57048,57079,'OP_DisplayInnVisitScreenMsg',202,1),(8443,57048,57079,'OP_DumpSchedulerMsg',203,1),(8444,57048,57079,'OP_LSCheckAcctLockMsg',204,1),(8445,57048,57079,'OP_WSAcctLockStatusMsg',205,1),(8446,57048,57079,'OP_RequestHelpRepathMsg',206,1),(8447,57048,57079,'OP_RequestTargetLocMsg',207,1),(8448,57048,57079,'OP_UpdateMotdMsg',208,1),(8449,57048,57079,'OP_DestUpdateReq',210,1),(8450,57048,57079,'OP_PerformPlayerKnockbackMsg',213,1),(8451,57048,57079,'OP_PerformCameraShakeMsg',214,1),(8452,57048,57079,'OP_PopulateSkillMapsMsg',215,1),(8453,57048,57079,'OP_CancelledFeignMsg',216,1),(8454,57048,57079,'OP_SysClient',218,1),(8455,57048,57079,'OP_ShowCreateFromRecipeUIMsg',219,1),(8456,57048,57079,'OP_CancelCreateFromRecipeMsg',220,1),(8457,57048,57079,'OP_BeginItemCreationMsg',221,1),(8458,57048,57079,'OP_StopItemCreationMsg',222,1),(8459,57048,57079,'OP_ShowItemCreationProcessUIMsg',223,1),(8460,57048,57079,'OP_UpdateItemCreationProcessUIMsg',224,1),(8461,57048,57079,'OP_DisplayTSEventReactionMsg',225,1),(8462,57048,57079,'OP_ShowRecipeBookMsg',226,1),(8463,57048,57079,'OP_KnowledgebaseRequestMsg',227,1),(8464,57048,57079,'OP_KnowledgebaseResponseMsg',228,1),(8465,57048,57079,'OP_CSTicketHeaderRequestMsg',229,1),(8466,57048,57079,'OP_CSTicketInfoMsg',230,1),(8467,57048,57079,'OP_CSTicketCommentRequestMsg',231,1),(8468,57048,57079,'OP_CSTicketCommentResponseMsg',232,1),(8469,57048,57079,'OP_CSTicketCreateMsg',233,1),(8470,57048,57079,'OP_CSTicketAddCommentMsg',234,1),(8471,57048,57079,'OP_CSTicketDeleteMsg',235,1),(8472,57048,57079,'OP_CSTicketChangeNotificationMsg',236,1),(8473,57048,57079,'OP_WorldDataUpdateMsg',237,1),(8474,57048,57079,'OP_KnownLanguagesMsg',238,1),(8475,57048,57079,'OP_LsRequestClientCrashLogMsg',239,1),(8476,57048,57079,'OP_LsClientBaselogReplyMsg',240,1),(8477,57048,57079,'OP_LsClientCrashlogReplyMsg',241,1),(8478,57048,57079,'OP_LsClientAlertlogReplyMsg',242,1),(8479,57048,57079,'OP_LsClientVerifylogReplyMsg',243,1),(8480,57048,57079,'OP_ClientTeleportToLocationMsg',244,1),(8481,57048,57079,'OP_UpdateClientPredFlagsMsg',245,1),(8482,57048,57079,'OP_ChangeServerControlFlagMsg',246,1),(8483,57048,57079,'OP_CSToolsRequestMsg',247,1),(8484,57048,57079,'OP_CSToolsResponseMsg',248,1),(8485,57048,57079,'OP_AddSocialStructureStandingMsg',249,1),(8486,57048,57079,'OP_CreateBoatTransportsMsg',250,1),(8487,57048,57079,'OP_PositionBoatTransportMsg',251,1),(8488,57048,57079,'OP_MigrateBoatTransportMsg',252,1),(8489,57048,57079,'OP_MigrateBoatTransportReplyMsg',253,1),(8490,57048,57079,'OP_DisplayDebugNLLPointsMsg',254,1),(8491,57048,57079,'OP_ExamineInfoRequestMsg',255,1),(8492,57048,57079,'OP_QuickbarInitMsg',256,1),(8493,57048,57079,'OP_QuickbarUpdateMsg',257,1),(8494,57048,57079,'OP_MacroInitMsg',258,1),(8495,57048,57079,'OP_MacroUpdateMsg',259,1),(8496,57048,57079,'OP_QuestionnaireMsg',260,1),(8497,57048,57079,'OP_LevelChangedMsg',261,1),(8498,57048,57079,'OP_SpellGainedMsg',262,1),(8499,57048,57079,'OP_EncounterBrokenMsg',263,1),(8500,57048,57079,'OP_OnscreenMsgMsg',264,1),(8501,57048,57079,'OP_DisplayWarningMsg',265,1),(8502,57048,57079,'OP_ModifyGuildMsg',266,1),(8503,57048,57079,'OP_GuildEventMsg',267,1),(8504,57048,57079,'OP_GuildEventAddMsg',268,1),(8505,57048,57079,'OP_GuildEventActionMsg',269,1),(8506,57048,57079,'OP_GuildEventListMsg',270,1),(8507,57048,57079,'OP_RequestGuildEventDetailsMsg',271,1),(8508,57048,57079,'OP_GuildEventDetailsMsg',272,1),(8509,57048,57079,'OP_RequestGuildInfoMsg',273,1),(8510,57048,57079,'OP_GuildBankActionMsg',274,1),(8511,57048,57079,'OP_GuildBankActionResponseMsg',275,1),(8512,57048,57079,'OP_GuildBankItemDetailsRequestMsg',276,1),(8513,57048,57079,'OP_GuildBankItemDetailsResponseMs',277,1),(8514,57048,57079,'OP_GuildBankUpdateMsg',278,1),(8515,57048,57079,'OP_GuildBankEventListMsg',279,1),(8516,57048,57079,'OP_RequestGuildBankEventDetailsMs',280,1),(8517,57048,57079,'OP_RewardPackMsg',281,1),(8518,57048,57079,'OP_RenameGuildMsg',282,1),(8519,57048,57079,'OP_ZoneToFriendRequestMsg',283,1),(8520,57048,57079,'OP_ZoneToFriendReplyMsg',284,1),(8521,57048,57079,'OP_ChatCreateChannelMsg',285,1),(8522,57048,57079,'OP_ChatJoinChannelMsg',286,1),(8523,57048,57079,'OP_ChatWhoChannelMsg',287,1),(8524,57048,57079,'OP_ChatLeaveChannelMsg',288,1),(8525,57048,57079,'OP_ChatTellChannelMsg',289,1),(8526,57048,57079,'OP_ChatTellUserMsg',290,1),(8527,57048,57079,'OP_ChatToggleFriendMsg',291,1),(8528,57048,57079,'OP_BrokerAddBag',292,1),(8529,57048,57079,'OP_BrokerRemoveBag',293,1),(8530,57048,57079,'OP_ChatToggleIgnoreMsg',294,1),(8531,57048,57079,'OP_ChatSendFriendsMsg',295,1),(8532,57048,57079,'OP_ChatSendIgnoresMsg',296,1),(8533,57048,57079,'OP_QuestReward',320,1),(8534,57048,57079,'OP_ChatFiltersMsg',335,1),(8535,57048,57079,'OP_MailGetMessageMsg',338,1),(8536,57048,57079,'OP_MailSendMessageMsg',339,1),(8537,57048,57079,'OP_MailDeleteMessageMsg',340,1),(8538,57048,57079,'OP_MailGetHeadersReplyMsg',341,1),(8539,57048,57079,'OP_MailGetMessageReplyMsg',342,1),(8540,57048,57079,'OP_MailSendMessageReplyMsg',343,1),(8541,57048,57079,'OP_MailCommitSendMessageMsg',344,1),(8542,57048,57079,'OP_MailSendSystemMessageMsg',345,1),(8543,57048,57079,'OP_MailRemoveAttachFromMailMsg',346,1),(8544,57048,57079,'OP_WaypointRequestMsg',348,1),(8545,57048,57079,'OP_WaypointReplyMsg',349,1),(8546,57048,57079,'OP_WaypointSelectMsg',350,1),(8547,57048,57079,'OP_WaypointUpdateMsg',351,1),(8548,57048,57079,'OP_CharNameChangedMsg',352,1),(8549,57048,57079,'OP_ShowZoneTeleporterDestinations',353,1),(8550,57048,57079,'OP_SelectZoneTeleporterDestinatio',354,1),(8551,57048,57079,'OP_ReloadLocalizedTxtMsg',355,1),(8552,57048,57079,'OP_RequestGuildMembershipMsg',356,1),(8553,57048,57079,'OP_GuildMembershipResponseMsg',357,1),(8554,57048,57079,'OP_LeaveGuildNotifyMsg',358,1),(8555,57048,57079,'OP_JoinGuildNotifyMsg',359,1),(8556,57048,57079,'OP_AvatarUpdateMsg',360,1),(8557,57048,57079,'OP_BioUpdateMsg',362,1),(8558,57048,57079,'OP_InspectPlayerMsg',363,1),(8559,57048,57079,'OP_WSServerLockMsg',364,1),(8560,57048,57079,'OP_LSServerLockMsg',365,1),(8561,57048,57079,'OP_WSServerHideMsg',366,1),(8562,57048,57079,'OP_CsCategoryRequestMsg',367,1),(8563,57048,57079,'OP_CsCategoryResponseMsg',368,1),(8564,57048,57079,'OP_KnowledgeWindowSlotMappingMsg',369,1),(8565,57048,57079,'OP_AFKUpdateMsg',370,1),(8566,57048,57079,'OP_AnonUpdateMsg',371,1),(8567,57048,57079,'OP_UpdateActivePublicZonesMsg',372,1),(8568,57048,57079,'OP_UnknownNpcMsg',373,1),(8569,57048,57079,'OP_PromoFlagsDetailsMsg',374,1),(8570,57048,57079,'OP_ConsignViewCreateMsg',375,1),(8571,57048,57079,'OP_ConsignViewGetPageMsg',376,1),(8572,57048,57079,'OP_ConsignViewReleaseMsg',377,1),(8573,57048,57079,'OP_ConsignRemoveItemsMsg',378,1),(8574,57048,57079,'OP_UpdateDebugRadiiMsg',379,1),(8575,57048,57079,'OP_ReportMsg',380,1),(8576,57048,57079,'OP_UpdateRaidMsg',381,1),(8577,57048,57079,'OP_ConsignViewSortMsg',383,1),(8578,57048,57079,'OP_TitleUpdateMsg',384,1),(8579,57048,57079,'OP_ClientFellMsg',385,1),(8580,57048,57079,'OP_ClientInDeathRegionMsg',386,1),(8581,57048,57079,'OP_CampClientMsg',387,1),(8582,57048,57079,'OP_CSToolAccessResponseMsg',388,1),(8583,57048,57079,'OP_UpdateGroupMemberDataMsg',388,1),(8584,57048,57079,'OP_TrackingUpdateMsg',389,1),(8585,57048,57079,'OP_BeginTrackingMsg',390,1),(8586,57048,57079,'OP_StopTrackingMsg',391,1),(8587,57048,57079,'OP_GetAvatarAccessRequestForCSToo',393,1),(8588,57048,57079,'OP_AdvancementRequestMsg',394,1),(8589,57048,57079,'OP_MapFogDataInitMsg',395,1),(8590,57048,57079,'OP_MapFogDataUpdateMsg',396,1),(8591,57048,57079,'OP_CloseGroupInviteWindowMsg',397,1),(8592,57048,57079,'OP_WorldPingMsg',399,1),(8593,57048,57079,'OP_MoveLogUpdateMsg',400,1),(8594,57048,57079,'OP_OfferQuestMsg',401,1),(8595,57048,57079,'OP_WorldShutdownUpdateMsg',403,1),(8596,57048,57079,'OP_DisplayMailScreenMsg',404,1),(8597,57048,57079,'OP_ClientIdleBeginMsg',405,1),(8598,57048,57079,'OP_ClientIdleEndMsg',406,1),(8599,57048,57079,'OP_PurchaseConsignmentLoreCheckRe',407,1),(8600,57048,57079,'OP_NotifyApprenticeStoppedMentori',408,1),(8601,57048,57079,'OP_CorruptedClientMsg',409,1),(8602,57048,57079,'OP_WorldDataChangeMsg',410,1),(8603,57048,57079,'OP_MailEventNotificationMsg',411,1),(8604,57048,57079,'OP_RestartZoneMsg',412,1),(8605,57048,57079,'OP_FlightPathsMsg',413,1),(8606,57048,57079,'OP_CharacterLinkdeadMsg',414,1),(8607,57048,57079,'OP_CharTransferStartRequestMsg',415,1),(8608,57048,57079,'OP_CharTransferStartReplyMsg',416,1),(8609,57048,57079,'OP_CharTransferRequestMsg',417,1),(8610,57048,57079,'OP_CharTransferReplyMsg',418,1),(8611,57048,57079,'OP_CharTransferRollbackRequestMsg',419,1),(8612,57048,57079,'OP_CharTransferCommitRequestMsg',420,1),(8613,57048,57079,'OP_CharTransferRollbackReplyMsg',421,1),(8614,57048,57079,'OP_CharTransferCommitReplyMsg',422,1),(8615,57048,57079,'OP_GetCharacterSerializedRequestM',423,1),(8616,57048,57079,'OP_GetCharacterSerializedReplyMsg',424,1),(8617,57048,57079,'OP_CreateCharFromCBBRequestMsg',425,1),(8618,57048,57079,'OP_CreateCharFromCBBReplyMsg',426,1),(8619,57048,57079,'OP_HousingDataChangedMsg',427,1),(8620,57048,57079,'OP_HousingRestoreMsg',428,1),(8621,57048,57079,'OP_AuctionItem',429,1),(8622,57048,57079,'OP_AuctionItemReply',430,1),(8623,57048,57079,'OP_AuctionCoin',431,1),(8624,57048,57079,'OP_AuctionCoinReply',432,1),(8625,57048,57079,'OP_AuctionCharacter',433,1),(8626,57048,57079,'OP_AuctionCharacterReply',434,1),(8627,57048,57079,'OP_AuctionCommitMsg',435,1),(8628,57048,57079,'OP_AuctionAbortMsg',436,1),(8629,57048,57079,'OP_CharTransferValidateRequestMsg',437,1),(8630,57048,57079,'OP_CharTransferValidateReplyMsg',438,1),(8631,57048,57079,'OP_RaceRestrictionMsg',439,1),(8632,57048,57079,'OP_SetInstanceDisplayNameMsg',440,1),(8633,57048,57079,'OP_GetAuctionAssetIDMsg',441,1),(8634,57048,57079,'OP_GetAuctionAssetIDReplyMsg',442,1),(8635,57048,57079,'OP_ResendWorldChannelsMsg',443,1),(8636,57048,57079,'OP_DisplayExchangeScreenMsg',444,1),(8637,57048,57079,'OP_ArenaGameTypesMsg',445,1),(8638,57048,57079,'OP_AuditAuctionEventMsg',446,1),(8639,57048,57079,'OP_InviteRequestMsg',447,1),(8640,57048,57079,'OP_InviteResponseMsg',448,1),(8641,57048,57079,'OP_InviteTargetResponseMsg',449,1),(8642,57048,57079,'OP_InspectPlayerRequestMsg',450,1),(8643,57048,57079,'OP_DispatchMsg',451,1),(8644,57048,57079,'OP_DisplayEventMsg',452,1),(8645,57048,57079,'OP_PrePossessionMsg',453,1),(8646,57048,57079,'OP_PostPossessionMsg',454,1),(8647,57048,57079,'OP_ArenaCreate',456,1),(8648,57048,57079,'OP_ArenaList',457,1),(8649,57048,57079,'OP_ArenaWindow',465,1),(8650,57048,57079,'OP_HouseItemsList',484,1),(8651,57048,57079,'OP_CurrentPet',485,1),(8652,57048,57079,'OP_AdventureList',488,1),(8653,57048,57079,'OP_CancelSpellCast',489,1),(8654,57048,57079,'OP_ClearForLandingMsg',491,1),(8655,57048,57079,'OP_UpdateTitleCmd',494,1),(8656,57048,57079,'OP_AttackAllowed',500,1),(8657,57048,57079,'OP_AttackNotAllowed',501,1),(8658,57048,57079,'OP_BagOptions',502,1),(8659,57048,57079,'OP_LFGGroupSearch',504,1),(8660,57048,57079,'OP_CharacterHousingList',507,1),(8661,57048,57079,'OP_DressingRoom',510,1),(8662,57048,57079,'OP_PlayLon',511,1),(8663,57048,57079,'OP_SkillInfoRequest',514,1),(8664,57048,57079,'OP_SkillInfoResponse',515,1),(8665,57048,57079,'OP_LFGUpdateMsg',518,1),(8666,57048,57079,'OP_BadLanguageFilter',519,1),(8667,57048,57079,'OP_VoiceChatChannel',520,1),(8668,57048,57079,'OP_MapRequest',521,1),(8669,57048,57079,'OP_MarketFundsUpdate',526,1),(8670,57048,57079,'OP_UIEvent',527,1),(8671,57048,57079,'OP_MarketAddFundsRequest',528,1),(8672,57048,57079,'OP_MarketAddFundsReply',529,1),(8673,57048,57079,'OP_MarketPurchase',531,1),(8674,57048,57079,'OP_MarketPlacePrices',532,1),(8675,57048,57079,'OP_MarketPlaceItems',537,1),(8676,57048,57079,'OP_RecipeBook',538,1),(8677,57048,57079,'OP_CreateCharacterDungeon',547,1),(8678,57048,57079,'OP_DungeonMakerEnter',548,1),(8679,57048,57079,'OP_DungeonMakerItemRequest',550,1),(8680,57048,57079,'OP_CharacterCreatedDungeons',551,1),(8681,57048,57079,'OP_DungeonMakerToolboxList',552,1),(8682,57048,57079,'OP_DungeonMakerUnknown',553,1),(8683,57048,57079,'OP_DungeonMakerUnknown1',554,1),(8684,57048,57079,'OP_PlayerPollPopup',556,1),(8685,57048,57079,'OP_PlayerPollAnswer',557,1),(8686,57048,57079,'OP_MentorPopup',558,1),(8687,57048,57079,'OP_LoadWelcomeWindow',560,1),(8688,57048,57079,'OP_OpenCharCust',561,1),(8689,57048,57079,'OP_SubmitCharCust',562,1),(8690,57048,57079,'OP_QueAllBgSolo',564,1),(8691,57048,57079,'OP_ZoneBgInstanceList',566,1),(8692,57048,57079,'OP_WorldTravelAvail',570,1),(8693,57048,57079,'OP_Launchpad',572,1),(8694,57048,57079,'OP_PaperdollImage',574,1),(8695,57048,57079,'OP_LoadCalendarEvents',575,1),(8696,57048,57079,'OP_VideoUploaded',576,1),(8697,57048,57079,'OP_SavageBarInitMsg',577,1),(8698,57048,57079,'OP_PetOptionsResponse',578,1),(8699,57048,57079,'OP_DungeonMakerItemResponse',579,1),(8700,57048,57079,'OP_CharacterMounts',581,1),(8701,57048,57079,'OP_RecipeListUnknown',590,1),(8702,57048,57079,'OP_EqBetaCopyRequest',596,1),(8703,57048,57079,'OP_EqHearChatCmd',597,1),(8704,57048,57079,'OP_EqDisplayTextCmd',598,1),(8705,57048,57079,'OP_EqCreateGhostCmd',599,1),(8706,57048,57079,'OP_EqCreateWidgetCmd',600,1),(8707,57048,57079,'OP_EqCreateSignWidgetCmd',601,1),(8708,57048,57079,'OP_EqDestroyGhostCmd',602,1),(8709,57048,57079,'OP_EqUpdateGhostCmd',603,1),(8710,57048,57079,'OP_EqSetControlGhostCmd',604,1),(8711,57048,57079,'OP_EqSetPOVGhostCmd',605,1),(8712,57048,57079,'OP_EqHearCombatCmd',606,1),(8713,57048,57079,'OP_EqHearSpellCastCmd',607,1),(8714,57048,57079,'OP_EQHearProcCmd',608,1),(8715,57048,57079,'OP_EQHearResEffectCmd',609,1),(8716,57048,57079,'OP_EqHearSpellInterruptCmd',610,1),(8717,57048,57079,'OP_EqHearSpellFizzleCmd',611,1),(8718,57048,57079,'OP_EqHearConsiderCmd',612,1),(8719,57048,57079,'OP_EqUpdateSubClassesCmd',613,1),(8720,57048,57079,'OP_EqCreateListBoxCmd',614,1),(8721,57048,57079,'OP_EqSetDebugPathPointsCmd',615,1),(8722,57048,57079,'OP_EqCannedEmoteCmd',617,1),(8723,57048,57079,'OP_EqStateCmd',618,1),(8724,57048,57079,'OP_EqPlaySoundCmd',619,1),(8725,57048,57079,'OP_EqPlaySound3DCmd',620,1),(8726,57048,57079,'OP_EqPlayVoiceCmd',621,1),(8727,57048,57079,'OP_EqHearDrowningCmd',622,1),(8728,57048,57079,'OP_EqHearDeathCmd',623,1),(8729,57048,57079,'OP_EqGroupMemberRemovedCmd',624,1),(8730,57048,57079,'OP_EqHearChainEffectCmd',625,1),(8731,57048,57079,'OP_EqReceiveOfferCmd',626,1),(8732,57048,57079,'OP_EqInspectPCResultsCmd',627,1),(8733,57048,57079,'OP_EqDrawablePathGraphCmd',628,1),(8734,57048,57079,'OP_EqDialogOpenCmd',629,1),(8735,57048,57079,'OP_EqDialogCloseCmd',630,1),(8736,57048,57079,'OP_EqFactionUpdateCmd',631,1),(8737,57048,57079,'OP_EqCollectionUpdateCmd',632,1),(8738,57048,57079,'OP_EqCollectionFilterCmd',633,1),(8739,57048,57079,'OP_EqCollectionItemCmd',634,1),(8740,57048,57079,'OP_EqQuestJournalUpdateCmd',635,1),(8741,57048,57079,'OP_EqMentoring',636,1),(8742,57048,57079,'OP_EqQuestJournalReplyCmd',637,1),(8743,57048,57079,'OP_EqQuestGroupCmd',638,1),(8744,57048,57079,'OP_EqUpdateMerchantCmd',639,1),(8745,57048,57079,'OP_EqUpdateStoreCmd',640,1),(8746,57048,57079,'OP_EqUpdatePlayerTradeCmd',641,1),(8747,57048,57079,'OP_EqHelpPathCmd',642,1),(8748,57048,57079,'OP_EqHelpPathClearCmd',643,1),(8749,57048,57079,'OP_EqUpdateBankCmd',644,1),(8750,57048,57079,'OP_EqExamineInfoCmd',645,1),(8751,57048,57079,'OP_EqCloseWindowCmd',646,1),(8752,57048,57079,'OP_EqUpdateLootCmd',647,1),(8753,57048,57079,'OP_EqJunctionListCmd',648,1),(8754,57048,57079,'OP_EqShowDeathWindowCmd',649,1),(8755,57048,57079,'OP_EqDisplaySpellFailCmd',650,1),(8756,57048,57079,'OP_EqSpellCastStartCmd',651,1),(8757,57048,57079,'OP_EqSpellCastEndCmd',652,1),(8758,57048,57079,'OP_EqResurrectedCmd',653,1),(8759,57048,57079,'OP_EqChoiceWinCmd',654,1),(8760,57048,57079,'OP_EqSetDefaultVerbCmd',655,1),(8761,57048,57079,'OP_EqInstructionWindowCmd',656,1),(8762,57048,57079,'OP_EqInstructionWindowCloseCmd',657,1),(8763,57048,57079,'OP_EqInstructionWindowGoalCmd',658,1),(8764,57048,57079,'OP_EqInstructionWindowTaskCmd',659,1),(8765,57048,57079,'OP_EqEnableGameEventCmd',660,1),(8766,57048,57079,'OP_EqShowWindowCmd',661,1),(8767,57048,57079,'OP_EqEnableWindowCmd',662,1),(8768,57048,57079,'OP_EqFlashWindowCmd',663,1),(8769,57048,57079,'OP_EqHearPlayFlavorCmd',665,1),(8770,57048,57079,'OP_EqUpdateSignWidgetCmd',666,1),(8771,57048,57079,'OP_EqDebugPVDCmd',667,1),(8772,57048,57079,'OP_EqShowBookCmd',668,1),(8773,57048,57079,'OP_EqQuestionnaireCmd',669,1),(8774,57048,57079,'OP_EqGetProbsCmd',671,1),(8775,57048,57079,'OP_EqHearHealCmd',672,1),(8776,57048,57079,'OP_EqChatChannelUpdateCmd',673,1),(8777,57048,57079,'OP_EqWhoChannelQueryReplyCmd',674,1),(8778,57048,57079,'OP_EqAvailWorldChannelsCmd',675,1),(8779,57048,57079,'OP_EqUpdateTargetCmd',676,1),(8780,57048,57079,'OP_BrokerSellList',677,1),(8781,57048,57079,'OP_EqConsignmentItemsCmd',678,1),(8782,57048,57079,'OP_EqStartBrokerCmd',680,1),(8783,57048,57079,'OP_EqMapExplorationCmd',681,1),(8784,57048,57079,'OP_EqStoreLogCmd',682,1),(8785,57048,57079,'OP_EqSpellMoveToRangeAndRetryCmd',683,1),(8786,57048,57079,'OP_EqUpdatePlayerMailCmd',684,1),(8787,57048,57079,'OP_GuildStatusUpdate',687,1),(8788,57048,57079,'OP_EqArenaResultsCmd',688,1),(8789,57048,57079,'OP_EqGuildBankEventActionCmd',689,1),(8790,57048,57079,'OP_EqGuildBankExamineInfoCmd',690,1),(8791,57048,57079,'OP_EqHearSpellNoLandCmd',691,1),(8792,57048,57079,'OP_Lottery',692,1),(8793,57048,57079,'OP_GuildRecruitingMemberInfo',693,1),(8794,57048,57079,'OP_GuildRecruiting',694,1),(8795,57048,57079,'OP_GuildRecruitingDetails',695,1),(8796,57048,57079,'OP_GuildRecruitingImage',696,1),(8797,57048,57079,'OP_TradeskillList',697,1),(8798,57048,57079,'OP_CharRenamed',698,1),(8799,57048,57079,'OP_UseAdornment',708,1),(8800,57048,57079,'OP_ExpPurchWindow',714,1),(8801,57048,57079,'OP_PointOfInterest',718,1),(8802,57048,57079,'OP_PointOfInterest2',719,1),(8803,57048,57079,'OP_TraitsList',720,1),(8804,57048,57079,'OP_CustomizeHouseDisplay',723,1),(8805,57048,57079,'OP_VoiceChatServer',724,1),(8806,57048,57079,'OP_SupplyDepot',728,1),(8807,57048,57079,'OP_EQHearThreatCmd',729,1),(8808,57048,57079,'OP_RecipeList',730,1),(8809,57048,57079,'OP_Research',731,1),(8810,57048,57079,'OP_CharacterCurrency',732,1),(8811,57048,57079,'OP_CharacterAchievements',733,1),(8812,57048,57079,'OP_AchievementUpdateMsg',734,1),(8813,57048,57079,'OP_EQHearDispellCmd',735,1),(8814,57048,57079,'OP_JournalQuestStoryline',736,1),(8815,57048,57079,'OP_DungeonPlayAsAvatarList',737,1),(8816,57048,57079,'OP_DungeonPlayAsAvatarSelected',738,1),(8817,57048,57079,'OP_MercHireWindow',739,1),(8818,57048,57079,'OP_MercUnknown',740,1),(8819,57048,57079,'OP_Unknown',753,1),(9289,57048,57079,'OP_DailyObjectives',594,1),(9290,1193,1195,'OP_Weakness',575,1),(9291,1198,1199,'OP_Weakness',575,1),(9292,1204,1205,'OP_Weakness',576,1),(9293,1208,1208,'OP_Weakness',577,1),(9294,57000,57002,'OP_Weakness',577,1),(9295,57003,57014,'OP_Weakness',578,1),(9296,57032,57047,'OP_Weakness',578,1),(9297,57048,57079,'OP_Weakness',580,1),(9298,57080,57095,'OP_LoginRequestMsg',0,1),(9299,57080,57095,'OP_LoginByNumRequestMsg',1,1),(9300,57080,57095,'OP_WSLoginRequestMsg',2,1),(9301,57080,57095,'OP_ESLoginRequestMsg',3,1),(9302,57080,57095,'OP_LoginReplyMsg',4,1),(9303,57080,57095,'OP_WSStatusReplyMsg',5,1),(9304,57080,57095,'OP_WorldStatusChangeMsg',6,1),(9305,57080,57095,'OP_AllWSDescRequestMsg',7,1),(9306,57080,57095,'OP_WorldListMsg',8,1),(9307,57080,57095,'OP_AllCharactersDescRequestMsg',9,1),(9308,57080,57095,'OP_AllCharactersDescReplyMsg',10,1),(9309,57080,57095,'OP_CreateCharacterRequestMsg',11,1),(9310,57080,57095,'OP_CreateCharacterReplyMsg',12,1),(9311,57080,57095,'OP_WSCreateCharacterRequestMsg',13,1),(9312,57080,57095,'OP_WSCreateCharacterReplyMsg',14,1),(9313,57080,57095,'OP_ReskinCharacterRequestMsg',15,1),(9314,57080,57095,'OP_DeleteCharacterRequestMsg',16,1),(9315,57080,57095,'OP_DeleteCharacterReplyMsg',17,1),(9316,57080,57095,'OP_PlayCharacterRequestMsg',18,1),(9317,57080,57095,'OP_PlayCharacterReplyMsg',19,1),(9318,57080,57095,'OP_ExpectClientAsCharacterReplyMs',22,1),(9319,57080,57095,'OP_ServerPlayCharacterRequestMsg',23,1),(9320,57080,57095,'OP_ServerPlayCharacterReplyMsg',24,1),(9321,57080,57095,'OP_ESInitMsg',25,1),(9322,57080,57095,'OP_ESReadyForClientsMsg',26,1),(9323,57080,57095,'OP_CreateZoneInstanceMsg',29,1),(9324,57080,57095,'OP_ZoneInstanceCreateReplyMsg',30,1),(9325,57080,57095,'OP_ZoneInstanceDestroyedMsg',31,1),(9326,57080,57095,'OP_ExpectClientAsCharacterRequest',32,1),(9327,57080,57095,'OP_ZoneInfoMsg',33,1),(9328,57080,57095,'OP_DoneLoadingZoneResourcesMsg',34,1),(9329,57080,57095,'OP_DoneSendingInitialEntitiesMsg',35,1),(9330,57080,57095,'OP_DoneLoadingEntityResourcesMsg',36,1),(9331,57080,57095,'OP_PredictionUpdateMsg',37,1),(9332,57080,57095,'OP_UpdatePositionMsg',39,1),(9333,57080,57095,'OP_SetRemoteCmdsMsg',41,1),(9334,57080,57095,'OP_RemoteCmdMsg',42,1),(9335,57080,57095,'OP_GameWorldTimeMsg',43,1),(9336,57080,57095,'OP_MOTDMsg',44,1),(9337,57080,57095,'OP_ZoneMOTDMsg',45,1),(9338,57080,57095,'OP_AvatarCreatedMsg',46,1),(9339,57080,57095,'OP_AvatarDestroyedMsg',47,1),(9340,57080,57095,'OP_RequestCampMsg',50,1),(9341,57080,57095,'OP_CampStartedMsg',51,1),(9342,57080,57095,'OP_CampAbortedMsg',52,1),(9343,57080,57095,'OP_WhoQueryRequestMsg',53,1),(9344,57080,57095,'OP_WhoQueryReplyMsg',54,1),(9345,57080,57095,'OP_MonitorReplyMsg',55,1),(9346,57080,57095,'OP_MonitorCharacterListMsg',56,1),(9347,57080,57095,'OP_MonitorCharacterListRequestMsg',57,1),(9348,57080,57095,'OP_ClientCmdMsg',58,1),(9349,57080,57095,'OP_DispatchESMsg',59,1),(9350,57080,57095,'OP_DispatchClientCmdMsg',60,1),(9351,57080,57095,'OP_UpdateTargetMsg',61,1),(9352,57080,57095,'OP_UpdateTargetLocMsg',62,1),(9353,57080,57095,'OP_UpdateCharacterSheetMsg',63,1),(9354,57080,57095,'OP_CharacterPet',64,1),(9355,57080,57095,'OP_CharacterMerc',65,1),(9356,57080,57095,'OP_UpdateSpellBookMsg',66,1),(9357,57080,57095,'OP_UpdateInventoryMsg',68,1),(9358,57080,57095,'OP_AfterInvSpellUpdate',69,1),(9359,57080,57095,'OP_UpdateRecipeBookMsg',70,1),(9360,57080,57095,'OP_RequestRecipeDetailsMsg',71,1),(9361,57080,57095,'OP_RecipeDetailsMsg',72,1),(9362,57080,57095,'OP_UpdateSkillBookMsg',73,1),(9363,57080,57095,'OP_UpdateSkillsMsg',74,1),(9364,57080,57095,'OP_UpdateOpportunityMsg',75,1),(9365,57080,57095,'OP_ChangeZoneMsg',77,1),(9366,57080,57095,'OP_ClientTeleportRequestMsg',78,1),(9367,57080,57095,'OP_TeleportWithinZoneMsg',79,1),(9368,57080,57095,'OP_TeleportWithinZoneNoReloadMsg',80,1),(9369,57080,57095,'OP_MigrateClientToZoneRequestMsg',81,1),(9370,57080,57095,'OP_MigrateClientToZoneReplyMsg',82,1),(9371,57080,57095,'OP_ReadyToZoneMsg',84,1),(9372,57080,57095,'OP_RemoveClientFromGroupMsg',85,1),(9373,57080,57095,'OP_RemoveGroupFromGroupMsg',86,1),(9374,57080,57095,'OP_MakeGroupLeaderMsg',87,1),(9375,57080,57095,'OP_GroupCreatedMsg',88,1),(9376,57080,57095,'OP_GroupDestroyedMsg',89,1),(9377,57080,57095,'OP_GroupMemberAddedMsg',90,1),(9378,57080,57095,'OP_GroupMemberRemovedMsg',91,1),(9379,57080,57095,'OP_GroupRemovedFromGroupMsg',92,1),(9380,57080,57095,'OP_GroupLeaderChangedMsg',93,1),(9381,57080,57095,'OP_GroupResendOOZDataMsg',94,1),(9382,57080,57095,'OP_GroupSettingsChangedMsg',95,1),(9383,57080,57095,'OP_OutOfZoneMemberDataMsg',96,1),(9384,57080,57095,'OP_SendLatestRequestMsg',97,1),(9385,57080,57095,'OP_ClearDataMsg',98,1),(9386,57080,57095,'OP_SetSocialMsg',99,1),(9387,57080,57095,'OP_ESStatusMsg',100,1),(9388,57080,57095,'OP_ESZoneInstanceStatusMsg',101,1),(9389,57080,57095,'OP_ZonesStatusRequestMsg',102,1),(9390,57080,57095,'OP_ZonesStatusMsg',103,1),(9391,57080,57095,'OP_ESWeatherRequestMsg',104,1),(9392,57080,57095,'OP_ESWeatherRequestEndMsg',105,1),(9393,57080,57095,'OP_DialogSelectMsg',109,1),(9394,57080,57095,'OP_DialogCloseMsg',110,1),(9395,57080,57095,'OP_RemoveSpellEffectMsg',111,1),(9396,57080,57095,'OP_RemoveConcentrationMsg',112,1),(9397,57080,57095,'OP_QuestJournalOpenMsg',113,1),(9398,57080,57095,'OP_QuestJournalInspectMsg',114,1),(9399,57080,57095,'OP_QuestJournalSetVisibleMsg',115,1),(9400,57080,57095,'OP_QuestJournalWaypointMsg',116,1),(9401,57080,57095,'OP_CreateGuildRequestMsg',119,1),(9402,57080,57095,'OP_CreateGuildReplyMsg',120,1),(9403,57080,57095,'OP_GuildsayMsg',121,1),(9404,57080,57095,'OP_FellowshipExpMsg',122,1),(9405,57080,57095,'OP_DeleteGuildMsg',123,1),(9406,57080,57095,'OP_GuildUpdateMsg',124,1),(9407,57080,57095,'OP_ConsignmentCloseStoreMsg',125,1),(9408,57080,57095,'OP_ConsignItemRequestMsg',126,1),(9409,57080,57095,'OP_ConsignItemResponseMsg',127,1),(9410,57080,57095,'OP_PurchaseConsignmentRequestMsg',128,1),(9411,57080,57095,'OP_LikeOption',136,1),(9412,57080,57095,'OP_PublishHouse',138,1),(9413,57080,57095,'OP_PlayerMadeInstancesScreen',139,1),(9414,57080,57095,'OP_PlayerMadeInstances',140,1),(9415,57080,57095,'OP_HouseDeletedRemotelyMsg',142,1),(9416,57080,57095,'OP_UpdateHouseDataMsg',143,1),(9417,57080,57095,'OP_UpdateHouseAccessDataMsg',144,1),(9418,57080,57095,'OP_PlayerHouseBaseScreenMsg',145,1),(9419,57080,57095,'OP_PlayerHousePurchaseScreenMsg',146,1),(9420,57080,57095,'OP_PlayerHouseAccessUpdateMsg',147,1),(9421,57080,57095,'OP_PlayerHouseDisplayStatusMsg',148,1),(9422,57080,57095,'OP_PlayerHouseCloseUIMsg',149,1),(9423,57080,57095,'OP_BuyPlayerHouseMsg',150,1),(9424,57080,57095,'OP_BuyPlayerHouseTintMsg',151,1),(9425,57080,57095,'OP_CollectAllHouseItemsMsg',152,1),(9426,57080,57095,'OP_RelinquishHouseMsg',153,1),(9427,57080,57095,'OP_EnterHouseMsg',154,1),(9428,57080,57095,'OP_ExitHouseMsg',155,1),(9429,57080,57095,'OP_HouseDefaultAccessSetMsg',156,1),(9430,57080,57095,'OP_HouseAccessSetMsg',157,1),(9431,57080,57095,'OP_HouseAccessRemoveMsg',158,1),(9432,57080,57095,'OP_PayHouseUpkeepMsg',159,1),(9433,57080,57095,'OP_MoveableObjectPlacementCriteri',160,1),(9434,57080,57095,'OP_EnterMoveObjectModeMsg',161,1),(9435,57080,57095,'OP_PositionMoveableObject',162,1),(9436,57080,57095,'OP_CancelMoveObjectModeMsg',163,1),(9437,57080,57095,'OP_ShaderCustomizationMsg',164,1),(9438,57080,57095,'OP_ReplaceableSubMeshesMsg',165,1),(9439,57080,57095,'OP_HouseCustomizationScreenMsg',166,1),(9440,57080,57095,'OP_CustomizationPurchaseRequestMs',167,1),(9441,57080,57095,'OP_CustomizationSetRequestMsg',168,1),(9442,57080,57095,'OP_CustomizationReplyMsg',169,1),(9443,57080,57095,'OP_TintWidgetsMsg',170,1),(9444,57080,57095,'OP_ExamineConsignmentRequestMsg',171,1),(9445,57080,57095,'OP_ExamineConsignmentResponseMsg',172,1),(9446,57080,57095,'OP_UISettingsResponseMsg',173,1),(9447,57080,57095,'OP_UIResetMsg',174,1),(9448,57080,57095,'OP_KeymapLoadMsg',175,1),(9449,57080,57095,'OP_KeymapNoneMsg',176,1),(9450,57080,57095,'OP_KeymapDataMsg',177,1),(9451,57080,57095,'OP_KeymapSaveMsg',178,1),(9452,57080,57095,'OP_DispatchSpellCmdMsg',179,1),(9453,57080,57095,'OP_EntityVerbsRequestMsg',180,1),(9454,57080,57095,'OP_EntityVerbsReplyMsg',181,1),(9455,57080,57095,'OP_EntityVerbsVerbMsg',182,1),(9456,57080,57095,'OP_ChatRelationshipUpdateMsg',184,1),(9457,57080,57095,'OP_LootItemsRequestMsg',185,1),(9458,57080,57095,'OP_StoppedLootingMsg',186,1),(9459,57080,57095,'OP_SitMsg',187,1),(9460,57080,57095,'OP_StandMsg',188,1),(9461,57080,57095,'OP_SatMsg',189,1),(9462,57080,57095,'OP_StoodMsg',190,1),(9463,57080,57095,'OP_ClearForTakeOffMsg',191,1),(9464,57080,57095,'OP_ReadyForTakeOffMsg',192,1),(9465,57080,57095,'OP_ShowIllusionsMsg',193,1),(9466,57080,57095,'OP_HideIllusionsMsg',194,1),(9467,57080,57095,'OP_ExamineItemRequestMsg',195,1),(9468,57080,57095,'OP_ReadBookPageMsg',196,1),(9469,57080,57095,'OP_DefaultGroupOptionsRequestMsg',197,1),(9470,57080,57095,'OP_DefaultGroupOptionsMsg',198,1),(9471,57080,57095,'OP_GroupOptionsMsg',199,1),(9472,57080,57095,'OP_DisplayGroupOptionsScreenMsg',200,1),(9473,57080,57095,'OP_PetOptions',201,1),(9474,57080,57095,'OP_DisplayInnVisitScreenMsg',202,1),(9475,57080,57095,'OP_DumpSchedulerMsg',203,1),(9476,57080,57095,'OP_LSCheckAcctLockMsg',204,1),(9477,57080,57095,'OP_WSAcctLockStatusMsg',205,1),(9478,57080,57095,'OP_RequestHelpRepathMsg',206,1),(9479,57080,57095,'OP_RequestTargetLocMsg',207,1),(9480,57080,57095,'OP_UpdateMotdMsg',208,1),(9481,57080,57095,'OP_DestUpdateReq',210,1),(9482,57080,57095,'OP_PerformPlayerKnockbackMsg',213,1),(9483,57080,57095,'OP_PerformCameraShakeMsg',214,1),(9484,57080,57095,'OP_PopulateSkillMapsMsg',215,1),(9485,57080,57095,'OP_CancelledFeignMsg',216,1),(9486,57080,57095,'OP_SysClient',218,1),(9487,57080,57095,'OP_ShowCreateFromRecipeUIMsg',219,1),(9488,57080,57095,'OP_CancelCreateFromRecipeMsg',220,1),(9489,57080,57095,'OP_BeginItemCreationMsg',221,1),(9490,57080,57095,'OP_StopItemCreationMsg',222,1),(9491,57080,57095,'OP_ShowItemCreationProcessUIMsg',223,1),(9492,57080,57095,'OP_UpdateItemCreationProcessUIMsg',224,1),(9493,57080,57095,'OP_DisplayTSEventReactionMsg',225,1),(9494,57080,57095,'OP_ShowRecipeBookMsg',226,1),(9495,57080,57095,'OP_KnowledgebaseRequestMsg',227,1),(9496,57080,57095,'OP_KnowledgebaseResponseMsg',228,1),(9497,57080,57095,'OP_CSTicketHeaderRequestMsg',229,1),(9498,57080,57095,'OP_CSTicketInfoMsg',230,1),(9499,57080,57095,'OP_CSTicketCommentRequestMsg',231,1),(9500,57080,57095,'OP_CSTicketCommentResponseMsg',232,1),(9501,57080,57095,'OP_CSTicketCreateMsg',233,1),(9502,57080,57095,'OP_CSTicketAddCommentMsg',234,1),(9503,57080,57095,'OP_CSTicketDeleteMsg',235,1),(9504,57080,57095,'OP_CSTicketChangeNotificationMsg',236,1),(9505,57080,57095,'OP_WorldDataUpdateMsg',237,1),(9506,57080,57095,'OP_KnownLanguagesMsg',238,1),(9507,57080,57095,'OP_LsRequestClientCrashLogMsg',239,1),(9508,57080,57095,'OP_LsClientBaselogReplyMsg',240,1),(9509,57080,57095,'OP_LsClientCrashlogReplyMsg',241,1),(9510,57080,57095,'OP_LsClientAlertlogReplyMsg',242,1),(9511,57080,57095,'OP_LsClientVerifylogReplyMsg',243,1),(9512,57080,57095,'OP_ClientTeleportToLocationMsg',244,1),(9513,57080,57095,'OP_UpdateClientPredFlagsMsg',245,1),(9514,57080,57095,'OP_ChangeServerControlFlagMsg',246,1),(9515,57080,57095,'OP_CSToolsRequestMsg',247,1),(9516,57080,57095,'OP_CSToolsResponseMsg',248,1),(9517,57080,57095,'OP_AddSocialStructureStandingMsg',249,1),(9518,57080,57095,'OP_CreateBoatTransportsMsg',250,1),(9519,57080,57095,'OP_PositionBoatTransportMsg',251,1),(9520,57080,57095,'OP_MigrateBoatTransportMsg',252,1),(9521,57080,57095,'OP_MigrateBoatTransportReplyMsg',253,1),(9522,57080,57095,'OP_DisplayDebugNLLPointsMsg',254,1),(9523,57080,57095,'OP_ExamineInfoRequestMsg',255,1),(9524,57080,57095,'OP_QuickbarInitMsg',256,1),(9525,57080,57095,'OP_QuickbarUpdateMsg',257,1),(9526,57080,57095,'OP_MacroInitMsg',258,1),(9527,57080,57095,'OP_MacroUpdateMsg',259,1),(9528,57080,57095,'OP_QuestionnaireMsg',260,1),(9529,57080,57095,'OP_LevelChangedMsg',261,1),(9530,57080,57095,'OP_SpellGainedMsg',262,1),(9531,57080,57095,'OP_EncounterBrokenMsg',263,1),(9532,57080,57095,'OP_OnscreenMsgMsg',264,1),(9533,57080,57095,'OP_DisplayWarningMsg',265,1),(9534,57080,57095,'OP_ModifyGuildMsg',266,1),(9535,57080,57095,'OP_GuildEventMsg',267,1),(9536,57080,57095,'OP_GuildEventAddMsg',268,1),(9537,57080,57095,'OP_GuildEventActionMsg',269,1),(9538,57080,57095,'OP_GuildEventListMsg',270,1),(9539,57080,57095,'OP_RequestGuildEventDetailsMsg',271,1),(9540,57080,57095,'OP_GuildEventDetailsMsg',272,1),(9541,57080,57095,'OP_RequestGuildInfoMsg',273,1),(9542,57080,57095,'OP_GuildBankActionMsg',274,1),(9543,57080,57095,'OP_GuildBankActionResponseMsg',275,1),(9544,57080,57095,'OP_GuildBankItemDetailsRequestMsg',276,1),(9545,57080,57095,'OP_GuildBankItemDetailsResponseMs',277,1),(9546,57080,57095,'OP_GuildBankUpdateMsg',278,1),(9547,57080,57095,'OP_GuildBankEventListMsg',279,1),(9548,57080,57095,'OP_RequestGuildBankEventDetailsMs',280,1),(9549,57080,57095,'OP_RewardPackMsg',281,1),(9550,57080,57095,'OP_RenameGuildMsg',282,1),(9551,57080,57095,'OP_ZoneToFriendRequestMsg',283,1),(9552,57080,57095,'OP_ZoneToFriendReplyMsg',284,1),(9553,57080,57095,'OP_ChatCreateChannelMsg',285,1),(9554,57080,57095,'OP_ChatJoinChannelMsg',286,1),(9555,57080,57095,'OP_ChatWhoChannelMsg',287,1),(9556,57080,57095,'OP_ChatLeaveChannelMsg',288,1),(9557,57080,57095,'OP_ChatTellChannelMsg',289,1),(9558,57080,57095,'OP_ChatTellUserMsg',290,1),(9559,57080,57095,'OP_ChatToggleFriendMsg',291,1),(9560,57080,57095,'OP_BrokerAddBag',292,1),(9561,57080,57095,'OP_BrokerRemoveBag',293,1),(9562,57080,57095,'OP_ChatToggleIgnoreMsg',294,1),(9563,57080,57095,'OP_ChatSendFriendsMsg',295,1),(9564,57080,57095,'OP_ChatSendIgnoresMsg',296,1),(9565,57080,57095,'OP_QuestReward',320,1),(9566,57080,57095,'OP_ChatFiltersMsg',335,1),(9567,57080,57095,'OP_MailGetMessageMsg',338,1),(9568,57080,57095,'OP_MailSendMessageMsg',339,1),(9569,57080,57095,'OP_MailDeleteMessageMsg',340,1),(9570,57080,57095,'OP_MailGetHeadersReplyMsg',341,1),(9571,57080,57095,'OP_MailGetMessageReplyMsg',342,1),(9572,57080,57095,'OP_MailSendMessageReplyMsg',343,1),(9573,57080,57095,'OP_MailCommitSendMessageMsg',344,1),(9574,57080,57095,'OP_MailSendSystemMessageMsg',345,1),(9575,57080,57095,'OP_MailRemoveAttachFromMailMsg',346,1),(9576,57080,57095,'OP_WaypointRequestMsg',348,1),(9577,57080,57095,'OP_WaypointReplyMsg',349,1),(9578,57080,57095,'OP_WaypointSelectMsg',350,1),(9579,57080,57095,'OP_WaypointUpdateMsg',351,1),(9580,57080,57095,'OP_CharNameChangedMsg',352,1),(9581,57080,57095,'OP_ShowZoneTeleporterDestinations',353,1),(9582,57080,57095,'OP_SelectZoneTeleporterDestinatio',354,1),(9583,57080,57095,'OP_ReloadLocalizedTxtMsg',355,1),(9584,57080,57095,'OP_RequestGuildMembershipMsg',356,1),(9585,57080,57095,'OP_GuildMembershipResponseMsg',357,1),(9586,57080,57095,'OP_LeaveGuildNotifyMsg',358,1),(9587,57080,57095,'OP_JoinGuildNotifyMsg',359,1),(9588,57080,57095,'OP_AvatarUpdateMsg',360,1),(9589,57080,57095,'OP_BioUpdateMsg',362,1),(9590,57080,57095,'OP_InspectPlayerMsg',363,1),(9591,57080,57095,'OP_WSServerLockMsg',364,1),(9592,57080,57095,'OP_LSServerLockMsg',365,1),(9593,57080,57095,'OP_WSServerHideMsg',366,1),(9594,57080,57095,'OP_CsCategoryRequestMsg',367,1),(9595,57080,57095,'OP_CsCategoryResponseMsg',368,1),(9596,57080,57095,'OP_KnowledgeWindowSlotMappingMsg',369,1),(9597,57080,57095,'OP_AFKUpdateMsg',370,1),(9598,57080,57095,'OP_AnonUpdateMsg',371,1),(9599,57080,57095,'OP_UpdateActivePublicZonesMsg',372,1),(9600,57080,57095,'OP_UnknownNpcMsg',373,1),(9601,57080,57095,'OP_PromoFlagsDetailsMsg',374,1),(9602,57080,57095,'OP_ConsignViewCreateMsg',375,1),(9603,57080,57095,'OP_ConsignViewGetPageMsg',376,1),(9604,57080,57095,'OP_ConsignViewReleaseMsg',377,1),(9605,57080,57095,'OP_ConsignRemoveItemsMsg',378,1),(9606,57080,57095,'OP_UpdateDebugRadiiMsg',379,1),(9607,57080,57095,'OP_ReportMsg',380,1),(9608,57080,57095,'OP_UpdateRaidMsg',381,1),(9609,57080,57095,'OP_ConsignViewSortMsg',383,1),(9610,57080,57095,'OP_TitleUpdateMsg',384,1),(9611,57080,57095,'OP_ClientFellMsg',385,1),(9612,57080,57095,'OP_ClientInDeathRegionMsg',386,1),(9613,57080,57095,'OP_CampClientMsg',387,1),(9614,57080,57095,'OP_CSToolAccessResponseMsg',388,1),(9615,57080,57095,'OP_UpdateGroupMemberDataMsg',388,1),(9616,57080,57095,'OP_TrackingUpdateMsg',389,1),(9617,57080,57095,'OP_BeginTrackingMsg',390,1),(9618,57080,57095,'OP_StopTrackingMsg',391,1),(9619,57080,57095,'OP_GetAvatarAccessRequestForCSToo',393,1),(9620,57080,57095,'OP_AdvancementRequestMsg',394,1),(9621,57080,57095,'OP_MapFogDataInitMsg',395,1),(9622,57080,57095,'OP_MapFogDataUpdateMsg',396,1),(9623,57080,57095,'OP_CloseGroupInviteWindowMsg',397,1),(9624,57080,57095,'OP_WorldPingMsg',399,1),(9625,57080,57095,'OP_MoveLogUpdateMsg',400,1),(9626,57080,57095,'OP_OfferQuestMsg',401,1),(9627,57080,57095,'OP_WorldShutdownUpdateMsg',403,1),(9628,57080,57095,'OP_DisplayMailScreenMsg',404,1),(9629,57080,57095,'OP_ClientIdleBeginMsg',405,1),(9630,57080,57095,'OP_ClientIdleEndMsg',406,1),(9631,57080,57095,'OP_PurchaseConsignmentLoreCheckRe',407,1),(9632,57080,57095,'OP_NotifyApprenticeStoppedMentori',408,1),(9633,57080,57095,'OP_CorruptedClientMsg',409,1),(9634,57080,57095,'OP_WorldDataChangeMsg',410,1),(9635,57080,57095,'OP_MailEventNotificationMsg',411,1),(9636,57080,57095,'OP_RestartZoneMsg',412,1),(9637,57080,57095,'OP_FlightPathsMsg',413,1),(9638,57080,57095,'OP_CharacterLinkdeadMsg',414,1),(9639,57080,57095,'OP_CharTransferStartRequestMsg',415,1),(9640,57080,57095,'OP_CharTransferStartReplyMsg',416,1),(9641,57080,57095,'OP_CharTransferRequestMsg',417,1),(9642,57080,57095,'OP_CharTransferReplyMsg',418,1),(9643,57080,57095,'OP_CharTransferRollbackRequestMsg',419,1),(9644,57080,57095,'OP_CharTransferCommitRequestMsg',420,1),(9645,57080,57095,'OP_CharTransferRollbackReplyMsg',421,1),(9646,57080,57095,'OP_CharTransferCommitReplyMsg',422,1),(9647,57080,57095,'OP_GetCharacterSerializedRequestM',423,1),(9648,57080,57095,'OP_GetCharacterSerializedReplyMsg',424,1),(9649,57080,57095,'OP_CreateCharFromCBBRequestMsg',425,1),(9650,57080,57095,'OP_CreateCharFromCBBReplyMsg',426,1),(9651,57080,57095,'OP_HousingDataChangedMsg',427,1),(9652,57080,57095,'OP_HousingRestoreMsg',428,1),(9653,57080,57095,'OP_AuctionItem',429,1),(9654,57080,57095,'OP_AuctionItemReply',430,1),(9655,57080,57095,'OP_AuctionCoin',431,1),(9656,57080,57095,'OP_AuctionCoinReply',432,1),(9657,57080,57095,'OP_AuctionCharacter',433,1),(9658,57080,57095,'OP_AuctionCharacterReply',434,1),(9659,57080,57095,'OP_AuctionCommitMsg',435,1),(9660,57080,57095,'OP_AuctionAbortMsg',436,1),(9661,57080,57095,'OP_CharTransferValidateRequestMsg',437,1),(9662,57080,57095,'OP_CharTransferValidateReplyMsg',438,1),(9663,57080,57095,'OP_RaceRestrictionMsg',439,1),(9664,57080,57095,'OP_SetInstanceDisplayNameMsg',440,1),(9665,57080,57095,'OP_GetAuctionAssetIDMsg',441,1),(9666,57080,57095,'OP_GetAuctionAssetIDReplyMsg',442,1),(9667,57080,57095,'OP_ResendWorldChannelsMsg',443,1),(9668,57080,57095,'OP_DisplayExchangeScreenMsg',444,1),(9669,57080,57095,'OP_ArenaGameTypesMsg',445,1),(9670,57080,57095,'OP_AuditAuctionEventMsg',446,1),(9671,57080,57095,'OP_InviteRequestMsg',447,1),(9672,57080,57095,'OP_InviteResponseMsg',448,1),(9673,57080,57095,'OP_InviteTargetResponseMsg',449,1),(9674,57080,57095,'OP_InspectPlayerRequestMsg',450,1),(9675,57080,57095,'OP_DispatchMsg',451,1),(9676,57080,57095,'OP_DisplayEventMsg',452,1),(9677,57080,57095,'OP_PrePossessionMsg',453,1),(9678,57080,57095,'OP_PostPossessionMsg',454,1),(9679,57080,57095,'OP_ArenaCreate',456,1),(9680,57080,57095,'OP_ArenaList',457,1),(9681,57080,57095,'OP_ArenaWindow',465,1),(9682,57080,57095,'OP_HouseItemsList',484,1),(9683,57080,57095,'OP_CurrentPet',485,1),(9684,57080,57095,'OP_AdventureList',488,1),(9685,57080,57095,'OP_CancelSpellCast',489,1),(9686,57080,57095,'OP_ClearForLandingMsg',491,1),(9687,57080,57095,'OP_UpdateTitleCmd',494,1),(9688,57080,57095,'OP_AttackAllowed',500,1),(9689,57080,57095,'OP_AttackNotAllowed',501,1),(9690,57080,57095,'OP_BagOptions',502,1),(9691,57080,57095,'OP_LFGGroupSearch',504,1),(9692,57080,57095,'OP_CharacterHousingList',507,1),(9693,57080,57095,'OP_DressingRoom',510,1),(9694,57080,57095,'OP_PlayLon',511,1),(9695,57080,57095,'OP_SkillInfoRequest',514,1),(9696,57080,57095,'OP_SkillInfoResponse',515,1),(9697,57080,57095,'OP_LFGUpdateMsg',518,1),(9698,57080,57095,'OP_BadLanguageFilter',519,1),(9699,57080,57095,'OP_VoiceChatChannel',520,1),(9700,57080,57095,'OP_MapRequest',521,1),(9701,57080,57095,'OP_MarketFundsUpdate',526,1),(9702,57080,57095,'OP_UIEvent',527,1),(9703,57080,57095,'OP_MarketAddFundsRequest',528,1),(9704,57080,57095,'OP_MarketAddFundsReply',529,1),(9705,57080,57095,'OP_MarketPurchase',531,1),(9706,57080,57095,'OP_MarketPlacePrices',532,1),(9707,57080,57095,'OP_MarketPlaceItems',537,1),(9708,57080,57095,'OP_RecipeBook',538,1),(9709,57080,57095,'OP_CreateCharacterDungeon',547,1),(9710,57080,57095,'OP_DungeonMakerEnter',548,1),(9711,57080,57095,'OP_DungeonMakerItemRequest',550,1),(9712,57080,57095,'OP_CharacterCreatedDungeons',551,1),(9713,57080,57095,'OP_DungeonMakerToolboxList',552,1),(9714,57080,57095,'OP_DungeonMakerUnknown',553,1),(9715,57080,57095,'OP_DungeonMakerUnknown1',554,1),(9716,57080,57095,'OP_PlayerPollPopup',556,1),(9717,57080,57095,'OP_PlayerPollAnswer',557,1),(9718,57080,57095,'OP_MentorPopup',558,1),(9719,57080,57095,'OP_LoadWelcomeWindow',560,1),(9720,57080,57095,'OP_OpenCharCust',561,1),(9721,57080,57095,'OP_SubmitCharCust',562,1),(9722,57080,57095,'OP_QueAllBgSolo',564,1),(9723,57080,57095,'OP_ZoneBgInstanceList',566,1),(9724,57080,57095,'OP_WorldTravelAvail',570,1),(9725,57080,57095,'OP_Launchpad',572,1),(9726,57080,57095,'OP_PaperdollImage',574,1),(9727,57080,57095,'OP_LoadCalendarEvents',575,1),(9728,57080,57095,'OP_VideoUploaded',576,1),(9729,57080,57095,'OP_SavageBarInitMsg',577,1),(9730,57080,57095,'OP_PetOptionsResponse',578,1),(9731,57080,57095,'OP_DungeonMakerItemResponse',579,1),(9732,57080,57095,'OP_CharacterMounts',581,1),(9733,57080,57095,'OP_RecipeListUnknown',590,1),(9734,57080,57095,'OP_EqBetaCopyRequest',599,1),(9735,57080,57095,'OP_EqHearChatCmd',600,1),(9736,57080,57095,'OP_EqDisplayTextCmd',601,1),(9737,57080,57095,'OP_EqCreateGhostCmd',602,1),(9738,57080,57095,'OP_EqCreateWidgetCmd',603,1),(9739,57080,57095,'OP_EqCreateSignWidgetCmd',604,1),(9740,57080,57095,'OP_EqDestroyGhostCmd',605,1),(9741,57080,57095,'OP_EqUpdateGhostCmd',606,1),(9742,57080,57095,'OP_EqSetControlGhostCmd',607,1),(9743,57080,57095,'OP_EqSetPOVGhostCmd',608,1),(9744,57080,57095,'OP_EqHearCombatCmd',609,1),(9745,57080,57095,'OP_EqHearSpellCastCmd',610,1),(9746,57080,57095,'OP_EQHearProcCmd',611,1),(9747,57080,57095,'OP_EQHearResEffectCmd',612,1),(9748,57080,57095,'OP_EqHearSpellInterruptCmd',613,1),(9749,57080,57095,'OP_EqHearSpellFizzleCmd',614,1),(9750,57080,57095,'OP_EqHearConsiderCmd',615,1),(9751,57080,57095,'OP_EqUpdateSubClassesCmd',616,1),(9752,57080,57095,'OP_EqCreateListBoxCmd',617,1),(9753,57080,57095,'OP_EqSetDebugPathPointsCmd',618,1),(9754,57080,57095,'OP_EqCannedEmoteCmd',620,1),(9755,57080,57095,'OP_EqStateCmd',621,1),(9756,57080,57095,'OP_EqPlaySoundCmd',622,1),(9757,57080,57095,'OP_EqPlaySound3DCmd',623,1),(9758,57080,57095,'OP_EqPlayVoiceCmd',624,1),(9759,57080,57095,'OP_EqHearDrowningCmd',625,1),(9760,57080,57095,'OP_EqHearDeathCmd',626,1),(9761,57080,57095,'OP_EqGroupMemberRemovedCmd',627,1),(9762,57080,57095,'OP_EqHearChainEffectCmd',628,1),(9763,57080,57095,'OP_EqReceiveOfferCmd',629,1),(9764,57080,57095,'OP_EqInspectPCResultsCmd',630,1),(9765,57080,57095,'OP_EqDrawablePathGraphCmd',631,1),(9766,57080,57095,'OP_EqDialogOpenCmd',632,1),(9767,57080,57095,'OP_EqDialogCloseCmd',633,1),(9768,57080,57095,'OP_EqFactionUpdateCmd',634,1),(9769,57080,57095,'OP_EqCollectionUpdateCmd',635,1),(9770,57080,57095,'OP_EqCollectionFilterCmd',636,1),(9771,57080,57095,'OP_EqCollectionItemCmd',637,1),(9772,57080,57095,'OP_EqQuestJournalUpdateCmd',638,1),(9773,57080,57095,'OP_EqMentoring',639,1),(9774,57080,57095,'OP_EqQuestJournalReplyCmd',640,1),(9775,57080,57095,'OP_EqQuestGroupCmd',641,1),(9776,57080,57095,'OP_EqUpdateMerchantCmd',642,1),(9777,57080,57095,'OP_EqUpdateStoreCmd',643,1),(9778,57080,57095,'OP_EqUpdatePlayerTradeCmd',644,1),(9779,57080,57095,'OP_EqHelpPathCmd',645,1),(9780,57080,57095,'OP_EqHelpPathClearCmd',646,1),(9781,57080,57095,'OP_EqUpdateBankCmd',647,1),(9782,57080,57095,'OP_EqExamineInfoCmd',648,1),(9783,57080,57095,'OP_EqCloseWindowCmd',649,1),(9784,57080,57095,'OP_EqUpdateLootCmd',650,1),(9785,57080,57095,'OP_EqJunctionListCmd',651,1),(9786,57080,57095,'OP_EqShowDeathWindowCmd',652,1),(9787,57080,57095,'OP_EqDisplaySpellFailCmd',653,1),(9788,57080,57095,'OP_EqSpellCastStartCmd',654,1),(9789,57080,57095,'OP_EqSpellCastEndCmd',655,1),(9790,57080,57095,'OP_EqResurrectedCmd',656,1),(9791,57080,57095,'OP_EqChoiceWinCmd',657,1),(9792,57080,57095,'OP_EqSetDefaultVerbCmd',658,1),(9793,57080,57095,'OP_EqInstructionWindowCmd',659,1),(9794,57080,57095,'OP_EqInstructionWindowCloseCmd',660,1),(9795,57080,57095,'OP_EqInstructionWindowGoalCmd',661,1),(9796,57080,57095,'OP_EqInstructionWindowTaskCmd',662,1),(9797,57080,57095,'OP_EqEnableGameEventCmd',663,1),(9798,57080,57095,'OP_EqShowWindowCmd',664,1),(9799,57080,57095,'OP_EqEnableWindowCmd',665,1),(9800,57080,57095,'OP_EqFlashWindowCmd',666,1),(9801,57080,57095,'OP_EqHearPlayFlavorCmd',668,1),(9802,57080,57095,'OP_EqUpdateSignWidgetCmd',669,1),(9803,57080,57095,'OP_EqDebugPVDCmd',670,1),(9804,57080,57095,'OP_EqShowBookCmd',671,1),(9805,57080,57095,'OP_EqQuestionnaireCmd',672,1),(9806,57080,57095,'OP_EqGetProbsCmd',674,1),(9807,57080,57095,'OP_EqHearHealCmd',675,1),(9808,57080,57095,'OP_EqChatChannelUpdateCmd',676,1),(9809,57080,57095,'OP_EqWhoChannelQueryReplyCmd',677,1),(9810,57080,57095,'OP_EqAvailWorldChannelsCmd',678,1),(9811,57080,57095,'OP_EqUpdateTargetCmd',679,1),(9812,57080,57095,'OP_BrokerSellList',680,1),(9813,57080,57095,'OP_EqConsignmentItemsCmd',681,1),(9814,57080,57095,'OP_EqStartBrokerCmd',683,1),(9815,57080,57095,'OP_EqMapExplorationCmd',684,1),(9816,57080,57095,'OP_EqStoreLogCmd',685,1),(9817,57080,57095,'OP_EqSpellMoveToRangeAndRetryCmd',686,1),(9818,57080,57095,'OP_EqUpdatePlayerMailCmd',687,1),(9819,57080,57095,'OP_GuildStatusUpdate',690,1),(9820,57080,57095,'OP_EqArenaResultsCmd',691,1),(9821,57080,57095,'OP_EqGuildBankEventActionCmd',692,1),(9822,57080,57095,'OP_EqGuildBankExamineInfoCmd',693,1),(9823,57080,57095,'OP_EqHearSpellNoLandCmd',694,1),(9824,57080,57095,'OP_Lottery',695,1),(9825,57080,57095,'OP_GuildRecruitingMemberInfo',696,1),(9826,57080,57095,'OP_GuildRecruiting',697,1),(9827,57080,57095,'OP_GuildRecruitingDetails',698,1),(9828,57080,57095,'OP_GuildRecruitingImage',699,1),(9829,57080,57095,'OP_TradeskillList',700,1),(9830,57080,57095,'OP_CharRenamed',701,1),(9831,57080,57095,'OP_UseAdornment',711,1),(9832,57080,57095,'OP_ExpPurchWindow',717,1),(9833,57080,57095,'OP_PointOfInterest',721,1),(9834,57080,57095,'OP_PointOfInterest2',722,1),(9835,57080,57095,'OP_TraitsList',723,1),(9836,57080,57095,'OP_CustomizeHouseDisplay',726,1),(9837,57080,57095,'OP_VoiceChatServer',727,1),(9838,57080,57095,'OP_SupplyDepot',731,1),(9839,57080,57095,'OP_EQHearThreatCmd',732,1),(9840,57080,57095,'OP_RecipeList',733,1),(9841,57080,57095,'OP_Research',734,1),(9842,57080,57095,'OP_CharacterCurrency',735,1),(9843,57080,57095,'OP_CharacterAchievements',736,1),(9844,57080,57095,'OP_AchievementUpdateMsg',737,1),(9845,57080,57095,'OP_EQHearDispellCmd',738,1),(9846,57080,57095,'OP_JournalQuestStoryline',739,1),(9847,57080,57095,'OP_DungeonPlayAsAvatarList',740,1),(9848,57080,57095,'OP_DungeonPlayAsAvatarSelected',741,1),(9849,57080,57095,'OP_MercHireWindow',742,1),(9850,57080,57095,'OP_MercUnknown',743,1),(9851,57080,57095,'OP_Unknown',756,1),(9852,57080,57095,'OP_DailyObjectives',594,1),(9853,57080,57095,'OP_Weakness',580,1),(9854,57015,57031,'OP_AchievementUpdateMsg',731,1),(9855,57015,57031,'OP_AddSocialStructureStandingMsg',249,1),(9856,57015,57031,'OP_AdvancementRequestMsg',394,1),(9857,57015,57031,'OP_AdventureList',488,1),(9858,57015,57031,'OP_AFKUpdateMsg',370,1),(9859,57015,57031,'OP_AfterInvSpellUpdate',69,1),(9860,57015,57031,'OP_AllCharactersDescReplyMsg',10,1),(9861,57015,57031,'OP_AllCharactersDescRequestMsg',9,1),(9862,57015,57031,'OP_AllWSDescRequestMsg',7,1),(9863,57015,57031,'OP_AnonUpdateMsg',371,1),(9864,57015,57031,'OP_ArenaCreate',456,1),(9865,57015,57031,'OP_ArenaGameTypesMsg',445,1),(9866,57015,57031,'OP_ArenaList',457,1),(9867,57015,57031,'OP_ArenaWindow',465,1),(9868,57015,57031,'OP_AttackAllowed',500,1),(9869,57015,57031,'OP_AttackNotAllowed',501,1),(9870,57015,57031,'OP_AuctionAbortMsg',436,1),(9871,57015,57031,'OP_AuctionCharacter',433,1),(9872,57015,57031,'OP_AuctionCharacterReply',434,1),(9873,57015,57031,'OP_AuctionCoin',431,1),(9874,57015,57031,'OP_AuctionCoinReply',432,1),(9875,57015,57031,'OP_AuctionCommitMsg',435,1),(9876,57015,57031,'OP_AuctionItem',429,1),(9877,57015,57031,'OP_AuctionItemReply',430,1),(9878,57015,57031,'OP_AuditAuctionEventMsg',446,1),(9879,57015,57031,'OP_AvatarCreatedMsg',46,1),(9880,57015,57031,'OP_AvatarDestroyedMsg',47,1),(9881,57015,57031,'OP_AvatarUpdateMsg',360,1),(9882,57015,57031,'OP_BadLanguageFilter',519,1),(9883,57015,57031,'OP_BagOptions',502,1),(9884,57015,57031,'OP_BeginItemCreationMsg',221,1),(9885,57015,57031,'OP_BeginTrackingMsg',390,1),(9886,57015,57031,'OP_BioUpdateMsg',362,1),(9887,57015,57031,'OP_BrokerAddBag',292,1),(9888,57015,57031,'OP_BrokerRemoveBag',293,1),(9889,57015,57031,'OP_BrokerSellList',674,1),(9890,57015,57031,'OP_BuyPlayerHouseMsg',150,1),(9891,57015,57031,'OP_BuyPlayerHouseTintMsg',151,1),(9892,57015,57031,'OP_CampAbortedMsg',52,1),(9893,57015,57031,'OP_CampClientMsg',387,1),(9894,57015,57031,'OP_CampStartedMsg',51,1),(9895,57015,57031,'OP_CancelCreateFromRecipeMsg',220,1),(9896,57015,57031,'OP_CancelledFeignMsg',216,1),(9897,57015,57031,'OP_CancelMoveObjectModeMsg',163,1),(9898,57015,57031,'OP_CancelSpellCast',489,1),(9899,57015,57031,'OP_ChangeServerControlFlagMsg',246,1),(9900,57015,57031,'OP_ChangeZoneMsg',77,1),(9901,57015,57031,'OP_CharacterAchievements',730,1),(9902,57015,57031,'OP_CharacterCreatedDungeons',549,1),(9903,57015,57031,'OP_CharacterCurrency',729,1),(9904,57015,57031,'OP_CharacterHousingList',507,1),(9905,57015,57031,'OP_CharacterLinkdeadMsg',414,1),(9906,57015,57031,'OP_CharacterMerc',65,1),(9907,57015,57031,'OP_CharacterMounts',579,1),(9908,57015,57031,'OP_CharacterPet',64,1),(9909,57015,57031,'OP_CharNameChangedMsg',352,1),(9910,57015,57031,'OP_CharRenamed',695,1),(9911,57015,57031,'OP_CharTransferCommitReplyMsg',422,1),(9912,57015,57031,'OP_CharTransferCommitRequestMsg',420,1),(9913,57015,57031,'OP_CharTransferReplyMsg',418,1),(9914,57015,57031,'OP_CharTransferRequestMsg',417,1),(9915,57015,57031,'OP_CharTransferRollbackReplyMsg',421,1),(9916,57015,57031,'OP_CharTransferRollbackRequestMsg',419,1),(9917,57015,57031,'OP_CharTransferStartReplyMsg',416,1),(9918,57015,57031,'OP_CharTransferStartRequestMsg',415,1),(9919,57015,57031,'OP_CharTransferValidateReplyMsg',438,1),(9920,57015,57031,'OP_CharTransferValidateRequestMsg',437,1),(9921,57015,57031,'OP_ChatCreateChannelMsg',285,1),(9922,57015,57031,'OP_ChatFiltersMsg',335,1),(9923,57015,57031,'OP_ChatJoinChannelMsg',286,1),(9924,57015,57031,'OP_ChatLeaveChannelMsg',288,1),(9925,57015,57031,'OP_ChatRelationshipUpdateMsg',184,1),(9926,57015,57031,'OP_ChatSendFriendsMsg',295,1),(9927,57015,57031,'OP_ChatSendIgnoresMsg',296,1),(9928,57015,57031,'OP_ChatTellChannelMsg',289,1),(9929,57015,57031,'OP_ChatTellUserMsg',290,1),(9930,57015,57031,'OP_ChatToggleFriendMsg',291,1),(9931,57015,57031,'OP_ChatToggleIgnoreMsg',294,1),(9932,57015,57031,'OP_ChatWhoChannelMsg',287,1),(9933,57015,57031,'OP_ClearDataMsg',98,1),(9934,57015,57031,'OP_ClearForLandingMsg',491,1),(9935,57015,57031,'OP_ClearForTakeOffMsg',191,1),(9936,57015,57031,'OP_ClientCmdMsg',58,1),(9937,57015,57031,'OP_ClientFellMsg',385,1),(9938,57015,57031,'OP_ClientIdleBeginMsg',405,1),(9939,57015,57031,'OP_ClientIdleEndMsg',406,1),(9940,57015,57031,'OP_ClientInDeathRegionMsg',386,1),(9941,57015,57031,'OP_ClientTeleportRequestMsg',78,1),(9942,57015,57031,'OP_ClientTeleportToLocationMsg',244,1),(9943,57015,57031,'OP_CloseGroupInviteWindowMsg',397,1),(9944,57015,57031,'OP_CollectAllHouseItemsMsg',152,1),(9945,57015,57031,'OP_ConsignItemRequestMsg',126,1),(9946,57015,57031,'OP_ConsignItemResponseMsg',127,1),(9947,57015,57031,'OP_ConsignmentCloseStoreMsg',125,1),(9948,57015,57031,'OP_ConsignRemoveItemsMsg',378,1),(9949,57015,57031,'OP_ConsignViewCreateMsg',375,1),(9950,57015,57031,'OP_ConsignViewGetPageMsg',376,1),(9951,57015,57031,'OP_ConsignViewReleaseMsg',377,1),(9952,57015,57031,'OP_ConsignViewSortMsg',383,1),(9953,57015,57031,'OP_CorruptedClientMsg',409,1),(9954,57015,57031,'OP_CreateBoatTransportsMsg',250,1),(9955,57015,57031,'OP_CreateCharacterDungeon',545,1),(9956,57015,57031,'OP_CreateCharacterReplyMsg',12,1),(9957,57015,57031,'OP_CreateCharacterRequestMsg',11,1),(9958,57015,57031,'OP_CreateCharFromCBBReplyMsg',426,1),(9959,57015,57031,'OP_CreateCharFromCBBRequestMsg',425,1),(9960,57015,57031,'OP_CreateGuildReplyMsg',120,1),(9961,57015,57031,'OP_CreateGuildRequestMsg',119,1),(9962,57015,57031,'OP_CreateZoneInstanceMsg',29,1),(9963,57015,57031,'OP_CsCategoryRequestMsg',367,1),(9964,57015,57031,'OP_CsCategoryResponseMsg',368,1),(9965,57015,57031,'OP_CSTicketAddCommentMsg',234,1),(9966,57015,57031,'OP_CSTicketChangeNotificationMsg',236,1),(9967,57015,57031,'OP_CSTicketCommentRequestMsg',231,1),(9968,57015,57031,'OP_CSTicketCommentResponseMsg',232,1),(9969,57015,57031,'OP_CSTicketCreateMsg',233,1),(9970,57015,57031,'OP_CSTicketDeleteMsg',235,1),(9971,57015,57031,'OP_CSTicketHeaderRequestMsg',229,1),(9972,57015,57031,'OP_CSTicketInfoMsg',230,1),(9973,57015,57031,'OP_CSToolAccessResponseMsg',388,1),(9974,57015,57031,'OP_CSToolsRequestMsg',247,1),(9975,57015,57031,'OP_CSToolsResponseMsg',248,1),(9976,57015,57031,'OP_CurrentPet',485,1),(9977,57015,57031,'OP_CustomizationPurchaseRequestMs',167,1),(9978,57015,57031,'OP_CustomizationReplyMsg',169,1),(9979,57015,57031,'OP_CustomizationSetRequestMsg',168,1),(9980,57015,57031,'OP_CustomizeHouseDisplay',720,1),(9981,57015,57031,'OP_DefaultGroupOptionsMsg',198,1),(9982,57015,57031,'OP_DefaultGroupOptionsRequestMsg',197,1),(9983,57015,57031,'OP_DeleteCharacterReplyMsg',17,1),(9984,57015,57031,'OP_DeleteCharacterRequestMsg',16,1),(9985,57015,57031,'OP_DeleteGuildMsg',123,1),(9986,57015,57031,'OP_DestUpdateReq',210,1),(9987,57015,57031,'OP_DialogCloseMsg',110,1),(9988,57015,57031,'OP_DialogSelectMsg',109,1),(9989,57015,57031,'OP_DispatchClientCmdMsg',60,1),(9990,57015,57031,'OP_DispatchESMsg',59,1),(9991,57015,57031,'OP_DispatchMsg',451,1),(9992,57015,57031,'OP_DispatchSpellCmdMsg',179,1),(9993,57015,57031,'OP_DisplayDebugNLLPointsMsg',254,1),(9994,57015,57031,'OP_DisplayEventMsg',452,1),(9995,57015,57031,'OP_DisplayExchangeScreenMsg',444,1),(9996,57015,57031,'OP_DisplayGroupOptionsScreenMsg',200,1),(9997,57015,57031,'OP_DisplayInnVisitScreenMsg',202,1),(9998,57015,57031,'OP_DisplayMailScreenMsg',404,1),(9999,57015,57031,'OP_DisplayTSEventReactionMsg',225,1),(10000,57015,57031,'OP_DisplayWarningMsg',265,1),(10001,57015,57031,'OP_DoneLoadingEntityResourcesMsg',36,1),(10002,57015,57031,'OP_DoneLoadingZoneResourcesMsg',34,1),(10003,57015,57031,'OP_DoneSendingInitialEntitiesMsg',35,1),(10004,57015,57031,'OP_DressingRoom',510,1),(10005,57015,57031,'OP_DumpSchedulerMsg',203,1),(10006,57015,57031,'OP_DungeonMakerEnter',546,1),(10007,57015,57031,'OP_DungeonMakerItemRequest',548,1),(10008,57015,57031,'OP_DungeonMakerItemResponse',577,1),(10009,57015,57031,'OP_DungeonMakerToolboxList',550,1),(10010,57015,57031,'OP_DungeonMakerUnknown',551,1),(10011,57015,57031,'OP_DungeonMakerUnknown1',552,1),(10012,57015,57031,'OP_DungeonPlayAsAvatarList',734,1),(10013,57015,57031,'OP_DungeonPlayAsAvatarSelected',735,1),(10014,57015,57031,'OP_EncounterBrokenMsg',263,1),(10015,57015,57031,'OP_EnterHouseMsg',154,1),(10016,57015,57031,'OP_EnterMoveObjectModeMsg',161,1),(10017,57015,57031,'OP_EntityVerbsReplyMsg',181,1),(10018,57015,57031,'OP_EntityVerbsRequestMsg',180,1),(10019,57015,57031,'OP_EntityVerbsVerbMsg',182,1),(10020,57015,57031,'OP_EqArenaResultsCmd',685,1),(10021,57015,57031,'OP_EqAvailWorldChannelsCmd',672,1),(10022,57015,57031,'OP_EqBetaCopyRequest',593,1),(10023,57015,57031,'OP_EqCannedEmoteCmd',614,1),(10024,57015,57031,'OP_EqChatChannelUpdateCmd',670,1),(10025,57015,57031,'OP_EqChoiceWinCmd',651,1),(10026,57015,57031,'OP_EqCloseWindowCmd',643,1),(10027,57015,57031,'OP_EqCollectionFilterCmd',630,1),(10028,57015,57031,'OP_EqCollectionItemCmd',631,1),(10029,57015,57031,'OP_EqCollectionUpdateCmd',629,1),(10030,57015,57031,'OP_EqConsignmentItemsCmd',675,1),(10031,57015,57031,'OP_EqCreateGhostCmd',596,1),(10032,57015,57031,'OP_EqCreateListBoxCmd',611,1),(10033,57015,57031,'OP_EqCreateSignWidgetCmd',598,1),(10034,57015,57031,'OP_EqCreateWidgetCmd',597,1),(10035,57015,57031,'OP_EqDebugPVDCmd',664,1),(10036,57015,57031,'OP_EqDestroyGhostCmd',599,1),(10037,57015,57031,'OP_EqDialogCloseCmd',627,1),(10038,57015,57031,'OP_EqDialogOpenCmd',626,1),(10039,57015,57031,'OP_EqDisplaySpellFailCmd',647,1),(10040,57015,57031,'OP_EqDisplayTextCmd',595,1),(10041,57015,57031,'OP_EqDrawablePathGraphCmd',625,1),(10042,57015,57031,'OP_EqEnableGameEventCmd',657,1),(10043,57015,57031,'OP_EqEnableWindowCmd',659,1),(10044,57015,57031,'OP_EqExamineInfoCmd',642,1),(10045,57015,57031,'OP_EqFactionUpdateCmd',628,1),(10046,57015,57031,'OP_EqFlashWindowCmd',660,1),(10047,57015,57031,'OP_EqGetProbsCmd',668,1),(10048,57015,57031,'OP_EqGroupMemberRemovedCmd',621,1),(10049,57015,57031,'OP_EqGuildBankEventActionCmd',686,1),(10050,57015,57031,'OP_EqGuildBankExamineInfoCmd',687,1),(10051,57015,57031,'OP_EqHearChainEffectCmd',622,1),(10052,57015,57031,'OP_EqHearChatCmd',594,1),(10053,57015,57031,'OP_EqHearCombatCmd',603,1),(10054,57015,57031,'OP_EqHearConsiderCmd',609,1),(10055,57015,57031,'OP_EqHearDeathCmd',620,1),(10056,57015,57031,'OP_EQHearDispellCmd',732,1),(10057,57015,57031,'OP_EqHearDrowningCmd',619,1),(10058,57015,57031,'OP_EqHearHealCmd',669,1),(10059,57015,57031,'OP_EqHearPlayFlavorCmd',662,1),(10060,57015,57031,'OP_EQHearProcCmd',605,1),(10061,57015,57031,'OP_EQHearResEffectCmd',606,1),(10062,57015,57031,'OP_EqHearSpellCastCmd',604,1),(10063,57015,57031,'OP_EqHearSpellFizzleCmd',608,1),(10064,57015,57031,'OP_EqHearSpellInterruptCmd',607,1),(10065,57015,57031,'OP_EqHearSpellNoLandCmd',688,1),(10066,57015,57031,'OP_EQHearThreatCmd',726,1),(10067,57015,57031,'OP_EqHelpPathClearCmd',640,1),(10068,57015,57031,'OP_EqHelpPathCmd',639,1),(10069,57015,57031,'OP_EqInspectPCResultsCmd',624,1),(10070,57015,57031,'OP_EqInstructionWindowCloseCmd',654,1),(10071,57015,57031,'OP_EqInstructionWindowCmd',653,1),(10072,57015,57031,'OP_EqInstructionWindowGoalCmd',655,1),(10073,57015,57031,'OP_EqInstructionWindowTaskCmd',656,1),(10074,57015,57031,'OP_EqJunctionListCmd',645,1),(10075,57015,57031,'OP_EqMapExplorationCmd',678,1),(10076,57015,57031,'OP_EqMentoring',633,1),(10077,57015,57031,'OP_EqPlaySound3DCmd',617,1),(10078,57015,57031,'OP_EqPlaySoundCmd',616,1),(10079,57015,57031,'OP_EqPlayVoiceCmd',618,1),(10080,57015,57031,'OP_EqQuestGroupCmd',635,1),(10081,57015,57031,'OP_EqQuestionnaireCmd',666,1),(10082,57015,57031,'OP_EqQuestJournalReplyCmd',634,1),(10083,57015,57031,'OP_EqQuestJournalUpdateCmd',632,1),(10084,57015,57031,'OP_EqReceiveOfferCmd',623,1),(10085,57015,57031,'OP_EqResurrectedCmd',650,1),(10086,57015,57031,'OP_EqSetControlGhostCmd',601,1),(10087,57015,57031,'OP_EqSetDebugPathPointsCmd',612,1),(10088,57015,57031,'OP_EqSetDefaultVerbCmd',652,1),(10089,57015,57031,'OP_EqSetPOVGhostCmd',602,1),(10090,57015,57031,'OP_EqShowBookCmd',665,1),(10091,57015,57031,'OP_EqShowDeathWindowCmd',646,1),(10092,57015,57031,'OP_EqShowWindowCmd',658,1),(10093,57015,57031,'OP_EqSpellCastEndCmd',649,1),(10094,57015,57031,'OP_EqSpellCastStartCmd',648,1),(10095,57015,57031,'OP_EqSpellMoveToRangeAndRetryCmd',680,1),(10096,57015,57031,'OP_EqStartBrokerCmd',677,1),(10097,57015,57031,'OP_EqStateCmd',615,1),(10098,57015,57031,'OP_EqStoreLogCmd',679,1),(10099,57015,57031,'OP_EqUpdateBankCmd',641,1),(10100,57015,57031,'OP_EqUpdateGhostCmd',600,1),(10101,57015,57031,'OP_EqUpdateLootCmd',644,1),(10102,57015,57031,'OP_EqUpdateMerchantCmd',636,1),(10103,57015,57031,'OP_EqUpdatePlayerMailCmd',681,1),(10104,57015,57031,'OP_EqUpdatePlayerTradeCmd',638,1),(10105,57015,57031,'OP_EqUpdateSignWidgetCmd',663,1),(10106,57015,57031,'OP_EqUpdateStoreCmd',637,1),(10107,57015,57031,'OP_EqUpdateSubClassesCmd',610,1),(10108,57015,57031,'OP_EqUpdateTargetCmd',673,1),(10109,57015,57031,'OP_EqWhoChannelQueryReplyCmd',671,1),(10110,57015,57031,'OP_ESInitMsg',25,1),(10111,57015,57031,'OP_ESLoginRequestMsg',3,1),(10112,57015,57031,'OP_ESReadyForClientsMsg',26,1),(10113,57015,57031,'OP_ESStatusMsg',100,1),(10114,57015,57031,'OP_ESWeatherRequestEndMsg',105,1),(10115,57015,57031,'OP_ESWeatherRequestMsg',104,1),(10116,57015,57031,'OP_ESZoneInstanceStatusMsg',101,1),(10117,57015,57031,'OP_ExamineConsignmentRequestMsg',171,1),(10118,57015,57031,'OP_ExamineConsignmentResponseMsg',172,1),(10119,57015,57031,'OP_ExamineInfoRequestMsg',255,1),(10120,57015,57031,'OP_ExamineItemRequestMsg',195,1),(10121,57015,57031,'OP_ExitHouseMsg',155,1),(10122,57015,57031,'OP_ExpectClientAsCharacterReplyMs',22,1),(10123,57015,57031,'OP_ExpectClientAsCharacterRequest',32,1),(10124,57015,57031,'OP_ExpPurchWindow',711,1),(10125,57015,57031,'OP_FellowshipExpMsg',122,1),(10126,57015,57031,'OP_FlightPathsMsg',413,1),(10127,57015,57031,'OP_GameWorldTimeMsg',43,1),(10128,57015,57031,'OP_PaperdollImage',572,1),(10129,57015,57031,'OP_GetAuctionAssetIDMsg',441,1),(10130,57015,57031,'OP_GetAuctionAssetIDReplyMsg',442,1),(10131,57015,57031,'OP_GetAvatarAccessRequestForCSToo',393,1),(10132,57015,57031,'OP_GetCharacterSerializedReplyMsg',424,1),(10133,57015,57031,'OP_GetCharacterSerializedRequestM',423,1),(10134,57015,57031,'OP_GroupCreatedMsg',88,1),(10135,57015,57031,'OP_GroupDestroyedMsg',89,1),(10136,57015,57031,'OP_GroupLeaderChangedMsg',93,1),(10137,57015,57031,'OP_GroupMemberAddedMsg',90,1),(10138,57015,57031,'OP_GroupMemberRemovedMsg',91,1),(10139,57015,57031,'OP_GroupOptionsMsg',199,1),(10140,57015,57031,'OP_GroupRemovedFromGroupMsg',92,1),(10141,57015,57031,'OP_GroupResendOOZDataMsg',94,1),(10142,57015,57031,'OP_GroupSettingsChangedMsg',95,1),(10143,57015,57031,'OP_GuildBankActionMsg',274,1),(10144,57015,57031,'OP_GuildBankActionResponseMsg',275,1),(10145,57015,57031,'OP_GuildBankEventListMsg',279,1),(10146,57015,57031,'OP_GuildBankItemDetailsRequestMsg',276,1),(10147,57015,57031,'OP_GuildBankItemDetailsResponseMs',277,1),(10148,57015,57031,'OP_GuildBankUpdateMsg',278,1),(10149,57015,57031,'OP_GuildEventActionMsg',269,1),(10150,57015,57031,'OP_GuildEventAddMsg',268,1),(10151,57015,57031,'OP_GuildEventDetailsMsg',272,1),(10152,57015,57031,'OP_GuildEventListMsg',270,1),(10153,57015,57031,'OP_GuildEventMsg',267,1),(10154,57015,57031,'OP_GuildMembershipResponseMsg',357,1),(10155,57015,57031,'OP_GuildRecruiting',691,1),(10156,57015,57031,'OP_GuildRecruitingDetails',692,1),(10157,57015,57031,'OP_GuildRecruitingImage',693,1),(10158,57015,57031,'OP_GuildRecruitingMemberInfo',690,1),(10159,57015,57031,'OP_GuildsayMsg',121,1),(10160,57015,57031,'OP_GuildStatusUpdate',684,1),(10161,57015,57031,'OP_GuildUpdateMsg',124,1),(10162,57015,57031,'OP_HideIllusionsMsg',194,1),(10163,57015,57031,'OP_HouseAccessRemoveMsg',158,1),(10164,57015,57031,'OP_HouseAccessSetMsg',157,1),(10165,57015,57031,'OP_HouseCustomizationScreenMsg',166,1),(10166,57015,57031,'OP_HouseDefaultAccessSetMsg',156,1),(10167,57015,57031,'OP_HouseDeletedRemotelyMsg',142,1),(10168,57015,57031,'OP_HouseItemsList',483,1),(10169,57015,57031,'OP_HousingDataChangedMsg',427,1),(10170,57015,57031,'OP_HousingRestoreMsg',428,1),(10171,57015,57031,'OP_InspectPlayerMsg',363,1),(10172,57015,57031,'OP_InspectPlayerRequestMsg',450,1),(10173,57015,57031,'OP_InviteRequestMsg',447,1),(10174,57015,57031,'OP_InviteResponseMsg',448,1),(10175,57015,57031,'OP_InviteTargetResponseMsg',449,1),(10176,57015,57031,'OP_JoinGuildNotifyMsg',359,1),(10177,57015,57031,'OP_JournalQuestStoryline',733,1),(10178,57015,57031,'OP_KeymapDataMsg',177,1),(10179,57015,57031,'OP_KeymapLoadMsg',175,1),(10180,57015,57031,'OP_KeymapNoneMsg',176,1),(10181,57015,57031,'OP_KeymapSaveMsg',178,1),(10182,57015,57031,'OP_KnowledgebaseRequestMsg',227,1),(10183,57015,57031,'OP_KnowledgebaseResponseMsg',228,1),(10184,57015,57031,'OP_KnowledgeWindowSlotMappingMsg',369,1),(10185,57015,57031,'OP_KnownLanguagesMsg',238,1),(10186,57015,57031,'OP_Launchpad',570,1),(10187,57015,57031,'OP_LeaveGuildNotifyMsg',358,1),(10188,57015,57031,'OP_LevelChangedMsg',261,1),(10189,57015,57031,'OP_LFGGroupSearch',504,1),(10190,57015,57031,'OP_LFGUpdateMsg',518,1),(10191,57015,57031,'OP_LikeOption',135,1),(10192,57015,57031,'OP_LoadCalendarEvents',573,1),(10193,57015,57031,'OP_LoadWelcomeWindow',558,1),(10194,57015,57031,'OP_LoginByNumRequestMsg',1,1),(10195,57015,57031,'OP_LoginReplyMsg',4,1),(10196,57015,57031,'OP_LoginRequestMsg',0,1),(10197,57015,57031,'OP_LootItemsRequestMsg',185,1),(10198,57015,57031,'OP_Lottery',689,1),(10199,57015,57031,'OP_LSCheckAcctLockMsg',204,1),(10200,57015,57031,'OP_LsClientAlertlogReplyMsg',242,1),(10201,57015,57031,'OP_LsClientBaselogReplyMsg',240,1),(10202,57015,57031,'OP_LsClientCrashlogReplyMsg',241,1),(10203,57015,57031,'OP_LsClientVerifylogReplyMsg',243,1),(10204,57015,57031,'OP_LsRequestClientCrashLogMsg',239,1),(10205,57015,57031,'OP_LSServerLockMsg',365,1),(10206,57015,57031,'OP_MacroInitMsg',258,1),(10207,57015,57031,'OP_MacroUpdateMsg',259,1),(10208,57015,57031,'OP_MailCommitSendMessageMsg',344,1),(10209,57015,57031,'OP_MailDeleteMessageMsg',340,1),(10210,57015,57031,'OP_MailEventNotificationMsg',411,1),(10211,57015,57031,'OP_MailGetHeadersReplyMsg',341,1),(10212,57015,57031,'OP_MailGetMessageMsg',338,1),(10213,57015,57031,'OP_MailGetMessageReplyMsg',342,1),(10214,57015,57031,'OP_MailRemoveAttachFromMailMsg',346,1),(10215,57015,57031,'OP_MailSendMessageMsg',339,1),(10216,57015,57031,'OP_MailSendMessageReplyMsg',343,1),(10217,57015,57031,'OP_MailSendSystemMessageMsg',345,1),(10218,57015,57031,'OP_MakeGroupLeaderMsg',87,1),(10219,57015,57031,'OP_MapFogDataInitMsg',395,1),(10220,57015,57031,'OP_MapFogDataUpdateMsg',396,1),(10221,57015,57031,'OP_MapRequest',521,1),(10222,57015,57031,'OP_MarketAddFundsReply',529,1),(10223,57015,57031,'OP_MarketAddFundsRequest',528,1),(10224,57015,57031,'OP_MarketFundsUpdate',526,1),(10225,57015,57031,'OP_MarketPlaceItems',535,1),(10226,57015,57031,'OP_MarketPlacePrices',532,1),(10227,57015,57031,'OP_MarketPurchase',531,1),(10228,57015,57031,'OP_MentorPopup',556,1),(10229,57015,57031,'OP_MercHireWindow',736,1),(10230,57015,57031,'OP_MercUnknown',737,1),(10231,57015,57031,'OP_MigrateBoatTransportMsg',252,1),(10232,57015,57031,'OP_MigrateBoatTransportReplyMsg',253,1),(10233,57015,57031,'OP_MigrateClientToZoneReplyMsg',82,1),(10234,57015,57031,'OP_MigrateClientToZoneRequestMsg',81,1),(10235,57015,57031,'OP_ModifyGuildMsg',266,1),(10236,57015,57031,'OP_MonitorCharacterListMsg',56,1),(10237,57015,57031,'OP_MonitorCharacterListRequestMsg',57,1),(10238,57015,57031,'OP_MonitorReplyMsg',55,1),(10239,57015,57031,'OP_MOTDMsg',44,1),(10240,57015,57031,'OP_MoveableObjectPlacementCriteri',160,1),(10241,57015,57031,'OP_MoveLogUpdateMsg',390,1),(10242,57015,57031,'OP_NotifyApprenticeStoppedMentori',408,1),(10243,57015,57031,'OP_OfferQuestMsg',401,1),(10244,57015,57031,'OP_OnscreenMsgMsg',264,1),(10245,57015,57031,'OP_OpenCharCust',559,1),(10246,57015,57031,'OP_OutOfZoneMemberDataMsg',96,1),(10247,57015,57031,'OP_PayHouseUpkeepMsg',159,1),(10248,57015,57031,'OP_PerformCameraShakeMsg',214,1),(10249,57015,57031,'OP_PerformPlayerKnockbackMsg',213,1),(10250,57015,57031,'OP_PetOptions',201,1),(10251,57015,57031,'OP_PetOptionsResponse',576,1),(10252,57015,57031,'OP_PlayCharacterReplyMsg',19,1),(10253,57015,57031,'OP_PlayCharacterRequestMsg',18,1),(10254,57015,57031,'OP_PlayerHouseAccessUpdateMsg',147,1),(10255,57015,57031,'OP_PlayerHouseBaseScreenMsg',145,1),(10256,57015,57031,'OP_PlayerHouseCloseUIMsg',149,1),(10257,57015,57031,'OP_PlayerHouseDisplayStatusMsg',148,1),(10258,57015,57031,'OP_PlayerHousePurchaseScreenMsg',146,1),(10259,57015,57031,'OP_PlayerMadeInstacnesScreen',139,1),(10260,57015,57031,'OP_PlayerMadeInstances',140,1),(10261,57015,57031,'OP_PlayerPollAnswer',555,1),(10262,57015,57031,'OP_PlayerPollPopup',554,1),(10263,57015,57031,'OP_PlayLon',511,1),(10264,57015,57031,'OP_PointOfInterest',715,1),(10265,57015,57031,'OP_PointOfInterest2',716,1),(10266,57015,57031,'OP_PopulateSkillMapsMsg',215,1),(10267,57015,57031,'OP_PositionBoatTransportMsg',251,1),(10268,57015,57031,'OP_PositionMoveableObject',162,1),(10269,57015,57031,'OP_PostPossessionMsg',454,1),(10270,57015,57031,'OP_PredictionUpdateMsg',37,1),(10271,57015,57031,'OP_PrePossessionMsg',453,1),(10272,57015,57031,'OP_PromoFlagsDetailsMsg',374,1),(10273,57015,57031,'OP_PublishHouse',138,1),(10274,57015,57031,'OP_PurchaseConsignmentLoreCheckRe',407,1),(10275,57015,57031,'OP_PurchaseConsignmentRequestMsg',128,1),(10276,57015,57031,'OP_QueAllBgSolo',562,1),(10277,57015,57031,'OP_QuestionnaireMsg',260,1),(10278,57015,57031,'OP_QuestJournalInspectMsg',114,1),(10279,57015,57031,'OP_QuestJournalOpenMsg',113,1),(10280,57015,57031,'OP_QuestJournalSetVisibleMsg',115,1),(10281,57015,57031,'OP_QuestJournalWaypointMsg',116,1),(10282,57015,57031,'OP_QuestReward',320,1),(10283,57015,57031,'OP_QuickbarInitMsg',256,1),(10284,57015,57031,'OP_QuickbarUpdateMsg',257,1),(10285,57015,57031,'OP_RaceRestrictionMsg',439,1),(10286,57015,57031,'OP_ReadBookPageMsg',196,1),(10287,57015,57031,'OP_ReadyForTakeOffMsg',192,1),(10288,57015,57031,'OP_ReadyToZoneMsg',84,1),(10289,57015,57031,'OP_ReceipelistUnknown',588,1),(10290,57015,57031,'OP_RecipeBook',536,1),(10291,57015,57031,'OP_RecipeDetailsMsg',72,1),(10292,57015,57031,'OP_RecipeList',727,1),(10293,57015,57031,'OP_RelinquishHouseMsg',153,1),(10294,57015,57031,'OP_ReloadLocalizedTxtMsg',355,1),(10295,57015,57031,'OP_RemoteCmdMsg',42,1),(10296,57015,57031,'OP_RemoveClientFromGroupMsg',85,1),(10297,57015,57031,'OP_RemoveConcentrationMsg',112,1),(10298,57015,57031,'OP_RemoveGroupFromGroupMsg',86,1),(10299,57015,57031,'OP_RemoveSpellEffectMsg',111,1),(10300,57015,57031,'OP_RenameGuildMsg',282,1),(10301,57015,57031,'OP_ReplaceableSubMeshesMsg',165,1),(10302,57015,57031,'OP_ReportMsg',380,1),(10303,57015,57031,'OP_RequestCampMsg',50,1),(10304,57015,57031,'OP_RequestGuildBankEventDetailsMs',280,1),(10305,57015,57031,'OP_RequestGuildEventDetailsMsg',271,1),(10306,57015,57031,'OP_RequestGuildInfoMsg',273,1),(10307,57015,57031,'OP_RequestGuildMembershipMsg',356,1),(10308,57015,57031,'OP_RequestHelpRepathMsg',206,1),(10309,57015,57031,'OP_RequestRecipeDetailsMsg',71,1),(10310,57015,57031,'OP_RequestTargetLocMsg',207,1),(10311,57015,57031,'OP_Research',728,1),(10312,57015,57031,'OP_ResendWorldChannelsMsg',443,1),(10313,57015,57031,'OP_ReskinCharacterRequestMsg',15,1),(10314,57015,57031,'OP_RestartZoneMsg',412,1),(10315,57015,57031,'OP_RewardPackMsg',281,1),(10316,57015,57031,'OP_SatMsg',189,1),(10317,57015,57031,'OP_SavageBarInitMsg',575,1),(10318,57015,57031,'OP_SelectZoneTeleporterDestinatio',354,1),(10319,57015,57031,'OP_SendLatestRequestMsg',97,1),(10320,57015,57031,'OP_ServerPlayCharacterReplyMsg',24,1),(10321,57015,57031,'OP_ServerPlayCharacterRequestMsg',23,1),(10322,57015,57031,'OP_SetInstanceDisplayNameMsg',440,1),(10323,57015,57031,'OP_SetRemoteCmdsMsg',41,1),(10324,57015,57031,'OP_SetSocialMsg',99,1),(10325,57015,57031,'OP_ShaderCustomizationMsg',164,1),(10326,57015,57031,'OP_ShowCreateFromRecipeUIMsg',219,1),(10327,57015,57031,'OP_ShowIllusionsMsg',193,1),(10328,57015,57031,'OP_ShowItemCreationProcessUIMsg',223,1),(10329,57015,57031,'OP_ShowRecipeBookMsg',226,1),(10330,57015,57031,'OP_ShowZoneTeleporterDestinations',353,1),(10331,57015,57031,'OP_SitMsg',187,1),(10332,57015,57031,'OP_SkillInfoRequest',514,1),(10333,57015,57031,'OP_SkillInfoResponse',515,1),(10334,57015,57031,'OP_SpellGainedMsg',262,1),(10335,57015,57031,'OP_StandMsg',188,1),(10336,57015,57031,'OP_StoodMsg',190,1),(10337,57015,57031,'OP_StopItemCreationMsg',222,1),(10338,57015,57031,'OP_StoppedLootingMsg',186,1),(10339,57015,57031,'OP_StopTrackingMsg',391,1),(10340,57015,57031,'OP_SubmitCharCust',560,1),(10341,57015,57031,'OP_SupplyDepot',725,1),(10342,57015,57031,'OP_SysClient',218,1),(10343,57015,57031,'OP_TeleportWithinZoneMsg',79,1),(10344,57015,57031,'OP_TeleportWithinZoneNoReloadMsg',80,1),(10345,57015,57031,'OP_TintWidgetsMsg',170,1),(10346,57015,57031,'OP_TitleUpdateMsg',384,1),(10347,57015,57031,'OP_TrackingUpdateMsg',389,1),(10348,57015,57031,'OP_TradeskillList',711,1),(10349,57015,57031,'OP_TraitsList',717,1),(10350,57015,57031,'OP_UIEvent',527,1),(10351,57015,57031,'OP_UIResetMsg',174,1),(10352,57015,57031,'OP_UISettingsResponseMsg',173,1),(10353,57015,57031,'OP_Unknown',753,1),(10354,57015,57031,'OP_UnknownNpcMsg',373,1),(10355,57015,57031,'OP_UpdateActivePublicZonesMsg',372,1),(10356,57015,57031,'OP_UpdateCharacterSheetMsg',63,1),(10357,57015,57031,'OP_UpdateClientPredFlagsMsg',245,1),(10358,57015,57031,'OP_UpdateDebugRadiiMsg',379,1),(10359,57015,57031,'OP_UpdateGroupMemberDataMsg',398,1),(10360,57015,57031,'OP_UpdateHouseAccessDataMsg',144,1),(10361,57015,57031,'OP_UpdateHouseDataMsg',143,1),(10362,57015,57031,'OP_UpdateInventoryMsg',68,1),(10363,57015,57031,'OP_UpdateItemCreationProcessUIMsg',224,1),(10364,57015,57031,'OP_UpdateMotdMsg',208,1),(10365,57015,57031,'OP_UpdateOpportunityMsg',75,1),(10366,57015,57031,'OP_UpdatePositionMsg',39,1),(10367,57015,57031,'OP_UpdateRaidMsg',381,1),(10368,57015,57031,'OP_UpdateRecipeBookMsg',70,1),(10369,57015,57031,'OP_UpdateSkillBookMsg',73,1),(10370,57015,57031,'OP_UpdateSkillsMsg',74,1),(10371,57015,57031,'OP_UpdateSpellBookMsg',66,1),(10372,57015,57031,'OP_UpdateTargetLocMsg',62,1),(10373,57015,57031,'OP_UpdateTargetMsg',61,1),(10374,57015,57031,'OP_UpdateTitleCmd',494,1),(10375,57015,57031,'OP_UseAdornment',705,1),(10376,57015,57031,'OP_VideoUploaded',574,1),(10377,57015,57031,'OP_VoiceChatChannel',520,1),(10378,57015,57031,'OP_VoiceChatServer',721,1),(10379,57015,57031,'OP_WaypointReplyMsg',349,1),(10380,57015,57031,'OP_WaypointRequestMsg',348,1),(10381,57015,57031,'OP_WaypointSelectMsg',350,1),(10382,57015,57031,'OP_WaypointUpdateMsg',351,1),(10383,57015,57031,'OP_Weakness',578,1),(10384,57015,57031,'OP_WhoQueryReplyMsg',54,1),(10385,57015,57031,'OP_WhoQueryRequestMsg',53,1),(10386,57015,57031,'OP_WorldDataChangeMsg',410,1),(10387,57015,57031,'OP_WorldDataUpdateMsg',237,1),(10388,57015,57031,'OP_WorldListMsg',8,1),(10389,57015,57031,'OP_WorldPingMsg',399,1),(10390,57015,57031,'OP_WorldShutdownUpdateMsg',403,1),(10391,57015,57031,'OP_WorldStatusChangeMsg',6,1),(10392,57015,57031,'OP_WorldTravelAvail',568,1),(10393,57015,57031,'OP_WSAcctLockStatusMsg',205,1),(10394,57015,57031,'OP_WSCreateCharacterReplyMsg',14,1),(10395,57015,57031,'OP_WSCreateCharacterRequestMsg',13,1),(10396,57015,57031,'OP_WSLoginRequestMsg',2,1),(10397,57015,57031,'OP_WSServerHideMsg',366,1),(10398,57015,57031,'OP_WSServerLockMsg',364,1),(10399,57015,57031,'OP_WSStatusReplyMsg',5,1),(10400,57015,57031,'OP_ZoneBgInstanceList',564,1),(10401,57015,57031,'OP_ZoneInfoMsg',33,1),(10402,57015,57031,'OP_ZoneInstanceCreateReplyMsg',30,1),(10403,57015,57031,'OP_ZoneInstanceDestroyedMsg',31,1),(10404,57015,57031,'OP_ZoneMOTDMsg',45,1),(10405,57015,57031,'OP_ZonesStatusMsg',103,1),(10406,57015,57031,'OP_ZonesStatusRequestMsg',102,1),(10407,57015,57031,'OP_ZoneToFriendReplyMsg',284,1),(10408,57015,57031,'OP_ZoneToFriendRequestMsg',283,1),(10409,57107,57109,'OP_LoginRequestMsg',0,1),(10410,57107,57109,'OP_LoginByNumRequestMsg',1,1),(10411,57107,57109,'OP_WSLoginRequestMsg',2,1),(10412,57107,57109,'OP_ESLoginRequestMsg',3,1),(10413,57107,57109,'OP_LoginReplyMsg',4,1),(10414,57107,57109,'OP_WSStatusReplyMsg',5,1),(10415,57107,57109,'OP_WorldStatusChangeMsg',6,1),(10416,57107,57109,'OP_AllWSDescRequestMsg',7,1),(10417,57107,57109,'OP_WorldListMsg',8,1),(10418,57107,57109,'OP_AllCharactersDescRequestMsg',9,1),(10419,57107,57109,'OP_AllCharactersDescReplyMsg',10,1),(10420,57107,57109,'OP_CreateCharacterRequestMsg',11,1),(10421,57107,57109,'OP_CreateCharacterReplyMsg',12,1),(10422,57107,57109,'OP_WSCreateCharacterRequestMsg',13,1),(10423,57107,57109,'OP_WSCreateCharacterReplyMsg',14,1),(10424,57107,57109,'OP_ReskinCharacterRequestMsg',15,1),(10425,57107,57109,'OP_DeleteCharacterRequestMsg',16,1),(10426,57107,57109,'OP_DeleteCharacterReplyMsg',17,1),(10427,57107,57109,'OP_PlayCharacterRequestMsg',18,1),(10428,57107,57109,'OP_PlayCharacterReplyMsg',19,1),(10429,57107,57109,'OP_ExpectClientAsCharacterReplyMs',22,1),(10430,57107,57109,'OP_ServerPlayCharacterRequestMsg',23,1),(10431,57107,57109,'OP_ServerPlayCharacterReplyMsg',24,1),(10432,57107,57109,'OP_ESInitMsg',25,1),(10433,57107,57109,'OP_ESReadyForClientsMsg',26,1),(10434,57107,57109,'OP_CreateZoneInstanceMsg',29,1),(10435,57107,57109,'OP_ZoneInstanceCreateReplyMsg',30,1),(10436,57107,57109,'OP_ZoneInstanceDestroyedMsg',31,1),(10437,57107,57109,'OP_ExpectClientAsCharacterRequest',32,1),(10438,57107,57109,'OP_ZoneInfoMsg',33,1),(10439,57107,57109,'OP_DoneLoadingZoneResourcesMsg',34,1),(10440,57107,57109,'OP_DoneSendingInitialEntitiesMsg',35,1),(10441,57107,57109,'OP_DoneLoadingEntityResourcesMsg',36,1),(10442,57107,57109,'OP_PredictionUpdateMsg',37,1),(10443,57107,57109,'OP_UpdatePositionMsg',39,1),(10444,57107,57109,'OP_SetRemoteCmdsMsg',41,1),(10445,57107,57109,'OP_RemoteCmdMsg',42,1),(10446,57107,57109,'OP_GameWorldTimeMsg',43,1),(10447,57107,57109,'OP_MOTDMsg',44,1),(10448,57107,57109,'OP_ZoneMOTDMsg',45,1),(10449,57107,57109,'OP_AvatarCreatedMsg',46,1),(10450,57107,57109,'OP_AvatarDestroyedMsg',47,1),(10451,57107,57109,'OP_RequestCampMsg',50,1),(10452,57107,57109,'OP_CampStartedMsg',51,1),(10453,57107,57109,'OP_CampAbortedMsg',52,1),(10454,57107,57109,'OP_WhoQueryRequestMsg',53,1),(10455,57107,57109,'OP_WhoQueryReplyMsg',54,1),(10456,57107,57109,'OP_MonitorReplyMsg',55,1),(10457,57107,57109,'OP_MonitorCharacterListMsg',56,1),(10458,57107,57109,'OP_MonitorCharacterListRequestMsg',57,1),(10459,57107,57109,'OP_ClientCmdMsg',58,1),(10460,57107,57109,'OP_DispatchESMsg',59,1),(10461,57107,57109,'OP_DispatchClientCmdMsg',60,1),(10462,57107,57109,'OP_UpdateTargetMsg',61,1),(10463,57107,57109,'OP_UpdateTargetLocMsg',62,1),(10464,57107,57109,'OP_UpdateCharacterSheetMsg',63,1),(10465,57107,57109,'OP_CharacterPet',64,1),(10466,57107,57109,'OP_CharacterMerc',65,1),(10467,57107,57109,'OP_UpdateSpellBookMsg',66,1),(10468,57107,57109,'OP_UpdateInventoryMsg',68,1),(10469,57107,57109,'OP_AfterInvSpellUpdate',69,1),(10470,57107,57109,'OP_UpdateRecipeBookMsg',70,1),(10471,57107,57109,'OP_RequestRecipeDetailsMsg',71,1),(10472,57107,57109,'OP_RecipeDetailsMsg',72,1),(10473,57107,57109,'OP_UpdateSkillBookMsg',73,1),(10474,57107,57109,'OP_UpdateSkillsMsg',74,1),(10475,57107,57109,'OP_UpdateOpportunityMsg',75,1),(10476,57107,57109,'OP_ChangeZoneMsg',77,1),(10477,57107,57109,'OP_ClientTeleportRequestMsg',78,1),(10478,57107,57109,'OP_TeleportWithinZoneMsg',79,1),(10479,57107,57109,'OP_TeleportWithinZoneNoReloadMsg',80,1),(10480,57107,57109,'OP_MigrateClientToZoneRequestMsg',81,1),(10481,57107,57109,'OP_MigrateClientToZoneReplyMsg',82,1),(10482,57107,57109,'OP_ReadyToZoneMsg',84,1),(10483,57107,57109,'OP_RemoveClientFromGroupMsg',85,1),(10484,57107,57109,'OP_RemoveGroupFromGroupMsg',86,1),(10485,57107,57109,'OP_MakeGroupLeaderMsg',87,1),(10486,57107,57109,'OP_GroupCreatedMsg',88,1),(10487,57107,57109,'OP_GroupDestroyedMsg',89,1),(10488,57107,57109,'OP_GroupMemberAddedMsg',90,1),(10489,57107,57109,'OP_GroupMemberRemovedMsg',91,1),(10490,57107,57109,'OP_GroupRemovedFromGroupMsg',92,1),(10491,57107,57109,'OP_GroupLeaderChangedMsg',93,1),(10492,57107,57109,'OP_GroupResendOOZDataMsg',94,1),(10493,57107,57109,'OP_GroupSettingsChangedMsg',95,1),(10494,57107,57109,'OP_OutOfZoneMemberDataMsg',96,1),(10495,57107,57109,'OP_SendLatestRequestMsg',97,1),(10496,57107,57109,'OP_ClearDataMsg',98,1),(10497,57107,57109,'OP_SetSocialMsg',99,1),(10498,57107,57109,'OP_ESStatusMsg',100,1),(10499,57107,57109,'OP_ESZoneInstanceStatusMsg',101,1),(10500,57107,57109,'OP_ZonesStatusRequestMsg',102,1),(10501,57107,57109,'OP_ZonesStatusMsg',103,1),(10502,57107,57109,'OP_ESWeatherRequestMsg',104,1),(10503,57107,57109,'OP_ESWeatherRequestEndMsg',105,1),(10504,57107,57109,'OP_DialogSelectMsg',109,1),(10505,57107,57109,'OP_DialogCloseMsg',110,1),(10506,57107,57109,'OP_RemoveSpellEffectMsg',111,1),(10507,57107,57109,'OP_RemoveConcentrationMsg',112,1),(10508,57107,57109,'OP_QuestJournalOpenMsg',113,1),(10509,57107,57109,'OP_QuestJournalInspectMsg',114,1),(10510,57107,57109,'OP_QuestJournalSetVisibleMsg',115,1),(10511,57107,57109,'OP_QuestJournalWaypointMsg',116,1),(10512,57107,57109,'OP_CreateGuildRequestMsg',119,1),(10513,57107,57109,'OP_CreateGuildReplyMsg',120,1),(10514,57107,57109,'OP_GuildsayMsg',121,1),(10515,57107,57109,'OP_FellowshipExpMsg',122,1),(10516,57107,57109,'OP_DeleteGuildMsg',123,1),(10517,57107,57109,'OP_GuildUpdateMsg',124,1),(10518,57107,57109,'OP_ConsignmentCloseStoreMsg',125,1),(10519,57107,57109,'OP_ConsignItemRequestMsg',126,1),(10520,57107,57109,'OP_ConsignItemResponseMsg',127,1),(10521,57107,57109,'OP_PurchaseConsignmentRequestMsg',128,1),(10522,57107,57109,'OP_LikeOption',136,1),(10523,57107,57109,'OP_PublishHouse',138,1),(10524,57107,57109,'OP_PlayerMadeInstancesScreen',139,1),(10525,57107,57109,'OP_PlayerMadeInstances',140,1),(10526,57107,57109,'OP_HouseDeletedRemotelyMsg',142,1),(10527,57107,57109,'OP_UpdateHouseDataMsg',143,1),(10528,57107,57109,'OP_UpdateHouseAccessDataMsg',144,1),(10529,57107,57109,'OP_PlayerHouseBaseScreenMsg',145,1),(10530,57107,57109,'OP_PlayerHousePurchaseScreenMsg',146,1),(10531,57107,57109,'OP_PlayerHouseAccessUpdateMsg',147,1),(10532,57107,57109,'OP_PlayerHouseDisplayStatusMsg',148,1),(10533,57107,57109,'OP_PlayerHouseCloseUIMsg',149,1),(10534,57107,57109,'OP_BuyPlayerHouseMsg',150,1),(10535,57107,57109,'OP_BuyPlayerHouseTintMsg',151,1),(10536,57107,57109,'OP_CollectAllHouseItemsMsg',152,1),(10537,57107,57109,'OP_RelinquishHouseMsg',153,1),(10538,57107,57109,'OP_EnterHouseMsg',154,1),(10539,57107,57109,'OP_ExitHouseMsg',155,1),(10540,57107,57109,'OP_HouseDefaultAccessSetMsg',156,1),(10541,57107,57109,'OP_HouseAccessSetMsg',157,1),(10542,57107,57109,'OP_HouseAccessRemoveMsg',158,1),(10543,57107,57109,'OP_PayHouseUpkeepMsg',159,1),(10544,57107,57109,'OP_MoveableObjectPlacementCriteri',160,1),(10545,57107,57109,'OP_EnterMoveObjectModeMsg',161,1),(10546,57107,57109,'OP_PositionMoveableObject',162,1),(10547,57107,57109,'OP_CancelMoveObjectModeMsg',163,1),(10548,57107,57109,'OP_ShaderCustomizationMsg',164,1),(10549,57107,57109,'OP_ReplaceableSubMeshesMsg',165,1),(10550,57107,57109,'OP_HouseCustomizationScreenMsg',166,1),(10551,57107,57109,'OP_CustomizationPurchaseRequestMs',167,1),(10552,57107,57109,'OP_CustomizationSetRequestMsg',168,1),(10553,57107,57109,'OP_CustomizationReplyMsg',169,1),(10554,57107,57109,'OP_TintWidgetsMsg',170,1),(10555,57107,57109,'OP_ExamineConsignmentRequestMsg',171,1),(10556,57107,57109,'OP_ExamineConsignmentResponseMsg',172,1),(10557,57107,57109,'OP_UISettingsResponseMsg',173,1),(10558,57107,57109,'OP_UIResetMsg',174,1),(10559,57107,57109,'OP_KeymapLoadMsg',175,1),(10560,57107,57109,'OP_KeymapNoneMsg',176,1),(10561,57107,57109,'OP_KeymapDataMsg',177,1),(10562,57107,57109,'OP_KeymapSaveMsg',178,1),(10563,57107,57109,'OP_DispatchSpellCmdMsg',179,1),(10564,57107,57109,'OP_EntityVerbsRequestMsg',180,1),(10565,57107,57109,'OP_EntityVerbsReplyMsg',181,1),(10566,57107,57109,'OP_EntityVerbsVerbMsg',182,1),(10567,57107,57109,'OP_ChatRelationshipUpdateMsg',184,1),(10568,57107,57109,'OP_LootItemsRequestMsg',185,1),(10569,57107,57109,'OP_StoppedLootingMsg',186,1),(10570,57107,57109,'OP_SitMsg',187,1),(10571,57107,57109,'OP_StandMsg',188,1),(10572,57107,57109,'OP_SatMsg',189,1),(10573,57107,57109,'OP_StoodMsg',190,1),(10574,57107,57109,'OP_ClearForTakeOffMsg',191,1),(10575,57107,57109,'OP_ReadyForTakeOffMsg',192,1),(10576,57107,57109,'OP_ShowIllusionsMsg',193,1),(10577,57107,57109,'OP_HideIllusionsMsg',194,1),(10578,57107,57109,'OP_ExamineItemRequestMsg',195,1),(10579,57107,57109,'OP_ReadBookPageMsg',196,1),(10580,57107,57109,'OP_DefaultGroupOptionsRequestMsg',197,1),(10581,57107,57109,'OP_DefaultGroupOptionsMsg',198,1),(10582,57107,57109,'OP_GroupOptionsMsg',199,1),(10583,57107,57109,'OP_DisplayGroupOptionsScreenMsg',200,1),(10584,57107,57109,'OP_PetOptions',201,1),(10585,57107,57109,'OP_DisplayInnVisitScreenMsg',202,1),(10586,57107,57109,'OP_DumpSchedulerMsg',203,1),(10587,57107,57109,'OP_LSCheckAcctLockMsg',204,1),(10588,57107,57109,'OP_WSAcctLockStatusMsg',205,1),(10589,57107,57109,'OP_RequestHelpRepathMsg',206,1),(10590,57107,57109,'OP_RequestTargetLocMsg',207,1),(10591,57107,57109,'OP_UpdateMotdMsg',208,1),(10592,57107,57109,'OP_DestUpdateReq',210,1),(10593,57107,57109,'OP_PerformPlayerKnockbackMsg',213,1),(10594,57107,57109,'OP_PerformCameraShakeMsg',214,1),(10595,57107,57109,'OP_PopulateSkillMapsMsg',215,1),(10596,57107,57109,'OP_CancelledFeignMsg',216,1),(10597,57107,57109,'OP_SysClient',218,1),(10598,57107,57109,'OP_ShowCreateFromRecipeUIMsg',219,1),(10599,57107,57109,'OP_CancelCreateFromRecipeMsg',220,1),(10600,57107,57109,'OP_BeginItemCreationMsg',221,1),(10601,57107,57109,'OP_StopItemCreationMsg',222,1),(10602,57107,57109,'OP_ShowItemCreationProcessUIMsg',223,1),(10603,57107,57109,'OP_UpdateItemCreationProcessUIMsg',224,1),(10604,57107,57109,'OP_DisplayTSEventReactionMsg',225,1),(10605,57107,57109,'OP_ShowRecipeBookMsg',226,1),(10606,57107,57109,'OP_KnowledgebaseRequestMsg',227,1),(10607,57107,57109,'OP_KnowledgebaseResponseMsg',228,1),(10608,57107,57109,'OP_CSTicketHeaderRequestMsg',229,1),(10609,57107,57109,'OP_CSTicketInfoMsg',230,1),(10610,57107,57109,'OP_CSTicketCommentRequestMsg',231,1),(10611,57107,57109,'OP_CSTicketCommentResponseMsg',232,1),(10612,57107,57109,'OP_CSTicketCreateMsg',233,1),(10613,57107,57109,'OP_CSTicketAddCommentMsg',234,1),(10614,57107,57109,'OP_CSTicketDeleteMsg',235,1),(10615,57107,57109,'OP_CSTicketChangeNotificationMsg',236,1),(10616,57107,57109,'OP_WorldDataUpdateMsg',237,1),(10617,57107,57109,'OP_KnownLanguagesMsg',238,1),(10618,57107,57109,'OP_LsRequestClientCrashLogMsg',239,1),(10619,57107,57109,'OP_LsClientBaselogReplyMsg',240,1),(10620,57107,57109,'OP_LsClientCrashlogReplyMsg',241,1),(10621,57107,57109,'OP_LsClientAlertlogReplyMsg',242,1),(10622,57107,57109,'OP_LsClientVerifylogReplyMsg',243,1),(10623,57107,57109,'OP_ClientTeleportToLocationMsg',244,1),(10624,57107,57109,'OP_UpdateClientPredFlagsMsg',245,1),(10625,57107,57109,'OP_ChangeServerControlFlagMsg',246,1),(10626,57107,57109,'OP_CSToolsRequestMsg',247,1),(10627,57107,57109,'OP_CSToolsResponseMsg',248,1),(10628,57107,57109,'OP_AddSocialStructureStandingMsg',249,1),(10629,57107,57109,'OP_CreateBoatTransportsMsg',250,1),(10630,57107,57109,'OP_PositionBoatTransportMsg',251,1),(10631,57107,57109,'OP_MigrateBoatTransportMsg',252,1),(10632,57107,57109,'OP_MigrateBoatTransportReplyMsg',253,1),(10633,57107,57109,'OP_DisplayDebugNLLPointsMsg',254,1),(10634,57107,57109,'OP_ExamineInfoRequestMsg',255,1),(10635,57107,57109,'OP_QuickbarInitMsg',256,1),(10636,57107,57109,'OP_QuickbarUpdateMsg',257,1),(10637,57107,57109,'OP_MacroInitMsg',258,1),(10638,57107,57109,'OP_MacroUpdateMsg',259,1),(10639,57107,57109,'OP_QuestionnaireMsg',260,1),(10640,57107,57109,'OP_LevelChangedMsg',261,1),(10641,57107,57109,'OP_SpellGainedMsg',262,1),(10642,57107,57109,'OP_EncounterBrokenMsg',263,1),(10643,57107,57109,'OP_OnscreenMsgMsg',264,1),(10644,57107,57109,'OP_DisplayWarningMsg',265,1),(10645,57107,57109,'OP_ModifyGuildMsg',266,1),(10646,57107,57109,'OP_GuildEventMsg',267,1),(10647,57107,57109,'OP_GuildEventAddMsg',268,1),(10648,57107,57109,'OP_GuildEventActionMsg',269,1),(10649,57107,57109,'OP_GuildEventListMsg',270,1),(10650,57107,57109,'OP_RequestGuildEventDetailsMsg',271,1),(10651,57107,57109,'OP_GuildEventDetailsMsg',272,1),(10652,57107,57109,'OP_RequestGuildInfoMsg',273,1),(10653,57107,57109,'OP_GuildBankActionMsg',274,1),(10654,57107,57109,'OP_GuildBankActionResponseMsg',275,1),(10655,57107,57109,'OP_GuildBankItemDetailsRequestMsg',276,1),(10656,57107,57109,'OP_GuildBankItemDetailsResponseMs',277,1),(10657,57107,57109,'OP_GuildBankUpdateMsg',278,1),(10658,57107,57109,'OP_GuildBankEventListMsg',279,1),(10659,57107,57109,'OP_RequestGuildBankEventDetailsMs',280,1),(10660,57107,57109,'OP_RewardPackMsg',281,1),(10661,57107,57109,'OP_RenameGuildMsg',282,1),(10662,57107,57109,'OP_ZoneToFriendRequestMsg',283,1),(10663,57107,57109,'OP_ZoneToFriendReplyMsg',284,1),(10664,57107,57109,'OP_ChatCreateChannelMsg',285,1),(10665,57107,57109,'OP_ChatJoinChannelMsg',286,1),(10666,57107,57109,'OP_ChatWhoChannelMsg',287,1),(10667,57107,57109,'OP_ChatLeaveChannelMsg',288,1),(10668,57107,57109,'OP_ChatTellChannelMsg',289,1),(10669,57107,57109,'OP_ChatTellUserMsg',290,1),(10670,57107,57109,'OP_ChatToggleFriendMsg',291,1),(10671,57107,57109,'OP_BrokerAddBag',292,1),(10672,57107,57109,'OP_BrokerRemoveBag',293,1),(10673,57107,57109,'OP_ChatToggleIgnoreMsg',294,1),(10674,57107,57109,'OP_ChatSendFriendsMsg',295,1),(10675,57107,57109,'OP_ChatSendIgnoresMsg',296,1),(10676,57107,57109,'OP_QuestReward',320,1),(10677,57107,57109,'OP_ChatFiltersMsg',335,1),(10678,57107,57109,'OP_MailGetMessageMsg',338,1),(10679,57107,57109,'OP_MailSendMessageMsg',339,1),(10680,57107,57109,'OP_MailDeleteMessageMsg',340,1),(10681,57107,57109,'OP_MailGetHeadersReplyMsg',341,1),(10682,57107,57109,'OP_MailGetMessageReplyMsg',342,1),(10683,57107,57109,'OP_MailSendMessageReplyMsg',343,1),(10684,57107,57109,'OP_MailCommitSendMessageMsg',344,1),(10685,57107,57109,'OP_MailSendSystemMessageMsg',345,1),(10686,57107,57109,'OP_MailRemoveAttachFromMailMsg',346,1),(10687,57107,57109,'OP_WaypointRequestMsg',348,1),(10688,57107,57109,'OP_WaypointReplyMsg',349,1),(10689,57107,57109,'OP_WaypointSelectMsg',350,1),(10690,57107,57109,'OP_WaypointUpdateMsg',351,1),(10691,57107,57109,'OP_CharNameChangedMsg',352,1),(10692,57107,57109,'OP_ShowZoneTeleporterDestinations',353,1),(10693,57107,57109,'OP_SelectZoneTeleporterDestinatio',354,1),(10694,57107,57109,'OP_ReloadLocalizedTxtMsg',355,1),(10695,57107,57109,'OP_RequestGuildMembershipMsg',356,1),(10696,57107,57109,'OP_GuildMembershipResponseMsg',357,1),(10697,57107,57109,'OP_LeaveGuildNotifyMsg',358,1),(10698,57107,57109,'OP_JoinGuildNotifyMsg',359,1),(10699,57107,57109,'OP_AvatarUpdateMsg',360,1),(10700,57107,57109,'OP_BioUpdateMsg',362,1),(10701,57107,57109,'OP_InspectPlayerMsg',363,1),(10702,57107,57109,'OP_WSServerLockMsg',364,1),(10703,57107,57109,'OP_LSServerLockMsg',365,1),(10704,57107,57109,'OP_WSServerHideMsg',366,1),(10705,57107,57109,'OP_CsCategoryRequestMsg',367,1),(10706,57107,57109,'OP_CsCategoryResponseMsg',368,1),(10707,57107,57109,'OP_KnowledgeWindowSlotMappingMsg',369,1),(10708,57107,57109,'OP_AFKUpdateMsg',370,1),(10709,57107,57109,'OP_AnonUpdateMsg',371,1),(10710,57107,57109,'OP_UpdateActivePublicZonesMsg',372,1),(10711,57107,57109,'OP_UnknownNpcMsg',373,1),(10712,57107,57109,'OP_PromoFlagsDetailsMsg',374,1),(10713,57107,57109,'OP_ConsignViewCreateMsg',375,1),(10714,57107,57109,'OP_ConsignViewGetPageMsg',376,1),(10715,57107,57109,'OP_ConsignViewReleaseMsg',377,1),(10716,57107,57109,'OP_ConsignRemoveItemsMsg',378,1),(10717,57107,57109,'OP_UpdateDebugRadiiMsg',379,1),(10718,57107,57109,'OP_ReportMsg',380,1),(10719,57107,57109,'OP_UpdateRaidMsg',381,1),(10720,57107,57109,'OP_ConsignViewSortMsg',383,1),(10721,57107,57109,'OP_TitleUpdateMsg',384,1),(10722,57107,57109,'OP_ClientFellMsg',385,1),(10723,57107,57109,'OP_ClientInDeathRegionMsg',386,1),(10724,57107,57109,'OP_CampClientMsg',387,1),(10725,57107,57109,'OP_CSToolAccessResponseMsg',388,1),(10726,57107,57109,'OP_UpdateGroupMemberDataMsg',388,1),(10727,57107,57109,'OP_TrackingUpdateMsg',389,1),(10728,57107,57109,'OP_BeginTrackingMsg',390,1),(10729,57107,57109,'OP_StopTrackingMsg',391,1),(10730,57107,57109,'OP_GetAvatarAccessRequestForCSToo',393,1),(10731,57107,57109,'OP_AdvancementRequestMsg',394,1),(10732,57107,57109,'OP_MapFogDataInitMsg',395,1),(10733,57107,57109,'OP_MapFogDataUpdateMsg',396,1),(10734,57107,57109,'OP_CloseGroupInviteWindowMsg',397,1),(10735,57107,57109,'OP_WorldPingMsg',399,1),(10736,57107,57109,'OP_MoveLogUpdateMsg',400,1),(10737,57107,57109,'OP_OfferQuestMsg',401,1),(10738,57107,57109,'OP_WorldShutdownUpdateMsg',403,1),(10739,57107,57109,'OP_DisplayMailScreenMsg',404,1),(10740,57107,57109,'OP_ClientIdleBeginMsg',405,1),(10741,57107,57109,'OP_ClientIdleEndMsg',406,1),(10742,57107,57109,'OP_PurchaseConsignmentLoreCheckRe',407,1),(10743,57107,57109,'OP_NotifyApprenticeStoppedMentori',408,1),(10744,57107,57109,'OP_CorruptedClientMsg',409,1),(10745,57107,57109,'OP_WorldDataChangeMsg',410,1),(10746,57107,57109,'OP_MailEventNotificationMsg',411,1),(10747,57107,57109,'OP_RestartZoneMsg',412,1),(10748,57107,57109,'OP_FlightPathsMsg',413,1),(10749,57107,57109,'OP_CharacterLinkdeadMsg',414,1),(10750,57107,57109,'OP_CharTransferStartRequestMsg',415,1),(10751,57107,57109,'OP_CharTransferStartReplyMsg',416,1),(10752,57107,57109,'OP_CharTransferRequestMsg',417,1),(10753,57107,57109,'OP_CharTransferReplyMsg',418,1),(10754,57107,57109,'OP_CharTransferRollbackRequestMsg',419,1),(10755,57107,57109,'OP_CharTransferCommitRequestMsg',420,1),(10756,57107,57109,'OP_CharTransferRollbackReplyMsg',421,1),(10757,57107,57109,'OP_CharTransferCommitReplyMsg',422,1),(10758,57107,57109,'OP_GetCharacterSerializedRequestM',423,1),(10759,57107,57109,'OP_GetCharacterSerializedReplyMsg',424,1),(10760,57107,57109,'OP_CreateCharFromCBBRequestMsg',425,1),(10761,57107,57109,'OP_CreateCharFromCBBReplyMsg',426,1),(10762,57107,57109,'OP_HousingDataChangedMsg',427,1),(10763,57107,57109,'OP_HousingRestoreMsg',428,1),(10764,57107,57109,'OP_AuctionItem',429,1),(10765,57107,57109,'OP_AuctionItemReply',430,1),(10766,57107,57109,'OP_AuctionCoin',431,1),(10767,57107,57109,'OP_AuctionCoinReply',432,1),(10768,57107,57109,'OP_AuctionCharacter',433,1),(10769,57107,57109,'OP_AuctionCharacterReply',434,1),(10770,57107,57109,'OP_AuctionCommitMsg',435,1),(10771,57107,57109,'OP_AuctionAbortMsg',436,1),(10772,57107,57109,'OP_CharTransferValidateRequestMsg',437,1),(10773,57107,57109,'OP_CharTransferValidateReplyMsg',438,1),(10774,57107,57109,'OP_RaceRestrictionMsg',439,1),(10775,57107,57109,'OP_SetInstanceDisplayNameMsg',440,1),(10776,57107,57109,'OP_GetAuctionAssetIDMsg',441,1),(10777,57107,57109,'OP_GetAuctionAssetIDReplyMsg',442,1),(10778,57107,57109,'OP_ResendWorldChannelsMsg',443,1),(10779,57107,57109,'OP_DisplayExchangeScreenMsg',444,1),(10780,57107,57109,'OP_ArenaGameTypesMsg',445,1),(10781,57107,57109,'OP_AuditAuctionEventMsg',446,1),(10782,57107,57109,'OP_InviteRequestMsg',447,1),(10783,57107,57109,'OP_InviteResponseMsg',448,1),(10784,57107,57109,'OP_InviteTargetResponseMsg',449,1),(10785,57107,57109,'OP_InspectPlayerRequestMsg',450,1),(10786,57107,57109,'OP_DispatchMsg',451,1),(10787,57107,57109,'OP_DisplayEventMsg',452,1),(10788,57107,57109,'OP_PrePossessionMsg',453,1),(10789,57107,57109,'OP_PostPossessionMsg',454,1),(10790,57107,57109,'OP_ArenaCreate',456,1),(10791,57107,57109,'OP_ArenaList',457,1),(10792,57107,57109,'OP_ArenaWindow',465,1),(10793,57107,57109,'OP_HouseItemsList',484,1),(10794,57107,57109,'OP_CurrentPet',485,1),(10795,57107,57109,'OP_AdventureList',488,1),(10796,57107,57109,'OP_CancelSpellCast',489,1),(10797,57107,57109,'OP_ClearForLandingMsg',491,1),(10798,57107,57109,'OP_UpdateTitleCmd',494,1),(10799,57107,57109,'OP_AttackAllowed',500,1),(10800,57107,57109,'OP_AttackNotAllowed',501,1),(10801,57107,57109,'OP_BagOptions',502,1),(10802,57107,57109,'OP_LFGGroupSearch',504,1),(10803,57107,57109,'OP_CharacterHousingList',507,1),(10804,57107,57109,'OP_DressingRoom',510,1),(10805,57107,57109,'OP_PlayLon',511,1),(10806,57107,57109,'OP_SkillInfoRequest',514,1),(10807,57107,57109,'OP_SkillInfoResponse',515,1),(10808,57107,57109,'OP_LFGUpdateMsg',518,1),(10809,57107,57109,'OP_BadLanguageFilter',519,1),(10810,57107,57109,'OP_VoiceChatChannel',520,1),(10811,57107,57109,'OP_MapRequest',521,1),(10812,57107,57109,'OP_MarketFundsUpdate',526,1),(10813,57107,57109,'OP_UIEvent',527,1),(10814,57107,57109,'OP_MarketAddFundsRequest',528,1),(10815,57107,57109,'OP_MarketAddFundsReply',529,1),(10816,57107,57109,'OP_MarketPurchase',531,1),(10817,57107,57109,'OP_MarketPlacePrices',532,1),(10818,57107,57109,'OP_MarketPlaceItems',537,1),(10819,57107,57109,'OP_RecipeBook',538,1),(10820,57107,57109,'OP_CreateCharacterDungeon',547,1),(10821,57107,57109,'OP_DungeonMakerEnter',548,1),(10822,57107,57109,'OP_DungeonMakerItemRequest',550,1),(10823,57107,57109,'OP_CharacterCreatedDungeons',551,1),(10824,57107,57109,'OP_DungeonMakerToolboxList',552,1),(10825,57107,57109,'OP_DungeonMakerUnknown',553,1),(10826,57107,57109,'OP_DungeonMakerUnknown1',554,1),(10827,57107,57109,'OP_PlayerPollPopup',556,1),(10828,57107,57109,'OP_PlayerPollAnswer',557,1),(10829,57107,57109,'OP_MentorPopup',558,1),(10830,57107,57109,'OP_LoadWelcomeWindow',560,1),(10831,57107,57109,'OP_OpenCharCust',561,1),(10832,57107,57109,'OP_SubmitCharCust',562,1),(10833,57107,57109,'OP_QueAllBgSolo',564,1),(10834,57107,57109,'OP_ZoneBgInstanceList',566,1),(10835,57107,57109,'OP_WorldTravelAvail',570,1),(10836,57107,57109,'OP_Launchpad',572,1),(10837,57107,57109,'OP_PaperdollImage',574,1),(10838,57107,57109,'OP_LoadCalendarEvents',575,1),(10839,57107,57109,'OP_VideoUploaded',576,1),(10840,57107,57109,'OP_SavageBarInitMsg',577,1),(10841,57107,57109,'OP_PetOptionsResponse',578,1),(10842,57107,57109,'OP_DungeonMakerItemResponse',579,1),(10843,57107,57109,'OP_CharacterMounts',581,1),(10844,57107,57109,'OP_RecipeListUnknown',590,1),(10845,57107,57109,'OP_EqBetaCopyRequest',601,1),(10846,57107,57109,'OP_EqHearChatCmd',602,1),(10847,57107,57109,'OP_EqDisplayTextCmd',603,1),(10848,57107,57109,'OP_EqCreateGhostCmd',604,1),(10849,57107,57109,'OP_EqCreateWidgetCmd',605,1),(10850,57107,57109,'OP_EqCreateSignWidgetCmd',606,1),(10851,57107,57109,'OP_EqDestroyGhostCmd',607,1),(10852,57107,57109,'OP_EqUpdateGhostCmd',608,1),(10853,57107,57109,'OP_EqSetControlGhostCmd',609,1),(10854,57107,57109,'OP_EqSetPOVGhostCmd',610,1),(10855,57107,57109,'OP_EqHearCombatCmd',611,1),(10856,57107,57109,'OP_EqHearSpellCastCmd',612,1),(10857,57107,57109,'OP_EQHearProcCmd',613,1),(10858,57107,57109,'OP_EQHearResEffectCmd',614,1),(10859,57107,57109,'OP_EqHearSpellInterruptCmd',615,1),(10860,57107,57109,'OP_EqHearSpellFizzleCmd',616,1),(10861,57107,57109,'OP_EqHearConsiderCmd',617,1),(10862,57107,57109,'OP_EqUpdateSubClassesCmd',618,1),(10863,57107,57109,'OP_EqCreateListBoxCmd',619,1),(10864,57107,57109,'OP_EqSetDebugPathPointsCmd',620,1),(10865,57107,57109,'OP_EqCannedEmoteCmd',622,1),(10866,57107,57109,'OP_EqStateCmd',623,1),(10867,57107,57109,'OP_EqPlaySoundCmd',624,1),(10868,57107,57109,'OP_EqPlaySound3DCmd',625,1),(10869,57107,57109,'OP_EqPlayVoiceCmd',626,1),(10870,57107,57109,'OP_EqHearDrowningCmd',627,1),(10871,57107,57109,'OP_EqHearDeathCmd',628,1),(10872,57107,57109,'OP_EqGroupMemberRemovedCmd',629,1),(10873,57107,57109,'OP_EqHearChainEffectCmd',630,1),(10874,57107,57109,'OP_EqReceiveOfferCmd',631,1),(10875,57107,57109,'OP_EqInspectPCResultsCmd',632,1),(10876,57107,57109,'OP_EqDrawablePathGraphCmd',633,1),(10877,57107,57109,'OP_EqDialogOpenCmd',634,1),(10878,57107,57109,'OP_EqDialogCloseCmd',635,1),(10879,57107,57109,'OP_EqFactionUpdateCmd',636,1),(10880,57107,57109,'OP_EqCollectionUpdateCmd',637,1),(10881,57107,57109,'OP_EqCollectionFilterCmd',638,1),(10882,57107,57109,'OP_EqCollectionItemCmd',639,1),(10883,57107,57109,'OP_EqQuestJournalUpdateCmd',640,1),(10884,57107,57109,'OP_EqMentoring',641,1),(10885,57107,57109,'OP_EqQuestJournalReplyCmd',642,1),(10886,57107,57109,'OP_EqQuestGroupCmd',643,1),(10887,57107,57109,'OP_EqUpdateMerchantCmd',644,1),(10888,57107,57109,'OP_EqUpdateStoreCmd',645,1),(10889,57107,57109,'OP_EqUpdatePlayerTradeCmd',646,1),(10890,57107,57109,'OP_EqHelpPathCmd',647,1),(10891,57107,57109,'OP_EqHelpPathClearCmd',648,1),(10892,57107,57109,'OP_EqUpdateBankCmd',649,1),(10893,57107,57109,'OP_EqExamineInfoCmd',650,1),(10894,57107,57109,'OP_EqCloseWindowCmd',651,1),(10895,57107,57109,'OP_EqUpdateLootCmd',652,1),(10896,57107,57109,'OP_EqJunctionListCmd',653,1),(10897,57107,57109,'OP_EqShowDeathWindowCmd',654,1),(10898,57107,57109,'OP_EqDisplaySpellFailCmd',655,1),(10899,57107,57109,'OP_EqSpellCastStartCmd',656,1),(10900,57107,57109,'OP_EqSpellCastEndCmd',657,1),(10901,57107,57109,'OP_EqResurrectedCmd',658,1),(10902,57107,57109,'OP_EqChoiceWinCmd',659,1),(10903,57107,57109,'OP_EqSetDefaultVerbCmd',660,1),(10904,57107,57109,'OP_EqInstructionWindowCmd',661,1),(10905,57107,57109,'OP_EqInstructionWindowCloseCmd',662,1),(10906,57107,57109,'OP_EqInstructionWindowGoalCmd',663,1),(10907,57107,57109,'OP_EqInstructionWindowTaskCmd',664,1),(10908,57107,57109,'OP_EqEnableGameEventCmd',665,1),(10909,57107,57109,'OP_EqShowWindowCmd',666,1),(10910,57107,57109,'OP_EqEnableWindowCmd',667,1),(10911,57107,57109,'OP_EqFlashWindowCmd',668,1),(10912,57107,57109,'OP_EqHearPlayFlavorCmd',670,1),(10913,57107,57109,'OP_EqUpdateSignWidgetCmd',671,1),(10914,57107,57109,'OP_EqDebugPVDCmd',672,1),(10915,57107,57109,'OP_EqShowBookCmd',673,1),(10916,57107,57109,'OP_EqQuestionnaireCmd',674,1),(10917,57107,57109,'OP_EqGetProbsCmd',676,1),(10918,57107,57109,'OP_EqHearHealCmd',677,1),(10919,57107,57109,'OP_EqChatChannelUpdateCmd',678,1),(10920,57107,57109,'OP_EqWhoChannelQueryReplyCmd',679,1),(10921,57107,57109,'OP_EqAvailWorldChannelsCmd',680,1),(10922,57107,57109,'OP_EqUpdateTargetCmd',681,1),(10923,57107,57109,'OP_BrokerSellList',682,1),(10924,57107,57109,'OP_EqConsignmentItemsCmd',683,1),(10925,57107,57109,'OP_EqStartBrokerCmd',685,1),(10926,57107,57109,'OP_EqMapExplorationCmd',686,1),(10927,57107,57109,'OP_EqStoreLogCmd',687,1),(10928,57107,57109,'OP_EqSpellMoveToRangeAndRetryCmd',688,1),(10929,57107,57109,'OP_EqUpdatePlayerMailCmd',689,1),(10930,57107,57109,'OP_GuildStatusUpdate',692,1),(10931,57107,57109,'OP_EqArenaResultsCmd',693,1),(10932,57107,57109,'OP_EqGuildBankEventActionCmd',694,1),(10933,57107,57109,'OP_EqGuildBankExamineInfoCmd',695,1),(10934,57107,57109,'OP_EqHearSpellNoLandCmd',696,1),(10935,57107,57109,'OP_Lottery',697,1),(10936,57107,57109,'OP_GuildRecruitingMemberInfo',698,1),(10937,57107,57109,'OP_GuildRecruiting',699,1),(10938,57107,57109,'OP_GuildRecruitingDetails',700,1),(10939,57107,57109,'OP_GuildRecruitingImage',701,1),(10940,57107,57109,'OP_TradeskillList',702,1),(10941,57107,57109,'OP_CharRenamed',703,1),(10942,57107,57109,'OP_UseAdornment',713,1),(10943,57107,57109,'OP_ExpPurchWindow',719,1),(10944,57107,57109,'OP_PointOfInterest',723,1),(10945,57107,57109,'OP_PointOfInterest2',724,1),(10946,57107,57109,'OP_TraitsList',725,1),(10947,57107,57109,'OP_CustomizeHouseDisplay',728,1),(10948,57107,57109,'OP_VoiceChatServer',729,1),(10949,57107,57109,'OP_SupplyDepot',733,1),(10950,57107,57109,'OP_EQHearThreatCmd',734,1),(10951,57107,57109,'OP_RecipeList',735,1),(10952,57107,57109,'OP_Research',736,1),(10953,57107,57109,'OP_CharacterCurrency',737,1),(10954,57107,57109,'OP_CharacterAchievements',738,1),(10955,57107,57109,'OP_AchievementUpdateMsg',739,1),(10956,57107,57109,'OP_EQHearDispellCmd',740,1),(10957,57107,57109,'OP_JournalQuestStoryline',741,1),(10958,57107,57109,'OP_DungeonPlayAsAvatarList',742,1),(10959,57107,57109,'OP_DungeonPlayAsAvatarSelected',743,1),(10960,57107,57109,'OP_MercHireWindow',744,1),(10961,57107,57109,'OP_MercUnknown',745,1),(10962,57107,57109,'OP_Unknown',758,1),(10963,57107,57109,'OP_DailyObjectives',595,1),(10964,57107,57109,'OP_Weakness',580,1),(10965,57121,58525,'OP_AchievementUpdateMsg',741,1),(10966,57121,58525,'OP_AddSocialStructureStandingMsg',249,1),(10967,57121,58525,'OP_AdvancementRequestMsg',394,1),(10968,57121,58525,'OP_AdventureList',488,1),(10969,57121,58525,'OP_AFKUpdateMsg',370,1),(10970,57121,58525,'OP_AfterInvSpellUpdate',69,1),(10971,57121,58525,'OP_AllCharactersDescReplyMsg',10,1),(10972,57121,58525,'OP_AllCharactersDescRequestMsg',9,1),(10973,57121,58525,'OP_AllWSDescRequestMsg',7,1),(10974,57121,58525,'OP_AnonUpdateMsg',371,1),(10975,57121,58525,'OP_ArenaCreate',456,1),(10976,57121,58525,'OP_ArenaGameTypesMsg',445,1),(10977,57121,58525,'OP_ArenaList',457,1),(10978,57121,58525,'OP_ArenaWindow',465,1),(10979,57121,58525,'OP_AttackAllowed',500,1),(10980,57121,58525,'OP_AttackNotAllowed',501,1),(10981,57121,58525,'OP_AuctionAbortMsg',436,1),(10982,57121,58525,'OP_AuctionCharacter',433,1),(10983,57121,58525,'OP_AuctionCharacterReply',434,1),(10984,57121,58525,'OP_AuctionCoin',431,1),(10985,57121,58525,'OP_AuctionCoinReply',432,1),(10986,57121,58525,'OP_AuctionCommitMsg',435,1),(10987,57121,58525,'OP_AuctionItem',429,1),(10988,57121,58525,'OP_AuctionItemReply',430,1),(10989,57121,58525,'OP_AuditAuctionEventMsg',446,1),(10990,57121,58525,'OP_AvatarCreatedMsg',46,1),(10991,57121,58525,'OP_AvatarDestroyedMsg',47,1),(10992,57121,58525,'OP_AvatarUpdateMsg',360,1),(10993,57121,58525,'OP_BadLanguageFilter',519,1),(10994,57121,58525,'OP_BagOptions',502,1),(10995,57121,58525,'OP_BeginItemCreationMsg',221,1),(10996,57121,58525,'OP_BeginTrackingMsg',390,1),(10997,57121,58525,'OP_BioUpdateMsg',362,1),(10998,57121,58525,'OP_BrokerAddBag',292,1),(10999,57121,58525,'OP_BrokerRemoveBag',293,1),(11000,57121,58525,'OP_BrokerSellList',684,1),(11001,57121,58525,'OP_BuyPlayerHouseMsg',150,1),(11002,57121,58525,'OP_BuyPlayerHouseTintMsg',151,1),(11003,57121,58525,'OP_CampAbortedMsg',52,1),(11004,57121,58525,'OP_CampClientMsg',387,1),(11005,57121,58525,'OP_CampStartedMsg',51,1),(11006,57121,58525,'OP_CancelCreateFromRecipeMsg',220,1),(11007,57121,58525,'OP_CancelledFeignMsg',216,1),(11008,57121,58525,'OP_CancelMoveObjectModeMsg',163,1),(11009,57121,58525,'OP_CancelSpellCast',489,1),(11010,57121,58525,'OP_ChangeServerControlFlagMsg',246,1),(11011,57121,58525,'OP_ChangeZoneMsg',77,1),(11012,57121,58525,'OP_CharacterAchievements',740,1),(11013,57121,58525,'OP_CharacterCreatedDungeons',551,1),(11014,57121,58525,'OP_CharacterCurrency',739,1),(11015,57121,58525,'OP_CharacterHousingList',507,1),(11016,57121,58525,'OP_CharacterLinkdeadMsg',414,1),(11017,57121,58525,'OP_CharacterMerc',65,1),(11018,57121,58525,'OP_CharacterMounts',582,1),(11019,57121,58525,'OP_CharacterPet',64,1),(11020,57121,58525,'OP_CharNameChangedMsg',352,1),(11021,57121,58525,'OP_CharRenamed',705,1),(11022,57121,58525,'OP_CharTransferCommitReplyMsg',422,1),(11023,57121,58525,'OP_CharTransferCommitRequestMsg',420,1),(11024,57121,58525,'OP_CharTransferReplyMsg',418,1),(11025,57121,58525,'OP_CharTransferRequestMsg',417,1),(11026,57121,58525,'OP_CharTransferRollbackReplyMsg',421,1),(11027,57121,58525,'OP_CharTransferRollbackRequestMsg',419,1),(11028,57121,58525,'OP_CharTransferStartReplyMsg',416,1),(11029,57121,58525,'OP_CharTransferStartRequestMsg',415,1),(11030,57121,58525,'OP_CharTransferValidateReplyMsg',438,1),(11031,57121,58525,'OP_CharTransferValidateRequestMsg',437,1),(11032,57121,58525,'OP_ChatCreateChannelMsg',285,1),(11033,57121,58525,'OP_ChatFiltersMsg',335,1),(11034,57121,58525,'OP_ChatJoinChannelMsg',286,1),(11035,57121,58525,'OP_ChatLeaveChannelMsg',288,1),(11036,57121,58525,'OP_ChatRelationshipUpdateMsg',184,1),(11037,57121,58525,'OP_ChatSendFriendsMsg',295,1),(11038,57121,58525,'OP_ChatSendIgnoresMsg',296,1),(11039,57121,58525,'OP_ChatTellChannelMsg',289,1),(11040,57121,58525,'OP_ChatTellUserMsg',290,1),(11041,57121,58525,'OP_ChatToggleFriendMsg',291,1),(11042,57121,58525,'OP_ChatToggleIgnoreMsg',294,1),(11043,57121,58525,'OP_ChatWhoChannelMsg',287,1),(11044,57121,58525,'OP_ClearDataMsg',98,1),(11045,57121,58525,'OP_ClearForLandingMsg',491,1),(11046,57121,58525,'OP_ClearForTakeOffMsg',191,1),(11047,57121,58525,'OP_ClientCmdMsg',58,1),(11048,57121,58525,'OP_ClientFellMsg',385,1),(11049,57121,58525,'OP_ClientIdleBeginMsg',405,1),(11050,57121,58525,'OP_ClientIdleEndMsg',406,1),(11051,57121,58525,'OP_ClientInDeathRegionMsg',386,1),(11052,57121,58525,'OP_ClientTeleportRequestMsg',78,1),(11053,57121,58525,'OP_ClientTeleportToLocationMsg',244,1),(11054,57121,58525,'OP_CloseGroupInviteWindowMsg',397,1),(11055,57121,58525,'OP_CollectAllHouseItemsMsg',152,1),(11056,57121,58525,'OP_ConsignItemRequestMsg',126,1),(11057,57121,58525,'OP_ConsignItemResponseMsg',127,1),(11058,57121,58525,'OP_ConsignmentCloseStoreMsg',125,1),(11059,57121,58525,'OP_ConsignRemoveItemsMsg',378,1),(11060,57121,58525,'OP_ConsignViewCreateMsg',375,1),(11061,57121,58525,'OP_ConsignViewGetPageMsg',376,1),(11062,57121,58525,'OP_ConsignViewReleaseMsg',377,1),(11063,57121,58525,'OP_ConsignViewSortMsg',383,1),(11064,57121,58525,'OP_CorruptedClientMsg',409,1),(11065,57121,58525,'OP_CreateBoatTransportsMsg',250,1),(11066,57121,58525,'OP_CreateCharacterDungeon',547,1),(11067,57121,58525,'OP_CreateCharacterReplyMsg',12,1),(11068,57121,58525,'OP_CreateCharacterRequestMsg',11,1),(11069,57121,58525,'OP_CreateCharFromCBBReplyMsg',426,1),(11070,57121,58525,'OP_CreateCharFromCBBRequestMsg',425,1),(11071,57121,58525,'OP_CreateGuildReplyMsg',120,1),(11072,57121,58525,'OP_CreateGuildRequestMsg',119,1),(11073,57121,58525,'OP_CreateZoneInstanceMsg',29,1),(11074,57121,58525,'OP_CsCategoryRequestMsg',367,1),(11075,57121,58525,'OP_CsCategoryResponseMsg',368,1),(11076,57121,58525,'OP_CSTicketAddCommentMsg',234,1),(11077,57121,58525,'OP_CSTicketChangeNotificationMsg',236,1),(11078,57121,58525,'OP_CSTicketCommentRequestMsg',231,1),(11079,57121,58525,'OP_CSTicketCommentResponseMsg',232,1),(11080,57121,58525,'OP_CSTicketCreateMsg',233,1),(11081,57121,58525,'OP_CSTicketDeleteMsg',235,1),(11082,57121,58525,'OP_CSTicketHeaderRequestMsg',229,1),(11083,57121,58525,'OP_CSTicketInfoMsg',230,1),(11084,57121,58525,'OP_CSToolAccessResponseMsg',388,1),(11085,57121,58525,'OP_CSToolsRequestMsg',247,1),(11086,57121,58525,'OP_CSToolsResponseMsg',248,1),(11087,57121,58525,'OP_CurrentPet',485,1),(11088,57121,58525,'OP_CustomizationPurchaseRequestMs',167,1),(11089,57121,58525,'OP_CustomizationReplyMsg',169,1),(11090,57121,58525,'OP_CustomizationSetRequestMsg',168,1),(11091,57121,58525,'OP_CustomizeHouseDisplay',730,1),(11092,57121,58525,'OP_DailyObjectives',595,1),(11093,57121,58525,'OP_DefaultGroupOptionsMsg',198,1),(11094,57121,58525,'OP_DefaultGroupOptionsRequestMsg',197,1),(11095,57121,58525,'OP_DeleteCharacterReplyMsg',17,1),(11096,57121,58525,'OP_DeleteCharacterRequestMsg',16,1),(11097,57121,58525,'OP_DeleteGuildMsg',123,1),(11098,57121,58525,'OP_DestUpdateReq',210,1),(11099,57121,58525,'OP_DialogCloseMsg',110,1),(11100,57121,58525,'OP_DialogSelectMsg',109,1),(11101,57121,58525,'OP_DispatchClientCmdMsg',60,1),(11102,57121,58525,'OP_DispatchESMsg',59,1),(11103,57121,58525,'OP_DispatchMsg',451,1),(11104,57121,58525,'OP_DispatchSpellCmdMsg',179,1),(11105,57121,58525,'OP_DisplayDebugNLLPointsMsg',254,1),(11106,57121,58525,'OP_DisplayEventMsg',452,1),(11107,57121,58525,'OP_DisplayExchangeScreenMsg',444,1),(11108,57121,58525,'OP_DisplayGroupOptionsScreenMsg',200,1),(11109,57121,58525,'OP_DisplayInnVisitScreenMsg',202,1),(11110,57121,58525,'OP_DisplayMailScreenMsg',404,1),(11111,57121,58525,'OP_DisplayTSEventReactionMsg',225,1),(11112,57121,58525,'OP_DisplayWarningMsg',265,1),(11113,57121,58525,'OP_DoneLoadingEntityResourcesMsg',36,1),(11114,57121,58525,'OP_DoneLoadingZoneResourcesMsg',34,1),(11115,57121,58525,'OP_DoneSendingInitialEntitiesMsg',35,1),(11116,57121,58525,'OP_DressingRoom',510,1),(11117,57121,58525,'OP_DumpSchedulerMsg',203,1),(11118,57121,58525,'OP_DungeonMakerEnter',548,1),(11119,57121,58525,'OP_DungeonMakerItemRequest',550,1),(11120,57121,58525,'OP_DungeonMakerItemResponse',580,1),(11121,57121,58525,'OP_DungeonMakerToolboxList',552,1),(11122,57121,58525,'OP_DungeonMakerUnknown',553,1),(11123,57121,58525,'OP_DungeonMakerUnknown1',554,1),(11124,57121,58525,'OP_DungeonPlayAsAvatarList',744,1),(11125,57121,58525,'OP_DungeonPlayAsAvatarSelected',745,1),(11126,57121,58525,'OP_EncounterBrokenMsg',263,1),(11127,57121,58525,'OP_EnterHouseMsg',154,1),(11128,57121,58525,'OP_EnterMoveObjectModeMsg',161,1),(11129,57121,58525,'OP_EntityVerbsReplyMsg',181,1),(11130,57121,58525,'OP_EntityVerbsRequestMsg',180,1),(11131,57121,58525,'OP_EntityVerbsVerbMsg',182,1),(11132,57121,58525,'OP_EqArenaResultsCmd',695,1),(11133,57121,58525,'OP_EqAvailWorldChannelsCmd',682,1),(11134,57121,58525,'OP_EqBetaCopyRequest',603,1),(11135,57121,58525,'OP_EqCannedEmoteCmd',624,1),(11136,57121,58525,'OP_EqChatChannelUpdateCmd',680,1),(11137,57121,58525,'OP_EqChoiceWinCmd',661,1),(11138,57121,58525,'OP_EqCloseWindowCmd',653,1),(11139,57121,58525,'OP_EqCollectionFilterCmd',640,1),(11140,57121,58525,'OP_EqCollectionItemCmd',641,1),(11141,57121,58525,'OP_EqCollectionUpdateCmd',639,1),(11142,57121,58525,'OP_EqConsignmentItemsCmd',685,1),(11143,57121,58525,'OP_EqCreateGhostCmd',606,1),(11144,57121,58525,'OP_EqCreateListBoxCmd',621,1),(11145,57121,58525,'OP_EqCreateSignWidgetCmd',608,1),(11146,57121,58525,'OP_EqCreateWidgetCmd',607,1),(11147,57121,58525,'OP_EqDebugPVDCmd',674,1),(11148,57121,58525,'OP_EqDestroyGhostCmd',609,1),(11149,57121,58525,'OP_EqDialogCloseCmd',637,1),(11150,57121,58525,'OP_EqDialogOpenCmd',636,1),(11151,57121,58525,'OP_EqDisplaySpellFailCmd',657,1),(11152,57121,58525,'OP_EqDisplayTextCmd',605,1),(11153,57121,58525,'OP_EqDrawablePathGraphCmd',635,1),(11154,57121,58525,'OP_EqEnableGameEventCmd',667,1),(11155,57121,58525,'OP_EqEnableWindowCmd',669,1),(11156,57121,58525,'OP_EqExamineInfoCmd',652,1),(11157,57121,58525,'OP_EqFactionUpdateCmd',638,1),(11158,57121,58525,'OP_EqFlashWindowCmd',670,1),(11159,57121,58525,'OP_EqGetProbsCmd',678,1),(11160,57121,58525,'OP_EqGroupMemberRemovedCmd',631,1),(11161,57121,58525,'OP_EqGuildBankEventActionCmd',696,1),(11162,57121,58525,'OP_EqGuildBankExamineInfoCmd',697,1),(11163,57121,58525,'OP_EqHearChainEffectCmd',632,1),(11164,57121,58525,'OP_EqHearChatCmd',604,1),(11165,57121,58525,'OP_EqHearCombatCmd',613,1),(11166,57121,58525,'OP_EqHearConsiderCmd',619,1),(11167,57121,58525,'OP_EqHearDeathCmd',630,1),(11168,57121,58525,'OP_EQHearDispellCmd',742,1),(11169,57121,58525,'OP_EqHearDrowningCmd',629,1),(11170,57121,58525,'OP_EqHearHealCmd',679,1),(11171,57121,58525,'OP_EqHearPlayFlavorCmd',672,1),(11172,57121,58525,'OP_EQHearProcCmd',615,1),(11173,57121,58525,'OP_EQHearResEffectCmd',616,1),(11174,57121,58525,'OP_EqHearSpellCastCmd',614,1),(11175,57121,58525,'OP_EqHearSpellFizzleCmd',618,1),(11176,57121,58525,'OP_EqHearSpellInterruptCmd',617,1),(11177,57121,58525,'OP_EqHearSpellNoLandCmd',698,1),(11178,57121,58525,'OP_EQHearThreatCmd',736,1),(11179,57121,58525,'OP_EqHelpPathClearCmd',650,1),(11180,57121,58525,'OP_EqHelpPathCmd',649,1),(11181,57121,58525,'OP_EqInspectPCResultsCmd',634,1),(11182,57121,58525,'OP_EqInstructionWindowCloseCmd',664,1),(11183,57121,58525,'OP_EqInstructionWindowCmd',663,1),(11184,57121,58525,'OP_EqInstructionWindowGoalCmd',665,1),(11185,57121,58525,'OP_EqInstructionWindowTaskCmd',666,1),(11186,57121,58525,'OP_EqJunctionListCmd',655,1),(11187,57121,58525,'OP_EqMapExplorationCmd',688,1),(11188,57121,58525,'OP_EqMentoring',643,1),(11189,57121,58525,'OP_EqPlaySound3DCmd',627,1),(11190,57121,58525,'OP_EqPlaySoundCmd',626,1),(11191,57121,58525,'OP_EqPlayVoiceCmd',628,1),(11192,57121,58525,'OP_EqQuestGroupCmd',645,1),(11193,57121,58525,'OP_EqQuestionnaireCmd',676,1),(11194,57121,58525,'OP_EqQuestJournalReplyCmd',644,1),(11195,57121,58525,'OP_EqQuestJournalUpdateCmd',642,1),(11196,57121,58525,'OP_EqReceiveOfferCmd',633,1),(11197,57121,58525,'OP_EqResurrectedCmd',660,1),(11198,57121,58525,'OP_EqSetControlGhostCmd',611,1),(11199,57121,58525,'OP_EqSetDebugPathPointsCmd',622,1),(11200,57121,58525,'OP_EqSetDefaultVerbCmd',662,1),(11201,57121,58525,'OP_EqSetPOVGhostCmd',612,1),(11202,57121,58525,'OP_EqShowBookCmd',675,1),(11203,57121,58525,'OP_EqShowDeathWindowCmd',656,1),(11204,57121,58525,'OP_EqShowWindowCmd',668,1),(11205,57121,58525,'OP_EqSpellCastEndCmd',659,1),(11206,57121,58525,'OP_EqSpellCastStartCmd',658,1),(11207,57121,58525,'OP_EqSpellMoveToRangeAndRetryCmd',690,1),(11208,57121,58525,'OP_EqStartBrokerCmd',687,1),(11209,57121,58525,'OP_EqStateCmd',625,1),(11210,57121,58525,'OP_EqStoreLogCmd',689,1),(11211,57121,58525,'OP_EqUpdateBankCmd',651,1),(11212,57121,58525,'OP_EqUpdateGhostCmd',610,1),(11213,57121,58525,'OP_EqUpdateLootCmd',654,1),(11214,57121,58525,'OP_EqUpdateMerchantCmd',646,1),(11215,57121,58525,'OP_EqUpdatePlayerMailCmd',691,1),(11216,57121,58525,'OP_EqUpdatePlayerTradeCmd',648,1),(11217,57121,58525,'OP_EqUpdateSignWidgetCmd',673,1),(11218,57121,58525,'OP_EqUpdateStoreCmd',647,1),(11219,57121,58525,'OP_EqUpdateSubClassesCmd',620,1),(11220,57121,58525,'OP_EqUpdateTargetCmd',683,1),(11221,57121,58525,'OP_EqWhoChannelQueryReplyCmd',681,1),(11222,57121,58525,'OP_ESInitMsg',25,1),(11223,57121,58525,'OP_ESLoginRequestMsg',3,1),(11224,57121,58525,'OP_ESReadyForClientsMsg',26,1),(11225,57121,58525,'OP_ESStatusMsg',100,1),(11226,57121,58525,'OP_ESWeatherRequestEndMsg',105,1),(11227,57121,58525,'OP_ESWeatherRequestMsg',104,1),(11228,57121,58525,'OP_ESZoneInstanceStatusMsg',101,1),(11229,57121,58525,'OP_ExamineConsignmentRequestMsg',171,1),(11230,57121,58525,'OP_ExamineConsignmentResponseMsg',172,1),(11231,57121,58525,'OP_ExamineInfoRequestMsg',255,1),(11232,57121,58525,'OP_ExamineItemRequestMsg',195,1),(11233,57121,58525,'OP_ExitHouseMsg',155,1),(11234,57121,58525,'OP_ExpectClientAsCharacterReplyMs',22,1),(11235,57121,58525,'OP_ExpectClientAsCharacterRequest',32,1),(11236,57121,58525,'OP_ExpPurchWindow',721,1),(11237,57121,58525,'OP_FellowshipExpMsg',122,1),(11238,57121,58525,'OP_FlightPathsMsg',413,1),(11239,57121,58525,'OP_GameWorldTimeMsg',43,1),(11240,57121,58525,'OP_PaperdollImage',575,1),(11241,57121,58525,'OP_GetAuctionAssetIDMsg',441,1),(11242,57121,58525,'OP_GetAuctionAssetIDReplyMsg',442,1),(11243,57121,58525,'OP_GetAvatarAccessRequestForCSToo',393,1),(11244,57121,58525,'OP_GetCharacterSerializedReplyMsg',424,1),(11245,57121,58525,'OP_GetCharacterSerializedRequestM',423,1),(11246,57121,58525,'OP_GroupCreatedMsg',88,1),(11247,57121,58525,'OP_GroupDestroyedMsg',89,1),(11248,57121,58525,'OP_GroupLeaderChangedMsg',93,1),(11249,57121,58525,'OP_GroupMemberAddedMsg',90,1),(11250,57121,58525,'OP_GroupMemberRemovedMsg',91,1),(11251,57121,58525,'OP_GroupOptionsMsg',199,1),(11252,57121,58525,'OP_GroupRemovedFromGroupMsg',92,1),(11253,57121,58525,'OP_GroupResendOOZDataMsg',94,1),(11254,57121,58525,'OP_GroupSettingsChangedMsg',95,1),(11255,57121,58525,'OP_GuildBankActionMsg',274,1),(11256,57121,58525,'OP_GuildBankActionResponseMsg',275,1),(11257,57121,58525,'OP_GuildBankEventListMsg',279,1),(11258,57121,58525,'OP_GuildBankItemDetailsRequestMsg',276,1),(11259,57121,58525,'OP_GuildBankItemDetailsResponseMs',277,1),(11260,57121,58525,'OP_GuildBankUpdateMsg',278,1),(11261,57121,58525,'OP_GuildEventActionMsg',269,1),(11262,57121,58525,'OP_GuildEventAddMsg',268,1),(11263,57121,58525,'OP_GuildEventDetailsMsg',272,1),(11264,57121,58525,'OP_GuildEventListMsg',270,1),(11265,57121,58525,'OP_GuildEventMsg',267,1),(11266,57121,58525,'OP_GuildMembershipResponseMsg',357,1),(11267,57121,58525,'OP_GuildRecruiting',701,1),(11268,57121,58525,'OP_GuildRecruitingDetails',702,1),(11269,57121,58525,'OP_GuildRecruitingImage',703,1),(11270,57121,58525,'OP_GuildRecruitingMemberInfo',700,1),(11271,57121,58525,'OP_GuildsayMsg',121,1),(11272,57121,58525,'OP_GuildStatusUpdate',694,1),(11273,57121,58525,'OP_GuildUpdateMsg',124,1),(11274,57121,58525,'OP_HideIllusionsMsg',194,1),(11275,57121,58525,'OP_HouseAccessRemoveMsg',158,1),(11276,57121,58525,'OP_HouseAccessSetMsg',157,1),(11277,57121,58525,'OP_HouseCustomizationScreenMsg',166,1),(11278,57121,58525,'OP_HouseDefaultAccessSetMsg',156,1),(11279,57121,58525,'OP_HouseDeletedRemotelyMsg',142,1),(11280,57121,58525,'OP_HouseItemsList',484,1),(11281,57121,58525,'OP_HousingDataChangedMsg',427,1),(11282,57121,58525,'OP_HousingRestoreMsg',428,1),(11283,57121,58525,'OP_InspectPlayerMsg',363,1),(11284,57121,58525,'OP_InspectPlayerRequestMsg',450,1),(11285,57121,58525,'OP_InviteRequestMsg',447,1),(11286,57121,58525,'OP_InviteResponseMsg',448,1),(11287,57121,58525,'OP_InviteTargetResponseMsg',449,1),(11288,57121,58525,'OP_JoinGuildNotifyMsg',359,1),(11289,57121,58525,'OP_JournalQuestStoryline',743,1),(11290,57121,58525,'OP_KeymapDataMsg',177,1),(11291,57121,58525,'OP_KeymapLoadMsg',175,1),(11292,57121,58525,'OP_KeymapNoneMsg',176,1),(11293,57121,58525,'OP_KeymapSaveMsg',178,1),(11294,57121,58525,'OP_KnowledgebaseRequestMsg',227,1),(11295,57121,58525,'OP_KnowledgebaseResponseMsg',228,1),(11296,57121,58525,'OP_KnowledgeWindowSlotMappingMsg',369,1),(11297,57121,58525,'OP_KnownLanguagesMsg',238,1),(11298,57121,58525,'OP_Launchpad',573,1),(11299,57121,58525,'OP_LeaveGuildNotifyMsg',358,1),(11300,57121,58525,'OP_LevelChangedMsg',261,1),(11301,57121,58525,'OP_LFGGroupSearch',504,1),(11302,57121,58525,'OP_LFGUpdateMsg',518,1),(11303,57121,58525,'OP_LikeOption',136,1),(11304,57121,58525,'OP_LoadCalendarEvents',576,1),(11305,57121,58525,'OP_LoadWelcomeWindow',560,1),(11306,57121,58525,'OP_LoginByNumRequestMsg',1,1),(11307,57121,58525,'OP_LoginReplyMsg',4,1),(11308,57121,58525,'OP_LoginRequestMsg',0,1),(11309,57121,58525,'OP_LootItemsRequestMsg',185,1),(11310,57121,58525,'OP_Lottery',699,1),(11311,57121,58525,'OP_LSCheckAcctLockMsg',204,1),(11312,57121,58525,'OP_LsClientAlertlogReplyMsg',242,1),(11313,57121,58525,'OP_LsClientBaselogReplyMsg',240,1),(11314,57121,58525,'OP_LsClientCrashlogReplyMsg',241,1),(11315,57121,58525,'OP_LsClientVerifylogReplyMsg',243,1),(11316,57121,58525,'OP_LsRequestClientCrashLogMsg',239,1),(11317,57121,58525,'OP_LSServerLockMsg',365,1),(11318,57121,58525,'OP_MacroInitMsg',258,1),(11319,57121,58525,'OP_MacroUpdateMsg',259,1),(11320,57121,58525,'OP_MailCommitSendMessageMsg',344,1),(11321,57121,58525,'OP_MailDeleteMessageMsg',340,1),(11322,57121,58525,'OP_MailEventNotificationMsg',411,1),(11323,57121,58525,'OP_MailGetHeadersReplyMsg',341,1),(11324,57121,58525,'OP_MailGetMessageMsg',338,1),(11325,57121,58525,'OP_MailGetMessageReplyMsg',342,1),(11326,57121,58525,'OP_MailRemoveAttachFromMailMsg',346,1),(11327,57121,58525,'OP_MailSendMessageMsg',339,1),(11328,57121,58525,'OP_MailSendMessageReplyMsg',343,1),(11329,57121,58525,'OP_MailSendSystemMessageMsg',345,1),(11330,57121,58525,'OP_MakeGroupLeaderMsg',87,1),(11331,57121,58525,'OP_MapFogDataInitMsg',395,1),(11332,57121,58525,'OP_MapFogDataUpdateMsg',396,1),(11333,57121,58525,'OP_MapRequest',521,1),(11334,57121,58525,'OP_MarketAddFundsReply',529,1),(11335,57121,58525,'OP_MarketAddFundsRequest',528,1),(11336,57121,58525,'OP_MarketFundsUpdate',526,1),(11337,57121,58525,'OP_MarketPlaceItems',537,1),(11338,57121,58525,'OP_MarketPlacePrices',532,1),(11339,57121,58525,'OP_MarketPurchase',531,1),(11340,57121,58525,'OP_MentorPopup',558,1),(11341,57121,58525,'OP_MercHireWindow',746,1),(11342,57121,58525,'OP_MercUnknown',747,1),(11343,57121,58525,'OP_MigrateBoatTransportMsg',252,1),(11344,57121,58525,'OP_MigrateBoatTransportReplyMsg',253,1),(11345,57121,58525,'OP_MigrateClientToZoneReplyMsg',82,1),(11346,57121,58525,'OP_MigrateClientToZoneRequestMsg',81,1),(11347,57121,58525,'OP_ModifyGuildMsg',266,1),(11348,57121,58525,'OP_MonitorCharacterListMsg',56,1),(11349,57121,58525,'OP_MonitorCharacterListRequestMsg',57,1),(11350,57121,58525,'OP_MonitorReplyMsg',55,1),(11351,57121,58525,'OP_MOTDMsg',44,1),(11352,57121,58525,'OP_MoveableObjectPlacementCriteri',160,1),(11353,57121,58525,'OP_MoveLogUpdateMsg',400,1),(11354,57121,58525,'OP_NotifyApprenticeStoppedMentori',408,1),(11355,57121,58525,'OP_OfferQuestMsg',401,1),(11356,57121,58525,'OP_OnscreenMsgMsg',264,1),(11357,57121,58525,'OP_OpenCharCust',561,1),(11358,57121,58525,'OP_OutOfZoneMemberDataMsg',96,1),(11359,57121,58525,'OP_PayHouseUpkeepMsg',159,1),(11360,57121,58525,'OP_PerformCameraShakeMsg',214,1),(11361,57121,58525,'OP_PerformPlayerKnockbackMsg',213,1),(11362,57121,58525,'OP_PetOptions',201,1),(11363,57121,58525,'OP_PetOptionsResponse',579,1),(11364,57121,58525,'OP_PlayCharacterReplyMsg',19,1),(11365,57121,58525,'OP_PlayCharacterRequestMsg',18,1),(11366,57121,58525,'OP_PlayerHouseAccessUpdateMsg',147,1),(11367,57121,58525,'OP_PlayerHouseBaseScreenMsg',145,1),(11368,57121,58525,'OP_PlayerHouseCloseUIMsg',149,1),(11369,57121,58525,'OP_PlayerHouseDisplayStatusMsg',148,1),(11370,57121,58525,'OP_PlayerHousePurchaseScreenMsg',146,1),(11371,57121,58525,'OP_PlayerMadeInstances',140,1),(11372,57121,58525,'OP_PlayerMadeInstancesScreen',139,1),(11373,57121,58525,'OP_PlayerPollAnswer',557,1),(11374,57121,58525,'OP_PlayerPollPopup',556,1),(11375,57121,58525,'OP_PlayLon',511,1),(11376,57121,58525,'OP_PointOfInterest',725,1),(11377,57121,58525,'OP_PointOfInterest2',726,1),(11378,57121,58525,'OP_PopulateSkillMapsMsg',215,1),(11379,57121,58525,'OP_PositionBoatTransportMsg',251,1),(11380,57121,58525,'OP_PositionMoveableObject',162,1),(11381,57121,58525,'OP_PostPossessionMsg',454,1),(11382,57121,58525,'OP_PredictionUpdateMsg',37,1),(11383,57121,58525,'OP_PrePossessionMsg',453,1),(11384,57121,58525,'OP_PromoFlagsDetailsMsg',374,1),(11385,57121,58525,'OP_PublishHouse',138,1),(11386,57121,58525,'OP_PurchaseConsignmentLoreCheckRe',407,1),(11387,57121,58525,'OP_PurchaseConsignmentRequestMsg',128,1),(11388,57121,58525,'OP_QueAllBgSolo',564,1),(11389,57121,58525,'OP_QuestionnaireMsg',260,1),(11390,57121,58525,'OP_QuestJournalInspectMsg',114,1),(11391,57121,58525,'OP_QuestJournalOpenMsg',113,1),(11392,57121,58525,'OP_QuestJournalSetVisibleMsg',115,1),(11393,57121,58525,'OP_QuestJournalWaypointMsg',116,1),(11394,57121,58525,'OP_QuestReward',320,1),(11395,57121,58525,'OP_QuickbarInitMsg',256,1),(11396,57121,58525,'OP_QuickbarUpdateMsg',257,1),(11397,57121,58525,'OP_RaceRestrictionMsg',439,1),(11398,57121,58525,'OP_ReadBookPageMsg',196,1),(11399,57121,58525,'OP_ReadyForTakeOffMsg',192,1),(11400,57121,58525,'OP_ReadyToZoneMsg',84,1),(11401,57121,58525,'OP_RecipeBook',538,1),(11402,57121,58525,'OP_RecipeDetailsMsg',72,1),(11403,57121,58525,'OP_RecipeList',737,1),(11404,57121,58525,'OP_RecipeListUnknown',591,1),(11405,57121,58525,'OP_RelinquishHouseMsg',153,1),(11406,57121,58525,'OP_ReloadLocalizedTxtMsg',355,1),(11407,57121,58525,'OP_RemoteCmdMsg',42,1),(11408,57121,58525,'OP_RemoveClientFromGroupMsg',85,1),(11409,57121,58525,'OP_RemoveConcentrationMsg',112,1),(11410,57121,58525,'OP_RemoveGroupFromGroupMsg',86,1),(11411,57121,58525,'OP_RemoveSpellEffectMsg',111,1),(11412,57121,58525,'OP_RenameGuildMsg',282,1),(11413,57121,58525,'OP_ReplaceableSubMeshesMsg',165,1),(11414,57121,58525,'OP_ReportMsg',380,1),(11415,57121,58525,'OP_RequestCampMsg',50,1),(11416,57121,58525,'OP_RequestGuildBankEventDetailsMs',280,1),(11417,57121,58525,'OP_RequestGuildEventDetailsMsg',271,1),(11418,57121,58525,'OP_RequestGuildInfoMsg',273,1),(11419,57121,58525,'OP_RequestGuildMembershipMsg',356,1),(11420,57121,58525,'OP_RequestHelpRepathMsg',206,1),(11421,57121,58525,'OP_RequestRecipeDetailsMsg',71,1),(11422,57121,58525,'OP_RequestTargetLocMsg',207,1),(11423,57121,58525,'OP_Research',738,1),(11424,57121,58525,'OP_ResendWorldChannelsMsg',443,1),(11425,57121,58525,'OP_ReskinCharacterRequestMsg',15,1),(11426,57121,58525,'OP_RestartZoneMsg',412,1),(11427,57121,58525,'OP_RewardPackMsg',281,1),(11428,57121,58525,'OP_SatMsg',189,1),(11429,57121,58525,'OP_SavageBarInitMsg',578,1),(11430,57121,58525,'OP_SelectZoneTeleporterDestinatio',354,1),(11431,57121,58525,'OP_SendLatestRequestMsg',97,1),(11432,57121,58525,'OP_ServerPlayCharacterReplyMsg',24,1),(11433,57121,58525,'OP_ServerPlayCharacterRequestMsg',23,1),(11434,57121,58525,'OP_SetInstanceDisplayNameMsg',440,1),(11435,57121,58525,'OP_SetRemoteCmdsMsg',41,1),(11436,57121,58525,'OP_SetSocialMsg',99,1),(11437,57121,58525,'OP_ShaderCustomizationMsg',164,1),(11438,57121,58525,'OP_ShowCreateFromRecipeUIMsg',219,1),(11439,57121,58525,'OP_ShowIllusionsMsg',193,1),(11440,57121,58525,'OP_ShowItemCreationProcessUIMsg',223,1),(11441,57121,58525,'OP_ShowRecipeBookMsg',226,1),(11442,57121,58525,'OP_ShowZoneTeleporterDestinations',353,1),(11443,57121,58525,'OP_SitMsg',187,1),(11444,57121,58525,'OP_SkillInfoRequest',514,1),(11445,57121,58525,'OP_SkillInfoResponse',515,1),(11446,57121,58525,'OP_SpellGainedMsg',262,1),(11447,57121,58525,'OP_StandMsg',188,1),(11448,57121,58525,'OP_StoodMsg',190,1),(11449,57121,58525,'OP_StopItemCreationMsg',222,1),(11450,57121,58525,'OP_StoppedLootingMsg',186,1),(11451,57121,58525,'OP_StopTrackingMsg',391,1),(11452,57121,58525,'OP_SubmitCharCust',562,1),(11453,57121,58525,'OP_SupplyDepot',735,1),(11454,57121,58525,'OP_SysClient',218,1),(11455,57121,58525,'OP_TeleportWithinZoneMsg',79,1),(11456,57121,58525,'OP_TeleportWithinZoneNoReloadMsg',80,1),(11457,57121,58525,'OP_TintWidgetsMsg',170,1),(11458,57121,58525,'OP_TitleUpdateMsg',384,1),(11459,57121,58525,'OP_TrackingUpdateMsg',389,1),(11460,57121,58525,'OP_TradeskillList',704,1),(11461,57121,58525,'OP_TraitsList',727,1),(11462,57121,58525,'OP_UIEvent',527,1),(11463,57121,58525,'OP_UIResetMsg',174,1),(11464,57121,58525,'OP_UISettingsResponseMsg',173,1),(11465,57121,58525,'OP_Unknown',760,1),(11466,57121,58525,'OP_UnknownNpcMsg',373,1),(11467,57121,58525,'OP_UpdateActivePublicZonesMsg',372,1),(11468,57121,58525,'OP_UpdateCharacterSheetMsg',63,1),(11469,57121,58525,'OP_UpdateClientPredFlagsMsg',245,1),(11470,57121,58525,'OP_UpdateDebugRadiiMsg',379,1),(11471,57121,58525,'OP_UpdateGroupMemberDataMsg',388,1),(11472,57121,58525,'OP_UpdateHouseAccessDataMsg',144,1),(11473,57121,58525,'OP_UpdateHouseDataMsg',143,1),(11474,57121,58525,'OP_UpdateInventoryMsg',68,1),(11475,57121,58525,'OP_UpdateItemCreationProcessUIMsg',224,1),(11476,57121,58525,'OP_UpdateMotdMsg',208,1),(11477,57121,58525,'OP_UpdateOpportunityMsg',75,1),(11478,57121,58525,'OP_UpdatePositionMsg',39,1),(11479,57121,58525,'OP_UpdateRaidMsg',381,1),(11480,57121,58525,'OP_UpdateRecipeBookMsg',70,1),(11481,57121,58525,'OP_UpdateSkillBookMsg',73,1),(11482,57121,58525,'OP_UpdateSkillsMsg',74,1),(11483,57121,58525,'OP_UpdateSpellBookMsg',66,1),(11484,57121,58525,'OP_UpdateTargetLocMsg',62,1),(11485,57121,58525,'OP_UpdateTargetMsg',61,1),(11486,57121,58525,'OP_UpdateTitleCmd',494,1),(11487,57121,58525,'OP_UseAdornment',715,1),(11488,57121,58525,'OP_VideoUploaded',577,1),(11489,57121,58525,'OP_VoiceChatChannel',520,1),(11490,57121,58525,'OP_VoiceChatServer',731,1),(11491,57121,58525,'OP_WaypointReplyMsg',349,1),(11492,57121,58525,'OP_WaypointRequestMsg',348,1),(11493,57121,58525,'OP_WaypointSelectMsg',350,1),(11494,57121,58525,'OP_WaypointUpdateMsg',351,1),(11495,57121,58525,'OP_Weakness',581,1),(11496,57121,58525,'OP_WhoQueryReplyMsg',54,1),(11497,57121,58525,'OP_WhoQueryRequestMsg',53,1),(11498,57121,58525,'OP_WorldDataChangeMsg',410,1),(11499,57121,58525,'OP_WorldDataUpdateMsg',237,1),(11500,57121,58525,'OP_WorldListMsg',8,1),(11501,57121,58525,'OP_WorldPingMsg',399,1),(11502,57121,58525,'OP_WorldShutdownUpdateMsg',403,1),(11503,57121,58525,'OP_WorldStatusChangeMsg',6,1),(11504,57121,58525,'OP_WorldTravelAvail',570,1),(11505,57121,58525,'OP_WSAcctLockStatusMsg',205,1),(11506,57121,58525,'OP_WSCreateCharacterReplyMsg',14,1),(11507,57121,58525,'OP_WSCreateCharacterRequestMsg',13,1),(11508,57121,58525,'OP_WSLoginRequestMsg',2,1),(11509,57121,58525,'OP_WSServerHideMsg',366,1),(11510,57121,58525,'OP_WSServerLockMsg',364,1),(11511,57121,58525,'OP_WSStatusReplyMsg',5,1),(11512,57121,58525,'OP_ZoneBgInstanceList',566,1),(11513,57121,58525,'OP_ZoneInfoMsg',33,1),(11514,57121,58525,'OP_ZoneInstanceCreateReplyMsg',30,1),(11515,57121,58525,'OP_ZoneInstanceDestroyedMsg',31,1),(11516,57121,58525,'OP_ZoneMOTDMsg',45,1),(11517,57121,58525,'OP_ZonesStatusMsg',103,1),(11518,57121,58525,'OP_ZonesStatusRequestMsg',102,1),(11519,57121,58525,'OP_ZoneToFriendReplyMsg',284,1),(11520,57121,58525,'OP_ZoneToFriendRequestMsg',283,1),(11521,0,0,'OP_OpenCharCust',9999,1),(11522,839,844,'OP_OpenCharCust',9999,1),(11523,908,927,'OP_OpenCharCust',9999,1),(11524,1008,1011,'OP_OpenCharCust',9999,1),(11525,1045,1086,'OP_OpenCharCust',9999,1),(11526,1096,1096,'OP_OpenCharCust',529,1),(11527,0,0,'OP_CharacterMerc',9999,1),(11528,839,844,'OP_CharacterMerc',9999,1),(11529,908,927,'OP_CharacterMerc',9999,1),(11530,1008,1011,'OP_CharacterMerc',9999,1),(11531,1045,1086,'OP_CharacterMerc',9999,1),(11532,1096,1096,'OP_CharacterMerc',9999,1),(11533,0,0,'OP_AfterInvSpellUpdate',9999,1),(11534,839,844,'OP_AfterInvSpellUpdate',9999,1),(11535,908,927,'OP_AfterInvSpellUpdate',9999,1),(11536,1008,1011,'OP_AfterInvSpellUpdate',9999,1),(11537,1045,1086,'OP_AfterInvSpellUpdate',9999,1),(11538,1096,1096,'OP_AfterInvSpellUpdate',65,1),(11539,0,0,'OP_CharacterCreatedDungeons',9999,1),(11540,839,844,'OP_CharacterCreatedDungeons',9999,1),(11541,908,927,'OP_CharacterCreatedDungeons',9999,1),(11542,1008,1011,'OP_CharacterCreatedDungeons',9999,1),(11543,1045,1086,'OP_CharacterCreatedDungeons',9999,1),(11544,1096,1096,'OP_CharacterCreatedDungeons',9999,1),(11545,0,0,'OP_CharacterHousingList',9999,1),(11546,839,844,'OP_CharacterHousingList',9999,1),(11547,908,927,'OP_CharacterHousingList',9999,1),(11548,1008,1011,'OP_CharacterHousingList',9999,1),(11549,1045,1086,'OP_CharacterHousingList',9999,1),(11550,1096,1096,'OP_CharacterHousingList',489,1),(11551,0,0,'OP_HouseItemsList',9999,1),(11552,839,844,'OP_HouseItemsList',9999,1),(11553,908,927,'OP_HouseItemsList',9999,1),(11554,1008,1011,'OP_HouseItemsList',9999,1),(11555,1045,1086,'OP_HouseItemsList',9999,1),(11556,1096,1096,'OP_HouseItemsList',9999,1),(11557,0,0,'OP_CharacterMounts',9999,1),(11558,839,844,'OP_CharacterMounts',9999,1),(11559,908,927,'OP_CharacterMounts',9999,1),(11560,1008,1011,'OP_CharacterMounts',9999,1),(11561,1045,1086,'OP_CharacterMounts',9999,1),(11562,1096,1096,'OP_CharacterMounts',9999,1),(11563,0,0,'OP_LoadCalendarEvents',9999,1),(11564,839,844,'OP_LoadCalendarEvents',9999,1),(11565,908,927,'OP_LoadCalendarEvents',9999,1),(11566,1008,1011,'OP_LoadCalendarEvents',9999,1),(11567,1045,1086,'OP_LoadCalendarEvents',9999,1),(11568,1096,1096,'OP_LoadCalendarEvents',542,1),(11569,0,0,'OP_LoadWelcomeWindow',9999,1),(11570,839,844,'OP_LoadWelcomeWindow',9999,1),(11571,908,927,'OP_LoadWelcomeWindow',9999,1),(11572,1008,1011,'OP_LoadWelcomeWindow',9999,1),(11573,1045,1086,'OP_LoadWelcomeWindow',9999,1),(11574,1096,1096,'OP_LoadWelcomeWindow',528,1),(11575,0,0,'OP_DungeonMakerItemRequest',9999,1),(11576,839,844,'OP_DungeonMakerItemRequest',9999,1),(11577,908,927,'OP_DungeonMakerItemRequest',9999,1),(11578,1008,1011,'OP_DungeonMakerItemRequest',9999,1),(11579,1045,1086,'OP_DungeonMakerItemRequest',9999,1),(11580,1096,1096,'OP_DungeonMakerItemRequest',9999,1),(11581,0,0,'OP_SysClient',191,1),(11582,839,844,'OP_SysClient',191,1),(11583,908,927,'OP_SysClient',198,1),(11584,1008,1011,'OP_SysClient',199,1),(11585,1045,1086,'OP_SysClient',203,1),(11586,1096,1096,'OP_SysClient',202,1),(11587,0,0,'OP_LFGGroupSearch',9999,1),(11588,839,844,'OP_LFGGroupSearch',9999,1),(11589,908,927,'OP_LFGGroupSearch',9999,1),(11590,1008,1011,'OP_LFGGroupSearch',9999,1),(11591,1045,1086,'OP_LFGGroupSearch',9999,1),(11592,1096,1096,'OP_LFGGroupSearch',9999,1),(11593,0,0,'OP_MarketPlacePrices',9999,1),(11594,839,844,'OP_MarketPlacePrices',9999,1),(11595,908,927,'OP_MarketPlacePrices',9999,1),(11596,1008,1011,'OP_MarketPlacePrices',9999,1),(11597,1045,1086,'OP_MarketPlacePrices',9999,1),(11598,1096,1096,'OP_MarketPlacePrices',9999,1),(11599,0,0,'OP_MarketFundsUpdate',9999,1),(11600,839,844,'OP_MarketFundsUpdate',9999,1),(11601,908,927,'OP_MarketFundsUpdate',9999,1),(11602,1008,1011,'OP_MarketFundsUpdate',9999,1),(11603,1045,1086,'OP_MarketFundsUpdate',9999,1),(11604,1096,1096,'OP_MarketFundsUpdate',9999,1),(11605,0,0,'OP_MarketAddFundsRequest',9999,1),(11606,839,844,'OP_MarketAddFundsRequest',9999,1),(11607,908,927,'OP_MarketAddFundsRequest',9999,1),(11608,1008,1011,'OP_MarketAddFundsRequest',9999,1),(11609,1045,1086,'OP_MarketAddFundsRequest',9999,1),(11610,1096,1096,'OP_MarketAddFundsRequest',9999,1),(11611,0,0,'OP_ZoneBgInstanceList',9999,1),(11612,839,844,'OP_ZoneBgInstanceList',9999,1),(11613,908,927,'OP_ZoneBgInstanceList',9999,1),(11614,1008,1011,'OP_ZoneBgInstanceList',9999,1),(11615,1045,1086,'OP_ZoneBgInstanceList',9999,1),(11616,1096,1096,'OP_ZoneBgInstanceList',534,1),(11617,0,0,'OP_UIEvent',9999,1),(11618,839,844,'OP_UIEvent',9999,1),(11619,908,927,'OP_UIEvent',9999,1),(11620,1008,1011,'OP_UIEvent',9999,1),(11621,1045,1086,'OP_UIEvent',9999,1),(11622,1096,1096,'OP_UIEvent',9999,1),(11623,0,0,'OP_EQHearThreatCmd',9999,1),(11624,839,844,'OP_EQHearThreatCmd',9999,1),(11625,908,927,'OP_EQHearThreatCmd',9999,1),(11626,1008,1011,'OP_EQHearThreatCmd',9999,1),(11627,1045,1086,'OP_EQHearThreatCmd',9999,1),(11628,1096,1096,'OP_EQHearThreatCmd',9999,1),(11629,0,0,'OP_Weakness',9999,1),(11630,839,844,'OP_Weakness',9999,1),(11631,908,927,'OP_Weakness',9999,1),(11632,1008,1011,'OP_Weakness',9999,1),(11633,1045,1086,'OP_Weakness',9999,1),(11634,1096,1096,'OP_Weakness',9999,1),(11635,0,0,'OP_SavageBarInitMsg',9999,1),(11636,839,844,'OP_SavageBarInitMsg',9999,1),(11637,908,927,'OP_SavageBarInitMsg',9999,1),(11638,1008,1011,'OP_SavageBarInitMsg',9999,1),(11639,1045,1086,'OP_SavageBarInitMsg',9999,1),(11640,1096,1096,'OP_SavageBarInitMsg',9999,1),(11641,0,0,'OP_PetOptionsResponse',9999,1),(11642,839,844,'OP_PetOptionsResponse',9999,1),(11643,908,927,'OP_PetOptionsResponse',9999,1),(11644,1008,1011,'OP_PetOptionsResponse',9999,1),(11645,1045,1086,'OP_PetOptionsResponse',9999,1),(11646,1096,1096,'OP_PetOptionsResponse',9999,1),(11647,0,0,'OP_CurrentPet',9999,1),(11648,839,844,'OP_CurrentPet',9999,1),(11649,908,927,'OP_CurrentPet',9999,1),(11650,1008,1011,'OP_CurrentPet',9999,1),(11651,1045,1086,'OP_CurrentPet',9999,1),(11652,1096,1096,'OP_CurrentPet',9999,1),(11653,0,0,'OP_JournalQuestStoryline',9999,1),(11654,839,844,'OP_JournalQuestStoryline',9999,1),(11655,908,927,'OP_JournalQuestStoryline',9999,1),(11656,1008,1011,'OP_JournalQuestStoryline',9999,1),(11657,1045,1086,'OP_JournalQuestStoryline',9999,1),(11658,1096,1096,'OP_JournalQuestStoryline',9999,1),(11659,0,0,'OP_EQHearDispellCmd',9999,1),(11660,839,844,'OP_EQHearDispellCmd',9999,1),(11661,908,927,'OP_EQHearDispellCmd',9999,1),(11662,1008,1011,'OP_EQHearDispellCmd',9999,1),(11663,1045,1086,'OP_EQHearDispellCmd',9999,1),(11664,1096,1096,'OP_EQHearDispellCmd',9999,1),(11665,0,0,'OP_LikeOption',9999,1),(11666,839,844,'OP_LikeOption',9999,1),(11667,908,927,'OP_LikeOption',9999,1),(11668,1008,1011,'OP_LikeOption',9999,1),(11669,1045,1086,'OP_LikeOption',9999,1),(11670,1096,1096,'OP_LikeOption',9999,1),(11671,0,0,'OP_Launchpad',9999,1),(11672,839,844,'OP_Launchpad',9999,1),(11673,908,927,'OP_Launchpad',9999,1),(11674,1008,1011,'OP_Launchpad',9999,1),(11675,1045,1086,'OP_Launchpad',9999,1),(11676,1096,1096,'OP_Launchpad',9999,1),(11677,1193,1195,'OP_Launchpad',9999,1),(11678,1198,1199,'OP_Launchpad',9999,1),(11679,1204,1205,'OP_Launchpad',9999,1),(11680,1208,1208,'OP_Launchpad',9999,1),(11681,57000,57002,'OP_Launchpad',9999,1),(11682,0,0,'OP_ClearForLandingMsg',9999,1),(11683,839,844,'OP_ClearForLandingMsg',9999,1),(11684,908,927,'OP_ClearForLandingMsg',9999,1),(11685,1008,1011,'OP_ClearForLandingMsg',9999,1),(11686,1045,1086,'OP_ClearForLandingMsg',9999,1),(11687,1096,1096,'OP_ClearForLandingMsg',473,1),(11688,1193,1195,'OP_ClearForLandingMsg',9999,1),(11689,1198,1199,'OP_ClearForLandingMsg',9999,1),(11690,1204,1205,'OP_ClearForLandingMsg',9999,1),(11691,1208,1208,'OP_ClearForLandingMsg',490,1),(11692,57000,57002,'OP_ClearForLandingMsg',9999,1),(11693,0,0,'OP_RecipeListUnknown',9999,1),(11694,839,844,'OP_RecipeListUnknown',9999,1),(11695,908,927,'OP_RecipeListUnknown',9999,1),(11696,1008,1011,'OP_RecipeListUnknown',9999,1),(11697,1045,1086,'OP_RecipeListUnknown',9999,1),(11698,1096,1096,'OP_RecipeListUnknown',9999,1),(11699,1193,1195,'OP_RecipeListUnknown',9999,1),(11700,1198,1199,'OP_RecipeListUnknown',9999,1),(11701,1204,1205,'OP_RecipeListUnknown',9999,1),(11702,1208,1208,'OP_RecipeListUnknown',9999,1),(11703,57000,57002,'OP_RecipeListUnknown',9999,1),(11704,57003,57014,'OP_RecipeListUnknown',9999,1),(11705,57015,57031,'OP_RecipeListUnknown',9999,1),(11706,0,0,'OP_DailyObjectives',9999,1),(11707,839,844,'OP_DailyObjectives',9999,1),(11708,908,927,'OP_DailyObjectives',9999,1),(11709,1008,1011,'OP_DailyObjectives',9999,1),(11710,1045,1086,'OP_DailyObjectives',9999,1),(11711,1096,1096,'OP_DailyObjectives',9999,1),(11712,1193,1195,'OP_DailyObjectives',9999,1),(11713,1198,1199,'OP_DailyObjectives',9999,1),(11714,1204,1205,'OP_DailyObjectives',9999,1),(11715,1208,1208,'OP_DailyObjectives',9999,1),(11716,57000,57002,'OP_DailyObjectives',9999,1),(11717,57003,57014,'OP_DailyObjectives',9999,1),(11718,57015,57031,'OP_DailyObjectives',9999,1),(11719,57032,57047,'OP_DailyObjectives',9999,1),(11720,0,0,'OP_HeritageMsg',9999,1),(11721,839,844,'OP_HeritageMsg',9999,1),(11722,908,927,'OP_HeritageMsg',9999,1),(11723,1008,1011,'OP_HeritageMsg',9999,1),(11724,1045,1086,'OP_HeritageMsg',9999,1),(11725,1096,1096,'OP_HeritageMsg',9999,1),(11726,1193,1195,'OP_HeritageMsg',9999,1),(11727,1198,1199,'OP_HeritageMsg',9999,1),(11728,1204,1205,'OP_HeritageMsg',9999,1),(11729,1208,1208,'OP_HeritageMsg',9999,1),(11730,57000,57002,'OP_HeritageMsg',9999,1),(11731,57003,57014,'OP_HeritageMsg',9999,1),(11732,57015,57031,'OP_HeritageMsg',9999,1),(11733,57032,57047,'OP_HeritageMsg',9999,1),(11734,57048,57079,'OP_HeritageMsg',9999,1),(11735,57080,57095,'OP_HeritageMsg',9999,1),(11736,57107,57109,'OP_HeritageMsg',9999,1),(11737,57121,58525,'OP_HeritageMsg',9999,1),(11738,58542,58588,'OP_AchievementUpdateMsg',742,1),(11739,58542,58588,'OP_AddSocialStructureStandingMsg',249,1),(11740,58542,58588,'OP_AdvancementRequestMsg',394,1),(11741,58542,58588,'OP_AdventureList',488,1),(11742,58542,58588,'OP_AFKUpdateMsg',370,1),(11743,58542,58588,'OP_AfterInvSpellUpdate',69,1),(11744,58542,58588,'OP_AllCharactersDescReplyMsg',10,1),(11745,58542,58588,'OP_AllCharactersDescRequestMsg',9,1),(11746,58542,58588,'OP_AllWSDescRequestMsg',7,1),(11747,58542,58588,'OP_AnonUpdateMsg',371,1),(11748,58542,58588,'OP_ArenaCreate',456,1),(11749,58542,58588,'OP_ArenaGameTypesMsg',445,1),(11750,58542,58588,'OP_ArenaList',457,1),(11751,58542,58588,'OP_ArenaWindow',465,1),(11752,58542,58588,'OP_AttackAllowed',500,1),(11753,58542,58588,'OP_AttackNotAllowed',501,1),(11754,58542,58588,'OP_AuctionAbortMsg',436,1),(11755,58542,58588,'OP_AuctionCharacter',433,1),(11756,58542,58588,'OP_AuctionCharacterReply',434,1),(11757,58542,58588,'OP_AuctionCoin',431,1),(11758,58542,58588,'OP_AuctionCoinReply',432,1),(11759,58542,58588,'OP_AuctionCommitMsg',435,1),(11760,58542,58588,'OP_AuctionItem',429,1),(11761,58542,58588,'OP_AuctionItemReply',430,1),(11762,58542,58588,'OP_AuditAuctionEventMsg',446,1),(11763,58542,58588,'OP_AvatarCreatedMsg',46,1),(11764,58542,58588,'OP_AvatarDestroyedMsg',47,1),(11765,58542,58588,'OP_AvatarUpdateMsg',360,1),(11766,58542,58588,'OP_BadLanguageFilter',519,1),(11767,58542,58588,'OP_BagOptions',502,1),(11768,58542,58588,'OP_BeginItemCreationMsg',221,1),(11769,58542,58588,'OP_BeginTrackingMsg',390,1),(11770,58542,58588,'OP_BioUpdateMsg',362,1),(11771,58542,58588,'OP_BrokerAddBag',292,1),(11772,58542,58588,'OP_BrokerRemoveBag',293,1),(11773,58542,58588,'OP_BrokerSellList',685,1),(11774,58542,58588,'OP_BuyPlayerHouseMsg',150,1),(11775,58542,58588,'OP_BuyPlayerHouseTintMsg',151,1),(11776,58542,58588,'OP_CampAbortedMsg',52,1),(11777,58542,58588,'OP_CampClientMsg',387,1),(11778,58542,58588,'OP_CampStartedMsg',51,1),(11779,58542,58588,'OP_CancelCreateFromRecipeMsg',220,1),(11780,58542,58588,'OP_CancelledFeignMsg',216,1),(11781,58542,58588,'OP_CancelMoveObjectModeMsg',163,1),(11782,58542,58588,'OP_CancelSpellCast',489,1),(11783,58542,58588,'OP_ChangeServerControlFlagMsg',246,1),(11784,58542,58588,'OP_ChangeZoneMsg',77,1),(11785,58542,58588,'OP_CharacterAchievements',741,1),(11786,58542,58588,'OP_CharacterCreatedDungeons',551,1),(11787,58542,58588,'OP_CharacterCurrency',740,1),(11788,58542,58588,'OP_CharacterHousingList',507,1),(11789,58542,58588,'OP_CharacterLinkdeadMsg',414,1),(11790,58542,58588,'OP_CharacterMerc',65,1),(11791,58542,58588,'OP_CharacterMounts',582,1),(11792,58542,58588,'OP_CharacterPet',64,1),(11793,58542,58588,'OP_CharNameChangedMsg',352,1),(11794,58542,58588,'OP_CharRenamed',706,1),(11795,58542,58588,'OP_CharTransferCommitReplyMsg',422,1),(11796,58542,58588,'OP_CharTransferCommitRequestMsg',420,1),(11797,58542,58588,'OP_CharTransferReplyMsg',418,1),(11798,58542,58588,'OP_CharTransferRequestMsg',417,1),(11799,58542,58588,'OP_CharTransferRollbackReplyMsg',421,1),(11800,58542,58588,'OP_CharTransferRollbackRequestMsg',419,1),(11801,58542,58588,'OP_CharTransferStartReplyMsg',416,1),(11802,58542,58588,'OP_CharTransferStartRequestMsg',415,1),(11803,58542,58588,'OP_CharTransferValidateReplyMsg',438,1),(11804,58542,58588,'OP_CharTransferValidateRequestMsg',437,1),(11805,58542,58588,'OP_ChatCreateChannelMsg',285,1),(11806,58542,58588,'OP_ChatFiltersMsg',335,1),(11807,58542,58588,'OP_ChatJoinChannelMsg',286,1),(11808,58542,58588,'OP_ChatLeaveChannelMsg',288,1),(11809,58542,58588,'OP_ChatRelationshipUpdateMsg',184,1),(11810,58542,58588,'OP_ChatSendFriendsMsg',295,1),(11811,58542,58588,'OP_ChatSendIgnoresMsg',296,1),(11812,58542,58588,'OP_ChatTellChannelMsg',289,1),(11813,58542,58588,'OP_ChatTellUserMsg',290,1),(11814,58542,58588,'OP_ChatToggleFriendMsg',291,1),(11815,58542,58588,'OP_ChatToggleIgnoreMsg',294,1),(11816,58542,58588,'OP_ChatWhoChannelMsg',287,1),(11817,58542,58588,'OP_ClearDataMsg',98,1),(11818,58542,58588,'OP_ClearForLandingMsg',491,1),(11819,58542,58588,'OP_ClearForTakeOffMsg',191,1),(11820,58542,58588,'OP_ClientCmdMsg',58,1),(11821,58542,58588,'OP_ClientFellMsg',385,1),(11822,58542,58588,'OP_ClientIdleBeginMsg',405,1),(11823,58542,58588,'OP_ClientIdleEndMsg',406,1),(11824,58542,58588,'OP_ClientInDeathRegionMsg',386,1),(11825,58542,58588,'OP_ClientTeleportRequestMsg',78,1),(11826,58542,58588,'OP_ClientTeleportToLocationMsg',244,1),(11827,58542,58588,'OP_CloseGroupInviteWindowMsg',397,1),(11828,58542,58588,'OP_CollectAllHouseItemsMsg',152,1),(11829,58542,58588,'OP_ConsignItemRequestMsg',126,1),(11830,58542,58588,'OP_ConsignItemResponseMsg',127,1),(11831,58542,58588,'OP_ConsignmentCloseStoreMsg',125,1),(11832,58542,58588,'OP_ConsignRemoveItemsMsg',378,1),(11833,58542,58588,'OP_ConsignViewCreateMsg',375,1),(11834,58542,58588,'OP_ConsignViewGetPageMsg',376,1),(11835,58542,58588,'OP_ConsignViewReleaseMsg',377,1),(11836,58542,58588,'OP_ConsignViewSortMsg',383,1),(11837,58542,58588,'OP_CorruptedClientMsg',409,1),(11838,58542,58588,'OP_CreateBoatTransportsMsg',250,1),(11839,58542,58588,'OP_CreateCharacterDungeon',547,1),(11840,58542,58588,'OP_CreateCharacterReplyMsg',12,1),(11841,58542,58588,'OP_CreateCharacterRequestMsg',11,1),(11842,58542,58588,'OP_CreateCharFromCBBReplyMsg',426,1),(11843,58542,58588,'OP_CreateCharFromCBBRequestMsg',425,1),(11844,58542,58588,'OP_CreateGuildReplyMsg',120,1),(11845,58542,58588,'OP_CreateGuildRequestMsg',119,1),(11846,58542,58588,'OP_CreateZoneInstanceMsg',29,1),(11847,58542,58588,'OP_CsCategoryRequestMsg',367,1),(11848,58542,58588,'OP_CsCategoryResponseMsg',368,1),(11849,58542,58588,'OP_CSTicketAddCommentMsg',234,1),(11850,58542,58588,'OP_CSTicketChangeNotificationMsg',236,1),(11851,58542,58588,'OP_CSTicketCommentRequestMsg',231,1),(11852,58542,58588,'OP_CSTicketCommentResponseMsg',232,1),(11853,58542,58588,'OP_CSTicketCreateMsg',233,1),(11854,58542,58588,'OP_CSTicketDeleteMsg',235,1),(11855,58542,58588,'OP_CSTicketHeaderRequestMsg',229,1),(11856,58542,58588,'OP_CSTicketInfoMsg',230,1),(11857,58542,58588,'OP_CSToolAccessResponseMsg',388,1),(11858,58542,58588,'OP_CSToolsRequestMsg',247,1),(11859,58542,58588,'OP_CSToolsResponseMsg',248,1),(11860,58542,58588,'OP_CurrentPet',485,1),(11861,58542,58588,'OP_CustomizationPurchaseRequestMs',167,1),(11862,58542,58588,'OP_CustomizationReplyMsg',169,1),(11863,58542,58588,'OP_CustomizationSetRequestMsg',168,1),(11864,58542,58588,'OP_CustomizeHouseDisplay',731,1),(11865,58542,58588,'OP_DailyObjectives',595,1),(11866,58542,58588,'OP_DefaultGroupOptionsMsg',198,1),(11867,58542,58588,'OP_DefaultGroupOptionsRequestMsg',197,1),(11868,58542,58588,'OP_DeleteCharacterReplyMsg',17,1),(11869,58542,58588,'OP_DeleteCharacterRequestMsg',16,1),(11870,58542,58588,'OP_DeleteGuildMsg',123,1),(11871,58542,58588,'OP_DestUpdateReq',210,1),(11872,58542,58588,'OP_DialogCloseMsg',110,1),(11873,58542,58588,'OP_DialogSelectMsg',109,1),(11874,58542,58588,'OP_DispatchClientCmdMsg',60,1),(11875,58542,58588,'OP_DispatchESMsg',59,1),(11876,58542,58588,'OP_DispatchMsg',451,1),(11877,58542,58588,'OP_DispatchSpellCmdMsg',179,1),(11878,58542,58588,'OP_DisplayDebugNLLPointsMsg',254,1),(11879,58542,58588,'OP_DisplayEventMsg',452,1),(11880,58542,58588,'OP_DisplayExchangeScreenMsg',444,1),(11881,58542,58588,'OP_DisplayGroupOptionsScreenMsg',200,1),(11882,58542,58588,'OP_DisplayInnVisitScreenMsg',202,1),(11883,58542,58588,'OP_DisplayMailScreenMsg',404,1),(11884,58542,58588,'OP_DisplayTSEventReactionMsg',225,1),(11885,58542,58588,'OP_DisplayWarningMsg',265,1),(11886,58542,58588,'OP_DoneLoadingEntityResourcesMsg',36,1),(11887,58542,58588,'OP_DoneLoadingZoneResourcesMsg',34,1),(11888,58542,58588,'OP_DoneSendingInitialEntitiesMsg',35,1),(11889,58542,58588,'OP_DressingRoom',510,1),(11890,58542,58588,'OP_DumpSchedulerMsg',203,1),(11891,58542,58588,'OP_DungeonMakerEnter',548,1),(11892,58542,58588,'OP_DungeonMakerItemRequest',550,1),(11893,58542,58588,'OP_DungeonMakerItemResponse',580,1),(11894,58542,58588,'OP_DungeonMakerToolboxList',552,1),(11895,58542,58588,'OP_DungeonMakerUnknown',553,1),(11896,58542,58588,'OP_DungeonMakerUnknown1',554,1),(11897,58542,58588,'OP_DungeonPlayAsAvatarList',745,1),(11898,58542,58588,'OP_DungeonPlayAsAvatarSelected',746,1),(11899,58542,58588,'OP_EncounterBrokenMsg',263,1),(11900,58542,58588,'OP_EnterHouseMsg',154,1),(11901,58542,58588,'OP_EnterMoveObjectModeMsg',161,1),(11902,58542,58588,'OP_EntityVerbsReplyMsg',181,1),(11903,58542,58588,'OP_EntityVerbsRequestMsg',180,1),(11904,58542,58588,'OP_EntityVerbsVerbMsg',182,1),(11905,58542,58588,'OP_EqArenaResultsCmd',696,1),(11906,58542,58588,'OP_EqAvailWorldChannelsCmd',683,1),(11907,58542,58588,'OP_EqBetaCopyRequest',603,1),(11908,58542,58588,'OP_EqCannedEmoteCmd',625,1),(11909,58542,58588,'OP_EqChatChannelUpdateCmd',681,1),(11910,58542,58588,'OP_EqChoiceWinCmd',662,1),(11911,58542,58588,'OP_EqCloseWindowCmd',654,1),(11912,58542,58588,'OP_EqCollectionFilterCmd',641,1),(11913,58542,58588,'OP_EqCollectionItemCmd',642,1),(11914,58542,58588,'OP_EqCollectionUpdateCmd',640,1),(11915,58542,58588,'OP_EqConsignmentItemsCmd',686,1),(11916,58542,58588,'OP_EqCreateGhostCmd',607,1),(11917,58542,58588,'OP_EqCreateListBoxCmd',622,1),(11918,58542,58588,'OP_EqCreateSignWidgetCmd',609,1),(11919,58542,58588,'OP_EqCreateWidgetCmd',608,1),(11920,58542,58588,'OP_EqDebugPVDCmd',675,1),(11921,58542,58588,'OP_EqDestroyGhostCmd',610,1),(11922,58542,58588,'OP_EqDialogCloseCmd',638,1),(11923,58542,58588,'OP_EqDialogOpenCmd',637,1),(11924,58542,58588,'OP_EqDisplaySpellFailCmd',658,1),(11925,58542,58588,'OP_EqDisplayTextCmd',606,1),(11926,58542,58588,'OP_EqDrawablePathGraphCmd',636,1),(11927,58542,58588,'OP_EqEnableGameEventCmd',668,1),(11928,58542,58588,'OP_EqEnableWindowCmd',670,1),(11929,58542,58588,'OP_EqExamineInfoCmd',653,1),(11930,58542,58588,'OP_EqFactionUpdateCmd',639,1),(11931,58542,58588,'OP_EqFlashWindowCmd',671,1),(11932,58542,58588,'OP_EqGetProbsCmd',679,1),(11933,58542,58588,'OP_EqGroupMemberRemovedCmd',632,1),(11934,58542,58588,'OP_EqGuildBankEventActionCmd',697,1),(11935,58542,58588,'OP_EqGuildBankExamineInfoCmd',698,1),(11936,58542,58588,'OP_EqHearChainEffectCmd',633,1),(11937,58542,58588,'OP_EqHearChatCmd',605,1),(11938,58542,58588,'OP_EqHearCombatCmd',614,1),(11939,58542,58588,'OP_EqHearConsiderCmd',620,1),(11940,58542,58588,'OP_EqHearDeathCmd',631,1),(11941,58542,58588,'OP_EQHearDispellCmd',743,1),(11942,58542,58588,'OP_EqHearDrowningCmd',630,1),(11943,58542,58588,'OP_EqHearHealCmd',680,1),(11944,58542,58588,'OP_EqHearPlayFlavorCmd',673,1),(11945,58542,58588,'OP_EQHearProcCmd',616,1),(11946,58542,58588,'OP_EQHearResEffectCmd',617,1),(11947,58542,58588,'OP_EqHearSpellCastCmd',615,1),(11948,58542,58588,'OP_EqHearSpellFizzleCmd',619,1),(11949,58542,58588,'OP_EqHearSpellInterruptCmd',618,1),(11950,58542,58588,'OP_EqHearSpellNoLandCmd',699,1),(11951,58542,58588,'OP_EQHearThreatCmd',737,1),(11952,58542,58588,'OP_EqHelpPathClearCmd',651,1),(11953,58542,58588,'OP_EqHelpPathCmd',650,1),(11954,58542,58588,'OP_EqInspectPCResultsCmd',635,1),(11955,58542,58588,'OP_EqInstructionWindowCloseCmd',665,1),(11956,58542,58588,'OP_EqInstructionWindowCmd',664,1),(11957,58542,58588,'OP_EqInstructionWindowGoalCmd',666,1),(11958,58542,58588,'OP_EqInstructionWindowTaskCmd',667,1),(11959,58542,58588,'OP_EqJunctionListCmd',656,1),(11960,58542,58588,'OP_EqMapExplorationCmd',689,1),(11961,58542,58588,'OP_EqMentoring',644,1),(11962,58542,58588,'OP_EqPlaySound3DCmd',628,1),(11963,58542,58588,'OP_EqPlaySoundCmd',627,1),(11964,58542,58588,'OP_EqPlayVoiceCmd',629,1),(11965,58542,58588,'OP_EqQuestGroupCmd',646,1),(11966,58542,58588,'OP_EqQuestionnaireCmd',677,1),(11967,58542,58588,'OP_EqQuestJournalReplyCmd',645,1),(11968,58542,58588,'OP_EqQuestJournalUpdateCmd',643,1),(11969,58542,58588,'OP_EqReceiveOfferCmd',634,1),(11970,58542,58588,'OP_EqResurrectedCmd',661,1),(11971,58542,58588,'OP_EqSetControlGhostCmd',612,1),(11972,58542,58588,'OP_EqSetDebugPathPointsCmd',623,1),(11973,58542,58588,'OP_EqSetDefaultVerbCmd',663,1),(11974,58542,58588,'OP_EqSetPOVGhostCmd',613,1),(11975,58542,58588,'OP_EqShowBookCmd',676,1),(11976,58542,58588,'OP_EqShowDeathWindowCmd',657,1),(11977,58542,58588,'OP_EqShowWindowCmd',669,1),(11978,58542,58588,'OP_EqSpellCastEndCmd',660,1),(11979,58542,58588,'OP_EqSpellCastStartCmd',659,1),(11980,58542,58588,'OP_EqSpellMoveToRangeAndRetryCmd',691,1),(11981,58542,58588,'OP_EqStartBrokerCmd',688,1),(11982,58542,58588,'OP_EqStateCmd',626,1),(11983,58542,58588,'OP_EqStoreLogCmd',690,1),(11984,58542,58588,'OP_EqUpdateBankCmd',652,1),(11985,58542,58588,'OP_EqUpdateGhostCmd',611,1),(11986,58542,58588,'OP_EqUpdateLootCmd',655,1),(11987,58542,58588,'OP_EqUpdateMerchantCmd',647,1),(11988,58542,58588,'OP_EqUpdatePlayerMailCmd',692,1),(11989,58542,58588,'OP_EqUpdatePlayerTradeCmd',649,1),(11990,58542,58588,'OP_EqUpdateSignWidgetCmd',674,1),(11991,58542,58588,'OP_EqUpdateStoreCmd',648,1),(11992,58542,58588,'OP_EqUpdateSubClassesCmd',621,1),(11993,58542,58588,'OP_EqUpdateTargetCmd',684,1),(11994,58542,58588,'OP_EqWhoChannelQueryReplyCmd',682,1),(11995,58542,58588,'OP_ESInitMsg',25,1),(11996,58542,58588,'OP_ESLoginRequestMsg',3,1),(11997,58542,58588,'OP_ESReadyForClientsMsg',26,1),(11998,58542,58588,'OP_ESStatusMsg',100,1),(11999,58542,58588,'OP_ESWeatherRequestEndMsg',105,1),(12000,58542,58588,'OP_ESWeatherRequestMsg',104,1),(12001,58542,58588,'OP_ESZoneInstanceStatusMsg',101,1),(12002,58542,58588,'OP_ExamineConsignmentRequestMsg',171,1),(12003,58542,58588,'OP_ExamineConsignmentResponseMsg',172,1),(12004,58542,58588,'OP_ExamineInfoRequestMsg',255,1),(12005,58542,58588,'OP_ExamineItemRequestMsg',195,1),(12006,58542,58588,'OP_ExitHouseMsg',155,1),(12007,58542,58588,'OP_ExpectClientAsCharacterReplyMs',22,1),(12008,58542,58588,'OP_ExpectClientAsCharacterRequest',32,1),(12009,58542,58588,'OP_ExpPurchWindow',722,1),(12010,58542,58588,'OP_FellowshipExpMsg',122,1),(12011,58542,58588,'OP_FlightPathsMsg',413,1),(12012,58542,58588,'OP_GameWorldTimeMsg',43,1),(12013,58542,58588,'OP_PaperdollImage',575,1),(12014,58542,58588,'OP_GetAuctionAssetIDMsg',441,1),(12015,58542,58588,'OP_GetAuctionAssetIDReplyMsg',442,1),(12016,58542,58588,'OP_GetAvatarAccessRequestForCSToo',393,1),(12017,58542,58588,'OP_GetCharacterSerializedReplyMsg',424,1),(12018,58542,58588,'OP_GetCharacterSerializedRequestM',423,1),(12019,58542,58588,'OP_GroupCreatedMsg',88,1),(12020,58542,58588,'OP_GroupDestroyedMsg',89,1),(12021,58542,58588,'OP_GroupLeaderChangedMsg',93,1),(12022,58542,58588,'OP_GroupMemberAddedMsg',90,1),(12023,58542,58588,'OP_GroupMemberRemovedMsg',91,1),(12024,58542,58588,'OP_GroupOptionsMsg',199,1),(12025,58542,58588,'OP_GroupRemovedFromGroupMsg',92,1),(12026,58542,58588,'OP_GroupResendOOZDataMsg',94,1),(12027,58542,58588,'OP_GroupSettingsChangedMsg',95,1),(12028,58542,58588,'OP_GuildBankActionMsg',274,1),(12029,58542,58588,'OP_GuildBankActionResponseMsg',275,1),(12030,58542,58588,'OP_GuildBankEventListMsg',279,1),(12031,58542,58588,'OP_GuildBankItemDetailsRequestMsg',276,1),(12032,58542,58588,'OP_GuildBankItemDetailsResponseMs',277,1),(12033,58542,58588,'OP_GuildBankUpdateMsg',278,1),(12034,58542,58588,'OP_GuildEventActionMsg',269,1),(12035,58542,58588,'OP_GuildEventAddMsg',268,1),(12036,58542,58588,'OP_GuildEventDetailsMsg',272,1),(12037,58542,58588,'OP_GuildEventListMsg',270,1),(12038,58542,58588,'OP_GuildEventMsg',267,1),(12039,58542,58588,'OP_GuildMembershipResponseMsg',357,1),(12040,58542,58588,'OP_GuildRecruiting',702,1),(12041,58542,58588,'OP_GuildRecruitingDetails',703,1),(12042,58542,58588,'OP_GuildRecruitingImage',704,1),(12043,58542,58588,'OP_GuildRecruitingMemberInfo',701,1),(12044,58542,58588,'OP_GuildsayMsg',121,1),(12045,58542,58588,'OP_GuildStatusUpdate',695,1),(12046,58542,58588,'OP_GuildUpdateMsg',124,1),(12047,58542,58588,'OP_HeritageMsg',10000,1),(12048,58542,58588,'OP_HideIllusionsMsg',194,1),(12049,58542,58588,'OP_HouseAccessRemoveMsg',158,1),(12050,58542,58588,'OP_HouseAccessSetMsg',157,1),(12051,58542,58588,'OP_HouseCustomizationScreenMsg',166,1),(12052,58542,58588,'OP_HouseDefaultAccessSetMsg',156,1),(12053,58542,58588,'OP_HouseDeletedRemotelyMsg',142,1),(12054,58542,58588,'OP_HouseItemsList',484,1),(12055,58542,58588,'OP_HousingDataChangedMsg',427,1),(12056,58542,58588,'OP_HousingRestoreMsg',428,1),(12057,58542,58588,'OP_InspectPlayerMsg',363,1),(12058,58542,58588,'OP_InspectPlayerRequestMsg',450,1),(12059,58542,58588,'OP_InviteRequestMsg',447,1),(12060,58542,58588,'OP_InviteResponseMsg',448,1),(12061,58542,58588,'OP_InviteTargetResponseMsg',449,1),(12062,58542,58588,'OP_JoinGuildNotifyMsg',359,1),(12063,58542,58588,'OP_JournalQuestStoryline',744,1),(12064,58542,58588,'OP_KeymapDataMsg',177,1),(12065,58542,58588,'OP_KeymapLoadMsg',175,1),(12066,58542,58588,'OP_KeymapNoneMsg',176,1),(12067,58542,58588,'OP_KeymapSaveMsg',178,1),(12068,58542,58588,'OP_KnowledgebaseRequestMsg',227,1),(12069,58542,58588,'OP_KnowledgebaseResponseMsg',228,1),(12070,58542,58588,'OP_KnowledgeWindowSlotMappingMsg',369,1),(12071,58542,58588,'OP_KnownLanguagesMsg',238,1),(12072,58542,58588,'OP_Launchpad',573,1),(12073,58542,58588,'OP_LeaveGuildNotifyMsg',358,1),(12074,58542,58588,'OP_LevelChangedMsg',261,1),(12075,58542,58588,'OP_LFGGroupSearch',504,1),(12076,58542,58588,'OP_LFGUpdateMsg',518,1),(12077,58542,58588,'OP_LikeOption',136,1),(12078,58542,58588,'OP_LoadCalendarEvents',576,1),(12079,58542,58588,'OP_LoadWelcomeWindow',560,1),(12080,58542,58588,'OP_LoginByNumRequestMsg',1,1),(12081,58542,58588,'OP_LoginReplyMsg',4,1),(12082,58542,58588,'OP_LoginRequestMsg',0,1),(12083,58542,58588,'OP_LootItemsRequestMsg',185,1),(12084,58542,58588,'OP_Lottery',700,1),(12085,58542,58588,'OP_LSCheckAcctLockMsg',204,1),(12086,58542,58588,'OP_LsClientAlertlogReplyMsg',242,1),(12087,58542,58588,'OP_LsClientBaselogReplyMsg',240,1),(12088,58542,58588,'OP_LsClientCrashlogReplyMsg',241,1),(12089,58542,58588,'OP_LsClientVerifylogReplyMsg',243,1),(12090,58542,58588,'OP_LsRequestClientCrashLogMsg',239,1),(12091,58542,58588,'OP_LSServerLockMsg',365,1),(12092,58542,58588,'OP_MacroInitMsg',258,1),(12093,58542,58588,'OP_MacroUpdateMsg',259,1),(12094,58542,58588,'OP_MailCommitSendMessageMsg',344,1),(12095,58542,58588,'OP_MailDeleteMessageMsg',340,1),(12096,58542,58588,'OP_MailEventNotificationMsg',411,1),(12097,58542,58588,'OP_MailGetHeadersReplyMsg',341,1),(12098,58542,58588,'OP_MailGetMessageMsg',338,1),(12099,58542,58588,'OP_MailGetMessageReplyMsg',342,1),(12100,58542,58588,'OP_MailRemoveAttachFromMailMsg',346,1),(12101,58542,58588,'OP_MailSendMessageMsg',339,1),(12102,58542,58588,'OP_MailSendMessageReplyMsg',343,1),(12103,58542,58588,'OP_MailSendSystemMessageMsg',345,1),(12104,58542,58588,'OP_MakeGroupLeaderMsg',87,1),(12105,58542,58588,'OP_MapFogDataInitMsg',395,1),(12106,58542,58588,'OP_MapFogDataUpdateMsg',396,1),(12107,58542,58588,'OP_MapRequest',521,1),(12108,58542,58588,'OP_MarketAddFundsReply',529,1),(12109,58542,58588,'OP_MarketAddFundsRequest',528,1),(12110,58542,58588,'OP_MarketFundsUpdate',526,1),(12111,58542,58588,'OP_MarketPlaceItems',537,1),(12112,58542,58588,'OP_MarketPlacePrices',532,1),(12113,58542,58588,'OP_MarketPurchase',531,1),(12114,58542,58588,'OP_MentorPopup',558,1),(12115,58542,58588,'OP_MercHireWindow',747,1),(12116,58542,58588,'OP_MercUnknown',748,1),(12117,58542,58588,'OP_MigrateBoatTransportMsg',252,1),(12118,58542,58588,'OP_MigrateBoatTransportReplyMsg',253,1),(12119,58542,58588,'OP_MigrateClientToZoneReplyMsg',82,1),(12120,58542,58588,'OP_MigrateClientToZoneRequestMsg',81,1),(12121,58542,58588,'OP_ModifyGuildMsg',266,1),(12122,58542,58588,'OP_MonitorCharacterListMsg',56,1),(12123,58542,58588,'OP_MonitorCharacterListRequestMsg',57,1),(12124,58542,58588,'OP_MonitorReplyMsg',55,1),(12125,58542,58588,'OP_MOTDMsg',44,1),(12126,58542,58588,'OP_MoveableObjectPlacementCriteri',160,1),(12127,58542,58588,'OP_MoveLogUpdateMsg',400,1),(12128,58542,58588,'OP_NotifyApprenticeStoppedMentori',408,1),(12129,58542,58588,'OP_OfferQuestMsg',401,1),(12130,58542,58588,'OP_OnscreenMsgMsg',264,1),(12131,58542,58588,'OP_OpenCharCust',561,1),(12132,58542,58588,'OP_OutOfZoneMemberDataMsg',96,1),(12133,58542,58588,'OP_PayHouseUpkeepMsg',159,1),(12134,58542,58588,'OP_PerformCameraShakeMsg',214,1),(12135,58542,58588,'OP_PerformPlayerKnockbackMsg',213,1),(12136,58542,58588,'OP_PetOptions',201,1),(12137,58542,58588,'OP_PetOptionsResponse',579,1),(12138,58542,58588,'OP_PlayCharacterReplyMsg',19,1),(12139,58542,58588,'OP_PlayCharacterRequestMsg',18,1),(12140,58542,58588,'OP_PlayerHouseAccessUpdateMsg',147,1),(12141,58542,58588,'OP_PlayerHouseBaseScreenMsg',145,1),(12142,58542,58588,'OP_PlayerHouseCloseUIMsg',149,1),(12143,58542,58588,'OP_PlayerHouseDisplayStatusMsg',148,1),(12144,58542,58588,'OP_PlayerHousePurchaseScreenMsg',146,1),(12145,58542,58588,'OP_PlayerMadeInstances',140,1),(12146,58542,58588,'OP_PlayerMadeInstancesScreen',139,1),(12147,58542,58588,'OP_PlayerPollAnswer',557,1),(12148,58542,58588,'OP_PlayerPollPopup',556,1),(12149,58542,58588,'OP_PlayLon',511,1),(12150,58542,58588,'OP_PointOfInterest',726,1),(12151,58542,58588,'OP_PointOfInterest2',727,1),(12152,58542,58588,'OP_PopulateSkillMapsMsg',215,1),(12153,58542,58588,'OP_PositionBoatTransportMsg',251,1),(12154,58542,58588,'OP_PositionMoveableObject',162,1),(12155,58542,58588,'OP_PostPossessionMsg',454,1),(12156,58542,58588,'OP_PredictionUpdateMsg',37,1),(12157,58542,58588,'OP_PrePossessionMsg',453,1),(12158,58542,58588,'OP_PromoFlagsDetailsMsg',374,1),(12159,58542,58588,'OP_PublishHouse',138,1),(12160,58542,58588,'OP_PurchaseConsignmentLoreCheckRe',407,1),(12161,58542,58588,'OP_PurchaseConsignmentRequestMsg',128,1),(12162,58542,58588,'OP_QueAllBgSolo',564,1),(12163,58542,58588,'OP_QuestionnaireMsg',260,1),(12164,58542,58588,'OP_QuestJournalInspectMsg',114,1),(12165,58542,58588,'OP_QuestJournalOpenMsg',113,1),(12166,58542,58588,'OP_QuestJournalSetVisibleMsg',115,1),(12167,58542,58588,'OP_QuestJournalWaypointMsg',116,1),(12168,58542,58588,'OP_QuestReward',320,1),(12169,58542,58588,'OP_QuickbarInitMsg',256,1),(12170,58542,58588,'OP_QuickbarUpdateMsg',257,1),(12171,58542,58588,'OP_RaceRestrictionMsg',439,1),(12172,58542,58588,'OP_ReadBookPageMsg',196,1),(12173,58542,58588,'OP_ReadyForTakeOffMsg',192,1),(12174,58542,58588,'OP_ReadyToZoneMsg',84,1),(12175,58542,58588,'OP_RecipeBook',538,1),(12176,58542,58588,'OP_RecipeDetailsMsg',72,1),(12177,58542,58588,'OP_RecipeList',738,1),(12178,58542,58588,'OP_RecipeListUnknown',591,1),(12179,58542,58588,'OP_RelinquishHouseMsg',153,1),(12180,58542,58588,'OP_ReloadLocalizedTxtMsg',355,1),(12181,58542,58588,'OP_RemoteCmdMsg',42,1),(12182,58542,58588,'OP_RemoveClientFromGroupMsg',85,1),(12183,58542,58588,'OP_RemoveConcentrationMsg',112,1),(12184,58542,58588,'OP_RemoveGroupFromGroupMsg',86,1),(12185,58542,58588,'OP_RemoveSpellEffectMsg',111,1),(12186,58542,58588,'OP_RenameGuildMsg',282,1),(12187,58542,58588,'OP_ReplaceableSubMeshesMsg',165,1),(12188,58542,58588,'OP_ReportMsg',380,1),(12189,58542,58588,'OP_RequestCampMsg',50,1),(12190,58542,58588,'OP_RequestGuildBankEventDetailsMs',280,1),(12191,58542,58588,'OP_RequestGuildEventDetailsMsg',271,1),(12192,58542,58588,'OP_RequestGuildInfoMsg',273,1),(12193,58542,58588,'OP_RequestGuildMembershipMsg',356,1),(12194,58542,58588,'OP_RequestHelpRepathMsg',206,1),(12195,58542,58588,'OP_RequestRecipeDetailsMsg',71,1),(12196,58542,58588,'OP_RequestTargetLocMsg',207,1),(12197,58542,58588,'OP_Research',739,1),(12198,58542,58588,'OP_ResendWorldChannelsMsg',443,1),(12199,58542,58588,'OP_ReskinCharacterRequestMsg',15,1),(12200,58542,58588,'OP_RestartZoneMsg',412,1),(12201,58542,58588,'OP_RewardPackMsg',281,1),(12202,58542,58588,'OP_SatMsg',189,1),(12203,58542,58588,'OP_SavageBarInitMsg',578,1),(12204,58542,58588,'OP_SelectZoneTeleporterDestinatio',354,1),(12205,58542,58588,'OP_SendLatestRequestMsg',97,1),(12206,58542,58588,'OP_ServerPlayCharacterReplyMsg',24,1),(12207,58542,58588,'OP_ServerPlayCharacterRequestMsg',23,1),(12208,58542,58588,'OP_SetInstanceDisplayNameMsg',440,1),(12209,58542,58588,'OP_SetRemoteCmdsMsg',41,1),(12210,58542,58588,'OP_SetSocialMsg',99,1),(12211,58542,58588,'OP_ShaderCustomizationMsg',164,1),(12212,58542,58588,'OP_ShowCreateFromRecipeUIMsg',219,1),(12213,58542,58588,'OP_ShowIllusionsMsg',193,1),(12214,58542,58588,'OP_ShowItemCreationProcessUIMsg',223,1),(12215,58542,58588,'OP_ShowRecipeBookMsg',226,1),(12216,58542,58588,'OP_ShowZoneTeleporterDestinations',353,1),(12217,58542,58588,'OP_SitMsg',187,1),(12218,58542,58588,'OP_SkillInfoRequest',514,1),(12219,58542,58588,'OP_SkillInfoResponse',515,1),(12220,58542,58588,'OP_SpellGainedMsg',262,1),(12221,58542,58588,'OP_StandMsg',188,1),(12222,58542,58588,'OP_StoodMsg',190,1),(12223,58542,58588,'OP_StopItemCreationMsg',222,1),(12224,58542,58588,'OP_StoppedLootingMsg',186,1),(12225,58542,58588,'OP_StopTrackingMsg',391,1),(12226,58542,58588,'OP_SubmitCharCust',562,1),(12227,58542,58588,'OP_SupplyDepot',736,1),(12228,58542,58588,'OP_SysClient',218,1),(12229,58542,58588,'OP_TeleportWithinZoneMsg',79,1),(12230,58542,58588,'OP_TeleportWithinZoneNoReloadMsg',80,1),(12231,58542,58588,'OP_TintWidgetsMsg',170,1),(12232,58542,58588,'OP_TitleUpdateMsg',384,1),(12233,58542,58588,'OP_TrackingUpdateMsg',389,1),(12234,58542,58588,'OP_TradeskillList',705,1),(12235,58542,58588,'OP_TraitsList',728,1),(12236,58542,58588,'OP_UIEvent',527,1),(12237,58542,58588,'OP_UIResetMsg',174,1),(12238,58542,58588,'OP_UISettingsResponseMsg',173,1),(12239,58542,58588,'OP_Unknown',761,1),(12240,58542,58588,'OP_UnknownNpcMsg',373,1),(12241,58542,58588,'OP_UpdateActivePublicZonesMsg',372,1),(12242,58542,58588,'OP_UpdateCharacterSheetMsg',63,1),(12243,58542,58588,'OP_UpdateClientPredFlagsMsg',245,1),(12244,58542,58588,'OP_UpdateDebugRadiiMsg',379,1),(12245,58542,58588,'OP_UpdateGroupMemberDataMsg',388,1),(12246,58542,58588,'OP_UpdateHouseAccessDataMsg',144,1),(12247,58542,58588,'OP_UpdateHouseDataMsg',143,1),(12248,58542,58588,'OP_UpdateInventoryMsg',68,1),(12249,58542,58588,'OP_UpdateItemCreationProcessUIMsg',224,1),(12250,58542,58588,'OP_UpdateMotdMsg',208,1),(12251,58542,58588,'OP_UpdateOpportunityMsg',75,1),(12252,58542,58588,'OP_UpdatePositionMsg',39,1),(12253,58542,58588,'OP_UpdateRaidMsg',381,1),(12254,58542,58588,'OP_UpdateRecipeBookMsg',70,1),(12255,58542,58588,'OP_UpdateSkillBookMsg',73,1),(12256,58542,58588,'OP_UpdateSkillsMsg',74,1),(12257,58542,58588,'OP_UpdateSpellBookMsg',66,1),(12258,58542,58588,'OP_UpdateTargetLocMsg',62,1),(12259,58542,58588,'OP_UpdateTargetMsg',61,1),(12260,58542,58588,'OP_UpdateTitleCmd',494,1),(12261,58542,58588,'OP_UseAdornment',716,1),(12262,58542,58588,'OP_VideoUploaded',577,1),(12263,58542,58588,'OP_VoiceChatChannel',520,1),(12264,58542,58588,'OP_VoiceChatServer',732,1),(12265,58542,58588,'OP_WaypointReplyMsg',349,1),(12266,58542,58588,'OP_WaypointRequestMsg',348,1),(12267,58542,58588,'OP_WaypointSelectMsg',350,1),(12268,58542,58588,'OP_WaypointUpdateMsg',351,1),(12269,58542,58588,'OP_Weakness',581,1),(12270,58542,58588,'OP_WhoQueryReplyMsg',54,1),(12271,58542,58588,'OP_WhoQueryRequestMsg',53,1),(12272,58542,58588,'OP_WorldDataChangeMsg',410,1),(12273,58542,58588,'OP_WorldDataUpdateMsg',237,1),(12274,58542,58588,'OP_WorldListMsg',8,1),(12275,58542,58588,'OP_WorldPingMsg',399,1),(12276,58542,58588,'OP_WorldShutdownUpdateMsg',403,1),(12277,58542,58588,'OP_WorldStatusChangeMsg',6,1),(12278,58542,58588,'OP_WorldTravelAvail',570,1),(12279,58542,58588,'OP_WSAcctLockStatusMsg',205,1),(12280,58542,58588,'OP_WSCreateCharacterReplyMsg',14,1),(12281,58542,58588,'OP_WSCreateCharacterRequestMsg',13,1),(12282,58542,58588,'OP_WSLoginRequestMsg',2,1),(12283,58542,58588,'OP_WSServerHideMsg',366,1),(12284,58542,58588,'OP_WSServerLockMsg',364,1),(12285,58542,58588,'OP_WSStatusReplyMsg',5,1),(12286,58542,58588,'OP_ZoneBgInstanceList',566,1),(12287,58542,58588,'OP_ZoneInfoMsg',33,1),(12288,58542,58588,'OP_ZoneInstanceCreateReplyMsg',30,1),(12289,58542,58588,'OP_ZoneInstanceDestroyedMsg',31,1),(12290,58542,58588,'OP_ZoneMOTDMsg',45,1),(12291,58542,58588,'OP_ZonesStatusMsg',103,1),(12292,58542,58588,'OP_ZonesStatusRequestMsg',102,1),(12293,58542,58588,'OP_ZoneToFriendReplyMsg',284,1),(12294,58542,58588,'OP_ZoneToFriendRequestMsg',283,1),(12761,58542,58588,'OP_SOEAllAccess',604,1),(13188,58604,58604,'OP_AchievementUpdateMsg',745,1),(13189,58604,58604,'OP_AddSocialStructureStandingMsg',249,1),(13190,58604,58604,'OP_AdvancementRequestMsg',394,1),(13191,58604,58604,'OP_AdventureList',488,1),(13192,58604,58604,'OP_AFKUpdateMsg',370,1),(13193,58604,58604,'OP_AfterInvSpellUpdate',69,1),(13194,58604,58604,'OP_AllCharactersDescReplyMsg',10,1),(13195,58604,58604,'OP_AllCharactersDescRequestMsg',9,1),(13196,58604,58604,'OP_AllWSDescRequestMsg',7,1),(13197,58604,58604,'OP_AnonUpdateMsg',371,1),(13198,58604,58604,'OP_ArenaCreate',456,1),(13199,58604,58604,'OP_ArenaGameTypesMsg',445,1),(13200,58604,58604,'OP_ArenaList',457,1),(13201,58604,58604,'OP_ArenaWindow',465,1),(13202,58604,58604,'OP_AttackAllowed',500,1),(13203,58604,58604,'OP_AttackNotAllowed',501,1),(13204,58604,58604,'OP_AuctionAbortMsg',436,1),(13205,58604,58604,'OP_AuctionCharacter',433,1),(13206,58604,58604,'OP_AuctionCharacterReply',434,1),(13207,58604,58604,'OP_AuctionCoin',431,1),(13208,58604,58604,'OP_AuctionCoinReply',432,1),(13209,58604,58604,'OP_AuctionCommitMsg',435,1),(13210,58604,58604,'OP_AuctionItem',429,1),(13211,58604,58604,'OP_AuctionItemReply',430,1),(13212,58604,58604,'OP_AuditAuctionEventMsg',446,1),(13213,58604,58604,'OP_AvatarCreatedMsg',46,1),(13214,58604,58604,'OP_AvatarDestroyedMsg',47,1),(13215,58604,58604,'OP_AvatarUpdateMsg',360,1),(13216,58604,58604,'OP_BadLanguageFilter',519,1),(13217,58604,58604,'OP_BagOptions',502,1),(13218,58604,58604,'OP_BeginItemCreationMsg',221,1),(13219,58604,58604,'OP_BeginTrackingMsg',390,1),(13220,58604,58604,'OP_BioUpdateMsg',362,1),(13221,58604,58604,'OP_BrokerAddBag',292,1),(13222,58604,58604,'OP_BrokerRemoveBag',293,1),(13223,58604,58604,'OP_BrokerSellList',688,1),(13224,58604,58604,'OP_BuyPlayerHouseMsg',150,1),(13225,58604,58604,'OP_BuyPlayerHouseTintMsg',151,1),(13226,58604,58604,'OP_CampAbortedMsg',52,1),(13227,58604,58604,'OP_CampClientMsg',387,1),(13228,58604,58604,'OP_CampStartedMsg',51,1),(13229,58604,58604,'OP_CancelCreateFromRecipeMsg',220,1),(13230,58604,58604,'OP_CancelledFeignMsg',216,1),(13231,58604,58604,'OP_CancelMoveObjectModeMsg',163,1),(13232,58604,58604,'OP_CancelSpellCast',489,1),(13233,58604,58604,'OP_ChangeServerControlFlagMsg',246,1),(13234,58604,58604,'OP_ChangeZoneMsg',77,1),(13235,58604,58604,'OP_CharacterAchievements',744,1),(13236,58604,58604,'OP_CharacterCreatedDungeons',551,1),(13237,58604,58604,'OP_CharacterCurrency',743,1),(13238,58604,58604,'OP_CharacterHousingList',507,1),(13239,58604,58604,'OP_CharacterLinkdeadMsg',414,1),(13240,58604,58604,'OP_CharacterMerc',65,1),(13241,58604,58604,'OP_CharacterMounts',584,1),(13242,58604,58604,'OP_CharacterPet',64,1),(13243,58604,58604,'OP_CharNameChangedMsg',352,1),(13244,58604,58604,'OP_CharRenamed',709,1),(13245,58604,58604,'OP_CharTransferCommitReplyMsg',422,1),(13246,58604,58604,'OP_CharTransferCommitRequestMsg',420,1),(13247,58604,58604,'OP_CharTransferReplyMsg',418,1),(13248,58604,58604,'OP_CharTransferRequestMsg',417,1),(13249,58604,58604,'OP_CharTransferRollbackReplyMsg',421,1),(13250,58604,58604,'OP_CharTransferRollbackRequestMsg',419,1),(13251,58604,58604,'OP_CharTransferStartReplyMsg',416,1),(13252,58604,58604,'OP_CharTransferStartRequestMsg',415,1),(13253,58604,58604,'OP_CharTransferValidateReplyMsg',438,1),(13254,58604,58604,'OP_CharTransferValidateRequestMsg',437,1),(13255,58604,58604,'OP_ChatCreateChannelMsg',285,1),(13256,58604,58604,'OP_ChatFiltersMsg',335,1),(13257,58604,58604,'OP_ChatJoinChannelMsg',286,1),(13258,58604,58604,'OP_ChatLeaveChannelMsg',288,1),(13259,58604,58604,'OP_ChatRelationshipUpdateMsg',184,1),(13260,58604,58604,'OP_ChatSendFriendsMsg',295,1),(13261,58604,58604,'OP_ChatSendIgnoresMsg',296,1),(13262,58604,58604,'OP_ChatTellChannelMsg',289,1),(13263,58604,58604,'OP_ChatTellUserMsg',290,1),(13264,58604,58604,'OP_ChatToggleFriendMsg',291,1),(13265,58604,58604,'OP_ChatToggleIgnoreMsg',294,1),(13266,58604,58604,'OP_ChatWhoChannelMsg',287,1),(13267,58604,58604,'OP_ClearDataMsg',98,1),(13268,58604,58604,'OP_ClearForLandingMsg',491,1),(13269,58604,58604,'OP_ClearForTakeOffMsg',191,1),(13270,58604,58604,'OP_ClientCmdMsg',58,1),(13271,58604,58604,'OP_ClientFellMsg',385,1),(13272,58604,58604,'OP_ClientIdleBeginMsg',405,1),(13273,58604,58604,'OP_ClientIdleEndMsg',406,1),(13274,58604,58604,'OP_ClientInDeathRegionMsg',386,1),(13275,58604,58604,'OP_ClientTeleportRequestMsg',78,1),(13276,58604,58604,'OP_ClientTeleportToLocationMsg',244,1),(13277,58604,58604,'OP_CloseGroupInviteWindowMsg',397,1),(13278,58604,58604,'OP_CollectAllHouseItemsMsg',152,1),(13279,58604,58604,'OP_ConsignItemRequestMsg',126,1),(13280,58604,58604,'OP_ConsignItemResponseMsg',127,1),(13281,58604,58604,'OP_ConsignmentCloseStoreMsg',125,1),(13282,58604,58604,'OP_ConsignRemoveItemsMsg',378,1),(13283,58604,58604,'OP_ConsignViewCreateMsg',375,1),(13284,58604,58604,'OP_ConsignViewGetPageMsg',376,1),(13285,58604,58604,'OP_ConsignViewReleaseMsg',377,1),(13286,58604,58604,'OP_ConsignViewSortMsg',383,1),(13287,58604,58604,'OP_CorruptedClientMsg',409,1),(13288,58604,58604,'OP_CreateBoatTransportsMsg',250,1),(13289,58604,58604,'OP_CreateCharacterDungeon',547,1),(13290,58604,58604,'OP_CreateCharacterReplyMsg',12,1),(13291,58604,58604,'OP_CreateCharacterRequestMsg',11,1),(13292,58604,58604,'OP_CreateCharFromCBBReplyMsg',426,1),(13293,58604,58604,'OP_CreateCharFromCBBRequestMsg',425,1),(13294,58604,58604,'OP_CreateGuildReplyMsg',120,1),(13295,58604,58604,'OP_CreateGuildRequestMsg',119,1),(13296,58604,58604,'OP_CreateZoneInstanceMsg',29,1),(13297,58604,58604,'OP_CsCategoryRequestMsg',367,1),(13298,58604,58604,'OP_CsCategoryResponseMsg',368,1),(13299,58604,58604,'OP_CSTicketAddCommentMsg',234,1),(13300,58604,58604,'OP_CSTicketChangeNotificationMsg',236,1),(13301,58604,58604,'OP_CSTicketCommentRequestMsg',231,1),(13302,58604,58604,'OP_CSTicketCommentResponseMsg',232,1),(13303,58604,58604,'OP_CSTicketCreateMsg',233,1),(13304,58604,58604,'OP_CSTicketDeleteMsg',235,1),(13305,58604,58604,'OP_CSTicketHeaderRequestMsg',229,1),(13306,58604,58604,'OP_CSTicketInfoMsg',230,1),(13307,58604,58604,'OP_CSToolAccessResponseMsg',388,1),(13308,58604,58604,'OP_CSToolsRequestMsg',247,1),(13309,58604,58604,'OP_CSToolsResponseMsg',248,1),(13310,58604,58604,'OP_CurrentPet',485,1),(13311,58604,58604,'OP_CustomizationPurchaseRequestMs',167,1),(13312,58604,58604,'OP_CustomizationReplyMsg',169,1),(13313,58604,58604,'OP_CustomizationSetRequestMsg',168,1),(13314,58604,58604,'OP_CustomizeHouseDisplay',734,1),(13315,58604,58604,'OP_DailyObjectives',597,1),(13316,58604,58604,'OP_DefaultGroupOptionsMsg',198,1),(13317,58604,58604,'OP_DefaultGroupOptionsRequestMsg',197,1),(13318,58604,58604,'OP_DeleteCharacterReplyMsg',17,1),(13319,58604,58604,'OP_DeleteCharacterRequestMsg',16,1),(13320,58604,58604,'OP_DeleteGuildMsg',123,1),(13321,58604,58604,'OP_DestUpdateReq',210,1),(13322,58604,58604,'OP_DialogCloseMsg',110,1),(13323,58604,58604,'OP_DialogSelectMsg',109,1),(13324,58604,58604,'OP_DispatchClientCmdMsg',60,1),(13325,58604,58604,'OP_DispatchESMsg',59,1),(13326,58604,58604,'OP_DispatchMsg',451,1),(13327,58604,58604,'OP_DispatchSpellCmdMsg',179,1),(13328,58604,58604,'OP_DisplayDebugNLLPointsMsg',254,1),(13329,58604,58604,'OP_DisplayEventMsg',452,1),(13330,58604,58604,'OP_DisplayExchangeScreenMsg',444,1),(13331,58604,58604,'OP_DisplayGroupOptionsScreenMsg',200,1),(13332,58604,58604,'OP_DisplayInnVisitScreenMsg',202,1),(13333,58604,58604,'OP_DisplayMailScreenMsg',404,1),(13334,58604,58604,'OP_DisplayTSEventReactionMsg',225,1),(13335,58604,58604,'OP_DisplayWarningMsg',265,1),(13336,58604,58604,'OP_DoneLoadingEntityResourcesMsg',36,1),(13337,58604,58604,'OP_DoneLoadingZoneResourcesMsg',34,1),(13338,58604,58604,'OP_DoneSendingInitialEntitiesMsg',35,1),(13339,58604,58604,'OP_DressingRoom',510,1),(13340,58604,58604,'OP_DumpSchedulerMsg',203,1),(13341,58604,58604,'OP_DungeonMakerEnter',548,1),(13342,58604,58604,'OP_DungeonMakerItemRequest',550,1),(13343,58604,58604,'OP_DungeonMakerItemResponse',582,1),(13344,58604,58604,'OP_DungeonMakerToolboxList',552,1),(13345,58604,58604,'OP_DungeonMakerUnknown',553,1),(13346,58604,58604,'OP_DungeonMakerUnknown1',554,1),(13347,58604,58604,'OP_DungeonPlayAsAvatarList',748,1),(13348,58604,58604,'OP_DungeonPlayAsAvatarSelected',749,1),(13349,58604,58604,'OP_EncounterBrokenMsg',263,1),(13350,58604,58604,'OP_EnterHouseMsg',154,1),(13351,58604,58604,'OP_EnterMoveObjectModeMsg',161,1),(13352,58604,58604,'OP_EntityVerbsReplyMsg',181,1),(13353,58604,58604,'OP_EntityVerbsRequestMsg',180,1),(13354,58604,58604,'OP_EntityVerbsVerbMsg',182,1),(13355,58604,58604,'OP_EqArenaResultsCmd',699,1),(13356,58604,58604,'OP_EqAvailWorldChannelsCmd',686,1),(13357,58604,58604,'OP_EqBetaCopyRequest',606,1),(13358,58604,58604,'OP_EqCannedEmoteCmd',628,1),(13359,58604,58604,'OP_EqChatChannelUpdateCmd',684,1),(13360,58604,58604,'OP_EqChoiceWinCmd',665,1),(13361,58604,58604,'OP_EqCloseWindowCmd',657,1),(13362,58604,58604,'OP_EqCollectionFilterCmd',644,1),(13363,58604,58604,'OP_EqCollectionItemCmd',645,1),(13364,58604,58604,'OP_EqCollectionUpdateCmd',643,1),(13365,58604,58604,'OP_EqConsignmentItemsCmd',689,1),(13366,58604,58604,'OP_EqCreateGhostCmd',610,1),(13367,58604,58604,'OP_EqCreateListBoxCmd',625,1),(13368,58604,58604,'OP_EqCreateSignWidgetCmd',612,1),(13369,58604,58604,'OP_EqCreateWidgetCmd',611,1),(13370,58604,58604,'OP_EqDebugPVDCmd',678,1),(13371,58604,58604,'OP_EqDestroyGhostCmd',613,1),(13372,58604,58604,'OP_EqDialogCloseCmd',641,1),(13373,58604,58604,'OP_EqDialogOpenCmd',640,1),(13374,58604,58604,'OP_EqDisplaySpellFailCmd',661,1),(13375,58604,58604,'OP_EqDisplayTextCmd',609,1),(13376,58604,58604,'OP_EqDrawablePathGraphCmd',639,1),(13377,58604,58604,'OP_EqEnableGameEventCmd',671,1),(13378,58604,58604,'OP_EqEnableWindowCmd',673,1),(13379,58604,58604,'OP_EqExamineInfoCmd',656,1),(13380,58604,58604,'OP_EqFactionUpdateCmd',642,1),(13381,58604,58604,'OP_EqFlashWindowCmd',674,1),(13382,58604,58604,'OP_EqGetProbsCmd',682,1),(13383,58604,58604,'OP_EqGroupMemberRemovedCmd',635,1),(13384,58604,58604,'OP_EqGuildBankEventActionCmd',700,1),(13385,58604,58604,'OP_EqGuildBankExamineInfoCmd',701,1),(13386,58604,58604,'OP_EqHearChainEffectCmd',636,1),(13387,58604,58604,'OP_EqHearChatCmd',608,1),(13388,58604,58604,'OP_EqHearCombatCmd',617,1),(13389,58604,58604,'OP_EqHearConsiderCmd',623,1),(13390,58604,58604,'OP_EqHearDeathCmd',634,1),(13391,58604,58604,'OP_EQHearDispellCmd',746,1),(13392,58604,58604,'OP_EqHearDrowningCmd',633,1),(13393,58604,58604,'OP_EqHearHealCmd',683,1),(13394,58604,58604,'OP_EqHearPlayFlavorCmd',676,1),(13395,58604,58604,'OP_EQHearProcCmd',619,1),(13396,58604,58604,'OP_EQHearResEffectCmd',620,1),(13397,58604,58604,'OP_EqHearSpellCastCmd',618,1),(13398,58604,58604,'OP_EqHearSpellFizzleCmd',622,1),(13399,58604,58604,'OP_EqHearSpellInterruptCmd',621,1),(13400,58604,58604,'OP_EqHearSpellNoLandCmd',702,1),(13401,58604,58604,'OP_EQHearThreatCmd',740,1),(13402,58604,58604,'OP_EqHelpPathClearCmd',654,1),(13403,58604,58604,'OP_EqHelpPathCmd',653,1),(13404,58604,58604,'OP_EqInspectPCResultsCmd',638,1),(13405,58604,58604,'OP_EqInstructionWindowCloseCmd',668,1),(13406,58604,58604,'OP_EqInstructionWindowCmd',667,1),(13407,58604,58604,'OP_EqInstructionWindowGoalCmd',669,1),(13408,58604,58604,'OP_EqInstructionWindowTaskCmd',670,1),(13409,58604,58604,'OP_EqJunctionListCmd',659,1),(13410,58604,58604,'OP_EqMapExplorationCmd',692,1),(13411,58604,58604,'OP_EqMentoring',647,1),(13412,58604,58604,'OP_EqPlaySound3DCmd',631,1),(13413,58604,58604,'OP_EqPlaySoundCmd',630,1),(13414,58604,58604,'OP_EqPlayVoiceCmd',632,1),(13415,58604,58604,'OP_EqQuestGroupCmd',649,1),(13416,58604,58604,'OP_EqQuestionnaireCmd',680,1),(13417,58604,58604,'OP_EqQuestJournalReplyCmd',648,1),(13418,58604,58604,'OP_EqQuestJournalUpdateCmd',646,1),(13419,58604,58604,'OP_EqReceiveOfferCmd',637,1),(13420,58604,58604,'OP_EqResurrectedCmd',664,1),(13421,58604,58604,'OP_EqSetControlGhostCmd',615,1),(13422,58604,58604,'OP_EqSetDebugPathPointsCmd',626,1),(13423,58604,58604,'OP_EqSetDefaultVerbCmd',666,1),(13424,58604,58604,'OP_EqSetPOVGhostCmd',616,1),(13425,58604,58604,'OP_EqShowBookCmd',679,1),(13426,58604,58604,'OP_EqShowDeathWindowCmd',660,1),(13427,58604,58604,'OP_EqShowWindowCmd',672,1),(13428,58604,58604,'OP_EqSpellCastEndCmd',663,1),(13429,58604,58604,'OP_EqSpellCastStartCmd',662,1),(13430,58604,58604,'OP_EqSpellMoveToRangeAndRetryCmd',694,1),(13431,58604,58604,'OP_EqStartBrokerCmd',691,1),(13432,58604,58604,'OP_EqStateCmd',629,1),(13433,58604,58604,'OP_EqStoreLogCmd',693,1),(13434,58604,58604,'OP_EqUpdateBankCmd',655,1),(13435,58604,58604,'OP_EqUpdateGhostCmd',614,1),(13436,58604,58604,'OP_EqUpdateLootCmd',658,1),(13437,58604,58604,'OP_EqUpdateMerchantCmd',650,1),(13438,58604,58604,'OP_EqUpdatePlayerMailCmd',695,1),(13439,58604,58604,'OP_EqUpdatePlayerTradeCmd',652,1),(13440,58604,58604,'OP_EqUpdateSignWidgetCmd',677,1),(13441,58604,58604,'OP_EqUpdateStoreCmd',651,1),(13442,58604,58604,'OP_EqUpdateSubClassesCmd',624,1),(13443,58604,58604,'OP_EqUpdateTargetCmd',687,1),(13444,58604,58604,'OP_EqWhoChannelQueryReplyCmd',685,1),(13445,58604,58604,'OP_ESInitMsg',25,1),(13446,58604,58604,'OP_ESLoginRequestMsg',3,1),(13447,58604,58604,'OP_ESReadyForClientsMsg',26,1),(13448,58604,58604,'OP_ESStatusMsg',100,1),(13449,58604,58604,'OP_ESWeatherRequestEndMsg',105,1),(13450,58604,58604,'OP_ESWeatherRequestMsg',104,1),(13451,58604,58604,'OP_ESZoneInstanceStatusMsg',101,1),(13452,58604,58604,'OP_ExamineConsignmentRequestMsg',171,1),(13453,58604,58604,'OP_ExamineConsignmentResponseMsg',172,1),(13454,58604,58604,'OP_ExamineInfoRequestMsg',255,1),(13455,58604,58604,'OP_ExamineItemRequestMsg',195,1),(13456,58604,58604,'OP_ExitHouseMsg',155,1),(13457,58604,58604,'OP_ExpectClientAsCharacterReplyMs',22,1),(13458,58604,58604,'OP_ExpectClientAsCharacterRequest',32,1),(13459,58604,58604,'OP_ExpPurchWindow',725,1),(13460,58604,58604,'OP_FellowshipExpMsg',122,1),(13461,58604,58604,'OP_FlightPathsMsg',413,1),(13462,58604,58604,'OP_GameWorldTimeMsg',43,1),(13463,58604,58604,'OP_PaperdollImage',577,1),(13464,58604,58604,'OP_GetAuctionAssetIDMsg',441,1),(13465,58604,58604,'OP_GetAuctionAssetIDReplyMsg',442,1),(13466,58604,58604,'OP_GetAvatarAccessRequestForCSToo',393,1),(13467,58604,58604,'OP_GetCharacterSerializedReplyMsg',424,1),(13468,58604,58604,'OP_GetCharacterSerializedRequestM',423,1),(13469,58604,58604,'OP_GroupCreatedMsg',88,1),(13470,58604,58604,'OP_GroupDestroyedMsg',89,1),(13471,58604,58604,'OP_GroupLeaderChangedMsg',93,1),(13472,58604,58604,'OP_GroupMemberAddedMsg',90,1),(13473,58604,58604,'OP_GroupMemberRemovedMsg',91,1),(13474,58604,58604,'OP_GroupOptionsMsg',199,1),(13475,58604,58604,'OP_GroupRemovedFromGroupMsg',92,1),(13476,58604,58604,'OP_GroupResendOOZDataMsg',94,1),(13477,58604,58604,'OP_GroupSettingsChangedMsg',95,1),(13478,58604,58604,'OP_GuildBankActionMsg',274,1),(13479,58604,58604,'OP_GuildBankActionResponseMsg',275,1),(13480,58604,58604,'OP_GuildBankEventListMsg',279,1),(13481,58604,58604,'OP_GuildBankItemDetailsRequestMsg',276,1),(13482,58604,58604,'OP_GuildBankItemDetailsResponseMs',277,1),(13483,58604,58604,'OP_GuildBankUpdateMsg',278,1),(13484,58604,58604,'OP_GuildEventActionMsg',269,1),(13485,58604,58604,'OP_GuildEventAddMsg',268,1),(13486,58604,58604,'OP_GuildEventDetailsMsg',272,1),(13487,58604,58604,'OP_GuildEventListMsg',270,1),(13488,58604,58604,'OP_GuildEventMsg',267,1),(13489,58604,58604,'OP_GuildMembershipResponseMsg',357,1),(13490,58604,58604,'OP_GuildRecruiting',705,1),(13491,58604,58604,'OP_GuildRecruitingDetails',706,1),(13492,58604,58604,'OP_GuildRecruitingImage',707,1),(13493,58604,58604,'OP_GuildRecruitingMemberInfo',704,1),(13494,58604,58604,'OP_GuildsayMsg',121,1),(13495,58604,58604,'OP_GuildStatusUpdate',698,1),(13496,58604,58604,'OP_GuildUpdateMsg',124,1),(13497,58604,58604,'OP_HeritageMsg',10000,1),(13498,58604,58604,'OP_HideIllusionsMsg',194,1),(13499,58604,58604,'OP_HouseAccessRemoveMsg',158,1),(13500,58604,58604,'OP_HouseAccessSetMsg',157,1),(13501,58604,58604,'OP_HouseCustomizationScreenMsg',166,1),(13502,58604,58604,'OP_HouseDefaultAccessSetMsg',156,1),(13503,58604,58604,'OP_HouseDeletedRemotelyMsg',142,1),(13504,58604,58604,'OP_HouseItemsList',484,1),(13505,58604,58604,'OP_HousingDataChangedMsg',427,1),(13506,58604,58604,'OP_HousingRestoreMsg',428,1),(13507,58604,58604,'OP_InspectPlayerMsg',363,1),(13508,58604,58604,'OP_InspectPlayerRequestMsg',450,1),(13509,58604,58604,'OP_InviteRequestMsg',447,1),(13510,58604,58604,'OP_InviteResponseMsg',448,1),(13511,58604,58604,'OP_InviteTargetResponseMsg',449,1),(13512,58604,58604,'OP_JoinGuildNotifyMsg',359,1),(13513,58604,58604,'OP_JournalQuestStoryline',747,1),(13514,58604,58604,'OP_KeymapDataMsg',177,1),(13515,58604,58604,'OP_KeymapLoadMsg',175,1),(13516,58604,58604,'OP_KeymapNoneMsg',176,1),(13517,58604,58604,'OP_KeymapSaveMsg',178,1),(13518,58604,58604,'OP_KnowledgebaseRequestMsg',227,1),(13519,58604,58604,'OP_KnowledgebaseResponseMsg',228,1),(13520,58604,58604,'OP_KnowledgeWindowSlotMappingMsg',369,1),(13521,58604,58604,'OP_KnownLanguagesMsg',238,1),(13522,58604,58604,'OP_Launchpad',575,1),(13523,58604,58604,'OP_LeaveGuildNotifyMsg',358,1),(13524,58604,58604,'OP_LevelChangedMsg',261,1),(13525,58604,58604,'OP_LFGGroupSearch',504,1),(13526,58604,58604,'OP_LFGUpdateMsg',518,1),(13527,58604,58604,'OP_LikeOption',136,1),(13528,58604,58604,'OP_LoadCalendarEvents',578,1),(13529,58604,58604,'OP_LoadWelcomeWindow',560,1),(13530,58604,58604,'OP_LoginByNumRequestMsg',1,1),(13531,58604,58604,'OP_LoginReplyMsg',4,1),(13532,58604,58604,'OP_LoginRequestMsg',0,1),(13533,58604,58604,'OP_LootItemsRequestMsg',185,1),(13534,58604,58604,'OP_Lottery',703,1),(13535,58604,58604,'OP_LSCheckAcctLockMsg',204,1),(13536,58604,58604,'OP_LsClientAlertlogReplyMsg',242,1),(13537,58604,58604,'OP_LsClientBaselogReplyMsg',240,1),(13538,58604,58604,'OP_LsClientCrashlogReplyMsg',241,1),(13539,58604,58604,'OP_LsClientVerifylogReplyMsg',243,1),(13540,58604,58604,'OP_LsRequestClientCrashLogMsg',239,1),(13541,58604,58604,'OP_LSServerLockMsg',365,1),(13542,58604,58604,'OP_MacroInitMsg',258,1),(13543,58604,58604,'OP_MacroUpdateMsg',259,1),(13544,58604,58604,'OP_MailCommitSendMessageMsg',344,1),(13545,58604,58604,'OP_MailDeleteMessageMsg',340,1),(13546,58604,58604,'OP_MailEventNotificationMsg',411,1),(13547,58604,58604,'OP_MailGetHeadersReplyMsg',341,1),(13548,58604,58604,'OP_MailGetMessageMsg',338,1),(13549,58604,58604,'OP_MailGetMessageReplyMsg',342,1),(13550,58604,58604,'OP_MailRemoveAttachFromMailMsg',346,1),(13551,58604,58604,'OP_MailSendMessageMsg',339,1),(13552,58604,58604,'OP_MailSendMessageReplyMsg',343,1),(13553,58604,58604,'OP_MailSendSystemMessageMsg',345,1),(13554,58604,58604,'OP_MakeGroupLeaderMsg',87,1),(13555,58604,58604,'OP_MapFogDataInitMsg',395,1),(13556,58604,58604,'OP_MapFogDataUpdateMsg',396,1),(13557,58604,58604,'OP_MapRequest',521,1),(13558,58604,58604,'OP_MarketAddFundsReply',529,1),(13559,58604,58604,'OP_MarketAddFundsRequest',528,1),(13560,58604,58604,'OP_MarketFundsUpdate',526,1),(13561,58604,58604,'OP_MarketPlaceItems',537,1),(13562,58604,58604,'OP_MarketPlacePrices',532,1),(13563,58604,58604,'OP_MarketPurchase',531,1),(13564,58604,58604,'OP_MentorPopup',558,1),(13565,58604,58604,'OP_MercHireWindow',750,1),(13566,58604,58604,'OP_MercUnknown',751,1),(13567,58604,58604,'OP_MigrateBoatTransportMsg',252,1),(13568,58604,58604,'OP_MigrateBoatTransportReplyMsg',253,1),(13569,58604,58604,'OP_MigrateClientToZoneReplyMsg',82,1),(13570,58604,58604,'OP_MigrateClientToZoneRequestMsg',81,1),(13571,58604,58604,'OP_ModifyGuildMsg',266,1),(13572,58604,58604,'OP_MonitorCharacterListMsg',56,1),(13573,58604,58604,'OP_MonitorCharacterListRequestMsg',57,1),(13574,58604,58604,'OP_MonitorReplyMsg',55,1),(13575,58604,58604,'OP_MOTDMsg',44,1),(13576,58604,58604,'OP_MoveableObjectPlacementCriteri',160,1),(13577,58604,58604,'OP_MoveLogUpdateMsg',400,1),(13578,58604,58604,'OP_NotifyApprenticeStoppedMentori',408,1),(13579,58604,58604,'OP_OfferQuestMsg',401,1),(13580,58604,58604,'OP_OnscreenMsgMsg',264,1),(13581,58604,58604,'OP_OpenCharCust',561,1),(13582,58604,58604,'OP_OutOfZoneMemberDataMsg',96,1),(13583,58604,58604,'OP_PayHouseUpkeepMsg',159,1),(13584,58604,58604,'OP_PerformCameraShakeMsg',214,1),(13585,58604,58604,'OP_PerformPlayerKnockbackMsg',213,1),(13586,58604,58604,'OP_PetOptions',201,1),(13587,58604,58604,'OP_PetOptionsResponse',581,1),(13588,58604,58604,'OP_PlayCharacterReplyMsg',19,1),(13589,58604,58604,'OP_PlayCharacterRequestMsg',18,1),(13590,58604,58604,'OP_PlayerHouseAccessUpdateMsg',147,1),(13591,58604,58604,'OP_PlayerHouseBaseScreenMsg',145,1),(13592,58604,58604,'OP_PlayerHouseCloseUIMsg',149,1),(13593,58604,58604,'OP_PlayerHouseDisplayStatusMsg',148,1),(13594,58604,58604,'OP_PlayerHousePurchaseScreenMsg',146,1),(13595,58604,58604,'OP_PlayerMadeInstances',140,1),(13596,58604,58604,'OP_PlayerMadeInstancesScreen',139,1),(13597,58604,58604,'OP_PlayerPollAnswer',557,1),(13598,58604,58604,'OP_PlayerPollPopup',556,1),(13599,58604,58604,'OP_PlayLon',511,1),(13600,58604,58604,'OP_PointOfInterest',729,1),(13601,58604,58604,'OP_PointOfInterest2',730,1),(13602,58604,58604,'OP_PopulateSkillMapsMsg',215,1),(13603,58604,58604,'OP_PositionBoatTransportMsg',251,1),(13604,58604,58604,'OP_PositionMoveableObject',162,1),(13605,58604,58604,'OP_PostPossessionMsg',454,1),(13606,58604,58604,'OP_PredictionUpdateMsg',37,1),(13607,58604,58604,'OP_PrePossessionMsg',453,1),(13608,58604,58604,'OP_PromoFlagsDetailsMsg',374,1),(13609,58604,58604,'OP_PublishHouse',138,1),(13610,58604,58604,'OP_PurchaseConsignmentLoreCheckRe',407,1),(13611,58604,58604,'OP_PurchaseConsignmentRequestMsg',128,1),(13612,58604,58604,'OP_QueAllBgSolo',564,1),(13613,58604,58604,'OP_QuestionnaireMsg',260,1),(13614,58604,58604,'OP_QuestJournalInspectMsg',114,1),(13615,58604,58604,'OP_QuestJournalOpenMsg',113,1),(13616,58604,58604,'OP_QuestJournalSetVisibleMsg',115,1),(13617,58604,58604,'OP_QuestJournalWaypointMsg',116,1),(13618,58604,58604,'OP_QuestReward',320,1),(13619,58604,58604,'OP_QuickbarInitMsg',256,1),(13620,58604,58604,'OP_QuickbarUpdateMsg',257,1),(13621,58604,58604,'OP_RaceRestrictionMsg',439,1),(13622,58604,58604,'OP_ReadBookPageMsg',196,1),(13623,58604,58604,'OP_ReadyForTakeOffMsg',192,1),(13624,58604,58604,'OP_ReadyToZoneMsg',84,1),(13625,58604,58604,'OP_RecipeBook',538,1),(13626,58604,58604,'OP_RecipeDetailsMsg',72,1),(13627,58604,58604,'OP_RecipeList',741,1),(13628,58604,58604,'OP_RecipeListUnknown',593,1),(13629,58604,58604,'OP_RelinquishHouseMsg',153,1),(13630,58604,58604,'OP_ReloadLocalizedTxtMsg',355,1),(13631,58604,58604,'OP_RemoteCmdMsg',42,1),(13632,58604,58604,'OP_RemoveClientFromGroupMsg',85,1),(13633,58604,58604,'OP_RemoveConcentrationMsg',112,1),(13634,58604,58604,'OP_RemoveGroupFromGroupMsg',86,1),(13635,58604,58604,'OP_RemoveSpellEffectMsg',111,1),(13636,58604,58604,'OP_RenameGuildMsg',282,1),(13637,58604,58604,'OP_ReplaceableSubMeshesMsg',165,1),(13638,58604,58604,'OP_ReportMsg',380,1),(13639,58604,58604,'OP_RequestCampMsg',50,1),(13640,58604,58604,'OP_RequestGuildBankEventDetailsMs',280,1),(13641,58604,58604,'OP_RequestGuildEventDetailsMsg',271,1),(13642,58604,58604,'OP_RequestGuildInfoMsg',273,1),(13643,58604,58604,'OP_RequestGuildMembershipMsg',356,1),(13644,58604,58604,'OP_RequestHelpRepathMsg',206,1),(13645,58604,58604,'OP_RequestRecipeDetailsMsg',71,1),(13646,58604,58604,'OP_RequestTargetLocMsg',207,1),(13647,58604,58604,'OP_Research',742,1),(13648,58604,58604,'OP_ResendWorldChannelsMsg',443,1),(13649,58604,58604,'OP_ReskinCharacterRequestMsg',15,1),(13650,58604,58604,'OP_RestartZoneMsg',412,1),(13651,58604,58604,'OP_RewardPackMsg',281,1),(13652,58604,58604,'OP_SatMsg',189,1),(13653,58604,58604,'OP_SavageBarInitMsg',580,1),(13654,58604,58604,'OP_SelectZoneTeleporterDestinatio',354,1),(13655,58604,58604,'OP_SendLatestRequestMsg',97,1),(13656,58604,58604,'OP_ServerPlayCharacterReplyMsg',24,1),(13657,58604,58604,'OP_ServerPlayCharacterRequestMsg',23,1),(13658,58604,58604,'OP_SetInstanceDisplayNameMsg',440,1),(13659,58604,58604,'OP_SetRemoteCmdsMsg',41,1),(13660,58604,58604,'OP_SetSocialMsg',99,1),(13661,58604,58604,'OP_ShaderCustomizationMsg',164,1),(13662,58604,58604,'OP_ShowCreateFromRecipeUIMsg',219,1),(13663,58604,58604,'OP_ShowIllusionsMsg',193,1),(13664,58604,58604,'OP_ShowItemCreationProcessUIMsg',223,1),(13665,58604,58604,'OP_ShowRecipeBookMsg',226,1),(13666,58604,58604,'OP_ShowZoneTeleporterDestinations',353,1),(13667,58604,58604,'OP_SitMsg',187,1),(13668,58604,58604,'OP_SkillInfoRequest',514,1),(13669,58604,58604,'OP_SkillInfoResponse',515,1),(13670,58604,58604,'OP_SOEAllAccess',607,1),(13671,58604,58604,'OP_SpellGainedMsg',262,1),(13672,58604,58604,'OP_StandMsg',188,1),(13673,58604,58604,'OP_StoodMsg',190,1),(13674,58604,58604,'OP_StopItemCreationMsg',222,1),(13675,58604,58604,'OP_StoppedLootingMsg',186,1),(13676,58604,58604,'OP_StopTrackingMsg',391,1),(13677,58604,58604,'OP_SubmitCharCust',562,1),(13678,58604,58604,'OP_SupplyDepot',739,1),(13679,58604,58604,'OP_SysClient',218,1),(13680,58604,58604,'OP_TeleportWithinZoneMsg',79,1),(13681,58604,58604,'OP_TeleportWithinZoneNoReloadMsg',80,1),(13682,58604,58604,'OP_TintWidgetsMsg',170,1),(13683,58604,58604,'OP_TitleUpdateMsg',384,1),(13684,58604,58604,'OP_TrackingUpdateMsg',389,1),(13685,58604,58604,'OP_TradeskillList',708,1),(13686,58604,58604,'OP_TraitsList',731,1),(13687,58604,58604,'OP_UIEvent',527,1),(13688,58604,58604,'OP_UIResetMsg',174,1),(13689,58604,58604,'OP_UISettingsResponseMsg',173,1),(13690,58604,58604,'OP_Unknown',764,1),(13691,58604,58604,'OP_UnknownNpcMsg',373,1),(13692,58604,58604,'OP_UpdateActivePublicZonesMsg',372,1),(13693,58604,58604,'OP_UpdateCharacterSheetMsg',63,1),(13694,58604,58604,'OP_UpdateClientPredFlagsMsg',245,1),(13695,58604,58604,'OP_UpdateDebugRadiiMsg',379,1),(13696,58604,58604,'OP_UpdateGroupMemberDataMsg',388,1),(13697,58604,58604,'OP_UpdateHouseAccessDataMsg',144,1),(13698,58604,58604,'OP_UpdateHouseDataMsg',143,1),(13699,58604,58604,'OP_UpdateInventoryMsg',68,1),(13700,58604,58604,'OP_UpdateItemCreationProcessUIMsg',224,1),(13701,58604,58604,'OP_UpdateMotdMsg',208,1),(13702,58604,58604,'OP_UpdateOpportunityMsg',75,1),(13703,58604,58604,'OP_UpdatePositionMsg',39,1),(13704,58604,58604,'OP_UpdateRaidMsg',381,1),(13705,58604,58604,'OP_UpdateRecipeBookMsg',70,1),(13706,58604,58604,'OP_UpdateSkillBookMsg',73,1),(13707,58604,58604,'OP_UpdateSkillsMsg',74,1),(13708,58604,58604,'OP_UpdateSpellBookMsg',66,1),(13709,58604,58604,'OP_UpdateTargetLocMsg',62,1),(13710,58604,58604,'OP_UpdateTargetMsg',61,1),(13711,58604,58604,'OP_UpdateTitleCmd',494,1),(13712,58604,58604,'OP_UseAdornment',719,1),(13713,58604,58604,'OP_VideoUploaded',579,1),(13714,58604,58604,'OP_VoiceChatChannel',520,1),(13715,58604,58604,'OP_VoiceChatServer',735,1),(13716,58604,58604,'OP_WaypointReplyMsg',349,1),(13717,58604,58604,'OP_WaypointRequestMsg',348,1),(13718,58604,58604,'OP_WaypointSelectMsg',350,1),(13719,58604,58604,'OP_WaypointUpdateMsg',351,1),(13720,58604,58604,'OP_Weakness',583,1),(13721,58604,58604,'OP_WhoQueryReplyMsg',54,1),(13722,58604,58604,'OP_WhoQueryRequestMsg',53,1),(13723,58604,58604,'OP_WorldDataChangeMsg',410,1),(13724,58604,58604,'OP_WorldDataUpdateMsg',237,1),(13725,58604,58604,'OP_WorldListMsg',8,1),(13726,58604,58604,'OP_WorldPingMsg',399,1),(13727,58604,58604,'OP_WorldShutdownUpdateMsg',403,1),(13728,58604,58604,'OP_WorldStatusChangeMsg',6,1),(13729,58604,58604,'OP_WorldTravelAvail',572,1),(13730,58604,58604,'OP_WSAcctLockStatusMsg',205,1),(13731,58604,58604,'OP_WSCreateCharacterReplyMsg',14,1),(13732,58604,58604,'OP_WSCreateCharacterRequestMsg',13,1),(13733,58604,58604,'OP_WSLoginRequestMsg',2,1),(13734,58604,58604,'OP_WSServerHideMsg',366,1),(13735,58604,58604,'OP_WSServerLockMsg',364,1),(13736,58604,58604,'OP_WSStatusReplyMsg',5,1),(13737,58604,58604,'OP_ZoneBgInstanceList',568,1),(13738,58604,58604,'OP_ZoneInfoMsg',33,1),(13739,58604,58604,'OP_ZoneInstanceCreateReplyMsg',30,1),(13740,58604,58604,'OP_ZoneInstanceDestroyedMsg',31,1),(13741,58604,58604,'OP_ZoneMOTDMsg',45,1),(13742,58604,58604,'OP_ZonesStatusMsg',103,1),(13743,58604,58604,'OP_ZonesStatusRequestMsg',102,1),(13744,58604,58604,'OP_ZoneToFriendReplyMsg',284,1),(13745,58604,58604,'OP_ZoneToFriendRequestMsg',283,1),(13746,58647,58647,'OP_AchievementUpdateMsg',746,1),(13747,58647,58647,'OP_AddSocialStructureStandingMsg',249,1),(13748,58647,58647,'OP_AdvancementRequestMsg',394,1),(13749,58647,58647,'OP_AdventureList',488,1),(13750,58647,58647,'OP_AFKUpdateMsg',370,1),(13751,58647,58647,'OP_AfterInvSpellUpdate',69,1),(13752,58647,58647,'OP_AllCharactersDescReplyMsg',10,1),(13753,58647,58647,'OP_AllCharactersDescRequestMsg',9,1),(13754,58647,58647,'OP_AllWSDescRequestMsg',7,1),(13755,58647,58647,'OP_AnonUpdateMsg',371,1),(13756,58647,58647,'OP_ArenaCreate',456,1),(13757,58647,58647,'OP_ArenaGameTypesMsg',445,1),(13758,58647,58647,'OP_ArenaList',457,1),(13759,58647,58647,'OP_ArenaWindow',465,1),(13760,58647,58647,'OP_AttackAllowed',500,1),(13761,58647,58647,'OP_AttackNotAllowed',501,1),(13762,58647,58647,'OP_AuctionAbortMsg',436,1),(13763,58647,58647,'OP_AuctionCharacter',433,1),(13764,58647,58647,'OP_AuctionCharacterReply',434,1),(13765,58647,58647,'OP_AuctionCoin',431,1),(13766,58647,58647,'OP_AuctionCoinReply',432,1),(13767,58647,58647,'OP_AuctionCommitMsg',435,1),(13768,58647,58647,'OP_AuctionItem',429,1),(13769,58647,58647,'OP_AuctionItemReply',430,1),(13770,58647,58647,'OP_AuditAuctionEventMsg',446,1),(13771,58647,58647,'OP_AvatarCreatedMsg',46,1),(13772,58647,58647,'OP_AvatarDestroyedMsg',47,1),(13773,58647,58647,'OP_AvatarUpdateMsg',360,1),(13774,58647,58647,'OP_BadLanguageFilter',519,1),(13775,58647,58647,'OP_BagOptions',502,1),(13776,58647,58647,'OP_BeginItemCreationMsg',221,1),(13777,58647,58647,'OP_BeginTrackingMsg',390,1),(13778,58647,58647,'OP_BioUpdateMsg',362,1),(13779,58647,58647,'OP_BrokerAddBag',292,1),(13780,58647,58647,'OP_BrokerRemoveBag',293,1),(13781,58647,58647,'OP_BrokerSellList',689,1),(13782,58647,58647,'OP_BuyPlayerHouseMsg',150,1),(13783,58647,58647,'OP_BuyPlayerHouseTintMsg',151,1),(13784,58647,58647,'OP_CampAbortedMsg',52,1),(13785,58647,58647,'OP_CampClientMsg',387,1),(13786,58647,58647,'OP_CampStartedMsg',51,1),(13787,58647,58647,'OP_CancelCreateFromRecipeMsg',220,1),(13788,58647,58647,'OP_CancelledFeignMsg',216,1),(13789,58647,58647,'OP_CancelMoveObjectModeMsg',163,1),(13790,58647,58647,'OP_CancelSpellCast',489,1),(13791,58647,58647,'OP_ChangeServerControlFlagMsg',246,1),(13792,58647,58647,'OP_ChangeZoneMsg',77,1),(13793,58647,58647,'OP_CharacterAchievements',745,1),(13794,58647,58647,'OP_CharacterCreatedDungeons',551,1),(13795,58647,58647,'OP_CharacterCurrency',744,1),(13796,58647,58647,'OP_CharacterHousingList',507,1),(13797,58647,58647,'OP_CharacterLinkdeadMsg',414,1),(13798,58647,58647,'OP_CharacterMerc',65,1),(13799,58647,58647,'OP_CharacterMounts',584,1),(13800,58647,58647,'OP_CharacterPet',64,1),(13801,58647,58647,'OP_CharNameChangedMsg',352,1),(13802,58647,58647,'OP_CharRenamed',710,1),(13803,58647,58647,'OP_CharTransferCommitReplyMsg',422,1),(13804,58647,58647,'OP_CharTransferCommitRequestMsg',420,1),(13805,58647,58647,'OP_CharTransferReplyMsg',418,1),(13806,58647,58647,'OP_CharTransferRequestMsg',417,1),(13807,58647,58647,'OP_CharTransferRollbackReplyMsg',421,1),(13808,58647,58647,'OP_CharTransferRollbackRequestMsg',419,1),(13809,58647,58647,'OP_CharTransferStartReplyMsg',416,1),(13810,58647,58647,'OP_CharTransferStartRequestMsg',415,1),(13811,58647,58647,'OP_CharTransferValidateReplyMsg',438,1),(13812,58647,58647,'OP_CharTransferValidateRequestMsg',437,1),(13813,58647,58647,'OP_ChatCreateChannelMsg',285,1),(13814,58647,58647,'OP_ChatFiltersMsg',335,1),(13815,58647,58647,'OP_ChatJoinChannelMsg',286,1),(13816,58647,58647,'OP_ChatLeaveChannelMsg',288,1),(13817,58647,58647,'OP_ChatRelationshipUpdateMsg',184,1),(13818,58647,58647,'OP_ChatSendFriendsMsg',295,1),(13819,58647,58647,'OP_ChatSendIgnoresMsg',296,1),(13820,58647,58647,'OP_ChatTellChannelMsg',289,1),(13821,58647,58647,'OP_ChatTellUserMsg',290,1),(13822,58647,58647,'OP_ChatToggleFriendMsg',291,1),(13823,58647,58647,'OP_ChatToggleIgnoreMsg',294,1),(13824,58647,58647,'OP_ChatWhoChannelMsg',287,1),(13825,58647,58647,'OP_ClearDataMsg',98,1),(13826,58647,58647,'OP_ClearForLandingMsg',491,1),(13827,58647,58647,'OP_ClearForTakeOffMsg',191,1),(13828,58647,58647,'OP_ClientCmdMsg',58,1),(13829,58647,58647,'OP_ClientFellMsg',385,1),(13830,58647,58647,'OP_ClientIdleBeginMsg',405,1),(13831,58647,58647,'OP_ClientIdleEndMsg',406,1),(13832,58647,58647,'OP_ClientInDeathRegionMsg',386,1),(13833,58647,58647,'OP_ClientTeleportRequestMsg',78,1),(13834,58647,58647,'OP_ClientTeleportToLocationMsg',244,1),(13835,58647,58647,'OP_CloseGroupInviteWindowMsg',397,1),(13836,58647,58647,'OP_CollectAllHouseItemsMsg',152,1),(13837,58647,58647,'OP_ConsignItemRequestMsg',126,1),(13838,58647,58647,'OP_ConsignItemResponseMsg',127,1),(13839,58647,58647,'OP_ConsignmentCloseStoreMsg',125,1),(13840,58647,58647,'OP_ConsignRemoveItemsMsg',378,1),(13841,58647,58647,'OP_ConsignViewCreateMsg',375,1),(13842,58647,58647,'OP_ConsignViewGetPageMsg',376,1),(13843,58647,58647,'OP_ConsignViewReleaseMsg',377,1),(13844,58647,58647,'OP_ConsignViewSortMsg',383,1),(13845,58647,58647,'OP_CorruptedClientMsg',409,1),(13846,58647,58647,'OP_CreateBoatTransportsMsg',250,1),(13847,58647,58647,'OP_CreateCharacterDungeon',547,1),(13848,58647,58647,'OP_CreateCharacterReplyMsg',12,1),(13849,58647,58647,'OP_CreateCharacterRequestMsg',11,1),(13850,58647,58647,'OP_CreateCharFromCBBReplyMsg',426,1),(13851,58647,58647,'OP_CreateCharFromCBBRequestMsg',425,1),(13852,58647,58647,'OP_CreateGuildReplyMsg',120,1),(13853,58647,58647,'OP_CreateGuildRequestMsg',119,1),(13854,58647,58647,'OP_CreateZoneInstanceMsg',29,1),(13855,58647,58647,'OP_CsCategoryRequestMsg',367,1),(13856,58647,58647,'OP_CsCategoryResponseMsg',368,1),(13857,58647,58647,'OP_CSTicketAddCommentMsg',234,1),(13858,58647,58647,'OP_CSTicketChangeNotificationMsg',236,1),(13859,58647,58647,'OP_CSTicketCommentRequestMsg',231,1),(13860,58647,58647,'OP_CSTicketCommentResponseMsg',232,1),(13861,58647,58647,'OP_CSTicketCreateMsg',233,1),(13862,58647,58647,'OP_CSTicketDeleteMsg',235,1),(13863,58647,58647,'OP_CSTicketHeaderRequestMsg',229,1),(13864,58647,58647,'OP_CSTicketInfoMsg',230,1),(13865,58647,58647,'OP_CSToolAccessResponseMsg',388,1),(13866,58647,58647,'OP_CSToolsRequestMsg',247,1),(13867,58647,58647,'OP_CSToolsResponseMsg',248,1),(13868,58647,58647,'OP_CurrentPet',485,1),(13869,58647,58647,'OP_CustomizationPurchaseRequestMs',167,1),(13870,58647,58647,'OP_CustomizationReplyMsg',169,1),(13871,58647,58647,'OP_CustomizationSetRequestMsg',168,1),(13872,58647,58647,'OP_CustomizeHouseDisplay',735,1),(13873,58647,58647,'OP_DailyObjectives',597,1),(13874,58647,58647,'OP_DefaultGroupOptionsMsg',198,1),(13875,58647,58647,'OP_DefaultGroupOptionsRequestMsg',197,1),(13876,58647,58647,'OP_DeleteCharacterReplyMsg',17,1),(13877,58647,58647,'OP_DeleteCharacterRequestMsg',16,1),(13878,58647,58647,'OP_DeleteGuildMsg',123,1),(13879,58647,58647,'OP_DestUpdateReq',210,1),(13880,58647,58647,'OP_DialogCloseMsg',110,1),(13881,58647,58647,'OP_DialogSelectMsg',109,1),(13882,58647,58647,'OP_DispatchClientCmdMsg',60,1),(13883,58647,58647,'OP_DispatchESMsg',59,1),(13884,58647,58647,'OP_DispatchMsg',451,1),(13885,58647,58647,'OP_DispatchSpellCmdMsg',179,1),(13886,58647,58647,'OP_DisplayDebugNLLPointsMsg',254,1),(13887,58647,58647,'OP_DisplayEventMsg',452,1),(13888,58647,58647,'OP_DisplayExchangeScreenMsg',444,1),(13889,58647,58647,'OP_DisplayGroupOptionsScreenMsg',200,1),(13890,58647,58647,'OP_DisplayInnVisitScreenMsg',202,1),(13891,58647,58647,'OP_DisplayMailScreenMsg',404,1),(13892,58647,58647,'OP_DisplayTSEventReactionMsg',225,1),(13893,58647,58647,'OP_DisplayWarningMsg',265,1),(13894,58647,58647,'OP_DoneLoadingEntityResourcesMsg',36,1),(13895,58647,58647,'OP_DoneLoadingZoneResourcesMsg',34,1),(13896,58647,58647,'OP_DoneSendingInitialEntitiesMsg',35,1),(13897,58647,58647,'OP_DressingRoom',510,1),(13898,58647,58647,'OP_DumpSchedulerMsg',203,1),(13899,58647,58647,'OP_DungeonMakerEnter',548,1),(13900,58647,58647,'OP_DungeonMakerItemRequest',550,1),(13901,58647,58647,'OP_DungeonMakerItemResponse',582,1),(13902,58647,58647,'OP_DungeonMakerToolboxList',552,1),(13903,58647,58647,'OP_DungeonMakerUnknown',553,1),(13904,58647,58647,'OP_DungeonMakerUnknown1',554,1),(13905,58647,58647,'OP_DungeonPlayAsAvatarList',749,1),(13906,58647,58647,'OP_DungeonPlayAsAvatarSelected',750,1),(13907,58647,58647,'OP_EncounterBrokenMsg',263,1),(13908,58647,58647,'OP_EnterHouseMsg',154,1),(13909,58647,58647,'OP_EnterMoveObjectModeMsg',161,1),(13910,58647,58647,'OP_EntityVerbsReplyMsg',181,1),(13911,58647,58647,'OP_EntityVerbsRequestMsg',180,1),(13912,58647,58647,'OP_EntityVerbsVerbMsg',182,1),(13913,58647,58647,'OP_EqArenaResultsCmd',700,1),(13914,58647,58647,'OP_EqAvailWorldChannelsCmd',687,1),(13915,58647,58647,'OP_EqBetaCopyRequest',606,1),(13916,58647,58647,'OP_EqCannedEmoteCmd',629,1),(13917,58647,58647,'OP_EqChatChannelUpdateCmd',685,1),(13918,58647,58647,'OP_EqChoiceWinCmd',666,1),(13919,58647,58647,'OP_EqCloseWindowCmd',658,1),(13920,58647,58647,'OP_EqCollectionFilterCmd',645,1),(13921,58647,58647,'OP_EqCollectionItemCmd',646,1),(13922,58647,58647,'OP_EqCollectionUpdateCmd',644,1),(13923,58647,58647,'OP_EqConsignmentItemsCmd',690,1),(13924,58647,58647,'OP_EqCreateGhostCmd',611,1),(13925,58647,58647,'OP_EqCreateListBoxCmd',626,1),(13926,58647,58647,'OP_EqCreateSignWidgetCmd',613,1),(13927,58647,58647,'OP_EqCreateWidgetCmd',612,1),(13928,58647,58647,'OP_EqDebugPVDCmd',679,1),(13929,58647,58647,'OP_EqDestroyGhostCmd',614,1),(13930,58647,58647,'OP_EqDialogCloseCmd',642,1),(13931,58647,58647,'OP_EqDialogOpenCmd',641,1),(13932,58647,58647,'OP_EqDisplaySpellFailCmd',662,1),(13933,58647,58647,'OP_EqDisplayTextCmd',610,1),(13934,58647,58647,'OP_EqDrawablePathGraphCmd',640,1),(13935,58647,58647,'OP_EqEnableGameEventCmd',672,1),(13936,58647,58647,'OP_EqEnableWindowCmd',674,1),(13937,58647,58647,'OP_EqExamineInfoCmd',657,1),(13938,58647,58647,'OP_EqFactionUpdateCmd',643,1),(13939,58647,58647,'OP_EqFlashWindowCmd',675,1),(13940,58647,58647,'OP_EqGetProbsCmd',683,1),(13941,58647,58647,'OP_EqGroupMemberRemovedCmd',636,1),(13942,58647,58647,'OP_EqGuildBankEventActionCmd',701,1),(13943,58647,58647,'OP_EqGuildBankExamineInfoCmd',702,1),(13944,58647,58647,'OP_EqHearChainEffectCmd',637,1),(13945,58647,58647,'OP_EqHearChatCmd',609,1),(13946,58647,58647,'OP_EqHearCombatCmd',618,1),(13947,58647,58647,'OP_EqHearConsiderCmd',624,1),(13948,58647,58647,'OP_EqHearDeathCmd',635,1),(13949,58647,58647,'OP_EQHearDispellCmd',747,1),(13950,58647,58647,'OP_EqHearDrowningCmd',634,1),(13951,58647,58647,'OP_EqHearHealCmd',684,1),(13952,58647,58647,'OP_EqHearPlayFlavorCmd',677,1),(13953,58647,58647,'OP_EQHearProcCmd',620,1),(13954,58647,58647,'OP_EQHearResEffectCmd',621,1),(13955,58647,58647,'OP_EqHearSpellCastCmd',619,1),(13956,58647,58647,'OP_EqHearSpellFizzleCmd',623,1),(13957,58647,58647,'OP_EqHearSpellInterruptCmd',622,1),(13958,58647,58647,'OP_EqHearSpellNoLandCmd',703,1),(13959,58647,58647,'OP_EQHearThreatCmd',741,1),(13960,58647,58647,'OP_EqHelpPathClearCmd',655,1),(13961,58647,58647,'OP_EqHelpPathCmd',654,1),(13962,58647,58647,'OP_EqInspectPCResultsCmd',639,1),(13963,58647,58647,'OP_EqInstructionWindowCloseCmd',669,1),(13964,58647,58647,'OP_EqInstructionWindowCmd',668,1),(13965,58647,58647,'OP_EqInstructionWindowGoalCmd',670,1),(13966,58647,58647,'OP_EqInstructionWindowTaskCmd',671,1),(13967,58647,58647,'OP_EqJunctionListCmd',660,1),(13968,58647,58647,'OP_EqMapExplorationCmd',693,1),(13969,58647,58647,'OP_EqMentoring',648,1),(13970,58647,58647,'OP_EqPlaySound3DCmd',632,1),(13971,58647,58647,'OP_EqPlaySoundCmd',631,1),(13972,58647,58647,'OP_EqPlayVoiceCmd',633,1),(13973,58647,58647,'OP_EqQuestGroupCmd',650,1),(13974,58647,58647,'OP_EqQuestionnaireCmd',681,1),(13975,58647,58647,'OP_EqQuestJournalReplyCmd',649,1),(13976,58647,58647,'OP_EqQuestJournalUpdateCmd',647,1),(13977,58647,58647,'OP_EqReceiveOfferCmd',638,1),(13978,58647,58647,'OP_EqResurrectedCmd',665,1),(13979,58647,58647,'OP_EqSetControlGhostCmd',616,1),(13980,58647,58647,'OP_EqSetDebugPathPointsCmd',627,1),(13981,58647,58647,'OP_EqSetDefaultVerbCmd',667,1),(13982,58647,58647,'OP_EqSetPOVGhostCmd',617,1),(13983,58647,58647,'OP_EqShowBookCmd',680,1),(13984,58647,58647,'OP_EqShowDeathWindowCmd',661,1),(13985,58647,58647,'OP_EqShowWindowCmd',673,1),(13986,58647,58647,'OP_EqSpellCastEndCmd',664,1),(13987,58647,58647,'OP_EqSpellCastStartCmd',663,1),(13988,58647,58647,'OP_EqSpellMoveToRangeAndRetryCmd',695,1),(13989,58647,58647,'OP_EqStartBrokerCmd',692,1),(13990,58647,58647,'OP_EqStateCmd',630,1),(13991,58647,58647,'OP_EqStoreLogCmd',694,1),(13992,58647,58647,'OP_EqUpdateBankCmd',656,1),(13993,58647,58647,'OP_EqUpdateGhostCmd',615,1),(13994,58647,58647,'OP_EqUpdateLootCmd',659,1),(13995,58647,58647,'OP_EqUpdateMerchantCmd',651,1),(13996,58647,58647,'OP_EqUpdatePlayerMailCmd',696,1),(13997,58647,58647,'OP_EqUpdatePlayerTradeCmd',653,1),(13998,58647,58647,'OP_EqUpdateSignWidgetCmd',678,1),(13999,58647,58647,'OP_EqUpdateStoreCmd',652,1),(14000,58647,58647,'OP_EqUpdateSubClassesCmd',625,1),(14001,58647,58647,'OP_EqUpdateTargetCmd',688,1),(14002,58647,58647,'OP_EqWhoChannelQueryReplyCmd',686,1),(14003,58647,58647,'OP_ESInitMsg',25,1),(14004,58647,58647,'OP_ESLoginRequestMsg',3,1),(14005,58647,58647,'OP_ESReadyForClientsMsg',26,1),(14006,58647,58647,'OP_ESStatusMsg',100,1),(14007,58647,58647,'OP_ESWeatherRequestEndMsg',105,1),(14008,58647,58647,'OP_ESWeatherRequestMsg',104,1),(14009,58647,58647,'OP_ESZoneInstanceStatusMsg',101,1),(14010,58647,58647,'OP_ExamineConsignmentRequestMsg',171,1),(14011,58647,58647,'OP_ExamineConsignmentResponseMsg',172,1),(14012,58647,58647,'OP_ExamineInfoRequestMsg',255,1),(14013,58647,58647,'OP_ExamineItemRequestMsg',195,1),(14014,58647,58647,'OP_ExitHouseMsg',155,1),(14015,58647,58647,'OP_ExpectClientAsCharacterReplyMs',22,1),(14016,58647,58647,'OP_ExpectClientAsCharacterRequest',32,1),(14017,58647,58647,'OP_ExpPurchWindow',726,1),(14018,58647,58647,'OP_FellowshipExpMsg',122,1),(14019,58647,58647,'OP_FlightPathsMsg',413,1),(14020,58647,58647,'OP_GameWorldTimeMsg',43,1),(14021,58647,58647,'OP_PaperdollImage',577,1),(14022,58647,58647,'OP_GetAuctionAssetIDMsg',441,1),(14023,58647,58647,'OP_GetAuctionAssetIDReplyMsg',442,1),(14024,58647,58647,'OP_GetAvatarAccessRequestForCSToo',393,1),(14025,58647,58647,'OP_GetCharacterSerializedReplyMsg',424,1),(14026,58647,58647,'OP_GetCharacterSerializedRequestM',423,1),(14027,58647,58647,'OP_GroupCreatedMsg',88,1),(14028,58647,58647,'OP_GroupDestroyedMsg',89,1),(14029,58647,58647,'OP_GroupLeaderChangedMsg',93,1),(14030,58647,58647,'OP_GroupMemberAddedMsg',90,1),(14031,58647,58647,'OP_GroupMemberRemovedMsg',91,1),(14032,58647,58647,'OP_GroupOptionsMsg',199,1),(14033,58647,58647,'OP_GroupRemovedFromGroupMsg',92,1),(14034,58647,58647,'OP_GroupResendOOZDataMsg',94,1),(14035,58647,58647,'OP_GroupSettingsChangedMsg',95,1),(14036,58647,58647,'OP_GuildBankActionMsg',274,1),(14037,58647,58647,'OP_GuildBankActionResponseMsg',275,1),(14038,58647,58647,'OP_GuildBankEventListMsg',279,1),(14039,58647,58647,'OP_GuildBankItemDetailsRequestMsg',276,1),(14040,58647,58647,'OP_GuildBankItemDetailsResponseMs',277,1),(14041,58647,58647,'OP_GuildBankUpdateMsg',278,1),(14042,58647,58647,'OP_GuildEventActionMsg',269,1),(14043,58647,58647,'OP_GuildEventAddMsg',268,1),(14044,58647,58647,'OP_GuildEventDetailsMsg',272,1),(14045,58647,58647,'OP_GuildEventListMsg',270,1),(14046,58647,58647,'OP_GuildEventMsg',267,1),(14047,58647,58647,'OP_GuildMembershipResponseMsg',357,1),(14048,58647,58647,'OP_GuildRecruiting',706,1),(14049,58647,58647,'OP_GuildRecruitingDetails',707,1),(14050,58647,58647,'OP_GuildRecruitingImage',708,1),(14051,58647,58647,'OP_GuildRecruitingMemberInfo',705,1),(14052,58647,58647,'OP_GuildsayMsg',121,1),(14053,58647,58647,'OP_GuildStatusUpdate',699,1),(14054,58647,58647,'OP_GuildUpdateMsg',124,1),(14055,58647,58647,'OP_HeritageMsg',10001,1),(14056,58647,58647,'OP_HideIllusionsMsg',194,1),(14057,58647,58647,'OP_HouseAccessRemoveMsg',158,1),(14058,58647,58647,'OP_HouseAccessSetMsg',157,1),(14059,58647,58647,'OP_HouseCustomizationScreenMsg',166,1),(14060,58647,58647,'OP_HouseDefaultAccessSetMsg',156,1),(14061,58647,58647,'OP_HouseDeletedRemotelyMsg',142,1),(14062,58647,58647,'OP_HouseItemsList',484,1),(14063,58647,58647,'OP_HousingDataChangedMsg',427,1),(14064,58647,58647,'OP_HousingRestoreMsg',428,1),(14065,58647,58647,'OP_InspectPlayerMsg',363,1),(14066,58647,58647,'OP_InspectPlayerRequestMsg',450,1),(14067,58647,58647,'OP_InviteRequestMsg',447,1),(14068,58647,58647,'OP_InviteResponseMsg',448,1),(14069,58647,58647,'OP_InviteTargetResponseMsg',449,1),(14070,58647,58647,'OP_JoinGuildNotifyMsg',359,1),(14071,58647,58647,'OP_JournalQuestStoryline',748,1),(14072,58647,58647,'OP_KeymapDataMsg',177,1),(14073,58647,58647,'OP_KeymapLoadMsg',175,1),(14074,58647,58647,'OP_KeymapNoneMsg',176,1),(14075,58647,58647,'OP_KeymapSaveMsg',178,1),(14076,58647,58647,'OP_KnowledgebaseRequestMsg',227,1),(14077,58647,58647,'OP_KnowledgebaseResponseMsg',228,1),(14078,58647,58647,'OP_KnowledgeWindowSlotMappingMsg',369,1),(14079,58647,58647,'OP_KnownLanguagesMsg',238,1),(14080,58647,58647,'OP_Launchpad',575,1),(14081,58647,58647,'OP_LeaveGuildNotifyMsg',358,1),(14082,58647,58647,'OP_LevelChangedMsg',261,1),(14083,58647,58647,'OP_LFGGroupSearch',504,1),(14084,58647,58647,'OP_LFGUpdateMsg',518,1),(14085,58647,58647,'OP_LikeOption',136,1),(14086,58647,58647,'OP_LoadCalendarEvents',578,1),(14087,58647,58647,'OP_LoadWelcomeWindow',560,1),(14088,58647,58647,'OP_LoginByNumRequestMsg',1,1),(14089,58647,58647,'OP_LoginReplyMsg',4,1),(14090,58647,58647,'OP_LoginRequestMsg',0,1),(14091,58647,58647,'OP_LootItemsRequestMsg',185,1),(14092,58647,58647,'OP_Lottery',704,1),(14093,58647,58647,'OP_LSCheckAcctLockMsg',204,1),(14094,58647,58647,'OP_LsClientAlertlogReplyMsg',242,1),(14095,58647,58647,'OP_LsClientBaselogReplyMsg',240,1),(14096,58647,58647,'OP_LsClientCrashlogReplyMsg',241,1),(14097,58647,58647,'OP_LsClientVerifylogReplyMsg',243,1),(14098,58647,58647,'OP_LsRequestClientCrashLogMsg',239,1),(14099,58647,58647,'OP_LSServerLockMsg',365,1),(14100,58647,58647,'OP_MacroInitMsg',258,1),(14101,58647,58647,'OP_MacroUpdateMsg',259,1),(14102,58647,58647,'OP_MailCommitSendMessageMsg',344,1),(14103,58647,58647,'OP_MailDeleteMessageMsg',340,1),(14104,58647,58647,'OP_MailEventNotificationMsg',411,1),(14105,58647,58647,'OP_MailGetHeadersReplyMsg',341,1),(14106,58647,58647,'OP_MailGetMessageMsg',338,1),(14107,58647,58647,'OP_MailGetMessageReplyMsg',342,1),(14108,58647,58647,'OP_MailRemoveAttachFromMailMsg',346,1),(14109,58647,58647,'OP_MailSendMessageMsg',339,1),(14110,58647,58647,'OP_MailSendMessageReplyMsg',343,1),(14111,58647,58647,'OP_MailSendSystemMessageMsg',345,1),(14112,58647,58647,'OP_MakeGroupLeaderMsg',87,1),(14113,58647,58647,'OP_MapFogDataInitMsg',395,1),(14114,58647,58647,'OP_MapFogDataUpdateMsg',396,1),(14115,58647,58647,'OP_MapRequest',521,1),(14116,58647,58647,'OP_MarketAddFundsReply',529,1),(14117,58647,58647,'OP_MarketAddFundsRequest',528,1),(14118,58647,58647,'OP_MarketFundsUpdate',526,1),(14119,58647,58647,'OP_MarketPlaceItems',537,1),(14120,58647,58647,'OP_MarketPlacePrices',532,1),(14121,58647,58647,'OP_MarketPurchase',531,1),(14122,58647,58647,'OP_MentorPopup',558,1),(14123,58647,58647,'OP_MercHireWindow',751,1),(14124,58647,58647,'OP_MercUnknown',752,1),(14125,58647,58647,'OP_MigrateBoatTransportMsg',252,1),(14126,58647,58647,'OP_MigrateBoatTransportReplyMsg',253,1),(14127,58647,58647,'OP_MigrateClientToZoneReplyMsg',82,1),(14128,58647,58647,'OP_MigrateClientToZoneRequestMsg',81,1),(14129,58647,58647,'OP_ModifyGuildMsg',266,1),(14130,58647,58647,'OP_MonitorCharacterListMsg',56,1),(14131,58647,58647,'OP_MonitorCharacterListRequestMsg',57,1),(14132,58647,58647,'OP_MonitorReplyMsg',55,1),(14133,58647,58647,'OP_MOTDMsg',44,1),(14134,58647,58647,'OP_MoveableObjectPlacementCriteri',160,1),(14135,58647,58647,'OP_MoveLogUpdateMsg',400,1),(14136,58647,58647,'OP_NotifyApprenticeStoppedMentori',408,1),(14137,58647,58647,'OP_OfferQuestMsg',401,1),(14138,58647,58647,'OP_OnscreenMsgMsg',264,1),(14139,58647,58647,'OP_OpenCharCust',561,1),(14140,58647,58647,'OP_OutOfZoneMemberDataMsg',96,1),(14141,58647,58647,'OP_PayHouseUpkeepMsg',159,1),(14142,58647,58647,'OP_PerformCameraShakeMsg',214,1),(14143,58647,58647,'OP_PerformPlayerKnockbackMsg',213,1),(14144,58647,58647,'OP_PetOptions',201,1),(14145,58647,58647,'OP_PetOptionsResponse',581,1),(14146,58647,58647,'OP_PlayCharacterReplyMsg',19,1),(14147,58647,58647,'OP_PlayCharacterRequestMsg',18,1),(14148,58647,58647,'OP_PlayerHouseAccessUpdateMsg',147,1),(14149,58647,58647,'OP_PlayerHouseBaseScreenMsg',145,1),(14150,58647,58647,'OP_PlayerHouseCloseUIMsg',149,1),(14151,58647,58647,'OP_PlayerHouseDisplayStatusMsg',148,1),(14152,58647,58647,'OP_PlayerHousePurchaseScreenMsg',146,1),(14153,58647,58647,'OP_PlayerMadeInstances',140,1),(14154,58647,58647,'OP_PlayerMadeInstancesScreen',139,1),(14155,58647,58647,'OP_PlayerPollAnswer',557,1),(14156,58647,58647,'OP_PlayerPollPopup',556,1),(14157,58647,58647,'OP_PlayLon',511,1),(14158,58647,58647,'OP_PointOfInterest',730,1),(14159,58647,58647,'OP_PointOfInterest2',731,1),(14160,58647,58647,'OP_PopulateSkillMapsMsg',215,1),(14161,58647,58647,'OP_PositionBoatTransportMsg',251,1),(14162,58647,58647,'OP_PositionMoveableObject',162,1),(14163,58647,58647,'OP_PostPossessionMsg',454,1),(14164,58647,58647,'OP_PredictionUpdateMsg',37,1),(14165,58647,58647,'OP_PrePossessionMsg',453,1),(14166,58647,58647,'OP_PromoFlagsDetailsMsg',374,1),(14167,58647,58647,'OP_PublishHouse',138,1),(14168,58647,58647,'OP_PurchaseConsignmentLoreCheckRe',407,1),(14169,58647,58647,'OP_PurchaseConsignmentRequestMsg',128,1),(14170,58647,58647,'OP_QueAllBgSolo',564,1),(14171,58647,58647,'OP_QuestionnaireMsg',260,1),(14172,58647,58647,'OP_QuestJournalInspectMsg',114,1),(14173,58647,58647,'OP_QuestJournalOpenMsg',113,1),(14174,58647,58647,'OP_QuestJournalSetVisibleMsg',115,1),(14175,58647,58647,'OP_QuestJournalWaypointMsg',116,1),(14176,58647,58647,'OP_QuestReward',320,1),(14177,58647,58647,'OP_QuickbarInitMsg',256,1),(14178,58647,58647,'OP_QuickbarUpdateMsg',257,1),(14179,58647,58647,'OP_RaceRestrictionMsg',439,1),(14180,58647,58647,'OP_ReadBookPageMsg',196,1),(14181,58647,58647,'OP_ReadyForTakeOffMsg',192,1),(14182,58647,58647,'OP_ReadyToZoneMsg',84,1),(14183,58647,58647,'OP_RecipeBook',538,1),(14184,58647,58647,'OP_RecipeDetailsMsg',72,1),(14185,58647,58647,'OP_RecipeList',742,1),(14186,58647,58647,'OP_RecipeListUnknown',593,1),(14187,58647,58647,'OP_RelinquishHouseMsg',153,1),(14188,58647,58647,'OP_ReloadLocalizedTxtMsg',355,1),(14189,58647,58647,'OP_RemoteCmdMsg',42,1),(14190,58647,58647,'OP_RemoveClientFromGroupMsg',85,1),(14191,58647,58647,'OP_RemoveConcentrationMsg',112,1),(14192,58647,58647,'OP_RemoveGroupFromGroupMsg',86,1),(14193,58647,58647,'OP_RemoveSpellEffectMsg',111,1),(14194,58647,58647,'OP_RenameGuildMsg',282,1),(14195,58647,58647,'OP_ReplaceableSubMeshesMsg',165,1),(14196,58647,58647,'OP_ReportMsg',380,1),(14197,58647,58647,'OP_RequestCampMsg',50,1),(14198,58647,58647,'OP_RequestGuildBankEventDetailsMs',280,1),(14199,58647,58647,'OP_RequestGuildEventDetailsMsg',271,1),(14200,58647,58647,'OP_RequestGuildInfoMsg',273,1),(14201,58647,58647,'OP_RequestGuildMembershipMsg',356,1),(14202,58647,58647,'OP_RequestHelpRepathMsg',206,1),(14203,58647,58647,'OP_RequestRecipeDetailsMsg',71,1),(14204,58647,58647,'OP_RequestTargetLocMsg',207,1),(14205,58647,58647,'OP_Research',743,1),(14206,58647,58647,'OP_ResendWorldChannelsMsg',443,1),(14207,58647,58647,'OP_ReskinCharacterRequestMsg',15,1),(14208,58647,58647,'OP_RestartZoneMsg',412,1),(14209,58647,58647,'OP_RewardPackMsg',281,1),(14210,58647,58647,'OP_SatMsg',189,1),(14211,58647,58647,'OP_SavageBarInitMsg',580,1),(14212,58647,58647,'OP_SelectZoneTeleporterDestinatio',354,1),(14213,58647,58647,'OP_SendLatestRequestMsg',97,1),(14214,58647,58647,'OP_ServerPlayCharacterReplyMsg',24,1),(14215,58647,58647,'OP_ServerPlayCharacterRequestMsg',23,1),(14216,58647,58647,'OP_SetInstanceDisplayNameMsg',440,1),(14217,58647,58647,'OP_SetRemoteCmdsMsg',41,1),(14218,58647,58647,'OP_SetSocialMsg',99,1),(14219,58647,58647,'OP_ShaderCustomizationMsg',164,1),(14220,58647,58647,'OP_ShowCreateFromRecipeUIMsg',219,1),(14221,58647,58647,'OP_ShowIllusionsMsg',193,1),(14222,58647,58647,'OP_ShowItemCreationProcessUIMsg',223,1),(14223,58647,58647,'OP_ShowRecipeBookMsg',226,1),(14224,58647,58647,'OP_ShowZoneTeleporterDestinations',353,1),(14225,58647,58647,'OP_SitMsg',187,1),(14226,58647,58647,'OP_SkillInfoRequest',514,1),(14227,58647,58647,'OP_SkillInfoResponse',515,1),(14228,58647,58647,'OP_SOEAllAccess',607,1),(14229,58647,58647,'OP_SpellGainedMsg',262,1),(14230,58647,58647,'OP_StandMsg',188,1),(14231,58647,58647,'OP_StoodMsg',190,1),(14232,58647,58647,'OP_StopItemCreationMsg',222,1),(14233,58647,58647,'OP_StoppedLootingMsg',186,1),(14234,58647,58647,'OP_StopTrackingMsg',391,1),(14235,58647,58647,'OP_SubmitCharCust',562,1),(14236,58647,58647,'OP_SupplyDepot',740,1),(14237,58647,58647,'OP_SysClient',218,1),(14238,58647,58647,'OP_TeleportWithinZoneMsg',79,1),(14239,58647,58647,'OP_TeleportWithinZoneNoReloadMsg',80,1),(14240,58647,58647,'OP_TintWidgetsMsg',170,1),(14241,58647,58647,'OP_TitleUpdateMsg',384,1),(14242,58647,58647,'OP_TrackingUpdateMsg',389,1),(14243,58647,58647,'OP_TradeskillList',709,1),(14244,58647,58647,'OP_TraitsList',732,1),(14245,58647,58647,'OP_UIEvent',527,1),(14246,58647,58647,'OP_UIResetMsg',174,1),(14247,58647,58647,'OP_UISettingsResponseMsg',173,1),(14248,58647,58647,'OP_Unknown',765,1),(14249,58647,58647,'OP_UnknownNpcMsg',373,1),(14250,58647,58647,'OP_UpdateActivePublicZonesMsg',372,1),(14251,58647,58647,'OP_UpdateCharacterSheetMsg',63,1),(14252,58647,58647,'OP_UpdateClientPredFlagsMsg',245,1),(14253,58647,58647,'OP_UpdateDebugRadiiMsg',379,1),(14254,58647,58647,'OP_UpdateGroupMemberDataMsg',388,1),(14255,58647,58647,'OP_UpdateHouseAccessDataMsg',144,1),(14256,58647,58647,'OP_UpdateHouseDataMsg',143,1),(14257,58647,58647,'OP_UpdateInventoryMsg',68,1),(14258,58647,58647,'OP_UpdateItemCreationProcessUIMsg',224,1),(14259,58647,58647,'OP_UpdateMotdMsg',208,1),(14260,58647,58647,'OP_UpdateOpportunityMsg',75,1),(14261,58647,58647,'OP_UpdatePositionMsg',39,1),(14262,58647,58647,'OP_UpdateRaidMsg',381,1),(14263,58647,58647,'OP_UpdateRecipeBookMsg',70,1),(14264,58647,58647,'OP_UpdateSkillBookMsg',73,1),(14265,58647,58647,'OP_UpdateSkillsMsg',74,1),(14266,58647,58647,'OP_UpdateSpellBookMsg',66,1),(14267,58647,58647,'OP_UpdateTargetLocMsg',62,1),(14268,58647,58647,'OP_UpdateTargetMsg',61,1),(14269,58647,58647,'OP_UpdateTitleCmd',494,1),(14270,58647,58647,'OP_UseAdornment',720,1),(14271,58647,58647,'OP_VideoUploaded',579,1),(14272,58647,58647,'OP_VoiceChatChannel',520,1),(14273,58647,58647,'OP_VoiceChatServer',736,1),(14274,58647,58647,'OP_WaypointReplyMsg',349,1),(14275,58647,58647,'OP_WaypointRequestMsg',348,1),(14276,58647,58647,'OP_WaypointSelectMsg',350,1),(14277,58647,58647,'OP_WaypointUpdateMsg',351,1),(14278,58647,58647,'OP_Weakness',583,1),(14279,58647,58647,'OP_WhoQueryReplyMsg',54,1),(14280,58647,58647,'OP_WhoQueryRequestMsg',53,1),(14281,58647,58647,'OP_WorldDataChangeMsg',410,1),(14282,58647,58647,'OP_WorldDataUpdateMsg',237,1),(14283,58647,58647,'OP_WorldListMsg',8,1),(14284,58647,58647,'OP_WorldPingMsg',399,1),(14285,58647,58647,'OP_WorldShutdownUpdateMsg',403,1),(14286,58647,58647,'OP_WorldStatusChangeMsg',6,1),(14287,58647,58647,'OP_WorldTravelAvail',572,1),(14288,58647,58647,'OP_WSAcctLockStatusMsg',205,1),(14289,58647,58647,'OP_WSCreateCharacterReplyMsg',14,1),(14290,58647,58647,'OP_WSCreateCharacterRequestMsg',13,1),(14291,58647,58647,'OP_WSLoginRequestMsg',2,1),(14292,58647,58647,'OP_WSServerHideMsg',366,1),(14293,58647,58647,'OP_WSServerLockMsg',364,1),(14294,58647,58647,'OP_WSStatusReplyMsg',5,1),(14295,58647,58647,'OP_ZoneBgInstanceList',568,1),(14296,58647,58647,'OP_ZoneInfoMsg',33,1),(14297,58647,58647,'OP_ZoneInstanceCreateReplyMsg',30,1),(14298,58647,58647,'OP_ZoneInstanceDestroyedMsg',31,1),(14299,58647,58647,'OP_ZoneMOTDMsg',45,1),(14300,58647,58647,'OP_ZonesStatusMsg',103,1),(14301,58647,58647,'OP_ZonesStatusRequestMsg',102,1),(14302,58647,58647,'OP_ZoneToFriendReplyMsg',284,1),(14303,58647,58647,'OP_ZoneToFriendRequestMsg',283,1),(14304,60024,60024,'OP_AchievementUpdateMsg',748,1),(14305,60024,60024,'OP_AddSocialStructureStandingMsg',249,1),(14306,60024,60024,'OP_AdvancementRequestMsg',394,1),(14307,60024,60024,'OP_AdventureList',488,1),(14308,60024,60024,'OP_AFKUpdateMsg',370,1),(14309,60024,60024,'OP_AfterInvSpellUpdate',69,1),(14310,60024,60024,'OP_AllCharactersDescReplyMsg',10,1),(14311,60024,60024,'OP_AllCharactersDescRequestMsg',9,1),(14312,60024,60024,'OP_AllWSDescRequestMsg',7,1),(14313,60024,60024,'OP_AnonUpdateMsg',371,1),(14314,60024,60024,'OP_ArenaCreate',456,1),(14315,60024,60024,'OP_ArenaGameTypesMsg',445,1),(14316,60024,60024,'OP_ArenaList',457,1),(14317,60024,60024,'OP_ArenaWindow',465,1),(14318,60024,60024,'OP_AttackAllowed',500,1),(14319,60024,60024,'OP_AttackNotAllowed',501,1),(14320,60024,60024,'OP_AuctionAbortMsg',436,1),(14321,60024,60024,'OP_AuctionCharacter',433,1),(14322,60024,60024,'OP_AuctionCharacterReply',434,1),(14323,60024,60024,'OP_AuctionCoin',431,1),(14324,60024,60024,'OP_AuctionCoinReply',432,1),(14325,60024,60024,'OP_AuctionCommitMsg',435,1),(14326,60024,60024,'OP_AuctionItem',429,1),(14327,60024,60024,'OP_AuctionItemReply',430,1),(14328,60024,60024,'OP_AuditAuctionEventMsg',446,1),(14329,60024,60024,'OP_AvatarCreatedMsg',46,1),(14330,60024,60024,'OP_AvatarDestroyedMsg',47,1),(14331,60024,60024,'OP_AvatarUpdateMsg',360,1),(14332,60024,60024,'OP_BadLanguageFilter',519,1),(14333,60024,60024,'OP_BagOptions',502,1),(14334,60024,60024,'OP_BeginItemCreationMsg',221,1),(14335,60024,60024,'OP_BeginTrackingMsg',390,1),(14336,60024,60024,'OP_BioUpdateMsg',362,1),(14337,60024,60024,'OP_BrokerAddBag',292,1),(14338,60024,60024,'OP_BrokerRemoveBag',293,1),(14339,60024,60024,'OP_BrokerSellList',691,1),(14340,60024,60024,'OP_BuyPlayerHouseMsg',150,1),(14341,60024,60024,'OP_BuyPlayerHouseTintMsg',151,1),(14342,60024,60024,'OP_CampAbortedMsg',52,1),(14343,60024,60024,'OP_CampClientMsg',387,1),(14344,60024,60024,'OP_CampStartedMsg',51,1),(14345,60024,60024,'OP_CancelCreateFromRecipeMsg',220,1),(14346,60024,60024,'OP_CancelledFeignMsg',216,1),(14347,60024,60024,'OP_CancelMoveObjectModeMsg',163,1),(14348,60024,60024,'OP_CancelSpellCast',489,1),(14349,60024,60024,'OP_ChangeServerControlFlagMsg',246,1),(14350,60024,60024,'OP_ChangeZoneMsg',77,1),(14351,60024,60024,'OP_CharacterAchievements',747,1),(14352,60024,60024,'OP_CharacterCreatedDungeons',551,1),(14353,60024,60024,'OP_CharacterCurrency',746,1),(14354,60024,60024,'OP_CharacterHousingList',507,1),(14355,60024,60024,'OP_CharacterLinkdeadMsg',414,1),(14356,60024,60024,'OP_CharacterMerc',65,1),(14357,60024,60024,'OP_CharacterMounts',584,1),(14358,60024,60024,'OP_CharacterPet',64,1),(14359,60024,60024,'OP_CharNameChangedMsg',352,1),(14360,60024,60024,'OP_CharRenamed',712,1),(14361,60024,60024,'OP_CharTransferCommitReplyMsg',422,1),(14362,60024,60024,'OP_CharTransferCommitRequestMsg',420,1),(14363,60024,60024,'OP_CharTransferReplyMsg',418,1),(14364,60024,60024,'OP_CharTransferRequestMsg',417,1),(14365,60024,60024,'OP_CharTransferRollbackReplyMsg',421,1),(14366,60024,60024,'OP_CharTransferRollbackRequestMsg',419,1),(14367,60024,60024,'OP_CharTransferStartReplyMsg',416,1),(14368,60024,60024,'OP_CharTransferStartRequestMsg',415,1),(14369,60024,60024,'OP_CharTransferValidateReplyMsg',438,1),(14370,60024,60024,'OP_CharTransferValidateRequestMsg',437,1),(14371,60024,60024,'OP_ChatCreateChannelMsg',285,1),(14372,60024,60024,'OP_ChatFiltersMsg',335,1),(14373,60024,60024,'OP_ChatJoinChannelMsg',286,1),(14374,60024,60024,'OP_ChatLeaveChannelMsg',288,1),(14375,60024,60024,'OP_ChatRelationshipUpdateMsg',184,1),(14376,60024,60024,'OP_ChatSendFriendsMsg',295,1),(14377,60024,60024,'OP_ChatSendIgnoresMsg',296,1),(14378,60024,60024,'OP_ChatTellChannelMsg',289,1),(14379,60024,60024,'OP_ChatTellUserMsg',290,1),(14380,60024,60024,'OP_ChatToggleFriendMsg',291,1),(14381,60024,60024,'OP_ChatToggleIgnoreMsg',294,1),(14382,60024,60024,'OP_ChatWhoChannelMsg',287,1),(14383,60024,60024,'OP_ClearDataMsg',98,1),(14384,60024,60024,'OP_ClearForLandingMsg',491,1),(14385,60024,60024,'OP_ClearForTakeOffMsg',191,1),(14386,60024,60024,'OP_ClientCmdMsg',58,1),(14387,60024,60024,'OP_ClientFellMsg',385,1),(14388,60024,60024,'OP_ClientIdleBeginMsg',405,1),(14389,60024,60024,'OP_ClientIdleEndMsg',406,1),(14390,60024,60024,'OP_ClientInDeathRegionMsg',386,1),(14391,60024,60024,'OP_ClientTeleportRequestMsg',78,1),(14392,60024,60024,'OP_ClientTeleportToLocationMsg',244,1),(14393,60024,60024,'OP_CloseGroupInviteWindowMsg',397,1),(14394,60024,60024,'OP_CollectAllHouseItemsMsg',152,1),(14395,60024,60024,'OP_ConsignItemRequestMsg',126,1),(14396,60024,60024,'OP_ConsignItemResponseMsg',127,1),(14397,60024,60024,'OP_ConsignmentCloseStoreMsg',125,1),(14398,60024,60024,'OP_ConsignRemoveItemsMsg',378,1),(14399,60024,60024,'OP_ConsignViewCreateMsg',375,1),(14400,60024,60024,'OP_ConsignViewGetPageMsg',376,1),(14401,60024,60024,'OP_ConsignViewReleaseMsg',377,1),(14402,60024,60024,'OP_ConsignViewSortMsg',383,1),(14403,60024,60024,'OP_CorruptedClientMsg',409,1),(14404,60024,60024,'OP_CreateBoatTransportsMsg',250,1),(14405,60024,60024,'OP_CreateCharacterDungeon',547,1),(14406,60024,60024,'OP_CreateCharacterReplyMsg',12,1),(14407,60024,60024,'OP_CreateCharacterRequestMsg',11,1),(14408,60024,60024,'OP_CreateCharFromCBBReplyMsg',426,1),(14409,60024,60024,'OP_CreateCharFromCBBRequestMsg',425,1),(14410,60024,60024,'OP_CreateGuildReplyMsg',120,1),(14411,60024,60024,'OP_CreateGuildRequestMsg',119,1),(14412,60024,60024,'OP_CreateZoneInstanceMsg',29,1),(14413,60024,60024,'OP_CsCategoryRequestMsg',367,1),(14414,60024,60024,'OP_CsCategoryResponseMsg',368,1),(14415,60024,60024,'OP_CSTicketAddCommentMsg',234,1),(14416,60024,60024,'OP_CSTicketChangeNotificationMsg',236,1),(14417,60024,60024,'OP_CSTicketCommentRequestMsg',231,1),(14418,60024,60024,'OP_CSTicketCommentResponseMsg',232,1),(14419,60024,60024,'OP_CSTicketCreateMsg',233,1),(14420,60024,60024,'OP_CSTicketDeleteMsg',235,1),(14421,60024,60024,'OP_CSTicketHeaderRequestMsg',229,1),(14422,60024,60024,'OP_CSTicketInfoMsg',230,1),(14423,60024,60024,'OP_CSToolAccessResponseMsg',388,1),(14424,60024,60024,'OP_CSToolsRequestMsg',247,1),(14425,60024,60024,'OP_CSToolsResponseMsg',248,1),(14426,60024,60024,'OP_CurrentPet',485,1),(14427,60024,60024,'OP_CustomizationPurchaseRequestMs',167,1),(14428,60024,60024,'OP_CustomizationReplyMsg',169,1),(14429,60024,60024,'OP_CustomizationSetRequestMsg',168,1),(14430,60024,60024,'OP_CustomizeHouseDisplay',737,1),(14431,60024,60024,'OP_DailyObjectives',597,1),(14432,60024,60024,'OP_DefaultGroupOptionsMsg',198,1),(14433,60024,60024,'OP_DefaultGroupOptionsRequestMsg',197,1),(14434,60024,60024,'OP_DeleteCharacterReplyMsg',17,1),(14435,60024,60024,'OP_DeleteCharacterRequestMsg',16,1),(14436,60024,60024,'OP_DeleteGuildMsg',123,1),(14437,60024,60024,'OP_DestUpdateReq',210,1),(14438,60024,60024,'OP_DialogCloseMsg',110,1),(14439,60024,60024,'OP_DialogSelectMsg',109,1),(14440,60024,60024,'OP_DispatchClientCmdMsg',60,1),(14441,60024,60024,'OP_DispatchESMsg',59,1),(14442,60024,60024,'OP_DispatchMsg',451,1),(14443,60024,60024,'OP_DispatchSpellCmdMsg',179,1),(14444,60024,60024,'OP_DisplayDebugNLLPointsMsg',254,1),(14445,60024,60024,'OP_DisplayEventMsg',452,1),(14446,60024,60024,'OP_DisplayExchangeScreenMsg',444,1),(14447,60024,60024,'OP_DisplayGroupOptionsScreenMsg',200,1),(14448,60024,60024,'OP_DisplayInnVisitScreenMsg',202,1),(14449,60024,60024,'OP_DisplayMailScreenMsg',404,1),(14450,60024,60024,'OP_DisplayTSEventReactionMsg',225,1),(14451,60024,60024,'OP_DisplayWarningMsg',265,1),(14452,60024,60024,'OP_DoneLoadingEntityResourcesMsg',36,1),(14453,60024,60024,'OP_DoneLoadingZoneResourcesMsg',34,1),(14454,60024,60024,'OP_DoneSendingInitialEntitiesMsg',35,1),(14455,60024,60024,'OP_DressingRoom',510,1),(14456,60024,60024,'OP_DumpSchedulerMsg',203,1),(14457,60024,60024,'OP_DungeonMakerEnter',548,1),(14458,60024,60024,'OP_DungeonMakerItemRequest',550,1),(14459,60024,60024,'OP_DungeonMakerItemResponse',582,1),(14460,60024,60024,'OP_DungeonMakerToolboxList',552,1),(14461,60024,60024,'OP_DungeonMakerUnknown',553,1),(14462,60024,60024,'OP_DungeonMakerUnknown1',554,1),(14463,60024,60024,'OP_DungeonPlayAsAvatarList',751,1),(14464,60024,60024,'OP_DungeonPlayAsAvatarSelected',752,1),(14465,60024,60024,'OP_EncounterBrokenMsg',263,1),(14466,60024,60024,'OP_EnterHouseMsg',154,1),(14467,60024,60024,'OP_EnterMoveObjectModeMsg',161,1),(14468,60024,60024,'OP_EntityVerbsReplyMsg',181,1),(14469,60024,60024,'OP_EntityVerbsRequestMsg',180,1),(14470,60024,60024,'OP_EntityVerbsVerbMsg',182,1),(14471,60024,60024,'OP_EqArenaResultsCmd',702,1),(14472,60024,60024,'OP_EqAvailWorldChannelsCmd',689,1),(14473,60024,60024,'OP_EqBetaCopyRequest',608,1),(14474,60024,60024,'OP_EqCannedEmoteCmd',631,1),(14475,60024,60024,'OP_EqChatChannelUpdateCmd',687,1),(14476,60024,60024,'OP_EqChoiceWinCmd',668,1),(14477,60024,60024,'OP_EqCloseWindowCmd',660,1),(14478,60024,60024,'OP_EqCollectionFilterCmd',647,1),(14479,60024,60024,'OP_EqCollectionItemCmd',648,1),(14480,60024,60024,'OP_EqCollectionUpdateCmd',646,1),(14481,60024,60024,'OP_EqConsignmentItemsCmd',692,1),(14482,60024,60024,'OP_EqCreateGhostCmd',613,1),(14483,60024,60024,'OP_EqCreateListBoxCmd',628,1),(14484,60024,60024,'OP_EqCreateSignWidgetCmd',615,1),(14485,60024,60024,'OP_EqCreateWidgetCmd',614,1),(14486,60024,60024,'OP_EqDebugPVDCmd',681,1),(14487,60024,60024,'OP_EqDestroyGhostCmd',616,1),(14488,60024,60024,'OP_EqDialogCloseCmd',644,1),(14489,60024,60024,'OP_EqDialogOpenCmd',643,1),(14490,60024,60024,'OP_EqDisplaySpellFailCmd',664,1),(14491,60024,60024,'OP_EqDisplayTextCmd',612,1),(14492,60024,60024,'OP_EqDrawablePathGraphCmd',642,1),(14493,60024,60024,'OP_EqEnableGameEventCmd',674,1),(14494,60024,60024,'OP_EqEnableWindowCmd',676,1),(14495,60024,60024,'OP_EqExamineInfoCmd',659,1),(14496,60024,60024,'OP_EqFactionUpdateCmd',645,1),(14497,60024,60024,'OP_EqFlashWindowCmd',677,1),(14498,60024,60024,'OP_EqGetProbsCmd',685,1),(14499,60024,60024,'OP_EqGroupMemberRemovedCmd',638,1),(14500,60024,60024,'OP_EqGuildBankEventActionCmd',703,1),(14501,60024,60024,'OP_EqGuildBankExamineInfoCmd',704,1),(14502,60024,60024,'OP_EqHearChainEffectCmd',639,1),(14503,60024,60024,'OP_EqHearChatCmd',611,1),(14504,60024,60024,'OP_EqHearCombatCmd',620,1),(14505,60024,60024,'OP_EqHearConsiderCmd',626,1),(14506,60024,60024,'OP_EqHearDeathCmd',637,1),(14507,60024,60024,'OP_EQHearDispellCmd',749,1),(14508,60024,60024,'OP_EqHearDrowningCmd',636,1),(14509,60024,60024,'OP_EqHearHealCmd',686,1),(14510,60024,60024,'OP_EqHearPlayFlavorCmd',679,1),(14511,60024,60024,'OP_EQHearProcCmd',622,1),(14512,60024,60024,'OP_EQHearResEffectCmd',623,1),(14513,60024,60024,'OP_EqHearSpellCastCmd',621,1),(14514,60024,60024,'OP_EqHearSpellFizzleCmd',625,1),(14515,60024,60024,'OP_EqHearSpellInterruptCmd',624,1),(14516,60024,60024,'OP_EqHearSpellNoLandCmd',705,1),(14517,60024,60024,'OP_EQHearThreatCmd',743,1),(14518,60024,60024,'OP_EqHelpPathClearCmd',657,1),(14519,60024,60024,'OP_EqHelpPathCmd',656,1),(14520,60024,60024,'OP_EqInspectPCResultsCmd',641,1),(14521,60024,60024,'OP_EqInstructionWindowCloseCmd',671,1),(14522,60024,60024,'OP_EqInstructionWindowCmd',670,1),(14523,60024,60024,'OP_EqInstructionWindowGoalCmd',672,1),(14524,60024,60024,'OP_EqInstructionWindowTaskCmd',673,1),(14525,60024,60024,'OP_EqJunctionListCmd',662,1),(14526,60024,60024,'OP_EqMapExplorationCmd',695,1),(14527,60024,60024,'OP_EqMentoring',650,1),(14528,60024,60024,'OP_EqPlaySound3DCmd',634,1),(14529,60024,60024,'OP_EqPlaySoundCmd',633,1),(14530,60024,60024,'OP_EqPlayVoiceCmd',635,1),(14531,60024,60024,'OP_EqQuestGroupCmd',652,1),(14532,60024,60024,'OP_EqQuestionnaireCmd',683,1),(14533,60024,60024,'OP_EqQuestJournalReplyCmd',651,1),(14534,60024,60024,'OP_EqQuestJournalUpdateCmd',649,1),(14535,60024,60024,'OP_EqReceiveOfferCmd',640,1),(14536,60024,60024,'OP_EqResurrectedCmd',667,1),(14537,60024,60024,'OP_EqSetControlGhostCmd',618,1),(14538,60024,60024,'OP_EqSetDebugPathPointsCmd',629,1),(14539,60024,60024,'OP_EqSetDefaultVerbCmd',669,1),(14540,60024,60024,'OP_EqSetPOVGhostCmd',619,1),(14541,60024,60024,'OP_EqShowBookCmd',682,1),(14542,60024,60024,'OP_EqShowDeathWindowCmd',663,1),(14543,60024,60024,'OP_EqShowWindowCmd',675,1),(14544,60024,60024,'OP_EqSpellCastEndCmd',666,1),(14545,60024,60024,'OP_EqSpellCastStartCmd',665,1),(14546,60024,60024,'OP_EqSpellMoveToRangeAndRetryCmd',697,1),(14547,60024,60024,'OP_EqStartBrokerCmd',694,1),(14548,60024,60024,'OP_EqStateCmd',632,1),(14549,60024,60024,'OP_EqStoreLogCmd',696,1),(14550,60024,60024,'OP_EqUpdateBankCmd',658,1),(14551,60024,60024,'OP_EqUpdateGhostCmd',617,1),(14552,60024,60024,'OP_EqUpdateLootCmd',661,1),(14553,60024,60024,'OP_EqUpdateMerchantCmd',653,1),(14554,60024,60024,'OP_EqUpdatePlayerMailCmd',698,1),(14555,60024,60024,'OP_EqUpdatePlayerTradeCmd',655,1),(14556,60024,60024,'OP_EqUpdateSignWidgetCmd',680,1),(14557,60024,60024,'OP_EqUpdateStoreCmd',654,1),(14558,60024,60024,'OP_EqUpdateSubClassesCmd',627,1),(14559,60024,60024,'OP_EqUpdateTargetCmd',690,1),(14560,60024,60024,'OP_EqWhoChannelQueryReplyCmd',688,1),(14561,60024,60024,'OP_ESInitMsg',25,1),(14562,60024,60024,'OP_ESLoginRequestMsg',3,1),(14563,60024,60024,'OP_ESReadyForClientsMsg',26,1),(14564,60024,60024,'OP_ESStatusMsg',100,1),(14565,60024,60024,'OP_ESWeatherRequestEndMsg',105,1),(14566,60024,60024,'OP_ESWeatherRequestMsg',104,1),(14567,60024,60024,'OP_ESZoneInstanceStatusMsg',101,1),(14568,60024,60024,'OP_ExamineConsignmentRequestMsg',171,1),(14569,60024,60024,'OP_ExamineConsignmentResponseMsg',172,1),(14570,60024,60024,'OP_ExamineInfoRequestMsg',255,1),(14571,60024,60024,'OP_ExamineItemRequestMsg',195,1),(14572,60024,60024,'OP_ExitHouseMsg',155,1),(14573,60024,60024,'OP_ExpectClientAsCharacterReplyMs',22,1),(14574,60024,60024,'OP_ExpectClientAsCharacterRequest',32,1),(14575,60024,60024,'OP_ExpPurchWindow',728,1),(14576,60024,60024,'OP_FellowshipExpMsg',122,1),(14577,60024,60024,'OP_FlightPathsMsg',413,1),(14578,60024,60024,'OP_GameWorldTimeMsg',43,1),(14579,60024,60024,'OP_PaperdollImage',577,1),(14580,60024,60024,'OP_GetAuctionAssetIDMsg',441,1),(14581,60024,60024,'OP_GetAuctionAssetIDReplyMsg',442,1),(14582,60024,60024,'OP_GetAvatarAccessRequestForCSToo',393,1),(14583,60024,60024,'OP_GetCharacterSerializedReplyMsg',424,1),(14584,60024,60024,'OP_GetCharacterSerializedRequestM',423,1),(14585,60024,60024,'OP_GroupCreatedMsg',88,1),(14586,60024,60024,'OP_GroupDestroyedMsg',89,1),(14587,60024,60024,'OP_GroupLeaderChangedMsg',93,1),(14588,60024,60024,'OP_GroupMemberAddedMsg',90,1),(14589,60024,60024,'OP_GroupMemberRemovedMsg',91,1),(14590,60024,60024,'OP_GroupOptionsMsg',199,1),(14591,60024,60024,'OP_GroupRemovedFromGroupMsg',92,1),(14592,60024,60024,'OP_GroupResendOOZDataMsg',94,1),(14593,60024,60024,'OP_GroupSettingsChangedMsg',95,1),(14594,60024,60024,'OP_GuildBankActionMsg',274,1),(14595,60024,60024,'OP_GuildBankActionResponseMsg',275,1),(14596,60024,60024,'OP_GuildBankEventListMsg',279,1),(14597,60024,60024,'OP_GuildBankItemDetailsRequestMsg',276,1),(14598,60024,60024,'OP_GuildBankItemDetailsResponseMs',277,1),(14599,60024,60024,'OP_GuildBankUpdateMsg',278,1),(14600,60024,60024,'OP_GuildEventActionMsg',269,1),(14601,60024,60024,'OP_GuildEventAddMsg',268,1),(14602,60024,60024,'OP_GuildEventDetailsMsg',272,1),(14603,60024,60024,'OP_GuildEventListMsg',270,1),(14604,60024,60024,'OP_GuildEventMsg',267,1),(14605,60024,60024,'OP_GuildMembershipResponseMsg',357,1),(14606,60024,60024,'OP_GuildRecruiting',708,1),(14607,60024,60024,'OP_GuildRecruitingDetails',709,1),(14608,60024,60024,'OP_GuildRecruitingImage',710,1),(14609,60024,60024,'OP_GuildRecruitingMemberInfo',707,1),(14610,60024,60024,'OP_GuildsayMsg',121,1),(14611,60024,60024,'OP_GuildStatusUpdate',701,1),(14612,60024,60024,'OP_GuildUpdateMsg',124,1),(14613,60024,60024,'OP_HeritageMsg',10001,1),(14614,60024,60024,'OP_HideIllusionsMsg',194,1),(14615,60024,60024,'OP_HouseAccessRemoveMsg',158,1),(14616,60024,60024,'OP_HouseAccessSetMsg',157,1),(14617,60024,60024,'OP_HouseCustomizationScreenMsg',166,1),(14618,60024,60024,'OP_HouseDefaultAccessSetMsg',156,1),(14619,60024,60024,'OP_HouseDeletedRemotelyMsg',142,1),(14620,60024,60024,'OP_HouseItemsList',484,1),(14621,60024,60024,'OP_HousingDataChangedMsg',427,1),(14622,60024,60024,'OP_HousingRestoreMsg',428,1),(14623,60024,60024,'OP_InspectPlayerMsg',363,1),(14624,60024,60024,'OP_InspectPlayerRequestMsg',450,1),(14625,60024,60024,'OP_InviteRequestMsg',447,1),(14626,60024,60024,'OP_InviteResponseMsg',448,1),(14627,60024,60024,'OP_InviteTargetResponseMsg',449,1),(14628,60024,60024,'OP_JoinGuildNotifyMsg',359,1),(14629,60024,60024,'OP_JournalQuestStoryline',750,1),(14630,60024,60024,'OP_KeymapDataMsg',177,1),(14631,60024,60024,'OP_KeymapLoadMsg',175,1),(14632,60024,60024,'OP_KeymapNoneMsg',176,1),(14633,60024,60024,'OP_KeymapSaveMsg',178,1),(14634,60024,60024,'OP_KnowledgebaseRequestMsg',227,1),(14635,60024,60024,'OP_KnowledgebaseResponseMsg',228,1),(14636,60024,60024,'OP_KnowledgeWindowSlotMappingMsg',369,1),(14637,60024,60024,'OP_KnownLanguagesMsg',238,1),(14638,60024,60024,'OP_Launchpad',575,1),(14639,60024,60024,'OP_LeaveGuildNotifyMsg',358,1),(14640,60024,60024,'OP_LevelChangedMsg',261,1),(14641,60024,60024,'OP_LFGGroupSearch',504,1),(14642,60024,60024,'OP_LFGUpdateMsg',518,1),(14643,60024,60024,'OP_LikeOption',136,1),(14644,60024,60024,'OP_LoadCalendarEvents',578,1),(14645,60024,60024,'OP_LoadWelcomeWindow',560,1),(14646,60024,60024,'OP_LoginByNumRequestMsg',1,1),(14647,60024,60024,'OP_LoginReplyMsg',4,1),(14648,60024,60024,'OP_LoginRequestMsg',0,1),(14649,60024,60024,'OP_LootItemsRequestMsg',185,1),(14650,60024,60024,'OP_Lottery',706,1),(14651,60024,60024,'OP_LSCheckAcctLockMsg',204,1),(14652,60024,60024,'OP_LsClientAlertlogReplyMsg',242,1),(14653,60024,60024,'OP_LsClientBaselogReplyMsg',240,1),(14654,60024,60024,'OP_LsClientCrashlogReplyMsg',241,1),(14655,60024,60024,'OP_LsClientVerifylogReplyMsg',243,1),(14656,60024,60024,'OP_LsRequestClientCrashLogMsg',239,1),(14657,60024,60024,'OP_LSServerLockMsg',365,1),(14658,60024,60024,'OP_MacroInitMsg',258,1),(14659,60024,60024,'OP_MacroUpdateMsg',259,1),(14660,60024,60024,'OP_MailCommitSendMessageMsg',344,1),(14661,60024,60024,'OP_MailDeleteMessageMsg',340,1),(14662,60024,60024,'OP_MailEventNotificationMsg',411,1),(14663,60024,60024,'OP_MailGetHeadersReplyMsg',341,1),(14664,60024,60024,'OP_MailGetMessageMsg',338,1),(14665,60024,60024,'OP_MailGetMessageReplyMsg',342,1),(14666,60024,60024,'OP_MailRemoveAttachFromMailMsg',346,1),(14667,60024,60024,'OP_MailSendMessageMsg',339,1),(14668,60024,60024,'OP_MailSendMessageReplyMsg',343,1),(14669,60024,60024,'OP_MailSendSystemMessageMsg',345,1),(14670,60024,60024,'OP_MakeGroupLeaderMsg',87,1),(14671,60024,60024,'OP_MapFogDataInitMsg',395,1),(14672,60024,60024,'OP_MapFogDataUpdateMsg',396,1),(14673,60024,60024,'OP_MapRequest',521,1),(14674,60024,60024,'OP_MarketAddFundsReply',529,1),(14675,60024,60024,'OP_MarketAddFundsRequest',528,1),(14676,60024,60024,'OP_MarketFundsUpdate',526,1),(14677,60024,60024,'OP_MarketPlaceItems',537,1),(14678,60024,60024,'OP_MarketPlacePrices',532,1),(14679,60024,60024,'OP_MarketPurchase',531,1),(14680,60024,60024,'OP_MentorPopup',558,1),(14681,60024,60024,'OP_MercHireWindow',753,1),(14682,60024,60024,'OP_MercUnknown',754,1),(14683,60024,60024,'OP_MigrateBoatTransportMsg',252,1),(14684,60024,60024,'OP_MigrateBoatTransportReplyMsg',253,1),(14685,60024,60024,'OP_MigrateClientToZoneReplyMsg',82,1),(14686,60024,60024,'OP_MigrateClientToZoneRequestMsg',81,1),(14687,60024,60024,'OP_ModifyGuildMsg',266,1),(14688,60024,60024,'OP_MonitorCharacterListMsg',56,1),(14689,60024,60024,'OP_MonitorCharacterListRequestMsg',57,1),(14690,60024,60024,'OP_MonitorReplyMsg',55,1),(14691,60024,60024,'OP_MOTDMsg',44,1),(14692,60024,60024,'OP_MoveableObjectPlacementCriteri',160,1),(14693,60024,60024,'OP_MoveLogUpdateMsg',400,1),(14694,60024,60024,'OP_NotifyApprenticeStoppedMentori',408,1),(14695,60024,60024,'OP_OfferQuestMsg',401,1),(14696,60024,60024,'OP_OnscreenMsgMsg',264,1),(14697,60024,60024,'OP_OpenCharCust',561,1),(14698,60024,60024,'OP_OutOfZoneMemberDataMsg',96,1),(14699,60024,60024,'OP_PayHouseUpkeepMsg',159,1),(14700,60024,60024,'OP_PerformCameraShakeMsg',214,1),(14701,60024,60024,'OP_PerformPlayerKnockbackMsg',213,1),(14702,60024,60024,'OP_PetOptions',201,1),(14703,60024,60024,'OP_PetOptionsResponse',581,1),(14704,60024,60024,'OP_PlayCharacterReplyMsg',19,1),(14705,60024,60024,'OP_PlayCharacterRequestMsg',18,1),(14706,60024,60024,'OP_PlayerHouseAccessUpdateMsg',147,1),(14707,60024,60024,'OP_PlayerHouseBaseScreenMsg',145,1),(14708,60024,60024,'OP_PlayerHouseCloseUIMsg',149,1),(14709,60024,60024,'OP_PlayerHouseDisplayStatusMsg',148,1),(14710,60024,60024,'OP_PlayerHousePurchaseScreenMsg',146,1),(14711,60024,60024,'OP_PlayerMadeInstances',140,1),(14712,60024,60024,'OP_PlayerMadeInstancesScreen',139,1),(14713,60024,60024,'OP_PlayerPollAnswer',557,1),(14714,60024,60024,'OP_PlayerPollPopup',556,1),(14715,60024,60024,'OP_PlayLon',511,1),(14716,60024,60024,'OP_PointOfInterest',732,1),(14717,60024,60024,'OP_PointOfInterest2',733,1),(14718,60024,60024,'OP_PopulateSkillMapsMsg',215,1),(14719,60024,60024,'OP_PositionBoatTransportMsg',251,1),(14720,60024,60024,'OP_PositionMoveableObject',162,1),(14721,60024,60024,'OP_PostPossessionMsg',454,1),(14722,60024,60024,'OP_PredictionUpdateMsg',37,1),(14723,60024,60024,'OP_PrePossessionMsg',453,1),(14724,60024,60024,'OP_PromoFlagsDetailsMsg',374,1),(14725,60024,60024,'OP_PublishHouse',138,1),(14726,60024,60024,'OP_PurchaseConsignmentLoreCheckRe',407,1),(14727,60024,60024,'OP_PurchaseConsignmentRequestMsg',128,1),(14728,60024,60024,'OP_QueAllBgSolo',564,1),(14729,60024,60024,'OP_QuestionnaireMsg',260,1),(14730,60024,60024,'OP_QuestJournalInspectMsg',114,1),(14731,60024,60024,'OP_QuestJournalOpenMsg',113,1),(14732,60024,60024,'OP_QuestJournalSetVisibleMsg',115,1),(14733,60024,60024,'OP_QuestJournalWaypointMsg',116,1),(14734,60024,60024,'OP_QuestReward',320,1),(14735,60024,60024,'OP_QuickbarInitMsg',256,1),(14736,60024,60024,'OP_QuickbarUpdateMsg',257,1),(14737,60024,60024,'OP_RaceRestrictionMsg',439,1),(14738,60024,60024,'OP_ReadBookPageMsg',196,1),(14739,60024,60024,'OP_ReadyForTakeOffMsg',192,1),(14740,60024,60024,'OP_ReadyToZoneMsg',84,1),(14741,60024,60024,'OP_RecipeBook',538,1),(14742,60024,60024,'OP_RecipeDetailsMsg',72,1),(14743,60024,60024,'OP_RecipeList',744,1),(14744,60024,60024,'OP_RecipeListUnknown',593,1),(14745,60024,60024,'OP_RelinquishHouseMsg',153,1),(14746,60024,60024,'OP_ReloadLocalizedTxtMsg',355,1),(14747,60024,60024,'OP_RemoteCmdMsg',42,1),(14748,60024,60024,'OP_RemoveClientFromGroupMsg',85,1),(14749,60024,60024,'OP_RemoveConcentrationMsg',112,1),(14750,60024,60024,'OP_RemoveGroupFromGroupMsg',86,1),(14751,60024,60024,'OP_RemoveSpellEffectMsg',111,1),(14752,60024,60024,'OP_RenameGuildMsg',282,1),(14753,60024,60024,'OP_ReplaceableSubMeshesMsg',165,1),(14754,60024,60024,'OP_ReportMsg',380,1),(14755,60024,60024,'OP_RequestCampMsg',50,1),(14756,60024,60024,'OP_RequestGuildBankEventDetailsMs',280,1),(14757,60024,60024,'OP_RequestGuildEventDetailsMsg',271,1),(14758,60024,60024,'OP_RequestGuildInfoMsg',273,1),(14759,60024,60024,'OP_RequestGuildMembershipMsg',356,1),(14760,60024,60024,'OP_RequestHelpRepathMsg',206,1),(14761,60024,60024,'OP_RequestRecipeDetailsMsg',71,1),(14762,60024,60024,'OP_RequestTargetLocMsg',207,1),(14763,60024,60024,'OP_Research',745,1),(14764,60024,60024,'OP_ResendWorldChannelsMsg',443,1),(14765,60024,60024,'OP_ReskinCharacterRequestMsg',15,1),(14766,60024,60024,'OP_RestartZoneMsg',412,1),(14767,60024,60024,'OP_RewardPackMsg',281,1),(14768,60024,60024,'OP_SatMsg',189,1),(14769,60024,60024,'OP_SavageBarInitMsg',580,1),(14770,60024,60024,'OP_SelectZoneTeleporterDestinatio',354,1),(14771,60024,60024,'OP_SendLatestRequestMsg',97,1),(14772,60024,60024,'OP_ServerPlayCharacterReplyMsg',24,1),(14773,60024,60024,'OP_ServerPlayCharacterRequestMsg',23,1),(14774,60024,60024,'OP_SetInstanceDisplayNameMsg',440,1),(14775,60024,60024,'OP_SetRemoteCmdsMsg',41,1),(14776,60024,60024,'OP_SetSocialMsg',99,1),(14777,60024,60024,'OP_ShaderCustomizationMsg',164,1),(14778,60024,60024,'OP_ShowCreateFromRecipeUIMsg',219,1),(14779,60024,60024,'OP_ShowIllusionsMsg',193,1),(14780,60024,60024,'OP_ShowItemCreationProcessUIMsg',223,1),(14781,60024,60024,'OP_ShowRecipeBookMsg',226,1),(14782,60024,60024,'OP_ShowZoneTeleporterDestinations',353,1),(14783,60024,60024,'OP_SitMsg',187,1),(14784,60024,60024,'OP_SkillInfoRequest',514,1),(14785,60024,60024,'OP_SkillInfoResponse',515,1),(14786,60024,60024,'OP_SOEAllAccess',609,1),(14787,60024,60024,'OP_SpellGainedMsg',262,1),(14788,60024,60024,'OP_StandMsg',188,1),(14789,60024,60024,'OP_StoodMsg',190,1),(14790,60024,60024,'OP_StopItemCreationMsg',222,1),(14791,60024,60024,'OP_StoppedLootingMsg',186,1),(14792,60024,60024,'OP_StopTrackingMsg',391,1),(14793,60024,60024,'OP_SubmitCharCust',562,1),(14794,60024,60024,'OP_SupplyDepot',742,1),(14795,60024,60024,'OP_SysClient',218,1),(14796,60024,60024,'OP_TeleportWithinZoneMsg',79,1),(14797,60024,60024,'OP_TeleportWithinZoneNoReloadMsg',80,1),(14798,60024,60024,'OP_TintWidgetsMsg',170,1),(14799,60024,60024,'OP_TitleUpdateMsg',384,1),(14800,60024,60024,'OP_TrackingUpdateMsg',389,1),(14801,60024,60024,'OP_TradeskillList',711,1),(14802,60024,60024,'OP_TraitsList',734,1),(14803,60024,60024,'OP_UIEvent',527,1),(14804,60024,60024,'OP_UIResetMsg',174,1),(14805,60024,60024,'OP_UISettingsResponseMsg',173,1),(14806,60024,60024,'OP_Unknown',767,1),(14807,60024,60024,'OP_UnknownNpcMsg',373,1),(14808,60024,60024,'OP_UpdateActivePublicZonesMsg',372,1),(14809,60024,60024,'OP_UpdateCharacterSheetMsg',63,1),(14810,60024,60024,'OP_UpdateClientPredFlagsMsg',245,1),(14811,60024,60024,'OP_UpdateDebugRadiiMsg',379,1),(14812,60024,60024,'OP_UpdateGroupMemberDataMsg',388,1),(14813,60024,60024,'OP_UpdateHouseAccessDataMsg',144,1),(14814,60024,60024,'OP_UpdateHouseDataMsg',143,1),(14815,60024,60024,'OP_UpdateInventoryMsg',68,1),(14816,60024,60024,'OP_UpdateItemCreationProcessUIMsg',224,1),(14817,60024,60024,'OP_UpdateMotdMsg',208,1),(14818,60024,60024,'OP_UpdateOpportunityMsg',75,1),(14819,60024,60024,'OP_UpdatePositionMsg',39,1),(14820,60024,60024,'OP_UpdateRaidMsg',381,1),(14821,60024,60024,'OP_UpdateRecipeBookMsg',70,1),(14822,60024,60024,'OP_UpdateSkillBookMsg',73,1),(14823,60024,60024,'OP_UpdateSkillsMsg',74,1),(14824,60024,60024,'OP_UpdateSpellBookMsg',66,1),(14825,60024,60024,'OP_UpdateTargetLocMsg',62,1),(14826,60024,60024,'OP_UpdateTargetMsg',61,1),(14827,60024,60024,'OP_UpdateTitleCmd',494,1),(14828,60024,60024,'OP_UseAdornment',722,1),(14829,60024,60024,'OP_VideoUploaded',579,1),(14830,60024,60024,'OP_VoiceChatChannel',520,1),(14831,60024,60024,'OP_VoiceChatServer',738,1),(14832,60024,60024,'OP_WaypointReplyMsg',349,1),(14833,60024,60024,'OP_WaypointRequestMsg',348,1),(14834,60024,60024,'OP_WaypointSelectMsg',350,1),(14835,60024,60024,'OP_WaypointUpdateMsg',351,1),(14836,60024,60024,'OP_Weakness',583,1),(14837,60024,60024,'OP_WhoQueryReplyMsg',54,1),(14838,60024,60024,'OP_WhoQueryRequestMsg',53,1),(14839,60024,60024,'OP_WorldDataChangeMsg',410,1),(14840,60024,60024,'OP_WorldDataUpdateMsg',237,1),(14841,60024,60024,'OP_WorldListMsg',8,1),(14842,60024,60024,'OP_WorldPingMsg',399,1),(14843,60024,60024,'OP_WorldShutdownUpdateMsg',403,1),(14844,60024,60024,'OP_WorldStatusChangeMsg',6,1),(14845,60024,60024,'OP_WorldTravelAvail',572,1),(14846,60024,60024,'OP_WSAcctLockStatusMsg',205,1),(14847,60024,60024,'OP_WSCreateCharacterReplyMsg',14,1),(14848,60024,60024,'OP_WSCreateCharacterRequestMsg',13,1),(14849,60024,60024,'OP_WSLoginRequestMsg',2,1),(14850,60024,60024,'OP_WSServerHideMsg',366,1),(14851,60024,60024,'OP_WSServerLockMsg',364,1),(14852,60024,60024,'OP_WSStatusReplyMsg',5,1),(14853,60024,60024,'OP_ZoneBgInstanceList',568,1),(14854,60024,60024,'OP_ZoneInfoMsg',33,1),(14855,60024,60024,'OP_ZoneInstanceCreateReplyMsg',30,1),(14856,60024,60024,'OP_ZoneInstanceDestroyedMsg',31,1),(14857,60024,60024,'OP_ZoneMOTDMsg',45,1),(14858,60024,60024,'OP_ZonesStatusMsg',103,1),(14859,60024,60024,'OP_ZonesStatusRequestMsg',102,1),(14860,60024,60024,'OP_ZoneToFriendReplyMsg',284,1),(14861,60024,60024,'OP_ZoneToFriendRequestMsg',283,1),(15327,60036,60069,'OP_AchievementUpdateMsg',749,1),(15328,60036,60069,'OP_AddSocialStructureStandingMsg',250,1),(15329,60036,60069,'OP_AdvancementRequestMsg',395,1),(15330,60036,60069,'OP_AdventureList',489,1),(15331,60036,60069,'OP_AFKUpdateMsg',371,1),(15332,60036,60069,'OP_AfterInvSpellUpdate',69,1),(15333,60036,60069,'OP_AllCharactersDescReplyMsg',10,1),(15334,60036,60069,'OP_AllCharactersDescRequestMsg',9,1),(15335,60036,60069,'OP_AllWSDescRequestMsg',7,1),(15336,60036,60069,'OP_AnonUpdateMsg',372,1),(15337,60036,60069,'OP_ArenaCreate',457,1),(15338,60036,60069,'OP_ArenaGameTypesMsg',446,1),(15339,60036,60069,'OP_ArenaList',458,1),(15340,60036,60069,'OP_ArenaWindow',466,1),(15341,60036,60069,'OP_AttackAllowed',501,1),(15342,60036,60069,'OP_AttackNotAllowed',502,1),(15343,60036,60069,'OP_AuctionAbortMsg',437,1),(15344,60036,60069,'OP_AuctionCharacter',434,1),(15345,60036,60069,'OP_AuctionCharacterReply',435,1),(15346,60036,60069,'OP_AuctionCoin',432,1),(15347,60036,60069,'OP_AuctionCoinReply',433,1),(15348,60036,60069,'OP_AuctionCommitMsg',436,1),(15349,60036,60069,'OP_AuctionItem',430,1),(15350,60036,60069,'OP_AuctionItemReply',431,1),(15351,60036,60069,'OP_AuditAuctionEventMsg',447,1),(15352,60036,60069,'OP_AvatarCreatedMsg',46,1),(15353,60036,60069,'OP_AvatarDestroyedMsg',47,1),(15354,60036,60069,'OP_AvatarUpdateMsg',361,1),(15355,60036,60069,'OP_BadLanguageFilter',520,1),(15356,60036,60069,'OP_BagOptions',503,1),(15357,60036,60069,'OP_BeginItemCreationMsg',221,1),(15358,60036,60069,'OP_BeginTrackingMsg',391,1),(15359,60036,60069,'OP_BioUpdateMsg',363,1),(15360,60036,60069,'OP_BrokerAddBag',293,1),(15361,60036,60069,'OP_BrokerRemoveBag',294,1),(15362,60036,60069,'OP_BrokerSellList',692,1),(15363,60036,60069,'OP_BuyPlayerHouseMsg',150,1),(15364,60036,60069,'OP_BuyPlayerHouseTintMsg',151,1),(15365,60036,60069,'OP_CampAbortedMsg',52,1),(15366,60036,60069,'OP_CampClientMsg',388,1),(15367,60036,60069,'OP_CampStartedMsg',51,1),(15368,60036,60069,'OP_CancelCreateFromRecipeMsg',220,1),(15369,60036,60069,'OP_CancelledFeignMsg',216,1),(15370,60036,60069,'OP_CancelMoveObjectModeMsg',163,1),(15371,60036,60069,'OP_CancelSpellCast',490,1),(15372,60036,60069,'OP_ChangeServerControlFlagMsg',247,1),(15373,60036,60069,'OP_ChangeZoneMsg',77,1),(15374,60036,60069,'OP_CharacterAchievements',748,1),(15375,60036,60069,'OP_CharacterCreatedDungeons',552,1),(15376,60036,60069,'OP_CharacterCurrency',747,1),(15377,60036,60069,'OP_CharacterHousingList',508,1),(15378,60036,60069,'OP_CharacterLinkdeadMsg',415,1),(15379,60036,60069,'OP_CharacterMerc',65,1),(15380,60036,60069,'OP_CharacterMounts',585,1),(15381,60036,60069,'OP_CharacterPet',64,1),(15382,60036,60069,'OP_CharNameChangedMsg',352,1),(15383,60036,60069,'OP_CharRenamed',713,1),(15384,60036,60069,'OP_CharTransferCommitReplyMsg',423,1),(15385,60036,60069,'OP_CharTransferCommitRequestMsg',421,1),(15386,60036,60069,'OP_CharTransferReplyMsg',419,1),(15387,60036,60069,'OP_CharTransferRequestMsg',418,1),(15388,60036,60069,'OP_CharTransferRollbackReplyMsg',422,1),(15389,60036,60069,'OP_CharTransferRollbackRequestMsg',420,1),(15390,60036,60069,'OP_CharTransferStartReplyMsg',417,1),(15391,60036,60069,'OP_CharTransferStartRequestMsg',416,1),(15392,60036,60069,'OP_CharTransferValidateReplyMsg',439,1),(15393,60036,60069,'OP_CharTransferValidateRequestMsg',438,1),(15394,60036,60069,'OP_ChatCreateChannelMsg',286,1),(15395,60036,60069,'OP_ChatFiltersMsg',335,1),(15396,60036,60069,'OP_ChatJoinChannelMsg',287,1),(15397,60036,60069,'OP_ChatLeaveChannelMsg',289,1),(15398,60036,60069,'OP_ChatRelationshipUpdateMsg',184,1),(15399,60036,60069,'OP_ChatSendFriendsMsg',296,1),(15400,60036,60069,'OP_ChatSendIgnoresMsg',297,1),(15401,60036,60069,'OP_ChatTellChannelMsg',290,1),(15402,60036,60069,'OP_ChatTellUserMsg',291,1),(15403,60036,60069,'OP_ChatToggleFriendMsg',292,1),(15404,60036,60069,'OP_ChatToggleIgnoreMsg',295,1),(15405,60036,60069,'OP_ChatWhoChannelMsg',288,1),(15406,60036,60069,'OP_ClearDataMsg',98,1),(15407,60036,60069,'OP_ClearForLandingMsg',492,1),(15408,60036,60069,'OP_ClearForTakeOffMsg',191,1),(15409,60036,60069,'OP_ClientCmdMsg',58,1),(15410,60036,60069,'OP_ClientFellMsg',386,1),(15411,60036,60069,'OP_ClientIdleBeginMsg',406,1),(15412,60036,60069,'OP_ClientIdleEndMsg',407,1),(15413,60036,60069,'OP_ClientInDeathRegionMsg',387,1),(15414,60036,60069,'OP_ClientTeleportRequestMsg',78,1),(15415,60036,60069,'OP_ClientTeleportToLocationMsg',245,1),(15416,60036,60069,'OP_CloseGroupInviteWindowMsg',398,1),(15417,60036,60069,'OP_CollectAllHouseItemsMsg',152,1),(15418,60036,60069,'OP_ConsignItemRequestMsg',126,1),(15419,60036,60069,'OP_ConsignItemResponseMsg',127,1),(15420,60036,60069,'OP_ConsignmentCloseStoreMsg',125,1),(15421,60036,60069,'OP_ConsignRemoveItemsMsg',379,1),(15422,60036,60069,'OP_ConsignViewCreateMsg',376,1),(15423,60036,60069,'OP_ConsignViewGetPageMsg',377,1),(15424,60036,60069,'OP_ConsignViewReleaseMsg',378,1),(15425,60036,60069,'OP_ConsignViewSortMsg',384,1),(15426,60036,60069,'OP_CorruptedClientMsg',410,1),(15427,60036,60069,'OP_CreateBoatTransportsMsg',251,1),(15428,60036,60069,'OP_CreateCharacterDungeon',548,1),(15429,60036,60069,'OP_CreateCharacterReplyMsg',12,1),(15430,60036,60069,'OP_CreateCharacterRequestMsg',11,1),(15431,60036,60069,'OP_CreateCharFromCBBReplyMsg',427,1),(15432,60036,60069,'OP_CreateCharFromCBBRequestMsg',426,1),(15433,60036,60069,'OP_CreateGuildReplyMsg',120,1),(15434,60036,60069,'OP_CreateGuildRequestMsg',119,1),(15435,60036,60069,'OP_CreateZoneInstanceMsg',29,1),(15436,60036,60069,'OP_CsCategoryRequestMsg',368,1),(15437,60036,60069,'OP_CsCategoryResponseMsg',369,1),(15438,60036,60069,'OP_CSTicketAddCommentMsg',234,1),(15439,60036,60069,'OP_CSTicketChangeNotificationMsg',236,1),(15440,60036,60069,'OP_CSTicketCommentRequestMsg',231,1),(15441,60036,60069,'OP_CSTicketCommentResponseMsg',232,1),(15442,60036,60069,'OP_CSTicketCreateMsg',233,1),(15443,60036,60069,'OP_CSTicketDeleteMsg',235,1),(15444,60036,60069,'OP_CSTicketHeaderRequestMsg',229,1),(15445,60036,60069,'OP_CSTicketInfoMsg',230,1),(15446,60036,60069,'OP_CSToolAccessResponseMsg',389,1),(15447,60036,60069,'OP_CSToolsRequestMsg',248,1),(15448,60036,60069,'OP_CSToolsResponseMsg',249,1),(15449,60036,60069,'OP_CurrentPet',486,1),(15450,60036,60069,'OP_CustomizationPurchaseRequestMs',167,1),(15451,60036,60069,'OP_CustomizationReplyMsg',169,1),(15452,60036,60069,'OP_CustomizationSetRequestMsg',168,1),(15453,60036,60069,'OP_CustomizeHouseDisplay',738,1),(15454,60036,60069,'OP_DailyObjectives',598,1),(15455,60036,60069,'OP_DefaultGroupOptionsMsg',198,1),(15456,60036,60069,'OP_DefaultGroupOptionsRequestMsg',197,1),(15457,60036,60069,'OP_DeleteCharacterReplyMsg',17,1),(15458,60036,60069,'OP_DeleteCharacterRequestMsg',16,1),(15459,60036,60069,'OP_DeleteGuildMsg',123,1),(15460,60036,60069,'OP_DestUpdateReq',210,1),(15461,60036,60069,'OP_DialogCloseMsg',110,1),(15462,60036,60069,'OP_DialogSelectMsg',109,1),(15463,60036,60069,'OP_DispatchClientCmdMsg',60,1),(15464,60036,60069,'OP_DispatchESMsg',59,1),(15465,60036,60069,'OP_DispatchMsg',452,1),(15466,60036,60069,'OP_DispatchSpellCmdMsg',179,1),(15467,60036,60069,'OP_DisplayDebugNLLPointsMsg',255,1),(15468,60036,60069,'OP_DisplayEventMsg',453,1),(15469,60036,60069,'OP_DisplayExchangeScreenMsg',445,1),(15470,60036,60069,'OP_DisplayGroupOptionsScreenMsg',200,1),(15471,60036,60069,'OP_DisplayInnVisitScreenMsg',202,1),(15472,60036,60069,'OP_DisplayMailScreenMsg',405,1),(15473,60036,60069,'OP_DisplayTSEventReactionMsg',225,1),(15474,60036,60069,'OP_DisplayWarningMsg',266,1),(15475,60036,60069,'OP_DoneLoadingEntityResourcesMsg',36,1),(15476,60036,60069,'OP_DoneLoadingZoneResourcesMsg',34,1),(15477,60036,60069,'OP_DoneSendingInitialEntitiesMsg',35,1),(15478,60036,60069,'OP_DressingRoom',511,1),(15479,60036,60069,'OP_DumpSchedulerMsg',203,1),(15480,60036,60069,'OP_DungeonMakerEnter',549,1),(15481,60036,60069,'OP_DungeonMakerItemRequest',551,1),(15482,60036,60069,'OP_DungeonMakerItemResponse',583,1),(15483,60036,60069,'OP_DungeonMakerToolboxList',553,1),(15484,60036,60069,'OP_DungeonMakerUnknown',554,1),(15485,60036,60069,'OP_DungeonMakerUnknown1',555,1),(15486,60036,60069,'OP_DungeonPlayAsAvatarList',752,1),(15487,60036,60069,'OP_DungeonPlayAsAvatarSelected',753,1),(15488,60036,60069,'OP_EncounterBrokenMsg',264,1),(15489,60036,60069,'OP_EnterHouseMsg',154,1),(15490,60036,60069,'OP_EnterMoveObjectModeMsg',161,1),(15491,60036,60069,'OP_EntityVerbsReplyMsg',181,1),(15492,60036,60069,'OP_EntityVerbsRequestMsg',180,1),(15493,60036,60069,'OP_EntityVerbsVerbMsg',182,1),(15494,60036,60069,'OP_EqArenaResultsCmd',703,1),(15495,60036,60069,'OP_EqAvailWorldChannelsCmd',690,1),(15496,60036,60069,'OP_EqBetaCopyRequest',609,1),(15497,60036,60069,'OP_EqCannedEmoteCmd',632,1),(15498,60036,60069,'OP_EqChatChannelUpdateCmd',688,1),(15499,60036,60069,'OP_EqChoiceWinCmd',669,1),(15500,60036,60069,'OP_EqCloseWindowCmd',661,1),(15501,60036,60069,'OP_EqCollectionFilterCmd',648,1),(15502,60036,60069,'OP_EqCollectionItemCmd',649,1),(15503,60036,60069,'OP_EqCollectionUpdateCmd',647,1),(15504,60036,60069,'OP_EqConsignmentItemsCmd',693,1),(15505,60036,60069,'OP_EqCreateGhostCmd',614,1),(15506,60036,60069,'OP_EqCreateListBoxCmd',629,1),(15507,60036,60069,'OP_EqCreateSignWidgetCmd',616,1),(15508,60036,60069,'OP_EqCreateWidgetCmd',615,1),(15509,60036,60069,'OP_EqDebugPVDCmd',682,1),(15510,60036,60069,'OP_EqDestroyGhostCmd',617,1),(15511,60036,60069,'OP_EqDialogCloseCmd',645,1),(15512,60036,60069,'OP_EqDialogOpenCmd',644,1),(15513,60036,60069,'OP_EqDisplaySpellFailCmd',665,1),(15514,60036,60069,'OP_EqDisplayTextCmd',613,1),(15515,60036,60069,'OP_EqDrawablePathGraphCmd',643,1),(15516,60036,60069,'OP_EqEnableGameEventCmd',675,1),(15517,60036,60069,'OP_EqEnableWindowCmd',677,1),(15518,60036,60069,'OP_EqExamineInfoCmd',660,1),(15519,60036,60069,'OP_EqFactionUpdateCmd',646,1),(15520,60036,60069,'OP_EqFlashWindowCmd',678,1),(15521,60036,60069,'OP_EqGetProbsCmd',686,1),(15522,60036,60069,'OP_EqGroupMemberRemovedCmd',639,1),(15523,60036,60069,'OP_EqGuildBankEventActionCmd',704,1),(15524,60036,60069,'OP_EqGuildBankExamineInfoCmd',705,1),(15525,60036,60069,'OP_EqHearChainEffectCmd',640,1),(15526,60036,60069,'OP_EqHearChatCmd',612,1),(15527,60036,60069,'OP_EqHearCombatCmd',621,1),(15528,60036,60069,'OP_EqHearConsiderCmd',627,1),(15529,60036,60069,'OP_EqHearDeathCmd',638,1),(15530,60036,60069,'OP_EQHearDispellCmd',750,1),(15531,60036,60069,'OP_EqHearDrowningCmd',637,1),(15532,60036,60069,'OP_EqHearHealCmd',687,1),(15533,60036,60069,'OP_EqHearPlayFlavorCmd',680,1),(15534,60036,60069,'OP_EQHearProcCmd',623,1),(15535,60036,60069,'OP_EQHearResEffectCmd',624,1),(15536,60036,60069,'OP_EqHearSpellCastCmd',622,1),(15537,60036,60069,'OP_EqHearSpellFizzleCmd',626,1),(15538,60036,60069,'OP_EqHearSpellInterruptCmd',625,1),(15539,60036,60069,'OP_EqHearSpellNoLandCmd',706,1),(15540,60036,60069,'OP_EQHearThreatCmd',744,1),(15541,60036,60069,'OP_EqHelpPathClearCmd',658,1),(15542,60036,60069,'OP_EqHelpPathCmd',657,1),(15543,60036,60069,'OP_EqInspectPCResultsCmd',642,1),(15544,60036,60069,'OP_EqInstructionWindowCloseCmd',672,1),(15545,60036,60069,'OP_EqInstructionWindowCmd',671,1),(15546,60036,60069,'OP_EqInstructionWindowGoalCmd',673,1),(15547,60036,60069,'OP_EqInstructionWindowTaskCmd',674,1),(15548,60036,60069,'OP_EqJunctionListCmd',663,1),(15549,60036,60069,'OP_EqMapExplorationCmd',696,1),(15550,60036,60069,'OP_EqMentoring',651,1),(15551,60036,60069,'OP_EqPlaySound3DCmd',635,1),(15552,60036,60069,'OP_EqPlaySoundCmd',634,1),(15553,60036,60069,'OP_EqPlayVoiceCmd',636,1),(15554,60036,60069,'OP_EqQuestGroupCmd',653,1),(15555,60036,60069,'OP_EqQuestionnaireCmd',684,1),(15556,60036,60069,'OP_EqQuestJournalReplyCmd',652,1),(15557,60036,60069,'OP_EqQuestJournalUpdateCmd',650,1),(15558,60036,60069,'OP_EqReceiveOfferCmd',641,1),(15559,60036,60069,'OP_EqResurrectedCmd',668,1),(15560,60036,60069,'OP_EqSetControlGhostCmd',619,1),(15561,60036,60069,'OP_EqSetDebugPathPointsCmd',630,1),(15562,60036,60069,'OP_EqSetDefaultVerbCmd',670,1),(15563,60036,60069,'OP_EqSetPOVGhostCmd',620,1),(15564,60036,60069,'OP_EqShowBookCmd',683,1),(15565,60036,60069,'OP_EqShowDeathWindowCmd',664,1),(15566,60036,60069,'OP_EqShowWindowCmd',676,1),(15567,60036,60069,'OP_EqSpellCastEndCmd',667,1),(15568,60036,60069,'OP_EqSpellCastStartCmd',666,1),(15569,60036,60069,'OP_EqSpellMoveToRangeAndRetryCmd',698,1),(15570,60036,60069,'OP_EqStartBrokerCmd',695,1),(15571,60036,60069,'OP_EqStateCmd',633,1),(15572,60036,60069,'OP_EqStoreLogCmd',697,1),(15573,60036,60069,'OP_EqUpdateBankCmd',659,1),(15574,60036,60069,'OP_EqUpdateGhostCmd',618,1),(15575,60036,60069,'OP_EqUpdateLootCmd',662,1),(15576,60036,60069,'OP_EqUpdateMerchantCmd',654,1),(15577,60036,60069,'OP_EqUpdatePlayerMailCmd',699,1),(15578,60036,60069,'OP_EqUpdatePlayerTradeCmd',656,1),(15579,60036,60069,'OP_EqUpdateSignWidgetCmd',681,1),(15580,60036,60069,'OP_EqUpdateStoreCmd',655,1),(15581,60036,60069,'OP_EqUpdateSubClassesCmd',628,1),(15582,60036,60069,'OP_EqUpdateTargetCmd',691,1),(15583,60036,60069,'OP_EqWhoChannelQueryReplyCmd',689,1),(15584,60036,60069,'OP_ESInitMsg',25,1),(15585,60036,60069,'OP_ESLoginRequestMsg',3,1),(15586,60036,60069,'OP_ESReadyForClientsMsg',26,1),(15587,60036,60069,'OP_ESStatusMsg',100,1),(15588,60036,60069,'OP_ESWeatherRequestEndMsg',105,1),(15589,60036,60069,'OP_ESWeatherRequestMsg',104,1),(15590,60036,60069,'OP_ESZoneInstanceStatusMsg',101,1),(15591,60036,60069,'OP_ExamineConsignmentRequestMsg',171,1),(15592,60036,60069,'OP_ExamineConsignmentResponseMsg',172,1),(15593,60036,60069,'OP_ExamineInfoRequestMsg',256,1),(15594,60036,60069,'OP_ExamineItemRequestMsg',195,1),(15595,60036,60069,'OP_ExitHouseMsg',155,1),(15596,60036,60069,'OP_ExpectClientAsCharacterReplyMs',22,1),(15597,60036,60069,'OP_ExpectClientAsCharacterRequest',32,1),(15598,60036,60069,'OP_ExpPurchWindow',729,1),(15599,60036,60069,'OP_FellowshipExpMsg',122,1),(15600,60036,60069,'OP_FlightPathsMsg',414,1),(15601,60036,60069,'OP_GameWorldTimeMsg',43,1),(15602,60036,60069,'OP_PaperdollImage',578,1),(15603,60036,60069,'OP_GetAuctionAssetIDMsg',442,1),(15604,60036,60069,'OP_GetAuctionAssetIDReplyMsg',443,1),(15605,60036,60069,'OP_GetAvatarAccessRequestForCSToo',394,1),(15606,60036,60069,'OP_GetCharacterSerializedReplyMsg',425,1),(15607,60036,60069,'OP_GetCharacterSerializedRequestM',424,1),(15608,60036,60069,'OP_GroupCreatedMsg',88,1),(15609,60036,60069,'OP_GroupDestroyedMsg',89,1),(15610,60036,60069,'OP_GroupLeaderChangedMsg',93,1),(15611,60036,60069,'OP_GroupMemberAddedMsg',90,1),(15612,60036,60069,'OP_GroupMemberRemovedMsg',91,1),(15613,60036,60069,'OP_GroupOptionsMsg',199,1),(15614,60036,60069,'OP_GroupRemovedFromGroupMsg',92,1),(15615,60036,60069,'OP_GroupResendOOZDataMsg',94,1),(15616,60036,60069,'OP_GroupSettingsChangedMsg',95,1),(15617,60036,60069,'OP_GuildBankActionMsg',275,1),(15618,60036,60069,'OP_GuildBankActionResponseMsg',276,1),(15619,60036,60069,'OP_GuildBankEventListMsg',280,1),(15620,60036,60069,'OP_GuildBankItemDetailsRequestMsg',277,1),(15621,60036,60069,'OP_GuildBankItemDetailsResponseMs',278,1),(15622,60036,60069,'OP_GuildBankUpdateMsg',279,1),(15623,60036,60069,'OP_GuildEventActionMsg',270,1),(15624,60036,60069,'OP_GuildEventAddMsg',269,1),(15625,60036,60069,'OP_GuildEventDetailsMsg',273,1),(15626,60036,60069,'OP_GuildEventListMsg',271,1),(15627,60036,60069,'OP_GuildEventMsg',268,1),(15628,60036,60069,'OP_GuildMembershipResponseMsg',358,1),(15629,60036,60069,'OP_GuildRecruiting',709,1),(15630,60036,60069,'OP_GuildRecruitingDetails',710,1),(15631,60036,60069,'OP_GuildRecruitingImage',711,1),(15632,60036,60069,'OP_GuildRecruitingMemberInfo',708,1),(15633,60036,60069,'OP_GuildsayMsg',121,1),(15634,60036,60069,'OP_GuildStatusUpdate',702,1),(15635,60036,60069,'OP_GuildUpdateMsg',124,1),(15636,60036,60069,'OP_HeritageMsg',10001,1),(15637,60036,60069,'OP_HideIllusionsMsg',194,1),(15638,60036,60069,'OP_HouseAccessRemoveMsg',158,1),(15639,60036,60069,'OP_HouseAccessSetMsg',157,1),(15640,60036,60069,'OP_HouseCustomizationScreenMsg',166,1),(15641,60036,60069,'OP_HouseDefaultAccessSetMsg',156,1),(15642,60036,60069,'OP_HouseDeletedRemotelyMsg',142,1),(15643,60036,60069,'OP_HouseItemsList',485,1),(15644,60036,60069,'OP_HousingDataChangedMsg',428,1),(15645,60036,60069,'OP_HousingRestoreMsg',429,1),(15646,60036,60069,'OP_InspectPlayerMsg',364,1),(15647,60036,60069,'OP_InspectPlayerRequestMsg',451,1),(15648,60036,60069,'OP_InviteRequestMsg',448,1),(15649,60036,60069,'OP_InviteResponseMsg',449,1),(15650,60036,60069,'OP_InviteTargetResponseMsg',450,1),(15651,60036,60069,'OP_JoinGuildNotifyMsg',360,1),(15652,60036,60069,'OP_JournalQuestStoryline',751,1),(15653,60036,60069,'OP_KeymapDataMsg',177,1),(15654,60036,60069,'OP_KeymapLoadMsg',175,1),(15655,60036,60069,'OP_KeymapNoneMsg',176,1),(15656,60036,60069,'OP_KeymapSaveMsg',178,1),(15657,60036,60069,'OP_KnowledgebaseRequestMsg',227,1),(15658,60036,60069,'OP_KnowledgebaseResponseMsg',228,1),(15659,60036,60069,'OP_KnowledgeWindowSlotMappingMsg',370,1),(15660,60036,60069,'OP_KnownLanguagesMsg',239,1),(15661,60036,60069,'OP_Launchpad',576,1),(15662,60036,60069,'OP_LeaveGuildNotifyMsg',359,1),(15663,60036,60069,'OP_LevelChangedMsg',262,1),(15664,60036,60069,'OP_LFGGroupSearch',505,1),(15665,60036,60069,'OP_LFGUpdateMsg',519,1),(15666,60036,60069,'OP_LikeOption',136,1),(15667,60036,60069,'OP_LoadCalendarEvents',579,1),(15668,60036,60069,'OP_LoadWelcomeWindow',561,1),(15669,60036,60069,'OP_LoginByNumRequestMsg',1,1),(15670,60036,60069,'OP_LoginReplyMsg',4,1),(15671,60036,60069,'OP_LoginRequestMsg',0,1),(15672,60036,60069,'OP_LootItemsRequestMsg',185,1),(15673,60036,60069,'OP_Lottery',707,1),(15674,60036,60069,'OP_LSCheckAcctLockMsg',204,1),(15675,60036,60069,'OP_LsClientAlertlogReplyMsg',243,1),(15676,60036,60069,'OP_LsClientBaselogReplyMsg',241,1),(15677,60036,60069,'OP_LsClientCrashlogReplyMsg',242,1),(15678,60036,60069,'OP_LsClientVerifylogReplyMsg',244,1),(15679,60036,60069,'OP_LsRequestClientCrashLogMsg',240,1),(15680,60036,60069,'OP_LSServerLockMsg',366,1),(15681,60036,60069,'OP_MacroInitMsg',259,1),(15682,60036,60069,'OP_MacroUpdateMsg',260,1),(15683,60036,60069,'OP_MailCommitSendMessageMsg',344,1),(15684,60036,60069,'OP_MailDeleteMessageMsg',340,1),(15685,60036,60069,'OP_MailEventNotificationMsg',412,1),(15686,60036,60069,'OP_MailGetHeadersReplyMsg',341,1),(15687,60036,60069,'OP_MailGetMessageMsg',338,1),(15688,60036,60069,'OP_MailGetMessageReplyMsg',342,1),(15689,60036,60069,'OP_MailRemoveAttachFromMailMsg',346,1),(15690,60036,60069,'OP_MailSendMessageMsg',339,1),(15691,60036,60069,'OP_MailSendMessageReplyMsg',343,1),(15692,60036,60069,'OP_MailSendSystemMessageMsg',345,1),(15693,60036,60069,'OP_MakeGroupLeaderMsg',87,1),(15694,60036,60069,'OP_MapFogDataInitMsg',396,1),(15695,60036,60069,'OP_MapFogDataUpdateMsg',397,1),(15696,60036,60069,'OP_MapRequest',522,1),(15697,60036,60069,'OP_MarketAddFundsReply',530,1),(15698,60036,60069,'OP_MarketAddFundsRequest',529,1),(15699,60036,60069,'OP_MarketFundsUpdate',527,1),(15700,60036,60069,'OP_MarketPlaceItems',538,1),(15701,60036,60069,'OP_MarketPlacePrices',533,1),(15702,60036,60069,'OP_MarketPurchase',532,1),(15703,60036,60069,'OP_MentorPopup',559,1),(15704,60036,60069,'OP_MercHireWindow',754,1),(15705,60036,60069,'OP_MercUnknown',755,1),(15706,60036,60069,'OP_MigrateBoatTransportMsg',253,1),(15707,60036,60069,'OP_MigrateBoatTransportReplyMsg',254,1),(15708,60036,60069,'OP_MigrateClientToZoneReplyMsg',82,1),(15709,60036,60069,'OP_MigrateClientToZoneRequestMsg',81,1),(15710,60036,60069,'OP_ModifyGuildMsg',267,1),(15711,60036,60069,'OP_MonitorCharacterListMsg',56,1),(15712,60036,60069,'OP_MonitorCharacterListRequestMsg',57,1),(15713,60036,60069,'OP_MonitorReplyMsg',55,1),(15714,60036,60069,'OP_MOTDMsg',44,1),(15715,60036,60069,'OP_MoveableObjectPlacementCriteri',160,1),(15716,60036,60069,'OP_MoveLogUpdateMsg',401,1),(15717,60036,60069,'OP_NotifyApprenticeStoppedMentori',409,1),(15718,60036,60069,'OP_OfferQuestMsg',402,1),(15719,60036,60069,'OP_OnscreenMsgMsg',265,1),(15720,60036,60069,'OP_OpenCharCust',562,1),(15721,60036,60069,'OP_OutOfZoneMemberDataMsg',96,1),(15722,60036,60069,'OP_PayHouseUpkeepMsg',159,1),(15723,60036,60069,'OP_PerformCameraShakeMsg',214,1),(15724,60036,60069,'OP_PerformPlayerKnockbackMsg',213,1),(15725,60036,60069,'OP_PetOptions',201,1),(15726,60036,60069,'OP_PetOptionsResponse',582,1),(15727,60036,60069,'OP_PlayCharacterReplyMsg',19,1),(15728,60036,60069,'OP_PlayCharacterRequestMsg',18,1),(15729,60036,60069,'OP_PlayerHouseAccessUpdateMsg',147,1),(15730,60036,60069,'OP_PlayerHouseBaseScreenMsg',145,1),(15731,60036,60069,'OP_PlayerHouseCloseUIMsg',149,1),(15732,60036,60069,'OP_PlayerHouseDisplayStatusMsg',148,1),(15733,60036,60069,'OP_PlayerHousePurchaseScreenMsg',146,1),(15734,60036,60069,'OP_PlayerMadeInstances',140,1),(15735,60036,60069,'OP_PlayerMadeInstancesScreen',139,1),(15736,60036,60069,'OP_PlayerPollAnswer',558,1),(15737,60036,60069,'OP_PlayerPollPopup',557,1),(15738,60036,60069,'OP_PlayLon',512,1),(15739,60036,60069,'OP_PointOfInterest',733,1),(15740,60036,60069,'OP_PointOfInterest2',734,1),(15741,60036,60069,'OP_PopulateSkillMapsMsg',215,1),(15742,60036,60069,'OP_PositionBoatTransportMsg',252,1),(15743,60036,60069,'OP_PositionMoveableObject',162,1),(15744,60036,60069,'OP_PostPossessionMsg',455,1),(15745,60036,60069,'OP_PredictionUpdateMsg',37,1),(15746,60036,60069,'OP_PrePossessionMsg',454,1),(15747,60036,60069,'OP_PromoFlagsDetailsMsg',375,1),(15748,60036,60069,'OP_PublishHouse',138,1),(15749,60036,60069,'OP_PurchaseConsignmentLoreCheckRe',408,1),(15750,60036,60069,'OP_PurchaseConsignmentRequestMsg',128,1),(15751,60036,60069,'OP_QueAllBgSolo',565,1),(15752,60036,60069,'OP_QuestionnaireMsg',261,1),(15753,60036,60069,'OP_QuestJournalInspectMsg',114,1),(15754,60036,60069,'OP_QuestJournalOpenMsg',113,1),(15755,60036,60069,'OP_QuestJournalSetVisibleMsg',115,1),(15756,60036,60069,'OP_QuestJournalWaypointMsg',116,1),(15757,60036,60069,'OP_QuestReward',321,1),(15758,60036,60069,'OP_QuickbarInitMsg',257,1),(15759,60036,60069,'OP_QuickbarUpdateMsg',258,1),(15760,60036,60069,'OP_RaceRestrictionMsg',440,1),(15761,60036,60069,'OP_ReadBookPageMsg',196,1),(15762,60036,60069,'OP_ReadyForTakeOffMsg',192,1),(15763,60036,60069,'OP_ReadyToZoneMsg',84,1),(15764,60036,60069,'OP_RecipeBook',539,1),(15765,60036,60069,'OP_RecipeDetailsMsg',72,1),(15766,60036,60069,'OP_RecipeList',745,1),(15767,60036,60069,'OP_RecipeListUnknown',594,1),(15768,60036,60069,'OP_RelinquishHouseMsg',153,1),(15769,60036,60069,'OP_ReloadLocalizedTxtMsg',355,1),(15770,60036,60069,'OP_RemoteCmdMsg',42,1),(15771,60036,60069,'OP_RemoveClientFromGroupMsg',85,1),(15772,60036,60069,'OP_RemoveConcentrationMsg',112,1),(15773,60036,60069,'OP_RemoveGroupFromGroupMsg',86,1),(15774,60036,60069,'OP_RemoveSpellEffectMsg',111,1),(15775,60036,60069,'OP_RenameGuildMsg',283,1),(15776,60036,60069,'OP_ReplaceableSubMeshesMsg',165,1),(15777,60036,60069,'OP_ReportMsg',381,1),(15778,60036,60069,'OP_RequestCampMsg',50,1),(15779,60036,60069,'OP_RequestGuildBankEventDetailsMs',281,1),(15780,60036,60069,'OP_RequestGuildEventDetailsMsg',272,1),(15781,60036,60069,'OP_RequestGuildInfoMsg',274,1),(15782,60036,60069,'OP_RequestGuildMembershipMsg',357,1),(15783,60036,60069,'OP_RequestHelpRepathMsg',206,1),(15784,60036,60069,'OP_RequestRecipeDetailsMsg',71,1),(15785,60036,60069,'OP_RequestTargetLocMsg',207,1),(15786,60036,60069,'OP_Research',746,1),(15787,60036,60069,'OP_ResendWorldChannelsMsg',444,1),(15788,60036,60069,'OP_ReskinCharacterRequestMsg',15,1),(15789,60036,60069,'OP_RestartZoneMsg',413,1),(15790,60036,60069,'OP_RewardPackMsg',282,1),(15791,60036,60069,'OP_SatMsg',189,1),(15792,60036,60069,'OP_SavageBarInitMsg',581,1),(15793,60036,60069,'OP_SelectZoneTeleporterDestinatio',354,1),(15794,60036,60069,'OP_SendLatestRequestMsg',97,1),(15795,60036,60069,'OP_ServerPlayCharacterReplyMsg',24,1),(15796,60036,60069,'OP_ServerPlayCharacterRequestMsg',23,1),(15797,60036,60069,'OP_SetInstanceDisplayNameMsg',441,1),(15798,60036,60069,'OP_SetRemoteCmdsMsg',41,1),(15799,60036,60069,'OP_SetSocialMsg',99,1),(15800,60036,60069,'OP_ShaderCustomizationMsg',164,1),(15801,60036,60069,'OP_ShowCreateFromRecipeUIMsg',219,1),(15802,60036,60069,'OP_ShowIllusionsMsg',193,1),(15803,60036,60069,'OP_ShowItemCreationProcessUIMsg',223,1),(15804,60036,60069,'OP_ShowRecipeBookMsg',226,1),(15805,60036,60069,'OP_ShowZoneTeleporterDestinations',353,1),(15806,60036,60069,'OP_SitMsg',187,1),(15807,60036,60069,'OP_SkillInfoRequest',515,1),(15808,60036,60069,'OP_SkillInfoResponse',516,1),(15809,60036,60069,'OP_SOEAllAccess',610,1),(15810,60036,60069,'OP_SpellGainedMsg',263,1),(15811,60036,60069,'OP_StandMsg',188,1),(15812,60036,60069,'OP_StoodMsg',190,1),(15813,60036,60069,'OP_StopItemCreationMsg',222,1),(15814,60036,60069,'OP_StoppedLootingMsg',186,1),(15815,60036,60069,'OP_StopTrackingMsg',392,1),(15816,60036,60069,'OP_SubmitCharCust',563,1),(15817,60036,60069,'OP_SupplyDepot',743,1),(15818,60036,60069,'OP_SysClient',218,1),(15819,60036,60069,'OP_TeleportWithinZoneMsg',79,1),(15820,60036,60069,'OP_TeleportWithinZoneNoReloadMsg',80,1),(15821,60036,60069,'OP_TintWidgetsMsg',170,1),(15822,60036,60069,'OP_TitleUpdateMsg',385,1),(15823,60036,60069,'OP_TrackingUpdateMsg',390,1),(15824,60036,60069,'OP_TradeskillList',712,1),(15825,60036,60069,'OP_TraitsList',735,1),(15826,60036,60069,'OP_UIEvent',528,1),(15827,60036,60069,'OP_UIResetMsg',174,1),(15828,60036,60069,'OP_UISettingsResponseMsg',173,1),(15829,60036,60069,'OP_Unknown',768,1),(15830,60036,60069,'OP_UnknownNpcMsg',374,1),(15831,60036,60069,'OP_UpdateActivePublicZonesMsg',373,1),(15832,60036,60069,'OP_UpdateCharacterSheetMsg',63,1),(15833,60036,60069,'OP_UpdateClientPredFlagsMsg',246,1),(15834,60036,60069,'OP_UpdateDebugRadiiMsg',380,1),(15835,60036,60069,'OP_UpdateGroupMemberDataMsg',389,1),(15836,60036,60069,'OP_UpdateHouseAccessDataMsg',144,1),(15837,60036,60069,'OP_UpdateHouseDataMsg',143,1),(15838,60036,60069,'OP_UpdateInventoryMsg',68,1),(15839,60036,60069,'OP_UpdateItemCreationProcessUIMsg',224,1),(15840,60036,60069,'OP_UpdateMotdMsg',208,1),(15841,60036,60069,'OP_UpdateOpportunityMsg',75,1),(15842,60036,60069,'OP_UpdatePositionMsg',39,1),(15843,60036,60069,'OP_UpdateRaidMsg',382,1),(15844,60036,60069,'OP_UpdateRecipeBookMsg',70,1),(15845,60036,60069,'OP_UpdateSkillBookMsg',73,1),(15846,60036,60069,'OP_UpdateSkillsMsg',74,1),(15847,60036,60069,'OP_UpdateSpellBookMsg',66,1),(15848,60036,60069,'OP_UpdateTargetLocMsg',62,1),(15849,60036,60069,'OP_UpdateTargetMsg',61,1),(15850,60036,60069,'OP_UpdateTitleCmd',495,1),(15851,60036,60069,'OP_UseAdornment',723,1),(15852,60036,60069,'OP_VideoUploaded',580,1),(15853,60036,60069,'OP_VoiceChatChannel',521,1),(15854,60036,60069,'OP_VoiceChatServer',739,1),(15855,60036,60069,'OP_WaypointReplyMsg',349,1),(15856,60036,60069,'OP_WaypointRequestMsg',348,1),(15857,60036,60069,'OP_WaypointSelectMsg',350,1),(15858,60036,60069,'OP_WaypointUpdateMsg',351,1),(15859,60036,60069,'OP_Weakness',584,1),(15860,60036,60069,'OP_WhoQueryReplyMsg',54,1),(15861,60036,60069,'OP_WhoQueryRequestMsg',53,1),(15862,60036,60069,'OP_WorldDataChangeMsg',411,1),(15863,60036,60069,'OP_WorldDataUpdateMsg',237,1),(15864,60036,60069,'OP_WorldListMsg',8,1),(15865,60036,60069,'OP_WorldPingMsg',400,1),(15866,60036,60069,'OP_WorldShutdownUpdateMsg',404,1),(15867,60036,60069,'OP_WorldStatusChangeMsg',6,1),(15868,60036,60069,'OP_WorldTravelAvail',573,1),(15869,60036,60069,'OP_WSAcctLockStatusMsg',205,1),(15870,60036,60069,'OP_WSCreateCharacterReplyMsg',14,1),(15871,60036,60069,'OP_WSCreateCharacterRequestMsg',13,1),(15872,60036,60069,'OP_WSLoginRequestMsg',2,1),(15873,60036,60069,'OP_WSServerHideMsg',367,1),(15874,60036,60069,'OP_WSServerLockMsg',365,1),(15875,60036,60069,'OP_WSStatusReplyMsg',5,1),(15876,60036,60069,'OP_ZoneBgInstanceList',569,1),(15877,60036,60069,'OP_ZoneInfoMsg',33,1),(15878,60036,60069,'OP_ZoneInstanceCreateReplyMsg',30,1),(15879,60036,60069,'OP_ZoneInstanceDestroyedMsg',31,1),(15880,60036,60069,'OP_ZoneMOTDMsg',45,1),(15881,60036,60069,'OP_ZonesStatusMsg',103,1),(15882,60036,60069,'OP_ZonesStatusRequestMsg',102,1),(15883,60036,60069,'OP_ZoneToFriendReplyMsg',285,1),(15884,60036,60069,'OP_ZoneToFriendRequestMsg',284,1),(15885,60085,60116,'OP_AchievementUpdateMsg',751,1),(15886,60085,60116,'OP_AddSocialStructureStandingMsg',252,1),(15887,60085,60116,'OP_AdvancementRequestMsg',397,1),(15888,60085,60116,'OP_AdventureList',491,1),(15889,60085,60116,'OP_AFKUpdateMsg',373,1),(15890,60085,60116,'OP_AfterInvSpellUpdate',71,1),(15891,60085,60116,'OP_AllCharactersDescReplyMsg',10,1),(15892,60085,60116,'OP_AllCharactersDescRequestMsg',9,1),(15893,60085,60116,'OP_AllWSDescRequestMsg',7,1),(15894,60085,60116,'OP_AnonUpdateMsg',374,1),(15895,60085,60116,'OP_ArenaCreate',459,1),(15896,60085,60116,'OP_ArenaGameTypesMsg',448,1),(15897,60085,60116,'OP_ArenaList',460,1),(15898,60085,60116,'OP_ArenaWindow',468,1),(15899,60085,60116,'OP_AttackAllowed',503,1),(15900,60085,60116,'OP_AttackNotAllowed',504,1),(15901,60085,60116,'OP_AuctionAbortMsg',439,1),(15902,60085,60116,'OP_AuctionCharacter',436,1),(15903,60085,60116,'OP_AuctionCharacterReply',437,1),(15904,60085,60116,'OP_AuctionCoin',434,1),(15905,60085,60116,'OP_AuctionCoinReply',435,1),(15906,60085,60116,'OP_AuctionCommitMsg',438,1),(15907,60085,60116,'OP_AuctionItem',432,1),(15908,60085,60116,'OP_AuctionItemReply',433,1),(15909,60085,60116,'OP_AuditAuctionEventMsg',449,1),(15910,60085,60116,'OP_AvatarCreatedMsg',48,1),(15911,60085,60116,'OP_AvatarDestroyedMsg',49,1),(15912,60085,60116,'OP_AvatarUpdateMsg',363,1),(15913,60085,60116,'OP_BadLanguageFilter',522,1),(15914,60085,60116,'OP_BagOptions',505,1),(15915,60085,60116,'OP_BeginItemCreationMsg',223,1),(15916,60085,60116,'OP_BeginTrackingMsg',393,1),(15917,60085,60116,'OP_BioUpdateMsg',365,1),(15918,60085,60116,'OP_BrokerAddBag',295,1),(15919,60085,60116,'OP_BrokerRemoveBag',296,1),(15920,60085,60116,'OP_BrokerSellList',694,1),(15921,60085,60116,'OP_BuyPlayerHouseMsg',152,1),(15922,60085,60116,'OP_BuyPlayerHouseTintMsg',153,1),(15923,60085,60116,'OP_CampAbortedMsg',54,1),(15924,60085,60116,'OP_CampClientMsg',390,1),(15925,60085,60116,'OP_CampStartedMsg',53,1),(15926,60085,60116,'OP_CancelCreateFromRecipeMsg',222,1),(15927,60085,60116,'OP_CancelledFeignMsg',218,1),(15928,60085,60116,'OP_CancelMoveObjectModeMsg',165,1),(15929,60085,60116,'OP_CancelSpellCast',492,1),(15930,60085,60116,'OP_ChangeServerControlFlagMsg',249,1),(15931,60085,60116,'OP_ChangeZoneMsg',79,1),(15932,60085,60116,'OP_CharacterAchievements',750,1),(15933,60085,60116,'OP_CharacterCreatedDungeons',554,1),(15934,60085,60116,'OP_CharacterCurrency',749,1),(15935,60085,60116,'OP_CharacterHousingList',510,1),(15936,60085,60116,'OP_CharacterLinkdeadMsg',417,1),(15937,60085,60116,'OP_CharacterMerc',67,1),(15938,60085,60116,'OP_CharacterMounts',587,1),(15939,60085,60116,'OP_CharacterPet',66,1),(15940,60085,60116,'OP_CharNameChangedMsg',355,1),(15941,60085,60116,'OP_CharRenamed',715,1),(15942,60085,60116,'OP_CharTransferCommitReplyMsg',425,1),(15943,60085,60116,'OP_CharTransferCommitRequestMsg',423,1),(15944,60085,60116,'OP_CharTransferReplyMsg',421,1),(15945,60085,60116,'OP_CharTransferRequestMsg',420,1),(15946,60085,60116,'OP_CharTransferRollbackReplyMsg',424,1),(15947,60085,60116,'OP_CharTransferRollbackRequestMsg',422,1),(15948,60085,60116,'OP_CharTransferStartReplyMsg',419,1),(15949,60085,60116,'OP_CharTransferStartRequestMsg',418,1),(15950,60085,60116,'OP_CharTransferValidateReplyMsg',441,1),(15951,60085,60116,'OP_CharTransferValidateRequestMsg',440,1),(15952,60085,60116,'OP_ChatCreateChannelMsg',288,1),(15953,60085,60116,'OP_ChatFiltersMsg',337,1),(15954,60085,60116,'OP_ChatJoinChannelMsg',289,1),(15955,60085,60116,'OP_ChatLeaveChannelMsg',291,1),(15956,60085,60116,'OP_ChatRelationshipUpdateMsg',186,1),(15957,60085,60116,'OP_ChatSendFriendsMsg',298,1),(15958,60085,60116,'OP_ChatSendIgnoresMsg',299,1),(15959,60085,60116,'OP_ChatTellChannelMsg',292,1),(15960,60085,60116,'OP_ChatTellUserMsg',293,1),(15961,60085,60116,'OP_ChatToggleFriendMsg',294,1),(15962,60085,60116,'OP_ChatToggleIgnoreMsg',297,1),(15963,60085,60116,'OP_ChatWhoChannelMsg',290,1),(15964,60085,60116,'OP_ClearDataMsg',100,1),(15965,60085,60116,'OP_ClearForLandingMsg',494,1),(15966,60085,60116,'OP_ClearForTakeOffMsg',193,1),(15967,60085,60116,'OP_ClientCmdMsg',60,1),(15968,60085,60116,'OP_ClientFellMsg',388,1),(15969,60085,60116,'OP_ClientIdleBeginMsg',408,1),(15970,60085,60116,'OP_ClientIdleEndMsg',409,1),(15971,60085,60116,'OP_ClientInDeathRegionMsg',389,1),(15972,60085,60116,'OP_ClientTeleportRequestMsg',80,1),(15973,60085,60116,'OP_ClientTeleportToLocationMsg',247,1),(15974,60085,60116,'OP_CloseGroupInviteWindowMsg',400,1),(15975,60085,60116,'OP_CollectAllHouseItemsMsg',154,1),(15976,60085,60116,'OP_ConsignItemRequestMsg',128,1),(15977,60085,60116,'OP_ConsignItemResponseMsg',129,1),(15978,60085,60116,'OP_ConsignmentCloseStoreMsg',127,1),(15979,60085,60116,'OP_ConsignRemoveItemsMsg',381,1),(15980,60085,60116,'OP_ConsignViewCreateMsg',378,1),(15981,60085,60116,'OP_ConsignViewGetPageMsg',379,1),(15982,60085,60116,'OP_ConsignViewReleaseMsg',380,1),(15983,60085,60116,'OP_ConsignViewSortMsg',386,1),(15984,60085,60116,'OP_CorruptedClientMsg',412,1),(15985,60085,60116,'OP_CreateBoatTransportsMsg',253,1),(15986,60085,60116,'OP_CreateCharacterDungeon',550,1),(15987,60085,60116,'OP_CreateCharacterReplyMsg',12,1),(15988,60085,60116,'OP_CreateCharacterRequestMsg',11,1),(15989,60085,60116,'OP_CreateCharFromCBBReplyMsg',429,1),(15990,60085,60116,'OP_CreateCharFromCBBRequestMsg',428,1),(15991,60085,60116,'OP_CreateGuildReplyMsg',122,1),(15992,60085,60116,'OP_CreateGuildRequestMsg',121,1),(15993,60085,60116,'OP_CreateZoneInstanceMsg',31,1),(15994,60085,60116,'OP_CsCategoryRequestMsg',370,1),(15995,60085,60116,'OP_CsCategoryResponseMsg',371,1),(15996,60085,60116,'OP_CSTicketAddCommentMsg',236,1),(15997,60085,60116,'OP_CSTicketChangeNotificationMsg',238,1),(15998,60085,60116,'OP_CSTicketCommentRequestMsg',233,1),(15999,60085,60116,'OP_CSTicketCommentResponseMsg',234,1),(16000,60085,60116,'OP_CSTicketCreateMsg',235,1),(16001,60085,60116,'OP_CSTicketDeleteMsg',237,1),(16002,60085,60116,'OP_CSTicketHeaderRequestMsg',231,1),(16003,60085,60116,'OP_CSTicketInfoMsg',232,1),(16004,60085,60116,'OP_CSToolAccessResponseMsg',391,1),(16005,60085,60116,'OP_CSToolsRequestMsg',250,1),(16006,60085,60116,'OP_CSToolsResponseMsg',251,1),(16007,60085,60116,'OP_CurrentPet',488,1),(16008,60085,60116,'OP_CustomizationPurchaseRequestMs',169,1),(16009,60085,60116,'OP_CustomizationReplyMsg',171,1),(16010,60085,60116,'OP_CustomizationSetRequestMsg',170,1),(16011,60085,60116,'OP_CustomizeHouseDisplay',740,1),(16012,60085,60116,'OP_DailyObjectives',600,1),(16013,60085,60116,'OP_DefaultGroupOptionsMsg',200,1),(16014,60085,60116,'OP_DefaultGroupOptionsRequestMsg',199,1),(16015,60085,60116,'OP_DeleteCharacterReplyMsg',19,1),(16016,60085,60116,'OP_DeleteCharacterRequestMsg',18,1),(16017,60085,60116,'OP_DeleteGuildMsg',125,1),(16018,60085,60116,'OP_DestUpdateReq',212,1),(16019,60085,60116,'OP_DialogCloseMsg',112,1),(16020,60085,60116,'OP_DialogSelectMsg',111,1),(16021,60085,60116,'OP_DispatchClientCmdMsg',62,1),(16022,60085,60116,'OP_DispatchESMsg',61,1),(16023,60085,60116,'OP_DispatchMsg',454,1),(16024,60085,60116,'OP_DispatchSpellCmdMsg',181,1),(16025,60085,60116,'OP_DisplayDebugNLLPointsMsg',257,1),(16026,60085,60116,'OP_DisplayEventMsg',455,1),(16027,60085,60116,'OP_DisplayExchangeScreenMsg',447,1),(16028,60085,60116,'OP_DisplayGroupOptionsScreenMsg',202,1),(16029,60085,60116,'OP_DisplayInnVisitScreenMsg',204,1),(16030,60085,60116,'OP_DisplayMailScreenMsg',407,1),(16031,60085,60116,'OP_DisplayTSEventReactionMsg',227,1),(16032,60085,60116,'OP_DisplayWarningMsg',268,1),(16033,60085,60116,'OP_DoneLoadingEntityResourcesMsg',38,1),(16034,60085,60116,'OP_DoneLoadingZoneResourcesMsg',36,1),(16035,60085,60116,'OP_DoneSendingInitialEntitiesMsg',37,1),(16036,60085,60116,'OP_DressingRoom',513,1),(16037,60085,60116,'OP_DumpSchedulerMsg',205,1),(16038,60085,60116,'OP_DungeonMakerEnter',551,1),(16039,60085,60116,'OP_DungeonMakerItemRequest',553,1),(16040,60085,60116,'OP_DungeonMakerItemResponse',585,1),(16041,60085,60116,'OP_DungeonMakerToolboxList',555,1),(16042,60085,60116,'OP_DungeonMakerUnknown',556,1),(16043,60085,60116,'OP_DungeonMakerUnknown1',557,1),(16044,60085,60116,'OP_DungeonPlayAsAvatarList',754,1),(16045,60085,60116,'OP_DungeonPlayAsAvatarSelected',755,1),(16046,60085,60116,'OP_EncounterBrokenMsg',266,1),(16047,60085,60116,'OP_EnterHouseMsg',156,1),(16048,60085,60116,'OP_EnterMoveObjectModeMsg',163,1),(16049,60085,60116,'OP_EntityVerbsReplyMsg',183,1),(16050,60085,60116,'OP_EntityVerbsRequestMsg',182,1),(16051,60085,60116,'OP_EntityVerbsVerbMsg',184,1),(16052,60085,60116,'OP_EqArenaResultsCmd',705,1),(16053,60085,60116,'OP_EqAvailWorldChannelsCmd',692,1),(16054,60085,60116,'OP_EqBetaCopyRequest',611,1),(16055,60085,60116,'OP_EqCannedEmoteCmd',634,1),(16056,60085,60116,'OP_EqChatChannelUpdateCmd',690,1),(16057,60085,60116,'OP_EqChoiceWinCmd',671,1),(16058,60085,60116,'OP_EqCloseWindowCmd',663,1),(16059,60085,60116,'OP_EqCollectionFilterCmd',650,1),(16060,60085,60116,'OP_EqCollectionItemCmd',651,1),(16061,60085,60116,'OP_EqCollectionUpdateCmd',649,1),(16062,60085,60116,'OP_EqConsignmentItemsCmd',695,1),(16063,60085,60116,'OP_EqCreateGhostCmd',616,1),(16064,60085,60116,'OP_EqCreateListBoxCmd',631,1),(16065,60085,60116,'OP_EqCreateSignWidgetCmd',618,1),(16066,60085,60116,'OP_EqCreateWidgetCmd',617,1),(16067,60085,60116,'OP_EqDebugPVDCmd',684,1),(16068,60085,60116,'OP_EqDestroyGhostCmd',619,1),(16069,60085,60116,'OP_EqDialogCloseCmd',647,1),(16070,60085,60116,'OP_EqDialogOpenCmd',646,1),(16071,60085,60116,'OP_EqDisplaySpellFailCmd',667,1),(16072,60085,60116,'OP_EqDisplayTextCmd',615,1),(16073,60085,60116,'OP_EqDrawablePathGraphCmd',645,1),(16074,60085,60116,'OP_EqEnableGameEventCmd',677,1),(16075,60085,60116,'OP_EqEnableWindowCmd',679,1),(16076,60085,60116,'OP_EqExamineInfoCmd',662,1),(16077,60085,60116,'OP_EqFactionUpdateCmd',648,1),(16078,60085,60116,'OP_EqFlashWindowCmd',680,1),(16079,60085,60116,'OP_EqGetProbsCmd',688,1),(16080,60085,60116,'OP_EqGroupMemberRemovedCmd',641,1),(16081,60085,60116,'OP_EqGuildBankEventActionCmd',706,1),(16082,60085,60116,'OP_EqGuildBankExamineInfoCmd',707,1),(16083,60085,60116,'OP_EqHearChainEffectCmd',642,1),(16084,60085,60116,'OP_EqHearChatCmd',614,1),(16085,60085,60116,'OP_EqHearCombatCmd',623,1),(16086,60085,60116,'OP_EqHearConsiderCmd',629,1),(16087,60085,60116,'OP_EqHearDeathCmd',640,1),(16088,60085,60116,'OP_EQHearDispellCmd',752,1),(16089,60085,60116,'OP_EqHearDrowningCmd',639,1),(16090,60085,60116,'OP_EqHearHealCmd',689,1),(16091,60085,60116,'OP_EqHearPlayFlavorCmd',682,1),(16092,60085,60116,'OP_EQHearProcCmd',625,1),(16093,60085,60116,'OP_EQHearResEffectCmd',626,1),(16094,60085,60116,'OP_EqHearSpellCastCmd',624,1),(16095,60085,60116,'OP_EqHearSpellFizzleCmd',628,1),(16096,60085,60116,'OP_EqHearSpellInterruptCmd',627,1),(16097,60085,60116,'OP_EqHearSpellNoLandCmd',708,1),(16098,60085,60116,'OP_EQHearThreatCmd',746,1),(16099,60085,60116,'OP_EqHelpPathClearCmd',660,1),(16100,60085,60116,'OP_EqHelpPathCmd',659,1),(16101,60085,60116,'OP_EqInspectPCResultsCmd',644,1),(16102,60085,60116,'OP_EqInstructionWindowCloseCmd',674,1),(16103,60085,60116,'OP_EqInstructionWindowCmd',673,1),(16104,60085,60116,'OP_EqInstructionWindowGoalCmd',675,1),(16105,60085,60116,'OP_EqInstructionWindowTaskCmd',676,1),(16106,60085,60116,'OP_EqJunctionListCmd',665,1),(16107,60085,60116,'OP_EqMapExplorationCmd',698,1),(16108,60085,60116,'OP_EqMentoring',653,1),(16109,60085,60116,'OP_EqPlaySound3DCmd',637,1),(16110,60085,60116,'OP_EqPlaySoundCmd',636,1),(16111,60085,60116,'OP_EqPlayVoiceCmd',638,1),(16112,60085,60116,'OP_EqQuestGroupCmd',655,1),(16113,60085,60116,'OP_EqQuestionnaireCmd',686,1),(16114,60085,60116,'OP_EqQuestJournalReplyCmd',654,1),(16115,60085,60116,'OP_EqQuestJournalUpdateCmd',652,1),(16116,60085,60116,'OP_EqReceiveOfferCmd',643,1),(16117,60085,60116,'OP_EqResurrectedCmd',670,1),(16118,60085,60116,'OP_EqSetControlGhostCmd',621,1),(16119,60085,60116,'OP_EqSetDebugPathPointsCmd',632,1),(16120,60085,60116,'OP_EqSetDefaultVerbCmd',672,1),(16121,60085,60116,'OP_EqSetPOVGhostCmd',622,1),(16122,60085,60116,'OP_EqShowBookCmd',685,1),(16123,60085,60116,'OP_EqShowDeathWindowCmd',666,1),(16124,60085,60116,'OP_EqShowWindowCmd',678,1),(16125,60085,60116,'OP_EqSpellCastEndCmd',669,1),(16126,60085,60116,'OP_EqSpellCastStartCmd',668,1),(16127,60085,60116,'OP_EqSpellMoveToRangeAndRetryCmd',700,1),(16128,60085,60116,'OP_EqStartBrokerCmd',697,1),(16129,60085,60116,'OP_EqStateCmd',635,1),(16130,60085,60116,'OP_EqStoreLogCmd',699,1),(16131,60085,60116,'OP_EqUpdateBankCmd',661,1),(16132,60085,60116,'OP_EqUpdateGhostCmd',620,1),(16133,60085,60116,'OP_EqUpdateLootCmd',664,1),(16134,60085,60116,'OP_EqUpdateMerchantCmd',656,1),(16135,60085,60116,'OP_EqUpdatePlayerMailCmd',701,1),(16136,60085,60116,'OP_EqUpdatePlayerTradeCmd',658,1),(16137,60085,60116,'OP_EqUpdateSignWidgetCmd',683,1),(16138,60085,60116,'OP_EqUpdateStoreCmd',657,1),(16139,60085,60116,'OP_EqUpdateSubClassesCmd',630,1),(16140,60085,60116,'OP_EqUpdateTargetCmd',693,1),(16141,60085,60116,'OP_EqWhoChannelQueryReplyCmd',691,1),(16142,60085,60116,'OP_ESInitMsg',27,1),(16143,60085,60116,'OP_ESLoginRequestMsg',3,1),(16144,60085,60116,'OP_ESReadyForClientsMsg',28,1),(16145,60085,60116,'OP_ESStatusMsg',102,1),(16146,60085,60116,'OP_ESWeatherRequestEndMsg',107,1),(16147,60085,60116,'OP_ESWeatherRequestMsg',106,1),(16148,60085,60116,'OP_ESZoneInstanceStatusMsg',103,1),(16149,60085,60116,'OP_ExamineConsignmentRequestMsg',173,1),(16150,60085,60116,'OP_ExamineConsignmentResponseMsg',174,1),(16151,60085,60116,'OP_ExamineInfoRequestMsg',258,1),(16152,60085,60116,'OP_ExamineItemRequestMsg',197,1),(16153,60085,60116,'OP_ExitHouseMsg',157,1),(16154,60085,60116,'OP_ExpectClientAsCharacterReplyMs',24,1),(16155,60085,60116,'OP_ExpectClientAsCharacterRequest',34,1),(16156,60085,60116,'OP_ExpPurchWindow',731,1),(16157,60085,60116,'OP_FellowshipExpMsg',124,1),(16158,60085,60116,'OP_FlightPathsMsg',416,1),(16159,60085,60116,'OP_GameWorldTimeMsg',45,1),(16160,60085,60116,'OP_PaperdollImage',580,1),(16161,60085,60116,'OP_GetAuctionAssetIDMsg',444,1),(16162,60085,60116,'OP_GetAuctionAssetIDReplyMsg',445,1),(16163,60085,60116,'OP_GetAvatarAccessRequestForCSToo',396,1),(16164,60085,60116,'OP_GetCharacterSerializedReplyMsg',427,1),(16165,60085,60116,'OP_GetCharacterSerializedRequestM',426,1),(16166,60085,60116,'OP_GroupCreatedMsg',90,1),(16167,60085,60116,'OP_GroupDestroyedMsg',91,1),(16168,60085,60116,'OP_GroupLeaderChangedMsg',95,1),(16169,60085,60116,'OP_GroupMemberAddedMsg',92,1),(16170,60085,60116,'OP_GroupMemberRemovedMsg',93,1),(16171,60085,60116,'OP_GroupOptionsMsg',201,1),(16172,60085,60116,'OP_GroupRemovedFromGroupMsg',94,1),(16173,60085,60116,'OP_GroupResendOOZDataMsg',96,1),(16174,60085,60116,'OP_GroupSettingsChangedMsg',97,1),(16175,60085,60116,'OP_GuildBankActionMsg',277,1),(16176,60085,60116,'OP_GuildBankActionResponseMsg',278,1),(16177,60085,60116,'OP_GuildBankEventListMsg',282,1),(16178,60085,60116,'OP_GuildBankItemDetailsRequestMsg',279,1),(16179,60085,60116,'OP_GuildBankItemDetailsResponseMs',280,1),(16180,60085,60116,'OP_GuildBankUpdateMsg',281,1),(16181,60085,60116,'OP_GuildEventActionMsg',272,1),(16182,60085,60116,'OP_GuildEventAddMsg',271,1),(16183,60085,60116,'OP_GuildEventDetailsMsg',275,1),(16184,60085,60116,'OP_GuildEventListMsg',273,1),(16185,60085,60116,'OP_GuildEventMsg',270,1),(16186,60085,60116,'OP_GuildMembershipResponseMsg',360,1),(16187,60085,60116,'OP_GuildRecruiting',711,1),(16188,60085,60116,'OP_GuildRecruitingDetails',712,1),(16189,60085,60116,'OP_GuildRecruitingImage',713,1),(16190,60085,60116,'OP_GuildRecruitingMemberInfo',710,1),(16191,60085,60116,'OP_GuildsayMsg',123,1),(16192,60085,60116,'OP_GuildStatusUpdate',704,1),(16193,60085,60116,'OP_GuildUpdateMsg',126,1),(16194,60085,60116,'OP_HeritageMsg',10003,1),(16195,60085,60116,'OP_HideIllusionsMsg',196,1),(16196,60085,60116,'OP_HouseAccessRemoveMsg',160,1),(16197,60085,60116,'OP_HouseAccessSetMsg',159,1),(16198,60085,60116,'OP_HouseCustomizationScreenMsg',168,1),(16199,60085,60116,'OP_HouseDefaultAccessSetMsg',158,1),(16200,60085,60116,'OP_HouseDeletedRemotelyMsg',144,1),(16201,60085,60116,'OP_HouseItemsList',487,1),(16202,60085,60116,'OP_HousingDataChangedMsg',430,1),(16203,60085,60116,'OP_HousingRestoreMsg',431,1),(16204,60085,60116,'OP_InspectPlayerMsg',366,1),(16205,60085,60116,'OP_InspectPlayerRequestMsg',453,1),(16206,60085,60116,'OP_InviteRequestMsg',450,1),(16207,60085,60116,'OP_InviteResponseMsg',451,1),(16208,60085,60116,'OP_InviteTargetResponseMsg',452,1),(16209,60085,60116,'OP_JoinGuildNotifyMsg',362,1),(16210,60085,60116,'OP_JournalQuestStoryline',753,1),(16211,60085,60116,'OP_KeymapDataMsg',179,1),(16212,60085,60116,'OP_KeymapLoadMsg',177,1),(16213,60085,60116,'OP_KeymapNoneMsg',178,1),(16214,60085,60116,'OP_KeymapSaveMsg',180,1),(16215,60085,60116,'OP_KnowledgebaseRequestMsg',229,1),(16216,60085,60116,'OP_KnowledgebaseResponseMsg',230,1),(16217,60085,60116,'OP_KnowledgeWindowSlotMappingMsg',372,1),(16218,60085,60116,'OP_KnownLanguagesMsg',241,1),(16219,60085,60116,'OP_Launchpad',578,1),(16220,60085,60116,'OP_LeaveGuildNotifyMsg',361,1),(16221,60085,60116,'OP_LevelChangedMsg',264,1),(16222,60085,60116,'OP_LFGGroupSearch',507,1),(16223,60085,60116,'OP_LFGUpdateMsg',521,1),(16224,60085,60116,'OP_LikeOption',138,1),(16225,60085,60116,'OP_LoadCalendarEvents',581,1),(16226,60085,60116,'OP_LoadWelcomeWindow',563,1),(16227,60085,60116,'OP_LoginByNumRequestMsg',1,1),(16228,60085,60116,'OP_LoginReplyMsg',4,1),(16229,60085,60116,'OP_LoginRequestMsg',0,1),(16230,60085,60116,'OP_LootItemsRequestMsg',187,1),(16231,60085,60116,'OP_Lottery',709,1),(16232,60085,60116,'OP_LSCheckAcctLockMsg',206,1),(16233,60085,60116,'OP_LsClientAlertlogReplyMsg',245,1),(16234,60085,60116,'OP_LsClientBaselogReplyMsg',243,1),(16235,60085,60116,'OP_LsClientCrashlogReplyMsg',244,1),(16236,60085,60116,'OP_LsClientVerifylogReplyMsg',246,1),(16237,60085,60116,'OP_LsRequestClientCrashLogMsg',242,1),(16238,60085,60116,'OP_LSServerLockMsg',368,1),(16239,60085,60116,'OP_MacroInitMsg',261,1),(16240,60085,60116,'OP_MacroUpdateMsg',262,1),(16241,60085,60116,'OP_MailCommitSendMessageMsg',347,1),(16242,60085,60116,'OP_MailDeleteMessageMsg',343,1),(16243,60085,60116,'OP_MailEventNotificationMsg',414,1),(16244,60085,60116,'OP_MailGetHeadersReplyMsg',344,1),(16245,60085,60116,'OP_MailGetMessageMsg',341,1),(16246,60085,60116,'OP_MailGetMessageReplyMsg',345,1),(16247,60085,60116,'OP_MailRemoveAttachFromMailMsg',349,1),(16248,60085,60116,'OP_MailSendMessageMsg',342,1),(16249,60085,60116,'OP_MailSendMessageReplyMsg',346,1),(16250,60085,60116,'OP_MailSendSystemMessageMsg',348,1),(16251,60085,60116,'OP_MakeGroupLeaderMsg',89,1),(16252,60085,60116,'OP_MapFogDataInitMsg',398,1),(16253,60085,60116,'OP_MapFogDataUpdateMsg',399,1),(16254,60085,60116,'OP_MapRequest',524,1),(16255,60085,60116,'OP_MarketAddFundsReply',532,1),(16256,60085,60116,'OP_MarketAddFundsRequest',531,1),(16257,60085,60116,'OP_MarketFundsUpdate',529,1),(16258,60085,60116,'OP_MarketPlaceItems',542,1),(16259,60085,60116,'OP_MarketPlacePrices',535,1),(16260,60085,60116,'OP_MarketPurchase',534,1),(16261,60085,60116,'OP_MentorPopup',561,1),(16262,60085,60116,'OP_MercHireWindow',756,1),(16263,60085,60116,'OP_MercUnknown',757,1),(16264,60085,60116,'OP_MigrateBoatTransportMsg',255,1),(16265,60085,60116,'OP_MigrateBoatTransportReplyMsg',256,1),(16266,60085,60116,'OP_MigrateClientToZoneReplyMsg',84,1),(16267,60085,60116,'OP_MigrateClientToZoneRequestMsg',83,1),(16268,60085,60116,'OP_ModifyGuildMsg',269,1),(16269,60085,60116,'OP_MonitorCharacterListMsg',58,1),(16270,60085,60116,'OP_MonitorCharacterListRequestMsg',59,1),(16271,60085,60116,'OP_MonitorReplyMsg',57,1),(16272,60085,60116,'OP_MOTDMsg',46,1),(16273,60085,60116,'OP_MoveableObjectPlacementCriteri',162,1),(16274,60085,60116,'OP_MoveLogUpdateMsg',403,1),(16275,60085,60116,'OP_NotifyApprenticeStoppedMentori',411,1),(16276,60085,60116,'OP_OfferQuestMsg',404,1),(16277,60085,60116,'OP_OnscreenMsgMsg',267,1),(16278,60085,60116,'OP_OpenCharCust',564,1),(16279,60085,60116,'OP_OutOfZoneMemberDataMsg',98,1),(16280,60085,60116,'OP_PayHouseUpkeepMsg',161,1),(16281,60085,60116,'OP_PerformCameraShakeMsg',216,1),(16282,60085,60116,'OP_PerformPlayerKnockbackMsg',215,1),(16283,60085,60116,'OP_PetOptions',203,1),(16284,60085,60116,'OP_PetOptionsResponse',584,1),(16285,60085,60116,'OP_PlayCharacterReplyMsg',21,1),(16286,60085,60116,'OP_PlayCharacterRequestMsg',20,1),(16287,60085,60116,'OP_PlayerHouseAccessUpdateMsg',149,1),(16288,60085,60116,'OP_PlayerHouseBaseScreenMsg',147,1),(16289,60085,60116,'OP_PlayerHouseCloseUIMsg',151,1),(16290,60085,60116,'OP_PlayerHouseDisplayStatusMsg',150,1),(16291,60085,60116,'OP_PlayerHousePurchaseScreenMsg',148,1),(16292,60085,60116,'OP_PlayerMadeInstances',142,1),(16293,60085,60116,'OP_PlayerMadeInstancesScreen',141,1),(16294,60085,60116,'OP_PlayerPollAnswer',560,1),(16295,60085,60116,'OP_PlayerPollPopup',559,1),(16296,60085,60116,'OP_PlayLon',514,1),(16297,60085,60116,'OP_PointOfInterest',735,1),(16298,60085,60116,'OP_PointOfInterest2',736,1),(16299,60085,60116,'OP_PopulateSkillMapsMsg',217,1),(16300,60085,60116,'OP_PositionBoatTransportMsg',254,1),(16301,60085,60116,'OP_PositionMoveableObject',164,1),(16302,60085,60116,'OP_PostPossessionMsg',457,1),(16303,60085,60116,'OP_PredictionUpdateMsg',39,1),(16304,60085,60116,'OP_PrePossessionMsg',456,1),(16305,60085,60116,'OP_PromoFlagsDetailsMsg',377,1),(16306,60085,60116,'OP_PublishHouse',140,1),(16307,60085,60116,'OP_PurchaseConsignmentLoreCheckRe',410,1),(16308,60085,60116,'OP_PurchaseConsignmentRequestMsg',130,1),(16309,60085,60116,'OP_QueAllBgSolo',567,1),(16310,60085,60116,'OP_QuestionnaireMsg',263,1),(16311,60085,60116,'OP_QuestJournalInspectMsg',116,1),(16312,60085,60116,'OP_QuestJournalOpenMsg',115,1),(16313,60085,60116,'OP_QuestJournalSetVisibleMsg',117,1),(16314,60085,60116,'OP_QuestJournalWaypointMsg',118,1),(16315,60085,60116,'OP_QuestReward',323,1),(16316,60085,60116,'OP_QuickbarInitMsg',259,1),(16317,60085,60116,'OP_QuickbarUpdateMsg',260,1),(16318,60085,60116,'OP_RaceRestrictionMsg',442,1),(16319,60085,60116,'OP_ReadBookPageMsg',198,1),(16320,60085,60116,'OP_ReadyForTakeOffMsg',194,1),(16321,60085,60116,'OP_ReadyToZoneMsg',86,1),(16322,60085,60116,'OP_RecipeBook',543,1),(16323,60085,60116,'OP_RecipeDetailsMsg',74,1),(16324,60085,60116,'OP_RecipeList',747,1),(16325,60085,60116,'OP_RecipeListUnknown',596,1),(16326,60085,60116,'OP_RelinquishHouseMsg',155,1),(16327,60085,60116,'OP_ReloadLocalizedTxtMsg',358,1),(16328,60085,60116,'OP_RemoteCmdMsg',44,1),(16329,60085,60116,'OP_RemoveClientFromGroupMsg',87,1),(16330,60085,60116,'OP_RemoveConcentrationMsg',114,1),(16331,60085,60116,'OP_RemoveGroupFromGroupMsg',88,1),(16332,60085,60116,'OP_RemoveSpellEffectMsg',113,1),(16333,60085,60116,'OP_RenameGuildMsg',285,1),(16334,60085,60116,'OP_ReplaceableSubMeshesMsg',167,1),(16335,60085,60116,'OP_ReportMsg',383,1),(16336,60085,60116,'OP_RequestCampMsg',52,1),(16337,60085,60116,'OP_RequestGuildBankEventDetailsMs',283,1),(16338,60085,60116,'OP_RequestGuildEventDetailsMsg',274,1),(16339,60085,60116,'OP_RequestGuildInfoMsg',276,1),(16340,60085,60116,'OP_RequestGuildMembershipMsg',359,1),(16341,60085,60116,'OP_RequestHelpRepathMsg',208,1),(16342,60085,60116,'OP_RequestRecipeDetailsMsg',73,1),(16343,60085,60116,'OP_RequestTargetLocMsg',209,1),(16344,60085,60116,'OP_Research',748,1),(16345,60085,60116,'OP_ResendWorldChannelsMsg',446,1),(16346,60085,60116,'OP_ReskinCharacterRequestMsg',15,1),(16347,60085,60116,'OP_RestartZoneMsg',415,1),(16348,60085,60116,'OP_RewardPackMsg',284,1),(16349,60085,60116,'OP_SatMsg',191,1),(16350,60085,60116,'OP_SavageBarInitMsg',583,1),(16351,60085,60116,'OP_SelectZoneTeleporterDestinatio',357,1),(16352,60085,60116,'OP_SendLatestRequestMsg',99,1),(16353,60085,60116,'OP_ServerPlayCharacterReplyMsg',26,1),(16354,60085,60116,'OP_ServerPlayCharacterRequestMsg',25,1),(16355,60085,60116,'OP_SetInstanceDisplayNameMsg',443,1),(16356,60085,60116,'OP_SetRemoteCmdsMsg',43,1),(16357,60085,60116,'OP_SetSocialMsg',101,1),(16358,60085,60116,'OP_ShaderCustomizationMsg',166,1),(16359,60085,60116,'OP_ShowCreateFromRecipeUIMsg',221,1),(16360,60085,60116,'OP_ShowIllusionsMsg',195,1),(16361,60085,60116,'OP_ShowItemCreationProcessUIMsg',225,1),(16362,60085,60116,'OP_ShowRecipeBookMsg',228,1),(16363,60085,60116,'OP_ShowZoneTeleporterDestinations',356,1),(16364,60085,60116,'OP_SitMsg',189,1),(16365,60085,60116,'OP_SkillInfoRequest',517,1),(16366,60085,60116,'OP_SkillInfoResponse',518,1),(16367,60085,60116,'OP_SOEAllAccess',612,1),(16368,60085,60116,'OP_SpellGainedMsg',265,1),(16369,60085,60116,'OP_StandMsg',190,1),(16370,60085,60116,'OP_StoodMsg',192,1),(16371,60085,60116,'OP_StopItemCreationMsg',224,1),(16372,60085,60116,'OP_StoppedLootingMsg',188,1),(16373,60085,60116,'OP_StopTrackingMsg',394,1),(16374,60085,60116,'OP_SubmitCharCust',565,1),(16375,60085,60116,'OP_SupplyDepot',745,1),(16376,60085,60116,'OP_SysClient',220,1),(16377,60085,60116,'OP_TeleportWithinZoneMsg',81,1),(16378,60085,60116,'OP_TeleportWithinZoneNoReloadMsg',82,1),(16379,60085,60116,'OP_TintWidgetsMsg',172,1),(16380,60085,60116,'OP_TitleUpdateMsg',387,1),(16381,60085,60116,'OP_TrackingUpdateMsg',392,1),(16382,60085,60116,'OP_TradeskillList',714,1),(16383,60085,60116,'OP_TraitsList',737,1),(16384,60085,60116,'OP_UIEvent',530,1),(16385,60085,60116,'OP_UIResetMsg',176,1),(16386,60085,60116,'OP_UISettingsResponseMsg',175,1),(16387,60085,60116,'OP_Unknown',770,1),(16388,60085,60116,'OP_UnknownNpcMsg',376,1),(16389,60085,60116,'OP_UpdateActivePublicZonesMsg',375,1),(16390,60085,60116,'OP_UpdateCharacterSheetMsg',65,1),(16391,60085,60116,'OP_UpdateClientPredFlagsMsg',248,1),(16392,60085,60116,'OP_UpdateDebugRadiiMsg',382,1),(16393,60085,60116,'OP_UpdateGroupMemberDataMsg',391,1),(16394,60085,60116,'OP_UpdateHouseAccessDataMsg',146,1),(16395,60085,60116,'OP_UpdateHouseDataMsg',145,1),(16396,60085,60116,'OP_UpdateInventoryMsg',70,1),(16397,60085,60116,'OP_UpdateItemCreationProcessUIMsg',226,1),(16398,60085,60116,'OP_UpdateMotdMsg',210,1),(16399,60085,60116,'OP_UpdateOpportunityMsg',77,1),(16400,60085,60116,'OP_UpdatePositionMsg',41,1),(16401,60085,60116,'OP_UpdateRaidMsg',384,1),(16402,60085,60116,'OP_UpdateRecipeBookMsg',72,1),(16403,60085,60116,'OP_UpdateSkillBookMsg',75,1),(16404,60085,60116,'OP_UpdateSkillsMsg',76,1),(16405,60085,60116,'OP_UpdateSpellBookMsg',68,1),(16406,60085,60116,'OP_UpdateTargetLocMsg',64,1),(16407,60085,60116,'OP_UpdateTargetMsg',63,1),(16408,60085,60116,'OP_UpdateTitleCmd',497,1),(16409,60085,60116,'OP_UseAdornment',725,1),(16410,60085,60116,'OP_VideoUploaded',582,1),(16411,60085,60116,'OP_VoiceChatChannel',523,1),(16412,60085,60116,'OP_VoiceChatServer',741,1),(16413,60085,60116,'OP_WaypointReplyMsg',352,1),(16414,60085,60116,'OP_WaypointRequestMsg',351,1),(16415,60085,60116,'OP_WaypointSelectMsg',353,1),(16416,60085,60116,'OP_WaypointUpdateMsg',354,1),(16417,60085,60116,'OP_Weakness',586,1),(16418,60085,60116,'OP_WhoQueryReplyMsg',56,1),(16419,60085,60116,'OP_WhoQueryRequestMsg',55,1),(16420,60085,60116,'OP_WorldDataChangeMsg',413,1),(16421,60085,60116,'OP_WorldDataUpdateMsg',239,1),(16422,60085,60116,'OP_WorldListMsg',8,1),(16423,60085,60116,'OP_WorldPingMsg',402,1),(16424,60085,60116,'OP_WorldShutdownUpdateMsg',406,1),(16425,60085,60116,'OP_WorldStatusChangeMsg',6,1),(16426,60085,60116,'OP_WorldTravelAvail',575,1),(16427,60085,60116,'OP_WSAcctLockStatusMsg',207,1),(16428,60085,60116,'OP_WSCreateCharacterReplyMsg',14,1),(16429,60085,60116,'OP_WSCreateCharacterRequestMsg',13,1),(16430,60085,60116,'OP_WSLoginRequestMsg',2,1),(16431,60085,60116,'OP_WSServerHideMsg',369,1),(16432,60085,60116,'OP_WSServerLockMsg',367,1),(16433,60085,60116,'OP_WSStatusReplyMsg',5,1),(16434,60085,60116,'OP_ZoneBgInstanceList',571,1),(16435,60085,60116,'OP_ZoneInfoMsg',35,1),(16436,60085,60116,'OP_ZoneInstanceCreateReplyMsg',32,1),(16437,60085,60116,'OP_ZoneInstanceDestroyedMsg',33,1),(16438,60085,60116,'OP_ZoneMOTDMsg',47,1),(16439,60085,60116,'OP_ZonesStatusMsg',105,1),(16440,60085,60116,'OP_ZonesStatusRequestMsg',104,1),(16441,60085,60116,'OP_ZoneToFriendReplyMsg',287,1),(16442,60085,60116,'OP_ZoneToFriendRequestMsg',286,1),(16443,60127,60158,'OP_AchievementUpdateMsg',752,1),(16444,60127,60158,'OP_AddSocialStructureStandingMsg',253,1),(16445,60127,60158,'OP_AdvancementRequestMsg',398,1),(16446,60127,60158,'OP_AdventureList',492,1),(16447,60127,60158,'OP_AFKUpdateMsg',374,1),(16448,60127,60158,'OP_AfterInvSpellUpdate',71,1),(16449,60127,60158,'OP_AllCharactersDescReplyMsg',10,1),(16450,60127,60158,'OP_AllCharactersDescRequestMsg',9,1),(16451,60127,60158,'OP_AllWSDescRequestMsg',7,1),(16452,60127,60158,'OP_AnonUpdateMsg',375,1),(16453,60127,60158,'OP_ArenaCreate',460,1),(16454,60127,60158,'OP_ArenaGameTypesMsg',449,1),(16455,60127,60158,'OP_ArenaList',461,1),(16456,60127,60158,'OP_ArenaWindow',469,1),(16457,60127,60158,'OP_AttackAllowed',504,1),(16458,60127,60158,'OP_AttackNotAllowed',505,1),(16459,60127,60158,'OP_AuctionAbortMsg',440,1),(16460,60127,60158,'OP_AuctionCharacter',437,1),(16461,60127,60158,'OP_AuctionCharacterReply',438,1),(16462,60127,60158,'OP_AuctionCoin',435,1),(16463,60127,60158,'OP_AuctionCoinReply',436,1),(16464,60127,60158,'OP_AuctionCommitMsg',439,1),(16465,60127,60158,'OP_AuctionItem',433,1),(16466,60127,60158,'OP_AuctionItemReply',434,1),(16467,60127,60158,'OP_AuditAuctionEventMsg',450,1),(16468,60127,60158,'OP_AvatarCreatedMsg',48,1),(16469,60127,60158,'OP_AvatarDestroyedMsg',49,1),(16470,60127,60158,'OP_AvatarUpdateMsg',364,1),(16471,60127,60158,'OP_BadLanguageFilter',523,1),(16472,60127,60158,'OP_BagOptions',506,1),(16473,60127,60158,'OP_BeginItemCreationMsg',224,1),(16474,60127,60158,'OP_BeginTrackingMsg',394,1),(16475,60127,60158,'OP_BioUpdateMsg',366,1),(16476,60127,60158,'OP_BrokerAddBag',296,1),(16477,60127,60158,'OP_BrokerRemoveBag',297,1),(16478,60127,60158,'OP_BrokerSellList',695,1),(16479,60127,60158,'OP_BuyPlayerHouseMsg',153,1),(16480,60127,60158,'OP_BuyPlayerHouseTintMsg',154,1),(16481,60127,60158,'OP_CampAbortedMsg',54,1),(16482,60127,60158,'OP_CampClientMsg',391,1),(16483,60127,60158,'OP_CampStartedMsg',53,1),(16484,60127,60158,'OP_CancelCreateFromRecipeMsg',223,1),(16485,60127,60158,'OP_CancelledFeignMsg',219,1),(16486,60127,60158,'OP_CancelMoveObjectModeMsg',166,1),(16487,60127,60158,'OP_CancelSpellCast',493,1),(16488,60127,60158,'OP_ChangeServerControlFlagMsg',250,1),(16489,60127,60158,'OP_ChangeZoneMsg',79,1),(16490,60127,60158,'OP_CharacterAchievements',751,1),(16491,60127,60158,'OP_CharacterCreatedDungeons',555,1),(16492,60127,60158,'OP_CharacterCurrency',750,1),(16493,60127,60158,'OP_CharacterHousingList',511,1),(16494,60127,60158,'OP_CharacterLinkdeadMsg',418,1),(16495,60127,60158,'OP_CharacterMerc',67,1),(16496,60127,60158,'OP_CharacterMounts',588,1),(16497,60127,60158,'OP_CharacterPet',66,1),(16498,60127,60158,'OP_CharNameChangedMsg',356,1),(16499,60127,60158,'OP_CharRenamed',716,1),(16500,60127,60158,'OP_CharTransferCommitReplyMsg',426,1),(16501,60127,60158,'OP_CharTransferCommitRequestMsg',424,1),(16502,60127,60158,'OP_CharTransferReplyMsg',422,1),(16503,60127,60158,'OP_CharTransferRequestMsg',421,1),(16504,60127,60158,'OP_CharTransferRollbackReplyMsg',425,1),(16505,60127,60158,'OP_CharTransferRollbackRequestMsg',423,1),(16506,60127,60158,'OP_CharTransferStartReplyMsg',420,1),(16507,60127,60158,'OP_CharTransferStartRequestMsg',419,1),(16508,60127,60158,'OP_CharTransferValidateReplyMsg',442,1),(16509,60127,60158,'OP_CharTransferValidateRequestMsg',441,1),(16510,60127,60158,'OP_ChatCreateChannelMsg',289,1),(16511,60127,60158,'OP_ChatFiltersMsg',338,1),(16512,60127,60158,'OP_ChatJoinChannelMsg',290,1),(16513,60127,60158,'OP_ChatLeaveChannelMsg',292,1),(16514,60127,60158,'OP_ChatRelationshipUpdateMsg',187,1),(16515,60127,60158,'OP_ChatSendFriendsMsg',299,1),(16516,60127,60158,'OP_ChatSendIgnoresMsg',300,1),(16517,60127,60158,'OP_ChatTellChannelMsg',293,1),(16518,60127,60158,'OP_ChatTellUserMsg',294,1),(16519,60127,60158,'OP_ChatToggleFriendMsg',295,1),(16520,60127,60158,'OP_ChatToggleIgnoreMsg',298,1),(16521,60127,60158,'OP_ChatWhoChannelMsg',291,1),(16522,60127,60158,'OP_ClearDataMsg',100,1),(16523,60127,60158,'OP_ClearForLandingMsg',495,1),(16524,60127,60158,'OP_ClearForTakeOffMsg',194,1),(16525,60127,60158,'OP_ClientCmdMsg',60,1),(16526,60127,60158,'OP_ClientFellMsg',389,1),(16527,60127,60158,'OP_ClientIdleBeginMsg',409,1),(16528,60127,60158,'OP_ClientIdleEndMsg',410,1),(16529,60127,60158,'OP_ClientInDeathRegionMsg',390,1),(16530,60127,60158,'OP_ClientTeleportRequestMsg',80,1),(16531,60127,60158,'OP_ClientTeleportToLocationMsg',248,1),(16532,60127,60158,'OP_CloseGroupInviteWindowMsg',401,1),(16533,60127,60158,'OP_CollectAllHouseItemsMsg',155,1),(16534,60127,60158,'OP_ConsignItemRequestMsg',129,1),(16535,60127,60158,'OP_ConsignItemResponseMsg',130,1),(16536,60127,60158,'OP_ConsignmentCloseStoreMsg',128,1),(16537,60127,60158,'OP_ConsignRemoveItemsMsg',382,1),(16538,60127,60158,'OP_ConsignViewCreateMsg',379,1),(16539,60127,60158,'OP_ConsignViewGetPageMsg',380,1),(16540,60127,60158,'OP_ConsignViewReleaseMsg',381,1),(16541,60127,60158,'OP_ConsignViewSortMsg',387,1),(16542,60127,60158,'OP_CorruptedClientMsg',413,1),(16543,60127,60158,'OP_CreateBoatTransportsMsg',254,1),(16544,60127,60158,'OP_CreateCharacterDungeon',551,1),(16545,60127,60158,'OP_CreateCharacterReplyMsg',12,1),(16546,60127,60158,'OP_CreateCharacterRequestMsg',11,1),(16547,60127,60158,'OP_CreateCharFromCBBReplyMsg',430,1),(16548,60127,60158,'OP_CreateCharFromCBBRequestMsg',429,1),(16549,60127,60158,'OP_CreateGuildReplyMsg',123,1),(16550,60127,60158,'OP_CreateGuildRequestMsg',121,1),(16551,60127,60158,'OP_CreateZoneInstanceMsg',31,1),(16552,60127,60158,'OP_CsCategoryRequestMsg',371,1),(16553,60127,60158,'OP_CsCategoryResponseMsg',372,1),(16554,60127,60158,'OP_CSTicketAddCommentMsg',237,1),(16555,60127,60158,'OP_CSTicketChangeNotificationMsg',239,1),(16556,60127,60158,'OP_CSTicketCommentRequestMsg',234,1),(16557,60127,60158,'OP_CSTicketCommentResponseMsg',235,1),(16558,60127,60158,'OP_CSTicketCreateMsg',236,1),(16559,60127,60158,'OP_CSTicketDeleteMsg',238,1),(16560,60127,60158,'OP_CSTicketHeaderRequestMsg',232,1),(16561,60127,60158,'OP_CSTicketInfoMsg',233,1),(16562,60127,60158,'OP_CSToolAccessResponseMsg',392,1),(16563,60127,60158,'OP_CSToolsRequestMsg',251,1),(16564,60127,60158,'OP_CSToolsResponseMsg',252,1),(16565,60127,60158,'OP_CurrentPet',489,1),(16566,60127,60158,'OP_CustomizationPurchaseRequestMs',170,1),(16567,60127,60158,'OP_CustomizationReplyMsg',172,1),(16568,60127,60158,'OP_CustomizationSetRequestMsg',171,1),(16569,60127,60158,'OP_CustomizeHouseDisplay',741,1),(16570,60127,60158,'OP_DailyObjectives',601,1),(16571,60127,60158,'OP_DefaultGroupOptionsMsg',201,1),(16572,60127,60158,'OP_DefaultGroupOptionsRequestMsg',200,1),(16573,60127,60158,'OP_DeleteCharacterReplyMsg',19,1),(16574,60127,60158,'OP_DeleteCharacterRequestMsg',18,1),(16575,60127,60158,'OP_DeleteGuildMsg',126,1),(16576,60127,60158,'OP_DestUpdateReq',213,1),(16577,60127,60158,'OP_DialogCloseMsg',112,1),(16578,60127,60158,'OP_DialogSelectMsg',111,1),(16579,60127,60158,'OP_DispatchClientCmdMsg',62,1),(16580,60127,60158,'OP_DispatchESMsg',61,1),(16581,60127,60158,'OP_DispatchMsg',455,1),(16582,60127,60158,'OP_DispatchSpellCmdMsg',182,1),(16583,60127,60158,'OP_DisplayDebugNLLPointsMsg',258,1),(16584,60127,60158,'OP_DisplayEventMsg',456,1),(16585,60127,60158,'OP_DisplayExchangeScreenMsg',448,1),(16586,60127,60158,'OP_DisplayGroupOptionsScreenMsg',203,1),(16587,60127,60158,'OP_DisplayInnVisitScreenMsg',205,1),(16588,60127,60158,'OP_DisplayMailScreenMsg',408,1),(16589,60127,60158,'OP_DisplayTSEventReactionMsg',228,1),(16590,60127,60158,'OP_DisplayWarningMsg',269,1),(16591,60127,60158,'OP_DoneLoadingEntityResourcesMsg',38,1),(16592,60127,60158,'OP_DoneLoadingZoneResourcesMsg',36,1),(16593,60127,60158,'OP_DoneSendingInitialEntitiesMsg',37,1),(16594,60127,60158,'OP_DressingRoom',514,1),(16595,60127,60158,'OP_DumpSchedulerMsg',206,1),(16596,60127,60158,'OP_DungeonMakerEnter',552,1),(16597,60127,60158,'OP_DungeonMakerItemRequest',554,1),(16598,60127,60158,'OP_DungeonMakerItemResponse',586,1),(16599,60127,60158,'OP_DungeonMakerToolboxList',556,1),(16600,60127,60158,'OP_DungeonMakerUnknown',557,1),(16601,60127,60158,'OP_DungeonMakerUnknown1',558,1),(16602,60127,60158,'OP_DungeonPlayAsAvatarList',755,1),(16603,60127,60158,'OP_DungeonPlayAsAvatarSelected',756,1),(16604,60127,60158,'OP_EncounterBrokenMsg',267,1),(16605,60127,60158,'OP_EnterHouseMsg',157,1),(16606,60127,60158,'OP_EnterMoveObjectModeMsg',164,1),(16607,60127,60158,'OP_EntityVerbsReplyMsg',184,1),(16608,60127,60158,'OP_EntityVerbsRequestMsg',183,1),(16609,60127,60158,'OP_EntityVerbsVerbMsg',185,1),(16610,60127,60158,'OP_EqArenaResultsCmd',706,1),(16611,60127,60158,'OP_EqAvailWorldChannelsCmd',693,1),(16612,60127,60158,'OP_EqBetaCopyRequest',612,1),(16613,60127,60158,'OP_EqCannedEmoteCmd',635,1),(16614,60127,60158,'OP_EqChatChannelUpdateCmd',691,1),(16615,60127,60158,'OP_EqChoiceWinCmd',672,1),(16616,60127,60158,'OP_EqCloseWindowCmd',664,1),(16617,60127,60158,'OP_EqCollectionFilterCmd',651,1),(16618,60127,60158,'OP_EqCollectionItemCmd',652,1),(16619,60127,60158,'OP_EqCollectionUpdateCmd',650,1),(16620,60127,60158,'OP_EqConsignmentItemsCmd',696,1),(16621,60127,60158,'OP_EqCreateGhostCmd',617,1),(16622,60127,60158,'OP_EqCreateListBoxCmd',632,1),(16623,60127,60158,'OP_EqCreateSignWidgetCmd',619,1),(16624,60127,60158,'OP_EqCreateWidgetCmd',618,1),(16625,60127,60158,'OP_EqDebugPVDCmd',685,1),(16626,60127,60158,'OP_EqDestroyGhostCmd',620,1),(16627,60127,60158,'OP_EqDialogCloseCmd',648,1),(16628,60127,60158,'OP_EqDialogOpenCmd',647,1),(16629,60127,60158,'OP_EqDisplaySpellFailCmd',668,1),(16630,60127,60158,'OP_EqDisplayTextCmd',616,1),(16631,60127,60158,'OP_EqDrawablePathGraphCmd',646,1),(16632,60127,60158,'OP_EqEnableGameEventCmd',678,1),(16633,60127,60158,'OP_EqEnableWindowCmd',680,1),(16634,60127,60158,'OP_EqExamineInfoCmd',663,1),(16635,60127,60158,'OP_EqFactionUpdateCmd',649,1),(16636,60127,60158,'OP_EqFlashWindowCmd',681,1),(16637,60127,60158,'OP_EqGetProbsCmd',689,1),(16638,60127,60158,'OP_EqGroupMemberRemovedCmd',642,1),(16639,60127,60158,'OP_EqGuildBankEventActionCmd',707,1),(16640,60127,60158,'OP_EqGuildBankExamineInfoCmd',708,1),(16641,60127,60158,'OP_EqHearChainEffectCmd',643,1),(16642,60127,60158,'OP_EqHearChatCmd',615,1),(16643,60127,60158,'OP_EqHearCombatCmd',624,1),(16644,60127,60158,'OP_EqHearConsiderCmd',630,1),(16645,60127,60158,'OP_EqHearDeathCmd',641,1),(16646,60127,60158,'OP_EQHearDispellCmd',753,1),(16647,60127,60158,'OP_EqHearDrowningCmd',640,1),(16648,60127,60158,'OP_EqHearHealCmd',690,1),(16649,60127,60158,'OP_EqHearPlayFlavorCmd',683,1),(16650,60127,60158,'OP_EQHearProcCmd',626,1),(16651,60127,60158,'OP_EQHearResEffectCmd',627,1),(16652,60127,60158,'OP_EqHearSpellCastCmd',625,1),(16653,60127,60158,'OP_EqHearSpellFizzleCmd',629,1),(16654,60127,60158,'OP_EqHearSpellInterruptCmd',628,1),(16655,60127,60158,'OP_EqHearSpellNoLandCmd',709,1),(16656,60127,60158,'OP_EQHearThreatCmd',747,1),(16657,60127,60158,'OP_EqHelpPathClearCmd',661,1),(16658,60127,60158,'OP_EqHelpPathCmd',660,1),(16659,60127,60158,'OP_EqInspectPCResultsCmd',645,1),(16660,60127,60158,'OP_EqInstructionWindowCloseCmd',675,1),(16661,60127,60158,'OP_EqInstructionWindowCmd',674,1),(16662,60127,60158,'OP_EqInstructionWindowGoalCmd',676,1),(16663,60127,60158,'OP_EqInstructionWindowTaskCmd',677,1),(16664,60127,60158,'OP_EqJunctionListCmd',666,1),(16665,60127,60158,'OP_EqMapExplorationCmd',699,1),(16666,60127,60158,'OP_EqMentoring',654,1),(16667,60127,60158,'OP_EqPlaySound3DCmd',638,1),(16668,60127,60158,'OP_EqPlaySoundCmd',637,1),(16669,60127,60158,'OP_EqPlayVoiceCmd',639,1),(16670,60127,60158,'OP_EqQuestGroupCmd',656,1),(16671,60127,60158,'OP_EqQuestionnaireCmd',687,1),(16672,60127,60158,'OP_EqQuestJournalReplyCmd',655,1),(16673,60127,60158,'OP_EqQuestJournalUpdateCmd',653,1),(16674,60127,60158,'OP_EqReceiveOfferCmd',644,1),(16675,60127,60158,'OP_EqResurrectedCmd',671,1),(16676,60127,60158,'OP_EqSetControlGhostCmd',622,1),(16677,60127,60158,'OP_EqSetDebugPathPointsCmd',633,1),(16678,60127,60158,'OP_EqSetDefaultVerbCmd',673,1),(16679,60127,60158,'OP_EqSetPOVGhostCmd',623,1),(16680,60127,60158,'OP_EqShowBookCmd',686,1),(16681,60127,60158,'OP_EqShowDeathWindowCmd',667,1),(16682,60127,60158,'OP_EqShowWindowCmd',679,1),(16683,60127,60158,'OP_EqSpellCastEndCmd',670,1),(16684,60127,60158,'OP_EqSpellCastStartCmd',669,1),(16685,60127,60158,'OP_EqSpellMoveToRangeAndRetryCmd',701,1),(16686,60127,60158,'OP_EqStartBrokerCmd',698,1),(16687,60127,60158,'OP_EqStateCmd',636,1),(16688,60127,60158,'OP_EqStoreLogCmd',700,1),(16689,60127,60158,'OP_EqUpdateBankCmd',662,1),(16690,60127,60158,'OP_EqUpdateGhostCmd',621,1),(16691,60127,60158,'OP_EqUpdateLootCmd',665,1),(16692,60127,60158,'OP_EqUpdateMerchantCmd',657,1),(16693,60127,60158,'OP_EqUpdatePlayerMailCmd',702,1),(16694,60127,60158,'OP_EqUpdatePlayerTradeCmd',659,1),(16695,60127,60158,'OP_EqUpdateSignWidgetCmd',684,1),(16696,60127,60158,'OP_EqUpdateStoreCmd',658,1),(16697,60127,60158,'OP_EqUpdateSubClassesCmd',631,1),(16698,60127,60158,'OP_EqUpdateTargetCmd',694,1),(16699,60127,60158,'OP_EqWhoChannelQueryReplyCmd',692,1),(16700,60127,60158,'OP_ESInitMsg',27,1),(16701,60127,60158,'OP_ESLoginRequestMsg',3,1),(16702,60127,60158,'OP_ESReadyForClientsMsg',28,1),(16703,60127,60158,'OP_ESStatusMsg',102,1),(16704,60127,60158,'OP_ESWeatherRequestEndMsg',107,1),(16705,60127,60158,'OP_ESWeatherRequestMsg',106,1),(16706,60127,60158,'OP_ESZoneInstanceStatusMsg',103,1),(16707,60127,60158,'OP_ExamineConsignmentRequestMsg',174,1),(16708,60127,60158,'OP_ExamineConsignmentResponseMsg',175,1),(16709,60127,60158,'OP_ExamineInfoRequestMsg',259,1),(16710,60127,60158,'OP_ExamineItemRequestMsg',198,1),(16711,60127,60158,'OP_ExitHouseMsg',158,1),(16712,60127,60158,'OP_ExpectClientAsCharacterReplyMs',24,1),(16713,60127,60158,'OP_ExpectClientAsCharacterRequest',34,1),(16714,60127,60158,'OP_ExpPurchWindow',732,1),(16715,60127,60158,'OP_FellowshipExpMsg',125,1),(16716,60127,60158,'OP_FlightPathsMsg',417,1),(16717,60127,60158,'OP_GameWorldTimeMsg',45,1),(16718,60127,60158,'OP_PaperdollImage',581,1),(16719,60127,60158,'OP_GetAuctionAssetIDMsg',445,1),(16720,60127,60158,'OP_GetAuctionAssetIDReplyMsg',446,1),(16721,60127,60158,'OP_GetAvatarAccessRequestForCSToo',397,1),(16722,60127,60158,'OP_GetCharacterSerializedReplyMsg',428,1),(16723,60127,60158,'OP_GetCharacterSerializedRequestM',427,1),(16724,60127,60158,'OP_GroupCreatedMsg',90,1),(16725,60127,60158,'OP_GroupDestroyedMsg',91,1),(16726,60127,60158,'OP_GroupLeaderChangedMsg',95,1),(16727,60127,60158,'OP_GroupMemberAddedMsg',92,1),(16728,60127,60158,'OP_GroupMemberRemovedMsg',93,1),(16729,60127,60158,'OP_GroupOptionsMsg',202,1),(16730,60127,60158,'OP_GroupRemovedFromGroupMsg',94,1),(16731,60127,60158,'OP_GroupResendOOZDataMsg',96,1),(16732,60127,60158,'OP_GroupSettingsChangedMsg',97,1),(16733,60127,60158,'OP_GuildBankActionMsg',278,1),(16734,60127,60158,'OP_GuildBankActionResponseMsg',279,1),(16735,60127,60158,'OP_GuildBankEventListMsg',283,1),(16736,60127,60158,'OP_GuildBankItemDetailsRequestMsg',280,1),(16737,60127,60158,'OP_GuildBankItemDetailsResponseMs',281,1),(16738,60127,60158,'OP_GuildBankUpdateMsg',282,1),(16739,60127,60158,'OP_GuildEventActionMsg',273,1),(16740,60127,60158,'OP_GuildEventAddMsg',272,1),(16741,60127,60158,'OP_GuildEventDetailsMsg',276,1),(16742,60127,60158,'OP_GuildEventListMsg',274,1),(16743,60127,60158,'OP_GuildEventMsg',271,1),(16744,60127,60158,'OP_GuildMembershipResponseMsg',361,1),(16745,60127,60158,'OP_GuildRecruiting',712,1),(16746,60127,60158,'OP_GuildRecruitingDetails',713,1),(16747,60127,60158,'OP_GuildRecruitingImage',714,1),(16748,60127,60158,'OP_GuildRecruitingMemberInfo',711,1),(16749,60127,60158,'OP_GuildsayMsg',124,1),(16750,60127,60158,'OP_GuildStatusUpdate',705,1),(16751,60127,60158,'OP_GuildUpdateMsg',127,1),(16752,60127,60158,'OP_HeritageMsg',10004,1),(16753,60127,60158,'OP_HideIllusionsMsg',197,1),(16754,60127,60158,'OP_HouseAccessRemoveMsg',161,1),(16755,60127,60158,'OP_HouseAccessSetMsg',160,1),(16756,60127,60158,'OP_HouseCustomizationScreenMsg',169,1),(16757,60127,60158,'OP_HouseDefaultAccessSetMsg',159,1),(16758,60127,60158,'OP_HouseDeletedRemotelyMsg',145,1),(16759,60127,60158,'OP_HouseItemsList',488,1),(16760,60127,60158,'OP_HousingDataChangedMsg',431,1),(16761,60127,60158,'OP_HousingRestoreMsg',432,1),(16762,60127,60158,'OP_InspectPlayerMsg',367,1),(16763,60127,60158,'OP_InspectPlayerRequestMsg',454,1),(16764,60127,60158,'OP_InviteRequestMsg',451,1),(16765,60127,60158,'OP_InviteResponseMsg',452,1),(16766,60127,60158,'OP_InviteTargetResponseMsg',453,1),(16767,60127,60158,'OP_JoinGuildNotifyMsg',363,1),(16768,60127,60158,'OP_JournalQuestStoryline',754,1),(16769,60127,60158,'OP_KeymapDataMsg',180,1),(16770,60127,60158,'OP_KeymapLoadMsg',178,1),(16771,60127,60158,'OP_KeymapNoneMsg',179,1),(16772,60127,60158,'OP_KeymapSaveMsg',181,1),(16773,60127,60158,'OP_KnowledgebaseRequestMsg',230,1),(16774,60127,60158,'OP_KnowledgebaseResponseMsg',231,1),(16775,60127,60158,'OP_KnowledgeWindowSlotMappingMsg',373,1),(16776,60127,60158,'OP_KnownLanguagesMsg',242,1),(16777,60127,60158,'OP_Launchpad',579,1),(16778,60127,60158,'OP_LeaveGuildNotifyMsg',362,1),(16779,60127,60158,'OP_LevelChangedMsg',265,1),(16780,60127,60158,'OP_LFGGroupSearch',508,1),(16781,60127,60158,'OP_LFGUpdateMsg',522,1),(16782,60127,60158,'OP_LikeOption',139,1),(16783,60127,60158,'OP_LoadCalendarEvents',582,1),(16784,60127,60158,'OP_LoadWelcomeWindow',564,1),(16785,60127,60158,'OP_LoginByNumRequestMsg',1,1),(16786,60127,60158,'OP_LoginReplyMsg',4,1),(16787,60127,60158,'OP_LoginRequestMsg',0,1),(16788,60127,60158,'OP_LootItemsRequestMsg',188,1),(16789,60127,60158,'OP_Lottery',710,1),(16790,60127,60158,'OP_LSCheckAcctLockMsg',207,1),(16791,60127,60158,'OP_LsClientAlertlogReplyMsg',246,1),(16792,60127,60158,'OP_LsClientBaselogReplyMsg',244,1),(16793,60127,60158,'OP_LsClientCrashlogReplyMsg',245,1),(16794,60127,60158,'OP_LsClientVerifylogReplyMsg',247,1),(16795,60127,60158,'OP_LsRequestClientCrashLogMsg',243,1),(16796,60127,60158,'OP_LSServerLockMsg',369,1),(16797,60127,60158,'OP_MacroInitMsg',262,1),(16798,60127,60158,'OP_MacroUpdateMsg',263,1),(16799,60127,60158,'OP_MailCommitSendMessageMsg',348,1),(16800,60127,60158,'OP_MailDeleteMessageMsg',344,1),(16801,60127,60158,'OP_MailEventNotificationMsg',415,1),(16802,60127,60158,'OP_MailGetHeadersReplyMsg',345,1),(16803,60127,60158,'OP_MailGetMessageMsg',342,1),(16804,60127,60158,'OP_MailGetMessageReplyMsg',346,1),(16805,60127,60158,'OP_MailRemoveAttachFromMailMsg',350,1),(16806,60127,60158,'OP_MailSendMessageMsg',343,1),(16807,60127,60158,'OP_MailSendMessageReplyMsg',347,1),(16808,60127,60158,'OP_MailSendSystemMessageMsg',349,1),(16809,60127,60158,'OP_MakeGroupLeaderMsg',89,1),(16810,60127,60158,'OP_MapFogDataInitMsg',399,1),(16811,60127,60158,'OP_MapFogDataUpdateMsg',400,1),(16812,60127,60158,'OP_MapRequest',525,1),(16813,60127,60158,'OP_MarketAddFundsReply',533,1),(16814,60127,60158,'OP_MarketAddFundsRequest',532,1),(16815,60127,60158,'OP_MarketFundsUpdate',530,1),(16816,60127,60158,'OP_MarketPlaceItems',543,1),(16817,60127,60158,'OP_MarketPlacePrices',536,1),(16818,60127,60158,'OP_MarketPurchase',535,1),(16819,60127,60158,'OP_MentorPopup',562,1),(16820,60127,60158,'OP_MercHireWindow',757,1),(16821,60127,60158,'OP_MercUnknown',758,1),(16822,60127,60158,'OP_MigrateBoatTransportMsg',256,1),(16823,60127,60158,'OP_MigrateBoatTransportReplyMsg',257,1),(16824,60127,60158,'OP_MigrateClientToZoneReplyMsg',84,1),(16825,60127,60158,'OP_MigrateClientToZoneRequestMsg',83,1),(16826,60127,60158,'OP_ModifyGuildMsg',270,1),(16827,60127,60158,'OP_MonitorCharacterListMsg',58,1),(16828,60127,60158,'OP_MonitorCharacterListRequestMsg',59,1),(16829,60127,60158,'OP_MonitorReplyMsg',57,1),(16830,60127,60158,'OP_MOTDMsg',46,1),(16831,60127,60158,'OP_MoveableObjectPlacementCriteri',163,1),(16832,60127,60158,'OP_MoveLogUpdateMsg',404,1),(16833,60127,60158,'OP_NotifyApprenticeStoppedMentori',412,1),(16834,60127,60158,'OP_OfferQuestMsg',405,1),(16835,60127,60158,'OP_OnscreenMsgMsg',268,1),(16836,60127,60158,'OP_OpenCharCust',565,1),(16837,60127,60158,'OP_OutOfZoneMemberDataMsg',98,1),(16838,60127,60158,'OP_PayHouseUpkeepMsg',162,1),(16839,60127,60158,'OP_PerformCameraShakeMsg',217,1),(16840,60127,60158,'OP_PerformPlayerKnockbackMsg',216,1),(16841,60127,60158,'OP_PetOptions',204,1),(16842,60127,60158,'OP_PetOptionsResponse',585,1),(16843,60127,60158,'OP_PlayCharacterReplyMsg',21,1),(16844,60127,60158,'OP_PlayCharacterRequestMsg',20,1),(16845,60127,60158,'OP_PlayerHouseAccessUpdateMsg',150,1),(16846,60127,60158,'OP_PlayerHouseBaseScreenMsg',148,1),(16847,60127,60158,'OP_PlayerHouseCloseUIMsg',152,1),(16848,60127,60158,'OP_PlayerHouseDisplayStatusMsg',151,1),(16849,60127,60158,'OP_PlayerHousePurchaseScreenMsg',149,1),(16850,60127,60158,'OP_PlayerMadeInstances',143,1),(16851,60127,60158,'OP_PlayerMadeInstancesScreen',142,1),(16852,60127,60158,'OP_PlayerPollAnswer',561,1),(16853,60127,60158,'OP_PlayerPollPopup',560,1),(16854,60127,60158,'OP_PlayLon',515,1),(16855,60127,60158,'OP_PointOfInterest',736,1),(16856,60127,60158,'OP_PointOfInterest2',737,1),(16857,60127,60158,'OP_PopulateSkillMapsMsg',218,1),(16858,60127,60158,'OP_PositionBoatTransportMsg',255,1),(16859,60127,60158,'OP_PositionMoveableObject',165,1),(16860,60127,60158,'OP_PostPossessionMsg',458,1),(16861,60127,60158,'OP_PredictionUpdateMsg',39,1),(16862,60127,60158,'OP_PrePossessionMsg',457,1),(16863,60127,60158,'OP_PromoFlagsDetailsMsg',378,1),(16864,60127,60158,'OP_PublishHouse',141,1),(16865,60127,60158,'OP_PurchaseConsignmentLoreCheckRe',411,1),(16866,60127,60158,'OP_PurchaseConsignmentRequestMsg',131,1),(16867,60127,60158,'OP_QueAllBgSolo',568,1),(16868,60127,60158,'OP_QuestionnaireMsg',264,1),(16869,60127,60158,'OP_QuestJournalInspectMsg',116,1),(16870,60127,60158,'OP_QuestJournalOpenMsg',115,1),(16871,60127,60158,'OP_QuestJournalSetVisibleMsg',117,1),(16872,60127,60158,'OP_QuestJournalWaypointMsg',118,1),(16873,60127,60158,'OP_QuestReward',324,1),(16874,60127,60158,'OP_QuickbarInitMsg',260,1),(16875,60127,60158,'OP_QuickbarUpdateMsg',261,1),(16876,60127,60158,'OP_RaceRestrictionMsg',443,1),(16877,60127,60158,'OP_ReadBookPageMsg',199,1),(16878,60127,60158,'OP_ReadyForTakeOffMsg',195,1),(16879,60127,60158,'OP_ReadyToZoneMsg',86,1),(16880,60127,60158,'OP_RecipeBook',544,1),(16881,60127,60158,'OP_RecipeDetailsMsg',74,1),(16882,60127,60158,'OP_RecipeList',748,1),(16883,60127,60158,'OP_RecipeListUnknown',597,1),(16884,60127,60158,'OP_RelinquishHouseMsg',156,1),(16885,60127,60158,'OP_ReloadLocalizedTxtMsg',359,1),(16886,60127,60158,'OP_RemoteCmdMsg',44,1),(16887,60127,60158,'OP_RemoveClientFromGroupMsg',87,1),(16888,60127,60158,'OP_RemoveConcentrationMsg',114,1),(16889,60127,60158,'OP_RemoveGroupFromGroupMsg',88,1),(16890,60127,60158,'OP_RemoveSpellEffectMsg',113,1),(16891,60127,60158,'OP_RenameGuildMsg',286,1),(16892,60127,60158,'OP_ReplaceableSubMeshesMsg',168,1),(16893,60127,60158,'OP_ReportMsg',384,1),(16894,60127,60158,'OP_RequestCampMsg',52,1),(16895,60127,60158,'OP_RequestGuildBankEventDetailsMs',284,1),(16896,60127,60158,'OP_RequestGuildEventDetailsMsg',275,1),(16897,60127,60158,'OP_RequestGuildInfoMsg',277,1),(16898,60127,60158,'OP_RequestGuildMembershipMsg',360,1),(16899,60127,60158,'OP_RequestHelpRepathMsg',209,1),(16900,60127,60158,'OP_RequestRecipeDetailsMsg',73,1),(16901,60127,60158,'OP_RequestTargetLocMsg',210,1),(16902,60127,60158,'OP_Research',749,1),(16903,60127,60158,'OP_ResendWorldChannelsMsg',447,1),(16904,60127,60158,'OP_ReskinCharacterRequestMsg',15,1),(16905,60127,60158,'OP_RestartZoneMsg',416,1),(16906,60127,60158,'OP_RewardPackMsg',285,1),(16907,60127,60158,'OP_SatMsg',192,1),(16908,60127,60158,'OP_SavageBarInitMsg',584,1),(16909,60127,60158,'OP_SelectZoneTeleporterDestinatio',358,1),(16910,60127,60158,'OP_SendLatestRequestMsg',99,1),(16911,60127,60158,'OP_ServerPlayCharacterReplyMsg',26,1),(16912,60127,60158,'OP_ServerPlayCharacterRequestMsg',25,1),(16913,60127,60158,'OP_SetInstanceDisplayNameMsg',444,1),(16914,60127,60158,'OP_SetRemoteCmdsMsg',43,1),(16915,60127,60158,'OP_SetSocialMsg',101,1),(16916,60127,60158,'OP_ShaderCustomizationMsg',167,1),(16917,60127,60158,'OP_ShowCreateFromRecipeUIMsg',222,1),(16918,60127,60158,'OP_ShowIllusionsMsg',196,1),(16919,60127,60158,'OP_ShowItemCreationProcessUIMsg',226,1),(16920,60127,60158,'OP_ShowRecipeBookMsg',229,1),(16921,60127,60158,'OP_ShowZoneTeleporterDestinations',357,1),(16922,60127,60158,'OP_SitMsg',190,1),(16923,60127,60158,'OP_SkillInfoRequest',518,1),(16924,60127,60158,'OP_SkillInfoResponse',519,1),(16925,60127,60158,'OP_SOEAllAccess',613,1),(16926,60127,60158,'OP_SpellGainedMsg',266,1),(16927,60127,60158,'OP_StandMsg',191,1),(16928,60127,60158,'OP_StoodMsg',193,1),(16929,60127,60158,'OP_StopItemCreationMsg',225,1),(16930,60127,60158,'OP_StoppedLootingMsg',189,1),(16931,60127,60158,'OP_StopTrackingMsg',395,1),(16932,60127,60158,'OP_SubmitCharCust',566,1),(16933,60127,60158,'OP_SupplyDepot',746,1),(16934,60127,60158,'OP_SysClient',221,1),(16935,60127,60158,'OP_TeleportWithinZoneMsg',81,1),(16936,60127,60158,'OP_TeleportWithinZoneNoReloadMsg',82,1),(16937,60127,60158,'OP_TintWidgetsMsg',173,1),(16938,60127,60158,'OP_TitleUpdateMsg',388,1),(16939,60127,60158,'OP_TrackingUpdateMsg',393,1),(16940,60127,60158,'OP_TradeskillList',715,1),(16941,60127,60158,'OP_TraitsList',738,1),(16942,60127,60158,'OP_UIEvent',531,1),(16943,60127,60158,'OP_UIResetMsg',177,1),(16944,60127,60158,'OP_UISettingsResponseMsg',176,1),(16945,60127,60158,'OP_Unknown',771,1),(16946,60127,60158,'OP_UnknownNpcMsg',377,1),(16947,60127,60158,'OP_UpdateActivePublicZonesMsg',376,1),(16948,60127,60158,'OP_UpdateCharacterSheetMsg',65,1),(16949,60127,60158,'OP_UpdateClientPredFlagsMsg',249,1),(16950,60127,60158,'OP_UpdateDebugRadiiMsg',383,1),(16951,60127,60158,'OP_UpdateGroupMemberDataMsg',392,1),(16952,60127,60158,'OP_UpdateHouseAccessDataMsg',147,1),(16953,60127,60158,'OP_UpdateHouseDataMsg',146,1),(16954,60127,60158,'OP_UpdateInventoryMsg',70,1),(16955,60127,60158,'OP_UpdateItemCreationProcessUIMsg',227,1),(16956,60127,60158,'OP_UpdateMotdMsg',211,1),(16957,60127,60158,'OP_UpdateOpportunityMsg',77,1),(16958,60127,60158,'OP_UpdatePositionMsg',41,1),(16959,60127,60158,'OP_UpdateRaidMsg',385,1),(16960,60127,60158,'OP_UpdateRecipeBookMsg',72,1),(16961,60127,60158,'OP_UpdateSkillBookMsg',75,1),(16962,60127,60158,'OP_UpdateSkillsMsg',76,1),(16963,60127,60158,'OP_UpdateSpellBookMsg',68,1),(16964,60127,60158,'OP_UpdateTargetLocMsg',64,1),(16965,60127,60158,'OP_UpdateTargetMsg',63,1),(16966,60127,60158,'OP_UpdateTitleCmd',498,1),(16967,60127,60158,'OP_UseAdornment',726,1),(16968,60127,60158,'OP_VideoUploaded',583,1),(16969,60127,60158,'OP_VoiceChatChannel',524,1),(16970,60127,60158,'OP_VoiceChatServer',742,1),(16971,60127,60158,'OP_WaypointReplyMsg',353,1),(16972,60127,60158,'OP_WaypointRequestMsg',352,1),(16973,60127,60158,'OP_WaypointSelectMsg',354,1),(16974,60127,60158,'OP_WaypointUpdateMsg',355,1),(16975,60127,60158,'OP_Weakness',587,1),(16976,60127,60158,'OP_WhoQueryReplyMsg',56,1),(16977,60127,60158,'OP_WhoQueryRequestMsg',55,1),(16978,60127,60158,'OP_WorldDataChangeMsg',414,1),(16979,60127,60158,'OP_WorldDataUpdateMsg',240,1),(16980,60127,60158,'OP_WorldListMsg',8,1),(16981,60127,60158,'OP_WorldPingMsg',403,1),(16982,60127,60158,'OP_WorldShutdownUpdateMsg',407,1),(16983,60127,60158,'OP_WorldStatusChangeMsg',6,1),(16984,60127,60158,'OP_WorldTravelAvail',576,1),(16985,60127,60158,'OP_WSAcctLockStatusMsg',208,1),(16986,60127,60158,'OP_WSCreateCharacterReplyMsg',14,1),(16987,60127,60158,'OP_WSCreateCharacterRequestMsg',13,1),(16988,60127,60158,'OP_WSLoginRequestMsg',2,1),(16989,60127,60158,'OP_WSServerHideMsg',370,1),(16990,60127,60158,'OP_WSServerLockMsg',368,1),(16991,60127,60158,'OP_WSStatusReplyMsg',5,1),(16992,60127,60158,'OP_ZoneBgInstanceList',572,1),(16993,60127,60158,'OP_ZoneInfoMsg',35,1),(16994,60127,60158,'OP_ZoneInstanceCreateReplyMsg',32,1),(16995,60127,60158,'OP_ZoneInstanceDestroyedMsg',33,1),(16996,60127,60158,'OP_ZoneMOTDMsg',47,1),(16997,60127,60158,'OP_ZonesStatusMsg',105,1),(16998,60127,60158,'OP_ZonesStatusRequestMsg',104,1),(16999,60127,60158,'OP_ZoneToFriendReplyMsg',288,1),(17000,60127,60158,'OP_ZoneToFriendRequestMsg',287,1),(17001,60160,61548,'OP_AchievementUpdateMsg',759,1),(17002,60160,61548,'OP_AddSocialStructureStandingMsg',253,1),(17003,60160,61548,'OP_AdvancementRequestMsg',398,1),(17004,60160,61548,'OP_AdventureList',492,1),(17005,60160,61548,'OP_AFKUpdateMsg',374,1),(17006,60160,61548,'OP_AfterInvSpellUpdate',71,1),(17007,60160,61548,'OP_AllCharactersDescReplyMsg',10,1),(17008,60160,61548,'OP_AllCharactersDescRequestMsg',9,1),(17009,60160,61548,'OP_AllWSDescRequestMsg',7,1),(17010,60160,61548,'OP_AnonUpdateMsg',375,1),(17011,60160,61548,'OP_ArenaCreate',460,1),(17012,60160,61548,'OP_ArenaGameTypesMsg',449,1),(17013,60160,61548,'OP_ArenaList',461,1),(17014,60160,61548,'OP_ArenaWindow',469,1),(17015,60160,61548,'OP_AttackAllowed',504,1),(17016,60160,61548,'OP_AttackNotAllowed',505,1),(17017,60160,61548,'OP_AuctionAbortMsg',440,1),(17018,60160,61548,'OP_AuctionCharacter',437,1),(17019,60160,61548,'OP_AuctionCharacterReply',438,1),(17020,60160,61548,'OP_AuctionCoin',435,1),(17021,60160,61548,'OP_AuctionCoinReply',436,1),(17022,60160,61548,'OP_AuctionCommitMsg',439,1),(17023,60160,61548,'OP_AuctionItem',433,1),(17024,60160,61548,'OP_AuctionItemReply',434,1),(17025,60160,61548,'OP_AuditAuctionEventMsg',450,1),(17026,60160,61548,'OP_AvatarCreatedMsg',48,1),(17027,60160,61548,'OP_AvatarDestroyedMsg',49,1),(17028,60160,61548,'OP_AvatarUpdateMsg',364,1),(17029,60160,61548,'OP_BadLanguageFilter',523,1),(17030,60160,61548,'OP_BagOptions',506,1),(17031,60160,61548,'OP_BeginItemCreationMsg',224,1),(17032,60160,61548,'OP_BeginTrackingMsg',394,1),(17033,60160,61548,'OP_BioUpdateMsg',366,1),(17034,60160,61548,'OP_BrokerAddBag',296,1),(17035,60160,61548,'OP_BrokerRemoveBag',297,1),(17036,60160,61548,'OP_BrokerSellList',702,1),(17037,60160,61548,'OP_BuyPlayerHouseMsg',153,1),(17038,60160,61548,'OP_BuyPlayerHouseTintMsg',154,1),(17039,60160,61548,'OP_CampAbortedMsg',54,1),(17040,60160,61548,'OP_CampClientMsg',391,1),(17041,60160,61548,'OP_CampStartedMsg',53,1),(17042,60160,61548,'OP_CancelCreateFromRecipeMsg',223,1),(17043,60160,61548,'OP_CancelledFeignMsg',219,1),(17044,60160,61548,'OP_CancelMoveObjectModeMsg',166,1),(17045,60160,61548,'OP_CancelSpellCast',493,1),(17046,60160,61548,'OP_ChangeServerControlFlagMsg',250,1),(17047,60160,61548,'OP_ChangeZoneMsg',79,1),(17048,60160,61548,'OP_CharacterAchievements',758,1),(17049,60160,61548,'OP_CharacterCreatedDungeons',555,1),(17050,60160,61548,'OP_CharacterCurrency',757,1),(17051,60160,61548,'OP_CharacterHousingList',511,1),(17052,60160,61548,'OP_CharacterLinkdeadMsg',418,1),(17053,60160,61548,'OP_CharacterMerc',67,1),(17054,60160,61548,'OP_CharacterMounts',588,1),(17055,60160,61548,'OP_CharacterPet',66,1),(17056,60160,61548,'OP_CharNameChangedMsg',356,1),(17057,60160,61548,'OP_CharRenamed',723,1),(17058,60160,61548,'OP_CharTransferCommitReplyMsg',426,1),(17059,60160,61548,'OP_CharTransferCommitRequestMsg',424,1),(17060,60160,61548,'OP_CharTransferReplyMsg',422,1),(17061,60160,61548,'OP_CharTransferRequestMsg',421,1),(17062,60160,61548,'OP_CharTransferRollbackReplyMsg',425,1),(17063,60160,61548,'OP_CharTransferRollbackRequestMsg',423,1),(17064,60160,61548,'OP_CharTransferStartReplyMsg',420,1),(17065,60160,61548,'OP_CharTransferStartRequestMsg',419,1),(17066,60160,61548,'OP_CharTransferValidateReplyMsg',442,1),(17067,60160,61548,'OP_CharTransferValidateRequestMsg',441,1),(17068,60160,61548,'OP_ChatCreateChannelMsg',289,1),(17069,60160,61548,'OP_ChatFiltersMsg',338,1),(17070,60160,61548,'OP_ChatJoinChannelMsg',290,1),(17071,60160,61548,'OP_ChatLeaveChannelMsg',292,1),(17072,60160,61548,'OP_ChatRelationshipUpdateMsg',187,1),(17073,60160,61548,'OP_ChatSendFriendsMsg',299,1),(17074,60160,61548,'OP_ChatSendIgnoresMsg',300,1),(17075,60160,61548,'OP_ChatTellChannelMsg',293,1),(17076,60160,61548,'OP_ChatTellUserMsg',294,1),(17077,60160,61548,'OP_ChatToggleFriendMsg',295,1),(17078,60160,61548,'OP_ChatToggleIgnoreMsg',298,1),(17079,60160,61548,'OP_ChatWhoChannelMsg',291,1),(17080,60160,61548,'OP_ClearDataMsg',100,1),(17081,60160,61548,'OP_ClearForLandingMsg',495,1),(17082,60160,61548,'OP_ClearForTakeOffMsg',194,1),(17083,60160,61548,'OP_ClientCmdMsg',60,1),(17084,60160,61548,'OP_ClientFellMsg',389,1),(17085,60160,61548,'OP_ClientIdleBeginMsg',409,1),(17086,60160,61548,'OP_ClientIdleEndMsg',410,1),(17087,60160,61548,'OP_ClientInDeathRegionMsg',390,1),(17088,60160,61548,'OP_ClientTeleportRequestMsg',80,1),(17089,60160,61548,'OP_ClientTeleportToLocationMsg',248,1),(17090,60160,61548,'OP_CloseGroupInviteWindowMsg',401,1),(17091,60160,61548,'OP_CollectAllHouseItemsMsg',155,1),(17092,60160,61548,'OP_ConsignItemRequestMsg',129,1),(17093,60160,61548,'OP_ConsignItemResponseMsg',130,1),(17094,60160,61548,'OP_ConsignmentCloseStoreMsg',128,1),(17095,60160,61548,'OP_ConsignRemoveItemsMsg',382,1),(17096,60160,61548,'OP_ConsignViewCreateMsg',379,1),(17097,60160,61548,'OP_ConsignViewGetPageMsg',380,1),(17098,60160,61548,'OP_ConsignViewReleaseMsg',381,1),(17099,60160,61548,'OP_ConsignViewSortMsg',387,1),(17100,60160,61548,'OP_CorruptedClientMsg',413,1),(17101,60160,61548,'OP_CreateBoatTransportsMsg',254,1),(17102,60160,61548,'OP_CreateCharacterDungeon',551,1),(17103,60160,61548,'OP_CreateCharacterReplyMsg',12,1),(17104,60160,61548,'OP_CreateCharacterRequestMsg',11,1),(17105,60160,61548,'OP_CreateCharFromCBBReplyMsg',430,1),(17106,60160,61548,'OP_CreateCharFromCBBRequestMsg',429,1),(17107,60160,61548,'OP_CreateGuildReplyMsg',123,1),(17108,60160,61548,'OP_CreateGuildRequestMsg',121,1),(17109,60160,61548,'OP_CreateZoneInstanceMsg',31,1),(17110,60160,61548,'OP_CsCategoryRequestMsg',371,1),(17111,60160,61548,'OP_CsCategoryResponseMsg',372,1),(17112,60160,61548,'OP_CSTicketAddCommentMsg',237,1),(17113,60160,61548,'OP_CSTicketChangeNotificationMsg',239,1),(17114,60160,61548,'OP_CSTicketCommentRequestMsg',234,1),(17115,60160,61548,'OP_CSTicketCommentResponseMsg',235,1),(17116,60160,61548,'OP_CSTicketCreateMsg',236,1),(17117,60160,61548,'OP_CSTicketDeleteMsg',238,1),(17118,60160,61548,'OP_CSTicketHeaderRequestMsg',232,1),(17119,60160,61548,'OP_CSTicketInfoMsg',233,1),(17120,60160,61548,'OP_CSToolAccessResponseMsg',392,1),(17121,60160,61548,'OP_CSToolsRequestMsg',251,1),(17122,60160,61548,'OP_CSToolsResponseMsg',252,1),(17123,60160,61548,'OP_CurrentPet',489,1),(17124,60160,61548,'OP_CustomizationPurchaseRequestMs',170,1),(17125,60160,61548,'OP_CustomizationReplyMsg',172,1),(17126,60160,61548,'OP_CustomizationSetRequestMsg',171,1),(17127,60160,61548,'OP_CustomizeHouseDisplay',748,1),(17128,60160,61548,'OP_DailyObjectives',601,1),(17129,60160,61548,'OP_DefaultGroupOptionsMsg',201,1),(17130,60160,61548,'OP_DefaultGroupOptionsRequestMsg',200,1),(17131,60160,61548,'OP_DeleteCharacterReplyMsg',19,1),(17132,60160,61548,'OP_DeleteCharacterRequestMsg',18,1),(17133,60160,61548,'OP_DeleteGuildMsg',126,1),(17134,60160,61548,'OP_DestUpdateReq',213,1),(17135,60160,61548,'OP_DialogCloseMsg',112,1),(17136,60160,61548,'OP_DialogSelectMsg',111,1),(17137,60160,61548,'OP_DispatchClientCmdMsg',62,1),(17138,60160,61548,'OP_DispatchESMsg',61,1),(17139,60160,61548,'OP_DispatchMsg',455,1),(17140,60160,61548,'OP_DispatchSpellCmdMsg',182,1),(17141,60160,61548,'OP_DisplayDebugNLLPointsMsg',258,1),(17142,60160,61548,'OP_DisplayEventMsg',456,1),(17143,60160,61548,'OP_DisplayExchangeScreenMsg',448,1),(17144,60160,61548,'OP_DisplayGroupOptionsScreenMsg',203,1),(17145,60160,61548,'OP_DisplayInnVisitScreenMsg',205,1),(17146,60160,61548,'OP_DisplayMailScreenMsg',408,1),(17147,60160,61548,'OP_DisplayTSEventReactionMsg',228,1),(17148,60160,61548,'OP_DisplayWarningMsg',269,1),(17149,60160,61548,'OP_DoneLoadingEntityResourcesMsg',38,1),(17150,60160,61548,'OP_DoneLoadingZoneResourcesMsg',36,1),(17151,60160,61548,'OP_DoneSendingInitialEntitiesMsg',37,1),(17152,60160,61548,'OP_DressingRoom',514,1),(17153,60160,61548,'OP_DumpSchedulerMsg',206,1),(17154,60160,61548,'OP_DungeonMakerEnter',552,1),(17155,60160,61548,'OP_DungeonMakerItemRequest',554,1),(17156,60160,61548,'OP_DungeonMakerItemResponse',586,1),(17157,60160,61548,'OP_DungeonMakerToolboxList',556,1),(17158,60160,61548,'OP_DungeonMakerUnknown',557,1),(17159,60160,61548,'OP_DungeonMakerUnknown1',558,1),(17160,60160,61548,'OP_DungeonPlayAsAvatarList',762,1),(17161,60160,61548,'OP_DungeonPlayAsAvatarSelected',763,1),(17162,60160,61548,'OP_EncounterBrokenMsg',267,1),(17163,60160,61548,'OP_EnterHouseMsg',157,1),(17164,60160,61548,'OP_EnterMoveObjectModeMsg',164,1),(17165,60160,61548,'OP_EntityVerbsReplyMsg',184,1),(17166,60160,61548,'OP_EntityVerbsRequestMsg',183,1),(17167,60160,61548,'OP_EntityVerbsVerbMsg',185,1),(17168,60160,61548,'OP_EqArenaResultsCmd',713,1),(17169,60160,61548,'OP_EqAvailWorldChannelsCmd',700,1),(17170,60160,61548,'OP_EqBetaCopyRequest',619,1),(17171,60160,61548,'OP_EqCannedEmoteCmd',642,1),(17172,60160,61548,'OP_EqChatChannelUpdateCmd',698,1),(17173,60160,61548,'OP_EqChoiceWinCmd',679,1),(17174,60160,61548,'OP_EqCloseWindowCmd',671,1),(17175,60160,61548,'OP_EqCollectionFilterCmd',658,1),(17176,60160,61548,'OP_EqCollectionItemCmd',659,1),(17177,60160,61548,'OP_EqCollectionUpdateCmd',657,1),(17178,60160,61548,'OP_EqConsignmentItemsCmd',703,1),(17179,60160,61548,'OP_EqCreateGhostCmd',624,1),(17180,60160,61548,'OP_EqCreateListBoxCmd',639,1),(17181,60160,61548,'OP_EqCreateSignWidgetCmd',626,1),(17182,60160,61548,'OP_EqCreateWidgetCmd',625,1),(17183,60160,61548,'OP_EqDebugPVDCmd',692,1),(17184,60160,61548,'OP_EqDestroyGhostCmd',627,1),(17185,60160,61548,'OP_EqDialogCloseCmd',655,1),(17186,60160,61548,'OP_EqDialogOpenCmd',654,1),(17187,60160,61548,'OP_EqDisplaySpellFailCmd',675,1),(17188,60160,61548,'OP_EqDisplayTextCmd',623,1),(17189,60160,61548,'OP_EqDrawablePathGraphCmd',653,1),(17190,60160,61548,'OP_EqEnableGameEventCmd',685,1),(17191,60160,61548,'OP_EqEnableWindowCmd',687,1),(17192,60160,61548,'OP_EqExamineInfoCmd',670,1),(17193,60160,61548,'OP_EqFactionUpdateCmd',656,1),(17194,60160,61548,'OP_EqFlashWindowCmd',688,1),(17195,60160,61548,'OP_EqGetProbsCmd',696,1),(17196,60160,61548,'OP_EqGroupMemberRemovedCmd',649,1),(17197,60160,61548,'OP_EqGuildBankEventActionCmd',714,1),(17198,60160,61548,'OP_EqGuildBankExamineInfoCmd',715,1),(17199,60160,61548,'OP_EqHearChainEffectCmd',650,1),(17200,60160,61548,'OP_EqHearChatCmd',622,1),(17201,60160,61548,'OP_EqHearCombatCmd',631,1),(17202,60160,61548,'OP_EqHearConsiderCmd',637,1),(17203,60160,61548,'OP_EqHearDeathCmd',648,1),(17204,60160,61548,'OP_EQHearDispellCmd',760,1),(17205,60160,61548,'OP_EqHearDrowningCmd',647,1),(17206,60160,61548,'OP_EqHearHealCmd',697,1),(17207,60160,61548,'OP_EqHearPlayFlavorCmd',690,1),(17208,60160,61548,'OP_EQHearProcCmd',633,1),(17209,60160,61548,'OP_EQHearResEffectCmd',634,1),(17210,60160,61548,'OP_EqHearSpellCastCmd',632,1),(17211,60160,61548,'OP_EqHearSpellFizzleCmd',636,1),(17212,60160,61548,'OP_EqHearSpellInterruptCmd',635,1),(17213,60160,61548,'OP_EqHearSpellNoLandCmd',716,1),(17214,60160,61548,'OP_EQHearThreatCmd',754,1),(17215,60160,61548,'OP_EqHelpPathClearCmd',668,1),(17216,60160,61548,'OP_EqHelpPathCmd',667,1),(17217,60160,61548,'OP_EqInspectPCResultsCmd',652,1),(17218,60160,61548,'OP_EqInstructionWindowCloseCmd',682,1),(17219,60160,61548,'OP_EqInstructionWindowCmd',681,1),(17220,60160,61548,'OP_EqInstructionWindowGoalCmd',683,1),(17221,60160,61548,'OP_EqInstructionWindowTaskCmd',684,1),(17222,60160,61548,'OP_EqJunctionListCmd',673,1),(17223,60160,61548,'OP_EqMapExplorationCmd',706,1),(17224,60160,61548,'OP_EqMentoring',661,1),(17225,60160,61548,'OP_EqPlaySound3DCmd',645,1),(17226,60160,61548,'OP_EqPlaySoundCmd',644,1),(17227,60160,61548,'OP_EqPlayVoiceCmd',646,1),(17228,60160,61548,'OP_EqQuestGroupCmd',663,1),(17229,60160,61548,'OP_EqQuestionnaireCmd',694,1),(17230,60160,61548,'OP_EqQuestJournalReplyCmd',662,1),(17231,60160,61548,'OP_EqQuestJournalUpdateCmd',660,1),(17232,60160,61548,'OP_EqReceiveOfferCmd',651,1),(17233,60160,61548,'OP_EqResurrectedCmd',678,1),(17234,60160,61548,'OP_EqSetControlGhostCmd',629,1),(17235,60160,61548,'OP_EqSetDebugPathPointsCmd',640,1),(17236,60160,61548,'OP_EqSetDefaultVerbCmd',680,1),(17237,60160,61548,'OP_EqSetPOVGhostCmd',630,1),(17238,60160,61548,'OP_EqShowBookCmd',693,1),(17239,60160,61548,'OP_EqShowDeathWindowCmd',674,1),(17240,60160,61548,'OP_EqShowWindowCmd',686,1),(17241,60160,61548,'OP_EqSpellCastEndCmd',677,1),(17242,60160,61548,'OP_EqSpellCastStartCmd',676,1),(17243,60160,61548,'OP_EqSpellMoveToRangeAndRetryCmd',708,1),(17244,60160,61548,'OP_EqStartBrokerCmd',705,1),(17245,60160,61548,'OP_EqStateCmd',643,1),(17246,60160,61548,'OP_EqStoreLogCmd',707,1),(17247,60160,61548,'OP_EqUpdateBankCmd',669,1),(17248,60160,61548,'OP_EqUpdateGhostCmd',628,1),(17249,60160,61548,'OP_EqUpdateLootCmd',672,1),(17250,60160,61548,'OP_EqUpdateMerchantCmd',664,1),(17251,60160,61548,'OP_EqUpdatePlayerMailCmd',709,1),(17252,60160,61548,'OP_EqUpdatePlayerTradeCmd',666,1),(17253,60160,61548,'OP_EqUpdateSignWidgetCmd',691,1),(17254,60160,61548,'OP_EqUpdateStoreCmd',665,1),(17255,60160,61548,'OP_EqUpdateSubClassesCmd',638,1),(17256,60160,61548,'OP_EqUpdateTargetCmd',701,1),(17257,60160,61548,'OP_EqWhoChannelQueryReplyCmd',699,1),(17258,60160,61548,'OP_ESInitMsg',27,1),(17259,60160,61548,'OP_ESLoginRequestMsg',3,1),(17260,60160,61548,'OP_ESReadyForClientsMsg',28,1),(17261,60160,61548,'OP_ESStatusMsg',102,1),(17262,60160,61548,'OP_ESWeatherRequestEndMsg',107,1),(17263,60160,61548,'OP_ESWeatherRequestMsg',106,1),(17264,60160,61548,'OP_ESZoneInstanceStatusMsg',103,1),(17265,60160,61548,'OP_ExamineConsignmentRequestMsg',174,1),(17266,60160,61548,'OP_ExamineConsignmentResponseMsg',175,1),(17267,60160,61548,'OP_ExamineInfoRequestMsg',259,1),(17268,60160,61548,'OP_ExamineItemRequestMsg',198,1),(17269,60160,61548,'OP_ExitHouseMsg',158,1),(17270,60160,61548,'OP_ExpectClientAsCharacterReplyMs',24,1),(17271,60160,61548,'OP_ExpectClientAsCharacterRequest',34,1),(17272,60160,61548,'OP_ExpPurchWindow',739,1),(17273,60160,61548,'OP_FellowshipExpMsg',125,1),(17274,60160,61548,'OP_FlightPathsMsg',417,1),(17275,60160,61548,'OP_GameWorldTimeMsg',45,1),(17276,60160,61548,'OP_PaperdollImage',581,1),(17277,60160,61548,'OP_GetAuctionAssetIDMsg',445,1),(17278,60160,61548,'OP_GetAuctionAssetIDReplyMsg',446,1),(17279,60160,61548,'OP_GetAvatarAccessRequestForCSToo',397,1),(17280,60160,61548,'OP_GetCharacterSerializedReplyMsg',428,1),(17281,60160,61548,'OP_GetCharacterSerializedRequestM',427,1),(17282,60160,61548,'OP_GroupCreatedMsg',90,1),(17283,60160,61548,'OP_GroupDestroyedMsg',91,1),(17284,60160,61548,'OP_GroupLeaderChangedMsg',95,1),(17285,60160,61548,'OP_GroupMemberAddedMsg',92,1),(17286,60160,61548,'OP_GroupMemberRemovedMsg',93,1),(17287,60160,61548,'OP_GroupOptionsMsg',202,1),(17288,60160,61548,'OP_GroupRemovedFromGroupMsg',94,1),(17289,60160,61548,'OP_GroupResendOOZDataMsg',96,1),(17290,60160,61548,'OP_GroupSettingsChangedMsg',97,1),(17291,60160,61548,'OP_GuildBankActionMsg',278,1),(17292,60160,61548,'OP_GuildBankActionResponseMsg',279,1),(17293,60160,61548,'OP_GuildBankEventListMsg',283,1),(17294,60160,61548,'OP_GuildBankItemDetailsRequestMsg',280,1),(17295,60160,61548,'OP_GuildBankItemDetailsResponseMs',281,1),(17296,60160,61548,'OP_GuildBankUpdateMsg',282,1),(17297,60160,61548,'OP_GuildEventActionMsg',273,1),(17298,60160,61548,'OP_GuildEventAddMsg',272,1),(17299,60160,61548,'OP_GuildEventDetailsMsg',276,1),(17300,60160,61548,'OP_GuildEventListMsg',274,1),(17301,60160,61548,'OP_GuildEventMsg',271,1),(17302,60160,61548,'OP_GuildMembershipResponseMsg',361,1),(17303,60160,61548,'OP_GuildRecruiting',719,1),(17304,60160,61548,'OP_GuildRecruitingDetails',720,1),(17305,60160,61548,'OP_GuildRecruitingImage',721,1),(17306,60160,61548,'OP_GuildRecruitingMemberInfo',718,1),(17307,60160,61548,'OP_GuildsayMsg',124,1),(17308,60160,61548,'OP_GuildStatusUpdate',712,1),(17309,60160,61548,'OP_GuildUpdateMsg',127,1),(17310,60160,61548,'OP_HeritageMsg',10004,1),(17311,60160,61548,'OP_HideIllusionsMsg',197,1),(17312,60160,61548,'OP_HouseAccessRemoveMsg',161,1),(17313,60160,61548,'OP_HouseAccessSetMsg',160,1),(17314,60160,61548,'OP_HouseCustomizationScreenMsg',169,1),(17315,60160,61548,'OP_HouseDefaultAccessSetMsg',159,1),(17316,60160,61548,'OP_HouseDeletedRemotelyMsg',145,1),(17317,60160,61548,'OP_HouseItemsList',488,1),(17318,60160,61548,'OP_HousingDataChangedMsg',431,1),(17319,60160,61548,'OP_HousingRestoreMsg',432,1),(17320,60160,61548,'OP_InspectPlayerMsg',367,1),(17321,60160,61548,'OP_InspectPlayerRequestMsg',454,1),(17322,60160,61548,'OP_InviteRequestMsg',451,1),(17323,60160,61548,'OP_InviteResponseMsg',452,1),(17324,60160,61548,'OP_InviteTargetResponseMsg',453,1),(17325,60160,61548,'OP_JoinGuildNotifyMsg',363,1),(17326,60160,61548,'OP_JournalQuestStoryline',761,1),(17327,60160,61548,'OP_KeymapDataMsg',180,1),(17328,60160,61548,'OP_KeymapLoadMsg',178,1),(17329,60160,61548,'OP_KeymapNoneMsg',179,1),(17330,60160,61548,'OP_KeymapSaveMsg',181,1),(17331,60160,61548,'OP_KnowledgebaseRequestMsg',230,1),(17332,60160,61548,'OP_KnowledgebaseResponseMsg',231,1),(17333,60160,61548,'OP_KnowledgeWindowSlotMappingMsg',373,1),(17334,60160,61548,'OP_KnownLanguagesMsg',242,1),(17335,60160,61548,'OP_Launchpad',579,1),(17336,60160,61548,'OP_LeaveGuildNotifyMsg',362,1),(17337,60160,61548,'OP_LevelChangedMsg',265,1),(17338,60160,61548,'OP_LFGGroupSearch',508,1),(17339,60160,61548,'OP_LFGUpdateMsg',522,1),(17340,60160,61548,'OP_LikeOption',139,1),(17341,60160,61548,'OP_LoadCalendarEvents',582,1),(17342,60160,61548,'OP_LoadWelcomeWindow',564,1),(17343,60160,61548,'OP_LoginByNumRequestMsg',1,1),(17344,60160,61548,'OP_LoginReplyMsg',4,1),(17345,60160,61548,'OP_LoginRequestMsg',0,1),(17346,60160,61548,'OP_LootItemsRequestMsg',188,1),(17347,60160,61548,'OP_Lottery',717,1),(17348,60160,61548,'OP_LSCheckAcctLockMsg',207,1),(17349,60160,61548,'OP_LsClientAlertlogReplyMsg',246,1),(17350,60160,61548,'OP_LsClientBaselogReplyMsg',244,1),(17351,60160,61548,'OP_LsClientCrashlogReplyMsg',245,1),(17352,60160,61548,'OP_LsClientVerifylogReplyMsg',247,1),(17353,60160,61548,'OP_LsRequestClientCrashLogMsg',243,1),(17354,60160,61548,'OP_LSServerLockMsg',369,1),(17355,60160,61548,'OP_MacroInitMsg',262,1),(17356,60160,61548,'OP_MacroUpdateMsg',263,1),(17357,60160,61548,'OP_MailCommitSendMessageMsg',348,1),(17358,60160,61548,'OP_MailDeleteMessageMsg',344,1),(17359,60160,61548,'OP_MailEventNotificationMsg',415,1),(17360,60160,61548,'OP_MailGetHeadersReplyMsg',345,1),(17361,60160,61548,'OP_MailGetMessageMsg',342,1),(17362,60160,61548,'OP_MailGetMessageReplyMsg',346,1),(17363,60160,61548,'OP_MailRemoveAttachFromMailMsg',350,1),(17364,60160,61548,'OP_MailSendMessageMsg',343,1),(17365,60160,61548,'OP_MailSendMessageReplyMsg',347,1),(17366,60160,61548,'OP_MailSendSystemMessageMsg',349,1),(17367,60160,61548,'OP_MakeGroupLeaderMsg',89,1),(17368,60160,61548,'OP_MapFogDataInitMsg',399,1),(17369,60160,61548,'OP_MapFogDataUpdateMsg',400,1),(17370,60160,61548,'OP_MapRequest',525,1),(17371,60160,61548,'OP_MarketAddFundsReply',533,1),(17372,60160,61548,'OP_MarketAddFundsRequest',532,1),(17373,60160,61548,'OP_MarketFundsUpdate',530,1),(17374,60160,61548,'OP_MarketPlaceItems',543,1),(17375,60160,61548,'OP_MarketPlacePrices',536,1),(17376,60160,61548,'OP_MarketPurchase',535,1),(17377,60160,61548,'OP_MentorPopup',562,1),(17378,60160,61548,'OP_MercHireWindow',764,1),(17379,60160,61548,'OP_MercUnknown',765,1),(17380,60160,61548,'OP_MigrateBoatTransportMsg',256,1),(17381,60160,61548,'OP_MigrateBoatTransportReplyMsg',257,1),(17382,60160,61548,'OP_MigrateClientToZoneReplyMsg',84,1),(17383,60160,61548,'OP_MigrateClientToZoneRequestMsg',83,1),(17384,60160,61548,'OP_ModifyGuildMsg',270,1),(17385,60160,61548,'OP_MonitorCharacterListMsg',58,1),(17386,60160,61548,'OP_MonitorCharacterListRequestMsg',59,1),(17387,60160,61548,'OP_MonitorReplyMsg',57,1),(17388,60160,61548,'OP_MOTDMsg',46,1),(17389,60160,61548,'OP_MoveableObjectPlacementCriteri',163,1),(17390,60160,61548,'OP_MoveLogUpdateMsg',404,1),(17391,60160,61548,'OP_NotifyApprenticeStoppedMentori',412,1),(17392,60160,61548,'OP_OfferQuestMsg',405,1),(17393,60160,61548,'OP_OnscreenMsgMsg',268,1),(17394,60160,61548,'OP_OpenCharCust',565,1),(17395,60160,61548,'OP_OutOfZoneMemberDataMsg',98,1),(17396,60160,61548,'OP_PayHouseUpkeepMsg',162,1),(17397,60160,61548,'OP_PerformCameraShakeMsg',217,1),(17398,60160,61548,'OP_PerformPlayerKnockbackMsg',216,1),(17399,60160,61548,'OP_PetOptions',204,1),(17400,60160,61548,'OP_PetOptionsResponse',585,1),(17401,60160,61548,'OP_PlayCharacterReplyMsg',21,1),(17402,60160,61548,'OP_PlayCharacterRequestMsg',20,1),(17403,60160,61548,'OP_PlayerHouseAccessUpdateMsg',150,1),(17404,60160,61548,'OP_PlayerHouseBaseScreenMsg',148,1),(17405,60160,61548,'OP_PlayerHouseCloseUIMsg',152,1),(17406,60160,61548,'OP_PlayerHouseDisplayStatusMsg',151,1),(17407,60160,61548,'OP_PlayerHousePurchaseScreenMsg',149,1),(17408,60160,61548,'OP_PlayerMadeInstances',143,1),(17409,60160,61548,'OP_PlayerMadeInstancesScreen',142,1),(17410,60160,61548,'OP_PlayerPollAnswer',561,1),(17411,60160,61548,'OP_PlayerPollPopup',560,1),(17412,60160,61548,'OP_PlayLon',515,1),(17413,60160,61548,'OP_PointOfInterest',743,1),(17414,60160,61548,'OP_PointOfInterest2',744,1),(17415,60160,61548,'OP_PopulateSkillMapsMsg',218,1),(17416,60160,61548,'OP_PositionBoatTransportMsg',255,1),(17417,60160,61548,'OP_PositionMoveableObject',165,1),(17418,60160,61548,'OP_PostPossessionMsg',458,1),(17419,60160,61548,'OP_PredictionUpdateMsg',39,1),(17420,60160,61548,'OP_PrePossessionMsg',457,1),(17421,60160,61548,'OP_PromoFlagsDetailsMsg',378,1),(17422,60160,61548,'OP_PublishHouse',141,1),(17423,60160,61548,'OP_PurchaseConsignmentLoreCheckRe',411,1),(17424,60160,61548,'OP_PurchaseConsignmentRequestMsg',131,1),(17425,60160,61548,'OP_QueAllBgSolo',568,1),(17426,60160,61548,'OP_QuestionnaireMsg',264,1),(17427,60160,61548,'OP_QuestJournalInspectMsg',116,1),(17428,60160,61548,'OP_QuestJournalOpenMsg',115,1),(17429,60160,61548,'OP_QuestJournalSetVisibleMsg',117,1),(17430,60160,61548,'OP_QuestJournalWaypointMsg',118,1),(17431,60160,61548,'OP_QuestReward',324,1),(17432,60160,61548,'OP_QuickbarInitMsg',260,1),(17433,60160,61548,'OP_QuickbarUpdateMsg',261,1),(17434,60160,61548,'OP_RaceRestrictionMsg',443,1),(17435,60160,61548,'OP_ReadBookPageMsg',199,1),(17436,60160,61548,'OP_ReadyForTakeOffMsg',195,1),(17437,60160,61548,'OP_ReadyToZoneMsg',86,1),(17438,60160,61548,'OP_RecipeBook',544,1),(17439,60160,61548,'OP_RecipeDetailsMsg',74,1),(17440,60160,61548,'OP_RecipeList',755,1),(17441,60160,61548,'OP_RecipeListUnknown',597,1),(17442,60160,61548,'OP_RelinquishHouseMsg',156,1),(17443,60160,61548,'OP_ReloadLocalizedTxtMsg',359,1),(17444,60160,61548,'OP_RemoteCmdMsg',44,1),(17445,60160,61548,'OP_RemoveClientFromGroupMsg',87,1),(17446,60160,61548,'OP_RemoveConcentrationMsg',114,1),(17447,60160,61548,'OP_RemoveGroupFromGroupMsg',88,1),(17448,60160,61548,'OP_RemoveSpellEffectMsg',113,1),(17449,60160,61548,'OP_RenameGuildMsg',286,1),(17450,60160,61548,'OP_ReplaceableSubMeshesMsg',168,1),(17451,60160,61548,'OP_ReportMsg',384,1),(17452,60160,61548,'OP_RequestCampMsg',52,1),(17453,60160,61548,'OP_RequestGuildBankEventDetailsMs',284,1),(17454,60160,61548,'OP_RequestGuildEventDetailsMsg',275,1),(17455,60160,61548,'OP_RequestGuildInfoMsg',277,1),(17456,60160,61548,'OP_RequestGuildMembershipMsg',360,1),(17457,60160,61548,'OP_RequestHelpRepathMsg',209,1),(17458,60160,61548,'OP_RequestRecipeDetailsMsg',73,1),(17459,60160,61548,'OP_RequestTargetLocMsg',210,1),(17460,60160,61548,'OP_Research',756,1),(17461,60160,61548,'OP_ResendWorldChannelsMsg',447,1),(17462,60160,61548,'OP_ReskinCharacterRequestMsg',15,1),(17463,60160,61548,'OP_RestartZoneMsg',416,1),(17464,60160,61548,'OP_RewardPackMsg',285,1),(17465,60160,61548,'OP_SatMsg',192,1),(17466,60160,61548,'OP_SavageBarInitMsg',584,1),(17467,60160,61548,'OP_SelectZoneTeleporterDestinatio',358,1),(17468,60160,61548,'OP_SendLatestRequestMsg',99,1),(17469,60160,61548,'OP_ServerPlayCharacterReplyMsg',26,1),(17470,60160,61548,'OP_ServerPlayCharacterRequestMsg',25,1),(17471,60160,61548,'OP_SetInstanceDisplayNameMsg',444,1),(17472,60160,61548,'OP_SetRemoteCmdsMsg',43,1),(17473,60160,61548,'OP_SetSocialMsg',101,1),(17474,60160,61548,'OP_ShaderCustomizationMsg',167,1),(17475,60160,61548,'OP_ShowCreateFromRecipeUIMsg',222,1),(17476,60160,61548,'OP_ShowIllusionsMsg',196,1),(17477,60160,61548,'OP_ShowItemCreationProcessUIMsg',226,1),(17478,60160,61548,'OP_ShowRecipeBookMsg',229,1),(17479,60160,61548,'OP_ShowZoneTeleporterDestinations',357,1),(17480,60160,61548,'OP_SitMsg',190,1),(17481,60160,61548,'OP_SkillInfoRequest',518,1),(17482,60160,61548,'OP_SkillInfoResponse',519,1),(17483,60160,61548,'OP_SOEAllAccess',620,1),(17484,60160,61548,'OP_SpellGainedMsg',266,1),(17485,60160,61548,'OP_StandMsg',191,1),(17486,60160,61548,'OP_StoodMsg',193,1),(17487,60160,61548,'OP_StopItemCreationMsg',225,1),(17488,60160,61548,'OP_StoppedLootingMsg',189,1),(17489,60160,61548,'OP_StopTrackingMsg',395,1),(17490,60160,61548,'OP_SubmitCharCust',566,1),(17491,60160,61548,'OP_SupplyDepot',753,1),(17492,60160,61548,'OP_SysClient',221,1),(17493,60160,61548,'OP_TeleportWithinZoneMsg',81,1),(17494,60160,61548,'OP_TeleportWithinZoneNoReloadMsg',82,1),(17495,60160,61548,'OP_TintWidgetsMsg',173,1),(17496,60160,61548,'OP_TitleUpdateMsg',388,1),(17497,60160,61548,'OP_TrackingUpdateMsg',393,1),(17498,60160,61548,'OP_TradeskillList',722,1),(17499,60160,61548,'OP_TraitsList',745,1),(17500,60160,61548,'OP_UIEvent',531,1),(17501,60160,61548,'OP_UIResetMsg',177,1),(17502,60160,61548,'OP_UISettingsResponseMsg',176,1),(17503,60160,61548,'OP_Unknown',778,1),(17504,60160,61548,'OP_UnknownNpcMsg',377,1),(17505,60160,61548,'OP_UpdateActivePublicZonesMsg',376,1),(17506,60160,61548,'OP_UpdateCharacterSheetMsg',65,1),(17507,60160,61548,'OP_UpdateClientPredFlagsMsg',249,1),(17508,60160,61548,'OP_UpdateDebugRadiiMsg',383,1),(17509,60160,61548,'OP_UpdateGroupMemberDataMsg',392,1),(17510,60160,61548,'OP_UpdateHouseAccessDataMsg',147,1),(17511,60160,61548,'OP_UpdateHouseDataMsg',146,1),(17512,60160,61548,'OP_UpdateInventoryMsg',70,1),(17513,60160,61548,'OP_UpdateItemCreationProcessUIMsg',227,1),(17514,60160,61548,'OP_UpdateMotdMsg',211,1),(17515,60160,61548,'OP_UpdateOpportunityMsg',77,1),(17516,60160,61548,'OP_UpdatePositionMsg',41,1),(17517,60160,61548,'OP_UpdateRaidMsg',385,1),(17518,60160,61548,'OP_UpdateRecipeBookMsg',72,1),(17519,60160,61548,'OP_UpdateSkillBookMsg',75,1),(17520,60160,61548,'OP_UpdateSkillsMsg',76,1),(17521,60160,61548,'OP_UpdateSpellBookMsg',68,1),(17522,60160,61548,'OP_UpdateTargetLocMsg',64,1),(17523,60160,61548,'OP_UpdateTargetMsg',63,1),(17524,60160,61548,'OP_UpdateTitleCmd',498,1),(17525,60160,61548,'OP_UseAdornment',733,1),(17526,60160,61548,'OP_VideoUploaded',583,1),(17527,60160,61548,'OP_VoiceChatChannel',524,1),(17528,60160,61548,'OP_VoiceChatServer',749,1),(17529,60160,61548,'OP_WaypointReplyMsg',353,1),(17530,60160,61548,'OP_WaypointRequestMsg',352,1),(17531,60160,61548,'OP_WaypointSelectMsg',354,1),(17532,60160,61548,'OP_WaypointUpdateMsg',355,1),(17533,60160,61548,'OP_Weakness',587,1),(17534,60160,61548,'OP_WhoQueryReplyMsg',56,1),(17535,60160,61548,'OP_WhoQueryRequestMsg',55,1),(17536,60160,61548,'OP_WorldDataChangeMsg',414,1),(17537,60160,61548,'OP_WorldDataUpdateMsg',240,1),(17538,60160,61548,'OP_WorldListMsg',8,1),(17539,60160,61548,'OP_WorldPingMsg',403,1),(17540,60160,61548,'OP_WorldShutdownUpdateMsg',407,1),(17541,60160,61548,'OP_WorldStatusChangeMsg',6,1),(17542,60160,61548,'OP_WorldTravelAvail',576,1),(17543,60160,61548,'OP_WSAcctLockStatusMsg',208,1),(17544,60160,61548,'OP_WSCreateCharacterReplyMsg',14,1),(17545,60160,61548,'OP_WSCreateCharacterRequestMsg',13,1),(17546,60160,61548,'OP_WSLoginRequestMsg',2,1),(17547,60160,61548,'OP_WSServerHideMsg',370,1),(17548,60160,61548,'OP_WSServerLockMsg',368,1),(17549,60160,61548,'OP_WSStatusReplyMsg',5,1),(17550,60160,61548,'OP_ZoneBgInstanceList',572,1),(17551,60160,61548,'OP_ZoneInfoMsg',35,1),(17552,60160,61548,'OP_ZoneInstanceCreateReplyMsg',32,1),(17553,60160,61548,'OP_ZoneInstanceDestroyedMsg',33,1),(17554,60160,61548,'OP_ZoneMOTDMsg',47,1),(17555,60160,61548,'OP_ZonesStatusMsg',105,1),(17556,60160,61548,'OP_ZonesStatusRequestMsg',104,1),(17557,60160,61548,'OP_ZoneToFriendReplyMsg',288,1),(17558,60160,61548,'OP_ZoneToFriendRequestMsg',287,1),(18024,60160,61548,'OP_EarlyLandingRequestMsg',490,1),(18025,60127,60158,'OP_EarlyLandingRequestMsg',490,1),(18026,60085,60116,'OP_EarlyLandingRequestMsg',489,1),(18027,60036,60069,'OP_EarlyLandingRequestMsg',487,1),(18028,60024,60024,'OP_EarlyLandingRequestMsg',486,1),(18029,58647,58647,'OP_EarlyLandingRequestMsg',486,1),(18030,58604,58604,'OP_EarlyLandingRequestMsg',486,1),(18031,58542,58588,'OP_EarlyLandingRequestMsg',486,1),(18032,57121,58525,'OP_EarlyLandingRequestMsg',486,1),(18033,57107,57109,'OP_EarlyLandingRequestMsg',486,1),(18034,57080,57095,'OP_EarlyLandingRequestMsg',486,1),(18035,57048,57079,'OP_EarlyLandingRequestMsg',486,1),(18036,57032,57047,'OP_EarlyLandingRequestMsg',486,1),(18037,57015,57031,'OP_EarlyLandingRequestMsg',486,1),(18038,57003,57014,'OP_EarlyLandingRequestMsg',486,1),(18039,57000,57002,'OP_EarlyLandingRequestMsg',9999,1),(18040,1208,1208,'OP_EarlyLandingRequestMsg',485,1),(18041,1204,1205,'OP_EarlyLandingRequestMsg',9999,1),(18042,1198,1199,'OP_EarlyLandingRequestMsg',9999,1),(18043,1193,1195,'OP_EarlyLandingRequestMsg',9999,1),(18044,1096,1096,'OP_EarlyLandingRequestMsg',468,1),(18045,1045,1086,'OP_EarlyLandingRequestMsg',9999,1),(18046,1008,1011,'OP_EarlyLandingRequestMsg',9999,1),(18047,908,927,'OP_EarlyLandingRequestMsg',9999,1),(18048,839,844,'OP_EarlyLandingRequestMsg',9999,1),(18049,0,0,'OP_EarlyLandingRequestMsg',9999,1),(18050,61581,61581,'OP_AchievementUpdateMsg',766,1),(18051,61581,61581,'OP_AddSocialStructureStandingMsg',253,1),(18052,61581,61581,'OP_AdvancementRequestMsg',399,1),(18053,61581,61581,'OP_AdventureList',493,1),(18054,61581,61581,'OP_AFKUpdateMsg',374,1),(18055,61581,61581,'OP_AfterInvSpellUpdate',71,1),(18056,61581,61581,'OP_AllCharactersDescReplyMsg',10,1),(18057,61581,61581,'OP_AllCharactersDescRequestMsg',9,1),(18058,61581,61581,'OP_AllWSDescRequestMsg',7,1),(18059,61581,61581,'OP_AnonUpdateMsg',375,1),(18060,61581,61581,'OP_ArenaCreate',461,1),(18061,61581,61581,'OP_ArenaGameTypesMsg',450,1),(18062,61581,61581,'OP_ArenaList',462,1),(18063,61581,61581,'OP_ArenaWindow',470,1),(18064,61581,61581,'OP_AttackAllowed',505,1),(18065,61581,61581,'OP_AttackNotAllowed',506,1),(18066,61581,61581,'OP_AuctionAbortMsg',441,1),(18067,61581,61581,'OP_AuctionCharacter',438,1),(18068,61581,61581,'OP_AuctionCharacterReply',439,1),(18069,61581,61581,'OP_AuctionCoin',436,1),(18070,61581,61581,'OP_AuctionCoinReply',437,1),(18071,61581,61581,'OP_AuctionCommitMsg',440,1),(18072,61581,61581,'OP_AuctionItem',434,1),(18073,61581,61581,'OP_AuctionItemReply',435,1),(18074,61581,61581,'OP_AuditAuctionEventMsg',451,1),(18075,61581,61581,'OP_AvatarCreatedMsg',48,1),(18076,61581,61581,'OP_AvatarDestroyedMsg',49,1),(18077,61581,61581,'OP_AvatarUpdateMsg',364,1),(18078,61581,61581,'OP_BadLanguageFilter',524,1),(18079,61581,61581,'OP_BagOptions',507,1),(18080,61581,61581,'OP_BeginItemCreationMsg',224,1),(18081,61581,61581,'OP_BeginTrackingMsg',395,1),(18082,61581,61581,'OP_BioUpdateMsg',366,1),(18083,61581,61581,'OP_BrokerAddBag',296,1),(18084,61581,61581,'OP_BrokerRemoveBag',297,1),(18085,61581,61581,'OP_BrokerSellList',709,1),(18086,61581,61581,'OP_BuyPlayerHouseMsg',153,1),(18087,61581,61581,'OP_BuyPlayerHouseTintMsg',154,1),(18088,61581,61581,'OP_CampAbortedMsg',54,1),(18089,61581,61581,'OP_CampClientMsg',392,1),(18090,61581,61581,'OP_CampStartedMsg',53,1),(18091,61581,61581,'OP_CancelCreateFromRecipeMsg',223,1),(18092,61581,61581,'OP_CancelledFeignMsg',219,1),(18093,61581,61581,'OP_CancelMoveObjectModeMsg',166,1),(18094,61581,61581,'OP_CancelSpellCast',494,1),(18095,61581,61581,'OP_ChangeServerControlFlagMsg',250,1),(18096,61581,61581,'OP_ChangeZoneMsg',79,1),(18097,61581,61581,'OP_CharacterAchievements',765,1),(18098,61581,61581,'OP_CharacterCreatedDungeons',558,1),(18099,61581,61581,'OP_CharacterCurrency',764,1),(18100,61581,61581,'OP_CharacterHousingList',512,1),(18101,61581,61581,'OP_CharacterLinkdeadMsg',419,1),(18102,61581,61581,'OP_CharacterMerc',67,1),(18103,61581,61581,'OP_CharacterMounts',591,1),(18104,61581,61581,'OP_CharacterPet',66,1),(18105,61581,61581,'OP_CharNameChangedMsg',356,1),(18106,61581,61581,'OP_CharRenamed',730,1),(18107,61581,61581,'OP_CharTransferCommitReplyMsg',427,1),(18108,61581,61581,'OP_CharTransferCommitRequestMsg',425,1),(18109,61581,61581,'OP_CharTransferReplyMsg',423,1),(18110,61581,61581,'OP_CharTransferRequestMsg',422,1),(18111,61581,61581,'OP_CharTransferRollbackReplyMsg',426,1),(18112,61581,61581,'OP_CharTransferRollbackRequestMsg',424,1),(18113,61581,61581,'OP_CharTransferStartReplyMsg',421,1),(18114,61581,61581,'OP_CharTransferStartRequestMsg',420,1),(18115,61581,61581,'OP_CharTransferValidateReplyMsg',443,1),(18116,61581,61581,'OP_CharTransferValidateRequestMsg',442,1),(18117,61581,61581,'OP_ChatCreateChannelMsg',289,1),(18118,61581,61581,'OP_ChatFiltersMsg',338,1),(18119,61581,61581,'OP_ChatJoinChannelMsg',290,1),(18120,61581,61581,'OP_ChatLeaveChannelMsg',292,1),(18121,61581,61581,'OP_ChatRelationshipUpdateMsg',187,1),(18122,61581,61581,'OP_ChatSendFriendsMsg',299,1),(18123,61581,61581,'OP_ChatSendIgnoresMsg',300,1),(18124,61581,61581,'OP_ChatTellChannelMsg',293,1),(18125,61581,61581,'OP_ChatTellUserMsg',294,1),(18126,61581,61581,'OP_ChatToggleFriendMsg',295,1),(18127,61581,61581,'OP_ChatToggleIgnoreMsg',298,1),(18128,61581,61581,'OP_ChatWhoChannelMsg',291,1),(18129,61581,61581,'OP_ClearDataMsg',100,1),(18130,61581,61581,'OP_ClearForLandingMsg',496,1),(18131,61581,61581,'OP_ClearForTakeOffMsg',194,1),(18132,61581,61581,'OP_ClientCmdMsg',60,1),(18133,61581,61581,'OP_ClientFellMsg',390,1),(18134,61581,61581,'OP_ClientIdleBeginMsg',410,1),(18135,61581,61581,'OP_ClientIdleEndMsg',411,1),(18136,61581,61581,'OP_ClientInDeathRegionMsg',391,1),(18137,61581,61581,'OP_ClientTeleportRequestMsg',80,1),(18138,61581,61581,'OP_ClientTeleportToLocationMsg',248,1),(18139,61581,61581,'OP_CloseGroupInviteWindowMsg',402,1),(18140,61581,61581,'OP_CollectAllHouseItemsMsg',155,1),(18141,61581,61581,'OP_ConsignItemRequestMsg',129,1),(18142,61581,61581,'OP_ConsignItemResponseMsg',130,1),(18143,61581,61581,'OP_ConsignmentCloseStoreMsg',128,1),(18144,61581,61581,'OP_ConsignRemoveItemsMsg',382,1),(18145,61581,61581,'OP_ConsignViewCreateMsg',379,1),(18146,61581,61581,'OP_ConsignViewGetPageMsg',380,1),(18147,61581,61581,'OP_ConsignViewReleaseMsg',381,1),(18148,61581,61581,'OP_ConsignViewSortMsg',388,1),(18149,61581,61581,'OP_CorruptedClientMsg',414,1),(18150,61581,61581,'OP_CreateBoatTransportsMsg',254,1),(18151,61581,61581,'OP_CreateCharacterDungeon',552,1),(18152,61581,61581,'OP_CreateCharacterReplyMsg',12,1),(18153,61581,61581,'OP_CreateCharacterRequestMsg',11,1),(18154,61581,61581,'OP_CreateCharFromCBBReplyMsg',431,1),(18155,61581,61581,'OP_CreateCharFromCBBRequestMsg',430,1),(18156,61581,61581,'OP_CreateGuildReplyMsg',123,1),(18157,61581,61581,'OP_CreateGuildRequestMsg',121,1),(18158,61581,61581,'OP_CreateZoneInstanceMsg',31,1),(18159,61581,61581,'OP_CsCategoryRequestMsg',371,1),(18160,61581,61581,'OP_CsCategoryResponseMsg',372,1),(18161,61581,61581,'OP_CSTicketAddCommentMsg',237,1),(18162,61581,61581,'OP_CSTicketChangeNotificationMsg',239,1),(18163,61581,61581,'OP_CSTicketCommentRequestMsg',234,1),(18164,61581,61581,'OP_CSTicketCommentResponseMsg',235,1),(18165,61581,61581,'OP_CSTicketCreateMsg',236,1),(18166,61581,61581,'OP_CSTicketDeleteMsg',238,1),(18167,61581,61581,'OP_CSTicketHeaderRequestMsg',232,1),(18168,61581,61581,'OP_CSTicketInfoMsg',233,1),(18169,61581,61581,'OP_CSToolAccessResponseMsg',393,1),(18170,61581,61581,'OP_CSToolsRequestMsg',251,1),(18171,61581,61581,'OP_CSToolsResponseMsg',252,1),(18172,61581,61581,'OP_CurrentPet',490,1),(18173,61581,61581,'OP_CustomizationPurchaseRequestMs',170,1),(18174,61581,61581,'OP_CustomizationReplyMsg',172,1),(18175,61581,61581,'OP_CustomizationSetRequestMsg',171,1),(18176,61581,61581,'OP_CustomizeHouseDisplay',755,1),(18177,61581,61581,'OP_DailyObjectives',604,1),(18178,61581,61581,'OP_DefaultGroupOptionsMsg',201,1),(18179,61581,61581,'OP_DefaultGroupOptionsRequestMsg',200,1),(18180,61581,61581,'OP_DeleteCharacterReplyMsg',19,1),(18181,61581,61581,'OP_DeleteCharacterRequestMsg',18,1),(18182,61581,61581,'OP_DeleteGuildMsg',126,1),(18183,61581,61581,'OP_DestUpdateReq',213,1),(18184,61581,61581,'OP_DialogCloseMsg',112,1),(18185,61581,61581,'OP_DialogSelectMsg',111,1),(18186,61581,61581,'OP_DispatchClientCmdMsg',62,1),(18187,61581,61581,'OP_DispatchESMsg',61,1),(18188,61581,61581,'OP_DispatchMsg',456,1),(18189,61581,61581,'OP_DispatchSpellCmdMsg',182,1),(18190,61581,61581,'OP_DisplayDebugNLLPointsMsg',258,1),(18191,61581,61581,'OP_DisplayEventMsg',457,1),(18192,61581,61581,'OP_DisplayExchangeScreenMsg',449,1),(18193,61581,61581,'OP_DisplayGroupOptionsScreenMsg',203,1),(18194,61581,61581,'OP_DisplayInnVisitScreenMsg',205,1),(18195,61581,61581,'OP_DisplayMailScreenMsg',409,1),(18196,61581,61581,'OP_DisplayTSEventReactionMsg',228,1),(18197,61581,61581,'OP_DisplayWarningMsg',269,1),(18198,61581,61581,'OP_DoneLoadingEntityResourcesMsg',38,1),(18199,61581,61581,'OP_DoneLoadingZoneResourcesMsg',36,1),(18200,61581,61581,'OP_DoneSendingInitialEntitiesMsg',37,1),(18201,61581,61581,'OP_DressingRoom',515,1),(18202,61581,61581,'OP_DumpSchedulerMsg',206,1),(18203,61581,61581,'OP_DungeonMakerEnter',553,1),(18204,61581,61581,'OP_DungeonMakerItemRequest',557,1),(18205,61581,61581,'OP_DungeonMakerItemResponse',589,1),(18206,61581,61581,'OP_DungeonMakerToolboxList',559,1),(18207,61581,61581,'OP_DungeonMakerUnknown',560,1),(18208,61581,61581,'OP_DungeonMakerUnknown1',561,1),(18209,61581,61581,'OP_DungeonPlayAsAvatarList',769,1),(18210,61581,61581,'OP_DungeonPlayAsAvatarSelected',770,1),(18211,61581,61581,'OP_EncounterBrokenMsg',267,1),(18212,61581,61581,'OP_EnterHouseMsg',157,1),(18213,61581,61581,'OP_EnterMoveObjectModeMsg',164,1),(18214,61581,61581,'OP_EntityVerbsReplyMsg',184,1),(18215,61581,61581,'OP_EntityVerbsRequestMsg',183,1),(18216,61581,61581,'OP_EntityVerbsVerbMsg',185,1),(18217,61581,61581,'OP_EqArenaResultsCmd',720,1),(18218,61581,61581,'OP_EqAvailWorldChannelsCmd',707,1),(18219,61581,61581,'OP_EqBetaCopyRequest',626,1),(18220,61581,61581,'OP_EqCannedEmoteCmd',649,1),(18221,61581,61581,'OP_EqChatChannelUpdateCmd',705,1),(18222,61581,61581,'OP_EqChoiceWinCmd',686,1),(18223,61581,61581,'OP_EqCloseWindowCmd',678,1),(18224,61581,61581,'OP_EqCollectionFilterCmd',665,1),(18225,61581,61581,'OP_EqCollectionItemCmd',666,1),(18226,61581,61581,'OP_EqCollectionUpdateCmd',664,1),(18227,61581,61581,'OP_EqConsignmentItemsCmd',710,1),(18228,61581,61581,'OP_EqCreateGhostCmd',631,1),(18229,61581,61581,'OP_EqCreateListBoxCmd',646,1),(18230,61581,61581,'OP_EqCreateSignWidgetCmd',633,1),(18231,61581,61581,'OP_EqCreateWidgetCmd',632,1),(18232,61581,61581,'OP_EqDebugPVDCmd',699,1),(18233,61581,61581,'OP_EqDestroyGhostCmd',634,1),(18234,61581,61581,'OP_EqDialogCloseCmd',662,1),(18235,61581,61581,'OP_EqDialogOpenCmd',661,1),(18236,61581,61581,'OP_EqDisplaySpellFailCmd',682,1),(18237,61581,61581,'OP_EqDisplayTextCmd',630,1),(18238,61581,61581,'OP_EqDrawablePathGraphCmd',660,1),(18239,61581,61581,'OP_EqEnableGameEventCmd',692,1),(18240,61581,61581,'OP_EqEnableWindowCmd',694,1),(18241,61581,61581,'OP_EqExamineInfoCmd',677,1),(18242,61581,61581,'OP_EqFactionUpdateCmd',663,1),(18243,61581,61581,'OP_EqFlashWindowCmd',695,1),(18244,61581,61581,'OP_EqGetProbsCmd',703,1),(18245,61581,61581,'OP_EqGroupMemberRemovedCmd',656,1),(18246,61581,61581,'OP_EqGuildBankEventActionCmd',721,1),(18247,61581,61581,'OP_EqGuildBankExamineInfoCmd',722,1),(18248,61581,61581,'OP_EqHearChainEffectCmd',657,1),(18249,61581,61581,'OP_EqHearChatCmd',629,1),(18250,61581,61581,'OP_EqHearCombatCmd',638,1),(18251,61581,61581,'OP_EqHearConsiderCmd',644,1),(18252,61581,61581,'OP_EqHearDeathCmd',655,1),(18253,61581,61581,'OP_EQHearDispellCmd',767,1),(18254,61581,61581,'OP_EqHearDrowningCmd',654,1),(18255,61581,61581,'OP_EqHearHealCmd',704,1),(18256,61581,61581,'OP_EqHearPlayFlavorCmd',697,1),(18257,61581,61581,'OP_EQHearProcCmd',640,1),(18258,61581,61581,'OP_EQHearResEffectCmd',641,1),(18259,61581,61581,'OP_EqHearSpellCastCmd',639,1),(18260,61581,61581,'OP_EqHearSpellFizzleCmd',643,1),(18261,61581,61581,'OP_EqHearSpellInterruptCmd',642,1),(18262,61581,61581,'OP_EqHearSpellNoLandCmd',723,1),(18263,61581,61581,'OP_EQHearThreatCmd',761,1),(18264,61581,61581,'OP_EqHelpPathClearCmd',675,1),(18265,61581,61581,'OP_EqHelpPathCmd',674,1),(18266,61581,61581,'OP_EqInspectPCResultsCmd',659,1),(18267,61581,61581,'OP_EqInstructionWindowCloseCmd',689,1),(18268,61581,61581,'OP_EqInstructionWindowCmd',688,1),(18269,61581,61581,'OP_EqInstructionWindowGoalCmd',690,1),(18270,61581,61581,'OP_EqInstructionWindowTaskCmd',691,1),(18271,61581,61581,'OP_EqJunctionListCmd',680,1),(18272,61581,61581,'OP_EqMapExplorationCmd',713,1),(18273,61581,61581,'OP_EqMentoring',668,1),(18274,61581,61581,'OP_EqPlaySound3DCmd',652,1),(18275,61581,61581,'OP_EqPlaySoundCmd',651,1),(18276,61581,61581,'OP_EqPlayVoiceCmd',653,1),(18277,61581,61581,'OP_EqQuestGroupCmd',670,1),(18278,61581,61581,'OP_EqQuestionnaireCmd',701,1),(18279,61581,61581,'OP_EqQuestJournalReplyCmd',669,1),(18280,61581,61581,'OP_EqQuestJournalUpdateCmd',667,1),(18281,61581,61581,'OP_EqReceiveOfferCmd',658,1),(18282,61581,61581,'OP_EqResurrectedCmd',685,1),(18283,61581,61581,'OP_EqSetControlGhostCmd',636,1),(18284,61581,61581,'OP_EqSetDebugPathPointsCmd',647,1),(18285,61581,61581,'OP_EqSetDefaultVerbCmd',687,1),(18286,61581,61581,'OP_EqSetPOVGhostCmd',637,1),(18287,61581,61581,'OP_EqShowBookCmd',700,1),(18288,61581,61581,'OP_EqShowDeathWindowCmd',681,1),(18289,61581,61581,'OP_EqShowWindowCmd',693,1),(18290,61581,61581,'OP_EqSpellCastEndCmd',684,1),(18291,61581,61581,'OP_EqSpellCastStartCmd',683,1),(18292,61581,61581,'OP_EqSpellMoveToRangeAndRetryCmd',715,1),(18293,61581,61581,'OP_EqStartBrokerCmd',712,1),(18294,61581,61581,'OP_EqStateCmd',650,1),(18295,61581,61581,'OP_EqStoreLogCmd',714,1),(18296,61581,61581,'OP_EqUpdateBankCmd',676,1),(18297,61581,61581,'OP_EqUpdateGhostCmd',635,1),(18298,61581,61581,'OP_EqUpdateLootCmd',679,1),(18299,61581,61581,'OP_EqUpdateMerchantCmd',671,1),(18300,61581,61581,'OP_EqUpdatePlayerMailCmd',716,1),(18301,61581,61581,'OP_EqUpdatePlayerTradeCmd',673,1),(18302,61581,61581,'OP_EqUpdateSignWidgetCmd',698,1),(18303,61581,61581,'OP_EqUpdateStoreCmd',672,1),(18304,61581,61581,'OP_EqUpdateSubClassesCmd',645,1),(18305,61581,61581,'OP_EqUpdateTargetCmd',708,1),(18306,61581,61581,'OP_EqWhoChannelQueryReplyCmd',706,1),(18307,61581,61581,'OP_ESInitMsg',27,1),(18308,61581,61581,'OP_ESLoginRequestMsg',3,1),(18309,61581,61581,'OP_ESReadyForClientsMsg',28,1),(18310,61581,61581,'OP_ESStatusMsg',102,1),(18311,61581,61581,'OP_ESWeatherRequestEndMsg',107,1),(18312,61581,61581,'OP_ESWeatherRequestMsg',106,1),(18313,61581,61581,'OP_ESZoneInstanceStatusMsg',103,1),(18314,61581,61581,'OP_ExamineConsignmentRequestMsg',174,1),(18315,61581,61581,'OP_ExamineConsignmentResponseMsg',175,1),(18316,61581,61581,'OP_ExamineInfoRequestMsg',259,1),(18317,61581,61581,'OP_ExamineItemRequestMsg',198,1),(18318,61581,61581,'OP_ExitHouseMsg',158,1),(18319,61581,61581,'OP_ExpectClientAsCharacterReplyMs',24,1),(18320,61581,61581,'OP_ExpectClientAsCharacterRequest',34,1),(18321,61581,61581,'OP_ExpPurchWindow',746,1),(18322,61581,61581,'OP_FellowshipExpMsg',125,1),(18323,61581,61581,'OP_FlightPathsMsg',418,1),(18324,61581,61581,'OP_GameWorldTimeMsg',45,1),(18325,61581,61581,'OP_PaperdollImage',584,1),(18326,61581,61581,'OP_GetAuctionAssetIDMsg',446,1),(18327,61581,61581,'OP_GetAuctionAssetIDReplyMsg',447,1),(18328,61581,61581,'OP_GetAvatarAccessRequestForCSToo',398,1),(18329,61581,61581,'OP_GetCharacterSerializedReplyMsg',429,1),(18330,61581,61581,'OP_GetCharacterSerializedRequestM',428,1),(18331,61581,61581,'OP_GroupCreatedMsg',90,1),(18332,61581,61581,'OP_GroupDestroyedMsg',91,1),(18333,61581,61581,'OP_GroupLeaderChangedMsg',95,1),(18334,61581,61581,'OP_GroupMemberAddedMsg',92,1),(18335,61581,61581,'OP_GroupMemberRemovedMsg',93,1),(18336,61581,61581,'OP_GroupOptionsMsg',202,1),(18337,61581,61581,'OP_GroupRemovedFromGroupMsg',94,1),(18338,61581,61581,'OP_GroupResendOOZDataMsg',96,1),(18339,61581,61581,'OP_GroupSettingsChangedMsg',97,1),(18340,61581,61581,'OP_GuildBankActionMsg',278,1),(18341,61581,61581,'OP_GuildBankActionResponseMsg',279,1),(18342,61581,61581,'OP_GuildBankEventListMsg',283,1),(18343,61581,61581,'OP_GuildBankItemDetailsRequestMsg',280,1),(18344,61581,61581,'OP_GuildBankItemDetailsResponseMs',281,1),(18345,61581,61581,'OP_GuildBankUpdateMsg',282,1),(18346,61581,61581,'OP_GuildEventActionMsg',273,1),(18347,61581,61581,'OP_GuildEventAddMsg',272,1),(18348,61581,61581,'OP_GuildEventDetailsMsg',276,1),(18349,61581,61581,'OP_GuildEventListMsg',274,1),(18350,61581,61581,'OP_GuildEventMsg',271,1),(18351,61581,61581,'OP_GuildMembershipResponseMsg',361,1),(18352,61581,61581,'OP_GuildRecruiting',726,1),(18353,61581,61581,'OP_GuildRecruitingDetails',727,1),(18354,61581,61581,'OP_GuildRecruitingImage',728,1),(18355,61581,61581,'OP_GuildRecruitingMemberInfo',725,1),(18356,61581,61581,'OP_GuildsayMsg',124,1),(18357,61581,61581,'OP_GuildStatusUpdate',719,1),(18358,61581,61581,'OP_GuildUpdateMsg',127,1),(18359,61581,61581,'OP_HeritageMsg',10011,1),(18360,61581,61581,'OP_HideIllusionsMsg',197,1),(18361,61581,61581,'OP_HouseAccessRemoveMsg',161,1),(18362,61581,61581,'OP_HouseAccessSetMsg',160,1),(18363,61581,61581,'OP_HouseCustomizationScreenMsg',169,1),(18364,61581,61581,'OP_HouseDefaultAccessSetMsg',159,1),(18365,61581,61581,'OP_HouseDeletedRemotelyMsg',145,1),(18366,61581,61581,'OP_HouseItemsList',489,1),(18367,61581,61581,'OP_HousingDataChangedMsg',432,1),(18368,61581,61581,'OP_HousingRestoreMsg',433,1),(18369,61581,61581,'OP_InspectPlayerMsg',367,1),(18370,61581,61581,'OP_InspectPlayerRequestMsg',455,1),(18371,61581,61581,'OP_InviteRequestMsg',452,1),(18372,61581,61581,'OP_InviteResponseMsg',453,1),(18373,61581,61581,'OP_InviteTargetResponseMsg',454,1),(18374,61581,61581,'OP_JoinGuildNotifyMsg',363,1),(18375,61581,61581,'OP_JournalQuestStoryline',768,1),(18376,61581,61581,'OP_KeymapDataMsg',180,1),(18377,61581,61581,'OP_KeymapLoadMsg',178,1),(18378,61581,61581,'OP_KeymapNoneMsg',179,1),(18379,61581,61581,'OP_KeymapSaveMsg',181,1),(18380,61581,61581,'OP_KnowledgebaseRequestMsg',230,1),(18381,61581,61581,'OP_KnowledgebaseResponseMsg',231,1),(18382,61581,61581,'OP_KnowledgeWindowSlotMappingMsg',373,1),(18383,61581,61581,'OP_KnownLanguagesMsg',242,1),(18384,61581,61581,'OP_Launchpad',582,1),(18385,61581,61581,'OP_LeaveGuildNotifyMsg',362,1),(18386,61581,61581,'OP_LevelChangedMsg',265,1),(18387,61581,61581,'OP_LFGGroupSearch',509,1),(18388,61581,61581,'OP_LFGUpdateMsg',523,1),(18389,61581,61581,'OP_LikeOption',139,1),(18390,61581,61581,'OP_LoadCalendarEvents',585,1),(18391,61581,61581,'OP_LoadWelcomeWindow',567,1),(18392,61581,61581,'OP_LoginByNumRequestMsg',1,1),(18393,61581,61581,'OP_LoginReplyMsg',4,1),(18394,61581,61581,'OP_LoginRequestMsg',0,1),(18395,61581,61581,'OP_LootItemsRequestMsg',188,1),(18396,61581,61581,'OP_Lottery',724,1),(18397,61581,61581,'OP_LSCheckAcctLockMsg',207,1),(18398,61581,61581,'OP_LsClientAlertlogReplyMsg',246,1),(18399,61581,61581,'OP_LsClientBaselogReplyMsg',244,1),(18400,61581,61581,'OP_LsClientCrashlogReplyMsg',245,1),(18401,61581,61581,'OP_LsClientVerifylogReplyMsg',247,1),(18402,61581,61581,'OP_LsRequestClientCrashLogMsg',243,1),(18403,61581,61581,'OP_LSServerLockMsg',369,1),(18404,61581,61581,'OP_MacroInitMsg',262,1),(18405,61581,61581,'OP_MacroUpdateMsg',263,1),(18406,61581,61581,'OP_MailCommitSendMessageMsg',348,1),(18407,61581,61581,'OP_MailDeleteMessageMsg',344,1),(18408,61581,61581,'OP_MailEventNotificationMsg',416,1),(18409,61581,61581,'OP_MailGetHeadersReplyMsg',345,1),(18410,61581,61581,'OP_MailGetMessageMsg',342,1),(18411,61581,61581,'OP_MailGetMessageReplyMsg',346,1),(18412,61581,61581,'OP_MailRemoveAttachFromMailMsg',350,1),(18413,61581,61581,'OP_MailSendMessageMsg',343,1),(18414,61581,61581,'OP_MailSendMessageReplyMsg',347,1),(18415,61581,61581,'OP_MailSendSystemMessageMsg',349,1),(18416,61581,61581,'OP_MakeGroupLeaderMsg',89,1),(18417,61581,61581,'OP_MapFogDataInitMsg',400,1),(18418,61581,61581,'OP_MapFogDataUpdateMsg',401,1),(18419,61581,61581,'OP_MapRequest',526,1),(18420,61581,61581,'OP_MarketAddFundsReply',534,1),(18421,61581,61581,'OP_MarketAddFundsRequest',533,1),(18422,61581,61581,'OP_MarketFundsUpdate',531,1),(18423,61581,61581,'OP_MarketPlaceItems',544,1),(18424,61581,61581,'OP_MarketPlacePrices',537,1),(18425,61581,61581,'OP_MarketPurchase',536,1),(18426,61581,61581,'OP_MentorPopup',565,1),(18427,61581,61581,'OP_MercHireWindow',771,1),(18428,61581,61581,'OP_MercUnknown',772,1),(18429,61581,61581,'OP_MigrateBoatTransportMsg',256,1),(18430,61581,61581,'OP_MigrateBoatTransportReplyMsg',257,1),(18431,61581,61581,'OP_MigrateClientToZoneReplyMsg',84,1),(18432,61581,61581,'OP_MigrateClientToZoneRequestMsg',83,1),(18433,61581,61581,'OP_ModifyGuildMsg',270,1),(18434,61581,61581,'OP_MonitorCharacterListMsg',58,1),(18435,61581,61581,'OP_MonitorCharacterListRequestMsg',59,1),(18436,61581,61581,'OP_MonitorReplyMsg',57,1),(18437,61581,61581,'OP_MOTDMsg',46,1),(18438,61581,61581,'OP_MoveableObjectPlacementCriteri',163,1),(18439,61581,61581,'OP_MoveLogUpdateMsg',405,1),(18440,61581,61581,'OP_NotifyApprenticeStoppedMentori',413,1),(18441,61581,61581,'OP_OfferQuestMsg',406,1),(18442,61581,61581,'OP_OnscreenMsgMsg',268,1),(18443,61581,61581,'OP_OpenCharCust',568,1),(18444,61581,61581,'OP_OutOfZoneMemberDataMsg',98,1),(18445,61581,61581,'OP_PayHouseUpkeepMsg',162,1),(18446,61581,61581,'OP_PerformCameraShakeMsg',217,1),(18447,61581,61581,'OP_PerformPlayerKnockbackMsg',216,1),(18448,61581,61581,'OP_PetOptions',204,1),(18449,61581,61581,'OP_PetOptionsResponse',588,1),(18450,61581,61581,'OP_PlayCharacterReplyMsg',21,1),(18451,61581,61581,'OP_PlayCharacterRequestMsg',20,1),(18452,61581,61581,'OP_PlayerHouseAccessUpdateMsg',150,1),(18453,61581,61581,'OP_PlayerHouseBaseScreenMsg',148,1),(18454,61581,61581,'OP_PlayerHouseCloseUIMsg',152,1),(18455,61581,61581,'OP_PlayerHouseDisplayStatusMsg',151,1),(18456,61581,61581,'OP_PlayerHousePurchaseScreenMsg',149,1),(18457,61581,61581,'OP_PlayerMadeInstances',143,1),(18458,61581,61581,'OP_PlayerMadeInstancesScreen',142,1),(18459,61581,61581,'OP_PlayerPollAnswer',564,1),(18460,61581,61581,'OP_PlayerPollPopup',563,1),(18461,61581,61581,'OP_PlayLon',516,1),(18462,61581,61581,'OP_PointOfInterest',750,1),(18463,61581,61581,'OP_PointOfInterest2',751,1),(18464,61581,61581,'OP_PopulateSkillMapsMsg',218,1),(18465,61581,61581,'OP_PositionBoatTransportMsg',255,1),(18466,61581,61581,'OP_PositionMoveableObject',165,1),(18467,61581,61581,'OP_PostPossessionMsg',459,1),(18468,61581,61581,'OP_PredictionUpdateMsg',39,1),(18469,61581,61581,'OP_PrePossessionMsg',458,1),(18470,61581,61581,'OP_PromoFlagsDetailsMsg',378,1),(18471,61581,61581,'OP_PublishHouse',141,1),(18472,61581,61581,'OP_PurchaseConsignmentLoreCheckRe',412,1),(18473,61581,61581,'OP_PurchaseConsignmentRequestMsg',131,1),(18474,61581,61581,'OP_QueAllBgSolo',571,1),(18475,61581,61581,'OP_QuestionnaireMsg',264,1),(18476,61581,61581,'OP_QuestJournalInspectMsg',116,1),(18477,61581,61581,'OP_QuestJournalOpenMsg',115,1),(18478,61581,61581,'OP_QuestJournalSetVisibleMsg',117,1),(18479,61581,61581,'OP_QuestJournalWaypointMsg',118,1),(18480,61581,61581,'OP_QuestReward',324,1),(18481,61581,61581,'OP_QuickbarInitMsg',260,1),(18482,61581,61581,'OP_QuickbarUpdateMsg',261,1),(18483,61581,61581,'OP_RaceRestrictionMsg',444,1),(18484,61581,61581,'OP_ReadBookPageMsg',199,1),(18485,61581,61581,'OP_ReadyForTakeOffMsg',195,1),(18486,61581,61581,'OP_ReadyToZoneMsg',86,1),(18487,61581,61581,'OP_RecipeBook',545,1),(18488,61581,61581,'OP_RecipeDetailsMsg',74,1),(18489,61581,61581,'OP_RecipeList',762,1),(18490,61581,61581,'OP_RecipeListUnknown',600,1),(18491,61581,61581,'OP_RelinquishHouseMsg',156,1),(18492,61581,61581,'OP_ReloadLocalizedTxtMsg',359,1),(18493,61581,61581,'OP_RemoteCmdMsg',44,1),(18494,61581,61581,'OP_RemoveClientFromGroupMsg',87,1),(18495,61581,61581,'OP_RemoveConcentrationMsg',114,1),(18496,61581,61581,'OP_RemoveGroupFromGroupMsg',88,1),(18497,61581,61581,'OP_RemoveSpellEffectMsg',113,1),(18498,61581,61581,'OP_RenameGuildMsg',286,1),(18499,61581,61581,'OP_ReplaceableSubMeshesMsg',168,1),(18500,61581,61581,'OP_ReportMsg',384,1),(18501,61581,61581,'OP_RequestCampMsg',52,1),(18502,61581,61581,'OP_RequestGuildBankEventDetailsMs',284,1),(18503,61581,61581,'OP_RequestGuildEventDetailsMsg',275,1),(18504,61581,61581,'OP_RequestGuildInfoMsg',277,1),(18505,61581,61581,'OP_RequestGuildMembershipMsg',360,1),(18506,61581,61581,'OP_RequestHelpRepathMsg',209,1),(18507,61581,61581,'OP_RequestRecipeDetailsMsg',73,1),(18508,61581,61581,'OP_RequestTargetLocMsg',210,1),(18509,61581,61581,'OP_Research',763,1),(18510,61581,61581,'OP_ResendWorldChannelsMsg',448,1),(18511,61581,61581,'OP_ReskinCharacterRequestMsg',15,1),(18512,61581,61581,'OP_RestartZoneMsg',417,1),(18513,61581,61581,'OP_RewardPackMsg',285,1),(18514,61581,61581,'OP_SatMsg',192,1),(18515,61581,61581,'OP_SavageBarInitMsg',587,1),(18516,61581,61581,'OP_SelectZoneTeleporterDestinatio',358,1),(18517,61581,61581,'OP_SendLatestRequestMsg',99,1),(18518,61581,61581,'OP_ServerPlayCharacterReplyMsg',26,1),(18519,61581,61581,'OP_ServerPlayCharacterRequestMsg',25,1),(18520,61581,61581,'OP_SetInstanceDisplayNameMsg',445,1),(18521,61581,61581,'OP_SetRemoteCmdsMsg',43,1),(18522,61581,61581,'OP_SetSocialMsg',101,1),(18523,61581,61581,'OP_ShaderCustomizationMsg',167,1),(18524,61581,61581,'OP_ShowCreateFromRecipeUIMsg',222,1),(18525,61581,61581,'OP_ShowIllusionsMsg',196,1),(18526,61581,61581,'OP_ShowItemCreationProcessUIMsg',226,1),(18527,61581,61581,'OP_ShowRecipeBookMsg',229,1),(18528,61581,61581,'OP_ShowZoneTeleporterDestinations',357,1),(18529,61581,61581,'OP_SitMsg',190,1),(18530,61581,61581,'OP_SkillInfoRequest',519,1),(18531,61581,61581,'OP_SkillInfoResponse',520,1),(18532,61581,61581,'OP_SOEAllAccess',627,1),(18533,61581,61581,'OP_SpellGainedMsg',266,1),(18534,61581,61581,'OP_StandMsg',191,1),(18535,61581,61581,'OP_StoodMsg',193,1),(18536,61581,61581,'OP_StopItemCreationMsg',225,1),(18537,61581,61581,'OP_StoppedLootingMsg',189,1),(18538,61581,61581,'OP_StopTrackingMsg',396,1),(18539,61581,61581,'OP_SubmitCharCust',569,1),(18540,61581,61581,'OP_SupplyDepot',760,1),(18541,61581,61581,'OP_SysClient',221,1),(18542,61581,61581,'OP_TeleportWithinZoneMsg',81,1),(18543,61581,61581,'OP_TeleportWithinZoneNoReloadMsg',82,1),(18544,61581,61581,'OP_TintWidgetsMsg',173,1),(18545,61581,61581,'OP_TitleUpdateMsg',389,1),(18546,61581,61581,'OP_TrackingUpdateMsg',394,1),(18547,61581,61581,'OP_TradeskillList',729,1),(18548,61581,61581,'OP_TraitsList',752,1),(18549,61581,61581,'OP_UIEvent',532,1),(18550,61581,61581,'OP_UIResetMsg',177,1),(18551,61581,61581,'OP_UISettingsResponseMsg',176,1),(18552,61581,61581,'OP_Unknown',785,1),(18553,61581,61581,'OP_UnknownNpcMsg',377,1),(18554,61581,61581,'OP_UpdateActivePublicZonesMsg',376,1),(18555,61581,61581,'OP_UpdateCharacterSheetMsg',65,1),(18556,61581,61581,'OP_UpdateClientPredFlagsMsg',249,1),(18557,61581,61581,'OP_UpdateDebugRadiiMsg',383,1),(18558,61581,61581,'OP_UpdateGroupMemberDataMsg',393,1),(18559,61581,61581,'OP_UpdateHouseAccessDataMsg',147,1),(18560,61581,61581,'OP_UpdateHouseDataMsg',146,1),(18561,61581,61581,'OP_UpdateInventoryMsg',70,1),(18562,61581,61581,'OP_UpdateItemCreationProcessUIMsg',227,1),(18563,61581,61581,'OP_UpdateMotdMsg',211,1),(18564,61581,61581,'OP_UpdateOpportunityMsg',77,1),(18565,61581,61581,'OP_UpdatePositionMsg',41,1),(18566,61581,61581,'OP_UpdateRaidMsg',385,1),(18567,61581,61581,'OP_UpdateRecipeBookMsg',72,1),(18568,61581,61581,'OP_UpdateSkillBookMsg',75,1),(18569,61581,61581,'OP_UpdateSkillsMsg',76,1),(18570,61581,61581,'OP_UpdateSpellBookMsg',68,1),(18571,61581,61581,'OP_UpdateTargetLocMsg',64,1),(18572,61581,61581,'OP_UpdateTargetMsg',63,1),(18573,61581,61581,'OP_UpdateTitleCmd',499,1),(18574,61581,61581,'OP_UseAdornment',740,1),(18575,61581,61581,'OP_VideoUploaded',586,1),(18576,61581,61581,'OP_VoiceChatChannel',525,1),(18577,61581,61581,'OP_VoiceChatServer',756,1),(18578,61581,61581,'OP_WaypointReplyMsg',353,1),(18579,61581,61581,'OP_WaypointRequestMsg',352,1),(18580,61581,61581,'OP_WaypointSelectMsg',354,1),(18581,61581,61581,'OP_WaypointUpdateMsg',355,1),(18582,61581,61581,'OP_Weakness',590,1),(18583,61581,61581,'OP_WhoQueryReplyMsg',56,1),(18584,61581,61581,'OP_WhoQueryRequestMsg',55,1),(18585,61581,61581,'OP_WorldDataChangeMsg',415,1),(18586,61581,61581,'OP_WorldDataUpdateMsg',240,1),(18587,61581,61581,'OP_WorldListMsg',8,1),(18588,61581,61581,'OP_WorldPingMsg',404,1),(18589,61581,61581,'OP_WorldShutdownUpdateMsg',408,1),(18590,61581,61581,'OP_WorldStatusChangeMsg',6,1),(18591,61581,61581,'OP_WorldTravelAvail',579,1),(18592,61581,61581,'OP_WSAcctLockStatusMsg',208,1),(18593,61581,61581,'OP_WSCreateCharacterReplyMsg',14,1),(18594,61581,61581,'OP_WSCreateCharacterRequestMsg',13,1),(18595,61581,61581,'OP_WSLoginRequestMsg',2,1),(18596,61581,61581,'OP_WSServerHideMsg',370,1),(18597,61581,61581,'OP_WSServerLockMsg',368,1),(18598,61581,61581,'OP_WSStatusReplyMsg',5,1),(18599,61581,61581,'OP_ZoneBgInstanceList',575,1),(18600,61581,61581,'OP_ZoneInfoMsg',35,1),(18601,61581,61581,'OP_ZoneInstanceCreateReplyMsg',32,1),(18602,61581,61581,'OP_ZoneInstanceDestroyedMsg',33,1),(18603,61581,61581,'OP_ZoneMOTDMsg',47,1),(18604,61581,61581,'OP_ZonesStatusMsg',105,1),(18605,61581,61581,'OP_ZonesStatusRequestMsg',104,1),(18606,61581,61581,'OP_ZoneToFriendReplyMsg',288,1),(18607,61581,61581,'OP_ZoneToFriendRequestMsg',287,1),(18608,61581,61581,'OP_EarlyLandingRequestMsg',491,1),(19073,61608,61608,'OP_AchievementUpdateMsg',764,1),(19074,61608,61608,'OP_AddSocialStructureStandingMsg',253,1),(19075,61608,61608,'OP_AdvancementRequestMsg',399,1),(19076,61608,61608,'OP_AdventureList',493,1),(19077,61608,61608,'OP_AFKUpdateMsg',374,1),(19078,61608,61608,'OP_AfterInvSpellUpdate',71,1),(19079,61608,61608,'OP_AllCharactersDescReplyMsg',10,1),(19080,61608,61608,'OP_AllCharactersDescRequestMsg',9,1),(19081,61608,61608,'OP_AllWSDescRequestMsg',7,1),(19082,61608,61608,'OP_AnonUpdateMsg',375,1),(19083,61608,61608,'OP_ArenaCreate',461,1),(19084,61608,61608,'OP_ArenaGameTypesMsg',450,1),(19085,61608,61608,'OP_ArenaList',462,1),(19086,61608,61608,'OP_ArenaWindow',470,1),(19087,61608,61608,'OP_AttackAllowed',505,1),(19088,61608,61608,'OP_AttackNotAllowed',506,1),(19089,61608,61608,'OP_AuctionAbortMsg',441,1),(19090,61608,61608,'OP_AuctionCharacter',438,1),(19091,61608,61608,'OP_AuctionCharacterReply',439,1),(19092,61608,61608,'OP_AuctionCoin',436,1),(19093,61608,61608,'OP_AuctionCoinReply',437,1),(19094,61608,61608,'OP_AuctionCommitMsg',440,1),(19095,61608,61608,'OP_AuctionItem',434,1),(19096,61608,61608,'OP_AuctionItemReply',435,1),(19097,61608,61608,'OP_AuditAuctionEventMsg',451,1),(19098,61608,61608,'OP_AvatarCreatedMsg',48,1),(19099,61608,61608,'OP_AvatarDestroyedMsg',49,1),(19100,61608,61608,'OP_AvatarUpdateMsg',364,1),(19101,61608,61608,'OP_BadLanguageFilter',524,1),(19102,61608,61608,'OP_BagOptions',507,1),(19103,61608,61608,'OP_BeginItemCreationMsg',224,1),(19104,61608,61608,'OP_BeginTrackingMsg',395,1),(19105,61608,61608,'OP_BioUpdateMsg',366,1),(19106,61608,61608,'OP_BrokerAddBag',296,1),(19107,61608,61608,'OP_BrokerRemoveBag',297,1),(19108,61608,61608,'OP_BrokerSellList',707,1),(19109,61608,61608,'OP_BuyPlayerHouseMsg',153,1),(19110,61608,61608,'OP_BuyPlayerHouseTintMsg',154,1),(19111,61608,61608,'OP_CampAbortedMsg',54,1),(19112,61608,61608,'OP_CampClientMsg',392,1),(19113,61608,61608,'OP_CampStartedMsg',53,1),(19114,61608,61608,'OP_CancelCreateFromRecipeMsg',223,1),(19115,61608,61608,'OP_CancelledFeignMsg',219,1),(19116,61608,61608,'OP_CancelMoveObjectModeMsg',166,1),(19117,61608,61608,'OP_CancelSpellCast',494,1),(19118,61608,61608,'OP_ChangeServerControlFlagMsg',250,1),(19119,61608,61608,'OP_ChangeZoneMsg',79,1),(19120,61608,61608,'OP_CharacterAchievements',763,1),(19121,61608,61608,'OP_CharacterCreatedDungeons',558,1),(19122,61608,61608,'OP_CharacterCurrency',762,1),(19123,61608,61608,'OP_CharacterHousingList',512,1),(19124,61608,61608,'OP_CharacterLinkdeadMsg',419,1),(19125,61608,61608,'OP_CharacterMerc',67,1),(19126,61608,61608,'OP_CharacterMounts',591,1),(19127,61608,61608,'OP_CharacterPet',66,1),(19128,61608,61608,'OP_CharNameChangedMsg',356,1),(19129,61608,61608,'OP_CharRenamed',728,1),(19130,61608,61608,'OP_CharTransferCommitReplyMsg',427,1),(19131,61608,61608,'OP_CharTransferCommitRequestMsg',425,1),(19132,61608,61608,'OP_CharTransferReplyMsg',423,1),(19133,61608,61608,'OP_CharTransferRequestMsg',422,1),(19134,61608,61608,'OP_CharTransferRollbackReplyMsg',426,1),(19135,61608,61608,'OP_CharTransferRollbackRequestMsg',424,1),(19136,61608,61608,'OP_CharTransferStartReplyMsg',421,1),(19137,61608,61608,'OP_CharTransferStartRequestMsg',420,1),(19138,61608,61608,'OP_CharTransferValidateReplyMsg',443,1),(19139,61608,61608,'OP_CharTransferValidateRequestMsg',442,1),(19140,61608,61608,'OP_ChatCreateChannelMsg',289,1),(19141,61608,61608,'OP_ChatFiltersMsg',338,1),(19142,61608,61608,'OP_ChatJoinChannelMsg',290,1),(19143,61608,61608,'OP_ChatLeaveChannelMsg',292,1),(19144,61608,61608,'OP_ChatRelationshipUpdateMsg',187,1),(19145,61608,61608,'OP_ChatSendFriendsMsg',299,1),(19146,61608,61608,'OP_ChatSendIgnoresMsg',300,1),(19147,61608,61608,'OP_ChatTellChannelMsg',293,1),(19148,61608,61608,'OP_ChatTellUserMsg',294,1),(19149,61608,61608,'OP_ChatToggleFriendMsg',295,1),(19150,61608,61608,'OP_ChatToggleIgnoreMsg',298,1),(19151,61608,61608,'OP_ChatWhoChannelMsg',291,1),(19152,61608,61608,'OP_ClearDataMsg',100,1),(19153,61608,61608,'OP_ClearForLandingMsg',496,1),(19154,61608,61608,'OP_ClearForTakeOffMsg',194,1),(19155,61608,61608,'OP_ClientCmdMsg',60,1),(19156,61608,61608,'OP_ClientFellMsg',390,1),(19157,61608,61608,'OP_ClientIdleBeginMsg',410,1),(19158,61608,61608,'OP_ClientIdleEndMsg',411,1),(19159,61608,61608,'OP_ClientInDeathRegionMsg',391,1),(19160,61608,61608,'OP_ClientTeleportRequestMsg',80,1),(19161,61608,61608,'OP_ClientTeleportToLocationMsg',248,1),(19162,61608,61608,'OP_CloseGroupInviteWindowMsg',402,1),(19163,61608,61608,'OP_CollectAllHouseItemsMsg',155,1),(19164,61608,61608,'OP_ConsignItemRequestMsg',129,1),(19165,61608,61608,'OP_ConsignItemResponseMsg',130,1),(19166,61608,61608,'OP_ConsignmentCloseStoreMsg',128,1),(19167,61608,61608,'OP_ConsignRemoveItemsMsg',382,1),(19168,61608,61608,'OP_ConsignViewCreateMsg',379,1),(19169,61608,61608,'OP_ConsignViewGetPageMsg',380,1),(19170,61608,61608,'OP_ConsignViewReleaseMsg',381,1),(19171,61608,61608,'OP_ConsignViewSortMsg',388,1),(19172,61608,61608,'OP_CorruptedClientMsg',414,1),(19173,61608,61608,'OP_CreateBoatTransportsMsg',254,1),(19174,61608,61608,'OP_CreateCharacterDungeon',552,1),(19175,61608,61608,'OP_CreateCharacterReplyMsg',12,1),(19176,61608,61608,'OP_CreateCharacterRequestMsg',11,1),(19177,61608,61608,'OP_CreateCharFromCBBReplyMsg',431,1),(19178,61608,61608,'OP_CreateCharFromCBBRequestMsg',430,1),(19179,61608,61608,'OP_CreateGuildReplyMsg',123,1),(19180,61608,61608,'OP_CreateGuildRequestMsg',121,1),(19181,61608,61608,'OP_CreateZoneInstanceMsg',31,1),(19182,61608,61608,'OP_CsCategoryRequestMsg',371,1),(19183,61608,61608,'OP_CsCategoryResponseMsg',372,1),(19184,61608,61608,'OP_CSTicketAddCommentMsg',237,1),(19185,61608,61608,'OP_CSTicketChangeNotificationMsg',239,1),(19186,61608,61608,'OP_CSTicketCommentRequestMsg',234,1),(19187,61608,61608,'OP_CSTicketCommentResponseMsg',235,1),(19188,61608,61608,'OP_CSTicketCreateMsg',236,1),(19189,61608,61608,'OP_CSTicketDeleteMsg',238,1),(19190,61608,61608,'OP_CSTicketHeaderRequestMsg',232,1),(19191,61608,61608,'OP_CSTicketInfoMsg',233,1),(19192,61608,61608,'OP_CSToolAccessResponseMsg',393,1),(19193,61608,61608,'OP_CSToolsRequestMsg',251,1),(19194,61608,61608,'OP_CSToolsResponseMsg',252,1),(19195,61608,61608,'OP_CurrentPet',490,1),(19196,61608,61608,'OP_CustomizationPurchaseRequestMs',170,1),(19197,61608,61608,'OP_CustomizationReplyMsg',172,1),(19198,61608,61608,'OP_CustomizationSetRequestMsg',171,1),(19199,61608,61608,'OP_CustomizeHouseDisplay',753,1),(19200,61608,61608,'OP_DailyObjectives',604,1),(19201,61608,61608,'OP_DefaultGroupOptionsMsg',201,1),(19202,61608,61608,'OP_DefaultGroupOptionsRequestMsg',200,1),(19203,61608,61608,'OP_DeleteCharacterReplyMsg',19,1),(19204,61608,61608,'OP_DeleteCharacterRequestMsg',18,1),(19205,61608,61608,'OP_DeleteGuildMsg',126,1),(19206,61608,61608,'OP_DestUpdateReq',213,1),(19207,61608,61608,'OP_DialogCloseMsg',112,1),(19208,61608,61608,'OP_DialogSelectMsg',111,1),(19209,61608,61608,'OP_DispatchClientCmdMsg',62,1),(19210,61608,61608,'OP_DispatchESMsg',61,1),(19211,61608,61608,'OP_DispatchMsg',456,1),(19212,61608,61608,'OP_DispatchSpellCmdMsg',182,1),(19213,61608,61608,'OP_DisplayDebugNLLPointsMsg',258,1),(19214,61608,61608,'OP_DisplayEventMsg',457,1),(19215,61608,61608,'OP_DisplayExchangeScreenMsg',449,1),(19216,61608,61608,'OP_DisplayGroupOptionsScreenMsg',203,1),(19217,61608,61608,'OP_DisplayInnVisitScreenMsg',205,1),(19218,61608,61608,'OP_DisplayMailScreenMsg',409,1),(19219,61608,61608,'OP_DisplayTSEventReactionMsg',228,1),(19220,61608,61608,'OP_DisplayWarningMsg',269,1),(19221,61608,61608,'OP_DoneLoadingEntityResourcesMsg',38,1),(19222,61608,61608,'OP_DoneLoadingZoneResourcesMsg',36,1),(19223,61608,61608,'OP_DoneSendingInitialEntitiesMsg',37,1),(19224,61608,61608,'OP_DressingRoom',515,1),(19225,61608,61608,'OP_DumpSchedulerMsg',206,1),(19226,61608,61608,'OP_DungeonMakerEnter',553,1),(19227,61608,61608,'OP_DungeonMakerItemRequest',557,1),(19228,61608,61608,'OP_DungeonMakerItemResponse',589,1),(19229,61608,61608,'OP_DungeonMakerToolboxList',559,1),(19230,61608,61608,'OP_DungeonMakerUnknown',560,1),(19231,61608,61608,'OP_DungeonMakerUnknown1',561,1),(19232,61608,61608,'OP_DungeonPlayAsAvatarList',767,1),(19233,61608,61608,'OP_DungeonPlayAsAvatarSelected',768,1),(19234,61608,61608,'OP_EncounterBrokenMsg',267,1),(19235,61608,61608,'OP_EnterHouseMsg',157,1),(19236,61608,61608,'OP_EnterMoveObjectModeMsg',164,1),(19237,61608,61608,'OP_EntityVerbsReplyMsg',184,1),(19238,61608,61608,'OP_EntityVerbsRequestMsg',183,1),(19239,61608,61608,'OP_EntityVerbsVerbMsg',185,1),(19240,61608,61608,'OP_EqArenaResultsCmd',718,1),(19241,61608,61608,'OP_EqAvailWorldChannelsCmd',705,1),(19242,61608,61608,'OP_EqBetaCopyRequest',624,1),(19243,61608,61608,'OP_EqCannedEmoteCmd',647,1),(19244,61608,61608,'OP_EqChatChannelUpdateCmd',703,1),(19245,61608,61608,'OP_EqChoiceWinCmd',684,1),(19246,61608,61608,'OP_EqCloseWindowCmd',676,1),(19247,61608,61608,'OP_EqCollectionFilterCmd',663,1),(19248,61608,61608,'OP_EqCollectionItemCmd',664,1),(19249,61608,61608,'OP_EqCollectionUpdateCmd',662,1),(19250,61608,61608,'OP_EqConsignmentItemsCmd',708,1),(19251,61608,61608,'OP_EqCreateGhostCmd',629,1),(19252,61608,61608,'OP_EqCreateListBoxCmd',644,1),(19253,61608,61608,'OP_EqCreateSignWidgetCmd',631,1),(19254,61608,61608,'OP_EqCreateWidgetCmd',630,1),(19255,61608,61608,'OP_EqDebugPVDCmd',697,1),(19256,61608,61608,'OP_EqDestroyGhostCmd',632,1),(19257,61608,61608,'OP_EqDialogCloseCmd',660,1),(19258,61608,61608,'OP_EqDialogOpenCmd',659,1),(19259,61608,61608,'OP_EqDisplaySpellFailCmd',680,1),(19260,61608,61608,'OP_EqDisplayTextCmd',628,1),(19261,61608,61608,'OP_EqDrawablePathGraphCmd',658,1),(19262,61608,61608,'OP_EqEnableGameEventCmd',690,1),(19263,61608,61608,'OP_EqEnableWindowCmd',692,1),(19264,61608,61608,'OP_EqExamineInfoCmd',675,1),(19265,61608,61608,'OP_EqFactionUpdateCmd',661,1),(19266,61608,61608,'OP_EqFlashWindowCmd',693,1),(19267,61608,61608,'OP_EqGetProbsCmd',701,1),(19268,61608,61608,'OP_EqGroupMemberRemovedCmd',654,1),(19269,61608,61608,'OP_EqGuildBankEventActionCmd',719,1),(19270,61608,61608,'OP_EqGuildBankExamineInfoCmd',720,1),(19271,61608,61608,'OP_EqHearChainEffectCmd',655,1),(19272,61608,61608,'OP_EqHearChatCmd',627,1),(19273,61608,61608,'OP_EqHearCombatCmd',636,1),(19274,61608,61608,'OP_EqHearConsiderCmd',642,1),(19275,61608,61608,'OP_EqHearDeathCmd',653,1),(19276,61608,61608,'OP_EQHearDispellCmd',765,1),(19277,61608,61608,'OP_EqHearDrowningCmd',652,1),(19278,61608,61608,'OP_EqHearHealCmd',702,1),(19279,61608,61608,'OP_EqHearPlayFlavorCmd',695,1),(19280,61608,61608,'OP_EQHearProcCmd',638,1),(19281,61608,61608,'OP_EQHearResEffectCmd',639,1),(19282,61608,61608,'OP_EqHearSpellCastCmd',637,1),(19283,61608,61608,'OP_EqHearSpellFizzleCmd',641,1),(19284,61608,61608,'OP_EqHearSpellInterruptCmd',640,1),(19285,61608,61608,'OP_EqHearSpellNoLandCmd',721,1),(19286,61608,61608,'OP_EQHearThreatCmd',759,1),(19287,61608,61608,'OP_EqHelpPathClearCmd',673,1),(19288,61608,61608,'OP_EqHelpPathCmd',672,1),(19289,61608,61608,'OP_EqInspectPCResultsCmd',657,1),(19290,61608,61608,'OP_EqInstructionWindowCloseCmd',687,1),(19291,61608,61608,'OP_EqInstructionWindowCmd',686,1),(19292,61608,61608,'OP_EqInstructionWindowGoalCmd',688,1),(19293,61608,61608,'OP_EqInstructionWindowTaskCmd',689,1),(19294,61608,61608,'OP_EqJunctionListCmd',678,1),(19295,61608,61608,'OP_EqMapExplorationCmd',711,1),(19296,61608,61608,'OP_EqMentoring',666,1),(19297,61608,61608,'OP_EqPlaySound3DCmd',650,1),(19298,61608,61608,'OP_EqPlaySoundCmd',649,1),(19299,61608,61608,'OP_EqPlayVoiceCmd',651,1),(19300,61608,61608,'OP_EqQuestGroupCmd',668,1),(19301,61608,61608,'OP_EqQuestionnaireCmd',699,1),(19302,61608,61608,'OP_EqQuestJournalReplyCmd',667,1),(19303,61608,61608,'OP_EqQuestJournalUpdateCmd',665,1),(19304,61608,61608,'OP_EqReceiveOfferCmd',656,1),(19305,61608,61608,'OP_EqResurrectedCmd',683,1),(19306,61608,61608,'OP_EqSetControlGhostCmd',634,1),(19307,61608,61608,'OP_EqSetDebugPathPointsCmd',645,1),(19308,61608,61608,'OP_EqSetDefaultVerbCmd',685,1),(19309,61608,61608,'OP_EqSetPOVGhostCmd',635,1),(19310,61608,61608,'OP_EqShowBookCmd',698,1),(19311,61608,61608,'OP_EqShowDeathWindowCmd',679,1),(19312,61608,61608,'OP_EqShowWindowCmd',691,1),(19313,61608,61608,'OP_EqSpellCastEndCmd',682,1),(19314,61608,61608,'OP_EqSpellCastStartCmd',681,1),(19315,61608,61608,'OP_EqSpellMoveToRangeAndRetryCmd',713,1),(19316,61608,61608,'OP_EqStartBrokerCmd',710,1),(19317,61608,61608,'OP_EqStateCmd',648,1),(19318,61608,61608,'OP_EqStoreLogCmd',712,1),(19319,61608,61608,'OP_EqUpdateBankCmd',674,1),(19320,61608,61608,'OP_EqUpdateGhostCmd',633,1),(19321,61608,61608,'OP_EqUpdateLootCmd',677,1),(19322,61608,61608,'OP_EqUpdateMerchantCmd',669,1),(19323,61608,61608,'OP_EqUpdatePlayerMailCmd',714,1),(19324,61608,61608,'OP_EqUpdatePlayerTradeCmd',671,1),(19325,61608,61608,'OP_EqUpdateSignWidgetCmd',696,1),(19326,61608,61608,'OP_EqUpdateStoreCmd',670,1),(19327,61608,61608,'OP_EqUpdateSubClassesCmd',643,1),(19328,61608,61608,'OP_EqUpdateTargetCmd',706,1),(19329,61608,61608,'OP_EqWhoChannelQueryReplyCmd',704,1),(19330,61608,61608,'OP_ESInitMsg',27,1),(19331,61608,61608,'OP_ESLoginRequestMsg',3,1),(19332,61608,61608,'OP_ESReadyForClientsMsg',28,1),(19333,61608,61608,'OP_ESStatusMsg',102,1),(19334,61608,61608,'OP_ESWeatherRequestEndMsg',107,1),(19335,61608,61608,'OP_ESWeatherRequestMsg',106,1),(19336,61608,61608,'OP_ESZoneInstanceStatusMsg',103,1),(19337,61608,61608,'OP_ExamineConsignmentRequestMsg',174,1),(19338,61608,61608,'OP_ExamineConsignmentResponseMsg',175,1),(19339,61608,61608,'OP_ExamineInfoRequestMsg',259,1),(19340,61608,61608,'OP_ExamineItemRequestMsg',198,1),(19341,61608,61608,'OP_ExitHouseMsg',158,1),(19342,61608,61608,'OP_ExpectClientAsCharacterReplyMs',24,1),(19343,61608,61608,'OP_ExpectClientAsCharacterRequest',34,1),(19344,61608,61608,'OP_ExpPurchWindow',744,1),(19345,61608,61608,'OP_FellowshipExpMsg',125,1),(19346,61608,61608,'OP_FlightPathsMsg',418,1),(19347,61608,61608,'OP_GameWorldTimeMsg',45,1),(19348,61608,61608,'OP_PaperdollImage',584,1),(19349,61608,61608,'OP_GetAuctionAssetIDMsg',446,1),(19350,61608,61608,'OP_GetAuctionAssetIDReplyMsg',447,1),(19351,61608,61608,'OP_GetAvatarAccessRequestForCSToo',398,1),(19352,61608,61608,'OP_GetCharacterSerializedReplyMsg',429,1),(19353,61608,61608,'OP_GetCharacterSerializedRequestM',428,1),(19354,61608,61608,'OP_GroupCreatedMsg',90,1),(19355,61608,61608,'OP_GroupDestroyedMsg',91,1),(19356,61608,61608,'OP_GroupLeaderChangedMsg',95,1),(19357,61608,61608,'OP_GroupMemberAddedMsg',92,1),(19358,61608,61608,'OP_GroupMemberRemovedMsg',93,1),(19359,61608,61608,'OP_GroupOptionsMsg',202,1),(19360,61608,61608,'OP_GroupRemovedFromGroupMsg',94,1),(19361,61608,61608,'OP_GroupResendOOZDataMsg',96,1),(19362,61608,61608,'OP_GroupSettingsChangedMsg',97,1),(19363,61608,61608,'OP_GuildBankActionMsg',278,1),(19364,61608,61608,'OP_GuildBankActionResponseMsg',279,1),(19365,61608,61608,'OP_GuildBankEventListMsg',283,1),(19366,61608,61608,'OP_GuildBankItemDetailsRequestMsg',280,1),(19367,61608,61608,'OP_GuildBankItemDetailsResponseMs',281,1),(19368,61608,61608,'OP_GuildBankUpdateMsg',282,1),(19369,61608,61608,'OP_GuildEventActionMsg',273,1),(19370,61608,61608,'OP_GuildEventAddMsg',272,1),(19371,61608,61608,'OP_GuildEventDetailsMsg',276,1),(19372,61608,61608,'OP_GuildEventListMsg',274,1),(19373,61608,61608,'OP_GuildEventMsg',271,1),(19374,61608,61608,'OP_GuildMembershipResponseMsg',361,1),(19375,61608,61608,'OP_GuildRecruiting',724,1),(19376,61608,61608,'OP_GuildRecruitingDetails',725,1),(19377,61608,61608,'OP_GuildRecruitingImage',726,1),(19378,61608,61608,'OP_GuildRecruitingMemberInfo',723,1),(19379,61608,61608,'OP_GuildsayMsg',124,1),(19380,61608,61608,'OP_GuildStatusUpdate',717,1),(19381,61608,61608,'OP_GuildUpdateMsg',127,1),(19382,61608,61608,'OP_HeritageMsg',10009,1),(19383,61608,61608,'OP_HideIllusionsMsg',197,1),(19384,61608,61608,'OP_HouseAccessRemoveMsg',161,1),(19385,61608,61608,'OP_HouseAccessSetMsg',160,1),(19386,61608,61608,'OP_HouseCustomizationScreenMsg',169,1),(19387,61608,61608,'OP_HouseDefaultAccessSetMsg',159,1),(19388,61608,61608,'OP_HouseDeletedRemotelyMsg',145,1),(19389,61608,61608,'OP_HouseItemsList',489,1),(19390,61608,61608,'OP_HousingDataChangedMsg',432,1),(19391,61608,61608,'OP_HousingRestoreMsg',433,1),(19392,61608,61608,'OP_InspectPlayerMsg',367,1),(19393,61608,61608,'OP_InspectPlayerRequestMsg',455,1),(19394,61608,61608,'OP_InviteRequestMsg',452,1),(19395,61608,61608,'OP_InviteResponseMsg',453,1),(19396,61608,61608,'OP_InviteTargetResponseMsg',454,1),(19397,61608,61608,'OP_JoinGuildNotifyMsg',363,1),(19398,61608,61608,'OP_JournalQuestStoryline',766,1),(19399,61608,61608,'OP_KeymapDataMsg',180,1),(19400,61608,61608,'OP_KeymapLoadMsg',178,1),(19401,61608,61608,'OP_KeymapNoneMsg',179,1),(19402,61608,61608,'OP_KeymapSaveMsg',181,1),(19403,61608,61608,'OP_KnowledgebaseRequestMsg',230,1),(19404,61608,61608,'OP_KnowledgebaseResponseMsg',231,1),(19405,61608,61608,'OP_KnowledgeWindowSlotMappingMsg',373,1),(19406,61608,61608,'OP_KnownLanguagesMsg',242,1),(19407,61608,61608,'OP_Launchpad',582,1),(19408,61608,61608,'OP_LeaveGuildNotifyMsg',362,1),(19409,61608,61608,'OP_LevelChangedMsg',265,1),(19410,61608,61608,'OP_LFGGroupSearch',509,1),(19411,61608,61608,'OP_LFGUpdateMsg',523,1),(19412,61608,61608,'OP_LikeOption',139,1),(19413,61608,61608,'OP_LoadCalendarEvents',585,1),(19414,61608,61608,'OP_LoadWelcomeWindow',567,1),(19415,61608,61608,'OP_LoginByNumRequestMsg',1,1),(19416,61608,61608,'OP_LoginReplyMsg',4,1),(19417,61608,61608,'OP_LoginRequestMsg',0,1),(19418,61608,61608,'OP_LootItemsRequestMsg',188,1),(19419,61608,61608,'OP_Lottery',722,1),(19420,61608,61608,'OP_LSCheckAcctLockMsg',207,1),(19421,61608,61608,'OP_LsClientAlertlogReplyMsg',246,1),(19422,61608,61608,'OP_LsClientBaselogReplyMsg',244,1),(19423,61608,61608,'OP_LsClientCrashlogReplyMsg',245,1),(19424,61608,61608,'OP_LsClientVerifylogReplyMsg',247,1),(19425,61608,61608,'OP_LsRequestClientCrashLogMsg',243,1),(19426,61608,61608,'OP_LSServerLockMsg',369,1),(19427,61608,61608,'OP_MacroInitMsg',262,1),(19428,61608,61608,'OP_MacroUpdateMsg',263,1),(19429,61608,61608,'OP_MailCommitSendMessageMsg',348,1),(19430,61608,61608,'OP_MailDeleteMessageMsg',344,1),(19431,61608,61608,'OP_MailEventNotificationMsg',416,1),(19432,61608,61608,'OP_MailGetHeadersReplyMsg',345,1),(19433,61608,61608,'OP_MailGetMessageMsg',342,1),(19434,61608,61608,'OP_MailGetMessageReplyMsg',346,1),(19435,61608,61608,'OP_MailRemoveAttachFromMailMsg',350,1),(19436,61608,61608,'OP_MailSendMessageMsg',343,1),(19437,61608,61608,'OP_MailSendMessageReplyMsg',347,1),(19438,61608,61608,'OP_MailSendSystemMessageMsg',349,1),(19439,61608,61608,'OP_MakeGroupLeaderMsg',89,1),(19440,61608,61608,'OP_MapFogDataInitMsg',400,1),(19441,61608,61608,'OP_MapFogDataUpdateMsg',401,1),(19442,61608,61608,'OP_MapRequest',526,1),(19443,61608,61608,'OP_MarketAddFundsReply',534,1),(19444,61608,61608,'OP_MarketAddFundsRequest',533,1),(19445,61608,61608,'OP_MarketFundsUpdate',531,1),(19446,61608,61608,'OP_MarketPlaceItems',544,1),(19447,61608,61608,'OP_MarketPlacePrices',537,1),(19448,61608,61608,'OP_MarketPurchase',536,1),(19449,61608,61608,'OP_MentorPopup',565,1),(19450,61608,61608,'OP_MercHireWindow',769,1),(19451,61608,61608,'OP_MercUnknown',770,1),(19452,61608,61608,'OP_MigrateBoatTransportMsg',256,1),(19453,61608,61608,'OP_MigrateBoatTransportReplyMsg',257,1),(19454,61608,61608,'OP_MigrateClientToZoneReplyMsg',84,1),(19455,61608,61608,'OP_MigrateClientToZoneRequestMsg',83,1),(19456,61608,61608,'OP_ModifyGuildMsg',270,1),(19457,61608,61608,'OP_MonitorCharacterListMsg',58,1),(19458,61608,61608,'OP_MonitorCharacterListRequestMsg',59,1),(19459,61608,61608,'OP_MonitorReplyMsg',57,1),(19460,61608,61608,'OP_MOTDMsg',46,1),(19461,61608,61608,'OP_MoveableObjectPlacementCriteri',163,1),(19462,61608,61608,'OP_MoveLogUpdateMsg',405,1),(19463,61608,61608,'OP_NotifyApprenticeStoppedMentori',413,1),(19464,61608,61608,'OP_OfferQuestMsg',406,1),(19465,61608,61608,'OP_OnscreenMsgMsg',268,1),(19466,61608,61608,'OP_OpenCharCust',568,1),(19467,61608,61608,'OP_OutOfZoneMemberDataMsg',98,1),(19468,61608,61608,'OP_PayHouseUpkeepMsg',162,1),(19469,61608,61608,'OP_PerformCameraShakeMsg',217,1),(19470,61608,61608,'OP_PerformPlayerKnockbackMsg',216,1),(19471,61608,61608,'OP_PetOptions',204,1),(19472,61608,61608,'OP_PetOptionsResponse',588,1),(19473,61608,61608,'OP_PlayCharacterReplyMsg',21,1),(19474,61608,61608,'OP_PlayCharacterRequestMsg',20,1),(19475,61608,61608,'OP_PlayerHouseAccessUpdateMsg',150,1),(19476,61608,61608,'OP_PlayerHouseBaseScreenMsg',148,1),(19477,61608,61608,'OP_PlayerHouseCloseUIMsg',152,1),(19478,61608,61608,'OP_PlayerHouseDisplayStatusMsg',151,1),(19479,61608,61608,'OP_PlayerHousePurchaseScreenMsg',149,1),(19480,61608,61608,'OP_PlayerMadeInstances',143,1),(19481,61608,61608,'OP_PlayerMadeInstancesScreen',142,1),(19482,61608,61608,'OP_PlayerPollAnswer',564,1),(19483,61608,61608,'OP_PlayerPollPopup',563,1),(19484,61608,61608,'OP_PlayLon',516,1),(19485,61608,61608,'OP_PointOfInterest',748,1),(19486,61608,61608,'OP_PointOfInterest2',749,1),(19487,61608,61608,'OP_PopulateSkillMapsMsg',218,1),(19488,61608,61608,'OP_PositionBoatTransportMsg',255,1),(19489,61608,61608,'OP_PositionMoveableObject',165,1),(19490,61608,61608,'OP_PostPossessionMsg',459,1),(19491,61608,61608,'OP_PredictionUpdateMsg',39,1),(19492,61608,61608,'OP_PrePossessionMsg',458,1),(19493,61608,61608,'OP_PromoFlagsDetailsMsg',378,1),(19494,61608,61608,'OP_PublishHouse',141,1),(19495,61608,61608,'OP_PurchaseConsignmentLoreCheckRe',412,1),(19496,61608,61608,'OP_PurchaseConsignmentRequestMsg',131,1),(19497,61608,61608,'OP_QueAllBgSolo',571,1),(19498,61608,61608,'OP_QuestionnaireMsg',264,1),(19499,61608,61608,'OP_QuestJournalInspectMsg',116,1),(19500,61608,61608,'OP_QuestJournalOpenMsg',115,1),(19501,61608,61608,'OP_QuestJournalSetVisibleMsg',117,1),(19502,61608,61608,'OP_QuestJournalWaypointMsg',118,1),(19503,61608,61608,'OP_QuestReward',324,1),(19504,61608,61608,'OP_QuickbarInitMsg',260,1),(19505,61608,61608,'OP_QuickbarUpdateMsg',261,1),(19506,61608,61608,'OP_RaceRestrictionMsg',444,1),(19507,61608,61608,'OP_ReadBookPageMsg',199,1),(19508,61608,61608,'OP_ReadyForTakeOffMsg',195,1),(19509,61608,61608,'OP_ReadyToZoneMsg',86,1),(19510,61608,61608,'OP_RecipeBook',545,1),(19511,61608,61608,'OP_RecipeDetailsMsg',74,1),(19512,61608,61608,'OP_RecipeList',760,1),(19513,61608,61608,'OP_RecipeListUnknown',600,1),(19514,61608,61608,'OP_RelinquishHouseMsg',156,1),(19515,61608,61608,'OP_ReloadLocalizedTxtMsg',359,1),(19516,61608,61608,'OP_RemoteCmdMsg',44,1),(19517,61608,61608,'OP_RemoveClientFromGroupMsg',87,1),(19518,61608,61608,'OP_RemoveConcentrationMsg',114,1),(19519,61608,61608,'OP_RemoveGroupFromGroupMsg',88,1),(19520,61608,61608,'OP_RemoveSpellEffectMsg',113,1),(19521,61608,61608,'OP_RenameGuildMsg',286,1),(19522,61608,61608,'OP_ReplaceableSubMeshesMsg',168,1),(19523,61608,61608,'OP_ReportMsg',384,1),(19524,61608,61608,'OP_RequestCampMsg',52,1),(19525,61608,61608,'OP_RequestGuildBankEventDetailsMs',284,1),(19526,61608,61608,'OP_RequestGuildEventDetailsMsg',275,1),(19527,61608,61608,'OP_RequestGuildInfoMsg',277,1),(19528,61608,61608,'OP_RequestGuildMembershipMsg',360,1),(19529,61608,61608,'OP_RequestHelpRepathMsg',209,1),(19530,61608,61608,'OP_RequestRecipeDetailsMsg',73,1),(19531,61608,61608,'OP_RequestTargetLocMsg',210,1),(19532,61608,61608,'OP_Research',761,1),(19533,61608,61608,'OP_ResendWorldChannelsMsg',448,1),(19534,61608,61608,'OP_ReskinCharacterRequestMsg',15,1),(19535,61608,61608,'OP_RestartZoneMsg',417,1),(19536,61608,61608,'OP_RewardPackMsg',285,1),(19537,61608,61608,'OP_SatMsg',192,1),(19538,61608,61608,'OP_SavageBarInitMsg',587,1),(19539,61608,61608,'OP_SelectZoneTeleporterDestinatio',358,1),(19540,61608,61608,'OP_SendLatestRequestMsg',99,1),(19541,61608,61608,'OP_ServerPlayCharacterReplyMsg',26,1),(19542,61608,61608,'OP_ServerPlayCharacterRequestMsg',25,1),(19543,61608,61608,'OP_SetInstanceDisplayNameMsg',445,1),(19544,61608,61608,'OP_SetRemoteCmdsMsg',43,1),(19545,61608,61608,'OP_SetSocialMsg',101,1),(19546,61608,61608,'OP_ShaderCustomizationMsg',167,1),(19547,61608,61608,'OP_ShowCreateFromRecipeUIMsg',222,1),(19548,61608,61608,'OP_ShowIllusionsMsg',196,1),(19549,61608,61608,'OP_ShowItemCreationProcessUIMsg',226,1),(19550,61608,61608,'OP_ShowRecipeBookMsg',229,1),(19551,61608,61608,'OP_ShowZoneTeleporterDestinations',357,1),(19552,61608,61608,'OP_SitMsg',190,1),(19553,61608,61608,'OP_SkillInfoRequest',519,1),(19554,61608,61608,'OP_SkillInfoResponse',520,1),(19555,61608,61608,'OP_SOEAllAccess',625,1),(19556,61608,61608,'OP_SpellGainedMsg',266,1),(19557,61608,61608,'OP_StandMsg',191,1),(19558,61608,61608,'OP_StoodMsg',193,1),(19559,61608,61608,'OP_StopItemCreationMsg',225,1),(19560,61608,61608,'OP_StoppedLootingMsg',189,1),(19561,61608,61608,'OP_StopTrackingMsg',396,1),(19562,61608,61608,'OP_SubmitCharCust',569,1),(19563,61608,61608,'OP_SupplyDepot',758,1),(19564,61608,61608,'OP_SysClient',221,1),(19565,61608,61608,'OP_TeleportWithinZoneMsg',81,1),(19566,61608,61608,'OP_TeleportWithinZoneNoReloadMsg',82,1),(19567,61608,61608,'OP_TintWidgetsMsg',173,1),(19568,61608,61608,'OP_TitleUpdateMsg',389,1),(19569,61608,61608,'OP_TrackingUpdateMsg',394,1),(19570,61608,61608,'OP_TradeskillList',727,1),(19571,61608,61608,'OP_TraitsList',750,1),(19572,61608,61608,'OP_UIEvent',532,1),(19573,61608,61608,'OP_UIResetMsg',177,1),(19574,61608,61608,'OP_UISettingsResponseMsg',176,1),(19575,61608,61608,'OP_Unknown',783,1),(19576,61608,61608,'OP_UnknownNpcMsg',377,1),(19577,61608,61608,'OP_UpdateActivePublicZonesMsg',376,1),(19578,61608,61608,'OP_UpdateCharacterSheetMsg',65,1),(19579,61608,61608,'OP_UpdateClientPredFlagsMsg',249,1),(19580,61608,61608,'OP_UpdateDebugRadiiMsg',383,1),(19581,61608,61608,'OP_UpdateGroupMemberDataMsg',393,1),(19582,61608,61608,'OP_UpdateHouseAccessDataMsg',147,1),(19583,61608,61608,'OP_UpdateHouseDataMsg',146,1),(19584,61608,61608,'OP_UpdateInventoryMsg',70,1),(19585,61608,61608,'OP_UpdateItemCreationProcessUIMsg',227,1),(19586,61608,61608,'OP_UpdateMotdMsg',211,1),(19587,61608,61608,'OP_UpdateOpportunityMsg',77,1),(19588,61608,61608,'OP_UpdatePositionMsg',41,1),(19589,61608,61608,'OP_UpdateRaidMsg',385,1),(19590,61608,61608,'OP_UpdateRecipeBookMsg',72,1),(19591,61608,61608,'OP_UpdateSkillBookMsg',75,1),(19592,61608,61608,'OP_UpdateSkillsMsg',76,1),(19593,61608,61608,'OP_UpdateSpellBookMsg',68,1),(19594,61608,61608,'OP_UpdateTargetLocMsg',64,1),(19595,61608,61608,'OP_UpdateTargetMsg',63,1),(19596,61608,61608,'OP_UpdateTitleCmd',499,1),(19597,61608,61608,'OP_UseAdornment',738,1),(19598,61608,61608,'OP_VideoUploaded',586,1),(19599,61608,61608,'OP_VoiceChatChannel',525,1),(19600,61608,61608,'OP_VoiceChatServer',754,1),(19601,61608,61608,'OP_WaypointReplyMsg',353,1),(19602,61608,61608,'OP_WaypointRequestMsg',352,1),(19603,61608,61608,'OP_WaypointSelectMsg',354,1),(19604,61608,61608,'OP_WaypointUpdateMsg',355,1),(19605,61608,61608,'OP_Weakness',590,1),(19606,61608,61608,'OP_WhoQueryReplyMsg',56,1),(19607,61608,61608,'OP_WhoQueryRequestMsg',55,1),(19608,61608,61608,'OP_WorldDataChangeMsg',415,1),(19609,61608,61608,'OP_WorldDataUpdateMsg',240,1),(19610,61608,61608,'OP_WorldListMsg',8,1),(19611,61608,61608,'OP_WorldPingMsg',404,1),(19612,61608,61608,'OP_WorldShutdownUpdateMsg',408,1),(19613,61608,61608,'OP_WorldStatusChangeMsg',6,1),(19614,61608,61608,'OP_WorldTravelAvail',579,1),(19615,61608,61608,'OP_WSAcctLockStatusMsg',208,1),(19616,61608,61608,'OP_WSCreateCharacterReplyMsg',14,1),(19617,61608,61608,'OP_WSCreateCharacterRequestMsg',13,1),(19618,61608,61608,'OP_WSLoginRequestMsg',2,1),(19619,61608,61608,'OP_WSServerHideMsg',370,1),(19620,61608,61608,'OP_WSServerLockMsg',368,1),(19621,61608,61608,'OP_WSStatusReplyMsg',5,1),(19622,61608,61608,'OP_ZoneBgInstanceList',575,1),(19623,61608,61608,'OP_ZoneInfoMsg',35,1),(19624,61608,61608,'OP_ZoneInstanceCreateReplyMsg',32,1),(19625,61608,61608,'OP_ZoneInstanceDestroyedMsg',33,1),(19626,61608,61608,'OP_ZoneMOTDMsg',47,1),(19627,61608,61608,'OP_ZonesStatusMsg',105,1),(19628,61608,61608,'OP_ZonesStatusRequestMsg',104,1),(19629,61608,61608,'OP_ZoneToFriendReplyMsg',288,1),(19630,61608,61608,'OP_ZoneToFriendRequestMsg',287,1),(19631,61608,61608,'OP_EarlyLandingRequestMsg',491,1),(19632,63119,63119,'OP_LoginRequestMsg',0,1),(19633,63119,63119,'OP_LoginByNumRequestMsg',1,1),(19634,63119,63119,'OP_WSLoginRequestMsg',2,1),(19635,63119,63119,'OP_ESLoginRequestMsg',3,1),(19636,63119,63119,'OP_LoginReplyMsg',4,1),(19637,63119,63119,'OP_WSStatusReplyMsg',5,1),(19638,63119,63119,'OP_WorldStatusChangeMsg',6,1),(19639,63119,63119,'OP_AllWSDescRequestMsg',7,1),(19640,63119,63119,'OP_WorldListMsg',8,1),(19641,63119,63119,'OP_AllCharactersDescRequestMsg',9,1),(19642,63119,63119,'OP_AllCharactersDescReplyMsg',10,1),(19643,63119,63119,'OP_CreateCharacterRequestMsg',11,1),(19644,63119,63119,'OP_CreateCharacterReplyMsg',12,1),(19645,63119,63119,'OP_WSCreateCharacterRequestMsg',13,1),(19646,63119,63119,'OP_WSCreateCharacterReplyMsg',14,1),(19647,63119,63119,'OP_ReskinCharacterRequestMsg',15,1),(19648,63119,63119,'OP_DeleteCharacterRequestMsg',18,1),(19649,63119,63119,'OP_DeleteCharacterReplyMsg',19,1),(19650,63119,63119,'OP_PlayCharacterRequestMsg',20,1),(19651,63119,63119,'OP_PlayCharacterReplyMsg',21,1),(19652,63119,63119,'OP_ExpectClientAsCharacterReplyMs',24,1),(19653,63119,63119,'OP_ServerPlayCharacterRequestMsg',25,1),(19654,63119,63119,'OP_ServerPlayCharacterReplyMsg',26,1),(19655,63119,63119,'OP_ESInitMsg',27,1),(19656,63119,63119,'OP_ESReadyForClientsMsg',28,1),(19657,63119,63119,'OP_CreateZoneInstanceMsg',31,1),(19658,63119,63119,'OP_ZoneInstanceCreateReplyMsg',32,1),(19659,63119,63119,'OP_ZoneInstanceDestroyedMsg',33,1),(19660,63119,63119,'OP_ExpectClientAsCharacterRequest',34,1),(19661,63119,63119,'OP_ZoneInfoMsg',35,1),(19662,63119,63119,'OP_DoneLoadingZoneResourcesMsg',36,1),(19663,63119,63119,'OP_DoneSendingInitialEntitiesMsg',37,1),(19664,63119,63119,'OP_DoneLoadingEntityResourcesMsg',38,1),(19665,63119,63119,'OP_PredictionUpdateMsg',39,1),(19666,63119,63119,'OP_UpdatePositionMsg',41,1),(19667,63119,63119,'OP_SetRemoteCmdsMsg',43,1),(19668,63119,63119,'OP_RemoteCmdMsg',44,1),(19669,63119,63119,'OP_GameWorldTimeMsg',45,1),(19670,63119,63119,'OP_MOTDMsg',46,1),(19671,63119,63119,'OP_ZoneMOTDMsg',47,1),(19672,63119,63119,'OP_AvatarCreatedMsg',48,1),(19673,63119,63119,'OP_AvatarDestroyedMsg',49,1),(19674,63119,63119,'OP_RequestCampMsg',52,1),(19675,63119,63119,'OP_CampStartedMsg',53,1),(19676,63119,63119,'OP_CampAbortedMsg',54,1),(19677,63119,63119,'OP_WhoQueryRequestMsg',55,1),(19678,63119,63119,'OP_WhoQueryReplyMsg',56,1),(19679,63119,63119,'OP_MonitorReplyMsg',57,1),(19680,63119,63119,'OP_MonitorCharacterListMsg',58,1),(19681,63119,63119,'OP_MonitorCharacterListRequestMsg',59,1),(19682,63119,63119,'OP_ClientCmdMsg',60,1),(19683,63119,63119,'OP_DispatchESMsg',61,1),(19684,63119,63119,'OP_DispatchClientCmdMsg',62,1),(19685,63119,63119,'OP_UpdateTargetMsg',63,1),(19686,63119,63119,'OP_UpdateTargetLocMsg',64,1),(19687,63119,63119,'OP_UpdateCharacterSheetMsg',65,1),(19688,63119,63119,'OP_CharacterPet',66,1),(19689,63119,63119,'OP_CharacterMerc',67,1),(19690,63119,63119,'OP_UpdateSpellBookMsg',68,1),(19691,63119,63119,'OP_UpdateInventoryMsg',70,1),(19692,63119,63119,'OP_AfterInvSpellUpdate',71,1),(19693,63119,63119,'OP_UpdateRecipeBookMsg',72,1),(19694,63119,63119,'OP_RequestRecipeDetailsMsg',73,1),(19695,63119,63119,'OP_RecipeDetailsMsg',74,1),(19696,63119,63119,'OP_UpdateSkillBookMsg',75,1),(19697,63119,63119,'OP_UpdateSkillsMsg',76,1),(19698,63119,63119,'OP_UpdateOpportunityMsg',77,1),(19699,63119,63119,'OP_ChangeZoneMsg',79,1),(19700,63119,63119,'OP_ClientTeleportRequestMsg',80,1),(19701,63119,63119,'OP_TeleportWithinZoneMsg',81,1),(19702,63119,63119,'OP_TeleportWithinZoneNoReloadMsg',82,1),(19703,63119,63119,'OP_MigrateClientToZoneRequestMsg',83,1),(19704,63119,63119,'OP_MigrateClientToZoneReplyMsg',84,1),(19705,63119,63119,'OP_ReadyToZoneMsg',86,1),(19706,63119,63119,'OP_RemoveClientFromGroupMsg',87,1),(19707,63119,63119,'OP_RemoveGroupFromGroupMsg',88,1),(19708,63119,63119,'OP_MakeGroupLeaderMsg',89,1),(19709,63119,63119,'OP_GroupCreatedMsg',90,1),(19710,63119,63119,'OP_GroupDestroyedMsg',91,1),(19711,63119,63119,'OP_GroupMemberAddedMsg',92,1),(19712,63119,63119,'OP_GroupMemberRemovedMsg',93,1),(19713,63119,63119,'OP_GroupRemovedFromGroupMsg',94,1),(19714,63119,63119,'OP_GroupLeaderChangedMsg',95,1),(19715,63119,63119,'OP_GroupResendOOZDataMsg',96,1),(19716,63119,63119,'OP_GroupSettingsChangedMsg',97,1),(19717,63119,63119,'OP_OutOfZoneMemberDataMsg',98,1),(19718,63119,63119,'OP_SendLatestRequestMsg',99,1),(19719,63119,63119,'OP_ClearDataMsg',100,1),(19720,63119,63119,'OP_SetSocialMsg',101,1),(19721,63119,63119,'OP_ESStatusMsg',102,1),(19722,63119,63119,'OP_ESZoneInstanceStatusMsg',103,1),(19723,63119,63119,'OP_ZonesStatusRequestMsg',104,1),(19724,63119,63119,'OP_ZonesStatusMsg',105,1),(19725,63119,63119,'OP_ESWeatherRequestMsg',106,1),(19726,63119,63119,'OP_ESWeatherRequestEndMsg',107,1),(19727,63119,63119,'OP_DialogSelectMsg',111,1),(19728,63119,63119,'OP_DialogCloseMsg',112,1),(19729,63119,63119,'OP_RemoveSpellEffectMsg',113,1),(19730,63119,63119,'OP_RemoveConcentrationMsg',114,1),(19731,63119,63119,'OP_QuestJournalOpenMsg',115,1),(19732,63119,63119,'OP_QuestJournalInspectMsg',116,1),(19733,63119,63119,'OP_QuestJournalSetVisibleMsg',117,1),(19734,63119,63119,'OP_QuestJournalWaypointMsg',118,1),(19735,63119,63119,'OP_CreateGuildRequestMsg',121,1),(19736,63119,63119,'OP_CreateGuildReplyMsg',123,1),(19737,63119,63119,'OP_GuildsayMsg',124,1),(19738,63119,63119,'OP_FellowshipExpMsg',125,1),(19739,63119,63119,'OP_DeleteGuildMsg',126,1),(19740,63119,63119,'OP_GuildUpdateMsg',127,1),(19741,63119,63119,'OP_ConsignmentCloseStoreMsg',128,1),(19742,63119,63119,'OP_ConsignItemRequestMsg',129,1),(19743,63119,63119,'OP_ConsignItemResponseMsg',130,1),(19744,63119,63119,'OP_PurchaseConsignmentRequestMsg',131,1),(19745,63119,63119,'OP_LikeOption',139,1),(19746,63119,63119,'OP_PublishHouse',141,1),(19747,63119,63119,'OP_PlayerMadeInstancesScreen',142,1),(19748,63119,63119,'OP_PlayerMadeInstances',143,1),(19749,63119,63119,'OP_HouseDeletedRemotelyMsg',145,1),(19750,63119,63119,'OP_UpdateHouseDataMsg',146,1),(19751,63119,63119,'OP_UpdateHouseAccessDataMsg',147,1),(19752,63119,63119,'OP_PlayerHouseBaseScreenMsg',148,1),(19753,63119,63119,'OP_PlayerHousePurchaseScreenMsg',149,1),(19754,63119,63119,'OP_PlayerHouseAccessUpdateMsg',150,1),(19755,63119,63119,'OP_PlayerHouseDisplayStatusMsg',151,1),(19756,63119,63119,'OP_PlayerHouseCloseUIMsg',152,1),(19757,63119,63119,'OP_BuyPlayerHouseMsg',153,1),(19758,63119,63119,'OP_BuyPlayerHouseTintMsg',154,1),(19759,63119,63119,'OP_CollectAllHouseItemsMsg',155,1),(19760,63119,63119,'OP_RelinquishHouseMsg',156,1),(19761,63119,63119,'OP_EnterHouseMsg',157,1),(19762,63119,63119,'OP_ExitHouseMsg',158,1),(19763,63119,63119,'OP_HouseDefaultAccessSetMsg',159,1),(19764,63119,63119,'OP_HouseAccessSetMsg',160,1),(19765,63119,63119,'OP_HouseAccessRemoveMsg',161,1),(19766,63119,63119,'OP_PayHouseUpkeepMsg',162,1),(19767,63119,63119,'OP_MoveableObjectPlacementCriteri',163,1),(19768,63119,63119,'OP_EnterMoveObjectModeMsg',164,1),(19769,63119,63119,'OP_PositionMoveableObject',165,1),(19770,63119,63119,'OP_CancelMoveObjectModeMsg',166,1),(19771,63119,63119,'OP_ShaderCustomizationMsg',167,1),(19772,63119,63119,'OP_ReplaceableSubMeshesMsg',168,1),(19773,63119,63119,'OP_HouseCustomizationScreenMsg',169,1),(19774,63119,63119,'OP_CustomizationPurchaseRequestMs',170,1),(19775,63119,63119,'OP_CustomizationSetRequestMsg',171,1),(19776,63119,63119,'OP_CustomizationReplyMsg',172,1),(19777,63119,63119,'OP_TintWidgetsMsg',173,1),(19778,63119,63119,'OP_ExamineConsignmentRequestMsg',174,1),(19779,63119,63119,'OP_ExamineConsignmentResponseMsg',175,1),(19780,63119,63119,'OP_UISettingsResponseMsg',176,1),(19781,63119,63119,'OP_UIResetMsg',177,1),(19782,63119,63119,'OP_KeymapLoadMsg',178,1),(19783,63119,63119,'OP_KeymapNoneMsg',179,1),(19784,63119,63119,'OP_KeymapDataMsg',180,1),(19785,63119,63119,'OP_KeymapSaveMsg',181,1),(19786,63119,63119,'OP_DispatchSpellCmdMsg',182,1),(19787,63119,63119,'OP_EntityVerbsRequestMsg',183,1),(19788,63119,63119,'OP_EntityVerbsReplyMsg',184,1),(19789,63119,63119,'OP_EntityVerbsVerbMsg',185,1),(19790,63119,63119,'OP_ChatRelationshipUpdateMsg',187,1),(19791,63119,63119,'OP_LootItemsRequestMsg',188,1),(19792,63119,63119,'OP_StoppedLootingMsg',189,1),(19793,63119,63119,'OP_SitMsg',190,1),(19794,63119,63119,'OP_StandMsg',191,1),(19795,63119,63119,'OP_SatMsg',192,1),(19796,63119,63119,'OP_StoodMsg',193,1),(19797,63119,63119,'OP_ClearForTakeOffMsg',194,1),(19798,63119,63119,'OP_ReadyForTakeOffMsg',195,1),(19799,63119,63119,'OP_ShowIllusionsMsg',196,1),(19800,63119,63119,'OP_HideIllusionsMsg',197,1),(19801,63119,63119,'OP_ExamineItemRequestMsg',198,1),(19802,63119,63119,'OP_ReadBookPageMsg',199,1),(19803,63119,63119,'OP_DefaultGroupOptionsRequestMsg',200,1),(19804,63119,63119,'OP_DefaultGroupOptionsMsg',201,1),(19805,63119,63119,'OP_GroupOptionsMsg',202,1),(19806,63119,63119,'OP_DisplayGroupOptionsScreenMsg',203,1),(19807,63119,63119,'OP_PetOptions',204,1),(19808,63119,63119,'OP_DisplayInnVisitScreenMsg',205,1),(19809,63119,63119,'OP_DumpSchedulerMsg',206,1),(19810,63119,63119,'OP_LSCheckAcctLockMsg',207,1),(19811,63119,63119,'OP_WSAcctLockStatusMsg',208,1),(19812,63119,63119,'OP_RequestHelpRepathMsg',209,1),(19813,63119,63119,'OP_RequestTargetLocMsg',210,1),(19814,63119,63119,'OP_UpdateMotdMsg',211,1),(19815,63119,63119,'OP_DestUpdateReq',213,1),(19816,63119,63119,'OP_PerformPlayerKnockbackMsg',216,1),(19817,63119,63119,'OP_PerformCameraShakeMsg',217,1),(19818,63119,63119,'OP_PopulateSkillMapsMsg',218,1),(19819,63119,63119,'OP_CancelledFeignMsg',219,1),(19820,63119,63119,'OP_SysClient',221,1),(19821,63119,63119,'OP_ShowCreateFromRecipeUIMsg',222,1),(19822,63119,63119,'OP_CancelCreateFromRecipeMsg',223,1),(19823,63119,63119,'OP_BeginItemCreationMsg',224,1),(19824,63119,63119,'OP_StopItemCreationMsg',225,1),(19825,63119,63119,'OP_ShowItemCreationProcessUIMsg',226,1),(19826,63119,63119,'OP_UpdateItemCreationProcessUIMsg',227,1),(19827,63119,63119,'OP_DisplayTSEventReactionMsg',228,1),(19828,63119,63119,'OP_ShowRecipeBookMsg',229,1),(19829,63119,63119,'OP_KnowledgebaseRequestMsg',230,1),(19830,63119,63119,'OP_KnowledgebaseResponseMsg',231,1),(19831,63119,63119,'OP_CSTicketHeaderRequestMsg',232,1),(19832,63119,63119,'OP_CSTicketInfoMsg',233,1),(19833,63119,63119,'OP_CSTicketCommentRequestMsg',234,1),(19834,63119,63119,'OP_CSTicketCommentResponseMsg',235,1),(19835,63119,63119,'OP_CSTicketCreateMsg',236,1),(19836,63119,63119,'OP_CSTicketAddCommentMsg',237,1),(19837,63119,63119,'OP_CSTicketDeleteMsg',238,1),(19838,63119,63119,'OP_CSTicketChangeNotificationMsg',239,1),(19839,63119,63119,'OP_WorldDataUpdateMsg',240,1),(19840,63119,63119,'OP_KnownLanguagesMsg',242,1),(19841,63119,63119,'OP_LsRequestClientCrashLogMsg',243,1),(19842,63119,63119,'OP_LsClientBaselogReplyMsg',244,1),(19843,63119,63119,'OP_LsClientCrashlogReplyMsg',245,1),(19844,63119,63119,'OP_LsClientAlertlogReplyMsg',246,1),(19845,63119,63119,'OP_LsClientVerifylogReplyMsg',247,1),(19846,63119,63119,'OP_ClientTeleportToLocationMsg',248,1),(19847,63119,63119,'OP_UpdateClientPredFlagsMsg',249,1),(19848,63119,63119,'OP_ChangeServerControlFlagMsg',250,1),(19849,63119,63119,'OP_CSToolsRequestMsg',251,1),(19850,63119,63119,'OP_CSToolsResponseMsg',252,1),(19851,63119,63119,'OP_AddSocialStructureStandingMsg',253,1),(19852,63119,63119,'OP_CreateBoatTransportsMsg',254,1),(19853,63119,63119,'OP_PositionBoatTransportMsg',255,1),(19854,63119,63119,'OP_MigrateBoatTransportMsg',256,1),(19855,63119,63119,'OP_MigrateBoatTransportReplyMsg',257,1),(19856,63119,63119,'OP_DisplayDebugNLLPointsMsg',258,1),(19857,63119,63119,'OP_ExamineInfoRequestMsg',259,1),(19858,63119,63119,'OP_QuickbarInitMsg',260,1),(19859,63119,63119,'OP_QuickbarUpdateMsg',261,1),(19860,63119,63119,'OP_MacroInitMsg',262,1),(19861,63119,63119,'OP_MacroUpdateMsg',263,1),(19862,63119,63119,'OP_QuestionnaireMsg',264,1),(19863,63119,63119,'OP_LevelChangedMsg',265,1),(19864,63119,63119,'OP_SpellGainedMsg',266,1),(19865,63119,63119,'OP_EncounterBrokenMsg',267,1),(19866,63119,63119,'OP_OnscreenMsgMsg',268,1),(19867,63119,63119,'OP_DisplayWarningMsg',269,1),(19868,63119,63119,'OP_ModifyGuildMsg',270,1),(19869,63119,63119,'OP_GuildEventMsg',271,1),(19870,63119,63119,'OP_GuildEventAddMsg',272,1),(19871,63119,63119,'OP_GuildEventActionMsg',273,1),(19872,63119,63119,'OP_GuildEventListMsg',274,1),(19873,63119,63119,'OP_RequestGuildEventDetailsMsg',275,1),(19874,63119,63119,'OP_GuildEventDetailsMsg',276,1),(19875,63119,63119,'OP_RequestGuildInfoMsg',277,1),(19876,63119,63119,'OP_GuildBankActionMsg',278,1),(19877,63119,63119,'OP_GuildBankActionResponseMsg',279,1),(19878,63119,63119,'OP_GuildBankItemDetailsRequestMsg',280,1),(19879,63119,63119,'OP_GuildBankItemDetailsResponseMs',281,1),(19880,63119,63119,'OP_GuildBankUpdateMsg',282,1),(19881,63119,63119,'OP_GuildBankEventListMsg',283,1),(19882,63119,63119,'OP_RequestGuildBankEventDetailsMs',284,1),(19883,63119,63119,'OP_RewardPackMsg',285,1),(19884,63119,63119,'OP_RenameGuildMsg',286,1),(19885,63119,63119,'OP_ZoneToFriendRequestMsg',287,1),(19886,63119,63119,'OP_ZoneToFriendReplyMsg',288,1),(19887,63119,63119,'OP_ChatCreateChannelMsg',289,1),(19888,63119,63119,'OP_ChatJoinChannelMsg',290,1),(19889,63119,63119,'OP_ChatWhoChannelMsg',291,1),(19890,63119,63119,'OP_ChatLeaveChannelMsg',292,1),(19891,63119,63119,'OP_ChatTellChannelMsg',293,1),(19892,63119,63119,'OP_ChatTellUserMsg',294,1),(19893,63119,63119,'OP_ChatToggleFriendMsg',295,1),(19894,63119,63119,'OP_BrokerAddBag',296,1),(19895,63119,63119,'OP_BrokerRemoveBag',297,1),(19896,63119,63119,'OP_ChatToggleIgnoreMsg',298,1),(19897,63119,63119,'OP_ChatSendFriendsMsg',299,1),(19898,63119,63119,'OP_ChatSendIgnoresMsg',300,1),(19899,63119,63119,'OP_QuestReward',324,1),(19900,63119,63119,'OP_ChatFiltersMsg',338,1),(19901,63119,63119,'OP_MailGetMessageMsg',342,1),(19902,63119,63119,'OP_MailSendMessageMsg',343,1),(19903,63119,63119,'OP_MailDeleteMessageMsg',344,1),(19904,63119,63119,'OP_MailGetHeadersReplyMsg',345,1),(19905,63119,63119,'OP_MailGetMessageReplyMsg',346,1),(19906,63119,63119,'OP_MailSendMessageReplyMsg',347,1),(19907,63119,63119,'OP_MailCommitSendMessageMsg',348,1),(19908,63119,63119,'OP_MailSendSystemMessageMsg',349,1),(19909,63119,63119,'OP_MailRemoveAttachFromMailMsg',350,1),(19910,63119,63119,'OP_WaypointRequestMsg',352,1),(19911,63119,63119,'OP_WaypointReplyMsg',353,1),(19912,63119,63119,'OP_WaypointSelectMsg',354,1),(19913,63119,63119,'OP_WaypointUpdateMsg',355,1),(19914,63119,63119,'OP_CharNameChangedMsg',356,1),(19915,63119,63119,'OP_ShowZoneTeleporterDestinations',357,1),(19916,63119,63119,'OP_SelectZoneTeleporterDestinatio',358,1),(19917,63119,63119,'OP_ReloadLocalizedTxtMsg',359,1),(19918,63119,63119,'OP_RequestGuildMembershipMsg',360,1),(19919,63119,63119,'OP_GuildMembershipResponseMsg',361,1),(19920,63119,63119,'OP_LeaveGuildNotifyMsg',362,1),(19921,63119,63119,'OP_JoinGuildNotifyMsg',363,1),(19922,63119,63119,'OP_AvatarUpdateMsg',364,1),(19923,63119,63119,'OP_BioUpdateMsg',366,1),(19924,63119,63119,'OP_InspectPlayerMsg',367,1),(19925,63119,63119,'OP_WSServerLockMsg',368,1),(19926,63119,63119,'OP_LSServerLockMsg',369,1),(19927,63119,63119,'OP_WSServerHideMsg',370,1),(19928,63119,63119,'OP_CsCategoryRequestMsg',371,1),(19929,63119,63119,'OP_CsCategoryResponseMsg',372,1),(19930,63119,63119,'OP_KnowledgeWindowSlotMappingMsg',373,1),(19931,63119,63119,'OP_AFKUpdateMsg',374,1),(19932,63119,63119,'OP_AnonUpdateMsg',375,1),(19933,63119,63119,'OP_UpdateActivePublicZonesMsg',376,1),(19934,63119,63119,'OP_UnknownNpcMsg',377,1),(19935,63119,63119,'OP_PromoFlagsDetailsMsg',378,1),(19936,63119,63119,'OP_ConsignViewCreateMsg',379,1),(19937,63119,63119,'OP_ConsignViewGetPageMsg',380,1),(19938,63119,63119,'OP_ConsignViewReleaseMsg',381,1),(19939,63119,63119,'OP_ConsignRemoveItemsMsg',382,1),(19940,63119,63119,'OP_UpdateDebugRadiiMsg',383,1),(19941,63119,63119,'OP_ReportMsg',384,1),(19942,63119,63119,'OP_UpdateRaidMsg',385,1),(19943,63119,63119,'OP_ConsignViewSortMsg',387,1),(19944,63119,63119,'OP_TitleUpdateMsg',388,1),(19945,63119,63119,'OP_ClientFellMsg',389,1),(19946,63119,63119,'OP_ClientInDeathRegionMsg',390,1),(19947,63119,63119,'OP_CampClientMsg',391,1),(19948,63119,63119,'OP_CSToolAccessResponseMsg',392,1),(19949,63119,63119,'OP_UpdateGroupMemberDataMsg',392,1),(19950,63119,63119,'OP_TrackingUpdateMsg',393,1),(19951,63119,63119,'OP_BeginTrackingMsg',394,1),(19952,63119,63119,'OP_StopTrackingMsg',395,1),(19953,63119,63119,'OP_GetAvatarAccessRequestForCSToo',397,1),(19954,63119,63119,'OP_AdvancementRequestMsg',398,1),(19955,63119,63119,'OP_MapFogDataInitMsg',399,1),(19956,63119,63119,'OP_MapFogDataUpdateMsg',400,1),(19957,63119,63119,'OP_CloseGroupInviteWindowMsg',401,1),(19958,63119,63119,'OP_WorldPingMsg',404,1),(19959,63119,63119,'OP_MoveLogUpdateMsg',405,1),(19960,63119,63119,'OP_OfferQuestMsg',406,1),(19961,63119,63119,'OP_WorldShutdownUpdateMsg',408,1),(19962,63119,63119,'OP_DisplayMailScreenMsg',409,1),(19963,63119,63119,'OP_ClientIdleBeginMsg',410,1),(19964,63119,63119,'OP_ClientIdleEndMsg',411,1),(19965,63119,63119,'OP_PurchaseConsignmentLoreCheckRe',412,1),(19966,63119,63119,'OP_NotifyApprenticeStoppedMentori',413,1),(19967,63119,63119,'OP_CorruptedClientMsg',414,1),(19968,63119,63119,'OP_WorldDataChangeMsg',415,1),(19969,63119,63119,'OP_MailEventNotificationMsg',416,1),(19970,63119,63119,'OP_RestartZoneMsg',417,1),(19971,63119,63119,'OP_FlightPathsMsg',418,1),(19972,63119,63119,'OP_CharacterLinkdeadMsg',419,1),(19973,63119,63119,'OP_CharTransferStartRequestMsg',420,1),(19974,63119,63119,'OP_CharTransferStartReplyMsg',421,1),(19975,63119,63119,'OP_CharTransferRequestMsg',422,1),(19976,63119,63119,'OP_CharTransferReplyMsg',423,1),(19977,63119,63119,'OP_CharTransferRollbackRequestMsg',424,1),(19978,63119,63119,'OP_CharTransferCommitRequestMsg',425,1),(19979,63119,63119,'OP_CharTransferRollbackReplyMsg',426,1),(19980,63119,63119,'OP_CharTransferCommitReplyMsg',427,1),(19981,63119,63119,'OP_GetCharacterSerializedRequestM',428,1),(19982,63119,63119,'OP_GetCharacterSerializedReplyMsg',429,1),(19983,63119,63119,'OP_CreateCharFromCBBRequestMsg',430,1),(19984,63119,63119,'OP_CreateCharFromCBBReplyMsg',431,1),(19985,63119,63119,'OP_HousingDataChangedMsg',432,1),(19986,63119,63119,'OP_HousingRestoreMsg',433,1),(19987,63119,63119,'OP_AuctionItem',434,1),(19988,63119,63119,'OP_AuctionItemReply',435,1),(19989,63119,63119,'OP_AuctionCoin',436,1),(19990,63119,63119,'OP_AuctionCoinReply',437,1),(19991,63119,63119,'OP_AuctionCharacter',438,1),(19992,63119,63119,'OP_AuctionCharacterReply',439,1),(19993,63119,63119,'OP_AuctionCommitMsg',440,1),(19994,63119,63119,'OP_AuctionAbortMsg',441,1),(19995,63119,63119,'OP_CharTransferValidateRequestMsg',442,1),(19996,63119,63119,'OP_CharTransferValidateReplyMsg',443,1),(19997,63119,63119,'OP_RaceRestrictionMsg',444,1),(19998,63119,63119,'OP_SetInstanceDisplayNameMsg',445,1),(19999,63119,63119,'OP_GetAuctionAssetIDMsg',446,1),(20000,63119,63119,'OP_GetAuctionAssetIDReplyMsg',447,1),(20001,63119,63119,'OP_ResendWorldChannelsMsg',448,1),(20002,63119,63119,'OP_DisplayExchangeScreenMsg',449,1),(20003,63119,63119,'OP_ArenaGameTypesMsg',450,1),(20004,63119,63119,'OP_AuditAuctionEventMsg',451,1),(20005,63119,63119,'OP_InviteRequestMsg',452,1),(20006,63119,63119,'OP_InviteResponseMsg',453,1),(20007,63119,63119,'OP_InviteTargetResponseMsg',454,1),(20008,63119,63119,'OP_InspectPlayerRequestMsg',455,1),(20009,63119,63119,'OP_DispatchMsg',456,1),(20010,63119,63119,'OP_DisplayEventMsg',457,1),(20011,63119,63119,'OP_PrePossessionMsg',458,1),(20012,63119,63119,'OP_PostPossessionMsg',459,1),(20013,63119,63119,'OP_ArenaCreate',461,1),(20014,63119,63119,'OP_ArenaList',462,1),(20015,63119,63119,'OP_ArenaWindow',470,1),(20016,63119,63119,'OP_HouseItemsList',489,1),(20017,63119,63119,'OP_CurrentPet',490,1),(20018,63119,63119,'OP_EarlyLandingRequestMsg',491,1),(20019,63119,63119,'OP_AdventureList',493,1),(20020,63119,63119,'OP_CancelSpellCast',494,1),(20021,63119,63119,'OP_ClearForLandingMsg',496,1),(20022,63119,63119,'OP_UpdateTitleCmd',499,1),(20023,63119,63119,'OP_AttackAllowed',505,1),(20024,63119,63119,'OP_AttackNotAllowed',506,1),(20025,63119,63119,'OP_BagOptions',507,1),(20026,63119,63119,'OP_LFGGroupSearch',509,1),(20027,63119,63119,'OP_CharacterHousingList',512,1),(20028,63119,63119,'OP_DressingRoom',515,1),(20029,63119,63119,'OP_PlayLon',516,1),(20030,63119,63119,'OP_SkillInfoRequest',518,1),(20031,63119,63119,'OP_SkillInfoResponse',519,1),(20032,63119,63119,'OP_LFGUpdateMsg',522,1),(20033,63119,63119,'OP_BadLanguageFilter',523,1),(20034,63119,63119,'OP_VoiceChatChannel',524,1),(20035,63119,63119,'OP_MapRequest',525,1),(20036,63119,63119,'OP_MarketFundsUpdate',530,1),(20037,63119,63119,'OP_UIEvent',531,1),(20038,63119,63119,'OP_MarketAddFundsRequest',532,1),(20039,63119,63119,'OP_MarketAddFundsReply',533,1),(20040,63119,63119,'OP_MarketPurchase',535,1),(20041,63119,63119,'OP_MarketPlacePrices',536,1),(20042,63119,63119,'OP_MarketPlaceItems',543,1),(20043,63119,63119,'OP_RecipeBook',544,1),(20044,63119,63119,'OP_CreateCharacterDungeon',551,1),(20045,63119,63119,'OP_DungeonMakerEnter',552,1),(20046,63119,63119,'OP_DungeonMakerItemRequest',556,1),(20047,63119,63119,'OP_CharacterCreatedDungeons',557,1),(20048,63119,63119,'OP_DungeonMakerToolboxList',558,1),(20049,63119,63119,'OP_DungeonMakerUnknown',559,1),(20050,63119,63119,'OP_DungeonMakerUnknown1',560,1),(20051,63119,63119,'OP_PlayerPollPopup',562,1),(20052,63119,63119,'OP_PlayerPollAnswer',563,1),(20053,63119,63119,'OP_MentorPopup',564,1),(20054,63119,63119,'OP_LoadWelcomeWindow',566,1),(20055,63119,63119,'OP_OpenCharCust',568,1),(20056,63119,63119,'OP_SubmitCharCust',569,1),(20057,63119,63119,'OP_QueAllBgSolo',571,1),(20058,63119,63119,'OP_ZoneBgInstanceList',572,1),(20059,63119,63119,'OP_WorldTravelAvail',576,1),(20060,63119,63119,'OP_Launchpad',579,1),(20061,63119,63119,'OP_PaperdollImage',581,1),(20062,63119,63119,'OP_LoadCalendarEvents',582,1),(20063,63119,63119,'OP_VideoUploaded',583,1),(20064,63119,63119,'OP_SavageBarInitMsg',584,1),(20065,63119,63119,'OP_PetOptionsResponse',585,1),(20066,63119,63119,'OP_DungeonMakerItemResponse',586,1),(20067,63119,63119,'OP_Weakness',587,1),(20068,63119,63119,'OP_CharacterMounts',588,1),(20069,63119,63119,'OP_RecipeListUnknown',597,1),(20070,63119,63119,'OP_DailyObjectives',601,1),(20071,63119,63119,'OP_DeityAbilityWindow',621,1),(20072,63119,63119,'OP_EqBetaCopyRequest',637,1),(20073,63119,63119,'OP_SOEAllAccess',638,1),(20074,63119,63119,'OP_EqHearChatCmd',641,1),(20075,63119,63119,'OP_EqDisplayTextCmd',642,1),(20076,63119,63119,'OP_EqCreateGhostCmd',643,1),(20077,63119,63119,'OP_EqCreateWidgetCmd',644,1),(20078,63119,63119,'OP_EqCreateSignWidgetCmd',645,1),(20079,63119,63119,'OP_EqDestroyGhostCmd',646,1),(20080,63119,63119,'OP_EqUpdateGhostCmd',647,1),(20081,63119,63119,'OP_EqSetControlGhostCmd',648,1),(20082,63119,63119,'OP_EqSetPOVGhostCmd',649,1),(20083,63119,63119,'OP_EqHearCombatCmd',650,1),(20084,63119,63119,'OP_EqHearSpellCastCmd',651,1),(20085,63119,63119,'OP_EQHearProcCmd',652,1),(20086,63119,63119,'OP_EQHearResEffectCmd',653,1),(20087,63119,63119,'OP_EqHearSpellInterruptCmd',654,1),(20088,63119,63119,'OP_EqHearSpellFizzleCmd',655,1),(20089,63119,63119,'OP_EqHearConsiderCmd',656,1),(20090,63119,63119,'OP_EqUpdateSubClassesCmd',657,1),(20091,63119,63119,'OP_EqCreateListBoxCmd',658,1),(20092,63119,63119,'OP_EqSetDebugPathPointsCmd',659,1),(20093,63119,63119,'OP_EqCannedEmoteCmd',661,1),(20094,63119,63119,'OP_EqStateCmd',662,1),(20095,63119,63119,'OP_EqPlaySoundCmd',663,1),(20096,63119,63119,'OP_EqPlaySound3DCmd',664,1),(20097,63119,63119,'OP_EqPlayVoiceCmd',665,1),(20098,63119,63119,'OP_EqHearDrowningCmd',666,1),(20099,63119,63119,'OP_EqHearDeathCmd',667,1),(20100,63119,63119,'OP_EqGroupMemberRemovedCmd',668,1),(20101,63119,63119,'OP_EqHearChainEffectCmd',669,1),(20102,63119,63119,'OP_EqReceiveOfferCmd',670,1),(20103,63119,63119,'OP_EqInspectPCResultsCmd',671,1),(20104,63119,63119,'OP_EqDrawablePathGraphCmd',672,1),(20105,63119,63119,'OP_EqDialogOpenCmd',673,1),(20106,63119,63119,'OP_EqDialogCloseCmd',674,1),(20107,63119,63119,'OP_EqFactionUpdateCmd',675,1),(20108,63119,63119,'OP_EqCollectionUpdateCmd',676,1),(20109,63119,63119,'OP_EqCollectionFilterCmd',677,1),(20110,63119,63119,'OP_EqCollectionItemCmd',678,1),(20111,63119,63119,'OP_EqQuestJournalUpdateCmd',679,1),(20112,63119,63119,'OP_EqMentoring',680,1),(20113,63119,63119,'OP_EqQuestJournalReplyCmd',681,1),(20114,63119,63119,'OP_EqQuestGroupCmd',682,1),(20115,63119,63119,'OP_EqUpdateMerchantCmd',683,1),(20116,63119,63119,'OP_EqUpdateStoreCmd',684,1),(20117,63119,63119,'OP_EqUpdatePlayerTradeCmd',685,1),(20118,63119,63119,'OP_EqHelpPathCmd',686,1),(20119,63119,63119,'OP_EqHelpPathClearCmd',687,1),(20120,63119,63119,'OP_EqUpdateBankCmd',688,1),(20121,63119,63119,'OP_EqExamineInfoCmd',689,1),(20122,63119,63119,'OP_EqCloseWindowCmd',690,1),(20123,63119,63119,'OP_EqUpdateLootCmd',691,1),(20124,63119,63119,'OP_EqJunctionListCmd',692,1),(20125,63119,63119,'OP_EqShowDeathWindowCmd',693,1),(20126,63119,63119,'OP_EqDisplaySpellFailCmd',694,1),(20127,63119,63119,'OP_EqSpellCastStartCmd',695,1),(20128,63119,63119,'OP_EqSpellCastEndCmd',696,1),(20129,63119,63119,'OP_EqResurrectedCmd',697,1),(20130,63119,63119,'OP_EqChoiceWinCmd',698,1),(20131,63119,63119,'OP_EqSetDefaultVerbCmd',699,1),(20132,63119,63119,'OP_EqInstructionWindowCmd',700,1),(20133,63119,63119,'OP_EqInstructionWindowCloseCmd',701,1),(20134,63119,63119,'OP_EqInstructionWindowGoalCmd',702,1),(20135,63119,63119,'OP_EqInstructionWindowTaskCmd',703,1),(20136,63119,63119,'OP_EqEnableGameEventCmd',704,1),(20137,63119,63119,'OP_EqShowWindowCmd',705,1),(20138,63119,63119,'OP_EqEnableWindowCmd',706,1),(20139,63119,63119,'OP_EqFlashWindowCmd',707,1),(20140,63119,63119,'OP_EqHearPlayFlavorCmd',709,1),(20141,63119,63119,'OP_EqUpdateSignWidgetCmd',710,1),(20142,63119,63119,'OP_EqDebugPVDCmd',711,1),(20143,63119,63119,'OP_EqShowBookCmd',712,1),(20144,63119,63119,'OP_EqQuestionnaireCmd',713,1),(20145,63119,63119,'OP_EqGetProbsCmd',715,1),(20146,63119,63119,'OP_EqHearHealCmd',716,1),(20147,63119,63119,'OP_EqChatChannelUpdateCmd',717,1),(20148,63119,63119,'OP_EqWhoChannelQueryReplyCmd',718,1),(20149,63119,63119,'OP_EqAvailWorldChannelsCmd',719,1),(20150,63119,63119,'OP_EqUpdateTargetCmd',720,1),(20151,63119,63119,'OP_BrokerSellList',721,1),(20152,63119,63119,'OP_EqConsignmentItemsCmd',722,1),(20153,63119,63119,'OP_EqStartBrokerCmd',724,1),(20154,63119,63119,'OP_EqMapExplorationCmd',725,1),(20155,63119,63119,'OP_EqStoreLogCmd',726,1),(20156,63119,63119,'OP_EqSpellMoveToRangeAndRetryCmd',727,1),(20157,63119,63119,'OP_EqUpdatePlayerMailCmd',728,1),(20158,63119,63119,'OP_GuildStatusUpdate',731,1),(20159,63119,63119,'OP_EqArenaResultsCmd',732,1),(20160,63119,63119,'OP_EqGuildBankEventActionCmd',733,1),(20161,63119,63119,'OP_EqGuildBankExamineInfoCmd',734,1),(20162,63119,63119,'OP_EqHearSpellNoLandCmd',735,1),(20163,63119,63119,'OP_Lottery',736,1),(20164,63119,63119,'OP_GuildRecruitingMemberInfo',737,1),(20165,63119,63119,'OP_GuildRecruiting',738,1),(20166,63119,63119,'OP_GuildRecruitingDetails',739,1),(20167,63119,63119,'OP_GuildRecruitingImage',740,1),(20168,63119,63119,'OP_TradeskillList',741,1),(20169,63119,63119,'OP_CharRenamed',742,1),(20170,63119,63119,'OP_UseAdornment',752,1),(20171,63119,63119,'OP_ExpPurchWindow',758,1),(20172,63119,63119,'OP_PointOfInterest',762,1),(20173,63119,63119,'OP_PointOfInterest2',763,1),(20174,63119,63119,'OP_TraitsList',764,1),(20175,63119,63119,'OP_CustomizeHouseDisplay',767,1),(20176,63119,63119,'OP_VoiceChatServer',768,1),(20177,63119,63119,'OP_SupplyDepot',772,1),(20178,63119,63119,'OP_EQHearThreatCmd',773,1),(20179,63119,63119,'OP_RecipeList',774,1),(20180,63119,63119,'OP_Research',775,1),(20181,63119,63119,'OP_CharacterCurrency',776,1),(20182,63119,63119,'OP_CharacterAchievements',777,1),(20183,63119,63119,'OP_AchievementUpdateMsg',778,1),(20184,63119,63119,'OP_EQHearDispellCmd',779,1),(20185,63119,63119,'OP_JournalQuestStoryline',780,1),(20186,63119,63119,'OP_DungeonPlayAsAvatarList',781,1),(20187,63119,63119,'OP_DungeonPlayAsAvatarSelected',782,1),(20188,63119,63119,'OP_MercHireWindow',783,1),(20189,63119,63119,'OP_MercUnknown',784,1),(20190,63119,63119,'OP_Unknown',797,1),(20191,63119,63119,'OP_HeritageMsg',10023,1),(20192,63120,63135,'OP_AchievementUpdateMsg',780,1),(20193,63120,63135,'OP_AddSocialStructureStandingMsg',253,1),(20194,63120,63135,'OP_AdvancementRequestMsg',398,1),(20195,63120,63135,'OP_AdventureList',493,1),(20196,63120,63135,'OP_AFKUpdateMsg',374,1),(20197,63120,63135,'OP_AfterInvSpellUpdate',71,1),(20198,63120,63135,'OP_AllCharactersDescReplyMsg',10,1),(20199,63120,63135,'OP_AllCharactersDescRequestMsg',9,1),(20200,63120,63135,'OP_AllWSDescRequestMsg',7,1),(20201,63120,63135,'OP_AnonUpdateMsg',375,1),(20202,63120,63135,'OP_ArenaCreate',461,1),(20203,63120,63135,'OP_ArenaGameTypesMsg',450,1),(20204,63120,63135,'OP_ArenaList',462,1),(20205,63120,63135,'OP_ArenaWindow',470,1),(20206,63120,63135,'OP_AttackAllowed',505,1),(20207,63120,63135,'OP_AttackNotAllowed',506,1),(20208,63120,63135,'OP_AuctionAbortMsg',441,1),(20209,63120,63135,'OP_AuctionCharacter',438,1),(20210,63120,63135,'OP_AuctionCharacterReply',439,1),(20211,63120,63135,'OP_AuctionCoin',436,1),(20212,63120,63135,'OP_AuctionCoinReply',437,1),(20213,63120,63135,'OP_AuctionCommitMsg',440,1),(20214,63120,63135,'OP_AuctionItem',434,1),(20215,63120,63135,'OP_AuctionItemReply',435,1),(20216,63120,63135,'OP_AuditAuctionEventMsg',451,1),(20217,63120,63135,'OP_AvatarCreatedMsg',48,1),(20218,63120,63135,'OP_AvatarDestroyedMsg',49,1),(20219,63120,63135,'OP_AvatarUpdateMsg',364,1),(20220,63120,63135,'OP_BadLanguageFilter',523,1),(20221,63120,63135,'OP_BagOptions',507,1),(20222,63120,63135,'OP_BeginItemCreationMsg',224,1),(20223,63120,63135,'OP_BeginTrackingMsg',394,1),(20224,63120,63135,'OP_BioUpdateMsg',366,1),(20225,63120,63135,'OP_BrokerAddBag',296,1),(20226,63120,63135,'OP_BrokerRemoveBag',297,1),(20227,63120,63135,'OP_BrokerSellList',723,1),(20228,63120,63135,'OP_BuyPlayerHouseMsg',153,1),(20229,63120,63135,'OP_BuyPlayerHouseTintMsg',154,1),(20230,63120,63135,'OP_CampAbortedMsg',54,1),(20231,63120,63135,'OP_CampClientMsg',391,1),(20232,63120,63135,'OP_CampStartedMsg',53,1),(20233,63120,63135,'OP_CancelCreateFromRecipeMsg',223,1),(20234,63120,63135,'OP_CancelledFeignMsg',219,1),(20235,63120,63135,'OP_CancelMoveObjectModeMsg',166,1),(20236,63120,63135,'OP_CancelSpellCast',494,1),(20237,63120,63135,'OP_ChangeServerControlFlagMsg',250,1),(20238,63120,63135,'OP_ChangeZoneMsg',79,1),(20239,63120,63135,'OP_CharacterAchievements',779,1),(20240,63120,63135,'OP_CharacterCreatedDungeons',557,1),(20241,63120,63135,'OP_CharacterCurrency',778,1),(20242,63120,63135,'OP_CharacterHousingList',512,1),(20243,63120,63135,'OP_CharacterLinkdeadMsg',419,1),(20244,63120,63135,'OP_CharacterMerc',67,1),(20245,63120,63135,'OP_CharacterMounts',588,1),(20246,63120,63135,'OP_CharacterPet',66,1),(20247,63120,63135,'OP_CharNameChangedMsg',356,1),(20248,63120,63135,'OP_CharRenamed',744,1),(20249,63120,63135,'OP_CharTransferCommitReplyMsg',427,1),(20250,63120,63135,'OP_CharTransferCommitRequestMsg',425,1),(20251,63120,63135,'OP_CharTransferReplyMsg',423,1),(20252,63120,63135,'OP_CharTransferRequestMsg',422,1),(20253,63120,63135,'OP_CharTransferRollbackReplyMsg',426,1),(20254,63120,63135,'OP_CharTransferRollbackRequestMsg',424,1),(20255,63120,63135,'OP_CharTransferStartReplyMsg',421,1),(20256,63120,63135,'OP_CharTransferStartRequestMsg',420,1),(20257,63120,63135,'OP_CharTransferValidateReplyMsg',443,1),(20258,63120,63135,'OP_CharTransferValidateRequestMsg',442,1),(20259,63120,63135,'OP_ChatCreateChannelMsg',289,1),(20260,63120,63135,'OP_ChatFiltersMsg',338,1),(20261,63120,63135,'OP_ChatJoinChannelMsg',290,1),(20262,63120,63135,'OP_ChatLeaveChannelMsg',292,1),(20263,63120,63135,'OP_ChatRelationshipUpdateMsg',187,1),(20264,63120,63135,'OP_ChatSendFriendsMsg',299,1),(20265,63120,63135,'OP_ChatSendIgnoresMsg',300,1),(20266,63120,63135,'OP_ChatTellChannelMsg',293,1),(20267,63120,63135,'OP_ChatTellUserMsg',294,1),(20268,63120,63135,'OP_ChatToggleFriendMsg',295,1),(20269,63120,63135,'OP_ChatToggleIgnoreMsg',298,1),(20270,63120,63135,'OP_ChatWhoChannelMsg',291,1),(20271,63120,63135,'OP_ClearDataMsg',100,1),(20272,63120,63135,'OP_ClearForLandingMsg',496,1),(20273,63120,63135,'OP_ClearForTakeOffMsg',194,1),(20274,63120,63135,'OP_ClientCmdMsg',60,1),(20275,63120,63135,'OP_ClientFellMsg',389,1),(20276,63120,63135,'OP_ClientIdleBeginMsg',410,1),(20277,63120,63135,'OP_ClientIdleEndMsg',411,1),(20278,63120,63135,'OP_ClientInDeathRegionMsg',390,1),(20279,63120,63135,'OP_ClientTeleportRequestMsg',80,1),(20280,63120,63135,'OP_ClientTeleportToLocationMsg',248,1),(20281,63120,63135,'OP_CloseGroupInviteWindowMsg',401,1),(20282,63120,63135,'OP_CollectAllHouseItemsMsg',155,1),(20283,63120,63135,'OP_ConsignItemRequestMsg',129,1),(20284,63120,63135,'OP_ConsignItemResponseMsg',130,1),(20285,63120,63135,'OP_ConsignmentCloseStoreMsg',128,1),(20286,63120,63135,'OP_ConsignRemoveItemsMsg',382,1),(20287,63120,63135,'OP_ConsignViewCreateMsg',379,1),(20288,63120,63135,'OP_ConsignViewGetPageMsg',380,1),(20289,63120,63135,'OP_ConsignViewReleaseMsg',381,1),(20290,63120,63135,'OP_ConsignViewSortMsg',387,1),(20291,63120,63135,'OP_CorruptedClientMsg',414,1),(20292,63120,63135,'OP_CreateBoatTransportsMsg',254,1),(20293,63120,63135,'OP_CreateCharacterDungeon',551,1),(20294,63120,63135,'OP_CreateCharacterReplyMsg',12,1),(20295,63120,63135,'OP_CreateCharacterRequestMsg',11,1),(20296,63120,63135,'OP_CreateCharFromCBBReplyMsg',431,1),(20297,63120,63135,'OP_CreateCharFromCBBRequestMsg',430,1),(20298,63120,63135,'OP_CreateGuildReplyMsg',123,1),(20299,63120,63135,'OP_CreateGuildRequestMsg',121,1),(20300,63120,63135,'OP_CreateZoneInstanceMsg',31,1),(20301,63120,63135,'OP_CsCategoryRequestMsg',371,1),(20302,63120,63135,'OP_CsCategoryResponseMsg',372,1),(20303,63120,63135,'OP_CSTicketAddCommentMsg',237,1),(20304,63120,63135,'OP_CSTicketChangeNotificationMsg',239,1),(20305,63120,63135,'OP_CSTicketCommentRequestMsg',234,1),(20306,63120,63135,'OP_CSTicketCommentResponseMsg',235,1),(20307,63120,63135,'OP_CSTicketCreateMsg',236,1),(20308,63120,63135,'OP_CSTicketDeleteMsg',238,1),(20309,63120,63135,'OP_CSTicketHeaderRequestMsg',232,1),(20310,63120,63135,'OP_CSTicketInfoMsg',233,1),(20311,63120,63135,'OP_CSToolAccessResponseMsg',392,1),(20312,63120,63135,'OP_CSToolsRequestMsg',251,1),(20313,63120,63135,'OP_CSToolsResponseMsg',252,1),(20314,63120,63135,'OP_CurrentPet',490,1),(20315,63120,63135,'OP_CustomizationPurchaseRequestMs',170,1),(20316,63120,63135,'OP_CustomizationReplyMsg',172,1),(20317,63120,63135,'OP_CustomizationSetRequestMsg',171,1),(20318,63120,63135,'OP_CustomizeHouseDisplay',769,1),(20319,63120,63135,'OP_DailyObjectives',601,1),(20320,63120,63135,'OP_DefaultGroupOptionsMsg',201,1),(20321,63120,63135,'OP_DefaultGroupOptionsRequestMsg',200,1),(20322,63120,63135,'OP_DeityAbilityWindow',621,1),(20323,63120,63135,'OP_DeleteCharacterReplyMsg',19,1),(20324,63120,63135,'OP_DeleteCharacterRequestMsg',18,1),(20325,63120,63135,'OP_DeleteGuildMsg',126,1),(20326,63120,63135,'OP_DestUpdateReq',213,1),(20327,63120,63135,'OP_DialogCloseMsg',112,1),(20328,63120,63135,'OP_DialogSelectMsg',111,1),(20329,63120,63135,'OP_DispatchClientCmdMsg',62,1),(20330,63120,63135,'OP_DispatchESMsg',61,1),(20331,63120,63135,'OP_DispatchMsg',456,1),(20332,63120,63135,'OP_DispatchSpellCmdMsg',182,1),(20333,63120,63135,'OP_DisplayDebugNLLPointsMsg',258,1),(20334,63120,63135,'OP_DisplayEventMsg',457,1),(20335,63120,63135,'OP_DisplayExchangeScreenMsg',449,1),(20336,63120,63135,'OP_DisplayGroupOptionsScreenMsg',203,1),(20337,63120,63135,'OP_DisplayInnVisitScreenMsg',205,1),(20338,63120,63135,'OP_DisplayMailScreenMsg',409,1),(20339,63120,63135,'OP_DisplayTSEventReactionMsg',228,1),(20340,63120,63135,'OP_DisplayWarningMsg',269,1),(20341,63120,63135,'OP_DoneLoadingEntityResourcesMsg',38,1),(20342,63120,63135,'OP_DoneLoadingZoneResourcesMsg',36,1),(20343,63120,63135,'OP_DoneSendingInitialEntitiesMsg',37,1),(20344,63120,63135,'OP_DressingRoom',515,1),(20345,63120,63135,'OP_DumpSchedulerMsg',206,1),(20346,63120,63135,'OP_DungeonMakerEnter',552,1),(20347,63120,63135,'OP_DungeonMakerItemRequest',556,1),(20348,63120,63135,'OP_DungeonMakerItemResponse',586,1),(20349,63120,63135,'OP_DungeonMakerToolboxList',558,1),(20350,63120,63135,'OP_DungeonMakerUnknown',559,1),(20351,63120,63135,'OP_DungeonMakerUnknown1',560,1),(20352,63120,63135,'OP_DungeonPlayAsAvatarList',783,1),(20353,63120,63135,'OP_DungeonPlayAsAvatarSelected',784,1),(20354,63120,63135,'OP_EarlyLandingRequestMsg',491,1),(20355,63120,63135,'OP_EncounterBrokenMsg',267,1),(20356,63120,63135,'OP_EnterHouseMsg',157,1),(20357,63120,63135,'OP_EnterMoveObjectModeMsg',164,1),(20358,63120,63135,'OP_EntityVerbsReplyMsg',184,1),(20359,63120,63135,'OP_EntityVerbsRequestMsg',183,1),(20360,63120,63135,'OP_EntityVerbsVerbMsg',185,1),(20361,63120,63135,'OP_EqArenaResultsCmd',734,1),(20362,63120,63135,'OP_EqAvailWorldChannelsCmd',721,1),(20363,63120,63135,'OP_EqBetaCopyRequest',639,1),(20364,63120,63135,'OP_EqCannedEmoteCmd',663,1),(20365,63120,63135,'OP_EqChatChannelUpdateCmd',719,1),(20366,63120,63135,'OP_EqChoiceWinCmd',700,1),(20367,63120,63135,'OP_EqCloseWindowCmd',692,1),(20368,63120,63135,'OP_EqCollectionFilterCmd',679,1),(20369,63120,63135,'OP_EqCollectionItemCmd',680,1),(20370,63120,63135,'OP_EqCollectionUpdateCmd',678,1),(20371,63120,63135,'OP_EqConsignmentItemsCmd',724,1),(20372,63120,63135,'OP_EqCreateGhostCmd',645,1),(20373,63120,63135,'OP_EqCreateListBoxCmd',660,1),(20374,63120,63135,'OP_EqCreateSignWidgetCmd',647,1),(20375,63120,63135,'OP_EqCreateWidgetCmd',646,1),(20376,63120,63135,'OP_EqDebugPVDCmd',713,1),(20377,63120,63135,'OP_EqDestroyGhostCmd',648,1),(20378,63120,63135,'OP_EqDialogCloseCmd',676,1),(20379,63120,63135,'OP_EqDialogOpenCmd',675,1),(20380,63120,63135,'OP_EqDisplaySpellFailCmd',696,1),(20381,63120,63135,'OP_EqDisplayTextCmd',644,1),(20382,63120,63135,'OP_EqDrawablePathGraphCmd',674,1),(20383,63120,63135,'OP_EqEnableGameEventCmd',706,1),(20384,63120,63135,'OP_EqEnableWindowCmd',708,1),(20385,63120,63135,'OP_EqExamineInfoCmd',691,1),(20386,63120,63135,'OP_EqFactionUpdateCmd',677,1),(20387,63120,63135,'OP_EqFlashWindowCmd',709,1),(20388,63120,63135,'OP_EqGetProbsCmd',717,1),(20389,63120,63135,'OP_EqGroupMemberRemovedCmd',670,1),(20390,63120,63135,'OP_EqGuildBankEventActionCmd',735,1),(20391,63120,63135,'OP_EqGuildBankExamineInfoCmd',736,1),(20392,63120,63135,'OP_EqHearChainEffectCmd',671,1),(20393,63120,63135,'OP_EqHearChatCmd',643,1),(20394,63120,63135,'OP_EqHearCombatCmd',652,1),(20395,63120,63135,'OP_EqHearConsiderCmd',658,1),(20396,63120,63135,'OP_EqHearDeathCmd',669,1),(20397,63120,63135,'OP_EQHearDispellCmd',781,1),(20398,63120,63135,'OP_EqHearDrowningCmd',668,1),(20399,63120,63135,'OP_EqHearHealCmd',718,1),(20400,63120,63135,'OP_EqHearPlayFlavorCmd',711,1),(20401,63120,63135,'OP_EQHearProcCmd',654,1),(20402,63120,63135,'OP_EQHearResEffectCmd',655,1),(20403,63120,63135,'OP_EqHearSpellCastCmd',653,1),(20404,63120,63135,'OP_EqHearSpellFizzleCmd',657,1),(20405,63120,63135,'OP_EqHearSpellInterruptCmd',656,1),(20406,63120,63135,'OP_EqHearSpellNoLandCmd',737,1),(20407,63120,63135,'OP_EQHearThreatCmd',775,1),(20408,63120,63135,'OP_EqHelpPathClearCmd',689,1),(20409,63120,63135,'OP_EqHelpPathCmd',688,1),(20410,63120,63135,'OP_EqInspectPCResultsCmd',673,1),(20411,63120,63135,'OP_EqInstructionWindowCloseCmd',703,1),(20412,63120,63135,'OP_EqInstructionWindowCmd',702,1),(20413,63120,63135,'OP_EqInstructionWindowGoalCmd',704,1),(20414,63120,63135,'OP_EqInstructionWindowTaskCmd',705,1),(20415,63120,63135,'OP_EqJunctionListCmd',694,1),(20416,63120,63135,'OP_EqMapExplorationCmd',727,1),(20417,63120,63135,'OP_EqMentoring',682,1),(20418,63120,63135,'OP_EqPlaySound3DCmd',666,1),(20419,63120,63135,'OP_EqPlaySoundCmd',665,1),(20420,63120,63135,'OP_EqPlayVoiceCmd',667,1),(20421,63120,63135,'OP_EqQuestGroupCmd',684,1),(20422,63120,63135,'OP_EqQuestionnaireCmd',715,1),(20423,63120,63135,'OP_EqQuestJournalReplyCmd',683,1),(20424,63120,63135,'OP_EqQuestJournalUpdateCmd',681,1),(20425,63120,63135,'OP_EqReceiveOfferCmd',672,1),(20426,63120,63135,'OP_EqResurrectedCmd',699,1),(20427,63120,63135,'OP_EqSetControlGhostCmd',650,1),(20428,63120,63135,'OP_EqSetDebugPathPointsCmd',661,1),(20429,63120,63135,'OP_EqSetDefaultVerbCmd',701,1),(20430,63120,63135,'OP_EqSetPOVGhostCmd',651,1),(20431,63120,63135,'OP_EqShowBookCmd',714,1),(20432,63120,63135,'OP_EqShowDeathWindowCmd',695,1),(20433,63120,63135,'OP_EqShowWindowCmd',707,1),(20434,63120,63135,'OP_EqSpellCastEndCmd',698,1),(20435,63120,63135,'OP_EqSpellCastStartCmd',697,1),(20436,63120,63135,'OP_EqSpellMoveToRangeAndRetryCmd',729,1),(20437,63120,63135,'OP_EqStartBrokerCmd',726,1),(20438,63120,63135,'OP_EqStateCmd',664,1),(20439,63120,63135,'OP_EqStoreLogCmd',728,1),(20440,63120,63135,'OP_EqUpdateBankCmd',690,1),(20441,63120,63135,'OP_EqUpdateGhostCmd',649,1),(20442,63120,63135,'OP_EqUpdateLootCmd',693,1),(20443,63120,63135,'OP_EqUpdateMerchantCmd',685,1),(20444,63120,63135,'OP_EqUpdatePlayerMailCmd',730,1),(20445,63120,63135,'OP_EqUpdatePlayerTradeCmd',687,1),(20446,63120,63135,'OP_EqUpdateSignWidgetCmd',712,1),(20447,63120,63135,'OP_EqUpdateStoreCmd',686,1),(20448,63120,63135,'OP_EqUpdateSubClassesCmd',659,1),(20449,63120,63135,'OP_EqUpdateTargetCmd',722,1),(20450,63120,63135,'OP_EqWhoChannelQueryReplyCmd',720,1),(20451,63120,63135,'OP_ESInitMsg',27,1),(20452,63120,63135,'OP_ESLoginRequestMsg',3,1),(20453,63120,63135,'OP_ESReadyForClientsMsg',28,1),(20454,63120,63135,'OP_ESStatusMsg',102,1),(20455,63120,63135,'OP_ESWeatherRequestEndMsg',107,1),(20456,63120,63135,'OP_ESWeatherRequestMsg',106,1),(20457,63120,63135,'OP_ESZoneInstanceStatusMsg',103,1),(20458,63120,63135,'OP_ExamineConsignmentRequestMsg',174,1),(20459,63120,63135,'OP_ExamineConsignmentResponseMsg',175,1),(20460,63120,63135,'OP_ExamineInfoRequestMsg',259,1),(20461,63120,63135,'OP_ExamineItemRequestMsg',198,1),(20462,63120,63135,'OP_ExitHouseMsg',158,1),(20463,63120,63135,'OP_ExpectClientAsCharacterReplyMs',24,1),(20464,63120,63135,'OP_ExpectClientAsCharacterRequest',34,1),(20465,63120,63135,'OP_ExpPurchWindow',760,1),(20466,63120,63135,'OP_FellowshipExpMsg',125,1),(20467,63120,63135,'OP_FlightPathsMsg',418,1),(20468,63120,63135,'OP_GameWorldTimeMsg',45,1),(20469,63120,63135,'OP_GetAuctionAssetIDMsg',446,1),(20470,63120,63135,'OP_GetAuctionAssetIDReplyMsg',447,1),(20471,63120,63135,'OP_GetAvatarAccessRequestForCSToo',397,1),(20472,63120,63135,'OP_GetCharacterSerializedReplyMsg',429,1),(20473,63120,63135,'OP_GetCharacterSerializedRequestM',428,1),(20474,63120,63135,'OP_GroupCreatedMsg',90,1),(20475,63120,63135,'OP_GroupDestroyedMsg',91,1),(20476,63120,63135,'OP_GroupLeaderChangedMsg',95,1),(20477,63120,63135,'OP_GroupMemberAddedMsg',92,1),(20478,63120,63135,'OP_GroupMemberRemovedMsg',93,1),(20479,63120,63135,'OP_GroupOptionsMsg',202,1),(20480,63120,63135,'OP_GroupRemovedFromGroupMsg',94,1),(20481,63120,63135,'OP_GroupResendOOZDataMsg',96,1),(20482,63120,63135,'OP_GroupSettingsChangedMsg',97,1),(20483,63120,63135,'OP_GuildBankActionMsg',278,1),(20484,63120,63135,'OP_GuildBankActionResponseMsg',279,1),(20485,63120,63135,'OP_GuildBankEventListMsg',283,1),(20486,63120,63135,'OP_GuildBankItemDetailsRequestMsg',280,1),(20487,63120,63135,'OP_GuildBankItemDetailsResponseMs',281,1),(20488,63120,63135,'OP_GuildBankUpdateMsg',282,1),(20489,63120,63135,'OP_GuildEventActionMsg',273,1),(20490,63120,63135,'OP_GuildEventAddMsg',272,1),(20491,63120,63135,'OP_GuildEventDetailsMsg',276,1),(20492,63120,63135,'OP_GuildEventListMsg',274,1),(20493,63120,63135,'OP_GuildEventMsg',271,1),(20494,63120,63135,'OP_GuildMembershipResponseMsg',361,1),(20495,63120,63135,'OP_GuildRecruiting',740,1),(20496,63120,63135,'OP_GuildRecruitingDetails',741,1),(20497,63120,63135,'OP_GuildRecruitingImage',742,1),(20498,63120,63135,'OP_GuildRecruitingMemberInfo',739,1),(20499,63120,63135,'OP_GuildsayMsg',124,1),(20500,63120,63135,'OP_GuildStatusUpdate',733,1),(20501,63120,63135,'OP_GuildUpdateMsg',127,1),(20502,63120,63135,'OP_HeritageMsg',10025,1),(20503,63120,63135,'OP_HideIllusionsMsg',197,1),(20504,63120,63135,'OP_HouseAccessRemoveMsg',161,1),(20505,63120,63135,'OP_HouseAccessSetMsg',160,1),(20506,63120,63135,'OP_HouseCustomizationScreenMsg',169,1),(20507,63120,63135,'OP_HouseDefaultAccessSetMsg',159,1),(20508,63120,63135,'OP_HouseDeletedRemotelyMsg',145,1),(20509,63120,63135,'OP_HouseItemsList',489,1),(20510,63120,63135,'OP_HousingDataChangedMsg',432,1),(20511,63120,63135,'OP_HousingRestoreMsg',433,1),(20512,63120,63135,'OP_InspectPlayerMsg',367,1),(20513,63120,63135,'OP_InspectPlayerRequestMsg',455,1),(20514,63120,63135,'OP_InviteRequestMsg',452,1),(20515,63120,63135,'OP_InviteResponseMsg',453,1),(20516,63120,63135,'OP_InviteTargetResponseMsg',454,1),(20517,63120,63135,'OP_JoinGuildNotifyMsg',363,1),(20518,63120,63135,'OP_JournalQuestStoryline',782,1),(20519,63120,63135,'OP_KeymapDataMsg',180,1),(20520,63120,63135,'OP_KeymapLoadMsg',178,1),(20521,63120,63135,'OP_KeymapNoneMsg',179,1),(20522,63120,63135,'OP_KeymapSaveMsg',181,1),(20523,63120,63135,'OP_KnowledgebaseRequestMsg',230,1),(20524,63120,63135,'OP_KnowledgebaseResponseMsg',231,1),(20525,63120,63135,'OP_KnowledgeWindowSlotMappingMsg',373,1),(20526,63120,63135,'OP_KnownLanguagesMsg',242,1),(20527,63120,63135,'OP_Launchpad',579,1),(20528,63120,63135,'OP_LeaveGuildNotifyMsg',362,1),(20529,63120,63135,'OP_LevelChangedMsg',265,1),(20530,63120,63135,'OP_LFGGroupSearch',509,1),(20531,63120,63135,'OP_LFGUpdateMsg',522,1),(20532,63120,63135,'OP_LikeOption',139,1),(20533,63120,63135,'OP_LoadCalendarEvents',582,1),(20534,63120,63135,'OP_LoadWelcomeWindow',566,1),(20535,63120,63135,'OP_LoginByNumRequestMsg',1,1),(20536,63120,63135,'OP_LoginReplyMsg',4,1),(20537,63120,63135,'OP_LoginRequestMsg',0,1),(20538,63120,63135,'OP_LootItemsRequestMsg',188,1),(20539,63120,63135,'OP_Lottery',738,1),(20540,63120,63135,'OP_LSCheckAcctLockMsg',207,1),(20541,63120,63135,'OP_LsClientAlertlogReplyMsg',246,1),(20542,63120,63135,'OP_LsClientBaselogReplyMsg',244,1),(20543,63120,63135,'OP_LsClientCrashlogReplyMsg',245,1),(20544,63120,63135,'OP_LsClientVerifylogReplyMsg',247,1),(20545,63120,63135,'OP_LsRequestClientCrashLogMsg',243,1),(20546,63120,63135,'OP_LSServerLockMsg',369,1),(20547,63120,63135,'OP_MacroInitMsg',262,1),(20548,63120,63135,'OP_MacroUpdateMsg',263,1),(20549,63120,63135,'OP_MailCommitSendMessageMsg',348,1),(20550,63120,63135,'OP_MailDeleteMessageMsg',344,1),(20551,63120,63135,'OP_MailEventNotificationMsg',416,1),(20552,63120,63135,'OP_MailGetHeadersReplyMsg',345,1),(20553,63120,63135,'OP_MailGetMessageMsg',342,1),(20554,63120,63135,'OP_MailGetMessageReplyMsg',346,1),(20555,63120,63135,'OP_MailRemoveAttachFromMailMsg',350,1),(20556,63120,63135,'OP_MailSendMessageMsg',343,1),(20557,63120,63135,'OP_MailSendMessageReplyMsg',347,1),(20558,63120,63135,'OP_MailSendSystemMessageMsg',349,1),(20559,63120,63135,'OP_MakeGroupLeaderMsg',89,1),(20560,63120,63135,'OP_MapFogDataInitMsg',399,1),(20561,63120,63135,'OP_MapFogDataUpdateMsg',400,1),(20562,63120,63135,'OP_MapRequest',525,1),(20563,63120,63135,'OP_MarketAddFundsReply',533,1),(20564,63120,63135,'OP_MarketAddFundsRequest',532,1),(20565,63120,63135,'OP_MarketFundsUpdate',530,1),(20566,63120,63135,'OP_MarketPlaceItems',543,1),(20567,63120,63135,'OP_MarketPlacePrices',536,1),(20568,63120,63135,'OP_MarketPurchase',535,1),(20569,63120,63135,'OP_MentorPopup',564,1),(20570,63120,63135,'OP_MercHireWindow',785,1),(20571,63120,63135,'OP_MercUnknown',786,1),(20572,63120,63135,'OP_MigrateBoatTransportMsg',256,1),(20573,63120,63135,'OP_MigrateBoatTransportReplyMsg',257,1),(20574,63120,63135,'OP_MigrateClientToZoneReplyMsg',84,1),(20575,63120,63135,'OP_MigrateClientToZoneRequestMsg',83,1),(20576,63120,63135,'OP_ModifyGuildMsg',270,1),(20577,63120,63135,'OP_MonitorCharacterListMsg',58,1),(20578,63120,63135,'OP_MonitorCharacterListRequestMsg',59,1),(20579,63120,63135,'OP_MonitorReplyMsg',57,1),(20580,63120,63135,'OP_MOTDMsg',46,1),(20581,63120,63135,'OP_MoveableObjectPlacementCriteri',163,1),(20582,63120,63135,'OP_MoveLogUpdateMsg',405,1),(20583,63120,63135,'OP_NotifyApprenticeStoppedMentori',413,1),(20584,63120,63135,'OP_OfferQuestMsg',406,1),(20585,63120,63135,'OP_OnscreenMsgMsg',268,1),(20586,63120,63135,'OP_OpenCharCust',568,1),(20587,63120,63135,'OP_OutOfZoneMemberDataMsg',98,1),(20588,63120,63135,'OP_PaperdollImage',581,1),(20589,63120,63135,'OP_PayHouseUpkeepMsg',162,1),(20590,63120,63135,'OP_PerformCameraShakeMsg',217,1),(20591,63120,63135,'OP_PerformPlayerKnockbackMsg',216,1),(20592,63120,63135,'OP_PetOptions',204,1),(20593,63120,63135,'OP_PetOptionsResponse',585,1),(20594,63120,63135,'OP_PlayCharacterReplyMsg',21,1),(20595,63120,63135,'OP_PlayCharacterRequestMsg',20,1),(20596,63120,63135,'OP_PlayerHouseAccessUpdateMsg',150,1),(20597,63120,63135,'OP_PlayerHouseBaseScreenMsg',148,1),(20598,63120,63135,'OP_PlayerHouseCloseUIMsg',152,1),(20599,63120,63135,'OP_PlayerHouseDisplayStatusMsg',151,1),(20600,63120,63135,'OP_PlayerHousePurchaseScreenMsg',149,1),(20601,63120,63135,'OP_PlayerMadeInstances',143,1),(20602,63120,63135,'OP_PlayerMadeInstancesScreen',142,1),(20603,63120,63135,'OP_PlayerPollAnswer',563,1),(20604,63120,63135,'OP_PlayerPollPopup',562,1),(20605,63120,63135,'OP_PlayLon',516,1),(20606,63120,63135,'OP_PointOfInterest',764,1),(20607,63120,63135,'OP_PointOfInterest2',765,1),(20608,63120,63135,'OP_PopulateSkillMapsMsg',218,1),(20609,63120,63135,'OP_PositionBoatTransportMsg',255,1),(20610,63120,63135,'OP_PositionMoveableObject',165,1),(20611,63120,63135,'OP_PostPossessionMsg',459,1),(20612,63120,63135,'OP_PredictionUpdateMsg',39,1),(20613,63120,63135,'OP_PrePossessionMsg',458,1),(20614,63120,63135,'OP_PromoFlagsDetailsMsg',378,1),(20615,63120,63135,'OP_PublishHouse',141,1),(20616,63120,63135,'OP_PurchaseConsignmentLoreCheckRe',412,1),(20617,63120,63135,'OP_PurchaseConsignmentRequestMsg',131,1),(20618,63120,63135,'OP_QueAllBgSolo',571,1),(20619,63120,63135,'OP_QuestionnaireMsg',264,1),(20620,63120,63135,'OP_QuestJournalInspectMsg',116,1),(20621,63120,63135,'OP_QuestJournalOpenMsg',115,1),(20622,63120,63135,'OP_QuestJournalSetVisibleMsg',117,1),(20623,63120,63135,'OP_QuestJournalWaypointMsg',118,1),(20624,63120,63135,'OP_QuestReward',324,1),(20625,63120,63135,'OP_QuickbarInitMsg',260,1),(20626,63120,63135,'OP_QuickbarUpdateMsg',261,1),(20627,63120,63135,'OP_RaceRestrictionMsg',444,1),(20628,63120,63135,'OP_ReadBookPageMsg',199,1),(20629,63120,63135,'OP_ReadyForTakeOffMsg',195,1),(20630,63120,63135,'OP_ReadyToZoneMsg',86,1),(20631,63120,63135,'OP_RecipeBook',544,1),(20632,63120,63135,'OP_RecipeDetailsMsg',74,1),(20633,63120,63135,'OP_RecipeList',776,1),(20634,63120,63135,'OP_RecipeListUnknown',597,1),(20635,63120,63135,'OP_RelinquishHouseMsg',156,1),(20636,63120,63135,'OP_ReloadLocalizedTxtMsg',359,1),(20637,63120,63135,'OP_RemoteCmdMsg',44,1),(20638,63120,63135,'OP_RemoveClientFromGroupMsg',87,1),(20639,63120,63135,'OP_RemoveConcentrationMsg',114,1),(20640,63120,63135,'OP_RemoveGroupFromGroupMsg',88,1),(20641,63120,63135,'OP_RemoveSpellEffectMsg',113,1),(20642,63120,63135,'OP_RenameGuildMsg',286,1),(20643,63120,63135,'OP_ReplaceableSubMeshesMsg',168,1),(20644,63120,63135,'OP_ReportMsg',384,1),(20645,63120,63135,'OP_RequestCampMsg',52,1),(20646,63120,63135,'OP_RequestGuildBankEventDetailsMs',284,1),(20647,63120,63135,'OP_RequestGuildEventDetailsMsg',275,1),(20648,63120,63135,'OP_RequestGuildInfoMsg',277,1),(20649,63120,63135,'OP_RequestGuildMembershipMsg',360,1),(20650,63120,63135,'OP_RequestHelpRepathMsg',209,1),(20651,63120,63135,'OP_RequestRecipeDetailsMsg',73,1),(20652,63120,63135,'OP_RequestTargetLocMsg',210,1),(20653,63120,63135,'OP_Research',777,1),(20654,63120,63135,'OP_ResendWorldChannelsMsg',448,1),(20655,63120,63135,'OP_ReskinCharacterRequestMsg',15,1),(20656,63120,63135,'OP_RestartZoneMsg',417,1),(20657,63120,63135,'OP_RewardPackMsg',285,1),(20658,63120,63135,'OP_SatMsg',192,1),(20659,63120,63135,'OP_SavageBarInitMsg',584,1),(20660,63120,63135,'OP_SelectZoneTeleporterDestinatio',358,1),(20661,63120,63135,'OP_SendLatestRequestMsg',99,1),(20662,63120,63135,'OP_ServerPlayCharacterReplyMsg',26,1),(20663,63120,63135,'OP_ServerPlayCharacterRequestMsg',25,1),(20664,63120,63135,'OP_SetInstanceDisplayNameMsg',445,1),(20665,63120,63135,'OP_SetRemoteCmdsMsg',43,1),(20666,63120,63135,'OP_SetSocialMsg',101,1),(20667,63120,63135,'OP_ShaderCustomizationMsg',167,1),(20668,63120,63135,'OP_ShowCreateFromRecipeUIMsg',222,1),(20669,63120,63135,'OP_ShowIllusionsMsg',196,1),(20670,63120,63135,'OP_ShowItemCreationProcessUIMsg',226,1),(20671,63120,63135,'OP_ShowRecipeBookMsg',229,1),(20672,63120,63135,'OP_ShowZoneTeleporterDestinations',357,1),(20673,63120,63135,'OP_SitMsg',190,1),(20674,63120,63135,'OP_SkillInfoRequest',518,1),(20675,63120,63135,'OP_SkillInfoResponse',519,1),(20676,63120,63135,'OP_SOEAllAccess',640,1),(20677,63120,63135,'OP_SpellGainedMsg',266,1),(20678,63120,63135,'OP_StandMsg',191,1),(20679,63120,63135,'OP_StoodMsg',193,1),(20680,63120,63135,'OP_StopItemCreationMsg',225,1),(20681,63120,63135,'OP_StoppedLootingMsg',189,1),(20682,63120,63135,'OP_StopTrackingMsg',395,1),(20683,63120,63135,'OP_SubmitCharCust',569,1),(20684,63120,63135,'OP_SupplyDepot',774,1),(20685,63120,63135,'OP_SysClient',221,1),(20686,63120,63135,'OP_TeleportWithinZoneMsg',81,1),(20687,63120,63135,'OP_TeleportWithinZoneNoReloadMsg',82,1),(20688,63120,63135,'OP_TintWidgetsMsg',173,1),(20689,63120,63135,'OP_TitleUpdateMsg',388,1),(20690,63120,63135,'OP_TrackingUpdateMsg',393,1),(20691,63120,63135,'OP_TradeskillList',743,1),(20692,63120,63135,'OP_TraitsList',766,1),(20693,63120,63135,'OP_UIEvent',531,1),(20694,63120,63135,'OP_UIResetMsg',177,1),(20695,63120,63135,'OP_UISettingsResponseMsg',176,1),(20696,63120,63135,'OP_Unknown',799,1),(20697,63120,63135,'OP_UnknownNpcMsg',377,1),(20698,63120,63135,'OP_UpdateActivePublicZonesMsg',376,1),(20699,63120,63135,'OP_UpdateCharacterSheetMsg',65,1),(20700,63120,63135,'OP_UpdateClientPredFlagsMsg',249,1),(20701,63120,63135,'OP_UpdateDebugRadiiMsg',383,1),(20702,63120,63135,'OP_UpdateGroupMemberDataMsg',392,1),(20703,63120,63135,'OP_UpdateHouseAccessDataMsg',147,1),(20704,63120,63135,'OP_UpdateHouseDataMsg',146,1),(20705,63120,63135,'OP_UpdateInventoryMsg',70,1),(20706,63120,63135,'OP_UpdateItemCreationProcessUIMsg',227,1),(20707,63120,63135,'OP_UpdateMotdMsg',211,1),(20708,63120,63135,'OP_UpdateOpportunityMsg',77,1),(20709,63120,63135,'OP_UpdatePositionMsg',41,1),(20710,63120,63135,'OP_UpdateRaidMsg',385,1),(20711,63120,63135,'OP_UpdateRecipeBookMsg',72,1),(20712,63120,63135,'OP_UpdateSkillBookMsg',75,1),(20713,63120,63135,'OP_UpdateSkillsMsg',76,1),(20714,63120,63135,'OP_UpdateSpellBookMsg',68,1),(20715,63120,63135,'OP_UpdateTargetLocMsg',64,1),(20716,63120,63135,'OP_UpdateTargetMsg',63,1),(20717,63120,63135,'OP_UpdateTitleCmd',499,1),(20718,63120,63135,'OP_UseAdornment',754,1),(20719,63120,63135,'OP_VideoUploaded',583,1),(20720,63120,63135,'OP_VoiceChatChannel',524,1),(20721,63120,63135,'OP_VoiceChatServer',770,1),(20722,63120,63135,'OP_WaypointReplyMsg',353,1),(20723,63120,63135,'OP_WaypointRequestMsg',352,1),(20724,63120,63135,'OP_WaypointSelectMsg',354,1),(20725,63120,63135,'OP_WaypointUpdateMsg',355,1),(20726,63120,63135,'OP_Weakness',587,1),(20727,63120,63135,'OP_WhoQueryReplyMsg',56,1),(20728,63120,63135,'OP_WhoQueryRequestMsg',55,1),(20729,63120,63135,'OP_WorldDataChangeMsg',415,1),(20730,63120,63135,'OP_WorldDataUpdateMsg',240,1),(20731,63120,63135,'OP_WorldListMsg',8,1),(20732,63120,63135,'OP_WorldPingMsg',404,1),(20733,63120,63135,'OP_WorldShutdownUpdateMsg',408,1),(20734,63120,63135,'OP_WorldStatusChangeMsg',6,1),(20735,63120,63135,'OP_WorldTravelAvail',576,1),(20736,63120,63135,'OP_WSAcctLockStatusMsg',208,1),(20737,63120,63135,'OP_WSCreateCharacterReplyMsg',14,1),(20738,63120,63135,'OP_WSCreateCharacterRequestMsg',13,1),(20739,63120,63135,'OP_WSLoginRequestMsg',2,1),(20740,63120,63135,'OP_WSServerHideMsg',370,1),(20741,63120,63135,'OP_WSServerLockMsg',368,1),(20742,63120,63135,'OP_WSStatusReplyMsg',5,1),(20743,63120,63135,'OP_ZoneBgInstanceList',572,1),(20744,63120,63135,'OP_ZoneInfoMsg',35,1),(20745,63120,63135,'OP_ZoneInstanceCreateReplyMsg',32,1),(20746,63120,63135,'OP_ZoneInstanceDestroyedMsg',33,1),(20747,63120,63135,'OP_ZoneMOTDMsg',47,1),(20748,63120,63135,'OP_ZonesStatusMsg',105,1),(20749,63120,63135,'OP_ZonesStatusRequestMsg',104,1),(20750,63120,63135,'OP_ZoneToFriendReplyMsg',288,1),(20751,63120,63135,'OP_ZoneToFriendRequestMsg',287,1),(21215,63136,63136,'OP_AchievementUpdateMsg',780,1),(21216,63136,63136,'OP_AddSocialStructureStandingMsg',253,1),(21217,63136,63136,'OP_AdvancementRequestMsg',398,1),(21218,63136,63136,'OP_AdventureList',493,1),(21219,63136,63136,'OP_AFKUpdateMsg',374,1),(21220,63136,63136,'OP_AfterInvSpellUpdate',71,1),(21221,63136,63136,'OP_AllCharactersDescReplyMsg',10,1),(21222,63136,63136,'OP_AllCharactersDescRequestMsg',9,1),(21223,63136,63136,'OP_AllWSDescRequestMsg',7,1),(21224,63136,63136,'OP_AnonUpdateMsg',375,1),(21225,63136,63136,'OP_ArenaCreate',461,1),(21226,63136,63136,'OP_ArenaGameTypesMsg',450,1),(21227,63136,63136,'OP_ArenaList',462,1),(21228,63136,63136,'OP_ArenaWindow',470,1),(21229,63136,63136,'OP_AttackAllowed',505,1),(21230,63136,63136,'OP_AttackNotAllowed',506,1),(21231,63136,63136,'OP_AuctionAbortMsg',441,1),(21232,63136,63136,'OP_AuctionCharacter',438,1),(21233,63136,63136,'OP_AuctionCharacterReply',439,1),(21234,63136,63136,'OP_AuctionCoin',436,1),(21235,63136,63136,'OP_AuctionCoinReply',437,1),(21236,63136,63136,'OP_AuctionCommitMsg',440,1),(21237,63136,63136,'OP_AuctionItem',434,1),(21238,63136,63136,'OP_AuctionItemReply',435,1),(21239,63136,63136,'OP_AuditAuctionEventMsg',451,1),(21240,63136,63136,'OP_AvatarCreatedMsg',48,1),(21241,63136,63136,'OP_AvatarDestroyedMsg',49,1),(21242,63136,63136,'OP_AvatarUpdateMsg',364,1),(21243,63136,63136,'OP_BadLanguageFilter',523,1),(21244,63136,63136,'OP_BagOptions',507,1),(21245,63136,63136,'OP_BeginItemCreationMsg',224,1),(21246,63136,63136,'OP_BeginTrackingMsg',394,1),(21247,63136,63136,'OP_BioUpdateMsg',366,1),(21248,63136,63136,'OP_BrokerAddBag',296,1),(21249,63136,63136,'OP_BrokerRemoveBag',297,1),(21250,63136,63136,'OP_BrokerSellList',723,1),(21251,63136,63136,'OP_BuyPlayerHouseMsg',153,1),(21252,63136,63136,'OP_BuyPlayerHouseTintMsg',154,1),(21253,63136,63136,'OP_CampAbortedMsg',54,1),(21254,63136,63136,'OP_CampClientMsg',391,1),(21255,63136,63136,'OP_CampStartedMsg',53,1),(21256,63136,63136,'OP_CancelCreateFromRecipeMsg',223,1),(21257,63136,63136,'OP_CancelledFeignMsg',219,1),(21258,63136,63136,'OP_CancelMoveObjectModeMsg',166,1),(21259,63136,63136,'OP_CancelSpellCast',494,1),(21260,63136,63136,'OP_ChangeServerControlFlagMsg',250,1),(21261,63136,63136,'OP_ChangeZoneMsg',79,1),(21262,63136,63136,'OP_CharacterAchievements',779,1),(21263,63136,63136,'OP_CharacterCreatedDungeons',557,1),(21264,63136,63136,'OP_CharacterCurrency',778,1),(21265,63136,63136,'OP_CharacterHousingList',512,1),(21266,63136,63136,'OP_CharacterLinkdeadMsg',419,1),(21267,63136,63136,'OP_CharacterMerc',67,1),(21268,63136,63136,'OP_CharacterMounts',588,1),(21269,63136,63136,'OP_CharacterPet',66,1),(21270,63136,63136,'OP_CharNameChangedMsg',356,1),(21271,63136,63136,'OP_CharRenamed',744,1),(21272,63136,63136,'OP_CharTransferCommitReplyMsg',427,1),(21273,63136,63136,'OP_CharTransferCommitRequestMsg',425,1),(21274,63136,63136,'OP_CharTransferReplyMsg',423,1),(21275,63136,63136,'OP_CharTransferRequestMsg',422,1),(21276,63136,63136,'OP_CharTransferRollbackReplyMsg',426,1),(21277,63136,63136,'OP_CharTransferRollbackRequestMsg',424,1),(21278,63136,63136,'OP_CharTransferStartReplyMsg',421,1),(21279,63136,63136,'OP_CharTransferStartRequestMsg',420,1),(21280,63136,63136,'OP_CharTransferValidateReplyMsg',443,1),(21281,63136,63136,'OP_CharTransferValidateRequestMsg',442,1),(21282,63136,63136,'OP_ChatCreateChannelMsg',289,1),(21283,63136,63136,'OP_ChatFiltersMsg',338,1),(21284,63136,63136,'OP_ChatJoinChannelMsg',290,1),(21285,63136,63136,'OP_ChatLeaveChannelMsg',292,1),(21286,63136,63136,'OP_ChatRelationshipUpdateMsg',187,1),(21287,63136,63136,'OP_ChatSendFriendsMsg',299,1),(21288,63136,63136,'OP_ChatSendIgnoresMsg',300,1),(21289,63136,63136,'OP_ChatTellChannelMsg',293,1),(21290,63136,63136,'OP_ChatTellUserMsg',294,1),(21291,63136,63136,'OP_ChatToggleFriendMsg',295,1),(21292,63136,63136,'OP_ChatToggleIgnoreMsg',298,1),(21293,63136,63136,'OP_ChatWhoChannelMsg',291,1),(21294,63136,63136,'OP_ClearDataMsg',100,1),(21295,63136,63136,'OP_ClearForLandingMsg',496,1),(21296,63136,63136,'OP_ClearForTakeOffMsg',194,1),(21297,63136,63136,'OP_ClientCmdMsg',60,1),(21298,63136,63136,'OP_ClientFellMsg',389,1),(21299,63136,63136,'OP_ClientIdleBeginMsg',410,1),(21300,63136,63136,'OP_ClientIdleEndMsg',411,1),(21301,63136,63136,'OP_ClientInDeathRegionMsg',390,1),(21302,63136,63136,'OP_ClientTeleportRequestMsg',80,1),(21303,63136,63136,'OP_ClientTeleportToLocationMsg',248,1),(21304,63136,63136,'OP_CloseGroupInviteWindowMsg',401,1),(21305,63136,63136,'OP_CollectAllHouseItemsMsg',155,1),(21306,63136,63136,'OP_ConsignItemRequestMsg',129,1),(21307,63136,63136,'OP_ConsignItemResponseMsg',130,1),(21308,63136,63136,'OP_ConsignmentCloseStoreMsg',128,1),(21309,63136,63136,'OP_ConsignRemoveItemsMsg',382,1),(21310,63136,63136,'OP_ConsignViewCreateMsg',379,1),(21311,63136,63136,'OP_ConsignViewGetPageMsg',380,1),(21312,63136,63136,'OP_ConsignViewReleaseMsg',381,1),(21313,63136,63136,'OP_ConsignViewSortMsg',387,1),(21314,63136,63136,'OP_CorruptedClientMsg',414,1),(21315,63136,63136,'OP_CreateBoatTransportsMsg',254,1),(21316,63136,63136,'OP_CreateCharacterDungeon',551,1),(21317,63136,63136,'OP_CreateCharacterReplyMsg',12,1),(21318,63136,63136,'OP_CreateCharacterRequestMsg',11,1),(21319,63136,63136,'OP_CreateCharFromCBBReplyMsg',431,1),(21320,63136,63136,'OP_CreateCharFromCBBRequestMsg',430,1),(21321,63136,63136,'OP_CreateGuildReplyMsg',123,1),(21322,63136,63136,'OP_CreateGuildRequestMsg',121,1),(21323,63136,63136,'OP_CreateZoneInstanceMsg',31,1),(21324,63136,63136,'OP_CsCategoryRequestMsg',371,1),(21325,63136,63136,'OP_CsCategoryResponseMsg',372,1),(21326,63136,63136,'OP_CSTicketAddCommentMsg',237,1),(21327,63136,63136,'OP_CSTicketChangeNotificationMsg',239,1),(21328,63136,63136,'OP_CSTicketCommentRequestMsg',234,1),(21329,63136,63136,'OP_CSTicketCommentResponseMsg',235,1),(21330,63136,63136,'OP_CSTicketCreateMsg',236,1),(21331,63136,63136,'OP_CSTicketDeleteMsg',238,1),(21332,63136,63136,'OP_CSTicketHeaderRequestMsg',232,1),(21333,63136,63136,'OP_CSTicketInfoMsg',233,1),(21334,63136,63136,'OP_CSToolAccessResponseMsg',392,1),(21335,63136,63136,'OP_CSToolsRequestMsg',251,1),(21336,63136,63136,'OP_CSToolsResponseMsg',252,1),(21337,63136,63136,'OP_CurrentPet',490,1),(21338,63136,63136,'OP_CustomizationPurchaseRequestMs',170,1),(21339,63136,63136,'OP_CustomizationReplyMsg',172,1),(21340,63136,63136,'OP_CustomizationSetRequestMsg',171,1),(21341,63136,63136,'OP_CustomizeHouseDisplay',769,1),(21342,63136,63136,'OP_DailyObjectives',601,1),(21343,63136,63136,'OP_DefaultGroupOptionsMsg',201,1),(21344,63136,63136,'OP_DefaultGroupOptionsRequestMsg',200,1),(21345,63136,63136,'OP_DeityAbilityWindow',621,1),(21346,63136,63136,'OP_DeleteCharacterReplyMsg',19,1),(21347,63136,63136,'OP_DeleteCharacterRequestMsg',18,1),(21348,63136,63136,'OP_DeleteGuildMsg',126,1),(21349,63136,63136,'OP_DestUpdateReq',213,1),(21350,63136,63136,'OP_DialogCloseMsg',112,1),(21351,63136,63136,'OP_DialogSelectMsg',111,1),(21352,63136,63136,'OP_DispatchClientCmdMsg',62,1),(21353,63136,63136,'OP_DispatchESMsg',61,1),(21354,63136,63136,'OP_DispatchMsg',456,1),(21355,63136,63136,'OP_DispatchSpellCmdMsg',182,1),(21356,63136,63136,'OP_DisplayDebugNLLPointsMsg',258,1),(21357,63136,63136,'OP_DisplayEventMsg',457,1),(21358,63136,63136,'OP_DisplayExchangeScreenMsg',449,1),(21359,63136,63136,'OP_DisplayGroupOptionsScreenMsg',203,1),(21360,63136,63136,'OP_DisplayInnVisitScreenMsg',205,1),(21361,63136,63136,'OP_DisplayMailScreenMsg',409,1),(21362,63136,63136,'OP_DisplayTSEventReactionMsg',228,1),(21363,63136,63136,'OP_DisplayWarningMsg',269,1),(21364,63136,63136,'OP_DoneLoadingEntityResourcesMsg',38,1),(21365,63136,63136,'OP_DoneLoadingZoneResourcesMsg',36,1),(21366,63136,63136,'OP_DoneSendingInitialEntitiesMsg',37,1),(21367,63136,63136,'OP_DressingRoom',515,1),(21368,63136,63136,'OP_DumpSchedulerMsg',206,1),(21369,63136,63136,'OP_DungeonMakerEnter',552,1),(21370,63136,63136,'OP_DungeonMakerItemRequest',556,1),(21371,63136,63136,'OP_DungeonMakerItemResponse',586,1),(21372,63136,63136,'OP_DungeonMakerToolboxList',558,1),(21373,63136,63136,'OP_DungeonMakerUnknown',559,1),(21374,63136,63136,'OP_DungeonMakerUnknown1',560,1),(21375,63136,63136,'OP_DungeonPlayAsAvatarList',783,1),(21376,63136,63136,'OP_DungeonPlayAsAvatarSelected',784,1),(21377,63136,63136,'OP_EarlyLandingRequestMsg',491,1),(21378,63136,63136,'OP_EncounterBrokenMsg',267,1),(21379,63136,63136,'OP_EnterHouseMsg',157,1),(21380,63136,63136,'OP_EnterMoveObjectModeMsg',164,1),(21381,63136,63136,'OP_EntityVerbsReplyMsg',184,1),(21382,63136,63136,'OP_EntityVerbsRequestMsg',183,1),(21383,63136,63136,'OP_EntityVerbsVerbMsg',185,1),(21384,63136,63136,'OP_EqArenaResultsCmd',734,1),(21385,63136,63136,'OP_EqAvailWorldChannelsCmd',721,1),(21386,63136,63136,'OP_EqBetaCopyRequest',639,1),(21387,63136,63136,'OP_EqCannedEmoteCmd',663,1),(21388,63136,63136,'OP_EqChatChannelUpdateCmd',719,1),(21389,63136,63136,'OP_EqChoiceWinCmd',700,1),(21390,63136,63136,'OP_EqCloseWindowCmd',692,1),(21391,63136,63136,'OP_EqCollectionFilterCmd',679,1),(21392,63136,63136,'OP_EqCollectionItemCmd',680,1),(21393,63136,63136,'OP_EqCollectionUpdateCmd',678,1),(21394,63136,63136,'OP_EqConsignmentItemsCmd',724,1),(21395,63136,63136,'OP_EqCreateGhostCmd',645,1),(21396,63136,63136,'OP_EqCreateListBoxCmd',660,1),(21397,63136,63136,'OP_EqCreateSignWidgetCmd',647,1),(21398,63136,63136,'OP_EqCreateWidgetCmd',646,1),(21399,63136,63136,'OP_EqDebugPVDCmd',713,1),(21400,63136,63136,'OP_EqDestroyGhostCmd',648,1),(21401,63136,63136,'OP_EqDialogCloseCmd',676,1),(21402,63136,63136,'OP_EqDialogOpenCmd',675,1),(21403,63136,63136,'OP_EqDisplaySpellFailCmd',696,1),(21404,63136,63136,'OP_EqDisplayTextCmd',644,1),(21405,63136,63136,'OP_EqDrawablePathGraphCmd',674,1),(21406,63136,63136,'OP_EqEnableGameEventCmd',706,1),(21407,63136,63136,'OP_EqEnableWindowCmd',708,1),(21408,63136,63136,'OP_EqExamineInfoCmd',691,1),(21409,63136,63136,'OP_EqFactionUpdateCmd',677,1),(21410,63136,63136,'OP_EqFlashWindowCmd',709,1),(21411,63136,63136,'OP_EqGetProbsCmd',717,1),(21412,63136,63136,'OP_EqGroupMemberRemovedCmd',670,1),(21413,63136,63136,'OP_EqGuildBankEventActionCmd',735,1),(21414,63136,63136,'OP_EqGuildBankExamineInfoCmd',736,1),(21415,63136,63136,'OP_EqHearChainEffectCmd',671,1),(21416,63136,63136,'OP_EqHearChatCmd',643,1),(21417,63136,63136,'OP_EqHearCombatCmd',652,1),(21418,63136,63136,'OP_EqHearConsiderCmd',658,1),(21419,63136,63136,'OP_EqHearDeathCmd',669,1),(21420,63136,63136,'OP_EQHearDispellCmd',781,1),(21421,63136,63136,'OP_EqHearDrowningCmd',668,1),(21422,63136,63136,'OP_EqHearHealCmd',718,1),(21423,63136,63136,'OP_EqHearPlayFlavorCmd',711,1),(21424,63136,63136,'OP_EQHearProcCmd',654,1),(21425,63136,63136,'OP_EQHearResEffectCmd',655,1),(21426,63136,63136,'OP_EqHearSpellCastCmd',653,1),(21427,63136,63136,'OP_EqHearSpellFizzleCmd',657,1),(21428,63136,63136,'OP_EqHearSpellInterruptCmd',656,1),(21429,63136,63136,'OP_EqHearSpellNoLandCmd',737,1),(21430,63136,63136,'OP_EQHearThreatCmd',775,1),(21431,63136,63136,'OP_EqHelpPathClearCmd',689,1),(21432,63136,63136,'OP_EqHelpPathCmd',688,1),(21433,63136,63136,'OP_EqInspectPCResultsCmd',673,1),(21434,63136,63136,'OP_EqInstructionWindowCloseCmd',703,1),(21435,63136,63136,'OP_EqInstructionWindowCmd',702,1),(21436,63136,63136,'OP_EqInstructionWindowGoalCmd',704,1),(21437,63136,63136,'OP_EqInstructionWindowTaskCmd',705,1),(21438,63136,63136,'OP_EqJunctionListCmd',694,1),(21439,63136,63136,'OP_EqMapExplorationCmd',727,1),(21440,63136,63136,'OP_EqMentoring',682,1),(21441,63136,63136,'OP_EqPlaySound3DCmd',666,1),(21442,63136,63136,'OP_EqPlaySoundCmd',665,1),(21443,63136,63136,'OP_EqPlayVoiceCmd',667,1),(21444,63136,63136,'OP_EqQuestGroupCmd',684,1),(21445,63136,63136,'OP_EqQuestionnaireCmd',715,1),(21446,63136,63136,'OP_EqQuestJournalReplyCmd',683,1),(21447,63136,63136,'OP_EqQuestJournalUpdateCmd',681,1),(21448,63136,63136,'OP_EqReceiveOfferCmd',672,1),(21449,63136,63136,'OP_EqResurrectedCmd',699,1),(21450,63136,63136,'OP_EqSetControlGhostCmd',650,1),(21451,63136,63136,'OP_EqSetDebugPathPointsCmd',661,1),(21452,63136,63136,'OP_EqSetDefaultVerbCmd',701,1),(21453,63136,63136,'OP_EqSetPOVGhostCmd',651,1),(21454,63136,63136,'OP_EqShowBookCmd',714,1),(21455,63136,63136,'OP_EqShowDeathWindowCmd',695,1),(21456,63136,63136,'OP_EqShowWindowCmd',707,1),(21457,63136,63136,'OP_EqSpellCastEndCmd',698,1),(21458,63136,63136,'OP_EqSpellCastStartCmd',697,1),(21459,63136,63136,'OP_EqSpellMoveToRangeAndRetryCmd',729,1),(21460,63136,63136,'OP_EqStartBrokerCmd',726,1),(21461,63136,63136,'OP_EqStateCmd',664,1),(21462,63136,63136,'OP_EqStoreLogCmd',728,1),(21463,63136,63136,'OP_EqUpdateBankCmd',690,1),(21464,63136,63136,'OP_EqUpdateGhostCmd',649,1),(21465,63136,63136,'OP_EqUpdateLootCmd',693,1),(21466,63136,63136,'OP_EqUpdateMerchantCmd',685,1),(21467,63136,63136,'OP_EqUpdatePlayerMailCmd',730,1),(21468,63136,63136,'OP_EqUpdatePlayerTradeCmd',687,1),(21469,63136,63136,'OP_EqUpdateSignWidgetCmd',712,1),(21470,63136,63136,'OP_EqUpdateStoreCmd',686,1),(21471,63136,63136,'OP_EqUpdateSubClassesCmd',659,1),(21472,63136,63136,'OP_EqUpdateTargetCmd',722,1),(21473,63136,63136,'OP_EqWhoChannelQueryReplyCmd',720,1),(21474,63136,63136,'OP_ESInitMsg',27,1),(21475,63136,63136,'OP_ESLoginRequestMsg',3,1),(21476,63136,63136,'OP_ESReadyForClientsMsg',28,1),(21477,63136,63136,'OP_ESStatusMsg',102,1),(21478,63136,63136,'OP_ESWeatherRequestEndMsg',107,1),(21479,63136,63136,'OP_ESWeatherRequestMsg',106,1),(21480,63136,63136,'OP_ESZoneInstanceStatusMsg',103,1),(21481,63136,63136,'OP_ExamineConsignmentRequestMsg',174,1),(21482,63136,63136,'OP_ExamineConsignmentResponseMsg',175,1),(21483,63136,63136,'OP_ExamineInfoRequestMsg',259,1),(21484,63136,63136,'OP_ExamineItemRequestMsg',198,1),(21485,63136,63136,'OP_ExitHouseMsg',158,1),(21486,63136,63136,'OP_ExpectClientAsCharacterReplyMs',24,1),(21487,63136,63136,'OP_ExpectClientAsCharacterRequest',34,1),(21488,63136,63136,'OP_ExpPurchWindow',760,1),(21489,63136,63136,'OP_FellowshipExpMsg',125,1),(21490,63136,63136,'OP_FlightPathsMsg',418,1),(21491,63136,63136,'OP_GameWorldTimeMsg',45,1),(21492,63136,63136,'OP_GetAuctionAssetIDMsg',446,1),(21493,63136,63136,'OP_GetAuctionAssetIDReplyMsg',447,1),(21494,63136,63136,'OP_GetAvatarAccessRequestForCSToo',397,1),(21495,63136,63136,'OP_GetCharacterSerializedReplyMsg',429,1),(21496,63136,63136,'OP_GetCharacterSerializedRequestM',428,1),(21497,63136,63136,'OP_GroupCreatedMsg',90,1),(21498,63136,63136,'OP_GroupDestroyedMsg',91,1),(21499,63136,63136,'OP_GroupLeaderChangedMsg',95,1),(21500,63136,63136,'OP_GroupMemberAddedMsg',92,1),(21501,63136,63136,'OP_GroupMemberRemovedMsg',93,1),(21502,63136,63136,'OP_GroupOptionsMsg',202,1),(21503,63136,63136,'OP_GroupRemovedFromGroupMsg',94,1),(21504,63136,63136,'OP_GroupResendOOZDataMsg',96,1),(21505,63136,63136,'OP_GroupSettingsChangedMsg',97,1),(21506,63136,63136,'OP_GuildBankActionMsg',278,1),(21507,63136,63136,'OP_GuildBankActionResponseMsg',279,1),(21508,63136,63136,'OP_GuildBankEventListMsg',283,1),(21509,63136,63136,'OP_GuildBankItemDetailsRequestMsg',280,1),(21510,63136,63136,'OP_GuildBankItemDetailsResponseMs',281,1),(21511,63136,63136,'OP_GuildBankUpdateMsg',282,1),(21512,63136,63136,'OP_GuildEventActionMsg',273,1),(21513,63136,63136,'OP_GuildEventAddMsg',272,1),(21514,63136,63136,'OP_GuildEventDetailsMsg',276,1),(21515,63136,63136,'OP_GuildEventListMsg',274,1),(21516,63136,63136,'OP_GuildEventMsg',271,1),(21517,63136,63136,'OP_GuildMembershipResponseMsg',361,1),(21518,63136,63136,'OP_GuildRecruiting',740,1),(21519,63136,63136,'OP_GuildRecruitingDetails',741,1),(21520,63136,63136,'OP_GuildRecruitingImage',742,1),(21521,63136,63136,'OP_GuildRecruitingMemberInfo',739,1),(21522,63136,63136,'OP_GuildsayMsg',124,1),(21523,63136,63136,'OP_GuildStatusUpdate',733,1),(21524,63136,63136,'OP_GuildUpdateMsg',127,1),(21525,63136,63136,'OP_HeritageMsg',10026,1),(21526,63136,63136,'OP_HideIllusionsMsg',197,1),(21527,63136,63136,'OP_HouseAccessRemoveMsg',161,1),(21528,63136,63136,'OP_HouseAccessSetMsg',160,1),(21529,63136,63136,'OP_HouseCustomizationScreenMsg',169,1),(21530,63136,63136,'OP_HouseDefaultAccessSetMsg',159,1),(21531,63136,63136,'OP_HouseDeletedRemotelyMsg',145,1),(21532,63136,63136,'OP_HouseItemsList',489,1),(21533,63136,63136,'OP_HousingDataChangedMsg',432,1),(21534,63136,63136,'OP_HousingRestoreMsg',433,1),(21535,63136,63136,'OP_InspectPlayerMsg',367,1),(21536,63136,63136,'OP_InspectPlayerRequestMsg',455,1),(21537,63136,63136,'OP_InviteRequestMsg',452,1),(21538,63136,63136,'OP_InviteResponseMsg',453,1),(21539,63136,63136,'OP_InviteTargetResponseMsg',454,1),(21540,63136,63136,'OP_JoinGuildNotifyMsg',363,1),(21541,63136,63136,'OP_JournalQuestStoryline',782,1),(21542,63136,63136,'OP_KeymapDataMsg',180,1),(21543,63136,63136,'OP_KeymapLoadMsg',178,1),(21544,63136,63136,'OP_KeymapNoneMsg',179,1),(21545,63136,63136,'OP_KeymapSaveMsg',181,1),(21546,63136,63136,'OP_KnowledgebaseRequestMsg',230,1),(21547,63136,63136,'OP_KnowledgebaseResponseMsg',231,1),(21548,63136,63136,'OP_KnowledgeWindowSlotMappingMsg',373,1),(21549,63136,63136,'OP_KnownLanguagesMsg',242,1),(21550,63136,63136,'OP_Launchpad',579,1),(21551,63136,63136,'OP_LeaveGuildNotifyMsg',362,1),(21552,63136,63136,'OP_LevelChangedMsg',265,1),(21553,63136,63136,'OP_LFGGroupSearch',509,1),(21554,63136,63136,'OP_LFGUpdateMsg',522,1),(21555,63136,63136,'OP_LikeOption',139,1),(21556,63136,63136,'OP_LoadCalendarEvents',582,1),(21557,63136,63136,'OP_LoadWelcomeWindow',566,1),(21558,63136,63136,'OP_LoginByNumRequestMsg',1,1),(21559,63136,63136,'OP_LoginReplyMsg',4,1),(21560,63136,63136,'OP_LoginRequestMsg',0,1),(21561,63136,63136,'OP_LootItemsRequestMsg',188,1),(21562,63136,63136,'OP_Lottery',738,1),(21563,63136,63136,'OP_LSCheckAcctLockMsg',207,1),(21564,63136,63136,'OP_LsClientAlertlogReplyMsg',246,1),(21565,63136,63136,'OP_LsClientBaselogReplyMsg',244,1),(21566,63136,63136,'OP_LsClientCrashlogReplyMsg',245,1),(21567,63136,63136,'OP_LsClientVerifylogReplyMsg',247,1),(21568,63136,63136,'OP_LsRequestClientCrashLogMsg',243,1),(21569,63136,63136,'OP_LSServerLockMsg',369,1),(21570,63136,63136,'OP_MacroInitMsg',262,1),(21571,63136,63136,'OP_MacroUpdateMsg',263,1),(21572,63136,63136,'OP_MailCommitSendMessageMsg',348,1),(21573,63136,63136,'OP_MailDeleteMessageMsg',344,1),(21574,63136,63136,'OP_MailEventNotificationMsg',416,1),(21575,63136,63136,'OP_MailGetHeadersReplyMsg',345,1),(21576,63136,63136,'OP_MailGetMessageMsg',342,1),(21577,63136,63136,'OP_MailGetMessageReplyMsg',346,1),(21578,63136,63136,'OP_MailRemoveAttachFromMailMsg',350,1),(21579,63136,63136,'OP_MailSendMessageMsg',343,1),(21580,63136,63136,'OP_MailSendMessageReplyMsg',347,1),(21581,63136,63136,'OP_MailSendSystemMessageMsg',349,1),(21582,63136,63136,'OP_MakeGroupLeaderMsg',89,1),(21583,63136,63136,'OP_MapFogDataInitMsg',399,1),(21584,63136,63136,'OP_MapFogDataUpdateMsg',400,1),(21585,63136,63136,'OP_MapRequest',525,1),(21586,63136,63136,'OP_MarketAddFundsReply',533,1),(21587,63136,63136,'OP_MarketAddFundsRequest',532,1),(21588,63136,63136,'OP_MarketFundsUpdate',530,1),(21589,63136,63136,'OP_MarketPlaceItems',543,1),(21590,63136,63136,'OP_MarketPlacePrices',536,1),(21591,63136,63136,'OP_MarketPurchase',535,1),(21592,63136,63136,'OP_MentorPopup',564,1),(21593,63136,63136,'OP_MercHireWindow',786,1),(21594,63136,63136,'OP_MercUnknown',787,1),(21595,63136,63136,'OP_MigrateBoatTransportMsg',256,1),(21596,63136,63136,'OP_MigrateBoatTransportReplyMsg',257,1),(21597,63136,63136,'OP_MigrateClientToZoneReplyMsg',84,1),(21598,63136,63136,'OP_MigrateClientToZoneRequestMsg',83,1),(21599,63136,63136,'OP_ModifyGuildMsg',270,1),(21600,63136,63136,'OP_MonitorCharacterListMsg',58,1),(21601,63136,63136,'OP_MonitorCharacterListRequestMsg',59,1),(21602,63136,63136,'OP_MonitorReplyMsg',57,1),(21603,63136,63136,'OP_MOTDMsg',46,1),(21604,63136,63136,'OP_MoveableObjectPlacementCriteri',163,1),(21605,63136,63136,'OP_MoveLogUpdateMsg',405,1),(21606,63136,63136,'OP_NotifyApprenticeStoppedMentori',413,1),(21607,63136,63136,'OP_OfferQuestMsg',406,1),(21608,63136,63136,'OP_OnscreenMsgMsg',268,1),(21609,63136,63136,'OP_OpenCharCust',568,1),(21610,63136,63136,'OP_OutOfZoneMemberDataMsg',98,1),(21611,63136,63136,'OP_PaperdollImage',581,1),(21612,63136,63136,'OP_PayHouseUpkeepMsg',162,1),(21613,63136,63136,'OP_PerformCameraShakeMsg',217,1),(21614,63136,63136,'OP_PerformPlayerKnockbackMsg',216,1),(21615,63136,63136,'OP_PetOptions',204,1),(21616,63136,63136,'OP_PetOptionsResponse',585,1),(21617,63136,63136,'OP_PlayCharacterReplyMsg',21,1),(21618,63136,63136,'OP_PlayCharacterRequestMsg',20,1),(21619,63136,63136,'OP_PlayerHouseAccessUpdateMsg',150,1),(21620,63136,63136,'OP_PlayerHouseBaseScreenMsg',148,1),(21621,63136,63136,'OP_PlayerHouseCloseUIMsg',152,1),(21622,63136,63136,'OP_PlayerHouseDisplayStatusMsg',151,1),(21623,63136,63136,'OP_PlayerHousePurchaseScreenMsg',149,1),(21624,63136,63136,'OP_PlayerMadeInstances',143,1),(21625,63136,63136,'OP_PlayerMadeInstancesScreen',142,1),(21626,63136,63136,'OP_PlayerPollAnswer',563,1),(21627,63136,63136,'OP_PlayerPollPopup',562,1),(21628,63136,63136,'OP_PlayLon',516,1),(21629,63136,63136,'OP_PointOfInterest',764,1),(21630,63136,63136,'OP_PointOfInterest2',765,1),(21631,63136,63136,'OP_PopulateSkillMapsMsg',218,1),(21632,63136,63136,'OP_PositionBoatTransportMsg',255,1),(21633,63136,63136,'OP_PositionMoveableObject',165,1),(21634,63136,63136,'OP_PostPossessionMsg',459,1),(21635,63136,63136,'OP_PredictionUpdateMsg',39,1),(21636,63136,63136,'OP_PrePossessionMsg',458,1),(21637,63136,63136,'OP_PromoFlagsDetailsMsg',378,1),(21638,63136,63136,'OP_PublishHouse',141,1),(21639,63136,63136,'OP_PurchaseConsignmentLoreCheckRe',412,1),(21640,63136,63136,'OP_PurchaseConsignmentRequestMsg',131,1),(21641,63136,63136,'OP_QueAllBgSolo',571,1),(21642,63136,63136,'OP_QuestionnaireMsg',264,1),(21643,63136,63136,'OP_QuestJournalInspectMsg',116,1),(21644,63136,63136,'OP_QuestJournalOpenMsg',115,1),(21645,63136,63136,'OP_QuestJournalSetVisibleMsg',117,1),(21646,63136,63136,'OP_QuestJournalWaypointMsg',118,1),(21647,63136,63136,'OP_QuestReward',324,1),(21648,63136,63136,'OP_QuickbarInitMsg',260,1),(21649,63136,63136,'OP_QuickbarUpdateMsg',261,1),(21650,63136,63136,'OP_RaceRestrictionMsg',444,1),(21651,63136,63136,'OP_ReadBookPageMsg',199,1),(21652,63136,63136,'OP_ReadyForTakeOffMsg',195,1),(21653,63136,63136,'OP_ReadyToZoneMsg',86,1),(21654,63136,63136,'OP_RecipeBook',544,1),(21655,63136,63136,'OP_RecipeDetailsMsg',74,1),(21656,63136,63136,'OP_RecipeList',776,1),(21657,63136,63136,'OP_RecipeListUnknown',597,1),(21658,63136,63136,'OP_RelinquishHouseMsg',156,1),(21659,63136,63136,'OP_ReloadLocalizedTxtMsg',359,1),(21660,63136,63136,'OP_RemoteCmdMsg',44,1),(21661,63136,63136,'OP_RemoveClientFromGroupMsg',87,1),(21662,63136,63136,'OP_RemoveConcentrationMsg',114,1),(21663,63136,63136,'OP_RemoveGroupFromGroupMsg',88,1),(21664,63136,63136,'OP_RemoveSpellEffectMsg',113,1),(21665,63136,63136,'OP_RenameGuildMsg',286,1),(21666,63136,63136,'OP_ReplaceableSubMeshesMsg',168,1),(21667,63136,63136,'OP_ReportMsg',384,1),(21668,63136,63136,'OP_RequestCampMsg',52,1),(21669,63136,63136,'OP_RequestGuildBankEventDetailsMs',284,1),(21670,63136,63136,'OP_RequestGuildEventDetailsMsg',275,1),(21671,63136,63136,'OP_RequestGuildInfoMsg',277,1),(21672,63136,63136,'OP_RequestGuildMembershipMsg',360,1),(21673,63136,63136,'OP_RequestHelpRepathMsg',209,1),(21674,63136,63136,'OP_RequestRecipeDetailsMsg',73,1),(21675,63136,63136,'OP_RequestTargetLocMsg',210,1),(21676,63136,63136,'OP_Research',777,1),(21677,63136,63136,'OP_ResendWorldChannelsMsg',448,1),(21678,63136,63136,'OP_ReskinCharacterRequestMsg',15,1),(21679,63136,63136,'OP_RestartZoneMsg',417,1),(21680,63136,63136,'OP_RewardPackMsg',285,1),(21681,63136,63136,'OP_SatMsg',192,1),(21682,63136,63136,'OP_SavageBarInitMsg',584,1),(21683,63136,63136,'OP_SelectZoneTeleporterDestinatio',358,1),(21684,63136,63136,'OP_SendLatestRequestMsg',99,1),(21685,63136,63136,'OP_ServerPlayCharacterReplyMsg',26,1),(21686,63136,63136,'OP_ServerPlayCharacterRequestMsg',25,1),(21687,63136,63136,'OP_SetInstanceDisplayNameMsg',445,1),(21688,63136,63136,'OP_SetRemoteCmdsMsg',43,1),(21689,63136,63136,'OP_SetSocialMsg',101,1),(21690,63136,63136,'OP_ShaderCustomizationMsg',167,1),(21691,63136,63136,'OP_ShowCreateFromRecipeUIMsg',222,1),(21692,63136,63136,'OP_ShowIllusionsMsg',196,1),(21693,63136,63136,'OP_ShowItemCreationProcessUIMsg',226,1),(21694,63136,63136,'OP_ShowRecipeBookMsg',229,1),(21695,63136,63136,'OP_ShowZoneTeleporterDestinations',357,1),(21696,63136,63136,'OP_SitMsg',190,1),(21697,63136,63136,'OP_SkillInfoRequest',518,1),(21698,63136,63136,'OP_SkillInfoResponse',519,1),(21699,63136,63136,'OP_SOEAllAccess',640,1),(21700,63136,63136,'OP_SpellGainedMsg',266,1),(21701,63136,63136,'OP_StandMsg',191,1),(21702,63136,63136,'OP_StoodMsg',193,1),(21703,63136,63136,'OP_StopItemCreationMsg',225,1),(21704,63136,63136,'OP_StoppedLootingMsg',189,1),(21705,63136,63136,'OP_StopTrackingMsg',395,1),(21706,63136,63136,'OP_SubmitCharCust',569,1),(21707,63136,63136,'OP_SupplyDepot',774,1),(21708,63136,63136,'OP_SysClient',221,1),(21709,63136,63136,'OP_TeleportWithinZoneMsg',81,1),(21710,63136,63136,'OP_TeleportWithinZoneNoReloadMsg',82,1),(21711,63136,63136,'OP_TintWidgetsMsg',173,1),(21712,63136,63136,'OP_TitleUpdateMsg',388,1),(21713,63136,63136,'OP_TrackingUpdateMsg',393,1),(21714,63136,63136,'OP_TradeskillList',743,1),(21715,63136,63136,'OP_TraitsList',766,1),(21716,63136,63136,'OP_UIEvent',531,1),(21717,63136,63136,'OP_UIResetMsg',177,1),(21718,63136,63136,'OP_UISettingsResponseMsg',176,1),(21719,63136,63136,'OP_Unknown',800,1),(21720,63136,63136,'OP_UnknownNpcMsg',377,1),(21721,63136,63136,'OP_UpdateActivePublicZonesMsg',376,1),(21722,63136,63136,'OP_UpdateCharacterSheetMsg',65,1),(21723,63136,63136,'OP_UpdateClientPredFlagsMsg',249,1),(21724,63136,63136,'OP_UpdateDebugRadiiMsg',383,1),(21725,63136,63136,'OP_UpdateGroupMemberDataMsg',392,1),(21726,63136,63136,'OP_UpdateHouseAccessDataMsg',147,1),(21727,63136,63136,'OP_UpdateHouseDataMsg',146,1),(21728,63136,63136,'OP_UpdateInventoryMsg',70,1),(21729,63136,63136,'OP_UpdateItemCreationProcessUIMsg',227,1),(21730,63136,63136,'OP_UpdateMotdMsg',211,1),(21731,63136,63136,'OP_UpdateOpportunityMsg',77,1),(21732,63136,63136,'OP_UpdatePositionMsg',41,1),(21733,63136,63136,'OP_UpdateRaidMsg',385,1),(21734,63136,63136,'OP_UpdateRecipeBookMsg',72,1),(21735,63136,63136,'OP_UpdateSkillBookMsg',75,1),(21736,63136,63136,'OP_UpdateSkillsMsg',76,1),(21737,63136,63136,'OP_UpdateSpellBookMsg',68,1),(21738,63136,63136,'OP_UpdateTargetLocMsg',64,1),(21739,63136,63136,'OP_UpdateTargetMsg',63,1),(21740,63136,63136,'OP_UpdateTitleCmd',499,1),(21741,63136,63136,'OP_UseAdornment',754,1),(21742,63136,63136,'OP_VideoUploaded',583,1),(21743,63136,63136,'OP_VoiceChatChannel',524,1),(21744,63136,63136,'OP_VoiceChatServer',770,1),(21745,63136,63136,'OP_WaypointReplyMsg',353,1),(21746,63136,63136,'OP_WaypointRequestMsg',352,1),(21747,63136,63136,'OP_WaypointSelectMsg',354,1),(21748,63136,63136,'OP_WaypointUpdateMsg',355,1),(21749,63136,63136,'OP_Weakness',587,1),(21750,63136,63136,'OP_WhoQueryReplyMsg',56,1),(21751,63136,63136,'OP_WhoQueryRequestMsg',55,1),(21752,63136,63136,'OP_WorldDataChangeMsg',415,1),(21753,63136,63136,'OP_WorldDataUpdateMsg',240,1),(21754,63136,63136,'OP_WorldListMsg',8,1),(21755,63136,63136,'OP_WorldPingMsg',404,1),(21756,63136,63136,'OP_WorldShutdownUpdateMsg',408,1),(21757,63136,63136,'OP_WorldStatusChangeMsg',6,1),(21758,63136,63136,'OP_WorldTravelAvail',576,1),(21759,63136,63136,'OP_WSAcctLockStatusMsg',208,1),(21760,63136,63136,'OP_WSCreateCharacterReplyMsg',14,1),(21761,63136,63136,'OP_WSCreateCharacterRequestMsg',13,1),(21762,63136,63136,'OP_WSLoginRequestMsg',2,1),(21763,63136,63136,'OP_WSServerHideMsg',370,1),(21764,63136,63136,'OP_WSServerLockMsg',368,1),(21765,63136,63136,'OP_WSStatusReplyMsg',5,1),(21766,63136,63136,'OP_ZoneBgInstanceList',572,1),(21767,63136,63136,'OP_ZoneInfoMsg',35,1),(21768,63136,63136,'OP_ZoneInstanceCreateReplyMsg',32,1),(21769,63136,63136,'OP_ZoneInstanceDestroyedMsg',33,1),(21770,63136,63136,'OP_ZoneMOTDMsg',47,1),(21771,63136,63136,'OP_ZonesStatusMsg',105,1),(21772,63136,63136,'OP_ZonesStatusRequestMsg',104,1),(21773,63136,63136,'OP_ZoneToFriendReplyMsg',288,1),(21774,63136,63136,'OP_ZoneToFriendRequestMsg',287,1),(22238,63137,63166,'OP_AchievementUpdateMsg',781,1),(22239,63137,63166,'OP_AddSocialStructureStandingMsg',253,1),(22240,63137,63166,'OP_AdvancementRequestMsg',398,1),(22241,63137,63166,'OP_AdventureList',493,1),(22242,63137,63166,'OP_AFKUpdateMsg',374,1),(22243,63137,63166,'OP_AfterInvSpellUpdate',71,1),(22244,63137,63166,'OP_AllCharactersDescReplyMsg',10,1),(22245,63137,63166,'OP_AllCharactersDescRequestMsg',9,1),(22246,63137,63166,'OP_AllWSDescRequestMsg',7,1),(22247,63137,63166,'OP_AnonUpdateMsg',375,1),(22248,63137,63166,'OP_ArenaCreate',461,1),(22249,63137,63166,'OP_ArenaGameTypesMsg',450,1),(22250,63137,63166,'OP_ArenaList',462,1),(22251,63137,63166,'OP_ArenaWindow',470,1),(22252,63137,63166,'OP_AttackAllowed',505,1),(22253,63137,63166,'OP_AttackNotAllowed',506,1),(22254,63137,63166,'OP_AuctionAbortMsg',441,1),(22255,63137,63166,'OP_AuctionCharacter',438,1),(22256,63137,63166,'OP_AuctionCharacterReply',439,1),(22257,63137,63166,'OP_AuctionCoin',436,1),(22258,63137,63166,'OP_AuctionCoinReply',437,1),(22259,63137,63166,'OP_AuctionCommitMsg',440,1),(22260,63137,63166,'OP_AuctionItem',434,1),(22261,63137,63166,'OP_AuctionItemReply',435,1),(22262,63137,63166,'OP_AuditAuctionEventMsg',451,1),(22263,63137,63166,'OP_AvatarCreatedMsg',48,1),(22264,63137,63166,'OP_AvatarDestroyedMsg',49,1),(22265,63137,63166,'OP_AvatarUpdateMsg',364,1),(22266,63137,63166,'OP_BadLanguageFilter',523,1),(22267,63137,63166,'OP_BagOptions',507,1),(22268,63137,63166,'OP_BeginItemCreationMsg',224,1),(22269,63137,63166,'OP_BeginTrackingMsg',394,1),(22270,63137,63166,'OP_BioUpdateMsg',366,1),(22271,63137,63166,'OP_BrokerAddBag',296,1),(22272,63137,63166,'OP_BrokerRemoveBag',297,1),(22273,63137,63166,'OP_BrokerSellList',724,1),(22274,63137,63166,'OP_BuyPlayerHouseMsg',153,1),(22275,63137,63166,'OP_BuyPlayerHouseTintMsg',154,1),(22276,63137,63166,'OP_CampAbortedMsg',54,1),(22277,63137,63166,'OP_CampClientMsg',391,1),(22278,63137,63166,'OP_CampStartedMsg',53,1),(22279,63137,63166,'OP_CancelCreateFromRecipeMsg',223,1),(22280,63137,63166,'OP_CancelledFeignMsg',219,1),(22281,63137,63166,'OP_CancelMoveObjectModeMsg',166,1),(22282,63137,63166,'OP_CancelSpellCast',494,1),(22283,63137,63166,'OP_ChangeServerControlFlagMsg',250,1),(22284,63137,63166,'OP_ChangeZoneMsg',79,1),(22285,63137,63166,'OP_CharacterAchievements',780,1),(22286,63137,63166,'OP_CharacterCreatedDungeons',557,1),(22287,63137,63166,'OP_CharacterCurrency',779,1),(22288,63137,63166,'OP_CharacterHousingList',512,1),(22289,63137,63166,'OP_CharacterLinkdeadMsg',419,1),(22290,63137,63166,'OP_CharacterMerc',67,1),(22291,63137,63166,'OP_CharacterMounts',588,1),(22292,63137,63166,'OP_CharacterPet',66,1),(22293,63137,63166,'OP_CharNameChangedMsg',356,1),(22294,63137,63166,'OP_CharRenamed',745,1),(22295,63137,63166,'OP_CharTransferCommitReplyMsg',427,1),(22296,63137,63166,'OP_CharTransferCommitRequestMsg',425,1),(22297,63137,63166,'OP_CharTransferReplyMsg',423,1),(22298,63137,63166,'OP_CharTransferRequestMsg',422,1),(22299,63137,63166,'OP_CharTransferRollbackReplyMsg',426,1),(22300,63137,63166,'OP_CharTransferRollbackRequestMsg',424,1),(22301,63137,63166,'OP_CharTransferStartReplyMsg',421,1),(22302,63137,63166,'OP_CharTransferStartRequestMsg',420,1),(22303,63137,63166,'OP_CharTransferValidateReplyMsg',443,1),(22304,63137,63166,'OP_CharTransferValidateRequestMsg',442,1),(22305,63137,63166,'OP_ChatCreateChannelMsg',289,1),(22306,63137,63166,'OP_ChatFiltersMsg',338,1),(22307,63137,63166,'OP_ChatJoinChannelMsg',290,1),(22308,63137,63166,'OP_ChatLeaveChannelMsg',292,1),(22309,63137,63166,'OP_ChatRelationshipUpdateMsg',187,1),(22310,63137,63166,'OP_ChatSendFriendsMsg',299,1),(22311,63137,63166,'OP_ChatSendIgnoresMsg',300,1),(22312,63137,63166,'OP_ChatTellChannelMsg',293,1),(22313,63137,63166,'OP_ChatTellUserMsg',294,1),(22314,63137,63166,'OP_ChatToggleFriendMsg',295,1),(22315,63137,63166,'OP_ChatToggleIgnoreMsg',298,1),(22316,63137,63166,'OP_ChatWhoChannelMsg',291,1),(22317,63137,63166,'OP_ClearDataMsg',100,1),(22318,63137,63166,'OP_ClearForLandingMsg',496,1),(22319,63137,63166,'OP_ClearForTakeOffMsg',194,1),(22320,63137,63166,'OP_ClientCmdMsg',60,1),(22321,63137,63166,'OP_ClientFellMsg',389,1),(22322,63137,63166,'OP_ClientIdleBeginMsg',410,1),(22323,63137,63166,'OP_ClientIdleEndMsg',411,1),(22324,63137,63166,'OP_ClientInDeathRegionMsg',390,1),(22325,63137,63166,'OP_ClientTeleportRequestMsg',80,1),(22326,63137,63166,'OP_ClientTeleportToLocationMsg',248,1),(22327,63137,63166,'OP_CloseGroupInviteWindowMsg',401,1),(22328,63137,63166,'OP_CollectAllHouseItemsMsg',155,1),(22329,63137,63166,'OP_ConsignItemRequestMsg',129,1),(22330,63137,63166,'OP_ConsignItemResponseMsg',130,1),(22331,63137,63166,'OP_ConsignmentCloseStoreMsg',128,1),(22332,63137,63166,'OP_ConsignRemoveItemsMsg',382,1),(22333,63137,63166,'OP_ConsignViewCreateMsg',379,1),(22334,63137,63166,'OP_ConsignViewGetPageMsg',380,1),(22335,63137,63166,'OP_ConsignViewReleaseMsg',381,1),(22336,63137,63166,'OP_ConsignViewSortMsg',387,1),(22337,63137,63166,'OP_CorruptedClientMsg',414,1),(22338,63137,63166,'OP_CreateBoatTransportsMsg',254,1),(22339,63137,63166,'OP_CreateCharacterDungeon',551,1),(22340,63137,63166,'OP_CreateCharacterReplyMsg',12,1),(22341,63137,63166,'OP_CreateCharacterRequestMsg',11,1),(22342,63137,63166,'OP_CreateCharFromCBBReplyMsg',431,1),(22343,63137,63166,'OP_CreateCharFromCBBRequestMsg',430,1),(22344,63137,63166,'OP_CreateGuildReplyMsg',123,1),(22345,63137,63166,'OP_CreateGuildRequestMsg',121,1),(22346,63137,63166,'OP_CreateZoneInstanceMsg',31,1),(22347,63137,63166,'OP_CsCategoryRequestMsg',371,1),(22348,63137,63166,'OP_CsCategoryResponseMsg',372,1),(22349,63137,63166,'OP_CSTicketAddCommentMsg',237,1),(22350,63137,63166,'OP_CSTicketChangeNotificationMsg',239,1),(22351,63137,63166,'OP_CSTicketCommentRequestMsg',234,1),(22352,63137,63166,'OP_CSTicketCommentResponseMsg',235,1),(22353,63137,63166,'OP_CSTicketCreateMsg',236,1),(22354,63137,63166,'OP_CSTicketDeleteMsg',238,1),(22355,63137,63166,'OP_CSTicketHeaderRequestMsg',232,1),(22356,63137,63166,'OP_CSTicketInfoMsg',233,1),(22357,63137,63166,'OP_CSToolAccessResponseMsg',392,1),(22358,63137,63166,'OP_CSToolsRequestMsg',251,1),(22359,63137,63166,'OP_CSToolsResponseMsg',252,1),(22360,63137,63166,'OP_CurrentPet',490,1),(22361,63137,63166,'OP_CustomizationPurchaseRequestMs',170,1),(22362,63137,63166,'OP_CustomizationReplyMsg',172,1),(22363,63137,63166,'OP_CustomizationSetRequestMsg',171,1),(22364,63137,63166,'OP_CustomizeHouseDisplay',770,1),(22365,63137,63166,'OP_DailyObjectives',601,1),(22366,63137,63166,'OP_DefaultGroupOptionsMsg',201,1),(22367,63137,63166,'OP_DefaultGroupOptionsRequestMsg',200,1),(22368,63137,63166,'OP_DeityAbilityWindow',621,1),(22369,63137,63166,'OP_DeleteCharacterReplyMsg',19,1),(22370,63137,63166,'OP_DeleteCharacterRequestMsg',18,1),(22371,63137,63166,'OP_DeleteGuildMsg',126,1),(22372,63137,63166,'OP_DestUpdateReq',213,1),(22373,63137,63166,'OP_DialogCloseMsg',112,1),(22374,63137,63166,'OP_DialogSelectMsg',111,1),(22375,63137,63166,'OP_DispatchClientCmdMsg',62,1),(22376,63137,63166,'OP_DispatchESMsg',61,1),(22377,63137,63166,'OP_DispatchMsg',456,1),(22378,63137,63166,'OP_DispatchSpellCmdMsg',182,1),(22379,63137,63166,'OP_DisplayDebugNLLPointsMsg',258,1),(22380,63137,63166,'OP_DisplayEventMsg',457,1),(22381,63137,63166,'OP_DisplayExchangeScreenMsg',449,1),(22382,63137,63166,'OP_DisplayGroupOptionsScreenMsg',203,1),(22383,63137,63166,'OP_DisplayInnVisitScreenMsg',205,1),(22384,63137,63166,'OP_DisplayMailScreenMsg',409,1),(22385,63137,63166,'OP_DisplayTSEventReactionMsg',228,1),(22386,63137,63166,'OP_DisplayWarningMsg',269,1),(22387,63137,63166,'OP_DoneLoadingEntityResourcesMsg',38,1),(22388,63137,63166,'OP_DoneLoadingZoneResourcesMsg',36,1),(22389,63137,63166,'OP_DoneSendingInitialEntitiesMsg',37,1),(22390,63137,63166,'OP_DressingRoom',515,1),(22391,63137,63166,'OP_DumpSchedulerMsg',206,1),(22392,63137,63166,'OP_DungeonMakerEnter',552,1),(22393,63137,63166,'OP_DungeonMakerItemRequest',556,1),(22394,63137,63166,'OP_DungeonMakerItemResponse',586,1),(22395,63137,63166,'OP_DungeonMakerToolboxList',558,1),(22396,63137,63166,'OP_DungeonMakerUnknown',559,1),(22397,63137,63166,'OP_DungeonMakerUnknown1',560,1),(22398,63137,63166,'OP_DungeonPlayAsAvatarList',784,1),(22399,63137,63166,'OP_DungeonPlayAsAvatarSelected',785,1),(22400,63137,63166,'OP_EarlyLandingRequestMsg',491,1),(22401,63137,63166,'OP_EncounterBrokenMsg',267,1),(22402,63137,63166,'OP_EnterHouseMsg',157,1),(22403,63137,63166,'OP_EnterMoveObjectModeMsg',164,1),(22404,63137,63166,'OP_EntityVerbsReplyMsg',184,1),(22405,63137,63166,'OP_EntityVerbsRequestMsg',183,1),(22406,63137,63166,'OP_EntityVerbsVerbMsg',185,1),(22407,63137,63166,'OP_EqArenaResultsCmd',735,1),(22408,63137,63166,'OP_EqAvailWorldChannelsCmd',722,1),(22409,63137,63166,'OP_EqBetaCopyRequest',639,1),(22410,63137,63166,'OP_EqCannedEmoteCmd',664,1),(22411,63137,63166,'OP_EqChatChannelUpdateCmd',720,1),(22412,63137,63166,'OP_EqChoiceWinCmd',701,1),(22413,63137,63166,'OP_EqCloseWindowCmd',693,1),(22414,63137,63166,'OP_EqCollectionFilterCmd',680,1),(22415,63137,63166,'OP_EqCollectionItemCmd',681,1),(22416,63137,63166,'OP_EqCollectionUpdateCmd',679,1),(22417,63137,63166,'OP_EqConsignmentItemsCmd',725,1),(22418,63137,63166,'OP_EqCreateGhostCmd',646,1),(22419,63137,63166,'OP_EqCreateListBoxCmd',661,1),(22420,63137,63166,'OP_EqCreateSignWidgetCmd',648,1),(22421,63137,63166,'OP_EqCreateWidgetCmd',647,1),(22422,63137,63166,'OP_EqDebugPVDCmd',714,1),(22423,63137,63166,'OP_EqDestroyGhostCmd',649,1),(22424,63137,63166,'OP_EqDialogCloseCmd',677,1),(22425,63137,63166,'OP_EqDialogOpenCmd',676,1),(22426,63137,63166,'OP_EqDisplaySpellFailCmd',697,1),(22427,63137,63166,'OP_EqDisplayTextCmd',645,1),(22428,63137,63166,'OP_EqDrawablePathGraphCmd',675,1),(22429,63137,63166,'OP_EqEnableGameEventCmd',707,1),(22430,63137,63166,'OP_EqEnableWindowCmd',709,1),(22431,63137,63166,'OP_EqExamineInfoCmd',692,1),(22432,63137,63166,'OP_EqFactionUpdateCmd',678,1),(22433,63137,63166,'OP_EqFlashWindowCmd',710,1),(22434,63137,63166,'OP_EqGetProbsCmd',718,1),(22435,63137,63166,'OP_EqGroupMemberRemovedCmd',671,1),(22436,63137,63166,'OP_EqGuildBankEventActionCmd',736,1),(22437,63137,63166,'OP_EqGuildBankExamineInfoCmd',737,1),(22438,63137,63166,'OP_EqHearChainEffectCmd',672,1),(22439,63137,63166,'OP_EqHearChatCmd',644,1),(22440,63137,63166,'OP_EqHearCombatCmd',653,1),(22441,63137,63166,'OP_EqHearConsiderCmd',659,1),(22442,63137,63166,'OP_EqHearDeathCmd',670,1),(22443,63137,63166,'OP_EQHearDispellCmd',782,1),(22444,63137,63166,'OP_EqHearDrowningCmd',669,1),(22445,63137,63166,'OP_EqHearHealCmd',719,1),(22446,63137,63166,'OP_EqHearPlayFlavorCmd',712,1),(22447,63137,63166,'OP_EQHearProcCmd',655,1),(22448,63137,63166,'OP_EQHearResEffectCmd',656,1),(22449,63137,63166,'OP_EqHearSpellCastCmd',654,1),(22450,63137,63166,'OP_EqHearSpellFizzleCmd',658,1),(22451,63137,63166,'OP_EqHearSpellInterruptCmd',657,1),(22452,63137,63166,'OP_EqHearSpellNoLandCmd',738,1),(22453,63137,63166,'OP_EQHearThreatCmd',776,1),(22454,63137,63166,'OP_EqHelpPathClearCmd',690,1),(22455,63137,63166,'OP_EqHelpPathCmd',689,1),(22456,63137,63166,'OP_EqInspectPCResultsCmd',674,1),(22457,63137,63166,'OP_EqInstructionWindowCloseCmd',704,1),(22458,63137,63166,'OP_EqInstructionWindowCmd',703,1),(22459,63137,63166,'OP_EqInstructionWindowGoalCmd',705,1),(22460,63137,63166,'OP_EqInstructionWindowTaskCmd',706,1),(22461,63137,63166,'OP_EqJunctionListCmd',695,1),(22462,63137,63166,'OP_EqMapExplorationCmd',728,1),(22463,63137,63166,'OP_EqMentoring',683,1),(22464,63137,63166,'OP_EqPlaySound3DCmd',667,1),(22465,63137,63166,'OP_EqPlaySoundCmd',666,1),(22466,63137,63166,'OP_EqPlayVoiceCmd',668,1),(22467,63137,63166,'OP_EqQuestGroupCmd',685,1),(22468,63137,63166,'OP_EqQuestionnaireCmd',716,1),(22469,63137,63166,'OP_EqQuestJournalReplyCmd',684,1),(22470,63137,63166,'OP_EqQuestJournalUpdateCmd',682,1),(22471,63137,63166,'OP_EqReceiveOfferCmd',673,1),(22472,63137,63166,'OP_EqResurrectedCmd',700,1),(22473,63137,63166,'OP_EqSetControlGhostCmd',651,1),(22474,63137,63166,'OP_EqSetDebugPathPointsCmd',662,1),(22475,63137,63166,'OP_EqSetDefaultVerbCmd',702,1),(22476,63137,63166,'OP_EqSetPOVGhostCmd',652,1),(22477,63137,63166,'OP_EqShowBookCmd',715,1),(22478,63137,63166,'OP_EqShowDeathWindowCmd',696,1),(22479,63137,63166,'OP_EqShowWindowCmd',708,1),(22480,63137,63166,'OP_EqSpellCastEndCmd',699,1),(22481,63137,63166,'OP_EqSpellCastStartCmd',698,1),(22482,63137,63166,'OP_EqSpellMoveToRangeAndRetryCmd',730,1),(22483,63137,63166,'OP_EqStartBrokerCmd',727,1),(22484,63137,63166,'OP_EqStateCmd',665,1),(22485,63137,63166,'OP_EqStoreLogCmd',729,1),(22486,63137,63166,'OP_EqUpdateBankCmd',691,1),(22487,63137,63166,'OP_EqUpdateGhostCmd',650,1),(22488,63137,63166,'OP_EqUpdateLootCmd',694,1),(22489,63137,63166,'OP_EqUpdateMerchantCmd',686,1),(22490,63137,63166,'OP_EqUpdatePlayerMailCmd',731,1),(22491,63137,63166,'OP_EqUpdatePlayerTradeCmd',688,1),(22492,63137,63166,'OP_EqUpdateSignWidgetCmd',713,1),(22493,63137,63166,'OP_EqUpdateStoreCmd',687,1),(22494,63137,63166,'OP_EqUpdateSubClassesCmd',660,1),(22495,63137,63166,'OP_EqUpdateTargetCmd',723,1),(22496,63137,63166,'OP_EqWhoChannelQueryReplyCmd',721,1),(22497,63137,63166,'OP_ESInitMsg',27,1),(22498,63137,63166,'OP_ESLoginRequestMsg',3,1),(22499,63137,63166,'OP_ESReadyForClientsMsg',28,1),(22500,63137,63166,'OP_ESStatusMsg',102,1),(22501,63137,63166,'OP_ESWeatherRequestEndMsg',107,1),(22502,63137,63166,'OP_ESWeatherRequestMsg',106,1),(22503,63137,63166,'OP_ESZoneInstanceStatusMsg',103,1),(22504,63137,63166,'OP_ExamineConsignmentRequestMsg',174,1),(22505,63137,63166,'OP_ExamineConsignmentResponseMsg',175,1),(22506,63137,63166,'OP_ExamineInfoRequestMsg',259,1),(22507,63137,63166,'OP_ExamineItemRequestMsg',198,1),(22508,63137,63166,'OP_ExitHouseMsg',158,1),(22509,63137,63166,'OP_ExpectClientAsCharacterReplyMs',24,1),(22510,63137,63166,'OP_ExpectClientAsCharacterRequest',34,1),(22511,63137,63166,'OP_ExpPurchWindow',761,1),(22512,63137,63166,'OP_FellowshipExpMsg',125,1),(22513,63137,63166,'OP_FlightPathsMsg',418,1),(22514,63137,63166,'OP_GameWorldTimeMsg',45,1),(22515,63137,63166,'OP_GetAuctionAssetIDMsg',446,1),(22516,63137,63166,'OP_GetAuctionAssetIDReplyMsg',447,1),(22517,63137,63166,'OP_GetAvatarAccessRequestForCSToo',397,1),(22518,63137,63166,'OP_GetCharacterSerializedReplyMsg',429,1),(22519,63137,63166,'OP_GetCharacterSerializedRequestM',428,1),(22520,63137,63166,'OP_GroupCreatedMsg',90,1),(22521,63137,63166,'OP_GroupDestroyedMsg',91,1),(22522,63137,63166,'OP_GroupLeaderChangedMsg',95,1),(22523,63137,63166,'OP_GroupMemberAddedMsg',92,1),(22524,63137,63166,'OP_GroupMemberRemovedMsg',93,1),(22525,63137,63166,'OP_GroupOptionsMsg',202,1),(22526,63137,63166,'OP_GroupRemovedFromGroupMsg',94,1),(22527,63137,63166,'OP_GroupResendOOZDataMsg',96,1),(22528,63137,63166,'OP_GroupSettingsChangedMsg',97,1),(22529,63137,63166,'OP_GuildBankActionMsg',278,1),(22530,63137,63166,'OP_GuildBankActionResponseMsg',279,1),(22531,63137,63166,'OP_GuildBankEventListMsg',283,1),(22532,63137,63166,'OP_GuildBankItemDetailsRequestMsg',280,1),(22533,63137,63166,'OP_GuildBankItemDetailsResponseMs',281,1),(22534,63137,63166,'OP_GuildBankUpdateMsg',282,1),(22535,63137,63166,'OP_GuildEventActionMsg',273,1),(22536,63137,63166,'OP_GuildEventAddMsg',272,1),(22537,63137,63166,'OP_GuildEventDetailsMsg',276,1),(22538,63137,63166,'OP_GuildEventListMsg',274,1),(22539,63137,63166,'OP_GuildEventMsg',271,1),(22540,63137,63166,'OP_GuildMembershipResponseMsg',361,1),(22541,63137,63166,'OP_GuildRecruiting',741,1),(22542,63137,63166,'OP_GuildRecruitingDetails',742,1),(22543,63137,63166,'OP_GuildRecruitingImage',743,1),(22544,63137,63166,'OP_GuildRecruitingMemberInfo',740,1),(22545,63137,63166,'OP_GuildsayMsg',124,1),(22546,63137,63166,'OP_GuildStatusUpdate',734,1),(22547,63137,63166,'OP_GuildUpdateMsg',127,1),(22548,63137,63166,'OP_HeritageMsg',10027,1),(22549,63137,63166,'OP_HideIllusionsMsg',197,1),(22550,63137,63166,'OP_HouseAccessRemoveMsg',161,1),(22551,63137,63166,'OP_HouseAccessSetMsg',160,1),(22552,63137,63166,'OP_HouseCustomizationScreenMsg',169,1),(22553,63137,63166,'OP_HouseDefaultAccessSetMsg',159,1),(22554,63137,63166,'OP_HouseDeletedRemotelyMsg',145,1),(22555,63137,63166,'OP_HouseItemsList',489,1),(22556,63137,63166,'OP_HousingDataChangedMsg',432,1),(22557,63137,63166,'OP_HousingRestoreMsg',433,1),(22558,63137,63166,'OP_InspectPlayerMsg',367,1),(22559,63137,63166,'OP_InspectPlayerRequestMsg',455,1),(22560,63137,63166,'OP_InviteRequestMsg',452,1),(22561,63137,63166,'OP_InviteResponseMsg',453,1),(22562,63137,63166,'OP_InviteTargetResponseMsg',454,1),(22563,63137,63166,'OP_JoinGuildNotifyMsg',363,1),(22564,63137,63166,'OP_JournalQuestStoryline',783,1),(22565,63137,63166,'OP_KeymapDataMsg',180,1),(22566,63137,63166,'OP_KeymapLoadMsg',178,1),(22567,63137,63166,'OP_KeymapNoneMsg',179,1),(22568,63137,63166,'OP_KeymapSaveMsg',181,1),(22569,63137,63166,'OP_KnowledgebaseRequestMsg',230,1),(22570,63137,63166,'OP_KnowledgebaseResponseMsg',231,1),(22571,63137,63166,'OP_KnowledgeWindowSlotMappingMsg',373,1),(22572,63137,63166,'OP_KnownLanguagesMsg',242,1),(22573,63137,63166,'OP_Launchpad',579,1),(22574,63137,63166,'OP_LeaveGuildNotifyMsg',362,1),(22575,63137,63166,'OP_LevelChangedMsg',265,1),(22576,63137,63166,'OP_LFGGroupSearch',509,1),(22577,63137,63166,'OP_LFGUpdateMsg',522,1),(22578,63137,63166,'OP_LikeOption',139,1),(22579,63137,63166,'OP_LoadCalendarEvents',582,1),(22580,63137,63166,'OP_LoadWelcomeWindow',566,1),(22581,63137,63166,'OP_LoginByNumRequestMsg',1,1),(22582,63137,63166,'OP_LoginReplyMsg',4,1),(22583,63137,63166,'OP_LoginRequestMsg',0,1),(22584,63137,63166,'OP_LootItemsRequestMsg',188,1),(22585,63137,63166,'OP_Lottery',739,1),(22586,63137,63166,'OP_LSCheckAcctLockMsg',207,1),(22587,63137,63166,'OP_LsClientAlertlogReplyMsg',246,1),(22588,63137,63166,'OP_LsClientBaselogReplyMsg',244,1),(22589,63137,63166,'OP_LsClientCrashlogReplyMsg',245,1),(22590,63137,63166,'OP_LsClientVerifylogReplyMsg',247,1),(22591,63137,63166,'OP_LsRequestClientCrashLogMsg',243,1),(22592,63137,63166,'OP_LSServerLockMsg',369,1),(22593,63137,63166,'OP_MacroInitMsg',262,1),(22594,63137,63166,'OP_MacroUpdateMsg',263,1),(22595,63137,63166,'OP_MailCommitSendMessageMsg',348,1),(22596,63137,63166,'OP_MailDeleteMessageMsg',344,1),(22597,63137,63166,'OP_MailEventNotificationMsg',416,1),(22598,63137,63166,'OP_MailGetHeadersReplyMsg',345,1),(22599,63137,63166,'OP_MailGetMessageMsg',342,1),(22600,63137,63166,'OP_MailGetMessageReplyMsg',346,1),(22601,63137,63166,'OP_MailRemoveAttachFromMailMsg',350,1),(22602,63137,63166,'OP_MailSendMessageMsg',343,1),(22603,63137,63166,'OP_MailSendMessageReplyMsg',347,1),(22604,63137,63166,'OP_MailSendSystemMessageMsg',349,1),(22605,63137,63166,'OP_MakeGroupLeaderMsg',89,1),(22606,63137,63166,'OP_MapFogDataInitMsg',399,1),(22607,63137,63166,'OP_MapFogDataUpdateMsg',400,1),(22608,63137,63166,'OP_MapRequest',525,1),(22609,63137,63166,'OP_MarketAddFundsReply',533,1),(22610,63137,63166,'OP_MarketAddFundsRequest',532,1),(22611,63137,63166,'OP_MarketFundsUpdate',530,1),(22612,63137,63166,'OP_MarketPlaceItems',543,1),(22613,63137,63166,'OP_MarketPlacePrices',536,1),(22614,63137,63166,'OP_MarketPurchase',535,1),(22615,63137,63166,'OP_MentorPopup',564,1),(22616,63137,63166,'OP_MercHireWindow',787,1),(22617,63137,63166,'OP_MercUnknown',788,1),(22618,63137,63166,'OP_MigrateBoatTransportMsg',256,1),(22619,63137,63166,'OP_MigrateBoatTransportReplyMsg',257,1),(22620,63137,63166,'OP_MigrateClientToZoneReplyMsg',84,1),(22621,63137,63166,'OP_MigrateClientToZoneRequestMsg',83,1),(22622,63137,63166,'OP_ModifyGuildMsg',270,1),(22623,63137,63166,'OP_MonitorCharacterListMsg',58,1),(22624,63137,63166,'OP_MonitorCharacterListRequestMsg',59,1),(22625,63137,63166,'OP_MonitorReplyMsg',57,1),(22626,63137,63166,'OP_MOTDMsg',46,1),(22627,63137,63166,'OP_MoveableObjectPlacementCriteri',163,1),(22628,63137,63166,'OP_MoveLogUpdateMsg',405,1),(22629,63137,63166,'OP_NotifyApprenticeStoppedMentori',413,1),(22630,63137,63166,'OP_OfferQuestMsg',406,1),(22631,63137,63166,'OP_OnscreenMsgMsg',268,1),(22632,63137,63166,'OP_OpenCharCust',568,1),(22633,63137,63166,'OP_OutOfZoneMemberDataMsg',98,1),(22634,63137,63166,'OP_PaperdollImage',581,1),(22635,63137,63166,'OP_PayHouseUpkeepMsg',162,1),(22636,63137,63166,'OP_PerformCameraShakeMsg',217,1),(22637,63137,63166,'OP_PerformPlayerKnockbackMsg',216,1),(22638,63137,63166,'OP_PetOptions',204,1),(22639,63137,63166,'OP_PetOptionsResponse',585,1),(22640,63137,63166,'OP_PlayCharacterReplyMsg',21,1),(22641,63137,63166,'OP_PlayCharacterRequestMsg',20,1),(22642,63137,63166,'OP_PlayerHouseAccessUpdateMsg',150,1),(22643,63137,63166,'OP_PlayerHouseBaseScreenMsg',148,1),(22644,63137,63166,'OP_PlayerHouseCloseUIMsg',152,1),(22645,63137,63166,'OP_PlayerHouseDisplayStatusMsg',151,1),(22646,63137,63166,'OP_PlayerHousePurchaseScreenMsg',149,1),(22647,63137,63166,'OP_PlayerMadeInstances',143,1),(22648,63137,63166,'OP_PlayerMadeInstancesScreen',142,1),(22649,63137,63166,'OP_PlayerPollAnswer',563,1),(22650,63137,63166,'OP_PlayerPollPopup',562,1),(22651,63137,63166,'OP_PlayLon',516,1),(22652,63137,63166,'OP_PointOfInterest',765,1),(22653,63137,63166,'OP_PointOfInterest2',766,1),(22654,63137,63166,'OP_PopulateSkillMapsMsg',218,1),(22655,63137,63166,'OP_PositionBoatTransportMsg',255,1),(22656,63137,63166,'OP_PositionMoveableObject',165,1),(22657,63137,63166,'OP_PostPossessionMsg',459,1),(22658,63137,63166,'OP_PredictionUpdateMsg',39,1),(22659,63137,63166,'OP_PrePossessionMsg',458,1),(22660,63137,63166,'OP_PromoFlagsDetailsMsg',378,1),(22661,63137,63166,'OP_PublishHouse',141,1),(22662,63137,63166,'OP_PurchaseConsignmentLoreCheckRe',412,1),(22663,63137,63166,'OP_PurchaseConsignmentRequestMsg',131,1),(22664,63137,63166,'OP_QueAllBgSolo',571,1),(22665,63137,63166,'OP_QuestionnaireMsg',264,1),(22666,63137,63166,'OP_QuestJournalInspectMsg',116,1),(22667,63137,63166,'OP_QuestJournalOpenMsg',115,1),(22668,63137,63166,'OP_QuestJournalSetVisibleMsg',117,1),(22669,63137,63166,'OP_QuestJournalWaypointMsg',118,1),(22670,63137,63166,'OP_QuestReward',324,1),(22671,63137,63166,'OP_QuickbarInitMsg',260,1),(22672,63137,63166,'OP_QuickbarUpdateMsg',261,1),(22673,63137,63166,'OP_RaceRestrictionMsg',444,1),(22674,63137,63166,'OP_ReadBookPageMsg',199,1),(22675,63137,63166,'OP_ReadyForTakeOffMsg',195,1),(22676,63137,63166,'OP_ReadyToZoneMsg',86,1),(22677,63137,63166,'OP_RecipeBook',544,1),(22678,63137,63166,'OP_RecipeDetailsMsg',74,1),(22679,63137,63166,'OP_RecipeList',777,1),(22680,63137,63166,'OP_RecipeListUnknown',597,1),(22681,63137,63166,'OP_RelinquishHouseMsg',156,1),(22682,63137,63166,'OP_ReloadLocalizedTxtMsg',359,1),(22683,63137,63166,'OP_RemoteCmdMsg',44,1),(22684,63137,63166,'OP_RemoveClientFromGroupMsg',87,1),(22685,63137,63166,'OP_RemoveConcentrationMsg',114,1),(22686,63137,63166,'OP_RemoveGroupFromGroupMsg',88,1),(22687,63137,63166,'OP_RemoveSpellEffectMsg',113,1),(22688,63137,63166,'OP_RenameGuildMsg',286,1),(22689,63137,63166,'OP_ReplaceableSubMeshesMsg',168,1),(22690,63137,63166,'OP_ReportMsg',384,1),(22691,63137,63166,'OP_RequestCampMsg',52,1),(22692,63137,63166,'OP_RequestGuildBankEventDetailsMs',284,1),(22693,63137,63166,'OP_RequestGuildEventDetailsMsg',275,1),(22694,63137,63166,'OP_RequestGuildInfoMsg',277,1),(22695,63137,63166,'OP_RequestGuildMembershipMsg',360,1),(22696,63137,63166,'OP_RequestHelpRepathMsg',209,1),(22697,63137,63166,'OP_RequestRecipeDetailsMsg',73,1),(22698,63137,63166,'OP_RequestTargetLocMsg',210,1),(22699,63137,63166,'OP_Research',778,1),(22700,63137,63166,'OP_ResendWorldChannelsMsg',448,1),(22701,63137,63166,'OP_ReskinCharacterRequestMsg',15,1),(22702,63137,63166,'OP_RestartZoneMsg',417,1),(22703,63137,63166,'OP_RewardPackMsg',285,1),(22704,63137,63166,'OP_SatMsg',192,1),(22705,63137,63166,'OP_SavageBarInitMsg',584,1),(22706,63137,63166,'OP_SelectZoneTeleporterDestinatio',358,1),(22707,63137,63166,'OP_SendLatestRequestMsg',99,1),(22708,63137,63166,'OP_ServerPlayCharacterReplyMsg',26,1),(22709,63137,63166,'OP_ServerPlayCharacterRequestMsg',25,1),(22710,63137,63166,'OP_SetInstanceDisplayNameMsg',445,1),(22711,63137,63166,'OP_SetRemoteCmdsMsg',43,1),(22712,63137,63166,'OP_SetSocialMsg',101,1),(22713,63137,63166,'OP_ShaderCustomizationMsg',167,1),(22714,63137,63166,'OP_ShowCreateFromRecipeUIMsg',222,1),(22715,63137,63166,'OP_ShowIllusionsMsg',196,1),(22716,63137,63166,'OP_ShowItemCreationProcessUIMsg',226,1),(22717,63137,63166,'OP_ShowRecipeBookMsg',229,1),(22718,63137,63166,'OP_ShowZoneTeleporterDestinations',357,1),(22719,63137,63166,'OP_SitMsg',190,1),(22720,63137,63166,'OP_SkillInfoRequest',518,1),(22721,63137,63166,'OP_SkillInfoResponse',519,1),(22722,63137,63166,'OP_SOEAllAccess',640,1),(22723,63137,63166,'OP_SpellGainedMsg',266,1),(22724,63137,63166,'OP_StandMsg',191,1),(22725,63137,63166,'OP_StoodMsg',193,1),(22726,63137,63166,'OP_StopItemCreationMsg',225,1),(22727,63137,63166,'OP_StoppedLootingMsg',189,1),(22728,63137,63166,'OP_StopTrackingMsg',395,1),(22729,63137,63166,'OP_SubmitCharCust',569,1),(22730,63137,63166,'OP_SupplyDepot',775,1),(22731,63137,63166,'OP_SysClient',221,1),(22732,63137,63166,'OP_TeleportWithinZoneMsg',81,1),(22733,63137,63166,'OP_TeleportWithinZoneNoReloadMsg',82,1),(22734,63137,63166,'OP_TintWidgetsMsg',173,1),(22735,63137,63166,'OP_TitleUpdateMsg',388,1),(22736,63137,63166,'OP_TrackingUpdateMsg',393,1),(22737,63137,63166,'OP_TradeskillList',744,1),(22738,63137,63166,'OP_TraitsList',767,1),(22739,63137,63166,'OP_UIEvent',531,1),(22740,63137,63166,'OP_UIResetMsg',177,1),(22741,63137,63166,'OP_UISettingsResponseMsg',176,1),(22742,63137,63166,'OP_Unknown',801,1),(22743,63137,63166,'OP_UnknownNpcMsg',377,1),(22744,63137,63166,'OP_UpdateActivePublicZonesMsg',376,1),(22745,63137,63166,'OP_UpdateCharacterSheetMsg',65,1),(22746,63137,63166,'OP_UpdateClientPredFlagsMsg',249,1),(22747,63137,63166,'OP_UpdateDebugRadiiMsg',383,1),(22748,63137,63166,'OP_UpdateGroupMemberDataMsg',392,1),(22749,63137,63166,'OP_UpdateHouseAccessDataMsg',147,1),(22750,63137,63166,'OP_UpdateHouseDataMsg',146,1),(22751,63137,63166,'OP_UpdateInventoryMsg',70,1),(22752,63137,63166,'OP_UpdateItemCreationProcessUIMsg',227,1),(22753,63137,63166,'OP_UpdateMotdMsg',211,1),(22754,63137,63166,'OP_UpdateOpportunityMsg',77,1),(22755,63137,63166,'OP_UpdatePositionMsg',41,1),(22756,63137,63166,'OP_UpdateRaidMsg',385,1),(22757,63137,63166,'OP_UpdateRecipeBookMsg',72,1),(22758,63137,63166,'OP_UpdateSkillBookMsg',75,1),(22759,63137,63166,'OP_UpdateSkillsMsg',76,1),(22760,63137,63166,'OP_UpdateSpellBookMsg',68,1),(22761,63137,63166,'OP_UpdateTargetLocMsg',64,1),(22762,63137,63166,'OP_UpdateTargetMsg',63,1),(22763,63137,63166,'OP_UpdateTitleCmd',499,1),(22764,63137,63166,'OP_UseAdornment',755,1),(22765,63137,63166,'OP_VideoUploaded',583,1),(22766,63137,63166,'OP_VoiceChatChannel',524,1),(22767,63137,63166,'OP_VoiceChatServer',771,1),(22768,63137,63166,'OP_WaypointReplyMsg',353,1),(22769,63137,63166,'OP_WaypointRequestMsg',352,1),(22770,63137,63166,'OP_WaypointSelectMsg',354,1),(22771,63137,63166,'OP_WaypointUpdateMsg',355,1),(22772,63137,63166,'OP_Weakness',587,1),(22773,63137,63166,'OP_WhoQueryReplyMsg',56,1),(22774,63137,63166,'OP_WhoQueryRequestMsg',55,1),(22775,63137,63166,'OP_WorldDataChangeMsg',415,1),(22776,63137,63166,'OP_WorldDataUpdateMsg',240,1),(22777,63137,63166,'OP_WorldListMsg',8,1),(22778,63137,63166,'OP_WorldPingMsg',404,1),(22779,63137,63166,'OP_WorldShutdownUpdateMsg',408,1),(22780,63137,63166,'OP_WorldStatusChangeMsg',6,1),(22781,63137,63166,'OP_WorldTravelAvail',576,1),(22782,63137,63166,'OP_WSAcctLockStatusMsg',208,1),(22783,63137,63166,'OP_WSCreateCharacterReplyMsg',14,1),(22784,63137,63166,'OP_WSCreateCharacterRequestMsg',13,1),(22785,63137,63166,'OP_WSLoginRequestMsg',2,1),(22786,63137,63166,'OP_WSServerHideMsg',370,1),(22787,63137,63166,'OP_WSServerLockMsg',368,1),(22788,63137,63166,'OP_WSStatusReplyMsg',5,1),(22789,63137,63166,'OP_ZoneBgInstanceList',572,1),(22790,63137,63166,'OP_ZoneInfoMsg',35,1),(22791,63137,63166,'OP_ZoneInstanceCreateReplyMsg',32,1),(22792,63137,63166,'OP_ZoneInstanceDestroyedMsg',33,1),(22793,63137,63166,'OP_ZoneMOTDMsg',47,1),(22794,63137,63166,'OP_ZonesStatusMsg',105,1),(22795,63137,63166,'OP_ZonesStatusRequestMsg',104,1),(22796,63137,63166,'OP_ZoneToFriendReplyMsg',288,1),(22797,63137,63166,'OP_ZoneToFriendRequestMsg',287,1),(23261,63167,63212,'OP_AchievementUpdateMsg',777,1),(23262,63167,63212,'OP_AddSocialStructureStandingMsg',253,1),(23263,63167,63212,'OP_AdvancementRequestMsg',398,1),(23264,63167,63212,'OP_AdventureList',493,1),(23265,63167,63212,'OP_AFKUpdateMsg',374,1),(23266,63167,63212,'OP_AfterInvSpellUpdate',71,1),(23267,63167,63212,'OP_AllCharactersDescReplyMsg',10,1),(23268,63167,63212,'OP_AllCharactersDescRequestMsg',9,1),(23269,63167,63212,'OP_AllWSDescRequestMsg',7,1),(23270,63167,63212,'OP_AnonUpdateMsg',375,1),(23271,63167,63212,'OP_ArenaCreate',461,1),(23272,63167,63212,'OP_ArenaGameTypesMsg',450,1),(23273,63167,63212,'OP_ArenaList',462,1),(23274,63167,63212,'OP_ArenaWindow',470,1),(23275,63167,63212,'OP_AttackAllowed',505,1),(23276,63167,63212,'OP_AttackNotAllowed',506,1),(23277,63167,63212,'OP_AuctionAbortMsg',441,1),(23278,63167,63212,'OP_AuctionCharacter',438,1),(23279,63167,63212,'OP_AuctionCharacterReply',439,1),(23280,63167,63212,'OP_AuctionCoin',436,1),(23281,63167,63212,'OP_AuctionCoinReply',437,1),(23282,63167,63212,'OP_AuctionCommitMsg',440,1),(23283,63167,63212,'OP_AuctionItem',434,1),(23284,63167,63212,'OP_AuctionItemReply',435,1),(23285,63167,63212,'OP_AuditAuctionEventMsg',451,1),(23286,63167,63212,'OP_AvatarCreatedMsg',48,1),(23287,63167,63212,'OP_AvatarDestroyedMsg',49,1),(23288,63167,63212,'OP_AvatarUpdateMsg',364,1),(23289,63167,63212,'OP_BadLanguageFilter',523,1),(23290,63167,63212,'OP_BagOptions',507,1),(23291,63167,63212,'OP_BeginItemCreationMsg',224,1),(23292,63167,63212,'OP_BeginTrackingMsg',394,1),(23293,63167,63212,'OP_BioUpdateMsg',366,1),(23294,63167,63212,'OP_BrokerAddBag',296,1),(23295,63167,63212,'OP_BrokerRemoveBag',297,1),(23296,63167,63212,'OP_BrokerSellList',720,1),(23297,63167,63212,'OP_BuyPlayerHouseMsg',153,1),(23298,63167,63212,'OP_BuyPlayerHouseTintMsg',154,1),(23299,63167,63212,'OP_CampAbortedMsg',54,1),(23300,63167,63212,'OP_CampClientMsg',391,1),(23301,63167,63212,'OP_CampStartedMsg',53,1),(23302,63167,63212,'OP_CancelCreateFromRecipeMsg',223,1),(23303,63167,63212,'OP_CancelledFeignMsg',219,1),(23304,63167,63212,'OP_CancelMoveObjectModeMsg',166,1),(23305,63167,63212,'OP_CancelSpellCast',494,1),(23306,63167,63212,'OP_ChangeServerControlFlagMsg',250,1),(23307,63167,63212,'OP_ChangeZoneMsg',79,1),(23308,63167,63212,'OP_CharacterAchievements',776,1),(23309,63167,63212,'OP_CharacterCreatedDungeons',557,1),(23310,63167,63212,'OP_CharacterCurrency',775,1),(23311,63167,63212,'OP_CharacterHousingList',512,1),(23312,63167,63212,'OP_CharacterLinkdeadMsg',419,1),(23313,63167,63212,'OP_CharacterMerc',67,1),(23314,63167,63212,'OP_CharacterMounts',588,1),(23315,63167,63212,'OP_CharacterPet',66,1),(23316,63167,63212,'OP_CharNameChangedMsg',356,1),(23317,63167,63212,'OP_CharRenamed',741,1),(23318,63167,63212,'OP_CharTransferCommitReplyMsg',427,1),(23319,63167,63212,'OP_CharTransferCommitRequestMsg',425,1),(23320,63167,63212,'OP_CharTransferReplyMsg',423,1),(23321,63167,63212,'OP_CharTransferRequestMsg',422,1),(23322,63167,63212,'OP_CharTransferRollbackReplyMsg',426,1),(23323,63167,63212,'OP_CharTransferRollbackRequestMsg',424,1),(23324,63167,63212,'OP_CharTransferStartReplyMsg',421,1),(23325,63167,63212,'OP_CharTransferStartRequestMsg',420,1),(23326,63167,63212,'OP_CharTransferValidateReplyMsg',443,1),(23327,63167,63212,'OP_CharTransferValidateRequestMsg',442,1),(23328,63167,63212,'OP_ChatCreateChannelMsg',289,1),(23329,63167,63212,'OP_ChatFiltersMsg',338,1),(23330,63167,63212,'OP_ChatJoinChannelMsg',290,1),(23331,63167,63212,'OP_ChatLeaveChannelMsg',292,1),(23332,63167,63212,'OP_ChatRelationshipUpdateMsg',187,1),(23333,63167,63212,'OP_ChatSendFriendsMsg',299,1),(23334,63167,63212,'OP_ChatSendIgnoresMsg',300,1),(23335,63167,63212,'OP_ChatTellChannelMsg',293,1),(23336,63167,63212,'OP_ChatTellUserMsg',294,1),(23337,63167,63212,'OP_ChatToggleFriendMsg',295,1),(23338,63167,63212,'OP_ChatToggleIgnoreMsg',298,1),(23339,63167,63212,'OP_ChatWhoChannelMsg',291,1),(23340,63167,63212,'OP_ClearDataMsg',100,1),(23341,63167,63212,'OP_ClearForLandingMsg',496,1),(23342,63167,63212,'OP_ClearForTakeOffMsg',194,1),(23343,63167,63212,'OP_ClientCmdMsg',60,1),(23344,63167,63212,'OP_ClientFellMsg',389,1),(23345,63167,63212,'OP_ClientIdleBeginMsg',410,1),(23346,63167,63212,'OP_ClientIdleEndMsg',411,1),(23347,63167,63212,'OP_ClientInDeathRegionMsg',390,1),(23348,63167,63212,'OP_ClientTeleportRequestMsg',80,1),(23349,63167,63212,'OP_ClientTeleportToLocationMsg',248,1),(23350,63167,63212,'OP_CloseGroupInviteWindowMsg',401,1),(23351,63167,63212,'OP_CollectAllHouseItemsMsg',155,1),(23352,63167,63212,'OP_ConsignItemRequestMsg',129,1),(23353,63167,63212,'OP_ConsignItemResponseMsg',130,1),(23354,63167,63212,'OP_ConsignmentCloseStoreMsg',128,1),(23355,63167,63212,'OP_ConsignRemoveItemsMsg',382,1),(23356,63167,63212,'OP_ConsignViewCreateMsg',379,1),(23357,63167,63212,'OP_ConsignViewGetPageMsg',380,1),(23358,63167,63212,'OP_ConsignViewReleaseMsg',381,1),(23359,63167,63212,'OP_ConsignViewSortMsg',387,1),(23360,63167,63212,'OP_CorruptedClientMsg',414,1),(23361,63167,63212,'OP_CreateBoatTransportsMsg',254,1),(23362,63167,63212,'OP_CreateCharacterDungeon',551,1),(23363,63167,63212,'OP_CreateCharacterReplyMsg',12,1),(23364,63167,63212,'OP_CreateCharacterRequestMsg',11,1),(23365,63167,63212,'OP_CreateCharFromCBBReplyMsg',431,1),(23366,63167,63212,'OP_CreateCharFromCBBRequestMsg',430,1),(23367,63167,63212,'OP_CreateGuildReplyMsg',123,1),(23368,63167,63212,'OP_CreateGuildRequestMsg',121,1),(23369,63167,63212,'OP_CreateZoneInstanceMsg',31,1),(23370,63167,63212,'OP_CsCategoryRequestMsg',371,1),(23371,63167,63212,'OP_CsCategoryResponseMsg',372,1),(23372,63167,63212,'OP_CSTicketAddCommentMsg',237,1),(23373,63167,63212,'OP_CSTicketChangeNotificationMsg',239,1),(23374,63167,63212,'OP_CSTicketCommentRequestMsg',234,1),(23375,63167,63212,'OP_CSTicketCommentResponseMsg',235,1),(23376,63167,63212,'OP_CSTicketCreateMsg',236,1),(23377,63167,63212,'OP_CSTicketDeleteMsg',238,1),(23378,63167,63212,'OP_CSTicketHeaderRequestMsg',232,1),(23379,63167,63212,'OP_CSTicketInfoMsg',233,1),(23380,63167,63212,'OP_CSToolAccessResponseMsg',392,1),(23381,63167,63212,'OP_CSToolsRequestMsg',251,1),(23382,63167,63212,'OP_CSToolsResponseMsg',252,1),(23383,63167,63212,'OP_CurrentPet',490,1),(23384,63167,63212,'OP_CustomizationPurchaseRequestMs',170,1),(23385,63167,63212,'OP_CustomizationReplyMsg',172,1),(23386,63167,63212,'OP_CustomizationSetRequestMsg',171,1),(23387,63167,63212,'OP_CustomizeHouseDisplay',766,1),(23388,63167,63212,'OP_DailyObjectives',601,1),(23389,63167,63212,'OP_DefaultGroupOptionsMsg',201,1),(23390,63167,63212,'OP_DefaultGroupOptionsRequestMsg',200,1),(23391,63167,63212,'OP_DeityAbilityWindow',621,1),(23392,63167,63212,'OP_DeleteCharacterReplyMsg',19,1),(23393,63167,63212,'OP_DeleteCharacterRequestMsg',18,1),(23394,63167,63212,'OP_DeleteGuildMsg',126,1),(23395,63167,63212,'OP_DestUpdateReq',213,1),(23396,63167,63212,'OP_DialogCloseMsg',112,1),(23397,63167,63212,'OP_DialogSelectMsg',111,1),(23398,63167,63212,'OP_DispatchClientCmdMsg',62,1),(23399,63167,63212,'OP_DispatchESMsg',61,1),(23400,63167,63212,'OP_DispatchMsg',456,1),(23401,63167,63212,'OP_DispatchSpellCmdMsg',182,1),(23402,63167,63212,'OP_DisplayDebugNLLPointsMsg',258,1),(23403,63167,63212,'OP_DisplayEventMsg',457,1),(23404,63167,63212,'OP_DisplayExchangeScreenMsg',449,1),(23405,63167,63212,'OP_DisplayGroupOptionsScreenMsg',203,1),(23406,63167,63212,'OP_DisplayInnVisitScreenMsg',205,1),(23407,63167,63212,'OP_DisplayMailScreenMsg',409,1),(23408,63167,63212,'OP_DisplayTSEventReactionMsg',228,1),(23409,63167,63212,'OP_DisplayWarningMsg',269,1),(23410,63167,63212,'OP_DoneLoadingEntityResourcesMsg',38,1),(23411,63167,63212,'OP_DoneLoadingZoneResourcesMsg',36,1),(23412,63167,63212,'OP_DoneSendingInitialEntitiesMsg',37,1),(23413,63167,63212,'OP_DressingRoom',515,1),(23414,63167,63212,'OP_DumpSchedulerMsg',206,1),(23415,63167,63212,'OP_DungeonMakerEnter',552,1),(23416,63167,63212,'OP_DungeonMakerItemRequest',556,1),(23417,63167,63212,'OP_DungeonMakerItemResponse',586,1),(23418,63167,63212,'OP_DungeonMakerToolboxList',558,1),(23419,63167,63212,'OP_DungeonMakerUnknown',559,1),(23420,63167,63212,'OP_DungeonMakerUnknown1',560,1),(23421,63167,63212,'OP_DungeonPlayAsAvatarList',780,1),(23422,63167,63212,'OP_DungeonPlayAsAvatarSelected',781,1),(23423,63167,63212,'OP_EarlyLandingRequestMsg',491,1),(23424,63167,63212,'OP_EncounterBrokenMsg',267,1),(23425,63167,63212,'OP_EnterHouseMsg',157,1),(23426,63167,63212,'OP_EnterMoveObjectModeMsg',164,1),(23427,63167,63212,'OP_EntityVerbsReplyMsg',184,1),(23428,63167,63212,'OP_EntityVerbsRequestMsg',183,1),(23429,63167,63212,'OP_EntityVerbsVerbMsg',185,1),(23430,63167,63212,'OP_EqArenaResultsCmd',731,1),(23431,63167,63212,'OP_EqAvailWorldChannelsCmd',718,1),(23432,63167,63212,'OP_EqBetaCopyRequest',639,1),(23433,63167,63212,'OP_EqCannedEmoteCmd',660,1),(23434,63167,63212,'OP_EqChatChannelUpdateCmd',716,1),(23435,63167,63212,'OP_EqChoiceWinCmd',697,1),(23436,63167,63212,'OP_EqCloseWindowCmd',689,1),(23437,63167,63212,'OP_EqCollectionFilterCmd',676,1),(23438,63167,63212,'OP_EqCollectionItemCmd',677,1),(23439,63167,63212,'OP_EqCollectionUpdateCmd',675,1),(23440,63167,63212,'OP_EqConsignmentItemsCmd',721,1),(23441,63167,63212,'OP_EqCreateGhostCmd',642,1),(23442,63167,63212,'OP_EqCreateListBoxCmd',657,1),(23443,63167,63212,'OP_EqCreateSignWidgetCmd',644,1),(23444,63167,63212,'OP_EqCreateWidgetCmd',643,1),(23445,63167,63212,'OP_EqDebugPVDCmd',710,1),(23446,63167,63212,'OP_EqDestroyGhostCmd',645,1),(23447,63167,63212,'OP_EqDialogCloseCmd',673,1),(23448,63167,63212,'OP_EqDialogOpenCmd',672,1),(23449,63167,63212,'OP_EqDisplaySpellFailCmd',693,1),(23450,63167,63212,'OP_EqDisplayTextCmd',641,1),(23451,63167,63212,'OP_EqDrawablePathGraphCmd',671,1),(23452,63167,63212,'OP_EqEnableGameEventCmd',703,1),(23453,63167,63212,'OP_EqEnableWindowCmd',705,1),(23454,63167,63212,'OP_EqExamineInfoCmd',688,1),(23455,63167,63212,'OP_EqFactionUpdateCmd',674,1),(23456,63167,63212,'OP_EqFlashWindowCmd',706,1),(23457,63167,63212,'OP_EqGetProbsCmd',714,1),(23458,63167,63212,'OP_EqGroupMemberRemovedCmd',667,1),(23459,63167,63212,'OP_EqGuildBankEventActionCmd',732,1),(23460,63167,63212,'OP_EqGuildBankExamineInfoCmd',733,1),(23461,63167,63212,'OP_EqHearChainEffectCmd',668,1),(23462,63167,63212,'OP_EqHearChatCmd',640,1),(23463,63167,63212,'OP_EqHearCombatCmd',649,1),(23464,63167,63212,'OP_EqHearConsiderCmd',655,1),(23465,63167,63212,'OP_EqHearDeathCmd',666,1),(23466,63167,63212,'OP_EQHearDispellCmd',778,1),(23467,63167,63212,'OP_EqHearDrowningCmd',665,1),(23468,63167,63212,'OP_EqHearHealCmd',715,1),(23469,63167,63212,'OP_EqHearPlayFlavorCmd',708,1),(23470,63167,63212,'OP_EQHearProcCmd',651,1),(23471,63167,63212,'OP_EQHearResEffectCmd',652,1),(23472,63167,63212,'OP_EqHearSpellCastCmd',650,1),(23473,63167,63212,'OP_EqHearSpellFizzleCmd',654,1),(23474,63167,63212,'OP_EqHearSpellInterruptCmd',653,1),(23475,63167,63212,'OP_EqHearSpellNoLandCmd',734,1),(23476,63167,63212,'OP_EQHearThreatCmd',772,1),(23477,63167,63212,'OP_EqHelpPathClearCmd',686,1),(23478,63167,63212,'OP_EqHelpPathCmd',685,1),(23479,63167,63212,'OP_EqInspectPCResultsCmd',670,1),(23480,63167,63212,'OP_EqInstructionWindowCloseCmd',700,1),(23481,63167,63212,'OP_EqInstructionWindowCmd',699,1),(23482,63167,63212,'OP_EqInstructionWindowGoalCmd',701,1),(23483,63167,63212,'OP_EqInstructionWindowTaskCmd',702,1),(23484,63167,63212,'OP_EqJunctionListCmd',691,1),(23485,63167,63212,'OP_EqMapExplorationCmd',724,1),(23486,63167,63212,'OP_EqMentoring',679,1),(23487,63167,63212,'OP_EqPlaySound3DCmd',663,1),(23488,63167,63212,'OP_EqPlaySoundCmd',662,1),(23489,63167,63212,'OP_EqPlayVoiceCmd',664,1),(23490,63167,63212,'OP_EqQuestGroupCmd',681,1),(23491,63167,63212,'OP_EqQuestionnaireCmd',712,1),(23492,63167,63212,'OP_EqQuestJournalReplyCmd',680,1),(23493,63167,63212,'OP_EqQuestJournalUpdateCmd',678,1),(23494,63167,63212,'OP_EqReceiveOfferCmd',669,1),(23495,63167,63212,'OP_EqResurrectedCmd',696,1),(23496,63167,63212,'OP_EqSetControlGhostCmd',647,1),(23497,63167,63212,'OP_EqSetDebugPathPointsCmd',658,1),(23498,63167,63212,'OP_EqSetDefaultVerbCmd',698,1),(23499,63167,63212,'OP_EqSetPOVGhostCmd',648,1),(23500,63167,63212,'OP_EqShowBookCmd',711,1),(23501,63167,63212,'OP_EqShowDeathWindowCmd',692,1),(23502,63167,63212,'OP_EqShowWindowCmd',704,1),(23503,63167,63212,'OP_EqSpellCastEndCmd',695,1),(23504,63167,63212,'OP_EqSpellCastStartCmd',694,1),(23505,63167,63212,'OP_EqSpellMoveToRangeAndRetryCmd',726,1),(23506,63167,63212,'OP_EqStartBrokerCmd',723,1),(23507,63167,63212,'OP_EqStateCmd',661,1),(23508,63167,63212,'OP_EqStoreLogCmd',725,1),(23509,63167,63212,'OP_EqUpdateBankCmd',687,1),(23510,63167,63212,'OP_EqUpdateGhostCmd',646,1),(23511,63167,63212,'OP_EqUpdateLootCmd',690,1),(23512,63167,63212,'OP_EqUpdateMerchantCmd',682,1),(23513,63167,63212,'OP_EqUpdatePlayerMailCmd',727,1),(23514,63167,63212,'OP_EqUpdatePlayerTradeCmd',684,1),(23515,63167,63212,'OP_EqUpdateSignWidgetCmd',709,1),(23516,63167,63212,'OP_EqUpdateStoreCmd',683,1),(23517,63167,63212,'OP_EqUpdateSubClassesCmd',656,1),(23518,63167,63212,'OP_EqUpdateTargetCmd',719,1),(23519,63167,63212,'OP_EqWhoChannelQueryReplyCmd',717,1),(23520,63167,63212,'OP_ESInitMsg',27,1),(23521,63167,63212,'OP_ESLoginRequestMsg',3,1),(23522,63167,63212,'OP_ESReadyForClientsMsg',28,1),(23523,63167,63212,'OP_ESStatusMsg',102,1),(23524,63167,63212,'OP_ESWeatherRequestEndMsg',107,1),(23525,63167,63212,'OP_ESWeatherRequestMsg',106,1),(23526,63167,63212,'OP_ESZoneInstanceStatusMsg',103,1),(23527,63167,63212,'OP_ExamineConsignmentRequestMsg',174,1),(23528,63167,63212,'OP_ExamineConsignmentResponseMsg',175,1),(23529,63167,63212,'OP_ExamineInfoRequestMsg',259,1),(23530,63167,63212,'OP_ExamineItemRequestMsg',198,1),(23531,63167,63212,'OP_ExitHouseMsg',158,1),(23532,63167,63212,'OP_ExpectClientAsCharacterReplyMs',24,1),(23533,63167,63212,'OP_ExpectClientAsCharacterRequest',34,1),(23534,63167,63212,'OP_ExpPurchWindow',757,1),(23535,63167,63212,'OP_FellowshipExpMsg',125,1),(23536,63167,63212,'OP_FlightPathsMsg',418,1),(23537,63167,63212,'OP_GameWorldTimeMsg',45,1),(23538,63167,63212,'OP_GetAuctionAssetIDMsg',446,1),(23539,63167,63212,'OP_GetAuctionAssetIDReplyMsg',447,1),(23540,63167,63212,'OP_GetAvatarAccessRequestForCSToo',397,1),(23541,63167,63212,'OP_GetCharacterSerializedReplyMsg',429,1),(23542,63167,63212,'OP_GetCharacterSerializedRequestM',428,1),(23543,63167,63212,'OP_GroupCreatedMsg',90,1),(23544,63167,63212,'OP_GroupDestroyedMsg',91,1),(23545,63167,63212,'OP_GroupLeaderChangedMsg',95,1),(23546,63167,63212,'OP_GroupMemberAddedMsg',92,1),(23547,63167,63212,'OP_GroupMemberRemovedMsg',93,1),(23548,63167,63212,'OP_GroupOptionsMsg',202,1),(23549,63167,63212,'OP_GroupRemovedFromGroupMsg',94,1),(23550,63167,63212,'OP_GroupResendOOZDataMsg',96,1),(23551,63167,63212,'OP_GroupSettingsChangedMsg',97,1),(23552,63167,63212,'OP_GuildBankActionMsg',278,1),(23553,63167,63212,'OP_GuildBankActionResponseMsg',279,1),(23554,63167,63212,'OP_GuildBankEventListMsg',283,1),(23555,63167,63212,'OP_GuildBankItemDetailsRequestMsg',280,1),(23556,63167,63212,'OP_GuildBankItemDetailsResponseMs',281,1),(23557,63167,63212,'OP_GuildBankUpdateMsg',282,1),(23558,63167,63212,'OP_GuildEventActionMsg',273,1),(23559,63167,63212,'OP_GuildEventAddMsg',272,1),(23560,63167,63212,'OP_GuildEventDetailsMsg',276,1),(23561,63167,63212,'OP_GuildEventListMsg',274,1),(23562,63167,63212,'OP_GuildEventMsg',271,1),(23563,63167,63212,'OP_GuildMembershipResponseMsg',361,1),(23564,63167,63212,'OP_GuildRecruiting',737,1),(23565,63167,63212,'OP_GuildRecruitingDetails',738,1),(23566,63167,63212,'OP_GuildRecruitingImage',739,1),(23567,63167,63212,'OP_GuildRecruitingMemberInfo',736,1),(23568,63167,63212,'OP_GuildsayMsg',124,1),(23569,63167,63212,'OP_GuildStatusUpdate',730,1),(23570,63167,63212,'OP_GuildUpdateMsg',127,1),(23571,63167,63212,'OP_HeritageMsg',10023,1),(23572,63167,63212,'OP_HideIllusionsMsg',197,1),(23573,63167,63212,'OP_HouseAccessRemoveMsg',161,1),(23574,63167,63212,'OP_HouseAccessSetMsg',160,1),(23575,63167,63212,'OP_HouseCustomizationScreenMsg',169,1),(23576,63167,63212,'OP_HouseDefaultAccessSetMsg',159,1),(23577,63167,63212,'OP_HouseDeletedRemotelyMsg',145,1),(23578,63167,63212,'OP_HouseItemsList',489,1),(23579,63167,63212,'OP_HousingDataChangedMsg',432,1),(23580,63167,63212,'OP_HousingRestoreMsg',433,1),(23581,63167,63212,'OP_InspectPlayerMsg',367,1),(23582,63167,63212,'OP_InspectPlayerRequestMsg',455,1),(23583,63167,63212,'OP_InviteRequestMsg',452,1),(23584,63167,63212,'OP_InviteResponseMsg',453,1),(23585,63167,63212,'OP_InviteTargetResponseMsg',454,1),(23586,63167,63212,'OP_JoinGuildNotifyMsg',363,1),(23587,63167,63212,'OP_JournalQuestStoryline',779,1),(23588,63167,63212,'OP_KeymapDataMsg',180,1),(23589,63167,63212,'OP_KeymapLoadMsg',178,1),(23590,63167,63212,'OP_KeymapNoneMsg',179,1),(23591,63167,63212,'OP_KeymapSaveMsg',181,1),(23592,63167,63212,'OP_KnowledgebaseRequestMsg',230,1),(23593,63167,63212,'OP_KnowledgebaseResponseMsg',231,1),(23594,63167,63212,'OP_KnowledgeWindowSlotMappingMsg',373,1),(23595,63167,63212,'OP_KnownLanguagesMsg',242,1),(23596,63167,63212,'OP_Launchpad',579,1),(23597,63167,63212,'OP_LeaveGuildNotifyMsg',362,1),(23598,63167,63212,'OP_LevelChangedMsg',265,1),(23599,63167,63212,'OP_LFGGroupSearch',509,1),(23600,63167,63212,'OP_LFGUpdateMsg',522,1),(23601,63167,63212,'OP_LikeOption',139,1),(23602,63167,63212,'OP_LoadCalendarEvents',582,1),(23603,63167,63212,'OP_LoadWelcomeWindow',566,1),(23604,63167,63212,'OP_LoginByNumRequestMsg',1,1),(23605,63167,63212,'OP_LoginReplyMsg',4,1),(23606,63167,63212,'OP_LoginRequestMsg',0,1),(23607,63167,63212,'OP_LootItemsRequestMsg',188,1),(23608,63167,63212,'OP_Lottery',735,1),(23609,63167,63212,'OP_LSCheckAcctLockMsg',207,1),(23610,63167,63212,'OP_LsClientAlertlogReplyMsg',246,1),(23611,63167,63212,'OP_LsClientBaselogReplyMsg',244,1),(23612,63167,63212,'OP_LsClientCrashlogReplyMsg',245,1),(23613,63167,63212,'OP_LsClientVerifylogReplyMsg',247,1),(23614,63167,63212,'OP_LsRequestClientCrashLogMsg',243,1),(23615,63167,63212,'OP_LSServerLockMsg',369,1),(23616,63167,63212,'OP_MacroInitMsg',262,1),(23617,63167,63212,'OP_MacroUpdateMsg',263,1),(23618,63167,63212,'OP_MailCommitSendMessageMsg',348,1),(23619,63167,63212,'OP_MailDeleteMessageMsg',344,1),(23620,63167,63212,'OP_MailEventNotificationMsg',416,1),(23621,63167,63212,'OP_MailGetHeadersReplyMsg',345,1),(23622,63167,63212,'OP_MailGetMessageMsg',342,1),(23623,63167,63212,'OP_MailGetMessageReplyMsg',346,1),(23624,63167,63212,'OP_MailRemoveAttachFromMailMsg',350,1),(23625,63167,63212,'OP_MailSendMessageMsg',343,1),(23626,63167,63212,'OP_MailSendMessageReplyMsg',347,1),(23627,63167,63212,'OP_MailSendSystemMessageMsg',349,1),(23628,63167,63212,'OP_MakeGroupLeaderMsg',89,1),(23629,63167,63212,'OP_MapFogDataInitMsg',399,1),(23630,63167,63212,'OP_MapFogDataUpdateMsg',400,1),(23631,63167,63212,'OP_MapRequest',525,1),(23632,63167,63212,'OP_MarketAddFundsReply',533,1),(23633,63167,63212,'OP_MarketAddFundsRequest',532,1),(23634,63167,63212,'OP_MarketFundsUpdate',530,1),(23635,63167,63212,'OP_MarketPlaceItems',543,1),(23636,63167,63212,'OP_MarketPlacePrices',536,1),(23637,63167,63212,'OP_MarketPurchase',535,1),(23638,63167,63212,'OP_MentorPopup',564,1),(23639,63167,63212,'OP_MercHireWindow',783,1),(23640,63167,63212,'OP_MercUnknown',784,1),(23641,63167,63212,'OP_MigrateBoatTransportMsg',256,1),(23642,63167,63212,'OP_MigrateBoatTransportReplyMsg',257,1),(23643,63167,63212,'OP_MigrateClientToZoneReplyMsg',84,1),(23644,63167,63212,'OP_MigrateClientToZoneRequestMsg',83,1),(23645,63167,63212,'OP_ModifyGuildMsg',270,1),(23646,63167,63212,'OP_MonitorCharacterListMsg',58,1),(23647,63167,63212,'OP_MonitorCharacterListRequestMsg',59,1),(23648,63167,63212,'OP_MonitorReplyMsg',57,1),(23649,63167,63212,'OP_MOTDMsg',46,1),(23650,63167,63212,'OP_MoveableObjectPlacementCriteri',163,1),(23651,63167,63212,'OP_MoveLogUpdateMsg',405,1),(23652,63167,63212,'OP_NotifyApprenticeStoppedMentori',413,1),(23653,63167,63212,'OP_OfferQuestMsg',406,1),(23654,63167,63212,'OP_OnscreenMsgMsg',268,1),(23655,63167,63212,'OP_OpenCharCust',568,1),(23656,63167,63212,'OP_OutOfZoneMemberDataMsg',98,1),(23657,63167,63212,'OP_PaperdollImage',581,1),(23658,63167,63212,'OP_PayHouseUpkeepMsg',162,1),(23659,63167,63212,'OP_PerformCameraShakeMsg',217,1),(23660,63167,63212,'OP_PerformPlayerKnockbackMsg',216,1),(23661,63167,63212,'OP_PetOptions',204,1),(23662,63167,63212,'OP_PetOptionsResponse',585,1),(23663,63167,63212,'OP_PlayCharacterReplyMsg',21,1),(23664,63167,63212,'OP_PlayCharacterRequestMsg',20,1),(23665,63167,63212,'OP_PlayerHouseAccessUpdateMsg',150,1),(23666,63167,63212,'OP_PlayerHouseBaseScreenMsg',148,1),(23667,63167,63212,'OP_PlayerHouseCloseUIMsg',152,1),(23668,63167,63212,'OP_PlayerHouseDisplayStatusMsg',151,1),(23669,63167,63212,'OP_PlayerHousePurchaseScreenMsg',149,1),(23670,63167,63212,'OP_PlayerMadeInstances',143,1),(23671,63167,63212,'OP_PlayerMadeInstancesScreen',142,1),(23672,63167,63212,'OP_PlayerPollAnswer',563,1),(23673,63167,63212,'OP_PlayerPollPopup',562,1),(23674,63167,63212,'OP_PlayLon',516,1),(23675,63167,63212,'OP_PointOfInterest',761,1),(23676,63167,63212,'OP_PointOfInterest2',762,1),(23677,63167,63212,'OP_PopulateSkillMapsMsg',218,1),(23678,63167,63212,'OP_PositionBoatTransportMsg',255,1),(23679,63167,63212,'OP_PositionMoveableObject',165,1),(23680,63167,63212,'OP_PostPossessionMsg',459,1),(23681,63167,63212,'OP_PredictionUpdateMsg',39,1),(23682,63167,63212,'OP_PrePossessionMsg',458,1),(23683,63167,63212,'OP_PromoFlagsDetailsMsg',378,1),(23684,63167,63212,'OP_PublishHouse',141,1),(23685,63167,63212,'OP_PurchaseConsignmentLoreCheckRe',412,1),(23686,63167,63212,'OP_PurchaseConsignmentRequestMsg',131,1),(23687,63167,63212,'OP_QueAllBgSolo',571,1),(23688,63167,63212,'OP_QuestionnaireMsg',264,1),(23689,63167,63212,'OP_QuestJournalInspectMsg',116,1),(23690,63167,63212,'OP_QuestJournalOpenMsg',115,1),(23691,63167,63212,'OP_QuestJournalSetVisibleMsg',117,1),(23692,63167,63212,'OP_QuestJournalWaypointMsg',118,1),(23693,63167,63212,'OP_QuestReward',324,1),(23694,63167,63212,'OP_QuickbarInitMsg',260,1),(23695,63167,63212,'OP_QuickbarUpdateMsg',261,1),(23696,63167,63212,'OP_RaceRestrictionMsg',444,1),(23697,63167,63212,'OP_ReadBookPageMsg',199,1),(23698,63167,63212,'OP_ReadyForTakeOffMsg',195,1),(23699,63167,63212,'OP_ReadyToZoneMsg',86,1),(23700,63167,63212,'OP_RecipeBook',544,1),(23701,63167,63212,'OP_RecipeDetailsMsg',74,1),(23702,63167,63212,'OP_RecipeList',773,1),(23703,63167,63212,'OP_RecipeListUnknown',597,1),(23704,63167,63212,'OP_RelinquishHouseMsg',156,1),(23705,63167,63212,'OP_ReloadLocalizedTxtMsg',359,1),(23706,63167,63212,'OP_RemoteCmdMsg',44,1),(23707,63167,63212,'OP_RemoveClientFromGroupMsg',87,1),(23708,63167,63212,'OP_RemoveConcentrationMsg',114,1),(23709,63167,63212,'OP_RemoveGroupFromGroupMsg',88,1),(23710,63167,63212,'OP_RemoveSpellEffectMsg',113,1),(23711,63167,63212,'OP_RenameGuildMsg',286,1),(23712,63167,63212,'OP_ReplaceableSubMeshesMsg',168,1),(23713,63167,63212,'OP_ReportMsg',384,1),(23714,63167,63212,'OP_RequestCampMsg',52,1),(23715,63167,63212,'OP_RequestGuildBankEventDetailsMs',284,1),(23716,63167,63212,'OP_RequestGuildEventDetailsMsg',275,1),(23717,63167,63212,'OP_RequestGuildInfoMsg',277,1),(23718,63167,63212,'OP_RequestGuildMembershipMsg',360,1),(23719,63167,63212,'OP_RequestHelpRepathMsg',209,1),(23720,63167,63212,'OP_RequestRecipeDetailsMsg',73,1),(23721,63167,63212,'OP_RequestTargetLocMsg',210,1),(23722,63167,63212,'OP_Research',774,1),(23723,63167,63212,'OP_ResendWorldChannelsMsg',448,1),(23724,63167,63212,'OP_ReskinCharacterRequestMsg',15,1),(23725,63167,63212,'OP_RestartZoneMsg',417,1),(23726,63167,63212,'OP_RewardPackMsg',285,1),(23727,63167,63212,'OP_SatMsg',192,1),(23728,63167,63212,'OP_SavageBarInitMsg',584,1),(23729,63167,63212,'OP_SelectZoneTeleporterDestinatio',358,1),(23730,63167,63212,'OP_SendLatestRequestMsg',99,1),(23731,63167,63212,'OP_ServerPlayCharacterReplyMsg',26,1),(23732,63167,63212,'OP_ServerPlayCharacterRequestMsg',25,1),(23733,63167,63212,'OP_SetInstanceDisplayNameMsg',445,1),(23734,63167,63212,'OP_SetRemoteCmdsMsg',43,1),(23735,63167,63212,'OP_SetSocialMsg',101,1),(23736,63167,63212,'OP_ShaderCustomizationMsg',167,1),(23737,63167,63212,'OP_ShowCreateFromRecipeUIMsg',222,1),(23738,63167,63212,'OP_ShowIllusionsMsg',196,1),(23739,63167,63212,'OP_ShowItemCreationProcessUIMsg',226,1),(23740,63167,63212,'OP_ShowRecipeBookMsg',229,1),(23741,63167,63212,'OP_ShowZoneTeleporterDestinations',357,1),(23742,63167,63212,'OP_SitMsg',190,1),(23743,63167,63212,'OP_SkillInfoRequest',518,1),(23744,63167,63212,'OP_SkillInfoResponse',519,1),(23745,63167,63212,'OP_SOEAllAccess',640,1),(23746,63167,63212,'OP_SpellGainedMsg',266,1),(23747,63167,63212,'OP_StandMsg',191,1),(23748,63167,63212,'OP_StoodMsg',193,1),(23749,63167,63212,'OP_StopItemCreationMsg',225,1),(23750,63167,63212,'OP_StoppedLootingMsg',189,1),(23751,63167,63212,'OP_StopTrackingMsg',395,1),(23752,63167,63212,'OP_SubmitCharCust',569,1),(23753,63167,63212,'OP_SupplyDepot',771,1),(23754,63167,63212,'OP_SysClient',221,1),(23755,63167,63212,'OP_TeleportWithinZoneMsg',81,1),(23756,63167,63212,'OP_TeleportWithinZoneNoReloadMsg',82,1),(23757,63167,63212,'OP_TintWidgetsMsg',173,1),(23758,63167,63212,'OP_TitleUpdateMsg',388,1),(23759,63167,63212,'OP_TrackingUpdateMsg',393,1),(23760,63167,63212,'OP_TradeskillList',740,1),(23761,63167,63212,'OP_TraitsList',763,1),(23762,63167,63212,'OP_UIEvent',531,1),(23763,63167,63212,'OP_UIResetMsg',177,1),(23764,63167,63212,'OP_UISettingsResponseMsg',176,1),(23765,63167,63212,'OP_Unknown',797,1),(23766,63167,63212,'OP_UnknownNpcMsg',377,1),(23767,63167,63212,'OP_UpdateActivePublicZonesMsg',376,1),(23768,63167,63212,'OP_UpdateCharacterSheetMsg',65,1),(23769,63167,63212,'OP_UpdateClientPredFlagsMsg',249,1),(23770,63167,63212,'OP_UpdateDebugRadiiMsg',383,1),(23771,63167,63212,'OP_UpdateGroupMemberDataMsg',392,1),(23772,63167,63212,'OP_UpdateHouseAccessDataMsg',147,1),(23773,63167,63212,'OP_UpdateHouseDataMsg',146,1),(23774,63167,63212,'OP_UpdateInventoryMsg',70,1),(23775,63167,63212,'OP_UpdateItemCreationProcessUIMsg',227,1),(23776,63167,63212,'OP_UpdateMotdMsg',211,1),(23777,63167,63212,'OP_UpdateOpportunityMsg',77,1),(23778,63167,63212,'OP_UpdatePositionMsg',41,1),(23779,63167,63212,'OP_UpdateRaidMsg',385,1),(23780,63167,63212,'OP_UpdateRecipeBookMsg',72,1),(23781,63167,63212,'OP_UpdateSkillBookMsg',75,1),(23782,63167,63212,'OP_UpdateSkillsMsg',76,1),(23783,63167,63212,'OP_UpdateSpellBookMsg',68,1),(23784,63167,63212,'OP_UpdateTargetLocMsg',64,1),(23785,63167,63212,'OP_UpdateTargetMsg',63,1),(23786,63167,63212,'OP_UpdateTitleCmd',499,1),(23787,63167,63212,'OP_UseAdornment',751,1),(23788,63167,63212,'OP_VideoUploaded',583,1),(23789,63167,63212,'OP_VoiceChatChannel',524,1),(23790,63167,63212,'OP_VoiceChatServer',767,1),(23791,63167,63212,'OP_WaypointReplyMsg',353,1),(23792,63167,63212,'OP_WaypointRequestMsg',352,1),(23793,63167,63212,'OP_WaypointSelectMsg',354,1),(23794,63167,63212,'OP_WaypointUpdateMsg',355,1),(23795,63167,63212,'OP_Weakness',587,1),(23796,63167,63212,'OP_WhoQueryReplyMsg',56,1),(23797,63167,63212,'OP_WhoQueryRequestMsg',55,1),(23798,63167,63212,'OP_WorldDataChangeMsg',415,1),(23799,63167,63212,'OP_WorldDataUpdateMsg',240,1),(23800,63167,63212,'OP_WorldListMsg',8,1),(23801,63167,63212,'OP_WorldPingMsg',404,1),(23802,63167,63212,'OP_WorldShutdownUpdateMsg',408,1),(23803,63167,63212,'OP_WorldStatusChangeMsg',6,1),(23804,63167,63212,'OP_WorldTravelAvail',576,1),(23805,63167,63212,'OP_WSAcctLockStatusMsg',208,1),(23806,63167,63212,'OP_WSCreateCharacterReplyMsg',14,1),(23807,63167,63212,'OP_WSCreateCharacterRequestMsg',13,1),(23808,63167,63212,'OP_WSLoginRequestMsg',2,1),(23809,63167,63212,'OP_WSServerHideMsg',370,1),(23810,63167,63212,'OP_WSServerLockMsg',368,1),(23811,63167,63212,'OP_WSStatusReplyMsg',5,1),(23812,63167,63212,'OP_ZoneBgInstanceList',572,1),(23813,63167,63212,'OP_ZoneInfoMsg',35,1),(23814,63167,63212,'OP_ZoneInstanceCreateReplyMsg',32,1),(23815,63167,63212,'OP_ZoneInstanceDestroyedMsg',33,1),(23816,63167,63212,'OP_ZoneMOTDMsg',47,1),(23817,63167,63212,'OP_ZonesStatusMsg',105,1),(23818,63167,63212,'OP_ZonesStatusRequestMsg',104,1),(23819,63167,63212,'OP_ZoneToFriendReplyMsg',288,1),(23820,63167,63212,'OP_ZoneToFriendRequestMsg',287,1),(24284,1096,1096,'OP_SubmitCharCust',530,1),(24285,1096,1096,'OP_MentorPopup',526,1),(24286,63213,64644,'OP_AchievementUpdateMsg',778,1),(24287,63213,64644,'OP_AddSocialStructureStandingMsg',253,1),(24288,63213,64644,'OP_AdvancementRequestMsg',398,1),(24289,63213,64644,'OP_AdventureList',494,1),(24290,63213,64644,'OP_AFKUpdateMsg',374,1),(24291,63213,64644,'OP_AfterInvSpellUpdate',71,1),(24292,63213,64644,'OP_AllCharactersDescReplyMsg',10,1),(24293,63213,64644,'OP_AllCharactersDescRequestMsg',9,1),(24294,63213,64644,'OP_AllWSDescRequestMsg',7,1),(24295,63213,64644,'OP_AnonUpdateMsg',375,1),(24296,63213,64644,'OP_ArenaCreate',461,1),(24297,63213,64644,'OP_ArenaGameTypesMsg',450,1),(24298,63213,64644,'OP_ArenaList',462,1),(24299,63213,64644,'OP_ArenaWindow',470,1),(24300,63213,64644,'OP_AttackAllowed',506,1),(24301,63213,64644,'OP_AttackNotAllowed',507,1),(24302,63213,64644,'OP_AuctionAbortMsg',441,1),(24303,63213,64644,'OP_AuctionCharacter',438,1),(24304,63213,64644,'OP_AuctionCharacterReply',439,1),(24305,63213,64644,'OP_AuctionCoin',436,1),(24306,63213,64644,'OP_AuctionCoinReply',437,1),(24307,63213,64644,'OP_AuctionCommitMsg',440,1),(24308,63213,64644,'OP_AuctionItem',434,1),(24309,63213,64644,'OP_AuctionItemReply',435,1),(24310,63213,64644,'OP_AuditAuctionEventMsg',451,1),(24311,63213,64644,'OP_AvatarCreatedMsg',48,1),(24312,63213,64644,'OP_AvatarDestroyedMsg',49,1),(24313,63213,64644,'OP_AvatarUpdateMsg',364,1),(24314,63213,64644,'OP_BadLanguageFilter',524,1),(24315,63213,64644,'OP_BagOptions',508,1),(24316,63213,64644,'OP_BeginItemCreationMsg',224,1),(24317,63213,64644,'OP_BeginTrackingMsg',394,1),(24318,63213,64644,'OP_BioUpdateMsg',366,1),(24319,63213,64644,'OP_BrokerAddBag',296,1),(24320,63213,64644,'OP_BrokerRemoveBag',297,1),(24321,63213,64644,'OP_BrokerSellList',721,1),(24322,63213,64644,'OP_BuyPlayerHouseMsg',153,1),(24323,63213,64644,'OP_BuyPlayerHouseTintMsg',154,1),(24324,63213,64644,'OP_CampAbortedMsg',54,1),(24325,63213,64644,'OP_CampClientMsg',391,1),(24326,63213,64644,'OP_CampStartedMsg',53,1),(24327,63213,64644,'OP_CancelCreateFromRecipeMsg',223,1),(24328,63213,64644,'OP_CancelledFeignMsg',219,1),(24329,63213,64644,'OP_CancelMoveObjectModeMsg',166,1),(24330,63213,64644,'OP_CancelSpellCast',495,1),(24331,63213,64644,'OP_ChangeServerControlFlagMsg',250,1),(24332,63213,64644,'OP_ChangeZoneMsg',79,1),(24333,63213,64644,'OP_CharacterAchievements',777,1),(24334,63213,64644,'OP_CharacterCreatedDungeons',558,1),(24335,63213,64644,'OP_CharacterCurrency',776,1),(24336,63213,64644,'OP_CharacterHousingList',513,1),(24337,63213,64644,'OP_CharacterLinkdeadMsg',419,1),(24338,63213,64644,'OP_CharacterMerc',67,1),(24339,63213,64644,'OP_CharacterMounts',589,1),(24340,63213,64644,'OP_CharacterPet',66,1),(24341,63213,64644,'OP_CharNameChangedMsg',356,1),(24342,63213,64644,'OP_CharRenamed',742,1),(24343,63213,64644,'OP_CharTransferCommitReplyMsg',427,1),(24344,63213,64644,'OP_CharTransferCommitRequestMsg',425,1),(24345,63213,64644,'OP_CharTransferReplyMsg',423,1),(24346,63213,64644,'OP_CharTransferRequestMsg',422,1),(24347,63213,64644,'OP_CharTransferRollbackReplyMsg',426,1),(24348,63213,64644,'OP_CharTransferRollbackRequestMsg',424,1),(24349,63213,64644,'OP_CharTransferStartReplyMsg',421,1),(24350,63213,64644,'OP_CharTransferStartRequestMsg',420,1),(24351,63213,64644,'OP_CharTransferValidateReplyMsg',443,1),(24352,63213,64644,'OP_CharTransferValidateRequestMsg',442,1),(24353,63213,64644,'OP_ChatCreateChannelMsg',289,1),(24354,63213,64644,'OP_ChatFiltersMsg',338,1),(24355,63213,64644,'OP_ChatJoinChannelMsg',290,1),(24356,63213,64644,'OP_ChatLeaveChannelMsg',292,1),(24357,63213,64644,'OP_ChatRelationshipUpdateMsg',187,1),(24358,63213,64644,'OP_ChatSendFriendsMsg',299,1),(24359,63213,64644,'OP_ChatSendIgnoresMsg',300,1),(24360,63213,64644,'OP_ChatTellChannelMsg',293,1),(24361,63213,64644,'OP_ChatTellUserMsg',294,1),(24362,63213,64644,'OP_ChatToggleFriendMsg',295,1),(24363,63213,64644,'OP_ChatToggleIgnoreMsg',298,1),(24364,63213,64644,'OP_ChatWhoChannelMsg',291,1),(24365,63213,64644,'OP_ClearDataMsg',100,1),(24366,63213,64644,'OP_ClearForLandingMsg',497,1),(24367,63213,64644,'OP_ClearForTakeOffMsg',194,1),(24368,63213,64644,'OP_ClientCmdMsg',60,1),(24369,63213,64644,'OP_ClientFellMsg',389,1),(24370,63213,64644,'OP_ClientIdleBeginMsg',410,1),(24371,63213,64644,'OP_ClientIdleEndMsg',411,1),(24372,63213,64644,'OP_ClientInDeathRegionMsg',390,1),(24373,63213,64644,'OP_ClientTeleportRequestMsg',80,1),(24374,63213,64644,'OP_ClientTeleportToLocationMsg',248,1),(24375,63213,64644,'OP_CloseGroupInviteWindowMsg',401,1),(24376,63213,64644,'OP_CollectAllHouseItemsMsg',155,1),(24377,63213,64644,'OP_ConsignItemRequestMsg',129,1),(24378,63213,64644,'OP_ConsignItemResponseMsg',130,1),(24379,63213,64644,'OP_ConsignmentCloseStoreMsg',128,1),(24380,63213,64644,'OP_ConsignRemoveItemsMsg',382,1),(24381,63213,64644,'OP_ConsignViewCreateMsg',379,1),(24382,63213,64644,'OP_ConsignViewGetPageMsg',380,1),(24383,63213,64644,'OP_ConsignViewReleaseMsg',381,1),(24384,63213,64644,'OP_ConsignViewSortMsg',387,1),(24385,63213,64644,'OP_CorruptedClientMsg',414,1),(24386,63213,64644,'OP_CreateBoatTransportsMsg',254,1),(24387,63213,64644,'OP_CreateCharacterDungeon',552,1),(24388,63213,64644,'OP_CreateCharacterReplyMsg',12,1),(24389,63213,64644,'OP_CreateCharacterRequestMsg',11,1),(24390,63213,64644,'OP_CreateCharFromCBBReplyMsg',431,1),(24391,63213,64644,'OP_CreateCharFromCBBRequestMsg',430,1),(24392,63213,64644,'OP_CreateGuildReplyMsg',123,1),(24393,63213,64644,'OP_CreateGuildRequestMsg',121,1),(24394,63213,64644,'OP_CreateZoneInstanceMsg',31,1),(24395,63213,64644,'OP_CsCategoryRequestMsg',371,1),(24396,63213,64644,'OP_CsCategoryResponseMsg',372,1),(24397,63213,64644,'OP_CSTicketAddCommentMsg',237,1),(24398,63213,64644,'OP_CSTicketChangeNotificationMsg',239,1),(24399,63213,64644,'OP_CSTicketCommentRequestMsg',234,1),(24400,63213,64644,'OP_CSTicketCommentResponseMsg',235,1),(24401,63213,64644,'OP_CSTicketCreateMsg',236,1),(24402,63213,64644,'OP_CSTicketDeleteMsg',238,1),(24403,63213,64644,'OP_CSTicketHeaderRequestMsg',232,1),(24404,63213,64644,'OP_CSTicketInfoMsg',233,1),(24405,63213,64644,'OP_CSToolAccessResponseMsg',392,1),(24406,63213,64644,'OP_CSToolsRequestMsg',251,1),(24407,63213,64644,'OP_CSToolsResponseMsg',252,1),(24408,63213,64644,'OP_CurrentPet',490,1),(24409,63213,64644,'OP_CustomizationPurchaseRequestMs',170,1),(24410,63213,64644,'OP_CustomizationReplyMsg',172,1),(24411,63213,64644,'OP_CustomizationSetRequestMsg',171,1),(24412,63213,64644,'OP_CustomizeHouseDisplay',767,1),(24413,63213,64644,'OP_DailyObjectives',602,1),(24414,63213,64644,'OP_DefaultGroupOptionsMsg',201,1),(24415,63213,64644,'OP_DefaultGroupOptionsRequestMsg',200,1),(24416,63213,64644,'OP_DeityAbilityWindow',622,1),(24417,63213,64644,'OP_DeleteCharacterReplyMsg',19,1),(24418,63213,64644,'OP_DeleteCharacterRequestMsg',18,1),(24419,63213,64644,'OP_DeleteGuildMsg',126,1),(24420,63213,64644,'OP_DestUpdateReq',213,1),(24421,63213,64644,'OP_DialogCloseMsg',112,1),(24422,63213,64644,'OP_DialogSelectMsg',111,1),(24423,63213,64644,'OP_DispatchClientCmdMsg',62,1),(24424,63213,64644,'OP_DispatchESMsg',61,1),(24425,63213,64644,'OP_DispatchMsg',456,1),(24426,63213,64644,'OP_DispatchSpellCmdMsg',182,1),(24427,63213,64644,'OP_DisplayDebugNLLPointsMsg',258,1),(24428,63213,64644,'OP_DisplayEventMsg',457,1),(24429,63213,64644,'OP_DisplayExchangeScreenMsg',449,1),(24430,63213,64644,'OP_DisplayGroupOptionsScreenMsg',203,1),(24431,63213,64644,'OP_DisplayInnVisitScreenMsg',205,1),(24432,63213,64644,'OP_DisplayMailScreenMsg',409,1),(24433,63213,64644,'OP_DisplayTSEventReactionMsg',228,1),(24434,63213,64644,'OP_DisplayWarningMsg',269,1),(24435,63213,64644,'OP_DoneLoadingEntityResourcesMsg',38,1),(24436,63213,64644,'OP_DoneLoadingZoneResourcesMsg',36,1),(24437,63213,64644,'OP_DoneSendingInitialEntitiesMsg',37,1),(24438,63213,64644,'OP_DressingRoom',516,1),(24439,63213,64644,'OP_DumpSchedulerMsg',206,1),(24440,63213,64644,'OP_DungeonMakerEnter',553,1),(24441,63213,64644,'OP_DungeonMakerItemRequest',557,1),(24442,63213,64644,'OP_DungeonMakerItemResponse',587,1),(24443,63213,64644,'OP_DungeonMakerToolboxList',559,1),(24444,63213,64644,'OP_DungeonMakerUnknown',560,1),(24445,63213,64644,'OP_DungeonMakerUnknown1',561,1),(24446,63213,64644,'OP_DungeonPlayAsAvatarList',781,1),(24447,63213,64644,'OP_DungeonPlayAsAvatarSelected',782,1),(24448,63213,64644,'OP_EarlyLandingRequestMsg',491,1),(24449,63213,64644,'OP_EncounterBrokenMsg',267,1),(24450,63213,64644,'OP_EnterHouseMsg',157,1),(24451,63213,64644,'OP_EnterMoveObjectModeMsg',164,1),(24452,63213,64644,'OP_EntityVerbsReplyMsg',184,1),(24453,63213,64644,'OP_EntityVerbsRequestMsg',183,1),(24454,63213,64644,'OP_EntityVerbsVerbMsg',185,1),(24455,63213,64644,'OP_EqArenaResultsCmd',732,1),(24456,63213,64644,'OP_EqAvailWorldChannelsCmd',719,1),(24457,63213,64644,'OP_EqBetaCopyRequest',640,1),(24458,63213,64644,'OP_EqCannedEmoteCmd',661,1),(24459,63213,64644,'OP_EqChatChannelUpdateCmd',717,1),(24460,63213,64644,'OP_EqChoiceWinCmd',698,1),(24461,63213,64644,'OP_EqCloseWindowCmd',690,1),(24462,63213,64644,'OP_EqCollectionFilterCmd',677,1),(24463,63213,64644,'OP_EqCollectionItemCmd',678,1),(24464,63213,64644,'OP_EqCollectionUpdateCmd',676,1),(24465,63213,64644,'OP_EqConsignmentItemsCmd',722,1),(24466,63213,64644,'OP_EqCreateGhostCmd',643,1),(24467,63213,64644,'OP_EqCreateListBoxCmd',658,1),(24468,63213,64644,'OP_EqCreateSignWidgetCmd',645,1),(24469,63213,64644,'OP_EqCreateWidgetCmd',644,1),(24470,63213,64644,'OP_EqDebugPVDCmd',711,1),(24471,63213,64644,'OP_EqDestroyGhostCmd',646,1),(24472,63213,64644,'OP_EqDialogCloseCmd',674,1),(24473,63213,64644,'OP_EqDialogOpenCmd',673,1),(24474,63213,64644,'OP_EqDisplaySpellFailCmd',694,1),(24475,63213,64644,'OP_EqDisplayTextCmd',642,1),(24476,63213,64644,'OP_EqDrawablePathGraphCmd',672,1),(24477,63213,64644,'OP_EqEnableGameEventCmd',704,1),(24478,63213,64644,'OP_EqEnableWindowCmd',706,1),(24479,63213,64644,'OP_EqExamineInfoCmd',689,1),(24480,63213,64644,'OP_EqFactionUpdateCmd',675,1),(24481,63213,64644,'OP_EqFlashWindowCmd',707,1),(24482,63213,64644,'OP_EqGetProbsCmd',715,1),(24483,63213,64644,'OP_EqGroupMemberRemovedCmd',668,1),(24484,63213,64644,'OP_EqGuildBankEventActionCmd',733,1),(24485,63213,64644,'OP_EqGuildBankExamineInfoCmd',734,1),(24486,63213,64644,'OP_EqHearChainEffectCmd',669,1),(24487,63213,64644,'OP_EqHearChatCmd',641,1),(24488,63213,64644,'OP_EqHearCombatCmd',650,1),(24489,63213,64644,'OP_EqHearConsiderCmd',656,1),(24490,63213,64644,'OP_EqHearDeathCmd',667,1),(24491,63213,64644,'OP_EQHearDispellCmd',779,1),(24492,63213,64644,'OP_EqHearDrowningCmd',666,1),(24493,63213,64644,'OP_EqHearHealCmd',716,1),(24494,63213,64644,'OP_EqHearPlayFlavorCmd',709,1),(24495,63213,64644,'OP_EQHearProcCmd',652,1),(24496,63213,64644,'OP_EQHearResEffectCmd',653,1),(24497,63213,64644,'OP_EqHearSpellCastCmd',651,1),(24498,63213,64644,'OP_EqHearSpellFizzleCmd',655,1),(24499,63213,64644,'OP_EqHearSpellInterruptCmd',654,1),(24500,63213,64644,'OP_EqHearSpellNoLandCmd',735,1),(24501,63213,64644,'OP_EQHearThreatCmd',773,1),(24502,63213,64644,'OP_EqHelpPathClearCmd',687,1),(24503,63213,64644,'OP_EqHelpPathCmd',686,1),(24504,63213,64644,'OP_EqInspectPCResultsCmd',671,1),(24505,63213,64644,'OP_EqInstructionWindowCloseCmd',701,1),(24506,63213,64644,'OP_EqInstructionWindowCmd',700,1),(24507,63213,64644,'OP_EqInstructionWindowGoalCmd',702,1),(24508,63213,64644,'OP_EqInstructionWindowTaskCmd',703,1),(24509,63213,64644,'OP_EqJunctionListCmd',692,1),(24510,63213,64644,'OP_EqMapExplorationCmd',725,1),(24511,63213,64644,'OP_EqMentoring',680,1),(24512,63213,64644,'OP_EqPlaySound3DCmd',664,1),(24513,63213,64644,'OP_EqPlaySoundCmd',663,1),(24514,63213,64644,'OP_EqPlayVoiceCmd',665,1),(24515,63213,64644,'OP_EqQuestGroupCmd',682,1),(24516,63213,64644,'OP_EqQuestionnaireCmd',713,1),(24517,63213,64644,'OP_EqQuestJournalReplyCmd',681,1),(24518,63213,64644,'OP_EqQuestJournalUpdateCmd',679,1),(24519,63213,64644,'OP_EqReceiveOfferCmd',670,1),(24520,63213,64644,'OP_EqResurrectedCmd',697,1),(24521,63213,64644,'OP_EqSetControlGhostCmd',648,1),(24522,63213,64644,'OP_EqSetDebugPathPointsCmd',659,1),(24523,63213,64644,'OP_EqSetDefaultVerbCmd',699,1),(24524,63213,64644,'OP_EqSetPOVGhostCmd',649,1),(24525,63213,64644,'OP_EqShowBookCmd',712,1),(24526,63213,64644,'OP_EqShowDeathWindowCmd',693,1),(24527,63213,64644,'OP_EqShowWindowCmd',705,1),(24528,63213,64644,'OP_EqSpellCastEndCmd',696,1),(24529,63213,64644,'OP_EqSpellCastStartCmd',695,1),(24530,63213,64644,'OP_EqSpellMoveToRangeAndRetryCmd',727,1),(24531,63213,64644,'OP_EqStartBrokerCmd',724,1),(24532,63213,64644,'OP_EqStateCmd',662,1),(24533,63213,64644,'OP_EqStoreLogCmd',726,1),(24534,63213,64644,'OP_EqUpdateBankCmd',688,1),(24535,63213,64644,'OP_EqUpdateGhostCmd',647,1),(24536,63213,64644,'OP_EqUpdateLootCmd',691,1),(24537,63213,64644,'OP_EqUpdateMerchantCmd',683,1),(24538,63213,64644,'OP_EqUpdatePlayerMailCmd',728,1),(24539,63213,64644,'OP_EqUpdatePlayerTradeCmd',685,1),(24540,63213,64644,'OP_EqUpdateSignWidgetCmd',710,1),(24541,63213,64644,'OP_EqUpdateStoreCmd',684,1),(24542,63213,64644,'OP_EqUpdateSubClassesCmd',657,1),(24543,63213,64644,'OP_EqUpdateTargetCmd',720,1),(24544,63213,64644,'OP_EqWhoChannelQueryReplyCmd',718,1),(24545,63213,64644,'OP_ESInitMsg',27,1),(24546,63213,64644,'OP_ESLoginRequestMsg',3,1),(24547,63213,64644,'OP_ESReadyForClientsMsg',28,1),(24548,63213,64644,'OP_ESStatusMsg',102,1),(24549,63213,64644,'OP_ESWeatherRequestEndMsg',107,1),(24550,63213,64644,'OP_ESWeatherRequestMsg',106,1),(24551,63213,64644,'OP_ESZoneInstanceStatusMsg',103,1),(24552,63213,64644,'OP_ExamineConsignmentRequestMsg',174,1),(24553,63213,64644,'OP_ExamineConsignmentResponseMsg',175,1),(24554,63213,64644,'OP_ExamineInfoRequestMsg',259,1),(24555,63213,64644,'OP_ExamineItemRequestMsg',198,1),(24556,63213,64644,'OP_ExitHouseMsg',158,1),(24557,63213,64644,'OP_ExpectClientAsCharacterReplyMs',24,1),(24558,63213,64644,'OP_ExpectClientAsCharacterRequest',34,1),(24559,63213,64644,'OP_ExpPurchWindow',758,1),(24560,63213,64644,'OP_FellowshipExpMsg',125,1),(24561,63213,64644,'OP_FlightPathsMsg',418,1),(24562,63213,64644,'OP_GameWorldTimeMsg',45,1),(24563,63213,64644,'OP_GetAuctionAssetIDMsg',446,1),(24564,63213,64644,'OP_GetAuctionAssetIDReplyMsg',447,1),(24565,63213,64644,'OP_GetAvatarAccessRequestForCSToo',397,1),(24566,63213,64644,'OP_GetCharacterSerializedReplyMsg',429,1),(24567,63213,64644,'OP_GetCharacterSerializedRequestM',428,1),(24568,63213,64644,'OP_GroupCreatedMsg',90,1),(24569,63213,64644,'OP_GroupDestroyedMsg',91,1),(24570,63213,64644,'OP_GroupLeaderChangedMsg',95,1),(24571,63213,64644,'OP_GroupMemberAddedMsg',92,1),(24572,63213,64644,'OP_GroupMemberRemovedMsg',93,1),(24573,63213,64644,'OP_GroupOptionsMsg',202,1),(24574,63213,64644,'OP_GroupRemovedFromGroupMsg',94,1),(24575,63213,64644,'OP_GroupResendOOZDataMsg',96,1),(24576,63213,64644,'OP_GroupSettingsChangedMsg',97,1),(24577,63213,64644,'OP_GuildBankActionMsg',278,1),(24578,63213,64644,'OP_GuildBankActionResponseMsg',279,1),(24579,63213,64644,'OP_GuildBankEventListMsg',283,1),(24580,63213,64644,'OP_GuildBankItemDetailsRequestMsg',280,1),(24581,63213,64644,'OP_GuildBankItemDetailsResponseMs',281,1),(24582,63213,64644,'OP_GuildBankUpdateMsg',282,1),(24583,63213,64644,'OP_GuildEventActionMsg',273,1),(24584,63213,64644,'OP_GuildEventAddMsg',272,1),(24585,63213,64644,'OP_GuildEventDetailsMsg',276,1),(24586,63213,64644,'OP_GuildEventListMsg',274,1),(24587,63213,64644,'OP_GuildEventMsg',271,1),(24588,63213,64644,'OP_GuildMembershipResponseMsg',361,1),(24589,63213,64644,'OP_GuildRecruiting',738,1),(24590,63213,64644,'OP_GuildRecruitingDetails',739,1),(24591,63213,64644,'OP_GuildRecruitingImage',740,1),(24592,63213,64644,'OP_GuildRecruitingMemberInfo',737,1),(24593,63213,64644,'OP_GuildsayMsg',124,1),(24594,63213,64644,'OP_GuildStatusUpdate',731,1),(24595,63213,64644,'OP_GuildUpdateMsg',127,1),(24596,63213,64644,'OP_HeritageMsg',10024,1),(24597,63213,64644,'OP_HideIllusionsMsg',197,1),(24598,63213,64644,'OP_HouseAccessRemoveMsg',161,1),(24599,63213,64644,'OP_HouseAccessSetMsg',160,1),(24600,63213,64644,'OP_HouseCustomizationScreenMsg',169,1),(24601,63213,64644,'OP_HouseDefaultAccessSetMsg',159,1),(24602,63213,64644,'OP_HouseDeletedRemotelyMsg',145,1),(24603,63213,64644,'OP_HouseItemsList',489,1),(24604,63213,64644,'OP_HousingDataChangedMsg',432,1),(24605,63213,64644,'OP_HousingRestoreMsg',433,1),(24606,63213,64644,'OP_InspectPlayerMsg',367,1),(24607,63213,64644,'OP_InspectPlayerRequestMsg',455,1),(24608,63213,64644,'OP_InviteRequestMsg',452,1),(24609,63213,64644,'OP_InviteResponseMsg',453,1),(24610,63213,64644,'OP_InviteTargetResponseMsg',454,1),(24611,63213,64644,'OP_JoinGuildNotifyMsg',363,1),(24612,63213,64644,'OP_JournalQuestStoryline',780,1),(24613,63213,64644,'OP_KeymapDataMsg',180,1),(24614,63213,64644,'OP_KeymapLoadMsg',178,1),(24615,63213,64644,'OP_KeymapNoneMsg',179,1),(24616,63213,64644,'OP_KeymapSaveMsg',181,1),(24617,63213,64644,'OP_KnowledgebaseRequestMsg',230,1),(24618,63213,64644,'OP_KnowledgebaseResponseMsg',231,1),(24619,63213,64644,'OP_KnowledgeWindowSlotMappingMsg',373,1),(24620,63213,64644,'OP_KnownLanguagesMsg',242,1),(24621,63213,64644,'OP_Launchpad',580,1),(24622,63213,64644,'OP_LeaveGuildNotifyMsg',362,1),(24623,63213,64644,'OP_LevelChangedMsg',265,1),(24624,63213,64644,'OP_LFGGroupSearch',510,1),(24625,63213,64644,'OP_LFGUpdateMsg',523,1),(24626,63213,64644,'OP_LikeOption',139,1),(24627,63213,64644,'OP_LoadCalendarEvents',583,1),(24628,63213,64644,'OP_LoadWelcomeWindow',567,1),(24629,63213,64644,'OP_LoginByNumRequestMsg',1,1),(24630,63213,64644,'OP_LoginReplyMsg',4,1),(24631,63213,64644,'OP_LoginRequestMsg',0,1),(24632,63213,64644,'OP_LootItemsRequestMsg',188,1),(24633,63213,64644,'OP_Lottery',736,1),(24634,63213,64644,'OP_LSCheckAcctLockMsg',207,1),(24635,63213,64644,'OP_LsClientAlertlogReplyMsg',246,1),(24636,63213,64644,'OP_LsClientBaselogReplyMsg',244,1),(24637,63213,64644,'OP_LsClientCrashlogReplyMsg',245,1),(24638,63213,64644,'OP_LsClientVerifylogReplyMsg',247,1),(24639,63213,64644,'OP_LsRequestClientCrashLogMsg',243,1),(24640,63213,64644,'OP_LSServerLockMsg',369,1),(24641,63213,64644,'OP_MacroInitMsg',262,1),(24642,63213,64644,'OP_MacroUpdateMsg',263,1),(24643,63213,64644,'OP_MailCommitSendMessageMsg',348,1),(24644,63213,64644,'OP_MailDeleteMessageMsg',344,1),(24645,63213,64644,'OP_MailEventNotificationMsg',416,1),(24646,63213,64644,'OP_MailGetHeadersReplyMsg',345,1),(24647,63213,64644,'OP_MailGetMessageMsg',342,1),(24648,63213,64644,'OP_MailGetMessageReplyMsg',346,1),(24649,63213,64644,'OP_MailRemoveAttachFromMailMsg',350,1),(24650,63213,64644,'OP_MailSendMessageMsg',343,1),(24651,63213,64644,'OP_MailSendMessageReplyMsg',347,1),(24652,63213,64644,'OP_MailSendSystemMessageMsg',349,1),(24653,63213,64644,'OP_MakeGroupLeaderMsg',89,1),(24654,63213,64644,'OP_MapFogDataInitMsg',399,1),(24655,63213,64644,'OP_MapFogDataUpdateMsg',400,1),(24656,63213,64644,'OP_MapRequest',526,1),(24657,63213,64644,'OP_MarketAddFundsReply',534,1),(24658,63213,64644,'OP_MarketAddFundsRequest',533,1),(24659,63213,64644,'OP_MarketFundsUpdate',531,1),(24660,63213,64644,'OP_MarketPlaceItems',544,1),(24661,63213,64644,'OP_MarketPlacePrices',537,1),(24662,63213,64644,'OP_MarketPurchase',536,1),(24663,63213,64644,'OP_MentorPopup',565,1),(24664,63213,64644,'OP_MercHireWindow',784,1),(24665,63213,64644,'OP_MercUnknown',785,1),(24666,63213,64644,'OP_MigrateBoatTransportMsg',256,1),(24667,63213,64644,'OP_MigrateBoatTransportReplyMsg',257,1),(24668,63213,64644,'OP_MigrateClientToZoneReplyMsg',84,1),(24669,63213,64644,'OP_MigrateClientToZoneRequestMsg',83,1),(24670,63213,64644,'OP_ModifyGuildMsg',270,1),(24671,63213,64644,'OP_MonitorCharacterListMsg',58,1),(24672,63213,64644,'OP_MonitorCharacterListRequestMsg',59,1),(24673,63213,64644,'OP_MonitorReplyMsg',57,1),(24674,63213,64644,'OP_MOTDMsg',46,1),(24675,63213,64644,'OP_MoveableObjectPlacementCriteri',163,1),(24676,63213,64644,'OP_MoveLogUpdateMsg',405,1),(24677,63213,64644,'OP_NotifyApprenticeStoppedMentori',413,1),(24678,63213,64644,'OP_OfferQuestMsg',406,1),(24679,63213,64644,'OP_OnscreenMsgMsg',268,1),(24680,63213,64644,'OP_OpenCharCust',569,1),(24681,63213,64644,'OP_OutOfZoneMemberDataMsg',98,1),(24682,63213,64644,'OP_PaperdollImage',582,1),(24683,63213,64644,'OP_PayHouseUpkeepMsg',162,1),(24684,63213,64644,'OP_PerformCameraShakeMsg',217,1),(24685,63213,64644,'OP_PerformPlayerKnockbackMsg',216,1),(24686,63213,64644,'OP_PetOptions',204,1),(24687,63213,64644,'OP_PetOptionsResponse',586,1),(24688,63213,64644,'OP_PlayCharacterReplyMsg',21,1),(24689,63213,64644,'OP_PlayCharacterRequestMsg',20,1),(24690,63213,64644,'OP_PlayerHouseAccessUpdateMsg',150,1),(24691,63213,64644,'OP_PlayerHouseBaseScreenMsg',148,1),(24692,63213,64644,'OP_PlayerHouseCloseUIMsg',152,1),(24693,63213,64644,'OP_PlayerHouseDisplayStatusMsg',151,1),(24694,63213,64644,'OP_PlayerHousePurchaseScreenMsg',149,1),(24695,63213,64644,'OP_PlayerMadeInstances',143,1),(24696,63213,64644,'OP_PlayerMadeInstancesScreen',142,1),(24697,63213,64644,'OP_PlayerPollAnswer',564,1),(24698,63213,64644,'OP_PlayerPollPopup',563,1),(24699,63213,64644,'OP_PlayLon',517,1),(24700,63213,64644,'OP_PointOfInterest',762,1),(24701,63213,64644,'OP_PointOfInterest2',763,1),(24702,63213,64644,'OP_PopulateSkillMapsMsg',218,1),(24703,63213,64644,'OP_PositionBoatTransportMsg',255,1),(24704,63213,64644,'OP_PositionMoveableObject',165,1),(24705,63213,64644,'OP_PostPossessionMsg',459,1),(24706,63213,64644,'OP_PredictionUpdateMsg',39,1),(24707,63213,64644,'OP_PrePossessionMsg',458,1),(24708,63213,64644,'OP_PromoFlagsDetailsMsg',378,1),(24709,63213,64644,'OP_PublishHouse',141,1),(24710,63213,64644,'OP_PurchaseConsignmentLoreCheckRe',412,1),(24711,63213,64644,'OP_PurchaseConsignmentRequestMsg',131,1),(24712,63213,64644,'OP_QueAllBgSolo',572,1),(24713,63213,64644,'OP_QuestionnaireMsg',264,1),(24714,63213,64644,'OP_QuestJournalInspectMsg',116,1),(24715,63213,64644,'OP_QuestJournalOpenMsg',115,1),(24716,63213,64644,'OP_QuestJournalSetVisibleMsg',117,1),(24717,63213,64644,'OP_QuestJournalWaypointMsg',118,1),(24718,63213,64644,'OP_QuestReward',324,1),(24719,63213,64644,'OP_QuickbarInitMsg',260,1),(24720,63213,64644,'OP_QuickbarUpdateMsg',261,1),(24721,63213,64644,'OP_RaceRestrictionMsg',444,1),(24722,63213,64644,'OP_ReadBookPageMsg',199,1),(24723,63213,64644,'OP_ReadyForTakeOffMsg',195,1),(24724,63213,64644,'OP_ReadyToZoneMsg',86,1),(24725,63213,64644,'OP_RecipeBook',545,1),(24726,63213,64644,'OP_RecipeDetailsMsg',74,1),(24727,63213,64644,'OP_RecipeList',774,1),(24728,63213,64644,'OP_RecipeListUnknown',598,1),(24729,63213,64644,'OP_RelinquishHouseMsg',156,1),(24730,63213,64644,'OP_ReloadLocalizedTxtMsg',359,1),(24731,63213,64644,'OP_RemoteCmdMsg',44,1),(24732,63213,64644,'OP_RemoveClientFromGroupMsg',87,1),(24733,63213,64644,'OP_RemoveConcentrationMsg',114,1),(24734,63213,64644,'OP_RemoveGroupFromGroupMsg',88,1),(24735,63213,64644,'OP_RemoveSpellEffectMsg',113,1),(24736,63213,64644,'OP_RenameGuildMsg',286,1),(24737,63213,64644,'OP_ReplaceableSubMeshesMsg',168,1),(24738,63213,64644,'OP_ReportMsg',384,1),(24739,63213,64644,'OP_RequestCampMsg',52,1),(24740,63213,64644,'OP_RequestGuildBankEventDetailsMs',284,1),(24741,63213,64644,'OP_RequestGuildEventDetailsMsg',275,1),(24742,63213,64644,'OP_RequestGuildInfoMsg',277,1),(24743,63213,64644,'OP_RequestGuildMembershipMsg',360,1),(24744,63213,64644,'OP_RequestHelpRepathMsg',209,1),(24745,63213,64644,'OP_RequestRecipeDetailsMsg',73,1),(24746,63213,64644,'OP_RequestTargetLocMsg',210,1),(24747,63213,64644,'OP_Research',775,1),(24748,63213,64644,'OP_ResendWorldChannelsMsg',448,1),(24749,63213,64644,'OP_ReskinCharacterRequestMsg',15,1),(24750,63213,64644,'OP_RestartZoneMsg',417,1),(24751,63213,64644,'OP_RewardPackMsg',285,1),(24752,63213,64644,'OP_SatMsg',192,1),(24753,63213,64644,'OP_SavageBarInitMsg',585,1),(24754,63213,64644,'OP_SelectZoneTeleporterDestinatio',358,1),(24755,63213,64644,'OP_SendLatestRequestMsg',99,1),(24756,63213,64644,'OP_ServerPlayCharacterReplyMsg',26,1),(24757,63213,64644,'OP_ServerPlayCharacterRequestMsg',25,1),(24758,63213,64644,'OP_SetInstanceDisplayNameMsg',445,1),(24759,63213,64644,'OP_SetRemoteCmdsMsg',43,1),(24760,63213,64644,'OP_SetSocialMsg',101,1),(24761,63213,64644,'OP_ShaderCustomizationMsg',167,1),(24762,63213,64644,'OP_ShowCreateFromRecipeUIMsg',222,1),(24763,63213,64644,'OP_ShowIllusionsMsg',196,1),(24764,63213,64644,'OP_ShowItemCreationProcessUIMsg',226,1),(24765,63213,64644,'OP_ShowRecipeBookMsg',229,1),(24766,63213,64644,'OP_ShowZoneTeleporterDestinations',357,1),(24767,63213,64644,'OP_SitMsg',190,1),(24768,63213,64644,'OP_SkillInfoRequest',519,1),(24769,63213,64644,'OP_SkillInfoResponse',520,1),(24770,63213,64644,'OP_SOEAllAccess',641,1),(24771,63213,64644,'OP_SpellGainedMsg',266,1),(24772,63213,64644,'OP_StandMsg',191,1),(24773,63213,64644,'OP_StoodMsg',193,1),(24774,63213,64644,'OP_StopItemCreationMsg',225,1),(24775,63213,64644,'OP_StoppedLootingMsg',189,1),(24776,63213,64644,'OP_StopTrackingMsg',395,1),(24777,63213,64644,'OP_SubmitCharCust',570,1),(24778,63213,64644,'OP_SupplyDepot',772,1),(24779,63213,64644,'OP_SysClient',221,1),(24780,63213,64644,'OP_TeleportWithinZoneMsg',81,1),(24781,63213,64644,'OP_TeleportWithinZoneNoReloadMsg',82,1),(24782,63213,64644,'OP_TintWidgetsMsg',173,1),(24783,63213,64644,'OP_TitleUpdateMsg',388,1),(24784,63213,64644,'OP_TrackingUpdateMsg',393,1),(24785,63213,64644,'OP_TradeskillList',741,1),(24786,63213,64644,'OP_TraitsList',764,1),(24787,63213,64644,'OP_UIEvent',532,1),(24788,63213,64644,'OP_UIResetMsg',177,1),(24789,63213,64644,'OP_UISettingsResponseMsg',176,1),(24790,63213,64644,'OP_Unknown',798,1),(24791,63213,64644,'OP_UnknownNpcMsg',377,1),(24792,63213,64644,'OP_UpdateActivePublicZonesMsg',376,1),(24793,63213,64644,'OP_UpdateCharacterSheetMsg',65,1),(24794,63213,64644,'OP_UpdateClientPredFlagsMsg',249,1),(24795,63213,64644,'OP_UpdateDebugRadiiMsg',383,1),(24796,63213,64644,'OP_UpdateGroupMemberDataMsg',392,1),(24797,63213,64644,'OP_UpdateHouseAccessDataMsg',147,1),(24798,63213,64644,'OP_UpdateHouseDataMsg',146,1),(24799,63213,64644,'OP_UpdateInventoryMsg',70,1),(24800,63213,64644,'OP_UpdateItemCreationProcessUIMsg',227,1),(24801,63213,64644,'OP_UpdateMotdMsg',211,1),(24802,63213,64644,'OP_UpdateOpportunityMsg',77,1),(24803,63213,64644,'OP_UpdatePositionMsg',41,1),(24804,63213,64644,'OP_UpdateRaidMsg',385,1),(24805,63213,64644,'OP_UpdateRecipeBookMsg',72,1),(24806,63213,64644,'OP_UpdateSkillBookMsg',75,1),(24807,63213,64644,'OP_UpdateSkillsMsg',76,1),(24808,63213,64644,'OP_UpdateSpellBookMsg',68,1),(24809,63213,64644,'OP_UpdateTargetLocMsg',64,1),(24810,63213,64644,'OP_UpdateTargetMsg',63,1),(24811,63213,64644,'OP_UpdateTitleCmd',500,1),(24812,63213,64644,'OP_UseAdornment',752,1),(24813,63213,64644,'OP_VideoUploaded',584,1),(24814,63213,64644,'OP_VoiceChatChannel',525,1),(24815,63213,64644,'OP_VoiceChatServer',768,1),(24816,63213,64644,'OP_WaypointReplyMsg',353,1),(24817,63213,64644,'OP_WaypointRequestMsg',352,1),(24818,63213,64644,'OP_WaypointSelectMsg',354,1),(24819,63213,64644,'OP_WaypointUpdateMsg',355,1),(24820,63213,64644,'OP_Weakness',588,1),(24821,63213,64644,'OP_WhoQueryReplyMsg',56,1),(24822,63213,64644,'OP_WhoQueryRequestMsg',55,1),(24823,63213,64644,'OP_WorldDataChangeMsg',415,1),(24824,63213,64644,'OP_WorldDataUpdateMsg',240,1),(24825,63213,64644,'OP_WorldListMsg',8,1),(24826,63213,64644,'OP_WorldPingMsg',404,1),(24827,63213,64644,'OP_WorldShutdownUpdateMsg',408,1),(24828,63213,64644,'OP_WorldStatusChangeMsg',6,1),(24829,63213,64644,'OP_WorldTravelAvail',577,1),(24830,63213,64644,'OP_WSAcctLockStatusMsg',208,1),(24831,63213,64644,'OP_WSCreateCharacterReplyMsg',14,1),(24832,63213,64644,'OP_WSCreateCharacterRequestMsg',13,1),(24833,63213,64644,'OP_WSLoginRequestMsg',2,1),(24834,63213,64644,'OP_WSServerHideMsg',370,1),(24835,63213,64644,'OP_WSServerLockMsg',368,1),(24836,63213,64644,'OP_WSStatusReplyMsg',5,1),(24837,63213,64644,'OP_ZoneBgInstanceList',573,1),(24838,63213,64644,'OP_ZoneInfoMsg',35,1),(24839,63213,64644,'OP_ZoneInstanceCreateReplyMsg',32,1),(24840,63213,64644,'OP_ZoneInstanceDestroyedMsg',33,1),(24841,63213,64644,'OP_ZoneMOTDMsg',47,1),(24842,63213,64644,'OP_ZonesStatusMsg',105,1),(24843,63213,64644,'OP_ZonesStatusRequestMsg',104,1),(24844,63213,64644,'OP_ZoneToFriendReplyMsg',288,1),(24845,63213,64644,'OP_ZoneToFriendRequestMsg',287,1),(25309,64647,64661,'OP_AchievementUpdateMsg',780,1),(25310,64647,64661,'OP_AddSocialStructureStandingMsg',253,1),(25311,64647,64661,'OP_AdvancementRequestMsg',398,1),(25312,64647,64661,'OP_AdventureList',494,1),(25313,64647,64661,'OP_AFKUpdateMsg',374,1),(25314,64647,64661,'OP_AfterInvSpellUpdate',71,1),(25315,64647,64661,'OP_AllCharactersDescReplyMsg',10,1),(25316,64647,64661,'OP_AllCharactersDescRequestMsg',9,1),(25317,64647,64661,'OP_AllWSDescRequestMsg',7,1),(25318,64647,64661,'OP_AnonUpdateMsg',375,1),(25319,64647,64661,'OP_ArenaCreate',461,1),(25320,64647,64661,'OP_ArenaGameTypesMsg',450,1),(25321,64647,64661,'OP_ArenaList',462,1),(25322,64647,64661,'OP_ArenaWindow',470,1),(25323,64647,64661,'OP_AttackAllowed',506,1),(25324,64647,64661,'OP_AttackNotAllowed',507,1),(25325,64647,64661,'OP_AuctionAbortMsg',441,1),(25326,64647,64661,'OP_AuctionCharacter',438,1),(25327,64647,64661,'OP_AuctionCharacterReply',439,1),(25328,64647,64661,'OP_AuctionCoin',436,1),(25329,64647,64661,'OP_AuctionCoinReply',437,1),(25330,64647,64661,'OP_AuctionCommitMsg',440,1),(25331,64647,64661,'OP_AuctionItem',434,1),(25332,64647,64661,'OP_AuctionItemReply',435,1),(25333,64647,64661,'OP_AuditAuctionEventMsg',451,1),(25334,64647,64661,'OP_AvatarCreatedMsg',48,1),(25335,64647,64661,'OP_AvatarDestroyedMsg',49,1),(25336,64647,64661,'OP_AvatarUpdateMsg',364,1),(25337,64647,64661,'OP_BadLanguageFilter',524,1),(25338,64647,64661,'OP_BagOptions',508,1),(25339,64647,64661,'OP_BeginItemCreationMsg',224,1),(25340,64647,64661,'OP_BeginTrackingMsg',394,1),(25341,64647,64661,'OP_BioUpdateMsg',366,1),(25342,64647,64661,'OP_BrokerAddBag',296,1),(25343,64647,64661,'OP_BrokerRemoveBag',297,1),(25344,64647,64661,'OP_BrokerSellList',723,1),(25345,64647,64661,'OP_BuyPlayerHouseMsg',153,1),(25346,64647,64661,'OP_BuyPlayerHouseTintMsg',154,1),(25347,64647,64661,'OP_CampAbortedMsg',54,1),(25348,64647,64661,'OP_CampClientMsg',391,1),(25349,64647,64661,'OP_CampStartedMsg',53,1),(25350,64647,64661,'OP_CancelCreateFromRecipeMsg',223,1),(25351,64647,64661,'OP_CancelledFeignMsg',219,1),(25352,64647,64661,'OP_CancelMoveObjectModeMsg',166,1),(25353,64647,64661,'OP_CancelSpellCast',495,1),(25354,64647,64661,'OP_ChangeServerControlFlagMsg',250,1),(25355,64647,64661,'OP_ChangeZoneMsg',79,1),(25356,64647,64661,'OP_CharacterAchievements',779,1),(25357,64647,64661,'OP_CharacterCreatedDungeons',558,1),(25358,64647,64661,'OP_CharacterCurrency',778,1),(25359,64647,64661,'OP_CharacterHousingList',513,1),(25360,64647,64661,'OP_CharacterLinkdeadMsg',419,1),(25361,64647,64661,'OP_CharacterMerc',67,1),(25362,64647,64661,'OP_CharacterMounts',589,1),(25363,64647,64661,'OP_CharacterPet',66,1),(25364,64647,64661,'OP_CharNameChangedMsg',356,1),(25365,64647,64661,'OP_CharRenamed',744,1),(25366,64647,64661,'OP_CharTransferCommitReplyMsg',427,1),(25367,64647,64661,'OP_CharTransferCommitRequestMsg',425,1),(25368,64647,64661,'OP_CharTransferReplyMsg',423,1),(25369,64647,64661,'OP_CharTransferRequestMsg',422,1),(25370,64647,64661,'OP_CharTransferRollbackReplyMsg',426,1),(25371,64647,64661,'OP_CharTransferRollbackRequestMsg',424,1),(25372,64647,64661,'OP_CharTransferStartReplyMsg',421,1),(25373,64647,64661,'OP_CharTransferStartRequestMsg',420,1),(25374,64647,64661,'OP_CharTransferValidateReplyMsg',443,1),(25375,64647,64661,'OP_CharTransferValidateRequestMsg',442,1),(25376,64647,64661,'OP_ChatCreateChannelMsg',289,1),(25377,64647,64661,'OP_ChatFiltersMsg',338,1),(25378,64647,64661,'OP_ChatJoinChannelMsg',290,1),(25379,64647,64661,'OP_ChatLeaveChannelMsg',292,1),(25380,64647,64661,'OP_ChatRelationshipUpdateMsg',187,1),(25381,64647,64661,'OP_ChatSendFriendsMsg',299,1),(25382,64647,64661,'OP_ChatSendIgnoresMsg',300,1),(25383,64647,64661,'OP_ChatTellChannelMsg',293,1),(25384,64647,64661,'OP_ChatTellUserMsg',294,1),(25385,64647,64661,'OP_ChatToggleFriendMsg',295,1),(25386,64647,64661,'OP_ChatToggleIgnoreMsg',298,1),(25387,64647,64661,'OP_ChatWhoChannelMsg',291,1),(25388,64647,64661,'OP_ClearDataMsg',100,1),(25389,64647,64661,'OP_ClearForLandingMsg',497,1),(25390,64647,64661,'OP_ClearForTakeOffMsg',194,1),(25391,64647,64661,'OP_ClientCmdMsg',60,1),(25392,64647,64661,'OP_ClientFellMsg',389,1),(25393,64647,64661,'OP_ClientIdleBeginMsg',410,1),(25394,64647,64661,'OP_ClientIdleEndMsg',411,1),(25395,64647,64661,'OP_ClientInDeathRegionMsg',390,1),(25396,64647,64661,'OP_ClientTeleportRequestMsg',80,1),(25397,64647,64661,'OP_ClientTeleportToLocationMsg',248,1),(25398,64647,64661,'OP_CloseGroupInviteWindowMsg',401,1),(25399,64647,64661,'OP_CollectAllHouseItemsMsg',155,1),(25400,64647,64661,'OP_ConsignItemRequestMsg',129,1),(25401,64647,64661,'OP_ConsignItemResponseMsg',130,1),(25402,64647,64661,'OP_ConsignmentCloseStoreMsg',128,1),(25403,64647,64661,'OP_ConsignRemoveItemsMsg',382,1),(25404,64647,64661,'OP_ConsignViewCreateMsg',379,1),(25405,64647,64661,'OP_ConsignViewGetPageMsg',380,1),(25406,64647,64661,'OP_ConsignViewReleaseMsg',381,1),(25407,64647,64661,'OP_ConsignViewSortMsg',387,1),(25408,64647,64661,'OP_CorruptedClientMsg',414,1),(25409,64647,64661,'OP_CreateBoatTransportsMsg',254,1),(25410,64647,64661,'OP_CreateCharacterDungeon',552,1),(25411,64647,64661,'OP_CreateCharacterReplyMsg',12,1),(25412,64647,64661,'OP_CreateCharacterRequestMsg',11,1),(25413,64647,64661,'OP_CreateCharFromCBBReplyMsg',431,1),(25414,64647,64661,'OP_CreateCharFromCBBRequestMsg',430,1),(25415,64647,64661,'OP_CreateGuildReplyMsg',123,1),(25416,64647,64661,'OP_CreateGuildRequestMsg',121,1),(25417,64647,64661,'OP_CreateZoneInstanceMsg',31,1),(25418,64647,64661,'OP_CsCategoryRequestMsg',371,1),(25419,64647,64661,'OP_CsCategoryResponseMsg',372,1),(25420,64647,64661,'OP_CSTicketAddCommentMsg',237,1),(25421,64647,64661,'OP_CSTicketChangeNotificationMsg',239,1),(25422,64647,64661,'OP_CSTicketCommentRequestMsg',234,1),(25423,64647,64661,'OP_CSTicketCommentResponseMsg',235,1),(25424,64647,64661,'OP_CSTicketCreateMsg',236,1),(25425,64647,64661,'OP_CSTicketDeleteMsg',238,1),(25426,64647,64661,'OP_CSTicketHeaderRequestMsg',232,1),(25427,64647,64661,'OP_CSTicketInfoMsg',233,1),(25428,64647,64661,'OP_CSToolAccessResponseMsg',392,1),(25429,64647,64661,'OP_CSToolsRequestMsg',251,1),(25430,64647,64661,'OP_CSToolsResponseMsg',252,1),(25431,64647,64661,'OP_CurrentPet',490,1),(25432,64647,64661,'OP_CustomizationPurchaseRequestMs',170,1),(25433,64647,64661,'OP_CustomizationReplyMsg',172,1),(25434,64647,64661,'OP_CustomizationSetRequestMsg',171,1),(25435,64647,64661,'OP_CustomizeHouseDisplay',769,1),(25436,64647,64661,'OP_DailyObjectives',602,1),(25437,64647,64661,'OP_DefaultGroupOptionsMsg',201,1),(25438,64647,64661,'OP_DefaultGroupOptionsRequestMsg',200,1),(25439,64647,64661,'OP_DeityAbilityWindow',622,1),(25440,64647,64661,'OP_DeleteCharacterReplyMsg',19,1),(25441,64647,64661,'OP_DeleteCharacterRequestMsg',18,1),(25442,64647,64661,'OP_DeleteGuildMsg',126,1),(25443,64647,64661,'OP_DestUpdateReq',213,1),(25444,64647,64661,'OP_DialogCloseMsg',112,1),(25445,64647,64661,'OP_DialogSelectMsg',111,1),(25446,64647,64661,'OP_DispatchClientCmdMsg',62,1),(25447,64647,64661,'OP_DispatchESMsg',61,1),(25448,64647,64661,'OP_DispatchMsg',456,1),(25449,64647,64661,'OP_DispatchSpellCmdMsg',182,1),(25450,64647,64661,'OP_DisplayDebugNLLPointsMsg',258,1),(25451,64647,64661,'OP_DisplayEventMsg',457,1),(25452,64647,64661,'OP_DisplayExchangeScreenMsg',449,1),(25453,64647,64661,'OP_DisplayGroupOptionsScreenMsg',203,1),(25454,64647,64661,'OP_DisplayInnVisitScreenMsg',205,1),(25455,64647,64661,'OP_DisplayMailScreenMsg',409,1),(25456,64647,64661,'OP_DisplayTSEventReactionMsg',228,1),(25457,64647,64661,'OP_DisplayWarningMsg',269,1),(25458,64647,64661,'OP_DoneLoadingEntityResourcesMsg',38,1),(25459,64647,64661,'OP_DoneLoadingZoneResourcesMsg',36,1),(25460,64647,64661,'OP_DoneSendingInitialEntitiesMsg',37,1),(25461,64647,64661,'OP_DressingRoom',516,1),(25462,64647,64661,'OP_DumpSchedulerMsg',206,1),(25463,64647,64661,'OP_DungeonMakerEnter',553,1),(25464,64647,64661,'OP_DungeonMakerItemRequest',557,1),(25465,64647,64661,'OP_DungeonMakerItemResponse',587,1),(25466,64647,64661,'OP_DungeonMakerToolboxList',559,1),(25467,64647,64661,'OP_DungeonMakerUnknown',560,1),(25468,64647,64661,'OP_DungeonMakerUnknown1',561,1),(25469,64647,64661,'OP_DungeonPlayAsAvatarList',783,1),(25470,64647,64661,'OP_DungeonPlayAsAvatarSelected',784,1),(25471,64647,64661,'OP_EarlyLandingRequestMsg',491,1),(25472,64647,64661,'OP_EncounterBrokenMsg',267,1),(25473,64647,64661,'OP_EnterHouseMsg',157,1),(25474,64647,64661,'OP_EnterMoveObjectModeMsg',164,1),(25475,64647,64661,'OP_EntityVerbsReplyMsg',184,1),(25476,64647,64661,'OP_EntityVerbsRequestMsg',183,1),(25477,64647,64661,'OP_EntityVerbsVerbMsg',185,1),(25478,64647,64661,'OP_EqArenaResultsCmd',734,1),(25479,64647,64661,'OP_EqAvailWorldChannelsCmd',721,1),(25480,64647,64661,'OP_EqBetaCopyRequest',640,1),(25481,64647,64661,'OP_EqCannedEmoteCmd',663,1),(25482,64647,64661,'OP_EqChatChannelUpdateCmd',719,1),(25483,64647,64661,'OP_EqChoiceWinCmd',700,1),(25484,64647,64661,'OP_EqCloseWindowCmd',692,1),(25485,64647,64661,'OP_EqCollectionFilterCmd',679,1),(25486,64647,64661,'OP_EqCollectionItemCmd',680,1),(25487,64647,64661,'OP_EqCollectionUpdateCmd',678,1),(25488,64647,64661,'OP_EqConsignmentItemsCmd',724,1),(25489,64647,64661,'OP_EqCreateGhostCmd',645,1),(25490,64647,64661,'OP_EqCreateListBoxCmd',660,1),(25491,64647,64661,'OP_EqCreateSignWidgetCmd',647,1),(25492,64647,64661,'OP_EqCreateWidgetCmd',646,1),(25493,64647,64661,'OP_EqDebugPVDCmd',713,1),(25494,64647,64661,'OP_EqDestroyGhostCmd',648,1),(25495,64647,64661,'OP_EqDialogCloseCmd',676,1),(25496,64647,64661,'OP_EqDialogOpenCmd',675,1),(25497,64647,64661,'OP_EqDisplaySpellFailCmd',696,1),(25498,64647,64661,'OP_EqDisplayTextCmd',644,1),(25499,64647,64661,'OP_EqDrawablePathGraphCmd',674,1),(25500,64647,64661,'OP_EqEnableGameEventCmd',706,1),(25501,64647,64661,'OP_EqEnableWindowCmd',708,1),(25502,64647,64661,'OP_EqExamineInfoCmd',691,1),(25503,64647,64661,'OP_EqFactionUpdateCmd',677,1),(25504,64647,64661,'OP_EqFlashWindowCmd',709,1),(25505,64647,64661,'OP_EqGetProbsCmd',717,1),(25506,64647,64661,'OP_EqGroupMemberRemovedCmd',670,1),(25507,64647,64661,'OP_EqGuildBankEventActionCmd',735,1),(25508,64647,64661,'OP_EqGuildBankExamineInfoCmd',736,1),(25509,64647,64661,'OP_EqHearChainEffectCmd',671,1),(25510,64647,64661,'OP_EqHearChatCmd',643,1),(25511,64647,64661,'OP_EqHearCombatCmd',652,1),(25512,64647,64661,'OP_EqHearConsiderCmd',658,1),(25513,64647,64661,'OP_EqHearDeathCmd',669,1),(25514,64647,64661,'OP_EQHearDispellCmd',781,1),(25515,64647,64661,'OP_EqHearDrowningCmd',668,1),(25516,64647,64661,'OP_EqHearHealCmd',718,1),(25517,64647,64661,'OP_EqHearPlayFlavorCmd',711,1),(25518,64647,64661,'OP_EQHearProcCmd',654,1),(25519,64647,64661,'OP_EQHearResEffectCmd',655,1),(25520,64647,64661,'OP_EqHearSpellCastCmd',653,1),(25521,64647,64661,'OP_EqHearSpellFizzleCmd',657,1),(25522,64647,64661,'OP_EqHearSpellInterruptCmd',656,1),(25523,64647,64661,'OP_EqHearSpellNoLandCmd',737,1),(25524,64647,64661,'OP_EQHearThreatCmd',775,1),(25525,64647,64661,'OP_EqHelpPathClearCmd',689,1),(25526,64647,64661,'OP_EqHelpPathCmd',688,1),(25527,64647,64661,'OP_EqInspectPCResultsCmd',673,1),(25528,64647,64661,'OP_EqInstructionWindowCloseCmd',703,1),(25529,64647,64661,'OP_EqInstructionWindowCmd',702,1),(25530,64647,64661,'OP_EqInstructionWindowGoalCmd',704,1),(25531,64647,64661,'OP_EqInstructionWindowTaskCmd',705,1),(25532,64647,64661,'OP_EqJunctionListCmd',694,1),(25533,64647,64661,'OP_EqMapExplorationCmd',727,1),(25534,64647,64661,'OP_EqMentoring',682,1),(25535,64647,64661,'OP_EqPlaySound3DCmd',666,1),(25536,64647,64661,'OP_EqPlaySoundCmd',665,1),(25537,64647,64661,'OP_EqPlayVoiceCmd',667,1),(25538,64647,64661,'OP_EqQuestGroupCmd',684,1),(25539,64647,64661,'OP_EqQuestionnaireCmd',715,1),(25540,64647,64661,'OP_EqQuestJournalReplyCmd',683,1),(25541,64647,64661,'OP_EqQuestJournalUpdateCmd',681,1),(25542,64647,64661,'OP_EqReceiveOfferCmd',672,1),(25543,64647,64661,'OP_EqResurrectedCmd',699,1),(25544,64647,64661,'OP_EqSetControlGhostCmd',650,1),(25545,64647,64661,'OP_EqSetDebugPathPointsCmd',661,1),(25546,64647,64661,'OP_EqSetDefaultVerbCmd',701,1),(25547,64647,64661,'OP_EqSetPOVGhostCmd',651,1),(25548,64647,64661,'OP_EqShowBookCmd',714,1),(25549,64647,64661,'OP_EqShowDeathWindowCmd',695,1),(25550,64647,64661,'OP_EqShowWindowCmd',707,1),(25551,64647,64661,'OP_EqSpellCastEndCmd',698,1),(25552,64647,64661,'OP_EqSpellCastStartCmd',697,1),(25553,64647,64661,'OP_EqSpellMoveToRangeAndRetryCmd',729,1),(25554,64647,64661,'OP_EqStartBrokerCmd',726,1),(25555,64647,64661,'OP_EqStateCmd',664,1),(25556,64647,64661,'OP_EqStoreLogCmd',728,1),(25557,64647,64661,'OP_EqUpdateBankCmd',690,1),(25558,64647,64661,'OP_EqUpdateGhostCmd',649,1),(25559,64647,64661,'OP_EqUpdateLootCmd',693,1),(25560,64647,64661,'OP_EqUpdateMerchantCmd',685,1),(25561,64647,64661,'OP_EqUpdatePlayerMailCmd',730,1),(25562,64647,64661,'OP_EqUpdatePlayerTradeCmd',687,1),(25563,64647,64661,'OP_EqUpdateSignWidgetCmd',712,1),(25564,64647,64661,'OP_EqUpdateStoreCmd',686,1),(25565,64647,64661,'OP_EqUpdateSubClassesCmd',659,1),(25566,64647,64661,'OP_EqUpdateTargetCmd',722,1),(25567,64647,64661,'OP_EqWhoChannelQueryReplyCmd',720,1),(25568,64647,64661,'OP_ESInitMsg',27,1),(25569,64647,64661,'OP_ESLoginRequestMsg',3,1),(25570,64647,64661,'OP_ESReadyForClientsMsg',28,1),(25571,64647,64661,'OP_ESStatusMsg',102,1),(25572,64647,64661,'OP_ESWeatherRequestEndMsg',107,1),(25573,64647,64661,'OP_ESWeatherRequestMsg',106,1),(25574,64647,64661,'OP_ESZoneInstanceStatusMsg',103,1),(25575,64647,64661,'OP_ExamineConsignmentRequestMsg',174,1),(25576,64647,64661,'OP_ExamineConsignmentResponseMsg',175,1),(25577,64647,64661,'OP_ExamineInfoRequestMsg',259,1),(25578,64647,64661,'OP_ExamineItemRequestMsg',198,1),(25579,64647,64661,'OP_ExitHouseMsg',158,1),(25580,64647,64661,'OP_ExpectClientAsCharacterReplyMs',24,1),(25581,64647,64661,'OP_ExpectClientAsCharacterRequest',34,1),(25582,64647,64661,'OP_ExpPurchWindow',760,1),(25583,64647,64661,'OP_FellowshipExpMsg',125,1),(25584,64647,64661,'OP_FlightPathsMsg',418,1),(25585,64647,64661,'OP_GameWorldTimeMsg',45,1),(25586,64647,64661,'OP_GetAuctionAssetIDMsg',446,1),(25587,64647,64661,'OP_GetAuctionAssetIDReplyMsg',447,1),(25588,64647,64661,'OP_GetAvatarAccessRequestForCSToo',397,1),(25589,64647,64661,'OP_GetCharacterSerializedReplyMsg',429,1),(25590,64647,64661,'OP_GetCharacterSerializedRequestM',428,1),(25591,64647,64661,'OP_GroupCreatedMsg',90,1),(25592,64647,64661,'OP_GroupDestroyedMsg',91,1),(25593,64647,64661,'OP_GroupLeaderChangedMsg',95,1),(25594,64647,64661,'OP_GroupMemberAddedMsg',92,1),(25595,64647,64661,'OP_GroupMemberRemovedMsg',93,1),(25596,64647,64661,'OP_GroupOptionsMsg',202,1),(25597,64647,64661,'OP_GroupRemovedFromGroupMsg',94,1),(25598,64647,64661,'OP_GroupResendOOZDataMsg',96,1),(25599,64647,64661,'OP_GroupSettingsChangedMsg',97,1),(25600,64647,64661,'OP_GuildBankActionMsg',278,1),(25601,64647,64661,'OP_GuildBankActionResponseMsg',279,1),(25602,64647,64661,'OP_GuildBankEventListMsg',283,1),(25603,64647,64661,'OP_GuildBankItemDetailsRequestMsg',280,1),(25604,64647,64661,'OP_GuildBankItemDetailsResponseMs',281,1),(25605,64647,64661,'OP_GuildBankUpdateMsg',282,1),(25606,64647,64661,'OP_GuildEventActionMsg',273,1),(25607,64647,64661,'OP_GuildEventAddMsg',272,1),(25608,64647,64661,'OP_GuildEventDetailsMsg',276,1),(25609,64647,64661,'OP_GuildEventListMsg',274,1),(25610,64647,64661,'OP_GuildEventMsg',271,1),(25611,64647,64661,'OP_GuildMembershipResponseMsg',361,1),(25612,64647,64661,'OP_GuildRecruiting',740,1),(25613,64647,64661,'OP_GuildRecruitingDetails',741,1),(25614,64647,64661,'OP_GuildRecruitingImage',742,1),(25615,64647,64661,'OP_GuildRecruitingMemberInfo',739,1),(25616,64647,64661,'OP_GuildsayMsg',124,1),(25617,64647,64661,'OP_GuildStatusUpdate',733,1),(25618,64647,64661,'OP_GuildUpdateMsg',127,1),(25619,64647,64661,'OP_HeritageMsg',10026,1),(25620,64647,64661,'OP_HideIllusionsMsg',197,1),(25621,64647,64661,'OP_HouseAccessRemoveMsg',161,1),(25622,64647,64661,'OP_HouseAccessSetMsg',160,1),(25623,64647,64661,'OP_HouseCustomizationScreenMsg',169,1),(25624,64647,64661,'OP_HouseDefaultAccessSetMsg',159,1),(25625,64647,64661,'OP_HouseDeletedRemotelyMsg',145,1),(25626,64647,64661,'OP_HouseItemsList',489,1),(25627,64647,64661,'OP_HousingDataChangedMsg',432,1),(25628,64647,64661,'OP_HousingRestoreMsg',433,1),(25629,64647,64661,'OP_InspectPlayerMsg',367,1),(25630,64647,64661,'OP_InspectPlayerRequestMsg',455,1),(25631,64647,64661,'OP_InviteRequestMsg',452,1),(25632,64647,64661,'OP_InviteResponseMsg',453,1),(25633,64647,64661,'OP_InviteTargetResponseMsg',454,1),(25634,64647,64661,'OP_JoinGuildNotifyMsg',363,1),(25635,64647,64661,'OP_JournalQuestStoryline',782,1),(25636,64647,64661,'OP_KeymapDataMsg',180,1),(25637,64647,64661,'OP_KeymapLoadMsg',178,1),(25638,64647,64661,'OP_KeymapNoneMsg',179,1),(25639,64647,64661,'OP_KeymapSaveMsg',181,1),(25640,64647,64661,'OP_KnowledgebaseRequestMsg',230,1),(25641,64647,64661,'OP_KnowledgebaseResponseMsg',231,1),(25642,64647,64661,'OP_KnowledgeWindowSlotMappingMsg',373,1),(25643,64647,64661,'OP_KnownLanguagesMsg',242,1),(25644,64647,64661,'OP_Launchpad',580,1),(25645,64647,64661,'OP_LeaveGuildNotifyMsg',362,1),(25646,64647,64661,'OP_LevelChangedMsg',265,1),(25647,64647,64661,'OP_LFGGroupSearch',510,1),(25648,64647,64661,'OP_LFGUpdateMsg',523,1),(25649,64647,64661,'OP_LikeOption',139,1),(25650,64647,64661,'OP_LoadCalendarEvents',583,1),(25651,64647,64661,'OP_LoadWelcomeWindow',567,1),(25652,64647,64661,'OP_LoginByNumRequestMsg',1,1),(25653,64647,64661,'OP_LoginReplyMsg',4,1),(25654,64647,64661,'OP_LoginRequestMsg',0,1),(25655,64647,64661,'OP_LootItemsRequestMsg',188,1),(25656,64647,64661,'OP_Lottery',738,1),(25657,64647,64661,'OP_LSCheckAcctLockMsg',207,1),(25658,64647,64661,'OP_LsClientAlertlogReplyMsg',246,1),(25659,64647,64661,'OP_LsClientBaselogReplyMsg',244,1),(25660,64647,64661,'OP_LsClientCrashlogReplyMsg',245,1),(25661,64647,64661,'OP_LsClientVerifylogReplyMsg',247,1),(25662,64647,64661,'OP_LsRequestClientCrashLogMsg',243,1),(25663,64647,64661,'OP_LSServerLockMsg',369,1),(25664,64647,64661,'OP_MacroInitMsg',262,1),(25665,64647,64661,'OP_MacroUpdateMsg',263,1),(25666,64647,64661,'OP_MailCommitSendMessageMsg',348,1),(25667,64647,64661,'OP_MailDeleteMessageMsg',344,1),(25668,64647,64661,'OP_MailEventNotificationMsg',416,1),(25669,64647,64661,'OP_MailGetHeadersReplyMsg',345,1),(25670,64647,64661,'OP_MailGetMessageMsg',342,1),(25671,64647,64661,'OP_MailGetMessageReplyMsg',346,1),(25672,64647,64661,'OP_MailRemoveAttachFromMailMsg',350,1),(25673,64647,64661,'OP_MailSendMessageMsg',343,1),(25674,64647,64661,'OP_MailSendMessageReplyMsg',347,1),(25675,64647,64661,'OP_MailSendSystemMessageMsg',349,1),(25676,64647,64661,'OP_MakeGroupLeaderMsg',89,1),(25677,64647,64661,'OP_MapFogDataInitMsg',399,1),(25678,64647,64661,'OP_MapFogDataUpdateMsg',400,1),(25679,64647,64661,'OP_MapRequest',526,1),(25680,64647,64661,'OP_MarketAddFundsReply',534,1),(25681,64647,64661,'OP_MarketAddFundsRequest',533,1),(25682,64647,64661,'OP_MarketFundsUpdate',531,1),(25683,64647,64661,'OP_MarketPlaceItems',544,1),(25684,64647,64661,'OP_MarketPlacePrices',537,1),(25685,64647,64661,'OP_MarketPurchase',536,1),(25686,64647,64661,'OP_MentorPopup',565,1),(25687,64647,64661,'OP_MercHireWindow',786,1),(25688,64647,64661,'OP_MercUnknown',787,1),(25689,64647,64661,'OP_MigrateBoatTransportMsg',256,1),(25690,64647,64661,'OP_MigrateBoatTransportReplyMsg',257,1),(25691,64647,64661,'OP_MigrateClientToZoneReplyMsg',84,1),(25692,64647,64661,'OP_MigrateClientToZoneRequestMsg',83,1),(25693,64647,64661,'OP_ModifyGuildMsg',270,1),(25694,64647,64661,'OP_MonitorCharacterListMsg',58,1),(25695,64647,64661,'OP_MonitorCharacterListRequestMsg',59,1),(25696,64647,64661,'OP_MonitorReplyMsg',57,1),(25697,64647,64661,'OP_MOTDMsg',46,1),(25698,64647,64661,'OP_MoveableObjectPlacementCriteri',163,1),(25699,64647,64661,'OP_MoveLogUpdateMsg',405,1),(25700,64647,64661,'OP_NotifyApprenticeStoppedMentori',413,1),(25701,64647,64661,'OP_OfferQuestMsg',406,1),(25702,64647,64661,'OP_OnscreenMsgMsg',268,1),(25703,64647,64661,'OP_OpenCharCust',569,1),(25704,64647,64661,'OP_OutOfZoneMemberDataMsg',98,1),(25705,64647,64661,'OP_PaperdollImage',582,1),(25706,64647,64661,'OP_PayHouseUpkeepMsg',162,1),(25707,64647,64661,'OP_PerformCameraShakeMsg',217,1),(25708,64647,64661,'OP_PerformPlayerKnockbackMsg',216,1),(25709,64647,64661,'OP_PetOptions',204,1),(25710,64647,64661,'OP_PetOptionsResponse',586,1),(25711,64647,64661,'OP_PlayCharacterReplyMsg',21,1),(25712,64647,64661,'OP_PlayCharacterRequestMsg',20,1),(25713,64647,64661,'OP_PlayerHouseAccessUpdateMsg',150,1),(25714,64647,64661,'OP_PlayerHouseBaseScreenMsg',148,1),(25715,64647,64661,'OP_PlayerHouseCloseUIMsg',152,1),(25716,64647,64661,'OP_PlayerHouseDisplayStatusMsg',151,1),(25717,64647,64661,'OP_PlayerHousePurchaseScreenMsg',149,1),(25718,64647,64661,'OP_PlayerMadeInstances',143,1),(25719,64647,64661,'OP_PlayerMadeInstancesScreen',142,1),(25720,64647,64661,'OP_PlayerPollAnswer',564,1),(25721,64647,64661,'OP_PlayerPollPopup',563,1),(25722,64647,64661,'OP_PlayLon',517,1),(25723,64647,64661,'OP_PointOfInterest',764,1),(25724,64647,64661,'OP_PointOfInterest2',765,1),(25725,64647,64661,'OP_PopulateSkillMapsMsg',218,1),(25726,64647,64661,'OP_PositionBoatTransportMsg',255,1),(25727,64647,64661,'OP_PositionMoveableObject',165,1),(25728,64647,64661,'OP_PostPossessionMsg',459,1),(25729,64647,64661,'OP_PredictionUpdateMsg',39,1),(25730,64647,64661,'OP_PrePossessionMsg',458,1),(25731,64647,64661,'OP_PromoFlagsDetailsMsg',378,1),(25732,64647,64661,'OP_PublishHouse',141,1),(25733,64647,64661,'OP_PurchaseConsignmentLoreCheckRe',412,1),(25734,64647,64661,'OP_PurchaseConsignmentRequestMsg',131,1),(25735,64647,64661,'OP_QueAllBgSolo',572,1),(25736,64647,64661,'OP_QuestionnaireMsg',264,1),(25737,64647,64661,'OP_QuestJournalInspectMsg',116,1),(25738,64647,64661,'OP_QuestJournalOpenMsg',115,1),(25739,64647,64661,'OP_QuestJournalSetVisibleMsg',117,1),(25740,64647,64661,'OP_QuestJournalWaypointMsg',118,1),(25741,64647,64661,'OP_QuestReward',324,1),(25742,64647,64661,'OP_QuickbarInitMsg',260,1),(25743,64647,64661,'OP_QuickbarUpdateMsg',261,1),(25744,64647,64661,'OP_RaceRestrictionMsg',444,1),(25745,64647,64661,'OP_ReadBookPageMsg',199,1),(25746,64647,64661,'OP_ReadyForTakeOffMsg',195,1),(25747,64647,64661,'OP_ReadyToZoneMsg',86,1),(25748,64647,64661,'OP_RecipeBook',545,1),(25749,64647,64661,'OP_RecipeDetailsMsg',74,1),(25750,64647,64661,'OP_RecipeList',776,1),(25751,64647,64661,'OP_RecipeListUnknown',598,1),(25752,64647,64661,'OP_RelinquishHouseMsg',156,1),(25753,64647,64661,'OP_ReloadLocalizedTxtMsg',359,1),(25754,64647,64661,'OP_RemoteCmdMsg',44,1),(25755,64647,64661,'OP_RemoveClientFromGroupMsg',87,1),(25756,64647,64661,'OP_RemoveConcentrationMsg',114,1),(25757,64647,64661,'OP_RemoveGroupFromGroupMsg',88,1),(25758,64647,64661,'OP_RemoveSpellEffectMsg',113,1),(25759,64647,64661,'OP_RenameGuildMsg',286,1),(25760,64647,64661,'OP_ReplaceableSubMeshesMsg',168,1),(25761,64647,64661,'OP_ReportMsg',384,1),(25762,64647,64661,'OP_RequestCampMsg',52,1),(25763,64647,64661,'OP_RequestGuildBankEventDetailsMs',284,1),(25764,64647,64661,'OP_RequestGuildEventDetailsMsg',275,1),(25765,64647,64661,'OP_RequestGuildInfoMsg',277,1),(25766,64647,64661,'OP_RequestGuildMembershipMsg',360,1),(25767,64647,64661,'OP_RequestHelpRepathMsg',209,1),(25768,64647,64661,'OP_RequestRecipeDetailsMsg',73,1),(25769,64647,64661,'OP_RequestTargetLocMsg',210,1),(25770,64647,64661,'OP_Research',777,1),(25771,64647,64661,'OP_ResendWorldChannelsMsg',448,1),(25772,64647,64661,'OP_ReskinCharacterRequestMsg',15,1),(25773,64647,64661,'OP_RestartZoneMsg',417,1),(25774,64647,64661,'OP_RewardPackMsg',285,1),(25775,64647,64661,'OP_SatMsg',192,1),(25776,64647,64661,'OP_SavageBarInitMsg',585,1),(25777,64647,64661,'OP_SelectZoneTeleporterDestinatio',358,1),(25778,64647,64661,'OP_SendLatestRequestMsg',99,1),(25779,64647,64661,'OP_ServerPlayCharacterReplyMsg',26,1),(25780,64647,64661,'OP_ServerPlayCharacterRequestMsg',25,1),(25781,64647,64661,'OP_SetInstanceDisplayNameMsg',445,1),(25782,64647,64661,'OP_SetRemoteCmdsMsg',43,1),(25783,64647,64661,'OP_SetSocialMsg',101,1),(25784,64647,64661,'OP_ShaderCustomizationMsg',167,1),(25785,64647,64661,'OP_ShowCreateFromRecipeUIMsg',222,1),(25786,64647,64661,'OP_ShowIllusionsMsg',196,1),(25787,64647,64661,'OP_ShowItemCreationProcessUIMsg',226,1),(25788,64647,64661,'OP_ShowRecipeBookMsg',229,1),(25789,64647,64661,'OP_ShowZoneTeleporterDestinations',357,1),(25790,64647,64661,'OP_SitMsg',190,1),(25791,64647,64661,'OP_SkillInfoRequest',519,1),(25792,64647,64661,'OP_SkillInfoResponse',520,1),(25793,64647,64661,'OP_SOEAllAccess',643,1),(25794,64647,64661,'OP_SpellGainedMsg',266,1),(25795,64647,64661,'OP_StandMsg',191,1),(25796,64647,64661,'OP_StoodMsg',193,1),(25797,64647,64661,'OP_StopItemCreationMsg',225,1),(25798,64647,64661,'OP_StoppedLootingMsg',189,1),(25799,64647,64661,'OP_StopTrackingMsg',395,1),(25800,64647,64661,'OP_SubmitCharCust',570,1),(25801,64647,64661,'OP_SupplyDepot',774,1),(25802,64647,64661,'OP_SysClient',221,1),(25803,64647,64661,'OP_TeleportWithinZoneMsg',81,1),(25804,64647,64661,'OP_TeleportWithinZoneNoReloadMsg',82,1),(25805,64647,64661,'OP_TintWidgetsMsg',173,1),(25806,64647,64661,'OP_TitleUpdateMsg',388,1),(25807,64647,64661,'OP_TrackingUpdateMsg',393,1),(25808,64647,64661,'OP_TradeskillList',743,1),(25809,64647,64661,'OP_TraitsList',766,1),(25810,64647,64661,'OP_UIEvent',532,1),(25811,64647,64661,'OP_UIResetMsg',177,1),(25812,64647,64661,'OP_UISettingsResponseMsg',176,1),(25813,64647,64661,'OP_Unknown',800,1),(25814,64647,64661,'OP_UnknownNpcMsg',377,1),(25815,64647,64661,'OP_UpdateActivePublicZonesMsg',376,1),(25816,64647,64661,'OP_UpdateCharacterSheetMsg',65,1),(25817,64647,64661,'OP_UpdateClientPredFlagsMsg',249,1),(25818,64647,64661,'OP_UpdateDebugRadiiMsg',383,1),(25819,64647,64661,'OP_UpdateGroupMemberDataMsg',392,1),(25820,64647,64661,'OP_UpdateHouseAccessDataMsg',147,1),(25821,64647,64661,'OP_UpdateHouseDataMsg',146,1),(25822,64647,64661,'OP_UpdateInventoryMsg',70,1),(25823,64647,64661,'OP_UpdateItemCreationProcessUIMsg',227,1),(25824,64647,64661,'OP_UpdateMotdMsg',211,1),(25825,64647,64661,'OP_UpdateOpportunityMsg',77,1),(25826,64647,64661,'OP_UpdatePositionMsg',41,1),(25827,64647,64661,'OP_UpdateRaidMsg',385,1),(25828,64647,64661,'OP_UpdateRecipeBookMsg',72,1),(25829,64647,64661,'OP_UpdateSkillBookMsg',75,1),(25830,64647,64661,'OP_UpdateSkillsMsg',76,1),(25831,64647,64661,'OP_UpdateSpellBookMsg',68,1),(25832,64647,64661,'OP_UpdateTargetLocMsg',64,1),(25833,64647,64661,'OP_UpdateTargetMsg',63,1),(25834,64647,64661,'OP_UpdateTitleCmd',500,1),(25835,64647,64661,'OP_UseAdornment',754,1),(25836,64647,64661,'OP_VideoUploaded',584,1),(25837,64647,64661,'OP_VoiceChatChannel',525,1),(25838,64647,64661,'OP_VoiceChatServer',770,1),(25839,64647,64661,'OP_WaypointReplyMsg',353,1),(25840,64647,64661,'OP_WaypointRequestMsg',352,1),(25841,64647,64661,'OP_WaypointSelectMsg',354,1),(25842,64647,64661,'OP_WaypointUpdateMsg',355,1),(25843,64647,64661,'OP_Weakness',588,1),(25844,64647,64661,'OP_WhoQueryReplyMsg',56,1),(25845,64647,64661,'OP_WhoQueryRequestMsg',55,1),(25846,64647,64661,'OP_WorldDataChangeMsg',415,1),(25847,64647,64661,'OP_WorldDataUpdateMsg',240,1),(25848,64647,64661,'OP_WorldListMsg',8,1),(25849,64647,64661,'OP_WorldPingMsg',404,1),(25850,64647,64661,'OP_WorldShutdownUpdateMsg',408,1),(25851,64647,64661,'OP_WorldStatusChangeMsg',6,1),(25852,64647,64661,'OP_WorldTravelAvail',577,1),(25853,64647,64661,'OP_WSAcctLockStatusMsg',208,1),(25854,64647,64661,'OP_WSCreateCharacterReplyMsg',14,1),(25855,64647,64661,'OP_WSCreateCharacterRequestMsg',13,1),(25856,64647,64661,'OP_WSLoginRequestMsg',2,1),(25857,64647,64661,'OP_WSServerHideMsg',370,1),(25858,64647,64661,'OP_WSServerLockMsg',368,1),(25859,64647,64661,'OP_WSStatusReplyMsg',5,1),(25860,64647,64661,'OP_ZoneBgInstanceList',573,1),(25861,64647,64661,'OP_ZoneInfoMsg',35,1),(25862,64647,64661,'OP_ZoneInstanceCreateReplyMsg',32,1),(25863,64647,64661,'OP_ZoneInstanceDestroyedMsg',33,1),(25864,64647,64661,'OP_ZoneMOTDMsg',47,1),(25865,64647,64661,'OP_ZonesStatusMsg',105,1),(25866,64647,64661,'OP_ZonesStatusRequestMsg',104,1),(25867,64647,64661,'OP_ZoneToFriendReplyMsg',288,1),(25868,64647,64661,'OP_ZoneToFriendRequestMsg',287,1),(26332,64662,64677,'OP_LoginRequestMsg',0,1),(26333,64662,64677,'OP_LoginByNumRequestMsg',1,1),(26334,64662,64677,'OP_WSLoginRequestMsg',2,1),(26335,64662,64677,'OP_ESLoginRequestMsg',3,1),(26336,64662,64677,'OP_LoginReplyMsg',4,1),(26337,64662,64677,'OP_WSStatusReplyMsg',5,1),(26338,64662,64677,'OP_WorldStatusChangeMsg',6,1),(26339,64662,64677,'OP_AllWSDescRequestMsg',7,1),(26340,64662,64677,'OP_WorldListMsg',8,1),(26341,64662,64677,'OP_AllCharactersDescRequestMsg',9,1),(26342,64662,64677,'OP_AllCharactersDescReplyMsg',10,1),(26343,64662,64677,'OP_CreateCharacterRequestMsg',11,1),(26344,64662,64677,'OP_CreateCharacterReplyMsg',12,1),(26345,64662,64677,'OP_WSCreateCharacterRequestMsg',13,1),(26346,64662,64677,'OP_WSCreateCharacterReplyMsg',14,1),(26347,64662,64677,'OP_ReskinCharacterRequestMsg',15,1),(26348,64662,64677,'OP_DeleteCharacterRequestMsg',18,1),(26349,64662,64677,'OP_DeleteCharacterReplyMsg',19,1),(26350,64662,64677,'OP_PlayCharacterRequestMsg',20,1),(26351,64662,64677,'OP_PlayCharacterReplyMsg',21,1),(26352,64662,64677,'OP_ExpectClientAsCharacterReplyMs',24,1),(26353,64662,64677,'OP_ServerPlayCharacterRequestMsg',25,1),(26354,64662,64677,'OP_ServerPlayCharacterReplyMsg',26,1),(26355,64662,64677,'OP_ESInitMsg',27,1),(26356,64662,64677,'OP_ESReadyForClientsMsg',28,1),(26357,64662,64677,'OP_CreateZoneInstanceMsg',31,1),(26358,64662,64677,'OP_ZoneInstanceCreateReplyMsg',32,1),(26359,64662,64677,'OP_ZoneInstanceDestroyedMsg',33,1),(26360,64662,64677,'OP_ExpectClientAsCharacterRequest',34,1),(26361,64662,64677,'OP_ZoneInfoMsg',35,1),(26362,64662,64677,'OP_DoneLoadingZoneResourcesMsg',36,1),(26363,64662,64677,'OP_DoneSendingInitialEntitiesMsg',37,1),(26364,64662,64677,'OP_DoneLoadingEntityResourcesMsg',38,1),(26365,64662,64677,'OP_PredictionUpdateMsg',39,1),(26366,64662,64677,'OP_UpdatePositionMsg',41,1),(26367,64662,64677,'OP_SetRemoteCmdsMsg',43,1),(26368,64662,64677,'OP_RemoteCmdMsg',44,1),(26369,64662,64677,'OP_GameWorldTimeMsg',45,1),(26370,64662,64677,'OP_MOTDMsg',46,1),(26371,64662,64677,'OP_ZoneMOTDMsg',47,1),(26372,64662,64677,'OP_AvatarCreatedMsg',48,1),(26373,64662,64677,'OP_AvatarDestroyedMsg',49,1),(26374,64662,64677,'OP_RequestCampMsg',52,1),(26375,64662,64677,'OP_CampStartedMsg',53,1),(26376,64662,64677,'OP_CampAbortedMsg',54,1),(26377,64662,64677,'OP_WhoQueryRequestMsg',55,1),(26378,64662,64677,'OP_WhoQueryReplyMsg',56,1),(26379,64662,64677,'OP_MonitorReplyMsg',57,1),(26380,64662,64677,'OP_MonitorCharacterListMsg',58,1),(26381,64662,64677,'OP_MonitorCharacterListRequestMsg',59,1),(26382,64662,64677,'OP_ClientCmdMsg',60,1),(26383,64662,64677,'OP_DispatchESMsg',61,1),(26384,64662,64677,'OP_DispatchClientCmdMsg',62,1),(26385,64662,64677,'OP_UpdateTargetMsg',63,1),(26386,64662,64677,'OP_UpdateTargetLocMsg',64,1),(26387,64662,64677,'OP_UpdateCharacterSheetMsg',65,1),(26388,64662,64677,'OP_CharacterPet',66,1),(26389,64662,64677,'OP_CharacterMerc',67,1),(26390,64662,64677,'OP_UpdateSpellBookMsg',68,1),(26391,64662,64677,'OP_UpdateInventoryMsg',70,1),(26392,64662,64677,'OP_AfterInvSpellUpdate',71,1),(26393,64662,64677,'OP_UpdateRecipeBookMsg',72,1),(26394,64662,64677,'OP_RequestRecipeDetailsMsg',73,1),(26395,64662,64677,'OP_RecipeDetailsMsg',74,1),(26396,64662,64677,'OP_UpdateSkillBookMsg',75,1),(26397,64662,64677,'OP_UpdateSkillsMsg',76,1),(26398,64662,64677,'OP_UpdateOpportunityMsg',77,1),(26399,64662,64677,'OP_ChangeZoneMsg',79,1),(26400,64662,64677,'OP_ClientTeleportRequestMsg',80,1),(26401,64662,64677,'OP_TeleportWithinZoneMsg',81,1),(26402,64662,64677,'OP_TeleportWithinZoneNoReloadMsg',82,1),(26403,64662,64677,'OP_MigrateClientToZoneRequestMsg',83,1),(26404,64662,64677,'OP_MigrateClientToZoneReplyMsg',84,1),(26405,64662,64677,'OP_ReadyToZoneMsg',86,1),(26406,64662,64677,'OP_RemoveClientFromGroupMsg',87,1),(26407,64662,64677,'OP_RemoveGroupFromGroupMsg',88,1),(26408,64662,64677,'OP_MakeGroupLeaderMsg',89,1),(26409,64662,64677,'OP_GroupCreatedMsg',90,1),(26410,64662,64677,'OP_GroupDestroyedMsg',91,1),(26411,64662,64677,'OP_GroupMemberAddedMsg',92,1),(26412,64662,64677,'OP_GroupMemberRemovedMsg',93,1),(26413,64662,64677,'OP_GroupRemovedFromGroupMsg',94,1),(26414,64662,64677,'OP_GroupLeaderChangedMsg',95,1),(26415,64662,64677,'OP_GroupResendOOZDataMsg',96,1),(26416,64662,64677,'OP_GroupSettingsChangedMsg',97,1),(26417,64662,64677,'OP_OutOfZoneMemberDataMsg',98,1),(26418,64662,64677,'OP_SendLatestRequestMsg',99,1),(26419,64662,64677,'OP_ClearDataMsg',100,1),(26420,64662,64677,'OP_SetSocialMsg',101,1),(26421,64662,64677,'OP_ESStatusMsg',102,1),(26422,64662,64677,'OP_ESZoneInstanceStatusMsg',103,1),(26423,64662,64677,'OP_ZonesStatusRequestMsg',104,1),(26424,64662,64677,'OP_ZonesStatusMsg',105,1),(26425,64662,64677,'OP_ESWeatherRequestMsg',106,1),(26426,64662,64677,'OP_ESWeatherRequestEndMsg',107,1),(26427,64662,64677,'OP_DialogSelectMsg',111,1),(26428,64662,64677,'OP_DialogCloseMsg',112,1),(26429,64662,64677,'OP_RemoveSpellEffectMsg',113,1),(26430,64662,64677,'OP_RemoveConcentrationMsg',114,1),(26431,64662,64677,'OP_QuestJournalOpenMsg',115,1),(26432,64662,64677,'OP_QuestJournalInspectMsg',116,1),(26433,64662,64677,'OP_QuestJournalSetVisibleMsg',117,1),(26434,64662,64677,'OP_QuestJournalWaypointMsg',118,1),(26435,64662,64677,'OP_CreateGuildRequestMsg',121,1),(26436,64662,64677,'OP_CreateGuildReplyMsg',123,1),(26437,64662,64677,'OP_GuildsayMsg',124,1),(26438,64662,64677,'OP_FellowshipExpMsg',125,1),(26439,64662,64677,'OP_DeleteGuildMsg',126,1),(26440,64662,64677,'OP_GuildUpdateMsg',127,1),(26441,64662,64677,'OP_ConsignmentCloseStoreMsg',128,1),(26442,64662,64677,'OP_ConsignItemRequestMsg',129,1),(26443,64662,64677,'OP_ConsignItemResponseMsg',130,1),(26444,64662,64677,'OP_PurchaseConsignmentRequestMsg',131,1),(26445,64662,64677,'OP_LikeOption',139,1),(26446,64662,64677,'OP_PublishHouse',141,1),(26447,64662,64677,'OP_PlayerMadeInstancesScreen',142,1),(26448,64662,64677,'OP_PlayerMadeInstances',143,1),(26449,64662,64677,'OP_HouseDeletedRemotelyMsg',145,1),(26450,64662,64677,'OP_UpdateHouseDataMsg',146,1),(26451,64662,64677,'OP_UpdateHouseAccessDataMsg',147,1),(26452,64662,64677,'OP_PlayerHouseBaseScreenMsg',148,1),(26453,64662,64677,'OP_PlayerHousePurchaseScreenMsg',149,1),(26454,64662,64677,'OP_PlayerHouseAccessUpdateMsg',150,1),(26455,64662,64677,'OP_PlayerHouseDisplayStatusMsg',151,1),(26456,64662,64677,'OP_PlayerHouseCloseUIMsg',152,1),(26457,64662,64677,'OP_BuyPlayerHouseMsg',153,1),(26458,64662,64677,'OP_BuyPlayerHouseTintMsg',154,1),(26459,64662,64677,'OP_CollectAllHouseItemsMsg',155,1),(26460,64662,64677,'OP_RelinquishHouseMsg',156,1),(26461,64662,64677,'OP_EnterHouseMsg',157,1),(26462,64662,64677,'OP_ExitHouseMsg',158,1),(26463,64662,64677,'OP_HouseDefaultAccessSetMsg',159,1),(26464,64662,64677,'OP_HouseAccessSetMsg',160,1),(26465,64662,64677,'OP_HouseAccessRemoveMsg',161,1),(26466,64662,64677,'OP_PayHouseUpkeepMsg',162,1),(26467,64662,64677,'OP_MoveableObjectPlacementCriteri',163,1),(26468,64662,64677,'OP_EnterMoveObjectModeMsg',164,1),(26469,64662,64677,'OP_PositionMoveableObject',165,1),(26470,64662,64677,'OP_CancelMoveObjectModeMsg',166,1),(26471,64662,64677,'OP_ShaderCustomizationMsg',167,1),(26472,64662,64677,'OP_ReplaceableSubMeshesMsg',168,1),(26473,64662,64677,'OP_HouseCustomizationScreenMsg',169,1),(26474,64662,64677,'OP_CustomizationPurchaseRequestMs',170,1),(26475,64662,64677,'OP_CustomizationSetRequestMsg',171,1),(26476,64662,64677,'OP_CustomizationReplyMsg',172,1),(26477,64662,64677,'OP_TintWidgetsMsg',173,1),(26478,64662,64677,'OP_ExamineConsignmentRequestMsg',174,1),(26479,64662,64677,'OP_ExamineConsignmentResponseMsg',175,1),(26480,64662,64677,'OP_UISettingsResponseMsg',176,1),(26481,64662,64677,'OP_UIResetMsg',177,1),(26482,64662,64677,'OP_KeymapLoadMsg',178,1),(26483,64662,64677,'OP_KeymapNoneMsg',179,1),(26484,64662,64677,'OP_KeymapDataMsg',180,1),(26485,64662,64677,'OP_KeymapSaveMsg',181,1),(26486,64662,64677,'OP_DispatchSpellCmdMsg',182,1),(26487,64662,64677,'OP_EntityVerbsRequestMsg',183,1),(26488,64662,64677,'OP_EntityVerbsReplyMsg',184,1),(26489,64662,64677,'OP_EntityVerbsVerbMsg',185,1),(26490,64662,64677,'OP_ChatRelationshipUpdateMsg',187,1),(26491,64662,64677,'OP_LootItemsRequestMsg',188,1),(26492,64662,64677,'OP_StoppedLootingMsg',189,1),(26493,64662,64677,'OP_SitMsg',190,1),(26494,64662,64677,'OP_StandMsg',191,1),(26495,64662,64677,'OP_SatMsg',192,1),(26496,64662,64677,'OP_StoodMsg',193,1),(26497,64662,64677,'OP_ClearForTakeOffMsg',194,1),(26498,64662,64677,'OP_ReadyForTakeOffMsg',195,1),(26499,64662,64677,'OP_ShowIllusionsMsg',196,1),(26500,64662,64677,'OP_HideIllusionsMsg',197,1),(26501,64662,64677,'OP_ExamineItemRequestMsg',198,1),(26502,64662,64677,'OP_ReadBookPageMsg',199,1),(26503,64662,64677,'OP_DefaultGroupOptionsRequestMsg',200,1),(26504,64662,64677,'OP_DefaultGroupOptionsMsg',201,1),(26505,64662,64677,'OP_GroupOptionsMsg',202,1),(26506,64662,64677,'OP_DisplayGroupOptionsScreenMsg',203,1),(26507,64662,64677,'OP_PetOptions',204,1),(26508,64662,64677,'OP_DisplayInnVisitScreenMsg',205,1),(26509,64662,64677,'OP_DumpSchedulerMsg',206,1),(26510,64662,64677,'OP_LSCheckAcctLockMsg',207,1),(26511,64662,64677,'OP_WSAcctLockStatusMsg',208,1),(26512,64662,64677,'OP_RequestHelpRepathMsg',209,1),(26513,64662,64677,'OP_RequestTargetLocMsg',210,1),(26514,64662,64677,'OP_UpdateMotdMsg',211,1),(26515,64662,64677,'OP_DestUpdateReq',213,1),(26516,64662,64677,'OP_PerformPlayerKnockbackMsg',216,1),(26517,64662,64677,'OP_PerformCameraShakeMsg',217,1),(26518,64662,64677,'OP_PopulateSkillMapsMsg',218,1),(26519,64662,64677,'OP_CancelledFeignMsg',219,1),(26520,64662,64677,'OP_SysClient',221,1),(26521,64662,64677,'OP_ShowCreateFromRecipeUIMsg',222,1),(26522,64662,64677,'OP_CancelCreateFromRecipeMsg',223,1),(26523,64662,64677,'OP_BeginItemCreationMsg',224,1),(26524,64662,64677,'OP_StopItemCreationMsg',225,1),(26525,64662,64677,'OP_ShowItemCreationProcessUIMsg',226,1),(26526,64662,64677,'OP_UpdateItemCreationProcessUIMsg',227,1),(26527,64662,64677,'OP_DisplayTSEventReactionMsg',228,1),(26528,64662,64677,'OP_ShowRecipeBookMsg',229,1),(26529,64662,64677,'OP_KnowledgebaseRequestMsg',230,1),(26530,64662,64677,'OP_KnowledgebaseResponseMsg',231,1),(26531,64662,64677,'OP_CSTicketHeaderRequestMsg',232,1),(26532,64662,64677,'OP_CSTicketInfoMsg',233,1),(26533,64662,64677,'OP_CSTicketCommentRequestMsg',234,1),(26534,64662,64677,'OP_CSTicketCommentResponseMsg',235,1),(26535,64662,64677,'OP_CSTicketCreateMsg',236,1),(26536,64662,64677,'OP_CSTicketAddCommentMsg',237,1),(26537,64662,64677,'OP_CSTicketDeleteMsg',238,1),(26538,64662,64677,'OP_CSTicketChangeNotificationMsg',239,1),(26539,64662,64677,'OP_WorldDataUpdateMsg',240,1),(26540,64662,64677,'OP_KnownLanguagesMsg',242,1),(26541,64662,64677,'OP_LsRequestClientCrashLogMsg',243,1),(26542,64662,64677,'OP_LsClientBaselogReplyMsg',244,1),(26543,64662,64677,'OP_LsClientCrashlogReplyMsg',245,1),(26544,64662,64677,'OP_LsClientAlertlogReplyMsg',246,1),(26545,64662,64677,'OP_LsClientVerifylogReplyMsg',247,1),(26546,64662,64677,'OP_ClientTeleportToLocationMsg',248,1),(26547,64662,64677,'OP_UpdateClientPredFlagsMsg',249,1),(26548,64662,64677,'OP_ChangeServerControlFlagMsg',250,1),(26549,64662,64677,'OP_CSToolsRequestMsg',251,1),(26550,64662,64677,'OP_CSToolsResponseMsg',252,1),(26551,64662,64677,'OP_AddSocialStructureStandingMsg',253,1),(26552,64662,64677,'OP_CreateBoatTransportsMsg',254,1),(26553,64662,64677,'OP_PositionBoatTransportMsg',255,1),(26554,64662,64677,'OP_MigrateBoatTransportMsg',256,1),(26555,64662,64677,'OP_MigrateBoatTransportReplyMsg',257,1),(26556,64662,64677,'OP_DisplayDebugNLLPointsMsg',258,1),(26557,64662,64677,'OP_ExamineInfoRequestMsg',259,1),(26558,64662,64677,'OP_QuickbarInitMsg',260,1),(26559,64662,64677,'OP_QuickbarUpdateMsg',261,1),(26560,64662,64677,'OP_MacroInitMsg',262,1),(26561,64662,64677,'OP_MacroUpdateMsg',263,1),(26562,64662,64677,'OP_QuestionnaireMsg',264,1),(26563,64662,64677,'OP_LevelChangedMsg',265,1),(26564,64662,64677,'OP_SpellGainedMsg',266,1),(26565,64662,64677,'OP_EncounterBrokenMsg',267,1),(26566,64662,64677,'OP_OnscreenMsgMsg',268,1),(26567,64662,64677,'OP_DisplayWarningMsg',269,1),(26568,64662,64677,'OP_ModifyGuildMsg',270,1),(26569,64662,64677,'OP_GuildEventMsg',271,1),(26570,64662,64677,'OP_GuildEventAddMsg',272,1),(26571,64662,64677,'OP_GuildEventActionMsg',273,1),(26572,64662,64677,'OP_GuildEventListMsg',274,1),(26573,64662,64677,'OP_RequestGuildEventDetailsMsg',275,1),(26574,64662,64677,'OP_GuildEventDetailsMsg',276,1),(26575,64662,64677,'OP_RequestGuildInfoMsg',277,1),(26576,64662,64677,'OP_GuildBankActionMsg',278,1),(26577,64662,64677,'OP_GuildBankActionResponseMsg',279,1),(26578,64662,64677,'OP_GuildBankItemDetailsRequestMsg',280,1),(26579,64662,64677,'OP_GuildBankItemDetailsResponseMs',281,1),(26580,64662,64677,'OP_GuildBankUpdateMsg',282,1),(26581,64662,64677,'OP_GuildBankEventListMsg',283,1),(26582,64662,64677,'OP_RequestGuildBankEventDetailsMs',284,1),(26583,64662,64677,'OP_RewardPackMsg',285,1),(26584,64662,64677,'OP_RenameGuildMsg',286,1),(26585,64662,64677,'OP_ZoneToFriendRequestMsg',287,1),(26586,64662,64677,'OP_ZoneToFriendReplyMsg',288,1),(26587,64662,64677,'OP_ChatCreateChannelMsg',289,1),(26588,64662,64677,'OP_ChatJoinChannelMsg',290,1),(26589,64662,64677,'OP_ChatWhoChannelMsg',291,1),(26590,64662,64677,'OP_ChatLeaveChannelMsg',292,1),(26591,64662,64677,'OP_ChatTellChannelMsg',293,1),(26592,64662,64677,'OP_ChatTellUserMsg',294,1),(26593,64662,64677,'OP_ChatToggleFriendMsg',295,1),(26594,64662,64677,'OP_BrokerAddBag',296,1),(26595,64662,64677,'OP_BrokerRemoveBag',297,1),(26596,64662,64677,'OP_ChatToggleIgnoreMsg',298,1),(26597,64662,64677,'OP_ChatSendFriendsMsg',299,1),(26598,64662,64677,'OP_ChatSendIgnoresMsg',300,1),(26599,64662,64677,'OP_QuestReward',324,1),(26600,64662,64677,'OP_ChatFiltersMsg',338,1),(26601,64662,64677,'OP_MailGetMessageMsg',342,1),(26602,64662,64677,'OP_MailSendMessageMsg',343,1),(26603,64662,64677,'OP_MailDeleteMessageMsg',344,1),(26604,64662,64677,'OP_MailGetHeadersReplyMsg',345,1),(26605,64662,64677,'OP_MailGetMessageReplyMsg',346,1),(26606,64662,64677,'OP_MailSendMessageReplyMsg',347,1),(26607,64662,64677,'OP_MailCommitSendMessageMsg',348,1),(26608,64662,64677,'OP_MailSendSystemMessageMsg',349,1),(26609,64662,64677,'OP_MailRemoveAttachFromMailMsg',350,1),(26610,64662,64677,'OP_WaypointRequestMsg',352,1),(26611,64662,64677,'OP_WaypointReplyMsg',353,1),(26612,64662,64677,'OP_WaypointSelectMsg',354,1),(26613,64662,64677,'OP_WaypointUpdateMsg',355,1),(26614,64662,64677,'OP_CharNameChangedMsg',356,1),(26615,64662,64677,'OP_ShowZoneTeleporterDestinations',357,1),(26616,64662,64677,'OP_SelectZoneTeleporterDestinatio',358,1),(26617,64662,64677,'OP_ReloadLocalizedTxtMsg',359,1),(26618,64662,64677,'OP_RequestGuildMembershipMsg',360,1),(26619,64662,64677,'OP_GuildMembershipResponseMsg',361,1),(26620,64662,64677,'OP_LeaveGuildNotifyMsg',362,1),(26621,64662,64677,'OP_JoinGuildNotifyMsg',363,1),(26622,64662,64677,'OP_AvatarUpdateMsg',364,1),(26623,64662,64677,'OP_BioUpdateMsg',366,1),(26624,64662,64677,'OP_InspectPlayerMsg',367,1),(26625,64662,64677,'OP_WSServerLockMsg',368,1),(26626,64662,64677,'OP_LSServerLockMsg',369,1),(26627,64662,64677,'OP_WSServerHideMsg',370,1),(26628,64662,64677,'OP_CsCategoryRequestMsg',371,1),(26629,64662,64677,'OP_CsCategoryResponseMsg',372,1),(26630,64662,64677,'OP_KnowledgeWindowSlotMappingMsg',373,1),(26631,64662,64677,'OP_AFKUpdateMsg',374,1),(26632,64662,64677,'OP_AnonUpdateMsg',375,1),(26633,64662,64677,'OP_UpdateActivePublicZonesMsg',376,1),(26634,64662,64677,'OP_UnknownNpcMsg',377,1),(26635,64662,64677,'OP_PromoFlagsDetailsMsg',378,1),(26636,64662,64677,'OP_ConsignViewCreateMsg',379,1),(26637,64662,64677,'OP_ConsignViewGetPageMsg',380,1),(26638,64662,64677,'OP_ConsignViewReleaseMsg',381,1),(26639,64662,64677,'OP_ConsignRemoveItemsMsg',382,1),(26640,64662,64677,'OP_UpdateDebugRadiiMsg',383,1),(26641,64662,64677,'OP_ReportMsg',384,1),(26642,64662,64677,'OP_UpdateRaidMsg',385,1),(26643,64662,64677,'OP_ConsignViewSortMsg',387,1),(26644,64662,64677,'OP_TitleUpdateMsg',388,1),(26645,64662,64677,'OP_ClientFellMsg',389,1),(26646,64662,64677,'OP_ClientInDeathRegionMsg',390,1),(26647,64662,64677,'OP_CampClientMsg',391,1),(26648,64662,64677,'OP_UpdateGroupMemberDataMsg',392,1),(26649,64662,64677,'OP_CSToolAccessResponseMsg',392,1),(26650,64662,64677,'OP_TrackingUpdateMsg',393,1),(26651,64662,64677,'OP_BeginTrackingMsg',394,1),(26652,64662,64677,'OP_StopTrackingMsg',395,1),(26653,64662,64677,'OP_GetAvatarAccessRequestForCSToo',397,1),(26654,64662,64677,'OP_AdvancementRequestMsg',398,1),(26655,64662,64677,'OP_MapFogDataInitMsg',399,1),(26656,64662,64677,'OP_MapFogDataUpdateMsg',400,1),(26657,64662,64677,'OP_CloseGroupInviteWindowMsg',401,1),(26658,64662,64677,'OP_WorldPingMsg',404,1),(26659,64662,64677,'OP_MoveLogUpdateMsg',405,1),(26660,64662,64677,'OP_OfferQuestMsg',406,1),(26661,64662,64677,'OP_WorldShutdownUpdateMsg',408,1),(26662,64662,64677,'OP_DisplayMailScreenMsg',409,1),(26663,64662,64677,'OP_ClientIdleBeginMsg',410,1),(26664,64662,64677,'OP_ClientIdleEndMsg',411,1),(26665,64662,64677,'OP_PurchaseConsignmentLoreCheckRe',412,1),(26666,64662,64677,'OP_NotifyApprenticeStoppedMentori',413,1),(26667,64662,64677,'OP_CorruptedClientMsg',414,1),(26668,64662,64677,'OP_WorldDataChangeMsg',415,1),(26669,64662,64677,'OP_MailEventNotificationMsg',416,1),(26670,64662,64677,'OP_RestartZoneMsg',417,1),(26671,64662,64677,'OP_FlightPathsMsg',418,1),(26672,64662,64677,'OP_CharacterLinkdeadMsg',419,1),(26673,64662,64677,'OP_CharTransferStartRequestMsg',420,1),(26674,64662,64677,'OP_CharTransferStartReplyMsg',421,1),(26675,64662,64677,'OP_CharTransferRequestMsg',422,1),(26676,64662,64677,'OP_CharTransferReplyMsg',423,1),(26677,64662,64677,'OP_CharTransferRollbackRequestMsg',424,1),(26678,64662,64677,'OP_CharTransferCommitRequestMsg',425,1),(26679,64662,64677,'OP_CharTransferRollbackReplyMsg',426,1),(26680,64662,64677,'OP_CharTransferCommitReplyMsg',427,1),(26681,64662,64677,'OP_GetCharacterSerializedRequestM',428,1),(26682,64662,64677,'OP_GetCharacterSerializedReplyMsg',429,1),(26683,64662,64677,'OP_CreateCharFromCBBRequestMsg',430,1),(26684,64662,64677,'OP_CreateCharFromCBBReplyMsg',431,1),(26685,64662,64677,'OP_HousingDataChangedMsg',432,1),(26686,64662,64677,'OP_HousingRestoreMsg',433,1),(26687,64662,64677,'OP_AuctionItem',434,1),(26688,64662,64677,'OP_AuctionItemReply',435,1),(26689,64662,64677,'OP_AuctionCoin',436,1),(26690,64662,64677,'OP_AuctionCoinReply',437,1),(26691,64662,64677,'OP_AuctionCharacter',438,1),(26692,64662,64677,'OP_AuctionCharacterReply',439,1),(26693,64662,64677,'OP_AuctionCommitMsg',440,1),(26694,64662,64677,'OP_AuctionAbortMsg',441,1),(26695,64662,64677,'OP_CharTransferValidateRequestMsg',442,1),(26696,64662,64677,'OP_CharTransferValidateReplyMsg',443,1),(26697,64662,64677,'OP_RaceRestrictionMsg',444,1),(26698,64662,64677,'OP_SetInstanceDisplayNameMsg',445,1),(26699,64662,64677,'OP_GetAuctionAssetIDMsg',446,1),(26700,64662,64677,'OP_GetAuctionAssetIDReplyMsg',447,1),(26701,64662,64677,'OP_ResendWorldChannelsMsg',448,1),(26702,64662,64677,'OP_DisplayExchangeScreenMsg',449,1),(26703,64662,64677,'OP_ArenaGameTypesMsg',450,1),(26704,64662,64677,'OP_AuditAuctionEventMsg',451,1),(26705,64662,64677,'OP_InviteRequestMsg',452,1),(26706,64662,64677,'OP_InviteResponseMsg',453,1),(26707,64662,64677,'OP_InviteTargetResponseMsg',454,1),(26708,64662,64677,'OP_InspectPlayerRequestMsg',455,1),(26709,64662,64677,'OP_DispatchMsg',456,1),(26710,64662,64677,'OP_DisplayEventMsg',457,1),(26711,64662,64677,'OP_PrePossessionMsg',458,1),(26712,64662,64677,'OP_PostPossessionMsg',459,1),(26713,64662,64677,'OP_ArenaCreate',461,1),(26714,64662,64677,'OP_ArenaList',462,1),(26715,64662,64677,'OP_ArenaWindow',470,1),(26716,64662,64677,'OP_HouseItemsList',489,1),(26717,64662,64677,'OP_CurrentPet',490,1),(26718,64662,64677,'OP_EarlyLandingRequestMsg',491,1),(26719,64662,64677,'OP_AdventureList',494,1),(26720,64662,64677,'OP_CancelSpellCast',495,1),(26721,64662,64677,'OP_ClearForLandingMsg',497,1),(26722,64662,64677,'OP_UpdateTitleCmd',500,1),(26723,64662,64677,'OP_AttackAllowed',506,1),(26724,64662,64677,'OP_AttackNotAllowed',507,1),(26725,64662,64677,'OP_BagOptions',508,1),(26726,64662,64677,'OP_LFGGroupSearch',510,1),(26727,64662,64677,'OP_CharacterHousingList',513,1),(26728,64662,64677,'OP_DressingRoom',516,1),(26729,64662,64677,'OP_PlayLon',517,1),(26730,64662,64677,'OP_SkillInfoRequest',519,1),(26731,64662,64677,'OP_SkillInfoResponse',520,1),(26732,64662,64677,'OP_LFGUpdateMsg',523,1),(26733,64662,64677,'OP_BadLanguageFilter',524,1),(26734,64662,64677,'OP_VoiceChatChannel',525,1),(26735,64662,64677,'OP_MapRequest',526,1),(26736,64662,64677,'OP_MarketFundsUpdate',531,1),(26737,64662,64677,'OP_UIEvent',532,1),(26738,64662,64677,'OP_MarketAddFundsRequest',533,1),(26739,64662,64677,'OP_MarketAddFundsReply',534,1),(26740,64662,64677,'OP_MarketPurchase',536,1),(26741,64662,64677,'OP_MarketPlacePrices',537,1),(26742,64662,64677,'OP_MarketPlaceItems',544,1),(26743,64662,64677,'OP_RecipeBook',545,1),(26744,64662,64677,'OP_CreateCharacterDungeon',552,1),(26745,64662,64677,'OP_DungeonMakerEnter',553,1),(26746,64662,64677,'OP_DungeonMakerItemRequest',557,1),(26747,64662,64677,'OP_CharacterCreatedDungeons',558,1),(26748,64662,64677,'OP_DungeonMakerToolboxList',559,1),(26749,64662,64677,'OP_DungeonMakerUnknown',560,1),(26750,64662,64677,'OP_DungeonMakerUnknown1',561,1),(26751,64662,64677,'OP_PlayerPollPopup',563,1),(26752,64662,64677,'OP_PlayerPollAnswer',564,1),(26753,64662,64677,'OP_MentorPopup',565,1),(26754,64662,64677,'OP_LoadWelcomeWindow',567,1),(26755,64662,64677,'OP_OpenCharCust',569,1),(26756,64662,64677,'OP_SubmitCharCust',570,1),(26757,64662,64677,'OP_QueAllBgSolo',572,1),(26758,64662,64677,'OP_ZoneBgInstanceList',573,1),(26759,64662,64677,'OP_WorldTravelAvail',577,1),(26760,64662,64677,'OP_Launchpad',580,1),(26761,64662,64677,'OP_PaperdollImage',582,1),(26762,64662,64677,'OP_LoadCalendarEvents',583,1),(26763,64662,64677,'OP_VideoUploaded',584,1),(26764,64662,64677,'OP_SavageBarInitMsg',585,1),(26765,64662,64677,'OP_PetOptionsResponse',586,1),(26766,64662,64677,'OP_DungeonMakerItemResponse',587,1),(26767,64662,64677,'OP_Weakness',588,1),(26768,64662,64677,'OP_CharacterMounts',589,1),(26769,64662,64677,'OP_RecipeListUnknown',598,1),(26770,64662,64677,'OP_DailyObjectives',602,1),(26771,64662,64677,'OP_DeityAbilityWindow',622,1),(26772,64662,64677,'OP_EqBetaCopyRequest',640,1),(26773,64662,64677,'OP_SOEAllAccess',644,1),(26774,64662,64677,'OP_EqHearChatCmd',644,1),(26775,64662,64677,'OP_EqDisplayTextCmd',645,1),(26776,64662,64677,'OP_EqCreateGhostCmd',646,1),(26777,64662,64677,'OP_EqCreateWidgetCmd',647,1),(26778,64662,64677,'OP_EqCreateSignWidgetCmd',648,1),(26779,64662,64677,'OP_EqDestroyGhostCmd',649,1),(26780,64662,64677,'OP_EqUpdateGhostCmd',650,1),(26781,64662,64677,'OP_EqSetControlGhostCmd',651,1),(26782,64662,64677,'OP_EqSetPOVGhostCmd',652,1),(26783,64662,64677,'OP_EqHearCombatCmd',653,1),(26784,64662,64677,'OP_EqHearSpellCastCmd',654,1),(26785,64662,64677,'OP_EQHearProcCmd',655,1),(26786,64662,64677,'OP_EQHearResEffectCmd',656,1),(26787,64662,64677,'OP_EqHearSpellInterruptCmd',657,1),(26788,64662,64677,'OP_EqHearSpellFizzleCmd',658,1),(26789,64662,64677,'OP_EqHearConsiderCmd',659,1),(26790,64662,64677,'OP_EqUpdateSubClassesCmd',660,1),(26791,64662,64677,'OP_EqCreateListBoxCmd',661,1),(26792,64662,64677,'OP_EqSetDebugPathPointsCmd',662,1),(26793,64662,64677,'OP_EqCannedEmoteCmd',664,1),(26794,64662,64677,'OP_EqStateCmd',665,1),(26795,64662,64677,'OP_EqPlaySoundCmd',666,1),(26796,64662,64677,'OP_EqPlaySound3DCmd',667,1),(26797,64662,64677,'OP_EqPlayVoiceCmd',668,1),(26798,64662,64677,'OP_EqHearDrowningCmd',669,1),(26799,64662,64677,'OP_EqHearDeathCmd',670,1),(26800,64662,64677,'OP_EqGroupMemberRemovedCmd',671,1),(26801,64662,64677,'OP_EqHearChainEffectCmd',672,1),(26802,64662,64677,'OP_EqReceiveOfferCmd',673,1),(26803,64662,64677,'OP_EqInspectPCResultsCmd',674,1),(26804,64662,64677,'OP_EqDrawablePathGraphCmd',675,1),(26805,64662,64677,'OP_EqDialogOpenCmd',676,1),(26806,64662,64677,'OP_EqDialogCloseCmd',677,1),(26807,64662,64677,'OP_EqFactionUpdateCmd',678,1),(26808,64662,64677,'OP_EqCollectionUpdateCmd',679,1),(26809,64662,64677,'OP_EqCollectionFilterCmd',680,1),(26810,64662,64677,'OP_EqCollectionItemCmd',681,1),(26811,64662,64677,'OP_EqQuestJournalUpdateCmd',682,1),(26812,64662,64677,'OP_EqMentoring',683,1),(26813,64662,64677,'OP_EqQuestJournalReplyCmd',684,1),(26814,64662,64677,'OP_EqQuestGroupCmd',685,1),(26815,64662,64677,'OP_EqUpdateMerchantCmd',686,1),(26816,64662,64677,'OP_EqUpdateStoreCmd',687,1),(26817,64662,64677,'OP_EqUpdatePlayerTradeCmd',688,1),(26818,64662,64677,'OP_EqHelpPathCmd',689,1),(26819,64662,64677,'OP_EqHelpPathClearCmd',690,1),(26820,64662,64677,'OP_EqUpdateBankCmd',691,1),(26821,64662,64677,'OP_EqExamineInfoCmd',692,1),(26822,64662,64677,'OP_EqCloseWindowCmd',693,1),(26823,64662,64677,'OP_EqUpdateLootCmd',694,1),(26824,64662,64677,'OP_EqJunctionListCmd',695,1),(26825,64662,64677,'OP_EqShowDeathWindowCmd',696,1),(26826,64662,64677,'OP_EqDisplaySpellFailCmd',697,1),(26827,64662,64677,'OP_EqSpellCastStartCmd',698,1),(26828,64662,64677,'OP_EqSpellCastEndCmd',699,1),(26829,64662,64677,'OP_EqResurrectedCmd',700,1),(26830,64662,64677,'OP_EqChoiceWinCmd',701,1),(26831,64662,64677,'OP_EqSetDefaultVerbCmd',702,1),(26832,64662,64677,'OP_EqInstructionWindowCmd',703,1),(26833,64662,64677,'OP_EqInstructionWindowCloseCmd',704,1),(26834,64662,64677,'OP_EqInstructionWindowGoalCmd',705,1),(26835,64662,64677,'OP_EqInstructionWindowTaskCmd',706,1),(26836,64662,64677,'OP_EqEnableGameEventCmd',707,1),(26837,64662,64677,'OP_EqShowWindowCmd',708,1),(26838,64662,64677,'OP_EqEnableWindowCmd',709,1),(26839,64662,64677,'OP_EqFlashWindowCmd',710,1),(26840,64662,64677,'OP_EqHearPlayFlavorCmd',712,1),(26841,64662,64677,'OP_EqUpdateSignWidgetCmd',713,1),(26842,64662,64677,'OP_EqDebugPVDCmd',714,1),(26843,64662,64677,'OP_EqShowBookCmd',715,1),(26844,64662,64677,'OP_EqQuestionnaireCmd',716,1),(26845,64662,64677,'OP_EqGetProbsCmd',718,1),(26846,64662,64677,'OP_EqHearHealCmd',719,1),(26847,64662,64677,'OP_EqChatChannelUpdateCmd',720,1),(26848,64662,64677,'OP_EqWhoChannelQueryReplyCmd',721,1),(26849,64662,64677,'OP_EqAvailWorldChannelsCmd',722,1),(26850,64662,64677,'OP_EqUpdateTargetCmd',723,1),(26851,64662,64677,'OP_BrokerSellList',724,1),(26852,64662,64677,'OP_EqConsignmentItemsCmd',725,1),(26853,64662,64677,'OP_EqStartBrokerCmd',727,1),(26854,64662,64677,'OP_EqMapExplorationCmd',728,1),(26855,64662,64677,'OP_EqStoreLogCmd',729,1),(26856,64662,64677,'OP_EqSpellMoveToRangeAndRetryCmd',730,1),(26857,64662,64677,'OP_EqUpdatePlayerMailCmd',731,1),(26858,64662,64677,'OP_GuildStatusUpdate',734,1),(26859,64662,64677,'OP_EqArenaResultsCmd',735,1),(26860,64662,64677,'OP_EqGuildBankEventActionCmd',736,1),(26861,64662,64677,'OP_EqGuildBankExamineInfoCmd',737,1),(26862,64662,64677,'OP_EqHearSpellNoLandCmd',738,1),(26863,64662,64677,'OP_Lottery',739,1),(26864,64662,64677,'OP_GuildRecruitingMemberInfo',740,1),(26865,64662,64677,'OP_GuildRecruiting',741,1),(26866,64662,64677,'OP_GuildRecruitingDetails',742,1),(26867,64662,64677,'OP_GuildRecruitingImage',743,1),(26868,64662,64677,'OP_TradeskillList',744,1),(26869,64662,64677,'OP_CharRenamed',745,1),(26870,64662,64677,'OP_UseAdornment',755,1),(26871,64662,64677,'OP_ExpPurchWindow',761,1),(26872,64662,64677,'OP_PointOfInterest',765,1),(26873,64662,64677,'OP_PointOfInterest2',766,1),(26874,64662,64677,'OP_TraitsList',767,1),(26875,64662,64677,'OP_CustomizeHouseDisplay',770,1),(26876,64662,64677,'OP_VoiceChatServer',771,1),(26877,64662,64677,'OP_SupplyDepot',775,1),(26878,64662,64677,'OP_EQHearThreatCmd',776,1),(26879,64662,64677,'OP_RecipeList',777,1),(26880,64662,64677,'OP_Research',778,1),(26881,64662,64677,'OP_CharacterCurrency',779,1),(26882,64662,64677,'OP_CharacterAchievements',780,1),(26883,64662,64677,'OP_AchievementUpdateMsg',781,1),(26884,64662,64677,'OP_EQHearDispellCmd',782,1),(26885,64662,64677,'OP_JournalQuestStoryline',783,1),(26886,64662,64677,'OP_DungeonPlayAsAvatarList',784,1),(26887,64662,64677,'OP_DungeonPlayAsAvatarSelected',785,1),(26888,64662,64677,'OP_MercHireWindow',787,1),(26889,64662,64677,'OP_MercUnknown',788,1),(26890,64662,64677,'OP_Unknown',801,1),(26891,64662,64677,'OP_HeritageMsg',10027,1),(27355,64678,64724,'OP_LoginRequestMsg',0,1),(27356,64678,64724,'OP_LoginByNumRequestMsg',1,1),(27357,64678,64724,'OP_WSLoginRequestMsg',2,1),(27358,64678,64724,'OP_ESLoginRequestMsg',3,1),(27359,64678,64724,'OP_LoginReplyMsg',4,1),(27360,64678,64724,'OP_WSStatusReplyMsg',5,1),(27361,64678,64724,'OP_WorldStatusChangeMsg',6,1),(27362,64678,64724,'OP_AllWSDescRequestMsg',7,1),(27363,64678,64724,'OP_WorldListMsg',8,1),(27364,64678,64724,'OP_AllCharactersDescRequestMsg',9,1),(27365,64678,64724,'OP_AllCharactersDescReplyMsg',10,1),(27366,64678,64724,'OP_CreateCharacterRequestMsg',11,1),(27367,64678,64724,'OP_CreateCharacterReplyMsg',12,1),(27368,64678,64724,'OP_WSCreateCharacterRequestMsg',13,1),(27369,64678,64724,'OP_WSCreateCharacterReplyMsg',14,1),(27370,64678,64724,'OP_ReskinCharacterRequestMsg',15,1),(27371,64678,64724,'OP_DeleteCharacterRequestMsg',18,1),(27372,64678,64724,'OP_DeleteCharacterReplyMsg',19,1),(27373,64678,64724,'OP_PlayCharacterRequestMsg',20,1),(27374,64678,64724,'OP_PlayCharacterReplyMsg',21,1),(27375,64678,64724,'OP_ExpectClientAsCharacterReplyMs',24,1),(27376,64678,64724,'OP_ServerPlayCharacterRequestMsg',25,1),(27377,64678,64724,'OP_ServerPlayCharacterReplyMsg',26,1),(27378,64678,64724,'OP_ESInitMsg',27,1),(27379,64678,64724,'OP_ESReadyForClientsMsg',28,1),(27380,64678,64724,'OP_CreateZoneInstanceMsg',31,1),(27381,64678,64724,'OP_ZoneInstanceCreateReplyMsg',32,1),(27382,64678,64724,'OP_ZoneInstanceDestroyedMsg',33,1),(27383,64678,64724,'OP_ExpectClientAsCharacterRequest',34,1),(27384,64678,64724,'OP_ZoneInfoMsg',35,1),(27385,64678,64724,'OP_DoneLoadingZoneResourcesMsg',36,1),(27386,64678,64724,'OP_DoneSendingInitialEntitiesMsg',37,1),(27387,64678,64724,'OP_DoneLoadingEntityResourcesMsg',38,1),(27388,64678,64724,'OP_PredictionUpdateMsg',39,1),(27389,64678,64724,'OP_UpdatePositionMsg',41,1),(27390,64678,64724,'OP_SetRemoteCmdsMsg',43,1),(27391,64678,64724,'OP_RemoteCmdMsg',44,1),(27392,64678,64724,'OP_GameWorldTimeMsg',45,1),(27393,64678,64724,'OP_MOTDMsg',46,1),(27394,64678,64724,'OP_ZoneMOTDMsg',47,1),(27395,64678,64724,'OP_AvatarCreatedMsg',48,1),(27396,64678,64724,'OP_AvatarDestroyedMsg',49,1),(27397,64678,64724,'OP_RequestCampMsg',52,1),(27398,64678,64724,'OP_CampStartedMsg',53,1),(27399,64678,64724,'OP_CampAbortedMsg',54,1),(27400,64678,64724,'OP_WhoQueryRequestMsg',55,1),(27401,64678,64724,'OP_WhoQueryReplyMsg',56,1),(27402,64678,64724,'OP_MonitorReplyMsg',57,1),(27403,64678,64724,'OP_MonitorCharacterListMsg',58,1),(27404,64678,64724,'OP_MonitorCharacterListRequestMsg',59,1),(27405,64678,64724,'OP_ClientCmdMsg',60,1),(27406,64678,64724,'OP_DispatchESMsg',61,1),(27407,64678,64724,'OP_DispatchClientCmdMsg',62,1),(27408,64678,64724,'OP_UpdateTargetMsg',63,1),(27409,64678,64724,'OP_UpdateTargetLocMsg',64,1),(27410,64678,64724,'OP_UpdateCharacterSheetMsg',65,1),(27411,64678,64724,'OP_CharacterPet',66,1),(27412,64678,64724,'OP_CharacterMerc',67,1),(27413,64678,64724,'OP_UpdateSpellBookMsg',68,1),(27414,64678,64724,'OP_UpdateInventoryMsg',70,1),(27415,64678,64724,'OP_AfterInvSpellUpdate',71,1),(27416,64678,64724,'OP_UpdateRecipeBookMsg',72,1),(27417,64678,64724,'OP_RequestRecipeDetailsMsg',73,1),(27418,64678,64724,'OP_RecipeDetailsMsg',74,1),(27419,64678,64724,'OP_UpdateSkillBookMsg',75,1),(27420,64678,64724,'OP_UpdateSkillsMsg',76,1),(27421,64678,64724,'OP_UpdateOpportunityMsg',77,1),(27422,64678,64724,'OP_ChangeZoneMsg',79,1),(27423,64678,64724,'OP_ClientTeleportRequestMsg',80,1),(27424,64678,64724,'OP_TeleportWithinZoneMsg',81,1),(27425,64678,64724,'OP_TeleportWithinZoneNoReloadMsg',82,1),(27426,64678,64724,'OP_MigrateClientToZoneRequestMsg',83,1),(27427,64678,64724,'OP_MigrateClientToZoneReplyMsg',84,1),(27428,64678,64724,'OP_ReadyToZoneMsg',86,1),(27429,64678,64724,'OP_RemoveClientFromGroupMsg',87,1),(27430,64678,64724,'OP_RemoveGroupFromGroupMsg',88,1),(27431,64678,64724,'OP_MakeGroupLeaderMsg',89,1),(27432,64678,64724,'OP_GroupCreatedMsg',90,1),(27433,64678,64724,'OP_GroupDestroyedMsg',91,1),(27434,64678,64724,'OP_GroupMemberAddedMsg',92,1),(27435,64678,64724,'OP_GroupMemberRemovedMsg',93,1),(27436,64678,64724,'OP_GroupRemovedFromGroupMsg',94,1),(27437,64678,64724,'OP_GroupLeaderChangedMsg',95,1),(27438,64678,64724,'OP_GroupResendOOZDataMsg',96,1),(27439,64678,64724,'OP_GroupSettingsChangedMsg',97,1),(27440,64678,64724,'OP_OutOfZoneMemberDataMsg',98,1),(27441,64678,64724,'OP_SendLatestRequestMsg',99,1),(27442,64678,64724,'OP_ClearDataMsg',100,1),(27443,64678,64724,'OP_SetSocialMsg',101,1),(27444,64678,64724,'OP_ESStatusMsg',102,1),(27445,64678,64724,'OP_ESZoneInstanceStatusMsg',103,1),(27446,64678,64724,'OP_ZonesStatusRequestMsg',104,1),(27447,64678,64724,'OP_ZonesStatusMsg',105,1),(27448,64678,64724,'OP_ESWeatherRequestMsg',106,1),(27449,64678,64724,'OP_ESWeatherRequestEndMsg',107,1),(27450,64678,64724,'OP_DialogSelectMsg',111,1),(27451,64678,64724,'OP_DialogCloseMsg',112,1),(27452,64678,64724,'OP_RemoveSpellEffectMsg',113,1),(27453,64678,64724,'OP_RemoveConcentrationMsg',114,1),(27454,64678,64724,'OP_QuestJournalOpenMsg',115,1),(27455,64678,64724,'OP_QuestJournalInspectMsg',116,1),(27456,64678,64724,'OP_QuestJournalSetVisibleMsg',117,1),(27457,64678,64724,'OP_QuestJournalWaypointMsg',118,1),(27458,64678,64724,'OP_CreateGuildRequestMsg',121,1),(27459,64678,64724,'OP_CreateGuildReplyMsg',123,1),(27460,64678,64724,'OP_GuildsayMsg',124,1),(27461,64678,64724,'OP_FellowshipExpMsg',125,1),(27462,64678,64724,'OP_DeleteGuildMsg',126,1),(27463,64678,64724,'OP_GuildUpdateMsg',127,1),(27464,64678,64724,'OP_ConsignmentCloseStoreMsg',128,1),(27465,64678,64724,'OP_ConsignItemRequestMsg',129,1),(27466,64678,64724,'OP_ConsignItemResponseMsg',130,1),(27467,64678,64724,'OP_PurchaseConsignmentRequestMsg',131,1),(27468,64678,64724,'OP_LikeOption',139,1),(27469,64678,64724,'OP_PublishHouse',141,1),(27470,64678,64724,'OP_PlayerMadeInstancesScreen',142,1),(27471,64678,64724,'OP_PlayerMadeInstances',143,1),(27472,64678,64724,'OP_HouseDeletedRemotelyMsg',145,1),(27473,64678,64724,'OP_UpdateHouseDataMsg',146,1),(27474,64678,64724,'OP_UpdateHouseAccessDataMsg',147,1),(27475,64678,64724,'OP_PlayerHouseBaseScreenMsg',148,1),(27476,64678,64724,'OP_PlayerHousePurchaseScreenMsg',149,1),(27477,64678,64724,'OP_PlayerHouseAccessUpdateMsg',150,1),(27478,64678,64724,'OP_PlayerHouseDisplayStatusMsg',151,1),(27479,64678,64724,'OP_PlayerHouseCloseUIMsg',152,1),(27480,64678,64724,'OP_BuyPlayerHouseMsg',153,1),(27481,64678,64724,'OP_BuyPlayerHouseTintMsg',154,1),(27482,64678,64724,'OP_CollectAllHouseItemsMsg',155,1),(27483,64678,64724,'OP_RelinquishHouseMsg',156,1),(27484,64678,64724,'OP_EnterHouseMsg',157,1),(27485,64678,64724,'OP_ExitHouseMsg',158,1),(27486,64678,64724,'OP_HouseDefaultAccessSetMsg',159,1),(27487,64678,64724,'OP_HouseAccessSetMsg',160,1),(27488,64678,64724,'OP_HouseAccessRemoveMsg',161,1),(27489,64678,64724,'OP_PayHouseUpkeepMsg',162,1),(27490,64678,64724,'OP_MoveableObjectPlacementCriteri',163,1),(27491,64678,64724,'OP_EnterMoveObjectModeMsg',164,1),(27492,64678,64724,'OP_PositionMoveableObject',165,1),(27493,64678,64724,'OP_CancelMoveObjectModeMsg',166,1),(27494,64678,64724,'OP_ShaderCustomizationMsg',167,1),(27495,64678,64724,'OP_ReplaceableSubMeshesMsg',168,1),(27496,64678,64724,'OP_HouseCustomizationScreenMsg',169,1),(27497,64678,64724,'OP_CustomizationPurchaseRequestMs',170,1),(27498,64678,64724,'OP_CustomizationSetRequestMsg',171,1),(27499,64678,64724,'OP_CustomizationReplyMsg',172,1),(27500,64678,64724,'OP_TintWidgetsMsg',173,1),(27501,64678,64724,'OP_ExamineConsignmentRequestMsg',174,1),(27502,64678,64724,'OP_ExamineConsignmentResponseMsg',175,1),(27503,64678,64724,'OP_UISettingsResponseMsg',176,1),(27504,64678,64724,'OP_UIResetMsg',177,1),(27505,64678,64724,'OP_KeymapLoadMsg',178,1),(27506,64678,64724,'OP_KeymapNoneMsg',179,1),(27507,64678,64724,'OP_KeymapDataMsg',180,1),(27508,64678,64724,'OP_KeymapSaveMsg',181,1),(27509,64678,64724,'OP_DispatchSpellCmdMsg',182,1),(27510,64678,64724,'OP_EntityVerbsRequestMsg',183,1),(27511,64678,64724,'OP_EntityVerbsReplyMsg',184,1),(27512,64678,64724,'OP_EntityVerbsVerbMsg',185,1),(27513,64678,64724,'OP_ChatRelationshipUpdateMsg',187,1),(27514,64678,64724,'OP_LootItemsRequestMsg',188,1),(27515,64678,64724,'OP_StoppedLootingMsg',189,1),(27516,64678,64724,'OP_SitMsg',190,1),(27517,64678,64724,'OP_StandMsg',191,1),(27518,64678,64724,'OP_SatMsg',192,1),(27519,64678,64724,'OP_StoodMsg',193,1),(27520,64678,64724,'OP_ClearForTakeOffMsg',194,1),(27521,64678,64724,'OP_ReadyForTakeOffMsg',195,1),(27522,64678,64724,'OP_ShowIllusionsMsg',196,1),(27523,64678,64724,'OP_HideIllusionsMsg',197,1),(27524,64678,64724,'OP_ExamineItemRequestMsg',198,1),(27525,64678,64724,'OP_ReadBookPageMsg',199,1),(27526,64678,64724,'OP_DefaultGroupOptionsRequestMsg',200,1),(27527,64678,64724,'OP_DefaultGroupOptionsMsg',201,1),(27528,64678,64724,'OP_GroupOptionsMsg',202,1),(27529,64678,64724,'OP_DisplayGroupOptionsScreenMsg',203,1),(27530,64678,64724,'OP_PetOptions',204,1),(27531,64678,64724,'OP_DisplayInnVisitScreenMsg',205,1),(27532,64678,64724,'OP_DumpSchedulerMsg',206,1),(27533,64678,64724,'OP_LSCheckAcctLockMsg',207,1),(27534,64678,64724,'OP_WSAcctLockStatusMsg',208,1),(27535,64678,64724,'OP_RequestHelpRepathMsg',209,1),(27536,64678,64724,'OP_RequestTargetLocMsg',210,1),(27537,64678,64724,'OP_UpdateMotdMsg',211,1),(27538,64678,64724,'OP_DestUpdateReq',213,1),(27539,64678,64724,'OP_PerformPlayerKnockbackMsg',216,1),(27540,64678,64724,'OP_PerformCameraShakeMsg',217,1),(27541,64678,64724,'OP_PopulateSkillMapsMsg',218,1),(27542,64678,64724,'OP_CancelledFeignMsg',219,1),(27543,64678,64724,'OP_SysClient',221,1),(27544,64678,64724,'OP_ShowCreateFromRecipeUIMsg',222,1),(27545,64678,64724,'OP_CancelCreateFromRecipeMsg',223,1),(27546,64678,64724,'OP_BeginItemCreationMsg',224,1),(27547,64678,64724,'OP_StopItemCreationMsg',225,1),(27548,64678,64724,'OP_ShowItemCreationProcessUIMsg',226,1),(27549,64678,64724,'OP_UpdateItemCreationProcessUIMsg',227,1),(27550,64678,64724,'OP_DisplayTSEventReactionMsg',228,1),(27551,64678,64724,'OP_ShowRecipeBookMsg',229,1),(27552,64678,64724,'OP_KnowledgebaseRequestMsg',230,1),(27553,64678,64724,'OP_KnowledgebaseResponseMsg',231,1),(27554,64678,64724,'OP_CSTicketHeaderRequestMsg',232,1),(27555,64678,64724,'OP_CSTicketInfoMsg',233,1),(27556,64678,64724,'OP_CSTicketCommentRequestMsg',234,1),(27557,64678,64724,'OP_CSTicketCommentResponseMsg',235,1),(27558,64678,64724,'OP_CSTicketCreateMsg',236,1),(27559,64678,64724,'OP_CSTicketAddCommentMsg',237,1),(27560,64678,64724,'OP_CSTicketDeleteMsg',238,1),(27561,64678,64724,'OP_CSTicketChangeNotificationMsg',239,1),(27562,64678,64724,'OP_WorldDataUpdateMsg',240,1),(27563,64678,64724,'OP_KnownLanguagesMsg',242,1),(27564,64678,64724,'OP_LsRequestClientCrashLogMsg',243,1),(27565,64678,64724,'OP_LsClientBaselogReplyMsg',244,1),(27566,64678,64724,'OP_LsClientCrashlogReplyMsg',245,1),(27567,64678,64724,'OP_LsClientAlertlogReplyMsg',246,1),(27568,64678,64724,'OP_LsClientVerifylogReplyMsg',247,1),(27569,64678,64724,'OP_ClientTeleportToLocationMsg',248,1),(27570,64678,64724,'OP_UpdateClientPredFlagsMsg',249,1),(27571,64678,64724,'OP_ChangeServerControlFlagMsg',250,1),(27572,64678,64724,'OP_CSToolsRequestMsg',251,1),(27573,64678,64724,'OP_CSToolsResponseMsg',252,1),(27574,64678,64724,'OP_AddSocialStructureStandingMsg',253,1),(27575,64678,64724,'OP_CreateBoatTransportsMsg',254,1),(27576,64678,64724,'OP_PositionBoatTransportMsg',255,1),(27577,64678,64724,'OP_MigrateBoatTransportMsg',256,1),(27578,64678,64724,'OP_MigrateBoatTransportReplyMsg',257,1),(27579,64678,64724,'OP_DisplayDebugNLLPointsMsg',258,1),(27580,64678,64724,'OP_ExamineInfoRequestMsg',259,1),(27581,64678,64724,'OP_QuickbarInitMsg',260,1),(27582,64678,64724,'OP_QuickbarUpdateMsg',261,1),(27583,64678,64724,'OP_MacroInitMsg',262,1),(27584,64678,64724,'OP_MacroUpdateMsg',263,1),(27585,64678,64724,'OP_QuestionnaireMsg',264,1),(27586,64678,64724,'OP_LevelChangedMsg',265,1),(27587,64678,64724,'OP_SpellGainedMsg',266,1),(27588,64678,64724,'OP_EncounterBrokenMsg',267,1),(27589,64678,64724,'OP_OnscreenMsgMsg',268,1),(27590,64678,64724,'OP_DisplayWarningMsg',269,1),(27591,64678,64724,'OP_ModifyGuildMsg',270,1),(27592,64678,64724,'OP_GuildEventMsg',271,1),(27593,64678,64724,'OP_GuildEventAddMsg',272,1),(27594,64678,64724,'OP_GuildEventActionMsg',273,1),(27595,64678,64724,'OP_GuildEventListMsg',274,1),(27596,64678,64724,'OP_RequestGuildEventDetailsMsg',275,1),(27597,64678,64724,'OP_GuildEventDetailsMsg',276,1),(27598,64678,64724,'OP_RequestGuildInfoMsg',277,1),(27599,64678,64724,'OP_GuildBankActionMsg',278,1),(27600,64678,64724,'OP_GuildBankActionResponseMsg',279,1),(27601,64678,64724,'OP_GuildBankItemDetailsRequestMsg',280,1),(27602,64678,64724,'OP_GuildBankItemDetailsResponseMs',281,1),(27603,64678,64724,'OP_GuildBankUpdateMsg',282,1),(27604,64678,64724,'OP_GuildBankEventListMsg',283,1),(27605,64678,64724,'OP_RequestGuildBankEventDetailsMs',284,1),(27606,64678,64724,'OP_RewardPackMsg',285,1),(27607,64678,64724,'OP_RenameGuildMsg',286,1),(27608,64678,64724,'OP_ZoneToFriendRequestMsg',287,1),(27609,64678,64724,'OP_ZoneToFriendReplyMsg',288,1),(27610,64678,64724,'OP_ChatCreateChannelMsg',289,1),(27611,64678,64724,'OP_ChatJoinChannelMsg',290,1),(27612,64678,64724,'OP_ChatWhoChannelMsg',291,1),(27613,64678,64724,'OP_ChatLeaveChannelMsg',292,1),(27614,64678,64724,'OP_ChatTellChannelMsg',293,1),(27615,64678,64724,'OP_ChatTellUserMsg',294,1),(27616,64678,64724,'OP_ChatToggleFriendMsg',295,1),(27617,64678,64724,'OP_BrokerAddBag',296,1),(27618,64678,64724,'OP_BrokerRemoveBag',297,1),(27619,64678,64724,'OP_ChatToggleIgnoreMsg',298,1),(27620,64678,64724,'OP_ChatSendFriendsMsg',299,1),(27621,64678,64724,'OP_ChatSendIgnoresMsg',300,1),(27622,64678,64724,'OP_QuestReward',324,1),(27623,64678,64724,'OP_ChatFiltersMsg',338,1),(27624,64678,64724,'OP_MailGetMessageMsg',342,1),(27625,64678,64724,'OP_MailSendMessageMsg',343,1),(27626,64678,64724,'OP_MailDeleteMessageMsg',344,1),(27627,64678,64724,'OP_MailGetHeadersReplyMsg',345,1),(27628,64678,64724,'OP_MailGetMessageReplyMsg',346,1),(27629,64678,64724,'OP_MailSendMessageReplyMsg',347,1),(27630,64678,64724,'OP_MailCommitSendMessageMsg',348,1),(27631,64678,64724,'OP_MailSendSystemMessageMsg',349,1),(27632,64678,64724,'OP_MailRemoveAttachFromMailMsg',350,1),(27633,64678,64724,'OP_WaypointRequestMsg',352,1),(27634,64678,64724,'OP_WaypointReplyMsg',353,1),(27635,64678,64724,'OP_WaypointSelectMsg',354,1),(27636,64678,64724,'OP_WaypointUpdateMsg',355,1),(27637,64678,64724,'OP_CharNameChangedMsg',356,1),(27638,64678,64724,'OP_ShowZoneTeleporterDestinations',357,1),(27639,64678,64724,'OP_SelectZoneTeleporterDestinatio',358,1),(27640,64678,64724,'OP_ReloadLocalizedTxtMsg',359,1),(27641,64678,64724,'OP_RequestGuildMembershipMsg',360,1),(27642,64678,64724,'OP_GuildMembershipResponseMsg',361,1),(27643,64678,64724,'OP_LeaveGuildNotifyMsg',362,1),(27644,64678,64724,'OP_JoinGuildNotifyMsg',363,1),(27645,64678,64724,'OP_AvatarUpdateMsg',364,1),(27646,64678,64724,'OP_BioUpdateMsg',366,1),(27647,64678,64724,'OP_InspectPlayerMsg',367,1),(27648,64678,64724,'OP_WSServerLockMsg',368,1),(27649,64678,64724,'OP_LSServerLockMsg',369,1),(27650,64678,64724,'OP_WSServerHideMsg',370,1),(27651,64678,64724,'OP_CsCategoryRequestMsg',371,1),(27652,64678,64724,'OP_CsCategoryResponseMsg',372,1),(27653,64678,64724,'OP_KnowledgeWindowSlotMappingMsg',373,1),(27654,64678,64724,'OP_AFKUpdateMsg',374,1),(27655,64678,64724,'OP_AnonUpdateMsg',375,1),(27656,64678,64724,'OP_UpdateActivePublicZonesMsg',376,1),(27657,64678,64724,'OP_UnknownNpcMsg',377,1),(27658,64678,64724,'OP_PromoFlagsDetailsMsg',378,1),(27659,64678,64724,'OP_ConsignViewCreateMsg',379,1),(27660,64678,64724,'OP_ConsignViewGetPageMsg',380,1),(27661,64678,64724,'OP_ConsignViewReleaseMsg',381,1),(27662,64678,64724,'OP_ConsignRemoveItemsMsg',382,1),(27663,64678,64724,'OP_UpdateDebugRadiiMsg',383,1),(27664,64678,64724,'OP_ReportMsg',384,1),(27665,64678,64724,'OP_UpdateRaidMsg',385,1),(27666,64678,64724,'OP_ConsignViewSortMsg',387,1),(27667,64678,64724,'OP_TitleUpdateMsg',388,1),(27668,64678,64724,'OP_ClientFellMsg',389,1),(27669,64678,64724,'OP_ClientInDeathRegionMsg',390,1),(27670,64678,64724,'OP_CampClientMsg',391,1),(27671,64678,64724,'OP_UpdateGroupMemberDataMsg',392,1),(27672,64678,64724,'OP_CSToolAccessResponseMsg',392,1),(27673,64678,64724,'OP_TrackingUpdateMsg',393,1),(27674,64678,64724,'OP_BeginTrackingMsg',394,1),(27675,64678,64724,'OP_StopTrackingMsg',395,1),(27676,64678,64724,'OP_GetAvatarAccessRequestForCSToo',397,1),(27677,64678,64724,'OP_AdvancementRequestMsg',398,1),(27678,64678,64724,'OP_MapFogDataInitMsg',399,1),(27679,64678,64724,'OP_MapFogDataUpdateMsg',400,1),(27680,64678,64724,'OP_CloseGroupInviteWindowMsg',401,1),(27681,64678,64724,'OP_WorldPingMsg',404,1),(27682,64678,64724,'OP_MoveLogUpdateMsg',405,1),(27683,64678,64724,'OP_OfferQuestMsg',406,1),(27684,64678,64724,'OP_WorldShutdownUpdateMsg',408,1),(27685,64678,64724,'OP_DisplayMailScreenMsg',409,1),(27686,64678,64724,'OP_ClientIdleBeginMsg',410,1),(27687,64678,64724,'OP_ClientIdleEndMsg',411,1),(27688,64678,64724,'OP_PurchaseConsignmentLoreCheckRe',412,1),(27689,64678,64724,'OP_NotifyApprenticeStoppedMentori',413,1),(27690,64678,64724,'OP_CorruptedClientMsg',414,1),(27691,64678,64724,'OP_WorldDataChangeMsg',415,1),(27692,64678,64724,'OP_MailEventNotificationMsg',416,1),(27693,64678,64724,'OP_RestartZoneMsg',417,1),(27694,64678,64724,'OP_FlightPathsMsg',418,1),(27695,64678,64724,'OP_CharacterLinkdeadMsg',419,1),(27696,64678,64724,'OP_CharTransferStartRequestMsg',420,1),(27697,64678,64724,'OP_CharTransferStartReplyMsg',421,1),(27698,64678,64724,'OP_CharTransferRequestMsg',422,1),(27699,64678,64724,'OP_CharTransferReplyMsg',423,1),(27700,64678,64724,'OP_CharTransferRollbackRequestMsg',424,1),(27701,64678,64724,'OP_CharTransferCommitRequestMsg',425,1),(27702,64678,64724,'OP_CharTransferRollbackReplyMsg',426,1),(27703,64678,64724,'OP_CharTransferCommitReplyMsg',427,1),(27704,64678,64724,'OP_GetCharacterSerializedRequestM',428,1),(27705,64678,64724,'OP_GetCharacterSerializedReplyMsg',429,1),(27706,64678,64724,'OP_CreateCharFromCBBRequestMsg',430,1),(27707,64678,64724,'OP_CreateCharFromCBBReplyMsg',431,1),(27708,64678,64724,'OP_HousingDataChangedMsg',432,1),(27709,64678,64724,'OP_HousingRestoreMsg',433,1),(27710,64678,64724,'OP_AuctionItem',434,1),(27711,64678,64724,'OP_AuctionItemReply',435,1),(27712,64678,64724,'OP_AuctionCoin',436,1),(27713,64678,64724,'OP_AuctionCoinReply',437,1),(27714,64678,64724,'OP_AuctionCharacter',438,1),(27715,64678,64724,'OP_AuctionCharacterReply',439,1),(27716,64678,64724,'OP_AuctionCommitMsg',440,1),(27717,64678,64724,'OP_AuctionAbortMsg',441,1),(27718,64678,64724,'OP_CharTransferValidateRequestMsg',442,1),(27719,64678,64724,'OP_CharTransferValidateReplyMsg',443,1),(27720,64678,64724,'OP_RaceRestrictionMsg',444,1),(27721,64678,64724,'OP_SetInstanceDisplayNameMsg',445,1),(27722,64678,64724,'OP_GetAuctionAssetIDMsg',446,1),(27723,64678,64724,'OP_GetAuctionAssetIDReplyMsg',447,1),(27724,64678,64724,'OP_ResendWorldChannelsMsg',448,1),(27725,64678,64724,'OP_DisplayExchangeScreenMsg',449,1),(27726,64678,64724,'OP_ArenaGameTypesMsg',450,1),(27727,64678,64724,'OP_AuditAuctionEventMsg',451,1),(27728,64678,64724,'OP_InviteRequestMsg',452,1),(27729,64678,64724,'OP_InviteResponseMsg',453,1),(27730,64678,64724,'OP_InviteTargetResponseMsg',454,1),(27731,64678,64724,'OP_InspectPlayerRequestMsg',455,1),(27732,64678,64724,'OP_DispatchMsg',456,1),(27733,64678,64724,'OP_DisplayEventMsg',457,1),(27734,64678,64724,'OP_PrePossessionMsg',458,1),(27735,64678,64724,'OP_PostPossessionMsg',459,1),(27736,64678,64724,'OP_ArenaCreate',461,1),(27737,64678,64724,'OP_ArenaList',462,1),(27738,64678,64724,'OP_ArenaWindow',470,1),(27739,64678,64724,'OP_HouseItemsList',489,1),(27740,64678,64724,'OP_CurrentPet',490,1),(27741,64678,64724,'OP_EarlyLandingRequestMsg',491,1),(27742,64678,64724,'OP_AdventureList',494,1),(27743,64678,64724,'OP_CancelSpellCast',495,1),(27744,64678,64724,'OP_ClearForLandingMsg',497,1),(27745,64678,64724,'OP_UpdateTitleCmd',500,1),(27746,64678,64724,'OP_AttackAllowed',506,1),(27747,64678,64724,'OP_AttackNotAllowed',507,1),(27748,64678,64724,'OP_BagOptions',508,1),(27749,64678,64724,'OP_LFGGroupSearch',510,1),(27750,64678,64724,'OP_CharacterHousingList',513,1),(27751,64678,64724,'OP_DressingRoom',516,1),(27752,64678,64724,'OP_PlayLon',517,1),(27753,64678,64724,'OP_SkillInfoRequest',519,1),(27754,64678,64724,'OP_SkillInfoResponse',520,1),(27755,64678,64724,'OP_LFGUpdateMsg',523,1),(27756,64678,64724,'OP_BadLanguageFilter',524,1),(27757,64678,64724,'OP_VoiceChatChannel',525,1),(27758,64678,64724,'OP_MapRequest',526,1),(27759,64678,64724,'OP_MarketFundsUpdate',531,1),(27760,64678,64724,'OP_UIEvent',532,1),(27761,64678,64724,'OP_MarketAddFundsRequest',533,1),(27762,64678,64724,'OP_MarketAddFundsReply',534,1),(27763,64678,64724,'OP_MarketPurchase',536,1),(27764,64678,64724,'OP_MarketPlacePrices',537,1),(27765,64678,64724,'OP_MarketPlaceItems',544,1),(27766,64678,64724,'OP_RecipeBook',545,1),(27767,64678,64724,'OP_CreateCharacterDungeon',552,1),(27768,64678,64724,'OP_DungeonMakerEnter',553,1),(27769,64678,64724,'OP_DungeonMakerItemRequest',557,1),(27770,64678,64724,'OP_CharacterCreatedDungeons',558,1),(27771,64678,64724,'OP_DungeonMakerToolboxList',559,1),(27772,64678,64724,'OP_DungeonMakerUnknown',560,1),(27773,64678,64724,'OP_DungeonMakerUnknown1',561,1),(27774,64678,64724,'OP_PlayerPollPopup',563,1),(27775,64678,64724,'OP_PlayerPollAnswer',564,1),(27776,64678,64724,'OP_MentorPopup',565,1),(27777,64678,64724,'OP_LoadWelcomeWindow',567,1),(27778,64678,64724,'OP_OpenCharCust',569,1),(27779,64678,64724,'OP_SubmitCharCust',570,1),(27780,64678,64724,'OP_QueAllBgSolo',572,1),(27781,64678,64724,'OP_ZoneBgInstanceList',573,1),(27782,64678,64724,'OP_WorldTravelAvail',577,1),(27783,64678,64724,'OP_Launchpad',580,1),(27784,64678,64724,'OP_PaperdollImage',582,1),(27785,64678,64724,'OP_LoadCalendarEvents',583,1),(27786,64678,64724,'OP_VideoUploaded',584,1),(27787,64678,64724,'OP_SavageBarInitMsg',585,1),(27788,64678,64724,'OP_PetOptionsResponse',586,1),(27789,64678,64724,'OP_DungeonMakerItemResponse',587,1),(27790,64678,64724,'OP_Weakness',588,1),(27791,64678,64724,'OP_CharacterMounts',589,1),(27792,64678,64724,'OP_RecipeListUnknown',598,1),(27793,64678,64724,'OP_DailyObjectives',602,1),(27794,64678,64724,'OP_DeityAbilityWindow',622,1),(27795,64678,64724,'OP_EqBetaCopyRequest',640,1),(27796,64678,64724,'OP_SOEAllAccess',647,1),(27797,64678,64724,'OP_EqHearChatCmd',647,1),(27798,64678,64724,'OP_EqDisplayTextCmd',648,1),(27799,64678,64724,'OP_EqCreateGhostCmd',649,1),(27800,64678,64724,'OP_EqCreateWidgetCmd',650,1),(27801,64678,64724,'OP_EqCreateSignWidgetCmd',651,1),(27802,64678,64724,'OP_EqDestroyGhostCmd',652,1),(27803,64678,64724,'OP_EqUpdateGhostCmd',653,1),(27804,64678,64724,'OP_EqSetControlGhostCmd',654,1),(27805,64678,64724,'OP_EqSetPOVGhostCmd',655,1),(27806,64678,64724,'OP_EqHearCombatCmd',656,1),(27807,64678,64724,'OP_EqHearSpellCastCmd',657,1),(27808,64678,64724,'OP_EQHearProcCmd',658,1),(27809,64678,64724,'OP_EQHearResEffectCmd',659,1),(27810,64678,64724,'OP_EqHearSpellInterruptCmd',660,1),(27811,64678,64724,'OP_EqHearSpellFizzleCmd',661,1),(27812,64678,64724,'OP_EqHearConsiderCmd',662,1),(27813,64678,64724,'OP_EqUpdateSubClassesCmd',663,1),(27814,64678,64724,'OP_EqCreateListBoxCmd',664,1),(27815,64678,64724,'OP_EqSetDebugPathPointsCmd',665,1),(27816,64678,64724,'OP_EqCannedEmoteCmd',667,1),(27817,64678,64724,'OP_EqStateCmd',668,1),(27818,64678,64724,'OP_EqPlaySoundCmd',669,1),(27819,64678,64724,'OP_EqPlaySound3DCmd',670,1),(27820,64678,64724,'OP_EqPlayVoiceCmd',671,1),(27821,64678,64724,'OP_EqHearDrowningCmd',672,1),(27822,64678,64724,'OP_EqHearDeathCmd',673,1),(27823,64678,64724,'OP_EqGroupMemberRemovedCmd',674,1),(27824,64678,64724,'OP_EqHearChainEffectCmd',675,1),(27825,64678,64724,'OP_EqReceiveOfferCmd',676,1),(27826,64678,64724,'OP_EqInspectPCResultsCmd',677,1),(27827,64678,64724,'OP_EqDrawablePathGraphCmd',678,1),(27828,64678,64724,'OP_EqDialogOpenCmd',679,1),(27829,64678,64724,'OP_EqDialogCloseCmd',680,1),(27830,64678,64724,'OP_EqFactionUpdateCmd',681,1),(27831,64678,64724,'OP_EqCollectionUpdateCmd',682,1),(27832,64678,64724,'OP_EqCollectionFilterCmd',683,1),(27833,64678,64724,'OP_EqCollectionItemCmd',684,1),(27834,64678,64724,'OP_EqQuestJournalUpdateCmd',685,1),(27835,64678,64724,'OP_EqMentoring',686,1),(27836,64678,64724,'OP_EqQuestJournalReplyCmd',687,1),(27837,64678,64724,'OP_EqQuestGroupCmd',688,1),(27838,64678,64724,'OP_EqUpdateMerchantCmd',689,1),(27839,64678,64724,'OP_EqUpdateStoreCmd',690,1),(27840,64678,64724,'OP_EqUpdatePlayerTradeCmd',691,1),(27841,64678,64724,'OP_EqHelpPathCmd',692,1),(27842,64678,64724,'OP_EqHelpPathClearCmd',693,1),(27843,64678,64724,'OP_EqUpdateBankCmd',694,1),(27844,64678,64724,'OP_EqExamineInfoCmd',695,1),(27845,64678,64724,'OP_EqCloseWindowCmd',696,1),(27846,64678,64724,'OP_EqUpdateLootCmd',697,1),(27847,64678,64724,'OP_EqJunctionListCmd',698,1),(27848,64678,64724,'OP_EqShowDeathWindowCmd',699,1),(27849,64678,64724,'OP_EqDisplaySpellFailCmd',700,1),(27850,64678,64724,'OP_EqSpellCastStartCmd',701,1),(27851,64678,64724,'OP_EqSpellCastEndCmd',702,1),(27852,64678,64724,'OP_EqResurrectedCmd',703,1),(27853,64678,64724,'OP_EqChoiceWinCmd',704,1),(27854,64678,64724,'OP_EqSetDefaultVerbCmd',705,1),(27855,64678,64724,'OP_EqInstructionWindowCmd',706,1),(27856,64678,64724,'OP_EqInstructionWindowCloseCmd',707,1),(27857,64678,64724,'OP_EqInstructionWindowGoalCmd',708,1),(27858,64678,64724,'OP_EqInstructionWindowTaskCmd',709,1),(27859,64678,64724,'OP_EqEnableGameEventCmd',710,1),(27860,64678,64724,'OP_EqShowWindowCmd',711,1),(27861,64678,64724,'OP_EqEnableWindowCmd',712,1),(27862,64678,64724,'OP_EqFlashWindowCmd',713,1),(27863,64678,64724,'OP_EqHearPlayFlavorCmd',715,1),(27864,64678,64724,'OP_EqUpdateSignWidgetCmd',716,1),(27865,64678,64724,'OP_EqDebugPVDCmd',717,1),(27866,64678,64724,'OP_EqShowBookCmd',718,1),(27867,64678,64724,'OP_EqQuestionnaireCmd',719,1),(27868,64678,64724,'OP_EqGetProbsCmd',721,1),(27869,64678,64724,'OP_EqHearHealCmd',722,1),(27870,64678,64724,'OP_EqChatChannelUpdateCmd',723,1),(27871,64678,64724,'OP_EqWhoChannelQueryReplyCmd',724,1),(27872,64678,64724,'OP_EqAvailWorldChannelsCmd',725,1),(27873,64678,64724,'OP_EqUpdateTargetCmd',726,1),(27874,64678,64724,'OP_BrokerSellList',727,1),(27875,64678,64724,'OP_EqConsignmentItemsCmd',728,1),(27876,64678,64724,'OP_EqStartBrokerCmd',730,1),(27877,64678,64724,'OP_EqMapExplorationCmd',731,1),(27878,64678,64724,'OP_EqStoreLogCmd',732,1),(27879,64678,64724,'OP_EqSpellMoveToRangeAndRetryCmd',733,1),(27880,64678,64724,'OP_EqUpdatePlayerMailCmd',734,1),(27881,64678,64724,'OP_GuildStatusUpdate',737,1),(27882,64678,64724,'OP_EqArenaResultsCmd',738,1),(27883,64678,64724,'OP_EqGuildBankEventActionCmd',739,1),(27884,64678,64724,'OP_EqGuildBankExamineInfoCmd',740,1),(27885,64678,64724,'OP_EqHearSpellNoLandCmd',741,1),(27886,64678,64724,'OP_Lottery',742,1),(27887,64678,64724,'OP_GuildRecruitingMemberInfo',743,1),(27888,64678,64724,'OP_GuildRecruiting',744,1),(27889,64678,64724,'OP_GuildRecruitingDetails',745,1),(27890,64678,64724,'OP_GuildRecruitingImage',746,1),(27891,64678,64724,'OP_TradeskillList',747,1),(27892,64678,64724,'OP_CharRenamed',748,1),(27893,64678,64724,'OP_UseAdornment',758,1),(27894,64678,64724,'OP_ExpPurchWindow',764,1),(27895,64678,64724,'OP_PointOfInterest',768,1),(27896,64678,64724,'OP_PointOfInterest2',769,1),(27897,64678,64724,'OP_TraitsList',770,1),(27898,64678,64724,'OP_CustomizeHouseDisplay',773,1),(27899,64678,64724,'OP_VoiceChatServer',774,1),(27900,64678,64724,'OP_SupplyDepot',778,1),(27901,64678,64724,'OP_EQHearThreatCmd',779,1),(27902,64678,64724,'OP_RecipeList',780,1),(27903,64678,64724,'OP_Research',781,1),(27904,64678,64724,'OP_CharacterCurrency',782,1),(27905,64678,64724,'OP_CharacterAchievements',783,1),(27906,64678,64724,'OP_AchievementUpdateMsg',784,1),(27907,64678,64724,'OP_EQHearDispellCmd',785,1),(27908,64678,64724,'OP_JournalQuestStoryline',786,1),(27909,64678,64724,'OP_DungeonPlayAsAvatarList',787,1),(27910,64678,64724,'OP_DungeonPlayAsAvatarSelected',788,1),(27911,64678,64724,'OP_MercHireWindow',790,1),(27912,64678,64724,'OP_MercUnknown',791,1),(27913,64678,64724,'OP_Unknown',804,1),(27914,64678,64724,'OP_HeritageMsg',10030,1),(28938,64736,64753,'OP_LoginRequestMsg',0,1),(28939,64736,64753,'OP_LoginByNumRequestMsg',1,1),(28940,64736,64753,'OP_WSLoginRequestMsg',2,1),(28941,64736,64753,'OP_ESLoginRequestMsg',3,1),(28942,64736,64753,'OP_LoginReplyMsg',4,1),(28943,64736,64753,'OP_WSStatusReplyMsg',5,1),(28944,64736,64753,'OP_WorldStatusChangeMsg',6,1),(28945,64736,64753,'OP_AllWSDescRequestMsg',7,1),(28946,64736,64753,'OP_WorldListMsg',8,1),(28947,64736,64753,'OP_AllCharactersDescRequestMsg',9,1),(28948,64736,64753,'OP_AllCharactersDescReplyMsg',10,1),(28949,64736,64753,'OP_CreateCharacterRequestMsg',11,1),(28950,64736,64753,'OP_CreateCharacterReplyMsg',12,1),(28951,64736,64753,'OP_WSCreateCharacterRequestMsg',13,1),(28952,64736,64753,'OP_WSCreateCharacterReplyMsg',14,1),(28953,64736,64753,'OP_ReskinCharacterRequestMsg',15,1),(28954,64736,64753,'OP_DeleteCharacterRequestMsg',18,1),(28955,64736,64753,'OP_DeleteCharacterReplyMsg',19,1),(28956,64736,64753,'OP_PlayCharacterRequestMsg',20,1),(28957,64736,64753,'OP_PlayCharacterReplyMsg',21,1),(28958,64736,64753,'OP_ExpectClientAsCharacterReplyMs',24,1),(28959,64736,64753,'OP_ServerPlayCharacterRequestMsg',25,1),(28960,64736,64753,'OP_ServerPlayCharacterReplyMsg',26,1),(28961,64736,64753,'OP_ESInitMsg',27,1),(28962,64736,64753,'OP_ESReadyForClientsMsg',28,1),(28963,64736,64753,'OP_CreateZoneInstanceMsg',31,1),(28964,64736,64753,'OP_ZoneInstanceCreateReplyMsg',32,1),(28965,64736,64753,'OP_ZoneInstanceDestroyedMsg',33,1),(28966,64736,64753,'OP_ExpectClientAsCharacterRequest',34,1),(28967,64736,64753,'OP_ZoneInfoMsg',35,1),(28968,64736,64753,'OP_DoneLoadingZoneResourcesMsg',36,1),(28969,64736,64753,'OP_DoneSendingInitialEntitiesMsg',37,1),(28970,64736,64753,'OP_DoneLoadingEntityResourcesMsg',38,1),(28971,64736,64753,'OP_PredictionUpdateMsg',39,1),(28972,64736,64753,'OP_UpdatePositionMsg',41,1),(28973,64736,64753,'OP_SetRemoteCmdsMsg',43,1),(28974,64736,64753,'OP_RemoteCmdMsg',44,1),(28975,64736,64753,'OP_GameWorldTimeMsg',45,1),(28976,64736,64753,'OP_MOTDMsg',46,1),(28977,64736,64753,'OP_ZoneMOTDMsg',47,1),(28978,64736,64753,'OP_AvatarCreatedMsg',48,1),(28979,64736,64753,'OP_AvatarDestroyedMsg',49,1),(28980,64736,64753,'OP_RequestCampMsg',52,1),(28981,64736,64753,'OP_CampStartedMsg',53,1),(28982,64736,64753,'OP_CampAbortedMsg',54,1),(28983,64736,64753,'OP_WhoQueryRequestMsg',55,1),(28984,64736,64753,'OP_WhoQueryReplyMsg',56,1),(28985,64736,64753,'OP_MonitorReplyMsg',57,1),(28986,64736,64753,'OP_MonitorCharacterListMsg',58,1),(28987,64736,64753,'OP_MonitorCharacterListRequestMsg',59,1),(28988,64736,64753,'OP_ClientCmdMsg',60,1),(28989,64736,64753,'OP_DispatchESMsg',61,1),(28990,64736,64753,'OP_DispatchClientCmdMsg',62,1),(28991,64736,64753,'OP_UpdateTargetMsg',63,1),(28992,64736,64753,'OP_UpdateTargetLocMsg',64,1),(28993,64736,64753,'OP_UpdateCharacterSheetMsg',65,1),(28994,64736,64753,'OP_CharacterPet',66,1),(28995,64736,64753,'OP_CharacterMerc',67,1),(28996,64736,64753,'OP_UpdateSpellBookMsg',68,1),(28997,64736,64753,'OP_UpdateInventoryMsg',70,1),(28998,64736,64753,'OP_AfterInvSpellUpdate',71,1),(28999,64736,64753,'OP_UpdateRecipeBookMsg',72,1),(29000,64736,64753,'OP_RequestRecipeDetailsMsg',73,1),(29001,64736,64753,'OP_RecipeDetailsMsg',74,1),(29002,64736,64753,'OP_UpdateSkillBookMsg',75,1),(29003,64736,64753,'OP_UpdateSkillsMsg',76,1),(29004,64736,64753,'OP_UpdateOpportunityMsg',77,1),(29005,64736,64753,'OP_ChangeZoneMsg',79,1),(29006,64736,64753,'OP_ClientTeleportRequestMsg',80,1),(29007,64736,64753,'OP_TeleportWithinZoneMsg',81,1),(29008,64736,64753,'OP_TeleportWithinZoneNoReloadMsg',82,1),(29009,64736,64753,'OP_MigrateClientToZoneRequestMsg',83,1),(29010,64736,64753,'OP_MigrateClientToZoneReplyMsg',84,1),(29011,64736,64753,'OP_ReadyToZoneMsg',86,1),(29012,64736,64753,'OP_RemoveClientFromGroupMsg',87,1),(29013,64736,64753,'OP_RemoveGroupFromGroupMsg',88,1),(29014,64736,64753,'OP_MakeGroupLeaderMsg',89,1),(29015,64736,64753,'OP_GroupCreatedMsg',90,1),(29016,64736,64753,'OP_GroupDestroyedMsg',91,1),(29017,64736,64753,'OP_GroupMemberAddedMsg',92,1),(29018,64736,64753,'OP_GroupMemberRemovedMsg',93,1),(29019,64736,64753,'OP_GroupRemovedFromGroupMsg',94,1),(29020,64736,64753,'OP_GroupLeaderChangedMsg',95,1),(29021,64736,64753,'OP_GroupResendOOZDataMsg',96,1),(29022,64736,64753,'OP_GroupSettingsChangedMsg',97,1),(29023,64736,64753,'OP_OutOfZoneMemberDataMsg',98,1),(29024,64736,64753,'OP_SendLatestRequestMsg',99,1),(29025,64736,64753,'OP_ClearDataMsg',100,1),(29026,64736,64753,'OP_SetSocialMsg',101,1),(29027,64736,64753,'OP_ESStatusMsg',102,1),(29028,64736,64753,'OP_ESZoneInstanceStatusMsg',103,1),(29029,64736,64753,'OP_ZonesStatusRequestMsg',104,1),(29030,64736,64753,'OP_ZonesStatusMsg',105,1),(29031,64736,64753,'OP_ESWeatherRequestMsg',106,1),(29032,64736,64753,'OP_ESWeatherRequestEndMsg',107,1),(29033,64736,64753,'OP_DialogSelectMsg',111,1),(29034,64736,64753,'OP_DialogCloseMsg',112,1),(29035,64736,64753,'OP_RemoveSpellEffectMsg',113,1),(29036,64736,64753,'OP_RemoveConcentrationMsg',114,1),(29037,64736,64753,'OP_QuestJournalOpenMsg',115,1),(29038,64736,64753,'OP_QuestJournalInspectMsg',116,1),(29039,64736,64753,'OP_QuestJournalSetVisibleMsg',117,1),(29040,64736,64753,'OP_QuestJournalWaypointMsg',118,1),(29041,64736,64753,'OP_CreateGuildRequestMsg',121,1),(29042,64736,64753,'OP_CreateGuildReplyMsg',123,1),(29043,64736,64753,'OP_GuildsayMsg',124,1),(29044,64736,64753,'OP_FellowshipExpMsg',125,1),(29045,64736,64753,'OP_DeleteGuildMsg',126,1),(29046,64736,64753,'OP_GuildUpdateMsg',127,1),(29047,64736,64753,'OP_ConsignmentCloseStoreMsg',128,1),(29048,64736,64753,'OP_ConsignItemRequestMsg',129,1),(29049,64736,64753,'OP_ConsignItemResponseMsg',130,1),(29050,64736,64753,'OP_PurchaseConsignmentRequestMsg',131,1),(29051,64736,64753,'OP_LikeOption',139,1),(29052,64736,64753,'OP_PublishHouse',141,1),(29053,64736,64753,'OP_PlayerMadeInstancesScreen',142,1),(29054,64736,64753,'OP_PlayerMadeInstances',143,1),(29055,64736,64753,'OP_HouseDeletedRemotelyMsg',145,1),(29056,64736,64753,'OP_UpdateHouseDataMsg',146,1),(29057,64736,64753,'OP_UpdateHouseAccessDataMsg',147,1),(29058,64736,64753,'OP_PlayerHouseBaseScreenMsg',148,1),(29059,64736,64753,'OP_PlayerHousePurchaseScreenMsg',149,1),(29060,64736,64753,'OP_PlayerHouseAccessUpdateMsg',150,1),(29061,64736,64753,'OP_PlayerHouseDisplayStatusMsg',151,1),(29062,64736,64753,'OP_PlayerHouseCloseUIMsg',152,1),(29063,64736,64753,'OP_BuyPlayerHouseMsg',153,1),(29064,64736,64753,'OP_BuyPlayerHouseTintMsg',154,1),(29065,64736,64753,'OP_CollectAllHouseItemsMsg',155,1),(29066,64736,64753,'OP_RelinquishHouseMsg',156,1),(29067,64736,64753,'OP_EnterHouseMsg',157,1),(29068,64736,64753,'OP_ExitHouseMsg',158,1),(29069,64736,64753,'OP_HouseDefaultAccessSetMsg',159,1),(29070,64736,64753,'OP_HouseAccessSetMsg',160,1),(29071,64736,64753,'OP_HouseAccessRemoveMsg',161,1),(29072,64736,64753,'OP_PayHouseUpkeepMsg',162,1),(29073,64736,64753,'OP_MoveableObjectPlacementCriteri',163,1),(29074,64736,64753,'OP_EnterMoveObjectModeMsg',164,1),(29075,64736,64753,'OP_PositionMoveableObject',165,1),(29076,64736,64753,'OP_CancelMoveObjectModeMsg',166,1),(29077,64736,64753,'OP_ShaderCustomizationMsg',167,1),(29078,64736,64753,'OP_ReplaceableSubMeshesMsg',168,1),(29079,64736,64753,'OP_HouseCustomizationScreenMsg',169,1),(29080,64736,64753,'OP_CustomizationPurchaseRequestMs',170,1),(29081,64736,64753,'OP_CustomizationSetRequestMsg',171,1),(29082,64736,64753,'OP_CustomizationReplyMsg',172,1),(29083,64736,64753,'OP_TintWidgetsMsg',173,1),(29084,64736,64753,'OP_ExamineConsignmentRequestMsg',174,1),(29085,64736,64753,'OP_ExamineConsignmentResponseMsg',175,1),(29086,64736,64753,'OP_UISettingsResponseMsg',176,1),(29087,64736,64753,'OP_UIResetMsg',177,1),(29088,64736,64753,'OP_KeymapLoadMsg',178,1),(29089,64736,64753,'OP_KeymapNoneMsg',179,1),(29090,64736,64753,'OP_KeymapDataMsg',180,1),(29091,64736,64753,'OP_KeymapSaveMsg',181,1),(29092,64736,64753,'OP_DispatchSpellCmdMsg',182,1),(29093,64736,64753,'OP_EntityVerbsRequestMsg',183,1),(29094,64736,64753,'OP_EntityVerbsReplyMsg',184,1),(29095,64736,64753,'OP_EntityVerbsVerbMsg',185,1),(29096,64736,64753,'OP_ChatRelationshipUpdateMsg',187,1),(29097,64736,64753,'OP_LootItemsRequestMsg',188,1),(29098,64736,64753,'OP_StoppedLootingMsg',189,1),(29099,64736,64753,'OP_SitMsg',190,1),(29100,64736,64753,'OP_StandMsg',191,1),(29101,64736,64753,'OP_SatMsg',192,1),(29102,64736,64753,'OP_StoodMsg',193,1),(29103,64736,64753,'OP_ClearForTakeOffMsg',194,1),(29104,64736,64753,'OP_ReadyForTakeOffMsg',195,1),(29105,64736,64753,'OP_ShowIllusionsMsg',196,1),(29106,64736,64753,'OP_HideIllusionsMsg',197,1),(29107,64736,64753,'OP_ExamineItemRequestMsg',198,1),(29108,64736,64753,'OP_ReadBookPageMsg',199,1),(29109,64736,64753,'OP_DefaultGroupOptionsRequestMsg',200,1),(29110,64736,64753,'OP_DefaultGroupOptionsMsg',201,1),(29111,64736,64753,'OP_GroupOptionsMsg',202,1),(29112,64736,64753,'OP_DisplayGroupOptionsScreenMsg',203,1),(29113,64736,64753,'OP_PetOptions',204,1),(29114,64736,64753,'OP_DisplayInnVisitScreenMsg',205,1),(29115,64736,64753,'OP_DumpSchedulerMsg',206,1),(29116,64736,64753,'OP_LSCheckAcctLockMsg',207,1),(29117,64736,64753,'OP_WSAcctLockStatusMsg',208,1),(29118,64736,64753,'OP_RequestHelpRepathMsg',209,1),(29119,64736,64753,'OP_RequestTargetLocMsg',210,1),(29120,64736,64753,'OP_UpdateMotdMsg',211,1),(29121,64736,64753,'OP_DestUpdateReq',213,1),(29122,64736,64753,'OP_PerformPlayerKnockbackMsg',216,1),(29123,64736,64753,'OP_PerformCameraShakeMsg',217,1),(29124,64736,64753,'OP_PopulateSkillMapsMsg',218,1),(29125,64736,64753,'OP_CancelledFeignMsg',219,1),(29126,64736,64753,'OP_SysClient',221,1),(29127,64736,64753,'OP_ShowCreateFromRecipeUIMsg',222,1),(29128,64736,64753,'OP_CancelCreateFromRecipeMsg',223,1),(29129,64736,64753,'OP_BeginItemCreationMsg',224,1),(29130,64736,64753,'OP_StopItemCreationMsg',225,1),(29131,64736,64753,'OP_ShowItemCreationProcessUIMsg',226,1),(29132,64736,64753,'OP_UpdateItemCreationProcessUIMsg',227,1),(29133,64736,64753,'OP_DisplayTSEventReactionMsg',228,1),(29134,64736,64753,'OP_ShowRecipeBookMsg',229,1),(29135,64736,64753,'OP_KnowledgebaseRequestMsg',230,1),(29136,64736,64753,'OP_KnowledgebaseResponseMsg',231,1),(29137,64736,64753,'OP_CSTicketHeaderRequestMsg',232,1),(29138,64736,64753,'OP_CSTicketInfoMsg',233,1),(29139,64736,64753,'OP_CSTicketCommentRequestMsg',234,1),(29140,64736,64753,'OP_CSTicketCommentResponseMsg',235,1),(29141,64736,64753,'OP_CSTicketCreateMsg',236,1),(29142,64736,64753,'OP_CSTicketAddCommentMsg',237,1),(29143,64736,64753,'OP_CSTicketDeleteMsg',238,1),(29144,64736,64753,'OP_CSTicketChangeNotificationMsg',239,1),(29145,64736,64753,'OP_WorldDataUpdateMsg',240,1),(29146,64736,64753,'OP_KnownLanguagesMsg',242,1),(29147,64736,64753,'OP_LsRequestClientCrashLogMsg',243,1),(29148,64736,64753,'OP_LsClientBaselogReplyMsg',244,1),(29149,64736,64753,'OP_LsClientCrashlogReplyMsg',245,1),(29150,64736,64753,'OP_LsClientAlertlogReplyMsg',246,1),(29151,64736,64753,'OP_LsClientVerifylogReplyMsg',247,1),(29152,64736,64753,'OP_ClientTeleportToLocationMsg',248,1),(29153,64736,64753,'OP_UpdateClientPredFlagsMsg',249,1),(29154,64736,64753,'OP_ChangeServerControlFlagMsg',250,1),(29155,64736,64753,'OP_CSToolsRequestMsg',251,1),(29156,64736,64753,'OP_CSToolsResponseMsg',252,1),(29157,64736,64753,'OP_AddSocialStructureStandingMsg',253,1),(29158,64736,64753,'OP_CreateBoatTransportsMsg',254,1),(29159,64736,64753,'OP_PositionBoatTransportMsg',255,1),(29160,64736,64753,'OP_MigrateBoatTransportMsg',256,1),(29161,64736,64753,'OP_MigrateBoatTransportReplyMsg',257,1),(29162,64736,64753,'OP_DisplayDebugNLLPointsMsg',258,1),(29163,64736,64753,'OP_ExamineInfoRequestMsg',259,1),(29164,64736,64753,'OP_QuickbarInitMsg',260,1),(29165,64736,64753,'OP_QuickbarUpdateMsg',261,1),(29166,64736,64753,'OP_MacroInitMsg',262,1),(29167,64736,64753,'OP_MacroUpdateMsg',263,1),(29168,64736,64753,'OP_QuestionnaireMsg',264,1),(29169,64736,64753,'OP_LevelChangedMsg',265,1),(29170,64736,64753,'OP_SpellGainedMsg',266,1),(29171,64736,64753,'OP_EncounterBrokenMsg',267,1),(29172,64736,64753,'OP_OnscreenMsgMsg',268,1),(29173,64736,64753,'OP_DisplayWarningMsg',269,1),(29174,64736,64753,'OP_ModifyGuildMsg',270,1),(29175,64736,64753,'OP_GuildEventMsg',271,1),(29176,64736,64753,'OP_GuildEventAddMsg',272,1),(29177,64736,64753,'OP_GuildEventActionMsg',273,1),(29178,64736,64753,'OP_GuildEventListMsg',274,1),(29179,64736,64753,'OP_RequestGuildEventDetailsMsg',275,1),(29180,64736,64753,'OP_GuildEventDetailsMsg',276,1),(29181,64736,64753,'OP_RequestGuildInfoMsg',277,1),(29182,64736,64753,'OP_GuildBankActionMsg',278,1),(29183,64736,64753,'OP_GuildBankActionResponseMsg',279,1),(29184,64736,64753,'OP_GuildBankItemDetailsRequestMsg',280,1),(29185,64736,64753,'OP_GuildBankItemDetailsResponseMs',281,1),(29186,64736,64753,'OP_GuildBankUpdateMsg',282,1),(29187,64736,64753,'OP_GuildBankEventListMsg',283,1);
  481. INSERT INTO `opcodes` VALUES (29188,64736,64753,'OP_RequestGuildBankEventDetailsMs',284,1),(29189,64736,64753,'OP_RewardPackMsg',285,1),(29190,64736,64753,'OP_RenameGuildMsg',286,1),(29191,64736,64753,'OP_ZoneToFriendRequestMsg',287,1),(29192,64736,64753,'OP_ZoneToFriendReplyMsg',288,1),(29193,64736,64753,'OP_ChatCreateChannelMsg',289,1),(29194,64736,64753,'OP_ChatJoinChannelMsg',290,1),(29195,64736,64753,'OP_ChatWhoChannelMsg',291,1),(29196,64736,64753,'OP_ChatLeaveChannelMsg',292,1),(29197,64736,64753,'OP_ChatTellChannelMsg',293,1),(29198,64736,64753,'OP_ChatTellUserMsg',294,1),(29199,64736,64753,'OP_ChatToggleFriendMsg',295,1),(29200,64736,64753,'OP_BrokerAddBag',296,1),(29201,64736,64753,'OP_BrokerRemoveBag',297,1),(29202,64736,64753,'OP_ChatToggleIgnoreMsg',298,1),(29203,64736,64753,'OP_ChatSendFriendsMsg',299,1),(29204,64736,64753,'OP_ChatSendIgnoresMsg',300,1),(29205,64736,64753,'OP_QuestReward',324,1),(29206,64736,64753,'OP_ChatFiltersMsg',338,1),(29207,64736,64753,'OP_MailGetMessageMsg',342,1),(29208,64736,64753,'OP_MailSendMessageMsg',343,1),(29209,64736,64753,'OP_MailDeleteMessageMsg',344,1),(29210,64736,64753,'OP_MailGetHeadersReplyMsg',345,1),(29211,64736,64753,'OP_MailGetMessageReplyMsg',346,1),(29212,64736,64753,'OP_MailSendMessageReplyMsg',347,1),(29213,64736,64753,'OP_MailCommitSendMessageMsg',348,1),(29214,64736,64753,'OP_MailSendSystemMessageMsg',349,1),(29215,64736,64753,'OP_MailRemoveAttachFromMailMsg',350,1),(29216,64736,64753,'OP_WaypointRequestMsg',352,1),(29217,64736,64753,'OP_WaypointReplyMsg',353,1),(29218,64736,64753,'OP_WaypointSelectMsg',354,1),(29219,64736,64753,'OP_WaypointUpdateMsg',355,1),(29220,64736,64753,'OP_CharNameChangedMsg',356,1),(29221,64736,64753,'OP_ShowZoneTeleporterDestinations',357,1),(29222,64736,64753,'OP_SelectZoneTeleporterDestinatio',358,1),(29223,64736,64753,'OP_ReloadLocalizedTxtMsg',359,1),(29224,64736,64753,'OP_RequestGuildMembershipMsg',360,1),(29225,64736,64753,'OP_GuildMembershipResponseMsg',361,1),(29226,64736,64753,'OP_LeaveGuildNotifyMsg',362,1),(29227,64736,64753,'OP_JoinGuildNotifyMsg',363,1),(29228,64736,64753,'OP_AvatarUpdateMsg',364,1),(29229,64736,64753,'OP_BioUpdateMsg',366,1),(29230,64736,64753,'OP_InspectPlayerMsg',367,1),(29231,64736,64753,'OP_WSServerLockMsg',368,1),(29232,64736,64753,'OP_LSServerLockMsg',369,1),(29233,64736,64753,'OP_WSServerHideMsg',370,1),(29234,64736,64753,'OP_CsCategoryRequestMsg',371,1),(29235,64736,64753,'OP_CsCategoryResponseMsg',372,1),(29236,64736,64753,'OP_KnowledgeWindowSlotMappingMsg',373,1),(29237,64736,64753,'OP_AFKUpdateMsg',374,1),(29238,64736,64753,'OP_AnonUpdateMsg',375,1),(29239,64736,64753,'OP_UpdateActivePublicZonesMsg',376,1),(29240,64736,64753,'OP_UnknownNpcMsg',377,1),(29241,64736,64753,'OP_PromoFlagsDetailsMsg',378,1),(29242,64736,64753,'OP_ConsignViewCreateMsg',379,1),(29243,64736,64753,'OP_ConsignViewGetPageMsg',380,1),(29244,64736,64753,'OP_ConsignViewReleaseMsg',381,1),(29245,64736,64753,'OP_ConsignRemoveItemsMsg',382,1),(29246,64736,64753,'OP_UpdateDebugRadiiMsg',383,1),(29247,64736,64753,'OP_ReportMsg',384,1),(29248,64736,64753,'OP_UpdateRaidMsg',385,1),(29249,64736,64753,'OP_ConsignViewSortMsg',387,1),(29250,64736,64753,'OP_TitleUpdateMsg',388,1),(29251,64736,64753,'OP_ClientFellMsg',389,1),(29252,64736,64753,'OP_ClientInDeathRegionMsg',390,1),(29253,64736,64753,'OP_CampClientMsg',391,1),(29254,64736,64753,'OP_UpdateGroupMemberDataMsg',392,1),(29255,64736,64753,'OP_CSToolAccessResponseMsg',392,1),(29256,64736,64753,'OP_TrackingUpdateMsg',393,1),(29257,64736,64753,'OP_BeginTrackingMsg',394,1),(29258,64736,64753,'OP_StopTrackingMsg',395,1),(29259,64736,64753,'OP_GetAvatarAccessRequestForCSToo',397,1),(29260,64736,64753,'OP_AdvancementRequestMsg',398,1),(29261,64736,64753,'OP_MapFogDataInitMsg',399,1),(29262,64736,64753,'OP_MapFogDataUpdateMsg',400,1),(29263,64736,64753,'OP_CloseGroupInviteWindowMsg',401,1),(29264,64736,64753,'OP_WorldPingMsg',404,1),(29265,64736,64753,'OP_MoveLogUpdateMsg',405,1),(29266,64736,64753,'OP_OfferQuestMsg',406,1),(29267,64736,64753,'OP_WorldShutdownUpdateMsg',408,1),(29268,64736,64753,'OP_DisplayMailScreenMsg',409,1),(29269,64736,64753,'OP_ClientIdleBeginMsg',410,1),(29270,64736,64753,'OP_ClientIdleEndMsg',411,1),(29271,64736,64753,'OP_PurchaseConsignmentLoreCheckRe',412,1),(29272,64736,64753,'OP_NotifyApprenticeStoppedMentori',413,1),(29273,64736,64753,'OP_CorruptedClientMsg',414,1),(29274,64736,64753,'OP_WorldDataChangeMsg',415,1),(29275,64736,64753,'OP_MailEventNotificationMsg',416,1),(29276,64736,64753,'OP_RestartZoneMsg',417,1),(29277,64736,64753,'OP_FlightPathsMsg',418,1),(29278,64736,64753,'OP_CharacterLinkdeadMsg',419,1),(29279,64736,64753,'OP_CharTransferStartRequestMsg',420,1),(29280,64736,64753,'OP_CharTransferStartReplyMsg',421,1),(29281,64736,64753,'OP_CharTransferRequestMsg',422,1),(29282,64736,64753,'OP_CharTransferReplyMsg',423,1),(29283,64736,64753,'OP_CharTransferRollbackRequestMsg',424,1),(29284,64736,64753,'OP_CharTransferCommitRequestMsg',425,1),(29285,64736,64753,'OP_CharTransferRollbackReplyMsg',426,1),(29286,64736,64753,'OP_CharTransferCommitReplyMsg',427,1),(29287,64736,64753,'OP_GetCharacterSerializedRequestM',428,1),(29288,64736,64753,'OP_GetCharacterSerializedReplyMsg',429,1),(29289,64736,64753,'OP_CreateCharFromCBBRequestMsg',430,1),(29290,64736,64753,'OP_CreateCharFromCBBReplyMsg',431,1),(29291,64736,64753,'OP_HousingDataChangedMsg',432,1),(29292,64736,64753,'OP_HousingRestoreMsg',433,1),(29293,64736,64753,'OP_AuctionItem',434,1),(29294,64736,64753,'OP_AuctionItemReply',435,1),(29295,64736,64753,'OP_AuctionCoin',436,1),(29296,64736,64753,'OP_AuctionCoinReply',437,1),(29297,64736,64753,'OP_AuctionCharacter',438,1),(29298,64736,64753,'OP_AuctionCharacterReply',439,1),(29299,64736,64753,'OP_AuctionCommitMsg',440,1),(29300,64736,64753,'OP_AuctionAbortMsg',441,1),(29301,64736,64753,'OP_CharTransferValidateRequestMsg',442,1),(29302,64736,64753,'OP_CharTransferValidateReplyMsg',443,1),(29303,64736,64753,'OP_RaceRestrictionMsg',444,1),(29304,64736,64753,'OP_SetInstanceDisplayNameMsg',445,1),(29305,64736,64753,'OP_GetAuctionAssetIDMsg',446,1),(29306,64736,64753,'OP_GetAuctionAssetIDReplyMsg',447,1),(29307,64736,64753,'OP_ResendWorldChannelsMsg',448,1),(29308,64736,64753,'OP_DisplayExchangeScreenMsg',449,1),(29309,64736,64753,'OP_ArenaGameTypesMsg',450,1),(29310,64736,64753,'OP_AuditAuctionEventMsg',451,1),(29311,64736,64753,'OP_InviteRequestMsg',452,1),(29312,64736,64753,'OP_InviteResponseMsg',453,1),(29313,64736,64753,'OP_InviteTargetResponseMsg',454,1),(29314,64736,64753,'OP_InspectPlayerRequestMsg',455,1),(29315,64736,64753,'OP_DispatchMsg',456,1),(29316,64736,64753,'OP_DisplayEventMsg',457,1),(29317,64736,64753,'OP_PrePossessionMsg',458,1),(29318,64736,64753,'OP_PostPossessionMsg',459,1),(29319,64736,64753,'OP_ArenaCreate',461,1),(29320,64736,64753,'OP_ArenaList',462,1),(29321,64736,64753,'OP_ArenaWindow',470,1),(29322,64736,64753,'OP_HouseItemsList',489,1),(29323,64736,64753,'OP_CurrentPet',490,1),(29324,64736,64753,'OP_EarlyLandingRequestMsg',491,1),(29325,64736,64753,'OP_AdventureList',494,1),(29326,64736,64753,'OP_CancelSpellCast',495,1),(29327,64736,64753,'OP_ClearForLandingMsg',497,1),(29328,64736,64753,'OP_UpdateTitleCmd',500,1),(29329,64736,64753,'OP_AttackAllowed',506,1),(29330,64736,64753,'OP_AttackNotAllowed',507,1),(29331,64736,64753,'OP_BagOptions',508,1),(29332,64736,64753,'OP_LFGGroupSearch',510,1),(29333,64736,64753,'OP_CharacterHousingList',513,1),(29334,64736,64753,'OP_DressingRoom',516,1),(29335,64736,64753,'OP_PlayLon',517,1),(29336,64736,64753,'OP_SkillInfoRequest',519,1),(29337,64736,64753,'OP_SkillInfoResponse',520,1),(29338,64736,64753,'OP_LFGUpdateMsg',523,1),(29339,64736,64753,'OP_BadLanguageFilter',524,1),(29340,64736,64753,'OP_VoiceChatChannel',525,1),(29341,64736,64753,'OP_MapRequest',526,1),(29342,64736,64753,'OP_MarketFundsUpdate',531,1),(29343,64736,64753,'OP_UIEvent',532,1),(29344,64736,64753,'OP_MarketAddFundsRequest',533,1),(29345,64736,64753,'OP_MarketAddFundsReply',534,1),(29346,64736,64753,'OP_MarketPurchase',536,1),(29347,64736,64753,'OP_MarketPlacePrices',537,1),(29348,64736,64753,'OP_MarketPlaceItems',544,1),(29349,64736,64753,'OP_RecipeBook',545,1),(29350,64736,64753,'OP_CreateCharacterDungeon',552,1),(29351,64736,64753,'OP_DungeonMakerEnter',553,1),(29352,64736,64753,'OP_DungeonMakerItemRequest',557,1),(29353,64736,64753,'OP_CharacterCreatedDungeons',558,1),(29354,64736,64753,'OP_DungeonMakerToolboxList',559,1),(29355,64736,64753,'OP_DungeonMakerUnknown',560,1),(29356,64736,64753,'OP_DungeonMakerUnknown1',561,1),(29357,64736,64753,'OP_PlayerPollPopup',563,1),(29358,64736,64753,'OP_PlayerPollAnswer',564,1),(29359,64736,64753,'OP_MentorPopup',565,1),(29360,64736,64753,'OP_LoadWelcomeWindow',567,1),(29361,64736,64753,'OP_OpenCharCust',569,1),(29362,64736,64753,'OP_SubmitCharCust',570,1),(29363,64736,64753,'OP_QueAllBgSolo',572,1),(29364,64736,64753,'OP_ZoneBgInstanceList',573,1),(29365,64736,64753,'OP_WorldTravelAvail',577,1),(29366,64736,64753,'OP_Launchpad',580,1),(29367,64736,64753,'OP_PaperdollImage',582,1),(29368,64736,64753,'OP_LoadCalendarEvents',583,1),(29369,64736,64753,'OP_VideoUploaded',584,1),(29370,64736,64753,'OP_SavageBarInitMsg',585,1),(29371,64736,64753,'OP_PetOptionsResponse',586,1),(29372,64736,64753,'OP_DungeonMakerItemResponse',587,1),(29373,64736,64753,'OP_Weakness',588,1),(29374,64736,64753,'OP_CharacterMounts',589,1),(29375,64736,64753,'OP_RecipeListUnknown',598,1),(29376,64736,64753,'OP_DailyObjectives',602,1),(29377,64736,64753,'OP_DeityAbilityWindow',622,1),(29378,64736,64753,'OP_EqBetaCopyRequest',640,1),(29379,64736,64753,'OP_SOEAllAccess',649,1),(29380,64736,64753,'OP_EqHearChatCmd',649,1),(29381,64736,64753,'OP_EqDisplayTextCmd',650,1),(29382,64736,64753,'OP_EqCreateGhostCmd',651,1),(29383,64736,64753,'OP_EqCreateWidgetCmd',652,1),(29384,64736,64753,'OP_EqCreateSignWidgetCmd',653,1),(29385,64736,64753,'OP_EqDestroyGhostCmd',654,1),(29386,64736,64753,'OP_EqUpdateGhostCmd',655,1),(29387,64736,64753,'OP_EqSetControlGhostCmd',656,1),(29388,64736,64753,'OP_EqSetPOVGhostCmd',657,1),(29389,64736,64753,'OP_EqHearCombatCmd',658,1),(29390,64736,64753,'OP_EqHearSpellCastCmd',659,1),(29391,64736,64753,'OP_EQHearProcCmd',660,1),(29392,64736,64753,'OP_EQHearResEffectCmd',661,1),(29393,64736,64753,'OP_EqHearSpellInterruptCmd',662,1),(29394,64736,64753,'OP_EqHearSpellFizzleCmd',663,1),(29395,64736,64753,'OP_EqHearConsiderCmd',664,1),(29396,64736,64753,'OP_EqUpdateSubClassesCmd',665,1),(29397,64736,64753,'OP_EqCreateListBoxCmd',666,1),(29398,64736,64753,'OP_EqSetDebugPathPointsCmd',667,1),(29399,64736,64753,'OP_EqCannedEmoteCmd',669,1),(29400,64736,64753,'OP_EqStateCmd',670,1),(29401,64736,64753,'OP_EqPlaySoundCmd',671,1),(29402,64736,64753,'OP_EqPlaySound3DCmd',672,1),(29403,64736,64753,'OP_EqPlayVoiceCmd',673,1),(29404,64736,64753,'OP_EqHearDrowningCmd',674,1),(29405,64736,64753,'OP_EqHearDeathCmd',675,1),(29406,64736,64753,'OP_EqGroupMemberRemovedCmd',676,1),(29407,64736,64753,'OP_EqHearChainEffectCmd',677,1),(29408,64736,64753,'OP_EqReceiveOfferCmd',678,1),(29409,64736,64753,'OP_EqInspectPCResultsCmd',679,1),(29410,64736,64753,'OP_EqDrawablePathGraphCmd',680,1),(29411,64736,64753,'OP_EqDialogOpenCmd',681,1),(29412,64736,64753,'OP_EqDialogCloseCmd',682,1),(29413,64736,64753,'OP_EqFactionUpdateCmd',683,1),(29414,64736,64753,'OP_EqCollectionUpdateCmd',684,1),(29415,64736,64753,'OP_EqCollectionFilterCmd',685,1),(29416,64736,64753,'OP_EqCollectionItemCmd',686,1),(29417,64736,64753,'OP_EqQuestJournalUpdateCmd',687,1),(29418,64736,64753,'OP_EqMentoring',688,1),(29419,64736,64753,'OP_EqQuestJournalReplyCmd',689,1),(29420,64736,64753,'OP_EqQuestGroupCmd',690,1),(29421,64736,64753,'OP_EqUpdateMerchantCmd',691,1),(29422,64736,64753,'OP_EqUpdateStoreCmd',692,1),(29423,64736,64753,'OP_EqUpdatePlayerTradeCmd',693,1),(29424,64736,64753,'OP_EqHelpPathCmd',694,1),(29425,64736,64753,'OP_EqHelpPathClearCmd',695,1),(29426,64736,64753,'OP_EqUpdateBankCmd',696,1),(29427,64736,64753,'OP_EqExamineInfoCmd',697,1),(29428,64736,64753,'OP_EqCloseWindowCmd',698,1),(29429,64736,64753,'OP_EqUpdateLootCmd',699,1),(29430,64736,64753,'OP_EqJunctionListCmd',700,1),(29431,64736,64753,'OP_EqShowDeathWindowCmd',701,1),(29432,64736,64753,'OP_EqDisplaySpellFailCmd',702,1),(29433,64736,64753,'OP_EqSpellCastStartCmd',703,1),(29434,64736,64753,'OP_EqSpellCastEndCmd',704,1),(29435,64736,64753,'OP_EqResurrectedCmd',705,1),(29436,64736,64753,'OP_EqChoiceWinCmd',706,1),(29437,64736,64753,'OP_EqSetDefaultVerbCmd',707,1),(29438,64736,64753,'OP_EqInstructionWindowCmd',708,1),(29439,64736,64753,'OP_EqInstructionWindowCloseCmd',709,1),(29440,64736,64753,'OP_EqInstructionWindowGoalCmd',710,1),(29441,64736,64753,'OP_EqInstructionWindowTaskCmd',711,1),(29442,64736,64753,'OP_EqEnableGameEventCmd',712,1),(29443,64736,64753,'OP_EqShowWindowCmd',713,1),(29444,64736,64753,'OP_EqEnableWindowCmd',714,1),(29445,64736,64753,'OP_EqFlashWindowCmd',715,1),(29446,64736,64753,'OP_EqHearPlayFlavorCmd',717,1),(29447,64736,64753,'OP_EqUpdateSignWidgetCmd',718,1),(29448,64736,64753,'OP_EqDebugPVDCmd',719,1),(29449,64736,64753,'OP_EqShowBookCmd',720,1),(29450,64736,64753,'OP_EqQuestionnaireCmd',721,1),(29451,64736,64753,'OP_EqGetProbsCmd',723,1),(29452,64736,64753,'OP_EqHearHealCmd',724,1),(29453,64736,64753,'OP_EqChatChannelUpdateCmd',725,1),(29454,64736,64753,'OP_EqWhoChannelQueryReplyCmd',726,1),(29455,64736,64753,'OP_EqAvailWorldChannelsCmd',727,1),(29456,64736,64753,'OP_EqUpdateTargetCmd',728,1),(29457,64736,64753,'OP_BrokerSellList',729,1),(29458,64736,64753,'OP_EqConsignmentItemsCmd',730,1),(29459,64736,64753,'OP_EqStartBrokerCmd',732,1),(29460,64736,64753,'OP_EqMapExplorationCmd',733,1),(29461,64736,64753,'OP_EqStoreLogCmd',734,1),(29462,64736,64753,'OP_EqSpellMoveToRangeAndRetryCmd',735,1),(29463,64736,64753,'OP_EqUpdatePlayerMailCmd',736,1),(29464,64736,64753,'OP_GuildStatusUpdate',739,1),(29465,64736,64753,'OP_EqArenaResultsCmd',740,1),(29466,64736,64753,'OP_EqGuildBankEventActionCmd',741,1),(29467,64736,64753,'OP_EqGuildBankExamineInfoCmd',742,1),(29468,64736,64753,'OP_EqHearSpellNoLandCmd',743,1),(29469,64736,64753,'OP_Lottery',744,1),(29470,64736,64753,'OP_GuildRecruitingMemberInfo',745,1),(29471,64736,64753,'OP_GuildRecruiting',746,1),(29472,64736,64753,'OP_GuildRecruitingDetails',747,1),(29473,64736,64753,'OP_GuildRecruitingImage',748,1),(29474,64736,64753,'OP_TradeskillList',749,1),(29475,64736,64753,'OP_CharRenamed',750,1),(29476,64736,64753,'OP_UseAdornment',760,1),(29477,64736,64753,'OP_ExpPurchWindow',766,1),(29478,64736,64753,'OP_PointOfInterest',770,1),(29479,64736,64753,'OP_PointOfInterest2',771,1),(29480,64736,64753,'OP_TraitsList',772,1),(29481,64736,64753,'OP_CustomizeHouseDisplay',775,1),(29482,64736,64753,'OP_VoiceChatServer',776,1),(29483,64736,64753,'OP_SupplyDepot',780,1),(29484,64736,64753,'OP_EQHearThreatCmd',781,1),(29485,64736,64753,'OP_RecipeList',782,1),(29486,64736,64753,'OP_Research',783,1),(29487,64736,64753,'OP_CharacterCurrency',784,1),(29488,64736,64753,'OP_CharacterAchievements',785,1),(29489,64736,64753,'OP_AchievementUpdateMsg',786,1),(29490,64736,64753,'OP_EQHearDispellCmd',787,1),(29491,64736,64753,'OP_JournalQuestStoryline',788,1),(29492,64736,64753,'OP_DungeonPlayAsAvatarList',789,1),(29493,64736,64753,'OP_DungeonPlayAsAvatarSelected',790,1),(29494,64736,64753,'OP_MercHireWindow',792,1),(29495,64736,64753,'OP_MercUnknown',793,1),(29496,64736,64753,'OP_Unknown',806,1),(29497,64736,64753,'OP_HeritageMsg',10032,1);
  482. /*!40000 ALTER TABLE `opcodes` ENABLE KEYS */;
  483. UNLOCK TABLES;
  484. --
  485. -- Table structure for table `visual_states`
  486. --
  487. DROP TABLE IF EXISTS `visual_states`;
  488. /*!40101 SET @saved_cs_client = @@character_set_client */;
  489. /*!40101 SET character_set_client = utf8 */;
  490. CREATE TABLE `visual_states` (
  491. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  492. `visual_state_id` int(10) unsigned NOT NULL DEFAULT 0,
  493. `name` varchar(250) COLLATE latin1_general_ci NOT NULL DEFAULT 'None',
  494. `min_client_version` smallint(5) unsigned NOT NULL DEFAULT 0,
  495. PRIMARY KEY (`id`),
  496. UNIQUE KEY `VisIDX` (`visual_state_id`)
  497. ) ENGINE=InnoDB AUTO_INCREMENT=20123 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  498. /*!40101 SET character_set_client = @saved_cs_client */;
  499. --
  500. -- Dumping data for table `visual_states`
  501. --
  502. LOCK TABLES `visual_states` WRITE;
  503. /*!40000 ALTER TABLE `visual_states` DISABLE KEYS */;
  504. 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);
  505. /*!40000 ALTER TABLE `visual_states` ENABLE KEYS */;
  506. UNLOCK TABLES;
  507. --
  508. -- Table structure for table `zones`
  509. --
  510. DROP TABLE IF EXISTS `zones`;
  511. /*!40101 SET @saved_cs_client = @@character_set_client */;
  512. /*!40101 SET character_set_client = utf8 */;
  513. CREATE TABLE `zones` (
  514. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  515. `expansion_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
  516. `name` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  517. `file` varchar(64) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  518. `description` varchar(255) COLLATE latin1_general_ci NOT NULL DEFAULT 'Describe me in the zones table! :)',
  519. `safe_x` float NOT NULL DEFAULT 0,
  520. `safe_y` float NOT NULL DEFAULT 0,
  521. `safe_z` float NOT NULL DEFAULT 0,
  522. `safe_heading` float NOT NULL DEFAULT 0,
  523. `underworld` float NOT NULL DEFAULT -1000000,
  524. `xp_modifier` float NOT NULL DEFAULT 0,
  525. `min_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
  526. `max_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
  527. `zone_type` varchar(64) COLLATE latin1_general_ci DEFAULT '',
  528. `always_loaded` tinyint(3) unsigned NOT NULL DEFAULT 0,
  529. `city_zone` tinyint(3) unsigned NOT NULL DEFAULT 0,
  530. `weather_allowed` tinyint(3) unsigned NOT NULL DEFAULT 0,
  531. `min_status` int(10) NOT NULL DEFAULT 0,
  532. `min_level` int(10) NOT NULL DEFAULT 0,
  533. `max_level` int(10) NOT NULL DEFAULT 0,
  534. `start_zone` tinyint(3) NOT NULL DEFAULT 0,
  535. `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') COLLATE latin1_general_ci NOT NULL DEFAULT 'NONE',
  536. `default_reenter_time` int(10) unsigned NOT NULL DEFAULT 0,
  537. `default_reset_time` int(10) unsigned NOT NULL DEFAULT 0,
  538. `default_lockout_time` int(10) unsigned NOT NULL DEFAULT 0,
  539. `force_group_to_zone` smallint(5) unsigned NOT NULL DEFAULT 0,
  540. `lua_script` varchar(255) COLLATE latin1_general_ci DEFAULT '',
  541. `shutdown_timer` int(10) unsigned NOT NULL DEFAULT 300 COMMENT 'In seconds',
  542. `zone_motd` varchar(250) COLLATE latin1_general_ci DEFAULT '',
  543. `ruleset_id` int(10) unsigned NOT NULL DEFAULT 0,
  544. `login_checksum` int(10) unsigned NOT NULL DEFAULT 0,
  545. PRIMARY KEY (`id`),
  546. UNIQUE KEY `NewIndex` (`name`),
  547. KEY `ZoneDescIDX` (`description`)
  548. ) ENGINE=InnoDB AUTO_INCREMENT=668 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC;
  549. /*!40101 SET character_set_client = @saved_cs_client */;
  550. --
  551. -- Dumping data for table `zones`
  552. --
  553. LOCK TABLES `zones` WRITE;
  554. /*!40000 ALTER TABLE `zones` DISABLE KEYS */;
  555. 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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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);
  556. /*!40000 ALTER TABLE `zones` ENABLE KEYS */;
  557. UNLOCK TABLES;
  558. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  559. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  560. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  561. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  562. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  563. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  564. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  565. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  566. -- Dump completed on 2020-02-28 0:12:32