aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-03-12 21:59:10 +0100
committerShauren <shauren.trinity@gmail.com>2021-03-12 21:59:10 +0100
commit2bd70b41eb0d2d2aad16ddb17525c2f24acde2c5 (patch)
tree0c740f968e5b8e1a1154e2f058a1b55ae2b94e95
parentefdca47aff354079bc73d248e022c2e914d94e7b (diff)
Core/Spells: Restore serverside spells fuinctionality
-rw-r--r--sql/updates/world/master/2021_03_12_00_world_serverside_spells.sql4463
-rw-r--r--src/server/game/Miscellaneous/SharedDefines.h2
-rw-r--r--src/server/game/Spells/SpellInfo.cpp308
-rw-r--r--src/server/game/Spells/SpellInfo.h189
-rw-r--r--src/server/game/Spells/SpellMgr.cpp270
-rw-r--r--src/server/game/Spells/SpellMgr.h1
-rw-r--r--src/server/game/World/World.cpp3
7 files changed, 4995 insertions, 241 deletions
diff --git a/sql/updates/world/master/2021_03_12_00_world_serverside_spells.sql b/sql/updates/world/master/2021_03_12_00_world_serverside_spells.sql
new file mode 100644
index 00000000000..0960f3a04fa
--- /dev/null
+++ b/sql/updates/world/master/2021_03_12_00_world_serverside_spells.sql
@@ -0,0 +1,4463 @@
+DROP TABLE IF EXISTS `spell_dbc`;
+
+--
+-- Table structure for table `serverside_spell`
+--
+DROP TABLE IF EXISTS `serverside_spell`;
+CREATE TABLE `serverside_spell` (
+ `Id` int(10) unsigned NOT NULL,
+ `DifficultyID` int(11) NOT NULL DEFAULT '0',
+ `CategoryId` int(10) unsigned NOT NULL DEFAULT '0',
+ `Dispel` int(10) unsigned NOT NULL DEFAULT '0',
+ `Mechanic` int(10) unsigned NOT NULL DEFAULT '0',
+ `Attributes` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx2` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx3` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx4` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx5` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx6` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx7` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx8` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx9` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx10` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx11` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx12` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx13` int(10) unsigned NOT NULL DEFAULT '0',
+ `AttributesEx14` int(10) unsigned NOT NULL DEFAULT '0',
+ `Stances` bigint(20) unsigned NOT NULL DEFAULT '0',
+ `StancesNot` bigint(20) unsigned NOT NULL DEFAULT '0',
+ `Targets` int(10) unsigned NOT NULL DEFAULT '0',
+ `TargetCreatureType` int(10) unsigned NOT NULL DEFAULT '0',
+ `RequiresSpellFocus` int(10) unsigned NOT NULL DEFAULT '0',
+ `FacingCasterFlags` int(10) unsigned NOT NULL DEFAULT '0',
+ `CasterAuraState` int(10) unsigned NOT NULL DEFAULT '0',
+ `TargetAuraState` int(10) unsigned NOT NULL DEFAULT '0',
+ `ExcludeCasterAuraState` int(10) unsigned NOT NULL DEFAULT '0',
+ `ExcludeTargetAuraState` int(10) unsigned NOT NULL DEFAULT '0',
+ `CasterAuraSpell` int(10) unsigned NOT NULL DEFAULT '0',
+ `TargetAuraSpell` int(10) unsigned NOT NULL DEFAULT '0',
+ `ExcludeCasterAuraSpell` int(10) unsigned NOT NULL DEFAULT '0',
+ `ExcludeTargetAuraSpell` int(10) unsigned NOT NULL DEFAULT '0',
+ `CastingTimeIndex` int(10) unsigned NOT NULL DEFAULT '1',
+ `RecoveryTime` int(10) unsigned NOT NULL DEFAULT '0',
+ `CategoryRecoveryTime` int(10) unsigned NOT NULL DEFAULT '0',
+ `StartRecoveryCategory` int(10) unsigned NOT NULL DEFAULT '0',
+ `StartRecoveryTime` int(10) unsigned NOT NULL DEFAULT '0',
+ `InterruptFlags` int(10) unsigned NOT NULL DEFAULT '0',
+ `AuraInterruptFlags1` int(10) unsigned NOT NULL DEFAULT '0',
+ `AuraInterruptFlags2` int(10) unsigned NOT NULL DEFAULT '0',
+ `ChannelInterruptFlags1` int(10) unsigned NOT NULL DEFAULT '0',
+ `ChannelInterruptFlags2` int(10) unsigned NOT NULL DEFAULT '0',
+ `ProcFlags` int(10) unsigned NOT NULL DEFAULT '0',
+ `ProcChance` int(10) unsigned NOT NULL DEFAULT '0',
+ `ProcCharges` int(10) unsigned NOT NULL DEFAULT '0',
+ `ProcCooldown` int(10) unsigned NOT NULL DEFAULT '0',
+ `ProcBasePPM` float NOT NULL DEFAULT '0',
+ `MaxLevel` int(10) unsigned NOT NULL DEFAULT '0',
+ `BaseLevel` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellLevel` int(10) unsigned NOT NULL DEFAULT '0',
+ `DurationIndex` int(10) unsigned NOT NULL DEFAULT '0',
+ `RangeIndex` int(10) unsigned NOT NULL DEFAULT '1',
+ `Speed` float NOT NULL DEFAULT '0',
+ `LaunchDelay` float NOT NULL DEFAULT '0',
+ `StackAmount` int(10) unsigned NOT NULL DEFAULT '0',
+ `EquippedItemClass` int(11) NOT NULL DEFAULT '-1',
+ `EquippedItemSubClassMask` int(11) NOT NULL DEFAULT '0',
+ `EquippedItemInventoryTypeMask` int(11) NOT NULL DEFAULT '0',
+ `ContentTuningId` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellName` varchar(100) DEFAULT NULL,
+ `ConeAngle` float NOT NULL DEFAULT '0',
+ `ConeWidth` float NOT NULL DEFAULT '0',
+ `MaxTargetLevel` int(10) unsigned NOT NULL DEFAULT '0',
+ `MaxAffectedTargets` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellFamilyName` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellFamilyFlags1` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellFamilyFlags2` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellFamilyFlags3` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellFamilyFlags4` int(10) unsigned NOT NULL DEFAULT '0',
+ `DmgClass` int(10) unsigned NOT NULL DEFAULT '0',
+ `PreventionType` int(10) unsigned NOT NULL DEFAULT '0',
+ `AreaGroupId` int(11) NOT NULL DEFAULT '0',
+ `SchoolMask` int(10) unsigned NOT NULL DEFAULT '0',
+ `ChargeCategoryId` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`Id`,`DifficultyID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+--
+-- Dumping data for table `serverside_spell`
+--
+LOCK TABLES `serverside_spell` WRITE;
+/*!40000 ALTER TABLE `serverside_spell` DISABLE KEYS */;
+INSERT INTO `serverside_spell` VALUES
+(11202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Item 3776 spellid_1 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(25347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Item_template serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(25359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Item 21293 spellid_2 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(27488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Grimoire of Blood Pack Rank 6: spell filler',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(32780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 10040 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(34145,0,0,0,0,0,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,80,80,0,1,0,0,0,-1,0,0,0,'Ritual of Souls Rank 1 - Trigger Create Soulwell (29886)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Serverside spell orb of translocation (gobjid=180911)',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(34452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Serverside spell orb of translocation (gobjid=180912)',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(38406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 10721 RewSpellCast serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(38665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Exorcising the Trees',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(38758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Nether Gas In a Fel Fire Engine',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(38788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Spirit Calling',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(39613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 10967 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(39616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 10966 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(40145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11000 RewSpellCast serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(42876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 9275 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(43236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11288 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(43459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11332 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(43499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11250 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(43503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11261 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(44275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11432 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(44805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aura used in creature_addon - serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(44987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11521 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Making Ready / Don\'t Stop Now....',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Disrupt the Greengill Coast',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Ata\'mal Armaments',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11566 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11587 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Placeholder, Missing Aura',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Placeholder, Missing Aura',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(45767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 11670 RewSpellCast serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(46251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[PH] Quest reward: Blood for Blood',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(48803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 12214 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(50574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 12597 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(58888,0,0,0,0,0,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,68,68,0,1,0,0,0,-1,0,0,0,'Ritual of Souls Rank 2 - Trigger Create Soulwell (58889)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tribunal of Ages - Criteria Marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(62388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Demonic Circle: Teleport(48020) - casterAuraSpell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(62791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'XT-002 Heart Overload Trigger Spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(64689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 13854 and 13862 reward serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(65037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nerf the Scrapbots Achievement Criteria Marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(65074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Freya Achievement spell - Criteria Marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(68496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Item_template serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(70816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2146 spellid0 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(70878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Creature 40160 creature_addon serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(71098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest 24451 RewSpellCast serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(71356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2108 spellid0 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(71803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2108 spellid1 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2136 spellid0 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2136 spellid1 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2146 spellid1 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2146 spellid2 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Spelldifficulty_dbc id:2146 spellid3 serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(3617,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,45,0,1,0,0,0,-1,0,0,0,'NPC 32958 suicide spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(18954,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ranshalla Despawn',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(24308,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Summon Shade of Jin\'Do',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(24677,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'GY Mid Trigger - 2.0.12 spell - AV Snowfall Graveyard',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(25900,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(28782,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self + Immune',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30023,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Gushing Wound Removal',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30426,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,40,12,0,0,0,-1,0,0,0,'Stillpine Ancestor Akida',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30429,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,40,12,0,0,0,-1,0,0,0,'Stillpine Ancestor Coo',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30432,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,40,12,0,0,0,-1,0,0,0,'Stillpine Ancestor Tikti',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30454,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,40,12,0,0,0,-1,0,0,0,'Stillpine Ancestor Vark',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(31247,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Silithyst Cap Reward',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(40200,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Bombing Run: See Invisibility Aura Remover',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(70507,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,99,-1,0,0,0,'Halion - Combustion & Consumption Scale Aura',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(74810,0,0,0,0,256,268435456,4,0,0,0,16785408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Halion - Copy Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7056,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pacified',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(25042,0,0,0,0,384,268435592,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Triggerspell - Mark of Nature',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(31934,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1048576,100,1,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Blessed Life',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(37794,0,0,0,0,384,0,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform Infernal',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(39707,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Creature 23487 creature_addon serverside spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63975,0,0,0,0,384,0,0,262144,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Glyph of Blackstab - 3.2.2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24899,0,0,0,0,400,1024,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Heart of the Wild Bear Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24900,0,0,0,0,400,1024,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Heart of the Wild Cat Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72958,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Shaman T10 shoulder visual',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(12507,0,0,0,0,464,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Atal\'ai Skeleton Totem',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(31982,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,21,1,0,0,0,-1,-1,0,0,'Tainted Earthgrab Totem',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30437,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Stillpine Ancestor Akida TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30442,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Stillpine Ancestor Coo TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30443,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Stillpine Ancestor Tikti TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(30453,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Stillpine Ancestor Vark TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(13377,0,0,1,0,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Fire Shield',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(33134,0,0,0,0,65920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,85,1,0,0,0,-1,-1,0,0,'Tainted Nova Totem',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(31980,0,0,0,0,328064,1024,4,268894208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,14,14,0,13,0,0,0,-1,0,0,0,'Righteous Defense Trigger Spell',0,0,0,0,10,0,4,0,0,0,0,0,1,0),
+(25893,0,0,0,0,8388864,268435456,5,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,20,-1,0,0,0,'Viscidus Shrinks',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(65387,0,0,0,0,8388864,0,5,268697600,128,0,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Steelforged Defender - Credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(58630,0,0,0,0,8388992,0,5,269484288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mal\'ganis credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(35009,0,0,0,0,134545792,1024,268435460,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,13,0,0,0,-1,0,0,0,'Invisibility - Reducing threat',0,0,0,0,3,0,0,0,0,0,0,0,6,0),
+(68308,0,0,0,0,159383808,1056,16389,268697600,128,8,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Vault of Archavon - Earth, Wind & Fire - Achievement Check',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(59450,0,0,0,0,536870912,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Four Horsemen credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(64899,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hodir credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(64985,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Thorim credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(65195,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Iron Council credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(68572,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Grand Champions credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(68574,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Argent Champion credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(61698,0,0,0,0,536871296,269058048,67108868,268894272,2048,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flush - Knockback effect',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(5302,0,0,0,0,536871312,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Defensive State - Follows a successful block,dodge or parry.',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(68184,0,0,0,0,545259904,0,5,268697856,128,0,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Faction Champions - credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(68620,0,0,0,0,545259904,0,5,268697856,128,0,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Resilience Will Fix It - achievement credit marker',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(60937,0,0,0,0,562036736,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Seaforium charges damaging wall achievement credit',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(58428,0,0,0,0,671089024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Overkill - aura remove spell',0,0,0,0,8,0,0,0,0,0,0,0,1,0),
+(61988,0,0,0,0,671089024,268436480,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,13,0,0,0,-1,0,0,0,'Divine Shield Exclude Aura - 61988',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(123456,0,0,0,0,0,0,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Halion - Summon Twilight Portals',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(19,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,101,0,0,0,0,0,0,21,1,0,0,0,2,384,0,0,'SWORDSPECIAL (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(84,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Low Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(262,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,2048,0,0,'EXOTIC1H (DND)',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(263,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,4096,0,0,'EXOTIC2H (DND)',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(278,0,0,0,0,384,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,2,354,0,0,'Automation Mechanic Immunity A',0,0,0,0,0,0,0,0,0,2,2,0,32,0),
+(279,0,0,0,0,384,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,2,354,0,0,'Automation Mechanic Immunity B',0,0,0,0,0,0,0,0,0,2,2,0,32,0),
+(482,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(794,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Images',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(1177,0,0,0,0,536871296,1160,536870912,277020672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Twin Empathy',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Dummy Proc',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(1628,0,0,0,0,384,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,2,354,0,0,'Automation Mechanic Immunity C',0,0,0,0,0,0,0,0,0,2,2,0,32,0),
+(1629,0,0,0,0,384,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,2,354,0,0,'Automation Mechanic Immunity D',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(1905,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Share Powers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(2095,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139964,100,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Stance Rage (+3 Off/Def)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(2463,0,0,0,0,384,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,37,21,1,0,0,0,-1,0,0,0,'Automation Mechanic Immunity E',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(3386,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,131072,0,0,'Spears',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(4051,0,0,0,0,262608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,1,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Explosive Sheep Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(4289,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hell Hath a Fury: Hawinni Dummy',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(4308,0,0,0,0,384,268435456,0,0,65,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,2,1,0,0,'Banshee\'s Revenge: Overthane\'s Immunity',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(4334,0,0,0,0,538968448,1160,67108865,64,2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,'Banshee\'s Revenge: The Lich King Despawns',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(4793,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Wintergrasp PvP Drop - 1 Stack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(4952,0,0,0,0,67109120,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,-1,0,0,'Helcular\'s Ward',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(5120,0,0,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Yellow Elevator Port',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(5402,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Gazban Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(5429,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,'Slaves to Saronite: Saronite Mine Slave - On Gossip',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(5431,0,0,0,0,536871168,1024,4,0,0,2097152,65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,0,0,0,6,0,0,0,2,1,0,0,'Slaves to Saronite: Jump A',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(5510,0,0,0,0,681574784,1160,67108869,268435520,2177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,'Banshee\'s Revenge: Despawn All Units',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(5511,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,'Banshee\'s Revenge: Overthane Attack on Resume Combat',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(5610,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Power',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(5667,0,0,0,0,67109072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bogling Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(6440,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Smite\'s Dual Wield Passive',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(6467,0,0,0,0,67109264,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Unarmed Woodcutter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(6591,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Stance Rage Effect (+3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(6592,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139944,100,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Stance Rage (+5 Def)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(6593,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Stance Rage (+5 Off)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(6594,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Stance Rage Effect (+5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7336,0,0,0,0,134217856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Food Idle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7337,0,0,0,0,134217856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,1,0,0,0,-1,0,0,0,'Food Idle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7338,0,0,0,0,134217856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Food Idle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7339,0,0,0,0,134217856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,66,1,0,0,0,-1,0,0,0,'Food Idle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7392,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Find Brother',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(7462,0,0,0,0,538968448,1160,67108869,268435520,2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,-1,0,0,'Not-So-Honorable Combat: Lady Nightswood to Possessed Iskalder',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(7939,0,0,5,0,402915728,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6147,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Sneak Rank 1',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(8320,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,24,24,0,4,0,0,0,-1,0,0,0,'Hex of Ravenclaw Removal',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(8327,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(8328,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(8392,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Hyper Coward',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(8603,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Thistlefur Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(8655,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Riverpaw Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(8894,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Stromgarde Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9033,0,0,0,0,134480272,268436480,268435456,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Shapeshift Form Effect',0,0,0,0,7,67108864,0,0,0,0,0,0,1,0),
+(9124,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,4,32,0,0,'Buckler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9127,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Peasant w/ wood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9135,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Random Powers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9144,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Crushridge Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9173,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Anubisath Guardian AOE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9204,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9205,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,50,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9372,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,7,0,0,0,-1,0,0,0,'Bear Enters Auberdine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(9439,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,12,0,0,0,-1,0,0,0,'Bear Captured in Trap',0,0,60,0,0,0,0,0,0,0,0,0,1,0),
+(9772,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,45,0,1,0,0,0,-1,0,0,0,'Defias Tower I',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(10095,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(10264,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Archaedas Dies',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(10731,0,0,0,0,128,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Awaken Zul\'Farrak Zombie',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(10829,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mechano-Frostwalker Revert',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(10830,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,1,0,0,0,-1,-1,0,0,'Mechano-Frostwalker Revert Passive',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(10868,0,0,0,0,2496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139936,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frost Vulnerable',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(11475,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Stormwind City Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11515,0,0,0,0,65792,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,21,21,3,134,0,0,0,-1,-1,0,0,'Lordaeron Tower',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(11518,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11521,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11523,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11524,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11526,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 05',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11527,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 06',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11560,0,0,0,0,328080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,1,21,1,0,0,0,-1,-1,0,0,'Inner Rage',0,0,0,0,4,1048576,0,0,0,0,0,0,1,0),
+(11591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Share Twin Information',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11592,0,0,0,0,545259904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Twin Empathy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11632,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Orgrimmar Grunt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11633,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Thunderbluff Brave',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11634,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Darnassus Sentinel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11635,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Ironforge Mountaineer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11636,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Undercity Deathguard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11645,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Mulgore Protector',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11755,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Sen\'jin Guardian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11756,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,12,0,0,0,-1,0,0,0,'Summon Gordunni chest (COBALT)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11794,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Horde Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11796,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 01B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11797,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 02B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11798,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 03B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11799,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 04B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11800,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 05B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11801,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Activate Bomb 06B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11803,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Astranaar Sentinel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11804,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Auberdine Sentinel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11819,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Mechanized Sentries',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11822,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Silverpine Deathguard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11823,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Thelsamar Mountaineer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11830,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Walking Bomb Passive Proc (100%)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11838,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,25,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11855,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Protector of the People',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11878,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,-1,0,0,'Capture Treant Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11904,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Summon Sandfury Slave',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(11961,0,0,2,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,45,45,0,1,0,0,0,-1,0,0,0,'Curse of the Dreadmaul',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(11966,0,0,1,0,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Fire Shield',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(12002,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,5,0,0,0,0,20,20,21,4,0,0,0,-1,-1,0,0,'Plague Cloud',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(12038,0,0,3,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,30,30,0,1,0,0,0,-1,0,0,0,'Dark Plague',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(12094,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,5,0,0,0,0,15,15,21,1,0,0,0,-1,-1,0,0,'Volatile Infection',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(12288,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,100,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'zzOLD Improved Pummel',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(12483,0,0,0,0,67109120,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,50,50,8,13,0,0,0,-1,0,0,0,'Hex of Jammal\'an',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(12546,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,45,45,21,1,0,0,0,-1,0,0,0,'Spitelash',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(12552,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,10,0,0,0,1,1,1,21,4,0,0,0,-1,0,0,0,'Cripple',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(12602,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'The Way to His Heart...: Create Tasty Reef Fish',0,0,0,0,3,0,0,0,0,0,0,0,1,0),
+(12660,0,0,0,0,400,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Banish Frost Spectres',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12681,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gemology - Copper (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12682,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gemology - Tin (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12689,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gemology - Iron (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12690,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gemology - Mithril (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12694,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,13,0,0,0,-1,0,0,0,'Idol Room Spawn A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12707,0,0,0,0,262352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,100,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'zzOLD Improved Pummel',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(12728,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Belnistrasz Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(12844,0,0,0,0,384,268533760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,26,26,37,1,0,0,0,-1,-1,0,0,'Remove All Effects',0,0,0,0,0,0,0,0,0,1,1,0,2,0),
+(12939,0,0,0,0,400,268436480,4,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4718592,0,0,0,0,101,0,0,0,0,0,1,21,13,0,0,0,-1,0,0,0,'Polymorph Heal Effect',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(12949,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,13,0,0,0,-1,0,0,0,'Idol Room Spawn End Boss',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(13167,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(13260,0,0,0,0,262608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,1,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Pet Bomb Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(13320,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,10,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Malfunction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(13767,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(13835,0,0,0,0,537198976,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,27,1,0,0,0,-1,-1,0,0,'Unkillable Off',0,0,0,0,0,0,0,0,0,1,1,0,2,0),
+(13909,0,0,0,0,256,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Create Elemental Totem',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14170,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,69648,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDImproved Expose Armor',0,0,0,0,8,0,0,0,0,0,0,0,1,0),
+(14252,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,0,0,0,'Summon Enraged Felbat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14291,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'Anubisath Guardian Targeted',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14307,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,0,0,0,'Summon Enraged Wyvern',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14313,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,0,0,0,'Summon Enraged Gryphon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14329,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,0,0,0,'Summon Enraged Hippogryph',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14801,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Idol Room Spawn C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(14802,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Idol Room Spawn B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(15127,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Burning Imp',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(15227,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,2,-1,0,0,0,'Clear Boom Bot Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(15650,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flame Attack Visual',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(15782,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Frostsaber Cub Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16076,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'War Master Voone Unarmed Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16134,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blackhand Summoner Presummon Emote',0,0,0,0,0,0,0,0,0,0,1,0,1,0),
+(16135,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blackhand Summoner Presummon Emote',0,0,0,0,0,0,0,0,0,0,1,0,1,0),
+(16140,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Exploding Cadaver',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16331,0,0,0,0,464,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Incorporeal Defense',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16364,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rend Calls For Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16365,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rend Calls For Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16369,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Bugs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16370,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Maggots',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16371,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Rats',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16420,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,327,1,0,0,0,-1,0,0,0,'Crypt Scarab Confuse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16423,0,0,0,0,464,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Crypt Scarab Suicide Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16424,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,2,0,0,0,-1,-1,0,0,'Crypt Scarab Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16426,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Alien kill Sire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16499,0,0,2,0,67109120,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,30,3,0,0,0,-1,0,0,0,'Thistle Kinship',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16507,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Corrupted Saber Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16548,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Goretooth\'s Orders',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16563,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1048576,5,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Drowning Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16619,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,4,0,0,0,-1,-1,0,0,'Quest - Temporal Parasite Death Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16630,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,4,0,0,0,-1,-1,0,0,'Quest - Temporal Parasite Summon #2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16631,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,4,0,0,0,-1,-1,0,0,'Quest - Temporal Parasite Summon #3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16721,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,12,0,0,0,-1,0,0,0,'Summon Finkle Generator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16743,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Finkle Questgiver On',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(16771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Warosh Tickle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17042,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Master Swordsmith',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17043,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Master Axesmith',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17044,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Master Hammersmith',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17085,0,0,2,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,0,2,0,0,0,-1,0,0,0,'Player Released Thistle Bear',0,0,60,0,0,0,0,0,0,0,0,0,1,0),
+(17163,0,0,0,0,256,1024,4194304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Unsummon Mechanical Yeti',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17186,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Ras Becomes a Boy!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17225,0,0,0,0,128,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Upgrade Zigguraut',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17226,0,0,0,0,128,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Upgrade Zigguraut',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17310,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,7,0,0,0,-1,0,0,0,'Summon Darrowshire Spirit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17372,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Egan\'s Blaster Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17408,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,96,0,0,0,-1,0,0,0,'Summon Freed Soul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17442,0,0,0,0,384,268436480,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Air Bubbles',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(17472,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Death Pact',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(17507,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Passive Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17621,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Reputation - Caer Darrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17674,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune: Physical',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17681,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Reputation - Caer Darrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17694,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,20,4,1,0,0,0,-1,0,0,0,'Summon Darrowshire Poltergeist (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17772,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Spread',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(17774,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,1,0,0,0,-1,0,0,0,'Spread',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18268,0,0,1,0,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Fire Shield',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(18348,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Poltergeist Periodic Schedule (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18349,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Poltergeist Periodic (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18350,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18380,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Poltergeist Despawn (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18383,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Poltergeist Despawn Schedule (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18391,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Burst',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18430,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dragon Hover',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18433,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy Trigger 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18461,0,0,0,0,262544,268600320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,36,1,0,0,0,-1,-1,0,0,'Vanish Purge',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(18759,0,0,0,0,536871168,0,67108868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Swallow Soul',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(18793,0,0,0,0,256,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,6,0,0,0,-1,0,0,0,'Kodo Kombobulator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18804,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,0,1,0,0,0,-1,0,0,0,'Eruption',0,0,0,0,0,0,0,0,0,1,1,0,4,0),
+(18908,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dissipate Sand Storm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18941,0,0,0,0,262416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,14,14,0,1,0,0,0,-1,0,0,0,'Double Attack',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(18947,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,0,1,0,0,0,-1,0,0,0,'Inferno Dummy Effect',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(18955,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ranshalla\'s Torch Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18959,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,1,0,0,0,-1,-1,0,0,'Rat Aggro Clear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18967,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,1,0,0,0,-1,-1,0,0,'Rat Aggro Clear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18971,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Message to Grand Inquisitor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18973,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Tirion Message to Isillien',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18993,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ranshalla\'s Altar Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(18997,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Tirion Message to Isillien 002',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19033,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Blighthound Call',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19195,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to 90%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19394,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,12,0,0,0,-1,0,0,0,'Summon Gordunni chest (JUNK)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19396,0,0,0,0,464,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Incinerate',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(19433,0,0,0,0,262608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,0,1,0,0,0,-1,0,0,0,'Tamed Pet Passive (DND)',0,0,0,0,5,0,0,0,0,0,0,0,1,0),
+(19436,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Lava Bomb Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19515,0,0,0,0,0,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,0,13,0,0,0,-1,0,0,0,'Frenzy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19527,0,0,0,0,256,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Majordomo Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19614,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Caster',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19626,0,0,1,0,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Fire Shield',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(19640,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pummel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19707,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate to 50%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19768,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gizelton Caravan',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19806,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,1,1,1,0,1,0,0,0,-1,0,0,0,'Injure Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19810,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,1,1,1,0,1,0,0,0,-1,0,0,0,'Injure Self on Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19824,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Blackwing Legionnaires',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(19826,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Blackwing Legionnaire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19827,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Blackwing Mage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19828,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Death Talon Dragonspawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(19829,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Guardian of Nefarian',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(19951,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,1,0,0,0,-1,-1,0,0,'Pacify Self',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(20001,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Mercutio Horse Dummy DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20027,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune Effect: Taunt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20171,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Onyxian Whelps',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(20172,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Onyxian Whelp',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20226,0,0,0,0,256,268435456,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20273,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Windsor\'s Inspriation DND',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(20275,0,0,0,0,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Windsor\'s Inspiration Effect DND',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(20311,0,0,0,0,0,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20409,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Lady Prestor Transforms DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20482,0,0,0,0,128,268468224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,13,0,0,0,-1,0,0,0,'Firesworn Eruption Trigger',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(20492,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Resonite Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20493,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,13,0,0,0,-1,0,0,0,'zzOLDRitual of Doom Trigger Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20494,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Lava Bomb 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20495,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Lava Bomb 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20507,0,0,0,0,536871312,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Magmakin Confuse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20538,0,0,0,0,536871056,268436616,4,131072,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20544,0,0,0,0,144,268468224,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,39,13,0,0,0,-1,0,0,0,'Attract Rager',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20546,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Infernal Spawn Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20548,0,0,0,0,536871040,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,27,1,0,0,0,-1,0,0,0,'Root Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20556,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,1,0,0,0,-1,0,0,0,'Golemagg\'s Trust',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20563,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Elemental Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20693,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Summon Lost Amulet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20723,0,0,0,0,0,0,4,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tower Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20734,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Black Arrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20785,0,0,0,0,262528,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,30,1,0,0,15,-1,0,0,0,'Charm Tolerance (DND)',0,0,0,0,5,0,0,0,0,0,0,0,1,0),
+(20809,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Vampiric Aura',0,0,0,0,0,0,0,0,0,1,2,0,32,0),
+(20861,0,0,0,0,384,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Muglash Waiting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20862,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Muglash Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(20863,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Muglash\'s Brazier Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21087,0,0,0,0,256,268468360,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,30,1,0,0,10,-1,0,0,0,'Immunity',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(21090,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,30,13,0,0,0,-1,0,0,0,'Champion',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(21094,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Separation Anxiety',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21108,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Sons of Flame',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21110,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21111,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21112,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21113,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame E',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21114,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame F',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21115,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame G',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21116,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame H',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21117,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Son of Flame A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21129,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,0,0,0,'Aura of Battle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21130,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,45,45,21,1,0,0,0,-1,0,0,0,'Grip of Command',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21173,0,0,0,0,8388880,268435456,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Aerie Gryphon Hover',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21190,0,0,0,0,384,268435456,5,1048576,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Aerie Gryphon Speed Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21247,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,87376,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wintergrasp Shutdown',0,0,0,0,3,0,0,0,0,0,0,0,1,0),
+(21287,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,145,13,0,0,0,-1,0,0,0,'Conjure Lokholar the Usurper DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21353,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Mount Speed Buff DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21387,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,15,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Melt Weapon',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(21545,0,0,0,0,8388864,0,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,347,12,0,0,0,-1,0,0,0,'Conjure Ryson\'s All Seeing Eye DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21548,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spore Trees',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21554,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Ryson\'s All Seeing Eye',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21561,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Healer Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21709,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Spore Tree',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21727,0,0,0,0,0,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21733,0,0,0,0,208,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spore Tree Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21767,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill Trees',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21789,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,30,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Half',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21795,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Frostwolf Muzzle Effect DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21827,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,3,0,0,0,-1,0,0,0,'Frostwolf Aura DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21828,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Frostwolf Aura Dummy Dispel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21830,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Frostwolf Despawn Spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21859,0,0,0,0,536871056,268468224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,1,0,0,0,-1,0,0,0,'Ragnaros Submerge Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21863,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,3,0,0,0,-1,0,0,0,'Alterac Ram Aura DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21864,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Alterac Ram Aura Dummy Dispel DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21865,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Alterac Ram Despawn Spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21867,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Alterac Ram Collar Effect DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21883,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,7,0,0,0,-1,0,0,0,'Summon Healed Celebrian Vine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21886,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21900,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21901,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21902,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21903,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst E',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21904,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst F',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21905,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst G',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21906,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst H',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21907,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Summon Lava Burst I',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21908,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lava Burst Randomizer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21914,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Celebras Quit Escort',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21917,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Celebras Stone Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21934,0,0,0,0,8388992,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Gizlock\'s Dummy Despawn',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(21988,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Dun Garok Soldiers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(21989,0,0,0,0,8388864,268435456,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Waiting to Resurrect',0,0,0,0,0,0,0,0,0,0,0,27,1,0),
+(22049,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,21,1,0,0,0,-1,-1,0,0,'zzOldTesting Totem Passive',0,0,0,0,11,0,0,0,0,0,0,0,4,0),
+(22050,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'zzOldTesting Totem Dummy',0,0,0,0,11,0,0,0,0,0,0,0,1,0),
+(22190,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Summon Flare Gun DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22208,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Chapter 1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22209,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Chapter 2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22210,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Chapter 3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22211,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Chapter 4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22269,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Injured',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22276,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Elemental Shield',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22282,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Brood Power',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22283,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Brood Power: Red',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22285,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Brood Power: Blue',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22286,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Brood Power: Bronze',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22287,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Brood Power: Black',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22288,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Brood Power: Green',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22352,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Lasher (Fire)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22353,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Lasher (Nature)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22354,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Lasher (Arcane)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22391,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Demon Portal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22483,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'PvP Herald Alpha Transform (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22520,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Lasher (Frost)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22647,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,4,0,0,0,-1,0,0,0,'Empower Pet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22652,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Drakonid Spawner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22653,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Drakonid Spawner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22679,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Prismatic Drakonid Spawner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22697,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,664232,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Arcane Elemental',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(22701,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22707,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,487,1,0,0,0,-1,0,0,0,'Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22716,0,0,1,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hydrojet',0,0,0,0,0,0,0,0,0,1,1,0,16,0),
+(22755,0,0,0,0,327888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,42483,0,0,'Critical Weapon +28',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22764,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22765,0,0,0,0,400,512,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22787,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Irritating Spores',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22788,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,500,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22803,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,1,0,0,0,-1,0,0,0,'Dire Maul Trap - Summon',0,0,0,0,6,8388608,0,0,0,0,0,0,1,0),
+(22821,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,6,0,0,0,-1,0,0,0,'Warpwood Spores',0,0,0,0,6,8388608,0,0,0,0,0,0,8,0),
+(22837,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Conjure Tharnariun\'s Hope',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22841,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Arcanum of Rapidity',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22843,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Arcanum of Focus',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(22847,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Arcanum of Protection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22879,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cho\'Rush Random',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22880,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cho\'Rush Random Effect (Priest)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22881,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cho\'Rush Random Effect (Shaman)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22882,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cho\'Rush Random Effect (Mage)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22904,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,36,0,0,0,-1,0,0,0,'Heated Blade DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22913,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22925,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Conjure Dull Flat Elven Blade DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22941,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Player Lost Shackles DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22942,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Player Lost Apple DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22943,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Player Lost Eau d\' Mixilpixil DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22944,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Player Lost Hinot\'s OilDND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22958,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Summon Vessel of Rebirth DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(22970,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kodo Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23021,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dragon Orb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23022,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,12,0,0,0,-1,0,0,0,'Crystal Prison Conjure DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23031,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Cancel Bob Possession',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23032,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Nefarian\'s Troops Flee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23057,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,29,12,0,0,0,-1,0,0,0,'Summon Mob Spawn Circle (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23118,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,62,7,0,0,0,-1,0,0,0,'Conjure Scourge Footsoldier DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23119,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,347,12,0,0,0,-1,0,0,0,'Conjure Peasant DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23121,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,347,12,0,0,0,-1,0,0,0,'Conjure Peasant DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23137,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Priest Event Despawner DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23156,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Peasant Event Anti-Cheat DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23173,0,0,0,0,384,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Brood Affliction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23175,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,524288,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Chromatic Mutation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23177,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,524288,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Chromatic Mutation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23183,0,0,0,0,536871296,268435592,4,196864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Mark of Frost - Triggered spell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(23185,0,0,0,0,384,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aura of Frost',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(23195,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23199,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'See Priest Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23200,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Precious Transform to Felhound DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23201,0,0,0,0,256,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,4,0,0,0,-1,0,0,0,'Hunter Epic Anti-Cheat DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23209,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,4,0,0,0,-1,-1,0,0,'Terrordale Haunting Spirit #2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23253,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,4,0,0,0,-1,-1,0,0,'Terrordale Haunting Spirit #3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23255,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,87380,100,0,0,0,0,0,1,21,1,0,0,0,-1,0,0,0,'Deep Wounds',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(23258,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demonic Frenzy Cleanse DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23307,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Possess',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23311,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Time Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23317,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (L1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23318,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (L2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23319,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (L3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23320,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (L4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23321,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (L5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23322,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (R1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23323,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (R2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23324,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (R3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23325,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (R4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23326,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dragondog Breath Selection (R5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23329,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Heal Max Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23330,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'No Stealth Detection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23343,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23344,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (L1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23345,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (L2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23346,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (L3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23347,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (L4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23348,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (L5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23349,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (R1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23350,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (R2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23351,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (R3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23352,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (R4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23353,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nefarian Tunnel Selection (R5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23361,0,0,0,0,8388864,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Raise Undead Drakonid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23362,0,0,0,0,384,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Raise Drakonids',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23363,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Drakonid Corpse Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23383,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Flag Click',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23384,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Flag Click',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23385,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Flag Returns (Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23386,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Flag Returns (Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23387,0,0,0,0,134217984,268435456,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Alliance Flag Capture Test',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23388,0,0,0,0,134217984,268435456,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Horde Flag Capture Test',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23390,0,0,0,0,134217984,268435456,4,131072,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Flag Capture',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23405,0,0,0,0,134217984,268435456,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Reset Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23406,0,0,0,0,134217984,268435456,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Reset Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23407,0,0,0,0,134217984,268435456,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Reset Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23408,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,12,0,0,0,-1,0,0,0,'Drop Pillow DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23424,0,0,0,0,256,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Corrupted Totems',0,0,0,0,4,0,0,0,0,0,1,0,32,0),
+(23439,0,0,0,0,256,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Corruption',0,0,0,0,4,0,0,0,0,0,1,0,32,0),
+(23464,0,0,0,0,8388864,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Soul Shard',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(23479,0,0,0,0,384,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Remove Bones',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23484,0,0,0,0,384,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dispel Drakonids',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23487,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Separation Anxiety',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23499,0,0,0,0,142606592,0,262273,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,10,10,0,1,0,0,0,-1,0,0,0,'Revive Pet',0,0,0,0,9,16777216,0,0,0,1,1,0,8,0),
+(23500,0,0,0,0,159383808,1,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Summon Felhunter',0,0,0,0,5,536870912,0,0,0,1,0,0,32,0),
+(23501,0,0,0,0,159383808,1,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Summon Voidwalker',0,0,0,0,5,536870912,0,0,0,1,0,0,32,0),
+(23502,0,0,0,0,159383808,1,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Summon Succubus',0,0,0,0,5,536870912,0,0,0,1,0,0,32,0),
+(23503,0,0,0,0,159383808,1,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Summon Imp',0,0,0,0,5,536870912,0,0,0,1,0,0,32,0),
+(23518,0,0,0,0,65792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,10,10,0,1,0,0,0,-1,-1,0,0,'zzOLDCreate Healthstone',0,0,0,0,5,0,0,0,0,1,0,0,32,0),
+(23519,0,0,0,0,65792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,10,10,0,1,0,0,0,-1,-1,0,0,'zzOLDCreate Healthstone',0,0,0,0,5,0,0,0,0,1,0,0,32,0),
+(23523,0,0,0,0,159383808,32,5,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Warsong CTF Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23524,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Warsong CTF Win',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23525,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Warsong CTF Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23526,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Warsong CTF Win',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23527,0,0,0,0,159383808,1056,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23528,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23529,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23532,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23533,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23534,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23535,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23536,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23644,0,0,0,0,536871168,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Burning Adrenaline',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(23648,0,0,0,0,134217984,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Alliance Flag Captured',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23649,0,0,0,0,134217984,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Horde Flag Captured',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23763,0,0,0,0,159383808,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1703936,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Silverwing Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23764,0,0,0,0,159383808,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1703936,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Horde Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23770,0,0,0,0,612368640,268435592,1,1048576,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,527,6,0,0,0,-1,0,0,0,'Sayge\'s Carnie Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23776,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Possess',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23777,0,0,0,0,537133312,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zero Mana/Full Health DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23779,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Resurgence DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23790,0,0,0,0,536871168,268435592,335544320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,58,58,42,1,0,0,0,-1,-1,0,0,'Stoneclaw Totem Effect TEST',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(23845,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Attract Jubjub',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23878,0,0,0,0,384,268436480,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23896,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Flag Taken From Base (Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23897,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Flag Taken From Base (Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23932,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'A-Mid Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23933,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'A-Mid Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23934,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'A-Mid Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23935,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'H-Mid Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23936,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Mid Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23937,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -N Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23938,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -S Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23939,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -N Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23940,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -N Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23941,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -S Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23942,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'ALT -S Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23943,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'H-Mid Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23944,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'H-Mid Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23945,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Mid Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23946,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Mid Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23973,0,0,0,0,134217984,268435456,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Root Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23975,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create iCoke Prize Voucher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23998,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WAR R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(23999,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WAR R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24000,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WAR R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24001,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WAR R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24007,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Zul\'Gurub Talisman PAL R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24008,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Zul\'Gurub Talisman PAL R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24009,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Zul\'Gurub Talisman PAL R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24010,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Zul\'Gurub Talisman PAL R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24012,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman PRT R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24013,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman PRT R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24014,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman PRT R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24015,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman PRT R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24019,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Axe Flurry',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24038,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman MAG R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24039,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman MAG R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24040,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman MAG R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24041,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman MAG R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24044,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WLK R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24045,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WLK R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24046,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WLK R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24047,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman WLK R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24055,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman DRU R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24056,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman DRU R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24057,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Confused',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24059,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman DRU R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24060,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman DRU R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24066,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,35,13,0,0,0,-1,0,0,0,'Toad Explode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24067,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman SHM R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24068,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman SHM R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24069,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman SHM R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24070,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman SHM R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24072,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman ROG R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24073,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman ROG R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24074,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman ROG R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24075,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman ROG R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24076,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman HUN R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24077,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman HUN R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24078,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman HUN R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24079,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Zul\'Gurub Talisman HUN R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24080,0,0,0,0,8388608,131072,67108864,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Death Touch Copy',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(24081,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Spawn of Mar\'li',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24082,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hatch Spider Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24086,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,10,-1,0,0,0,'Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24087,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24089,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Full Grown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24150,0,0,0,0,65792,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,-1,0,0,'Stinger Charge Primer',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(24181,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Arathi Basin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24182,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Arathi Basin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24205,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Half Heal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24206,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Half Heal Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24211,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'Mark of Arlokk',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(24215,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,4,0,0,0,-1,0,0,0,'Create Heart of Hakkar Explosion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24218,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Test Power Bonus (Cat)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24219,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Test Critical Bonus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24235,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,'Super Invis',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(24237,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Alliance Graveyard Teleporter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24246,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,0,0,0,0,-1,0,0,0,'Summon Zulian Prowler',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(24247,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Zulian Prowlers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24249,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Zulian Stalkers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24250,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Zulian Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24304,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest - Create Mudskunk Lure',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24310,0,0,0,0,262416,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,34,34,21,1,0,0,0,-1,-1,0,0,'Powerful Healing Ward',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24342,0,0,0,0,150995200,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Chained Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24343,0,0,0,0,8388864,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Call Chained Spirit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24344,0,0,0,0,320,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Bloodlord\'s Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24345,0,0,0,0,536871168,268436616,0,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Bloodlord\'s Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24349,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Bloodlord\'s Raptor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24395,0,0,0,0,536936848,33792,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,85,6,0,0,0,-1,0,0,0,'Bestial Wrath',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(24396,0,0,0,0,536936848,33792,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,85,6,0,0,0,-1,0,0,0,'Bestial Wrath',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(24397,0,0,0,0,536936848,268469248,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,85,6,0,0,0,-1,0,0,0,'Bestial Wrath',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(24474,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Destroy Wards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24620,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Portal of Madness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24635,0,0,0,0,150995200,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sober Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24638,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Warsong CTF Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24639,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Warsong CTF Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24642,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24643,0,0,0,0,159383808,1056,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24644,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24645,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24650,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Darnassus Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24651,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24652,0,0,0,0,159383808,32,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Alterac Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24678,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'GY Mid Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24679,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'GY Mid Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24692,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,5,-1,0,0,0,'Hakkar Power',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24693,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,5,-1,0,0,0,'Hakkar Power Down',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24700,0,0,0,0,67109120,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Vanish',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(24722,0,0,0,0,142606592,0,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,10,10,0,13,0,0,0,-1,-1,0,0,'Happy Pet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24743,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,13,0,0,0,-1,0,0,0,'Cannon Prep',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24754,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,32,13,0,0,0,-1,0,0,0,'Cannon Prep',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24779,0,0,0,0,256,268435456,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Dream Fog',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(24781,0,0,0,0,256,268435456,0,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dream Fog',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(24796,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Demented Druid Spirit',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(24805,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Hive\'Zora Rubbing DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24806,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Hive\'Ashi Rubbing DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24807,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Hive\'Regal Rubbing DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24810,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Spirit Shade',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(24863,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create BlizzCon Prize',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24868,0,0,0,0,128,1024,0,0,3145728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,1,0,0,0,-1,-1,0,0,'zzOLDPredatory Strikes',0,0,0,0,7,134217728,0,0,0,0,0,0,8,0),
+(24886,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Shades of Taerar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24906,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Emeriss Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24920,0,0,0,0,738197760,268435592,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,6,0,0,0,-1,0,0,0,'Flag Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24931,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'100 Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24936,0,0,0,0,256,0,0,268435456,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'RC Tank Control',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24938,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Close Control Console',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24948,0,0,0,0,400,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'zzOldDefensive State 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24956,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dream Fog',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24958,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Putrid Mushrooms',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(24959,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'500 Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25044,0,0,0,0,384,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aura of Nature',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(25108,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Bronze Dragon Transform DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25142,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDHeart of the Wild Bear Effect 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25151,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Vekniss Drone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25153,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Agro Drones Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25157,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest - Self Drain Mana',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25175,0,0,0,0,262416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,14,14,0,1,0,0,0,-1,0,0,0,'Triple Attack',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(25184,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Burst',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25186,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Super Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25192,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Ossirian Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25193,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Ossirian Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25194,0,0,0,0,256,136,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Adds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25200,0,0,0,0,4718866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,5,0,0,0,2,262156,0,0,'Shoot',0,0,0,0,9,1,0,0,0,3,2,0,1,0),
+(25374,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Consume',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(25410,0,0,0,0,67109120,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,8,13,0,0,0,-1,0,0,0,'Consume',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(25473,0,0,0,0,536871168,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,135,0,0,0,-1,0,0,0,'Attack Order',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25592,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25600,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Idol of Neptulon DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25604,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Hate to Second',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25657,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25667,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Language Sindassi',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(25676,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drain Mana',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(25680,0,0,0,0,384,268436480,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25684,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Mana Fiends',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(25708,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,13,0,0,0,-1,0,0,0,'Summon Hive\'Zara Swarmer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25711,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmer Start Loop',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25724,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hive\'Zara Larva Aggro Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25726,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hive\'Zara Larva Fear Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25728,0,0,1,0,538968448,1160,67108868,64,2048,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,48,42,42,0,1,0,0,0,-1,0,0,0,'Find the Ancient Hero: Dummy to Subjugated Iskalder',0,0,0,0,10,134218752,0,0,0,1,1,0,1,0),
+(25731,0,0,1,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,24,18,18,0,1,0,0,0,-1,0,0,0,'Find the Ancient Hero: On Player Gossip',0,0,0,0,10,134218752,0,0,0,1,1,0,1,0),
+(25752,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,1,1,18,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Light',0,0,0,0,10,524288,0,0,0,0,0,0,2,0),
+(25753,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Light',0,0,0,0,10,524288,0,0,0,0,0,0,2,0),
+(25754,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drain Mana',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(25757,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,1,1,18,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Wisdom',0,0,0,0,10,524288,0,0,0,0,0,0,2,0),
+(25758,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Wisdom',0,0,0,0,10,524288,0,0,0,0,0,0,2,0),
+(25763,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Draconic For Dummies 7 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25764,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Draconic For Dummies 5 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25765,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Draconic For Dummies 4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25769,0,0,0,0,256,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Consume',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25773,0,0,0,0,67109120,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,524288,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Will of Weavil',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25775,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Consume',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25784,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Narain\'s Special Bag DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25785,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Arcanite Buoy DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25789,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Yauj Brood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25792,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Brood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25830,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmer Teleport Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25833,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmer Loop 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25834,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmer Loop 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25835,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmer Loop 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25842,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Swarmers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25844,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hive\'Zara Swarmers Swarm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25885,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Globs of Viscidus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25897,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,20,-1,0,0,0,'Viscidus Grows',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25904,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,20,-1,0,0,0,'Viscidus Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25905,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Invis Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25921,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight CASTER R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25922,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight CASTER R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25923,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight CASTER R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25924,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight CASTER R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25925,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight CASTER R5 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25926,0,0,0,0,256,268435456,4,335544320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139944,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Viscidus Frost Weakness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25927,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight DPS R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25928,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight DPS R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25929,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight DPS R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25930,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight DPS R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25931,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight DPS R5 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25932,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight TANK R1 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25933,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight TANK R2 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25934,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight TANK R3 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25935,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight TANK R4 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25936,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Signet Ring of the Bronze Dragonflight TANK R5 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25944,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Justice',0,0,0,0,10,0,0,0,0,0,0,0,2,0),
+(25945,0,0,0,0,330112,0,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,1,1,18,6,0,0,0,-1,0,0,0,'zzOLDJudgement of Justice',0,0,0,0,10,0,0,0,0,0,0,0,2,0),
+(25994,0,0,0,0,336,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Membrane of Viscidus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(25998,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Veknis Guardian Call',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26002,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,45,0,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26014,0,0,0,0,612368640,268435456,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4194304,0,0,0,0,101,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'In Battleground',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26015,0,0,0,0,612368640,268435456,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,6,0,0,0,-1,0,0,0,'Ended Battleground',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26057,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pop Dirt Mounds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26075,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Ouro Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26076,0,0,0,0,134217984,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Save Ouro Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26080,0,0,0,0,65792,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,-1,0,0,'Stinger Charge Primer',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(26092,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dirt Mound Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26096,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,12,0,0,0,-1,0,0,0,'Jandice Drops Journal DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26101,0,0,0,0,256,136,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ground Rupture',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26104,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ouro Submerge Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26105,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Glare',0,0,0,0,0,0,0,0,0,3,2,0,1,0),
+(26133,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Sandworm Base',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26140,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,13,0,0,0,-1,0,0,0,'Summon Hook Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26144,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26145,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26146,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26147,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26148,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26149,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26150,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26151,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Summon Eye Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26152,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Eye Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26156,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Carapace of C\'Thun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26159,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Gnomeregan Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26160,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Ironforge Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26161,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Stormwind Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26162,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Orgrimmar Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26163,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Darkspear Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26164,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Undercity Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26165,0,0,0,0,159383808,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Thunder Bluff Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26182,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Burrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26183,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Burrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26191,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Teleport Giant Hook Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26199,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,30,1,0,0,0,-1,-1,0,0,'Darkmaster Gandling Christmas Disguise',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26200,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Darkmaster Gandling',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26205,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport Giant Hook Tentacle Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26209,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Cannon Master Willey',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26210,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Prince Tortheldrin',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26212,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Emperor Dagran Thaurissan',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26213,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Giant Hook Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26214,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Warchief Rend Blackhand',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26215,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas War Master Voone',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26216,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Giant Hook Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26217,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Giant Hook Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26220,0,0,0,0,67109120,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Digestive Acid',0,0,0,1,0,0,0,0,0,0,0,0,8,0),
+(26222,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Preparation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26224,0,0,0,0,256,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Exit Stomach',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26229,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26230,0,0,0,0,256,0,8,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Exit Stomach',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26231,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Christmas Goraluk Anvilcrack',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26236,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Mouth Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26237,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Mouth Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26239,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Human Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26240,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Human Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26241,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Dwarf Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26242,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Dwarf Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26243,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Goblin Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26244,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Goblin Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26245,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Night Elf Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26246,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Night Elf Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26247,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Orc Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26248,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Orc Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26249,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Tauren Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26250,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Tauren Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26251,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Troll Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26252,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Troll Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26253,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Winter Reveler - Undead Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26254,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'.Winter Reveler - Undead Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26255,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Check Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26256,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26257,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26264,0,0,0,0,2843738368,1056,268976141,1245184,11141280,393225,143876,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26268,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26270,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26285,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport Ouro Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26300,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26301,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26302,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26303,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26305,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, RED - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26306,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, RED - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26307,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, RED - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26308,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, RED - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26309,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26310,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26311,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26312,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26313,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26314,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26315,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26316,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26317,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26318,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26319,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26320,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26321,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26322,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26323,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26324,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26340,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Kaldorei Elite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26341,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139944,100,0,0,0,0,0,1,21,1,0,0,0,-1,-1,0,0,'Saurfang\'s Rage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26342,0,0,0,0,159383808,32,1,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rajaxx Event - Bonus Cenarion Faction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26357,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26358,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26359,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26360,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, RED - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26361,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26362,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,11,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26382,0,0,0,0,67109120,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Burrow',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(26383,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Night Elf Harbinger',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26384,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Night Elf Lunar Festival Vendor',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26396,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,0,-1,0,0,0,'Summon Portal Ground State',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26397,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Hook Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26398,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Hook Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26399,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26404,0,0,0,0,142606592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Despawn Tent Port',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26447,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Hive\'Zara Hornets',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26457,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drain Mana',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(26477,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,0,-1,0,0,0,'Summon Giant Portal Ground State',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26479,0,0,0,0,67109120,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Digestive Acid',0,0,0,1,0,0,0,0,0,0,0,0,8,0),
+(26483,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26484,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26485,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26486,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26487,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, BLUE BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26491,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26492,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26493,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26494,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26495,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, GREEN BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26496,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26497,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26498,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26499,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26500,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, PURPLE BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26501,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, RED BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26502,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, RED BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26503,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, RED BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26504,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, RED BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26505,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, RED BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26506,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26507,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26508,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26509,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26510,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, WHITE BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26511,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW BIG - D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26512,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW BIG - N',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26513,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW BIG - SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26514,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW BIG - SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26515,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,5,0,0,0,-1,0,0,0,'Cluster Rocket, YELLOW BIG - U',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26520,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Night Elf Lunar Festival Emissary',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(26523,0,0,0,0,159383808,32,1,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rajaxx Event - Bonus Cenarion Faction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26524,0,0,0,0,256,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sand Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26525,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,13,0,0,0,-1,0,0,0,'True Fulfillment',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(26538,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Hive\'Zara Larva',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26539,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Hive\'Zara Larva',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26542,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Sprint',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26543,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Sprint',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26544,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Omen, self damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26553,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Random Powers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26559,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drain Mana',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(26564,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Viscidus Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26567,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26569,0,0,0,0,536871312,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26570,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Prophet Skeram Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26577,0,0,0,0,256,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Toxic Slime',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(26579,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,1,0,1,0,13,0,0,0,-1,0,0,0,'Teleport Eversong Woods - West Sanctum - Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26582,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26585,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Toxic Slimes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26589,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cancel True Fulfillment',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26591,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport Image',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26592,0,0,0,0,536936848,268469248,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,85,6,0,0,0,-1,0,0,0,'Bestial Wrath',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(26594,0,0,0,0,671088912,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,13,0,0,0,-1,0,0,0,'Despawn Base',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26602,0,0,0,0,384,268468224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune Effect: Taunt & AttackMe',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26603,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Twin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26617,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Ouro Mound',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26619,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,22,1,0,0,0,-1,0,0,0,'Summon Ouro Scarabs Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26626,0,0,0,0,384,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mana Burn Area',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26627,0,0,0,0,687866240,168,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(26628,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Twin Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26630,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Spawn Vekniss Hatchlings',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26631,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Spawn Vekniss Hatchlings',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26632,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Spawn Vekniss Hatchlings',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26633,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Glob Speed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26634,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,4,-1,0,0,0,'Glob Speed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26637,0,0,0,0,536871312,268435592,4,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,487,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26644,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26648,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Port Out Stomach Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26651,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Execute',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(26658,0,0,0,0,2097536,131072,67108864,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,10,1,1,0,2,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26668,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26670,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26671,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26672,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26673,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26674,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26675,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26676,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heart Candy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26684,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Get Gossip, Male',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26685,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Get Gossip, Female',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26741,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,1,0,0,0,-1,0,0,0,'zzOldShiv',0,0,0,0,8,0,0,0,0,0,0,0,1,0),
+(26744,0,0,0,0,336,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Poisonous Blood',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(26766,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Giant Eye Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26767,0,0,0,0,536871168,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Giant Eye Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26768,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Giant Eye Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26769,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'Summon Eye Tentacles',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26787,0,0,0,0,536871168,268533896,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,37,13,0,0,0,-1,0,0,0,'Nullify',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(26837,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon InCombat Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26838,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn InCombat Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26870,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Amorous Timer, Standard Test',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26886,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate to 75%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26973,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create BlizzCon Prize (Euro)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(26974,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Korea Invitational Prize',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27027,0,0,0,0,8388992,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cancel Creeping Plague',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27178,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Defile',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(27537,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Lord Valthalak\'s Amulet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27542,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Top Piece of Lord Valthalak\'s Amulet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27544,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Left Piece of Lord Valthalak\'s Amulet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27558,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Isalien\'s Brazier of Beckoning',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27560,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Mor Grayhoof\'s Brazier of Beckoning',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27562,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Kormok\'s Brazier of Beckoning',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27563,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Jarien & Sothos\'s Brazier of Beckoning',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27566,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Replacement Lord Valthalak\'s Brazier of Beckoning',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27597,0,0,0,0,696254720,136,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport: Ironforge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27598,0,0,0,0,696254720,136,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport: Undercity',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27600,0,0,0,0,696254720,136,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport: IF/UC',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27627,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Drop Obsidian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27628,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Drop Obsidian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27629,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Drop Obsidian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27630,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Drop Obsidian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27631,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Drop Obsidian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27643,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Spirit of Jarien',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27644,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Spirit of Sothos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27645,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Jarien/Sothos Winner Box',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27654,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Love is in the Air Test',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27674,0,0,0,0,150995200,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27678,0,0,0,0,536871056,268436616,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Reevaluate Targets',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27690,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Bone Minion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(27691,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Bone Minion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(27692,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Bone Minion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(27693,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Bone Minion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(27694,0,0,0,0,8388864,0,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,1,0,1,0,3,0,0,0,-1,0,0,0,'Teleport to Razelikh (GROUP)',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(27742,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Amorous Timer, Standard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27748,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'100 Mana',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27749,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Tank',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27770,0,0,0,0,384,0,0,33554432,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,13,0,0,0,-1,0,0,0,'The Leaper: Jump',0,0,0,0,6,0,0,0,0,0,0,0,1,0),
+(27773,0,0,0,0,159383808,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ysida Freed - Argent Dawn Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27791,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(27884,0,0,0,0,128,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Trainee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27887,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Minion Spawner, small',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27896,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Choose Random Skull Pile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27921,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Spectral Trainee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27930,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Choose Random Skull Pile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27932,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Spectral Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27933,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Invis Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27934,0,0,0,0,8388864,268435456,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Viscidus Shrinks',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27938,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Choose Random Skull Pile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27939,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Spectral Rivendare',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27998,0,0,0,0,537985280,98304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(27999,0,0,0,0,262416,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Land Mine Periodic',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(28000,0,0,0,0,262480,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Land Mine Trigger',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(28001,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28007,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,16,1,0,0,0,-1,0,0,0,'Summon Trainee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28008,0,0,0,0,128,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28009,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28010,0,0,0,0,128,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Mounted Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28011,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Summon Mounted Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28033,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro all in LOS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28034,0,0,0,0,384,0,0,268435712,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hate all in LOS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28035,0,0,0,0,384,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Reset Gothik Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28082,0,0,0,0,256,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'BRD Kill Credit Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28083,0,0,0,0,8388864,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'BRD Kill Credit Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28090,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Minion Despawn Timer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28091,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawner, self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28094,0,0,5,0,402915728,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6147,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Sneak',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28098,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Stalagg Tesla Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28108,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Tesla Chain',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28110,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Feugen Tesla Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28115,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Mark of Didier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28116,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Jarien\'s Corpse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28117,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Sothos\'s Corpse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28129,0,0,0,0,16777472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Filming',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28138,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Feugen Initialize',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28139,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stalagg Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28140,0,0,0,0,536871168,268435456,0,0,0,0,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Taunt',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28162,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Savage Guard',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28164,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Ice Guard',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28166,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Shadow Guard',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28175,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Ghost',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28177,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Skeleton',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28179,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Ghoul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28188,0,0,0,0,262272,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,64,64,21,13,0,0,0,-1,-1,0,0,'Champion\'s Bond',0,0,0,0,6,0,0,0,0,0,0,0,2,0),
+(28190,0,0,0,0,536871168,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Mutate Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28203,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Find Camp Type',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28216,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Zombie Chow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28217,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Zombie Chow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28218,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Fallout Slime',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28227,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, finder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28235,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Zombie Chow Search',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28236,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zombie Chow Search',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(28237,0,0,0,0,256,268468224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune Poly/Fear/',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28238,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Zombie Chow Search',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28266,0,0,0,0,538968448,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,153,0,0,0,-1,0,0,0,'Tractor Beam',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28283,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Increase Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28289,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Ghoul Uncommon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28290,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Ghost Uncommon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28291,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,1,0,0,0,-1,0,0,0,'(DND) Summon Crystal Minion, Skeleton Uncommon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28292,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Minion Despawn Timer, Uncommon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28298,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,29,29,21,1,0,0,0,-1,-1,0,0,'Lightning Totem',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28300,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Increase Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28302,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Increase Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28307,0,0,0,0,384,0,0,196864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hateful Strike Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28312,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Increase Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28316,0,0,0,0,754974976,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Tent Prot (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28345,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Communique Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28349,0,0,0,0,8388864,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawner, other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28359,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Trigger Teslas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Damage vs. Guards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28384,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Portal of Shadows',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28388,0,0,0,0,256,1024,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28409,0,0,0,0,536871168,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,6,0,0,0,-1,0,0,0,'Chains of Kel\'Thuzad',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(28415,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Type A Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28416,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Type B Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28417,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Type C Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28421,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28422,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28423,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28425,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic (3 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28426,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B Periodic (30 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28427,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C Periodic (30 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28432,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Set Speed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28446,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack All Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28452,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Wave Mobs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28453,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type D Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28454,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28455,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Type D Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28469,0,0,0,0,134217984,336209024,67649548,8782080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,44,44,21,13,0,0,0,-1,-1,0,0,'Ghost Vision',0,0,0,0,1,0,0,0,0,0,0,0,64,0),
+(28523,0,0,0,0,159383808,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Ice Block',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(28529,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Frost Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28532,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create iCoke Prize Voucher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28534,0,0,0,0,320,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Chill',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(28535,0,0,0,0,256,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,467,1,0,0,0,-1,0,0,0,'Summon Ice Block',0,0,0,0,0,0,0,0,0,1,0,0,16,0),
+(28561,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Blizzard',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(28617,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28618,0,0,0,0,2304,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28619,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28620,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28621,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28625,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'10% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28627,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,265,1,0,0,0,-1,0,0,0,'Summon Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28628,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Clear Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28629,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28663,0,0,0,0,536871184,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,1,0,0,0,-1,0,0,0,'Plague Claw Submerge Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28713,0,0,0,0,256,536871936,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Inoculation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28748,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28781,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spectral Side Assault',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(28797,0,0,0,0,67109136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Widow\'s Embrace',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(28838,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'1 Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28868,0,0,0,0,681574784,1160,67108869,268435520,2177,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Revenge for the Vargul: Thane Illskar Despawns Others',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28874,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Consumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28881,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,25,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Unholy Shadow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28885,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Vindicator\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28886,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Vindicator\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28908,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Vindicator\'s Armguards DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28909,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Freethinker\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28919,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Freethinker\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28920,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Freethinker\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28921,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Predator\'s Mantle DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28923,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Augur\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28926,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Augur\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28929,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Predator\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28930,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Predator\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28935,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Madcap\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28937,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Madcap\'s Mantle DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28939,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Madcap\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28940,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Haruspex\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28941,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Haruspex\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28942,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Haruspex\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28943,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Confessor\'s Mantle DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28945,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Confessor\'s Belt DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28946,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Confessor\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28949,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Illusionist\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28951,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Illusionist\'s Mantle DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28952,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Illusionist\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28954,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Demoniac\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28956,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Demoniac\'s Mantle DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28958,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Demoniac\'s Bracers DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28959,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Augur\'s BP DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28961,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Corpse Scarabs from Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28992,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Corpse Scarabs Delay',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(28994,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Corpse Scarabs Delay',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29009,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Mace of Unending Life DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29010,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Cloak of Unending Life DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29011,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Band of Unending Life DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29012,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Scythe of the Unseen Path DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29013,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Cloak of the Unseen Path DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29014,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Signet of the Unseen Path DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29015,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Blade of Vaulted Secrets DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29016,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Drape of Vaulted Secrets DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29017,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Band of Vaulted Secrets DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29018,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Blade of Eternal Justice DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29019,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Cape of Eternal Justice DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29020,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Ring of Eternal Justice DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29021,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Gavel of Infinite Wisdom DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29022,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Shroud of Infinite Wisdom DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29023,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Ring of Infinite Wisdom DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29024,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Dagger of Veiled Shadows DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29025,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Cloak of Veiled Shadows DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29026,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Band of Veiled Shadows DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29027,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Hammer of the Gathering Storm DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29028,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Cloak of the Gathering Storm DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29030,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Ring of the Gathering Storm DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29031,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Kris of Unspoken Names DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29032,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Shroud of Unspoken Names DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29033,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Ring of Unspoken Names DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29034,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Sickle of Unyielding Strength DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29035,0,0,0,0,545259776,268435592,1,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Bloodlord\'s Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29036,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Drape of Unyielding Strength DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29037,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Sickle of Unyielding Strength DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29046,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Mutate Lasher',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(29050,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,500,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29052,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(29103,0,0,0,0,256,268436480,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Anub\'Rekhan\'s Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29104,0,0,0,0,536871168,268436616,0,268566784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Anub\'Rekhan\'s Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29108,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Kill Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29110,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,0,0,0,'Summon Enraged Mounts',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29111,0,0,0,0,67109248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Permafear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29141,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Marauding Crust Borer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29149,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,500,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29153,0,0,0,0,536871184,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,62,62,21,1,0,0,0,-1,0,0,0,'Gargoyle Stoneform Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29154,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Dummy Stoneskin',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(29156,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create iCoke Giftbox Voucher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29218,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Summon Flame Ring',0,0,0,0,9,0,0,0,0,0,0,0,4,0),
+(29230,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune All',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29241,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Midsummer Merchant - Dwarf Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29242,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Midsummer Merchant - Orc Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29243,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Festival Flamekeeper - Troll Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29244,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Festival Flamekeeper - Tauren Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29245,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Festival Flamekeeper - Dwarf Male',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29246,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Festival Flamekeeper - Human Female',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(29250,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Sapphiron DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29252,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,4,0,0,0,-1,0,0,0,'Summon Skeletons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29261,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,4,0,0,0,-1,0,0,0,'Summon Skeletons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29263,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'30 Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29265,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,4,0,0,0,-1,0,0,0,'Summon Skeletons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29270,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,4,0,0,0,-1,0,0,0,'Summon Skeletons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29272,0,0,0,0,134218112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Despawn Injured Draenei',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29275,0,0,0,0,328064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Unstable Power',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(29280,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29281,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29282,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29283,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29284,0,0,0,0,328064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Brittle Armor',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(29285,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29286,0,0,0,0,328064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Mercurial Shield',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(29287,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Web Wrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29288,0,0,0,0,328064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Restless Strength',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(29296,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,4,0,0,0,-1,0,0,0,'Naxxramas Entry Flag Trigger DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29327,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Sapphiron\'s Wing Buffet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29329,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Sapphiron\'s Wing Buffet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29330,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,63,1,0,0,0,-1,0,0,0,'Sapphiron\'s Wing Buffet Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29336,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Buffet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29337,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,1,0,1,0,13,0,0,0,-1,0,0,0,'Teleport Eversong Woods - West Sanctum - Down',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29344,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Korea Invitational Prize, Zergling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29345,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,2,0,0,0,-1,0,0,0,'Waiter Search',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29351,0,0,0,0,256,268435592,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,135,0,0,0,-1,0,0,0,'Plague Wave Controller (Slow)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29372,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Glowing Sanctified Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29376,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29377,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29378,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,2,0,0,0,-1,0,0,0,'Servant Search',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29379,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Crypt Guards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29391,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic (4 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29392,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic (2 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29393,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B Periodic (25 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29394,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B Periodic (20 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29396,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,7,0,0,0,-1,0,0,0,'Summon Kaliri Female',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29397,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,7,0,0,0,-1,0,0,0,'Summon Kaliri Male',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29398,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B Periodic (15 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29399,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C Periodic (40 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29400,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C Periodic (35 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29401,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C Periodic (20 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29404,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29409,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic (1 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29410,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type A Periodic (5 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29411,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type B Periodic (10 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29412,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Type C Periodic (15 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29429,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Creature Cooldown (10 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29430,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Creature Cooldown (5 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29431,0,0,0,0,536871296,0,4,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Vanish',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29433,0,0,0,0,2492816,0,4,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,36,7,0,0,0,-1,0,0,0,'Garrote',0,0,0,0,8,0,0,0,0,0,0,0,1,0),
+(29434,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Maexxna Spiderling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29493,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,7,0,0,0,-1,0,0,0,'Concubine\'s Caress',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(29498,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,9,0,0,0,-1,0,0,0,'Flesh Ripper Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29499,0,0,0,0,272,136,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29508,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Crypt Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29509,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack All (Summoned Only) Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29510,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack All (Summoned Only) Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29518,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sillithus Flag Click (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29523,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Holy Ground',0,0,0,0,0,0,0,0,0,1,1,0,2,0),
+(29526,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,50,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29530,0,0,0,0,256,268436480,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Sillithus Flag Capture Test (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29532,0,0,0,0,134217984,268435460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4102,0,0,0,0,101,0,0,0,0,0,0,21,7,0,0,0,-1,0,0,0,'Ribbon Pole Channel Effect Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29536,0,0,0,0,536871296,136,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Boss Fight Reset 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29681,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Call All Zombie Chow',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(29682,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Call All Zombie Chow',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(29710,0,0,0,0,134283520,268435456,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4102,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Test Ribbon Pole Channel Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29713,0,0,0,0,448,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,70,70,21,2,0,0,0,-1,0,0,0,'Ethereal Curse',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(29767,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,1,0,0,0,-1,0,0,0,'Overload',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(29785,0,0,0,0,256,268436480,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sillithus Flag Capture',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29800,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Attumen Life',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29805,0,0,0,0,8388992,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Return Fire',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(29806,0,0,0,0,8388992,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Return Fire',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(29807,0,0,0,0,8388992,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Return Fire',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(29826,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,45,21,1,0,0,0,-1,0,0,0,'Self Stun (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29827,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Loch Modan Lager',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29828,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Stouthammer Lite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29829,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Aerie Peak Pale Ale',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29856,0,0,0,0,256,268436616,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Astral Flare',0,0,0,0,0,0,0,0,0,1,1,0,64,0),
+(29857,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Astral Spark',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29863,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Astral Spark Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29867,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Fished Up Red Snapper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29868,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Fished Up Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29869,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,12,0,0,0,-1,0,0,0,'Fished Up Murloc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29871,0,0,0,0,536871168,268435592,0,268435712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Ice Bolt Prot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29873,0,0,0,0,256,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Astral Flare',0,0,0,0,0,0,0,0,0,1,1,0,64,0),
+(29874,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Unrelenting Side Assault',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(29875,0,0,0,0,256,0,0,268435712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Unrelenting Side',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29878,0,0,0,0,536871168,0,4,276824064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29894,0,0,0,0,256,335642624,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Sillithus Flag, Alliance, and speed limit (DND)',0,0,0,0,0,0,0,0,0,0,0,44,1,0),
+(29895,0,0,0,0,256,335642624,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Sillithus Flag, Horde, and speed limit (DND)',0,0,0,0,0,0,0,0,0,0,0,44,1,0),
+(29898,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Guardian of Icecrown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29899,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Guardian of Icecrown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29931,0,0,0,0,554762496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29934,0,0,0,0,554762496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29936,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,87376,10,0,0,0,0,0,1,0,1,0,0,0,-1,-1,0,0,'Elemental Focus',0,0,0,0,11,0,0,0,0,0,0,0,1,0),
+(29950,0,0,0,0,262272,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,31,1,0,0,0,-1,0,0,0,'Safe Fall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29971,0,0,0,0,687866112,2147483816,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Clear Blizzard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29984,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Aran',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29985,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'School Crowd Control',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29986,0,0,0,0,536871296,1024,4194308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Game Over Super Ability',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29988,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aran\'s Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29993,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Change Magic School',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29994,0,0,0,0,554762496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29995,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Activate Frost Mode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29996,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Activate Fire Mode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(29997,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Activate Arcane Mode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30005,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'School Volley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30011,0,0,0,11,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,2,0,0,0,-1,0,0,0,'Quest - Ancestral Spirit Wolf Self Snare',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30028,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,31,2,0,0,0,-1,0,0,0,'Disarm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30058,0,0,0,0,2685403520,268533760,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,12,0,0,0,-1,0,0,0,'Buffeting Winds of Susurrus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30059,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Trigger Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30076,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Maexxna Spiderling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30078,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Kil\'rek Death Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30082,0,0,0,0,256,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,13,0,0,0,-1,0,0,0,'Charge Protection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30083,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,12,0,0,0,-1,0,0,0,'Summon Root Thresher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30097,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Summons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30106,0,0,0,0,536871296,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,1,0,0,0,-1,-1,0,0,'Transference',0,0,0,0,11,67108864,0,0,0,0,0,0,1,0),
+(30114,0,0,0,0,256,268435592,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,135,0,0,0,-1,0,0,0,'Plague Wave Controller (Fast)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30116,0,0,0,0,256,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Plague Wave Effect 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30117,0,0,0,0,256,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Plague Wave Effect 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30118,0,0,0,0,256,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Plague Wave Effect 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30119,0,0,0,0,256,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Plague Wave Effect 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30123,0,0,0,0,8388992,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,327,6,0,0,0,-1,0,0,0,'Sacrifice Remove',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30126,0,0,0,0,8388992,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,6,0,0,0,-1,0,0,0,'Despawn Demon Chains',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30132,0,0,0,0,696254720,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Ice Block',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(30133,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Creature Cooldown - 2(10 sec)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30134,0,0,0,0,536871168,0,5,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Boss Adds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30135,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly West',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30136,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly East',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30137,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly Center',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30139,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Tabard #1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30150,0,0,0,0,262608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,0,0,0,'Tamed Pet Passive (DND)',0,0,0,0,5,0,0,0,0,0,0,0,1,0),
+(30176,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'ToWoW - Sillithus PvP Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30182,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Tabard #2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30185,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Tabard #3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30186,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Tiger Cub',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30188,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Hippogryph Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30189,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Perpetual Purple Firework',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30191,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Fiendish Portal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30192,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Carved Ogre Idol',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30193,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Upperdeck Turtle Mount',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30196,0,0,0,0,8388992,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fiendish Imp Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30203,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fiendish Imp Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30204,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Flyby',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30209,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Target Charred Earth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30215,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30228,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Summons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30236,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,73,73,347,7,0,0,0,-1,0,0,0,'Summon Astral Flare NE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30239,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,73,73,347,7,0,0,0,-1,0,0,0,'Summon Astral Flare NW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30240,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,73,73,347,7,0,0,0,-1,0,0,0,'Summon Astral Flare SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30241,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,73,73,347,7,0,0,0,-1,0,0,0,'Summon Astral Flare SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30243,0,0,0,0,320,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,135,0,0,0,-1,0,0,0,'Plague Wave',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30259,0,0,0,0,536871168,268437504,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Statue (dnd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30268,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Chess: Snap to Direction, BLACK (DND)',0,0,0,1,4,0,0,0,0,0,0,0,1,0),
+(30272,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Enable Square',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30274,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Chess: Snap to Square (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30275,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Is Square WHITE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30276,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Chess: Give Square Color, WHITE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30277,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Is Square BLACK',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30278,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Chess: Give Square Color, BLACK',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30279,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Chess: Snap to Direction, WHITE (DND)',0,0,0,1,4,0,0,0,0,0,0,0,1,0),
+(30287,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Chess: Adjust Facing',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30333,0,0,0,0,604307712,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spark Transform DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30352,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30382,0,0,0,0,384,1024,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hateful Bolt Primer',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(30396,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Nether Portal - Perseverence Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30411,0,0,0,0,256,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,9,12,0,0,0,-1,0,0,0,'Quest - Summon Wood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30415,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest - Cleanse Wood Cast Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30420,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Shadow Grasp',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30436,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'Extract Vapor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30438,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30439,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30440,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,' Increased Spell Hit Chance',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(30441,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,' Increased Spell Hit Chance',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(30444,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Stillpine Ancestor Yor TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30445,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,40,12,0,0,0,-1,0,0,0,'Stillpine Ancestor Yor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30480,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Lava Bomb (small)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30492,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1048576,70,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Sticky Ooze',0,0,0,0,0,0,0,0,0,1,0,0,8,0),
+(30509,0,0,0,0,603979776,136,268435460,268435456,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,38,13,0,0,0,-1,0,0,0,'Mind Exhaustion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30517,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Avenger Trigger Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30518,0,0,0,0,545259904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Avenger Trigger Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30521,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nether Beam Fade',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30525,0,0,0,0,536871296,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Taunt',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(30535,0,0,0,0,537985280,98304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30576,0,0,0,0,0,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,165,1,0,0,0,-1,0,0,0,'Quake',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30620,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Burning Maul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30623,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,1,0,0,0,-1,-1,0,0,'Fel Miasma Passive',0,0,0,0,0,0,0,0,0,1,0,0,32,0),
+(30627,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,1,0,0,0,-1,-1,0,0,'Arcane Surge Passive',0,0,0,0,0,0,0,0,0,1,0,0,64,0),
+(30629,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Debris',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30630,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Debris',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(30634,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Netted Goods',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30642,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Request Heal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30655,0,0,0,0,805306752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30693,0,0,0,0,8388864,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Call Nazan',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30694,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Logic Timer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30696,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly North',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30698,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly West',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30699,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fly East',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30726,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Retarget',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30733,0,0,0,0,256,268435968,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30734,0,0,0,0,384,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Orbital Strike Wipe',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30737,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Heathen',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30743,0,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Face Random Fel Orc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30747,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Draenei Quest Flag 000 DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30748,0,0,0,0,2432,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Draenei Quest Flag Trigger DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30773,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,10,1,1,36,3,0,0,0,-1,0,0,0,'Elekk TRIGGER',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(30774,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,15,15,15,40,12,0,0,0,-1,0,0,0,'Summon Elekk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30781,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Elekk Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30785,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Reaver',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30786,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Sharpshooter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30788,0,0,0,0,8388992,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Warchief Guards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30789,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Greater Manawraith Explode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30791,0,0,0,0,8388992,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,36,14,0,0,0,-1,-1,0,0,'Treacherous Aura',0,0,0,0,0,0,0,0,0,1,1,49,32,0),
+(30792,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,7,0,0,0,-1,0,0,0,'Summon Ravager Ambusher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30793,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Aggro Elekk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30794,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summoned Imp',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30795,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summoned Succubus',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30796,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summoned Voidwalker',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30797,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summoned Felhunter',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(30825,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,7,0,0,0,-1,0,0,0,'Summon Siltfin Ambusher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30826,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,7,0,0,0,-1,0,0,0,'Summon Wildkin Ambusher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30827,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,7,0,0,0,-1,0,0,0,'Summon Bristlelimb Ambusher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30828,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,7,0,0,0,-1,0,0,0,'Summon Sunhawk Ambushers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30855,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Tel\'athion Reply',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30897,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30899,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Malchezaar Axe Wield',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30929,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Arcanagos to Nightbane',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(30948,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flame Arrow Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30949,0,0,0,0,256,268435456,4,131328,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flame Arrow Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30954,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30955,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30956,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30957,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30958,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30959,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30960,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30961,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30962,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30963,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30966,0,0,0,0,8388864,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,0,0,0,'Suicide While Dead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30975,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Gauntlet Guards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30976,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Gauntlet Guards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30982,0,0,4,11,786880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,70,70,0,2,0,0,0,-1,-1,0,0,'Crippling Poison',0,0,0,0,8,0,0,0,0,1,0,0,8,0),
+(30983,0,0,4,11,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,29,2,0,0,0,-1,-1,0,0,'Wound Poison',0,0,0,0,8,0,0,0,0,1,0,0,8,0),
+(30993,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Gauntlet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(30998,0,0,0,12,459152,262656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,1,0,0,0,70,70,21,1,0,0,0,-1,0,0,0,'Cheap Shot',0,0,0,0,8,1024,0,0,0,2,2,0,1,0),
+(31001,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Create Elekk Dung',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31010,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31011,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,13,0,0,0,-1,0,0,0,'Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31030,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Damage vs. Sunhawk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31031,0,0,0,0,384,268435968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Damage vs. Argus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31207,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4127,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Cancel Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31248,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,36,1,0,0,0,-1,0,0,0,'Self Stun - 1 second, no visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31251,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Filled Shimmering Vessel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31253,0,0,0,0,268501248,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,-1,0,0,'Summon Hellfire Imp',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(31254,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Dismiss Hellfire Imp',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(31265,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Complete First Trial',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31291,0,0,0,0,192,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,3,0,0,0,0,35,35,21,1,0,0,0,-1,-1,0,0,'Sleep',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(31313,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Make Player Summon Boss',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31314,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Blood Knight Insignia',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31318,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Assassin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31321,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Rift Lord',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31322,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Close Time Rift Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31323,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Close Time Rift Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31327,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Medivh Dies!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31342,0,0,0,0,8388992,268959744,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Eat My Corpse',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(31348,0,0,0,0,545259776,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Doom',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(31351,0,0,0,0,256,268436480,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Fresh Carcass Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31352,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Time Rift Ready Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31353,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,23,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 90',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31354,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Time Rift Effect (1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31355,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Time Rift Effect (2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31356,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Time Rift Effect (3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31357,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Time Rift Effect (4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31360,0,0,0,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Alert On',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(31362,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,134,0,0,0,-1,0,0,0,'Explode the Spice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31374,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,70,0,0,5,1,0,0,0,-1,0,0,0,'Summon Netherstorm Backlash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31375,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,10,10,21,1,0,0,0,-1,0,0,0,'Ghostly Touch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31388,0,0,0,0,0,16388,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Time Rift Channel Trigger',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(31391,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Chrono Lord Deja',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31392,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Temporus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31393,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Rift End Boss',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31395,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Medivh Lives!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31421,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Chronomancer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31514,0,0,0,0,16777472,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flight Mode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31518,0,0,0,0,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,1,0,0,0,-1,-1,0,0,'Trueshot Aura',0,0,0,0,0,0,0,0,0,0,1,0,64,0),
+(31520,0,0,0,0,8388864,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Stratholme Kill Credit Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31522,0,0,0,0,256,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Strath Kill Credit Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31524,0,0,0,0,8388864,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Stillblade Kill Credit Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31525,0,0,0,0,256,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Stillblade Kill Credit Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31528,0,0,0,0,272,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,6,0,0,0,-1,0,0,0,'Summon Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31529,0,0,0,0,272,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,6,0,0,0,-1,0,0,0,'Summon Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31530,0,0,0,0,272,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,6,0,0,0,-1,0,0,0,'Summon Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31531,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,4,0,0,0,-1,0,0,0,'Summon Gnomes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31544,0,0,0,0,272,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,6,0,0,0,-1,0,0,0,'Summon Distiller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31545,0,0,0,0,272,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,6,6,0,0,0,-1,0,0,0,'Summon Distiller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31562,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,32,1,0,0,0,-1,0,0,0,'Trigger Sandworm Mortar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31564,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Move Away Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31580,0,0,0,0,384,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31592,0,0,0,0,65920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Crypt Scarabs',0,0,0,0,0,0,0,0,0,0,2,0,1,0),
+(31593,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,7,0,0,0,-1,0,0,0,'Summon Greater Manawraith',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31594,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Prevent Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31632,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 120',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31636,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,22,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 45',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31637,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,62,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 75',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31691,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,500,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31692,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,63,63,21,7,0,0,0,-1,0,0,0,'Summon Underbog Mushroom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Putrid Mushroom Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31708,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31720,0,0,0,0,603982208,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,35,6,0,0,0,-1,0,0,0,'Suspension Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31728,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'As the Crow Flies Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31746,0,0,0,0,537919872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4194304,0,0,0,0,101,0,0,0,0,0,0,554,5,0,0,0,-1,0,0,0,'Stormcrow Shape',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31752,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31753,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31763,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,36,7,0,0,0,-1,0,0,0,'Distiller Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31767,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Distiller Dummy Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31768,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Sandworm Base',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31770,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Guard Slip\'kik Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31773,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,106,3,0,0,0,-1,0,0,0,'As the Crow Flies Whisper Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31774,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,467,3,0,0,0,-1,0,0,0,'As the Crow Flies Whisper Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31775,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,205,3,0,0,0,-1,0,0,0,'As the Crow Flies Whisper Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31776,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,3,0,0,0,-1,0,0,0,'As the Crow Flies Whisper Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31777,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'As the Crow Flies Whisper Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31788,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Elekk Taxi',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31800,0,0,0,0,536871168,268435592,536870916,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,205,1,0,0,0,-1,0,0,0,'Icebolt',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(31887,0,0,0,0,603980160,268435456,0,0,4,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,13,0,0,0,-1,0,0,0,'Combat Mark',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31888,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31899,0,0,0,0,536871168,524288,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Allies',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31912,0,0,0,0,256,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ysida Saved Credit Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31913,0,0,0,0,8388864,0,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ysida Saved Credit Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31917,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(31918,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(31919,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(31924,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31937,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,13,0,0,500,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31940,0,0,0,0,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Blood Knight Respect (DND)',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(31952,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Blood Knight Respect (DND)',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(31957,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Guard Catches Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31959,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Fire Bomb Target Summon Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31960,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fire Bomb Target Summon Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(31968,0,0,0,0,536871168,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,73,73,0,1,0,0,0,-1,0,0,0,'Doomfire',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(31989,0,0,0,0,536871168,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,6,0,0,0,-1,0,0,0,'Enslave Humanoid',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(31995,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Shattered Rumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32031,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Goblin Follow Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32044,0,0,0,0,536871296,1160,4,1179904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Soul Charge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32046,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Fort Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32047,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Superiority',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32048,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Superiority',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32050,0,0,0,0,2281701760,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Fort Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32058,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Fort Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32059,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Run 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32061,0,0,0,0,134217984,0,268435456,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'(TXT) ToWoW - Tower Kill Credit (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32068,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Run 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32069,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Superiority',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32070,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Superiority',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32072,0,0,0,0,134218112,0,268435460,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Battle Morale',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32073,0,0,0,0,134217728,0,268435460,268697856,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Tower Capture Test (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32075,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Run 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32081,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Run 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32086,0,0,0,0,384,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32113,0,0,0,7,536871296,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32114,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,1,0,0,0,-1,0,0,0,'Summon Wisp',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32116,0,0,0,0,536871296,136,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Denouement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32117,0,0,0,0,536870912,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Target (10 yd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32118,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Floating Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32123,0,0,0,0,536870912,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Target (Not Flying, 50 yd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32128,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flee If All Targets Fly',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32147,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,12,0,0,0,-1,0,0,0,'Ignite Corpse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32151,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32152,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Elder Kuruti\'s Response',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32153,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,1,0,0,0,-1,-1,0,0,'Flames',0,0,0,0,0,0,0,0,0,1,1,0,12,0),
+(32156,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Guard Spawns',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32157,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Set Guard Count',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32165,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Create Fire Bombs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32171,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32184,0,0,0,0,671089024,268436480,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,500,-1,0,0,0,'Earth Totem Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32185,0,0,0,0,384,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Orbital Strike',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(32186,0,0,0,0,671089024,268436480,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,500,-1,0,0,0,'Fire Totem Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32187,0,0,0,0,671089024,268436480,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,500,-1,0,0,0,'Water Totem Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32188,0,0,0,0,671089024,268436480,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,500,-1,0,0,0,'Air Totem Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32210,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,407,2,0,0,0,-1,0,0,0,'Become My Spar Buddy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32213,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,13,0,0,0,-1,0,0,0,'Shadow of the Forest SI DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32218,0,0,0,0,537133312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Duel Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32222,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Harvest Glowcap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32229,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Drop Battle Plans DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32252,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Karazhan - Chess NPC State, Moving',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32257,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess: Event Start, Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32258,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess: Event Start, Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32283,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,12,0,0,0,-1,0,0,0,'Focus Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32291,0,0,0,0,2432,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,37,0,0,0,-1,0,0,0,'Focus Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32299,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lantresor of the Blade',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32313,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Face Current Enemy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32326,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Void Blast',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(32331,0,0,0,0,536871168,0,67108868,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Hyjal Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32333,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,6,0,0,0,-1,0,0,0,'Rotate 360',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32335,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,7,0,0,0,-1,0,0,0,'Cyclone',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(32336,0,0,0,0,536871168,0,0,268697600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,0,1,0,0,0,-1,0,0,0,'Cyclone',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(32340,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Hyjal Friendly',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32341,0,0,0,0,384,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,8,1,0,0,0,-1,-1,0,0,'Mirren No Hat (DND)',0,0,0,0,1,0,0,0,0,0,0,0,1,0),
+(32342,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Brood Affliction: Bronze',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32360,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Stolen Soul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32425,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Face Highest Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32432,0,0,0,0,688128256,32,67649545,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Full Heal / Mana',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32433,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Clear Zangar Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32438,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Neutral Flag Taken',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32444,0,0,0,0,384,268435456,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Empoor\'s Bodyguard Leave Combat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32460,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Raging Soul Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32551,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Nethrandamus Flight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32555,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Tzerak',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32558,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Naturalist Bite Calls To Quagmirran',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32559,0,0,0,0,537919872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,328,3,0,0,0,-1,0,0,0,'Nethrandamus Taxi',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32561,0,0,0,0,537919872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4194304,0,0,0,0,101,0,0,0,0,0,0,554,5,0,0,0,-1,0,0,0,'Nethrandamus Quest Marker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32562,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4194304,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Nethrandamus Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32565,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Crystals',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32579,0,0,0,0,2304,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Portal Beam',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32586,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,347,13,0,0,0,-1,0,0,0,'QID 10004',0,0,0,0,0,0,0,0,0,0,0,7,1,0),
+(32611,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess, Medivh: Pawn, Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32613,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Medivh\'s Shield -5%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32617,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Gold Peasant Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32619,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flame Arrow Target Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32620,0,0,0,0,4194560,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32621,0,0,0,0,4194560,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Check Reset Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32624,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Quad 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32625,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Quad 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32626,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Quad 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32627,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Quad 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32628,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quad 1 Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32629,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quad 2 Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32630,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quad 3 Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32631,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quad 4 Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32632,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Overrun Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32634,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Overrun Target Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32635,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Overrun Target Spawn Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32673,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Create Replacement Extract of the Afterlife',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32687,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess, Medivh: Pawn, Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32718,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Sprint',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32719,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Sprint',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32726,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess, NPC Action: Find Enemy Horde (Melee)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32762,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Incendiary Bombs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32763,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dissipate',0,0,0,0,0,0,0,0,0,0,0,52,1,0),
+(32781,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summoned Felguard',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(32782,0,0,0,0,159383808,1,128,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,30,30,21,1,0,0,0,-1,-1,0,0,'Summon Felguard',0,0,0,0,5,536870912,0,0,0,1,0,0,32,0),
+(32798,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(32799,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(32800,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(32827,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Increase Reputation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32887,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Raging Soul',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(32891,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durnhold Flight DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32892,0,0,0,0,537919872,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Brazen Taxi',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32893,0,0,0,0,2304,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Equip Armor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32941,0,0,0,0,268435840,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5131,0,0,0,0,101,0,0,0,0,20,20,0,13,0,0,0,-1,0,0,0,'Blue Beam Dummy',0,0,0,0,6,8388608,0,0,0,0,0,0,32,0),
+(32949,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon the Dude',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(32985,0,0,0,0,134218112,1024,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hellfire Fort Buff Reward Raid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33003,0,0,0,0,2281701760,268435456,268435457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire Zone Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33007,0,0,0,0,2818572672,268435456,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Nagrand PvP Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33008,0,0,0,0,2281701760,268437504,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Nagrand PvP Buff (Area Aura)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33011,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Remember Start Position',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33121,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'A Vision of the Forgotten',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33122,0,0,0,0,536873344,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,13,0,0,0,-1,0,0,0,'A Vision of the Forgotten',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33137,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Elemental Sapta',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33228,0,0,0,0,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Gossip NPC Periodic Trigger - Fidget',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33229,0,0,0,0,256,136,4,805306368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,13,0,0,0,-1,0,0,0,'Wrath of the Astromancer',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(33242,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33244,0,0,0,0,0,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport Start Position',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33317,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33318,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33319,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33320,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33330,0,0,0,0,402653440,268435520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4127,0,0,0,0,101,0,0,0,0,0,0,35,96,0,0,0,-1,0,0,0,'Flee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,5,0,0,0,-1,0,0,0,'Astromancer Split',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(33362,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Astromancer Adds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33363,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Executioner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33364,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Vanquisher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33366,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Astromancer Solarian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33367,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Astromancer Priest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33374,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Astromancer Choice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33375,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Set Health',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(33376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Unlink Combat Group',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33399,0,0,0,0,4194578,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,13,0,0,0,2,262156,0,0,'Shoot',0,0,0,0,9,1,0,0,0,0,0,0,1,0),
+(33408,0,0,0,0,384,0,0,0,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Snare Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33420,0,0,0,0,384,268436616,0,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,36,1,0,0,0,-1,-1,0,0,'zzOldArcane Missiles',0,0,0,0,3,2048,0,0,0,0,0,0,64,0),
+(33460,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,65,65,21,1,0,0,4,-1,0,0,0,'Inhibit Magic',0,0,0,0,0,0,0,0,0,0,1,0,32,0),
+(33495,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33497,0,0,0,0,538968448,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Tractor Beam',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33505,0,0,0,0,65920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Aid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33514,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33515,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33516,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33517,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33518,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33519,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33520,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33521,0,0,0,0,150995200,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate This Target and Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33524,0,0,0,0,150995200,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate This Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33544,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Infernaling Duration',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33558,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Draw Shadows',0,0,0,0,0,0,0,0,0,0,1,0,64,0),
+(33567,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Void Portal D',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33568,0,0,0,0,8454528,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Void Portals',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33595,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Elementals',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33609,0,0,0,0,150995200,1024,1048580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate This Target and Aggro 2 sec later',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33610,0,0,0,0,272,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Syth A Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33611,0,0,0,0,272,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Syth B Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33612,0,0,0,0,272,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Syth C Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33613,0,0,0,0,272,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Syth D Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33614,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Void Portal B',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33615,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Void Portal C',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33616,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Void Portal E',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33621,0,0,0,0,272,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,135,0,0,0,-1,0,0,0,'Syth Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33629,0,0,1,5,1073807744,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,8,8,21,3,0,0,0,-1,-1,0,0,'Fear Self Forever',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(33635,0,0,0,0,384,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Leash Legion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33636,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,62,13,0,0,0,-1,0,0,0,'Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33639,0,0,1,0,65920,268435456,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Protection of Azeroth',0,0,100,0,6,67108864,0,0,0,1,1,0,32,0),
+(33645,0,0,0,0,536870912,1024,4,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Target (Not Player)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33673,0,0,0,0,67109248,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,27,1,0,0,0,-1,0,0,0,'Shockwave',0,0,0,0,0,0,0,0,0,0,1,0,8,0),
+(33677,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33680,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33681,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33682,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33683,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33687,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Incite Chaos',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33722,0,0,0,0,256,268435456,0,268435712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,387,13,0,0,0,-1,0,0,0,'Laugh',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33730,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,6,0,0,0,-1,0,0,0,'Remove Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33734,0,0,0,0,2281701632,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Zangar Honor Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33761,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,327,13,0,0,0,-1,0,0,0,'Distiller Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33765,0,0,0,0,2281701760,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,37,1,0,0,0,-1,0,0,0,'Zangar PvP Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33766,0,0,0,0,2281701760,268435456,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zangar PvP Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33767,0,0,0,0,2281701760,268435456,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zangar PvP Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33769,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,36,13,0,0,0,-1,0,0,0,'Distiller Dummy Combat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33797,0,0,0,0,256,268435456,0,268435712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Laugh',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33801,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move Forward',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(33815,0,0,1,5,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,8,8,63,1,0,0,0,-1,-1,0,0,'Fleeing in Terror',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(33823,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infernal Invasion Mage Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33842,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Tank',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33843,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Tank',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33845,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Tank (Not Random)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33892,0,0,0,0,16777600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Big Bomb DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33893,0,0,0,0,16777600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Big Bomb DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33897,0,0,0,0,67109248,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,5,0,0,0,-1,0,0,0,'Desperate Defense',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(33901,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,3,-1,0,0,0,'Summon Crystalhide Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33903,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,3,-1,0,0,0,'Summon Crystalhide Rageling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33921,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Leap Forward (20)',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(33922,0,0,0,12,134480272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Crust Burst',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(33927,0,0,0,0,65920,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,7,0,0,0,-1,0,0,0,'Summon Void Summoner',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(33931,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,6,1,0,0,0,-1,0,0,0,'Call Test Elemental',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33936,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Phase 2 Units',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(33952,0,0,1,0,2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,28,1,0,0,0,-1,-1,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(34015,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Phase 3 Units',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34021,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Phase 4 Units',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34022,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Phase 5 Units',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34028,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Thrall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34029,0,0,0,0,384,268435456,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'Check for Valid Soul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34034,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Mo\'arg No Weapon Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34064,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Soul Split',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34065,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,327,13,0,0,0,-1,0,0,0,'Distiller Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34081,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Improved Parry',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34084,0,0,0,0,536871312,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'zzOLDAdvantaged State',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34103,0,0,0,0,537133440,268959744,8,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,5,0,0,0,-1,-1,0,0,'Flight Sanctuary',0,0,0,0,10,0,0,0,0,0,0,0,2,0),
+(34116,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sha\'tari Operative Calls for Healing',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34118,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34122,0,0,0,0,536871312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Swift Shot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34124,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Stage Spotlight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34125,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,4,0,0,0,-1,0,0,0,'Spotlight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34127,0,0,0,0,134218112,1024,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,36,1,0,0,0,-1,0,0,0,'Tree of Life',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(34134,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hot Air',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34147,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,25,7,0,0,0,-1,0,0,0,'zzOLDCreate Soulwell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34148,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,60,60,25,7,0,0,0,-1,0,0,0,'zzOLDCreate Soulwell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34160,0,0,0,0,67109248,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,50,-1,0,0,0,'Wild Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34174,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Call for Arcane Orb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34175,0,0,0,0,256,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Arcane Orb Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34188,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 30',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34192,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34193,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Frost',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34194,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Arcane',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34195,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Nature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34196,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Shadow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34197,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Holy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34198,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cycling Response: Physical',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34220,0,0,0,0,0,1160,0,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Arcane Orb Starter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34242,0,0,0,12,459152,262688,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,1,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Cheap Shot',0,0,0,0,8,1024,0,0,0,2,2,0,1,0),
+(34255,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warchief\'s Reverence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34257,0,0,0,0,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Warchief\'s Reverence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34265,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,327,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34266,0,0,0,0,151257472,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Warchief\'s Retort',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34327,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,12,0,0,0,-1,0,0,0,'Summon Snowsong',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34328,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,12,0,0,0,-1,0,0,0,'Summon Duros',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34362,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Crude Explosives',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34364,0,0,0,0,67109328,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Weakness of Ar\'kelos',0,0,0,0,0,0,0,0,0,1,2,0,32,0),
+(34369,0,0,0,0,536871296,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Drek\'Thar Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34377,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Thrall\'s Memories',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34405,0,0,0,0,448,268435460,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Null Energy',0,0,0,0,6,8388608,0,0,0,0,0,0,1,0),
+(34408,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Glacius',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34434,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aldor Spawn Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34443,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,152,0,0,0,-1,0,0,0,'Tour Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34450,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Peasant w/ wood 1.5 scale',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34521,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34527,0,0,1,0,2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,28,1,0,0,0,-1,-1,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(34532,0,0,0,0,4194578,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,13,0,0,0,2,262156,0,0,'Shoot',0,0,0,0,9,1,0,0,0,0,0,0,1,0),
+(34549,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,13,0,0,0,-1,0,0,0,'Dirty Larry Submits',0,0,0,0,0,0,0,0,0,0,0,7,1,0),
+(34572,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move NW',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(34573,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move NE',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(34575,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,-1,0,0,'Move N',0,0,0,0,3,0,0,0,0,0,0,0,8,0),
+(34628,0,0,0,0,8388864,268435456,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Negatron Dies',0,0,0,0,6,131072,0,0,0,0,0,0,1,0),
+(34651,0,0,0,0,384,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34652,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rocket-Chief To Negatron',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34668,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,13,0,0,500,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34689,0,0,0,0,272,0,536870912,256,8448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tornado',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34701,0,0,0,0,384,268436480,268435456,196608,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34703,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laj (Arcane)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34704,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laj (Fire)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34705,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laj (Frost)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34706,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Unyielding Banner Scrap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34707,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laj (Nature)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34708,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Unyielding Banner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34710,0,0,0,0,400,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laj (Shadow)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34711,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,1,0,0,0,-1,0,0,0,'Random Attack Speed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34721,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Displacement',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(34726,0,0,0,0,384,268960768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,34,0,0,0,-1,0,0,0,'Call Slave',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(34755,0,0,0,0,262544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,65,65,21,1,0,0,0,-1,-1,0,0,'Instakill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34777,0,0,0,0,545259904,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Cancel Tranquility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34781,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,29,29,21,1,0,0,0,-1,-1,0,0,'Bind Feet',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34792,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,30,0,0,0,0,70,70,21,1,0,0,0,-1,-1,0,0,'Arcane Resonance',0,0,0,0,0,0,0,0,0,1,1,0,64,0),
+(34805,0,0,0,0,738197888,0,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,6,0,0,0,-1,0,0,0,'Quest Ignore',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34810,0,0,0,0,384,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Mender 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34813,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Face Me',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34817,0,0,0,0,384,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Reservist 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34818,0,0,0,0,384,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Reservist 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34819,0,0,0,0,384,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Reservist 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34822,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Arcane Flurry',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(34825,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Immune All',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34843,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Trigger 000',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34853,0,0,0,0,536871168,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,36,0,0,0,-1,0,0,0,'Call of the Falcon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34876,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrm from Beyond Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34878,0,0,0,0,2304,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Custodian of Time TRIGGER',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34884,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Thrall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34901,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest - Aledis Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34915,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34928,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Vampiric Aura',0,0,0,0,0,0,0,0,0,1,2,0,32,0),
+(34966,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Netherstorm - BG - Counter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34989,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Netherstorm Flag Click',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34993,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'B\'naar Shut Down',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34994,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'B\'naar Shut Down',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(34997,0,0,0,0,159383808,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1703936,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Flag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35006,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flag Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35019,0,0,0,0,65920,524424,0,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,1,0,0,0,-1,-1,0,0,'Arcane Explosion',0,0,0,0,0,0,0,0,0,1,1,0,64,0),
+(35023,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Interrupt Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35051,0,0,0,0,272,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35073,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Remove Digestive Acid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35094,0,0,1,0,2307129344,1056,268976133,68354048,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,664232,100,1,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Despawn Vehicles',0,0,0,0,6,0,32,0,0,0,0,0,2,0),
+(35119,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35127,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Boom Bot Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35128,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Boom Bot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35130,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Boom Bot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35134,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Boom Bot Rotation',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(35136,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Summon Captured Critter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35138,0,0,0,0,384,1024,4194308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Clear Boom Bot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35142,0,0,0,0,384,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Drijya Summon Imp',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35143,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Summon Time Rift Periodic 5',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35145,0,0,0,0,384,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Drijya Summon Doomguard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35146,0,0,0,0,384,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Drijya Summon Terrorguard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35148,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,32,1,0,0,0,-1,0,0,0,'Nether Charge Countdown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35153,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Nether Charge NE',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(35154,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Feather Fall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35171,0,0,0,0,65920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,5,0,0,0,-1,-1,0,0,'Pull Bladespire Brute',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35173,0,0,0,0,262528,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,2,0,0,0,-1,-1,0,0,'Trigger Damage Shield',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35174,0,0,0,0,262528,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,2,0,0,0,-1,-1,0,0,'Trigger Magic Shield',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35208,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Conversation Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35210,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Give Bessy Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35237,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bessy Quest Completion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35241,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bessy Credit (Script)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35256,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,63,63,21,7,0,0,0,-1,0,0,0,'Summon Unstable Mushroom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35264,0,0,0,0,65664,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,70,70,21,1,0,0,0,-1,0,0,0,'Frost Attack',0,0,0,0,0,0,0,0,0,1,1,0,16,0),
+(35274,0,0,0,0,256,268435592,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Raging Flames',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(35277,0,0,0,0,545259904,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,1,0,0,0,-1,0,0,0,'Quell Raging Flames',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35281,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Raging Flames',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(35284,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Nether Wraiths',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(35340,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,1,0,0,0,-1,0,0,0,'Root Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35343,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35344,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dr. Boom Relay Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35366,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dive Bomb',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(35368,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Invisible Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35374,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Charred Remains',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35375,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Dive Bomb',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(35378,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Archmage\'s Staff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35379,0,0,0,0,2432,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Reflection of Ya-six',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35384,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35393,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'EXIT_MINE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35398,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'ARCONUS_CLOSE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35414,0,0,0,0,256,0,268435456,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'(TXT) ToWoW - Tower Kill Credit (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35430,0,0,0,0,256,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,13,0,0,0,-1,0,0,0,'Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35463,0,0,0,0,65920,16388,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,62,62,62,0,3,0,0,0,-1,0,0,0,'Staff of the Dreghood Elders Trigger',0,0,0,0,6,8388608,0,0,0,1,1,0,64,0),
+(35467,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,2,2096639,0,0,'All Weapons',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(35469,0,0,0,0,256,268435456,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Seed of Revitalization Lightning Cloud Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35479,0,0,0,0,150995200,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Human Illusion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35484,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35485,0,0,0,0,2298478848,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Human Illusion',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(35496,0,0,0,0,2298478848,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Human Illusion',0,0,0,0,11,0,0,0,0,0,0,0,1,0),
+(35503,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,327,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35505,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Boom Bot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35586,0,0,0,0,2298478848,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Human Illusion',0,0,0,0,7,0,0,0,0,0,0,0,1,0),
+(35642,0,0,0,0,384,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Orbital Strike Target',0,0,0,0,0,0,0,0,0,0,1,0,32,0),
+(35657,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldMage Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35658,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldMage Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35659,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldMage Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35660,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldMage Pet Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35661,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Priest Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35662,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Priest Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35663,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Priest Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35664,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Priest Pet Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35665,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFire Elemental Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35666,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFire Elemental Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35667,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFire Elemental Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35668,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFire Elemental Pet Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35669,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Druid Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35670,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Druid Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35671,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Druid Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35672,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Druid Pet Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35674,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFeral Spirit Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35675,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFeral Spirit Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35676,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldFeral Spirit Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35677,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Cancel Permanent Feign Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35678,0,0,0,0,2432,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Protectorate Demolitionist',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35680,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'QID 10406',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35687,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Seeping Sludge Globule',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35688,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Void Waste Globule',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35689,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Message Jaina',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35690,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Restore Archmage\'s Staff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35721,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Bogstrok Hatchling SE',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35722,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Bogstrok Hatchling SW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35723,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Bogstrok Hatchling S',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35729,0,0,0,0,262544,33824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,66,66,37,1,0,0,0,-1,0,0,0,'Cloak of Shadows',0,0,0,0,8,1073741824,0,0,0,0,0,0,1,0),
+(35731,0,0,0,0,537919872,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Protectorate Drake',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35737,0,0,0,0,25166208,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,7,0,0,0,-1,0,0,0,'Summon Deadsoul Orb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35762,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Socrethar Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35765,0,0,0,0,545259904,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,5,0,0,0,-1,0,0,0,'Quell Felfire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35773,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Increased Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35852,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gravity Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35861,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Nether Vapor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35862,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Nether Vapor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35863,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Nether Vapor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35864,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Nether Vapor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35880,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Nether Vapor',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(35881,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Nether Vapor',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(35883,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Rotate Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35884,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,6,0,0,0,-1,0,0,0,'Rotate 360',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35885,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,6,0,0,0,-1,0,0,0,'Rotate 360',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35904,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Nether Charge NW',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(35905,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Nether Charge SE',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(35906,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Nether Charge SW',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(35934,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Change Mode',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35937,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'Summon Ambush',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35938,0,0,0,0,67109120,0,4,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,524288,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gravity Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(35939,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dimensius Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36014,0,0,0,0,262528,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,1,0,0,0,-1,0,0,0,'Trigger On-Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36019,0,0,0,0,696254720,136,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport: Dark Portal Storm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36024,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Living Grove Seedling Activated',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36026,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,11,0,0,0,-1,0,0,0,'Conjure Elemental Soul: Earth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36036,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,551,1,0,0,0,-1,0,0,0,'Summon Netherstorm Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36042,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36043,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36044,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36045,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36046,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36047,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Farahlon Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36048,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Motherlode Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36049,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Motherlode Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36050,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Motherlode Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36053,0,0,0,0,384,268960768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,34,0,0,0,-1,0,0,0,'Call Slave',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(36063,0,0,0,0,16777600,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drop Phase Disruptor Now!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36087,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Message Thrall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36106,0,0,0,0,2432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Earthen Soul Captured Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36112,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,11,0,0,0,-1,0,0,0,'Conjure Elemental Soul: Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36116,0,0,0,0,2432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Fiery Soul Captured Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36168,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,11,0,0,0,-1,0,0,0,'Conjure Elemental Soul: Water',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36172,0,0,0,0,2432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Water Soul Captured Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36180,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,11,0,0,0,-1,0,0,0,'Conjure Elemental Soul: Air',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36183,0,0,0,0,2432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Aery Soul Captured Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36184,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,1,0,0,99,-1,0,0,0,'Kael Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36186,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infernal Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36188,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infernal Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36189,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infernal Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36190,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infernal Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36192,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Barrage Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36195,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Saw Blade Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36202,0,0,0,0,8388736,0,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bonechewer Quest OnDeath Proc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36215,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Kirin Tor Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36216,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Kirin Tor Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36217,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Kirin Tor Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36218,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Kirin Tor Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36219,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Kirin Tor Spirits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36221,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Eye of the Citadel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36222,0,0,0,0,8388864,268435456,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,32,13,0,0,0,-1,0,0,0,'Morkh OnDeath Proc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36223,0,0,0,0,384,268960768,0,268435456,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Call Slave',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(36229,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Assassin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36230,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Eye of the Citadel Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36231,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Chronomancer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36232,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Executioner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36233,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Vanquisher',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36234,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Rift Lord Alt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36235,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Rift Keeper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36236,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Rift Keeper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36272,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36273,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36287,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,75,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Protean Subdual',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(36294,0,0,0,0,256,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Trigger 000',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36303,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Injured',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36309,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36377,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Stonebreaker Brew',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36379,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Call Skitterers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36388,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Move Away',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36403,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Stolen Ravenous Ravager Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36407,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Invis Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36419,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stolen Ravenous Ravager Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36420,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Bladespire Ogre Drunk Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36421,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Bloodmaul Brutebane Brew Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36443,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Blade Dance Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36445,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blade Dance Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36451,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Low Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36454,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Stolen Ravenous Ravager Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36466,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'50% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36485,0,0,0,0,545259904,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,-1,0,0,'Avenger Trigger Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36491,0,0,0,0,65920,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,0,1,0,0,0,-1,0,0,0,'Summon Heal',0,0,0,0,6,0,0,0,0,0,0,0,2,0),
+(36492,0,0,0,0,65920,1024,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,35,1,0,0,0,-1,0,0,0,'Summon Heal',0,0,0,0,6,0,0,0,0,0,0,0,2,0),
+(36493,0,0,0,0,328064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,8,1,0,0,0,-1,-1,0,0,'Shadow Defense',0,0,0,0,10,0,0,0,0,0,0,0,64,0),
+(36504,0,0,0,0,464,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Ravager Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36505,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ravager Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36521,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Summon Arcane Explosion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36547,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Master\'s Terrace Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36551,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'AIClearReturnState',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36557,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cursed Scarab Periodic Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36560,0,0,0,0,2147483904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cursed Scarab Despawn Periodic Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36564,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,39,1,0,0,0,-1,0,0,0,'Trigger Charge Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36566,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,27,1,0,0,0,-1,0,0,0,'Trigger Charge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36569,0,0,0,0,536871296,268435456,4,0,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4194304,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Vision Guide: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36579,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Netherock Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36581,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warp Storm Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36584,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,3,-1,0,0,0,'Summon Netherock Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36585,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,3,-1,0,0,0,'Summon Netherock Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36595,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Apex Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36596,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Apex Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36597,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Apex Crumbler',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36598,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Vision Guide: Summon Object',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36600,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,1,1,1,21,1,0,0,0,-1,-1,0,0,'Flaming Weapon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36605,0,0,0,0,8388992,268959744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Charge My Target',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(36610,0,0,0,7,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,50,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Improved Wing Clip',0,0,0,0,0,0,0,0,0,0,2,0,1,0),
+(36614,0,0,0,0,464,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Veneratus Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36615,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Veneratus Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36616,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,4,0,0,0,-1,0,0,0,'Veneratus Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36618,0,0,0,0,2432,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Spirit Hunter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36626,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,134,0,0,0,-1,0,0,0,'Summon Mark\'aru Tentacle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36666,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36685,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36687,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kael Sanguinar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36688,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kael Capernian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36689,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kael Telonicus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36691,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,26,1,0,0,0,-1,0,0,0,'Lay Ravenous Flayer Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36715,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Injured',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36724,0,0,0,0,256,268435456,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Phoenix Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36726,0,0,0,0,8388992,0,5,268435456,0,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36793,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Start Cannon Channeler (dnd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36794,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Stop Cannon Channeler (dnd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36799,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Brightsong Wine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36818,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,14,0,0,0,-1,0,0,0,'Attacking Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36850,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Mirror Images Preparation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36853,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Images',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36855,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36865,0,0,0,0,536871168,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,3,0,0,0,-1,0,0,0,'Summon Gnome Cannon Channel Target (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36869,0,0,0,0,384,268960768,0,268435456,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Call Slave',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(36870,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36874,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gnome Cannon Shooter Initialize Loc 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36875,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36898,0,0,0,0,256,1024,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Wicked Strong Fetish (dummy)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36925,0,0,0,0,384,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Closest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36928,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'66% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36930,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'33% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36933,0,0,0,0,536871296,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36934,0,0,0,0,536871296,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Spread',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36942,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bone Wastes - Self Ping',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(36975,0,0,4,11,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,29,2,0,0,0,-1,-1,0,0,'Wound Poison',0,0,0,0,8,0,0,0,0,1,0,0,8,0),
+(36993,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37010,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Save Demon Creator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37025,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4718592,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Coilfang Water',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37026,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frenzy Water',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37061,0,0,0,0,536871296,268435456,4,268697600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Disruption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37064,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Bundle of Bloodthistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37070,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,1,0,0,0,-1,-1,0,0,'Portal Attunement',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(37084,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lament of the Highborne: Songbook',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37085,0,0,0,0,545259776,128,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of Honor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37086,0,0,0,0,545259776,128,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of Honor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37088,0,0,0,0,384,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,9,37,0,0,0,-1,0,0,0,'Sacrifice',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37100,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Create Blood Elf Disguise',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37101,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Smash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37105,0,0,0,0,538968448,1160,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Whirlpool',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37127,0,0,0,0,384,268436616,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Mark of Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37130,0,0,0,0,384,268436616,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aura of Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37137,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Power Converters: Containment Aura Removed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37177,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Infinite Chrono-Lord',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37178,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Black Morass Infinite Timereaver',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37215,0,0,0,0,696254848,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Black Morass Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37244,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Give Flanis\'s Pack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37245,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Give Kagrosh\'s Pack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37246,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Oronok Speed Increase',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37269,0,0,0,0,256,0,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Arcane Flurry',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(37280,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4718592,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frenzy Water',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37308,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport Image',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37326,0,0,0,0,536871056,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37347,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infernal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37356,0,0,0,0,65920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,134,0,0,0,-1,-1,0,0,'Dummy - Call for Help',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37357,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess, Medivh: Back Row, Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37358,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess, Medivh: Back Row, Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37373,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Aura Generator 000',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37394,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,85,1,0,0,0,-1,0,0,0,'Summon Destroyed Sentinel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37403,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Aura Generator 001',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37415,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37419,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Base Bunny Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37442,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take snapshot',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37457,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,265,96,0,0,0,-1,0,0,0,'Windsor Dismisses Horse DND',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37458,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Offset Z 20',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37490,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stormhammer Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37491,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'If not Summoned Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37492,0,0,0,0,384,268435456,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Crate Disguise Subspell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37524,0,0,0,0,8388864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Use Legion Teleporter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37534,0,0,0,0,256,1024,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Grunt: Vicious Strike',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37545,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Summon Phantom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37562,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Logger w/ out wood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37575,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37576,0,0,0,0,545259904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,-1,0,0,'Avenger Trigger Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37606,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Infinite Assassin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37639,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Signal the Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37643,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Increase Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37644,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Increase Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37653,0,0,0,0,256,1024,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Footman: Heroic Blow',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37659,0,0,0,0,256,1024,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Elemental: Geyser',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37663,0,0,0,0,142606592,1,262145,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,10,10,0,1,0,0,0,-1,0,0,0,'Revive or Summon Pet',0,0,0,0,9,16777216,0,0,0,1,1,0,8,0),
+(37677,0,0,0,0,256,1024,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Daemon: Hellfire',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37680,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Stomp',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37682,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Howl',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37684,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Ability - Holy Lance',0,0,0,3,0,0,0,0,0,0,0,0,2,0),
+(37686,0,0,0,0,384,1024,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Range Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37687,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action: Ability - Shadow Spear',0,0,0,3,0,0,0,0,0,0,0,0,2,0),
+(37698,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Elemental Blast',0,0,0,3,0,0,0,0,0,0,0,0,16,0),
+(37699,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Fireball',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(37701,0,0,0,0,4194576,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Sweep',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37702,0,0,0,0,272,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Cleave',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37703,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take forward cone snapshot',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37707,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action- Smash',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37708,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action- Bite',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37715,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ogre Say Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37724,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'[DND]Whisper Cooldown Dummy Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37725,0,0,0,0,536871296,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Target 1',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37726,0,0,0,0,536871296,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Target 2',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37731,0,0,0,0,536871296,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Target 3',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37732,0,0,0,0,536871296,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Target 4',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37733,0,0,0,0,536871296,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Target 5',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37735,0,0,0,0,536871168,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,125,1,0,0,0,-1,0,0,0,'Summon Inner Demon',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37741,0,0,0,0,536871296,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hate Master',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37753,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take Short Range snapshot',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37756,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take Forward Arc snapshot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37757,0,0,0,0,536871296,136,4,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'Prevent Consuming Madness',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37758,0,0,0,0,65792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,5,1,0,0,0,-1,-1,0,0,'Bone Wastes - Summon Auchenai Spirit',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(37765,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Creatures of the Deep',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37766,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc A1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37767,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take Med Range Snapshot',0,0,0,3,0,0,0,0,0,0,0,0,1,0),
+(37769,0,0,0,0,553650560,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Teron Gorefiend',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37771,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Rain of Fire',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37772,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc B1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37773,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental A1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37774,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental B1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37780,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,66,1,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37781,0,0,0,0,134217984,136,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Summon Shadow',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37782,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Disembodied Spirit',0,0,0,0,0,0,0,0,0,0,0,71,1,0),
+(37783,0,0,0,0,256,656384,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Heroism',0,0,0,9,0,0,0,0,0,0,0,0,2,0),
+(37785,0,0,0,0,256,656384,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Bloodlust',0,0,0,9,0,0,0,0,0,0,0,0,2,0),
+(37791,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spawn and Pacify',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37812,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Krasius Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37814,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro (2 yd pbae)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37815,0,0,0,0,256,268435456,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fake Aggro Radius (2 yd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37827,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Reset Mana',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37828,0,0,0,0,256,132096,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess NPC Action - Healing',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(37829,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ride the Lightning: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37831,0,0,0,0,256,525312,536870912,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Karazhan - Chess AI: Take Heal snapshot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37832,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,36,1,0,0,0,-1,-1,0,0,'Vanish',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37835,0,0,0,0,696254848,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Old Hillsbrad Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37845,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37866,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Summon Water Globules',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37870,0,0,0,0,8388992,0,5,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Garrote Remove',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(37872,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,0,1,0,0,0,-1,-1,0,0,'Disappear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37900,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Trapping the Light: Summon Trap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37901,0,0,0,0,256,1024,4,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Trapping the Light: Dummy to Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37902,0,0,0,0,256,1024,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Trapping the Light: Razaani Light Ball Dummy',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(37903,0,0,0,0,536871168,1024,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Trapping the Light: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37909,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc 0',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37911,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental A2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37912,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental A3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37914,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental B2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37915,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gnome Cannon Shooter Initialize Loc 0',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37916,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Elemental B3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37923,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc A2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37925,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc A3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37926,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc A4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37927,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc A5',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37928,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc B2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37929,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc B3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37931,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc B4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37932,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,13,0,0,0,-1,0,0,0,'Summon Murloc B5',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37938,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gnome Cannon Shooter Initialize Loc Raven\'s Wood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37943,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc Raven\'s Wood',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37947,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Crazed Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37948,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Crazed Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37949,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Crazed Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37953,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gnome Cannon Shooter Initialize Loc Singing Ridge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37955,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc Singing Ridge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37957,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,128,0,0,0,0,101,0,0,0,0,0,1,4,1,0,0,0,-1,-1,0,0,'Gnome Mercy: Summon Collection of Souls Chest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37963,0,0,0,0,256,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Super Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37969,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gnome Cannon Shooter Initialize Loc Ruuan',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37971,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc Ruuan',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(37977,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Trigger 001',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38005,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'X-52 Rocket Helmet Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38013,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Garm Wolfbrother: See Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38018,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wave A - 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38019,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Wave A Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38036,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wave A - 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38037,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wave A - 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38038,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wave A - 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38039,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wave A - 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38040,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wave A - 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38041,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wave A - 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38060,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,1,1,0,1,0,0,0,-1,0,0,0,'Vampiric Aura',0,0,0,0,0,0,0,0,0,1,2,0,32,0),
+(38062,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Invisible Dummy Attack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38077,0,0,0,0,400,512,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38079,0,0,0,0,400,512,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38096,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,96,0,0,0,-1,0,0,0,'[DND]Destroy Sun Gate Portal Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38098,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'[DND]No Whisper Cooldown Dummy Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38111,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Horde Bat Rider Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38114,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Horde Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38117,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Faction Appropriate Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38118,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Area 52 Death Machine Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38124,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Horde Ground Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38131,0,0,0,0,2147483904,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Coilfang Raid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38137,0,0,0,0,150995328,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Summon Sky Marker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38140,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Wave D Mob Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38172,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Kor\'kron Flare Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38179,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Alliance Ground Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38180,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Alliance Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38181,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Alliance Gryphon Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38186,0,0,0,0,536871168,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,135,0,0,0,-1,0,0,0,'Acid Spray',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38188,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Corrupted Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38189,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Corrupted Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38190,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Corrupted Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38191,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Corrupted Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tap Mob and Aggro Summoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38198,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Purified Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38199,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Purified Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38200,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Purified Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38201,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Purified Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38211,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Gnome Cannon Transport to Loc Singing Ridge (No Regs)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38228,0,0,0,0,2843738496,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kill Credit: Crazed Colossus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38241,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Wave C Mob Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38242,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Wave C Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38244,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Wave D Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38247,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Wave B Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38248,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Wave B Mob Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38251,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Wildhammer Flare Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38255,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Create Gnome Cannon Waiver',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38261,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Area 52 Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38266,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Stormspire Ethereal Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38268,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Scryer Dragonhawk Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38270,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Stormspire Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38271,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Scryer Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38278,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Aldor Gryphon Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38283,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Aldor Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38286,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Sporeggar Sporebat Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38287,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Sporeggar Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38288,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Toshley Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38291,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Toshley Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38323,0,0,1,0,2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,28,1,0,0,0,-1,-1,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(38352,0,0,0,0,16777600,1024,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,13,0,0,0,-1,0,0,0,'Deathwail\'s Stun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38355,0,0,0,0,256,0,0,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Quest - Hellfire - Quest Credit (Zeth\'Gor Must Burn)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38359,0,0,0,0,256,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Boaring Time Destroy Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38375,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,1,0,0,0,-1,0,0,0,'Summon Fel Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38381,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Raging Soul',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(38402,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Summon Cenarion Storm Crow Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38403,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Cenarion Expedition Rooftop Alarm Sensor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38404,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,64,1,0,0,0,-1,0,0,0,'Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38405,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,10,-1,0,0,0,'Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38409,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to 75% Proc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38423,0,0,0,0,384,136,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Spore Explosion',0,0,0,0,0,0,0,0,0,1,0,0,32,0),
+(38440,0,0,0,0,384,1024,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kill Credit: Feed Nether Drake',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38450,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Boaring Time Periodic Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38454,0,0,0,0,603980160,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,7,0,0,0,-1,0,0,0,'Fight Timer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38489,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Wave E Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38490,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Wave E Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38492,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Wave E Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38493,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Wave E Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38512,0,0,0,0,327936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,1,4,0,0,0,-1,0,0,0,'Fiery Boulder',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(38514,0,0,0,0,256,268435592,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Persuasion',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(38518,0,0,0,0,400,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,21,7,0,0,0,-1,0,0,0,'Cyclone',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(38521,0,0,0,0,536871168,136,0,268697600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,0,1,0,0,0,-1,0,0,0,'Cyclone',0,0,0,0,0,0,0,0,0,2,2,0,1,0),
+(38525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mode Swap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mode Swap',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38529,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cancel Eye of Grillok',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38532,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fiery Boulder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38545,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,22,1,0,0,0,-1,0,0,0,'Periodic Random Breath',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38547,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn after Combat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38548,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Netherspite - Breath',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38578,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND]Rexxar\'s Rodent Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38587,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,12,0,0,0,-1,0,0,0,'Summon Spirit of Redemption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38600,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wave E Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38640,0,0,0,0,256,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Koi-Koi Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38651,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,7,0,0,0,-1,0,0,0,'Summon Rancid Mushroom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38656,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create iCoke Polar Bear Collar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38662,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Massive Health Boost',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38666,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dire Pinfeather Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38667,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Grishnath Orb Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38668,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Exorcism Feather Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38670,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Fight!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38671,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'yield!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38674,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Magic Sucker Device (Success)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38675,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Create Magic Sucker Device Buttress (N)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38676,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Create Magic Sucker Device Buttress (S)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38677,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Create Magic Sucker Device Buttress (E)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38678,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Create Magic Sucker Device Buttress (W)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38679,0,0,0,0,384,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Spawn Magic Sucker Device Mob',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38681,0,0,0,0,384,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Spawn Magic Sucker Spawner, Device',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38685,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Temp yield!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38686,0,0,0,0,384,268435456,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38687,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Exorcising the Trees: Force Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38689,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Sparring Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38705,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,13,0,0,30,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38706,0,0,0,0,603980160,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Fight End',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38709,0,0,0,0,384,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,5,7,0,0,0,-1,0,0,0,'Spawn Magic Sucker Device Boss',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38710,0,0,0,0,2155872640,268435456,0,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Invis Bunny Transform to Drake',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38713,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spellbind Broken',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38716,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,87380,100,0,0,0,0,0,1,21,1,0,0,0,-1,0,0,0,'Deep Wounds',0,0,0,0,4,0,0,0,0,0,0,0,1,0),
+(38726,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,30,1,0,0,0,-1,0,0,0,'Summon Serpentshrine Mushroom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38727,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Magic Sucker Device (Success Visual timer)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38735,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dragonmaw Hover',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38745,0,0,0,0,536871296,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bone Shard Area Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38747,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Feral Charge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38749,0,0,0,0,272,136,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,5,0,0,0,-1,0,0,0,'Feral Charge',0,0,0,0,4,1,0,0,0,0,0,0,1,0),
+(38752,0,0,0,0,536871296,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Mark Master (Gargoyle)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38756,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Spore Strider',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38786,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Spirit Calling Totems',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38789,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spirit Calling Totems Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38803,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,1,1,1,21,1,0,0,0,-1,-1,0,0,'Flaming Weapon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38854,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Hatch Arakkoa',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38865,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Hatch Bad Arakkoa',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38872,0,0,0,0,256,1024,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,34,0,0,0,-1,0,0,0,'Gather the Orbs: Razaani Light Ball Dummy',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(38873,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Gather the Orbs: Dummy to Totem',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38874,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Mushoom Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38878,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Demon Portal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38888,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Morcrush Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38889,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Morcrush Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38890,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Morcrush Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38922,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Colossus Lurkers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38928,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Summon Colossus Ragers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38931,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,1,0,0,0,-1,0,0,0,'Colossus Spawn Confuse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38937,0,0,1,0,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,0,1,0,0,0,-1,-1,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(38953,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38955,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38956,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38957,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38958,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38969,0,0,0,0,16777600,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,325,1,0,0,0,-1,0,0,0,'Karynaku Taxi Aura - Start',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38970,0,0,0,0,2432,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Karynaku\'s Flight Home',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38972,0,0,0,0,536871168,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,135,0,0,0,-1,0,0,0,'Acid Spray',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38975,0,0,0,0,16777600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karynaku Taxi Aura - End',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38978,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Terokkar Free Webbed Creature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38982,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleporter Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38983,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleporter Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(38984,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleporter Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39014,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Atrophic Blow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39041,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Time Rift',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39074,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,4,0,0,0,-1,0,0,0,'[DND]Rexxar\'s Bird Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39080,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Mountain Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39081,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Summon Vortex Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39086,0,0,0,0,65664,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,70,70,21,1,0,0,0,-1,0,0,0,'Frost Attack',0,0,0,0,0,0,0,0,0,1,1,0,16,0),
+(39110,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,-1,0,0,'Summon Phoenix Adds',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(39111,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,70,0,0,5,1,0,0,0,-1,0,0,0,'Summon Furious Nether-wraith',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39115,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Growing Instability',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39118,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Tears of the Goddess',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39137,0,0,1,0,2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,28,1,0,0,0,-1,-1,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(39142,0,0,0,0,805306752,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Drain World Tree Dummy',0,0,0,0,6,8388608,0,0,0,0,0,0,32,0),
+(39152,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,15,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkfury',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39162,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'On Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39167,0,0,0,0,2432,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Cyclone of Feathers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39173,0,0,0,0,384,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'On Quest Accept Dummy to Druid',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39186,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Random Tractor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39191,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Sha\'tari Flames',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39203,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Druid Signal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39240,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'Summon Sand Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39241,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'Summon Mature Bone Sifter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39243,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Signal Zeppit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39245,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'Summon Mature Bone Sifter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39247,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,4,3,0,0,0,-1,0,0,0,'Summon Sand Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39250,0,0,0,0,384,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Despawn Clefthoof',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39254,0,0,0,0,536871168,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Kael Adds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39260,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Revived Pet',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(39265,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,100,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Unstable Explosion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39276,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Quest - Blade\'s Edge (Death\'s Door: Despawn Fel Cannon)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39279,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Warp-Gate Defenders',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39292,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,1,0,0,0,-1,0,0,0,'Spawn with Stun (1.5s)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39301,0,0,0,0,688128256,1024,536870916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,-1,0,0,0,'Nature\'s Guardian',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(39302,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,9,7,0,0,0,-1,0,0,0,'Quest - The Exorcism, Summon Foul Purge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39304,0,0,0,0,8388864,268435456,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flying Skull PATH (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39305,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,64,1,0,0,0,-1,0,0,0,'Summon Flying Skull',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39308,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hellfire - The Exorcism, Lightning Cloud Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39310,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Inciter Trigger Threat Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39311,0,0,0,0,2155872640,268435456,1,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Scrapped Fel Reaver Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39324,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Elemental Leatherworking',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39325,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Tribal Leatherworking',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39326,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,-1,0,0,'Dragonscale Leatherworking',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39327,0,0,0,0,2432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,36,7,0,0,0,-1,0,0,0,'Nethrandamus Taxi Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39333,0,0,0,0,16777600,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'[DND]Rexxar Speed Increase',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39336,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Key to the Arcatraz',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39351,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,225,13,0,0,500,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39366,0,0,0,0,256,136,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Vortex',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39379,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Minions',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39388,0,0,0,0,384,0,0,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Move to Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39389,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39392,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infection',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39394,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Victory Visual (Chess)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39397,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Chess, Control Piece - Sanctuary (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39402,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karazhan - Chess: Disable Square, Own (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39424,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,21,13,0,0,0,-1,0,0,0,'Summon Durnholde Reinforcements',0,0,0,0,0,0,0,0,0,0,1,0,32,0),
+(39426,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'[DND]Prophecy 1 Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39428,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'[DND]Prophecy 2 Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39430,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'[DND]Prophecy 3 Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39431,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'[DND]Prophecy 4 Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39448,0,0,0,0,0,0,0,0,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Reset Anchor Point',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39485,0,0,0,0,603980160,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fel Reaver Controller Despawn',0,0,0,0,0,0,0,0,0,0,0,80,1,0),
+(39491,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39494,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND]Marmot Dead, Remove Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39496,0,0,0,0,8388864,0,132,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Remove Tainted Cores',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39506,0,0,0,0,536871168,136,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Wrath of the Astromancer',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(39539,0,0,0,0,8388992,0,4194305,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Master\'s Touch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39570,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Time Rift 1 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39571,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Time Rift 2 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39572,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Time Rift 3 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39573,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Time Rift 4 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39795,0,0,0,0,272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Spawn with Stun (2.0s)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cancel Coax Marmot Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40550,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Banana Charm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40551,0,0,0,0,384,0,4,0,65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Picnic Basket',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40552,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Imp in a Ball',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40609,0,0,0,0,536871168,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Blaze',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(40800,0,0,0,0,256,0,4,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ethereal Ring: The Bolt phantom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42130,0,0,0,0,2048,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,20,21,13,0,0,0,2,262156,0,0,'AFK Check',0,0,0,0,9,1,0,0,0,0,2,0,1,0),
+(42416,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Apexis Mob Faction Check Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42752,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Goblin Gumbo Kettle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42773,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Fishing Chair',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44733,0,0,0,0,0,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Eagle Swoop Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44964,0,0,0,0,16777216,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Boulder Assault',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45092,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,664232,100,1,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Faction, Spar Buddy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45126,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Rocket Chicken',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45128,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Kite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45132,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Paper Flying Machine Kit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46204,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Pet Biscuits',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46370,0,0,0,0,384,268435456,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Chain Lightning Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46752,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Weather Machine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47802,0,0,0,0,2306867200,1056,268976129,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Tenacity 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49615,0,0,0,0,384,268435456,0,268435456,129,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,31,6,0,0,0,-1,0,0,0,'Modify CL Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50209,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Path of Illidan',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50210,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Disco Ball',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50211,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Ethereal Summoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50474,0,0,0,0,536871296,1024,0,335544320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Rune Weapon Mark',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50847,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Purple Tabard of the Arcane',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50848,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create White Tabard of Brilliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50849,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Orange Tabard of the Defender',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50850,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Yellow Tabard of Fury',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50851,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Green Tabard of Nature',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50852,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Black Tabard of the Void',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50912,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'[DND] Teach Coldarra Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51452,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Party G.R.E.N.A.D.E.',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51453,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create PvP Taunt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51741,0,0,0,0,151060480,0,524288,0,0,262153,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Trigger Missile: Immolation Trap',0,0,0,0,9,128,0,0,0,0,1,0,4,0),
+(52867,0,0,0,0,538968320,525448,67108868,64,2177,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Knockback',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54352,0,0,0,0,671089040,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOldImproved Demonic Tactics',0,0,0,0,5,0,0,0,0,0,0,0,1,0),
+(56561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hold Position',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56866,0,0,0,0,327696,1024,4,268435456,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,152,0,0,0,-1,0,0,0,'Wintergrasp Spawn Faction Check',0,0,0,0,4,1,0,0,0,0,0,0,1,0),
+(58156,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,1,-1,0,0,0,'Wintergrasp PvP Drop - 2 Stack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58162,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,3,-1,0,0,0,'Wintergrasp PvP Drop - 3 Stack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58164,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,4,-1,0,0,0,'Wintergrasp PvP Drop - 4 Stack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61417,0,0,0,0,16777616,0,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDPursuit of Justice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61418,0,0,0,0,16777616,0,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDPursuit of Justice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62219,0,0,0,0,2843738496,1192,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Stone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62843,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Epic Purple Shirt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62871,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Sandbox Tiger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62984,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Foam Sword',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62986,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Foam Sword Rack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63029,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,70,70,21,1,0,0,0,-1,0,0,0,'Ominous Cloud - SPELL_BOIL_OMINOUSLY_PERIODIC',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63376,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Foam Sword',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63377,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Foam Sword',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63378,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Foam Sword',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63379,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Foam Sword',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63974,0,0,0,0,384,0,0,262144,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,13,0,0,0,-1,0,0,0,'Rip',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64018,0,0,0,0,384,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDDrain Soul',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64556,0,0,0,0,536936848,268469248,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,40,40,85,6,0,0,0,-1,0,0,0,'Bestial Wrath',0,0,0,0,9,0,0,0,0,0,0,0,1,0),
+(65741,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Path of Cenarius',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65743,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Ogre Pinata',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66161,0,0,0,0,384,268435456,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,80,80,66,1,0,0,99,-1,0,0,0,'Being Attacked',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66162,0,0,0,0,384,268435456,0,268435456,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139944,100,0,0,0,0,80,80,21,1,0,0,0,-1,0,0,0,'Being Attacked',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66732,0,0,0,0,384,1024,0,196864,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Furious Charge Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66871,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Big Battle Bear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66872,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Magic Rooster Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66873,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Reins of the Spectral Tiger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66874,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Reins of the Swift Spectral Tiger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66875,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create X-51 Nether-Rocket',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66876,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create X-51 Nether-Rocket X-TREME',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67580,0,0,0,0,536871296,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,181,0,0,0,-1,0,0,0,'Jump to Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68500,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(68807,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Tuskarr Kite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68808,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Little Ivory Raptor Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68809,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Little White Stallion Bridle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68811,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Spectral Tiger Cub',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69643,0,0,0,0,150995200,1056,268435460,197376,8388736,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Get Targets',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69932,0,0,0,0,328064,1024,0,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1,36,1,0,0,0,-1,0,0,0,'zzOldAncestral Swiftness',0,0,0,0,11,0,0,0,0,0,0,0,1,0),
+(70159,0,0,0,0,150995328,268435488,540676,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,83,83,0,13,0,0,0,-1,0,0,0,'Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(71896,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'[DND] Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72291,0,0,0,0,8388992,268436480,4,459008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,80,0,13,0,0,0,-1,0,0,0,'Sindragosa - Clear Auras',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72826,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Pet Box',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74210,0,0,0,0,384,0,0,262144,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,0,13,0,0,0,-1,0,0,0,'Item - Shaman T10 Elemental 4P Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39492,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'OCW Sporeggar Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39493,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'OCW Sporeggar Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39514,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Auchindoun Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39515,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Auchindoun Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39517,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Dark Portal Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39518,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Dark Portal Horde Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39519,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Dark Portal Alliance Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39523,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'OCW Aeris Landing Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39524,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'OCW Aeris Landing Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39525,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW TOTE Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39526,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW TOTE Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39532,0,0,0,0,536870912,0,4,268435456,0,393225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create 20 Apexis Crystals',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39537,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Quest - Create Fei Fei Stash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39540,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'OCW Exodar 01 Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39541,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'OCW Exodar 01 Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39549,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'OCW Silvermoon 01 Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39553,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'OCW Silvermoon Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39554,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'OCW Silvermoon Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39555,0,0,0,0,545259904,1024,5,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,1,0,0,0,-1,0,0,0,'Ashtongue Ruse Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39561,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'OCW COT Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39562,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'OCW COT Alliance Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39563,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'OCW COT Horde Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39603,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'OCW Exodar 02 Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39604,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'OCW Exodar 02 Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39605,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'OCW Exodar 02 Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39619,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Clintar Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39624,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Awaken Clintar\'s Spirit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39651,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Violet Signet of the Archmage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39652,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Violet Signet of the Grand Restorer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39653,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Violet Signet of the Great Protector',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39654,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Violet Signet of the Master Assassin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39655,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Get Random Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39657,0,0,0,0,536871168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Shadow Inferno Dummy Effect',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(39663,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,1,0,0,0,-1,0,0,0,'Summon Cosmetic Fel Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39664,0,0,0,0,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2,0,0,0,-1,0,0,0,'Wound Poison',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(39688,0,0,0,0,262416,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Land Mine Periodic',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(39689,0,0,0,0,262480,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Land Mine Trigger',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(39701,0,0,0,0,8388992,0,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ashtongue Ruse Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39726,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Book of the Raven Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39787,0,0,0,0,8388864,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawner, other AE (20 yards)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39797,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,-1,0,0,0,'Summon Raven Stone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39799,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,-1,0,0,0,'Summon Sparrowhawk Origin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39929,0,0,0,0,256,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Naj\'entus Spine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(39960,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Finish the Gronn: Ogre Force Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40015,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'DB ME',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40068,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,0,0,0,-1,0,0,0,'Knockdown Fel Cannon: The Bolt bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Simon Game - Create Simon game On switch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40093,0,0,0,0,2684354816,268435456,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,1,0,0,0,-1,0,0,0,'Finish the Gronn: Party Periodic Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40101,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Summon Aqueous Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40115,0,0,0,0,536871168,268437504,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Knockdown Fel Cannon: Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40144,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Finish the Gronn: Ogre Say Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40161,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bombing Run: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40229,0,0,0,0,1073807744,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,3,0,0,0,-1,0,0,0,'Fear Self',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(40242,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Druid HoT Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40257,0,0,0,0,384,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Molten Punch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40269,0,0,0,0,0,132096,0,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spawn Camera Marker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40271,0,0,0,0,256,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Gorefiend Skeleton',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(40320,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Fortune Coin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40354,0,0,0,0,536871168,136,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Remove Naj\'entus Spines',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40410,0,0,0,0,536871056,268436616,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40418,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fixated Rage Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40421,0,0,0,0,150995328,32,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40422,0,0,0,0,384,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Karrog Shardling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,1,0,0,0,-1,0,0,0,'Summon Akkarai Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40435,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Warp Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40448,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,75,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Protean Subdual',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(40467,0,0,0,0,536871056,268436616,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Simon Game - Create Simon Off Switch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40541,0,0,0,0,256,0,5,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Akama/Maiev',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40589,0,0,0,0,2281701760,268438528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flask Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40720,0,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Terokk Shield',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40725,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Egotistical Weakness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40759,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Sanctuary',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40804,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40805,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40806,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40807,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40808,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40809,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40813,0,0,0,0,2432,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Dragonmaw Flight Instructor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40820,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Throw Dragonmaw Molotov Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40829,0,0,0,0,671088896,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Banish the Demons: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40853,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40908,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40910,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40911,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40912,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40913,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40914,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40915,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40916,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40918,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40919,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40920,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40921,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40922,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40923,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Mingo\'s Fortune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40925,0,0,0,0,536871168,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40941,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Mirror Images Preparation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40947,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Images',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40950,0,0,0,0,536871296,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Legion Ring - Instakill Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40988,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(40996,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41000,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Reduced Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41012,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41018,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41025,0,0,0,0,16777472,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Dragonmaw Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41048,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Shadow Resonance',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(41087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Simon Game - Create Simon game On switch Large',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Simon Game - Create Simon Off Switch Large',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41096,0,0,0,0,8388992,0,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41127,0,0,0,0,536873344,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Through the Eyes of Toranaku',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41140,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immolation',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(41243,0,0,0,0,256,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Despawn Illidari Elite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41258,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Instakill Demon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41288,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Reth\'hedron Knockdown: The Bolt Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Summon Images',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41424,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Signal Lucille',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41529,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Band of the Eternal Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41530,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Band of the Eternal Defender',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41531,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Band of the Eternal Restorer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41532,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Band of the Eternal Sage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41536,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Master\'s Key',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41576,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate to 50%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41577,0,0,0,0,159383808,268435488,540672,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Invisible Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41582,0,0,0,0,536871056,268436616,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hate to Zero',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41585,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Blackened Urn Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41599,0,0,0,0,4194560,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Knockdown Fel Cannon: The Bolt Tracer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41612,0,0,0,0,2281701760,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flask Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41613,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Ashtongue Cowl',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41627,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Medallion of Karabor Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41628,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Blessed Medallion of Karabor Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41824,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Phoenix Adds',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(41910,0,0,0,0,545259904,136,536870916,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ember Blast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41919,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41923,0,0,0,0,536871296,268435592,4,256,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Remove Parasitic Shadowfiends',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41925,0,0,0,0,384,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hateful Strike Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41927,0,0,0,0,536871296,0,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Dismount Summoned Pet',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(41928,0,0,0,0,538968320,268436616,67108868,64,2113,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,12,0,0,0,-1,0,0,0,'Argent Stand Unit: Ride Gargoyle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41929,0,0,0,0,536871296,1024,4,268632064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Guardian Aggro Spell',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(41930,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(41934,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41935,0,0,0,0,8388992,268435456,4,1048576,128,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41951,0,0,0,0,256,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Random Target',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(41963,0,0,0,0,4194304,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Shield Health Update',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41967,0,0,0,0,536871296,0,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,6,0,0,0,-1,0,0,0,'Pet Aggro Spell',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(41977,0,0,0,0,536871296,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Infernal Aggro Spell',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(41979,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Tap to Master Proc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41991,0,0,0,0,400,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Discovery Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Jons despawn buff (DND)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41996,0,0,0,0,536871168,136,4,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Destroy Souls',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(41998,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42000,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42001,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42011,0,0,0,0,4194560,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Dark Glare',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(42026,0,0,0,0,536871296,136,536870916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dive Bomb',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(42037,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42092,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42117,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ashtongue Pet Faction Switch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42123,0,0,0,0,536871168,268435592,4,268435456,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fixate',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42126,0,0,0,0,400,1024,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Discovery Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42148,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Shattered Halls Key Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42163,0,0,0,0,384,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Crypt Scarabs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42172,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Snare Self 70%',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42173,0,0,0,0,536871296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Snare Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42174,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Replace Reflective Dust',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42236,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42237,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42238,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42239,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance D',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42240,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance E',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42241,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkmoon Faire Carnie Appearance F',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42437,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create BlizzCon 2007 Prize',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42446,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Zul\'Aman - Bear Platform - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42449,0,0,0,0,16777472,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Westguard Cavalry Transform into Human',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42451,0,0,0,0,16777472,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Westguard Cavalry Transform into Dwarf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42461,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Zul\'Aman - Dragonhawk Platform - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42462,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Zul\'Aman - Eagle Platform - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42465,0,0,0,0,536871168,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Zul\'Aman - Lynx Platform - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42538,0,0,0,0,67109248,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Alerted Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42543,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cancel Alert',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42686,0,0,0,0,545259776,0,0,268435456,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Danger! Explosive!: Summon Ore Chest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Danger! Explosive!: Summon Gem 000 Chest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Danger! Explosive!: Summon Gem 001 Chest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Danger! Explosive!: Summon Gem 002 Chest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42738,0,0,0,0,272,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Super Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42778,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blessed Vial Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42819,0,0,0,0,384,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Move Once',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(42825,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,28,13,0,0,0,-1,0,0,0,'Cannon Prep',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42877,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Apothecary\'s Poison Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42911,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42935,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42959,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42960,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42961,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42962,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42983,0,0,0,0,134220032,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Valgarde Warrior',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(42990,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43027,0,0,0,0,134220032,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Valgarde Mage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43029,0,0,0,0,134220032,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Valgarde Priest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43031,0,0,0,0,134220032,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Valgarde Paladin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43062,0,0,0,0,2147483904,268435456,0,1048576,4160,402653696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Alpha Worg: Garwal\'s Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43099,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Deep Wounds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Draconis Gastritis: Summon Tillinghast\'s Plagued Meat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43173,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Draconis Gastritis: Dummy to Draconis Gastritis Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43226,0,0,0,0,2304,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Servitor of the Light',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43247,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43248,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43250,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43251,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43252,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43253,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43254,0,0,0,0,256,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43295,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43296,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43318,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Scare the Guano Out of Them!: Dummy to Bat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43319,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Scare the Guano Out of Them!: Dummy to Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43336,0,0,0,0,536871168,0,0,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Val\'kyr Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43349,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43350,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43360,0,0,0,0,536871168,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,36,0,0,0,-1,0,0,0,'Call of the Beast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43372,0,0,0,0,0,268435456,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform into True Form',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43388,0,0,0,0,687866112,32,0,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Suicide, No Blood, No Logging',0,0,0,0,0,0,0,0,0,1,1,0,1,0),
+(43397,0,0,0,0,2684354816,268435584,67108864,269484096,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Absolutely... This Will Work!: Vrykul Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43412,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Mission: Plague This!: Create Bombs & Taxi',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43462,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mission: Plague This!: Bomb Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43500,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'All Hail the Conqueror of Skorn!: Spyglass Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43502,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Conqueror of Skorn!: Spyglass Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43513,0,0,0,0,2147483904,268435456,0,1048576,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Westguard Defender - Sleeping Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43536,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43537,0,0,0,0,537133312,136,67108864,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43538,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43624,0,0,0,0,384,0,4,256,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Static Disruption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43645,0,0,0,0,384,268435456,0,0,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'1 Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43675,0,0,0,0,256,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Westguard Lumberjack - Wood Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43793,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Rope Periodic Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43801,0,0,0,0,8388992,0,1,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Despawn Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43830,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Place Dynamite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43888,0,0,0,0,2281701760,268435456,268435457,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Steel Gate Gargoyle Check Zone Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43920,0,0,0,0,1114368,268468224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(43989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Electrical Overload Primer Warmup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44034,0,0,0,0,0,0,4,268435456,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mental Whiplash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'TheresaDocsTestSpell',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(44118,0,0,0,0,65664,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fists of Arcane Fury',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(44195,0,0,0,0,256,268435456,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Phoenix Egg',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44228,0,0,0,0,67109120,0,4,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gravity Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44230,0,0,0,0,536871168,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gravity Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44236,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,-1,0,0,0,'Trigger 000',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44239,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Drunk Invisibility (Medium)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44277,0,0,0,0,262608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'High Explosive Sheep Passive',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44278,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Sleeping Giants: Awakening Rod Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44288,0,0,0,0,786880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2,0,0,0,-1,0,0,0,'Crippling Poison',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(44356,0,0,0,0,2684354944,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'No Blink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44409,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Copy of Create Blackened Urn Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44421,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Harry\'s Debt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44428,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Jack\'s Debt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44453,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Way to His Heart...: Reef Cow Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Way to His Heart...: Reef Cow Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44734,0,0,0,0,8388608,0,4,269484032,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Electrical Overload End',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Eagle Call Warmup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44763,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'PVP Daily - Nagrand - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44764,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Daily - Nagrand - Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44802,0,0,0,0,8388992,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Auchindoun PvP Daily Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44803,0,0,0,0,8388992,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Auchindoun PvP Daily Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'BLB Bunny - Kickoff Kicker Stats',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44918,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Male Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44919,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Male Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44920,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Male Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44921,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Female Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44922,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Female Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44923,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Female Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44924,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Female Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44925,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Male Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44926,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Male Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44927,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Male Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44928,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Male Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44929,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Female Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44930,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Female Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44931,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Female Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44932,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - Draenei Female Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44962,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Archer - BE Male Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44988,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fel Gland Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44989,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas Grand Warlock Nethekurse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44990,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas Grandmaster Vorpil',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44991,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas Exarch Maladaar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44992,0,0,0,0,16777472,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas Captain Skarloc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44995,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas Nethermancer Sepethrea',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(44996,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Christmas High Botanist Freywinn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45073,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wretched Controller - Sanctum: Random Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45074,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wretched Hungerer Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45077,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Berserk Buff Timer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45079,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wretched Controller - Armory: Random Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45080,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wretched Controller - Docks West: Random Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45081,0,0,0,0,0,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wretched Controller - Docks East: Random Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45107,0,0,0,0,2432,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Karynaku\'s Flight Home',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45116,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,1,0,0,0,-1,0,0,0,'Summon Cosmetic Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45142,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Coilskar Ore Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45146,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Orb of Murloc Control Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45147,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ata\'mal Armament Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45155,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Female Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45156,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Female Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45157,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Female Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45158,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Female Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45159,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Male Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45160,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Male Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45161,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Male Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45162,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - BE Male Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45163,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Female Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45164,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Female Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45165,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Female Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45166,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Female Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45167,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Male Transform Tier 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45168,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Male Transform Tier 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45169,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Male Transform Tier 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45170,0,0,0,0,2155872640,268435456,1,269484032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Warrior - Draenei Male Transform Tier 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45178,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Golden Pig Coin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45179,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Silver Pig Coin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45194,0,0,0,0,328064,1024,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDRighteous Fury',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(45196,0,0,0,0,65664,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frost Attack',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(45198,0,0,0,0,2147484032,268438528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flask Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45210,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Taunt Hit Chance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45249,0,0,0,0,0,1024,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,7,0,0,0,-1,0,0,0,'Taxi - Skyguard Outpost to Skettis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45250,0,0,0,0,0,1024,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,7,0,0,0,-1,0,0,0,'Taxi - Skettis to Skyguard Outpost',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45258,0,0,0,0,536871168,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Shadow Images',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(45272,0,0,0,0,256,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Shadow Image',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(45303,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Reply Profession',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45304,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Soldier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45305,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Civilian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45306,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue Spot Ping',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45308,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Summon Recruit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45318,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create King Mrgl-Mrgl\'s Spare Suit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45331,0,0,0,0,536870912,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,13,0,0,0,-1,0,0,0,'Flight through Caverns',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45367,0,0,0,0,2432,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Translocate',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45370,0,0,0,0,2432,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Translocate',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45393,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Quest - Borean Tundra - Summon Civilian Recruit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45394,0,0,0,0,384,268435456,0,196608,0,0,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(45396,0,0,0,0,262336,0,16777216,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blessed Weapon Coating',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(45398,0,0,0,0,262336,0,16777216,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Righteous Weapon Coating',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(45413,0,0,0,0,256,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Stun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45434,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Ping Footman Spawner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45435,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Summon Footman',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45436,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Ping Combatant',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45454,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pulsating Runestone Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45488,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Crypt Bug',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45489,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,552,1,0,0,0,-1,0,0,0,'Summon Crypt Bug 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45498,0,0,0,0,8388864,0,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Elder Kesuk Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45499,0,0,0,0,8388864,0,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Elder Sagani Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45500,0,0,0,0,8388864,0,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Elder Takret Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45501,0,0,0,0,8388864,0,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Elder Yakone Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45518,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45519,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLD Defiance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45520,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLD Defiance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45521,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLD Defiance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45538,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Tuskarr Spirit Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45652,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Arcane Binder Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45687,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Shield Orbs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45688,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Shield Orbs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45689,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Shield Orbs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45701,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Warsong Outfit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45704,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,134,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Summon Hostile Footman',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45705,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Guard - Orc Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45706,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Guard - Orc Female Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45707,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Guard - Forsaken Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45708,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Guard - Tauren Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45709,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Worker - Orc Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45710,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Worker - Orc Female Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45711,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Worker - Forsaken Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45712,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Naked Caravan Worker - Troll Male Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45718,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Naked Caravan Worker - Master Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45734,0,0,0,0,159383936,32,0,1048576,2228352,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Eric\'s Outrageous Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45763,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Warsong Orc Disguise',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45764,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Warsong Banner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45766,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Warsong Banner Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'TEST - Targetted Music Spell 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate Monster (Spar)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45812,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate Monster (Spar Buddy)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45847,0,0,0,0,16777600,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Copy of [DND]Rexxar Speed Increase',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45904,0,0,0,0,536871312,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Offensive State',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45965,0,0,0,0,0,525312,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Move to Matching String ID2 (Local Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(45966,0,0,0,0,384,525312,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Matching String ID2 (Local Event)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46061,0,0,0,0,0,1024,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,3,0,0,0,-1,0,0,0,'Taxi - Amber Ledge to Coldarra',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46179,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demonic Blood Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46207,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Blood Elf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46209,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Draenei',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46210,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Dwarf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46211,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46212,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Goblin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46213,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Human',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46215,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Night Elf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46216,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Flamekeeper - Orc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46220,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46226,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Festival Flamekeeper - Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46248,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Blood Elf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46249,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Draenei',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46250,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Dwarf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46252,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Gnome',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46253,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Goblin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46254,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Human',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46255,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Night Elf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46256,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Orc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46257,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Tauren',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46258,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Troll',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46259,0,0,0,0,256,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Midsummer Celebrant - Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46347,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Irresistible Lure Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Storm Tempest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46523,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,1,0,0,0,0,0,0,0,0,1,0),
+(46741,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46756,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Test Alternate Form',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46790,0,0,0,0,545259776,128,1,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of Honor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46893,0,0,0,0,256,0,1,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Graveyard Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46894,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Horde Graveyard Teleporter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46918,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Blue Dragon: Apply Aura - Periodic Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46919,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blue Dragon: Trigger Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46958,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Silvermoon L70ETC Pulse NEW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46959,0,0,0,0,536871168,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,37,0,0,0,-1,0,0,0,'OCW Silvermoon L70ETC Bunny Aura NEW',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46966,0,0,0,0,384,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'OCW Silvermoon L70ETC Script Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(46986,0,0,0,0,402915728,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Sneak',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47019,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,-1,0,0,0,'Budd Pet Periodic Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47036,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Troll Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47040,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Cancel Budd\'s Attention Span',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47047,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Budd\'s Force Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47067,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,65,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47090,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dead Mage Hunter Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47102,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(47121,0,0,0,0,16777600,0,0,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Scalawag Frog',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47132,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47135,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47136,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47140,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'On Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47141,0,0,0,0,384,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'On Quest Accept Dummy to Guide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47142,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Totemic Beacon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47194,0,0,0,0,536871296,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spiritual Insight: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47222,0,0,0,0,268435456,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'[DND] JZB Jump Jets',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47275,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,134,0,0,0,-1,0,0,0,'Borean Tundra - Summon Hostile Scavenger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47312,0,0,0,0,150995200,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Sober Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47319,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,-1,0,0,0,'Magntaur Alpha Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Trigger Giant Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47416,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Sample of Rockflesh',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47419,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47477,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Instakill Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47513,0,0,0,0,256,268436484,4,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Mole Machine Bind Sight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47522,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47529,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47531,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Dismiss Pet',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(47544,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47545,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Strengthen the Ancients: Woodlands Walker Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47561,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Strengthen the Ancients: No Bark',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47605,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47606,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47607,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47608,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47609,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47612,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47613,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47620,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47621,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47622,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47623,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47624,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47625,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47626,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47630,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47631,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47639,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47640,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47641,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47642,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47643,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47644,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47645,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47646,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47647,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47648,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47649,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47650,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47652,0,0,0,0,384,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Closest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47680,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Force Cast Aggro',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(47725,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Tariolstrasz: Unlearned Taxi from Wrymrest Bottom to Top',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47734,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Torastrasza: Unlearned Taxi to the Bottom of Wrymrest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47796,0,0,0,0,8388992,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Signal War Golem',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47945,0,0,0,0,262544,268436480,0,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Copy of Shapeshift Form Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47971,0,0,0,0,545259776,1160,4,197184,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Liquid Fire of Elune: Blighted Elk Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(47973,0,0,0,0,545259776,1160,4,197184,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Liquid Fire of Elune: Rabid Grizzly Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48043,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Venomspite!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48197,0,0,0,0,545259776,1160,4,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Blighted Last Rites: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48215,0,0,0,0,536871296,268436480,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Scarlet Onslaught Knight: Ride Scarlet Onslaught Warhorse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wrath of the Titans',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48255,0,0,0,0,142606592,268435456,1,1048576,4160,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Let Them Not Rise!: Skeletal Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48322,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Outhouse Force-Cast',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(48338,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Outhouse Force-Cast II',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(48372,0,0,0,0,384,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Despawn Passenger 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48373,0,0,0,0,159383936,32,540673,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Despawn Passenger 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48429,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48439,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48526,0,0,0,0,536871296,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Sinner\'s Folly Fire Bunny: Fire Aura Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48581,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Irresistible Lure Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48607,0,0,0,0,545259776,1160,4,64,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Torture the Torturer: Torture the Torturer Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48615,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Competitor\'s Souvenir',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48688,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48713,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48787,0,0,0,0,536871168,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Neltharion\'s Flame Fire Bunny: Fire Aura Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48804,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fresh Remounts: Onslaught Riding Crop Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(48902,0,0,0,0,65792,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,134,0,0,0,-1,0,0,0,'Lighthouse',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(48958,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Random Log Ride',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Horde, Hate Monster (Spar) (<30%)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49074,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Self Destruct - Initial Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49108,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Sporeggar Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49112,0,0,0,0,536871168,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Azure Dragon: Aggro Aura Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49115,0,0,0,0,536871168,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wyrmrest Guardian: Aggro Aura Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49120,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Dark Portal Pulse - H',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49164,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Auchindoun Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49167,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW Dark Portal Pulse - A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49168,0,0,0,0,256,268435456,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Guardian: Aggro Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49169,0,0,0,0,256,268435456,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Azure Dragon: Aggro Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49183,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Aeris Landing Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49201,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Exodar Naaru Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49212,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'OCW Exodar Nobundu Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49227,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW COT Pulse - A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49229,0,0,0,0,536871168,1024,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'OCW COT Pulse - H',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49265,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Script: Set Passenger(E0) to Random Broadcast (E1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49286,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gryphon Rider Broadcast 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49339,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Steam Tank Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49341,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Steam Tank Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49371,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Iskandar\'s Challenge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49373,0,0,0,0,536871296,1160,4,268435520,128,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Defending Wyrmrest Temple: Dummy to Wyrmrest Defender',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49374,0,0,0,0,545259776,1160,4,64,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Defending Wyrmrest Temple: Destabilize Azure Dragonshrine Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49382,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Emerald Essence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49386,0,0,0,0,696254720,1056,16385,1310720,524288,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dragonblight Invisibility Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49412,0,0,0,0,256,268435456,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Defender: Aggro Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49413,0,0,0,0,536871168,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wyrmrest Defender: Aggro Aura Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49447,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Amber Essence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49450,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Ruby Essence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49465,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Torastrasza: Unlearned Taxi to the Middle of Wrymrest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49470,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Lord Afrasastrasz: Unlearned Taxi to the Top of Wrymrest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49473,0,0,0,0,256,268436484,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,-1,0,0,0,'Mole Machine Hearth Bind Sight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49492,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Lord Afrasastrasz: Unlearned Taxi to the Bottom of Wrymrest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Battle Steed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49502,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Tariolstrasz: Unlearned Taxi from Wrymrest Bottom to Middle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49577,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Rabbit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49578,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Squirrel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49579,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Skunk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49580,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Prairie Dog',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49582,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Fawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49583,0,0,0,0,256,268435456,0,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle of Life: Transform into Emerald Skytalon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49591,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Arcane Disruptor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49740,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Flower Growth',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49741,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,1,0,0,0,-1,0,0,0,'Flower Growth Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49812,0,0,0,0,256,268435456,0,196608,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fake Aggro Radius (8 yd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49813,0,0,0,0,256,268435456,0,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro (8 yd pbae)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49819,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ghoul Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate Monster (Spar, Kalu\'ak)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49833,0,0,0,0,545259776,1024,0,268435456,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Fire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49849,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gryphon Rider Broadcast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49850,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gryphon Rider Broadcast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49866,0,0,0,0,2843738112,1056,268976133,1245184,8388736,917512,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Clone Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49885,0,0,0,0,536871168,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gravity Lapse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49951,0,0,0,0,256,268435456,0,0,192,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,1,0,0,0,-1,0,0,0,'Mystery of the Infinite: Future You\'s Periodic Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(49953,0,0,0,0,538968320,136,4,64,128,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mystery of the Infinite: Future You\'s Periodic Threat Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50042,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Iskandar\'s Challenge Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50074,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Helmsman Broadcast 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50076,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Helmsman Broadcast 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50136,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Silvermoon Dragonhawk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50157,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Instakill Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50158,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Red)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50159,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Green)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50160,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Bronze)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50277,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50460,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Antiok Random Broadcast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50539,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Drakes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50543,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Aggro Drakes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50561,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amberpine Gryphon Rider B01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50567,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amberpine Gryphon Rider B02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50570,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amberpine Gryphon Rider B03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50571,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amberpine Gryphon Rider B04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50591,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amberpine Gryphon Rider B05',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50594,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,1,0,0,0,-1,0,0,0,'Moveto Test',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50754,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Summon Unstable Sphere',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(50755,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,1,0,0,0,-1,0,0,0,'Unstable Sphere Countdown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50814,0,0,0,0,0,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Serinar Whisper Rune',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50815,0,0,0,0,0,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Serinar Whisper Cave',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50816,0,0,0,0,0,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Serinar Whisper Chamber',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,1,0,0,0,-1,0,0,0,'Dash Gash ReturnToTank PreSpell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50932,0,0,0,0,0,16384,0,0,128,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,0,0,0,-1,0,0,0,'Dash Gash ReturnToTank PreSpell Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(50996,0,0,0,0,8388608,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,-1,0,0,0,'Summon Sanguine Spirit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51106,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Nuke (Range Self)',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(51117,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Black)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51118,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Blue)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51119,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Protector Transform (Nether)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51133,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Defeated Argent Footman Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Injured Oracle Questgiver Off',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51455,0,0,0,0,2306867584,268436512,268976129,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Battle for Lake Wintergrasp',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51604,0,0,0,0,134217984,268435520,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51704,0,0,0,0,2147549568,268468224,128,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Leave BarberShop Chair',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(51824,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,1,0,0,0,-1,0,0,0,'Drake Whisper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51826,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Drake Whisper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51828,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,1,0,0,0,-1,0,0,0,'Drake Whisper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51829,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Drake Whisper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51860,0,0,0,0,134217984,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Root Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51896,0,0,0,0,0,8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Eye of Acherus',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51905,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldDeath Knight Rune Weapon Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51947,0,0,0,0,0,0,0,0,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Har\'koa: Periodic Trigger Roar',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(51948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Har\'koa: Periodic Trigger Roar Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52001,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Death Knight Blood Parasite Pet Scaling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52040,0,0,0,0,536871168,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dwarf Construction Worker Appearance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52178,0,0,0,0,671089024,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'zzOldAstral Shift Marker',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(52304,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'DK 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52380,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'You Reap What You Sow: Reclaim Power - Efffect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52434,0,0,0,0,256,268436480,4,131328,128,524296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dream Fog',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(52477,0,0,0,0,384,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52557,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Dummy Tree of Life Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(52558,0,0,0,0,142606592,268697600,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dead Mam\'toth Disciple Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52563,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Arthas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52765,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Invis Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52769,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Shadow of Death Marker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52848,0,0,0,0,536871296,1024,4,256,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rampage: Quest Completion Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(52947,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Transform: Dock Worker w/bag',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(53050,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Charged Flurry',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(53682,0,0,0,0,545259904,1024,1,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Soul Feast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(53732,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(53785,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Nass Master Checker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54033,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54073,0,0,0,0,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2,0,0,0,-1,0,0,0,'Wound Poison',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(54091,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bug Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54130,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Maexxna Spiderling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54239,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Trigger 002',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54437,0,0,0,0,262544,268600320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'zzOldDemonic Empowerment',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54541,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro (5 yd pbae)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(54542,0,0,0,0,256,268435456,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fake Aggro Radius (5 yd)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55351,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Instakill Orb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55422,0,0,0,0,268435712,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zombie Aggro Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55583,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,-1,0,0,0,'Summon Trainee',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55584,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Summon Mounted Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55585,0,0,0,0,2176,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Summon Knight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55654,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Frost Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55657,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDConsumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55698,0,0,0,0,320,268435592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Chill',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(55733,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(55827,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Warden Transform (Black)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55828,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Warden Transform (Blue)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55829,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Warden Transform (Green)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55830,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Warden Transform (Bronze)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55831,0,0,0,0,384,268437504,1,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wyrmrest Temple - Warden Transform (Red)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55846,0,0,0,0,384,268435592,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Closest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55892,0,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Audience Assistance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Audience Assistance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55956,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Guiding Knut',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55967,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frost Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55985,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kill Credit:Giant',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(55990,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kill Credit:Dwarf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56068,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Iron Behemoth Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Iron Behemoth Threat Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frost Arrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56204,0,0,0,0,671090944,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Human',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56210,0,0,0,0,671090944,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Night Elf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56213,0,0,0,0,671090944,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Orc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56215,0,0,0,0,671090944,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Troll',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56306,0,0,0,0,8388992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Kill Credit:Pronouncement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(56428,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'Summon Enraged Armored Hippogryph',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57059,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,3,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57065,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57093,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Brann\'s Communicator Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57368,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Unholy Shadow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57540,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Severed Essence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57576,0,0,0,0,0,1024,268435460,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'PvP Enemy Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57577,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'PvP Check Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57805,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Summon Defense Control Crystal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57867,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDNature\'s Splendor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57868,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDNature\'s Splendor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57936,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Attack Violet Hold Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57995,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Portal 1 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57996,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Portal 2 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57997,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Portal 3 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57998,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Portal 4 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(57999,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Portal 5 Ready',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58002,0,0,0,0,256,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58003,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal Effect (1)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58004,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal Effect (2)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58005,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal Effect (3)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58006,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal Effect (4)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58007,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Portal Effect (5)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58011,0,0,0,0,0,4,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Portal Channel Trigger',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(58014,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Close Portal Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58018,0,0,0,0,8388864,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Close Portal Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58019,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Portal Ready Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58028,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Portal Guardian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58029,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Portal Guardian Alt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58030,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Portal Keeper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58031,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Portal Keeper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58034,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Binder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58041,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Prison Door Seal Weaken',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58043,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Door Broken',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58082,0,0,0,0,681574784,1160,67108869,268435520,2177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Not-So-Honorable Combat: Despawn All Units',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58086,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Binder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58087,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Invader',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58088,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Invader Alt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58089,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Spellbreaker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58090,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Spellbreaker Alt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58091,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Mage Slayer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58092,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Mage Slayer Alt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58093,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Veteran Mage Hunter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Flame Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Water Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Shadow Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58360,0,0,0,0,538968448,1160,67108869,268435520,2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Banshee\'s Revenge: Lady Nightswood to Possessed Vardmadra',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58411,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hateful Strike Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58546,0,0,0,0,1073807744,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,3,0,0,0,-1,0,0,0,'Fear Self',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(58550,0,0,0,0,159383552,1056,268976129,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wintergrasp Calculation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58595,0,0,0,0,671089024,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'zzOLDChimera Shot - Scorpid Sting Marker',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(58727,0,0,0,0,696254848,268435488,540673,1048576,0,393224,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dalaran Restricted Flight Zone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58728,0,0,0,0,696254848,268438560,268976133,1245184,8388736,393736,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Wintergrasp Restricted Flight Zone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58807,0,0,0,0,8388992,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,0,0,0,-1,0,0,0,'Ignite Corpse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58920,0,0,0,0,696254720,1056,16385,1310720,524288,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Post-Wrath Gate Invisibility for NPCS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58926,0,0,0,0,0,0,4,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bridge Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58927,0,0,0,0,0,0,4,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tower Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58928,0,0,0,0,16777216,0,4,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Workshop Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58929,0,0,0,0,0,0,4,268435456,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gate Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58931,0,0,0,0,2306867200,1056,336084997,1245184,8388736,393224,16781316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Wintergrasp Victory',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(58934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Achievement: Has Full Midsummer Set',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59012,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Big Blizzard Bear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59054,0,0,0,0,8388608,0,0,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Player Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59056,0,0,0,0,536870912,0,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Player Death Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59063,0,0,0,0,8388992,0,4194305,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Achievement - Player Died',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59207,0,0,0,0,696254848,268436512,16385,1310720,524288,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Post-Wrath Gate Invisibility for NPCS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59555,0,0,0,0,384,1024,0,1179648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Daze Immunity',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59581,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fail Achievement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59612,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Ymirheim Aggro Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59615,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Infantry Aggro Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59632,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59639,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Grow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59794,0,0,0,0,400,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Alchemy Discovery Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59819,0,0,0,0,671089024,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,13,0,0,0,-1,0,0,0,'zzOldImproved Corpse Explosion Marker',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(59850,0,0,0,0,8388608,131072,67108864,269484032,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Death Touch Copy',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(59895,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Launch Spear Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frost Arrow',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59900,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fail Achievement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59904,0,0,0,0,536871168,1024,4,0,0,2097152,65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Slaves to Saronite: Jump B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(59905,0,0,0,0,536871168,1024,4,0,0,2097152,65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Slaves to Saronite: Jump C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60033,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60048,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Captain',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60049,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Raider',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60050,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Sorceror',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60057,0,0,0,0,2768242688,3072,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Restricted Flight Area',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60086,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60087,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spear Trigger Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60092,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Raider',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60093,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Azure Sorceror',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60454,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Alliance Aggro Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60455,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Horde Aggro Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60589,0,0,0,0,8388992,0,5,262400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Corrupting Blight Remove',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(60593,0,0,0,0,536871168,0,0,268435456,0,393224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quiet Suicide (Cast Time)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60676,0,0,0,0,696254848,1056,273170437,1245696,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Southern Tower Destruction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60677,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Gate Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60806,0,0,0,0,256,268435456,0,0,192,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,1,0,0,0,-1,0,0,0,'MOTI, Redux: Past You\'s Periodic Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Save Rocket GUID on Summoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60910,0,0,0,0,2306867200,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Demolisher Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60911,0,0,0,0,2306867200,1056,268976133,269680640,8388736,917512,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Demolisher Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60989,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Key to the Focusing Iris',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(60992,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Heroic Key to the Focusing Iris',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61142,0,0,0,0,2306867200,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Direction of the Lich King',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61148,0,0,0,0,400,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Inscription Discovery',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61175,0,0,0,0,671089024,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,13,0,0,0,-1,0,0,0,'Shadow of Death Marker',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(61200,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61201,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Frigid Geist Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61202,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frigid Geist Aggro Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61203,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61214,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61220,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(61265,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Alliance Flag Click',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61266,0,0,0,0,134217984,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Horde Flag Click',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61279,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Extract Gas',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61283,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Medium Flights',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61284,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Many Flights',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61285,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Too Many Flights',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61303,0,0,0,0,256,0,0,268435456,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,-1,0,0,0,'Sanctuary',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61370,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,1,0,0,0,-1,0,0,0,'BOTM - Bubble Brew - Self Root',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61396,0,0,0,0,448,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Arthas Defensive Buff',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(61494,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61495,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61501,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61502,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61503,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Captain',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61504,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Captain',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61505,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Captain',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61506,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Captain',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61517,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61518,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61519,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61520,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61521,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61522,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61525,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61526,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61527,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61529,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61530,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61531,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61532,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61533,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61534,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61535,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61536,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61538,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61539,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61540,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61541,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61542,0,0,0,0,0,0,4,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Teleport the Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61582,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Charged Flurry',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(61701,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Make Player Attack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61702,0,0,0,0,2306867200,1056,268976129,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Shift 1 (Gold)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61703,0,0,0,0,2306867200,1056,268976129,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Shift 2 (Green)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61754,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Horn of the Peaks',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61774,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61852,0,0,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Red Elevator Port',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61891,0,0,0,0,2306867200,1056,268976133,269680640,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Vehicle Protected',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61908,0,0,0,0,384,268435456,4,196608,0,0,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(61913,0,0,0,0,384,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Static Disruption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61918,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61919,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spawn Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61921,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61937,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Warbringer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61938,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spawn Warbringer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61939,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Warbringer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61944,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Commoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61945,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spawn Commoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61946,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spawn Commoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61948,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Evoker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61949,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spawn Evoker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(61950,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Evoker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62006,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Honor Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62008,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spawn Honor Guard',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62009,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Acolyte',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62010,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Spawn Acolyte',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62033,0,0,0,0,256,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62060,0,0,0,0,2306867200,1056,268976129,1245184,11534496,394760,136196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tower Control',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62065,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Eastern Tower Destruction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62066,0,0,0,0,696254848,1056,273170437,1245696,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Western Tower Destruction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62093,0,0,0,0,256,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Spirit of Corruption Death',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62095,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Coaxing the Spirits: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62096,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'zzOLDPhase 1 & 6 Done Spacer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62163,0,0,0,0,142606592,268437504,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Frenzied Cyclone Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62183,0,0,0,0,256,0,4,0,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Activate Lightning Orb Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62190,0,0,0,0,538968320,268436616,67108868,64,2113,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Call Down the Thunder: Spirit Ride Vortex Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62200,0,0,0,0,671089024,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,13,0,0,0,-1,0,0,0,'zzOldImproved Corpse Explosion Cost Reducer',0,0,0,0,0,0,0,0,0,0,0,0,2,0),
+(62205,0,0,0,0,536871296,268436616,67108864,269484096,2113,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Call Down the Thunder: Vortex Bunny Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62224,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Mirror Name',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62289,0,0,0,0,0,0,0,0,0,0,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flammable',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62330,0,0,0,0,384,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Ritual of Summoning',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(62341,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cancel Passenger Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62389,0,0,0,0,256,0,0,268435712,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Check Thorim Arena',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62390,0,0,0,0,256,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Thorim Arena Failure',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62403,0,0,0,0,384,0,0,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Right Hand Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62406,0,0,0,0,384,0,0,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Left Hand Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62421,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pressure Loss',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62429,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Passenger Entered',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62431,0,0,0,0,256,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Engineering Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62452,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Shoot \'Em Up: Proto-Drake Out-of-Combat Regen',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62474,0,0,0,0,0,1024,4,262144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Hurl Boulder (Power Burn)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62543,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Spawn Pyrite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62556,0,0,0,0,384,268435456,0,0,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,-1,0,0,0,'Countdown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62630,0,0,0,0,134217984,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'[DND] Teach New Auberdine Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62631,0,0,0,0,134217984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'[DND] Teach Grove of the Ancients Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62643,0,0,0,0,384,268435456,4,256,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blink Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62808,0,0,0,0,696254848,1056,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'A Squad of Your Own: Maestra\'s Post Sentinel Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Awaken Robots',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62829,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'A Squad of Your Own: Despawn Sentinels',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62840,0,0,0,0,547619200,1160,67108868,64,2048,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Respect for the Fallen: Create The Purifier\'s Prayer Book',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62880,0,0,0,0,384,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Kadrak\'s Reins',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(62915,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hunter Snake Trap Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63078,0,0,0,0,256,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Cosmetic - Summon 10 Flowers 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63079,0,0,0,0,256,268435456,0,0,192,134217728,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Cosmetic - Summon 10 Flowers 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63217,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fuel Cell Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63284,0,0,0,0,256,1160,0,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Shadow Crash Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,13,0,0,0,-1,0,0,0,'Summon Dwarves',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63286,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Overseer Gorthak: Face Random Orc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63296,0,0,0,0,536871168,136,4,196864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of the Faceless',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63412,0,0,0,0,538968320,1160,67108868,268435520,2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Stopping the Rituals: Dummy to Ritual Gem Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63419,0,0,0,0,256,268435456,0,0,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Profound Darkness',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(63530,0,0,0,0,256,524288,4,0,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Keeper Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63538,0,0,0,0,0,0,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Separation Anxiety',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63561,0,0,0,0,1073807744,268436480,0,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,3,0,0,0,-1,0,0,0,'Fear Self',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(63782,0,0,0,0,256,0,0,0,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bladestorm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(63887,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,1,0,0,0,-1,0,0,0,'Death Ray Summon',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(63888,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,1,0,0,0,-1,0,0,0,'Death Ray Summon',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(63889,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,1,0,0,0,-1,0,0,0,'Death Ray Summon',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(63890,0,0,0,0,384,136,0,512,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,1,0,0,0,-1,0,0,0,'Death Ray Summon',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(64033,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Champion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64035,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Warbringer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64037,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Evoker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64038,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Commoner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64067,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Overload',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64093,0,0,0,0,696254720,1056,268976133,268894208,8388736,393224,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Enable Interact While Hostile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64094,0,0,0,0,536871168,0,0,268894208,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Disable Interact While Hostile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64149,0,0,0,0,384,0,4,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Left Hand Nook Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64150,0,0,0,0,384,0,4,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Right Hand Nook Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64207,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Consumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64209,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Consumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64214,0,0,0,0,256,1160,0,131328,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Chain Lightning Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64232,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Summon Tempest Minion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64360,0,0,0,0,256,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Summon Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64559,0,0,0,0,384,0,4,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Left Hand Wall Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64560,0,0,0,0,384,0,4,1073741824,8193,1024,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Right Hand Wall Exploder Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64743,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64796,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Health Forwarding',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64797,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Health Forwarding',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64829,0,0,0,0,384,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tentacle Submerge Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64884,0,0,0,0,256,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cooldown: Creature Special 2 (8s)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64973,0,0,0,0,384,0,0,0,8321,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Lightning Field',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64980,0,0,0,0,256,268435456,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Achievement Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(64998,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Say you\'re ready to fly!',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65049,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Westfall Lighthouse Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65065,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Magni Statue Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65066,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Malfurion Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65067,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Ratchet Docks Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65068,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Cairne Pyre Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65069,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'ACW Sylvanas Visit Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65083,0,0,0,0,256,268435456,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Cache Destroyed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65092,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Retarget',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(65114,0,0,0,0,256,268435592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(65118,0,0,0,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,134,0,0,0,-1,0,0,0,'Bomb Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65119,0,0,0,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,36,0,0,0,-1,0,0,0,'Bomb Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65149,0,0,0,0,536871296,0,0,256,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hate All in LoS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65155,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65167,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put Out The Fire: Quest Complete or Abandon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDPut Out The Fire: Quest Complete 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDPut Out The Fire: Freezing Surger 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDPut Out The Fire: Freezing Surger 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65189,0,0,0,0,536871296,1024,4,256,128,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Vortex: Character Dismount Cast From Gossip',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65197,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Pacify Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65219,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'No Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65225,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldEarth Elemental Pet Scaling 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65226,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldEarth Elemental Pet Scaling 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65227,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldEarth Elemental Pet Scaling 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65228,0,0,0,0,448,0,0,268435456,34603008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldEarth Elemental Pet Scaling 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65246,0,0,0,0,2843738112,1056,268976141,269680640,8519808,393224,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Storm the Beach',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65268,0,0,0,0,256,268435456,0,0,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Profound Darkness',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(65271,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Replace Ravasaur Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65276,0,0,0,0,384,268436480,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro (Vehicle Only)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65277,0,0,0,0,256,268435456,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Achievement Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65296,0,0,0,0,256,268435456,5,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lumberjacked Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65304,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Hate Monster (Spar Buddy)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65322,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65323,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65324,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65325,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65326,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65327,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65330,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65331,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65334,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65335,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65336,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65337,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65338,0,0,0,0,256,268436480,5,131328,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65339,0,0,0,0,256,268436480,5,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65340,0,0,0,0,256,268436480,5,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65341,0,0,0,0,256,268436480,5,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65342,0,0,0,0,256,268436480,5,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hardmode Tracker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65362,0,0,0,0,2843738112,1056,268976141,269680640,11141280,393225,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Quiet Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65376,0,0,0,0,673186176,1192,272629761,268894784,8390656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Recover the Fallen: Create Laughing Sister\'s Corpse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65377,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Grizzlemaw Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65380,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Grizzlemaw Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65389,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Bronze Dragonshrine Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65390,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Bronze Dragonshrine Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65441,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Laughing Sister Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65472,0,0,0,0,67109120,268438528,4,269615104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'High Armor Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65473,0,0,0,0,67109120,268438664,4,269615104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Medium Armor Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65474,0,0,0,0,67109120,268438664,4,269615104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Low Armor Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65475,0,0,0,0,67109248,268438664,5,269615104,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Is Physical DPS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65476,0,0,0,0,67109120,268438664,4,269615104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Is Healer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65477,0,0,0,0,67109120,268438664,4,269615104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Is Caster DPS',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65480,0,0,0,0,256,268436480,4,268566784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Analyze Raid Composition',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65482,0,0,0,0,67109120,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,13,0,0,0,-1,0,0,0,'Targeting Marker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65504,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Playmates Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65505,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'NCW Playmates Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65533,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'NCW Alexstrasza Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65534,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'NCW Alexstrasza Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65536,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy Trigger 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65559,0,0,0,0,384,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Caravan Victory Cue',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65566,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'NCW Great One Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65567,0,0,0,0,536871168,525312,4,0,0,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'NCW Hemet Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65597,0,0,0,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,134,0,0,0,-1,0,0,0,'Bomb Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65625,0,0,0,0,536871168,1160,67108868,268435520,2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Dartol\'s Rod 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65721,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Trigger 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65747,0,0,0,0,536871168,1160,67108868,268435520,2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Dartol\'s Rod 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65750,0,0,0,0,256,268435456,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Targeting Marker Proc',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65776,0,0,0,0,256,268436616,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Nuker Evaluate Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65789,0,0,0,0,256,268436616,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Melee Evaluate Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65885,0,0,0,0,8388880,268435456,1,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Super Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(65952,0,0,0,0,384,268435456,4,196608,0,0,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(65963,0,0,0,0,262528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2,0,0,0,-1,0,0,0,'Wound Poison',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(65969,0,0,0,0,698351616,1192,67125252,64,2048,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'FBG - XP Award',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66000,0,0,0,0,384,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Totem Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66029,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Replace Gahz\'ridian Detector',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66143,0,0,0,0,687866240,3104,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Necessary Roughness: See Spawned Bilgewater Buccaneer Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66144,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Signal to Friends',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66145,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDDo it Yourself: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66148,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Hot Rod - Knockback Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66156,0,0,0,0,256,268960904,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Healer Evaluate Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66174,0,0,0,0,384,268435456,4,196608,0,0,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66202,0,0,0,0,256,268436616,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hunter Evaluate Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66239,0,0,0,0,8388992,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dummy Trigger - Alicia Cuthbert Dies',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66270,0,0,0,0,536871296,268435456,4,1179648,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66273,0,0,0,0,536871296,268435456,4,131072,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66274,0,0,0,0,536871296,268435456,4,131072,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66297,0,0,0,0,536871168,1160,67108868,268435520,2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Create Keys to the Hot Rod',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66315,0,0,0,0,256,268436480,4,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66319,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Summon Fire Bomb',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(66328,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Call Spider',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66337,0,0,0,0,256,1160,4,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fire Bomb Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66341,0,0,0,0,384,0,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Grab Snobold',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66343,0,0,0,0,384,0,0,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Snobold Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66344,0,0,0,0,384,0,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,-1,0,0,0,'Snobold Launch Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66388,0,0,0,0,687866240,1056,273170436,268632576,8388736,917512,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Deathwing Sound 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66389,0,0,0,0,687866240,1056,273170436,268632576,8388736,917512,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Deathwing Sound 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66394,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66395,0,0,0,0,689963264,268436648,335560704,1048640,2240,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Rolling with my Homies: See Invisibility 01 - \"Ace\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66396,0,0,0,0,689963264,268436648,335560704,1048640,2240,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Rolling with my Homies: See Invisibility 02 - \"Gobber\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66397,0,0,0,0,689963264,268436648,335560704,1048640,2240,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Rolling with my Homies: See Invisibility 03 - \"Izzy\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66414,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,0,0,0,-1,0,0,0,'Tanking Gormok',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66415,0,0,0,0,320,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tanking Gormok',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66422,0,0,0,0,384,0,5,1048832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Assign Vehicle Record',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66589,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Rolling with my Homies: Cancel See Invisibility 01 - \"Ace\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66590,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Rolling with my Homies: Cancel See Invisibility 02 - \"Gobber\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66591,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Rolling with my Homies: Cancel See Invisibility 03 - \"Izzy\"',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66604,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The New You: See Cat\'s Mark Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66605,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fourth and Goal: Deathwing Force Character to Change Seats',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66607,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66609,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Hot Rod - Activate Knockback Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66610,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Waltz Right In: Force Cast Keensnout Potbelly Leash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66612,0,0,0,0,687866240,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Despawn Summoned Friends',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66614,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66615,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66616,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66617,0,0,0,0,2835349888,268438664,67125248,64,6208,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Get Into The Hot Rod Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66618,0,0,0,0,687866240,1160,67125248,64,2048,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Get Into The Hot Rod Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66641,0,0,0,0,8388992,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,-1,0,0,0,'Tell Snobold I Died',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66643,0,0,0,0,384,268435456,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Apply Vehicle Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66678,0,0,0,0,384,268435592,4,131328,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Farthest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66679,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Resummon Master Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66685,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,589,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66722,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Circle the Wagons, Er... Boats: Force Cast from Gossip',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66729,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,13,0,0,0,-1,0,0,0,'Furious Charge Summon Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66761,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 05',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66762,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 07',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66766,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The New You: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66828,0,0,0,0,687866240,3104,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Do it Yourself: See Cat\'s Mark - Bruno',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66884,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,12800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDPhase 1 Complete Tracking Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66885,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDLife of the Party: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66920,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Surrender Or Else!: Naga Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66921,0,0,0,0,687866240,1056,273170436,197376,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Earthquake Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66944,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pirate Party Crashers: Kezan Partygoer Transform - Male',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66945,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pirate Party Crashers: Kezan Partygoer Transform - Female',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66946,0,0,0,0,142606592,268435456,1,1048576,4160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pirate Party Crashers: Kezan Partygoer Transform - Swimmer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66956,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Create Totem',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66970,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Acidmaw Transform to Mobile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66971,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dreadscale Transform to Sessile',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66980,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Summon Mobile Jormungar Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66981,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,-1,0,0,0,'Summon Sessile Jormungar Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66982,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Stormwind Portal Teleport to Vashj\'ir (Tranquil Wash)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66983,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 04',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66984,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDQuest Phase 06',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66995,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Orgimmar/Stormwind Portal Teleport to Vashj\'ir (Silver Tide Hollow)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66996,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDA Bazillion Macaroons?!: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66997,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,12800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDPhase 6 Complete Tracking Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(66998,0,0,0,0,687866240,3104,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Waltz Right In: Beam Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67000,0,0,0,0,687866240,3104,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Waltz Right In: Villa Mook Recently Emoted',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67010,0,0,0,0,696254720,1184,268976133,268632064,8388736,393224,16781316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of Honor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67011,0,0,0,0,696254720,1184,268976133,268632064,8388736,393224,16781316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Mark of Honor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67026,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'zzOLDCower Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67027,0,0,0,0,384,268435456,0,0,0,131072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDCower Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67284,0,0,0,0,150995392,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Suicide Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67288,0,0,0,0,150995328,32,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67339,0,0,0,0,1090584960,268436480,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,3,0,0,0,-1,0,0,0,'Fear Self',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(67341,0,0,0,0,16777488,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Super Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67474,0,0,0,0,256,1024,268435460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Goblin Escape Pods: Force Cast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67491,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,-1,0,0,0,'Liberate the Kaja\'mite: Summon Kaja\'mite Chunks - C',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67507,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,-1,0,0,0,'Liberate the Kaja\'mite: Summon Kaja\'mite Chunks - A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67548,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,-1,0,0,0,'Liberate the Kaja\'mite: Summon Kaja\'mite Chunks - B',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67552,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 01 - AP, SP, Armor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67553,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 02 - Strength, Agility, Stamina',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67557,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 03 - Intellect, Spirit, Resilience',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67558,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 04 - Arcane, Fire, Frost Resistance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67559,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 05 - Nature, Shadow, Melee Hit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67561,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 06 - Spell Hit, Expertise, Spell Penetration',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67562,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 07 - Mana Regeneration, Spell Haste, Melee Haste',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67563,0,0,0,0,384,0,0,268435456,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pet Scaling - Master Spell 08 - Spell Crit, Melee Crit, Armor Penetration',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67668,0,0,0,0,696254848,3104,273170437,268632576,8388800,393736,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Waltz Right In: Disguise Master Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67783,0,0,0,0,150995328,32,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Implosion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67850,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'It\'s A Town-In-A-Box: Phase Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Enable Koralon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(67872,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Goblin Escape Pods: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68006,0,0,0,0,2306867200,32,540685,1048576,2752672,393225,136704,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Battleground Experience Active',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68075,0,0,0,0,536871296,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Miner Troubles: GUID Dot Variable to Summoning Miner',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68260,0,0,0,0,536871296,268435456,0,1048576,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68273,0,0,0,0,536871296,268435456,0,1048576,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68275,0,0,0,0,536871296,268435456,0,1048576,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68276,0,0,0,0,536871296,268435456,0,1048576,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Snobold Carrier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68288,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Weed Whacker: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68373,0,0,0,0,2843740544,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Despawn Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68390,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Stormwind Portal Teleport to Vashj\'ir (Darkbreak Cove) - ELM',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68426,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Speed Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68447,0,0,0,0,0,0,132,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Force Cast - Delete Wolvar Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68448,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: Force Cast from Gossip & Kill Credit - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68449,0,0,0,0,0,0,132,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Force Cast - Delete Oracle Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68450,0,0,0,0,256,0,128,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Delete Wolvar Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68453,0,0,0,0,256,0,128,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Delete Oracle Whistle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68463,0,0,0,0,159383936,32,540672,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bloodtooth Frenzy Clean Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68464,0,0,0,0,159383936,32,540672,0,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Bloodtooth Frenzy Clean Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68465,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Orgimmar Portal Teleport to Vashj\'ir (Tenebrous Cavern)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68484,0,0,0,0,64,0,0,0,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Swift Flight Form Passive',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(68485,0,0,0,0,65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,35,0,0,0,-1,0,0,0,'Clayton\'s Test Spell 2',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(68517,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Beast Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68518,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Jaraxxus Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68519,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Champions Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68520,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Val\'kyr Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68521,0,0,0,0,384,0,4,268566528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Anub\'arak Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68523,0,0,0,0,256,268435592,5,268566784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Achievement Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68575,0,0,0,0,256,268435592,5,268435712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68590,0,0,0,0,256,268436480,5,268632320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Item Level Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68678,0,0,0,0,384,268436480,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68684,0,0,0,0,384,268435456,268435456,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Goblin Escape Pods: Trade Prince & Company Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68685,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Goblin Escape Pods: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68686,0,0,0,0,689963392,268436648,335560704,1048640,2240,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Goblin Escape Pods: See Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68692,0,0,0,0,2843738112,1056,268976133,1245440,8388736,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'General Trigger 1 from all player targets in 100 yards',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68772,0,0,0,0,2147483648,1024,268435460,196608,8388608,0,8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pick-a-Forge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68777,0,0,0,0,2147483648,1024,268435460,196608,8388608,0,8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pick-a-Forge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68814,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Up, Up & Away!: Quest Abandon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68928,0,0,0,0,696254848,1056,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Cluster Cluck: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOld Dan\'s Altered Form On',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOld Dan\'s Altered Form Off',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(68972,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Town-In-A-Box: Under Attack: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69001,0,0,0,0,0,536870976,0,0,32768,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,-1,0,0,0,'Transform: Worgen',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69014,0,0,0,0,2843738112,1124,268976132,1245440,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Explosive Barrage',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(69061,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Impaled Removal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69082,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Precious Cargo: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69093,0,0,0,0,2843738368,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Blizzcon Ticket',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69102,0,0,0,0,2910846976,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Awe',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69116,0,0,0,0,536871168,268435592,4,196864,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Shadowstep Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69117,0,0,0,0,384,268436480,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69121,0,0,0,0,2843803904,268436512,268976133,1245184,8388736,917512,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,-1,0,0,0,'Ride Vehicle',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(69173,0,0,0,0,384,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Overlord\'s Brand',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69183,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Overlord\'s Brand',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69229,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Krasus Quel\'Delar Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69231,0,0,0,0,256,1160,4,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Icy Blast Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69234,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,13,0,0,0,-1,0,0,0,'Summon Icy Blast',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(69287,0,0,0,0,256,1160,4,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Hoarfrost Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69327,0,0,0,0,256,268436480,4,131328,128,524296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Dream Fog',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(69351,0,0,0,0,256,1160,4,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Icy Blast Periodic Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69357,0,0,0,0,0,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,1,0,0,0,-1,0,0,0,'Pursuit Confusion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69365,0,0,0,0,536870912,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Choose Close Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69429,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,13,0,0,0,-1,0,0,0,'Servant Summon Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69430,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,13,0,0,0,-1,0,0,0,'Stalker summon Risen Servant',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,1,0,0,0,-1,0,0,0,'Spawn Skeleton',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69514,0,0,0,0,4194562,1024,4194304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,262156,0,0,'zzOLDShoot Gun',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69547,0,0,0,0,150995200,268435488,0,1048576,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'100% Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69625,0,0,0,0,689963392,1192,67125252,268697664,2176,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Child Vehicle to Parent Vehicle on Voluntary Player Eject',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69631,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,-1,0,0,0,'Summon Spotlight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69686,0,0,0,0,256,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,0,0,-1,0,0,0,'Summon Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(69694,0,0,0,0,256,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,0,0,-1,0,0,0,'Summon Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(69786,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Immune All',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69807,0,0,0,0,2843738128,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,13,0,0,0,-1,0,0,0,'Saber Lash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69895,0,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Periodic Trigger Dummy (No Threat)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(69983,0,0,0,0,150995328,0,0,268435456,128,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'Necessary Roughness: Summon Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70023,0,0,0,0,384,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Necessary Roughness: Shredder Blade Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70030,0,0,0,0,8388992,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Necessary Roughness: Force Cast on Abandon Vehicle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70031,0,0,0,0,384,0,0,0,128,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Necessary Roughness: Quest Abandon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70033,0,0,0,0,256,268435456,0,1048576,192,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Necessary Roughness: Summoned Bilgewater Buccaneer Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70034,0,0,0,0,689963264,268436648,335560704,1048640,2240,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Necessary Roughness: Steamwheedle Shark See Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70055,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Rocket Pack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70067,0,0,0,0,150995200,268435488,540672,1048576,192,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Fourth and Goal: Bilgewater Buccaneer Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70068,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Force Cast on Abandon Vehicle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70073,0,0,0,0,384,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Frost Bomb Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70076,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Fourth and Goal: On Summon Force Cast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70077,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Quest Accept - A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70094,0,0,0,0,698352000,1192,340279301,269681216,8390785,8781832,4608,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Fourth and Goal: Kill Credit to Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70096,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDGive Sassy the News: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70125,0,0,0,0,696254720,32,540676,268435456,0,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(70170,0,0,0,0,696254720,32,268976132,268632064,8388608,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Clear Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(70202,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Remove Hate',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70257,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Despawn Ice Blocks',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70258,0,0,0,0,0,0,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Throw Saronite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70264,0,0,0,0,150995328,32,16384,0,192,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'447: Character See Quest Invis 1 from Gasbot',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70317,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70328,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Hot Rod - Activate Knockback Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70370,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: General Trigger from Hot Rod to Sassy 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70373,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Say Only To A Player from Sassy 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70375,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: General Trigger from Hot Rod to Sassy 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70376,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Say Only To A Player from Sassy 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70377,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Yell Only To A Player from Sassy 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70378,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: General Trigger from Hot Rod to Sassy 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70379,0,0,0,0,384,1024,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Life Savings: Say Only To A Player from Sassy 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70467,0,0,0,0,687866240,1056,273170564,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Waltz Right In: Disguise AoE Pulse',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70489,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self (Sitting)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70490,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70515,0,0,0,0,384,268435592,4,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Closest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70647,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Vampiric Fiend',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70683,0,0,0,0,536871296,0,0,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Capturing The Unknown: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70709,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Vampiric Fiend',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Amplify Magic Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70815,0,0,0,0,384,0,4,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Spawn Cultists',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70819,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Fanatic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70820,0,0,0,0,256,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Adherent',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70891,0,0,0,0,0,524288,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Dark Ritual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Coldflame Generator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(70989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Coldflame Generator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Plague Zombies',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71190,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,1,0,0,0,-1,0,0,0,'Recently Summoned',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71206,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Touch of Insignificance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71223,0,0,0,0,687866240,3104,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'<INTERNAL>Necessary Roughness: See Spawned Bilgewater Buccaneer Loot FX',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71245,0,0,0,0,384,268435456,4,196608,128,8,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71256,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: Quest Phase 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71282,0,0,0,0,536871296,136,4,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Dominate Mind',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(71287,0,0,0,0,0,1024,4,196608,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Frozen Orb Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71290,0,0,0,0,536871168,268435592,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,6,0,0,0,-1,0,0,0,'Dominate Mind',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(71294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Teleporter Enable Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71375,0,0,0,0,256,1160,4,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Icy Blast Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71382,0,0,0,0,256,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,-1,0,0,0,'Summon Icy Blast',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(71394,0,0,0,0,384,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Aggro Marked',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71395,0,0,0,0,8388864,0,1,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'The Biggest Egg Ever: Summon The Biggest Egg Ever',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71444,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Clear Impaling Spear',0,0,0,0,0,0,0,0,0,0,0,0,66,0),
+(71517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Lasher Pack Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71666,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Friendly Melee Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71667,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Honored Melee Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71668,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Revered Melee Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71669,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Exalted Melee Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71670,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Friendly Tank Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71671,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Honored Tank Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71672,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Revered Tank Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71673,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Exalted Tank Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71674,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Friendly Healer Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71675,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Honored Healer Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71676,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Revered Healer Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71677,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Exalted Healer Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71678,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Friendly Caster Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71679,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Honored Caster Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71680,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Revered Caster Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71681,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Exalted Caster Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71890,0,0,0,0,696254720,32,540676,268435456,0,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,-1,0,0,0,'Kill Ice Tomb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71894,0,0,0,0,384,268435456,4,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(71907,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Summon Severed Essence',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71916,0,0,0,0,536871296,1056,272629764,268632576,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Irresistible Pool Pony: Lure Naga Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71920,0,0,0,0,536871296,1024,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Irresistible Pool Pony: Naga Hatchling Proximity Control - Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(71998,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Ace at the Ruins of Vashj\'elan: Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72049,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle the Wagons, Er... Boats: Quest Phase 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Generic Two-way Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72074,0,0,0,0,687866240,3104,273170436,197120,8388800,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Surrender Or Else!: Character\'s Force Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72075,0,0,0,0,384,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Surrender Or Else!: Faceless of the Deep - Beam Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72118,0,0,0,0,384,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Surrender Or Else!: Ace\'s Yell - Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72119,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Surrender Or Else!: Ace\'s Yell - Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72300,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'BFGC - Despawn All',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72325,0,0,0,0,536871168,268435592,4,196864,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Shadowstep Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72467,0,0,0,0,536870912,0,0,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Quest Clearing Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72526,0,0,0,0,536871296,268435456,4,196608,128,0,16793600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(72532,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pterrordax Scale Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72533,0,0,0,0,384,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,7,0,0,0,-1,0,0,0,'Shizzle\'s Flyer: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'helen tool test',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'helen test',0,0,0,0,0,0,0,0,0,0,0,0,0,0),
+(72603,0,0,0,0,384,0,5,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Body And Soul: Big Blue Bonfire',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72644,0,0,0,0,8388992,0,1,1048576,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Body And Soul: Yngwie\'s Body Dragging Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72699,0,0,0,0,0,1024,268435456,196864,8388608,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Charge Primer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Access Progression Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72827,0,0,0,0,8388864,268435592,5,268435712,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Achievement Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72828,0,0,0,0,8388992,524288,4,0,128,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Achievement Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72845,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Don\'t Look Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72877,0,0,0,0,8388608,0,4,268435712,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Plague',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72893,0,0,0,0,384,268435456,4,196608,0,0,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72926,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Quest Accept: The Ballad of Maximillian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72945,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Forcecast Summon and Despawn Devilsaur Queen',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72946,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Zombie Shooter at Lost Peak: Shoot - Cover',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72947,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Devilsaur Queen Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72955,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quest Complete: The Ballad of Maximillian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(72969,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Orgimmar Portal Teleport to Vashj\'ir (Immortal Coil)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73045,0,0,0,0,696254848,1056,540677,268566784,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Marrowgar Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73047,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Deathwhisper Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73048,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Gunship Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73049,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Deathbringer Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73050,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Festergut Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73051,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rotface Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73052,0,0,0,0,150995328,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blood Princes Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73053,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Valithria Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73054,0,0,0,0,696254848,1056,540677,268632320,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Putricide Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73055,0,0,0,0,696254848,1056,540677,268566784,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blood Queen Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73056,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Sindragosa Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73057,0,0,0,0,696254848,1056,540677,268566784,128,393224,4100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lich King Attempt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73083,0,0,0,0,536871296,1024,4194304,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Become Random Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73088,0,0,0,0,536871296,0,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Awaken Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73089,0,0,0,0,536871296,0,4194308,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Forcecast Awaken Undead',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73091,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Summon Civilian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73092,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,1,0,0,0,-1,0,0,0,'Summon Recruit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73095,0,0,0,0,671089024,1056,5,268435456,128,393224,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Lilian Mirror Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73096,0,0,0,0,679477632,1056,5,268435456,128,393224,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Scarlet Cannibalize Credit and Quest Launch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73098,0,0,0,0,536871168,268435456,0,0,2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73114,0,0,0,0,159383936,1056,540673,0,128,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Murloc Returned Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73115,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Murloc Returned Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73126,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Volcanoth!: Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73138,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Reply Profession',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73139,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Soldier',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73140,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Civilian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73146,0,0,0,0,696254848,1056,273170437,268632576,8388608,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Old Friends: Sassy Yell 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73152,0,0,0,0,687866240,1056,540676,268435456,128,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Summon Worgen Infiltrator - Force Player Cast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73157,0,0,0,0,536871168,0,4,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Instakill Other',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73160,0,0,0,0,696254848,1056,273170437,1245696,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Launch Worgen Quest',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73161,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Worgen Infiltrator Invisiblity - Quest Invis 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73168,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Worgen Infiltrator - Stealth Trail Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73177,0,0,0,0,2496,0,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Call of the Shoveltusk <DND>',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73178,0,0,0,0,2496,0,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Call of the Shoveltusk <DND>',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73202,0,0,0,0,696254848,1056,273170565,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Old Friends: Switch Seats',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73218,0,0,0,0,384,268435456,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Lilian Caged Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73219,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Tirisfal: Annihilate the Worgen - Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73221,0,0,0,0,384,268435456,4,268435456,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Tirisfal: Beat Them, Then Eat Them - Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73342,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'1 Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73414,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Mine Disposal, The Goblin Way: Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73421,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Deathknell Class Training - Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73423,0,0,0,0,384,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Quest Accept: Beat Them, Then Eat Them',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73435,0,0,0,0,696254848,268436512,273170437,1245696,8388736,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ever So Lonely: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73436,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Ever So Lonely: Objective Completion Logic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73451,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Lilian Voss Daughterhood Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73452,0,0,0,0,384,268435456,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Lilian Voss Daughterhood Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73454,0,0,0,0,696254848,1056,4734981,269484032,128,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Benedictus Voss Event KC',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73480,0,0,0,0,384,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Instakill Vehicle Passenger 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73483,0,0,0,0,256,268435456,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Pride Of Kezan: Aggro Aura - Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73484,0,0,0,0,536871168,0,4,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Pride Of Kezan: Aggro Aura - Effect',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73513,0,0,0,0,8388992,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'A Daughter\'s Embrace: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73533,0,0,0,0,687866240,3108,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'<INTERNAL>Fourth and Goal: Change Seats Spacer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73553,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-1,0,0,0,'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - City',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73567,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Kaja\'Cola Gives You IDEAS! (TM): Quest Dungeon Set 2.0 Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73584,0,0,0,0,134479872,1024,536870916,536870912,32768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,81,0,13,0,0,0,-1,0,0,0,'zzOLDMind Spike',0,0,0,0,0,0,0,0,0,1,0,0,16,0),
+(73585,0,0,0,0,134479872,1024,536870916,537133056,32832,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,1,1,29,13,0,0,100,-1,0,0,0,'zzOLDMind Spike',0,0,0,0,0,0,0,0,0,1,0,0,48,0),
+(73594,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Free Their Minds: Quest Invisibility 01 - Ace',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73596,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Free Their Minds: Quest Invisibility 02 - Izzy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73598,0,0,0,0,384,268435456,0,0,64,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Free Their Minds: Quest Invisibility 03 - Gobber',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73618,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Close Escort: Catapult Movement Controller - Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73653,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Orc Class Ability Training Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73656,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rwag\'s Stealth Detect Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73657,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2,0,0,0,-1,0,0,0,'Rwag\'s Stealth Detect Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73663,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Valley of Trials Class Training - Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Scorpid Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73676,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Poison Extraction KC',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73697,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Forcecast Summon Durotar Riding Wolf',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73707,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Player Opens Den Cage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73713,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Grunt Groan Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73717,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Launch Loss Reduction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73732,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,1,0,0,0,-1,0,0,0,'Drowning Descent',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73743,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Teleport to Razor Hill Guard Tower',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73750,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durotar Watershed Quest Kill Credit 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73751,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durotar Watershed Quest Kill Credit 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73752,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durotar Watershed Quest Kill Credit 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73753,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durotar Watershed Quest Kill Credit 4',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73754,0,0,0,0,384,268436480,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Durotar Watershed - Quest Completion Checker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73842,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Teleport and Cancel Hunting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73849,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Wolf - Periodic Kodo Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73850,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Wolf - Periodic Kodo Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73870,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'A Shaman\'s Fable - Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73875,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Wolf - Approach Kodo',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73885,0,0,0,0,384,0,0,4,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Quest Accept: A Shaman\'s Fable',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73895,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Good-bye, Sweet Oil: Quest Invisibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73915,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill Chip Endale Quests: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73957,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Prophecies of Doom Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(73962,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Kill Candy Cane Quests: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74026,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Slave Pits: Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74027,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'<INTERNAL>Orgimmar Portal Teleport to Vashj\'ir (Legion\'s Rest)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74082,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,-1,0,0,0,'Drake Whisper',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74102,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Close Escort: Bunny to Character - Ambush A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74167,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Up to the Citadel: Cast from Gossip - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74306,0,0,0,0,696254848,0,16389,256,128,131080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ooze + Gas Variable Clear',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74324,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Kagarn Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74328,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Agtar Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74329,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Tokka Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74330,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Rokaga Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74400,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cho\'Gall Speech Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74479,0,0,0,0,540082432,1160,67108864,64,2048,8388608,0,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'To The Summit: Unlearned Taxi from Camp Mojache',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74487,0,0,0,0,384,268959744,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'[DND] Get Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74488,0,0,0,0,384,268435456,0,0,0,384,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,36,0,0,0,-1,0,0,0,'[DND] Get Aggro Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74510,0,0,0,0,384,268435456,0,1048576,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Is Clone',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74512,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,-1,0,0,0,'Copy Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74576,0,0,0,0,553648512,268959880,132,262144,2048,392,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'[DND] Get Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74577,0,0,0,0,553648512,268435456,0,268435456,2048,8389000,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,36,0,0,0,-1,0,0,0,'[DND] Get Aggro Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74579,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Lethelyn Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74581,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Kaima Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74582,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Wyman Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74583,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Cultist Orlunn Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74584,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'East Zeppelin Tower Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74585,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'West Zeppelin Tower Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74586,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Razor Hill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74612,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Force Player Twilight Sermon Start Event Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74615,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Force Player Twilight Sermon Start Event Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74631,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Flame Patch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74638,0,0,0,0,256,1160,0,196864,8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Meteor Strike Targeting',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74680,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74681,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74682,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74683,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74687,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74688,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74689,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,-1,0,0,0,'Summon Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74696,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Spread Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74703,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Meteor Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74714,0,0,0,0,536871296,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Meteor Strike Spread',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74715,0,0,0,0,384,524288,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,-1,0,0,0,'Meteor Strike Spread',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74775,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Valley of Heroes Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74776,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Westbrook Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74777,0,0,0,0,256,1024,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Goldshire Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74778,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Friendly Strength Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74779,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Honored Strength Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74782,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Revered Strength Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74784,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Exalted Strength Ring Replacement',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74816,0,0,0,0,384,268435456,4,196608,0,392,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74818,0,0,0,0,2432,268435456,0,67108864,0,0,0,1073741824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Damage Counter',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74821,0,0,0,0,536871296,268435456,4,262144,0,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Reset Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74822,0,0,0,0,384,268435456,4,0,0,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Reset Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74823,0,0,0,0,256,268437504,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Compare Damage Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74824,0,0,0,0,256,268437504,4,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compare Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74887,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Initialize Consumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(74923,0,0,0,0,384,268436480,4,131328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Random Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75012,0,0,0,0,696254848,3104,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,-1,0,0,0,'Brute Enforcer: Random Say Controller Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75032,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Wooly White Rhino',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75034,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Blazing Hippogryph',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75065,0,0,0,0,400,512,4,131072,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75074,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Twilight Realm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75084,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Instant Statue Pedestal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75101,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Landro\'s Gift Box',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75130,0,0,0,0,696254848,3104,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The New You: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75131,0,0,0,0,687866240,1056,273170436,268632576,8388736,917512,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Fourth and Goal: Deathwing Sound 3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75132,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'The New You: Cancel Whisper Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75162,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Ethereal Portal',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75191,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Create Paint Bomb',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75193,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Baron Geddon Credit Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75231,0,0,0,0,540082432,1160,67108864,64,2048,8388608,0,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'To The Summit: Unlearned Taxi from Mudsprocket',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75240,0,0,0,0,540082432,1160,67108864,64,2048,8388608,0,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'To New Thalanaar: Unlearned Taxi from Mudsprocket',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75273,0,0,0,0,540082432,1160,67108864,64,2048,8388608,0,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'To New Thalanaar: Unlearned Taxi from Shadebough',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Attack Toshe',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75287,0,0,0,0,65568,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDEmbroidered Shirt',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75371,0,0,0,0,536871168,268435592,4,268894208,128,8,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,5,0,0,0,-1,0,0,0,'Fixate',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75507,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Twilight Mending',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75517,0,0,0,0,256,268435456,0,1048576,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,1,0,0,0,-1,0,0,0,'Tumultuous Earthstorm',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(75549,0,0,0,0,256,1160,4,131328,128,524296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Summon Quicksand',0,0,0,0,0,0,0,0,0,0,0,0,8,0),
+(75550,0,0,0,0,256,0,4,262144,128,524296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,6,0,0,0,-1,0,0,0,'Summon Quicksand',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75568,0,0,0,0,537133312,136,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Set Health',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75612,0,0,0,0,545259776,268435456,4,268435456,128,0,16777224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Crumbling Ruin',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75621,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Seedling Pod',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75628,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Quiet the Cannons: On Interact',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75646,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Seat Swap Timer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75688,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Seedling Pod',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75695,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Spore',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75696,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'In The Outhouse: Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75708,0,0,0,0,8388864,0,4,262144,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Energize',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75709,0,0,0,0,696254848,268436512,273170437,269681152,8388800,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'In The Outhouse: See Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75748,0,0,0,0,256,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Cue Intro Message',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75749,0,0,0,0,256,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Cue Wave 1 Message',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75758,0,0,0,0,150995328,1056,540676,268435456,129,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Cue Flying Charge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75769,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Bloodpetal Blossom Visual',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75771,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Bloodpetal Blossom',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75778,0,0,0,0,256,1024,4,196608,8388736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,13,0,0,0,-1,0,0,0,'[DND] Summon Exploder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75791,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Bloodpetal Sprout',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75837,0,0,0,0,159383808,1056,268435460,197376,8388736,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,-1,0,0,0,'[DND] Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75838,0,0,0,0,150995200,1056,268435460,197120,8388736,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'[DND] Killed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75839,0,0,0,0,0,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,12,0,0,0,-1,0,0,0,'[DND] Summon Restriction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75841,0,0,0,0,150995328,1056,540676,268435456,129,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Cue Flying Charge [Combat]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75853,0,0,0,0,150995200,1056,268435460,197376,8388736,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND] Init',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75855,0,0,0,0,536871168,1024,268435460,268894720,8390656,2097152,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'[DND] Spawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75880,0,0,0,0,536873344,0,0,268435456,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,1,0,0,0,-1,0,0,0,'Spawn Living Embers',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75881,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Summon Living Ember',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75914,0,0,0,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Call of the Shoveltusk (Test Copy)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75944,0,0,0,0,536871296,1024,4,269484032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,13,0,0,0,-1,0,0,0,'zzOldBrain Freeze Marker',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(75977,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: Force Cast from Gossip & Kill Credit - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75979,0,0,0,0,150995328,268436512,540676,268435456,0,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,13,0,0,0,-1,0,0,0,'[DND] Talk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75980,0,0,0,0,150995328,268436512,540676,268435456,0,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'[DND] Talk to Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75985,0,0,0,0,150995328,268436512,540676,268435456,0,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'[DND] Talk to Player',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75987,0,0,0,0,256,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Cue Wave 2 Message',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75995,0,0,0,0,256,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Cue Wave 3 Message',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(75997,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: Seat Chooser',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76000,0,0,0,0,547357056,1160,67108868,268435520,2176,8388608,0,62914560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: AICast on Enter Seat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P5]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76019,0,0,0,0,536871040,268436480,4,64,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND] Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76023,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Circle the Wagons, Er... Boats: Seat Chooser',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76049,0,0,0,0,256,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Cue Summoned Deer to Give Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76050,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Force Player to Cue Deer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P6]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76087,0,0,0,0,256,268435456,0,0,0,32,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,36,0,0,0,-1,0,0,0,'Tornado',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Erunak\'s Periodic',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76163,0,0,0,0,696254720,1056,273170437,269681152,8388736,393224,70144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,-1,0,0,0,'Pirate Accuracy Increasing: Eject - Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76169,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Circle the Wagons, Er... Boats: Boss Whisper Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76210,0,0,0,0,159383808,1056,268435460,197120,8388736,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'[DND] Killed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Flame Wall',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76254,0,0,0,0,553648512,268959880,132,262144,2048,392,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,-1,0,0,0,'[DND] Get Aggro',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76257,0,0,0,0,256,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'See Invis',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76323,0,0,0,0,384,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Clear Passenger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76374,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,-1,0,0,0,'Summon Meteor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76383,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ragnaros Suppressed',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76388,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND] Buff',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76407,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Toss Fish',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76408,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'10000% Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76476,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Player Count++',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76495,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,-1,0,0,0,'Accident',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76549,0,0,0,0,150995072,0,268435456,196608,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,0,0,0,-1,0,0,0,'zzOLDMana Adept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76552,0,0,0,0,256,268435456,0,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,165,0,0,0,-1,0,0,0,'Windwalk Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76554,0,0,0,0,256,0,0,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,165,0,0,0,-1,0,0,0,'Windwalk Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76556,0,0,0,0,256,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,1,0,0,0,-1,0,0,0,'Windwalk Summon Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76564,0,0,0,0,0,0,4,0,0,0,0,33554432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Throw Iron Ore',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76571,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,13,0,0,0,-1,0,0,0,'Shrink Gnash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76601,0,0,1,0,8388608,136,536870916,268697600,1048960,8388608,536870912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,99,35,13,0,0,0,-1,0,0,0,'zzoldFlashburn',0,0,0,0,0,0,0,0,0,0,0,0,4,0),
+(76614,0,0,0,0,262160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0,0,0,-1,0,0,0,'zzOLDFrostburn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76660,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Hunter Beast Mastery Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76661,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Hunter Survival Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76662,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Hunter Marksmanship Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76702,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Mountaineer Dunstan Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76704,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Mountaineer Lewin Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76705,0,0,0,0,256,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Mountaineer Valgrum Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76710,0,0,0,0,687866240,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Haunted: Resummon Spirit of Tony Two-Tusk',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76737,0,0,0,0,536871168,268435456,0,268697600,129,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Chaos Blast Me',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76741,0,0,0,0,134220032,268435456,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,0,0,0,-1,0,0,0,'Summon Captured Huntress',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76760,0,0,0,0,384,268435456,4,196608,0,524288,16384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,-1,0,0,0,'Dummy Nuke',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76763,0,0,0,0,0,1192,16388,131072,128,393224,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Move',0,0,0,0,0,0,0,0,0,0,0,0,127,0),
+(76767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Haunted: Tony\'s Talk Controller Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76769,0,0,0,0,384,268435456,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,13,0,0,0,-1,0,0,0,'[DND] Cooldown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76805,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Rogue Assassination Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76809,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Rogue Subtlety Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76836,0,0,0,0,696254848,1056,273170437,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Carcass Collection: Mod Aura Vision',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76849,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Carcass Collection: On Interact',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76875,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Mad Magus: Quest Completion',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(76983,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'It\'s All Mine: Heap to Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77019,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'The Mad Magus: Cancel Player\'s Mad Magus Tirth\'s Soul Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77028,0,0,0,0,687866240,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'The Mad Magus: Spirit of Tony Two-Tusk to Demon Creator',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77029,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'The Mad Magus: Player to Ajamon Ghostcaller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77031,0,0,0,0,1073807744,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,3,0,0,0,-1,0,0,0,'Fear Self Forever',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(77046,0,0,0,0,256,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,-1,0,0,0,'Timing Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77047,0,0,0,0,256,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Timing Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77048,0,0,0,0,256,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,-1,0,0,0,'Timing Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77051,0,0,0,0,256,0,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,12,0,0,0,-1,0,0,0,'Remove Box Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77062,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Forcecast Box Vehicle Trigger Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77068,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Forcecast Summon Box',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77208,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Get Koalbeard!: On Interact',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77210,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Get Zherin!: On Interact',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77221,0,0,0,0,150995136,0,268435456,196608,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMastery - Warlock Demonology Masteries 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77232,0,0,0,0,384,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Splithoof Heights: Character\'s Galak Force Reaction',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77240,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'The Ancient Brazier: Fire Bunny Kill Credit and Force Cast Summon Aquarian',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77242,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Void Sentinel',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77271,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Void Seeker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77272,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Void Wurm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77274,0,0,0,0,256,0,0,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Secondary Add Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77315,0,0,0,0,536871168,0,0,268435456,128,393224,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Quiet Suicide',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Ancient Brazier: Summon Aquarian Send Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77320,0,0,0,0,696254848,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77323,0,0,0,0,256,1024,4,268435456,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Clean Up',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Go Blow that Horn: Whrrrl\'s Lightning Master Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77331,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Cosmetic - SuccubusEntice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77356,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,-1,0,0,0,'Create Amulet of Sevine',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77381,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Despawn Defiled Felhounds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77407,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cancel Egg Visibility',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77410,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Update Zone Auras',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77411,0,0,0,0,256,0,0,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Force Zone Aura Update',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77462,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Goldrinn Tracking Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77501,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Close Escort: Catapult to Driver - On Leave Combat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77504,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Close Escort: Character to Catapult & Driver - Ambush A',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77539,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDFocused Strikes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77540,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDFocused Strikes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77547,0,0,0,0,536871168,268435592,4,196864,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,-1,0,0,0,'Shadowstep Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77560,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDAncestral Swiftness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77561,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDAncestral Swiftness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77562,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDAncestral Swiftness',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77580,0,0,0,0,696254848,268436512,273170437,269681152,8388800,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Save the Sentinel: See Quest Invisibility 01',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77582,0,0,0,0,696254848,268436512,273170437,269681152,8388800,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Brave and the Bold: See Quest Invisibility 02',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77596,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,6,0,0,0,-1,0,0,0,'Summon Add Stalker',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77608,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,65536,101,1,0,0,0,85,85,31,5,0,0,0,-1,0,0,0,'zzOLDDark Simulacrum',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77620,0,0,0,0,696254848,1056,273170437,269681408,8401024,2490376,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,-1,0,0,0,'Lost Warden Rescued',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77622,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Infrared = Infradead: Guardian\'s Controller Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,-1,0,0,0,'Tap to Current Target',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77649,0,0,0,0,696254720,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Thandol Span - Mass Despawn Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77658,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSearing Flames',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77659,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSearing Flames',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77694,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDTotemic Vigor',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77702,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDImproved Lava Lash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77748,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOldTotemic Wrath',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77752,0,0,0,0,256,1024,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,-1,0,0,0,'Cue Turtle Spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77757,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,262144,30,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDLava Surge',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77765,0,0,0,0,65536,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4718592,0,0,0,0,101,0,0,0,0,85,85,25,5,0,0,3,-1,0,0,0,'zzOLDWild Mushroom',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(77766,0,0,0,0,1073807360,0,0,0,536872960,32,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4718592,0,0,0,0,0,0,0,0,0,85,85,0,5,0,0,0,-1,0,0,0,'zzOLDWild Mushroom: Detonate',0,0,0,0,0,0,0,0,0,1,1,0,8,0),
+(77781,0,0,0,0,256,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Nemesis Eruption Timing Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77793,0,0,0,0,65568,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDCharred Dragonscale Shoulders',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77797,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,65536,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDFocused Insight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77798,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,65536,101,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDFocused Insight',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77922,0,0,0,0,0,136,1073741824,1073741824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Blizzard',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(77924,0,0,0,0,65536,268435596,4194304,0,0,8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,4,0,0,0,-1,0,0,0,'Blizzard',0,0,0,0,0,0,0,0,0,0,0,0,16,0),
+(77926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P7]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77952,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: Quest Invisibility - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77953,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: Quest Invisibility - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77954,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: See Quest Invisibility - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77955,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: See Quest Invisibility - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77956,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: See Quest Invisibility - Earthen Ring',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77957,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Promontory Point: Quest Invisibility - Earthen Ring',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P8]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77972,0,0,0,0,384,268435456,0,0,8193,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,-1,0,0,0,'Countdown',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77983,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77992,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Put It On: Script Effect Player Cast Mirror Image',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77994,0,0,0,0,536871168,268435456,4,268697600,129,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Pillar of Flame',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(77996,0,0,0,0,698352000,268436648,273170437,269681216,8388800,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Put It On: Merciless One Controlled You\'s Mirror Image Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78013,0,0,0,0,687866240,1056,273170437,268632576,8388736,393224,12800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: Despawn Summons',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Put It On: NPC Random Action Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: NPC Random Action Dummy',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78029,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Consumption',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78046,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Put It On: Force Cast from Gossip',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Put It On: Merciless One Controlled You Eye Blast Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78062,0,0,0,0,536871296,268436616,4,1442048,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,-1,0,0,0,'Valid Host',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78071,0,0,0,0,448,0,0,67633152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16384,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSerendipity',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78072,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,17408,100,1,0,0,0,0,0,18,1,0,0,3,-1,0,0,0,'zzOLDSerendipity',0,0,0,0,0,0,0,0,0,1,0,0,2,0),
+(78073,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,17408,100,1,0,0,0,0,0,18,1,0,0,3,-1,0,0,0,'zzOLDSerendipity',0,0,0,0,0,0,0,0,0,1,0,0,2,0),
+(78074,0,0,0,0,448,0,0,67633152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16384,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSerendipity',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78093,0,0,0,0,536871168,268435456,0,0,2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Stun Self',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78132,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: Dummy from Mirror Image to Vehicle',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78138,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: Dummy from Leader to Mirror Image',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78139,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Put It On: Dummy from Mirror Image to Leader',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78229,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,139944,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDEmpowered Shadow Orbs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78316,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Put It On: Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78325,0,0,0,0,687866240,1056,273170436,268632576,8388736,393608,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Free Wil\'hai: Tentacle Horror Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78328,0,0,0,0,687866240,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Free Wil\'hai: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78364,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Into the Totem: Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78373,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Into the Totem: On Death Totem Aura Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78421,0,0,0,0,65568,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDDragonscale Leg Reinforcements',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78422,0,0,0,0,65568,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDCharscale Leg Reinforcements',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78492,0,0,0,0,384,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,137,0,0,0,-1,0,0,0,'A Lure: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78493,0,0,0,0,384,268435456,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'A Lure: Underlight Nibbler Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78524,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Devious Great-Eel: Summon Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78527,0,0,0,0,1073807744,268436480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,3,0,0,0,-1,0,0,0,'Fear Self',0,0,0,0,0,0,0,0,0,0,0,0,32,0),
+(78533,0,0,0,0,696254848,2080,268976133,269681152,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'... It Will Come: Energy Fountain Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78543,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Max Healer',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78544,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Max Damage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78546,0,0,0,0,2843738112,1056,268976133,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Max KB',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78549,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Terrapin Oil',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78550,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Remora Oil',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78551,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Create Hammerhead Oil',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78553,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'... It Will Come: AICast force Player to Send Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78560,0,0,0,0,384,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'... It Will Come: Send Spawn Event',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78575,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Terrapin Oil Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78576,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Remora Oil Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78577,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Hammerhead Oil Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78579,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Billowing Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78580,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Atomic Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78581,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Anemic Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78582,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Perduring Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78583,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Smoky Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78584,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Quick-Burning Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78585,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Perfect Fuel: Perfect Fuel Sample Cleanup',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78586,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Cleanup Master Spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78588,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Terrapin Oil Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78589,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Remora Oil Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78590,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Hammerhead Oil Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78591,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Billowing Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78592,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Atomic Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78593,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Anemic Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78594,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Perduring Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78595,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Smoky Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78596,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Quick-Burning Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78597,0,0,0,0,384,0,128,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Create Perfect Fuel Sample',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78600,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Minor Cleanup Spell',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78601,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,5632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'... It Will Come: Ground Rumble Earthquake Controller',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78602,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'The Perfect Fuel: Mix Logic Forcecast',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78611,0,0,0,0,256,268435456,0,0,1,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Periodic Check Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78624,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Launch Claim Our Stake (Alliance)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78629,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,13,0,0,0,-1,0,0,0,'Claim Our Stake: Quest Accept',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78636,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Claim Our Stake: Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78637,0,0,0,0,8388864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Launch Claim Our Stake (Horde)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78669,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,13,0,0,0,-1,0,0,0,'Summon Hellscream Seadog',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78687,0,0,0,0,536870912,1024,16388,268697664,2176,384,16777216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,-1,0,0,0,'[DND] Update',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78693,0,0,0,0,696254848,1056,273170437,269681408,8388736,393224,4608,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'The Undershell: Earthquake Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78719,0,0,0,0,159383552,0,4,196608,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Inner Rage',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78727,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Prisoners: Cage Opened - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78728,0,0,0,0,384,268435456,0,1048576,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78756,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Tight Formation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78757,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Loose Formation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78761,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event - Tight Formation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78763,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event - Loose Formation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78765,0,0,0,0,8388864,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Despawn',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78769,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Ascend No More!: Ancient Conduit on Open',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78781,0,0,0,0,536871040,268436480,4,64,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'[DND] Summon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78800,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Prisoners: Character to Prisoner - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78812,0,0,0,0,384,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Prisoners: Quest Invisibility 01 - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78813,0,0,0,0,384,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Prisoners: Quest Invisibility 02 - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78814,0,0,0,0,3112173952,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Prisoners: See Quest Invis 01 - Alliance',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78815,0,0,0,0,3112173952,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Prisoners: See Quest Invis 02 - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78816,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Remove Their Arms: Crate to Bunny',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78821,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Prisoners: Character to Prisoner - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78822,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Prisoners: Cage Opened - Horde',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,0,0,0,-1,0,0,0,'Summon Naga',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78845,0,0,0,0,159383552,32,540681,1048576,2752672,393225,135680,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Post-Sub Teleport',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78876,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 00 - Leave Azshara',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78877,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 01 - Arrival in EK',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78878,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 02 - Bridge Approach',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78879,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 03 - Bridge Crash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78880,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 04 - In the Valley',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78881,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 05 - Garrosh Speaks',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78882,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 06 - Enter Twilight Highlands',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78883,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 07 - Alliance Fleet 1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78884,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 08 - Alliance Fleet 2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78885,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 09 - Twilight Attack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78886,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 10 - Zep Goes Down',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78887,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 11 - Garrosh Attacked',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78888,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 12 - Dragon in Rigging',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78889,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Event 13 - Dragon Falls Away - Zep Crash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78890,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Bad Things',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78910,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Speech',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78917,0,0,0,0,2843738112,1056,268976133,1245440,8388736,2490376,16789508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Switch 10->12',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78918,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Garrosh to Send Off Planes',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78927,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Dragon Attack',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P10]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78940,0,0,0,0,536871296,268436480,4,1179904,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,-1,0,0,0,'Valid Host',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78953,0,0,0,0,2843738112,1056,268976133,1245440,8388736,2490376,16789508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Phase Switch 11->13',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(78976,0,0,0,0,696254848,1056,273170437,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Rolling with my Homies: Quest Abandon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79001,0,0,0,0,687866240,1056,273170436,268632576,8388800,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Twilight Extermination: Possessed Torrent - Flight Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79005,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDImproved Sinister Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79006,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDImproved Sinister Strike',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79016,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Twilight Extermination: Determine Possessed Torrent\'s Spells',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79017,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Twilight Extermination: Spells if on Twilight Extermination',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79018,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Twilight Extermination: Spells if on All that Rises',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,-1,0,0,0,'Erunak\'s Periodic - Abyssal Breach 00',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat [P20]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79028,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demoniac Vessel: Cleanup Leg Powder',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79029,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demoniac Vessel: Cleanup Tainted Pouch',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79030,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demoniac Vessel: Cleanup Brain Juice',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79031,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Demoniac Vessel: Cleanup Commixture',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79032,0,0,0,0,384,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,13,0,0,0,-1,0,0,0,'Demoniac Vessel: Cleanup (Master)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79033,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'The Charred Granite of the Dark Portal: Cleanup Granite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79034,0,0,0,0,384,268435456,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,13,0,0,0,-1,0,0,0,'The Charred Granite of the Dark Portal: Cleanup (Master)',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79037,0,0,0,0,545259904,1024,0,268435456,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Twilight Extermination: Possessed Torrent - Exit Master',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79052,0,0,0,0,687866240,1056,273170436,268632576,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'All that Rises: Quest Complete',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79055,0,0,0,0,384,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Compound Threat on Player [P20]',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79065,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Communing with the Ancient: See Quest Invis 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79066,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Communing with the Ancient: Quest Invis 03',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79078,0,0,0,0,696254848,1056,273170437,269681408,8388736,393224,4608,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'L\'ghorek Dead - Earthquake Check',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79080,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDReinforced Leather',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79081,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDReinforced Leather',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79082,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDReinforced Leather',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79089,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSturdy Recuperation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79090,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSturdy Recuperation',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79097,0,0,0,0,464,0,0,67108864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4368,100,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDRestless Blades',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Dummy Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79099,0,0,0,0,256,128,4,262208,2176,917512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Threat',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79100,0,0,0,0,696254848,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Bear Cub Kill Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79108,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Captain/Legionnaire NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79110,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Earthen Ring NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79112,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Captain/Legionnaire NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79114,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Earthen Ring NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79119,0,0,0,0,384,268435456,0,0,64,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Non-Earthen Ring NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79120,0,0,0,0,698352000,3240,335560705,1245760,8390848,8781832,4100,58720256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Non-Earthen Ring NPCs',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79131,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDMurderous Intent',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79135,0,0,0,0,464,0,0,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,262144,45,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDVenomous Wounds',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79148,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'zzOLDSanguinary Vein',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79154,0,0,0,0,384,0,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Serrated Blades',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79165,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Faceless Periodic - Abyssal Breach 00',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79204,0,0,0,0,67109120,0,0,0,1,524288,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Cancel Smoked Out Aura',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79243,0,0,0,0,384,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,1,0,0,0,-1,0,0,0,'Neptulon\'s Naga Freeze',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79317,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,-1,0,0,0,'Cue Reset',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79326,0,0,0,0,384,268435456,4,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'Shrink',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79334,0,0,0,0,671089024,268435456,5,1048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,13,0,0,0,-1,0,0,0,'[DND] Totem Transform',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79394,0,0,0,0,327952,1024,4,268435456,0,524288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,2,0,0,0,-1,0,0,0,'Grouper Bite',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79439,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,-1,0,0,0,'Summon Void Wurm',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79524,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,-1,0,0,0,'Faceless Periodic vs Neptulon',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,-1,0,0,0,'Erunak\'s Periodic (Long) - Abyssal Breach 00',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79562,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Blood Craze',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79578,0,0,0,0,256,0,4,262144,128,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,6,0,0,0,-1,0,0,0,'Overhead Smash',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79611,0,0,0,0,537985280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,-1,0,0,0,'Flight Path',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79643,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Launch Quest: A Lashtail Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79654,0,0,0,0,2843738112,1124,268976132,1245184,8388736,393224,12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Explosive Barrage',0,0,0,0,0,0,0,0,0,0,0,0,64,0),
+(79689,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'A Lashtail Hatchling: Forcecast Summon Hatchling',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79691,0,0,0,0,134480272,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Tunneler Burst',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79722,0,0,0,0,696254720,1056,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,'Thandol Span - Victory Trigger',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79805,0,0,0,0,256,0,4,268435456,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,-1,0,0,0,'Attacking Foreman',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79842,0,0,2,0,65536,0,0,128,1048576,8192,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,106,4,0,0,0,-1,0,0,0,'zzOLDBane of Redirection',0,0,0,0,0,0,0,0,0,1,1,0,32,0),
+(79906,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'See Raptor: Quest Credit',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79959,0,0,0,0,536871168,525448,4,459008,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,-1,0,0,0,'Drakonid Rush',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79979,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Be Raptor: KC1',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79980,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Be Raptor: KC2',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79981,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,-1,0,0,0,'Be Raptor: KC3',0,0,0,0,0,0,0,0,0,0,0,0,1,0),
+(79982,0,0,0,0,696254848,268436512,273170437,269681152,8388736,393224,4608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,13,0,0,0,-1,0,0,0,'Be Raptor: KC4',0,0,0,0,0,0,0,0,0,0,0,0,1,0);
+/*!40000 ALTER TABLE `serverside_spell` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `serverside_spell_effect`
+--
+ALTER TABLE `spelleffect_dbc` CHARACTER SET = utf8mb4, COLLATE = utf8mb4_unicode_ci;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectSpellId` `SpellID` int(10) unsigned NOT NULL DEFAULT 0 FIRST;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectIndex` int(11) NOT NULL DEFAULT 0 AFTER `SpellID`;
+ALTER TABLE `spelleffect_dbc` ADD `DifficultyID` int(11) NOT NULL DEFAULT 0 AFTER `EffectIndex`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectApplyAuraName` `EffectAura` smallint(11) NOT NULL DEFAULT 0 AFTER `Effect`;
+ALTER TABLE `spelleffect_dbc` ADD `EffectAttributes` int(11) NOT NULL DEFAULT 0 AFTER `EffectAmplitude`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectAmplitude` `EffectAuraPeriod` int(11) NOT NULL DEFAULT 0 AFTER `EffectAttributes`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectBonusMultiplier` `EffectBonusCoefficient` float NOT NULL DEFAULT 0 AFTER `EffectAuraPeriod`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectDamageMultiplier` `EffectChainAmplitude` float NOT NULL DEFAULT 0 AFTER `EffectBonusCoefficient`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectChainTarget` `EffectChainTargets` int(11) NOT NULL DEFAULT 0 AFTER `EffectChainAmplitude`;
+ALTER TABLE `spelleffect_dbc` ADD `EffectPointsPerResource` float NOT NULL DEFAULT 0 AFTER `EffectMechanic`;
+ALTER TABLE `spelleffect_dbc` ADD `EffectPosFacing` float NOT NULL DEFAULT 0 AFTER `EffectPointsPerResource`;
+ALTER TABLE `spelleffect_dbc` ADD `BonusCoefficientFromAP` float NOT NULL DEFAULT 0 AFTER `EffectTriggerSpell`;
+ALTER TABLE `spelleffect_dbc` ADD `PvpMultiplier` float NOT NULL DEFAULT 0 AFTER `BonusCoefficientFromAP`;
+ALTER TABLE `spelleffect_dbc` ADD `Coefficient` float NOT NULL DEFAULT 0 AFTER `PvpMultiplier`;
+ALTER TABLE `spelleffect_dbc` ADD `Variance` float NOT NULL DEFAULT 0 AFTER `Coefficient`;
+ALTER TABLE `spelleffect_dbc` ADD `ResourceCoefficient` float NOT NULL DEFAULT 0 AFTER `Variance`;
+ALTER TABLE `spelleffect_dbc` ADD `GroupSizeBasePointsCoefficient` float NOT NULL DEFAULT 0 AFTER `ResourceCoefficient`;
+ALTER TABLE `spelleffect_dbc` MODIFY `Effect` int(11) NOT NULL DEFAULT 0 AFTER `DifficultyID`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectValueMultiplier` `EffectAmplitude` float NOT NULL DEFAULT 0 AFTER `EffectAura`;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectItemType` int(11) NOT NULL DEFAULT 0 AFTER `EffectChainTargets`;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectMechanic` int(11) NOT NULL DEFAULT 0 AFTER `EffectItemType`;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectRealPointsPerLevel` float NOT NULL DEFAULT 0 AFTER `EffectPosFacing`;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectTriggerSpell` int(11) NOT NULL DEFAULT 0 AFTER `EffectRealPointsPerLevel`;
+ALTER TABLE `spelleffect_dbc` MODIFY `EffectBasePoints` float NOT NULL DEFAULT 0 AFTER `GroupSizeBasePointsCoefficient`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectMiscValue` `EffectMiscValue1` int(11) NOT NULL DEFAULT 0 AFTER `EffectBasePoints`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectMiscValueB` `EffectMiscValue2` int(11) NOT NULL DEFAULT 0 AFTER `EffectMiscValue1`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectRadiusIndex` `EffectRadiusIndex1` int(10) unsigned NOT NULL DEFAULT 0 AFTER `EffectMiscValue2`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectRadiusIndexMax` `EffectRadiusIndex2` int(10) unsigned NOT NULL DEFAULT 0 AFTER `EffectRadiusIndex1`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectSpellClassMaskA` `EffectSpellClassMask1` int(11) NOT NULL DEFAULT 0 AFTER `EffectRadiusIndex2`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectSpellClassMaskB` `EffectSpellClassMask2` int(11) NOT NULL DEFAULT 0 AFTER `EffectSpellClassMask1`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectSpellClassMaskC` `EffectSpellClassMask3` int(11) NOT NULL DEFAULT 0 AFTER `EffectSpellClassMask2`;
+ALTER TABLE `spelleffect_dbc` ADD `EffectSpellClassMask4` int(11) NOT NULL DEFAULT 0 AFTER `EffectSpellClassMask3`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectImplicitTargetA` `ImplicitTarget1` smallint(11) NOT NULL DEFAULT 0 AFTER `EffectSpellClassMask4`;
+ALTER TABLE `spelleffect_dbc` CHANGE `EffectImplicitTargetB` `ImplicitTarget2` smallint(11) NOT NULL DEFAULT 0 AFTER `ImplicitTarget1`;
+ALTER TABLE `spelleffect_dbc` DROP PRIMARY KEY;
+ALTER TABLE `spelleffect_dbc` ADD PRIMARY KEY (`SpellID`, `EffectIndex`, `DifficultyID`);
+ALTER TABLE `spelleffect_dbc` DROP `Id`;
+ALTER TABLE `spelleffect_dbc` DROP `EffectDieSides`;
+
+RENAME TABLE `spelleffect_dbc` TO `serverside_spell_effect`;
diff --git a/src/server/game/Miscellaneous/SharedDefines.h b/src/server/game/Miscellaneous/SharedDefines.h
index e91dbcc6e67..12746ad6b81 100644
--- a/src/server/game/Miscellaneous/SharedDefines.h
+++ b/src/server/game/Miscellaneous/SharedDefines.h
@@ -1262,7 +1262,7 @@ enum SpellEffectName
SPELL_EFFECT_LEARN_GARRISON_BUILDING = 210,
SPELL_EFFECT_LEARN_GARRISON_SPECIALIZATION = 211,
SPELL_EFFECT_REMOVE_AURA_BY_SPELL_LABEL = 212,
- SPELL_EFFECT_JUMP_DEST_2 = 213,
+ SPELL_EFFECT_JUMP_DEST_2 = 213,
SPELL_EFFECT_CREATE_GARRISON = 214,
SPELL_EFFECT_UPGRADE_CHARACTER_SPELLS = 215, // Unlocks boosted players' spells (ChrUpgrade*.db2)
SPELL_EFFECT_CREATE_SHIPMENT = 216,
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp
index 2e6c6acb76f..53a732c1390 100644
--- a/src/server/game/Spells/SpellInfo.cpp
+++ b/src/server/game/Spells/SpellInfo.cpp
@@ -371,41 +371,40 @@ SpellImplicitTargetInfo::StaticData SpellImplicitTargetInfo::_data[TOTAL_SPELL_
{TARGET_OBJECT_TYPE_UNIT, TARGET_REFERENCE_TYPE_CASTER, TARGET_SELECT_CATEGORY_AREA, TARGET_CHECK_ENEMY, TARGET_DIR_NONE}, // 151
};
-SpellEffectInfo::SpellEffectInfo(SpellInfo const* spellInfo, SpellEffectEntry const* _effect)
+SpellEffectInfo::SpellEffectInfo(SpellInfo const* spellInfo, SpellEffectEntry const& _effect)
: EffectAttributes(SpellEffectAttributes::None)
{
ASSERT(spellInfo);
- ASSERT(_effect);
_spellInfo = spellInfo;
- EffectIndex = _effect->EffectIndex;
- Effect = _effect->Effect;
- ApplyAuraName = _effect->EffectAura;
- ApplyAuraPeriod = _effect->EffectAuraPeriod;
- RealPointsPerLevel = _effect->EffectRealPointsPerLevel;
- BasePoints = _effect->EffectBasePoints;
- PointsPerResource = _effect->EffectPointsPerResource;
- Amplitude = _effect->EffectAmplitude;
- ChainAmplitude = _effect->EffectChainAmplitude;
- BonusCoefficient = _effect->EffectBonusCoefficient;
- MiscValue = _effect->EffectMiscValue[0];
- MiscValueB = _effect->EffectMiscValue[1];
- Mechanic = Mechanics(_effect->EffectMechanic);
- PositionFacing = _effect->EffectPosFacing;
- TargetA = SpellImplicitTargetInfo(_effect->ImplicitTarget[0]);
- TargetB = SpellImplicitTargetInfo(_effect->ImplicitTarget[1]);
- RadiusEntry = sSpellRadiusStore.LookupEntry(_effect->EffectRadiusIndex[0]);
- MaxRadiusEntry = sSpellRadiusStore.LookupEntry(_effect->EffectRadiusIndex[1]);
- ChainTargets = _effect->EffectChainTargets;
- ItemType = _effect->EffectItemType;
- TriggerSpell = _effect->EffectTriggerSpell;
- SpellClassMask = _effect->EffectSpellClassMask;
- BonusCoefficientFromAP = _effect->BonusCoefficientFromAP;
- Scaling.Coefficient = _effect->Coefficient;
- Scaling.Variance = _effect->Variance;
- Scaling.ResourceCoefficient = _effect->ResourceCoefficient;
+ EffectIndex = _effect.EffectIndex;
+ Effect = _effect.Effect;
+ ApplyAuraName = _effect.EffectAura;
+ ApplyAuraPeriod = _effect.EffectAuraPeriod;
+ BasePoints = _effect.EffectBasePoints;
+ RealPointsPerLevel = _effect.EffectRealPointsPerLevel;
+ PointsPerResource = _effect.EffectPointsPerResource;
+ Amplitude = _effect.EffectAmplitude;
+ ChainAmplitude = _effect.EffectChainAmplitude;
+ BonusCoefficient = _effect.EffectBonusCoefficient;
+ MiscValue = _effect.EffectMiscValue[0];
+ MiscValueB = _effect.EffectMiscValue[1];
+ Mechanic = Mechanics(_effect.EffectMechanic);
+ PositionFacing = _effect.EffectPosFacing;
+ TargetA = SpellImplicitTargetInfo(_effect.ImplicitTarget[0]);
+ TargetB = SpellImplicitTargetInfo(_effect.ImplicitTarget[1]);
+ RadiusEntry = sSpellRadiusStore.LookupEntry(_effect.EffectRadiusIndex[0]);
+ MaxRadiusEntry = sSpellRadiusStore.LookupEntry(_effect.EffectRadiusIndex[1]);
+ ChainTargets = _effect.EffectChainTargets;
+ ItemType = _effect.EffectItemType;
+ TriggerSpell = _effect.EffectTriggerSpell;
+ SpellClassMask = _effect.EffectSpellClassMask;
+ BonusCoefficientFromAP = _effect.BonusCoefficientFromAP;
+ Scaling.Coefficient = _effect.Coefficient;
+ Scaling.Variance = _effect.Variance;
+ Scaling.ResourceCoefficient = _effect.ResourceCoefficient;
ImplicitTargetConditions = nullptr;
- EffectAttributes = _effect->GetEffectAttributes();
+ EffectAttributes = _effect.GetEffectAttributes();
}
bool SpellEffectInfo::IsEffect() const
@@ -1081,10 +1080,8 @@ SpellEffectInfo::StaticData SpellEffectInfo::_data[TOTAL_SPELL_EFFECTS] =
};
SpellInfo::SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, SpellInfoLoadHelper const& data, SpellVisualVector&& visuals)
+ : Id(spellName->ID), Difficulty(difficulty)
{
- Id = spellName->ID;
- Difficulty = difficulty;
-
_effects.reserve(32);
for (SpellEffectEntry const* spellEffect : data.Effects)
{
@@ -1094,106 +1091,123 @@ SpellInfo::SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, S
if (uint32(spellEffect->EffectIndex) >= _effects.size())
_effects.resize(spellEffect->EffectIndex + 1);
- _effects[spellEffect->EffectIndex] = new SpellEffectInfo(this, spellEffect);
+ _effects[spellEffect->EffectIndex] = new SpellEffectInfo(this, *spellEffect);
}
_effects.shrink_to_fit();
SpellName = &spellName->Name;
// SpellMiscEntry
- SpellMiscEntry const* _misc = data.Misc;
- Attributes = _misc ? _misc->Attributes[0] : 0;
- AttributesEx = _misc ? _misc->Attributes[1] : 0;
- AttributesEx2 = _misc ? _misc->Attributes[2] : 0;
- AttributesEx3 = _misc ? _misc->Attributes[3] : 0;
- AttributesEx4 = _misc ? _misc->Attributes[4] : 0;
- AttributesEx5 = _misc ? _misc->Attributes[5] : 0;
- AttributesEx6 = _misc ? _misc->Attributes[6] : 0;
- AttributesEx7 = _misc ? _misc->Attributes[7] : 0;
- AttributesEx8 = _misc ? _misc->Attributes[8] : 0;
- AttributesEx9 = _misc ? _misc->Attributes[9] : 0;
- AttributesEx10 = _misc ? _misc->Attributes[10] : 0;
- AttributesEx11 = _misc ? _misc->Attributes[11] : 0;
- AttributesEx12 = _misc ? _misc->Attributes[12] : 0;
- AttributesEx13 = _misc ? _misc->Attributes[13] : 0;
- AttributesEx14 = _misc ? _misc->Attributes[14] : 0;
- CastTimeEntry = _misc ? (_misc->CastingTimeIndex ? sSpellCastTimesStore.LookupEntry(_misc->CastingTimeIndex) : nullptr) : nullptr;
- DurationEntry = _misc ? (_misc->DurationIndex ? sSpellDurationStore.LookupEntry(_misc->DurationIndex) : nullptr) : nullptr;
- RangeIndex = _misc ? _misc->RangeIndex : 0;
- RangeEntry = _misc ? (_misc->RangeIndex ? sSpellRangeStore.LookupEntry(_misc->RangeIndex) : nullptr) : nullptr;
- Speed = _misc ? _misc->Speed : 0;
- LaunchDelay = _misc ? _misc->LaunchDelay : 0;
- SchoolMask = _misc ? _misc->SchoolMask : 0;
- AttributesCu = 0;
- IconFileDataId = _misc ? _misc->SpellIconFileDataID : 0;
- ActiveIconFileDataId = _misc ? _misc->ActiveIconFileDataID : 0;
- ContentTuningId = _misc ? _misc->ContentTuningID : 0;
- ShowFutureSpellPlayerConditionID = _misc ? _misc->ShowFutureSpellPlayerConditionID : 0;
+ if (SpellMiscEntry const* _misc = data.Misc)
+ {
+ Attributes = _misc->Attributes[0];
+ AttributesEx = _misc->Attributes[1];
+ AttributesEx2 = _misc->Attributes[2];
+ AttributesEx3 = _misc->Attributes[3];
+ AttributesEx4 = _misc->Attributes[4];
+ AttributesEx5 = _misc->Attributes[5];
+ AttributesEx6 = _misc->Attributes[6];
+ AttributesEx7 = _misc->Attributes[7];
+ AttributesEx8 = _misc->Attributes[8];
+ AttributesEx9 = _misc->Attributes[9];
+ AttributesEx10 = _misc->Attributes[10];
+ AttributesEx11 = _misc->Attributes[11];
+ AttributesEx12 = _misc->Attributes[12];
+ AttributesEx13 = _misc->Attributes[13];
+ AttributesEx14 = _misc->Attributes[14];
+ CastTimeEntry = sSpellCastTimesStore.LookupEntry(_misc->CastingTimeIndex);
+ DurationEntry = sSpellDurationStore.LookupEntry(_misc->DurationIndex);
+ RangeEntry = sSpellRangeStore.LookupEntry(_misc->RangeIndex);
+ Speed = _misc->Speed;
+ LaunchDelay = _misc->LaunchDelay;
+ SchoolMask = _misc->SchoolMask;
+ IconFileDataId = _misc->SpellIconFileDataID;
+ ActiveIconFileDataId = _misc->ActiveIconFileDataID;
+ ContentTuningId = _misc->ContentTuningID;
+ ShowFutureSpellPlayerConditionID = _misc->ShowFutureSpellPlayerConditionID;
+ }
_visuals = std::move(visuals);
// SpellScalingEntry
- SpellScalingEntry const* _scaling = data.Scaling;
- Scaling.Class = _scaling ? _scaling->Class : 0;
- Scaling.MinScalingLevel = _scaling ? _scaling->MinScalingLevel : 0;
- Scaling.MaxScalingLevel = _scaling ? _scaling->MaxScalingLevel : 0;
- Scaling.ScalesFromItemLevel = _scaling ? _scaling->ScalesFromItemLevel : 0;
+ if (SpellScalingEntry const* _scaling = data.Scaling)
+ {
+ Scaling.Class = _scaling->Class;
+ Scaling.MinScalingLevel = _scaling->MinScalingLevel;
+ Scaling.MaxScalingLevel = _scaling->MaxScalingLevel;
+ Scaling.ScalesFromItemLevel = _scaling->ScalesFromItemLevel;
+ }
// SpellAuraOptionsEntry
- SpellAuraOptionsEntry const* _options = data.AuraOptions;
- SpellProcsPerMinuteEntry const* _ppm = _options ? sSpellProcsPerMinuteStore.LookupEntry(_options->SpellProcsPerMinuteID) : nullptr;
- ProcFlags = _options ? _options->ProcTypeMask[0] : 0;
- ProcChance = _options ? _options->ProcChance : 0;
- ProcCharges = _options ? _options->ProcCharges : 0;
- ProcCooldown = _options ? _options->ProcCategoryRecovery : 0;
- ProcBasePPM = _ppm ? _ppm->BaseProcRate : 0.0f;
- if (_options)
- ProcPPMMods = sDB2Manager.GetSpellProcsPerMinuteMods(_options->SpellProcsPerMinuteID);
- StackAmount = _options ? _options->CumulativeAura : 0;
+ if (SpellAuraOptionsEntry const* _options = data.AuraOptions)
+ {
+ ProcFlags = _options->ProcTypeMask[0];
+ ProcChance = _options->ProcChance;
+ ProcCharges = _options->ProcCharges;
+ ProcCooldown = _options->ProcCategoryRecovery;
+ StackAmount = _options->CumulativeAura;
+ if (SpellProcsPerMinuteEntry const* _ppm = sSpellProcsPerMinuteStore.LookupEntry(_options->SpellProcsPerMinuteID))
+ {
+ ProcBasePPM = _ppm->BaseProcRate;
+ ProcPPMMods = sDB2Manager.GetSpellProcsPerMinuteMods(_ppm->ID);
+ }
+ }
// SpellAuraRestrictionsEntry
- SpellAuraRestrictionsEntry const* _aura = data.AuraRestrictions;
- CasterAuraState = _aura ? _aura->CasterAuraState : 0;
- TargetAuraState = _aura ? _aura->TargetAuraState : 0;
- ExcludeCasterAuraState = _aura ? _aura->ExcludeCasterAuraState : 0;
- ExcludeTargetAuraState = _aura ? _aura->ExcludeTargetAuraState : 0;
- CasterAuraSpell = _aura ? _aura->CasterAuraSpell : 0;
- TargetAuraSpell = _aura ? _aura->TargetAuraSpell : 0;
- ExcludeCasterAuraSpell = _aura ? _aura->ExcludeCasterAuraSpell : 0;
- ExcludeTargetAuraSpell = _aura ? _aura->ExcludeTargetAuraSpell : 0;
+ if (SpellAuraRestrictionsEntry const* _aura = data.AuraRestrictions)
+ {
+ CasterAuraState = _aura->CasterAuraState;
+ TargetAuraState = _aura->TargetAuraState;
+ ExcludeCasterAuraState = _aura->ExcludeCasterAuraState;
+ ExcludeTargetAuraState = _aura->ExcludeTargetAuraState;
+ CasterAuraSpell = _aura->CasterAuraSpell;
+ TargetAuraSpell = _aura->TargetAuraSpell;
+ ExcludeCasterAuraSpell = _aura->ExcludeCasterAuraSpell;
+ ExcludeTargetAuraSpell = _aura->ExcludeTargetAuraSpell;
+ }
// SpellCastingRequirementsEntry
- SpellCastingRequirementsEntry const* _castreq = data.CastingRequirements;
- RequiresSpellFocus = _castreq ? _castreq->RequiresSpellFocus : 0;
- FacingCasterFlags = _castreq ? _castreq->FacingCasterFlags : 0;
- RequiredAreasID = _castreq ? _castreq->RequiredAreasID : -1;
+ if (SpellCastingRequirementsEntry const* _castreq = data.CastingRequirements)
+ {
+ RequiresSpellFocus = _castreq->RequiresSpellFocus;
+ FacingCasterFlags = _castreq->FacingCasterFlags;
+ RequiredAreasID = _castreq->RequiredAreasID;
+ }
// SpellCategoriesEntry
- SpellCategoriesEntry const* _categorie = data.Categories;
- CategoryId = _categorie ? _categorie->Category : 0;
- Dispel = _categorie ? _categorie->DispelType : 0;
- Mechanic = _categorie ? _categorie->Mechanic : 0;
- StartRecoveryCategory = _categorie ? _categorie->StartRecoveryCategory : 0;
- DmgClass = _categorie ? _categorie->DefenseType : 0;
- PreventionType = _categorie ? _categorie->PreventionType : 0;
- ChargeCategoryId = _categorie ? _categorie->ChargeCategory : 0;
+ if (SpellCategoriesEntry const* _categories = data.Categories)
+ {
+ CategoryId = _categories->Category;
+ Dispel = _categories->DispelType;
+ Mechanic = _categories->Mechanic;
+ StartRecoveryCategory = _categories->StartRecoveryCategory;
+ DmgClass = _categories->DefenseType;
+ PreventionType = _categories->PreventionType;
+ ChargeCategoryId = _categories->ChargeCategory;
+ }
// SpellClassOptionsEntry
- SpellClassOptionsEntry const* _class = data.ClassOptions;
- SpellFamilyName = _class ? _class->SpellClassSet : 0;
- SpellFamilyFlags = _class ? _class->SpellClassMask : flag128();
+ if (SpellClassOptionsEntry const* _class = data.ClassOptions)
+ {
+ SpellFamilyName = _class->SpellClassSet;
+ SpellFamilyFlags = _class->SpellClassMask;
+ }
// SpellCooldownsEntry
- SpellCooldownsEntry const* _cooldowns = data.Cooldowns;
- RecoveryTime = _cooldowns ? _cooldowns->RecoveryTime : 0;
- CategoryRecoveryTime = _cooldowns ? _cooldowns->CategoryRecoveryTime : 0;
- StartRecoveryTime = _cooldowns ? _cooldowns->StartRecoveryTime : 0;
+ if (SpellCooldownsEntry const* _cooldowns = data.Cooldowns)
+ {
+ RecoveryTime = _cooldowns->RecoveryTime;
+ CategoryRecoveryTime = _cooldowns->CategoryRecoveryTime;
+ StartRecoveryTime = _cooldowns->StartRecoveryTime;
+ }
// SpellEquippedItemsEntry
- SpellEquippedItemsEntry const* _equipped = data.EquippedItems;
- EquippedItemClass = _equipped ? _equipped->EquippedItemClass : -1;
- EquippedItemSubClassMask = _equipped ?_equipped->EquippedItemSubclass : 0;
- EquippedItemInventoryTypeMask = _equipped ? _equipped->EquippedItemInvTypes : 0;
+ if (SpellEquippedItemsEntry const* _equipped = data.EquippedItems)
+ {
+ EquippedItemClass = _equipped->EquippedItemClass;
+ EquippedItemSubClassMask = _equipped->EquippedItemSubclass;
+ EquippedItemInventoryTypeMask = _equipped->EquippedItemInvTypes;
+ }
// SpellInterruptsEntry
if (SpellInterruptsEntry const* _interrupt = data.Interrupts)
@@ -1202,57 +1216,65 @@ SpellInfo::SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, S
std::copy(std::begin(_interrupt->AuraInterruptFlags), std::end(_interrupt->AuraInterruptFlags), AuraInterruptFlags.begin());
std::copy(std::begin(_interrupt->ChannelInterruptFlags), std::end(_interrupt->ChannelInterruptFlags), ChannelInterruptFlags.begin());
}
- else
- {
- InterruptFlags = 0;
- AuraInterruptFlags.fill(0);
- ChannelInterruptFlags.fill(0);
- }
// SpellLevelsEntry
- SpellLevelsEntry const* _levels = data.Levels;
- MaxLevel = _levels ? _levels->MaxLevel : 0;
- BaseLevel = _levels ? _levels->BaseLevel : 0;
- SpellLevel = _levels ? _levels->SpellLevel : 0;
+ if (SpellLevelsEntry const* _levels = data.Levels)
+ {
+ MaxLevel = _levels->MaxLevel;
+ BaseLevel = _levels->BaseLevel;
+ SpellLevel = _levels->SpellLevel;
+ }
// SpellPowerEntry
PowerCosts = data.Powers;
// SpellReagentsEntry
- SpellReagentsEntry const* _reagents = data.Reagents;
- for (uint8 i = 0; i < MAX_SPELL_REAGENTS; ++i)
- Reagent[i] = _reagents ? _reagents->Reagent[i] : 0;
- for (uint8 i = 0; i < MAX_SPELL_REAGENTS; ++i)
- ReagentCount[i] = _reagents ? _reagents->ReagentCount[i] : 0;
+ if (SpellReagentsEntry const* _reagents = data.Reagents)
+ {
+ std::copy(std::begin(_reagents->Reagent), std::end(_reagents->Reagent), Reagent.begin());
+ std::copy(std::begin(_reagents->ReagentCount), std::end(_reagents->ReagentCount), ReagentCount.begin());
+ }
// SpellShapeshiftEntry
- SpellShapeshiftEntry const* _shapeshift = data.Shapeshift;
- Stances = _shapeshift ? MAKE_PAIR64(_shapeshift->ShapeshiftMask[0], _shapeshift->ShapeshiftMask[1]) : 0;
- StancesNot = _shapeshift ? MAKE_PAIR64(_shapeshift->ShapeshiftExclude[0], _shapeshift->ShapeshiftExclude[1]) : 0;
+ if (SpellShapeshiftEntry const* _shapeshift = data.Shapeshift)
+ {
+ Stances = MAKE_PAIR64(_shapeshift->ShapeshiftMask[0], _shapeshift->ShapeshiftMask[1]);
+ StancesNot = MAKE_PAIR64(_shapeshift->ShapeshiftExclude[0], _shapeshift->ShapeshiftExclude[1]);
+ }
// SpellTargetRestrictionsEntry
- SpellTargetRestrictionsEntry const* _target = data.TargetRestrictions;
- ConeAngle = _target ? _target->ConeDegrees : 0.f;
- Width = _target ? _target->Width : 0.f;
- Targets = _target ? _target->Targets : 0;
- TargetCreatureType = _target ? _target->TargetCreatureType : 0;
- MaxAffectedTargets = _target ? _target->MaxTargets : 0;
- MaxTargetLevel = _target ? _target->MaxTargetLevel : 0;
+ if (SpellTargetRestrictionsEntry const* _target = data.TargetRestrictions)
+ {
+ ConeAngle = _target->ConeDegrees;
+ Width = _target->Width;
+ Targets = _target->Targets;
+ TargetCreatureType = _target->TargetCreatureType;
+ MaxAffectedTargets = _target->MaxTargets;
+ MaxTargetLevel = _target->MaxTargetLevel;
+ }
// SpellTotemsEntry
- SpellTotemsEntry const* _totem = data.Totems;
- for (uint8 i = 0; i < 2; ++i)
- TotemCategory[i] = _totem ? _totem->RequiredTotemCategoryID[i] : 0;
- for (uint8 i = 0; i < 2; ++i)
- Totem[i] = _totem ? _totem->Totem[i] : 0;
+ if (SpellTotemsEntry const* _totem = data.Totems)
+ {
+ std::copy(std::begin(_totem->RequiredTotemCategoryID), std::end(_totem->RequiredTotemCategoryID), TotemCategory.begin());
+ std::copy(std::begin(_totem->Totem), std::end(_totem->Totem), Totem.begin());
+ }
+}
- ChainEntry = nullptr;
- ExplicitTargetMask = 0;
+SpellInfo::SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, std::vector<SpellEffectEntry> const& effects)
+ : Id(spellName->ID), Difficulty(difficulty)
+{
+ SpellName = &spellName->Name;
- _spellSpecific = SPELL_SPECIFIC_NORMAL;
- _auraState = AURA_STATE_NONE;
+ _effects.reserve(32);
+ for (SpellEffectEntry const& spellEffect : effects)
+ {
+ if (uint32(spellEffect.EffectIndex) >= _effects.size())
+ _effects.resize(spellEffect.EffectIndex + 1);
- _allowedMechanicMask = 0;
+ _effects[spellEffect.EffectIndex] = new SpellEffectInfo(this, spellEffect);
+ }
+ _effects.shrink_to_fit();
}
SpellInfo::~SpellInfo()
diff --git a/src/server/game/Spells/SpellInfo.h b/src/server/game/Spells/SpellInfo.h
index 85ff0682e26..5b129755826 100644
--- a/src/server/game/Spells/SpellInfo.h
+++ b/src/server/game/Spells/SpellInfo.h
@@ -334,8 +334,8 @@ public:
uint32 Effect;
uint32 ApplyAuraName;
uint32 ApplyAuraPeriod;
- float RealPointsPerLevel;
int32 BasePoints;
+ float RealPointsPerLevel;
float PointsPerResource;
float Amplitude;
float ChainAmplitude;
@@ -364,11 +364,12 @@ public:
} Scaling;
SpellEffectInfo() : _spellInfo(nullptr), EffectIndex(0), Effect(0), ApplyAuraName(0), ApplyAuraPeriod(0),
- RealPointsPerLevel(0), BasePoints(0), PointsPerResource(0), Amplitude(0), ChainAmplitude(0),
+ BasePoints(0), RealPointsPerLevel(0), PointsPerResource(0), Amplitude(0), ChainAmplitude(0),
BonusCoefficient(0), MiscValue(0), MiscValueB(0), Mechanic(MECHANIC_NONE), PositionFacing(0),
- RadiusEntry(nullptr), ChainTargets(0), ItemType(0), TriggerSpell(0), BonusCoefficientFromAP(0.0f),
- ImplicitTargetConditions(nullptr), EffectAttributes(SpellEffectAttributes::None) { }
- SpellEffectInfo(SpellInfo const* spellInfo, SpellEffectEntry const* effect);
+ RadiusEntry(nullptr), MaxRadiusEntry(nullptr), ChainTargets(0), ItemType(0), TriggerSpell(0),
+ BonusCoefficientFromAP(0.0f), ImplicitTargetConditions(nullptr),
+ EffectAttributes(SpellEffectAttributes::None), Scaling() { }
+ SpellEffectInfo(SpellInfo const* spellInfo, SpellEffectEntry const& effect);
bool IsEffect() const;
bool IsEffect(SpellEffectName effectName) const;
@@ -440,103 +441,103 @@ class TC_GAME_API SpellInfo
friend class SpellMgr;
public:
- uint32 Id;
- ::Difficulty Difficulty;
- uint32 CategoryId;
- uint32 Dispel;
- uint32 Mechanic;
- uint32 Attributes;
- uint32 AttributesEx;
- uint32 AttributesEx2;
- uint32 AttributesEx3;
- uint32 AttributesEx4;
- uint32 AttributesEx5;
- uint32 AttributesEx6;
- uint32 AttributesEx7;
- uint32 AttributesEx8;
- uint32 AttributesEx9;
- uint32 AttributesEx10;
- uint32 AttributesEx11;
- uint32 AttributesEx12;
- uint32 AttributesEx13;
- uint32 AttributesEx14;
- uint32 AttributesCu;
+ uint32 const Id = 0;
+ ::Difficulty const Difficulty = DIFFICULTY_NONE;
+ uint32 CategoryId = 0;
+ uint32 Dispel = 0;
+ uint32 Mechanic = 0;
+ uint32 Attributes = 0;
+ uint32 AttributesEx = 0;
+ uint32 AttributesEx2 = 0;
+ uint32 AttributesEx3 = 0;
+ uint32 AttributesEx4 = 0;
+ uint32 AttributesEx5 = 0;
+ uint32 AttributesEx6 = 0;
+ uint32 AttributesEx7 = 0;
+ uint32 AttributesEx8 = 0;
+ uint32 AttributesEx9 = 0;
+ uint32 AttributesEx10 = 0;
+ uint32 AttributesEx11 = 0;
+ uint32 AttributesEx12 = 0;
+ uint32 AttributesEx13 = 0;
+ uint32 AttributesEx14 = 0;
+ uint32 AttributesCu = 0;
std::bitset<MAX_SPELL_EFFECTS> NegativeEffects;
- uint64 Stances;
- uint64 StancesNot;
- uint32 Targets;
- uint32 TargetCreatureType;
- uint32 RequiresSpellFocus;
- uint32 FacingCasterFlags;
- uint32 CasterAuraState;
- uint32 TargetAuraState;
- uint32 ExcludeCasterAuraState;
- uint32 ExcludeTargetAuraState;
- uint32 CasterAuraSpell;
- uint32 TargetAuraSpell;
- uint32 ExcludeCasterAuraSpell;
- uint32 ExcludeTargetAuraSpell;
- SpellCastTimesEntry const* CastTimeEntry;
- uint32 RecoveryTime;
- uint32 CategoryRecoveryTime;
- uint32 StartRecoveryCategory;
- uint32 StartRecoveryTime;
- uint32 InterruptFlags;
- std::array<uint32, MAX_SPELL_AURA_INTERRUPT_FLAGS> AuraInterruptFlags;
- std::array<uint32, MAX_SPELL_AURA_INTERRUPT_FLAGS> ChannelInterruptFlags;
- uint32 ProcFlags;
- uint32 ProcChance;
- uint32 ProcCharges;
- uint32 ProcCooldown;
- float ProcBasePPM;
+ uint64 Stances = 0;
+ uint64 StancesNot = 0;
+ uint32 Targets = 0;
+ uint32 TargetCreatureType = 0;
+ uint32 RequiresSpellFocus = 0;
+ uint32 FacingCasterFlags = 0;
+ uint32 CasterAuraState = 0;
+ uint32 TargetAuraState = 0;
+ uint32 ExcludeCasterAuraState = 0;
+ uint32 ExcludeTargetAuraState = 0;
+ uint32 CasterAuraSpell = 0;
+ uint32 TargetAuraSpell = 0;
+ uint32 ExcludeCasterAuraSpell = 0;
+ uint32 ExcludeTargetAuraSpell = 0;
+ SpellCastTimesEntry const* CastTimeEntry = nullptr;
+ uint32 RecoveryTime = 0;
+ uint32 CategoryRecoveryTime = 0;
+ uint32 StartRecoveryCategory = 0;
+ uint32 StartRecoveryTime = 0;
+ uint32 InterruptFlags = 0;
+ std::array<uint32, MAX_SPELL_AURA_INTERRUPT_FLAGS> AuraInterruptFlags = {};
+ std::array<uint32, MAX_SPELL_AURA_INTERRUPT_FLAGS> ChannelInterruptFlags = {};
+ uint32 ProcFlags = 0;
+ uint32 ProcChance = 0;
+ uint32 ProcCharges = 0;
+ uint32 ProcCooldown = 0;
+ float ProcBasePPM = 0.0f;
std::vector<SpellProcsPerMinuteModEntry const*> ProcPPMMods;
- uint32 MaxLevel;
- uint32 BaseLevel;
- uint32 SpellLevel;
- SpellDurationEntry const* DurationEntry;
- std::array<SpellPowerEntry const*, MAX_POWERS_PER_SPELL> PowerCosts;
- uint32 RangeIndex;
- SpellRangeEntry const* RangeEntry;
- float Speed;
- float LaunchDelay;
- uint32 StackAmount;
- uint32 Totem[MAX_SPELL_TOTEMS];
- int32 Reagent[MAX_SPELL_REAGENTS];
- uint32 ReagentCount[MAX_SPELL_REAGENTS];
- int32 EquippedItemClass;
- int32 EquippedItemSubClassMask;
- int32 EquippedItemInventoryTypeMask;
- uint32 TotemCategory[MAX_SPELL_TOTEMS];
- uint32 IconFileDataId;
- uint32 ActiveIconFileDataId;
- uint32 ContentTuningId;
- uint32 ShowFutureSpellPlayerConditionID;
- LocalizedString const* SpellName;
- float ConeAngle;
- float Width;
- uint32 MaxTargetLevel;
- uint32 MaxAffectedTargets;
- uint32 SpellFamilyName;
+ uint32 MaxLevel = 0;
+ uint32 BaseLevel = 0;
+ uint32 SpellLevel = 0;
+ SpellDurationEntry const* DurationEntry = nullptr;
+ std::array<SpellPowerEntry const*, MAX_POWERS_PER_SPELL> PowerCosts = {};
+ SpellRangeEntry const* RangeEntry = nullptr;
+ float Speed = 0.0f;
+ float LaunchDelay = 0.0f;
+ uint32 StackAmount = 0;
+ std::array<uint32, MAX_SPELL_TOTEMS> Totem = {};
+ std::array<uint32, MAX_SPELL_TOTEMS> TotemCategory = {};
+ std::array<int32, MAX_SPELL_REAGENTS> Reagent = {};
+ std::array<uint32, MAX_SPELL_REAGENTS> ReagentCount = {};
+ int32 EquippedItemClass = -1;
+ int32 EquippedItemSubClassMask = 0;
+ int32 EquippedItemInventoryTypeMask = 0;
+ uint32 IconFileDataId = 0;
+ uint32 ActiveIconFileDataId = 0;
+ uint32 ContentTuningId = 0;
+ uint32 ShowFutureSpellPlayerConditionID = 0;
+ LocalizedString const* SpellName = nullptr;
+ float ConeAngle = 0.0f;
+ float Width = 0.0f;
+ uint32 MaxTargetLevel = 0;
+ uint32 MaxAffectedTargets = 0;
+ uint32 SpellFamilyName = 0;
flag128 SpellFamilyFlags;
- uint32 DmgClass;
- uint32 PreventionType;
- int32 RequiredAreasID;
- uint32 SchoolMask;
- uint32 ChargeCategoryId;
+ uint32 DmgClass = 0;
+ uint32 PreventionType = 0;
+ int32 RequiredAreasID = -1;
+ uint32 SchoolMask = 0;
+ uint32 ChargeCategoryId = 0;
// SpellScalingEntry
struct ScalingInfo
{
- int32 Class;
- uint32 MinScalingLevel;
- uint32 MaxScalingLevel;
- uint32 ScalesFromItemLevel;
+ int32 Class = 0;
+ uint32 MinScalingLevel = 0;
+ uint32 MaxScalingLevel = 0;
+ uint32 ScalesFromItemLevel = 0;
} Scaling;
- uint32 ExplicitTargetMask;
- SpellChainNode const* ChainEntry;
+ uint32 ExplicitTargetMask = 0;
+ SpellChainNode const* ChainEntry = nullptr;
SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, SpellInfoLoadHelper const& data, SpellVisualVector&& visuals);
+ SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, std::vector<SpellEffectEntry> const& effects);
~SpellInfo();
uint32 GetCategory() const;
@@ -711,11 +712,11 @@ class TC_GAME_API SpellInfo
private:
SpellEffectInfoVector _effects;
SpellVisualVector _visuals;
- SpellSpecificType _spellSpecific;
- AuraStateType _auraState;
+ SpellSpecificType _spellSpecific = SPELL_SPECIFIC_NORMAL;
+ AuraStateType _auraState = AURA_STATE_NONE;
SpellDiminishInfo _diminishInfo;
- uint32 _allowedMechanicMask;
+ uint32 _allowedMechanicMask = 0;
};
#endif // _SPELLINFO_H
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index 295c4331fc2..8a907aacf66 100644
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -49,17 +49,50 @@ namespace
boost::multi_index::tag<SpellIdDifficultyIndex>,
boost::multi_index::composite_key<
SpellInfo,
- boost::multi_index::member<SpellInfo, uint32, &SpellInfo::Id>,
- boost::multi_index::member<SpellInfo, Difficulty, &SpellInfo::Difficulty>
+ boost::multi_index::member<SpellInfo, uint32 const, &SpellInfo::Id>,
+ boost::multi_index::member<SpellInfo, Difficulty const, &SpellInfo::Difficulty>
>
>,
boost::multi_index::hashed_non_unique<
boost::multi_index::tag<SpellIdIndex>,
- boost::multi_index::member<SpellInfo, uint32, &SpellInfo::Id>
+ boost::multi_index::member<SpellInfo, uint32 const, &SpellInfo::Id>
>
>
> mSpellInfoMap;
+ struct ServersideSpellName
+ {
+ explicit ServersideSpellName(uint32 id, std::string name) : NameStorage(std::move(name))
+ {
+ Name.ID = id;
+ InitPointers();
+ }
+
+ ServersideSpellName(ServersideSpellName const& right) : NameStorage(right.NameStorage)
+ {
+ Name.ID = right.Name.ID;
+ InitPointers();
+ }
+
+ ServersideSpellName(ServersideSpellName&& right) noexcept : NameStorage(std::move(right.NameStorage))
+ {
+ Name.ID = right.Name.ID;
+ InitPointers();
+ right.InitPointers();
+ }
+
+ SpellNameEntry Name;
+ std::string NameStorage;
+
+ private:
+ void InitPointers()
+ {
+ std::fill(std::begin(Name.Name.Str), std::end(Name.Name.Str), NameStorage.c_str());
+ }
+ };
+
+ std::vector<ServersideSpellName> mServersideSpellNames;
+
std::unordered_map<std::pair<uint32, Difficulty>, SpellProcEntry> mSpellProcMap;
}
@@ -2585,6 +2618,7 @@ void SpellMgr::LoadSpellInfoStore()
void SpellMgr::UnloadSpellInfoStore()
{
mSpellInfoMap.clear();
+ mServersideSpellNames.clear();
}
void SpellMgr::UnloadSpellInfoImplicitTargetConditionLists()
@@ -2593,6 +2627,236 @@ void SpellMgr::UnloadSpellInfoImplicitTargetConditionLists()
const_cast<SpellInfo&>(spellInfo)._UnloadImplicitTargetConditionLists();
}
+void SpellMgr::LoadSpellInfoServerside()
+{
+ uint32 oldMSTime = getMSTime();
+
+ std::unordered_map<std::pair<uint32, Difficulty>, std::vector<SpellEffectEntry>> spellEffects;
+
+ // 0 1 2 3 4 5 6
+ QueryResult effectsResult = WorldDatabase.Query("SELECT SpellID, EffectIndex, DifficultyID, Effect, EffectAura, EffectAmplitude, EffectAttributes, "
+ // 7 8 9 10 11 12 13
+ "EffectAuraPeriod, EffectBonusCoefficient, EffectChainAmplitude, EffectChainTargets, EffectItemType, EffectMechanic, EffectPointsPerResource, "
+ // 14 15 16 17 18 19 20
+ "EffectPosFacing, EffectRealPointsPerLevel, EffectTriggerSpell, BonusCoefficientFromAP, PvpMultiplier, Coefficient, Variance, "
+ // 21 22 23 24 25 26
+ "ResourceCoefficient, GroupSizeBasePointsCoefficient, EffectBasePoints, EffectMiscValue1, EffectMiscValue2, EffectRadiusIndex1, "
+ // 27 28 29 30 31 32
+ "EffectRadiusIndex2, EffectSpellClassMask1, EffectSpellClassMask2, EffectSpellClassMask3, EffectSpellClassMask4, ImplicitTarget1, "
+ // 33
+ "ImplicitTarget2 FROM serverside_spell_effect");
+ if (effectsResult)
+ {
+ do
+ {
+ Field* fields = effectsResult->Fetch();
+ uint32 spellId = fields[0].GetUInt32();
+ Difficulty difficulty = Difficulty(fields[2].GetUInt32());
+ SpellEffectEntry effect{ };
+ effect.EffectIndex = fields[1].GetInt32();
+ effect.Effect = fields[3].GetInt32();
+ effect.EffectAura = fields[4].GetInt16();
+ effect.EffectAmplitude = fields[5].GetFloat();
+ effect.EffectAttributes = fields[6].GetInt32();
+ effect.EffectAuraPeriod = fields[7].GetInt32();
+ effect.EffectBonusCoefficient = fields[8].GetFloat();
+ effect.EffectChainAmplitude = fields[9].GetFloat();
+ effect.EffectChainTargets = fields[10].GetInt32();
+ effect.EffectItemType = fields[11].GetInt32();
+ effect.EffectMechanic = Mechanics(fields[12].GetInt32());
+ effect.EffectPointsPerResource = fields[13].GetFloat();
+ effect.EffectPosFacing = fields[14].GetFloat();
+ effect.EffectRealPointsPerLevel = fields[15].GetFloat();
+ effect.EffectTriggerSpell = fields[16].GetInt32();
+ effect.BonusCoefficientFromAP = fields[17].GetFloat();
+ effect.PvpMultiplier = fields[18].GetFloat();
+ effect.Coefficient = fields[19].GetFloat();
+ effect.Variance = fields[20].GetFloat();
+ effect.ResourceCoefficient = fields[21].GetFloat();
+ effect.GroupSizeBasePointsCoefficient = fields[22].GetFloat();
+ effect.EffectBasePoints = fields[23].GetFloat();
+ effect.EffectMiscValue[0] = fields[24].GetInt32();
+ effect.EffectMiscValue[1] = fields[25].GetInt32();
+ effect.EffectRadiusIndex[0] = fields[26].GetUInt32();
+ effect.EffectRadiusIndex[1] = fields[27].GetUInt32();
+ effect.EffectSpellClassMask = flag128(fields[28].GetInt32(), fields[29].GetInt32(), fields[30].GetInt32(), fields[31].GetInt32());
+ effect.ImplicitTarget[0] = fields[32].GetInt16();
+ effect.ImplicitTarget[1] = fields[33].GetInt16();
+
+ auto existingSpellBounds = _GetSpellInfo(spellId);
+ if (existingSpellBounds.begin() != existingSpellBounds.end())
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u effext index %u references a regular spell loaded from file. Adding serverside effects to existing spells is not allowed.",
+ spellId, uint32(difficulty), effect.EffectIndex);
+ continue;
+ }
+
+ if (difficulty != DIFFICULTY_NONE && !sDifficultyStore.HasRecord(difficulty))
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u effect index %u references non-existing difficulty %u, skipped",
+ spellId, effect.EffectIndex, uint32(difficulty));
+ continue;
+ }
+
+ if (effect.EffectIndex >= MAX_SPELL_EFFECTS)
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has more than 32 effects, effect at index %u skipped",
+ spellId, uint32(difficulty), effect.EffectIndex);
+ continue;
+ }
+
+ if (effect.Effect >= TOTAL_SPELL_EFFECTS)
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid effect type %u at index %u, skipped",
+ spellId, uint32(difficulty), effect.Effect, effect.EffectIndex);
+ continue;
+ }
+
+ if (effect.EffectAura >= int32(TOTAL_AURAS))
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid aura type %u at index %u, skipped",
+ spellId, uint32(difficulty), effect.EffectAura, effect.EffectIndex);
+ continue;
+ }
+
+ if (effect.ImplicitTarget[0] >= TOTAL_SPELL_TARGETS)
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid targetA type %u at index %u, skipped",
+ spellId, uint32(difficulty), effect.ImplicitTarget[0], effect.EffectIndex);
+ continue;
+ }
+
+ if (effect.ImplicitTarget[1] >= TOTAL_SPELL_TARGETS)
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid targetB type %u at index %u, skipped",
+ spellId, uint32(difficulty), effect.ImplicitTarget[1], effect.EffectIndex);
+ continue;
+ }
+
+ if (effect.EffectRadiusIndex[0] && !sSpellRadiusStore.HasRecord(effect.EffectRadiusIndex[0]))
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid radius id %u at index %u, set to 0",
+ spellId, uint32(difficulty), effect.EffectRadiusIndex[0], effect.EffectIndex);
+ }
+
+ if (effect.EffectRadiusIndex[1] && !sSpellRadiusStore.HasRecord(effect.EffectRadiusIndex[1]))
+ {
+ TC_LOG_ERROR("sql.sql", "Serverside spell %u difficulty %u has invalid max radius id %u at index %u, set to 0",
+ spellId, uint32(difficulty), effect.EffectRadiusIndex[1], effect.EffectIndex);
+ }
+
+ spellEffects[{ spellId, difficulty }].push_back(std::move(effect));
+
+ } while (effectsResult->NextRow());
+ }
+
+ // 0 1 2 3 4 5 6 7 8
+ QueryResult spellsResult = WorldDatabase.Query("SELECT Id, DifficultyID, CategoryId, Dispel, Mechanic, Attributes, AttributesEx, AttributesEx2, AttributesEx3, "
+ // 9 10 11 12 13 14 15 16 17 18
+ "AttributesEx4, AttributesEx5, AttributesEx6, AttributesEx7, AttributesEx8, AttributesEx9, AttributesEx10, AttributesEx11, AttributesEx12, AttributesEx13, "
+ // 19 20 21 22 23 24 25 26 27
+ "AttributesEx14, Stances, StancesNot, Targets, TargetCreatureType, RequiresSpellFocus, FacingCasterFlags, CasterAuraState, TargetAuraState, "
+ // 28 29 30 31 32 33 34
+ "ExcludeCasterAuraState, ExcludeTargetAuraState, CasterAuraSpell, TargetAuraSpell, ExcludeCasterAuraSpell, ExcludeTargetAuraSpell, CastingTimeIndex, "
+ // 35 36 37 38 39 40 41
+ "RecoveryTime, CategoryRecoveryTime, StartRecoveryCategory, StartRecoveryTime, InterruptFlags, AuraInterruptFlags1, AuraInterruptFlags2, "
+ // 42 43 44 45 46 47 48 49 50 51
+ "ChannelInterruptFlags1, ChannelInterruptFlags2, ProcFlags, ProcChance, ProcCharges, ProcCooldown, ProcBasePPM, MaxLevel, BaseLevel, SpellLevel, "
+ // 52 53 54 55 56 57 58 59 60
+ "DurationIndex, RangeIndex, Speed, LaunchDelay, StackAmount, EquippedItemClass, EquippedItemSubClassMask, EquippedItemInventoryTypeMask, ContentTuningId, "
+ // 61 62 63 64 65 66 67 68 69 70
+ "SpellName, ConeAngle, ConeWidth, MaxTargetLevel, MaxAffectedTargets, SpellFamilyName, SpellFamilyFlags1, SpellFamilyFlags2, SpellFamilyFlags3, SpellFamilyFlags4, "
+ // 71 72 73 74 75
+ "DmgClass, PreventionType, AreaGroupId, SchoolMask, ChargeCategoryId FROM serverside_spell");
+ if (spellsResult)
+ {
+ mServersideSpellNames.reserve(spellsResult->GetRowCount());
+
+ do
+ {
+ Field* fields = spellsResult->Fetch();
+ uint32 spellId = fields[0].GetUInt32();
+ Difficulty difficulty = Difficulty(fields[2].GetUInt32());
+ mServersideSpellNames.emplace_back(spellId, fields[61].GetString());
+
+ SpellInfo& spellInfo = const_cast<SpellInfo&>(*mSpellInfoMap.emplace(&mServersideSpellNames.back().Name, difficulty, spellEffects[{ spellId, difficulty }]).first);
+ spellInfo.CategoryId = fields[2].GetUInt32();
+ spellInfo.Dispel = fields[3].GetUInt32();
+ spellInfo.Mechanic = fields[4].GetUInt32();
+ spellInfo.Attributes = fields[5].GetUInt32();
+ spellInfo.AttributesEx = fields[6].GetUInt32();
+ spellInfo.AttributesEx2 = fields[7].GetUInt32();
+ spellInfo.AttributesEx3 = fields[8].GetUInt32();
+ spellInfo.AttributesEx4 = fields[9].GetUInt32();
+ spellInfo.AttributesEx5 = fields[10].GetUInt32();
+ spellInfo.AttributesEx6 = fields[11].GetUInt32();
+ spellInfo.AttributesEx7 = fields[12].GetUInt32();
+ spellInfo.AttributesEx8 = fields[13].GetUInt32();
+ spellInfo.AttributesEx9 = fields[14].GetUInt32();
+ spellInfo.AttributesEx10 = fields[15].GetUInt32();
+ spellInfo.AttributesEx11 = fields[16].GetUInt32();
+ spellInfo.AttributesEx12 = fields[17].GetUInt32();
+ spellInfo.AttributesEx13 = fields[18].GetUInt32();
+ spellInfo.AttributesEx14 = fields[19].GetUInt32();
+ spellInfo.Stances = fields[20].GetUInt64();
+ spellInfo.StancesNot = fields[21].GetUInt64();
+ spellInfo.Targets = fields[22].GetUInt32();
+ spellInfo.TargetCreatureType = fields[23].GetUInt32();
+ spellInfo.RequiresSpellFocus = fields[24].GetUInt32();
+ spellInfo.FacingCasterFlags = fields[25].GetUInt32();
+ spellInfo.CasterAuraState = fields[26].GetUInt32();
+ spellInfo.TargetAuraState = fields[27].GetUInt32();
+ spellInfo.ExcludeCasterAuraState = fields[28].GetUInt32();
+ spellInfo.ExcludeTargetAuraState = fields[29].GetUInt32();
+ spellInfo.CasterAuraSpell = fields[30].GetUInt32();
+ spellInfo.TargetAuraSpell = fields[31].GetUInt32();
+ spellInfo.ExcludeCasterAuraSpell = fields[32].GetUInt32();
+ spellInfo.ExcludeTargetAuraSpell = fields[33].GetUInt32();
+ spellInfo.CastTimeEntry = sSpellCastTimesStore.LookupEntry(fields[34].GetUInt32());
+ spellInfo.RecoveryTime = fields[35].GetUInt32();
+ spellInfo.CategoryRecoveryTime = fields[36].GetUInt32();
+ spellInfo.StartRecoveryCategory = fields[37].GetUInt32();
+ spellInfo.StartRecoveryTime = fields[38].GetUInt32();
+ spellInfo.InterruptFlags = fields[39].GetUInt32();
+ spellInfo.AuraInterruptFlags[0] = fields[40].GetUInt32();
+ spellInfo.AuraInterruptFlags[1] = fields[41].GetUInt32();
+ spellInfo.ChannelInterruptFlags[0] = fields[42].GetUInt32();
+ spellInfo.ChannelInterruptFlags[1] = fields[43].GetUInt32();
+ spellInfo.ProcFlags = fields[44].GetUInt32();
+ spellInfo.ProcChance = fields[45].GetUInt32();
+ spellInfo.ProcCharges = fields[46].GetUInt32();
+ spellInfo.ProcCooldown = fields[47].GetUInt32();
+ spellInfo.ProcBasePPM = fields[48].GetFloat();
+ spellInfo.MaxLevel = fields[49].GetUInt32();
+ spellInfo.BaseLevel = fields[50].GetUInt32();
+ spellInfo.SpellLevel = fields[51].GetUInt32();
+ spellInfo.DurationEntry = sSpellDurationStore.LookupEntry(fields[52].GetUInt32());
+ spellInfo.RangeEntry = sSpellRangeStore.LookupEntry(fields[53].GetUInt32());
+ spellInfo.Speed = fields[54].GetFloat();
+ spellInfo.LaunchDelay = fields[55].GetFloat();
+ spellInfo.StackAmount = fields[56].GetUInt32();
+ spellInfo.EquippedItemClass = fields[57].GetInt32();
+ spellInfo.EquippedItemSubClassMask = fields[58].GetInt32();
+ spellInfo.EquippedItemInventoryTypeMask = fields[59].GetInt32();
+ spellInfo.ContentTuningId = fields[60].GetUInt32();
+ spellInfo.ConeAngle = fields[62].GetFloat();
+ spellInfo.Width = fields[63].GetFloat();
+ spellInfo.MaxTargetLevel = fields[64].GetUInt32();
+ spellInfo.MaxAffectedTargets = fields[65].GetUInt32();
+ spellInfo.SpellFamilyName = fields[66].GetUInt32();
+ spellInfo.SpellFamilyFlags = flag128(fields[67].GetUInt32(), fields[68].GetUInt32(), fields[69].GetUInt32(), fields[70].GetUInt32());
+ spellInfo.DmgClass = fields[71].GetUInt32();
+ spellInfo.PreventionType = fields[72].GetUInt32();
+ spellInfo.RequiredAreasID = fields[73].GetInt32();
+ spellInfo.SchoolMask = fields[74].GetUInt32();
+ spellInfo.ChargeCategoryId = fields[75].GetUInt32();
+
+ } while (spellsResult->NextRow());
+ }
+
+ TC_LOG_INFO("server.loading", ">> Loaded " SZFMTD " serverside spells %u ms", mServersideSpellNames.size(), GetMSTimeDiffToNow(oldMSTime));
+}
+
void SpellMgr::LoadSpellInfoCustomAttributes()
{
uint32 oldMSTime = getMSTime();
diff --git a/src/server/game/Spells/SpellMgr.h b/src/server/game/Spells/SpellMgr.h
index dd2df66dbf6..a1f7a5d555d 100644
--- a/src/server/game/Spells/SpellMgr.h
+++ b/src/server/game/Spells/SpellMgr.h
@@ -749,6 +749,7 @@ class TC_GAME_API SpellMgr
void LoadSpellInfoStore();
void UnloadSpellInfoStore();
void UnloadSpellInfoImplicitTargetConditionLists();
+ void LoadSpellInfoServerside();
void LoadSpellInfoCustomAttributes();
void LoadSpellInfoCorrections();
void LoadSpellInfoSpellSpecificAndAuraState();
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp
index 4dada5a5091..c6413aaddef 100644
--- a/src/server/game/World/World.cpp
+++ b/src/server/game/World/World.cpp
@@ -1758,6 +1758,9 @@ void World::SetInitialWorldSettings()
TC_LOG_INFO("server.loading", "Loading SpellInfo store...");
sSpellMgr->LoadSpellInfoStore();
+ TC_LOG_INFO("server.loading", "Loading serverside spells...");
+ sSpellMgr->LoadSpellInfoServerside();
+
TC_LOG_INFO("server.loading", "Loading SpellInfo corrections...");
sSpellMgr->LoadSpellInfoCorrections();