[C#] Enigma.D3 menu

User Tag List

Page 48 of 63 FirstFirst ... 444546474849505152 ... LastLast
Results 706 to 720 of 940
  1. #706
    enigma32's Avatar Legendary
    Reputation
    912
    Join Date
    Jan 2013
    Posts
    551
    Thanks G/R
    4/738
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by d07RiV View Post
    Has anyone figured out where the SNO file structures are defined? I know you can read them from game memory and have the code for that, but the current PTR is invite only and I haven't got the version I grabbed from CDN to run yet.

    Since the game will boot to the menu even if you are offline, the stucture definitions clearly have to be stored somewhere in the data files.

    e: okay got PTR to run, but its still a lot harder than being able to parse stuff from static files.
    They are defined in the PE. During startup, it executes a list of constructors which builds up the definition for each field, data structure, network message and SNO. If you want to extract it from the PE only, then you can do that.
    Finding the memory location of a SNO definition is easy, just search for the name.
    Finding the structure definition for that SNO is also easy, just find MOV instructions using any of the offsets.
    Finding each field definition in that structure definition is where it gets messy. This is where I turned to memory reading instead, to access the end result of all those constructors.
    Good luck!

    [C#] Enigma.D3
  2. Thanks TehMuffinMan (1 members gave Thanks to enigma32 for this useful post)
  3. #707
    TehMuffinMan's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am really trying to grasp all of this memory reading stuff but it feels a bit above my head lol, I don't want to come off as needy.

    I am trying to read legendary item data from Items_Legendary.gam, where do I even go from here?

    var path = @"D:\Data\Items_Legendary.gam";
    SNOFile<GameBalance> file = SNOHelper.LoadFile<GameBalance>(path);

  4. #708
    enigma32's Avatar Legendary
    Reputation
    912
    Join Date
    Jan 2013
    Posts
    551
    Thanks G/R
    4/738
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehMuffinMan View Post
    I am really trying to grasp all of this memory reading stuff but it feels a bit above my head lol, I don't want to come off as needy.

    I am trying to read legendary item data from Items_Legendary.gam, where do I even go from here?
    I'd say explore the object through the debugger and see what's in there and if you can find whatever it is that you are looking for.

  5. #709
    TehMuffinMan's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by enigma32 View Post
    I'd say explore the object through the debugger and see what's in there and if you can find whatever it is that you are looking for.
    Thanks for the reply!

    I've managed to find the list of items.

    Code:
    file.Content.x028_Items.x08_Items
    Been digging through it all, tons of item data so I am on the right track!

    How do you connect things like "real" item name and stats and stuff?

  6. #710
    enigma32's Avatar Legendary
    Reputation
    912
    Join Date
    Jan 2013
    Posts
    551
    Thanks G/R
    4/738
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehMuffinMan View Post
    Thanks for the reply!

    I've managed to find the list of items.

    Code:
    file.Content.x028_Items.x08_Items
    Been digging through it all, tons of item data so I am on the right track!

    How do you connect things like "real" item name and stats and stuff?
    The "real" names should be in a StringList file. You can probably use [C#] Enigma.D3 to find it in memory.
    Stats I think are defined as GameBalance AffixTable, but how to interpret that data I do not know.

  7. #711
    TehMuffinMan's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I have the +elemental damage bonus on weapons figured out, but I can't seem to find the location of the base weapon damage range.

    Anyone have any clue?

    Attached Thumbnails Attached Thumbnails [C#] Enigma.D3-0n8dfzz-gif  

  8. #712
    d2k2's Avatar Active Member
    Reputation
    30
    Join Date
    Jul 2015
    Posts
    130
    Thanks G/R
    57/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to read battletag?

  9. #713
    Dolphe's Avatar Contributor
    Reputation
    97
    Join Date
    Oct 2012
    Posts
    614
    Thanks G/R
    0/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by d2k2 View Post
    Is there a way to read battletag?
    Code:
    public class BattleNet : MemoryObject
        {
            /* Size is larger then 8 bytes, Contains a lot of Pointers */
            public const int SizeOf = 0x08;
    
            public BattleNetClient Client => ReadPointer<BattleNetClient>(OffsetConversion.BattleNetClient).Dereference();
    
            public class BattleNetClient : MemoryObject
            {
                /* Size is larger then 8 bytes, Contains a lot of Pointers */
                public const int SizeOf = 0x08;
    
                public HeroData Heroes => ReadPointer<HeroData>(OffsetConversion.SelectedHeroes).Dereference();
            }
    
            public class HeroData : MemoryObject
            {
                public const int SizeOf = 0xD4;
    
                public HeroDataContainer Data => Read<HeroDataContainer>(OffsetConversion.HeroesData);
    
                public class HeroDataContainer : MemoryObject
                {
                    public EntityId AccountId => Read<EntityId>(0x00);
                    public RefString BattleTag => Read<RefString>(0x08);
                    public EntityId HeroId => Read<EntityId>(0x14);
                    public RefString HeroName => Read<RefString>(0x1C);
                    public HeroClass HeroClass => Read<HeroClass>(0x30);
                    public int HeroLevel => Read<int>(0x38);
                    public int HeroParagon => Read<int>(0x3C);
                    public Season IsSeasonal => (Read<int>(0x54) != OffsetConversion.ActiveSeason) ? Season.NonSeason : Season.Season;
                    public Arena HeroArena => (Arena)((Read<int>(0x80)) & 1);
                    public Gender HeroGender => (Gender)((Read<int>(0x80) >> 1) & 1);
                    public WorldType WorldType => Read<WorldType>(0x50);
                    public int xAC_QuestSnoId => Read<int>(0x90);
                    public int xB0_QuestStep => Read<int>(0x94);
    
                    public PlayTime HeroPlaytime => Read<PlayTime>(0x98); // In seconds
                    public Timestamp HeroCreated => Read<Timestamp>(0x09C);
                    public Timestamp HeroLastPlayed => Read<Timestamp>(0xA4);
                }
            }
    
            public struct PlayTime
            {
                public int TotalPlaytime;
    
                public override string ToString()
                {
                    TimeSpan t = TimeSpan.FromSeconds(TotalPlaytime);
    
                    return string.Format("{0:D2}d:{1:D2}h:{2:D2}m:{3:D2}s",
                        t.Days,
                        t.Hours,
                        t.Minutes,
                        t.Seconds
                   );
                }
            }
    
            public struct Timestamp
            {
                public long MicrosecondsSinceEpoch;
    
                public override string ToString()
                {
                    return new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddMilliseconds(MicrosecondsSinceEpoch / 1000).ToString();
                }
            }
        }
    Code:
         public const int ScreenManager = 0x1FEB0F8; 
            public const int ActiveSeason = 10;
            public const int BattleNetClient = 0x10;
            public const int SelectedHeroes = 0x0AC;
    
            public const int HeroesData = 0xA4;

  10. #714
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is the offset to read Death mode?

  11. #715
    Dolphe's Avatar Contributor
    Reputation
    97
    Join Date
    Oct 2012
    Posts
    614
    Thanks G/R
    0/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    What is the offset to read Death mode?
    Death mode? You mean if a HC char has died?

    Code:
    0x80 & 8 != 0
    Just noticed Enigma had it in the repo :P
    Enigma.D3/Hero.cs at master * Enigma32/Enigma.D3 * GitHub

  12. #716
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much.
    It works

  13. #717
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What's the PvpRank?
    Seems to need 4 players RiftRank or RiftLevel

  14. #718
    CrEEzz's Avatar Active Member
    Reputation
    66
    Join Date
    Jan 2014
    Posts
    153
    Thanks G/R
    10/40
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehMuffinMan View Post
    I think I have the +elemental damage bonus on weapons figured out, but I can't seem to find the location of the base weapon damage range.

    Anyone have any clue?

    Here is how I used to read stats:

    Code:
    // assuming sockets in chest and pants are filled with top gems adding primary stat!
    stats[(int)ItemStat.Int] = Math.Max(0, Attributes.IntelligenceItem.GetValue(acd) - (sockets_filled >= 2 ? sockets_filled * 280 : 0));
    stats[(int)ItemStat.Str] = Math.Max(0, Attributes.StrengthItem.GetValue(acd) - (sockets_filled >= 2 ? sockets_filled * 280 : 0));
    stats[(int)ItemStat.Dex] = Math.Max(0, Attributes.DexterityItem.GetValue(acd) - (sockets_filled >= 2 ? sockets_filled * 280 : 0));
    stats[(int)ItemStat.Primary] = (new float[] { stats[(int)ItemStat.Int], stats[(int)ItemStat.Str], stats[(int)ItemStat.Dex] }).Max();
    stats[(int)ItemStat.Vit] = Attributes.VitalityItem.GetValue(acd);
    stats[(int)ItemStat.CHD] = (float)Math.Round(Attributes.CritDamagePercent.GetValue(acd) * 100);
    stats[(int)ItemStat.CC] = (float)Math.Round(Attributes.CritPercentBonusCapped.GetValue(acd) * 100, 1);
    stats[(int)ItemStat.CDR] = (float)Math.Round(Attributes.PowerCooldownReductionPercentAll.GetValue(acd) * 100);
    stats[(int)ItemStat.IAS] = (float)Math.Round(Attributes.AttacksPerSecondPercent.GetValue(acd) * 100);
    stats[(int)ItemStat.AllRes] = Attributes.ResistanceAll.GetValue(acd);
    stats[(int)ItemStat.MS] = (float)Math.Round(Attributes.MovementScalar.GetValue(acd) * 100);
    stats[(int)ItemStat.Armor] = Attributes.ArmorBonusItem.GetValue(acd);
    stats[(int)ItemStat.Socket] = Attributes.Sockets.GetValue(acd);
    stats[(int)ItemStat.AreaDmgPct] = (float)Math.Round(Attributes.SplashDamageEffectPercent.GetValue(acd, -1) * 100);
    
    foreach (ElementalType elem_type in Enum.GetValues(typeof(ElementalType)))
    {
    	if (elem_type == ElementalType.Physical || elem_type == ElementalType.Unknown) continue;
    	float dmg = Math.Max(Attributes.DamageWeaponMinTotalMainHand.GetValue(acd, (int)elem_type), Attributes.DamageWeaponMinTotalOffHand.GetValue(acd, (int)elem_type));
    	stats[(int)ItemStat.MinWeaponDmg] = Math.Max(stats[(int)ItemStat.MinWeaponDmg], dmg);
    }
    
    foreach (ElementalType elem_type in Enum.GetValues(typeof(ElementalType)))
    {
    	if (elem_type == ElementalType.Physical || elem_type == ElementalType.Unknown) continue;
    	float dmg = Math.Max(Attributes.DamageWeaponMinTotalMainHand.GetValue(acd, (int)elem_type) + Attributes.DamageWeaponDeltaTotalMainHand.GetValue(acd, (int)elem_type),
    						 Attributes.DamageWeaponMinTotalOffHand.GetValue(acd, (int)elem_type) + Attributes.DamageWeaponDeltaTotalOffHand.GetValue(acd, (int)elem_type));
    	stats[(int)ItemStat.MaxWeaponDmg] = Math.Max(stats[(int)ItemStat.MaxWeaponDmg], dmg);
    }
    
    stats[(int)ItemStat.MinDmg] = Attributes.DamageMinTotalAll.GetValue(acd);
    stats[(int)ItemStat.MaxDmg] = Attributes.DamageMinTotalAll.GetValue(acd) + Attributes.DamageDeltaTotalAll.GetValue(acd);
    
    stats[(int)ItemStat.AvgDmg] = (float)Math.Round((stats[(int)ItemStat.MinDmg] + stats[(int)ItemStat.MaxDmg]) * 0.5, 1);
    
    stats[(int)ItemStat.DmgPct] = (float)Math.Round(Attributes.DamageWeaponPercentTotal.GetValue(acd, 0) * 100);
    
    stats[(int)ItemStat.MinWeaponDmg] = Math.Max(stats[(int)ItemStat.MinWeaponDmg], Attributes.DamageWeaponBonusMinX1.GetValue(acd, 0));
    stats[(int)ItemStat.MaxWeaponDmg] = Math.Max(stats[(int)ItemStat.MaxWeaponDmg], Attributes.DamageWeaponBonusMinX1.GetValue(acd, 0) + Attributes.DamageWeaponBonusDeltaX1.GetValue(acd, 0));
    
    stats[(int)ItemStat.AvgWeaponDmg] = (float)Math.Round((stats[(int)ItemStat.MinWeaponDmg] + stats[(int)ItemStat.MaxWeaponDmg]) * 0.5, 1);
    
    stats[(int)ItemStat.LifePct] = (float)Math.Round(Attributes.HitpointsMaxPercentBonusItem.GetValue(acd) * 100);
    stats[(int)ItemStat.LifeOnHit] = Attributes.HitpointsOnHit.GetValue(acd);
    stats[(int)ItemStat.LifePerSec] = Attributes.HitpointsRegenPerSecond.GetValue(acd);
    stats[(int)ItemStat.LifePerFury] = Attributes.SpendingResourceHealsPercent.GetValue(acd, 0x02);
    stats[(int)ItemStat.EliteDmgRedPct] = (float)Math.Round(Attributes.DamagePercentReductionFromElites.GetValue(acd) * 100);
    stats[(int)ItemStat.DmgPctVsElite] = (float)Math.Round(Attributes.DamagePercentBonusVsElites.GetValue(acd) * 100);
    stats[(int)ItemStat.RCR] = (float)Math.Round(Attributes.ResourceCostReductionPercentAll.GetValue(acd) * 100);
    stats[(int)ItemStat.ResourceRegen] = Attributes.ResourceRegenPerSecond.GetValue(acd, 0);
    stats[(int)ItemStat.Res] = Attributes.Resistance.GetValue(acd, 0);
    ancient = Attributes.AncientRank.GetValue(acd) > 0;
    
    foreach (SnoPower power_id in ItemsHelper.StatsPriorityPowerId)
    	stats[(int)ItemStat.PowerDmgPct] = Math.Max(stats[(int)ItemStat.PowerDmgPct], power_bonus_pct[power_id] = (float)Math.Round(Attributes.PowerDamagePercentBonus.GetValue(acd, (int)power_id) * 100));
    
    foreach (ElementalType elemental in ItemsHelper.StatsPriorityElementals)
    {
    	if (elemental == ElementalType.Unknown) continue;
    	stats[(int)ItemStat.ElemDmgPct] = Math.Max(stats[(int)ItemStat.ElemDmgPct], elem_dmg_pct[elemental] = (float)Math.Round(Attributes.DamageDealtPercentBonus.GetValue(acd, (int)elemental) * 100));
    }
    
    stats[(int)ItemStat.WeaponDps] = Attributes.DamageWeaponAverageTotalAll.GetValue(acd) * Attributes.AttacksPerSecondItemMainHand.GetValue(acd);

  15. #719
    garfild's Avatar Active Member
    Reputation
    23
    Join Date
    Jul 2012
    Posts
    71
    Thanks G/R
    1/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello guys, sorry to interupt you in here, but I would like to ask you how or where to get actual x64 offsets... I tried Enigma files, but there is only x32 offsets. Could you please tell me the method, how to find offsets by myself? Tomorrow is the Necro and I can not play without zoomhack anymore. Very appreciated, thanks!

  16. #720
    Dolphe's Avatar Contributor
    Reputation
    97
    Join Date
    Oct 2012
    Posts
    614
    Thanks G/R
    0/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    X64

    Code:
    ObjectManager : 0x141E5FCE0
    Cinematography : ObjectMaanger + 0xA98
    Not sure about Cinematography, havent checked.

    SnoPowers
    Code:
    public enum SnoPower
        {
            AI_FollowWithWalk = 1728,
            AI_Wander = 1729,
            Barrel_Explode_Instant = 1736,
            CryptChildEat = 1738,
            FallenChampion_Power_Hit = 1740,
            LacuniCombo = 1744,
            PvP_RangedProjectile = 1749,
            Scavenger_Leap = 1752,
            SiegebreakerDemon_LookAround = 1754,
            Summon_Skeleton_Pillar = 1757,
            UseItem = 1759,
            Wizard_Electrocute = 1765,
            Wizard_SlowTime = 1769,
            ZombieKillerGrab = 1771,
            a2dun_Zolt_Tesla_Tower_Fire = 29983,
            a2dun_Zolt_Tesla_Tower_IceNova = 29984,
            AI_Circle = 29986,
            AI_Circle_Long = 29987,
            AI_Circle_Strafe_Short = 29988,
            AI_Circle_Strafe = 29989,
            AI_Close = 29990,
            AI_Close_Long = 29991,
            AI_EscortFollow = 29992,
            AI_Follow = 29993,
            AI_FollowPath = 29994,
            AI_Follow_Close = 29995,
            AI_Idle = 29996,
            AI_Idle_Long = 29997,
            AI_Idle_Short = 29998,
            AI_ReturnToPath = 30000,
            AI_RunAway = 30001,
            AI_RunAway_Long = 30002,
            AI_RunAway_Short = 30003,
            AI_RunInFront = 30004,
            AI_RunNearby = 30005,
            AI_RunNearby_Gloam = 30006,
            AI_RunNearby_Long = 30007,
            AI_RunNearby_Short = 30008,
            AI_RunTo = 30009,
            AI_Strafe = 30010,
            AI_WalkInFront = 30012,
            AI_WalkTo = 30013,
            AI_WanderRun = 30014,
            AI_Wander_Long = 30015,
            AI_Wander_superLong = 30016,
            Axe_Bad_Data = 30020,
            Axe_Operate_Gizmo = 30021,
            Axe_Operate_NPC = 30022,
            Trait_Barbarian_Fury = 30078,
            Barbarian_GroundStompEffect = 30080,
            Barbarian_Leap_OLD = 30097,
            BareHandedPassive = 30145,
            BeastCharge = 30147,
            BurrowIn = 30156,
            BurrowOut = 30157,
            BurrowStartBuff = 30158,
            Butcher_Smash = 30160,
            ChampionClone = 30166,
            ChampionTeleport = 30167,
            Cooldown = 30176,
            CorpulentExplode = 30178,
            CritDebuffCold = 30180,
            CryptChildLeapOut = 30185,
            CryptChildLeapOutBuff = 30186,
            DebuffChilled = 30195,
            Dervish_Whirlwind = 30207,
            DestructableObjectAOE = 30208,
            DestructableObjectChandelier_AOE = 30209,
            DrinkHealthPotion = 30211,
            EatCorpse = 30214,
            FallenChampion_Leader_Shout = 30222,
            FallenGrunt_Shout = 30223,
            FallenShaman_Projectile = 30225,
            FastMummy_Disease_Cloud = 30227,
            GenericArrow_Projectile = 30242,
            Ghost_Melee_Drain = 30243,
            Ghost_SoulSiphon = 30244,
            GizmoOperatePortalWithAnimation = 30249,
            Goatman_Lightning_Shield = 30251,
            Goatman_Moonclan_Ranged_Projectile = 30252,
            GraveDigger_Knockback_Attack = 30255,
            GraveRobber_Dodge_Left = 30256,
            GraveRobber_Dodge_Right = 30257,
            graveRobber_Projectile = 30258,
            HealingWell_Heal = 30264,
            Hearth = 30265,
            Hearth_Finish = 30266,
            HirelingMage_MagicMissile = 30273,
            ImmuneToFearDuringBuff = 30283,
            ImmuneToRootDuringBuff = 30284,
            ImmuneToSnareDuringBuff = 30285,
            ImmuneToStunDuringBuff = 30286,
            Interact_Crouching = 30287,
            Interact_Normal = 30288,
            InvisibileDuringBuff = 30289,
            InvulnerableDuringBuff = 30290,
            Knockdown = 30296,
            LacuniBurrowIn = 30297,
            LacuniBurrowOut = 30298,
            LacuniMale_DoubleSwing = 30299,
            Lacuni_Leap = 30300,
            Lacuni_Lob = 30301,
            Laugh = 30307,
            MagicPainting_Summon_Skeleton = 30313,
            Monster_Poison_Melee_Attack = 30333,
            Monster_Ranged_Projectile = 30334,
            Monster_Spell_Projectile = 30338,
            NPC_LookAt = 30342,
            OnDeathArcane = 30343,
            OnDeathCold = 30344,
            OnDeathFire = 30345,
            OnDeathLightning = 30346,
            OnDeathPoison = 30347,
            Operate_Helper_Attach = 30348,
            Templar_Inspire = 30356,
            Templar_Loyalty = 30357,
            Templar_Guardian = 30359,
            Templar_ShieldCharge = 30360,
            Proxy_Delayed_Power = 30385,
            Punch = 30391,
            RangedEscort_Projectile = 30394,
            RemoveBurrow_Effect = 30420,
            ResurrectFallen = 30422,
            Resurrection_Buff = 30424,
            Rockworm_Attack = 30426,
            Rockworm_BurstOut = 30427,
            Rockworm_HideIdle = 30428,
            Rockworm_PreBurst = 30429,
            Rockworm_Retreat = 30430,
            Rockworm_Web = 30431,
            RootTryGrab = 30433,
            SandMonster_SandWall = 30438,
            SandsharkBurrowIn = 30440,
            SandsharkBurrowOut = 30441,
            SandTornado_OnSpawn = 30448,
            SandWasp_Projectile = 30449,
            ScavengerBurrowIn = 30450,
            ScavengerBurrowOut = 30451,
            Scoundrel_Anatomy = 30454,
            Scoundrel_Bandage = 30455,
            Scoundrel_PoisonArrow = 30460,
            Scoundrel_Vanish = 30464,
            ScrollBuff = 30469,
            SetMode_EscortFollow = 30471,
            ShieldSkeleton_Shield = 30473,
            Shrine_Desecrated_Blessed = 30476,
            Shrine_Desecrated_Enlightened = 30477,
            Shrine_Desecrated_Fortune = 30478,
            Shrine_Desecrated_Frenzied = 30479,
            SiegebreakerDemon_Bite = 30482,
            SiegebreakerDemon_Charge = 30484,
            SiegebreakerDemon_Grab = 30487,
            SiegebreakerDemon_GrabToBite = 30488,
            SiegebreakerDemon_Mini_Charge = 30490,
            SiegebreakerDemon_Pound = 30491,
            SiegebreakerDemon_Stomp = 30492,
            SkeletonArcher_Projectile = 30495,
            SkeletonKing_Summon_Skeleton = 30496,
            skeletonMage_Cold_projectile = 30497,
            skeletonMage_Fire_AOE = 30498,
            skeletonMage_Fire_projectile = 30499,
            skeletonMage_Lightning_pierce = 30500,
            skeletonMage_poison_death = 30501,
            skeletonMage_Poison_pierce = 30502,
            SkeletonSummoner_Projectile = 30503,
            SkeletonKing_Cleave = 30504,
            SnakemanCaster_ElectricBurst = 30509,
            Snakeman_MeleeStealth = 30512,
            Snakeman_MeleeUnstealth = 30513,
            Spider_Web_Immobolize = 30518,
            SporeCloud = 30525,
            StealthBuff = 30527,
            StitchExplode = 30529,
            StitchMeleeAlternate = 30530,
            StitchPush = 30531,
            Suicide_Proc = 30538,
            Summoned = 30540,
            Summon_Fallen_OnSpawn = 30541,
            Summon_Skeleton = 30543,
            Summon_Skeleton_OnSpawn = 30545,
            Summon_Skeleton_Orb = 30546,
            Summon_Triune_Demon = 30547,
            Summon_Zombie_Crawler = 30550,
            Thorns = 30554,
            ThousandPounder_Knockback = 30557,
            TransformToActivatedTriune = 30563,
            TriuneBerserker_Power_Hit = 30567,
            Maghda_Projectile = 30568,
            TriuneSummoner_Projectile = 30570,
            TriuneSummoner_Shield = 30571,
            TriuneSummoner_SplitSummonCast = 30572,
            TriuneVesselCharge = 30573,
            TriuneVesselOverpower = 30574,
            Unburied_Knockback = 30580,
            Unburied_Melee_Attack = 30581,
            UntargetableDuringBuff = 30582,
            UseHealthGlyph = 30584,
            UseManaGlyph = 30585,
            Walk = 30588,
            Warp = 30589,
            Weapon_Melee_Instant = 30592,
            Weapon_Melee_Instant_BothHand = 30593,
            Weapon_Melee_Instant_OffHand = 30594,
            Weapon_Melee_Obstruction = 30595,
            Weapon_Melee_Reach_Instant = 30596,
            Weapon_Ranged_Instant = 30598,
            Weapon_Ranged_Projectile = 30599,
            Weapon_Ranged_Wand = 30601,
            Witchdoctor_Gargantuan = 30624,
            Witchdoctor_Hex = 30631,
            Wizard_ArcaneOrb = 30668,
            Wizard_Blizzard = 30680,
            Wizard_EnergyShield = 30708,
            Wizard_FrostNova = 30718,
            Wizard_Hydra = 30725,
            Wizard_MagicMissile = 30744,
            Wizard_MagicMissile_Count = 30745,
            Wizard_MagicMissile_Damage = 30746,
            Wizard_MagicMissile_Speed = 30748,
            Wizard_ShockPulse = 30783,
            Wizard_WaveOfForce = 30796,
            WoodWraithSummonSpores = 30800,
            ZK_Ball_Summon_Skeleton = 30804,
            zolt_smallFloorSpawner = 30808,
            zolt_Tablet_stateChange = 30810,
            Trait_Monk_Spirit = 52753,
            TreasureGoblinPause = 54055,
            SoaringDescend = 54196,
            TreasureGoblin_ThrowPortal = 54836,
            TreasureGoblin_UsePortal = 54866,
            a3dun_Keep_Barrel_Stack_Short_Damage = 55014,
            AI_Orbit = 55433,
            waterloggedCorpse_Poison_Cloud = 57028,
            waterloggedCorpse_Eel_Spawn = 57931,
            ElectricEel_ElectricBurst = 57932,
            SandMonster_BurrowOut_Long = 59308,
            ElectricEelLeapOut = 59836,
            Generic_Taunt = 60777,
            Generic_SetUntargetable = 62666,
            Generic_SetInvulnerable = 62731,
            Belial_Ranged_Attack = 63079,
            Fallen_Lunatic_Suicide = 66547,
            TarPitSlowOn = 67106,
            TarPitSlowOff = 67110,
            Witchdoctor_Firebomb = 67567,
            Witchdoctor_MassConfusion = 67600,
            Witchdoctor_SoulHarvest = 67616,
            Witchdoctor_Horrify = 67668,
            Belial_Ground_Pound = 67753,
            Monk_BreathOfHeaven = 69130,
            Witchdoctor_GraspOfTheDead = 69182,
            Wizard_Meteor = 69190,
            Monk_ResistAura = 69489,
            SoaringAscend = 69743,
            Witchdoctor_CorpseSpider = 69866,
            Witchdoctor_Locust_Swarm = 69867,
            BurrowInSetup = 69949,
            Weapon_Melee_NoClose = 70218,
            MonsterAffix_Vampiric = 70309,
            Knockback = 70432,
            Witchdoctor_AcidCloud = 70455,
            Barbarian_Rend = 70472,
            MonsterAffix_ExtraHealth = 70650,
            MonsterAffix_Knockback = 70655,
            MonsterAffix_Fast = 70849,
            MonsterAffix_Desecrator = 70874,
            MonsterAffix_Puppetmaster = 71023,
            MonsterAffix_Puppetmaster_Minion = 71024,
            MonsterAffix_Illusionist = 71108,
            MonsterAffix_Healthlink = 71239,
            Wizard_SpectralBlade = 71548,
            CreepMob_Knockback = 71646,
            CreepMob_Ranged_Arm_Attack = 71688,
            CreepMob_Creeper_Attack = 72366,
            Brickhouse_ArmShields = 72675,
            Brickhouse_Enrage = 72713,
            Witchdoctor_FetishArmy = 72785,
            Brickhouse_Slam = 72812,
            Wizard_IceArmor = 73223,
            HelperArcherProjectile = 73289,
            SkeletonKing_Whirlwind = 73824,
            Witchdoctor_ZombieCharger = 74003,
            Wizard_StormArmor = 74499,
            BurrowOut_NoFacing = 75226,
            DemonHunter_SpikeTrap = 75301,
            Wizard_DiamondSkin = 75599,
            Generic_SetInvisible = 76107,
            Wizard_MagicWeapon = 76108,
            Spider_Web_Slow_Spit = 76951,
            Spider_Web_Slow = 76961,
            Wizard_Hydra_RuneFire_Prototype = 77063,
            Wizard_Hydra_RuneLightning_Prototype = 77065,
            Wizard_Hydra_RuneAcid_Prototype = 77066,
            Wizard_Hydra_RuneArcane_Prototype = 77067,
            Wizard_Hydra_DefaultFire_Prototype = 77068,
            Wizard_EnergyTwister = 77113,
            Goatman_Shaman_Lightningbolt = 77342,
            DemonHunter_FanOfKnives = 77546,
            DemonHunter_Bolas = 77552,
            DemonHunter_Multishot = 77649,
            Barbarian_Frenzy = 78548,
            Barbarian_Sprint = 78551,
            Barbarian_BattleRage = 79076,
            Barbarian_ThreateningShout = 79077,
            Barbarian_Bash = 79242,
            SkeletonKing_Teleport = 79334,
            Barbarian_GroundStomp = 79446,
            UninterruptibleDuringBuff = 79486,
            Barbarian_IgnorePain = 79528,
            Barbarian_WrathOfTheBerserker = 79607,
            Barbarian_HammerOfTheAncients = 80028,
            Barbarian_CallOfTheAncients = 80049,
            Barbarian_Cleave = 80263,
            MonsterAffix_Electrified = 81420,
            SkeletonKing_Teleport_Away = 81504,
            AI_SprintTo = 82805,
            Butcher_GrapplingHook = 83008,
            Wizard_Hydra_RuneFrost_Prototype = 83040,
            Witchdoctor_Haunt = 83602,
            Wizard_Hydra_RuneBig_Prototype = 84030,
            Enchantress_Cripple = 84469,
            Laugh_SkeletonKing = 84699,
            Butcher_Frenzy = 85001,
            Butcher_Slam = 85152,
            Knockback_OverObstacles = 85936,
            g_levelUp = 85954,
            DamageAttribute = 86152,
            EscortingBuff = 86241,
            DemonHunter_Grenades = 86610,
            Butcher_DamagingFire = 86627,
            Barbarian_SeismicSlam = 86989,
            tongue_prototype = 86990,
            Wizard_EnergyArmor = 86991,
            Hireling_Callout_BattleCry = 87093,
            Wizard_ExplosiveBlast = 87525,
            a1dun_leoric_fireTrench = 89418,
            MonsterAffix_Frozen = 90144,
            MonsterAffix_Molten = 90314,
            a1dun_leoric_fireTrench_01 = 90428,
            MonsterAffix_Plagued = 90566,
            MonsterAffix_MissileDampening = 91028,
            CopiedVisualEffectsBuff = 91052,
            MonsterAffix_Ballista = 91098,
            CalldownGrenade = 91155,
            MonsterAffix_DieTogether = 91232,
            trout_tristramfields_punji_trap_aoe = 91261,
            Wizard_Disintegrate = 91549,
            Wizard_RayOfFrost = 93395,
            Barbarian_Leap = 93409,
            Gluttony_Gas_Cloud = 93676,
            UnburiedBoss_Cleave = 93715,
            ActorDisabledBuff = 93716,
            Leah_Vortex = 93831,
            Gluttony_Breath_Attack = 93838,
            Templar_Onslaught = 93888,
            Templar_Intimidate = 93901,
            Templar_Intervene = 93938,
            Templar_Intervene_Proc = 94008,
            Summon_Zombie_Vomit = 94734,
            Ghost_A_Unique_House1000Undead_Slow = 94972,
            trout_tristramfields_punji_trap_mirror_aoe = 95387,
            Scoundrel_CripplingShot = 95675,
            Scoundrel_PowerShot = 95690,
            DOTDebuff = 95701,
            Belial_Phase3Buff = 95811,
            Belial_LightningBreath = 95856,
            Monk_FistsofThunder = 95940,
            Monk_DeadlyReach = 96019,
            Monk_WaveOfLight = 96033,
            Monk_SweepingWind = 96090,
            Belial_LightningStrike_v2 = 96212,
            Monk_Serenity = 96215,
            Barbarian_Whirlwind = 96296,
            Monk_CripplingWave = 96311,
            Monk_SevenSidedStrike = 96694,
            Belial_Melee = 96712,
            PVPSkirmishBuff = 96719,
            Butcher_FloorPanelFire = 96925,
            Monk_WayOfTheHundredFists = 97110,
            Monk_ExplodingPalm = 97328,
            PVPBuff = 97359,
            Barbarian_FuriousCharge = 97435,
            Scoundrel_DirtyFighting = 97436,
            GoatmanDrumsBeating = 97497,
            Wizard_MirrorImage = 98027,
            Belial_Sprint = 98565,
            Gluttony_OnDeath = 98587,
            Barbarian_Earthquake = 98878,
            Goatman_Iceball = 99077,
            GhostWalkThroughWalls = 99094,
            Wizard_Familiar = 99120,
            AIEvadeBuff = 99543,
            Scoundrel_Ranged_Projectile = 99902,
            Scoundrel_RunAway = 99904,
            trOut_LogStack_Trap = 100287,
            DebuffSlowed = 100971,
            DebuffStunned = 101000,
            DebuffFeared = 101002,
            DebuffRooted = 101003,
            Enchantress_FocusedMind = 101425,
            Enchantress_PoweredArmor = 101461,
            Enchantress_ForcefulPush = 101969,
            Enchantress_Disorient = 101990,
            Enchantress_Charm = 102057,
            Cain_Intro_Swing = 102449,
            Witchdoctor_Sacrifice = 102572,
            Witchdoctor_SummonZombieDog = 102573,
            caOut_Oasis_Attack_Plant_attack = 102874,
            Witchdoctor_PoisonDart = 103181,
            DebuffBlind = 103216,
            Quest_CanyonBridge_Player_RevealFootsteps = 103337,
            Quest_CanyonBridge_Enchantress_RevealFootsteps = 103338,
            AI_Follow_MeleeLead = 104514,
            Belial_Sprint_Away = 105312,
            TreasureGoblin_Escape = 105371,
            TreasureGoblin_ThrowPortal_Fast = 105665,
            Witchdoctor_Firebats = 105963,
            Weapon_Melee_Instant_Freeze_Facing = 106087,
            Witchdoctor_SpiritWalk = 106237,
            AncientSpearKnockback = 106281,
            Witchdoctor_PlagueOfToads = 106465,
            Witchdoctor_PlagueOfToads_BigToadAttack = 106592,
            Witchdoctor_CorpseSpider_Leap = 107103,
            Witchdoctor_Hex_Fetish = 107301,
            QuillDemon_Projectile = 107729,
            Witchdoctor_Hex_Fetish_Heal = 107742,
            a1dun_Leor_BigFireGrate = 108017,
            CatapultAttack = 108036,
            Witchdoctor_SpiritBarrage = 108506,
            Butcher_Target_Ranged = 109153,
            Beast_Weapon_Melee_Instant = 109289,
            Barbarian_Revenge = 109342,
            Barbarian_Revenge_Buff = 109344,
            Trait_Witchdoctor_ZombieDogSpawner_Passive = 109560,
            MonsterAffix_Molten_Minion = 109898,
            MonsterAffix_Electrified_Minion = 109899,
            ZombieFemale_Projectile = 110518,
            Monk_LethalDecoy_Taunt = 110575,
            DemonHunter_Vault = 111215,
            Monk_LashingTailKick = 111676,
            a1dun_leoric_fireTrench_02 = 112259,
            graveDigger_warden_rangedAttack = 113817,
            a2dun_Cave_SlimeGeyser_A = 114308,
            AI_WarnOthers = 114421,
            Weapon_Melee_Reach_Instant_Freeze_Facing = 115624,
            Hireling_Callout_BattleFinished = 117323,
            Witchdoctor_BigBadVoodoo = 117402,
            Summoning_Machine_Summon = 117580,
            HellPortalSummoningMachineActivate = 118226,
            Witchdoctor_FetishArmy_Shaman = 118442,
            Witchdoctor_FetishArmy_Hunter = 119166,
            MonsterAffix_VortexCast = 120305,
            MonsterAffix_VortexBuff = 120306,
            MonsterAffix_Pheonix = 120655,
            Succubus_BloodStar = 120874,
            Succubus_Leap = 120875,
            demonFlyer_snatch = 121326,
            Monk_TempestRush = 121442,
            Witchdoctor_Gargantuan_Cleave = 121942,
            Witchdoctor_Gargantuan_Slam = 121943,
            A3_Battlefield_DemonMine_AOE = 122327,
            Azmodan_GlobeOfAnnihilation = 122699,
            Azmodan_FallingCorpses = 122700,
            UnholyShield = 122977,
            CorruptAngel_SpectralStrike = 122978,
            SetItemBonusBuff = 123014,
            a3dun_crater_Demon_GroundTrap_GasChamber = 123043,
            Goatman_Cold_Shield = 123158,
            Azmodan_AOD_Damage = 123199,
            MalletDemon_Power_Hit = 123381,
            Azmodan_Phase3Channel = 123466,
            Frenzy_Affix = 123843,
            TerrorDemon_MeleeStrike = 123907,
            TerrorDemon_ShadowPhase = 123935,
            TerrorDemon_ShadowPhase_End = 123964,
            Swarm_death = 128729,
            DemonHunter_Preparation = 129212,
            DemonHunter_Chakram = 129213,
            DemonHunter_ClusterArrow = 129214,
            DemonHunter_HungeringArrow = 129215,
            DemonHunter_Caltrops = 129216,
            DemonHunter_Sentry = 129217,
            Azmodan_LaserAttack = 129243,
            Generic_SetCannotBeAddedToAITargetList = 129386,
            Generic_SetObserver = 129393,
            Generic_SetTakesNoDamage = 129394,
            Generic_SetDoesFakeDamage = 129395,
            DemonHunter_Sentry_TurretAttack = 129661,
            Gizmo_a3dun_rmpt_OilVat_A_Attack = 129689,
            DemonHunter_SmokeScreen = 130695,
            DemonHunter_MarkedForDeath = 130738,
            DemonFlyer_Projectile = 130798,
            DemonHunter_ShadowPower = 130830,
            DemonHunter_RainOfVengeance = 130831,
            DemonHunter_RapidFire = 131192,
            BodyGuard_Teleport = 131193,
            DemonHunter_ElementalArrow = 131325,
            DemonHunter_Impale = 131366,
            GoatMutantEnrage = 131588,
            GoatMutantGroundSmash = 131699,
            Maghda_Mark = 131741,
            Maghda_Summon_Beserker = 131744,
            Maghda_MothDust = 131745,
            Maghda_Punish = 131746,
            Maghda_Teleport = 131749,
            PickupNearby = 131976,
            WarpInMagical = 132910,
            demonFlyer_dropBomb = 132940,
            Azmodan_Melee = 133744,
            DH_Companion_ChargeAttack = 133887,
            DemonHunter_Strafe = 134030,
            Callout_Cooldown = 134225,
            DemonHunter_EvasiveFire_Flip = 134280,
            Banter_Cooldown = 134334,
            Wizard_ArcaneTorrent = 134456,
            CoreElitePodSetUp = 134815,
            CoreElite_DropPod = 134816,
            Witchdoctor_WallOfZombies = 134837,
            Wizard_Archon = 134872,
            Wizard_Archon_ArcaneStrike = 135166,
            Wizard_Archon_DisintegrationWave = 135238,
            HoodedNightmare_LightningOfUnlife = 135412,
            Wizard_Archon_SlowTime = 135663,
            HoodedNightmare_BoneArmor = 135701,
            HoodedNightmare_Curses = 136071,
            HoodedNightmare_GatewayToHell = 136072,
            Diablo_ClawRip = 136189,
            Diablo_LightningBreath = 136219,
            Diablo_RingOfFire = 136223,
            Diablo_HellSpikes = 136226,
            Diablo_ShadowVanish = 136237,
            Diablo_ShadowClones = 136281,
            CoreElite_DropPod_Begin = 136455,
            Succubus_Fly = 136508,
            MistressOfPain_WebPatch = 136722,
            MistressOfPain_PainBolts = 136790,
            Diablo_CurseOfAnguish = 136828,
            Diablo_CurseOfPain = 136829,
            Diablo_CurseOfHate = 136830,
            Diablo_CurseOfDestruction = 136831,
            Diablo_ShadowVanish_Grab = 136849,
            Diablo_Phase2Buff = 136850,
            Diablo_Phase3Buff = 136852,
            Monk_BlindingFlash = 136954,
            MistressOfPain_SummonSpiders = 136958,
            MistressOfPain_Spiderling_Explode = 137143,
            MistressOfPain_TeleportToThrone = 137483,
            Spider_SprintThroughObjectsTo = 137642,
            MastaBlasta_Rider_Lobbed_Shot = 139356,
            ZoltunKulle_CollapseCeiling = 139705,
            ZoltunKulle_Teleport = 139711,
            ZoltunKulle_EnergyTwister = 139736,
            ZoltunKulle_SlowTime = 139831,
            ZoltunKulle_FieryBoulder = 139942,
            MastaBlasta_Rider_Leap = 140856,
            MastaBlasta_Rider_Alpha_Strike = 140857,
            MastaBlasta_Steed_Stomp = 140859,
            MastaBlasta_Steed_DrainAttack = 141333,
            Diablo_Phase1Buff = 141865,
            Diablo_ShadowVanish_Charge = 142582,
            WallMonsterSpawn = 143063,
            DemonTrooperLeapOut = 143198,
            Monk_ResistAura_RuneC_Fire = 143382,
            MastaBlasta_Combined_Lobbed_Shot = 143940,
            MastaBlasta_Rider_Combine = 143991,
            Monk_ResistAura_RuneC_Lightning = 144188,
            Monk_ResistAura_RuneC_Cold = 144197,
            Monk_ResistAura_RuneC_Poison = 144202,
            MastaBlasta_Steed_Combine = 144289,
            Monk_ResistAura_RuneC_Arcane = 144312,
            Monk_ResistAura_RuneC_Holy = 144322,
            MastaBlasta_Combined_Dismount_Rider = 145022,
            SoulRipper_TongueLash = 145822,
            PlagueOfToadsKnockback = 147876,
            BigRed_Charge = 149875,
            Despair_Teleport = 149911,
            DH_rainofArrows_shadowBeast_bombDrop = 150075,
            Despair_SummonMinion = 150486,
            BigRed_FireBreath = 150552,
            SpiderQueen_WebSpit = 151218,
            SpiderQueen_VomitSpiders_Charge = 151219,
            SpiderQueen_VomitSpiders_Vomit = 151516,
            Camera_Focus_Buff = 151595,
            Camera_Focus_Pet_Buff = 151604,
            Unique_Monster_Generic_Projectile = 152540,
            Despair_Melee_Cleave = 152865,
            Despair_Volley = 152866,
            A2_Evacuation_BelialBomb = 153000,
            DemonFlyer_FireBreath = 155188,
            DemonHunter_Passive_Vengeance = 155714,
            DemonHunter_Passive_Sharpshooter = 155715,
            DemonHunter_Passive_CullTheWeak = 155721,
            DemonHunter_Passive_Perfectionist = 155722,
            DemonHunter_Passive_Ballistics = 155723,
            DemonHunter_Passive_HotPursuit = 155725,
            MonsterAffix_TeleporterBuff = 155958,
            MonsterAffix_TeleporterCast = 155959,
            MonsterAffix_DesecratorCast = 156105,
            MonsterAffix_DesecratorBuff = 156106,
            Caldeum_PoisonLaser = 156211,
            Belial_Melee_Reach = 156429,
            Monk_Passive_ChantOfResonance = 156467,
            Monk_Passive_NearDeathExperience = 156484,
            Monk_Passive_GuidingLight = 156492,
            GoatMutantShamanBlast = 157947,
            Fallen_Lunatic_Aggro_A = 158955,
            MorluSpellcaster_Shift = 158968,
            MorluSpellcaster_Meteor = 158969,
            MorluSpellcaster_BreathOfFire = 158970,
            GoatMutant_Ranged_Projectile = 159004,
            Barbarian_Overpower = 159169,
            Diablo_CorruptionShield = 161174,
            a3dun_crater_DemonClawBomb_A = 162328,
            Izual_FrostNova = 162329,
            AI_WalkTo_Guaranteed = 163333,
            AI_WalkInFront_Guaranteed = 163334,
            AI_SprintTo_Guaranteed = 163335,
            AI_SprintInFront_Guaranteed = 163336,
            AI_RunTo_Guaranteed = 163338,
            AI_RunInFront_Guaranteed = 163339,
            DemonHunter_Passive_SteadyAim = 164363,
            UseArcaneGlyph = 165553,
            Wizard_ArcaneTorrent_RuneC_Mine = 165598,
            Summon_Fallen_A_Unique01 = 166154,
            Wizard_Archon_Cancel = 166616,
            Wizard_Archon_ArcaneBlast = 167355,
            Diablo_LightningBreath_v2 = 167560,
            Wizard_Archon_Teleport = 167648,
            Summon_Skeleton_Jondar = 168212,
            Wizard_Teleport = 168344,
            Goatman_Shaman_Empower = 168554,
            Barbarian_CallOfTheAncients_Cleave = 168823,
            Barbarian_CallOfTheAncients_FuriousCharge = 168824,
            Barbarian_CallOfTheAncients_Leap = 168825,
            Barbarian_CallOfTheAncients_SeismicSlam = 168827,
            Barbarian_CallOfTheAncients_WeaponThrow = 168828,
            Barbarian_CallOfTheAncients_Whirlwind = 168830,
            Monk_MysticAlly_Pet_Weapon_Melee_Instant = 169081,
            Monk_MysticAlly_Pet_RuneA_Kick = 169155,
            Diablo_Smash_Puny_Destructible = 169212,
            Monk_MysticAlly_Pet_RuneC_GroundPunch = 169715,
            Monk_MysticAlly_Pet_RuneD_AOEAttack = 169728,
            PVPRoundEndBuff = 170408,
            a2dun_Zolt_Tesla_Tower_Lightning_pewpew = 174642,
            a3_battlefield_demonic_forge = 174905,
            a2dun_Cave_Goatmen_Dropping_Log_Trap_attack = 175069,
            a1dun_Leor_Fire_Gutter_fire = 175159,
            Azmodan_onDeath = 176046,
            Maghda_PunishCinematic = 178279,
            ZombieEatStart = 178483,
            ZombieEatStop = 178485,
            Brickhouse_DestructionSetup = 180875,
            a3dun_bastionKeepGuard_FireAtNothing = 180931,
            SiegebreakerDemon_ChargeNew = 182586,
            Maghda_PortalCreateCinematic = 184598,
            BannerDrop = 185040,
            EmoteFollow = 185042,
            EmoteGive = 185081,
            EmoteThanks = 185082,
            EmoteSorry = 185083,
            EmoteBye = 185085,
            EmoteDie = 185087,
            EmoteHelp = 185093,
            EmoteRun = 185598,
            EmoteWait = 185600,
            EmoteGo = 185629,
            Diablo_ExpandingFireRing = 185997,
            trOut_LogStack_Short_Damage = 186138,
            Enchantress_RunAway = 186200,
            trDun_Cath_WallCollapse_Damage = 186216,
            Witchdoctor_SpiritBarrage_RuneC_AOE = 186471,
            a3dun_Keep_Exploding_Barrel_Stun_power = 186638,
            Witchdoctor_Gargantuan_Smash = 186851,
            Barbarian_CallOfTheAncients_Basic_Melee = 187092,
            EmoteYes = 188251,
            EmoteNo = 188252,
            EmoteStay = 188253,
            EmoteAttack = 188254,
            EmoteRetreat = 188255,
            EmoteHold = 188256,
            EmoteTakeObjective = 188257,
            EmoteLaugh = 188258,
            Witchdoctor_Hex_Explode = 188442,
            a4dun_Garden_Corruption_Mine = 188960,
            a2dun_Cave_Larva_AOE = 189864,
            Leah_HulkOut = 190230,
            UseStoneOfRecall = 191590,
            AI_ReturnToGuardObject = 193411,
            DualWieldBuff = 193438,
            BurrowInHidden = 194582,
            BurrowOutSetup = 194596,
            Diablo_Charge = 195816,
            Hireling_Dismiss_Buff = 196103,
            Hireling_Dismiss = 196142,
            Hireling_Dismiss_Buff_Remove = 196251,
            Witchdoctor_Hex_ChickenWalk = 196974,
            Butcher_Spears = 198671,
            Adria_event47_projectile = 199198,
            Adria_event47_blast = 199222,
            Diablo_StompAndStun = 199476,
            _1000MonsterFight_Meteor = 199789,
            EnterStoneOfRecall = 200036,
            a3dun_keep_fireTrench_02 = 200038,
            ExitStoneOfRecall = 200039,
            a3dun_keep_fireTrench_01 = 200051,
            Scoundrel_Hysteria = 200169,
            Enchantress_MassCharm = 201524,
            EnterRecallPortal = 201538,
            ExitRecallPortal = 201570,
            Unburied_Wreckable_Attack = 202344,
            Weapon_Melee_Instant_Wreckables = 202345,
            PvP_DamageBuff = 202701,
            PvP_DeathstreakBuff = 203535,
            Barbarian_Passive_BoonOfBulKathos = 204603,
            Barbarian_Passive_NoEscape = 204725,
            Barbarian_Passive_Brawler = 205133,
            Barbarian_Passive_Ruthless = 205175,
            Barbarian_Passive_BerserkerRage = 205187,
            Barbarian_Passive_PoundOfFlesh = 205205,
            Barbarian_Passive_Bloodthirst = 205217,
            Barbarian_Passive_Animosity = 205228,
            Barbarian_Passive_Unforgiving = 205300,
            Barbarian_Passive_Relentless = 205398,
            Barbarian_Passive_Superstition = 205491,
            Barbarian_Passive_InspiringPresence = 205546,
            Barbarian_Passive_Juggernaut = 205707,
            Barbarian_Passive_ToughAsNails = 205848,
            Barbarian_Passive_WeaponsMaster = 206147,
            a2dun_Cave_Larva = 206565,
            a3dun_Crater_DemonClawBomb_A_trigger = 206575,
            Wizard_Passive_Blur = 208468,
            Wizard_Passive_GlassCannon = 208471,
            Wizard_Passive_AstralPresence = 208472,
            Wizard_Passive_Evocation = 208473,
            Wizard_Passive_UnstableAnomaly = 208474,
            Wizard_Passive_TemporalFlux = 208477,
            Wizard_Passive_PowerHungry = 208478,
            Wizard_Passive_Prodigy = 208493,
            Leah_Vortex_Again = 208501,
            Wizard_Passive_GalvanizingWard = 208541,
            Wizard_Passive_Illusionist = 208547,
            Witchdoctor_Passive_ZombieHandler = 208563,
            Witchdoctor_Passive_RushOfEssence = 208565,
            Witchdoctor_Passive_BloodRitual = 208568,
            Witchdoctor_Passive_SpiritualAttunement = 208569,
            Witchdoctor_Passive_CircleOfLife = 208571,
            Witchdoctor_Passive_GruesomeFeast = 208594,
            Witchdoctor_Passive_TribalRites = 208601,
            DemonHunter_Passive_CustomEngineering = 208610,
            Witchdoctor_Passive_PierceTheVeil = 208628,
            Witchdoctor_Passive_FierceLoyalty = 208639,
            CollectorsEditionBuff = 208706,
            DemonHunter_Passive_Grenadier = 208779,
            Wizard_Passive_ArcaneDynamo = 208823,
            Monk_Passive_ExaltedSoul = 209027,
            Monk_Passive_FleetFooted = 209029,
            Witchdoctor_Passive_VisionQuest = 209041,
            Monk_Passive_BeaconOfYtar = 209104,
            Butcher_OnDeath = 209203,
            Monk_Passive_Transcendence = 209250,
            TentacleHorse_A_Unique_01_Charge = 209509,
            Monk_Passive_SixthSense = 209622,
            Monk_Passive_SeizeTheInitiative = 209628,
            Despair_Teleport_Away = 209700,
            DemonHunter_Passive_Archery = 209734,
            Monk_Passive_TheGuardiansPath = 209812,
            MonsterAffix_ChampionBuff = 210333,
            DemonHunter_Passive_Brooding = 210801,
            DemonHunter_Passive_ThrillOfTheHunt = 211225,
            Gluttony_Loogiespawn = 211292,
            Monk_Passive_Resolve = 211581,
            Azmodan_Turning = 211856,
            Azmodan_Taunt = 211934,
            ActorLoadingBuff = 212032,
            MistressOfPain_Ascend = 212136,
            MistressOfPain_Descend = 212237,
            MistressOfPain_SummonSpiders_Airborne = 212239,
            a3dun_crater_Demon_GroundTrap_GasChamber_FireOnly = 212330,
            Taunted_Monster_Ranged_Projectile = 212952,
            Taunted_Weapon_Melee_Instant = 212953,
            Shrine_Call_Monster = 213187,
            SandMonster_BurrowOut = 213730,
            MonsterAffix_ArcaneEnchanted = 214594,
            Diablo_GetHit = 214668,
            MonsterAffix_ArcaneEnchantedCast = 214791,
            Diablo_FireMeteor = 214831,
            MonsterAffix_Mortar = 215756,
            MonsterAffix_MortarCast = 215757,
            SelectingSkill = 217340,
            AI_TownWalkTo_Guaranteed = 217618,
            Barbarian_Passive_NervesOfSteel = 217819,
            Witchdoctor_Passive_BadMedicine = 217826,
            Witchdoctor_Passive_JungleFortitude = 217968,
            Wizard_Passive_Conflagration = 218044,
            Witchdoctor_Passive_GraveInjustice = 218191,
            DemonHunter_Passive_NightStalker = 218350,
            DemonHunter_Passive_TacticalAdvantage = 218385,
            DemonHunter_Passive_NumbingTraps = 218398,
            Monk_Passive_CombinationStrike = 218415,
            Witchdoctor_Passive_SpiritVessel = 218501,
            Witchdoctor_Passive_FetishSycophants = 218588,
            Rockworm_Grab = 219076,
            Diablo_Teleport = 219598,
            MonsterAffix_ArcaneEnchanted_New_PetBasic = 219671,
            a4dun_Spire_CorruptionGeyser = 219695,
            ActorInTownBuff = 220304,
            UseDungeonStone = 220318,
            a4dun_spire_Spike_Trap = 220634,
            Enchantress_ScorchedEarth = 220872,
            Witchdoctor_PlagueOfToads_BigToad_TongueSlap = 220908,
            MonsterAffix_ArcaneEnchanted_Champion = 221130,
            MonsterAffix_DesecratorBuff_Champion = 221131,
            MonsterAffix_VortexBuff_Champion = 221132,
            MonsterAffix_ArcaneEnchanted_Minion = 221219,
            SkillOverrideStartedOrEnded = 221275,
            PvP_HealingMacguffin = 222243,
            MonsterAffix_Jailer = 222743,
            MonsterAffix_JailerCast = 222744,
            MonsterAffix_Jailer_Champion = 222745,
            a4dun_spire_firewall = 223284,
            a4Dun_HellFissure = 223286,
            Monk_CycloneStrike = 223473,
            WorldCreatingBuff = 223604,
            a4dun_Heaven_HellRift_FallingRocks_A = 223721,
            a4dun_Heaven_HellRift_FallingRocks_B = 223722,
            a2dun_Zolt_Tesla_Tower_Lightning_spawnAttack = 223731,
            a2dun_Zolt_Tesla_Tower_Fire_spawnAttack = 223738,
            a2dun_Zolt_Tesla_Tower_Cold_spawnAttack = 223739,
            a2dun_Zolt_Tesla_Tower_Poison_spawnAttack = 223740,
            Sandmonster_Weapon_Melee_Instant = 223914,
            ActorGhostedBuff = 224639,
            CannotDieDuringBuff = 225599,
            MonsterAffix_Avenger_Champion = 226289,
            MonsterAffix_Avenger_Buff = 226292,
            MonsterAffix_Waller = 226293,
            MonsterAffix_WallerCast = 226294,
            Wizard_Passive_ColdBlooded = 226301,
            Wizard_Passive_Paralysis = 226348,
            MonsterAffix_Shielding = 226437,
            MonsterAffix_ShieldingCast = 226438,
            MonsterAffix_Linked = 226497,
            SoulRipper_Despair_TongueLash = 226572,
            Witchdoctor_FetishArmy_Melee = 226690,
            Witchdoctor_ZombieDog_Melee = 226692,
            IdentifyWithCast = 226757,
            DH_Companion_MeleeAttack = 227240,
            trDun_Cath_WallCollapse_Damage_offset = 227949,
            DebuffBleed = 228423,
            SiegebreakerDemon_Roar = 228688,
            Manual_Walk = 229128,
            Enchantress_Melee_Instant = 230238,
            Templar_Melee_Instant = 230239,
            Rockworm_Grab_BurstOut = 230406,
            g_killElitePack = 230745,
            MonsterAffix_ReflectsDamage = 230877,
            AI_Follow_MeleeLead_Pet = 231004,
            MonsterAffix_PlaguedCast = 231115,
            MonsterAffix_WallerRare = 231117,
            MonsterAffix_WallerRareCast = 231118,
            MonsterAffix_FrozenCast = 231149,
            MonsterAffix_FrozenRare = 231157,
            BannerDropPVP = 234255,
            PvP_LevelEqualizerBuff = 234527,
            x1_Bog_Plant_explodeKnockback = 234539,
            x1_BogBlight_PustuleSpawn = 234556,
            x1_bog_bearTrap = 237495,
            IGR_Buff_EXP = 238686,
            x1_BogFamily_Brute_Charge = 238930,
            x1_BogFamily_Brute_ThrowDude = 238965,
            x1_BogFamily_Brute_Shout = 239018,
            X1_Crusader_SweepAttack = 239042,
            X1_Crusader_FallingSword = 239137,
            X1_Crusader_FistOfTheHeavens = 239218,
            x1_BogFamily_Ranged_BearTrap = 239743,
            Siegebreaker_Enrage = 240529,
            Izual_Charge = 241651,
            Izual_FrozenCast = 241653,
            ZoltunKulle_TeleportToPlayer = 241753,
            Belial_LightningStrike_Enrage = 241757,
            Despair_Melee_CleaveEnrage = 241778,
            X1_Wizard_Wormhole = 243141,
            ZoltunKulle_TeleportToPlayer_Enrage = 243289,
            X1_Crusader_SteedCharge = 243853,
            A3Intro_CatapultAttack = 244155,
            x1_westm_Hoist_Trigger_onDeathPower = 244759,
            ItemPassive_Unique_CeremonialDagger_002 = 245835,
            ItemPassive_Unique_Dagger_007 = 245836,
            ItemPassive_Unique_Dagger_010 = 245837,
            ItemPassive_Unique_Axe_1H_003 = 245854,
            ItemPassive_Unique_Axe_1H_005 = 246101,
            ItemPassive_Unique_Axe_1H_007 = 246113,
            ItemPassive_Unique_Axe_2H_001 = 246118,
            ItemPassive_Unique_BarbBelt_003 = 246363,
            ItemPassive_Unique_Boots_007 = 246442,
            x1_ScaryEyes_BurrowInHidden = 246451,
            x1_ScaryEyes_BurrowOut = 246453,
            ItemPassive_Unique_Chest_001 = 246515,
            ItemPassive_Unique_CombatStaff_2H_009 = 246562,
            itemPassive_Unique_Amulet_001 = 246590,
            ItemPassive_Unique_Bow_008 = 246605,
            ItemPassive_Unique_HandXBow_012 = 246678,
            itemPassive_Unique_Amulet_003 = 246750,
            itemPassive_Unique_Staff_006 = 246780,
            itemPassive_Unique_Helm_003 = 246814,
            ItemPassive_Unique_Mighty_1H_006 = 246836,
            itemPassive_Unique_Mace_1H_002 = 246918,
            itemPassive_Unique_Pants_007 = 247009,
            itemPassive_Unique_Shield_008 = 247053,
            itemPassive_Unique_WizardHat_004 = 247090,
            MonsterAffix_Nightmarish = 247258,
            ItemPassive_Unique_XBow_001 = 247429,
            ItemPassive_Unique_XBow_012 = 247430,
            itemPassive_Unique_Mace_1H_009 = 247484,
            ItemPassive_Unique_Sword_2H_004 = 247537,
            ItemPassive_Unique_Shoulder_009 = 247544,
            itemPassive_Unique_Staff_007 = 247572,
            itemPassive_Unique_XBow_002 = 247577,
            itemPassive_Unique_Shield_011 = 247585,
            ItemPassive_Unique_Shoulder_002 = 247619,
            ItemPassive_Unique_Polearm_001 = 247641,
            ItemPassive_Unique_Sword_1H_004 = 247662,
            ItemPassive_Unique_Dagger_006 = 247769,
            ItemPassive_Unique_CombatStaff_2H_007 = 247777,
            ItemPassive_Unique_Ring_004 = 247797,
            ItemPassive_Unique_CeremonialDagger_008 = 247896,
            ItemPassive_Unique_Mace_2H_009 = 247913,
            x1_Wickerman_Aggro = 247959,
            x1_Wickerman_Suicide = 247960,
            x1_BogFamily_Brute_SummonMeleeAction = 247961,
            itemPassive_Unique_Amulet_011 = 248136,
            ItemPassive_Unique_Axe_2H_010 = 248462,
            ItemPassive_Unique_XBow_011 = 248480,
            ItemPassive_Unique_Mighty_1H_011 = 248481,
            ItemPassive_Unique_Axe_1H_006 = 248484,
            ItemPassive_Unique_Mojo_010 = 248489,
            ItemPassive_Unique_Mace_2H_006 = 248501,
            ItemPassive_Unique_Ring_020 = 248537,
            itemPassive_Unique_Wand_013 = 248686,
            ItemPassive_Unique_Ring_015 = 248763,
            ItemPassive_Unique_Bow_015 = 248817,
            ItemPassive_Unique_Ring_001 = 248880,
            ItemPassive_Unique_Fist_010 = 248928,
            ItemPassive_Unique_Sword_2H_010 = 249138,
            ItemPassive_Unique_Sword_1H_012 = 249592,
            ItemPassive_Unique_Mace_2H_003 = 249958,
            ItemPassive_Unique_Sword_1H_007 = 249967,
            ItemPassive_Unique_VoodooMask_002 = 251572,
            g_levelUp_AA = 252038,
            x1_deathMaiden_Spin_Attack_Prototype = 253326,
            x1_deathMaiden_Summon_prototype = 253328,
            x1_deathMaiden_PowerSlam_Prototype = 254440,
            x1_ScaryEyes_charge = 254946,
            BugWingsBuff = 255336,
            Dervish_Whirlwind_Mortar_Prototype = 256026,
            MorluSpellcaster_Meteor_GraspOfTheDead_Prototype = 256045,
            Unique_Monster_Earthquake_Prototype = 256059,
            Unique_Monster_TempestRush_Prototype = 256060,
            Uber_SkeletonKing_Summon_Skeleton = 256110,
            PandemoniumPortal = 257036,
            ItemPassive_Unique_Ring_024 = 257586,
            Templar_Heal_110 = 257640,
            Enchantress_MissileWard = 257687,
            Uber_Despair_SummonMinion = 257950,
            Uber_Gluttony_Loogiespawn = 257951,
            Uber_Maghda_Summon_Beserker = 257952,
            Multiplayer_Buff = 258199,
            Uber_SiegebreakerDemon_Stomp = 258635,
            Uber_SkeletonKing_Cleave = 258636,
            Uber_SkeletonKing_Whirlwind = 258637,
            Uber_ZoltunKulle_Teleport = 258638,
            BelialArmProxy = 259123,
            IdentifyWithCastLegendary = 259848,
            Uber_SiegebreakerDemon_Pound = 259946,
            Uber_ZoltunKulle_SlowTime = 259947,
            Shrine_Desecrated_Hoarder = 260348,
            Shrine_Desecrated_Reloaded = 260349,
            TreasureGoblin_PlayAlertSound = 260595,
            Unique_Monster_IceTrail_Passive_Prototype = 260815,
            Uber_Despair_Melee_Cleave = 260844,
            Uber_Despair_Teleport = 260845,
            Uber_Despair_Volley = 260847,
            Uber_Gluttony_Breath_Attack = 260848,
            Uber_Gluttony_Gas_Cloud = 260849,
            Uber_ZoltunKulle_CollapseCeiling = 260851,
            Uber_ZoltunKulle_EnergyTwister = 260852,
            Uber_ZoltunKulle_FieryBoulder = 260853,
            Uber_Maghda_Punish = 260976,
            Uber_Maghda_Punish_Shielded = 260977,
            Pages_Buff_Damage = 262935,
            Pages_Buff_Electrified = 263029,
            Weapon_Melee_Instant_ShortEscape = 263041,
            x1_Catacombs_Door_A_onDeath = 263272,
            MorluSpellcaster_BreathOfFrost = 263415,
            MonsterAffix_IllusionistCast = 264185,
            X1_Wraith_Melee = 265587,
            PVP_controlpoint = 265723,
            X1_Wraith_PiercingDash = 265911,
            Pages_Buff_Invulnerable = 266254,
            Pages_Buff_Infinite_Casting = 266258,
            Pages_Buff_Run_Speed = 266271,
            X1_Crusader_Condemn = 266627,
            X1_Crusader_LawsOfJustice = 266722,
            X1_Crusader_BlessedHammer = 266766,
            X1_Crusader_BlessedShield = 266951,
            x1_Catacombs_Floor_Runes_A_onDeath = 267289,
            PVP_hill = 267462,
            X1_Crusader_Judgment = 267600,
            X1_Crusader_CrushingResolve = 267818,
            X1_Crusader_ShieldGlare = 268530,
            PVP_spawner_setup = 268588,
            X1_Crusader_AkaratsChampion = 269032,
            Shrine_Desecrated_treasureGoblin = 269350,
            Unique_Monster_Generic_AOE_Nova = 270004,
            Unique_Monster_Generic_AOE_Targeted = 270040,
            Unique_Monster_Generic_Summon = 270043,
            DuelBuff = 270058,
            x1_Pand_Maze_PortalTest_Power = 270752,
            x1_PortalMonster_BurrowOut = 270782,
            x1_PortalMonster_BurrowIn = 270783,
            x1_PortalMonster_LifetimeBuff = 270784,
            x1_armorScavenger_buff = 271621,
            x1_armorScavenger_BurrowOut = 271740,
            x1_RockFodder_Charge = 271815,
            x1_pandExt_Ranged_Prototype = 272299,
            PVP_spawner_TowerDefenders = 272501,
            x1_armorScavenger_BurrowIn = 273462,
            X1_Crusader_Consecration = 273941,
            PVP_Stationary_attack = 274304,
            x1_Pand_SniperAngel_rangedAttack = 274493,
            P4_SpiderBomb_AOD_Damage = 274506,
            DuelDefeatBuff = 275135,
            P4_SpiderBomb_BurrowIn = 275328,
            CompanionBuff = 275399,
            PVP_Shrine_Murderball = 275730,
            X1_PandInt_SplitMonster_split = 276298,
            X1_PandInt_SplitMonster_merge = 276351,
            MonsterAffix_Healing = 276798,
            PVP_ThreeControl_SpawnDefenders = 276805,
            x1_BogBlight_BurrowIn = 276820,
            PVP_Peanut_NeutralObjective = 276837,
            x1_BogBlight_BurrowOut = 276843,
            x1_Pand_LeaperAngel_Leap = 277005,
            Shrine_Power_Blessed = 278268,
            Shrine_Power_Enlightened = 278269,
            Shrine_Power_Fortune = 278270,
            Shrine_Power_Frenzied = 278271,
            Uber_Maghda_MothDust = 278341,
            x1_Westmarch_Brute_Charge = 278970,
            x1_Westmarch_Brute_Decapitate = 278971,
            x1_Westmarch_Brute_Vomit = 278972,
            X1_PortalMonster_Stomp = 279029,
            x1_Pand_SniperAngel_closeRangedAttack = 279220,
            x1_Adria_JumpBack = 284247,
            X1_Crusader_Bombardment = 284876,
            MonsterAffix_ReflectsDamageCast = 285770,
            X1_Crusader_Punish = 285903,
            _x1westm_ideation_event_RATZNGGOLD = 285955,
            X1_Crusader_Passive_HeavenlyStrength = 286177,
            X1_Crusader_Smite = 286510,
            X1_temp_ballista_switch_leap = 286732,
            g_paragonBuff = 286747,
            X1_WickerMan_FirePhantom = 288538,
            X1_Bog_KingOfTheHill_Leap = 288754,
            X1_Crusader_Slash = 289243,
            x1_westmarchRanged_SlowAreaDenial_Prototype = 289870,
            x1_westmarchRanged_RangedAttack_Prototype = 289871,
            X1_Crusader_Provoke = 290545,
            x1_Adria_Arena_FloorPanelFire = 290708,
            Teleport_CheckPath_Passability = 290885,
            X1_Crusader_LawsOfHope = 290912,
            X1_Crusader_LawsOfValor = 290946,
            X1_Crusader_LawsOfFate = 290960,
            x1_Wraith_ChargeClose = 291711,
            X1_Crusader_IronSkin = 291804,
            x1_Urzael_FlameSweep = 292061,
            X1_Asteroid_Spawn = 292865,
            x1_Adria_DelayedTeleport_Start = 293151,
            x1_Adria_DelayedTeleport_Attack = 293152,
            x1_Imperius_LeapSmash = 293355,
            x1_Imperius_Cleave = 293555,
            IdentifyAllWithCast = 293981,
            X1_Barbarian_Passive_Rampage = 296572,
            X1_Wizard_Passive_UnwaveringWill = 298038,
            x1_Adria_Arena_FloorPanelStart = 298181,
            x1_Ghost_SoulSiphon = 298686,
            x1_GhostWalkThroughWalls = 299066,
            x1_Challenge_Buff_Immune_Stun = 299410,
            Console_PowerGlobe = 300082,
            x1_SkeletonArcher_FireArrow = 300136,
            X1_pandemonium_ideation_timeStopBuff = 300679,
            x1_PandExt_ideation_bacon_beaconOnDeath = 300721,
            _x1_PandExt_Ideation_War_Spawner_Angel = 301247,
            _x1_PandExt_Ideation_War_Spawner_Demon = 301248,
            X1_westm_Soul_summoner_setup = 301826,
            x1_Cesspool_Slime_Posion_Attack = 301930,
            x1_portalGuardianMinion_projectile = 302416,
            X1_Crusader_Passive_HoldYourGround = 302500,
            X1_DemonHunter_Vengeance = 302846,
            X1_Westm_Convert = 306381,
            X1_Westm_Convert_AoE = 307341,
            x1_Urzael_Melee_Instant = 308295,
            X1_MonsterAffix_CorpseBomberCast = 308318,
            X1_MonsterAffix_CorpseBomber = 308319,
            Witchdoctor_Gargantuan_PoisonCloud = 308827,
            Witchdoctor_ZombieDog_FireAoE = 309100,
            X1_MonsterAffix_CorpseBomberRare = 309247,
            X1_MonsterAffix_CorpseBomberRareCast = 309248,
            X1_Crusader_Passive_Indestructible = 309830,
            X1_LR_CreepMob_Multiple_Arm_Attack = 309921,
            Witchdoctor_ZombieDog_PoisonDoT = 310071,
            X1_Crusader_Passive_Vigilant = 310626,
            X1_Crusader_Passive_Insurmountable = 310640,
            X1_Crusader_Passive_LongArmOfTheLaw = 310678,
            X1_Crusader_Passive_Wrathful = 310775,
            X1_Crusader_Passive_IronMaiden = 310783,
            X1_Crusader_Passive_HolyCause = 310804,
            Anniversary_Buff_EXPMF = 311167,
            X1_Crusader_Passive_Finery = 311629,
            DebuffCharmed = 311910,
            DebuffFireDamageProc = 312061,
            DebuffPoisonDamageProc = 312062,
            X1_Monk_Epiphany = 312307,
            X1_Monk_DashingStrike = 312736,
            DebuffForceGripped = 312799,
            X1_westm_Soul_Summoner_Summon = 313229,
            AI_Backpedal = 313697,
            x1_SkeletonArcher_FireArrowBackpedal = 313920,
            X1_Westm_Convert_DelayedStartFromTarget = 313957,
            x1_Skeleton_Strafe = 314835,
            X1_westm_Unique_ghostLord_shockwave = 315014,
            x1_Skeleton_Stab = 315052,
            X1_Monk_Passive_MythicRhythm = 315271,
            X1_Kyla_falldownanimation = 315448,
            X1_Kyla_shieldup = 315450,
            X1_Kyla_cheer = 315456,
            X1_Crusader_HeavensFury3 = 316014,
            WallMonsterSpawnSiegeBreaker = 316261,
            X1_Monk_InnerSanctuary = 317076,
            RedWingsBuff = 317139,
            ItemPassive_Unique_Ring_500_x1 = 318241,
            TeleportToPlayer = 318242,
            ItemPassive_Unique_Ring_501_x1 = 318300,
            ItemPassive_Unique_Ring_502_x1 = 318346,
            ItemPassive_Unique_Ring_503_x1 = 318347,
            ItemPassive_Unique_Ring_504_x1 = 318348,
            ItemPassive_Unique_Ring_505_x1 = 318349,
            ItemPassive_Unique_Ring_506_x1 = 318351,
            ItemPassive_Unique_Ring_507_x1 = 318358,
            ItemPassive_Unique_Ring_508_x1 = 318359,
            ItemPassive_Unique_Ring_509_x1 = 318360,
            ItemPassive_Unique_Ring_510_x1 = 318371,
            ItemPassive_Unique_Ring_511_x1 = 318372,
            ItemPassive_Unique_Ring_512_x1 = 318374,
            ItemPassive_Unique_Ring_513_x1 = 318375,
            ItemPassive_Unique_Ring_514_x1 = 318376,
            ItemPassive_Unique_Ring_515_x1 = 318377,
            ItemPassive_Unique_Ring_516_x1 = 318378,
            ItemPassive_Unique_Ring_517_x1 = 318379,
            ItemPassive_Unique_Ring_518_x1 = 318380,
            ItemPassive_Unique_Ring_519_x1 = 318381,
            ItemPassive_Unique_Ring_520_x1 = 318382,
            ItemPassive_Unique_Ring_521_x1 = 318383,
            ItemPassive_Unique_Ring_522_x1 = 318384,
            ItemPassive_Unique_Ring_523_x1 = 318385,
            ItemPassive_Unique_Ring_524_x1 = 318386,
            ItemPassive_Unique_Ring_525_x1 = 318410,
            ItemPassive_Unique_Ring_526_x1 = 318411,
            ItemPassive_Unique_Ring_527_x1 = 318412,
            ItemPassive_Unique_Ring_528_x1 = 318417,
            ItemPassive_Unique_Ring_529_x1 = 318418,
            ItemPassive_Unique_Ring_530_x1 = 318419,
            ItemPassive_Unique_Ring_531_x1 = 318420,
            ItemPassive_Unique_Ring_532_x1 = 318421,
            ItemPassive_Unique_Ring_533_x1 = 318423,
            ItemPassive_Unique_Ring_534_x1 = 318426,
            ItemPassive_Unique_Ring_535_x1 = 318427,
            ItemPassive_Unique_Ring_536_x1 = 318428,
            ItemPassive_Unique_Ring_537_x1 = 318430,
            ItemPassive_Unique_Ring_538_x1 = 318431,
            ItemPassive_Unique_Ring_539_x1 = 318432,
            ItemPassive_Unique_Ring_540_x1 = 318433,
            ItemPassive_Unique_Ring_541_x1 = 318434,
            ItemPassive_Unique_Ring_542_x1 = 318435,
            ItemPassive_Unique_Ring_543_x1 = 318436,
            ItemPassive_Unique_Ring_544_x1 = 318715,
            ItemPassive_Unique_Ring_545_x1 = 318716,
            ItemPassive_Unique_Ring_546_x1 = 318717,
            ItemPassive_Unique_Ring_547_x1 = 318718,
            ItemPassive_Unique_Ring_548_x1 = 318719,
            ItemPassive_Unique_Ring_549_x1 = 318720,
            ItemPassive_Unique_Ring_550_x1 = 318721,
            ItemPassive_Unique_Ring_551_x1 = 318722,
            ItemPassive_Unique_Ring_552_x1 = 318724,
            ItemPassive_Unique_Ring_553_x1 = 318730,
            ItemPassive_Unique_Ring_554_x1 = 318731,
            ItemPassive_Unique_Ring_555_x1 = 318732,
            ItemPassive_Unique_Ring_556_x1 = 318733,
            ItemPassive_Unique_Ring_557_x1 = 318734,
            ItemPassive_Unique_Ring_558_x1 = 318740,
            ItemPassive_Unique_Ring_559_x1 = 318741,
            ItemPassive_Unique_Ring_560_x1 = 318742,
            ItemPassive_Unique_Ring_561_x1 = 318743,
            ItemPassive_Unique_Ring_562_x1 = 318744,
            ItemPassive_Unique_Ring_563_x1 = 318745,
            ItemPassive_Unique_Ring_564_x1 = 318746,
            ItemPassive_Unique_Ring_565_x1 = 318747,
            ItemPassive_Unique_Ring_566_x1 = 318748,
            ItemPassive_Unique_Ring_567_x1 = 318749,
            ItemPassive_Unique_Ring_568_x1 = 318750,
            ItemPassive_Unique_Ring_569_x1 = 318751,
            ItemPassive_Unique_Ring_570_x1 = 318752,
            ItemPassive_Unique_Ring_571_x1 = 318753,
            ItemPassive_Unique_Ring_572_x1 = 318754,
            ItemPassive_Unique_Ring_573_x1 = 318755,
            ItemPassive_Unique_Ring_574_x1 = 318756,
            ItemPassive_Unique_Ring_575_x1 = 318757,
            ItemPassive_Unique_Ring_576_x1 = 318758,
            ItemPassive_Unique_Ring_577_x1 = 318759,
            ItemPassive_Unique_Ring_578_x1 = 318760,
            ItemPassive_Unique_Ring_579_x1 = 318761,
            ItemPassive_Unique_Ring_580_x1 = 318762,
            ItemPassive_Unique_Ring_581_x1 = 318763,
            ItemPassive_Unique_Ring_582_x1 = 318764,
            ItemPassive_Unique_Ring_583_x1 = 318765,
            ItemPassive_Unique_Ring_584_x1 = 318766,
            ItemPassive_Unique_Ring_585_x1 = 318767,
            ItemPassive_Unique_Ring_586_x1 = 318768,
            ItemPassive_Unique_Ring_587_x1 = 318769,
            ItemPassive_Unique_Ring_588_x1 = 318770,
            ItemPassive_Unique_Ring_589_x1 = 318771,
            ItemPassive_Unique_Ring_590_x1 = 318772,
            ItemPassive_Unique_Ring_591_x1 = 318773,
            ItemPassive_Unique_Ring_592_x1 = 318774,
            ItemPassive_Unique_Ring_593_x1 = 318775,
            ItemPassive_Unique_Ring_594_x1 = 318776,
            ItemPassive_Unique_Ring_595_x1 = 318777,
            ItemPassive_Unique_Ring_596_x1 = 318778,
            ItemPassive_Unique_Ring_597_x1 = 318779,
            ItemPassive_Unique_Ring_598_x1 = 318780,
            ItemPassive_Unique_Ring_599_x1 = 318781,
            ItemPassive_Unique_Ring_600_x1 = 318782,
            ItemPassive_Unique_Ring_601_x1 = 318783,
            ItemPassive_Unique_Ring_602_x1 = 318784,
            ItemPassive_Unique_Ring_603_x1 = 318785,
            ItemPassive_Unique_Ring_604_x1 = 318786,
            ItemPassive_Unique_Ring_605_x1 = 318787,
            ItemPassive_Unique_Ring_606_x1 = 318788,
            ItemPassive_Unique_Ring_607_x1 = 318789,
            ItemPassive_Unique_Ring_608_x1 = 318790,
            ItemPassive_Unique_Ring_609_x1 = 318791,
            ItemPassive_Unique_Ring_610_x1 = 318792,
            ItemPassive_Unique_Ring_611_x1 = 318793,
            ItemPassive_Unique_Ring_612_x1 = 318794,
            ItemPassive_Unique_Ring_613_x1 = 318795,
            ItemPassive_Unique_Ring_614_x1 = 318796,
            ItemPassive_Unique_Ring_615_x1 = 318797,
            ItemPassive_Unique_Ring_616_x1 = 318798,
            ItemPassive_Unique_Ring_617_x1 = 318799,
            ItemPassive_Unique_Ring_618_x1 = 318800,
            ItemPassive_Unique_Ring_619_x1 = 318801,
            ItemPassive_Unique_Ring_620_x1 = 318802,
            ItemPassive_Unique_Ring_621_x1 = 318803,
            ItemPassive_Unique_Ring_622_x1 = 318804,
            ItemPassive_Unique_Ring_623_x1 = 318805,
            ItemPassive_Unique_Ring_624_x1 = 318806,
            ItemPassive_Unique_Ring_625_x1 = 318807,
            ItemPassive_Unique_Ring_626_x1 = 318808,
            ItemPassive_Unique_Ring_627_x1 = 318809,
            ItemPassive_Unique_Ring_628_x1 = 318810,
            ItemPassive_Unique_Ring_629_x1 = 318811,
            ItemPassive_Unique_Ring_630_x1 = 318812,
            ItemPassive_Unique_Ring_631_x1 = 318813,
            ItemPassive_Unique_Ring_632_x1 = 318814,
            ItemPassive_Unique_Ring_633_x1 = 318815,
            ItemPassive_Unique_Ring_634_x1 = 318816,
            ItemPassive_Unique_Ring_635_x1 = 318817,
            ItemPassive_Unique_Ring_636_x1 = 318818,
            ItemPassive_Unique_Ring_637_x1 = 318819,
            ItemPassive_Unique_Ring_638_x1 = 318820,
            ItemPassive_Unique_Ring_639_x1 = 318821,
            ItemPassive_Unique_Ring_640_x1 = 318822,
            ItemPassive_Unique_Ring_641_x1 = 318823,
            ItemPassive_Unique_Ring_642_x1 = 318824,
            ItemPassive_Unique_Ring_643_x1 = 318825,
            ItemPassive_Unique_Ring_644_x1 = 318826,
            ItemPassive_Unique_Ring_645_x1 = 318827,
            ItemPassive_Unique_Ring_646_x1 = 318828,
            ItemPassive_Unique_Ring_647_x1 = 318829,
            ItemPassive_Unique_Ring_648_x1 = 318830,
            ItemPassive_Unique_Ring_649_x1 = 318831,
            ItemPassive_Unique_Ring_650_x1 = 318832,
            ItemPassive_Unique_Ring_651_x1 = 318833,
            ItemPassive_Unique_Ring_652_x1 = 318834,
            ItemPassive_Unique_Ring_653_x1 = 318835,
            ItemPassive_Unique_Ring_654_x1 = 318849,
            ItemPassive_Unique_Ring_655_x1 = 318850,
            ItemPassive_Unique_Ring_656_x1 = 318851,
            ItemPassive_Unique_Ring_657_x1 = 318852,
            ItemPassive_Unique_Ring_658_x1 = 318853,
            ItemPassive_Unique_Ring_659_x1 = 318854,
            ItemPassive_Unique_Ring_660_x1 = 318855,
            ItemPassive_Unique_Ring_661_x1 = 318856,
            ItemPassive_Unique_Ring_662_x1 = 318857,
            ItemPassive_Unique_Ring_663_x1 = 318858,
            ItemPassive_Unique_Ring_664_x1 = 318860,
            ItemPassive_Unique_Ring_665_x1 = 318861,
            ItemPassive_Unique_Ring_666_x1 = 318862,
            ItemPassive_Unique_Ring_667_x1 = 318863,
            ItemPassive_Unique_Ring_668_x1 = 318864,
            ItemPassive_Unique_Ring_669_x1 = 318865,
            ItemPassive_Unique_Ring_670_x1 = 318866,
            ItemPassive_Unique_Ring_671_x1 = 318867,
            ItemPassive_Unique_Ring_672_x1 = 318868,
            ItemPassive_Unique_Ring_673_x1 = 318869,
            ItemPassive_Unique_Ring_674_x1 = 318870,
            ItemPassive_Unique_Ring_675_x1 = 318871,
            ItemPassive_Unique_Ring_676_x1 = 318872,
            ItemPassive_Unique_Ring_677_x1 = 318873,
            ItemPassive_Unique_Ring_678_x1 = 318874,
            ItemPassive_Unique_Ring_679_x1 = 318875,
            ItemPassive_Unique_Ring_680_x1 = 318876,
            ItemPassive_Unique_Ring_681_x1 = 318877,
            ItemPassive_Unique_Ring_682_x1 = 318878,
            ItemPassive_Unique_Ring_683_x1 = 318879,
            ItemPassive_Unique_Ring_684_x1 = 318880,
            ItemPassive_Unique_Ring_685_x1 = 318881,
            ItemPassive_Unique_Ring_686_x1 = 318882,
            ItemPassive_Unique_Ring_687_x1 = 318883,
            ItemPassive_Unique_Ring_688_x1 = 318884,
            ItemPassive_Unique_Ring_689_x1 = 318885,
            ItemPassive_Unique_Ring_690_x1 = 318886,
            ItemPassive_Unique_Ring_691_x1 = 318887,
            ItemPassive_Unique_Ring_692_x1 = 318888,
            ItemPassive_Unique_Ring_693_x1 = 318889,
            ItemPassive_Unique_Ring_694_x1 = 318890,
            ItemPassive_Unique_Ring_695_x1 = 318891,
            ItemPassive_Unique_Ring_696_x1 = 318892,
            ItemPassive_Unique_Ring_697_x1 = 318893,
            ItemPassive_Unique_Ring_698_x1 = 318894,
            ItemPassive_Unique_Ring_699_x1 = 318895,
            x1_westm_Soul_Summoner_Orb_SummonNearTarget = 319534,
            X1_SummonVanityPet = 319739,
            X1_Pand_Fortress_Ordnance_Mine = 321168,
            X1_Pand_Fortress_Ordnance_Shocker = 321860,
            X1_Pand_Fortress_Ordnance_ChronoField = 321861,
            x1_armorScavenger_PreBurrow = 322380,
            x1_PandExt_Collapsing_Pillar = 322467,
            X1_RockFodder_FuriousCharge = 322494,
            X1_NightScreamer_FuriousCharge = 322542,
            ItemPassive_Unique_Axe_2H_012_x1 = 322974,
            ItemPassive_Unique_Ring_025_x1 = 322975,
            ItemPassive_Unique_Boots_020_x1 = 322976,
            ItemPassive_Unique_Helm_017_x1 = 322977,
            ItemPassive_Unique_Amulet_017_x1 = 322978,
            ItemPassive_Unique_Dagger_103_x1 = 322979,
            ItemPassive_Unique_Belt_016_x1 = 322980,
            x1_pandExt_Ranged_Prototype_StrafeLeft = 323070,
            x1_pandExt_Ranged_Prototype_StrafeRight = 323071,
            x1_rockworm_pand_projectile = 323210,
            X1_Pand_Ext_Ram_Knockback = 323354,
            X1_Crusader_LawsOfHope_Passive = 323370,
            X1_Crusader_LawsOfFate_Passive = 323371,
            X1_Crusader_LawsOfJustice_Passive = 323386,
            X1_Crusader_LawsOfValor_Passive = 323387,
            x1_Malthael_Mephisto_SkullMissile = 323604,
            x1_PortalMonster_Swipe = 323805,
            X1_DemonHunter_Passive_Awareness = 324770,
            x1_abattoir_furnace_01 = 324819,
            DemonHunter_Preparation_Passive = 324845,
            x1_Malthael_Baal_Hoarfrost = 324846,
            x1_NightScreamer_ScreamAttack = 324956,
            X1_PortalMonster_PortalSummon = 325081,
            x1_Malthael_DeathFogMonster_Setup = 325140,
            X1_Malthael_SummonDeathFogMonster = 325184,
            X1_Crusader_Justice = 325216,
            x1_Malthael_SwordShieldStart = 325648,
            x1_Malthael_SwordShieldStop = 325649,
            ItemPassive_Unique_Ring_513_AI_Pickup_x1 = 326968,
            BurrowInSetup2HSwing = 327086,
            BurrowInSetupStaff = 327088,
            X1_LifetimeBuff_AbsorbNonPlayerDamage = 327306,
            AI_Backpedal_OneShotThroughActors = 327537,
            x1_RockFodder_Tumble = 327540,
            X1_Malthael_DrainSoul = 327766,
            X1_Malthael_SickleThrowTeleport = 327847,
            X1_MonsterAffix_LightningStorm = 328052,
            X1_MonsterAffix_LightningStormCast = 328053,
            x1_Malthael_Mephisto_AIState = 328712,
            x1_Malthael_Baal_AIState = 328714,
            x1_Malthael_Diablo_AIState = 328715,
            X1_Westm_Convert_Scripted = 328861,
            Knockback_ThroughOwnedByTeam = 329195,
            FallingSword_CheckPath_Passability = 329401,
            x1_Pand_Brute_Decapitate_Slide = 329848,
            X1_Westm_Convert_DelayedStart2 = 330009,
            X1_Westm_Convert2 = 330011,
            X1_PortalMonster_RoarSummon = 330047,
            x1_Malthael_Baal_FesteringAppendage_Melee = 330055,
            x1_Malthael_Baal_SummonFesteringAppendages = 330063,
            x1_Malthael_Baal_Rift = 330084,
            X1_Asteroid_Pool = 330129,
            x1_Malthael_PhaseOne_AIState = 330358,
            x1_Malthael_PhaseTwo_AIState = 330360,
            x1_Malthael_Mephisto_PoisonCloud = 330366,
            Fallen_Lunatic_Aggro_B = 330501,
            X1_Asteroid_Basic = 330593,
            Rockworm_BurrowAndTeleport = 330606,
            x1_Pand_Rockworm_BurstOut = 330626,
            x1_Fortress_Rotating_Door = 330641,
            x1_Crusader_Phalanx3 = 330729,
            x1_Adria_CauldronSpawner_LifetimeBuff = 330783,
            x1_Adria_CauldronSpawner_Activate = 330791,
            Fallen_Lunatic_Aggro_C = 330800,
            Fallen_Lunatic_Aggro_D = 330802,
            X1_MonsterAffix_LightningStorm_TagTarget = 332683,
            x1_MonsterAffix_LightningStorm_AI_Close = 332756,
            X1_ShardPassive_FakeGlobes = 333071,
            X1_ShardPassive_MinResource = 333072,
            x1_PortalGuardian_Turning = 334633,
            X1_Fortress_JudgeEvent_SpawnKnockback = 334740,
            x1_Malthael_Diablo_TeleportFireNovaLightning = 334760,
            X1_NegativeHealthGlobe_Flash = 334807,
            ItemPassive_Unique_Amulet_105_x1 = 334880,
            ItemPassive_Unique_Bracer_105_x1 = 334881,
            ItemPassive_Unique_Dagger_011_x1 = 334882,
            ItemPassive_Unique_Shoulder_103_x1 = 334883,
            DualWield_Scripted = 335158,
            DualWield_Scripted_Remove = 335253,
            X1_WestmarchHound_DeadPlayerTauntSearch = 335449,
            X1_WestmarchHound_DeadPlayerTaunt = 335450,
            x1_Bog_BogWater = 335458,
            X1_WestmarchHound_ShakeTarget = 335522,
            x1_Bog_BogWater_medium = 335789,
            x1_Bog_BogWater_large = 335795,
            x1_DarkAngel_SoulRush = 335991,
            MonsterAffix_ThunderstormBuff = 336177,
            MonsterAffix_ThunderstormBuff_Champion = 336178,
            MonsterAffix_ThunderstormCast = 336179,
            x1_BogFamily_Ranged_RapidShot = 336527,
            X1_MonsterAffix_TeleportMines = 337106,
            X1_MonsterAffix_TeleportMinesCast = 337107,
            x1_NightScreamer_AllyBiteTransform = 338025,
            x1_BogFamily_Melee_Transform = 338049,
            itemPassive_Unique_Helm_003_x1 = 338061,
            x1_NightScreamer_CanTransform = 338114,
            x1_Udder_Lightning = 338723,
            X1_DemonHunter_Passive_SingleOut = 338859,
            X1_Bog_Family_Guard_Tower_Setup = 339982,
            x1_BogFamily_Ranged_RapidShotFromTower = 339985,
            x1_BogFamily_Ranged_RapidShotFromTowerReturnToFacing = 339986,
            x1_BogFamily_Ranged_BearTrapFromTower = 340026,
            x1_BogFamily_Ranged_BearTrapFromTowerReturnToFacing = 340041,
            x1_FloaterAngel_Transform = 340083,
            x1_FloaterAngel_Teleport = 340168,
            x1_FloaterAngel_LightningBeam = 340186,
            Pages_Buff_Electrified_Cast = 340227,
            DisablePowerBuff_Infinite = 340708,
            X1_Adria_Boss_Arena_Gas_On0 = 340804,
            X1_Adria_Boss_Arena_Gas_Off0 = 340805,
            X1_Adria_Boss_Arena_Gas_Off1 = 340806,
            X1_Adria_Boss_Arena_Gas_On1 = 340807,
            x1_Malthael_HealthGlobeDropper = 340819,
            x1_Urzael_Cannonball = 340870,
            X1_Barbarian_Passive_SwordAndBoard = 340877,
            Witchdoctor_Passive_CreepingDeath = 340908,
            Witchdoctor_Passive_MidnightFeast = 340909,
            Witchdoctor_Passive_PhysicalAttunement = 340910,
            ItemPassive_Unique_Potion_01_x1 = 341335,
            ItemPassive_Unique_Potion_02_x1 = 341340,
            ItemPassive_Unique_Potion_03_x1 = 341341,
            x1_Wizard_Passive_ArcaneAegis = 341344,
            X1_Wizard_Passive_Audacity = 341540,
            X1_Monk_Passive_Momentum = 341559,
            x1_BogBlight_PustuleDeath = 341714,
            X1_armorScavenger_AsteroidRain = 341833,
            X1_LegendaryGenericPotionPowerup = 342078,
            X1_Crusader_LawsOfHope2 = 342279,
            X1_Crusader_LawsOfJustice2 = 342280,
            X1_Crusader_LawsOfValor2 = 342281,
            X1_Crusader_LawsOfValor_Passive2 = 342284,
            X1_Crusader_LawsOfJustice_Passive2 = 342286,
            X1_Crusader_LawsOfHope_Passive2 = 342299,
            X1_Wizard_Passive_ElementalExposure = 342326,
            x1_DarkAngel_Summon = 342349,
            ItemPassive_Unique_Boots_007_x1 = 342515,
            X1_FortressB_Visuals = 343407,
            X1_MonsterAffix_OrbiterCast = 343527,
            X1_MonsterAffix_Orbiter = 343528,
            X1_Legendary_Potion_06 = 344094,
            x1_Unique_NPC_Templar_Heal = 344096,
            x1_Unique_NPC_Templar_ShieldCharge = 344098,
            x1_Unique_NPC_Templar_Onslaught = 344099,
            ItemPassive_Unique_Bow_015_x1 = 344372,
            x1_Unique_NPC_Enchantress_MassCharm = 344565,
            X1_MonsterAffix_OrbiterChampion = 345214,
            X1_MonsterAffix_OrbiterChampionCast = 345215,
            x1_Unique_NPC_Enchantress_ForcefulPush = 345292,
            X1_Imperius_EnemyOrNothing = 345327,
            x1_Unique_NPC_Enchantress_ScorchedEarth = 345394,
            x1_Catacombs_Spirit_Totem_activate = 345943,
            x1_Urzael_PhaseTwo_AIState = 346027,
            x1_Urzael_PhaseOne_AIState = 346028,
            x1_Urzael_LeapKnockback = 346045,
            x1_Urzael_CeilingDebris = 346168,
            Unique_Monster_Generic_Projectile_AllPlayers = 346247,
            X1_Challenge_Lure_SupersizeLure = 346299,
            x1_Unique_TriuneSummoner_Projectile = 346525,
            x1_Ghost_SoulSiphon_Fire = 346561,
            x1_Ghost_Dark_SoulSiphon = 346580,
            BurrowInSetupHidden = 346610,
            DeleteSelfAnim = 346635,
            X1_Pand_HexMaze_PortalChampSummon = 347156,
            Witchdoctor_Piranhas = 347265,
            x1_Malthael_Mephisto_TeleportExplodeOrbs = 347681,
            x1_Urzael_Cannonball_Burning = 347799,
            x1_Urzael_CeilingDebris_Burning = 347842,
            X1_PandExt_TimeTrap = 347846,
            X1_WickerMan_FireNova = 348207,
            x1_Malthael_Mephisto_SummonRotatingLightning = 348226,
            X1_MonsterAffix_LightningStorm_Pulse = 348532,
            X1_Crusader_Passive_LordCommander = 348741,
            X1_Crusader_Passive_Blunt = 348773,
            x1_MoleMutant_Ranged_Projectile = 349044,
            TeleportToWaypoint = 349060,
            x1_MoleMutant_Shaman_Blast = 349528,
            X1_MonsterAffix_LightningStorm_KillSelf = 349748,
            X1_MonsterAffix_LightningStormChampion = 349751,
            x1_MoleMutantEnragedCombo = 350022,
            x1_MoleMutant_Shaman_Resurrect = 350639,
            X1_DemonHunter_Passive_Ambush = 352920,
            X1_Barbarian_Avalanche_v2 = 353447,
            X1_Barbarian_Avalanche_v2_Passive = 353458,
            X1_Crusader_ShieldBash2 = 353492,
            X1_Malthael_SummonFloaterAngel = 354045,
            X1_LR_Boss_BigRed_Izual_FrostNova = 354164,
            x1_Adria_WingSweep_Left = 354328,
            x1_Adria_WingSweep_Right = 354340,
            x1_Malthael_Mephisto_SpawnInvisLightningProxies = 354617,
            X1_LR_Boss_demonFlyerMega_FireBreath = 354687,
            x1_Abattoir_furnaceSpinner = 354796,
            x1_Abattoir_furnaceSpinner_fireBeam_clockwise = 354856,
            x1_MoleMutant_Ranged_JumpBack_Shot = 354881,
            x1_Abattoir_furnaceSpinner_fireBeam_counterClockwise = 354884,
            X1_westm_doomedWoman_visual = 354949,
            x1_Abattoir_furnaceWall = 355369,
            BlockChance_10 = 355392,
            x1_Abattoir_furnaceSpinner_fireBeam_clockwise_Event = 355457,
            x1_Abattoir_furnaceSpinner_fireBeam_counterClockwise_Event = 355458,
            x1_ZombieFemale_Projectile_Poison = 355496,
            x1_BogFamily_Brute_SummonMeleeAction_Unique = 355511,
            x1_Adria_CauldronSpawner_RoomPools = 355825,
            x1_Adria_CauldronSpawner_RoomPoolsInner = 355826,
            x1_Adria_CauldronSpawner_RoomPoolsOuter = 355827,
            X1_Crusader_Passive_ToweringShield = 356052,
            X1_Crusader_Passive_Righteousness = 356147,
            X1_Crusader_Passive_Renewal = 356173,
            X1_Crusader_Passive_DivineFortress = 356176,
            X1_Passive_BountyScroll = 356461,
            X1_Passive_BountyScroll_Experience = 356462,
            Knockback_NoLandingAnim = 356848,
            x1_Pand_Ext_Event_greatWeapon_summonMonsters = 357034,
            X1_Crusader_Passive_Fervor = 357218,
            X1_Crusader_Passive_NephalemMajesty = 357269,
            x1_FloaterAngel_Transform_Malthael = 357811,
            X1_Plagued_LacuniMale_Summon = 357878,
            x1_Malthael_Mephisto_SpiralLightning_Inward = 358059,
            x1_Pand_Ext_Event_greatWeapon_summonBoss = 358496,
            x1_Adria_CauldronSpawner_InitialPoolsBuff = 358590,
            DestructableObjectChandelier_AOE_Hoist = 358809,
            X1_Passive_BountyScroll_EliteDamage = 359128,
            X1_LR_Boss_SkeletonSummoner_Projectile = 359186,
            x1_FloaterAngel_LightningBeam_Malthael = 359519,
            ItemPassive_Unique_Ring_700_x1 = 359537,
            ItemPassive_Unique_Ring_701_x1 = 359538,
            ItemPassive_Unique_Ring_702_x1 = 359539,
            ItemPassive_Unique_Ring_703_x1 = 359540,
            ItemPassive_Unique_Ring_704_x1 = 359545,
            ItemPassive_Unique_Ring_705_x1 = 359546,
            ItemPassive_Unique_Ring_706_x1 = 359550,
            ItemPassive_Unique_Ring_707_x1 = 359552,
            ItemPassive_Unique_Ring_708_x1 = 359553,
            ItemPassive_Unique_Ring_709_x1 = 359554,
            ItemPassive_Unique_Ring_710_x1 = 359555,
            ItemPassive_Unique_Ring_711_x1 = 359556,
            ItemPassive_Unique_Ring_712_x1 = 359557,
            ItemPassive_Unique_Ring_713_x1 = 359558,
            ItemPassive_Unique_Ring_714_x1 = 359559,
            ItemPassive_Unique_Ring_715_x1 = 359560,
            ItemPassive_Unique_Ring_716_x1 = 359561,
            ItemPassive_Unique_Ring_717_x1 = 359562,
            ItemPassive_Unique_Ring_718_x1 = 359563,
            ItemPassive_Unique_Ring_719_x1 = 359564,
            ItemPassive_Unique_Ring_720_x1 = 359565,
            ItemPassive_Unique_Ring_721_x1 = 359566,
            ItemPassive_Unique_Ring_722_x1 = 359567,
            ItemPassive_Unique_Ring_723_x1 = 359568,
            ItemPassive_Unique_Ring_724_x1 = 359569,
            ItemPassive_Unique_Ring_725_x1 = 359570,
            ItemPassive_Unique_Ring_726_x1 = 359573,
            ItemPassive_Unique_Ring_727_x1 = 359574,
            ItemPassive_Unique_Ring_728_x1 = 359576,
            ItemPassive_Unique_Ring_729_x1 = 359577,
            ItemPassive_Unique_Ring_730_x1 = 359578,
            ItemPassive_Unique_Ring_731_x1 = 359579,
            ItemPassive_Unique_Ring_732_x1 = 359580,
            ItemPassive_Unique_Ring_733_x1 = 359581,
            ItemPassive_Unique_Ring_734_x1 = 359582,
            ItemPassive_Unique_Ring_735_x1 = 359583,
            ItemPassive_Unique_Ring_736_x1 = 359584,
            ItemPassive_Unique_Ring_737_x1 = 359585,
            ItemPassive_Unique_Ring_738_x1 = 359586,
            ItemPassive_Unique_Ring_739_x1 = 359587,
            ItemPassive_Unique_Ring_740_x1 = 359589,
            ItemPassive_Unique_Ring_741_x1 = 359591,
            ItemPassive_Unique_Ring_742_x1 = 359593,
            ItemPassive_Unique_Ring_743_x1 = 359594,
            ItemPassive_Unique_Ring_744_x1 = 359597,
            ItemPassive_Unique_Ring_745_x1 = 359598,
            ItemPassive_Unique_Ring_746_x1 = 359601,
            ItemPassive_Unique_Ring_747_x1 = 359602,
            ItemPassive_Unique_Ring_748_x1 = 359604,
            ItemPassive_Unique_Ring_749_x1 = 359605,
            ItemPassive_Unique_Ring_750_x1 = 359606,
            Unique_Monster_Generic_Projectile2 = 359684,
            Unique_Monster_Generic_Summon2 = 359685,
            x1_Adria_SpitAtPlayer = 359746,
            x1_Plagued_Lacuni_SpecialMelee = 359826,
            x1_Abattoir_furnaceSpinner_Event = 359960,
            x1_Adria_PhaseOne_AIState = 360204,
            x1_Adria_PhaseTwo_AIState = 360205,
            x1_Westmarch_Rat_Kamikaze = 360240,
            DisableGetHitBuff_Infinite = 360319,
            x1_Pand_Ext_Event_greatWeapon_bossSuckIn = 360331,
            ItemPassive_Unique_Mighty_1H_011_x1 = 360488,
            ItemPassive_Unique_Fist_010_x1 = 360490,
            ItemPassive_Unique_Mojo_010_x1 = 360491,
            ItemPassive_Unique_Ring_015_x1 = 360492,
            x1_Fortress_Portal_Switch = 360496,
            x1_Westmarch_Rat_Charge = 360845,
            x1_Malthael_Spirit_Death = 360885,
            Urzael_StompAndStun = 361300,
            x1_Pand_Ext_Event_greatWeapon_fireEnergyPulses = 361400,
            X1_Fortress_Portal_Switch_CheckMonsters = 361425,
            X1_Fortress_Portal_Switch_TeleportMonster = 361488,
            X1_Barbarian_Passive_EarthenMight = 361661,
            X1_DemonHunter_EntanglingShot = 361936,
            X1_Monk_MysticAlly_v2 = 362102,
            X1_Monk_MysticAlly_v2_Passive = 362118,
            x1_Malthael_Spirit_Fog = 362756,
            x1_Adria_DelayedTeleport_CauldronActivate = 362989,
            Monk_MysticAlly_Pet_RuneB_WaveAttack_Fast = 363493,
            Unique_Monster_Generic_AOE_RandomAroundOwner = 363519,
            x1_DarkAngel_Death = 363569,
            X1_Monk_MysticAlly_RuneA_TagForExplosion = 363876,
            X1_Monk_MysticAlly_RuneA_Explode = 363878,
            x1_Detonate_DOT_Buffs = 363984,
            X1_Bloodhawk_Event_BallistaBoss_FuriousCharge = 364196,
            Butcher_Frenzy_Custom_LR_Boss = 364220,
            x1_Westmarch_Brute_B_Charge_Custom_LR_Boss = 364239,
            ItemPassive_Unique_Axe_1H_003_x1 = 364311,
            ItemPassive_Unique_Dagger_010_x1 = 364312,
            ItemPassive_Unique_Sword_1H_004_x1 = 364315,
            ItemPassive_Unique_CeremonialDagger_002_x1 = 364316,
            ItemPassive_Unique_Sword_2H_010_x1 = 364317,
            ItemPassive_Unique_Axe_1H_005_x1 = 364318,
            ItemPassive_Unique_Mace_2H_009_x1 = 364319,
            ItemPassive_Unique_Sword_2H_004_x1 = 364321,
            ItemPassive_Unique_Mighty_1H_006_x1 = 364322,
            itemPassive_Unique_Mace_1H_002_x1 = 364325,
            ItemPassive_Unique_XBow_001_x1 = 364332,
            ItemPassive_Unique_XBow_012_x1 = 364335,
            itemPassive_Unique_WizardHat_004_x1 = 364338,
            ItemPassive_Unique_Shoulder_002_x1 = 364339,
            ItemPassive_Unique_Ring_020_x1 = 364340,
            ItemPassive_Unique_BarbBelt_003_x1 = 364341,
            itemPassive_Unique_Pants_007_x1 = 364342,
            itemPassive_Unique_Amulet_003_x1 = 364343,
            ItemPassive_Unique_Ring_001_x1 = 364345,
            x1_Pand_Ext_ImperiusCharge_towers_chains = 364483,
            QuillDemon_Projectile_FastAttack = 364571,
            X1_X1_Event_SpeedKill_Spawner = 364720,
            FallenShaman_Projectile_LR = 364817,
            MonsterAffix_Electrified_LR_Boss_Custom = 365083,
            x1_LR_Boss_SkeletonSummoner_Summoning = 365266,
            X1_DemonHunter_Companion = 365311,
            x1_DemonHunter_Companion_Passive = 365312,
            x1_Pand_Ext_ImperiusCharge_Towers_Setup = 365313,
            x1_Pand_SniperAngel_rangedAttack_LR_Boss = 365321,
            X1_Scoundrel_Multishot = 365395,
            X1_X1_Event_SpeedKill_Champion_Spawner = 365581,
            x1_Adria_ScriptedSequence180Turn = 365720,
            Uber_Diablo_StompAndStun = 365978,
            Succubus_BloodStar_LR = 366103,
            Monk_LashingTailKick_HandOfYtar_Passability = 366119,
            X1_Passive_BountyScroll_BossDamage = 366183,
            LR_Boss_PathBlocked_Teleport = 366204,
            x1_deathMaiden_PowerSlam_LR_Boss = 366275,
            x1_deathMaiden_Spin_Attack_Mortar_LR_Boss = 366276,
            Despair_Volley_LR_Boss = 366277,
            x1_CrazedAngelArcher_FireArrow = 366438,
            LR_Boss_CollapseCeiling = 366477,
            LR_Boss_Fast = 366481,
            x1_LR_Boss_DarkAngel_SoulRush = 366520,
            x1_LR_Boss_DarkAngel_Summon = 366525,
            LR_Boss_Sprint = 366527,
            X1_Scoundrel_Multishot_Passive = 366585,
            LR_Boss_Izual_Charge = 366830,
            PandemoniumPortal_SkeletonKing = 366950,
            PandemoniumPortal_ghom = 366951,
            PandemoniumPortal_SiegeBreaker = 366953,
            PandemoniumPortal_Diablo = 366954,
            x1_Westmarch_Brute_B_Charge_Custom_LR_Boss_Hulkmode = 367003,
            ItemPassive_Unique_Polearm_001_x1 = 367008,
            X1_LR_Boss_FireNova = 367112,
            x1_LR_Boss_SharedCooldown = 367289,
            x1_Malthael_PhaseThree_AIState = 367300,
            ItemPassive_Unique_Ring_Hellfire_x1 = 367462,
            Random_Movespeed_Scripted = 367779,
            x1_NPC_Westmarch_Aldritch_CrushingResolve = 367807,
            X1_DH_Companion_Boar_Intervene = 368154,
            DestructionStreak_Buff_Run_Speed = 368174,
            Weapon_Melee_Instant_CowKing = 368212,
            Barbarian_Overpower_CowKing = 368239,
            X1_Monk_Passive_Unity = 368899,
            x1_LR_Boss_DarkAngel_Wave = 369463,
            X1_LR_Boss_SkeletonSummoner_Projectile_B = 369518,
            X1_LR_Boss_SkeletonSummoner_Projectile_C = 369519,
            Gluttony_Gas_Cloud_LR_Boss = 369667,
            MistressOfPain_PainBolts_LR = 369693,
            x1_Crusader_PhalanxArcher_Ranged_Projectile = 369807,
            Suicide_Scripted = 369834,
            x1_deathMaiden_Summon_prototype_extraskeletons = 369862,
            X1_SpectralHound_Buff = 370348,
            Community_Event_Buff_EXPMF = 370781,
            ItemPassive_SetBonus_Chantodo = 371005,
            x1_Malthael_OnDeath = 371010,
            X1_RockFodder_FuriousCharge_RockHive_Queen = 371040,
            TeleportToPlayer_Cast = 371139,
            TeleportToWaypoint_Cast = 371141,
            X1_Monk_MantraOfHealing_v2 = 373143,
            X1_Monk_MantraOfHealing_v2_Passive = 373154,
            X1_LR_Boss_SkeletonKing_Summon_Skeleton = 373204,
            X1_LR_Boss_ExpandingFireRing = 374236,
            ItemPassive_Unique_Orb_001_x1 = 374308,
            ItemPassive_Unique_XBow_011_x1 = 374344,
            ItemPassive_Unique_Sword_1H_012_x1 = 374362,
            X1_LR_Boss_Generic_Taunt = 374471,
            X1_LR_Boss_Succubus_Firestorm = 374493,
            ItemPassive_x1_Amulet_norm_unique_25_Barbarian = 374500,
            ItemPassive_x1_Amulet_norm_unique_25_Crusader = 374502,
            ItemPassive_x1_Amulet_norm_unique_25_DemonHunter = 374503,
            ItemPassive_x1_Amulet_norm_unique_25_Monk = 374504,
            ItemPassive_x1_Amulet_norm_unique_25_Wizard = 374505,
            ItemPassive_x1_Amulet_norm_unique_25_WitchDoctor = 374506,
            X1_LR_Boss_MorluSpellcaster_Meteor = 374569,
            ItemPassive_Unique_Mojo_003_x1 = 374670,
            x1_Pand_Maze_PortalTest_Power_Bloone = 374755,
            x1_Pand_Maze_PortalTest_Power_Borgoth = 374759,
            x1_Pand_Maze_PortalTest_Power_Grotescor = 374763,
            x1_Pand_Maze_PortalTest_Power_Haziael = 374767,
            x1_Pand_Maze_PortalTest_Power_Magrethar = 374771,
            x1_Pand_Maze_PortalTest_Power_Severag = 374775,
            ItemPassive_Unique_Bow_008_x1 = 375037,
            X1_Monk_MantraOfEvasion_v2 = 375049,
            X1_Monk_MantraOfEvasion_v2_Passive = 375050,
            X1_Monk_MantraOfRetribution_v2 = 375082,
            X1_Monk_MantraOfRetribution_v2_Passive = 375083,
            X1_Monk_MantraOfConviction_v2 = 375088,
            X1_Monk_MantraOfConviction_v2_Passive = 375089,
            X1_Passive_BountyScroll_DemonDamage = 375246,
            X1_Passive_BountyScroll_UndeadDamage = 375248,
            X1_Passive_BountyScroll_BeastDamage = 375252,
            X1_Passive_BountyScroll_RunSpeed = 375263,
            WoDFlagBuff = 375412,
            x1_Uber_Diablo_HellSpikes = 375439,
            x1_Abattoir_furnaceSpinner_Event_Phase1 = 375458,
            x1_Abattoir_furnaceSpinner_Event_Phase2 = 375462,
            Uber_SkeletonKing_Summon_Skeleton_Diablo = 375473,
            X1_Barbarian_WarCry_v2 = 375483,
            Uber_Maghda_Summon_Beserker_Diablo = 375493,
            x1_Abattoir_furnaceSpinner_Event_Phase3 = 375499,
            x1_Pand_SniperAngel_closeRangedAttack_LR_Boss = 375514,
            X1_LR_Boss_SkeletonKing_Whirlwind = 375515,
            Uber_Despair_SummonMinion_Diablo = 375537,
            PlayerUpscaledBuff = 375617,
            X1_Snitchley_TreasureGoblin_Escape = 375703,
            X1_Crusader_Phalanx_Basic_Melee = 375866,
            Diablo_LightningBreath_Uber = 375904,
            Diablo_ClawRip_Uber = 375905,
            Diablo_RingOfFire_Uber = 375907,
            Diablo_ExpandingFireRing_Uber = 375908,
            UberDiablo_MirrorImage = 375929,
            Uber_Despair_TeleportEnrage_Diablo = 376039,
            Uber_ZoltunKulle_SlowTime_Diablo = 376043,
            Uber_Despair_Volley_Diablo = 376056,
            AI_RunTo_Guaranteed_Spider = 376110,
            SplashDamageProc = 376298,
            Uber_Gluttony_Gas_Cloud_Diablo = 376396,
            x1_Bog_BearTrap_Trigger = 376509,
            x1_DeathMaiden_Unique_Fire_AbattoirFurnace_FireWreath = 376562,
            MonsterAffix_MissileDampeningCast = 376860,
            SiegeBreaker_ReflectsDamageCast = 376912,
            CreepMob_Knockback_LR = 376935,
            X1_Sandmonster_Weapon_Melee_Instant = 377188,
            X1_Passive_BountyScroll_LifeRegen = 377214,
            SidekickStatsBoostBuff = 377314,
            SidekickWeaponDamageBoostBuff = 377413,
            X1_DemonHunter_EvasiveFire = 377450,
            X1_Barbarian_WeaponThrow = 377452,
            X1_Barbarian_AncientSpear = 377453,
            x1_Abattoir_furnaceSpinner_fireBeam_clockwise_Event_Phase1 = 377631,
            x1_Abattoir_furnaceSpinner_fireBeam_clockwise_Event_Phase2 = 377636,
            x1_Abattoir_furnaceSpinner_fireBeam_clockwise_Event_Phase3 = 377641,
            X1_Generic_Break_Walls_Buff = 377827,
            x1_ImperiusWingsBuff = 378346,
            p1_Greed_Charge = 380460,
            p1_Greed_Shockwave = 380646,
            p1_Greed_PassiveLifetimeBuff = 381205,
            p1_GreedMinion_PassiveLifetimeBuff = 382195,
            p1_Greed_SpawnMinion = 382342,
            p1_TreasureGoblin_OnDeathGreedPortal = 382738,
            ItemPassive_Unique_Gem_001_x1 = 383014,
            EmoteDance = 384214,
            MonsterAffix_Avenger_ArcaneEnchanted = 384426,
            MonsterAffix_Avenger_ArcaneEnchantedCast = 384436,
            X1_MonsterAffix_Avenger_Orbiter = 384570,
            X1_MonsterAffix_Avenger_OrbiterCast = 384571,
            MonsterAffix_Avenger_Mortar = 384594,
            MonsterAffix_Avenger_MortarCast = 384596,
            X1_MonsterAffix_Avenger_CorpseBomberRare = 384623,
            X1_MonsterAffix_Avenger_CorpseBomberRareCast = 384624,
            X1_MonsterAffix_Avenger_LightningStorm = 384628,
            X1_MonsterAffix_Avenger_LightningStormCast = 384630,
            p1_Greed_GoldSpawner = 385737,
            p1_Greed_GoldenMeteorShower = 385810,
            UseLootRunPortal = 389049,
            p1_Greed_Charge_Long = 391073,
            p1_Greed_PassiveGoblinSpawner_test = 391176,
            p1_Greed_Ultimate_MeteorShower = 391193,
            EnvironmentKill_Buff_Resource_Regen = 391680,
            MonsterAffix_Avenger_ArcaneEnchanted_New_PetBasic = 392128,
            x1_Greed_Death = 392702,
            Wizard_Archon_ArcaneBlast_Cold = 392883,
            Wizard_Archon_ArcaneBlast_Fire = 392884,
            Wizard_Archon_ArcaneBlast_Lightning = 392885,
            Wizard_Archon_ArcaneStrike_Cold = 392886,
            Wizard_Archon_ArcaneStrike_Fire = 392887,
            Wizard_Archon_ArcaneStrike_Lightning = 392888,
            Wizard_Archon_DisintegrationWave_Cold = 392889,
            Wizard_Archon_DisintegrationWave_Fire = 392890,
            Wizard_Archon_DisintegrationWave_Lightning = 392891,
            p1_Greed_GoblinKnockback = 394194,
            Oasis_Rockslide_A_Damage = 395342,
            waterTower_A_Oasis_caOut_Breakable_Damage = 396375,
            caOut_BoneYards_Collapsing_Bones_Damage = 396376,
            a2dun_Aqd_Act_Wood_Platform_Damage = 396386,
            ItemPassive_Unique_Ring_751_x1 = 397780,
            ItemPassive_Unique_Ring_752_x1 = 397781,
            ItemPassive_Unique_Ring_753_x1 = 397782,
            ItemPassive_Unique_Ring_754_x1 = 397783,
            ItemPassive_Unique_Ring_755_x1 = 397784,
            ItemPassive_Unique_Ring_756_x1 = 397785,
            ItemPassive_Unique_Ring_757_x1 = 397786,
            ItemPassive_Unique_Ring_758_x1 = 397787,
            ItemPassive_Unique_Ring_759_x1 = 397788,
            ItemPassive_Unique_Ring_760_x1 = 397789,
            ItemPassive_Unique_Ring_761_x1 = 397792,
            ItemPassive_Unique_Ring_762_x1 = 397802,
            ItemPassive_Unique_Ring_763_x1 = 397805,
            ItemPassive_Unique_Ring_764_x1 = 397806,
            ItemPassive_Unique_Ring_765_x1 = 397807,
            ItemPassive_Unique_Ring_766_x1 = 397808,
            ItemPassive_Unique_Ring_767_x1 = 397809,
            ItemPassive_Unique_Ring_768_x1 = 397811,
            ItemPassive_Unique_Ring_769_x1 = 397812,
            ItemPassive_Unique_Ring_770_x1 = 397813,
            ItemPassive_Unique_Ring_771_x1 = 397814,
            ItemPassive_Unique_Ring_772_x1 = 397815,
            ItemPassive_Unique_Ring_773_x1 = 397816,
            ItemPassive_Unique_Ring_774_x1 = 397817,
            ItemPassive_Unique_Ring_775_x1 = 397818,
            ItemPassive_Unique_Ring_776_x1 = 397819,
            ItemPassive_Unique_Ring_777_x1 = 397820,
            ItemPassive_Unique_Ring_778_x1 = 397822,
            ItemPassive_Unique_Ring_779_x1 = 397831,
            ItemPassive_Unique_Ring_780_x1 = 397832,
            ItemPassive_Unique_Ring_781_x1 = 397833,
            ItemPassive_Unique_Ring_782_x1 = 397834,
            ItemPassive_Unique_Ring_783_x1 = 397835,
            ItemPassive_Unique_Ring_784_x1 = 397836,
            ItemPassive_Unique_Ring_785_x1 = 397838,
            ItemPassive_Unique_Ring_786_x1 = 397839,
            ItemPassive_Unique_Ring_787_x1 = 397841,
            ItemPassive_Unique_Ring_788_x1 = 397842,
            ItemPassive_Unique_Ring_789_x1 = 397843,
            ItemPassive_Unique_Ring_790_x1 = 397844,
            ItemPassive_Unique_Ring_791_x1 = 397845,
            ItemPassive_Unique_Ring_792_x1 = 397846,
            ItemPassive_Unique_Ring_793_x1 = 397847,
            ItemPassive_Unique_Ring_794_x1 = 397848,
            ItemPassive_Unique_Ring_795_x1 = 397849,
            ItemPassive_Unique_Ring_796_x1 = 397850,
            ItemPassive_Unique_Ring_797_x1 = 397851,
            ItemPassive_Unique_Ring_798_x1 = 397852,
            ItemPassive_Unique_Ring_799_x1 = 397853,
            ItemPassive_Unique_Ring_800_x1 = 397854,
            p1_Greed_Charge_No_LOS = 398253,
            Pages_Buff_Electrified_Cast_TieredRift = 398655,
            x1_BogBlight_PustuleSpawn_Con = 399284,
            ItemPassive_Unique_Ring_801_x1 = 401366,
            ItemPassive_Unique_Ring_802_x1 = 401367,
            ItemPassive_Unique_Ring_803_x1 = 401368,
            ItemPassive_Unique_Ring_804_x1 = 401369,
            ItemPassive_Unique_Ring_805_x1 = 401370,
            ItemPassive_Unique_Ring_806_x1 = 401371,
            ItemPassive_Unique_Ring_807_x1 = 401378,
            ItemPassive_Unique_Ring_808_x1 = 401379,
            ItemPassive_Unique_Ring_809_x1 = 401380,
            ItemPassive_Unique_Ring_810_x1 = 401381,
            ItemPassive_Unique_Ring_811_x1 = 401382,
            ItemPassive_Unique_Ring_812_x1 = 401383,
            ItemPassive_Unique_Ring_813_x1 = 401384,
            ItemPassive_Unique_Ring_814_x1 = 401385,
            ItemPassive_Unique_Ring_815_x1 = 401386,
            ItemPassive_Unique_Ring_816_x1 = 401387,
            ItemPassive_Unique_Ring_817_x1 = 401388,
            ItemPassive_Unique_Ring_818_x1 = 401389,
            ItemPassive_Unique_Ring_819_x1 = 401390,
            ItemPassive_Unique_Ring_820_x1 = 401391,
            ItemPassive_Unique_Ring_821_x1 = 401392,
            ItemPassive_Unique_Ring_822_x1 = 401393,
            ItemPassive_Unique_Ring_823_x1 = 401394,
            ItemPassive_Unique_Ring_824_x1 = 401395,
            ItemPassive_Unique_Ring_825_x1 = 401414,
            ItemPassive_Unique_Ring_826_x1 = 401415,
            ItemPassive_Unique_Ring_827_x1 = 401416,
            ItemPassive_Unique_Ring_828_x1 = 401417,
            ItemPassive_Unique_Ring_829_x1 = 401418,
            ItemPassive_Unique_Ring_830_x1 = 401419,
            ItemPassive_Unique_Ring_831_x1 = 401420,
            ItemPassive_Unique_Ring_832_x1 = 401421,
            ItemPassive_Unique_Ring_833_x1 = 401422,
            ItemPassive_Unique_Ring_834_x1 = 401423,
            ItemPassive_Unique_Ring_835_x1 = 401424,
            ItemPassive_Unique_Ring_836_x1 = 401425,
            ItemPassive_Unique_Ring_837_x1 = 401426,
            ItemPassive_Unique_Ring_838_x1 = 401427,
            ItemPassive_Unique_Ring_839_x1 = 401428,
            ItemPassive_Unique_Ring_840_x1 = 401429,
            ItemPassive_Unique_Ring_841_x1 = 401430,
            ItemPassive_Unique_Ring_842_x1 = 401458,
            ItemPassive_Unique_Ring_843_x1 = 401459,
            ItemPassive_Unique_Ring_844_x1 = 401460,
            ItemPassive_Unique_Ring_845_x1 = 401461,
            ItemPassive_Unique_Ring_846_x1 = 401462,
            ItemPassive_Unique_Ring_847_x1 = 401463,
            ItemPassive_Unique_Ring_848_x1 = 401464,
            ItemPassive_Unique_Ring_849_x1 = 401465,
            ItemPassive_Unique_Ring_850_x1 = 401466,
            ItemPassive_Unique_Ring_851_x1 = 401467,
            ItemPassive_Unique_Ring_852_x1 = 401468,
            ItemPassive_Unique_Ring_853_x1 = 401469,
            ItemPassive_Unique_Ring_854_x1 = 401470,
            ItemPassive_Unique_Ring_855_x1 = 401471,
            ItemPassive_Unique_Ring_856_x1 = 401472,
            ItemPassive_Unique_Ring_857_x1 = 401473,
            ItemPassive_Unique_Ring_858_x1 = 401474,
            ItemPassive_Unique_Ring_859_x1 = 401475,
            ItemPassive_Unique_Ring_860_x1 = 401476,
            ItemPassive_Unique_Ring_861_x1 = 401495,
            ItemPassive_Unique_Ring_862_x1 = 401496,
            ItemPassive_Unique_Ring_863_x1 = 401497,
            ItemPassive_Unique_Ring_864_x1 = 401498,
            ItemPassive_Unique_Ring_865_x1 = 401499,
            ItemPassive_Unique_Ring_866_x1 = 401500,
            ItemPassive_Unique_Ring_867_x1 = 401501,
            ItemPassive_Unique_Ring_868_x1 = 401502,
            ItemPassive_Unique_Ring_869_x1 = 401503,
            ItemPassive_Unique_Ring_870_x1 = 401504,
            ItemPassive_Unique_Ring_871_x1 = 401505,
            ItemPassive_Unique_Ring_872_x1 = 401506,
            ItemPassive_Unique_Ring_873_x1 = 401507,
            ItemPassive_Unique_Ring_874_x1 = 401508,
            ItemPassive_Unique_Ring_875_x1 = 401509,
            ItemPassive_Unique_Ring_876_x1 = 401510,
            ItemPassive_Unique_Ring_877_x1 = 401511,
            ItemPassive_Unique_Ring_904_x1 = 402406,
            ItemPassive_Unique_Ring_901_x1 = 402407,
            ItemPassive_Unique_Ring_902_x1 = 402408,
            ItemPassive_Unique_Ring_903_x1 = 402411,
            ItemPassive_Unique_Ring_905_x1 = 402413,
            ItemPassive_Unique_Ring_906_x1 = 402414,
            ItemPassive_Unique_Ring_907_x1 = 402415,
            ItemPassive_Unique_Ring_908_x1 = 402416,
            ItemPassive_Unique_Ring_909_x1 = 402444,
            ItemPassive_Unique_Ring_910_x1 = 402446,
            ItemPassive_Unique_Ring_911_x1 = 402447,
            ItemPassive_Unique_Ring_912_x1 = 402448,
            ItemPassive_Unique_Ring_913_x1 = 402449,
            ItemPassive_Unique_Ring_914_x1 = 402450,
            ItemPassive_Unique_Ring_915_x1 = 402451,
            ItemPassive_Unique_Ring_916_x1 = 402455,
            ItemPassive_Unique_Ring_917_x1 = 402456,
            ItemPassive_Unique_Ring_918_x1 = 402457,
            ItemPassive_Unique_Ring_919_x1 = 402458,
            ItemPassive_Unique_Ring_920_x1 = 402459,
            ItemPassive_Unique_Ring_921_x1 = 402460,
            ItemPassive_Unique_Ring_922_x1 = 402461,
            ItemPassive_Unique_Ring_923_x1 = 402462,
            ItemPassive_Unique_Ring_924_x1 = 402463,
            ItemPassive_Unique_Ring_925_x1 = 402464,
            ItemPassive_Unique_Ring_926_x1 = 402465,
            ItemPassive_Unique_Ring_927_x1 = 402466,
            ItemPassive_Unique_Ring_928_x1 = 402467,
            ItemPassive_Unique_Ring_929_x1 = 402469,
            ItemPassive_Unique_Ring_930_x1 = 402470,
            ItemPassive_Unique_Ring_931_x1 = 402471,
            ItemPassive_Unique_Ring_932_x1 = 402472,
            ItemPassive_Unique_Ring_933_x1 = 402473,
            ItemPassive_Unique_Ring_934_x1 = 402474,
            ItemPassive_Unique_Ring_935_x1 = 402475,
            ItemPassive_Unique_Ring_936_x1 = 402476,
            ItemPassive_Unique_Ring_937_x1 = 402477,
            ItemPassive_Unique_Ring_938_x1 = 402478,
            ItemPassive_Unique_Ring_939_x1 = 402479,
            ItemPassive_Unique_Ring_940_x1 = 402480,
            p1_ItemPassive_Unique_Ring_941 = 402540,
            p1_Monk_Passive_Provocation = 402633,
            Pages_Buff_Electrified_TieredRift = 403404,
            ItemPassive_Unique_Gem_002_x1 = 403456,
            ItemPassive_Unique_Gem_002U_x1 = 403457,
            ItemPassive_Unique_Gem_003_x1 = 403459,
            ItemPassive_Unique_Gem_004_x1 = 403460,
            ItemPassive_Unique_Gem_005_x1 = 403461,
            ItemPassive_Unique_Gem_006_x1 = 403462,
            ItemPassive_Unique_Gem_007_x1 = 403463,
            ItemPassive_Unique_Gem_008_x1 = 403464,
            ItemPassive_Unique_Gem_009_x1 = 403465,
            ItemPassive_Unique_Gem_010_x1 = 403466,
            ItemPassive_Unique_Gem_011_x1 = 403467,
            ItemPassive_Unique_Gem_012_x1 = 403468,
            ItemPassive_Unique_Gem_013_x1 = 403469,
            ItemPassive_Unique_Gem_014_x1 = 403470,
            ItemPassive_Unique_Gem_015_x1 = 403471,
            ItemPassive_Unique_Gem_010U_x1 = 403472,
            ItemPassive_Unique_Gem_013U_x1 = 403473,
            ItemPassive_Unique_Gem_008U_x1 = 403524,
            ItemPassive_Unique_Gem_005U_x1 = 403556,
            ItemPassive_Unique_Gem_004U_x1 = 403560,
            ItemPassive_Unique_Gem_006U_x1 = 403600,
            ItemPassive_Unique_Gem_007U_x1 = 403620,
            ItemPassive_Unique_Gem_009U_x1 = 403624,
            ItemPassive_Unique_Gem_011U_x1 = 403687,
            ItemPassive_Unique_Gem_012U_x1 = 403727,
            ItemPassive_Unique_Gem_014U_x1 = 403784,
            ItemPassive_Unique_Gem_015U_x1 = 403785,
            UseLootRunProgressGlyph = 404128,
            p1_Monk_Passive_Harmony = 404168,
            p1_Monk_Passive_RelentlessAssault = 404245,
            PvP_HunterBuff = 404985,
            X1_Legendary_Potion_07 = 405166,
            p1_TreasureGoblin_OnDeathWhimsyshirePortal = 405592,
            P4_Ruins_Frost_Trap_Swinging_Blade = 406180,
            Greed_StompAndStun = 408505,
            TreasureGoblin_Portal_In = 408659,
            p1_ItemPassive_Unique_Ring_942 = 408974,
            p1_TieredRift_SpawnNPC = 409173,
            ItemPassive_Unique_Ring_878_x1 = 409335,
            Test_SpikeTrap_Ruins = 409416,
            ItemPassive_Unique_Ring_900_x1 = 409428,
            ItemPassive_Unique_Ring_899_x1 = 409431,
            Consumable_Potion_Buffs = 409455,
            p1_ItemPassive_Unique_Ring_943 = 409811,
            p1_ItemPassive_Unique_Ring_944 = 410217,
            AI_RunAway_Short_V2 = 410363,
            P4_SandWasp_Projectile = 410520,
            p4_Wasp_Nest_Death = 410598,
            p4_Yeti_IceBreath = 411373,
            p4_Yeti_IceSpikes = 413296,
            GoblinAffix_Teleporter = 413313,
            p4_Sasquatch_RockPunchKnockback = 415079,
            x1_LR_Boss_Butcher_Spears = 416435,
            p4_Mole_Rat_Charge = 423014,
            p4_rat_host_teleport = 423072,
            P2_ItemPassive_Unique_Ring_001 = 423205,
            P2_ItemPassive_Unique_Ring_002 = 423206,
            P2_ItemPassive_Unique_Ring_003 = 423226,
            P2_ItemPassive_Unique_Ring_004 = 423227,
            P2_ItemPassive_Unique_Ring_005 = 423228,
            P2_ItemPassive_Unique_Ring_006 = 423229,
            P2_ItemPassive_Unique_Ring_007 = 423230,
            P2_ItemPassive_Unique_Ring_008 = 423231,
            P2_ItemPassive_Unique_Ring_009 = 423233,
            P2_ItemPassive_Unique_Ring_010 = 423234,
            P2_ItemPassive_Unique_Ring_011 = 423235,
            P2_ItemPassive_Unique_Ring_012 = 423236,
            P2_ItemPassive_Unique_Ring_013 = 423237,
            P2_ItemPassive_Unique_Ring_014 = 423238,
            P2_ItemPassive_Unique_Ring_015 = 423239,
            P2_ItemPassive_Unique_Ring_016 = 423240,
            P2_ItemPassive_Unique_Ring_017 = 423241,
            P2_ItemPassive_Unique_Ring_018 = 423242,
            P2_ItemPassive_Unique_Ring_019 = 423243,
            P2_ItemPassive_Unique_Ring_020 = 423244,
            ItemPassive_Unique_Ring_724_SpawnDecoy_x1 = 425390,
            p4_ScorpionBug_Hover_Projectile = 426866,
            X1_LR_Boss_RatKing_BurrowSetup = 427151,
            p4_RatKing_RatBallMonster_Setup = 427175,
            p4_RatKing_SummonRatBallMonster = 427176,
            p4_RatKing_Thunderdome = 427211,
            p4_RatKing_SummonRatVolcano = 427244,
            X1_LR_Boss_RatKing_OnDeath = 427689,
            P2_ItemPassive_Unique_Ring_021 = 427798,
            P2_ItemPassive_Unique_Ring_022 = 427799,
            ItemPassive_Unique_Gem_016_x1 = 428029,
            ItemPassive_Unique_Gem_016U_x1 = 428030,
            ItemPassive_Unique_Gem_017_x1 = 428031,
            ItemPassive_Unique_Gem_017U_x1 = 428032,
            P2_ItemPassive_Unique_Ring_023 = 428220,
            ItemPassive_Unique_Gem_018_x1 = 428348,
            ItemPassive_Unique_Gem_018U_x1 = 428349,
            ItemPassive_Unique_Gem_019_x1 = 428350,
            ItemPassive_Unique_Gem_019U_x1 = 428351,
            ItemPassive_Unique_Gem_020_x1 = 428352,
            ItemPassive_Unique_Gem_020U_x1 = 428353,
            ItemPassive_Unique_Gem_021_x1 = 428354,
            ItemPassive_Unique_Gem_021U_x1 = 428356,
            Cosmetic_SpectralHound_Buff = 428398,
            X1_LR_Boss_RatKing_DeadPlayerTaunt = 428491,
            X1_LR_Boss_RatKing_DeadPlayerTauntSearch = 428492,
            Pages_Buff_Invulnerable_Cast_v2 = 428595,
            Pages_Buff_Run_Speed_Knockback_Cast = 428605,
            Pages_Buff_Run_Speed_Waller_Cast = 428607,
            ItemPassive_Unique_Gem_003U_x1 = 428691,
            MorluSpellcaster_Shift_NoCooldown_Cold = 428806,
            X1_Legendary_Potion_08 = 428812,
            x1_LR_Boss_morluSpellcaster_Weapon_Melee_Instant = 428903,
            Diablo_LightningBreath_LR_TerrorDemon = 428985,
            p4_LR_TerrorDemon_Wall = 429019,
            X1_LR_CreepMob_Ranged_Arm_Line_Attack = 429077,
            X1_LR_CreepMob_Herding_Attack = 429291,
            Witchdoctor_FetishArmy_PoisonDart = 429477,
            P2_ItemPassive_Unique_Ring_024 = 429648,
            P2_SpecialGoblinRiftSpawn = 429651,
            P2_ItemPassive_Unique_Ring_025 = 429665,
            P2_ItemPassive_Unique_Ring_026 = 429673,
            P2_ItemPassive_Unique_Ring_027 = 429851,
            P2_ItemPassive_Unique_Ring_028 = 429855,
            P2_ItemPassive_Unique_Ring_029 = 429856,
            P2_ItemPassive_Unique_Ring_030 = 429857,
            P2_ItemPassive_Unique_Ring_031 = 429885,
            p4_Yeti_SnowBoulderRoll = 429905,
            p4_WoodWraith_VineTrap = 430133,
            P2_ItemPassive_Unique_Ring_032 = 430135,
            p4_Ice_Porcupine_Nova = 430206,
            P2_ItemPassive_Unique_Ring_033 = 430228,
            P2_ItemPassive_Unique_Ring_034 = 430289,
            p4_Sasquatch_TriplePunch = 430448,
            p4_Sasquatch_GorillaPound = 430556,
            p4_Sasquatch_SpikeLine = 430582,
            px_bountytest_chaosportals_summonChampion = 430626,
            P2_ItemPassive_Unique_Ring_035 = 430671,
            P2_ItemPassive_Unique_Ring_036 = 430672,
            P2_ItemPassive_Unique_Ring_037 = 430673,
            P2_ItemPassive_Unique_Ring_038 = 430674,
            P2_ItemPassive_Unique_Ring_039 = 430675,
            P2_ItemPassive_Unique_Ring_040 = 430676,
            P2_ItemPassive_Unique_Ring_041 = 430677,
            P2_ItemPassive_Unique_Ring_042 = 430678,
            P2_ItemPassive_Unique_Ring_043 = 430679,
            P2_ItemPassive_Unique_Ring_044 = 430680,
            P2_ItemPassive_Unique_Ring_045 = 430681,
            P2_ItemPassive_Unique_Ring_046 = 430682,
            P2_ItemPassive_Unique_Ring_047 = 430683,
            P2_ItemPassive_Unique_Ring_048 = 430684,
            P2_ItemPassive_Unique_Ring_049 = 430685,
            P2_ItemPassive_Unique_Ring_050 = 430686,
            px_Wilderness_Camp_TemplarSpawner = 430766,
            p4_SeaMonster_SpawnCrabs = 431678,
            px_Highlands_Camp_CultistSpawner = 432262,
            px_QuestFollowerDamageSetup = 432327,
            px_Oasis_Camp_SnakemanSpawner = 432336,
            px_FesteringWoods_Camp_GhoulSpawner = 432385,
            TreasureGoblin_ThrowPortal_Backup = 432643,
            px_SpiderCaves_Camp_Cocoon_HumanVictim = 432781,
            px_SpiderCaves_Camp_SpiderSpawner = 432782,
            px_Boneyards_Camp_SnakemanSpawner = 432968,
            p4_RatKing_WaspRain = 432984,
            P2_Legendary_Potion_07 = 433021,
            px_StingingWinds_Camp_CultistSpawner = 433057,
            px_GardensOfHope_Camp_DemonSpawner = 433137,
            p4_SkeletonZombieSpawner_A_Death = 433150,
            px_Bridge_Camp_DemonSpawner = 433224,
            p4_LR_Boss_SpawnBoneTurrets = 433225,
            p4_LR_Boss_FedExCharge = 433232,
            Bone_Turret_MortarCast = 433233,
            px_Westmarch_Camp_ReaperSpawner = 433254,
            px_Crater_Camp_DemonSpawner = 433300,
            px_Graveyard_Camp_ReaperSpawner = 433338,
            px_Ramparts_Camp_DemonSpawner = 433391,
            px_Spire_Camp_DemonSpawner = 433421,
            Fallen_Lunatic_Suicide_Ring_Summon = 433469,
            p4_ruins_frost_Event_TheZiggurat = 433486,
            p4_Goatman_Fireball = 433729,
            ItemPassive_Unique_Axe_1H_005_p2 = 433993,
            ItemPassive_Unique_Belt_016_p2 = 433996,
            ItemPassive_Unique_Ring_643_p2 = 434004,
            ItemPassive_Unique_Shoulder_002_p2 = 434005,
            ItemPassive_Unique_Ring_597_p2 = 434006,
            ItemPassive_Unique_Ring_664_p2 = 434007,
            ItemPassive_Unique_Ring_560_p2 = 434008,
            itemPassive_Unique_Pants_007_p2 = 434009,
            ItemPassive_Unique_Boots_007_p2 = 434010,
            ItemPassive_Unique_Ring_681_p2 = 434012,
            ItemPassive_Unique_Ring_648_p2 = 434022,
            p2_FallenLunatic_Aggro_ring = 434026,
            ItemPassive_Unique_Mace_2H_009_p2 = 434033,
            itemPassive_Unique_Helm_003_p2 = 434034,
            itemPassive_Unique_WizardHat_004_p2 = 434035,
            ItemPassive_Unique_Ring_670_p2 = 434036,
            ItemPassive_Unique_Ring_500_p2 = 434037,
            ItemPassive_Unique_Ring_753_p2 = 434038,
            ItemPassive_Unique_Ring_651_p2 = 434039,
            p4_Ice_Porcupine_Backpedal_Shot = 434171,
            p4_Ice_Porcupine_JumpBack = 434174,
            p4_Ice_Porcupine_Shot = 434209,
            px_Camp_PortalSpawner = 434337,
            P2_ItemPassive_Unique_Ring_051 = 434377,
            px_LeoricsDungeon_Camp_DemonSpawner = 434382,
            EquippedLegendaryPower = 434427,
            X1_Legendary_Potion_09 = 434626,
            TreasureGoblin_Anniversary_Escape = 434749,
            Easter_Egg_World_Buff = 434761,
            TreasureGoblin_Anniversary_ThrowPortal = 434776,
            px_Ruins_Frost_ThreeGuardians_GoatmanLeap = 434813,
            p1_TreasureGoblin_OnDeathAnniversaryPortal = 434819,
            P2_ItemPassive_Unique_Ring_052 = 434849,
            P2_ItemPassive_Unique_Ring_053 = 434964,
            P2_ItemPassive_Unique_Ring_054 = 434966,
            P2_ItemPassive_Unique_Ring_055 = 434967,
            P2_ItemPassive_Unique_Ring_056 = 434969,
            P2_ItemPassive_Unique_Ring_057 = 434980,
            P2_ItemPassive_Unique_Ring_058 = 435016,
            P2_ItemPassive_Unique_Ring_059 = 435040,
            p4_demonTrooper_SpecialMelee = 435046,
            Witchdoctor_FetishSycophants_Melee = 435275,
            p4_ScavengerSpawner_A_Death = 435467,
            p4_Maggot_Suicide_ProgressiveFreeze = 435737,
            P4_WoodWraithSummonSpores_Ceremony_Event = 435833,
            p4_WickermanSpawner_A_Death = 435834,
            P4_Ruins_CannibalBarbarian_Shout = 435875,
            P4_Ruins_CannibalBarbarian_Whirlwind = 435885,
            P4_Ruins_CannibalBarbarian_IntroFear = 435911,
            px_Ruins_Frost_KingKanai_Whirlwind = 436329,
            P4_Ruins_CannibalBarbarian_Groundstomp = 436370,
            P4_Ruins_CannibalBarbarian_LeapQuake = 436375,
            P4_Ruins_CannibalBarbarian_CombatRoll = 436379,
            P3_ItemPassive_Unique_Ring_001 = 436426,
            P3_ItemPassive_Unique_Ring_002 = 436427,
            P3_ItemPassive_Unique_Ring_003 = 436428,
            P3_ItemPassive_Unique_Ring_004 = 436430,
            P3_ItemPassive_Unique_Ring_005 = 436468,
            P3_ItemPassive_Unique_Ring_006 = 436472,
            P3_ItemPassive_Unique_Ring_007 = 436481,
            P3_ItemPassive_Unique_Ring_008 = 436521,
            p4_RatKing_DoubleSwing = 436574,
            p4_ItemPassive_Unique_Ring_024_KKG = 436797,
            p4_Forest_MysteriousHermit_Projectile = 437112,
            P4_Ruins_CannibalBarbarian_Summon = 437262,
            P4_Ruins_CannibalBarbarian_BurrowOut = 437397,
            P4_Forest_Mysterious_Man_Spirit_Form = 437524,
            p4_Ice_Goatman_Ranged_Charged_Shot = 437534,
            P4_Forest_Mysterious_Man_Spirit_Setup = 437546,
            P3_ItemPassive_Unique_Ring_009 = 437710,
            P3_ItemPassive_Unique_Ring_010 = 437711,
            p4_Yeti_Melee_Basic = 437834,
            P3_ItemPassive_Unique_Ring_011 = 437840,
            P3_ItemPassive_Unique_Ring_012 = 437843,
            P3_ItemPassive_Unique_Ring_013 = 437844,
            P3_ItemPassive_Unique_Ring_014 = 437854,
            P4_Ruins_CannibalBarbarian_FuriousCharge = 437858,
            P4_Ruins_CannibalBarbarian_WeaponThrow = 437865,
            Lewis_ItemPassive_Test = 437919,
            P3_ItemPassive_Unique_Ring_015 = 439303,
            P3_ItemPassive_Unique_Ring_016 = 439308,
            P3_ItemPassive_Unique_Ring_017 = 439309,
            P3_ItemPassive_Unique_Ring_018 = 439310,
            P3_ItemPassive_Unique_Ring_019 = 439311,
            P3_ItemPassive_Unique_Ring_020 = 439312,
            P4_Ruins_CannibalBarbarian_HammerOfTheAncients = 439318,
            P4_DemonFlyer_FireBreath = 439325,
            ThousandPounder_Melee = 439350,
            ActorInvulBuff = 439438,
            X1_DemonHunter_Passive_Leech = 439525,
            ItemPassive_Unique_Ring_879_x1 = 439528,
            Diablo_LightningBreath_LR_TerrorDemon_Clone = 439719,
            X1_Sandmonster_pet_Weapon_Melee_Instant = 439832,
            X1_Legendary_AI_RunTo_Guaranteed_Spider = 439849,
            x1_LR_Boss_Sandmonster_OnDeath = 439911,
            P3_ItemPassive_Unique_Ring_021 = 440235,
            P3_ItemPassive_Unique_Ring_022 = 440336,
            P3_ItemPassive_Unique_Ring_023 = 440434,
            Angel_Corrupt_PiercingDash = 440446,
            P3_ItemPassive_Unique_Ring_024 = 440457,
            P3_ItemPassive_Unique_Ring_025 = 440568,
            P3_ItemPassive_Unique_Ring_026 = 440569,
            P3_ItemPassive_Unique_Ring_027 = 440598,
            p4_Yeti_OverheadSmash = 440693,
            RatKing_LifetimeBuff = 440699,
            p4_RatKing_LifetimeBuff_Plagued = 440700,
            P3_ItemPassive_Unique_Ring_028 = 440743,
            ItemPassive_Unique_Mojo_010_x1_tooltipDummy_1 = 440744,
            P3_ItemPassive_Unique_Ring_029 = 440790,
            ItemPassive_Unique_Ring_941_x1 = 440913,
            p1_ItemPassive_Unique_Ring_945 = 440923,
            a1dun_Leor_Hallway_Blade_Trap = 441108,
            P3_ItemPassive_Unique_Ring_030 = 441113,
            P3_ItemPassive_Unique_Ring_031 = 441278,
            P3_ItemPassive_Unique_Ring_032 = 441279,
            P3_ItemPassive_Unique_Ring_033 = 441280,
            P3_ItemPassive_Unique_Ring_034 = 441294,
            P3_ItemPassive_Unique_Ring_035 = 441305,
            P3_ItemPassive_Unique_Ring_036 = 441318,
            P3_ItemPassive_Unique_Ring_037 = 441349,
            P3_ItemPassive_Unique_Ring_038 = 441517,
            ItemPassive_Unique_Ring_612_p3 = 441681,
            ItemPassive_Unique_Sword_1H_012_p3 = 441723,
            ItemPassive_Unique_Mighty_1H_006_p3 = 441762,
            X1_Asteroid_Basic_Small = 442208,
            Barbarian_Whirlwind_DustDevils_Passability = 442221,
            P3_ItemPassive_Unique_Ring_039 = 442353,
            CleanupSummons_OnDeath = 442438,
            P3_ItemPassive_Unique_Ring_040 = 442477,
            P3_ItemPassive_Unique_Ring_041 = 442478,
            P4_Crab_Mother_Enrage = 442660,
            P4_Mermaid_Hydra = 442662,
            X1_WitchDoctor_Passive_ConfidenceRitual = 442741,
            ItemPassive_Unique_Ring_880_x1 = 442744,
            p4_SetDung_Generics_Enmy = 443795,
            p4_SetDung_Death_Wiz_Opus = 443832,
            p4_SetDung_Generics_Ply = 443833,
            p4_SetDung_Wiz_Opus_Ply = 443898,
            p4_SetDung_Wiz_Opus_Enmy = 444008,
            p4_SetDung_Death_Wiz_Rasha = 444516,
            p4_SetDung_Wiz_Rasha_Enmy = 444519,
            p4_SetDung_Wiz_Rasha_Ply = 444520,
            P4_ItemPassive_Unique_Ring_001 = 444521,
            P4_ItemPassive_Unique_Ring_002 = 444522,
            p4_SetDung_Death_Wiz_Firebird = 444577,
            p4_SetDung_Death_Cru_Akkhan = 444631,
            p4_SetDung_Cru_Akkhan_Enmy = 444632,
            p4_SetDung_Cru_Akkhan_Ply = 444633,
            p4_SetDung_Death_Cru_Roland = 444710,
            p4_SetDung_Cru_Roland_Enmy = 444712,
            p4_SetDung_Cru_Roland_Ply = 444713,
            p4_SetDung_Death_Barb_Kings = 444769,
            p4_SetDung_Barb_Kings_Enmy = 444770,
            p4_SetDung_Barb_Kings_Ply = 444771,
            p4_SetDung_Death_Barb_Wastes = 444826,
            p4_SetDung_Barb_Wastes_Enmy = 444832,
            p4_SetDung_Barb_Wastes_Ply = 444834,
            p4_SetDung_Death_Barb_Raekor = 444874,
            p4_SetDung_Barb_Raekor_Enmy = 444875,
            p4_SetDung_Barb_Raekor_Ply = 444876,
            p4_SetDung_Death_Barb_Might = 444915,
            p4_SetDung_Barb_Might_Enmy = 444922,
            p4_SetDung_Barb_Might_Ply = 444923,
            P4_ItemPassive_Unique_Ring_003 = 444929,
            P4_ItemPassive_Unique_Ring_004 = 444969,
            p4_SetDung_Death_Wiz_Vyr = 444972,
            p4_SetDung_Wiz_Vyr_Enmy = 444975,
            p4_SetDung_Wiz_Vyr_Ply = 444976,
            p4_SetDung_Death_DH_Mar = 444996,
            p4_SetDung_DH_Mar_Enmy = 444997,
            p4_SetDung_DH_Mar_Ply = 444998,
            p4_SetDung_Death_DH_Nat = 445007,
            P4_ItemPassive_Unique_Ring_005 = 445008,
            p4_SetDung_DH_Nat_Enmy = 445009,
            p4_SetDung_DH_Nat_Ply = 445010,
            p4_SetDung_Death_DH_Ess = 445035,
            p4_SetDung_DH_Ess_Enmy = 445036,
            p4_SetDung_DH_Ess_Ply = 445037,
            p4_SetDung_Death_DH_Shadow = 445062,
            p4_SetDung_DH_Shadow_Enmy = 445063,
            p4_SetDung_DH_Shadow_Ply = 445064,
            p4_SetDung_Death_WD_Tooth = 445081,
            p4_SetDung_WD_Tooth_Enmy = 445082,
            p4_SetDung_WD_Tooth_Ply = 445083,
            p4_SetDung_Death_WD_Haunt = 445098,
            p4_SetDung_WD_Haunt_Enmy = 445099,
            p4_SetDung_WD_Haunt_Ply = 445100,
            p4_SetDung_Death_WD_Spider = 445132,
            p4_SetDung_WD_Spider_Enmy = 445133,
            p4_SetDung_WD_Spider_Ply = 445134,
            p4_SetDung_Death_WD_Jade = 445155,
            p4_SetDung_WD_Jade_Enmy = 445156,
            p4_SetDung_WD_Jade_Ply = 445157,
            p4_SetDung_Death_Monk_Innas = 445173,
            p4_SetDung_Monk_Innas_Enmy = 445174,
            p4_SetDung_Monk_Innas_Ply = 445175,
            p4_SetDung_Death_Monk_Sunwuko = 445191,
            p4_SetDung_Monk_Sunwuko_Enmy = 445192,
            p4_SetDung_Monk_Sunwuko_Ply = 445193,
            p4_SetDung_Death_Monk_Uliana = 445208,
            p4_SetDung_Monk_Uliana_Enmy = 445209,
            p4_SetDung_Monk_Uliana_Ply = 445210,
            p4_SetDung_Death_Monk_Storms = 445225,
            p4_SetDung_Monk_Storms_Enmy = 445233,
            p4_SetDung_Monk_Storms_Ply = 445234,
            p4_SetDung_Death_Cru_Thorns = 445251,
            p4_SetDung_Cru_Thorns_Enmy = 445257,
            p4_SetDung_Cru_Thorns_Ply = 445258,
            P4_ItemPassive_Unique_Ring_006 = 445266,
            P4_ItemPassive_Unique_Ring_007 = 445274,
            p4_SetDung_Death_Cru_Seeker = 445276,
            p4_SetDung_Cru_Seeker_Enmy = 445277,
            p4_SetDung_Cru_Seeker_Ply = 445278,
            P4_ItemPassive_Unique_Ring_008 = 445279,
            P4_ItemPassive_Unique_Ring_009 = 445427,
            MastaBlasta_Rider_Lobbed_Shot_LR = 445562,
            P4_ItemPassive_Unique_Ring_010 = 445639,
            P4_Forest_MysteriousHermit_ArcaneFireball = 445642,
            P4_ItemPassive_Unique_Ring_011 = 445692,
            X1_LR_Boss_Summon_CoreElites = 445693,
            P4_ItemPassive_Unique_Ring_012 = 445694,
            P4_ItemPassive_Unique_Ring_013 = 445765,
            p4_SetDung_Wiz_Firebird_Enmy = 445771,
            p4_SetDung_Wiz_Firebird_Ply = 445772,
            P4_Shrine_Debuff_Damage = 445778,
            P4_Shrine_Debuff_Spawner = 445788,
            P4_ItemPassive_Unique_Ring_014 = 445798,
            p4_Forest_MysteriousHermit_BoomerangBlade = 445808,
            P4_ItemPassive_Unique_Ring_015 = 445814,
            P4_ItemPassive_Unique_Ring_016 = 445829,
            p4_Forest_MysteriousHermit_TeleportIllusion = 445850,
            P4_Forest_MysteriousHermit_ArcaneFireballs = 445864,
            P4_Forest_MysteriousHermit_ArcaneFlameWall = 445865,
            Kill_Actor = 445899,
            P4_ItemPassive_Unique_Ring_017 = 445920,
            P4_ItemPassive_Unique_Ring_018 = 445942,
            P4_ItemPassive_Unique_Ring_019 = 445943,
            P4_ItemPassive_Unique_Ring_020 = 446008,
            P4_ItemPassive_Unique_Ring_021 = 446063,
            P4_ItemPassive_Unique_Ring_022 = 446142,
            P4_ItemPassive_Unique_Ring_023 = 446146,
            P4_ItemPassive_Unique_Ring_025 = 446162,
            P4_ItemPassive_Unique_Ring_026 = 446187,
            P4_ItemPassive_Unique_Ring_027 = 446195,
            P4_ItemPassive_Unique_Ring_028 = 446318,
            P4_ItemPassive_Unique_Ring_029 = 446359,
            P4_ItemPassive_Unique_Ring_030 = 446502,
            P4_ItemPassive_Unique_Ring_031 = 446511,
            BountyGroundsBurrowOut = 446530,
            P4_ItemPassive_Unique_Ring_032 = 446541,
            P4_ItemPassive_Unique_Ring_033 = 446562,
            P4_ItemPassive_Unique_Ring_034 = 446565,
            P4_ItemPassive_Unique_Ring_035 = 446592,
            P4_ItemPassive_Unique_Ring_036 = 446615,
            P4_ItemPassive_Unique_Ring_037 = 446638,
            P4_ItemPassive_Unique_Ring_038 = 446639,
            P4_ItemPassive_Unique_Ring_039 = 446640,
            P4_ItemPassive_Unique_Ring_040 = 446641,
            P4_ItemPassive_Unique_Ring_041 = 446655,
            P4_ItemPassive_Unique_Ring_042 = 446734,
            P4_ItemPassive_Unique_Ring_043 = 446761,
            P4_ItemPassive_Unique_Ring_044 = 446762,
            P4_ItemPassive_Unique_Ring_043_SpawnDecoy = 446963,
            P4_ItemPassive_Unique_Ring_045 = 446969,
            P4_ItemPassive_Unique_Ring_046 = 447029,
            P4_ItemPassive_Unique_Ring_047 = 447030,
            p4_SetDung_Portal_Checks = 447038,
            P4_ItemPassive_Unique_Ring_048 = 447043,
            P4_ItemPassive_Unique_Ring_049 = 447060,
            P4_ItemPassive_Unique_Ring_050 = 447130,
            P4_ItemPassive_Unique_Ring_051 = 447290,
            P4_ItemPassive_Unique_Ring_052 = 447291,
            P4_ItemPassive_Unique_Ring_053 = 447295,
            P4_ItemPassive_Unique_Ring_054 = 447368,
            P4_ItemPassive_Unique_Ring_055 = 447372,
            P4_ItemPassive_Unique_Ring_056 = 447375,
            P4_SacrificeMonster_Enrage = 447376,
            P4_ItemPassive_Unique_Ring_057 = 447541,
            P4_ItemPassive_Unique_Ring_058 = 447553,
            P4_ItemPassive_Unique_Ring_059 = 447581,
            p4_SetDung_MonsterAffix_MortarCast = 447584,
            P4_ItemPassive_Unique_Ring_060 = 447696,
            P4_ItemPassive_Unique_Ring_061 = 447816,
            P4_ItemPassive_Unique_Ring_062 = 447839,
            P4_ItemPassive_Unique_Ring_063 = 447843,
            P4_ItemPassive_Unique_Ring_064 = 447905,
            p4_SetDung_Pedestal_Barb_Kings = 447950,
            p4_SetDung_Pedestal_Barb_Might = 447975,
            p4_SetDung_Pedestal_Barb_Raekor = 447976,
            p4_SetDung_Pedestal_Barb_Wastes = 447977,
            p4_SetDung_Pedestal_Cru_Akkhan = 447978,
            p4_SetDung_Pedestal_Cru_Roland = 447979,
            p4_SetDung_Pedestal_Cru_Seeker = 447980,
            p4_SetDung_Pedestal_Cru_Thorns = 447981,
            p4_SetDung_Pedestal_DH_Ess = 447982,
            p4_SetDung_Pedestal_DH_Nat = 447983,
            p4_SetDung_Pedestal_DH_Mar = 447984,
            p4_SetDung_Pedestal_DH_Shadow = 447985,
            p4_SetDung_Pedestal_Monk_Innas = 447986,
            p4_SetDung_Pedestal_Monk_Storms = 447987,
            p4_SetDung_Pedestal_Monk_Sunwuko = 447988,
            p4_SetDung_Pedestal_Monk_Uliana = 447989,
            p4_SetDung_Pedestal_WD_Haunt = 447990,
            p4_SetDung_Pedestal_WD_Jade = 447991,
            p4_SetDung_Pedestal_WD_Spider = 447992,
            p4_SetDung_Pedestal_WD_Tooth = 447993,
            p4_SetDung_Pedestal_Wiz_Firebird = 447995,
            p4_SetDung_Pedestal_Wiz_Opus = 447996,
            p4_SetDung_Pedestal_Wiz_Rasha = 447997,
            p4_SetDung_Pedestal_Wiz_Vyr = 447998,
            P4_ItemPassive_Unique_Ring_065 = 448998,
            P4_ItemPassive_Unique_Ring_066 = 449001,
            P4_ItemPassive_Unique_Ring_067 = 449021,
            P4_ItemPassive_Unique_Ring_068 = 449031,
            P4_ItemPassive_Unique_Ring_069 = 449037,
            P4_ItemPassive_Unique_Ring_070 = 449043,
            P4_ItemPassive_Unique_Ring_071 = 449046,
            P4_ItemPassive_Unique_Ring_072 = 449048,
            P4_ItemPassive_Unique_Ring_073 = 449049,
            P4_ItemPassive_Unique_Ring_074 = 449063,
            P4_ItemPassive_Unique_Ring_075 = 449064,
            P4_ItemPassive_Unique_Ring_076 = 449114,
            P4_ItemPassive_Unique_Ring_077 = 449222,
            P4_ItemPassive_Unique_Ring_078 = 449236,
            P4_ItemPassive_Unique_Ring_079 = 449237,
            P4_ItemPassive_Unique_Ring_080 = 449252,
            P4_ItemPassive_Unique_Ring_081 = 449264,
            P4_ItemPassive_Unique_Ring_082 = 449671,
            P4_ItemPassive_Unique_Ring_083 = 449703,
            P4_SacrificeMonster_BreakableNova = 450213,
            P4_ItemPassive_Unique_Ring_084 = 450294,
            p4_SetDung_Generics_Ply_Balance = 450351,
            MonsterAffix_ArcaneEnchantedCast_NoTarget = 450358,
            p4_SetDung_Generics_Portal = 450469,
            P4_ItemPassive_Unique_Ring_085 = 450472,
            ItemPassive_Unique_Gem_001U_x1 = 451157,
            P41_ItemPassive_Unique_Ring_001 = 451158,
            P41_ItemPassive_Unique_Ring_002 = 451160,
            P41_ItemPassive_Unique_Ring_003 = 451161,
            P41_ItemPassive_Unique_Ring_004 = 451162,
            P41_ItemPassive_Unique_Ring_005 = 451163,
            P41_ItemPassive_Unique_Ring_006 = 451164,
            P41_ItemPassive_Unique_Ring_007 = 451165,
            P41_ItemPassive_Unique_Ring_008 = 451166,
            P41_ItemPassive_Unique_Ring_009 = 451167,
            P41_ItemPassive_Unique_Ring_010 = 451168,
            P41_ItemPassive_Unique_Ring_011 = 451169,
            P41_ItemPassive_Unique_Ring_012 = 451170,
            P41_ItemPassive_Unique_Ring_013 = 451171,
            P41_ItemPassive_Unique_Ring_014 = 451172,
            P41_ItemPassive_Unique_Ring_015 = 451173,
            P41_ItemPassive_Unique_Ring_016 = 451174,
            P41_ItemPassive_Unique_Ring_017 = 451175,
            P41_ItemPassive_Unique_Ring_018 = 451176,
            P41_ItemPassive_Unique_Ring_019 = 451177,
            P41_ItemPassive_Unique_Ring_020 = 451178,
            P41_ItemPassive_Unique_Ring_021 = 451186,
            p4_SetDung_Westmarch_Brute_Charge = 451207,
            P42_ItemPassive_Unique_Ring_001 = 451236,
            P42_ItemPassive_Unique_Ring_002 = 451237,
            P42_ItemPassive_Unique_Ring_003 = 451238,
            P42_ItemPassive_Unique_Ring_004 = 451239,
            P42_ItemPassive_Unique_Ring_005 = 451240,
            P42_ItemPassive_Unique_Ring_006 = 451241,
            P42_ItemPassive_Unique_Ring_007 = 451242,
            P42_ItemPassive_Unique_Ring_008 = 451243,
            P42_ItemPassive_Unique_Ring_009 = 451244,
            P42_ItemPassive_Unique_Ring_010 = 451245,
            P42_ItemPassive_Unique_Ring_011 = 451246,
            P42_ItemPassive_Unique_Ring_012 = 451247,
            P42_ItemPassive_Unique_Ring_013 = 451248,
            P42_ItemPassive_Unique_Ring_014 = 451249,
            P42_ItemPassive_Unique_Ring_015 = 451250,
            P42_ItemPassive_Unique_Ring_016 = 451251,
            P42_ItemPassive_Unique_Ring_017 = 451252,
            P42_ItemPassive_Unique_Ring_018 = 451253,
            P42_ItemPassive_Unique_Ring_019 = 451254,
            P42_ItemPassive_Unique_Ring_020 = 451255,
            P5_ItemPassive_Unique_Ring_001 = 451256,
            P5_ItemPassive_Unique_Ring_002 = 451257,
            P5_ItemPassive_Unique_Ring_003 = 451258,
            P5_ItemPassive_Unique_Ring_004 = 451259,
            P5_ItemPassive_Unique_Ring_005 = 451260,
            P5_ItemPassive_Unique_Ring_006 = 451261,
            P5_ItemPassive_Unique_Ring_007 = 451262,
            P5_ItemPassive_Unique_Ring_008 = 451263,
            P5_ItemPassive_Unique_Ring_009 = 451264,
            P5_ItemPassive_Unique_Ring_010 = 451265,
            P5_ItemPassive_Unique_Ring_011 = 451266,
            P5_ItemPassive_Unique_Ring_012 = 451267,
            P5_ItemPassive_Unique_Ring_013 = 451268,
            P5_ItemPassive_Unique_Ring_014 = 451269,
            P5_ItemPassive_Unique_Ring_015 = 451270,
            P5_ItemPassive_Unique_Ring_016 = 451271,
            P5_ItemPassive_Unique_Ring_017 = 451272,
            P5_ItemPassive_Unique_Ring_018 = 451273,
            P5_ItemPassive_Unique_Ring_019 = 451274,
            P5_ItemPassive_Unique_Ring_020 = 451275,
            X1_Legendary_Potion_10 = 451310,
            P42_ItemPassive_Unique_Ring_697_x1 = 451313,
            p42_ItemPassive_Unique_Ring_945 = 451333,
            P6_Necro_BoneSpear = 451490,
            P6_Necro_Decrepify = 451491,
            DeathBro_SummonSkeletons = 451528,
            P6_Necro_RaiseGolem = 451537,
            DeathBro_Teleport = 451543,
            DeathBro_BoneCage = 451544,
            P6_Necro_SkeletonMage_Fire_Projectile = 451557,
            P6_Necro_Golem_Melee = 451561,
            P6_Necro_SiphonBlood = 453563,
            p43_d1_ZoltunKulle_FieryBoulder = 453734,
            p43_d1_ZoltunKulle_Teleport = 453738,
            p43_d1_Diablo_ClawRip = 453765,
            P6_Necro_Trait_SkeletonSpawner = 453793,
            P6_Necro_CommandSkeletons = 453801,
            p43_d1_fastMummy_Stealth = 453802,
            p43_d1_fastMummy_Melee = 453803,
            p43_d1_FleshPitFlyer_Blink = 453994,
            p43_d1_ZombieSkinny_Melee = 454045,
            P6_Necro_BloodRush = 454090,
            P6_Necro_GenericCorpseTargeting = 454137,
            p43_d1_Gorehound_AcidSpit = 454139,
            p43_d1_TerrorDemon_LightningBreath = 454163,
            P6_Necro_CorpseExplosion = 454174,
            p43_d1_Mage_Teleport = 454584,
            p43_d1_Mage_Flash = 454586,
            ItemPassive_Unique_Gem_022_x1 = 454736,
            ItemPassive_Unique_Gem_022U_x1 = 454737,
            P43_ItemPassive_Unique_Ring_001 = 454918,
            P43_ItemPassive_Unique_Ring_002 = 454927,
            P43_ItemPassive_Unique_Ring_003 = 454929,
            P43_ItemPassive_Unique_Ring_004 = 454930,
            P43_ItemPassive_Unique_Ring_005 = 454932,
            P43_ItemPassive_Unique_Ring_006 = 454934,
            P43_ItemPassive_Unique_Ring_007 = 454935,
            P43_ItemPassive_Unique_Ring_008 = 454936,
            P43_ItemPassive_Unique_Ring_009 = 454937,
            P43_ItemPassive_Unique_Ring_010 = 454938,
            P43_ItemPassive_Unique_Ring_011 = 454939,
            P43_ItemPassive_Unique_Ring_012 = 454940,
            p43_AD_Event_AnvilOfFury = 455050,
            P6_Necro_Skeletal_Warrior_Melee = 455151,
            p43_AD_Barrel_Explode = 455182,
            p43_AD_TrapArrow = 455198,
            MonsterAffix_Juggernaut = 455436,
            p43_d1_Butcher_Melee_Basic = 455501,
            P6_Necro_RaiseSkeletons_ChargeAttack = 456302,
            Lost_Souls_Prototype_V2 = 456719,
            P6_Necro_RaiseDead_Mage_SpawnAttack = 457769,
            P6_Necro_Skeletal_Warrior_UberMelee = 457832,
            P6_Necro_Trait_GolemSpawner = 460062,
            Passive_Challenge_Rift = 460197,
            P6_Necro_SkeleBomb = 460358,
            P6_Necro_Devour = 460757,
            P6_Necro_Frailty = 460870,
            p6_Shepherd_Ranged_Attack = 461453,
            P6_Necro_CorpseLance = 461650,
            P6_Necro_RaiseDead = 462089,
            P6_Necro_BoneSpikes = 462147,
            P6_Necro_GrimScythe = 462198,
            P6_Necro_Revive = 462239,
            P6_Necro_BloodNova = 462243,
            P6_Necro_Leech = 462255,
            P6_Shepherd_Teleport_Intro = 462770,
            P6_Shepherd_Teleport_Outro = 462771,
            p6_Necro_Revive_MorluSpellcaster_BreathOfFire = 462969,
            p6_Necro_Revive_FallenShaman_Projectile = 463173,
            p6_Necro_RaiseGolem_BloodGolem_VeinAoE = 463797,
            P6_Werewolf_Leap = 464027,
            P6_Necro_RaiseDead_Mage_SpawnAttack_NoTarget = 464530,
            P6_Werewolf_Melee = 464583,
            P6_Werewolf_Howl = 464614,
            P6_Werewolf_JumpBack = 464670,
            P6_Werewolf_ClawRush = 464675,
            p6_Necro_BoneSpirit = 464896,
            P6_Necro_Passive_PuppetMaster = 464994,
            P6_Necro_BoneSpirit_Passive = 464999,
            P6_Necro_Passive_BloodIsPower = 465037,
            p6_TempleCultist_Lobbed_Shot = 465139,
            p6_TempleCultist_Suicide = 465143,
            P6_Necro_RaiseGolem_BoneGolem_Tornado = 465257,
            P6_Necro_Passive_HealthRegen = 465264,
            P6_Necro_Simulacrum = 465350,
            P6_Werewolf_Melee_Fire = 465394,
            P6_Necro_Passive_HealthGlobesFromCorpseConsumption = 465703,
            P6_Necro_Passive_HealthGlobesFreeCast = 465821,
            P6_Necro_LandOfTheDead = 465839,
            P6_Necro_Passive_CorpseConsumptionIncreasesMovementSpeed = 465917,
            P6_Necro_Passive_CheatDeath = 465952,
            AI_Close_Far = 466012,
            p6_Necro_Revive_ZombieFemale_Projectile = 466256,
            P6_Necro_Passive_RigorMortis = 466415,
            p6_Necro_Revive_SkeletonArcher_Projectile = 466508,
            p6_Necro_Revive_SkeletonSummoner_Projectile = 466524,
            P6_Necro_BoneArmor = 466857,
            P6_Necro_RaiseGolem_FleshGolem_DropCorpses = 466862,
            p6_Necro_Revive_skeletonMage_Projectile = 466879,
            p6_RavenFlyer_JumpBack_Attack = 467137,
            p6_Necro_Revive_TriuneSummoner_Projectile = 467271,
            P6_ItemPassive_Unique_Ring_001 = 467463,
            P6_ItemPassive_Unique_Ring_002 = 467464,
            P6_ItemPassive_Unique_Ring_003 = 467465,
            AI_FollowWithWalk_Far = 467524,
            p6_Necro_Revive_HoodedNightmare_Projectile = 467625,
            p6_Necro_Revive_BigRed_Charge = 467631,
            p6_SetDung_Death_Necro_Blood = 468592,
            p6_SetDung_Death_Necro_Bone = 468593,
            p6_SetDung_Death_Necro_Plague = 468594,
            p6_SetDung_Death_Necro_Saint = 468595,
            p6_SetDung_Necro_Blood_Enmy = 468596,
            p6_SetDung_Necro_Blood_Ply = 468597,
            p6_SetDung_Necro_Bone_Enmy = 468598,
            p6_SetDung_Necro_Bone_Ply = 468599,
            p6_SetDung_Necro_Plague_Enmy = 468600,
            p6_SetDung_Necro_Plague_Ply = 468601,
            p6_SetDung_Necro_Saint_Enmy = 468602,
            p6_SetDung_Necro_Saint_Ply = 468603,
            p6_SetDung_Pedestal_Necro_Blood = 468604,
            p6_SetDung_Pedestal_Necro_Bone = 468605,
            p6_SetDung_Pedestal_Necro_Plague = 468606,
            p6_SetDung_Pedestal_Necro_Saint = 468607,
            p6_RavenFlyer_PathingBuff = 469618,
            p6_Shepherd_Ranged_Attack_Nodmg = 469818,
            P6_Shepherd_Boss_Teleport_Outro = 469966,
            p6_Necro_Revive_Angel_Corrupt_PiercingDash = 469983,
            P6_Envy_Boss_Look_Switch = 470267,
            LS_p4_SeaMonster_SpawnCrabs = 470419,
            P6_Werewolf_Leap_Fire = 470440,
            p6_Necro_Revive_ThousandPounder_Knockback = 470477,
            P6_Envy_Boss_MirrorPort_Buff = 470530,
            P6_Envy_Boss_RangedPort_Buff = 470531,
            P6_Envy_Boss_MirrorPort_Buff_Remove = 470543,
            P6_Necro_Passive_StandAlone = 470725,
            P6_Necro_Passive_MaxEssence = 470764,
            p6_CrowHound_Projectile = 470770,
            P6_Necro_Passive_BuilderAttackSpeed = 470805,
            P6_Necro_Passive_ScytheRegenPerKill = 470812,
            p6_Necro_Revive_BeastCharge = 470882,
            p6_Necro_Revive_Brickhouse_Slam = 470952,
            p6_Necro_Revive_Westmarch_BruteB_Decapitate_Slide = 470970,
            p6_Necro_Revive_CorpulentExplode = 470990,
            p6_Necro_Revive_DemonFlyer_Projectile = 471091,
            p6_Necro_Revive_Dervish_Whirlwind = 471147,
            p6_Necro_Revive_FastMummy_Disease_Cloud = 471173,
            p6_TempleMonstrosity_MeleeLance = 471326,
            P6_Necro_RaiseDead_D_DecayAura = 471359,
            P6_Necro_RaiseDead_E_ArcherAttack = 471374,
            p6_TempleMonstrosity_GrenadeVolley = 471378,
            P6_Necro_RaiseGolem_ConsumeGolem_EatCorpses = 471615,
            P6_Necro_RaiseGolem_IceGolem_Freeze = 471655,
            P6_Necro_PassiveManager_Decrepify = 471738,
            p6_Necro_Revive_Goatman_Shaman_Lightningbolt = 471809,
            P6_Necro_PassiveManager_Frailty = 471845,
            p6_Necro_Revive_Goatman_Ranged_Projectile = 471863,
            P6_Necro_PassiveManager_Leech = 471869,
            P6_Necro_Revive_GoatMutant_Ranged_Projectile = 471972,
            P6_Necro_Revive_GoatMutantShamanBlast = 471982,
            p6_Necro_Revive_Lacuni_Leap = 472055,
            p6_Necro_Revive_LacuniMale_DoubleSwing = 472112,
            AI_Follow_MeleeLead_Pet_Far = 472153,
            P6_Necro_Passive_CurseDamageBonus = 472220,
            P6_ItemPassive_Unique_Ring_004 = 472266,
            P6_ItemPassive_Unique_Ring_005 = 472267,
            P6_ItemPassive_Unique_Ring_006 = 472268,
            P6_ItemPassive_Unique_Ring_007 = 472269,
            P6_ItemPassive_Unique_Ring_008 = 472270,
            P6_ItemPassive_Unique_Ring_009 = 472271,
            P6_ItemPassive_Unique_Ring_010 = 472272,
            P6_ItemPassive_Unique_Ring_011 = 472273,
            P6_ItemPassive_Unique_Ring_012 = 472274,
            P6_Necro_BoneSpikes_InversePassability = 472587,
            P6_ItemPassive_Unique_Ring_013 = 472668,
            P6_ItemPassive_Unique_Ring_014 = 472669,
            P6_ItemPassive_Unique_Ring_015 = 472670,
            P6_ItemPassive_Unique_Ring_016 = 472671,
            P6_ItemPassive_Unique_Ring_017 = 472672,
            P6_ItemPassive_Unique_Ring_018 = 472673,
            P6_ItemPassive_Unique_Ring_019 = 472674,
            P6_ItemPassive_Unique_Ring_020 = 472675,
            P6_ItemPassive_Unique_Ring_021 = 472676,
            P6_ItemPassive_Unique_Ring_022 = 472677,
            P6_ItemPassive_Unique_Ring_023 = 472678,
            P6_ItemPassive_Unique_Ring_024 = 472679,
            P6_ItemPassive_Unique_Ring_025 = 472693,
            P6_ItemPassive_Unique_Ring_026 = 472694,
            P6_ItemPassive_Unique_Ring_027 = 472695,
            P6_ItemPassive_Unique_Ring_028 = 472697,
            P6_ItemPassive_Unique_Ring_029 = 472698,
            P6_ItemPassive_Unique_Ring_030 = 472699,
            P6_ItemPassive_Unique_Ring_031 = 472700,
            P6_ItemPassive_Unique_Ring_032 = 472701,
            P6_ItemPassive_Unique_Ring_033 = 472702,
            P6_ItemPassive_Unique_Ring_034 = 472703,
            P6_ItemPassive_Unique_Ring_035 = 472704,
            P6_ItemPassive_Unique_Ring_036 = 472705,
            P6_Necro_Passive_EternalTorment = 472795,
            p6_Shepherd_Ranged_Attack_Boss = 472850,
            P6_Necro_Passive_Serration = 472905,
            P6_Necro_Passive_RathmasShield = 472910,
            P6_Necro_Passive_AberrantAnimator = 472949,
            P6_Necro_Passive_CommanderoftheDead = 472962,
            P6_Necro_Passive_BonePrison = 472965,
            P6_Necro_RaiseDead_E_ArcherSpawnAttack = 472995,
            P6_Necro_Passive_GrislyTribute = 473019,
            P6_Shepherd_Teleport_Intro_Mirror = 473826,
            P6_Necro_Frailty_Aura = 473992,
            p6_Necro_Revive_LeaperAngel_Leap = 474096,
            Passive_Set_Dungeon = 474206,
            P6_Necro_Devour_Aura = 474325,
            P6_Necro_RaiseDead_D_DecayAura_Spawn = 474371,
            P6_EnvyDMGReduction = 474684,
            P6_Necro_Revive_Ice_Porcupine_Shot = 474749,
            p6_Necro_Revive_Unburied_Knockback = 474825,
            P6_Necro_Revive_Melee = 474930,
            P6_ItemPassive_Unique_Ring_037 = 475241,
            P6_ItemPassive_Unique_Ring_038 = 475242,
            P6_ItemPassive_Unique_Ring_039 = 475243,
            P6_ItemPassive_Unique_Ring_040 = 475244,
            P6_ItemPassive_Unique_Ring_041 = 475245,
            P6_ItemPassive_Unique_Ring_042 = 475246,
            P6_ItemPassive_Unique_Ring_043 = 475247,
            P6_ItemPassive_Unique_Ring_044 = 475248,
            P6_ItemPassive_Unique_Ring_045 = 475249,
            P6_ItemPassive_Unique_Ring_046 = 475250,
            P6_ItemPassive_Unique_Ring_047 = 475251,
            P6_ItemPassive_Unique_Ring_049 = 475252,
            P6_ItemPassive_Unique_Ring_048 = 475253,
            P6_ItemPassive_Unique_Ring_050 = 475254,
            p6_Necro_Revive_Mermaid_Ranged_Projectile = 475304,
            P6_Necro_Simulacrum_Weapon_Melee_Instant = 475334,
            p6_Necro_Revive_MoleMutant_Ranged_Projectile = 475462,
            p6_Necro_Revive_MoleMutant_Shaman_Projectile = 475495,
            ItemPassive_x1_Amulet_norm_unique_25_Necromancer = 475677,
            p6_Necro_Revive_SandWasp_Projectile = 475916,
            P6_ItemPassive_Unique_Ring_051 = 476047,
            P6_ItemPassive_Unique_Ring_052 = 476048,
            P6_ItemPassive_Unique_Ring_053 = 476049,
            P6_ItemPassive_Unique_Ring_054 = 476050,
            P6_ItemPassive_Unique_Ring_055 = 476051,
            P6_ItemPassive_Unique_Ring_056 = 476052,
            p6_Necro_Revive_ScorpionBug_Hover_Projectile = 476109,
            P6_Shepherd_Spawn_Intro = 476218,
            P6_Shepherd_Spawn_Outro = 476233,
            p6_Necro_Revive_pandExt_Ranged = 476314,
            p6_Necro_Revive_Dark_Angel_SoulRush = 476335,
            p6_Necro_Revive_Succubus_BloodStar = 476353,
            p6_Necro_Revive_CrowHound_Projectile = 476425,
            p6_Necro_Revive_deathMaiden_Spin_Attack = 476485,
            p6_Necro_Revive_QuillDemon_Projectile = 476524,
            P6_ItemPassive_Unique_Ring_057 = 476578,
            P6_ItemPassive_Unique_Ring_058 = 476579,
            P6_ItemPassive_Unique_Ring_059 = 476580,
            P6_ItemPassive_Unique_Ring_060 = 476581,
            P6_ItemPassive_Unique_Ring_061 = 476582,
            P6_ItemPassive_Unique_Ring_062 = 476583,
            P6_ItemPassive_Unique_Ring_063 = 476584,
            P6_ItemPassive_Unique_Ring_064 = 476585,
            P6_ItemPassive_Unique_Ring_065 = 476586,
            P6_ItemPassive_Unique_Ring_066 = 476587,
            P6_ItemPassive_Unique_Ring_067 = 476588,
            P6_ItemPassive_Unique_Ring_068 = 476589,
            P6_ItemPassive_Unique_Ring_069 = 476590,
            p6_Shepherd_Ranged_Attack_Boss_Transformed = 476611,
            P6_ItemPassive_Unique_Ring_070 = 476684,
            p6_Necro_Revive_Werewolf_Melee = 476685,
            P6_ItemPassive_Unique_Ring_071 = 476686,
            P6_ItemPassive_Unique_Ring_072 = 476689,
            P6_ItemPassive_Unique_Ring_073 = 476695,
            P6_ItemPassive_Unique_Ring_074 = 476696,
            p6_Necro_Revive_Shepherd_Projectile = 476699,
            p6_Necro_Revive_TempleCultist_Caster_Projectile = 476710,
            p6_Necro_Revive_TempleCultist_Suicide = 476715,
            p6_Necro_Revive_armorScavenger_buff = 476778,
            AI_Wander_Minion = 476791,
            p6_Necro_Revive_westmarchRanged_Projectile = 476848,
            P6_Necro_Revive_Wraith_Melee = 476925,
            p6_Necro_Revive_rockworm_projectile = 477004,
            AI_Close_Farther = 477010,
            AI_FollowWithWalkNatural = 477018,
            p6_Necro_Revive_BogFamily_Ranged_RapidShot = 477233,
            p6_Necro_Revive_PortalGuardianMinion_projectile = 477336,
            p6_Necro_Revive_FloaterAngel_Projectile = 477406,
            p6_Necro_Revive_SniperAngel_closeRangedAttack = 477433,
            p6_Necro_Revive_NightScreamer_Projectile = 477454,
            p6_Necro_Revive_WestmarchHound_Taunt = 477578,
            p6_Necro_Revive_WestmarchHound_TauntSearch = 477579,
            p6_Necro_Revive_Westmarch_Brute_Charge = 477779,
            P6_Shepherd_Spawn_Boss_Outro = 477974,
            p6_Necro_RaiseGolem_DestroyBreakables = 478216
        }
    Attribs
    Code:
    public enum AttributeId
    	{
            AxeBadData = 0,
            AttributeTimer = 1,
            AttributePool = 2,
            DeathCount = 3,
            DualWieldHand = 4,
            DualWieldHandNext = 5,
            DualWieldHandsSwapped = 6,
            RespawnGameTime = 7,
            BackpackSlots = 8,
            SharedStashSlots = 9,
            Strength = 10,
            Dexterity = 11,
            Intelligence = 12,
            Vitality = 13,
            StrengthTotal = 14,
            DexterityTotal = 15,
            IntelligenceTotal = 16,
            VitalityTotal = 17,
            StrengthBonus = 18,
            DexterityBonus = 19,
            IntelligenceBonus = 20,
            VitalityBonus = 21,
            StrengthBonusPercent = 22,
            DexterityBonusPercent = 23,
            IntelligenceBonusPercent = 24,
            VitalityBonusPercent = 25,
            StrengthReductionPercent = 26,
            DexterityReductionPercent = 27,
            IntelligenceReductionPercent = 28,
            VitalityReductionPercent = 29,
            PrimaryDamageAttribute = 30,
            Armor = 31,
            ArmorBonusPercent = 32,
            ArmorItem = 33,
            ArmorBonusItem = 34,
            ArmorItemPercent = 35,
            ArmorItemSubTotal = 36,
            ArmorItemTotal = 37,
            ArmorTotal = 38,
            ExperienceGrantedHi = 39,
            ExperienceGrantedLow = 40,
            ExperienceNextHi = 41,
            ExperienceNextLo = 42,
            AltExperienceNextHi = 43,
            AltExperienceNextLo = 44,
            RestExperienceHi = 45,
            RestExperienceLo = 46,
            RestExperienceBonusPercent = 47,
            GoldGranted = 48,
            Gold = 49,
            GoldFind = 50,
            GoldFindUncapped = 51,
            GoldFindHandicap = 52,
            GoldFindAltLevelsTotal = 53,
            GoldFindCommunityBuff = 54,
            GoldFindPotionBuff = 55,
            GoldFindTotal = 56,
            Level = 57,
            LevelCap = 58,
            AltLevel = 59,
            MagicFind = 60,
            MagicFindUncapped = 61,
            MagicFindHandicap = 62,
            MagicFindAltLevelsTotal = 63,
            MagicFindCappedSubtotal = 64,
            MagicFindTotal = 65,
            MagicAndGoldFindSuppressed = 66,
            TreasureFind = 67,
            LegendaryFindCommunityBuff = 68,
            ResourceCostReductionAmount = 69,
            ResourceCostReductionTotal = 70,
            ResourceSetPointBonus = 71,
            FasterHealingPercent = 72,
            SpendingResourceHealsPercent = 73,
            BonusHealingReceivedPercent = 74,
            ReducedHealingReceivedPercent = 75,
            HealingWellRestoresResource = 76,
            ExperienceBonus = 77,
            ExperienceBonusPercent = 78,
            ExperienceBonusPercentHandicap = 79,
            ExperienceBonusPercentTotal = 80,
            ExperienceBonusNoPenalty = 81,
            HealthGlobeBonusChance = 82,
            HealthGlobeBonusMultChance = 83,
            PowerupGlobeBonusChance = 84,
            PowerupGlobeBonusMultChance = 85,
            HealthGlobeBonusHealth = 86,
            IncreasedHealthFromGlobesPercent = 87,
            IncreasedHealthFromGlobesPercentTotal = 88,
            BonusHealthPercentPerSecondFromGlobes = 89,
            BonusHealthPercentPerSecondFromGlobesTotal = 90,
            ManaGainedFromGlobesPercent = 91,
            ManaGainedFromGlobes = 92,
            Resistance = 93,
            ResistancePercent = 94,
            ResistanceTotal = 95,
            ResistanceAll = 96,
            ResistancePercentAll = 97,
            ResistanceFromIntelligence = 98,
            ClassDamageReductionPercent = 99,
            Skill = 100,
            SkillFromItem = 101,
            SkillTotal = 102,
            TeamID = 103,
            TeamOverride = 104,
            Invulnerable = 105,
            Loading = 106,
            LoadingPlayerACD = 107,
            LoadingPowerSNO = 108,
            LoadingAnimTag = 109,
            LoadingNewGame = 110,
            AutoPortingToSavePoint = 111,
            NoDamage = 112,
            NoAutoPickup = 113,
            LightRadiusPercentBonus = 114,
            HitpointsCur = 115,
            HitpointsFactorLevel = 116,
            HitpointsFactorVitality = 117,
            HitpointsTotalFromVitality = 118,
            HitpointsTotalFromLevel = 119,
            HitpointsGranted = 120,
            HitpointsGrantedDuration = 121,
            HitpointsMax = 122,
            HitpointsMaxBonus = 123,
            HitpointsMaxTotal = 124,
            HitpointsPercent = 125,
            HitpointsRegenPerSecond = 126,
            HitpointsRegenPerSecondBonus = 127,
            HitpointsRegenPerSecondBonusFromSkills = 128,
            HitpointsRegenBonusPercent = 129,
            HitpointsRegenPerSecondSubtotal = 130,
            HitpointsRegenReductionPercent = 131,
            HitpointsRegenPerSecondHealthGlobe = 132,
            HitpointsRegenPerSecondTotal = 133,
            HitpointsMaxPercentBonus = 134,
            HitpointsMaxPercentBonusItem = 135,
            HitpointsMaxPercentBonusMultiplicative = 136,
            HitpointsHealedTarget = 137,
            HitpointsFrozen = 138,
            HealingSuppressed = 139,
            DOTDamageTakenQueued = 140,
            DOTDamageTakenQueuedTick = 141,
            DOTDamageTakenQueuedPlayer = 142,
            DOTDamageTakenQueuedPlayerTick = 143,
            HealingReceivedQueued = 144,
            HealingReceivedQueuedTick = 145,
            StaggeredDamageFraction = 146,
            StaggeredDamageDuration = 147,
            ResourceTypePrimary = 148,
            ResourceTypeSecondary = 149,
            ResourceCur = 150,
            ResourceMax = 151,
            ResourceMaxBonus = 152,
            ResourceMaxTotal = 153,
            ResourceFactorLevel = 154,
            ResourceGranted = 155,
            ResourceGrantedDuration = 156,
            ResourcePercent = 157,
            ResourceRegenPerSecond = 158,
            ResourceRegenBonusPercent = 159,
            ResourceRegenTotal = 160,
            ResourceRegenStopRegen = 161,
            ResourceMaxPercentBonus = 162,
            ResourceCapacityUsed = 163,
            ResourceEffectiveMax = 164,
            ResourceRegenPercentPerSecond = 165,
            ResourceDegenerationStopPoint = 166,
            HighestSoloRiftLevel = 167,
            HighestUnlockedRiftLevel = 168,
            LastRiftStartedLevel = 169,
            HighestHeroSoloRiftLevel = 170,
            MovementScalar = 171,
            WalkingRate = 172,
            RunningRate = 173,
            SprintingRate = 174,
            StrafingRate = 175,
            WalkingRateTotal = 176,
            RunningRateTotal = 177,
            LastRunningRate = 178,
            SprintingRateTotal = 179,
            StrafingRateTotal = 180,
            MovementBonusTotal = 181,
            MovementScalarSubtotal = 182,
            MovementScalarCappedTotal = 183,
            MovementScalarUncappedBonus = 184,
            MovementScalarTotal = 185,
            MovementBonusRunSpeed = 186,
            MovementScalarCap = 187,
            CastingSpeed = 188,
            CastingSpeedBonus = 189,
            CastingSpeedTotal = 190,
            AlwaysHits = 191,
            HitChance = 192,
            KnockbackAttackScalar = 193,
            AttacksPerSecondItem = 194,
            AttacksPerSecondItemPercent = 195,
            AttacksPerSecondItemSubtotal = 196,
            AttacksPerSecondItemBonus = 197,
            AttacksPerSecondItemTotal = 198,
            AttacksPerSecond = 199,
            AttacksPerSecondBonus = 200,
            AttacksPerSecondTotal = 201,
            AttacksPerSecondPercentCap = 202,
            AttacksPerSecondPercent = 203,
            AttacksPerSecondPercentUncapped = 204,
            AttacksPerSecondPercentReduction = 205,
            AttacksPerSecondPercentSubtotal = 206,
            AICooldownReductionPercent = 207,
            PowerCooldownMinTime = 208,
            PowerCooldownReductionPercent = 209,
            PowerCooldownReductionPercentAll = 210,
            PowerCooldownReductionPercentAllCapped = 211,
            DamageDelta = 212,
            DamageDeltaTotal = 213,
            DamageMin = 214,
            DamageBonusMin = 215,
            DamageMinTotal = 216,
            DamageDeltaTotalAll = 217,
            DamageMinTotalAll = 218,
            DamageAverageTotalAll = 219,
            DamageMinSubtotal = 220,
            DamagePercentAllFromSkills = 221,
            DamageWeaponDelta = 222,
            DamageWeaponDeltaSubTotal = 223,
            DamageWeaponMax = 224,
            DamageWeaponMaxTotal = 225,
            DamageWeaponMaxTotalAll = 226,
            DamageWeaponDeltaTotal = 227,
            DamageWeaponDeltaTotalAll = 228,
            DamageWeaponBonusDelta = 229,
            DamageWeaponBonusDeltaX1 = 230,
            DamageWeaponMin = 231,
            DamageWeaponMinTotal = 232,
            DamageWeaponMinTotalAll = 233,
            DamageWeaponAverage = 234,
            DamageWeaponAverageTotal = 235,
            DamageWeaponAverageTotalAll = 236,
            DamageWeaponBonusMin = 237,
            DamageWeaponBonusMinX1 = 238,
            DamageWeaponBonusFlat = 239,
            DamageWeaponPercentBonus = 240,
            DamageWeaponPercentAll = 241,
            DamageWeaponPercentTotal = 242,
            DamageTypePercentBonus = 243,
            DamageDealtPercentBonus = 244,
            DamagePercentBonusWitchdoctor = 245,
            DamagePercentBonusWizard = 246,
            CritPercentBase = 247,
            CritPercentBonusCapped = 248,
            CritPercentBonusUncapped = 249,
            CritPercentBonusHideFromDPS = 250,
            CritPercentCap = 251,
            CritDamageCap = 252,
            CritDamagePercent = 253,
            CritDamagePercentUncapped = 254,
            CritEffectTime = 255,
            PierceChance = 256,
            DamageAbsorbPercent = 257,
            DamageReductionTotal = 258,
            DamageReductionCurrent = 259,
            DamageReductionLastTick = 260,
            BlockChance = 261,
            BlockChanceSubTotal = 262,
            BlockChanceBonusItem = 263,
            BlockChanceItem = 264,
            BlockChanceItemTotal = 265,
            BlockChanceUncappedBonus = 266,
            BlockChanceCappedTotal = 267,
            BlockAmount = 268,
            BlockAmountBonusPercent = 269,
            BlockAmountTotalMin = 270,
            BlockAmountTotalMax = 271,
            BlockAmountItemMin = 272,
            BlockAmountItemDelta = 273,
            BlockAmountItemBonus = 274,
            DodgeChanceBonus = 275,
            DodgeChanceBonusMelee = 276,
            DodgeChanceBonusRanged = 277,
            DodgeChanceBonusAdditive = 278,
            DodgeChanceBonusHideFromToughness = 279,
            CannotDodge = 280,
            GetHitCurrent = 281,
            GetHitMaxBase = 282,
            GetHitMaxPerLevel = 283,
            GetHitMax = 284,
            GetHitRecoveryBase = 285,
            GetHitRecoveryPerLevel = 286,
            GetHitRecovery = 287,
            GetHitDamage = 288,
            GetHitDamageScalar = 289,
            LastDamageMainActor = 290,
            LastACDAttacked = 291,
            IgnoresCriticalHits = 292,
            Immunity = 293,
            Untargetable = 294,
            Immobolize = 295,
            ImmuneToKnockback = 296,
            PowerImmobilize = 297,
            StunChance = 298,
            StunLength = 299,
            StunRecovery = 300,
            StunRecoverySpeed = 301,
            Stunned = 302,
            StunImmune = 303,
            PoisonLengthReduction = 304,
            Bleeding = 305,
            BleedDuration = 306,
            Chilled = 307,
            FreezeLengthReduction = 308,
            FreezeImmune = 309,
            ChillDurationBonusPercent = 310,
            FreezeDurationBonusPercent = 311,
            StunDurationBonusPercent = 312,
            ImmobilizeDurationBonusPercent = 313,
            FearDurationBonusPercent = 314,
            BlindDurationBonusPercent = 315,
            CharmDurationBonusPercent = 316,
            SlowDurationBonusPercent = 317,
            Webbed = 318,
            Slow = 319,
            FireAura = 320,
            LightningAura = 321,
            ColdAura = 322,
            PoisonAura = 323,
            Blind = 324,
            Enraged = 325,
            SlowdownImmune = 326,
            GethitImmune = 327,
            AttackSpeedReductionImmune = 328,
            SuffocationPerSecond = 329,
            SuffocationUnitValue = 330,
            ThornsPercent = 331,
            ThornsPercentAll = 332,
            ThornsPercentTotal = 333,
            ThornsFixed = 334,
            ThornsFixedBonusPercent = 335,
            ThornsFixedTotal = 336,
            ThornsAOERadius = 337,
            ThornsHasDamageType = 338,
            OnFirstHitThornsPercent = 339,
            StealHealthPercent = 340,
            StealManaPercent = 341,
            ResourceOnHit = 342,
            ResourceOnHitBonusPct = 343,
            ResourceOnHitBonus = 344,
            ResourceOnKill = 345,
            ResourceOnCrit = 346,
            HitpointsOnHit = 347,
            HitpointsOnKill = 348,
            HitpointsOnKillReductionPercent = 349,
            HitpointsOnKillTotal = 350,
            DamageToMana = 351,
            LastProcTime = 352,
            DamagePowerDelta = 353,
            DamagePowerMin = 354,
            RopeOverlay = 355,
            GeneralCooldown = 356,
            PowerCooldown = 357,
            PowerCooldownStart = 358,
            ProcCooldown = 359,
            EmoteCooldown = 360,
            ProjectileSpeed = 361,
            ProjectileSpeedIncreasePercent = 362,
            DestroyWhenPathBlocked = 363,
            SkillToggledState = 364,
            SkillCharges = 365,
            NextChargeGainedtime = 366,
            RechargeStartTime = 367,
            Act = 368,
            Difficulty = 369,
            LastDamageAmount = 370,
            InKnockback = 371,
            AmplifyDamageTypePercent = 372,
            AmplifyDamageSkillPercent = 373,
            AmplifyDamagePercent = 374,
            DurabilityCur = 375,
            DurabilityMax = 376,
            DurabilityLastDamage = 377,
            ItemQualityLevel = 378,
            ItemQualityLevelIdentified = 379,
            ItemCostPercentBonus = 380,
            ItemEquipped = 381,
            Ping = 382,
            Requirement = 383,
            RequirementsEasePercent = 384,
            RequirementWhenEquipped = 385,
            Sockets = 386,
            SocketsFilled = 387,
            StatsAllBonus = 388,
            ItemBoundToACD = 389,
            ItemLockedToACD = 390,
            ItemBindingLevelOverride = 391,
            ItemLegendaryItemLevelOverride = 392,
            ItemTargetedPlayerClass = 393,
            ItemTargetedHirelingClass = 394,
            ItemStackQuantityHi = 395,
            ItemStackQuantityLo = 396,
            RunSpeedGranted = 397,
            RunSpeedDuration = 398,
            IdentifyCost = 399,
            Seed = 400,
            IsCrafted = 401,
            IsVendorBought = 402,
            DyeType = 403,
            Loot20Drop = 404,
            Post212Drop = 405,
            Post2122Drop = 406,
            Post250Drop = 407,
            AncientRank = 408,
            Unidentified = 409,
            RemoveLevelReq = 410,
            ConsumableAddSockets = 411,
            AddSocketsTypeWeapon = 412,
            AddSocketsTypeOffhand = 413,
            AddSocketsTypeLegs = 414,
            AddSocketsTypeChest = 415,
            AddSocketsTypeHelm = 416,
            AddSocketsTypeJewelry = 417,
            EnchantedAffixOld = 418,
            EnchantedAffixNew = 419,
            EnchantedAffixSeed = 420,
            EnchantedAffixCount = 421,
            TransmogGBID = 422,
            TransmogGBIDTempOverride = 423,
            HighlySalvageable = 424,
            ItemUnlockTimeHi = 425,
            ItemUnlockTimeLo = 426,
            CubeEnchantedGemRank = 427,
            CubeEnchantedGemType = 428,
            CubeEnchantedStrengthItem = 429,
            CubeEnchantedDexterityItem = 430,
            CubeEnchantedIntelligenceItem = 431,
            CubeEnchantedVitalityItem = 432,
            AlwaysPlaysGetHit = 433,
            Hidden = 434,
            AlphaForOtherPlayers = 435,
            AlphaAttachments = 436,
            RActorFadeGroup = 437,
            QuestRange = 438,
            AttackCooldownMin = 439,
            AttackCooldownDelta = 440,
            InitialCooldownMinTotal = 441,
            InitialCooldownDeltaTotal = 442,
            AttackCooldownMinTotal = 443,
            AttackCooldownDeltaTotal = 444,
            ClosingCooldownMinTotal = 445,
            ClosingCooldownDeltaTotal = 446,
            QuestMonster = 447,
            QuestMonsterEffect = 448,
            TreasureClass = 449,
            RemovesBodyOnDeath = 450,
            InitialCooldownMin = 451,
            InitialCooldownDelta = 452,
            KnockbackWeight = 453,
            UntargetableByPets = 454,
            DamageStateCurrent = 455,
            DamageStateMax = 456,
            IsPlayerDecoy = 457,
            CustomTargetWeight = 458,
            GizmoState = 459,
            GizmoCharges = 460,
            ChestOpen = 461,
            DoorLocked = 462,
            DoorTimer = 463,
            GizmoDisabledByScript = 464,
            GizmoOperatorACDID = 465,
            TriggeringCount = 466,
            GizmoOperationRadiusOverride = 467,
            GatePosition = 468,
            GateVelocity = 469,
            GizmoHasBeenOperated = 470,
            BannerUsable = 471,
            BannerPlayerInCombat = 472,
            PetOwner = 473,
            PetCreator = 474,
            PetType = 475,
            DropsNoLoot = 476,
            GrantsNoXP = 477,
            HirelingClass = 478,
            SummonedBySNO = 479,
            PetProcScalar = 480,
            PetCannotBeDismissed = 481,
            IsNPC = 482,
            NPCIsOperatable = 483,
            NPCIsEscorting = 484,
            NPCHasInteractOptions = 485,
            ConversationIcon = 486,
            ConversationIconOverride = 487,
            CalloutCooldown = 488,
            BanterCooldown = 489,
            ConversationHeardCount = 490,
            LastTickShopEntered = 491,
            IsHelper = 492,
            Axe = 493,
            Axe2H = 494,
            ThrowingAxe = 495,
            AxeAny = 496,
            Bow = 497,
            Crossbow = 498,
            BowAny = 499,
            Club = 500,
            Club2H = 501,
            ClubAny = 502,
            Dagger = 503,
            Mace = 504,
            Mace2H = 505,
            MaceAny = 506,
            Sword = 507,
            Sword2H = 508,
            SwordAny = 509,
            Polearm = 510,
            Spear = 511,
            Wand = 512,
            ColdStaff = 513,
            FireStaff = 514,
            LightningStaff = 515,
            PoisonStaff = 516,
            StaffAny = 517,
            Weapon1H = 518,
            Weapon2H = 519,
            WeaponMelee = 520,
            WeaponRanged = 521,
            Quiver = 522,
            ReincarnationBuff = 523,
            DeadBodyAnimTag = 524,
            SpawnedbyACDID = 525,
            SummonedByACDID = 526,
            SummonerID = 527,
            BannerACDID = 528,
            BreakableShieldHP = 529,
            CurrentWeaponClass = 530,
            WeaponsSheathed = 531,
            HeldInOffHand = 532,
            AttacksPerSecondItemMainHand = 533,
            AttacksPerSecondItemOffHand = 534,
            AttacksPerSecondItemTotalMainHand = 535,
            AttacksPerSecondItemTotalOffHand = 536,
            DamageWeaponMinTotalMainHand = 537,
            DamageWeaponMinTotalOffHand = 538,
            DamageWeaponDeltaTotalMainHand = 539,
            DamageWeaponDeltaTotalOffHand = 540,
            AttacksPerSecondItemCurrentHand = 541,
            DamageWeaponMinTotalCurrentHand = 542,
            DamageWeaponDeltaTotalCurrentHand = 543,
            HasSpecialDeathAnimTag = 544,
            DeathTypeOverride = 545,
            InCombat = 546,
            InCombatNextTickCheck = 547,
            InConversation = 548,
            LastTickPotionUsed = 549,
            PotionDilutionPercent = 550,
            OutOfCombatHealthRegenPercent = 551,
            OutOfCombatManaRegenPercent = 552,
            PotionDilutionDuration = 553,
            PotionDilutionScalar = 554,
            Feared = 555,
            FearImmune = 556,
            LastDamageACD = 557,
            AttachedToACD = 558,
            AttachmentACD = 559,
            NormalAttackReplacementPowerSNO = 560,
            DamageTypeOverride = 561,
            MinionCountBonusPercent = 562,
            ExpensiveProcCount = 563,
            ChampionTeleportTimeMinInSeconds = 564,
            ChampionTeleportTimeDeltaInSeconds = 565,
            ChampionCloneNextTick = 566,
            ChampionCloneTimeMinInSeconds = 567,
            ChampionCloneTimeDeltaInSeconds = 568,
            ChampionCloneHitpointBonusPercent = 569,
            ChampionCloneDamageBonusPercent = 570,
            ChampionGhostlyNextTick = 571,
            ChampionGhostlyInactiveTimeMinInSeconds = 572,
            ChampionGhostlyInactiveTimeDeltaInSeconds = 573,
            ChampionGhostlyActiveTimeMinInSeconds = 574,
            ChampionGhostlyActiveTimeDeltaInSeconds = 575,
            ChampionGhostlySavedDodgeChance = 576,
            ChampionGhostly = 577,
            BaseElement = 578,
            ProjectileAmountBonusPercent = 579,
            ProjectileReflectChance = 580,
            ProjectileReflectForcedTarget = 581,
            ProjectileReflectDamageScalar = 582,
            ProjectileReflectHasDamageCap = 583,
            ProjectileReflectDamageCapRemaining = 584,
            AttackFearChance = 585,
            AttackFearTimeMin = 586,
            AttackFearTimeDelta = 587,
            BuffVisualEffect = 588,
            BuffIconStartTick0 = 589,
            BuffIconStartTick1 = 590,
            BuffIconStartTick2 = 591,
            BuffIconStartTick3 = 592,
            BuffIconStartTick4 = 593,
            BuffIconStartTick5 = 594,
            BuffIconStartTick6 = 595,
            BuffIconStartTick7 = 596,
            BuffIconStartTick8 = 597,
            BuffIconStartTick9 = 598,
            BuffIconStartTick10 = 599,
            BuffIconStartTick11 = 600,
            BuffIconStartTick12 = 601,
            BuffIconStartTick13 = 602,
            BuffIconStartTick14 = 603,
            BuffIconStartTick15 = 604,
            BuffIconStartTick16 = 605,
            BuffIconStartTick17 = 606,
            BuffIconStartTick18 = 607,
            BuffIconStartTick19 = 608,
            BuffIconStartTick20 = 609,
            BuffIconStartTick21 = 610,
            BuffIconStartTick22 = 611,
            BuffIconStartTick23 = 612,
            BuffIconStartTick24 = 613,
            BuffIconStartTick25 = 614,
            BuffIconStartTick26 = 615,
            BuffIconStartTick27 = 616,
            BuffIconStartTick28 = 617,
            BuffIconStartTick29 = 618,
            BuffIconStartTick30 = 619,
            BuffIconStartTick31 = 620,
            BuffIconEndTick0 = 621,
            BuffIconEndTick1 = 622,
            BuffIconEndTick2 = 623,
            BuffIconEndTick3 = 624,
            BuffIconEndTick4 = 625,
            BuffIconEndTick5 = 626,
            BuffIconEndTick6 = 627,
            BuffIconEndTick7 = 628,
            BuffIconEndTick8 = 629,
            BuffIconEndTick9 = 630,
            BuffIconEndTick10 = 631,
            BuffIconEndTick11 = 632,
            BuffIconEndTick12 = 633,
            BuffIconEndTick13 = 634,
            BuffIconEndTick14 = 635,
            BuffIconEndTick15 = 636,
            BuffIconEndTick16 = 637,
            BuffIconEndTick17 = 638,
            BuffIconEndTick18 = 639,
            BuffIconEndTick19 = 640,
            BuffIconEndTick20 = 641,
            BuffIconEndTick21 = 642,
            BuffIconEndTick22 = 643,
            BuffIconEndTick23 = 644,
            BuffIconEndTick24 = 645,
            BuffIconEndTick25 = 646,
            BuffIconEndTick26 = 647,
            BuffIconEndTick27 = 648,
            BuffIconEndTick28 = 649,
            BuffIconEndTick29 = 650,
            BuffIconEndTick30 = 651,
            BuffIconEndTick31 = 652,
            CouldHaveRagdolled = 653,
            AmbientDamageEffectLastTime = 654,
            ScaleBonus = 655,
            ScaleBonusIsImmediate = 656,
            DeletedOnServer = 657,
            ScriptedFadeTime = 658,
            DoesNoDamage = 659,
            DoesFakeDamage = 660,
            SlowTimeDebuff = 661,
            BlocksProjectiles = 662,
            Frozen = 663,
            FreezeDamagePercentBonus = 664,
            ShatterChance = 665,
            DualWieldBothAttackChance = 666,
            SummonExpirationTick = 667,
            SummonCount = 668,
            Uninterruptible = 669,
            QueueDeath = 670,
            CantStartDisplayedPowers = 671,
            GizmosIgnoreCantStartDisplayedPowers = 672,
            WizardSlowtimeProxyACD = 673,
            DPS = 674,
            ResurrectionPower = 675,
            FreezeDamage = 676,
            FreezeCapacity = 677,
            ThawRate = 678,
            ChilledDurBonusPercent = 679,
            DOTDPS = 680,
            DamageCapPercent = 681,
            ItemTimeSold = 682,
            ForcedHirelingPower = 683,
            IsRooted = 684,
            RootTargetACD = 685,
            RootAutoDecayPerSecond = 686,
            RootUnitValue = 687,
            RootTotalTicks = 688,
            HideAffixes = 689,
            RuneA = 690,
            RuneB = 691,
            RuneC = 692,
            RuneD = 693,
            RuneE = 694,
            ResistanceStun = 695,
            ResistanceStunTotal = 696,
            ResistanceRoot = 697,
            ResistanceRootTotal = 698,
            ResistanceFreeze = 699,
            ResistanceFreezeTotal = 700,
            ResistanceStunRootFreeze = 701,
            CrowdControlReduction = 702,
            DisplaysTeamEffect = 703,
            CannotBeAddedToAITargetList = 704,
            SkillKit = 705,
            ImmuneToCharm = 706,
            ImmuneToBlind = 707,
            DamageShield = 708,
            DamageShieldAmount = 709,
            GuardObjectACDID = 710,
            FollowTargetACDID = 711,
            FollowTargetType = 712,
            ForcedEnemyACDID = 713,
            NPCTalkTargetANN = 714,
            NPCConvTargetANN = 715,
            ScriptTargetACDID = 716,
            LookTargetServerANN = 717,
            LookTargetBroadcastIntensity = 718,
            LookTargetBroadcastRadius = 719,
            Stealthed = 720,
            GemQuality = 721,
            GemAttributesMultiplier = 722,
            ItemBuffIcon = 723,
            ScrollDuration = 724,
            GizmoActorSNOToSpawn = 725,
            GizmoActorToSpawnScale = 726,
            DeathReplacementPowerSNO = 727,
            AttachmentHandledByClient = 728,
            AIInSpecialState = 729,
            AIUsedScriptedSpawnAnim = 730,
            AISpawnedByInactiveMarker = 731,
            HeadstonePlayerANN = 732,
            ResourceCostReductionPercent = 733,
            ResourceCostReductionPercentTotal = 734,
            ResourceCostReductionPercentAll = 735,
            DamageTypeCostReductionPercent = 736,
            ResistancePenetration = 737,
            ResistancePenetrationTotal = 738,
            ResistancePenetrationAll = 739,
            ResistancePenetrationPercentAll = 740,
            FuryEffectLevel = 741,
            HealthPotionBonusHealPercent = 742,
            HealthPotionAffectsAlliesPercent = 743,
            FreeCast = 744,
            FreeCastAll = 745,
            HealthCostDiscount = 746,
            HealthCostScalar = 747,
            FrailtyHealthThreshold = 748,
            FrailtyNextApplicationTick = 749,
            MovementScalarReductionPercent = 750,
            MovementScalarReductionResistance = 751,
            DamageAbsorbPercentAll = 752,
            WorldSeed = 753,
            KillCountRecord = 754,
            ObjectDestructionRecord = 755,
            SingleAttackRecord = 756,
            EnvironmentAttackRecord = 757,
            NephalemGloryDurationRecord = 758,
            RootImmune = 759,
            MonsterPlayGetHitBonus = 760,
            StoredContactFrame = 761,
            BuffIconCount0 = 762,
            BuffIconCount1 = 763,
            BuffIconCount2 = 764,
            BuffIconCount3 = 765,
            BuffIconCount4 = 766,
            BuffIconCount5 = 767,
            BuffIconCount6 = 768,
            BuffIconCount7 = 769,
            BuffIconCount8 = 770,
            BuffIconCount9 = 771,
            BuffIconCount10 = 772,
            BuffIconCount11 = 773,
            BuffIconCount12 = 774,
            BuffIconCount13 = 775,
            BuffIconCount14 = 776,
            BuffIconCount15 = 777,
            BuffIconCount16 = 778,
            BuffIconCount17 = 779,
            BuffIconCount18 = 780,
            BuffIconCount19 = 781,
            BuffIconCount20 = 782,
            BuffIconCount21 = 783,
            BuffIconCount22 = 784,
            BuffIconCount23 = 785,
            BuffIconCount24 = 786,
            BuffIconCount25 = 787,
            BuffIconCount26 = 788,
            BuffIconCount27 = 789,
            BuffIconCount28 = 790,
            BuffIconCount29 = 791,
            BuffIconCount30 = 792,
            BuffIconCount31 = 793,
            Observer = 794,
            ResurrectAsObserver = 795,
            ComboLevel = 796,
            ComboTimeLastMove = 797,
            Burrowed = 798,
            DeathReplacementEffectGroupSNO = 799,
            CheckpointResurrectionAllowedGameTime = 800,
            CheckpointResurrectionForcedGameTime = 801,
            CorpseResurrectionAllowedGameTime = 802,
            CorpseResurrectionCharges = 803,
            CorpseResurrectionDisabled = 804,
            ControllingTimedEventSNO = 805,
            CastingSpeedPercent = 806,
            UsingBossbar = 807,
            PowerBuff0VisualEffect = 808,
            PowerBuff1VisualEffect = 809,
            PowerBuff2VisualEffect = 810,
            PowerBuff3VisualEffect = 811,
            PowerBuff4VisualEffect = 812,
            PowerBuff5VisualEffect = 813,
            PowerBuff6VisualEffect = 814,
            PowerBuff7VisualEffect = 815,
            PowerBuff8VisualEffect = 816,
            PowerBuff9VisualEffect = 817,
            PowerBuff10VisualEffect = 818,
            PowerBuff11VisualEffect = 819,
            PowerBuff12VisualEffect = 820,
            PowerBuff13VisualEffect = 821,
            PowerBuff14VisualEffect = 822,
            PowerBuff15VisualEffect = 823,
            PowerBuff16VisualEffect = 824,
            PowerBuff17VisualEffect = 825,
            PowerBuff18VisualEffect = 826,
            PowerBuff19VisualEffect = 827,
            PowerBuff20VisualEffect = 828,
            PowerBuff21VisualEffect = 829,
            PowerBuff22VisualEffect = 830,
            PowerBuff23VisualEffect = 831,
            PowerBuff24VisualEffect = 832,
            PowerBuff25VisualEffect = 833,
            PowerBuff26VisualEffect = 834,
            PowerBuff27VisualEffect = 835,
            PowerBuff28VisualEffect = 836,
            PowerBuff29VisualEffect = 837,
            PowerBuff30VisualEffect = 838,
            PowerBuff31VisualEffect = 839,
            StoreSNO = 840,
            Busy = 841,
            Afk = 842,
            LorePlaying = 843,
            LastActionTimestamp = 844,
            PortalNextTime = 845,
            RepairDiscountPercent = 846,
            ResourceDegenerationPrevented = 847,
            Operatable = 848,
            HasLookOverride = 849,
            SpawnerConcurrentCountID = 850,
            Disabled = 851,
            SkillOverride = 852,
            SkillOverrideActive = 853,
            SkillOverrideEnded = 854,
            SkillOverrideEndedActive = 855,
            IsPowerProxy = 856,
            ForceNoDeathAnimation = 857,
            PlayerWeaponClassAnimOverride = 858,
            OperatableStoryGizmo = 859,
            PowerBuff0VisualEffectNone = 860,
            PowerBuff0VisualEffectA = 861,
            PowerBuff0VisualEffectB = 862,
            PowerBuff0VisualEffectC = 863,
            PowerBuff0VisualEffectD = 864,
            PowerBuff0VisualEffectE = 865,
            PowerBuff1VisualEffectNone = 866,
            PowerBuff1VisualEffectA = 867,
            PowerBuff1VisualEffectB = 868,
            PowerBuff1VisualEffectC = 869,
            PowerBuff1VisualEffectD = 870,
            PowerBuff1VisualEffectE = 871,
            PowerBuff2VisualEffectNone = 872,
            PowerBuff2VisualEffectA = 873,
            PowerBuff2VisualEffectB = 874,
            PowerBuff2VisualEffectC = 875,
            PowerBuff2VisualEffectD = 876,
            PowerBuff2VisualEffectE = 877,
            PowerBuff3VisualEffectNone = 878,
            PowerBuff3VisualEffectA = 879,
            PowerBuff3VisualEffectB = 880,
            PowerBuff3VisualEffectC = 881,
            PowerBuff3VisualEffectD = 882,
            PowerBuff3VisualEffectE = 883,
            PowerBuff4VisualEffectNone = 884,
            PowerBuff4VisualEffectA = 885,
            PowerBuff4VisualEffectB = 886,
            PowerBuff4VisualEffectC = 887,
            PowerBuff4VisualEffectD = 888,
            PowerBuff4VisualEffectE = 889,
            PowerBuff5VisualEffectNone = 890,
            PowerBuff5VisualEffectA = 891,
            PowerBuff5VisualEffectB = 892,
            PowerBuff5VisualEffectC = 893,
            PowerBuff5VisualEffectD = 894,
            PowerBuff5VisualEffectE = 895,
            PowerBuff6VisualEffectNone = 896,
            PowerBuff6VisualEffectA = 897,
            PowerBuff6VisualEffectB = 898,
            PowerBuff6VisualEffectC = 899,
            PowerBuff6VisualEffectD = 900,
            PowerBuff6VisualEffectE = 901,
            PowerBuff7VisualEffectNone = 902,
            PowerBuff7VisualEffectA = 903,
            PowerBuff7VisualEffectB = 904,
            PowerBuff7VisualEffectC = 905,
            PowerBuff7VisualEffectD = 906,
            PowerBuff7VisualEffectE = 907,
            PowerBuff8VisualEffectNone = 908,
            PowerBuff8VisualEffectA = 909,
            PowerBuff8VisualEffectB = 910,
            PowerBuff8VisualEffectC = 911,
            PowerBuff8VisualEffectD = 912,
            PowerBuff8VisualEffectE = 913,
            PowerBuff9VisualEffectNone = 914,
            PowerBuff9VisualEffectA = 915,
            PowerBuff9VisualEffectB = 916,
            PowerBuff9VisualEffectC = 917,
            PowerBuff9VisualEffectD = 918,
            PowerBuff9VisualEffectE = 919,
            PowerBuff10VisualEffectNone = 920,
            PowerBuff10VisualEffectA = 921,
            PowerBuff10VisualEffectB = 922,
            PowerBuff10VisualEffectC = 923,
            PowerBuff10VisualEffectD = 924,
            PowerBuff10VisualEffectE = 925,
            PowerBuff11VisualEffectNone = 926,
            PowerBuff11VisualEffectA = 927,
            PowerBuff11VisualEffectB = 928,
            PowerBuff11VisualEffectC = 929,
            PowerBuff11VisualEffectD = 930,
            PowerBuff11VisualEffectE = 931,
            PowerBuff12VisualEffectNone = 932,
            PowerBuff12VisualEffectA = 933,
            PowerBuff12VisualEffectB = 934,
            PowerBuff12VisualEffectC = 935,
            PowerBuff12VisualEffectD = 936,
            PowerBuff12VisualEffectE = 937,
            PowerBuff13VisualEffectNone = 938,
            PowerBuff13VisualEffectA = 939,
            PowerBuff13VisualEffectB = 940,
            PowerBuff13VisualEffectC = 941,
            PowerBuff13VisualEffectD = 942,
            PowerBuff13VisualEffectE = 943,
            PowerBuff14VisualEffectNone = 944,
            PowerBuff14VisualEffectA = 945,
            PowerBuff14VisualEffectB = 946,
            PowerBuff14VisualEffectC = 947,
            PowerBuff14VisualEffectD = 948,
            PowerBuff14VisualEffectE = 949,
            PowerBuff15VisualEffectNone = 950,
            PowerBuff15VisualEffectA = 951,
            PowerBuff15VisualEffectB = 952,
            PowerBuff15VisualEffectC = 953,
            PowerBuff15VisualEffectD = 954,
            PowerBuff15VisualEffectE = 955,
            PowerBuff16VisualEffectNone = 956,
            PowerBuff16VisualEffectA = 957,
            PowerBuff16VisualEffectB = 958,
            PowerBuff16VisualEffectC = 959,
            PowerBuff16VisualEffectD = 960,
            PowerBuff16VisualEffectE = 961,
            PowerBuff17VisualEffectNone = 962,
            PowerBuff17VisualEffectA = 963,
            PowerBuff17VisualEffectB = 964,
            PowerBuff17VisualEffectC = 965,
            PowerBuff17VisualEffectD = 966,
            PowerBuff17VisualEffectE = 967,
            PowerBuff18VisualEffectNone = 968,
            PowerBuff18VisualEffectA = 969,
            PowerBuff18VisualEffectB = 970,
            PowerBuff18VisualEffectC = 971,
            PowerBuff18VisualEffectD = 972,
            PowerBuff18VisualEffectE = 973,
            PowerBuff19VisualEffectNone = 974,
            PowerBuff19VisualEffectA = 975,
            PowerBuff19VisualEffectB = 976,
            PowerBuff19VisualEffectC = 977,
            PowerBuff19VisualEffectD = 978,
            PowerBuff19VisualEffectE = 979,
            PowerBuff20VisualEffectNone = 980,
            PowerBuff20VisualEffectA = 981,
            PowerBuff20VisualEffectB = 982,
            PowerBuff20VisualEffectC = 983,
            PowerBuff20VisualEffectD = 984,
            PowerBuff20VisualEffectE = 985,
            PowerBuff21VisualEffectNone = 986,
            PowerBuff21VisualEffectA = 987,
            PowerBuff21VisualEffectB = 988,
            PowerBuff21VisualEffectC = 989,
            PowerBuff21VisualEffectD = 990,
            PowerBuff21VisualEffectE = 991,
            PowerBuff22VisualEffectNone = 992,
            PowerBuff22VisualEffectA = 993,
            PowerBuff22VisualEffectB = 994,
            PowerBuff22VisualEffectC = 995,
            PowerBuff22VisualEffectD = 996,
            PowerBuff22VisualEffectE = 997,
            PowerBuff23VisualEffectNone = 998,
            PowerBuff23VisualEffectA = 999,
            PowerBuff23VisualEffectB = 1000,
            PowerBuff23VisualEffectC = 1001,
            PowerBuff23VisualEffectD = 1002,
            PowerBuff23VisualEffectE = 1003,
            PowerBuff24VisualEffectNone = 1004,
            PowerBuff24VisualEffectA = 1005,
            PowerBuff24VisualEffectB = 1006,
            PowerBuff24VisualEffectC = 1007,
            PowerBuff24VisualEffectD = 1008,
            PowerBuff24VisualEffectE = 1009,
            PowerBuff25VisualEffectNone = 1010,
            PowerBuff25VisualEffectA = 1011,
            PowerBuff25VisualEffectB = 1012,
            PowerBuff25VisualEffectC = 1013,
            PowerBuff25VisualEffectD = 1014,
            PowerBuff25VisualEffectE = 1015,
            PowerBuff26VisualEffectNone = 1016,
            PowerBuff26VisualEffectA = 1017,
            PowerBuff26VisualEffectB = 1018,
            PowerBuff26VisualEffectC = 1019,
            PowerBuff26VisualEffectD = 1020,
            PowerBuff26VisualEffectE = 1021,
            PowerBuff27VisualEffectNone = 1022,
            PowerBuff27VisualEffectA = 1023,
            PowerBuff27VisualEffectB = 1024,
            PowerBuff27VisualEffectC = 1025,
            PowerBuff27VisualEffectD = 1026,
            PowerBuff27VisualEffectE = 1027,
            PowerBuff28VisualEffectNone = 1028,
            PowerBuff28VisualEffectA = 1029,
            PowerBuff28VisualEffectB = 1030,
            PowerBuff28VisualEffectC = 1031,
            PowerBuff28VisualEffectD = 1032,
            PowerBuff28VisualEffectE = 1033,
            PowerBuff29VisualEffectNone = 1034,
            PowerBuff29VisualEffectA = 1035,
            PowerBuff29VisualEffectB = 1036,
            PowerBuff29VisualEffectC = 1037,
            PowerBuff29VisualEffectD = 1038,
            PowerBuff29VisualEffectE = 1039,
            PowerBuff30VisualEffectNone = 1040,
            PowerBuff30VisualEffectA = 1041,
            PowerBuff30VisualEffectB = 1042,
            PowerBuff30VisualEffectC = 1043,
            PowerBuff30VisualEffectD = 1044,
            PowerBuff30VisualEffectE = 1045,
            PowerBuff31VisualEffectNone = 1046,
            PowerBuff31VisualEffectA = 1047,
            PowerBuff31VisualEffectB = 1048,
            PowerBuff31VisualEffectC = 1049,
            PowerBuff31VisualEffectD = 1050,
            PowerBuff31VisualEffectE = 1051,
            WalkPassabilityPowerSNO = 1052,
            PassabilityPowerSNO = 1053,
            FlippyID = 1054,
            SummoningMachineNumCasters = 1055,
            SummoningMachineSpawnCount = 1056,
            SummoningMachineNextSpawnTicks = 1057,
            SummoningMachineSpawnTeam = 1058,
            ScreenAttackRadiusConstant = 1059,
            MaxDamageDoneReductionPercent1 = 1060,
            SetItemCount = 1061,
            SetBonusCount = 1062,
            SpawnerCountdownPercent = 1063,
            AttackSlow = 1064,
            PowerDisabled = 1065,
            WeaponEffectOverride = 1066,
            DebuffDurationReductionPercent = 1067,
            UsesPvPPowerTags = 1068,
            Trait = 1069,
            LastACDAttackedBy = 1070,
            GoldPickUpRadius = 1071,
            ClientOnlyEffect = 1072,
            PowerSavedAttribute = 1073,
            ResourceGainBonusPercent = 1074,
            LoopingAnimationStartTime = 1075,
            LoopingAnimationEndTime = 1076,
            LoopingAnimationSuppressItemTooltips = 1077,
            HealEffectLastPlayedTick = 1078,
            ResourceEffectLastPlayedtick = 1079,
            ThornsEffectLastPlayedtick = 1080,
            PVPKills = 1081,
            PVPDeaths = 1082,
            PVPAssists = 1083,
            PVPProgressionPointsGained = 1084,
            PVPCurrentKillStreak = 1085,
            PVPCurrentDeathStreak = 1086,
            PVPLongestKillStreak = 1087,
            PVPLongestDeathStreak = 1088,
            TurnRateScalar = 1089,
            TurnAccelScalar = 1090,
            TurnDeccelScalar = 1091,
            NoHealthDrop = 1092,
            Leader = 1093,
            IsContentRestrictedActor = 1094,
            InBossEncounter = 1095,
            God = 1096,
            AllowSkillChanges = 1097,
            MinimapActive = 1098,
            MinimapIconOverride = 1099,
            MinimapDisableArrow = 1100,
            LastBlockedACD = 1101,
            LastBlockedTime = 1102,
            DeactivateLure = 1103,
            WeaponsHidden = 1104,
            MainHandWeaponHidden = 1105,
            OffHandWeaponHidden = 1106,
            ActorUpdatesAttributesFromOwner = 1107,
            TauntTargetACD = 1108,
            CharmSourceACD = 1109,
            UIOnlyPercentDamageIncrease = 1110,
            ProjectileEffectSNO = 1111,
            OnHitFearProcChance = 1112,
            OnHitStunProcChance = 1113,
            OnHitBlindProcChance = 1114,
            OnHitFreezeProcChance = 1115,
            OnHitChillProcChance = 1116,
            OnHitSlowProcChance = 1117,
            OnHitImmobilizeProcChance = 1118,
            OnHitKnockbackProcChance = 1119,
            OnHitBleedProcChance = 1120,
            OnHitBleedProcDamageBase = 1121,
            OnHitBleedProcDamageDelta = 1122,
            DamagePercentReductionFromRanged = 1123,
            DamagePercentReductionFromMelee = 1124,
            DamagePercentReductionTurnsIntoHeal = 1125,
            DamagePercentReductionFromElites = 1126,
            DamagePercentReductionFromType = 1127,
            DamagePercentBonusVsMonsterType = 1128,
            DamagePercentBonusVsElites = 1129,
            ItemManipulationTimeout = 1130,
            PickedUpTime = 1131,
            UnequippedTime = 1132,
            LastACDKilledTime = 1133,
            CannotDieDuring = 1134,
            WeaponOnHitFearProcChance = 1135,
            WeaponOnHitStunProcChance = 1136,
            WeaponOnHitBlindProcChance = 1137,
            WeaponOnHitFreezeProcChance = 1138,
            WeaponOnHitChillProcChance = 1139,
            WeaponOnHitSlowProcChance = 1140,
            WeaponOnHitImmobilizeProcChance = 1141,
            WeaponOnHitKnockbackProcChance = 1142,
            WeaponOnHitBleedProcChance = 1143,
            WeaponOnHitBleedProcDamageBase = 1144,
            WeaponOnHitBleedProcDamageDelta = 1145,
            WeaponOnHitPercentBleedProcChance = 1146,
            WeaponOnHitPercentBleedProcDamage = 1147,
            WeaponOnHitPercentBleedProcDuration = 1148,
            WeaponOnHitFearProcChanceMainHand = 1149,
            WeaponOnHitFearProcChanceOffHand = 1150,
            WeaponOnHitFearProcChanceCurrentHand = 1151,
            WeaponOnHitStunProcChanceMainHand = 1152,
            WeaponOnHitStunProcChanceOffHand = 1153,
            WeaponOnHitStunProcChanceCurrentHand = 1154,
            WeaponOnHitBlindProcChanceMainHand = 1155,
            WeaponOnHitBlindProcChanceOffHand = 1156,
            WeaponOnHitBlindProcChanceCurrentHand = 1157,
            WeaponOnHitFreezeProcChanceMainHand = 1158,
            WeaponOnHitFreezeProcChanceOffHand = 1159,
            WeaponOnHitFreezeProcChanceCurrentHand = 1160,
            WeaponOnHitChillProcChanceMainHand = 1161,
            WeaponOnHitChillProcChanceOffHand = 1162,
            WeaponOnHitChillProcChanceCurrentHand = 1163,
            WeaponOnHitSlowProcChanceMainHand = 1164,
            WeaponOnHitSlowProcChanceOffHand = 1165,
            WeaponOnHitSlowProcChanceCurrentHand = 1166,
            WeaponOnHitImmobilizeProcChanceMainHand = 1167,
            WeaponOnHitImmobilizeProcChanceOffHand = 1168,
            WeaponOnHitImmobilizeProcChanceCurrentHand = 1169,
            WeaponOnHitKnockbackProcChanceMainHand = 1170,
            WeaponOnHitKnockbackProcChanceOffHand = 1171,
            WeaponOnHitKnockbackProcChanceCurrentHand = 1172,
            WeaponOnHitBleedProcChanceMainHand = 1173,
            WeaponOnHitBleedProcChanceOffHand = 1174,
            WeaponOnHitBleedProcChanceCurrentHand = 1175,
            WeaponOnHitBleedProcDamageBaseMainHand = 1176,
            WeaponOnHitBleedProcDamageBaseOffHand = 1177,
            WeaponOnHitBleedProcDamageBaseCurrentHand = 1178,
            WeaponOnHitBleedProcDamageDeltaMainHand = 1179,
            WeaponOnHitBleedProcDamageDeltaOffHand = 1180,
            WeaponOnHitBleedProcDamageDeltaCurrentHand = 1181,
            WeaponOnHitPercentBleedProcChanceMainHand = 1182,
            WeaponOnHitPercentBleedProcChanceOffHand = 1183,
            WeaponOnHitPercentBleedProcChanceCurrentHand = 1184,
            WeaponOnHitPercentBleedProcDamageMainHand = 1185,
            WeaponOnHitPercentBleedProcDamageBaseOffHand = 1186,
            WeaponOnHitPercentBleedProcDamageBaseCurrentHand = 1187,
            WeaponOnHitPercentBleedProcDurationMainHand = 1188,
            WeaponOnHitPercentBleedProcDurationOffHand = 1189,
            WeaponOnHitPercentBleedProcDurationCurrentHand = 1190,
            PowerDamagePercentBonus = 1191,
            PowerInstanceDamagePercentBonus = 1192,
            PowerResourceReduction = 1193,
            PowerResourceReductionPercent = 1194,
            PowerCooldownReduction = 1195,
            PowerCooldownReductionAll = 1196,
            PowerDurationIncrease = 1197,
            PowerCritPercentBonus = 1198,
            WeaponCritChance = 1199,
            WeaponCritChanceMainHand = 1200,
            WeaponCritChanceOffHand = 1201,
            WeaponCritChanceCurrentHand = 1202,
            StrengthItem = 1203,
            DexterityItem = 1204,
            IntelligenceItem = 1205,
            VitalityItem = 1206,
            ItemLevelRequirementReduction = 1207,
            ItemLevelRequirementOverride = 1208,
            ItemDurabilityPercentBonus = 1209,
            ItemIndestructible = 1210,
            PlayerAllItemsIndestructible = 1211,
            CoreAttributesFromItemBonusMultiplier = 1212,
            WaitingToAcceptResurrection = 1213,
            Ghosted = 1214,
            SpecialInventoryHasSold = 1215,
            SpecialInventoryIndex = 1216,
            InventoryRerollTime = 1217,
            PerkBuffPollNextTime = 1218,
            LimitedDurationItemPollNextTime = 1219,
            PowerChannelLockoutTime = 1220,
            PowerBuff0LockoutTime = 1221,
            PowerBuff1LockoutTime = 1222,
            PowerBuff2LockoutTime = 1223,
            PowerBuff3LockoutTime = 1224,
            PowerBuff4LockoutTime = 1225,
            PowerBuff5LockoutTime = 1226,
            PowerBuff6LockoutTime = 1227,
            PowerBuff7LockoutTime = 1228,
            PowerBuff8LockoutTime = 1229,
            PowerBuff9LockoutTime = 1230,
            PowerBuff10LockoutTime = 1231,
            PowerBuff11LockoutTime = 1232,
            PowerBuff12LockoutTime = 1233,
            PowerBuff13LockoutTime = 1234,
            PowerBuff14LockoutTime = 1235,
            PowerBuff15LockoutTime = 1236,
            PowerBuff16LockoutTime = 1237,
            PowerBuff17LockoutTime = 1238,
            PowerBuff18LockoutTime = 1239,
            PowerBuff19LockoutTime = 1240,
            PowerBuff20LockoutTime = 1241,
            PowerBuff21LockoutTime = 1242,
            PowerBuff22LockoutTime = 1243,
            PowerBuff23LockoutTime = 1244,
            PowerBuff24LockoutTime = 1245,
            PowerBuff25LockoutTime = 1246,
            PowerBuff26LockoutTime = 1247,
            PowerBuff27LockoutTime = 1248,
            PowerBuff28LockoutTime = 1249,
            PowerBuff29LockoutTime = 1250,
            PowerBuff30LockoutTime = 1251,
            PowerBuff31LockoutTime = 1252,
            KnownByOwner = 1253,
            NeverDeactivates = 1254,
            AccountUnderReview = 1255,
            ProjectileDetonateTime = 1256,
            ProjectileUncappedLifetime = 1257,
            PageOfFateItem = 1258,
            Accolade0 = 1259,
            Accolade1 = 1260,
            Accolade2 = 1261,
            Accolade3 = 1262,
            Accolade4 = 1263,
            Accolade0Value = 1264,
            Accolade1Value = 1265,
            Accolade2Value = 1266,
            Accolade3Value = 1267,
            Accolade4Value = 1268,
            PVPRank = 1269,
            PVPTokens = 1270,
            PVPExperienceNextLo = 1271,
            PVPExperienceNextHi = 1272,
            PVPGoldGainedThisGame = 1273,
            PVPPVPExperienceGainedThisGameLo = 1274,
            PVPPVPExperienceGainedThisGameHi = 1275,
            PVPNormalExperienceGainedThisGameLo = 1276,
            PVPNormalExperienceGainedThisGameHi = 1277,
            PVPTokensGainedThisGame = 1278,
            PVPLevelEqualizerLevel = 1279,
            IsTemporaryLure = 1280,
            IgnoreLure = 1281,
            EffectOwnerANN = 1282,
            EliteEngaged = 1283,
            EngagedRareTime = 1284,
            EngagedGoblinTime = 1285,
            OnDeathAccolade0 = 1286,
            OnDeathAccolade0Value = 1287,
            ItemPowerPassive = 1288,
            PVPTeamDeathmatchGamesPlayed = 1289,
            LastHealthDropInterval = 1290,
            CrowdControlResistance = 1291,
            CrowdControlProjectedEndTime = 1292,
            LastContinuousKnockbackPowerID = 1293,
            Charmed = 1294,
            Taunted = 1295,
            Dueling = 1296,
            PVPPlayerRevealedOnMap = 1297,
            TargetedLegendaryChance = 1298,
            SeasonalLegendaryChance = 1299,
            ReceivedSeasonalLegendary = 1300,
            HasDroppedSpecialloot = 1301,
            ScrollBuff = 1302,
            BuffExclusiveTypeActive = 1303,
            InCombatWithPlayer = 1304,
            ActorForwardsBuffs = 1305,
            ItemMarkedAsJunk = 1306,
            Allow2HAndShield = 1307,
            ClassDamageReductionPercentPVP = 1308,
            ParagonBonus = 1309,
            ParagonBonusPointsAvailable = 1310,
            DungeonFinderProgressPercent = 1311,
            ItemTradePlayerHigh = 1312,
            ItemTradePlayerLow = 1313,
            ItemTradeEndTime = 1314,
            ItemTradeTimerID = 1315,
            ItemIsBOE = 1316,
            Season = 1317,
            DamageDoneTotalTrackedHi = 1318,
            DamageDoneTotalTrackedLo = 1319,
            DamageDoneTrackingStartTick = 1320,
            PowerPersistsAcrossGames = 1321,
            ExperienceBonusPercentIGRBuff = 1322,
            ExperienceBonusPercentAnniversaryBuff = 1323,
            ExperienceBonusPercentCommunityBuff = 1324,
            ExperienceBonusPercentPotionBuff = 1325,
            ExperienceBonusPercentSuperScalar = 1326,
            ExperienceBonusPercentSuperScalarTotal = 1327,
            AlwaysShowFloatingNumbers = 1328,
            TargetedRareChance = 1329,
            SupressThornsEffect = 1330,
            DynamicEntranceGUID = 1331,
            BonusChanceToBeCritHit = 1332,
            BonusChanceToBeCritHitByActor = 1333,
            BonusChanceToReceiveCrushingBlown = 1334,
            ForceGripped = 1335,
            PowerBonusAttackRadius = 1336,
            ItemStorePlayerHigh = 1337,
            ItemStorePlayerLow = 1338,
            PowerPrimaryResourceCostOverride = 1339,
            PowerSecondaryResourceCostOverride = 1340,
            PowerChannelCostOverride = 1341,
            RuneAOverride = 1342,
            RuneBOverride = 1343,
            RuneCOverride = 1344,
            RuneDOverride = 1345,
            RuneEOverride = 1346,
            ElementalEffectAmplitudeBonus = 1347,
            ElementalEffectDurationBonus = 1348,
            ElementalEffectProcChanceBonus = 1349,
            SplashDamageEffectPercent = 1350,
            CrushingBlowProcChance = 1351,
            ItemEquippedButDisabled = 1352,
            ItemEquippedButDisabledDuplicateLegendary = 1353,
            AttributeProjectilePassThrough = 1354,
            AttributeSetItemDiscount = 1355,
            NegativeHealthGlobeSpawnChance = 1356,
            OverrideAttachedAnim = 1357,
            HasInfiniteShrineBuffs = 1358,
            ItemLegendaryItemBaseItem = 1359,
            TargetedMagicChance = 1360,
            DontUpdateCameraWhileAttached = 1361,
            LinkedDynamicEntranceGUID = 1362,
            BoostTCIndex = 1363,
            BoostTCNextTime = 1364,
            PotionBonusArmorPercent = 1365,
            PotionBonusResistAll = 1366,
            PotionBonusHitpointsGranted = 1367,
            PotionBonusBuffDuration = 1368,
            PotionBonusLifeOnHit = 1369,
            PotionBonusLifeOnKill = 1370,
            LastSpecialItemTimeHigh = 1371,
            LastSpecialItemTimeLow = 1372,
            ItemRestBonusPool = 1373,
            ItemUnluckyBonusSecs = 1374,
            ItemUnluckyBonusAllow = 1375,
            AvengerBuildupSecs = 1376,
            BountyObjective = 1377,
            Illusion = 1378,
            TornadoStraighten = 1379,
            PreventEvadeDuring = 1380,
            DamageBonusFromNephalemGlory = 1381,
            ItemPlayerRecipient = 1382,
            HeavensFuryAttacker = 1383,
            ItemAssignedHeroHigh = 1384,
            ItemAssignedHeroLow = 1385,
            PierceCharge = 1386,
            UpscaledLevel = 1387,
            Resurrected = 1388,
            DamageSidekickMultiplier = 1389,
            ThornsAOERadiusNextTime = 1390,
            MovementDestroysWallerWalls = 1391,
            MailFlagIcon = 1392,
            TieredLootRunKeyLevel = 1393,
            InTieredLootRunLevel = 1394,
            IsLootRunBoss = 1395,
            ForcedMove = 1396,
            EffectiveLevel = 1397,
            JewelRank = 1398,
            ItemConsoleMaxLevel = 1399,
            ConsolePromoItem = 1400,
            DoubleBloodShards = 1401,
            DoubleBountyBags = 1402,
            JewelUpgradesUsed = 1403,
            JewelUpgradesMax = 1404,
            JewelUpgradesBonus = 1405,
            ItemIgnoresPickupRadiusForPickup = 1406,
            Hunter = 1407,
            ParticipatingInTieredLootRun = 1408,
            TieredLootRunRewardChoiceState = 1409,
            TieredLootRunRewardReceivesKey = 1410,
            CurrentCosmeticEffect = 1411,
            BloodshardBonusPercentPotionBuff = 1412,
            XPPotionBuffExpiration = 1413,
            GoldFindPotionBuffExpiration = 1414,
            BloodshardPotionBuffExpiration = 1415,
            CurrentCosmeticPet = 1416,
            CosmeticPetPower = 1417,
            CosmeticPetExpiration = 1418,
            CosmeticPortraitFrame = 1419,
            HQHotColdState = 1420,
            HQCursedRealmReagentsCollected = 1421,
            HQCursedRealmReagentsDropped = 1422,
            DebugMovementType = 1423,
            TieredLootRunDeathCount = 1424,
            TieredLootRunCorpseResurrectionAllowedGameTime = 1425,
            LastPostedAchievementPoints = 1426,
            CosmeticPetActor = 1427,
            PlatinumCapRemaining = 1428,
            PlatinumCapLastGain = 1429,
            LastBossKillTime = 1430,
            LastBountyCompleteTime = 1431,
            LastTreasureGoblinKillTime = 1432,
            StashTabsPurchasedWithGold = 1433,
            StashTabsRewardedByAchievements = 1434,
            SkillButtonFlash = 1435,
            ProjectileDetPathReflectCount = 1436,
            LastCosmeticPet = 1437,
            PlatinumLastSignificantKill = 1438,
            PowerLastAttributeSnapshotUpdateTime = 1439,
            SkillButtonActiveGlow = 1440,
            ParticipatingInSetDungeon = 1441,
            MultiplicativeDamagePercentBonus = 1442,
            MultiplicativeDamagePercentBonusForSkill = 1443,
            MultiplicativeDamagePercentBonusForPlayer = 1444,
            InSetDungeonWorld = 1445,
            MultiplicativeDamagePercentBonusNoPets = 1446,
            MultiplicativeDamagePercentBonusochallengeAgainstCCTargets = 1447,
            MultiplicativeDamagePercentBonusAgainstSlowedTargets = 1448,
            SummonedByAutocast = 1449,
            NecromancerCorpseSpawnChance = 1450,
            NecromancerLastCorpseSpawnCheckTick = 1451,
            NecromancerCorpseOwnerPlayerHigh = 1452,
            NecromancerCorpseOwnerPlayerLow = 1453,
            NecromancerCorpseCharges = 1454,
            NecromancerCorpseSourceMonsterSNO = 1455,
            NecromancerCorpseFreeCasting = 1456,
            CurrenciesDiscovered = 1457,
            InTieredChallengeRift = 1458,
            NecromancerCursed = 1459,
            NecromancerCurseCount = 1460,
            NecromancerUniqueCurseCount = 1461,
            EligibleForWeeklyChallengeReward = 1462,
            ForceRemoteFX = 1463
        }

  17. Thanks d2k2 (1 members gave Thanks to Dolphe for this useful post)
Page 48 of 63 FirstFirst ... 444546474849505152 ... LastLast

Similar Threads

  1. [Hack] Enigma TriggerBot - AutoIT
    By Zolyrica in forum Overwatch Exploits|Hacks
    Replies: 9
    Last Post: 09-12-2016, 02:37 PM
  2. [Release] [C#] 1.0.8.16603 Enigma.D3
    By enigma32 in forum Diablo 3 Memory Editing
    Replies: 33
    Last Post: 05-16-2015, 01:40 PM
  3. Enigma's Smartcast Manager
    By da_bizkit in forum League of Legends
    Replies: 3
    Last Post: 10-22-2012, 02:11 PM
  4. request Blue suede boots -> enigma boots
    By Geico in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 12-27-2007, 05:40 AM
All times are GMT -5. The time now is 10:41 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search