|
|
|
|
-- HunterMarksmanship.lua
|
|
|
|
|
-- June 2018
|
|
|
|
|
|
|
|
|
|
local addon, ns = ...
|
|
|
|
|
local Hekili = _G[ addon ]
|
|
|
|
|
|
|
|
|
|
local class = Hekili.Class
|
|
|
|
|
local state = Hekili.State
|
|
|
|
|
|
|
|
|
|
local PTR = ns.PTR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Shadowlands Legendaries
|
|
|
|
|
-- [x] Eagletalon's True Focus
|
|
|
|
|
-- [-] Surging Shots (passive/reactive)
|
|
|
|
|
-- [-] Serpentstalker's Trickery (passive/reactive)
|
|
|
|
|
-- [-] Secrets of the Unblinking Vigil (passive/reactive)
|
|
|
|
|
|
|
|
|
|
-- Conduits
|
|
|
|
|
-- [x] Brutal Projectiles
|
|
|
|
|
-- [-] Deadly Chain
|
|
|
|
|
-- [-] Powerful Precision
|
|
|
|
|
-- [x] Sharpshooter's Focus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if UnitClassBase( "player" ) == "HUNTER" then
|
|
|
|
|
local spec = Hekili:NewSpecialization( 254, true )
|
|
|
|
|
|
|
|
|
|
spec:RegisterResource( Enum.PowerType.Focus, {
|
|
|
|
|
death_chakram = {
|
|
|
|
|
aura = "death_chakram",
|
|
|
|
|
|
|
|
|
|
last = function ()
|
|
|
|
|
return state.buff.death_chakram.applied + floor( state.query_time - state.buff.death_chakram.applied )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
interval = function () return class.auras.death_chakram.tick_time end,
|
|
|
|
|
value = function () return state.conduit.necrotic_barrage.enabled and 5 or 3 end,
|
|
|
|
|
},
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
channel = "rapid_fire",
|
|
|
|
|
|
|
|
|
|
last = function ()
|
|
|
|
|
local app = state.buff.casting.applied
|
|
|
|
|
local t = state.query_time
|
|
|
|
|
|
|
|
|
|
return app + floor( ( t - app ) / class.auras.rapid_fire.tick_time ) * class.auras.rapid_fire.tick_time
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
interval = function () return class.auras.rapid_fire.tick_time * ( state.buff.trueshot.up and 0.667 or 1 ) end,
|
|
|
|
|
value = 1,
|
|
|
|
|
}
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- Talents
|
|
|
|
|
spec:RegisterTalents( {
|
|
|
|
|
master_marksman = 22279, -- 260309
|
|
|
|
|
serpent_sting = 22501, -- 271788
|
|
|
|
|
a_murder_of_crows = 22289, -- 131894
|
|
|
|
|
|
|
|
|
|
careful_aim = 22495, -- 260228
|
|
|
|
|
barrage = 22497, -- 120360
|
|
|
|
|
explosive_shot = 22498, -- 212431
|
|
|
|
|
|
|
|
|
|
trailblazer = 19347, -- 199921
|
|
|
|
|
natural_mending = 19348, -- 270581
|
|
|
|
|
camouflage = 23100, -- 199483
|
|
|
|
|
|
|
|
|
|
steady_focus = 22267, -- 193533
|
|
|
|
|
streamline = 22286, -- 260367
|
|
|
|
|
chimaera_shot = 21998, -- 342049
|
|
|
|
|
|
|
|
|
|
born_to_be_wild = 22268, -- 266921
|
|
|
|
|
posthaste = 22276, -- 109215
|
|
|
|
|
binding_shackles = 23463, -- 321468
|
|
|
|
|
|
|
|
|
|
lethal_shots = 23063, -- 260393
|
|
|
|
|
dead_eye = 23104, -- 321460
|
|
|
|
|
double_tap = 22287, -- 260402
|
|
|
|
|
|
|
|
|
|
calling_the_shots = 22274, -- 260404
|
|
|
|
|
lock_and_load = 22308, -- 194595
|
|
|
|
|
volley = 22288, -- 260243
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- PvP Talents
|
|
|
|
|
spec:RegisterPvpTalents( {
|
|
|
|
|
dire_beast_basilisk = 825, -- 205691
|
|
|
|
|
dire_beast_hawk = 824, -- 208652
|
|
|
|
|
dragonscale_armor = 3600, -- 202589
|
|
|
|
|
hiexplosive_trap = 3605, -- 236776
|
|
|
|
|
hunting_pack = 3730, -- 203235
|
|
|
|
|
interlope = 1214, -- 248518
|
|
|
|
|
roar_of_sacrifice = 3612, -- 53480
|
|
|
|
|
scorpid_sting = 3604, -- 202900
|
|
|
|
|
spider_sting = 3603, -- 202914
|
|
|
|
|
survival_tactics = 3599, -- 202746
|
|
|
|
|
the_beast_within = 693, -- 212668
|
|
|
|
|
viper_sting = 3602, -- 202797
|
|
|
|
|
wild_protector = 821, -- 204190
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- Auras
|
|
|
|
|
spec:RegisterAuras( {
|
|
|
|
|
a_murder_of_crows = {
|
|
|
|
|
id = 131894,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
aspect_of_the_turtle = {
|
|
|
|
|
id = 186265,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
binding_shot = {
|
|
|
|
|
id = 117526,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
bursting_shot = {
|
|
|
|
|
id = 186387,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
camouflage = {
|
|
|
|
|
id = 199483,
|
|
|
|
|
duration = 60,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
concussive_shot = {
|
|
|
|
|
id = 5116,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
dead_eye = {
|
|
|
|
|
id = 321461,
|
|
|
|
|
duration = 3,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
double_tap = {
|
|
|
|
|
id = 260402,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
eagle_eye = {
|
|
|
|
|
id = 6197,
|
|
|
|
|
},
|
|
|
|
|
explosive_shot = {
|
|
|
|
|
id = 212431,
|
|
|
|
|
duration = 3,
|
|
|
|
|
type = "Magic",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
feign_death = {
|
|
|
|
|
id = 5384,
|
|
|
|
|
duration = 360,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
freezing_trap = {
|
|
|
|
|
id = 3355,
|
|
|
|
|
duration = 60,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
hunters_mark = {
|
|
|
|
|
id = 257284,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
type = "Magic",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
lethal_shots = {
|
|
|
|
|
id = 260393,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
},
|
|
|
|
|
lock_and_load = {
|
|
|
|
|
id = 194594,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
lone_wolf = {
|
|
|
|
|
id = 164273,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
master_marksman = {
|
|
|
|
|
id = 269576,
|
|
|
|
|
duration = 12,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
misdirection = {
|
|
|
|
|
id = 34477,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
pathfinding = {
|
|
|
|
|
id = 264656,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
posthaste = {
|
|
|
|
|
id = 118922,
|
|
|
|
|
duration = 4,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
precise_shots = {
|
|
|
|
|
id = 260242,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 2,
|
|
|
|
|
},
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
id = 257044,
|
|
|
|
|
duration = function () return 2 * haste end,
|
|
|
|
|
tick_time = function ()
|
|
|
|
|
return ( 2 * haste ) / ( buff.double_tap.up and 14 or 7 )
|
|
|
|
|
end,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
serpent_sting = {
|
|
|
|
|
id = 271788,
|
|
|
|
|
duration = 18,
|
|
|
|
|
type = "Poison",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
steady_focus = {
|
|
|
|
|
id = 193534,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
streamline = {
|
|
|
|
|
id = 342076,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
survival_of_the_fittest = {
|
|
|
|
|
id = 281195,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
tar_trap = {
|
|
|
|
|
id = 135299,
|
|
|
|
|
duration = 30,
|
|
|
|
|
max_stack = 1
|
|
|
|
|
},
|
|
|
|
|
trailblazer = {
|
|
|
|
|
id = 231390,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
trick_shots = {
|
|
|
|
|
id = 257622,
|
|
|
|
|
duration = 20,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
trueshot = {
|
|
|
|
|
id = 288613,
|
|
|
|
|
duration = function () return ( legendary.eagletalons_true_focus.enabled and 20 or 15 ) * ( 1 + ( conduit.sharpshooters_focus.mod * 0.01 ) ) end,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
volley = {
|
|
|
|
|
id = 257622,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Legendaries
|
|
|
|
|
nessingwarys_trapping_apparatus = {
|
|
|
|
|
id = 336744,
|
|
|
|
|
duration = 5,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
copy = { "nesingwarys_trapping_apparatus", "nesingwarys_apparatus", "nessingwarys_apparatus" }
|
|
|
|
|
}
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "ca_execute", function ()
|
|
|
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "ca_active", function ()
|
|
|
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local steady_focus_applied = 0
|
|
|
|
|
|
|
|
|
|
spec:RegisterEvent( "COMBAT_LOG_EVENT_UNFILTERED", function( event, _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName, _, amount, interrupt, a, b, c, d, offhand, multistrike, ... )
|
|
|
|
|
local _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName = CombatLogGetCurrentEventInfo()
|
|
|
|
|
|
|
|
|
|
if sourceGUID == state.GUID and ( subtype == "SPELL_AURA_APPLIED" or subtype == "SPELL_AURA_REFRESH" or subtype == "SPELL_AURA_APPLIED_DOSE" ) and spellID == 193534 then -- Steady Aim.
|
|
|
|
|
steady_focus_applied = GetTime()
|
|
|
|
|
end
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "last_steady_focus", function ()
|
|
|
|
|
return steady_focus_applied
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local ExpireNesingwarysTrappingApparatus = setfenv( function()
|
|
|
|
|
focus.regen = focus.regen * 0.5
|
|
|
|
|
forecastResources( "focus" )
|
|
|
|
|
end, state )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterHook( "reset_precast", function ()
|
|
|
|
|
if now - action.serpent_sting.lastCast < gcd.execute * 2 and target.unit == action.serpent_sting.lastUnit then
|
|
|
|
|
applyDebuff( "target", "serpent_sting" )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if debuff.tar_trap.up then
|
|
|
|
|
debuff.tar_trap.expires = debuff.tar_trap.applied + 30
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if buff.nesingwarys_apparatus.up then
|
|
|
|
|
state:QueueAuraExpiration( "nesingwarys_apparatus", ExpireCelestialAlignment, buff.nesingwarys_apparatus.expires )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if now - action.volley.lastCast < 6 then applyBuff( "volley", 6 - ( now - action.volley.lastCast ) ) end
|
|
|
|
|
|
|
|
|
|
if now - action.resonating_arrow.lastCast < 6 then applyBuff( "resonating_arrow", 10 - ( now - action.resonating_arrow.lastCast ) ) end
|
|
|
|
|
|
|
|
|
|
last_steady_focus = nil
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateTable( "tar_trap", setmetatable( {}, {
|
|
|
|
|
__index = function( t, k )
|
|
|
|
|
return debuff.tar_trap[ k ]
|
|
|
|
|
end
|
|
|
|
|
}, state ) )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Abilities
|
|
|
|
|
spec:RegisterAbilities( {
|
|
|
|
|
a_murder_of_crows = {
|
|
|
|
|
id = 131894,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 645217,
|
|
|
|
|
|
|
|
|
|
talent = "a_murder_of_crows",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "a_murder_of_crows" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aimed_shot = {
|
|
|
|
|
id = 19434,
|
|
|
|
|
cast = function ()
|
|
|
|
|
if buff.lock_and_load.up then return 0 end
|
|
|
|
|
return 2.5 * haste * ( buff.trueshot.up and 0.5 or 1 ) * ( buff.streamline.up and 0.7 or 1 )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
charges = 2,
|
|
|
|
|
cooldown = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
|
|
|
|
recharge = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return buff.lock_and_load.up and 0 or ( ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 35 ) end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135130,
|
|
|
|
|
|
|
|
|
|
cycle = function () return runeforge.serpentstalkers_trickery.enabled and "serpent_sting" or nil end,
|
|
|
|
|
|
|
|
|
|
usable = function ()
|
|
|
|
|
if action.aimed_shot.cast > 0 and moving and settings.prevent_hardcasts then return false, "prevent_hardcasts is checked and player is moving" end
|
|
|
|
|
return true
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "precise_shots" )
|
|
|
|
|
removeBuff( "lock_and_load" )
|
|
|
|
|
removeBuff( "double_tap" )
|
|
|
|
|
if buff.volley.down then removeBuff( "trick_shots" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
arcane_shot = {
|
|
|
|
|
id = 185358,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132218,
|
|
|
|
|
|
|
|
|
|
notalent = "chimaera_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aspect_of_the_cheetah = {
|
|
|
|
|
id = 186257,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.cheetahs_vigor.mod * 0.001 ) end,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132242,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "aspect_of_the_cheetah" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aspect_of_the_turtle = {
|
|
|
|
|
id = 186265,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.harmony_of_the_tortollan.mod * 0.001 ) end,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132199,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "aspect_of_the_turtle" )
|
|
|
|
|
setCooldown( "global_cooldown", 5 )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
barrage = {
|
|
|
|
|
id = 120360,
|
|
|
|
|
cast = 3,
|
|
|
|
|
channeled = true,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 30 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 236201,
|
|
|
|
|
|
|
|
|
|
talent = "barrage",
|
|
|
|
|
|
|
|
|
|
start = function ()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
binding_shot = {
|
|
|
|
|
id = 109248,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 462650,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "binding_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bursting_shot = {
|
|
|
|
|
id = 186387,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 1376038,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "bursting_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
camouflage = {
|
|
|
|
|
id = 199483,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 461113,
|
|
|
|
|
|
|
|
|
|
usable = function () return time == 0 end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "camouflage" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
concussive_shot = {
|
|
|
|
|
id = 5116,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 5,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135860,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "concussive_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chimaera_shot = {
|
|
|
|
|
id = 342049,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 236176,
|
|
|
|
|
|
|
|
|
|
talent = "chimaera_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
counter_shot = {
|
|
|
|
|
id = 147362,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 24,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 249170,
|
|
|
|
|
|
|
|
|
|
toggle = "interrupts",
|
|
|
|
|
|
|
|
|
|
debuff = "casting",
|
|
|
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if conduit.reversal_of_fortune.enabled then
|
|
|
|
|
gain( conduit.reversal_of_fortune.mod, "focus" )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
interrupt()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
disengage = {
|
|
|
|
|
id = 781,
|
|
|
|
|
cast = 0,
|
|
|
|
|
charges = 1,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
recharge = 20,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132294,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.posthaste.enabled then applyBuff( "posthaste" ) end
|
|
|
|
|
if conduit.tactical_retreat.enabled and target.within8 then applyDebuff( "target", "tactical_retreat" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
double_tap = {
|
|
|
|
|
id = 260402,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
toggle = "cooldowns",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 537468,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "double_tap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ eagle_eye = {
|
|
|
|
|
id = 6197,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132172,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exhilaration = {
|
|
|
|
|
id = 109304,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 120,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 461117,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
gain( 0.3 * health.max, "health" )
|
|
|
|
|
if conduit.rejuvenating_wind.enabled then applyBuff( "rejuvenating_wind" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
explosive_shot = {
|
|
|
|
|
id = 212431,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236178,
|
|
|
|
|
|
|
|
|
|
talent = "explosive_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "explosive_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ Using from BM module.
|
|
|
|
|
feign_death = {
|
|
|
|
|
id = 5384,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132293,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "feign_death" )
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ flare = {
|
|
|
|
|
id = 1543,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135815,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freezing_trap = {
|
|
|
|
|
id = 187650,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function ()
|
|
|
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
|
|
|
|
return -45, "focus"
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135834,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "freezing_trap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hunters_mark = {
|
|
|
|
|
id = 257284,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236188,
|
|
|
|
|
|
|
|
|
|
usable = function () return debuff.hunters_mark.down end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "hunters_mark" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
masters_call = {
|
|
|
|
|
id = 272682,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236189,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "masters_call" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
misdirection = {
|
|
|
|
|
id = 34477,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132180,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "misdirection" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
multishot = {
|
|
|
|
|
id = 257620,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132330,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
if active_enemies > 2 then applyBuff( "trick_shots" ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
id = 257044,
|
|
|
|
|
cast = function () return ( 2 * haste ) end,
|
|
|
|
|
channeled = true,
|
|
|
|
|
cooldown = function () return ( buff.trueshot.up and 8 or 20 ) * haste end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 461115,
|
|
|
|
|
|
|
|
|
|
start = function ()
|
|
|
|
|
applyBuff( "rapid_fire" )
|
|
|
|
|
if buff.volley.down then removeBuff( "trick_shots" ) end
|
|
|
|
|
if talent.streamline.enabled then applyBuff( "streamline" ) end
|
|
|
|
|
removeBuff( "brutal_projectiles" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
finish = function ()
|
|
|
|
|
removeBuff( "double_tap" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
auras = {
|
|
|
|
|
-- Conduit
|
|
|
|
|
brutal_projectiles = {
|
|
|
|
|
id = 339929,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
serpent_sting = {
|
|
|
|
|
id = 271788,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 1033905,
|
|
|
|
|
|
|
|
|
|
velocity = 45,
|
|
|
|
|
|
|
|
|
|
talent = "serpent_sting",
|
|
|
|
|
|
|
|
|
|
impact = function ()
|
|
|
|
|
applyDebuff( "target", "serpent_sting" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
steady_shot = {
|
|
|
|
|
id = 56641,
|
|
|
|
|
cast = 1.8,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return buff.trueshot.up and -15 or -10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132213,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.steady_focus.enabled and prev[1].steady_shot and action.steady_shot.lastCast > last_steady_focus then
|
|
|
|
|
applyBuff( "steady_focus" )
|
|
|
|
|
last_steady_focus = query_time
|
|
|
|
|
end
|
|
|
|
|
if debuff.concussive_shot.up then debuff.concussive_shot.expires = debuff.concussive_shot.expires + 3 end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
summon_pet = {
|
|
|
|
|
id = 883,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
essential = true,
|
|
|
|
|
|
|
|
|
|
texture = function () return GetStablePetInfo(1) or 'Interface\\ICONS\\Ability_Hunter_BeastCall' end,
|
|
|
|
|
nomounted = true,
|
|
|
|
|
|
|
|
|
|
usable = function () return false and not pet.exists end, -- turn this into a pref!
|
|
|
|
|
handler = function ()
|
|
|
|
|
summonPet( "made_up_pet", 3600, "ferocity" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
survival_of_the_fittest = {
|
|
|
|
|
id = function () return pet.exists and 264735 or 281195 end,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 180,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
known = function ()
|
|
|
|
|
if not pet.exists then return 155228 end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
|
|
|
|
|
usable = function ()
|
|
|
|
|
return not pet.exists or pet.alive, "requires either no pet or a living pet"
|
|
|
|
|
end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "survival_of_the_fittest" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
copy = { 264735, 281195, 155228 }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tar_trap = {
|
|
|
|
|
id = 187698,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return level > 55 and 25 or 30 end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function ()
|
|
|
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
|
|
|
|
return -45, "focus"
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 576309,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "tar_trap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trueshot = {
|
|
|
|
|
id = 288613,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 120,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
toggle = "cooldowns",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132329,
|
|
|
|
|
|
|
|
|
|
nobuff = function ()
|
|
|
|
|
if settings.trueshot_vop_overlap then return end
|
|
|
|
|
return "trueshot"
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
focus.regen = focus.regen * 1.5
|
|
|
|
|
reduceCooldown( "aimed_shot", ( 1 - 0.3077 ) * 12 * haste )
|
|
|
|
|
reduceCooldown( "rapid_fire", ( 1 - 0.3077 ) * 20 * haste )
|
|
|
|
|
applyBuff( "trueshot" )
|
|
|
|
|
|
|
|
|
|
if azerite.unerring_vision.enabled then
|
|
|
|
|
applyBuff( "unerring_vision" )
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
duration_guess = function( t )
|
|
|
|
|
return talent.calling_the_shots.enabled and 90 or t.duration
|
|
|
|
|
end,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
volley = {
|
|
|
|
|
id = 260243,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132205,
|
|
|
|
|
|
|
|
|
|
talent = "volley",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "volley" )
|
|
|
|
|
applyBuff( "trick_shots", 6 )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterOptions( {
|
|
|
|
|
enabled = true,
|
|
|
|
|
|
|
|
|
|
aoe = 3,
|
|
|
|
|
|
|
|
|
|
nameplates = false,
|
|
|
|
|
nameplateRange = 8,
|
|
|
|
|
|
|
|
|
|
damage = true,
|
|
|
|
|
damageExpiration = 6,
|
|
|
|
|
|
|
|
|
|
potion = "spectral_agility",
|
|
|
|
|
|
|
|
|
|
package = "Marksmanship",
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterSetting( "prevent_hardcasts", false, {
|
|
|
|
|
name = "Prevent Hardcasts of |T135130:0|t Aimed Shot During Movement",
|
|
|
|
|
desc = "If checked, the addon will not recommend |T135130:0|t Aimed Shot if it has a cast time and you are moving.",
|
|
|
|
|
type = "toggle",
|
|
|
|
|
width = "full"
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
spec:RegisterSetting( "eagletalon_swap", false, {
|
|
|
|
|
name = "Use |T132329:0|t Trueshot with Eagletalon's True Focus Runeforge",
|
|
|
|
|
desc = "If checked, the default priority includes usage of |T132329:0|t Trueshot pre-pull, assuming you will successfully swap " ..
|
|
|
|
|
"your legendary on your own. The addon will not tell you to swap your gear.",
|
|
|
|
|
type = "toggle",
|
|
|
|
|
width = "full",
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterPack( "Marksmanship", 20210708, [[d8KYgcqiIOhrvqUecISjc1NakJcbofq1QOkqQxjj1SasDlKe2fKFbKmmQcDmQsltf8meKMgvbCnIqBtsK(gsImoeeCoQcuRtssVtsePMhvr3di2NKW)OkO0bPkOAHij9qjrnreesxuseSrQck(OKiQrkjIKtkjcTsKuZusIBIGqStvO(jcc1qLerSuKeLNsvnvviFLQaXyrqTxa)fKbRQdlSycEmvMSkDzuBgP(mIA0QOtR0QPkqYRrIzlXTLu7MYVfnCc54iiQLR45qnDsxhuBhr(ocnEIGZtKwpsIQ5tu7xQb8cCeG)nug44dE8GxpsL8iHaYRh96b7Lkb4RsfXa(IchLGmd4Brnd4tismuW1HHpxra(IcPLmUahb4Jt4XXa(EO(pvveUQGcuKx9ewa5YAqH3A4sOBAUjOvqH3AhOa8fG3IwjAaca(3qzGJp4XdE9ivYJeciVE0RhSh9Gb8dy9mhaF)TUYa(N79YgGaG)LXoaFcrIHcUom85kQ)kPGnLNMAQHls7Nqa09FWJh82u3ux5ZWiZ4Q2utf9FmtKoHTB)uzmolK4(xC)wQ9h9xZUZWwx)6j3FCVP1VlmqrClL(RdliZOMAQOFQmgl1C8T)4EtRFrZMZQs7N4QN97V1vUFp8kjvbb4xwSIbocWxN1rbFMkg4iGJ9cCeGpBHqHVaufW3nRYZga(AuytryLJRui60bJrSfcf(2V4(xdIUSKp1(f3VamnncRCCLcrNoymA46ynC)E2Veb8dNUPb4JvoUsHWNPcOahFa4iaF2cHcFbOkGVBwLNna8Djj2ctruKoBy9lUFxMLBs0qdJtl01idfZKerdxhRH73Z(j7U9ll3VK97ssSfMIOiD2W6xC)s2VljXwykYwYNkeDW9ll3VljXwykYwYNkeDW9lUFc63Lz5MeneXTCHWI2zvmA46ynC)E2pz3TFz5(DzwUjrdrClxiSODwfJgUowd3Ff9tOESFW7xwUFHeJ7xC)0l5tfA46ynC)E2Vxp2VSC)Uml3KOHggNwORrgkMjjIgUowd3Ff971J9lU)WPljgInUEzC)v0pHc4hoDtdW)MWcfgsdrakWXekWra(Sfcf(cqvaF3SkpBa4pWgtNdzgHt4cDoKziUwGhmITqOW3(f3VgdKoHi0W1XA4(9SFYUB)I73Lz5MeneDjggnCDSgUFp7NS7c4hoDtdWxJbsNqeGcCSha4iaF2cHcFbOkGVBwLNna81yG0jeHGf1V4(hyJPZHmJWjCHohYmexlWdgXwiu4lGF40nnaF6smmGcCSebocWpC6MgGplbrLeVKyi8zQa(Sfcf(cqvaf44kf4ia)WPBAa(e3YfclANvXa(Sfcf(cqvaf4yQeWra(Sfcf(cqvaF3SkpBa47YSCtIgAyCAHUgzOyMKiA46ynC)E2pz3TFX9tq)s2Vgf2uelbrLeVKyi8zQi2cHcF7xwUFbyAAKqjZBbgRiyr9dE)YY9lz)UKeBHPiksNnS(LL73Lz5Men0W40cDnYqXmjr0W1XA4(ROFVESFz5(fsmUFX9tVKpvOHRJ1W97z)seWpC6MgGpXylRrgkMjjcOahtiaCeGpBHqHVaufW3nRYZga(Uml3KOHiLLclfnCDSgUFp7NS72VSC)s2Vgf2uePSuyPi2cHcF7xwUFHeJ7xC)0l5tfA46ynC)E2V3da(Ht30a8hgNwORrgkMjjcOah7bdCeGpBHqHVaufW3nRYZga(cW00OHXPf6AKHIzsIiyr9ll3VK97ssSfMIOiD2Wa8dNUPb4tklfwkGcCSxpcCeGF40nnaFHyMGmd4Zwiu4lavbuGJ96f4iaF2cHcFbOkGVBwLNna8fGPPrdJtl01idfZKerWI6xwUFxMLBs0qdJtl01idfZKerdxhRH7VI(96X(LL7xY(Djj2ctruKoBy9ll3VqIX9lUF6L8PcnCDSgUFp7)Ghb8dNUPb4RdmJptfqbo27bGJa8zlek8fGQa(UzvE2aWFGnMohYmcdpKxJme(mvmITqOW3(f3pb97YSCtIgAyCAHUgzOyMKiA46ynC)v0Vxp2VSC)s2VljXwykII0zdRFz5(LSFnkSPOBcluyineHylek8TFW7xC)cW00iDwhfi8zQy0W1XA4(RaK(zjWoyLH0TMb8dNUPb4pHO9crVddOah7LqbocWNTqOWxaQc4hoDtdWp2A(cHptfW3nRYZga(cW00iDwhfi8zQy0W1XA4(RaK(zjWoyLH0TM7xC)e0Vamnns0WUfZq4ZuXOBs06xwUFA4sbAy3zmKziDR5(9SFxGviDR5(RUFYUB)YY9lattJ0bMXNPIGf1p4a(oPUcdPXqMvmWXEbuGJ96baocWNTqOWxaQc47Mv5zdaF60bJ7V6(DbwHgMmB97z)0PdgJQdja4hoDtdW)YHEc5odktudOah7vIahb4Zwiu4lavb8DZQ8SbGpb97YSCtIgAyCAHUgzOyMKiA46ynC)v0Vxp2V4(hyJPZHmJWWd51idHptfJylek8TFz5(LSFxsITWuefPZgw)YY9lz)dSX05qMry4H8AKHWNPIrSfcf(2VSC)s2Vgf2u0nHfkmKgIqSfcf(2p49lUFbyAAKoRJce(mvmA46ynC)vas)SeyhSYq6wZa(Ht30a8Nq0EHO3HbuGJ9wPahb4Zwiu4lavb8DZQ8SbGVamnnsN1rbcFMkgDtIw)YY9lattJenSBXme(mvmcwu)I7NoDW4(ROFxI1(RU)WPBAOyR5le(mvKlXA)I7NG(LSFnkSPi35wh8eq4ZurSfcf(2VSC)HtxsmeBC9Y4(ROFcTFWb8dNUPb4xdx0fFMkGcCSxQeWra(Sfcf(cqvaF3SkpBa4lattJenSBXme(mvmcwu)I7NoDW4(ROFxI1(RU)WPBAOyR5le(mvKlXA)I7pC6sIHyJRxg3VN97ba8dNUPb47o36GNacFMkGcCSxcbGJa8zlek8fGQa(UzvE2aWxaMMgD54cXsz0njAa(Ht30a8PSLce(mvaf4yVEWahb4hoDtdWpGQHNlpqjnKBsIyaF2cHcFbOkGcC8bpcCeGF40nnaF6siLVq4Zub8zlek8fGQakWXh8cCeGpBHqHVaufWpC6MgGpMhrSPqyDnYa(UzvE2aWFy6HXNHqHb8DsDfgsJHmRyGJ9cOahF4aWra(Sfcf(cqvaF3SkpBa4tNoyC)v0VlXA)v3F40nnuS18fcFMkYLyTFX9tq)Uml3KOHggNwORrgkMjjIgUowd3Ff9lX(LL7xY(Djj2ctruKoBy9doGF40nna)A4IU4ZubuGJpqOahb4Zwiu4lavb8DZQ8SbG)aBmDoKzKXy8AKjgJumKoHirRrgkejkMqHXi2cHcFb8dNUPb4RXaPticqbo(Gha4iaF2cHcFbOkGVBwLNna8hyJPZHmJmgJxJmXyKIH0jejAnYqHirXekmgXwiu4lGF40nnaF6HzQ81idPticqbo(GebocWNTqOWxaQc47Mv5zdaFbyAAKoWm(mv0njAa(Ht30a8fcYqjnKoRJcgqbo(qLcCeGpBHqHVaufW3nRYZga(4eUiS2fjcgRWfgIhyr6MgITqOW3(f3VamnnshygFMk6Mena)WPBAa(0fgF6MGwbuGJpqLaocWpC6MgGpw54kfcFMkGpBHqHVaufqbua)lthWff4iGJ9cCeGF40nnaFxcBkpq4Zub8zlek8fGQakWXhaocWNTqOWxaQc4hoDtdW3LWMYde(mvaF3SkpBa4pWgtNdzgHzrNWu5yirt6krDOBAi2cHcF7xwUFCcxew7ISvAGH0mlyir5ItdXwiu4B)YY9tq)U0UWRIgMep4OaL0q05OWgJylek8TFX9lz)dSX05qMryw0jmvogs0KUsuh6MgITqOW3(bhWVSgd5Ua(eQhbuGJjuGJa8zlek8fGQa(Ht30a81jmcz4TSu5RrgcFMkG)LXUzfPBAa(vYz)Xjh3(d72)rtyeYWBzPY5(pUssL7NnUEzmO7Ni3)nnW0(Vz)65I7NoN(fvcP8G7xGDbmM7FvWU9lW9Rz2pwuuxlT)WU9tK
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|