chore: flatten Altoholic-Addon/ wrapper + add standard .gitignore/.gitattributes

Each DataStore_* / Altoholic_* addon now lives at the repo root, matching
the Exiles fork-layout convention (one folder per addon, no wrapper dir).
This commit is contained in:
2026-05-25 10:59:24 +02:00
parent 7789489aec
commit bbe2492a5b
387 changed files with 2 additions and 0 deletions
@@ -0,0 +1,14 @@
------------------------------------------------------------------------
r15 | Thaoky | 2010-07-06 17:12:46 +0000 (Tue, 06 Jul 2010) | 1 line
Changed paths:
M /trunk/DataStore_Inventory.toc
TOC update to retrieve updated libs.
------------------------------------------------------------------------
r14 | thaoky | 2010-03-28 09:50:19 +0000 (Sun, 28 Mar 2010) | 1 line
Changed paths:
M /trunk/Locales/enUS.lua
M /trunk/Locales/repoenUS.lua
Missing localizations in previous commit.
------------------------------------------------------------------------
+376
View File
@@ -0,0 +1,376 @@
--[[ *** DataStore_Inventory ***
Written by : Thaoky, EU-Marécages de Zangar
July 13th, 2009
--]]
if not DataStore then return end
local addonName = "DataStore_Inventory"
_G[addonName] = LibStub("AceAddon-3.0"):NewAddon(addonName, "AceConsole-3.0", "AceEvent-3.0", "AceComm-3.0", "AceSerializer-3.0")
local addon = _G[addonName]
local THIS_ACCOUNT = "Default"
local commPrefix = "DS_Inv" -- let's keep it a bit shorter than the addon name, this goes on a comm channel, a byte is a byte ffs :p
local L = LibStub("AceLocale-3.0"):GetLocale("DataStore_Inventory")
-- Message types
local MSG_SEND_AIL = 1 -- Send AIL at login
local MSG_AIL_REPLY = 2 -- reply
local MSG_EQUIPMENT_REQUEST = 3 -- request equipment ..
local MSG_EQUIPMENT_TRANSFER = 4 -- .. and send the data
local AddonDB_Defaults = {
global = {
Options = {
AutoClearGuildInventory = 0, -- Automatically clear guild members' inventory at login
BroadcastAiL = 1, -- Broadcast professions at login or not
EquipmentRequestNotification = 0, -- Get a warning when someone requests my equipment
},
Guilds = {
['*'] = { -- ["Account.Realm.Name"]
Members = {
['*'] = { -- ["MemberName"]
lastUpdate = nil,
averageItemLvl = 0,
Inventory = {}, -- 19 inventory slots, a simple table containing item id's or full item string if enchanted
}
}
},
},
Characters = {
['*'] = { -- ["Account.Realm.Name"]
lastUpdate = nil,
averageItemLvl = 0,
Inventory = {}, -- 19 inventory slots, a simple table containing item id's or full item string if enchanted
}
}
}
}
-- *** Utility functions ***
local function GetOption(option)
return addon.db.global.Options[option]
end
local function IsEnchanted(link)
if not link then return end
if not string.find(link, "0:0:0:0:0:0:0") then
-- enchants/jewels store values instead of zeroes in the link, if this string can't be found, there's at least one enchant/jewel
return true
end
end
local function GetThisGuild()
local guild = GetGuildInfo("player")
if guild then
local key = format("%s.%s.%s", THIS_ACCOUNT, GetRealmName(), guild)
return addon.db.global.Guilds[key]
end
end
local function GetMemberKey(guild, member)
-- returns the appropriate key to address a guild member.
-- Either it's a known alt ==> point to the characters table
-- Or it's a guild member ==> point to the guild table
local main = DataStore:GetNameOfMain(member)
if main and main == UnitName("player") then
local key = format("%s.%s.%s", THIS_ACCOUNT, GetRealmName(), member)
return addon.db.global.Characters[key]
end
return guild.Members[member]
end
local function GetAIL(alts)
-- alts = list of alts in the same guild, same realm, same account, pipe-delimited : "alt1|alt2|alt3..."
-- usually provided by the main datastore module, but can also be built manually
local out = {}
local character = DataStore:GetCharacter() -- this character
local ail = DataStore:GetAverageItemLevel(character)
table.insert(out, format("%s:%d", UnitName("player"), ail))
if strlen(alts) > 0 then
for _, name in pairs( { strsplit("|", alts) }) do -- then all his alts
character = DataStore:GetCharacter(name)
if character then
ail = DataStore:GetAverageItemLevel(character)
if ail then
table.insert(out, format("%s:%d", name, ail))
end
end
end
end
return table.concat(out, "|")
end
local function SaveAIL(sender, ailList)
local thisGuild = GetThisGuild()
if not thisGuild then return end
for _, ailChar in pairs( { strsplit("|", ailList) }) do -- "char:ail | char:ail | ..."
local name, ail = strsplit(":", ailChar)
if name and ail then
thisGuild.Members[name].averageItemLvl = tonumber(ail)
end
end
end
local function GuildBroadcast(messageType, ...)
local serializedData = addon:Serialize(messageType, ...)
addon:SendCommMessage(commPrefix, serializedData, "GUILD")
end
local function GuildWhisper(player, messageType, ...)
if DataStore:IsGuildMemberOnline(player) then
local serializedData = addon:Serialize(messageType, ...)
addon:SendCommMessage(commPrefix, serializedData, "WHISPER", player)
end
end
local function ClearGuildInventories()
local thisGuild = GetThisGuild()
if thisGuild then
wipe(thisGuild.Members)
end
end
-- *** Scanning functions ***
local NUM_EQUIPMENT_SLOTS = 19
function ScanInventory()
local totalItemLevel = 0
local itemCount = 0
local inventory = addon.ThisCharacter.Inventory
wipe(inventory)
for i = 1, NUM_EQUIPMENT_SLOTS do
local link = GetInventoryItemLink("player", i)
if link then
if IsEnchanted(link) then -- if there's an enchant, save the full link
inventory[i] = link
else -- .. otherwise, only save the id
inventory[i] = tonumber(link:match("item:(%d+)"))
end
if (i ~= 4) and (i ~= 19) then -- InventorySlotId 4 = shirt, 19 = tabard, skip them
itemCount = itemCount + 1
totalItemLevel = totalItemLevel + tonumber(((select(4, GetItemInfo(link))) or 0))
end
end
end
addon.ThisCharacter.averageItemLvl = totalItemLevel / itemCount
addon.ThisCharacter.lastUpdate = time()
end
-- *** Event Handlers ***
local function OnPlayerAlive()
-- print("DataStore_Inventory.lua") -- DEBUG 2025 07 21
if not UnitIsGhost("player") then return end -- only scan if player released spirit and went to graveyard
ScanInventory()
end
local function OnUnitInventoryChanged()
ScanInventory()
end
-- ** Mixins **
local function _GetInventory(character)
return character.Inventory
end
local function _GetInventoryItem(character, slotID)
return character.Inventory[slotID]
end
local function _GetInventoryItemCount(character, searchedID)
local count = 0
for _, item in pairs(character.Inventory) do
if type(item) == "number" then -- saved as a number ? this is the itemID
if (item == searchedID) then
count = count + 1
end
elseif tonumber(item:match("item:(%d+)")) == searchedID then -- otherwise it's the item link
count = count + 1
end
end
return count
end
local function _GetAverageItemLevel(character)
return character.averageItemLvl
end
local sentRequests -- recently sent requests
local function _RequestGuildMemberEquipment(member)
-- requests the equipment of a given character (alt or main)
local player = UnitName("player")
local main = DataStore:GetNameOfMain(member)
if not main then -- player is offline, check if his equipment is in the DB
local thisGuild = GetThisGuild()
if thisGuild and thisGuild.Members[member] then -- player found
if thisGuild.Members[member].Inventory then -- equipment found
addon:SendMessage("DATASTORE_PLAYER_EQUIPMENT_RECEIVED", player, member)
return
end
end
end
if main == player then -- if player requests the equipment of one of own alts, process the request locally, using the network works fine, but let's save the traffic.
-- trigger the same event, _GetGuildMemberInventoryItem will take care of picking the data in the right place
addon:SendMessage("DATASTORE_PLAYER_EQUIPMENT_RECEIVED", player, member)
return
end
-- prevent spamming remote players with too many requests
sentRequests = sentRequests or {}
if sentRequests[main] and ((time() - sentRequests[main]) < 5) then -- if there's a known timestamp , and it was sent less than 5 seconds ago .. exit
return
end
sentRequests[main] = time() -- timestamp of the last request sent to this player
GuildWhisper(main, MSG_EQUIPMENT_REQUEST, member)
end
local function _GetGuildMemberInventoryItem(guild, member, slotID)
local character = GetMemberKey(guild, member)
if character then
return character.Inventory[slotID]
end
end
local function _GetGuildMemberAverageItemLevel(guild, member)
local character = GetMemberKey(guild, member)
if character then
return character.averageItemLvl
end
end
local PublicMethods = {
GetInventory = _GetInventory,
GetInventoryItem = _GetInventoryItem,
GetInventoryItemCount = _GetInventoryItemCount,
GetAverageItemLevel = _GetAverageItemLevel,
RequestGuildMemberEquipment = _RequestGuildMemberEquipment,
GetGuildMemberInventoryItem = _GetGuildMemberInventoryItem,
GetGuildMemberAverageItemLevel = _GetGuildMemberAverageItemLevel,
}
-- *** Guild Comm ***
local function OnGuildAltsReceived(self, sender, alts)
if sender == UnitName("player") and GetOption("BroadcastAiL") == 1 then -- if I receive my own list of alts in the same guild, same realm, same account..
GuildBroadcast(MSG_SEND_AIL, GetAIL(alts)) -- ..then broacast AIL
end
end
local GuildCommCallbacks = {
[MSG_SEND_AIL] = function(sender, ail)
local player = UnitName("player")
if sender ~= player then -- don't send back to self
local alts = DataStore:GetGuildMemberAlts(player) -- get my own alts
if alts and GetOption("BroadcastAiL") == 1 then
GuildWhisper(sender, MSG_AIL_REPLY, GetAIL(alts)) -- .. and send them back
end
end
SaveAIL(sender, ail)
end,
[MSG_AIL_REPLY] = function(sender, ail)
SaveAIL(sender, ail)
end,
[MSG_EQUIPMENT_REQUEST] = function(sender, character)
if GetOption("EquipmentRequestNotification") == 1 then
addon:Print(format(L["%s is inspecting %s"], sender, character))
end
local key = DataStore:GetCharacter(character) -- this realm, this account
if key then
GuildWhisper(sender, MSG_EQUIPMENT_TRANSFER, character, DataStore:GetInventory(key))
end
end,
[MSG_EQUIPMENT_TRANSFER] = function(sender, character, equipment)
local thisGuild = GetThisGuild()
if thisGuild then
thisGuild.Members[character].Inventory = equipment
thisGuild.Members[character].lastUpdate = time()
addon:SendMessage("DATASTORE_PLAYER_EQUIPMENT_RECEIVED", sender, character)
end
end,
}
function addon:OnInitialize()
addon.db = LibStub("AceDB-3.0"):New(addonName .. "DB", AddonDB_Defaults)
DataStore:RegisterModule(addonName, addon, PublicMethods)
DataStore:SetGuildCommCallbacks(commPrefix, GuildCommCallbacks)
DataStore:SetCharacterBasedMethod("GetInventory")
DataStore:SetCharacterBasedMethod("GetInventoryItem")
DataStore:SetCharacterBasedMethod("GetInventoryItemCount")
DataStore:SetCharacterBasedMethod("GetAverageItemLevel")
DataStore:SetGuildBasedMethod("GetGuildMemberInventoryItem")
DataStore:SetGuildBasedMethod("GetGuildMemberAverageItemLevel")
addon:RegisterMessage("DATASTORE_GUILD_ALTS_RECEIVED", OnGuildAltsReceived)
addon:RegisterComm(commPrefix, DataStore:GetGuildCommHandler())
end
function addon:OnEnable()
addon:RegisterEvent("PLAYER_ALIVE", OnPlayerAlive)
addon:RegisterEvent("UNIT_INVENTORY_CHANGED", OnUnitInventoryChanged)
addon:SetupOptions()
if GetOption("AutoClearGuildInventory") == 1 then
ClearGuildInventories()
end
end
function addon:OnDisable()
addon:UnregisterEvent("PLAYER_ALIVE")
addon:UnregisterEvent("UNIT_INVENTORY_CHANGED")
end
local PT = LibStub("LibPeriodicTable-3.1")
local BZ = LibStub("LibBabble-Zone-3.0"):GetUnstrictLookupTable()
local BB = LibStub("LibBabble-Boss-3.0"):GetUnstrictLookupTable()
local DataSources = {
"InstanceLoot",
"InstanceLootHeroic",
"CurrencyItems",
}
-- stays out of public methods for now
function addon:GetSource(searchedID)
local info, source
for _, v in pairs(DataSources) do
info, source = PT:ItemInSet(searchedID, v)
if source then
local _, instance, boss = strsplit(".", source) -- ex: "InstanceLoot.Gnomeregan.Techbot"
instance = BZ[instance] or instance
if v == "InstanceLootHeroic" then
instance = format("%s (%s)", instance, L["Heroic"])
elseif v == "CurrencyItems" then
-- for currency items, there will be no "boss" value, let's return the quantity instead
boss = info.."x"
end
if boss == "Trash Mobs" then
boss = L["Trash Mobs"]
else
boss = BB[boss] or boss
end
return instance, boss
end
end
end
@@ -0,0 +1,20 @@
## Interface: 30300
## Title: DataStore_Inventory
## Notes: Stores information about character inventory
## Author: Thaoky (EU-Marécages de Zangar)
## Version: 3.3.002
## Dependencies: DataStore
## OptionalDeps: Ace3
## SavedVariables: DataStore_InventoryDB
## X-Category: Interface Enhancements
## X-Embeds: Ace3
## X-Curse-Packaged-Version: r15
## X-Curse-Project-Name: DataStore_Inventory
## X-Curse-Project-ID: datastore_inventory
## X-Curse-Repository-ID: wow/datastore_inventory/mainline
embeds.xml
locale.xml
DataStore_Inventory.lua
Options.xml
+2
View File
@@ -0,0 +1,2 @@
All Rights Reserved unless otherwise explicitly stated.
+7
View File
@@ -0,0 +1,7 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "deDE" )
if not L then return end
L["Heroic"] = "Heroisch"
L["Trash Mobs"] = true
+22
View File
@@ -0,0 +1,22 @@
local debug = false
--[===[@debug@
debug = true
--@end-debug@]===]
local L = LibStub("AceLocale-3.0"):NewLocale("DataStore_Inventory", "enUS", true, debug)
L["CLEAR_INVENTORY_TEXT"] = "Automatically clear guild members' equipment"
L["CLEAR_INVENTORY_DISABLED"] = "Your guild mates' equipment remains in the database, and is visible even if they are offline."
L["CLEAR_INVENTORY_ENABLED"] = "To save memory, local guild members' inventories are cleared every time you login."
L["CLEAR_INVENTORY_TITLE"] = "Clear guild members' equipment"
L["BROADCAST_AIL_TEXT"] = "Broadcast my average item level to guild at logon"
L["BROADCAST_AIL_DISABLED"] = "Nothing will be sent at all."
L["BROADCAST_AIL_ENABLED"] = "Your alts' average item level will be sent on the guild channel at logon."
L["BROADCAST_AIL_TITLE"] = "Broadcast average item level"
L["EQUIP_REQ_TEXT"] = "Be notified when someone inspects one of my alts' equipment."
L["EQUIP_REQ_DISABLED"] = "Nothing will be displayed at all."
L["EQUIP_REQ_ENABLED"] = "A chat message will inform you about which guild member is inspecting which alt."
L["EQUIP_REQ_TITLE"] = "Equipment Request Notification"
L["%s is inspecting %s"] = true
L["Heroic"] = true
L["Trash Mobs"] = true
+11
View File
@@ -0,0 +1,11 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "esES" )
if not L then return end
L["CLEAR_INVENTORY_DISABLED"] = "El equipo de tus compañeros de hermandad permanece en la base de datos, y es visible incluso si están desconectados."
L["CLEAR_INVENTORY_ENABLED"] = "Para ahorrar memoria, los inventarios de los miembros de la hermandad se borran cada vez que inicies sesión."
L["CLEAR_INVENTORY_TEXT"] = "Borrar automáticamente el equipamiento de los miembros de la hermandad"
L["CLEAR_INVENTORY_TITLE"] = "Borrado del equipamiento de los miembros de la hermandad"
L["Heroic"] = "Heroico"
L["Trash Mobs"] = "Enemigos de relleno"
+7
View File
@@ -0,0 +1,7 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "esMX" )
if not L then return end
L["Heroic"] = "Heroico"
L["Trash Mobs"] = "Enemigos basura"
+20
View File
@@ -0,0 +1,20 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "frFR" )
if not L then return end
L["BROADCAST_AIL_DISABLED"] = "Rien ne sera envoyé."
L["BROADCAST_AIL_ENABLED"] = "Le niveau d'objets moyen de vos rerolls sera envoyé sur le canal guilde au login."
L["BROADCAST_AIL_TEXT"] = "Envoyer le niveau d'objets moyen à la guilde au login."
L["BROADCAST_AIL_TITLE"] = "Envoyer le niveau d'objets moyen"
L["CLEAR_INVENTORY_DISABLED"] = "L'équipement des membres de la guilde reste dans la base de données, et est visible même s'ils sont hors-ligne."
L["CLEAR_INVENTORY_ENABLED"] = "Pour économiser la mémoire, les inventaires locaux des membres de la guilde sont effacés à chaque login."
L["CLEAR_INVENTORY_TEXT"] = "Effacer automatiquement l'équipement des membres de la guilde"
L["CLEAR_INVENTORY_TITLE"] = "Effacer l'équipement des membres de la guilde"
L["EQUIP_REQ_DISABLED"] = "Rien ne sera affiché."
L["EQUIP_REQ_ENABLED"] = "Un message vous informera de quel membre de guilde inspecte quel reroll."
L["EQUIP_REQ_TEXT"] = "Etre informé quand quelqu'un inspecte l'équipement d'un de mes personnages."
L["EQUIP_REQ_TITLE"] = "Avertissement de requête d'équipement."
L["Heroic"] = "Heroïque"
L["%s is inspecting %s"] = "%s inspecte %s"
L["Trash Mobs"] = true
+5
View File
@@ -0,0 +1,5 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "koKR" )
if not L then return end
+19
View File
@@ -0,0 +1,19 @@
local L = LibStub("AceLocale-3.0"):NewLocale("DataStore_Inventory", "enUS", true, true)
if not L then return end
L["CLEAR_INVENTORY_TEXT"] = "Automatically clear guild members' equipment"
L["CLEAR_INVENTORY_DISABLED"] = "Your guild mates' equipment remains in the database, and is visible even if they are offline."
L["CLEAR_INVENTORY_ENABLED"] = "To save memory, local guild members' inventories are cleared every time you login."
L["CLEAR_INVENTORY_TITLE"] = "Clear guild members' equipment"
L["BROADCAST_AIL_TEXT"] = "Broadcast my average item level to guild at logon"
L["BROADCAST_AIL_DISABLED"] = "Nothing will be sent at all."
L["BROADCAST_AIL_ENABLED"] = "Your alts' average item level will be sent on the guild channel at logon."
L["BROADCAST_AIL_TITLE"] = "Broadcast average item level"
L["EQUIP_REQ_TEXT"] = "Be notified when someone inspects one of my alts' equipment."
L["EQUIP_REQ_DISABLED"] = "Nothing will be displayed at all."
L["EQUIP_REQ_ENABLED"] = "A chat message will inform you about which guild member is inspecting which alt."
L["EQUIP_REQ_TITLE"] = "Equipment Request Notification"
L["%s is inspecting %s"] = true
L["Heroic"] = true
L["Trash Mobs"] = true
+7
View File
@@ -0,0 +1,7 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "ruRU" )
if not L then return end
L["Heroic"] = "Героическая сложность"
L["Trash Mobs"] = "Существа"
+7
View File
@@ -0,0 +1,7 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "zhCN" )
if not L then return end
L["Heroic"] = "英雄模式"
L["Trash Mobs"] = "小怪掉落"
+20
View File
@@ -0,0 +1,20 @@
local L = LibStub("AceLocale-3.0"):NewLocale( "DataStore_Inventory", "zhTW" )
if not L then return end
L["BROADCAST_AIL_DISABLED"] = "將沒有任何發送."
L["BROADCAST_AIL_ENABLED"] = "你所有的角色的裝備的平均等級會你上線時在公會廣播."
L["BROADCAST_AIL_TEXT"] = "上線時在公會廣播我的裝備的平均等級"
L["BROADCAST_AIL_TITLE"] = "廣播裝備的平均等級"
L["CLEAR_INVENTORY_DISABLED"] = "保留你公會成員的裝備在數據庫, 即使他們是離線後仍可見到他們的裝備."
L["CLEAR_INVENTORY_ENABLED"] = "為了節省內存,每次你登錄將清除公會成員的物品."
L["CLEAR_INVENTORY_TEXT"] = "自動清除公會成員的裝備"
L["CLEAR_INVENTORY_TITLE"] = "清除公會成員的裝備"
L["EQUIP_REQ_DISABLED"] = "將沒有任何顯示."
L["EQUIP_REQ_ENABLED"] = "當有人查看你的角色的裝備時, 聊天視窗內會有通知你是那個公會成員在查看你那一個角色."
L["EQUIP_REQ_TEXT"] = "當有人查看你的角色的裝備時通知你."
L["EQUIP_REQ_TITLE"] = "查看裝備通知"
L["Heroic"] = "英雄"
L["%s is inspecting %s"] = "%s 正在查看 %s"
L["Trash Mobs"] = "一般怪物"
+23
View File
@@ -0,0 +1,23 @@
if not DataStore then return end
local addonName = "DataStore_Inventory"
local addon = _G[addonName]
local L = LibStub("AceLocale-3.0"):GetLocale(addonName)
function addon:SetupOptions()
DataStore:AddOptionCategory(DataStoreInventoryOptions, addonName, "DataStore")
-- localize options
DataStoreInventoryOptions_AutoClearGuildInventoryText:SetText(L["CLEAR_INVENTORY_TEXT"])
DataStoreInventoryOptions_BroadcastAiLText:SetText(L["BROADCAST_AIL_TEXT"])
DataStoreInventoryOptions_EquipmentRequestNotificationText:SetText(L["EQUIP_REQ_TEXT"])
DataStore:SetCheckBoxTooltip(DataStoreInventoryOptions_AutoClearGuildInventory, L["CLEAR_INVENTORY_TITLE"], L["CLEAR_INVENTORY_ENABLED"], L["CLEAR_INVENTORY_DISABLED"])
DataStore:SetCheckBoxTooltip(DataStoreInventoryOptions_BroadcastAiL, L["BROADCAST_AIL_TITLE"], L["BROADCAST_AIL_ENABLED"], L["BROADCAST_AIL_DISABLED"])
DataStore:SetCheckBoxTooltip(DataStoreInventoryOptions_EquipmentRequestNotification, L["EQUIP_REQ_TITLE"], L["EQUIP_REQ_ENABLED"], L["EQUIP_REQ_DISABLED"])
-- restore saved options to gui
DataStoreInventoryOptions_AutoClearGuildInventory:SetChecked(DataStore:GetOption(addonName, "AutoClearGuildInventory"))
DataStoreInventoryOptions_BroadcastAiL:SetChecked(DataStore:GetOption(addonName, "BroadcastAiL"))
DataStoreInventoryOptions_EquipmentRequestNotification:SetChecked(DataStore:GetOption(addonName, "EquipmentRequestNotification"))
end
+63
View File
@@ -0,0 +1,63 @@
<Ui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.blizzard.com/wow/ui/">
<Script file="Options.lua"></Script>
<Frame name="DataStoreInventoryOptions" hidden="true">
<Size>
<AbsDimension x="615" y="306"/>
</Size>
<Frames>
<CheckButton name="$parent_AutoClearGuildInventory" inherits="InterfaceOptionsSmallCheckButtonTemplate">
<Size>
<AbsDimension x="20" y="20"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<AbsDimension x="40" y="-40" />
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
DataStore:ToggleOption(self, "DataStore_Inventory", "AutoClearGuildInventory")
</OnClick>
</Scripts>
</CheckButton>
<CheckButton name="$parent_BroadcastAiL" inherits="InterfaceOptionsSmallCheckButtonTemplate">
<Size>
<AbsDimension x="20" y="20"/>
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="$parent_AutoClearGuildInventory" relativePoint="BOTTOM" >
<Offset>
<AbsDimension x="0" y="-10"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
DataStore:ToggleOption(self, "DataStore_Inventory", "BroadcastAiL")
</OnClick>
</Scripts>
</CheckButton>
<CheckButton name="$parent_EquipmentRequestNotification" inherits="InterfaceOptionsSmallCheckButtonTemplate">
<Size>
<AbsDimension x="20" y="20"/>
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="$parent_BroadcastAiL" relativePoint="BOTTOM" >
<Offset>
<AbsDimension x="0" y="-10"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
DataStore:ToggleOption(self, "DataStore_Inventory", "EquipmentRequestNotification")
</OnClick>
</Scripts>
</CheckButton>
</Frames>
</Frame>
</Ui>
+11
View File
@@ -0,0 +1,11 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Include file="libs\LibBabble-Boss-3.0\lib.xml"/>
<Include file="libs\LibBabble-Zone-3.0\lib.xml"/>
<Script file="libs\LibPeriodicTable-3.1-CurrencyItems\LibPeriodicTable-3.1-CurrencyItems.lua"/>
<Script file="libs\LibPeriodicTable-3.1-InstanceLoot\LibPeriodicTable-3.1-InstanceLoot.lua"/>
<Script file="libs\LibPeriodicTable-3.1-InstanceLootHeroic\LibPeriodicTable-3.1-InstanceLootHeroic.lua"/>
</Ui>
@@ -0,0 +1,292 @@
-- LibBabble-3.0 is hereby placed in the Public Domain
-- Credits: ckknight
local LIBBABBLE_MAJOR, LIBBABBLE_MINOR = "LibBabble-3.0", 2
local LibBabble = LibStub:NewLibrary(LIBBABBLE_MAJOR, LIBBABBLE_MINOR)
if not LibBabble then
return
end
local data = LibBabble.data or {}
for k,v in pairs(LibBabble) do
LibBabble[k] = nil
end
LibBabble.data = data
local tablesToDB = {}
for namespace, db in pairs(data) do
for k,v in pairs(db) do
tablesToDB[v] = db
end
end
local function warn(message)
local _, ret = pcall(error, message, 3)
geterrorhandler()(ret)
end
local lookup_mt = { __index = function(self, key)
local db = tablesToDB[self]
local current_key = db.current[key]
if current_key then
self[key] = current_key
return current_key
end
local base_key = db.base[key]
local real_MAJOR_VERSION
for k,v in pairs(data) do
if v == db then
real_MAJOR_VERSION = k
break
end
end
if not real_MAJOR_VERSION then
real_MAJOR_VERSION = LIBBABBLE_MAJOR
end
if base_key then
warn(("%s: Translation %q not found for locale %q"):format(real_MAJOR_VERSION, key, GetLocale()))
rawset(self, key, base_key)
return base_key
end
warn(("%s: Translation %q not found."):format(real_MAJOR_VERSION, key))
rawset(self, key, key)
return key
end }
local function initLookup(module, lookup)
local db = tablesToDB[module]
for k in pairs(lookup) do
lookup[k] = nil
end
setmetatable(lookup, lookup_mt)
tablesToDB[lookup] = db
db.lookup = lookup
return lookup
end
local function initReverse(module, reverse)
local db = tablesToDB[module]
for k in pairs(reverse) do
reverse[k] = nil
end
for k,v in pairs(db.current) do
reverse[v] = k
end
tablesToDB[reverse] = db
db.reverse = reverse
db.reverseIterators = nil
return reverse
end
local prototype = {}
local prototype_mt = {__index = prototype}
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will warn but allow the code to pass through.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local BL = B:GetLookupTable()
assert(BL["Some english word"] == "Some localized word")
DoSomething(BL["Some english word that doesn't exist"]) -- warning!
-----------------------------------------------------------------------------]]
function prototype:GetLookupTable()
local db = tablesToDB[self]
local lookup = db.lookup
if lookup then
return lookup
end
return initLookup(self, {})
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local B_has = B:GetUnstrictLookupTable()
assert(B_has["Some english word"] == "Some localized word")
assert(B_has["Some english word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetUnstrictLookupTable()
local db = tablesToDB[self]
return db.current
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
* This is useful for checking if the base (English) table has a key, even if the localized one does not have it registered.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local B_hasBase = B:GetBaseLookupTable()
assert(B_hasBase["Some english word"] == "Some english word")
assert(B_hasBase["Some english word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetBaseLookupTable()
local db = tablesToDB[self]
return db.base
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
* This will return only one English word that it maps to, if there are more than one to check, see :GetReverseIterator("word")
Returns:
A lookup table for localized to english words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local BR = B:GetReverseLookupTable()
assert(BR["Some localized word"] == "Some english word")
assert(BR["Some localized word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetReverseLookupTable()
local db = tablesToDB[self]
local reverse = db.reverse
if reverse then
return reverse
end
return initReverse(self, {})
end
local blank = {}
local weakVal = {__mode='v'}
--[[---------------------------------------------------------------------------
Arguments:
string - the localized word to chek for.
Returns:
An iterator to traverse all English words that map to the given key
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
for word in B:GetReverseIterator("Some localized word") do
DoSomething(word)
end
-----------------------------------------------------------------------------]]
function prototype:GetReverseIterator(key)
local db = tablesToDB[self]
local reverseIterators = db.reverseIterators
if not reverseIterators then
reverseIterators = setmetatable({}, weakVal)
db.reverseIterators = reverseIterators
elseif reverseIterators[key] then
return pairs(reverseIterators[key])
end
local t
for k,v in pairs(db.current) do
if v == key then
if not t then
t = {}
end
t[k] = true
end
end
reverseIterators[key] = t or blank
return pairs(reverseIterators[key])
end
--[[---------------------------------------------------------------------------
Returns:
An iterator to traverse all translations English to localized.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
for english, localized in B:Iterate() do
DoSomething(english, localized)
end
-----------------------------------------------------------------------------]]
function prototype:Iterate()
local db = tablesToDB[self]
return pairs(db.current)
end
-- #NODOC
-- modules need to call this to set the base table
function prototype:SetBaseTranslations(base)
local db = tablesToDB[self]
local oldBase = db.base
if oldBase then
for k in pairs(oldBase) do
oldBase[k] = nil
end
for k, v in pairs(base) do
oldBase[k] = v
end
base = oldBase
else
db.base = base
end
for k,v in pairs(base) do
if v == true then
base[k] = k
end
end
end
local function init(module)
local db = tablesToDB[module]
if db.lookup then
initLookup(module, db.lookup)
end
if db.reverse then
initReverse(module, db.reverse)
end
db.reverseIterators = nil
end
-- #NODOC
-- modules need to call this to set the current table. if current is true, use the base table.
function prototype:SetCurrentTranslations(current)
local db = tablesToDB[self]
if current == true then
db.current = db.base
else
local oldCurrent = db.current
if oldCurrent then
for k in pairs(oldCurrent) do
oldCurrent[k] = nil
end
for k, v in pairs(current) do
oldCurrent[k] = v
end
current = oldCurrent
else
db.current = current
end
end
init(self)
end
for namespace, db in pairs(data) do
setmetatable(db.module, prototype_mt)
init(db.module)
end
-- #NODOC
-- modules need to call this to create a new namespace.
function LibBabble:New(namespace, minor)
local module, oldminor = LibStub:NewLibrary(namespace, minor)
if not module then
return
end
if not oldminor then
local db = {
module = module,
}
data[namespace] = db
tablesToDB[module] = db
else
for k,v in pairs(module) do
module[k] = nil
end
end
setmetatable(module, prototype_mt)
return module
end
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,21 @@
## Interface: 30300
## LoadOnDemand: 1
## Title: Lib: Babble-Boss-3.0
## Notes: A library to help with localization of bosses.
## Notes-zhCN: 为本地化服务的支持库[首领名称]
## Notes-zhTW: 為本地化服務的函式庫[首領名稱]
## Notes-deDE: BabbleLib ist eine Bibliothek, die bei der Lokalisierung helfen soll.
## Notes-frFR: Une bibliothèque d'aide à la localisation.
## Notes-esES: Una biblioteca para ayudar con las localizaciones.
## Author: ckknight
## X-eMail: ckknight@gmail.com
## X-Category: Library
## X-License: MIT
## X-Curse-Packaged-Version: r287
## X-Curse-Project-Name: LibBabble-Boss-3.0
## X-Curse-Project-ID: libbabble-boss-3-0
## X-Curse-Repository-ID: wow/libbabble-boss-3-0/mainline
LibStub\LibStub.lua
lib.xml
@@ -0,0 +1,30 @@
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
local LibStub = _G[LIBSTUB_MAJOR]
if not LibStub or LibStub.minor < LIBSTUB_MINOR then
LibStub = LibStub or {libs = {}, minors = {} }
_G[LIBSTUB_MAJOR] = LibStub
LibStub.minor = LIBSTUB_MINOR
function LibStub:NewLibrary(major, minor)
assert(type(major) == "string", "Bad argument #2 to `NewLibrary' (string expected)")
minor = assert(tonumber(strmatch(minor, "%d+")), "Minor version must either be a number or contain a number.")
local oldminor = self.minors[major]
if oldminor and oldminor >= minor then return nil end
self.minors[major], self.libs[major] = minor, self.libs[major] or {}
return self.libs[major], oldminor
end
function LibStub:GetLibrary(major, silent)
if not self.libs[major] and not silent then
error(("Cannot find a library instance of %q."):format(tostring(major)), 2)
end
return self.libs[major], self.minors[major]
end
function LibStub:IterateLibraries() return pairs(self.libs) end
setmetatable(LibStub, { __call = LibStub.GetLibrary })
end
@@ -0,0 +1,5 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="LibBabble-3.0.lua" />
<Script file="LibBabble-Boss-3.0.lua" />
</Ui>
@@ -0,0 +1,292 @@
-- LibBabble-3.0 is hereby placed in the Public Domain
-- Credits: ckknight
local LIBBABBLE_MAJOR, LIBBABBLE_MINOR = "LibBabble-3.0", 2
local LibBabble = LibStub:NewLibrary(LIBBABBLE_MAJOR, LIBBABBLE_MINOR)
if not LibBabble then
return
end
local data = LibBabble.data or {}
for k,v in pairs(LibBabble) do
LibBabble[k] = nil
end
LibBabble.data = data
local tablesToDB = {}
for namespace, db in pairs(data) do
for k,v in pairs(db) do
tablesToDB[v] = db
end
end
local function warn(message)
local _, ret = pcall(error, message, 3)
geterrorhandler()(ret)
end
local lookup_mt = { __index = function(self, key)
local db = tablesToDB[self]
local current_key = db.current[key]
if current_key then
self[key] = current_key
return current_key
end
local base_key = db.base[key]
local real_MAJOR_VERSION
for k,v in pairs(data) do
if v == db then
real_MAJOR_VERSION = k
break
end
end
if not real_MAJOR_VERSION then
real_MAJOR_VERSION = LIBBABBLE_MAJOR
end
if base_key then
warn(("%s: Translation %q not found for locale %q"):format(real_MAJOR_VERSION, key, GetLocale()))
rawset(self, key, base_key)
return base_key
end
warn(("%s: Translation %q not found."):format(real_MAJOR_VERSION, key))
rawset(self, key, key)
return key
end }
local function initLookup(module, lookup)
local db = tablesToDB[module]
for k in pairs(lookup) do
lookup[k] = nil
end
setmetatable(lookup, lookup_mt)
tablesToDB[lookup] = db
db.lookup = lookup
return lookup
end
local function initReverse(module, reverse)
local db = tablesToDB[module]
for k in pairs(reverse) do
reverse[k] = nil
end
for k,v in pairs(db.current) do
reverse[v] = k
end
tablesToDB[reverse] = db
db.reverse = reverse
db.reverseIterators = nil
return reverse
end
local prototype = {}
local prototype_mt = {__index = prototype}
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will warn but allow the code to pass through.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local BL = B:GetLookupTable()
assert(BL["Some english word"] == "Some localized word")
DoSomething(BL["Some english word that doesn't exist"]) -- warning!
-----------------------------------------------------------------------------]]
function prototype:GetLookupTable()
local db = tablesToDB[self]
local lookup = db.lookup
if lookup then
return lookup
end
return initLookup(self, {})
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local B_has = B:GetUnstrictLookupTable()
assert(B_has["Some english word"] == "Some localized word")
assert(B_has["Some english word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetUnstrictLookupTable()
local db = tablesToDB[self]
return db.current
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
* This is useful for checking if the base (English) table has a key, even if the localized one does not have it registered.
Returns:
A lookup table for english to localized words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local B_hasBase = B:GetBaseLookupTable()
assert(B_hasBase["Some english word"] == "Some english word")
assert(B_hasBase["Some english word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetBaseLookupTable()
local db = tablesToDB[self]
return db.base
end
--[[---------------------------------------------------------------------------
Notes:
* If you try to access a nonexistent key, it will return nil.
* This will return only one English word that it maps to, if there are more than one to check, see :GetReverseIterator("word")
Returns:
A lookup table for localized to english words.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
local BR = B:GetReverseLookupTable()
assert(BR["Some localized word"] == "Some english word")
assert(BR["Some localized word that doesn't exist"] == nil)
-----------------------------------------------------------------------------]]
function prototype:GetReverseLookupTable()
local db = tablesToDB[self]
local reverse = db.reverse
if reverse then
return reverse
end
return initReverse(self, {})
end
local blank = {}
local weakVal = {__mode='v'}
--[[---------------------------------------------------------------------------
Arguments:
string - the localized word to chek for.
Returns:
An iterator to traverse all English words that map to the given key
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
for word in B:GetReverseIterator("Some localized word") do
DoSomething(word)
end
-----------------------------------------------------------------------------]]
function prototype:GetReverseIterator(key)
local db = tablesToDB[self]
local reverseIterators = db.reverseIterators
if not reverseIterators then
reverseIterators = setmetatable({}, weakVal)
db.reverseIterators = reverseIterators
elseif reverseIterators[key] then
return pairs(reverseIterators[key])
end
local t
for k,v in pairs(db.current) do
if v == key then
if not t then
t = {}
end
t[k] = true
end
end
reverseIterators[key] = t or blank
return pairs(reverseIterators[key])
end
--[[---------------------------------------------------------------------------
Returns:
An iterator to traverse all translations English to localized.
Example:
local B = LibStub("LibBabble-Module-3.0") -- where Module is what you want.
for english, localized in B:Iterate() do
DoSomething(english, localized)
end
-----------------------------------------------------------------------------]]
function prototype:Iterate()
local db = tablesToDB[self]
return pairs(db.current)
end
-- #NODOC
-- modules need to call this to set the base table
function prototype:SetBaseTranslations(base)
local db = tablesToDB[self]
local oldBase = db.base
if oldBase then
for k in pairs(oldBase) do
oldBase[k] = nil
end
for k, v in pairs(base) do
oldBase[k] = v
end
base = oldBase
else
db.base = base
end
for k,v in pairs(base) do
if v == true then
base[k] = k
end
end
end
local function init(module)
local db = tablesToDB[module]
if db.lookup then
initLookup(module, db.lookup)
end
if db.reverse then
initReverse(module, db.reverse)
end
db.reverseIterators = nil
end
-- #NODOC
-- modules need to call this to set the current table. if current is true, use the base table.
function prototype:SetCurrentTranslations(current)
local db = tablesToDB[self]
if current == true then
db.current = db.base
else
local oldCurrent = db.current
if oldCurrent then
for k in pairs(oldCurrent) do
oldCurrent[k] = nil
end
for k, v in pairs(current) do
oldCurrent[k] = v
end
current = oldCurrent
else
db.current = current
end
end
init(self)
end
for namespace, db in pairs(data) do
setmetatable(db.module, prototype_mt)
init(db.module)
end
-- #NODOC
-- modules need to call this to create a new namespace.
function LibBabble:New(namespace, minor)
local module, oldminor = LibStub:NewLibrary(namespace, minor)
if not module then
return
end
if not oldminor then
local db = {
module = module,
}
data[namespace] = db
tablesToDB[module] = db
else
for k,v in pairs(module) do
module[k] = nil
end
end
setmetatable(module, prototype_mt)
return module
end
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,18 @@
## Interface: 30300
## LoadOnDemand: 1
## Title: Lib: Babble-Zone-3.0
## Notes: A library to help with localization of Zones.
## Notes-deDE: BabbleLib ist eine Bibliothek, die bei der Lokalisierung helfen soll.
## Notes-frFR: Une bibliothèque d'aide à la localisation.
## Notes-esES: Una biblioteca para ayudar con las localizaciones.
## Author: ckknight
## X-eMail: ckknight@gmail.com
## X-Category: Library
## X-License: MIT
## X-Curse-Packaged-Version: r268
## X-Curse-Project-Name: LibBabble-Zone-3.0
## X-Curse-Project-ID: libbabble-zone-3-0
## X-Curse-Repository-ID: wow/libbabble-zone-3-0/mainline
LibStub\LibStub.lua
lib.xml
@@ -0,0 +1,30 @@
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
local LibStub = _G[LIBSTUB_MAJOR]
if not LibStub or LibStub.minor < LIBSTUB_MINOR then
LibStub = LibStub or {libs = {}, minors = {} }
_G[LIBSTUB_MAJOR] = LibStub
LibStub.minor = LIBSTUB_MINOR
function LibStub:NewLibrary(major, minor)
assert(type(major) == "string", "Bad argument #2 to `NewLibrary' (string expected)")
minor = assert(tonumber(strmatch(minor, "%d+")), "Minor version must either be a number or contain a number.")
local oldminor = self.minors[major]
if oldminor and oldminor >= minor then return nil end
self.minors[major], self.libs[major] = minor, self.libs[major] or {}
return self.libs[major], oldminor
end
function LibStub:GetLibrary(major, silent)
if not self.libs[major] and not silent then
error(("Cannot find a library instance of %q."):format(tostring(major)), 2)
end
return self.libs[major], self.minors[major]
end
function LibStub:IterateLibraries() return pairs(self.libs) end
setmetatable(LibStub, { __call = LibStub.GetLibrary })
end
@@ -0,0 +1,5 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="LibBabble-3.0.lua" />
<Script file="LibBabble-Zone-3.0.lua" />
</Ui>
@@ -0,0 +1,46 @@
-- (c) 2007 Nymbia. see LGPLv2.1.txt for full details.
--DO NOT MAKE CHANGES TO THIS FILE BEFORE READING THE WIKI PAGE REGARDING CHANGING THESE FILES
if not LibStub("LibPeriodicTable-3.1", true) then error("PT3 must be loaded before data") end
LibStub("LibPeriodicTable-3.1"):AddData("CurrencyItems", gsub("$Rev: 293 $", "(%d+)", function(n) return n+90000 end), {
["CurrencyItems.Alterac Valley Mark of Honor"]="31839:2,31841:2,19083:10,19084:10,19085:10,19086:10,19099:10,19100:10,19103:10,19104:10,19319:10,19320:10,28246:10,28247:10,33853:10,33918:10,33919:10,35129:10,35130:10,35131:10,35320:10,37927:10,19101:15,19102:15,15198:20,15199:20,16440:20,16448:20,16454:20,16463:20,16471:20,16484:20,16540:20,16548:20,16555:20,16560:20,16571:20,16574:20,17584:20,17588:20,17608:20,17620:20,19087:20,19088:20,19089:20,19090:20,19091:20,19092:20,19093:20,19094:20,19095:20,19096:20,19097:20,19098:20,22862:20,22863:20,22864:20,22865:20,22867:20,22868:20,22869:20,22870:20,23274:20,23279:20,23280:20,23282:20,23284:20,23286:20,23288:20,23290:20,29595:20,29600:20,29607:20,29613:20,19308:25,19309:25,19310:25,19311:25,19312:25,19315:25,19321:25,19323:25,19324:25,19325:25,21563:25,16441:30,16451:30,16455:30,16465:30,16474:30,16478:30,16533:30,16542:30,16550:30,16561:30,16566:30,16578:30,17578:30,17591:30,17602:30,17623:30,19045:30,19046:30,23244:30,23251:30,23253:30,23255:30,23257:30,23259:30,23261:30,23263:30,23276:30,23306:30,23308:30,23310:30,23312:30,23314:30,23316:30,23318:30,29465:30,29466:30,29467:30,29468:30,29469:30,29470:30,29471:30,29472:30,29598:30,29604:30,29610:30,29616:30,34129:30,35906:30,18830:40,18831:40,18867:40,18868:40,18869:40,18871:40,18873:40,18874:40,18876:40,18877:40,23455:40,23465:40,41587:40,41588:40,41589:40,41590:40,19029:50,19030:50,19031:60,19032:60",
["CurrencyItems.Apexis Crystal"]="32650:1,32652:1,32653:1,32654:1,32625:3,32630:3,32624:4,32629:4,32645:4,32647:4,32648:4,32651:4",
["CurrencyItems.Apexis Shard"]="32784:2,32783:3,32596:10,32597:10,32599:10,32600:10,32828:10,32759:35,32634:40,32635:40,32636:40,32637:40,32638:40,32639:40,32650:50,32652:50,32653:50,32654:50,33934:50,33935:50,32645:100,32647:100,32648:100,32651:100,32640:160,32641:160",
["CurrencyItems.Arathi Basin Mark of Honor"]="31838:2,31840:2,15196:3,15197:3,16341:10,16342:10,18427:10,18440:10,18441:10,18461:10,12584:20,15198:20,15199:20,16345:20,16437:20,16444:20,16446:20,16449:20,16457:20,16459:20,16462:20,16468:20,16472:20,16476:20,16480:20,16483:20,16536:20,16539:20,16544:20,16545:20,16551:20,16554:20,16558:20,16562:20,16568:20,16569:20,16573:20,16580:20,17580:20,17583:20,17586:20,17590:20,17604:20,17607:20,17618:20,17622:20,18825:20,18826:20,18827:20,18828:20,18833:20,18835:20,18836:20,18837:20,18838:20,18840:20,18843:20,18844:20,18847:20,18848:20,18855:20,18860:20,18865:20,18866:20,20041:20,20042:20,20043:20,20044:20,20045:20,20046:20,20047:20,20048:20,20049:20,20050:20,20051:20,20052:20,20053:20,20054:20,20068:20,20073:20,20088:20,20089:20,20090:20,20091:20,20092:20,20093:20,20094:20,20095:20,20096:20,20097:20,20098:20,20099:20,20100:20,20101:20,20102:20,20103:20,20104:20,20105:20,20106:20,20107:20,20108:20,20109:20,20110:20,20111:20,20112:20,20113:20,20114:20,20115:20,20116:20,20117:20,20118:20,20119:20,20120:20,20121:20,20122:20,20123:20,20124:20,20125:20,20126:20,20127:20,20128:20,20129:20,20150:20,20151:20,20152:20,20153:20,20154:20,20155:20,20156:20,20157:20,20159:20,20160:20,20161:20,20162:20,20163:20,20164:20,20165:20,20166:20,20167:20,20168:20,20169:20,20170:20,20171:20,20172:20,20173:20,20174:20,20177:20,20178:20,20179:20,20180:20,20181:20,20182:20,20183:20,20185:20,20186:20,20187:20,20188:20,20189:20,20190:20,20191:20,20192:20,20193:20,20195:20,20196:20,20197:20,20198:20,20199:20,20200:20,20201:20,20202:20,20204:20,20205:20,20206:20,20207:20,20208:20,20209:20,20210:20,20211:20,22843:20,22852:20,22855:20,22856:20,22857:20,22858:20,22859:20,22860:20,23243:20,23252:20,23254:20,23256:20,23258:20,23260:20,23262:20,23264:20,23275:20,23277:20,23278:20,23281:20,23283:20,23285:20,23287:20,23289:20,23291:20,23307:20,23309:20,23311:20,23313:20,23315:20,23317:20,23319:20,23451:20,23452:20,23453:20,23454:20,23456:20,23464:20,23466:20,23467:20,23468:20,23469:20,28377:20,28378:20,28379:20,28380:20,29594:20,29599:20,29601:20,29605:20,29606:20,29611:20,29612:20,29617:20,41591:20,41592:20,44429:20,44431:20,16443:30,16452:30,16453:30,16466:30,16473:30,16477:30,16535:30,16541:30,16549:30,16563:30,16565:30,16577:30,17581:30,17592:30,17605:30,17624:30,20071:30,20072:30,21115:30,21116:30,21117:30,21118:30,21119:30,21120:30,22872:30,22874:30,22876:30,22877:30,22879:30,22884:30,22885:30,22886:30,23272:30,23292:30,23294:30,23297:30,23298:30,23300:30,23303:30,23305:30,29465:30,29466:30,29467:30,29468:30,29469:30,29470:30,29471:30,29472:30,29596:30,29602:30,29609:30,29615:30,34129:30,35906:30,20055:40,20056:40,20057:40,20058:40,20059:40,20060:40,20061:40,20069:40,20070:40,20158:40,20175:40,20176:40,20184:40,20194:40,20203:40,20212:40,20214:40,20220:40,35151:40,35152:40,35153:40,35154:40,35155:40,35156:40,35157:40,35158:40,35159:40,35160:40,35161:40,35162:40,35163:40,35164:40,35165:40",
["CurrencyItems.Arcane Rune"]="28903:2,28904:2,28907:2,28908:2,28909:8,28910:8,28911:8,28912:8",
["CurrencyItems.Arctic Fur"]="44546:2,44547:2,44548:2,44549:2,44550:2,44551:2,44552:2,44553:2,44932:2,44933:2",
["CurrencyItems.Arena Points"]="",
["CurrencyItems.Badge of Justice"]="23572:10,29388:15,29389:15,29390:15,30183:15,32227:15,32228:15,32229:15,32230:15,32231:15,32249:15,30763:20,30764:20,30767:20,30768:20,30770:20,30774:20,30779:20,30780:20,33502:20,33503:20,33504:20,33505:20,33506:20,33507:20,33508:20,33509:20,33510:20,29269:25,29270:25,29271:25,29272:25,29273:25,29274:25,29367:25,29368:25,29369:25,29373:25,29374:25,29375:25,29379:25,29381:25,29382:25,29384:25,29385:25,29386:25,32809:25,32810:25,32811:25,32812:25,32813:25,32814:25,32816:25,32817:25,32818:25,32819:25,32820:25,32821:25,32980:25,32989:25,32997:25,33192:25,30761:30,30762:30,30766:30,30769:30,30772:30,30773:30,30776:30,30778:30,29266:33,29267:33,29268:33,33296:35,33325:35,33334:35,33513:35,33516:35,33520:35,33529:35,33532:35,33535:35,33540:35,33557:35,33578:35,33580:35,33588:35,33589:35,33593:35,32785:40,32786:40,32787:40,32788:40,32789:40,32790:40,32791:40,32792:40,32793:40,32794:40,32795:40,32796:40,32797:40,32798:40,32799:40,32800:40,32801:40,32802:40,32803:40,32804:40,32805:40,32806:40,32807:40,32808:40,32979:40,32981:40,32988:40,32990:40,32998:40,32999:40,29370:41,29376:41,29383:41,29387:41,34949:45,34950:45,34951:45,34952:45,29275:50,32083:50,32084:50,32085:50,32086:50,32087:50,32088:50,32089:50,32090:50,33207:60,33222:60,33279:60,33280:60,33287:60,33291:60,33304:60,33324:60,33331:60,33333:60,33386:60,33484:60,33512:60,33514:60,33517:60,33519:60,33523:60,33524:60,33528:60,33531:60,33534:60,33536:60,33537:60,33539:60,33559:60,33577:60,33582:60,33583:60,33586:60,33587:60,33970:60,33973:60,33974:60,34887:60,34888:60,34889:60,34890:60,35321:60,35324:60,33501:75,33515:75,33518:75,33522:75,33527:75,33530:75,33538:75,33552:75,33566:75,33579:75,33584:75,33585:75,33810:75,33832:75,33965:75,33972:75,34049:75,34050:75,34162:75,34163:75,34902:75,34904:75,34911:75,34916:75,34919:75,34923:75,34926:75,34929:75,34932:75,34935:75,34938:75,34941:75,34944:75,34947:75,35326:75,34900:100,34901:100,34903:100,34905:100,34906:100,34910:100,34912:100,34914:100,34917:100,34918:100,34921:100,34922:100,34924:100,34925:100,34927:100,34928:100,34930:100,34931:100,34933:100,34934:100,34936:100,34937:100,34939:100,34940:100,34942:100,34943:100,34945:100,34946:100,34893:105,34894:105,34891:150,34892:150,34895:150,34896:150,34898:150",
["CurrencyItems.Brewfest Prize Token"]="37750:2,39476:5,39477:5,37816:20,33864:50,33967:50,33968:50,33969:50,33047:100,33868:100,33927:100,33966:100,34008:100,46707:100,33862:200,33863:200,37736:200,37737:200",
["CurrencyItems.Burning Blossom"]="23246:2,34684:2,23211:5,23215:5,23326:5,23327:5,23435:5,34599:5,23324:100,34685:100,34683:200,23083:350,34686:350",
["CurrencyItems.Champion's Seal"]="46743:5,46744:5,46745:5,46746:5,46747:5,46748:5,46749:5,46750:5,46751:5,46752:5,45131:10,45152:10,45153:10,45154:10,45155:10,45156:10,45159:10,45160:10,45163:10,45181:10,45182:10,45183:10,45184:10,45206:10,45207:10,45209:10,45211:10,45213:10,45215:10,45216:10,45217:10,45218:10,45219:10,45220:10,45221:10,45223:10,45011:15,45013:15,45014:15,45015:15,45016:15,45017:15,45018:15,45019:15,45020:15,45021:15,46843:15,45074:25,45075:25,45076:25,45077:25,45078:25,45128:25,45129:25,45130:25,45203:25,45204:25,45205:25,45208:25,45210:25,45212:25,45214:25,45222:25,44965:40,44970:40,44971:40,44973:40,44974:40,44980:40,44982:40,44984:40,45002:40,45606:40,46820:40,46821:40,45574:50,45577:50,45578:50,45579:50,45580:50,45581:50,45582:50,45583:50,45584:50,45585:50,46817:50,46818:50,46874:50,42944:60,42945:60,42949:60,42950:60,42951:60,42952:60,42984:60,42985:60,48677:60,48683:60,48685:60,48687:60,48689:60,48691:60,42948:75,42991:75,42992:75,48716:75,42943:95,42946:95,42947:95,48718:95,45125:100,45586:100,45589:100,45590:100,45591:100,45592:100,45593:100,45595:100,45596:100,45597:100,46815:100,46816:100,47179:100,47180:100,45725:150,46813:150,46814:150,47541:150",
["CurrencyItems.Coilfang Armaments"]="32903:1,32904:1",
["CurrencyItems.Coin of Ancestry"]="21537:1,21157:5,21538:5,21539:5,21541:5,21543:5,21544:5,21640:5,21740:5,21741:5,21742:5,21743:5,44916:5,44917:5,44918:5,44919:5",
["CurrencyItems.Dalaran Cooking Award"]="43007:1,43018:3,43019:3,43020:3,43021:3,43022:3,43023:3,43024:3,43025:3,43026:3,43027:3,43028:3,43029:3,43030:3,43031:3,43032:3,43033:3,43034:3,43035:3,43036:3,43037:3,43505:3,43506:3,44954:3,43017:5,46349:100",
["CurrencyItems.Dalaran Jewelcrafter's Token"]="42225:1,42298:2,42299:2,42300:2,42301:2,42302:2,42303:2,42304:2,42305:2,42306:2,42307:2,42308:2,42309:2,42310:2,42311:2,42312:2,42313:2,42314:2,42315:2,41576:3,41577:3,41578:3,41579:3,41580:3,41581:3,41582:3,41686:3,41687:3,41688:3,41689:3,41690:3,41692:3,41693:3,41694:3,41696:3,41697:3,41698:3,41699:3,41701:3,41702:3,41703:3,41719:3,41747:3,42138:3,43317:4,43318:4,43319:4,43320:4,43485:4,43497:4,46897:4,46898:4,46899:4,46900:4,46901:4,46902:4,46903:4,46904:4,46905:4,46906:4,46907:4,46908:4,46909:4,46910:4,46911:4,46912:4,46913:4,46914:4,46915:4,46916:4,46917:4,46918:4,46919:4,46920:4,46921:4,46922:4,46923:4,46924:4,46925:4,46926:4,46927:4,46928:4,46929:4,46930:4,46931:4,46932:4,46933:4,46934:4,46935:4,46936:4,46937:4,46938:4,46939:4,46940:4,46941:4,46942:4,46943:4,46944:4,46945:4,46946:4,46947:4,46948:4,46949:4,46950:4,46951:4,46952:4,46953:4,46956:4,47007:4,47008:4,47010:4,47011:4,47012:4,47015:4,47016:4,47017:4,47018:4,47019:4,47020:4,47021:4,47022:4,47023:4,49112:4,41704:5,41705:5,41706:5,41707:5,41708:5,41709:5,41710:5,41711:5,42648:6,42649:6,42650:6,42651:6,42652:6,42653:6,43597:6",
["CurrencyItems.Dream Shard"]="37340:4,37347:4,37349:4,44471:4,44472:4,44484:4,44485:4,44488:4,44489:4,44490:4,44491:4,44498:4,37339:10,37344:10,44473:10,44483:10,44486:10,44487:10,44492:10,44494:10,44495:10,44496:10,45059:10",
["CurrencyItems.Emblem of Conquest"]="40753:1,45087:18,45114:19,45144:19,45145:19,45169:19,45254:19,45255:19,45270:19,45436:19,45509:19,45510:19,45819:19,45820:19,45821:19,45822:19,45823:19,46138:19,45824:28,45825:28,45826:28,45827:28,45828:28,45829:28,45830:28,45831:28,45833:28,45834:28,45835:28,45836:28,45837:28,45838:28,45839:28,45840:28,45841:39,45842:39,45843:39,45844:39,45845:39,45846:39,45847:39,45848:39,40804:46,40805:46,40806:46,40862:46,40863:46,40864:46,40926:46,40962:46,41000:46,41006:46,41037:46,41043:46,41136:46,41142:46,41210:46,41216:46,41274:46,41280:46,41286:46,41292:46,41682:46,41714:46,41766:46,41772:46,41868:46,41873:46,41933:46,41939:46,41964:46,41970:46,42010:46,42016:46,40784:58,40785:58,40786:58,40823:58,40824:58,40825:58,40844:58,40845:58,40846:58,40905:58,40932:58,40938:58,40990:58,40991:58,41012:58,41018:58,41026:58,41032:58,41080:58,41086:58,41150:58,41156:58,41198:58,41204:58,41297:58,41303:58,41309:58,41315:58,41320:58,41326:58,41649:58,41654:58,41660:58,41666:58,41671:58,41677:58,41853:58,41858:58,41863:58,41914:58,41920:58,41926:58,41945:58,41951:58,41958:58,41992:58,41997:58,42004:58,45632:58,45633:58,45634:58,45638:58,45639:58,45640:58",
["CurrencyItems.Emblem of Frost"]="47241:1,49908:23,50454:30,50455:30,50456:30,50457:30,50458:30,50459:30,50460:30,50461:30,50462:30,50463:30,50464:30,50474:30,50466:50,50467:50,50468:50,50469:50,50470:50,40810:60,40811:60,40812:60,40870:60,40871:60,40872:60,40928:60,40964:60,41002:60,41008:60,41039:60,41045:60,41138:60,41144:60,41212:60,41218:60,41276:60,41282:60,41288:60,41294:60,41684:60,41716:60,41768:60,41774:60,41870:60,41875:60,41935:60,41941:60,41966:60,41972:60,42012:60,42018:60,50079:60,50082:60,50088:60,50095:60,50098:60,50105:60,50107:60,50113:60,50114:60,50117:60,50240:60,50244:60,50275:60,50279:60,50324:60,50327:60,50355:60,50356:60,50357:60,50358:60,50391:60,50396:60,50766:60,50767:60,50819:60,50822:60,50824:60,50827:60,50831:60,50834:60,50836:60,50839:60,50842:60,50845:60,50846:60,50849:60,50853:60,50856:60,50860:60,50863:60,50865:60,50868:60,50976:60,50977:60,50978:60,50979:60,50980:60,50981:60,50982:60,50983:60,50984:60,50987:60,50989:60,50991:60,50992:60,50993:60,50994:60,50995:60,50996:60,50997:60,40790:95,40791:95,40792:95,40829:95,40830:95,40831:95,40850:95,40851:95,40852:95,40910:95,40934:95,40940:95,40994:95,40995:95,41014:95,41020:95,41028:95,41034:95,41082:95,41088:95,41152:95,41158:95,41200:95,41206:95,41299:95,41305:95,41311:95,41317:95,41322:95,41328:95,41651:95,41656:95,41662:95,41668:95,41673:95,41679:95,41855:95,41860:95,41865:95,41916:95,41922:95,41928:95,41947:95,41954:95,41960:95,41994:95,41999:95,42006:95,50078:95,50080:95,50081:95,50087:95,50089:95,50090:95,50094:95,50096:95,50097:95,50106:95,50108:95,50109:95,50115:95,50116:95,50118:95,50241:95,50242:95,50243:95,50276:95,50277:95,50278:95,50325:95,50326:95,50328:95,50392:95,50393:95,50394:95,50765:95,50768:95,50769:95,50820:95,50821:95,50823:95,50825:95,50826:95,50828:95,50830:95,50832:95,50833:95,50835:95,50837:95,50838:95,50841:95,50843:95,50844:95,50847:95,50848:95,50850:95,50854:95,50855:95,50857:95,50861:95,50862:95,50864:95,50866:95,50867:95,50869:95,50965:95,50968:95,50969:95,50970:95,50971:95,50972:95,50973:95,50974:95,50975:95",
["CurrencyItems.Emblem of Heroism"]="36928:10,36931:10,36934:10,43102:10,40705:15,40706:15,40707:15,40708:15,40709:15,40710:15,40711:15,40712:15,40713:15,40714:15,40715:15,40716:15,36919:20,36922:20,36925:20,40678:25,40679:25,40680:25,40681:25,40698:25,40699:25,40797:30,40798:30,40799:30,40856:30,40857:30,40858:30,40918:30,40960:30,40998:30,41004:30,41024:30,41041:30,41134:30,41140:30,41208:30,41214:30,41268:30,41271:30,41278:30,41290:30,41643:30,41646:30,41712:30,41770:30,41847:30,41850:30,41930:30,41937:30,41962:30,41968:30,42008:30,42014:30,40700:35,40701:35,40682:40,40683:40,40684:40,40685:40,40688:40,40689:40,40691:40,40692:40,40693:40,40694:40,40695:40,40696:40,40697:40,42944:40,42945:40,42949:40,42950:40,42951:40,42952:40,42984:40,42985:40,48677:40,48683:40,48685:40,48687:40,48689:40,48691:40,48716:40,40778:45,40779:45,40780:45,40816:45,40817:45,40818:45,40836:45,40837:45,40838:45,40898:45,40930:45,40936:45,40986:45,40987:45,41010:45,41016:45,41023:45,41030:45,41078:45,41084:45,41148:45,41154:45,41160:45,41202:45,41269:45,41270:45,41272:45,41301:45,41313:45,41324:45,41644:45,41645:45,41647:45,41658:45,41664:45,41675:45,41848:45,41849:45,41851:45,41912:45,41918:45,41924:45,41943:45,41949:45,41956:45,41990:45,41996:45,42002:45,40702:50,40703:50,40704:50,42948:50,42991:50,42992:50,40613:60,40614:60,40615:60,42943:65,42946:65,42947:65,48718:65,40610:80,40611:80,40612:80,44230:200,44231:200",
["CurrencyItems.Emblem of Triumph"]="43950:1,44710:1,44711:1,44713:1,45624:1,49702:1,47556:15,47658:25,47659:25,47660:25,47661:25,47662:25,47664:25,47665:25,47666:25,47667:25,47668:25,47670:25,47671:25,47672:25,47673:25,47751:30,47752:30,47773:30,47777:30,47783:30,47787:30,47798:30,47802:30,47981:30,47982:30,48067:30,48071:30,48072:30,48076:30,48097:30,48101:30,48131:30,48132:30,48153:30,48157:30,48161:30,48162:30,48183:30,48187:30,48191:30,48192:30,48213:30,48217:30,48221:30,48222:30,48244:30,48247:30,48253:30,48254:30,48276:30,48279:30,48283:30,48284:30,48296:30,48299:30,48312:30,48315:30,48337:30,48340:30,48342:30,48345:30,48367:30,48370:30,48374:30,48375:30,48387:30,48390:30,48448:30,48449:30,48457:30,48460:30,48478:30,48480:30,48502:30,48505:30,48535:30,48537:30,48559:30,48562:30,48572:30,48574:30,48595:30,48598:30,48603:30,48606:30,48627:30,48630:30,48633:30,48636:30,48653:30,48656:30,47729:35,47730:35,47731:35,47732:35,47733:35,47696:45,47697:45,47698:45,47699:45,47701:45,47702:45,47704:45,47705:45,47706:45,47707:45,47708:45,47709:45,47710:45,47712:45,47713:45,47714:45,47715:45,47716:45,47753:45,47757:45,47768:45,47772:45,47781:45,47782:45,47803:45,47807:45,47983:45,47987:45,48062:45,48066:45,48077:45,48081:45,48092:45,48096:45,48133:45,48137:45,48148:45,48152:45,48163:45,48167:45,48178:45,48182:45,48193:45,48197:45,48208:45,48212:45,48224:45,48227:45,48238:45,48241:45,48256:45,48259:45,48270:45,48273:45,48286:45,48289:45,48301:45,48304:45,48317:45,48320:45,48331:45,48334:45,48347:45,48350:45,48361:45,48364:45,48377:45,48380:45,48392:45,48395:45,48452:45,48454:45,48462:45,48465:45,48482:45,48485:45,48496:45,48499:45,48539:45,48542:45,48553:45,48556:45,48576:45,48579:45,48590:45,48593:45,48608:45,48611:45,48622:45,48625:45,48637:45,48640:45,48658:45,48661:45,40807:50,40808:50,40809:50,40866:50,40868:50,40869:50,40927:50,40963:50,41001:50,41007:50,41038:50,41044:50,41137:50,41143:50,41211:50,41217:50,41275:50,41281:50,41287:50,41293:50,41683:50,41715:50,41767:50,41773:50,41869:50,41874:50,41934:50,41940:50,41965:50,41971:50,42011:50,42017:50,47734:50,47735:50,47748:50,47749:50,47750:50,47774:50,47775:50,47776:50,47784:50,47785:50,47786:50,47799:50,47800:50,47801:50,47914:50,47936:50,47980:50,48068:50,48069:50,48070:50,48073:50,48074:50,48075:50,48098:50,48099:50,48100:50,48102:50,48129:50,48130:50,48154:50,48155:50,48156:50,48158:50,48159:50,48160:50,48184:50,48185:50,48186:50,48188:50,48189:50,48190:50,48214:50,48215:50,48216:50,48218:50,48219:50,48220:50,48243:50,48245:50,48246:50,48250:50,48251:50,48252:50,48275:50,48277:50,48278:50,48280:50,48281:50,48282:50,48295:50,48297:50,48298:50,48310:50,48313:50,48314:50,48336:50,48338:50,48339:50,48341:50,48343:50,48344:50,48366:50,48368:50,48369:50,48371:50,48372:50,48373:50,48386:50,48388:50,48389:50,48429:50,48436:50,48445:50,48456:50,48458:50,48459:50,48472:50,48474:50,48476:50,48501:50,48503:50,48504:50,48529:50,48531:50,48533:50,48558:50,48560:50,48561:50,48564:50,48566:50,48568:50,48596:50,48597:50,48599:50,48602:50,48604:50,48605:50,48628:50,48629:50,48631:50,48632:50,48634:50,48635:50,48652:50,48654:50,48655:50,48722:50,48724:50,40787:75,40788:75,40789:75,40826:75,40827:75,40828:75,40847:75,40848:75,40849:75,40907:75,40933:75,40939:75,40992:75,40993:75,41013:75,41019:75,41027:75,41033:75,41081:75,41087:75,41151:75,41157:75,41199:75,41205:75,41298:75,41304:75,41310:75,41316:75,41321:75,41327:75,41650:75,41655:75,41661:75,41667:75,41672:75,41678:75,41854:75,41859:75,41864:75,41915:75,41921:75,41927:75,41946:75,41953:75,41959:75,41993:75,41998:75,42005:75,47674:75,47675:75,47677:75,47678:75,47681:75,47682:75,47684:75,47685:75,47686:75,47687:75,47688:75,47689:75,47690:75,47691:75,47692:75,47693:75,47694:75,47695:75,47754:75,47755:75,47756:75,47769:75,47770:75,47771:75,47778:75,47779:75,47780:75,47804:75,47805:75,47806:75,47984:75,47985:75,47986:75,48063:75,48064:75,48065:75,48078:75,48079:75,48080:75,48093:75,48094:75,48095:75,48134:75,48135:75,48136:75,48149:75,48150:75,48151:75,48164:75,48165:75,48166:75,48179:75,48180:75,48181:75,48194:75,48195:75,48196:75,48209:75,48210:75,48211:75,48223:75,48225:75,48226:75,48239:75,48240:75,48242:75,48255:75,48257:75,48258:75,48271:75,48272:75,48274:75,48285:75,48287:75,48288:75,48300:75,48302:75,48303:75,48316:75,48318:75,48319:75,48332:75,48333:75,48335:75,48346:75,48348:75,48349:75,48362:75,48363:75,48365:75,48376:75,48378:75,48379:75,48391:75,48393:75,48394:75,48430:75,48446:75,48450:75,48461:75,48463:75,48464:75,48481:75,48483:75,48484:75,48497:75,48498:75,48500:75,48538:75,48540:75,48541:75,48554:75,48555:75,48557:75,48575:75,48577:75,48578:75,48591:75,48592:75,48594:75,48607:75,48609:75,48610:75,48623:75,48624:75,48626:75,48638:75,48639:75,48641:75,48657:75,48659:75,48660:75",
["CurrencyItems.Emblem of Valor"]="40752:1,39728:25,39757:25,40191:25,40207:25,40267:25,40268:25,40321:25,40322:25,40337:25,40342:25,40717:25,40718:25,40719:25,40720:25,40721:25,40722:25,40723:25,40724:25,40801:30,40802:30,40803:30,40859:30,40860:30,40861:30,40925:30,40961:30,40999:30,41005:30,41036:30,41042:30,41135:30,41141:30,41209:30,41215:30,41273:30,41279:30,41284:30,41291:30,41681:30,41713:30,41765:30,41771:30,41867:30,41872:30,41931:30,41938:30,41963:30,41969:30,42009:30,42015:30,40742:40,40743:40,40745:40,40746:40,40747:40,40748:40,40749:40,40750:40,40751:40,40781:45,40782:45,40783:45,40819:45,40820:45,40821:45,40840:45,40841:45,40842:45,40904:45,40931:45,40937:45,40988:45,40989:45,41011:45,41017:45,41025:45,41031:45,41079:45,41085:45,41149:45,41155:45,41162:45,41203:45,41296:45,41302:45,41308:45,41314:45,41319:45,41325:45,41648:45,41653:45,41659:45,41665:45,41670:45,41676:45,41852:45,41857:45,41862:45,41913:45,41919:45,41925:45,41944:45,41950:45,41957:45,41991:45,42001:45,42003:45,40637:60,40638:60,40639:60,40733:60,40734:60,40735:60,40736:60,40737:60,40738:60,40739:60,40740:60,40741:60,40634:75,40635:75,40636:75",
["CurrencyItems.Glowcap"]="25548:1,25550:1,30156:1,24539:2,27689:2,31775:10,25828:15,29149:20,22916:25,25827:25,38229:25,22906:30,34478:30,29150:45",
["CurrencyItems.Halaa Battle Token"]="27637:20,27638:20,27639:20,27643:20,27644:20,27645:20,27646:20,27647:40,27648:40,27649:40,27650:40,27652:40,27653:40,27654:40,28915:70,27679:100,29228:100",
["CurrencyItems.Halaa Research Token"]="27637:1,27638:1,27639:1,27643:1,27644:1,27645:1,27646:1,27647:2,27648:2,27649:2,27650:2,27652:2,27653:2,27654:2,32071:2,33783:4,27680:8,28915:15,29228:20",
["CurrencyItems.Heavy Borean Leather"]="44513:3,44514:3,44515:3,44516:3,44517:3,44518:3,44519:3,44520:3,44521:3,44522:3,44523:3,44524:3,44525:3,44526:3,44527:3,44528:3,44530:3,44531:3,44532:3,44533:3,44534:3,44535:3,44536:3,44537:3,44538:3,44539:3,44540:3,44541:3,44542:3,44543:3,44544:3,44545:3,44584:3,44585:3,44586:3,44587:3,44588:3,44589:3,44128:10",
["CurrencyItems.Holy Dust"]="28878:2,28881:2,28882:2,28885:2,28886:8,28887:8,28888:8,28889:8",
["CurrencyItems.Honor Points"]="",
["CurrencyItems.Isle of Conquest Mark of Honor"]="",
["CurrencyItems.Mark of Honor Hold"]="24520:5,27809:10,27812:10,27820:10,28361:10,27833:15,27834:15,27929:15,27931:15,27942:15,27983:15,27984:15,27990:15,27921:30,27922:30,27927:30",
["CurrencyItems.Mark of the Illidari"]="32898:1,32899:1,32900:1,32901:1,35716:1,35717:1",
["CurrencyItems.Mark of Thrallmar"]="24522:5,27777:10,27785:10,27786:10,28360:10,27830:15,27832:15,27928:15,27930:15,27939:15,27947:15,27949:15,27989:15,27920:30,27924:30,27926:30",
["CurrencyItems.Necrotic Rune"]="22999:8,23122:8,23123:8,40601:8,43068:15,43070:15,43073:15,43074:15,43077:15,43078:15,43081:15,43082:15,43530:20,43531:20,40593:30,40492:40",
["CurrencyItems.Noblegarden Chocolate"]="44818:5,44792:10,6833:25,6835:25,19028:50,44800:50,44803:50,45073:50,44793:100,44794:100",
["CurrencyItems.Spirit Shard"]="32947:2,32948:2,28556:8,28557:8,28559:18,28560:18,28561:18,28574:18,28575:18,28576:18,28577:18,28758:18,28759:18,28760:18,28761:18,28553:50,28555:50",
["CurrencyItems.Stone Keeper's Shard"]="41727:12,41728:12,41730:12,41732:12,41733:12,41734:12,41735:12,41736:12,41737:12,41738:12,41739:12,41740:12,44076:15,44078:15,44081:15,44082:15,44084:15,44087:15,44088:15,44089:15,44066:20,41742:24,41743:24,41744:24,44067:30,44068:30,44115:30,44069:40,44075:40,44091:200,44096:200,44099:200,44100:200,44101:200,44102:200,44103:200,44105:200,44107:200,44094:250,44097:250,44098:250,43956:300,44077:300,44092:325,44093:325,44095:325",
["CurrencyItems.Strand of the Ancients Mark of Honor"]="",
["CurrencyItems.Sunmote"]="34381:1,34382:1,34383:1,34384:1,34385:1,34386:1,34388:1,34389:1,34390:1,34391:1,34392:1,34393:1,34394:1,34395:1,34396:1,34397:1,34398:1,34399:1,34400:1,34401:1,34402:1,34403:1,34404:1,34405:1,34406:1,34407:1,34408:1,34409:1",
["CurrencyItems.Venture Coin"]="38356:30,38357:30,38360:30,38361:30,38362:30,38363:30,38364:30,38365:30,38366:30,38367:30,38368:30,40822:30,40867:30,40875:30,38353:50,38354:50,38355:50,38358:70,38359:70",
["CurrencyItems.Warsong Gulch Mark of Honor"]="31853:2,31855:2,15196:3,15197:3,16486:10,16497:10,16532:10,18429:10,18430:10,18432:10,18434:10,18435:10,18436:10,18437:10,18445:10,18447:10,18448:10,18449:10,18452:10,18453:10,18454:10,18455:10,18456:10,18457:10,19526:10,19527:10,19528:10,19529:10,19530:10,19531:10,19532:10,19533:10,20427:10,20428:10,15198:20,15199:20,15200:20,16335:20,18428:20,18442:20,18443:20,18444:20,19510:20,19511:20,19512:20,19513:20,19514:20,19515:20,19516:20,19517:20,19518:20,19519:20,19520:20,19521:20,19522:20,19523:20,19524:20,19525:20,19534:20,19535:20,19536:20,19537:20,19538:20,19539:20,19540:20,19541:20,19578:20,19580:20,19581:20,19582:20,19583:20,19584:20,19587:20,19589:20,19590:20,19595:20,19596:20,19597:20,20426:20,20429:20,20431:20,20439:20,20442:20,20444:20,35166:20,35167:20,35168:20,35169:20,35170:20,35171:20,35172:20,35173:20,35174:20,35175:20,35176:20,35177:20,35178:20,35179:20,35180:20,16442:30,16450:30,16456:30,16467:30,16475:30,16479:30,16534:30,16543:30,16552:30,16564:30,16567:30,16579:30,17579:30,17593:30,17603:30,17625:30,19542:30,19543:30,19544:30,19545:30,19546:30,19547:30,19548:30,19549:30,19550:30,19551:30,19552:30,19553:30,19554:30,19555:30,19556:30,19557:30,19558:30,19559:30,19560:30,19561:30,19562:30,19563:30,19564:30,19565:30,20430:30,20437:30,20438:30,20440:30,20441:30,20443:30,21565:30,21566:30,21567:30,21568:30,22873:30,22875:30,22878:30,22880:30,22881:30,22882:30,22883:30,22887:30,23273:30,23293:30,23295:30,23296:30,23299:30,23301:30,23302:30,23304:30,29465:30,29466:30,29467:30,29468:30,29469:30,29470:30,29471:30,29472:30,29597:30,29603:30,29608:30,29614:30,34129:30,35906:30,19566:40,19567:40,19568:40,19569:40,19570:40,19571:40,19572:40,19573:40,20425:40,20434:40,22651:40,22672:40,22673:40,22676:40,22740:40,22741:40,22747:40,22748:40,22749:40,22750:40,22752:40,22753:40,30497:40,30498:40,19505:60,19506:60",
["CurrencyItems.Winterfin Clam"]="38350:1,38351:2,37449:5,37464:5,36783:30,37462:30,37463:30,37461:50,36784:100",
["CurrencyItems.Wintergrasp Mark of Honor"]="44891:15,44892:15,44893:15,44894:15,44895:15,44896:15,44897:15,44898:15,44899:15,44900:15,46071:15,46072:15,46073:15,46074:15,46075:15,46076:15,46077:15,46078:15,46079:15,46080:15,48974:15,48975:15,48976:15,48977:15,48978:15,48979:15,48980:15,48981:15,48982:15,48999:15,49000:15,44912:25,44914:25,46081:25,46082:25,46083:25,46084:25,46085:25,46086:25,46087:25,46088:25,51568:25,51569:25,51570:25,51571:25,44901:40,44902:40,44903:40,44904:40,44905:40,44906:40,44907:40,44908:40,44909:40,44910:40,46057:40,46058:40,46059:40,46060:40,46061:40,46062:40,46063:40,46064:40,46065:40,46066:40,48983:40,48987:40,48988:40,48990:40,48991:40,48992:40,48993:40,48994:40,48997:40,48998:40,51572:40,51573:40,51574:40,51575:40,51576:40,51577:40,51578:40,51579:40,51580:40,51581:40",
})
@@ -0,0 +1,16 @@
## Interface: 30200
## LoadOnDemand: 1
## Title: Lib: PeriodicTable-3.1 [|cffeda55fCurrencyItems|r]
## Notes: PeriodicTable data module.
## Author: Nymbia
## Version: 3.1
## Dependencies: LibPeriodicTable-3.1
## X-Category: Library
## X-License: LGPL v2.1
## X-PeriodicTable-3.1-Module: CurrencyItems
## X-Curse-Packaged-Version: r293
## X-Curse-Project-Name: LibPeriodicTable-3.1
## X-Curse-Project-ID: libperiodictable-3-1
## X-Curse-Repository-ID: wow/libperiodictable-3-1/mainline
LibPeriodicTable-3.1-CurrencyItems.lua
@@ -0,0 +1,698 @@
-- (c) 2007 Nymbia. see LGPLv2.1.txt for full details.
--DO NOT MAKE CHANGES TO THIS FILE BEFORE READING THE WIKI PAGE REGARDING CHANGING THESE FILES
if not LibStub("LibPeriodicTable-3.1", true) then error("PT3 must be loaded before data") end
LibStub("LibPeriodicTable-3.1"):AddData("InstanceLoot", gsub("$Rev: 285 $", "(%d+)", function(n) return n+90000 end), {
["InstanceLoot.Ahn'Qiraj.Battleguard Sartura"]="21648:136,21666:73,21667:113,21668:115,21669:123,21670:121,21671:120,21672:125,21673:70,21674:148,21675:144,21676:144,21678:145",
["InstanceLoot.Ahn'Qiraj.C'Thun"]="20929:807,20933:836,21126:60,21134:56,21221:853,21579:136,21581:165,21582:160,21583:139,21585:119,21586:160,21596:180,21839:58,22730:143,22731:141,22732:158",
["InstanceLoot.Ahn'Qiraj.Emperor Vek'lor"]="20735:408,20930:721,21597:90,21598:120,21599:126,21600:128,21601:129,21602:137",
["InstanceLoot.Ahn'Qiraj.Emperor Vek'nilash"]="20726:388,20926:732,21604:100,21605:113,21606:112,21607:106,21608:121,21609:123,21679:65",
["InstanceLoot.Ahn'Qiraj.Fankriss the Unyielding"]="21627:120,21635:71,21639:123,21645:117,21647:121,21650:72,21651:132,21652:141,21663:142,21664:150,21665:137,22396:109,22402:113",
["InstanceLoot.Ahn'Qiraj.Lord Kri"]="21603:226,21680:233,21681:176,21685:205,21692:130,21693:147,21694:152,21695:141,21696:125,21697:142",
["InstanceLoot.Ahn'Qiraj.Ouro"]="20927:902,20931:900,21610:158,21611:150,21615:148,23557:148,23558:156,23570:154",
["InstanceLoot.Ahn'Qiraj.Princess Huhuran"]="20928:793,20932:797,21616:80,21617:145,21618:152,21619:145,21620:142,21621:130",
["InstanceLoot.Ahn'Qiraj.Princess Yauj"]="21682:152,21683:164,21684:169,21686:137,21687:179,21692:148,21693:152,21694:144,21695:114,21696:129,21697:140",
["InstanceLoot.Ahn'Qiraj.The Prophet Skeram"]="21128:70,21698:132,21699:145,21700:141,21701:139,21702:135,21703:79,21704:111,21705:104,21706:119,21707:120,21708:116,21814:111,22222:104",
["InstanceLoot.Ahn'Qiraj.The Twin Emperors"]="m,InstanceLoot.Ahn'Qiraj.Emperor Vek'lor,InstanceLoot.Ahn'Qiraj.Emperor Vek'nilash",
["InstanceLoot.Ahn'Qiraj.Vem"]="21688:193,21689:194,21690:197,21691:216,21692:132,21693:141,21694:133,21695:133,21696:127,21697:134",
["InstanceLoot.Ahn'Qiraj.Viscidus"]="20928:915,20932:913,21622:120,21623:141,21624:134,21625:133,21626:120,21648:2,21677:135,22399:137",
["InstanceLoot.Ahn'Qiraj.Trash Mobs"]="21836,21837,21838,21856,21888",
["InstanceLoot.Auchindoun"]="m,InstanceLoot.Auchenai Crypts,InstanceLoot.Mana-Tombs,InstanceLoot.Shadow Labyrinth,InstanceLoot.Sethekk Halls",
["InstanceLoot.Auchenai Crypts.Exarch Maladaar"]="27411:123,27412:151,27413:129,27414:125,27415:146,27416:141",
["InstanceLoot.Auchenai Crypts.Shirrak the Dead Watcher"]="25964:149,26055:165,27408:161,27409:147,27410:157",
["InstanceLoot.Mana-Tombs.Nexus-Prince Shaffar"]="22921:18,25953:143,25954:132,25955:127,25956:124,25957:129,25962:143",
["InstanceLoot.Mana-Tombs.Pandemonius"]="25939:134,25940:149,25941:122,25942:142,25943:150,28166:131",
["InstanceLoot.Mana-Tombs.Tavarok"]="25944:134,25945:118,25946:142,25947:131,25950:122,25952:150",
["InstanceLoot.Shadow Labyrinth.Ambassador Hellmaw"]="27884:145,27885:155,27886:144,27887:125,27888:129,27889:162",
["InstanceLoot.Shadow Labyrinth.Blackheart the Inciter"]="25728:13,27468:135,27890:131,27891:116,27892:145,27893:146,28134:121",
["InstanceLoot.Shadow Labyrinth.Grandmaster Vorpil"]="27775:173,27897:146,27898:163,27900:177,27901:157",
["InstanceLoot.Shadow Labyrinth.Murmur"]="24309:5,27778:119,27803:107,27902:143,27903:119,27905:110,27908:106,27909:139,27910:137,27912:126,27913:114,28230:132,28232:123",
["InstanceLoot.Sethekk Halls.Darkweaver Syth"]="24160:15,27914:136,27915:121,27916:125,27917:149,27918:132,27919:141",
["InstanceLoot.Sethekk Halls.Talon King Ikiss"]="27776:136,27838:123,27875:125,27925:148,27936:146,27946:122,27948:97,27980:124,27981:126,27985:114,27986:102",
["InstanceLoot.Sethekk Halls.Anzu"]="",
["InstanceLoot.Blackfathom Deeps.Aku'mai"]="6909:190,6910:376,6911:364",
["InstanceLoot.Blackfathom Deeps.Baron Aquanis"]="16782:955",
["InstanceLoot.Blackfathom Deeps.Gelihast"]="6905:456,6906:424",
["InstanceLoot.Blackfathom Deeps.Ghamoo-ra"]="6907:378,6908:565",
["InstanceLoot.Blackfathom Deeps.Lady Sarevess"]="888:372,3078:179,11121:370",
["InstanceLoot.Blackfathom Deeps.Old Serra'kis"]="6901:422,6902:329,6904:176",
["InstanceLoot.Blackfathom Deeps.Twilight Lord Kelris"]="1155:522,6903:341",
["InstanceLoot.Blackrock Depths.Ambassador Flamelash"]="11808:10,11809:196,11812:275,11814:312,11832:169",
["InstanceLoot.Blackrock Depths.Anger'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Anub'shiah"]="11675:288,11677:268,11678:189,11731:172",
["InstanceLoot.Blackrock Depths.Bael'Gar"]="11802:258,11803:300,11805:194,11807:180",
["InstanceLoot.Blackrock Depths.Chest of The Seven"]="11920:239,11921:239,11922:239,11923:236,11925:246,11926:241,11927:230,11929:237",
["InstanceLoot.Blackrock Depths.Doom'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Dope'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Emperor Dagran Thaurissan"]="11684:9,11815:162,11924:180,11928:173,11930:181,11931:197,11932:202,11933:183,11934:183,22204:167,22207:162",
["InstanceLoot.Blackrock Depths.Eviscerator"]="11679:272,11685:306,11686:191,11730:186",
["InstanceLoot.Blackrock Depths.Fineous Darkvire"]="11839:214,11841:229,11842:226,22223:215",
["InstanceLoot.Blackrock Depths.General Angerforge"]="11810:177,11816:180,11817:172,11820:183,11821:182",
["InstanceLoot.Blackrock Depths.Gloom'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Golem Lord Argelmach"]="11669:270,11819:82,11822:298,11823:257,21956:79",
["InstanceLoot.Blackrock Depths.Gorosh the Dervish"]="11726:170,22257:299,22266:193,22271:278",
["InstanceLoot.Blackrock Depths.Grizzle"]="11610:906,11702:265,11703:305,11722:187,22270:173",
["InstanceLoot.Blackrock Depths.Hate'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Hedrum the Creeper"]="11633:252,11634:306,11635:193,11729:172",
["InstanceLoot.Blackrock Depths.High Interrogator Gerstahn"]="11624:227,11625:234,11626:208,22240:196",
["InstanceLoot.Blackrock Depths.High Priestess of Thaurissan"]="12553:321,12554:252,12556:149,12557:218",
["InstanceLoot.Blackrock Depths.Houndmaster Grebmar"]="11623:320,11627:332,11628:141,11629:136",
["InstanceLoot.Blackrock Depths.Hurley Blackbreath"]="11735:88,18043:269,18044:284,22275:269",
["InstanceLoot.Blackrock Depths.Lord Incendius"]="11764:222,11765:219,11766:235,11767:242",
["InstanceLoot.Blackrock Depths.Lord Roccor"]="11630:166,11631:230,11632:209,11813:89,22234:227,22397:212,45050:85",
["InstanceLoot.Blackrock Depths.Magmus"]="11746:201,11935:174,22208:206,22395:173,22400:190",
["InstanceLoot.Blackrock Depths.Ok'thor the Breaker"]="11662:271,11665:305,11728:168,11824:204",
["InstanceLoot.Blackrock Depths.Panzor the Invincible"]="11785:215,11786:247,11787:253,22245:216",
["InstanceLoot.Blackrock Depths.Phalanx"]="11744:306,11745:329,22212:281",
["InstanceLoot.Blackrock Depths.Plugger Spazzring"]="12791:82,12793:293,18653:160",
["InstanceLoot.Blackrock Depths.Princess Moira Bronzebeard"]="12553:148,12554:161,12556:109,12557:131",
["InstanceLoot.Blackrock Depths.Pyromancer Loregrain"]="11207:164,11747:221,11748:301,11749:224,11750:197",
["InstanceLoot.Blackrock Depths.Ribbly Screwspigot"]="2662:177,2663:169,11612:234,11742:280",
["InstanceLoot.Blackrock Depths.Seeth'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Verek"]="11755:113,22242:124",
["InstanceLoot.Blackrock Depths.Vile'rel"]="m,InstanceLoot.Blackrock Depths.Chest of The Seven",
["InstanceLoot.Blackrock Depths.Warder Stilgiss"]="11782:204,11783:240,11784:243,22241:213",
["InstanceLoot.Blackrock Spire"]="m,InstanceLoot.Lower Blackrock Spire,InstanceLoot.Upper Blackrock Spire",
["InstanceLoot.Lower Blackrock Spire.Bannok Grimaxe"]="12621:286,12634:348,12637:293,12838:71",
["InstanceLoot.Lower Blackrock Spire.Burning Felguard"]="13181:124,13182:138",
["InstanceLoot.Lower Blackrock Spire.Crystal Fang"]="13184:365,13185:365,13218:164",
["InstanceLoot.Lower Blackrock Spire.Ghok Bashguud"]="13198:191,13203:411,13204:347",
["InstanceLoot.Lower Blackrock Spire.Gizrul the Slavener"]="13205:247,13206:248,13208:252,16718:164",
["InstanceLoot.Lower Blackrock Spire.Halycon"]="13210:151,13211:270,13212:243,22313:242",
["InstanceLoot.Lower Blackrock Spire.Highlord Omokk"]="12336:665,13166:121,13167:128,13168:145,13169:138,13170:131,16670:153",
["InstanceLoot.Lower Blackrock Spire.Mor Grayhoof"]="22306:183,22319:165,22322:223,22325:241,22398:183",
["InstanceLoot.Lower Blackrock Spire.Mother Smolderweb"]="13183:148,13213:279,13244:295,16715:161",
["InstanceLoot.Lower Blackrock Spire.Overlord Wyrmthalak"]="12337:752,13143:15,13161:162,13162:173,13163:183,16679:165,22321:174",
["InstanceLoot.Lower Blackrock Spire.Quartermaster Zigris"]="12835:94,13252:149,13253:149,21955:105",
["InstanceLoot.Lower Blackrock Spire.Shadow Hunter Vosh'gajin"]="12626:199,12651:83,12653:84,12654:285,13255:208,13257:200,16712:165",
["InstanceLoot.Lower Blackrock Spire.Spirestone Battle Lord"]="13284:528,13285:424",
["InstanceLoot.Lower Blackrock Spire.Spirestone Butcher"]="12608:570,13286:391",
["InstanceLoot.Lower Blackrock Spire.Spirestone Lord Magus"]="13261:230,13282:273,13283:456",
["InstanceLoot.Lower Blackrock Spire.Urok Doomhowl"]="13178:252,13258:224,13259:207,18784:163,22232:234",
["InstanceLoot.Lower Blackrock Spire.War Master Voone"]="12335:732,12582:125,13173:67,13177:195,13179:200,16676:162,22231:225,28972:866",
["InstanceLoot.Upper Blackrock Spire.General Drakkisath"]="12592:18,12602:193,13098:231,13141:275,13142:227,13519:35,15730:46,16666:99,16674:97,16688:103,16690:94,16700:100,16706:88,16721:98,16726:92,16730:98,22253:277,22267:255,22268:83,22269:213",
["InstanceLoot.Upper Blackrock Spire.Goraluk Anvilcrack"]="12834:67,12837:57,13498:184,13502:221,18047:205,18048:193,18779:209",
["InstanceLoot.Upper Blackrock Spire.Gyth"]="12871:37,12952:175,12953:188,12960:192,13522:41,16669:185,22225:187",
["InstanceLoot.Upper Blackrock Spire.Jed Runewatcher"]="12604:312,12605:356,12930:279",
["InstanceLoot.Upper Blackrock Spire.Lord Valthalak"]="22302:207,22335:265,22336:214,22337:258,22339:217,22340:234,22342:221,22343:253",
["InstanceLoot.Upper Blackrock Spire.Pyroguard Emberseer"]="12905:183,12926:195,12927:201,12929:193,16672:161,23320:117",
["InstanceLoot.Upper Blackrock Spire.Solakar Flamewreath"]="12589:197,12603:167,12606:166,12609:191,16695:179,18657:68",
["InstanceLoot.Upper Blackrock Spire.The Beast"]="12709:137,12963:174,12964:219,12965:207,12966:196,12967:242,12968:200,12969:160,16729:183,19227:56,22311:176,24101:157",
["InstanceLoot.Upper Blackrock Spire.Warchief Rend Blackhand"]="12583:82,12587:177,12590:21,12935:207,12936:213,12939:101,12940:100,16733:188,18102:192,18103:203,18104:190,22247:172",
["InstanceLoot.Blackwing Lair.Broodlord Lashlayer"]="16898:177,16906:190,16912:207,16919:189,16927:181,16941:185,16949:172,16957:181,16965:189,19341:166,19342:176,19350:97,19351:86,19373:175,19374:175",
["InstanceLoot.Blackwing Lair.Chromaggus"]="12607:3,16832:193,16902:198,16917:202,16924:195,16932:183,16937:202,16945:184,16953:196,16961:206,19347:74,19349:88,19352:103,19361:83,19385:179,19386:171,19387:193,19388:192,19389:194,19390:179,19391:159,19392:161,19393:134",
["InstanceLoot.Blackwing Lair.Ebonroc"]="16899:66,16907:75,16913:81,16920:75,16928:64,16940:74,16948:72,16956:71,16964:79,19345:193,19353:29,19355:29,19368:88,19394:54,19395:66,19396:59,19397:66,19403:167,19405:177,19406:172,19407:180",
["InstanceLoot.Blackwing Lair.Firemaw"]="16899:68,16907:75,16913:77,16920:70,16928:71,16940:73,16948:72,16956:71,16964:68,19343:118,19344:118,19353:28,19355:36,19365:133,19394:64,19395:67,19396:65,19397:56,19398:128,19399:115,19400:126,19401:114,19402:121",
["InstanceLoot.Blackwing Lair.Flamegor"]="16899:79,16907:66,16913:73,16920:82,16928:68,16940:62,16948:63,16956:72,16964:77,19353:29,19355:36,19357:96,19367:97,19394:68,19395:59,19396:59,19397:63,19430:211,19431:197,19432:201,19433:183",
["InstanceLoot.Blackwing Lair.Nefarian"]="16897:168,16900:41,16905:172,16908:34,16914:36,16916:193,16921:32,16923:160,16929:38,16931:156,16939:37,16942:166,16947:31,16950:167,16955:40,16958:167,16963:37,16966:183,19002:413,19003:473,19356:82,19360:75,19363:75,19364:85,19375:178,19376:179,19377:158,19378:172,19379:169,19380:182,19381:180,19382:155",
["InstanceLoot.Blackwing Lair.Razorgore the Untamed"]="16904:189,16911:195,16918:202,16926:197,16934:202,16935:204,16943:197,16951:197,16959:198,19334:90,19335:88,19336:173,19337:191,19369:201,19370:200",
["InstanceLoot.Blackwing Lair.Vaelastrasz the Corrupt"]="16818:211,16903:190,16910:203,16925:194,16933:193,16936:201,16944:167,16952:206,16960:203,19339:191,19340:189,19346:116,19348:88,19371:184,19372:184",
["InstanceLoot.Blackwing Lair.Trash Mobs"]="19358,19362,19434,19435,19436,19437,19354,19438,19439",
["InstanceLoot.Black Temple.Gurtogg Bloodboil"]="32269:157,32333:157,32334:160,32335:155,32337:160,32338:148,32339:141,32340:150,32341:144,32342:82,32343:140,32344:151,32501:150",
["InstanceLoot.Black Temple.High Warlord Naj'entus"]="32232:157,32234:162,32236:155,32237:157,32238:163,32239:153,32240:156,32241:99,32242:60,32243:101,32245:67,32247:157,32248:161,32377:150",
["InstanceLoot.Black Temple.Illidan Stormrage"]="31089:778,31090:776,31091:776,32235:153,32336:158,32374:141,32375:143,32471:164,32483:163,32496:155,32497:147,32500:153,32521:137,32524:161,32525:148,32837:42,32838:44",
["InstanceLoot.Black Temple.Mother Shahraz"]="31101:759,31102:771,31103:796,32365:147,32366:150,32367:163,32368:146,32369:152,32370:150",
["InstanceLoot.Black Temple.Shade of Akama"]="32263:145,32264:158,32265:163,32266:160,32268:161,32270:151,32271:142,32273:153,32275:83,32276:52,32278:154,32279:81,32361:145,32513:167",
["InstanceLoot.Black Temple.Supremus"]="32250:162,32251:155,32252:140,32253:160,32254:145,32255:154,32256:156,32257:156,32258:93,32259:65,32260:167,32261:141,32262:160",
["InstanceLoot.Black Temple.Teron Gorefiend"]="32280:156,32323:169,32324:165,32325:144,32326:108,32327:144,32328:168,32329:169,32330:131,32348:186,32510:152,32512:186",
["InstanceLoot.Black Temple.High Nethermancer Zerevor"]="32331:167,32373:173,32376:166,32505:164,32518:116,32519:163",
["InstanceLoot.Black Temple.Gathios the Shatterer"]="31098:335,31099:346,31100:320",
["InstanceLoot.Black Temple.Lady Malande"]="31098:306,31099:331,31100:317",
["InstanceLoot.Black Temple.Veras Darkshadow"]="31098:331,31099:347,31100:326",
["InstanceLoot.Black Temple.Illidari Council"]="m,InstanceLoot.Black Temple.High Nethermancer Zerevor,InstanceLoot.Black Temple.Gathios the Shatterer,InstanceLoot.Black Temple.Lady Malande,InstanceLoot.Black Temple.Veras Darkshadow",
["InstanceLoot.Black Temple.Essence of Anger"]="32332:165,32345:162,32346:157,32347:161,32349:153,32350:157,32351:80,32352:88,32353:163,32354:157,32362:153,32363:140,32517:175",
["InstanceLoot.Black Temple.Reliquary of Souls"]="m,InstanceLoot.Black Temple.Essence of Anger",
["InstanceLoot.Black Temple.Trash Mobs"]="32589,32590,32591,32592,32593,32606,32608,32609,32943,34011,34012",
["InstanceLoot.Caverns of Time"]="m,InstanceLoot.Old Hillsbrad Foothills,InstanceLoot.The Black Morass",
["InstanceLoot.Old Hillsbrad Foothills.Captain Skarloc"]="22927:24,27424:196,27426:170,27427:173,27428:205,27430:200",
["InstanceLoot.Old Hillsbrad Foothills.Epoch Hunter"]="24173:9,27431:179,27432:184,27433:211,27434:203,27440:193",
["InstanceLoot.Old Hillsbrad Foothills.Lieutenant Drake"]="27417:200,27418:180,27420:201,27423:207,27436:171",
["InstanceLoot.The Black Morass.Aeonus"]="27509:156,27839:146,27873:138,27977:143,28188:132,28189:136,28190:143,28192:165,28193:144,28194:150,28206:168,28207:136",
["InstanceLoot.The Black Morass.Chrono Lord Deja"]="27987:152,27988:149,27993:167,27994:149,27995:167,27996:164,29675:10",
["InstanceLoot.The Black Morass.Temporus"]="28033:158,28034:161,28184:157,28185:166,28186:156,28187:153",
["InstanceLoot.Coilfang Reservoir"]="m,InstanceLoot.The Slave Pens,InstanceLoot.The Steamvault,InstanceLoot.The Underbog,InstanceLoot.Serpentshrine Cavern",
["InstanceLoot.The Slave Pens.Mennu the Betrayer"]="24356:192,24357:189,24359:184,24360:186,24361:187,29674:19",
["InstanceLoot.The Slave Pens.Quagmirran"]="24362:195,24363:191,24364:204,24365:200,24366:195",
["InstanceLoot.The Slave Pens.Rokmar the Crackler"]="24376:182,24378:164,24379:175,24380:179,24381:180",
["InstanceLoot.The Slave Pens.Ahune"]="35494:190,35495:170,35496:200,35497:160,35514:9,35498:40,34955:12",
["InstanceLoot.The Steamvault.Hydromancer Thespia"]="27508:198,27783:189,27784:171,27787:186,27789:164,29673:11",
["InstanceLoot.The Steamvault.Mekgineer Steamrigger"]="23887:10,27790:198,27791:185,27792:177,27793:183,27794:203",
["InstanceLoot.The Steamvault.Warlord Kalithresh"]="24313:5,27475:132,27510:132,27737:146,27738:140,27795:135,27799:147,27801:121,27804:133,27805:161,27806:147,27874:119,28203:126",
["InstanceLoot.The Underbog.Ghaz'an"]="24458:199,24459:182,24460:176,24461:190,24462:167",
["InstanceLoot.The Underbog.Hungarfen"]="24413:197,24450:177,24451:194,24452:190,27631:193",
["InstanceLoot.The Underbog.Swamplord Musel'ek"]="24453:193,24454:193,24455:188,24456:176,24457:185",
["InstanceLoot.The Underbog.The Black Stalker"]="24463:171,24464:174,24465:157,24466:177,24481:164",
["InstanceLoot.Serpentshrine Cavern.Fathom-Lord Karathress"]="30090:148,30099:147,30100:150,30101:148,30245:625,30246:622,30247:621,30626:135,30663:149",
["InstanceLoot.Serpentshrine Cavern.Hydross the Unstable"]="30047:200,30048:209,30049:187,30050:173,30051:110,30052:204,30053:167,30054:178,30055:163,30056:185,30629:215,30664:181,32516:180,33055:145",
["InstanceLoot.Serpentshrine Cavern.Lady Vashj"]="30102:147,30103:145,30104:129,30105:126,30106:122,30107:141,30108:139,30109:129,30110:159,30111:137,30112:142,30242:626,30243:632,30244:641,30621:131,32895:49",
["InstanceLoot.Serpentshrine Cavern.Leotheras the Blind"]="30091:163,30092:131,30095:145,30096:139,30097:153,30239:636,30240:671,30241:651,30627:146",
["InstanceLoot.Serpentshrine Cavern.Morogrim Tidewalker"]="30008:178,30068:169,30075:191,30079:147,30080:152,30081:208,30082:203,30083:209,30084:210,30085:203,30098:213,30720:197,33058:197",
["InstanceLoot.Serpentshrine Cavern.The Lurker Below"]="30057:193,30058:197,30059:205,30060:213,30061:199,30062:213,30063:171,30064:173,30065:197,30066:209,30067:170,30665:182,33054:143",
["InstanceLoot.Serpentshrine Cavern.Trash Mobs"]="30022,30023,30027,30620",
["InstanceLoot.Dire Maul Arena.Mushgog"]="",
["InstanceLoot.Dire Maul Arena.Skarr the Unbreakable"]="",
["InstanceLoot.Dire Maul Arena.The Razza"]="",
-- East
["InstanceLoot.Dire Maul.Alzzin the Wildshaper"]="18309:171,18310:200,18312:196,18314:193,18315:172,18318:177,18321:192,18326:195,18327:192,18328:175",
["InstanceLoot.Dire Maul.Hydrospawn"]="18305:244,18307:217,18317:198,18322:180,18324:89",
["InstanceLoot.Dire Maul.Isalien"]="22304:310,22314:296,22315:203,22345:160,22401:145,22472:281",
["InstanceLoot.Dire Maul.Lethtendris"]="18301:265,18302:308,18311:87,18325:286",
["InstanceLoot.Dire Maul.Pimgib"]="18354:159",
["InstanceLoot.Dire Maul.Pusillin"]="18267:878",
["InstanceLoot.Dire Maul.Zevrim Thornhoof"]="18306:225,18308:260,18313:206,18319:86,18323:194",
-- North
["InstanceLoot.Dire Maul.Captain Kromcrush"]="18502:255,18503:256,18505:237,18507:229",
["InstanceLoot.Dire Maul.Cho'Rush the Observer"]="18483:243,18484:258,18485:247,18490:238",
["InstanceLoot.Dire Maul.Guard Fengus"]="18450:120,18451:128,18458:133,18459:111,18460:113,18462:133,18463:125,18464:118",
["InstanceLoot.Dire Maul.Guard Mol'dar"]="18450:83,18451:85,18458:90,18459:73,18460:75,18462:89,18463:85,18464:78,18493:58,18494:64,18496:63,18497:60,18498:68",
["InstanceLoot.Dire Maul.Guard Slip'kik"]="18450:80,18451:88,18458:88,18459:76,18460:78,18462:87,18463:90,18464:80,18493:59,18494:64,18496:68,18497:58,18498:68",
["InstanceLoot.Dire Maul.King Gordok"]="18401:1,18520:254,18521:237,18522:230,18523:256,18524:259,18525:231,18526:256,18527:234,18780:82,19258:66",
["InstanceLoot.Dire Maul.Stomper Kreeg"]="18425:352",
-- West
["InstanceLoot.Dire Maul.Illyanna Ravenoak"]="18347:230,18349:248,18383:254,18386:230,18401:1",
["InstanceLoot.Dire Maul.Immol'thar"]="18370:94,18372:94,18377:258,18379:233,18381:225,18384:199,18385:195,18389:189,18391:250,18394:194,18401:2,24345:165",
["InstanceLoot.Dire Maul.Lord Hel'nurath"]="18754:227,18755:236,18756:229,18757:218",
["InstanceLoot.Dire Maul.Magister Kalendris"]="18350:242,18351:237,18371:91,18374:212,18397:184,18401:1,22309:161",
["InstanceLoot.Dire Maul.Prince Tortheldrin"]="18373:77,18375:202,18376:208,18378:267,18380:226,18382:248,18388:85,18392:198,18395:213,18396:187",
["InstanceLoot.Dire Maul.Tendris Warpwood"]="18352:231,18353:232,18390:217,18393:216,18401:1",
["InstanceLoot.Dire Maul.Tsu'zee"]="18345:319,18346:337,18387:310",
["InstanceLoot.Gnomeregan.Crowd Pummeler 9-60"]="9449:330,9450:645,11827:14",
["InstanceLoot.Gnomeregan.Dark Iron Ambassador"]="9455:373,9456:406,9457:164",
["InstanceLoot.Gnomeregan.Electrocutioner 6000"]="9446:176,9447:365,9448:340",
["InstanceLoot.Gnomeregan.Grubbis"]="9445:92",
["InstanceLoot.Gnomeregan.Mekgineer Thermaplugg"]="4411:6,4413:5,6672:4,9458:326,9459:195,9461:328,9492:89,11828:103",
["InstanceLoot.Gnomeregan.Techbot"]="",
["InstanceLoot.Gnomeregan.Viscous Fallout"]="9452:194,9453:194,9454:570",
["InstanceLoot.Gruul's Lair.High King Maulgar"]="28795:140,28796:146,28797:144,28799:138,28800:163,28801:163,29762:601,29763:587,29764:647",
["InstanceLoot.Gruul's Lair.Gruul the Dragonkiller"]="28794:73,28802:126,28803:144,28804:131,28810:129,28822:132,28823:134,28824:128,28825:106,28826:119,28827:121,28828:125,28830:136,29765:529,29766:517,29767:580",
["InstanceLoot.Hellfire Citadel"]="m,InstanceLoot.Hellfire Ramparts,InstanceLoot.Magtheridon's Lair,InstanceLoot.The Blood Furnace,InstanceLoot.The Shattered Halls",
["InstanceLoot.Hellfire Ramparts.Nazan"]="",
["InstanceLoot.Hellfire Ramparts.Omor the Unscarred"]="24069:147,24073:152,24090:149,24091:144,24094:151,24096:147",
["InstanceLoot.Hellfire Ramparts.Vazruden"]="",
["InstanceLoot.Hellfire Ramparts.Watchkeeper Gargolmar"]="24020:161,24021:178,24022:182,24023:163,24024:172",
["InstanceLoot.Magtheridon's Lair.Magtheridon"]="28774:141,28775:135,28776:136,28777:147,28778:146,28779:142,28780:139,28781:142,28782:146,28783:142,28789:141,29458:143,29753:705,29754:698,29755:680,32385:465,32386:441,34845:925,34846:777",
["InstanceLoot.The Blood Furnace.Broggok"]="24389:202,24390:178,24391:188,24392:169,24393:190",
["InstanceLoot.The Blood Furnace.Keli'dan the Breaker"]="24394:177,24395:186,24396:191,24397:200,24398:178",
["InstanceLoot.The Blood Furnace.The Maker"]="24384:169,24385:190,24386:196,24387:173,24388:201",
["InstanceLoot.The Shattered Halls.Grand Warlock Nethekurse"]="24312:7,27517:175,27518:187,27519:192,27520:194,27521:169",
["InstanceLoot.The Shattered Halls.Warbringer O'mrogg"]="27524:194,27525:203,27526:186,27802:176,27868:180",
["InstanceLoot.The Shattered Halls.Warchief Kargath Bladefist"]="27474:133,27527:140,27528:148,27529:126,27531:125,27533:122,27534:148,27535:120,27536:144,27537:138,27538:110,27540:143",
["InstanceLoot.The Shattered Halls.Blood Guard Porung"]="",
["InstanceLoot.Hyjal Summit.Anetheron"]="30874:155,30878:165,30879:155,30880:156,30881:155,30882:147,30883:160,30884:164,30885:167,30886:151,30887:154,30888:155,32285:21,32289:26,32295:26,32296:21,32297:25,32298:22,32303:21,32307:23",
["InstanceLoot.Hyjal Summit.Archimonde"]="30902:151,30903:148,30904:144,30905:141,30906:157,30907:143,30908:149,30909:154,30910:139,30911:151,30912:150,30913:154,31095:712,31096:739,31097:700,32285:36,32289:37,32295:37,32296:33,32297:37,32298:37,32303:30,32307:31",
["InstanceLoot.Hyjal Summit.Azgalor"]="30896:146,30897:154,30898:160,30899:149,30900:148,30901:155,31092:743,31093:742,31094:732,32285:24,32289:21,32295:23,32296:21,32297:21,32298:27,32303:20,32307:20",
["InstanceLoot.Hyjal Summit.Kaz'rogal"]="30889:160,30891:144,30892:156,30893:150,30894:170,30895:158,30914:87,30915:169,30916:167,30917:173,30918:168,30919:151,32285:21,32289:21,32295:23,32296:24,32297:19,32298:22,32303:25,32307:20",
["InstanceLoot.Hyjal Summit.Rage Winterchill"]="30861:151,30862:154,30863:154,30864:146,30865:147,30866:149,30868:166,30869:126,30870:162,30871:169,30872:157,30873:134,32285:22,32289:22,32295:23,32296:22,32297:23,32298:20,32303:23,32307:18",
["InstanceLoot.Hyjal Summit.Trash Mobs"]="32589,32590,32591,32592,32609,32945,32946,34009,34010",
["InstanceLoot.Karazhan.Attumen the Huntsman"]="23809:34,28453:160,28454:160,28477:149,28502:127,28503:137,28504:144,28505:162,28506:152,28507:135,28508:163,28509:152,28510:139,30480:7",
["InstanceLoot.Karazhan.Chess Event"]="m,InstanceLoot.Karazhan.Dust Covered Chest",
["InstanceLoot.Karazhan.Dust Covered Chest"]="28745:112,28746:109,28747:110,28748:113,28749:108,28750:111,28751:112,28752:112,28753:107,28754:108,28755:110,28756:117",
["InstanceLoot.Karazhan.Hyakiss the Lurker"]="30675:253,30676:238,30677:210,30678:250",
["InstanceLoot.Karazhan.Julianne"]="28572:123,28573:271,28578:273,28579:286",
["InstanceLoot.Karazhan.Maiden of Virtue"]="28511:162,28512:150,28514:161,28515:145,28516:149,28517:147,28518:151,28519:156,28520:165,28521:144,28522:141,28523:159",
["InstanceLoot.Karazhan.Moroes"]="22559:69,28524:164,28525:152,28528:131,28529:163,28530:140,28545:149,28565:164,28566:132,28567:153,28568:150,28569:159,28570:140",
["InstanceLoot.Karazhan.Netherspite"]="28729:77,28730:176,28731:169,28732:164,28733:169,28734:156,28735:151,28740:149,28741:166,28742:167,28743:137,28744:141",
["InstanceLoot.Karazhan.Nightbane"]="28597:129,28599:150,28600:145,28601:146,28602:154,28603:141,28604:159,28606:140,28608:134,28609:140,28610:153,28611:150",
["InstanceLoot.Karazhan.Prince Malchezaar"]="28757:146,28762:151,28763:157,28764:151,28765:164,28766:136,28767:143,28768:164,28770:163,28771:154,28772:155,28773:136,29759:280,29760:342,29761:290",
["InstanceLoot.Karazhan.Romulo"]="28589:165,28590:172,28591:151,28592:151,28593:153,28594:153",
["InstanceLoot.Karazhan.Shade of Aran"]="22560:59,28663:143,28666:146,28669:132,28670:133,28671:143,28672:151,28673:137,28674:141,28675:128,28726:136,28727:162,28728:159",
["InstanceLoot.Karazhan.Terestian Illhoof"]="22561:93,28652:149,28653:166,28654:161,28655:167,28656:152,28657:151,28658:146,28659:159,28660:167,28661:162,28662:165,28785:145",
["InstanceLoot.Karazhan.The Big Bad Wolf"]="28581:236,28582:228,28583:220,28584:218,28589:166,28590:165,28591:154,28592:143,28593:138,28594:133",
["InstanceLoot.Karazhan.The Crone"]="28585:247,28586:219,28587:208,28588:232,28589:165,28590:161,28591:157,28592:147,28593:138,28594:140",
["InstanceLoot.Karazhan.The Curator"]="28612:163,28621:148,28631:159,28633:139,28647:137,28649:154,29756:294,29757:323,29758:296",
["InstanceLoot.Karazhan.Trash Mobs"]="30641,30642,30643,30644,30666,30667,30668,30673,30674",
["InstanceLoot.Magisters' Terrace.Selin Fireheart"]="34697:163,34698:161,34699:171,34700:163,34701:159,34702:179",
["InstanceLoot.Magisters' Terrace.Vexallus"]="34703:161,34704:172,34705:168,34706:166,34707:160,34708:168",
["InstanceLoot.Magisters' Terrace.Priestess Delrissa"]="34783:168,34788:170,34789:160,34790:161,34791:167,34792:170,35756:55",
["InstanceLoot.Magisters' Terrace.Kael'thas Sunstrider"]="29987:139,29988:141,29989:126,29990:144,29991:126,29992:144,29993:127,29994:147,29995:147,29996:142,29997:144,29998:128,30236:702,30237:683,30238:670,32405:899,32458:17,32896:13",
["InstanceLoot.Maraudon.Celebras the Cursed"]="17738:300,17739:336,17740:321",
["InstanceLoot.Maraudon.Gelk"]="",
["InstanceLoot.Maraudon.Kolk"]="",
["InstanceLoot.Maraudon.Landslide"]="17734:257,17736:253,17737:217,17943:225",
["InstanceLoot.Maraudon.Lord Vyletongue"]="17752:294,17754:310,17755:278",
["InstanceLoot.Maraudon.Magra"]="",
["InstanceLoot.Maraudon.Maraudos"]="",
["InstanceLoot.Maraudon.Meshlok the Harvester"]="17741:314,17742:326,17767:302",
["InstanceLoot.Maraudon.Noxxion"]="17744:346,17745:188,17746:342",
["InstanceLoot.Maraudon.Princess Theradras"]="17707:194,17710:180,17711:189,17713:210,17714:214,17715:173,17766:187,17780:18",
["InstanceLoot.Maraudon.Razorlash"]="17748:214,17749:243,17750:236,17751:218",
["InstanceLoot.Maraudon.Rotgrip"]="17728:344,17730:247,17732:327",
["InstanceLoot.Maraudon.Tinkerer Gizlock"]="17717:321,17718:326,17719:309",
["InstanceLoot.Maraudon.Veng"]="",
["InstanceLoot.Molten Core.Baron Geddon"]="16797:271,16807:268,16836:265,16844:3,16856:263,17010:739,17110:258,18563:37,18820:25,18821:21,18822:26,18823:23,18824:22,18829:23,19136:23,19142:22,19143:27,19144:22",
["InstanceLoot.Molten Core.Cache of the Firelord"]="18646:449,18703:448,18803:167,18805:169,18806:170,18808:158,18809:174,18810:157,18811:171,18812:176,19139:175,19140:168",
["InstanceLoot.Molten Core.Garr"]="16795:171,16808:171,16813:166,16821:184,16834:141,16842:143,16846:148,16854:142,16866:148,17066:141,17071:170,17105:170,18564:27,18820:49,18821:42,18822:50,18823:47,18824:45,18829:48,18832:179,19136:49,19142:46,19143:55,19144:42",
["InstanceLoot.Molten Core.Gehennas"]="16812:221,16826:226,16839:204,16849:215,16860:202,16862:211,17077:46,18870:39,18872:42,18875:40,18878:47,18879:45,19145:48,19146:39,19147:44",
["InstanceLoot.Molten Core.Golemagg the Incinerator"]="16798:211,16809:230,16815:216,16820:223,16833:175,16841:161,16845:183,16853:176,16865:172,17072:208,17103:232,17203:296,18820:21,18821:17,18822:21,18823:19,18824:20,18829:18,18842:237,19136:19,19142:21,19143:18,19144:21",
["InstanceLoot.Molten Core.Lucifron"]="16665:124,16800:164,16805:261,16829:171,16837:161,16859:148,16863:269,17077:28,17109:161,18870:25,18872:24,18875:29,18878:31,18879:26,19145:28,19146:29,19147:26",
["InstanceLoot.Molten Core.Magmadar"]="16796:196,16810:193,16814:187,16822:195,16835:166,16843:150,16847:166,16855:161,16867:163,17065:154,17069:191,17073:198,18203:199,18820:52,18821:55,18822:55,18823:55,18824:58,18829:46,19136:48,19142:53,19143:47,19144:48",
["InstanceLoot.Molten Core.Majordomo Executus"]="m,InstanceLoot.Molten Core.Cache of the Firelord",
["InstanceLoot.Molten Core.Ragnaros"]="16901:140,16909:153,16915:189,16922:191,16930:173,16938:173,16946:154,16954:150,16962:192,17063:124,17076:37,17082:32,17102:140,17104:49,17106:164,17107:181,17204:20,18814:138,18815:148,18816:163,18817:197,19137:188,19138:162",
["InstanceLoot.Molten Core.Shazzrah"]="16801:285,16803:223,16811:217,16824:208,16831:298,16852:286,17077:25,18870:21,18872:24,18875:22,18878:22,18879:24,19145:19,19146:20,19147:19",
["InstanceLoot.Molten Core.Sulfuron Harbinger"]="16816:309,16823:289,16848:295,16868:308,17074:293,17077:27,18870:26,18872:29,18875:29,18878:28,18879:30,19145:32,19146:34,19147:30",
["InstanceLoot.Molten Core.Trash Mobs"]="16799,16802,16804,16806,16817,16819,16825,16827,16828,16830,16838,16840,16850,16851,16857,16858,16861,16864",
["InstanceLoot.Onyxia's Lair.Onyxia"]="16908:1,16914:2,49294:919,49295:921,49296:75,49297:68,49298:63,49299:68,49301:0,49302:64,49303:75,49304:67,49305:66,49306:68,49307:65,49308:69,49309:74,49310:45,49315:179,49316:92,49317:95,49318:186,49319:184,49320:83,49321:85,49322:182,49323:58,49324:62,49325:58,49326:56,49327:58,49328:62,49329:69,49330:57,49331:60,49332:81,49333:86,49437:68,49463:46,49643:482,49644:469",
["InstanceLoot.Ragefire Chasm.Bazzalan"]="",
["InstanceLoot.Ragefire Chasm.Jergosh the Invoker"]="14147:368,14150:392,14151:179",
["InstanceLoot.Ragefire Chasm.Taragaman the Hungerer"]="14145:171,14148:379,14149:352",
["InstanceLoot.Razorfen Downs.Amnennar the Coldbringer"]="10761:178,10762:361,10763:352,10764:279,10765:276",
["InstanceLoot.Razorfen Downs.Glutton"]="10772:475,10774:467",
["InstanceLoot.Razorfen Downs.Mordresh Fire Eye"]="10769:319,10770:331,10771:306",
["InstanceLoot.Razorfen Downs.Plaguemaw the Rotting"]="10760:633,10766:317",
["InstanceLoot.Razorfen Downs.Ragglesnout"]="10758:197,10767:394,10768:364",
["InstanceLoot.Razorfen Downs.Tuten'kash"]="10775:293,10776:318,10777:304",
["InstanceLoot.Razorfen Kraul.Agathelos the Raging"]="6690:599,6691:320",
["InstanceLoot.Razorfen Kraul.Blind Hunter"]="6695:288,6696:316,6697:313",
["InstanceLoot.Razorfen Kraul.Charlga Razorflank"]="6692:176,6693:362,6694:358",
["InstanceLoot.Razorfen Kraul.Death Speaker Jargba"]="2816:93,6682:422,6685:426",
["InstanceLoot.Razorfen Kraul.Earthcaller Halmgar"]="6688:471,6689:469",
["InstanceLoot.Razorfen Kraul.Overlord Ramtusk"]="6686:611,6687:326",
["InstanceLoot.Ruins of Ahn'Qiraj.Ayamiss the Hunter"]="20885:98,20886:95,20889:97,20890:90,21466:77,21478:89,21479:96,21480:143,21481:155,21482:11,21483:147,21484:183",
["InstanceLoot.Ruins of Ahn'Qiraj.Buru the Gorger"]="20885:89,20886:104,20889:101,20890:80,21485:84,21486:74,21487:82,21488:157,21489:164,21490:175,21491:147",
["InstanceLoot.Ruins of Ahn'Qiraj.General Rajaxx"]="20885:353,20889:384,21492:86,21493:89,21494:180,21495:175,21496:177,21497:188",
["InstanceLoot.Ruins of Ahn'Qiraj.Kurinnaxx"]="20885:366,20889:344,21498:79,21499:80,21500:177,21501:159,21502:181,21503:176",
["InstanceLoot.Ruins of Ahn'Qiraj.Moam"]="20886:390,20890:351,21455:167,21467:75,21468:174,21469:188,21470:192,21471:67,21472:71,21473:167,21474:154,21475:157,21476:129,21477:162,21479:94,22220:129",
["InstanceLoot.Ruins of Ahn'Qiraj.Ossirian the Unscarred"]="20886:359,20890:356,21220:877,21452:102,21453:123,21454:135,21456:138,21457:144,21458:145,21459:71,21460:139,21461:152,21462:171,21463:167,21464:158,21715:69",
["InstanceLoot.Scarlet Monastery"]="m,InstanceLoot.Armory,InstanceLoot.Cathedral,InstanceLoot.Graveyard,InstanceLoot.Library",
["InstanceLoot.Armory.Herod"]="7717:136,7718:335,7719:334,10330:140",
["InstanceLoot.Cathedral.High Inquisitor Fairbanks"]="19507:320,19508:317,19509:344",
["InstanceLoot.Cathedral.High Inquisitor Whitemane"]="7720:367,7721:198,7722:373",
["InstanceLoot.Cathedral.Scarlet Commander Mograine"]="7723:182,7724:192,7726:435,10330:141",
["InstanceLoot.Graveyard.Azshir the Sleepless"]="7708:324,7709:318,7731:308",
["InstanceLoot.Graveyard.Bloodmage Thalnos"]="7684:478,7685:476",
["InstanceLoot.Graveyard.Fallen Champion"]="7689:192,7690:382,7691:371",
["InstanceLoot.Graveyard.Interrogator Vishas"]="7682:50,7683:666",
["InstanceLoot.Graveyard.Ironspine"]="7686:363,7687:202,7688:382",
["InstanceLoot.Graveyard.Headless Horseman"]="33808:30,34073:300,34074:300,34075:300,33182:80,33184:240,33176:150,33183:300,33189:300,33292:90,33154:20,",
["InstanceLoot.Library.Arcanist Doan"]="7711:466,7712:458,7713:442,7714:450,34227:25",
["InstanceLoot.Library.Houndmaster Loksey"]="3456:235,7710:144,7756:568",
["InstanceLoot.Scholomance.Blood Steward of Kirtonos"]="",
["InstanceLoot.Scholomance.Darkmaster Gandling"]="13398:132,13501:94,13937:21,13938:137,13944:125,13951:126,13953:137,13964:139,14514:85,16667:94,16677:97,16686:101,16693:112,16698:108,16707:104,16720:103,16727:106,16731:105,19276:39,22433:122",
["InstanceLoot.Scholomance.Death Knight Darkreaver"]="18758:240,18759:234,18760:221,18761:221",
["InstanceLoot.Scholomance.Doctor Theolen Krastinov"]="14612:19,14624:33,14629:25,16684:164",
["InstanceLoot.Scholomance.Instructor Malicia"]="14612:6,14624:8,14629:6,16710:50",
["InstanceLoot.Scholomance.Jandice Barov"]="14541:103,14545:113,14548:122,16701:202,18689:116,18690:125,22394:106",
["InstanceLoot.Scholomance.Kirtonos the Herald"]="13955:195,13956:182,13957:187,13960:186,13967:186,13969:203,13983:141,14024:190,16734:175",
["InstanceLoot.Scholomance.Kormok"]="22303:139,22326:204,22331:156,22332:186,22333:291",
["InstanceLoot.Scholomance.Lady Illucia Barov"]="14612:7,14624:10,14629:8",
["InstanceLoot.Scholomance.Lord Alexei Barov"]="14612:26,14624:33,14629:27,16722:48",
["InstanceLoot.Scholomance.Lorekeeper Polkelt"]="16705:179",
["InstanceLoot.Scholomance.Marduk Blackpool"]="14576:79,18692:82",
["InstanceLoot.Scholomance.Ras Frostwhisper"]="13314:17,13521:39,13952:135,14340:146,14487:159,14502:141,14503:153,14522:157,14525:148,16689:167,18693:154,18694:165,18695:139,18696:173",
["InstanceLoot.Scholomance.Rattlegore"]="14528:110,14531:118,14537:132,14538:135,14539:127,16711:181,18686:114,18782:75",
["InstanceLoot.Scholomance.The Ravenian"]="14612:6,14624:9,14629:8",
["InstanceLoot.Scholomance.Vectus"]="14577:70,18691:73",
["InstanceLoot.Shadowfang Keep.Archmage Arugal"]="6220:172,6324:351,6392:347",
["InstanceLoot.Shadowfang Keep.Baron Silverlaine"]="6321:189,6323:396",
["InstanceLoot.Shadowfang Keep.Commander Springvale"]="3191:434,6320:371",
["InstanceLoot.Shadowfang Keep.Deathsworn Captain"]="6641:623,6642:322",
["InstanceLoot.Shadowfang Keep.Fenrus the Devourer"]="3230:171,6340:715",
["InstanceLoot.Shadowfang Keep.Odo the Blindwatcher"]="6318:337,6319:625",
["InstanceLoot.Shadowfang Keep.Razorclaw the Butcher"]="1292:90,6226:432,6633:440",
["InstanceLoot.Shadowfang Keep.Wolf Master Nandos"]="3748:566,6314:381",
["InstanceLoot.Stratholme.Archivist Galford"]="13385:119,13386:210,13387:234,16692:186,18716:193,22897:174",
["InstanceLoot.Stratholme.Balnazzar"]="12103:162,13348:179,13353:20,13358:151,13359:164,13360:159,13369:186,13520:32,14512:64,16725:157,18717:161,18718:150,18720:143",
["InstanceLoot.Stratholme.Baron Rivendare"]="13335:9,13340:147,13344:175,13345:160,13346:166,13349:154,13361:85,13368:73,16668:94,16678:97,16687:101,16694:114,16699:111,16709:115,16719:102,16728:107,16732:108,22408:175,22409:197,22410:213,22411:200,22412:178",
["InstanceLoot.Stratholme.Baroness Anastari"]="13514:86,13534:177,13535:115,13537:127,13538:127,13539:112,16704:198,18728:183,18729:211,18730:199",
["InstanceLoot.Stratholme.Black Guard Swordsmith"]="18783:225",
["InstanceLoot.Stratholme.Cannon Master Willey"]="12839:75,13377:935,13380:169,13381:180,13382:189,16708:182,18721:168,22403:223,22404:100,22405:233,22406:121,22407:209",
["InstanceLoot.Stratholme.Crimson Hammersmith"]="18781:423",
["InstanceLoot.Stratholme.Fras Siabi"]="",
["InstanceLoot.Stratholme.Hearthsinger Forresten"]="13378:182,13379:197,13383:212,13384:193,16682:178",
["InstanceLoot.Stratholme.Magistrate Barthilas"]="12382:945,13376:140,18722:168,18725:167,18726:155,18727:153,23198:147",
["InstanceLoot.Stratholme.Maleki the Pallid"]="12833:86,13509:90,13524:185,13525:115,13526:132,13527:126,13528:115,16691:195,18734:183,18735:208,18737:197",
["InstanceLoot.Stratholme.Nerub'enkan"]="13508:87,13529:181,13530:112,13531:125,13532:126,13533:114,16675:192,18738:203,18739:181,18740:193",
["InstanceLoot.Stratholme.Postmaster Malown"]="13388:169,13389:182,13390:48,13391:196,13392:196,13393:174",
["InstanceLoot.Stratholme.Ramstein the Gorger"]="12735:974,13372:117,13373:124,13374:131,13375:133,13515:130,16737:183,18723:120",
["InstanceLoot.Stratholme.Skul"]="13394:306,13395:317,13396:298",
["InstanceLoot.Stratholme.Stonespine"]="13397:310,13399:319,13954:339",
["InstanceLoot.Stratholme.The Unforgiven"]="13404:173,13405:201,13408:209,13409:203,16717:176",
["InstanceLoot.Stratholme.Timmy the Cruel"]="13400:176,13401:194,13402:204,13403:197,16724:169",
["InstanceLoot.Sunwell Plateau.Sathrovarr the Corruptor"]="34164:0,34165:0,34166:0,34167:0,34168:0,34169:0,34170:0,34848:0,34851:0,34852:0",
["InstanceLoot.Sunwell Plateau.Kalecgos"]="m,InstanceLoot.Sunwell Plateau.Sathrovarr the Corruptor",
["InstanceLoot.Sunwell Plateau.Brutallus"]="34176:171,34177:144,34178:148,34179:134,34180:127,34181:156,34853:746,34854:711,34855:748",
["InstanceLoot.Sunwell Plateau.Felmyst"]="34182:172,34184:154,34185:162,34186:144,34188:137,34352:148,34856:780,34857:851,34858:770",
["InstanceLoot.Sunwell Plateau.Lady Sacrolash"]="34189:176,34190:163,34192:197,34193:166,34194:159,34195:182,34196:172,34197:218,34198:205,34199:149,34202:165,34203:209,34204:178,34205:190,34206:190,34208:190,34209:182,34210:172,34848:94,34851:97,34852:97,34853:92,34854:119,34855:84,34856:122,34857:90,34858:117,35290:303,35291:299,35292:339",
["InstanceLoot.Sunwell Plateau.Grand Warlock Alythess"]="34189:168,34190:160,34192:188,34193:169,34194:207,34195:170,34196:187,34197:154,34198:176,34199:171,34202:233,34203:175,34204:199,34205:182,34206:213,34208:182,34209:199,34210:196,34848:95,34851:105,34852:117,34853:76,34854:98,34855:99,34856:82,34857:97,34858:108,35290:325,35291:316,35292:303",
["InstanceLoot.Sunwell Plateau.The Eredar Twins"]="m,InstanceLoot.Sunwell Plateau.Lady Sacrolash,InstanceLoot.Sunwell Plateau.Grand Warlock Alythess",
["InstanceLoot.Sunwell Plateau.Entropius"]="34211:160,34212:142,34213:146,34214:156,34215:155,34216:159,34228:153,34229:148,34230:177,34231:142,34232:141,34233:160,34234:173,34240:151,34427:135,34428:154,34429:156,34430:159,35282:316,35283:315,35284:334",
["InstanceLoot.Sunwell Plateau.M'uru"]="m,InstanceLoot.Sunwell Plateau.Entropius",
["InstanceLoot.Sunwell Plateau.Kil'jaeden"]="34241:162,34242:148,34243:196,34244:160,34245:157,34247:158,34329:153,34331:180,34332:139,34333:146,34334:65,34335:196,34336:169,34337:155,34339:182,34340:195,34341:180,34342:195,34343:181,34344:208,34345:160",
["InstanceLoot.Sunwell Plateau.Trash Mobs"]="34183,34346,34347,34348,34349,34350,34351,35733",
["InstanceLoot.The Temple of Atal'Hakkar.Atal'alarion"]="10798:360,10799:190,10800:361",
["InstanceLoot.The Temple of Atal'Hakkar.Avatar of Hakkar"]="10838:168,10842:333,10843:346,10844:169,10845:332,10846:330,12462:1",
["InstanceLoot.The Temple of Atal'Hakkar.Dreamscythe"]="10795:63,10796:58,10797:68,12243:67,12463:68,12464:63,12465:76,12466:63",
["InstanceLoot.The Temple of Atal'Hakkar.Gasher"]="10788:61,10786:57,10787:48,10785:39,10783:29,10784:20",
["InstanceLoot.The Temple of Atal'Hakkar.Hazzas"]="10795:63,10796:67,10797:74,12243:65,12463:69,12464:68,12465:66,12466:61",
["InstanceLoot.The Temple of Atal'Hakkar.Hukku"]="10788:56,10786:53,10787:46,10785:36,10783:33,10784:16",
["InstanceLoot.The Temple of Atal'Hakkar.Jade"]="",
["InstanceLoot.The Temple of Atal'Hakkar.Jammal'an the Prophet"]="10806:273,10807:282,10808:275",
["InstanceLoot.The Temple of Atal'Hakkar.Kazkaz the Unholy"]="",
["InstanceLoot.The Temple of Atal'Hakkar.Loro"]="10788:62,10786:57,10787:47,10785:40,10783:30,10784:23",
["InstanceLoot.The Temple of Atal'Hakkar.Mijan"]="10788:63,10786:57,10787:46,10785:41,10783:29,10784:18",
["InstanceLoot.The Temple of Atal'Hakkar.Morphaz"]="10795:54,10796:54,10797:61,12243:62,12463:61,12464:62,12465:59,12466:62",
["InstanceLoot.The Temple of Atal'Hakkar.Ogom the Wretched"]="10803:310,10804:318,10805:291",
["InstanceLoot.The Temple of Atal'Hakkar.Shade of Eranikus"]="10454:639,10828:154,10829:334,10833:322,10835:274,10836:282,10837:143,10847:15",
["InstanceLoot.The Temple of Atal'Hakkar.Veyzhak the Cannibal"]="",
["InstanceLoot.The Temple of Atal'Hakkar.Weaver"]="10795:66,10796:63,10797:66,12243:64,12463:74,12464:75,12465:71,12466:66",
["InstanceLoot.The Temple of Atal'Hakkar.Zekkis"]="",
["InstanceLoot.The Temple of Atal'Hakkar.Zolo"]="10788:58,10786:55,10787:48,10785:37,10783:27,10784:18",
["InstanceLoot.The Temple of Atal'Hakkar.Zul'Lor"]="10788:59,10786:54,10787:53,10785:40,10783:32,10784:22",
["InstanceLoot.Tempest Keep"]="m,InstanceLoot.The Arcatraz,InstanceLoot.The Mechanar,InstanceLoot.The Botanica,InstanceLoot.The Eye",
["InstanceLoot.The Arcatraz.Dalliah the Doomsayer"]="24308:20,28386:179,28387:177,28390:174,28391:194,28392:226",
["InstanceLoot.The Arcatraz.Harbinger Skyriss"]="28205:132,28231:157,28403:149,28406:150,28407:146,28412:136,28413:157,28414:140,28415:129,28416:163,28418:127,28419:152",
["InstanceLoot.The Arcatraz.Wrath-Scryer Soccothrates"]="28393:191,28394:192,28396:201,28397:174,28398:201",
["InstanceLoot.The Arcatraz.Zereketh the Unbound"]="28372:185,28373:195,28374:182,28375:170,28384:213",
["InstanceLoot.The Botanica.Commander Sarannis"]="28296:257,28301:224,28304:241,28306:240,28311:226",
["InstanceLoot.The Botanica.High Botanist Freywinn"]="23617:16,28315:184,28316:162,28317:201,28318:186,28321:184",
["InstanceLoot.The Botanica.Laj"]="27739:204,28328:211,28338:180,28339:209,28340:179",
["InstanceLoot.The Botanica.Thorngrin the Tender"]="24310:17,28322:199,28323:189,28324:166,28325:201,28327:202",
["InstanceLoot.The Botanica.Warp Splinter"]="24311:5,28228:110,28229:104,28341:109,28342:113,28343:129,28345:118,28347:125,28348:122,28349:149,28350:115,28367:128,28370:144,28371:154",
["InstanceLoot.The Eye.Al'ar"]="29918:222,29920:217,29921:203,29922:210,29923:228,29924:217,29925:231,29947:232,29948:103,29949:216,30447:224,30448:221,32944:117",
["InstanceLoot.The Eye.High Astromancer Solarian"]="29950:194,29951:231,29962:224,29965:208,29966:231,29972:190,29976:179,29977:185,29981:208,29982:181,30446:215,30449:223,32267:164",
["InstanceLoot.The Eye.Kael'thas Sunstrider"]="29987:139,29988:141,29989:126,29990:144,29991:126,29992:144,29993:127,29994:147,29995:147,29996:142,29997:144,29998:128,30236:702,30237:683,30238:670,32405:899,32458:17,32896:13",
["InstanceLoot.The Eye.Void Reaver"]="29983:118,29984:124,29985:137,29986:129,30248:620,30249:623,30250:611,30450:122,30619:130,32515:127",
["InstanceLoot.The Eye.Trash Mobs"]="30020,30024,30026,30028,30029,30030",
["InstanceLoot.The Mechanar.Mechano-Lord Capacitus"]="28253:199,28254:214,28255:189,28256:168,28257:184,35582:37",
["InstanceLoot.The Mechanar.Nethermancer Sepethrea"]="22920:16,28258:177,28259:203,28260:190,28262:180,28263:177",
["InstanceLoot.The Mechanar.Pathaleon the Calculator"]="21907:40,27899:117,28202:156,28204:168,28265:125,28266:157,28267:140,28269:145,28275:160,28278:167,28285:136,28286:165,28288:142",
["InstanceLoot.The Deadmines.Brainwashed Noble"]="3902:284,5967:689",
["InstanceLoot.The Deadmines.Captain Greenskin"]="5200:279,5201:374,10403:264",
["InstanceLoot.The Deadmines.Cookie"]="5197:538,5198:351",
["InstanceLoot.The Deadmines.Edwin VanCleef"]="5191:166,5193:252,5202:263,10399:165",
["InstanceLoot.The Deadmines.Foreman Thistlenettle"]="2166:11,2167:9,2168:8",
["InstanceLoot.The Deadmines.Gilnid"]="1156:371,5199:557",
["InstanceLoot.The Deadmines.Marisa du'Paige"]="3019:249,4660:723",
["InstanceLoot.The Deadmines.Miner Johnson"]="5443:389,5444:566",
["InstanceLoot.The Deadmines.Mr. Smite"]="5192:372,5196:376,7230:186",
["InstanceLoot.The Deadmines.Rhahk'Zor"]="872:29,5187:856",
["InstanceLoot.The Deadmines.Sneed's Shredder"]="1937:92,2169:800",
["InstanceLoot.The Deadmines.Sneed"]="5194:281,5195:666",
["InstanceLoot.The Stockade.Bazil Thredd"]="",
["InstanceLoot.The Stockade.Bruegal Ironknuckle"]="2941:192,2942:185,3228:585",
["InstanceLoot.The Stockade.Dextren Ward"]="",
["InstanceLoot.The Stockade.Hamhock"]="",
["InstanceLoot.The Stockade.Kam Deepfury"]="2280:8",
["InstanceLoot.The Stockade.Targorr the Dread"]="",
["InstanceLoot.Uldaman.Ancient Stone Keeper"]="9410:455,9411:458",
["InstanceLoot.Uldaman.Archaedas"]="9413:128,9418:135,11118:636",
["InstanceLoot.Uldaman.Baelog"]="9399:907,9400:756,9401:97",
["InstanceLoot.Uldaman.Digmaster Shovelphlange"]="9375:94,9378:123,9382:747",
["InstanceLoot.Uldaman.Galgann Firehammer"]="9412:186,9419:184,11310:202,11311:377",
["InstanceLoot.Uldaman.Grimlok"]="9414:317,9415:430,9416:172",
["InstanceLoot.Uldaman.Ironaya"]="9407:354,9408:191,9409:368",
["InstanceLoot.Uldaman.Obsidian Sentinel"]="",
["InstanceLoot.Uldaman.Revelosh"]="7741:670,9387:220,9388:215,9389:217,9390:226",
["InstanceLoot.Wailing Caverns.Boahn"]="5422:633,5423:336",
["InstanceLoot.Wailing Caverns.Deviate Faerie Dragon"]="5243:438,6632:478",
["InstanceLoot.Wailing Caverns.Kresh"]="6447:816,13245:95",
["InstanceLoot.Wailing Caverns.Lady Anacondra"]="5404:721,6446:87,10412:93",
["InstanceLoot.Wailing Caverns.Lord Cobrahn"]="6460:179,6465:568,10410:179",
["InstanceLoot.Wailing Caverns.Lord Pythas"]="6472:317,6473:593",
["InstanceLoot.Wailing Caverns.Lord Serpentis"]="5970:230,6459:273,6469:184,10411:218",
["InstanceLoot.Wailing Caverns.Mad Magglish"]="",
["InstanceLoot.Wailing Caverns.Mutanus the Devourer"]="6461:286,6463:288,6627:244",
["InstanceLoot.Wailing Caverns.Skum"]="6448:458,6449:465",
["InstanceLoot.Wailing Caverns.Trigore the Lasher"]="5425:550,5426:383",
["InstanceLoot.Wailing Caverns.Verdan the Everliving"]="6629:190,6630:391,6631:370",
["InstanceLoot.World Bosses.Avalanchion"]="18673:172,18674:736",
["InstanceLoot.World Bosses.Azuregos"]="17070:156,18202:167,18208:157,18541:165,18542:139,18545:174,18547:124,19130:159,19131:144,19132:192",
["InstanceLoot.World Bosses.Baron Charr"]="18671:210,18672:719",
["InstanceLoot.World Bosses.Baron Kazum"]="20515:856,20686:318,20687:321,20688:281",
["InstanceLoot.World Bosses.Doom Lord Kazzak"]="30732:185,30733:183,30734:171,30735:157,30736:174,30737:191,30738:199,30739:157,30740:185,30741:168",
["InstanceLoot.World Bosses.Doomwalker"]="30722:167,30723:170,30724:166,30725:170,30726:191,30727:182,30728:170,30729:191,30730:173,30731:154",
["InstanceLoot.World Bosses.Emeriss"]="20579:131,20580:97,20581:131,20582:121,20599:91,20615:76,20616:106,20617:100,20618:112,20619:82,20621:115,20622:128,20623:118,20624:97,20644:817",
["InstanceLoot.World Bosses.High Marshal Whirlaxis"]="20515:879,20689:295,20690:367,20691:280",
["InstanceLoot.World Bosses.Lethon"]="20579:52,20580:91,20581:124,20582:121,20615:98,20616:111,20617:95,20618:32,20619:81,20625:78,20626:85,20627:150,20628:121,20629:114,20630:111,20644:770",
["InstanceLoot.World Bosses.Lord Skwol"]="20515:800,20683:331,20684:280,20685:282",
["InstanceLoot.World Bosses.Prince Skaldrenox"]="20515:844,20680:333,20681:274,20682:311",
["InstanceLoot.World Bosses.Princess Tempestria"]="7722:1,18678:195,18679:716,21548:911",
["InstanceLoot.World Bosses.Taerar"]="20577:102,20579:90,20580:108,20581:183,20582:105,20615:141,20616:105,20617:99,20618:105,20619:69,20631:78,20632:105,20633:78,20634:129,20644:825",
["InstanceLoot.World Bosses.The Windreaver"]="18676:217,18677:720,21548:936",
["InstanceLoot.World Bosses.Ysondre"]="20578:83,20579:85,20580:103,20581:83,20582:61,20615:109,20616:81,20617:128,20618:132,20619:89,20635:81,20636:116,20637:71,20638:107,20639:107,20644:757",
["InstanceLoot.Hellfire Peninsula.Doom Lord Kazzak"]="m,InstanceLoot.World Bosses.Doom Lord Kazzak",
["InstanceLoot.Shadowmoon Valley.Doomwalker"]="m,InstanceLoot.World Bosses.Doomwalker",
["InstanceLoot.Zul'Farrak.Antu'sul"]="9379:84,9639:181,9640:320,9641:318",
["InstanceLoot.Zul'Farrak.Chief Ukorz Sandscalp"]="9476:307,9477:201,9478:192,9479:138,11086:88",
["InstanceLoot.Zul'Farrak.Dustwraith"]="12471:169",
["InstanceLoot.Zul'Farrak.Gahz'rilla"]="9467:455,9469:442",
["InstanceLoot.Zul'Farrak.Hydromancer Velratha"]="",
["InstanceLoot.Zul'Farrak.Murta Grimgut"]="9482:0,9511:0,9512:0",
["InstanceLoot.Zul'Farrak.Nekrum Gutchewer"]="",
["InstanceLoot.Zul'Farrak.Oro Eyegouge"]="5616:0",
["InstanceLoot.Zul'Farrak.Ruuzlu"]="",
["InstanceLoot.Zul'Farrak.Sandarr Dunereaver"]="",
["InstanceLoot.Zul'Farrak.Sandfury Executioner"]="",
["InstanceLoot.Zul'Farrak.Sergeant Bly"]="9480:0,9482:0,9511:0,9512:0",
["InstanceLoot.Zul'Farrak.Shadowpriest Sezz'ziz"]="9470:214,9473:232,9474:225,9475:219",
["InstanceLoot.Zul'Farrak.Theka the Martyr"]="",
["InstanceLoot.Zul'Farrak.Witch Doctor Zum'rah"]="18082:154,18083:314",
["InstanceLoot.Zul'Farrak.Zerillis"]="12470:179",
["InstanceLoot.Zul'Farrak.Zul'Farrak Dead Hero"]="",
["InstanceLoot.Zul'Aman.Nalorakk"]="33191:133,33203:133,33206:133,33211:142,33285:131,33327:129,33640:138",
["InstanceLoot.Zul'Aman.Akil'zon"]="33214:134,33215:135,33216:130,33281:132,33283:136,33286:132,33293:131",
["InstanceLoot.Zul'Aman.Jan'alai"]="33326:127,33328:135,33329:133,33332:123,33354:136,33356:130,33357:125",
["InstanceLoot.Zul'Aman.Halazzi"]="33297:132,33299:133,33300:138,33303:141,33317:132,33322:128,33533:130",
["InstanceLoot.Zul'Aman.Malacrass"]="33298:144,33388:149,33389:153,33421:146,33432:151,33446:155,33453:131,33463:132,33464:128,33465:128,33592:127,33828:133,33829:120,34029:253",
["InstanceLoot.Zul'Aman.Zul'jin"]="33102:875,33466:140,33467:144,33468:150,33469:158,33471:148,33473:147,33474:146,33476:151,33478:143,33479:149,33830:141,33831:144",
["InstanceLoot.Zul'Aman.Chest1"]="33590:100,33591:100,33489:110,33480:100,33483:90,33971:100,33805:110,33481:110",
["InstanceLoot.Zul'Aman.Chest2"]="33495:90,33493:100,33492:110,33490:110,33494:90,33491:100",
["InstanceLoot.Zul'Aman.Chest3"]="33497:200,33500:190,33496:210,33499:210,33498:190",
["InstanceLoot.Zul'Aman.Chest4"]="33809:1000",
["InstanceLoot.Zul'Gurub.Bloodlord Mandokir"]="19863:173,19866:86,19867:88,19869:178,19870:178,19872:9,19873:166,19874:85,19877:170,19878:164,19893:170,19895:176,20038:87,22637:914",
["InstanceLoot.Zul'Gurub.Gahz'ranka"]="19944:54,19945:117,19946:371,19947:358,22739:151",
["InstanceLoot.Zul'Gurub.Gri'lek"]="19939:1098,19961:392,19962:535",
["InstanceLoot.Zul'Gurub.Hakkar"]="10838:168,10842:333,10843:346,10844:169,10845:332,10846:330,12462:1",
["InstanceLoot.Zul'Gurub.Hazza'rah"]="19942:1152,19967:402,19968:456",
["InstanceLoot.Zul'Gurub.High Priest Thekal"]="19896:73,19897:73,19898:147,19899:151,19901:154,19902:7,20260:143,20266:142,22711:88,22712:92,22713:86,22714:87,22715:91,22716:84,22718:87,22720:90,22721:95,22722:89",
["InstanceLoot.Zul'Gurub.High Priest Venoxis"]="19900:162,19903:84,19904:89,19905:170,19906:171,19907:165,22711:81,22712:78,22713:82,22714:81,22715:85,22716:90,22718:88,22720:84,22721:89,22722:85",
["InstanceLoot.Zul'Gurub.High Priestess Arlokk"]="19909:85,19910:83,19912:226,19913:216,19914:161,19922:235,22711:87,22712:89,22713:78,22714:90,22715:94,22716:83,22718:81,22720:81,22721:75,22722:91",
["InstanceLoot.Zul'Gurub.High Priestess Jeklik"]="19915:131,19918:63,19920:146,19923:142,19928:69,20262:125,20265:140,22711:89,22712:84,22713:71,22714:87,22715:77,22716:81,22718:84,22720:82,22721:79,22722:88",
["InstanceLoot.Zul'Gurub.High Priestess Mar'li"]="19871:159,19919:174,19925:171,19927:80,19930:168,20032:80,22711:91,22712:90,22713:79,22714:82,22715:85,22716:82,22718:93,22720:85,22721:75,22722:77",
["InstanceLoot.Zul'Gurub.Jin'do the Hexxer"]="19875:145,19884:116,19885:126,19886:155,19887:137,19888:141,19889:128,19890:128,19891:108,19892:159,19894:131,19929:149,22637:845",
["InstanceLoot.Zul'Gurub.Renataki"]="19940:1118,19963:440,19964:486",
["InstanceLoot.Zul'Gurub.Wushoolay"]="19941:1162,19965:389,19993:470",
-- -----
-- WotLK Instances
-- -----
["InstanceLoot.Azjol-Nerub Hub"]="m,InstanceLoot.Ahn'kahet: The Old Kingdom,InstanceLoot.Azjol-Nerub",
-- Ahn'kahet: The Old Kingdom
["InstanceLoot.Ahn'kahet: The Old Kingdom.Elder Nadox"]="35606:310,35607:308,35608:300",
["InstanceLoot.Ahn'kahet: The Old Kingdom.Herald Volazj"]="35612:300,35613:317,35614:311",
["InstanceLoot.Ahn'kahet: The Old Kingdom.Jedoga Shadowseeker"]="43277:298,43278:309,43279:301",
["InstanceLoot.Ahn'kahet: The Old Kingdom.Prince Taldaram"]="35609:301,35610:314,35611:306,44731:31",
-- Azjol-Nerub
["InstanceLoot.Azjol-Nerub.Anub'arak"]="35661:285,35662:286,35663:289",
["InstanceLoot.Azjol-Nerub.Hadronox"]="35658:300,35659:308,35660:309",
["InstanceLoot.Azjol-Nerub.Krik'thir the Gatewatcher"]="35655:310,35656:322,35657:299",
["InstanceLoot.The Culling of Stratholme.Chrono-Lord Epoch"]="37096:221,37099:234,37105:233,37106:234",
["InstanceLoot.The Culling of Stratholme.Dark Runed Chest"]="37107:189,37108:178,37109:190,37110:196,37111:164,37112:189,37113:178,37114:201",
["InstanceLoot.The Culling of Stratholme.Mal'Ganis"]="m,InstanceLoot.The Culling of Stratholme.Dark Runed Chest",
["InstanceLoot.The Culling of Stratholme.Meathook"]="37079:226,37081:232,37082:216,37083:233",
["InstanceLoot.The Culling of Stratholme.Salramm the Fleshcrafter"]="37084:230,37086:225,37088:228,37095:233",
["InstanceLoot.Drak'Tharon Keep.King Dred"]="35633:307,35634:282,35635:278",
["InstanceLoot.Drak'Tharon Keep.Novos the Summoner"]="35630:303,35631:284,35632:329",
["InstanceLoot.Drak'Tharon Keep.The Prophet Tharon'ja"]="35636:301,35637:284,35638:344",
["InstanceLoot.Drak'Tharon Keep.Trollgore"]="35618:300,35619:294,35620:341",
["InstanceLoot.Gundrak.Drakkari Colossus"]="m,InstanceLoot.Gundrak.Drakkari Elemental",
["InstanceLoot.Gundrak.Drakkari Elemental"]="35590:272,35591:270,35592:265",
["InstanceLoot.Gundrak.Gal'darah"]="43305:296,43306:314,43309:305",
["InstanceLoot.Gundrak.Moorabi"]="35587:319,35588:307,35589:298",
["InstanceLoot.Gundrak.Slad'ran"]="35583:296,35584:294,35585:292",
["InstanceLoot.Naxxramas.Anub'Rekhan"]="39139:194,39140:195,39141:186,39146:192,39188:190,39189:189,39190:188,39191:201,39192:193,39193:198",
["InstanceLoot.Naxxramas.Baron Rivendare"]="m,InstanceLoot.Naxxramas.Four Horsemen Chest",
["InstanceLoot.Naxxramas.Four Horsemen Chest"]="39393:123,39394:128,39395:121,39396:127,39397:119,40610:183,40611:193,40612:263",
["InstanceLoot.Naxxramas.Gluth"]="39139:8,39140:10,39141:8,39146:10,39188:9,39189:10,39190:10,39191:10,39192:8,39193:9,39194:10,39195:9,39196:10,39197:9,39198:9,39199:10,39200:8,39215:8,39216:8,39217:8,39221:8,39224:9,39225:7,39226:9,39228:9,39229:6,39230:8,39231:9,39232:9,39233:10,39234:8,39235:8,39236:8,39237:7,39239:8,39240:8,39241:9,39242:10,39243:8,39244:9,39245:9,39246:7,39247:7,39248:8,39249:9,39250:9,39251:9,39252:10,39254:9,39255:9,39256:7,39257:8,39258:8,39259:9,39260:8,39261:10,39262:11,39267:10,39270:9,39271:9,39272:8,39273:9,39274:8,39275:7,39276:8,39277:7,39278:8,39279:10,39280:9,39281:12,39282:10,39283:9,39284:10,39285:8,39291:8,39292:7,39293:8,39294:8,39295:9,39296:7,39297:8,39298:7,39299:8,39306:8,39307:8,39308:7,39309:9,39310:9,39311:8,39344:9,39345:11,39369:9,39379:9,39386:10,39388:10,39389:8,39390:10,39391:8,39392:8,39393:9,39394:8,39395:7,39396:9,39397:9,40610:89,40611:91,40612:120,40619:92,40620:96,40621:122,40622:98,40623:92,40624:116",
["InstanceLoot.Naxxramas.Gothik the Harvester"]="39344:194,39345:198,39369:198,39379:188,39386:191,39388:194,39389:191,39390:193,39391:198,39392:200",
["InstanceLoot.Naxxramas.Grand Widow Faerlina"]="39194:188,39195:194,39196:197,39197:193,39198:180,39199:203,39200:196,39215:196,39216:183,39217:192",
["InstanceLoot.Naxxramas.Grobbulus"]="39276:181,39277:184,39278:184,39279:186,39280:186,39281:192,39282:188,39283:194,39284:180,39285:191",
["InstanceLoot.Naxxramas.Heigan the Unclean"]="39245:184,39246:187,39247:185,39248:189,39249:186,39250:194,39251:197,39252:187,39254:187,39255:189",
["InstanceLoot.Naxxramas.Instructor Razuvious"]="39296:186,39297:192,39298:182,39299:182,39306:186,39307:187,39308:188,39309:188,39310:191,39311:196",
["InstanceLoot.Naxxramas.Kel'Thuzad"]="39416:187,39417:181,39419:190,39420:181,39421:185,39422:191,39423:177,39424:193,39425:186,39426:190,40616:279,40617:283,40618:386",
["InstanceLoot.Naxxramas.Lady Blaumeux"]="m,InstanceLoot.Naxxramas.Four Horsemen Chest",
["InstanceLoot.Naxxramas.Loatheb"]="39256:192,39257:189,39258:191,39259:193,39260:194,40622:291,40623:298,40624:377",
["InstanceLoot.Naxxramas.Maexxna"]="39221:187,39224:187,39225:184,39226:188,39228:194,39229:202,39230:196,39231:187,39232:189,39233:189",
["InstanceLoot.Naxxramas.Noth the Plaguebringer"]="39234:195,39235:189,39236:190,39237:199,39239:188,39240:196,39241:197,39242:197,39243:189,39244:192",
["InstanceLoot.Naxxramas.Patchwerk"]="39261:236,39262:244,39267:242,39270:240,39271:195,39272:194,39273:194,39274:196,39275:194",
["InstanceLoot.Naxxramas.Sapphiron"]="39398:188,39399:178,39401:193,39403:182,39404:174,39405:186,39407:185,39408:190,39409:181,39415:194,44569:920",
["InstanceLoot.Naxxramas.Sir Zeliek"]="m,InstanceLoot.Naxxramas.Four Horsemen Chest",
["InstanceLoot.Naxxramas.Thaddius"]="39291:183,39292:171,39293:179,39294:177,39295:182,40619:272,40620:282,40621:366",
["InstanceLoot.Naxxramas.Thane Korth'azz"]="m,InstanceLoot.Naxxramas.Four Horsemen Chest",
["InstanceLoot.Naxxramas.Trash Mobs"]="39427,39467,39468,39470,39473",
["InstanceLoot.The Nexus Hub"]="m,InstanceLoot.The Eye of Eternity,InstanceLoot.The Nexus,InstanceLoot.The Oculus",
-- The Eye of Eternity
["InstanceLoot.The Eye of Eternity.Alexstrasza's Gift"]="40474:129,40475:143,40486:149,40488:144,40489:137,40491:149,40497:128,40511:138,40519:144,40526:142,43952:2,43953:7",
["InstanceLoot.The Eye of Eternity.Malygos"]="m,InstanceLoot.The Eye of Eternity.Alexstrasza's Gift",
-- The Nexus
["InstanceLoot.The Nexus.Anomalus"]="35598:297,35599:315,35600:305",
["InstanceLoot.The Nexus.Grand Magus Telestra"]="35604:301,35605:298,35617:296",
["InstanceLoot.The Nexus.Keristrasza"]="35595:308,35596:302,35597:300",
["InstanceLoot.The Nexus.Ormorok the Tree-Shaper"]="35601:329,35602:306,35603:325",
-- The Oculus
["InstanceLoot.The Oculus.Cache of Eregos"]="36961:184,36962:188,36969:174,36971:184,36972:173,36973:203,36974:182,36975:178,41798:184",
["InstanceLoot.The Oculus.Drakos the Interrogator"]="36943:219,36944:255,36945:222,36946:235",
["InstanceLoot.The Oculus.Ley-Guardian Eregos"]="m,InstanceLoot.The Oculus.Cache of Eregos",
["InstanceLoot.The Oculus.Mage-Lord Urom"]="36951:225,36952:199,36953:207,36954:227",
["InstanceLoot.The Oculus.Varos Cloudstrider"]="36947:229,36948:229,36949:223,36950:232",
["InstanceLoot.The Violet Hold.Cyanigosa"]="35649:312,35650:312,35651:311",
["InstanceLoot.The Violet Hold.Erekem"]="43363:441,43375:464",
["InstanceLoot.The Violet Hold.Ichoron"]="35643:393,35647:429",
["InstanceLoot.The Violet Hold.Lavanthor"]="35645:445,35646:471",
["InstanceLoot.The Violet Hold.Moragg"]="43382:440,43387:444",
["InstanceLoot.The Violet Hold.Xevozz"]="35642:435,35644:433",
["InstanceLoot.The Violet Hold.Zuramat the Obliterator"]="43353:447,43358:436",
["InstanceLoot.The Obsidian Sanctum.Sartharion"]="40426:185,40427:182,40428:181,40429:181,40430:184,40613:276,40614:288,40615:370,43345:931,43347:941,43986:79,43988:30,43989:31,43990:29,43991:27,43992:30,43993:16,43994:17,43995:19,43996:20,43998:17",
["InstanceLoot.Ulduar.Algalon the Observer"]="m,InstanceLoot.Ulduar.Gift of the Observer",
["InstanceLoot.Ulduar.Assembly of Iron"]="m,InstanceLoot.Ulduar.Steelbreaker,InstanceLoot.Ulduar.Runemaster Molgeim,InstanceLoot.Ulduar.Stormcaller Brundir,",
["InstanceLoot.Ulduar.Auriaya"]="45707:191,45708:195,45709:189,45711:195,45712:195,45713:199,45832:195,45864:202,45865:200,45866:191",
["InstanceLoot.Ulduar.Cache of Innovation"]="45647:267,45648:283,45649:359,45972:156,45973:170,45974:169,45975:119,45976:180,45982:27,45988:23,45989:29,45990:19,45993:22",
["InstanceLoot.Ulduar.Mimiron"]="45647:267,45648:283,45649:359,45972:156,45973:170,45974:169,45975:119,45976:180,45982:27,45988:23,45989:29,45990:19,45993:22",
["InstanceLoot.Ulduar.Cache of Living Stone"]="45695:195,45696:182,45697:184,45698:186,45699:178,45700:189,45701:198,45702:195,45703:182,45704:176",
["InstanceLoot.Ulduar.Kologarn"]="45695:195,45696:182,45697:184,45698:186,45699:178,45700:189,45701:198,45702:195,45703:182,45704:176",
["InstanceLoot.Ulduar.Cache of Storms"]="45659:258,45660:258,45661:327,45892:166,45893:188,45894:164,45895:170,45927:166,45928:65,45929:68,45930:60,45931:66,45933:66",
["InstanceLoot.Ulduar.Thorim"]="45659:258,45660:258,45661:327,45892:166,45893:188,45894:164,45895:170,45927:166,45928:65,45929:68,45930:60,45931:66,45933:66",
["InstanceLoot.Ulduar.Cache of Winter"]="45458:180,45464:196,45650:290,45651:294,45652:355,45872:203,45873:151,45874:174",
["InstanceLoot.Ulduar.Hodir"]="45458:180,45464:196,45650:290,45651:294,45652:355,45872:203,45873:151,45874:174",
["InstanceLoot.Ulduar.Flame Leviathan"]="35623:12,35624:10,35627:18,36860:13,37663:10,45090:6,45093:7,45096:8,45101:5,45104:6,45105:6,45282:182,45283:181,45284:186,45285:168,45286:171,45287:182,45288:198,45289:198,45291:174,45292:181,45293:9,45295:13,45296:11,45297:11,45300:10",
["InstanceLoot.Ulduar.Freya"]="m,InstanceLoot.Ulduar.Freya's Gift",
["InstanceLoot.Ulduar.Freya's Gift"]="45090:11,45093:5,45096:7,45101:10,45104:9,45105:8,45294:33,45644:239,45645:221,45646:308,45934:151,45935:159,45936:158,45940:155,45941:137,45943:43,45945:37,45946:40,45947:37,46110:631",
["InstanceLoot.Ulduar.Freya"]="45090:11,45093:5,45096:7,45101:10,45104:9,45105:8,45294:33,45644:239,45645:221,45646:308,45934:151,45935:159,45936:158,45940:155,45941:137,45943:43,45945:37,45946:40,45947:37,46110:631",
["InstanceLoot.Ulduar.General Vezax"]="45996:205,45997:184,46008:194,46009:175,46010:195,46011:197,46012:197,46013:195,46014:204,46015:185,46032:62,46033:71,46034:78,46035:73,46036:65",
["InstanceLoot.Ulduar.Gift of the Observer"]="46037:114,46038:118,46039:139,46040:184,46041:132,46042:188,46043:135,46044:156,46045:80,46046:101,46047:111,46048:156,46049:170,46050:167,46051:153,46052:783",
["InstanceLoot.Ulduar.Algalon the Observer"]="46037:114,46038:118,46039:139,46040:184,46041:132,46042:188,46043:135,46044:156,46045:80,46046:101,46047:111,46048:156,46049:170,46050:167,46051:153,46052:783",
["InstanceLoot.Ulduar.Hodir"]="m,InstanceLoot.Ulduar.Cache of Winter",
["InstanceLoot.Ulduar.Ignis the Furnace Master"]="45309:189,45310:198,45311:202,45312:190,45313:189,45314:201,45316:190,45317:198,45318:188,45321:205",
["InstanceLoot.Ulduar.Kologarn"]="m,InstanceLoot.Ulduar.Cache of Living Stone",
["InstanceLoot.Ulduar.Mimiron"]="m,InstanceLoot.Ulduar.Cache of Innovation",
["InstanceLoot.Ulduar.Razorscale"]="45298:192,45299:193,45301:196,45302:192,45303:197,45304:195,45305:201,45306:192,45307:195,45308:203",
["InstanceLoot.Ulduar.Runemaster Molgeim"]="45322:186,45324:198,45329:177,45330:179,45331:214,45332:249,45333:170,45378:137,45418:172,45423:244,45506:904",
["InstanceLoot.Ulduar.Steelbreaker"]="45322:164,45324:175,45329:197,45330:194,45331:200,45332:201,45333:171,45378:186,45418:195,45423:199,45447:182,45448:188,45449:177,45455:174,45456:180,45506:917",
["InstanceLoot.Ulduar.Stormcaller Brundir"]="45322:185,45324:197,45329:185,45330:199,45331:194,45332:204,45333:202,45378:161,45418:208,45423:210",
["InstanceLoot.Ulduar.Thorim"]="m,InstanceLoot.Ulduar.Cache of Storms",
["InstanceLoot.Ulduar.XT-002 Deconstructor"]="35627:3,36860:2,45675:197,45676:189,45677:187,45679:199,45680:178,45682:177,45685:203,45686:202,45687:194,45694:200,45867:38,45868:36,45869:40,45870:38,45871:38",
["InstanceLoot.Ulduar.Yogg-Saron"]="45090:7,45104:15,45635:295,45636:303,45637:310,46016:189,46018:219,46019:136,46021:181,46022:113,46024:121,46025:181,46028:196,46030:174,46031:212,46067:45,46068:53,46095:15,46096:53,46097:90,46312:30",
["InstanceLoot.Ulduar.Trash Mobs"]="46339,46340,46341,46342,46343,46344,46345,46346,46347,46350,46351,45538,45539,45540,45541,45542,45543,45544,45547,45548,45549,46138,45605",
["InstanceLoot.Ulduar Hub"]="m,InstanceLoot.Halls of Lightning,InstanceLoot.Halls of Stone",
-- Halls of Lightning
["InstanceLoot.Halls of Lightning.General Bjarngrim"]="36979:219,36980:224,36981:231,36982:218",
["InstanceLoot.Halls of Lightning.Ionar"]="39534:212,39535:211,39536:216,39657:211",
["InstanceLoot.Halls of Lightning.Loken"]="36988:220,36989:208,36991:218,36992:221,36993:195,36994:209,36995:214,36996:221,41799:170",
["InstanceLoot.Halls of Lightning.Volkhan"]="36983:219,36984:230,36985:226,36986:228",
-- Halls of Stone
["InstanceLoot.Halls of Stone.Krystallus"]="35670:285,35672:283,35673:284",
["InstanceLoot.Halls of Stone.Maiden of Grief"]="38611:286,38613:301,38614:294,44731:52",
["InstanceLoot.Halls of Stone.Sjonnir The Ironshaper"]="35678:295,35679:280,35680:275",
["InstanceLoot.Halls of Stone.Tribunal Chest"]="35675:279,35676:306,35677:296",
["InstanceLoot.Utgarde Keep Hub"]="m,InstanceLoot.Utgarde Keep,InstanceLoot.Utgarde Pinnacle",
-- Utgarde Keep
["InstanceLoot.Utgarde Keep.Dalronn the Controller"]="35573:14,35574:30,35575:31",
["InstanceLoot.Utgarde Keep.Ingvar the Plunderer"]="35576:268,35577:288,35578:261",
["InstanceLoot.Utgarde Keep.Prince Keleseth"]="35570:292,35571:326,35572:289,44731:132",
["InstanceLoot.Utgarde Keep.Skarvald the Constructor"]="35573:298,35574:298,35575:325",
-- Utgarde Pinnacle
["InstanceLoot.Utgarde Pinnacle.Gortok Palehoof"]="37048:252,37050:237,37051:217,37052:219",
["InstanceLoot.Utgarde Pinnacle.King Ymiron"]="37058:233,37060:207,37061:236,37062:199,37064:249,37065:201,37066:229,37067:199,41797:190",
["InstanceLoot.Utgarde Pinnacle.Skadi the Ruthless"]="37053:211,37055:232,37056:216,37057:236",
["InstanceLoot.Utgarde Pinnacle.Svala Sorrowgrave"]="37037:215,37038:215,37040:240,37043:249",
["InstanceLoot.Vault of Archavon.Archavon the Stone Watcher"]="39492:32,39493:33,39495:35,39497:32,39498:33,39500:32,39515:16,39517:17,39519:15,39523:17,39528:16,39530:15,39538:10,39539:12,39543:11,39544:10,39546:11,39547:11,39554:12,39555:10,39557:10,39558:31,39560:33,39564:31,39579:30,39580:31,39582:34,39588:10,39589:11,39591:11,39592:11,39593:11,39595:11,39597:10,39601:10,39603:11,39606:16,39607:16,39609:18,39611:16,39612:15,39617:16,39618:11,39620:15,39622:15,39623:16,39624:10,39626:15,39629:11,39630:11,39632:11,39633:10,39634:11,39636:10,39638:10,39639:11,39641:11,40781:33,40782:16,40783:32,40801:34,40802:16,40803:31,40840:33,40841:32,40842:15,40904:16,40925:16,40937:15,40988:10,40989:10,40999:11,41005:11,41025:9,41031:11,41079:11,41085:32,41135:11,41141:32,41162:10,41203:31,41284:10,41291:11,41296:10,41302:10,41308:11,41314:11,41648:32,41653:33,41659:9,41665:10,41765:33,41771:10,41857:17,41862:17,41872:16,41919:16,41925:15,41938:16,41950:33,41957:33,41969:32,42001:31,42003:31,42015:32,43959:8,44083:8",
["InstanceLoot.Vault of Archavon.Emalon the Storm Watcher"]="40804:24,40805:12,40806:27,40844:22,40845:25,40846:11,40879:15,40880:16,40888:13,40926:11,40938:11,40974:15,40975:14,40982:14,41000:7,41006:8,41026:7,41032:8,41048:6,41054:7,41059:6,41064:8,41069:7,41074:6,41136:8,41142:24,41198:8,41204:26,41224:13,41229:14,41234:14,41286:8,41292:8,41297:7,41303:8,41616:7,41620:7,41624:6,41629:7,41634:7,41639:6,41654:24,41666:8,41766:25,41772:7,41831:14,41835:15,41839:12,41863:11,41873:11,41880:15,41884:14,41892:12,41897:14,41902:15,41908:12,41926:11,41939:12,41958:23,41970:23,42004:23,42016:26,42027:14,42028:14,42029:6,42030:5,42031:5,42032:5,42033:5,42062:6,42063:5,42064:5,42065:5,42066:5,42067:14,42068:13,42114:14,42115:14,43959:9,44083:9,45337:26,45338:23,45341:23,45343:22,45345:19,45347:15,45351:16,45353:16,45355:15,45357:17,45360:50,45362:49,45367:48,45370:16,45371:17,45376:17,45379:17,45383:16,45384:16,45387:22,45388:24,45392:23,45394:24,45397:50,45399:50,45401:17,45403:16,45406:16,45409:17,45414:15,45416:17,45419:47,45420:48,45426:22,45427:24,45430:23,45432:24,46131:51",
-- Trial of the Champion
["InstanceLoot.Trial of the Champion.Grand Champions"]="m,InstanceLoot.Trial of the Champion.Champion's Cache",
["InstanceLoot.Trial of the Champion.Champion's Cache"]="47170:168,47171:157,47172:172,47173:162,47174:165,47175:163",
["InstanceLoot.Trial of the Champion.Argent Confessor Paletress"]="m,InstanceLoot.Trial of the Champion.Confessor's Cache",
["InstanceLoot.Trial of the Champion.Confessor's Cache"]="47176:143,47177:147,47178:144,47181:143,47185:150,47211:144,47212:142,47213:156,47214:148,47217:142,47218:147,47219:147",
["InstanceLoot.Trial of the Champion.Eadric the Pure"]="m,InstanceLoot.Trial of the Champion.Eadric's Cache",
["InstanceLoot.Trial of the Champion.Eadric's Cache"]="47176:143,47177:156,47178:147,47181:150,47185:150,47197:140,47199:146,47200:148,47201:140,47202:150,47210:150,47213:152",
["InstanceLoot.Trial of the Champion.The Black Knight"]="47215:164,47216:162,47220:158,47221:165,47222:162,47226:159,47227:164,47228:155,47229:156,47230:163,47231:160,47232:157",
-- Frozen Halls
["InstanceLoot.Frozen Halls Hub"]="m,InstanceLoot.The Forge of Souls,InstanceLoot.Pit of Saron,InstanceLoot.Halls of Reflection",
-- The Forge of Souls
["InstanceLoot.The Forge of Souls.Bronjahm"]="49783:290,49784:134,49785:146,49786:136,49787:147,49788:136,50316:43,50317:239",
["InstanceLoot.The Forge of Souls.Devourer of Souls"]="49789:233,49790:226,49791:103,49792:100,49793:236,49794:89,49795:156,49796:163,49797:160,49798:160,49799:171,49800:168",
-- Pit of Saron
["InstanceLoot.Pit of Saron.Forgemaster Garfrost"]="49801:248,49802:251,49803:118,49804:120,49805:129,49806:122",
["InstanceLoot.Pit of Saron.Ick"]="49807:275,49808:143,49809:133,49810:155,49811:141,49812:149",
["InstanceLoot.Pit of Saron.Krick"]="m,InstanceLoot.Pit of Saron.Ick",
["InstanceLoot.Pit of Saron.Scourgelord Tyrannus"]="49813:275,49816:143,49817:138,49818:147,49819:136,49820:146,49821:164,49822:158,49823:162,49824:162,49825:166,49826:165",
-- Halls of Reflection
["InstanceLoot.Halls of Reflection.Falric"]="49827:279,49828:149,49829:147,49830:141,49831:135,49832:144",
["InstanceLoot.Halls of Reflection.Marwyn"]="49832:0,49833:287,49834:131,49835:150,49836:141,49837:138,49838:149",
["InstanceLoot.Halls of Reflection.The Lich King"]="m,InstanceLoot.Halls of Reflection.The Captain's Chest",
["InstanceLoot.Halls of Reflection.The Captain's Chest"]="49839:203,49840:200,49841:107,49842:98,49843:112,49844:190,49845:234,49846:229,49847:105,49848:105,49849:111,49851:109",
-- Icecrown Citadel
-- The Lower Spire
["InstanceLoot.Icecrown Citadel.Lord Marrowgar"]="49949:193,49950:154,49951:152,49952:154,49960:141,49964:137,49967:145,49968:322,49975:217,49976:209,49977:280,49978:210,49979:139,49980:132,50339:208,50415:292,50759:141,50760:137,50761:270,50762:135,50763:89,50764:178,50771:207,50772:141,50773:143,50774:137,50775:131",
["InstanceLoot.Icecrown Citadel.Lady Deathwhisper"]="49982:197,49983:194,49985:125,49986:134,49987:196,49988:194,49989:193,49990:193,49991:199,49992:328,49993:142,49994:212,49995:143,49996:155,50034:286,50342:182,50776:207,50777:138,50778:141,50779:136,50780:140,50781:257,50782:199,50783:133,50784:134,50785:123,50786:123",
["InstanceLoot.Icecrown Citadel.Gunship Armory"]="49998:239,49999:160,50000:173,50001:171,50002:180,50003:148,50005:240,50006:148,50008:277,50009:125,50010:153,50011:201,50340:207,50352:193,50359:187,50411:148,50787:221,50788:146,50789:147,50790:102,50791:157,50792:147,50793:246,50794:161,50795:106,50796:122,50797:105",
["InstanceLoot.Icecrown Citadel.Deathbringer's Cache"]="50014:164,50015:131,50333:167,50362:238,50412:170,50798:270,50799:137,50800:141,50801:124,50802:76,50803:174,50804:158,50805:252,50806:104,50807:118,50808:113,50809:216,52025:4,52025:587,52026:3,52026:464,52027:484,52027:2",
["InstanceLoot.Icecrown Citadel.Deathbringer Saurfang"]="m,InstanceLoot.Icecrown Citadel.Deathbringer's Cache",
-- The Plagueworks
["InstanceLoot.Icecrown Citadel.Festergut"]="50035:156,50036:110,50037:168,50038:154,50040:290,50041:132,50042:200,50056:194,50059:129,50060:178,50061:174,50062:263,50063:171,50064:165,50226:948,50413:168,50414:173,50810:224,50811:146,50812:146,50852:192,50858:150,50859:91,50966:279,50967:126,50985:123,50986:127,50988:128,50990:179",
["InstanceLoot.Icecrown Citadel.Rotface"]="50016:182,50019:181,50020:175,50021:179,50022:178,50023:214,50024:143,50025:273,50026:148,50027:146,50028:280,50030:118,50032:120,50033:180,50231:903,50353:237,50998:217,50999:139,51000:154,51001:139,51002:136,51003:143,51004:273,51005:125,51006:125,51007:183,51008:120,51009:119",
["InstanceLoot.Icecrown Citadel.Professor Putricide"]="50067:179,50068:188,50069:128,50179:180,50341:162,50351:260,51010:148,51011:159,51012:159,51013:163,51014:163,51015:161,51016:234,51017:161,51018:112,51019:115,51020:177,52025:632,52026:5,52026:500,52027:5,52027:495",
-- The Crimson Hall
["InstanceLoot.Icecrown Citadel.Prince Valanar"]="49919:292,50071:164,50072:146,50073:144,50074:150,50075:146,50170:310,50171:145,50172:163,50173:345,50174:144,50175:142,50176:142,50177:150,50184:141,51021:150,51022:201,51023:146,51024:143,51025:136,51325:135,51326:226,51379:122,51380:117,51381:236,51382:116,51383:112",
["InstanceLoot.Icecrown Citadel.Blood-Queen Lana'thel"]="50065:113,50178:164,50180:111,50181:158,50182:169,50354:107,51384:129,51385:198,51386:126,51387:162,51548:120,51550:134,51551:138,51552:119,51553:187,51554:189,51555:119,51556:129,52025:39,52025:644,52026:26,52026:507,52027:28,52027:500",
-- The Frostwing Halls
["InstanceLoot.Icecrown Citadel.Cache of the Dreamwalker"]="50183:177,50185:78,50186:263,50187:155,50188:142,50190:139,50192:219,50195:140,50199:155,50202:173,50205:270,50416:109,50417:129,50418:173,50472:170,51561:159,51562:234,51563:134,51564:105,51565:126,51566:111,51582:254,51583:87,51584:221,51585:106,51586:108,51777:104",
["InstanceLoot.Icecrown Citadel.Valithria Dreamwalker"]="m,InstanceLoot.Icecrown Citadel.Cache of the Dreamwalker",
["InstanceLoot.Icecrown Citadel.Sindragosa"]="50360:228,50361:144,50421:187,50423:185,50424:154,51779:189,51782:144,51783:119,51784:151,51785:164,51786:149,51787:116,51788:228,51789:114,51790:151,51791:181,51792:131,52025:631,52025:22,52026:520,52026:12,52027:22,52027:494",
-- The Frozen Throne
["InstanceLoot.Icecrown Citadel.The Lich King"]="49426:2,49426:1,49981:301,49997:149,50012:209,50070:264,50425:172,50426:122,50427:146,50428:166,50429:174,51795:135,51796:251,51797:188,51798:226,51799:259,51800:125,51801:145,51802:198,51803:180,52025:651,52026:522,52027:405",
-- The Ruby Sanctum
["InstanceLoot.The Ruby Sanctum.Halion"]="53103:91,53110:37,53111:43,53112:35,53113:82,53114:62,53115:52,53116:77,53117:38,53118:116,53119:40,53121:29,53125:29,53126:65,53127:40,53129:49,53132:43,53133:125,53134:55,53486:91,53487:54,53488:51,53489:83,53490:31,54556:15,54557:18,54558:9,54559:24,54560:13,54561:31,54562:63,54563:18,54564:21,54565:17,54566:12,54567:34,54569:110,54571:80,54572:97,54573:82,54576:63,54577:13,54578:10,54579:1,54580:9,54581:12,54582:23,54583:29,54584:24,54585:4,54586:23,54587:10,54588:29,54589:15,54590:52,54591:23",
})
@@ -0,0 +1,16 @@
## Interface: 30200
## LoadOnDemand: 1
## Title: Lib: PeriodicTable-3.1 [|cffeda55fInstanceLoot|r]
## Notes: PeriodicTable data module.
## Author: Nymbia
## Version: 3.1
## Dependencies: LibPeriodicTable-3.1
## X-Category: Library
## X-License: LGPL v2.1
## X-PeriodicTable-3.1-Module: InstanceLoot
## X-Curse-Packaged-Version: r293
## X-Curse-Project-Name: LibPeriodicTable-3.1
## X-Curse-Project-ID: libperiodictable-3-1
## X-Curse-Repository-ID: wow/libperiodictable-3-1/mainline
LibPeriodicTable-3.1-InstanceLoot.lua
@@ -0,0 +1,254 @@
-- (c) 2007 Nymbia. see LGPLv2.1.txt for full details.
--DO NOT MAKE CHANGES TO THIS FILE BEFORE READING THE WIKI PAGE REGARDING CHANGING THESE FILES
if not LibStub("LibPeriodicTable-3.1", true) then error("PT3 must be loaded before data") end
LibStub("LibPeriodicTable-3.1"):AddData("InstanceLootHeroic", gsub("$Rev: 285 $", "(%d+)", function(n) return n+90000 end), {
["InstanceLootHeroic.Auchindoun"]="m,InstanceLootHeroic.Auchenai Crypts,InstanceLootHeroic.Mana-Tombs,InstanceLootHeroic.Shadow Labyrinth,InstanceLootHeroic.Sethekk Halls",
["InstanceLootHeroic.Auchenai Crypts.Exarch Maladaar"]="27523:131,27867:108,27869:127,27870:106,27871:132,27872:105,29244:230,29257:270,29354:116,30586:76,30587:75,30588:71",
["InstanceLootHeroic.Auchenai Crypts.Shirrak the Dead Watcher"]="27493:131,27845:139,27846:135,27847:106,27865:109,27866:145,30586:56,30587:47,30588:52",
["InstanceLootHeroic.Magisters' Terrace.Selin Fireheart"]="34601:223,34602:214,34603:217,34604:217,34697:9,34698:8,34699:7,34700:7,34701:8,34702:8,35275:15",
["InstanceLootHeroic.Magisters' Terrace.Vexallus"]="34605:205,34606:208,34607:212,34608:205,34703:7,34704:7,34705:7,34706:7,34707:6,34708:7,35275:16",
["InstanceLootHeroic.Magisters' Terrace.Priestess Delrissa"]="34470:209,34471:207,34472:205,34473:206,34783:6,34788:8,34789:6,34790:6,34791:6,34792:6,35275:15,35756:141",
["InstanceLootHeroic.Magisters' Terrace.Kael'thas Sunstrider"]="34609:201,34610:182,34611:187,34612:183,34613:188,34614:182,34615:189,34616:183,34625:10,34793:12,34794:10,34795:11,34796:11,34797:10,34798:10,34799:10,34807:11,34808:12,34810:10,35275:22,35504:61,35513:25",
["InstanceLootHeroic.Mana-Tombs.Nexus-Prince Shaffar"]="22921:40,27798:116,27827:124,27828:122,27829:107,27831:129,27835:120,27837:119,27840:118,27842:116,27843:129,27844:132,28400:111,29240:204,29352:172,30535:197,30583:76,30584:58,30585:63,32082:110",
["InstanceLootHeroic.Mana-Tombs.Pandemonius"]="27813:123,27814:134,27815:122,27816:155,27817:152,27818:136,30583:85,30584:84,30585:78",
["InstanceLootHeroic.Mana-Tombs.Tavarok"]="27821:124,27822:131,27823:144,27824:145,27825:148,27826:109,30583:68,30584:69,30585:67",
["InstanceLootHeroic.Shadow Labyrinth.Ambassador Hellmaw"]="27884:146,27885:162,27886:138,27887:141,27888:130,27889:159,30559:62,30560:67,30563:59",
["InstanceLootHeroic.Shadow Labyrinth.Blackheart the Inciter"]="25728:38,27468:151,27890:133,27891:128,27892:144,27893:148,28134:125,30559:46,30560:55,30563:46",
["InstanceLootHeroic.Shadow Labyrinth.Grandmaster Vorpil"]="27775:181,27897:148,27898:174,27900:184,27901:155,30559:46,30560:57,30563:46",
["InstanceLootHeroic.Shadow Labyrinth.Murmur"]="24309:19,27778:123,27803:104,27902:145,27903:131,27905:117,27908:107,27909:137,27910:134,27912:130,27913:116,28230:138,28232:126,29261:146,29353:74,29357:137,30532:133,30559:49,30560:62,30563:56",
["InstanceLootHeroic.Sethekk Halls.Darkweaver Syth"]="24160:26,27914:147,27915:135,27916:127,27917:154,27918:145,27919:161,30552:63,30553:68,30554:76",
["InstanceLootHeroic.Sethekk Halls.Talon King Ikiss"]="27776:165,27838:141,27875:142,27925:173,27936:166,27946:141,27948:119,27980:129,27981:140,27985:129,27986:117,29249:206,29259:214,29355:94,30552:62,30553:70,30554:73,32073:173",
["InstanceLootHeroic.Sethekk Halls.Anzu"]="30552:82,30553:87,30554:90,32768:13,32769:190,32778:202,32779:171,32780:165,32781:186",
["InstanceLootHeroic.Caverns of Time"]="m,InstanceLootHeroic.Old Hillsbrad Foothills,InstanceLootHeroic.The Black Morass",
["InstanceLootHeroic.Old Hillsbrad Foothills.Captain Skarloc"]="22927:56,28216:107,28217:125,28218:129,28219:118,28220:102,28221:121,30589:53,30590:60,30591:57",
["InstanceLootHeroic.Old Hillsbrad Foothills.Epoch Hunter"]="24173:22,27904:136,27911:114,28191:101,28222:118,28223:110,28224:137,28225:125,28226:111,28227:98,28233:101,28344:111,28401:131,29246:185,29250:167,30534:152,30536:153,30589:75,30590:66,30591:69",
["InstanceLootHeroic.Old Hillsbrad Foothills.Lieutenant Drake"]="28210:114,28211:124,28212:123,28213:134,28214:133,28215:135,30589:58,30590:56,30591:59",
["InstanceLootHeroic.The Black Morass.Aeonus"]="27509:153,27839:136,27873:124,27977:153,28188:132,28189:134,28190:148,28192:150,28193:148,28194:146,28206:156,28207:131,29247:191,29253:177,29356:104,30531:170,30555:55,30556:59,30558:55",
["InstanceLootHeroic.The Black Morass.Chrono Lord Deja"]="27987:132,27988:140,27993:145,27994:133,27995:151,27996:149,29675:32,30555:60,30556:56,30558:50",
["InstanceLootHeroic.The Black Morass.Temporus"]="28033:132,28034:149,28184:133,28185:144,28186:128,28187:122,30555:55,30556:62,30558:57",
["InstanceLootHeroic.Coilfang Reservoir"]="m,InstanceLootHeroic.The Slave Pens,InstanceLootHeroic.The Steamvault,InstanceLootHeroic.The Underbog",
["InstanceLootHeroic.The Slave Pens.Mennu the Betrayer"]="27541:128,27542:140,27543:153,27544:137,27545:148,27546:133,29674:22,30603:49,30604:55,30605:59",
["InstanceLootHeroic.The Slave Pens.Quagmirran"]="27672:113,27673:137,27683:105,27712:118,27713:128,27714:115,27740:117,27741:115,27742:131,27796:120,27800:132,28337:116,29242:180,29349:94,30538:179,30603:69,30604:88,30605:81,32078:144",
["InstanceLootHeroic.The Slave Pens.Rokmar the Crackler"]="27547:146,27548:130,27549:131,27550:146,27551:130,28124:130,30603:55,30604:57,30605:62",
["InstanceLootHeroic.The Slave Pens.Ahune"]="35494:140,35495:60,35496:120,35497:100,35514:40,35498:150,34955:19,35507:80,35508:80,35509:80,35510:80,35511:80,",
["InstanceLootHeroic.The Steamvault.Hydromancer Thespia"]="27508:182,27783:177,27784:159,27787:169,27789:158,29673:28,30549:54,30550:62,30551:55",
["InstanceLootHeroic.The Steamvault.Mekgineer Steamrigger"]="23887:37,27790:177,27791:176,27792:157,27793:155,27794:171,30549:60,30550:64,30551:53",
["InstanceLootHeroic.The Steamvault.Warlord Kalithresh"]="24313:21,27475:131,27510:119,27737:137,27738:133,27795:130,27799:144,27801:117,27804:122,27805:147,27806:141,27874:120,28203:123,29243:185,29351:100,29463:167,30543:157,30549:70,30550:74,30551:70",
["InstanceLootHeroic.The Underbog.Ghaz'an"]="27755:131,27757:129,27758:153,27759:142,27760:125,27761:140,30606:61,30607:67,30608:59",
["InstanceLootHeroic.The Underbog.Hungarfen"]="27743:152,27744:131,27745:149,27746:127,27747:144,27748:128,30606:62,30607:64,30608:65",
["InstanceLootHeroic.The Underbog.Swamplord Musel'ek"]="27762:123,27763:140,27764:127,27765:147,27766:131,27767:124,30606:58,30607:65,30608:64",
["InstanceLootHeroic.The Underbog.The Black Stalker"]="27768:110,27769:117,27770:110,27771:114,27772:122,27773:120,27779:119,27780:118,27781:131,27896:130,27907:107,27938:107,29265:193,29350:137,30541:183,30606:86,30607:90,30608:80,32081:81",
["InstanceLootHeroic.Hellfire Citadel"]="m,InstanceLootHeroic.Hellfire Ramparts,InstanceLootHeroic.Magtheridon's Lair,InstanceLootHeroic.The Blood Furnace,InstanceLootHeroic.The Shattered Halls",
["InstanceLootHeroic.Hellfire Ramparts.Nazan"]="",
["InstanceLootHeroic.Hellfire Ramparts.Omor the Unscarred"]="27462:116,27463:135,27464:143,27465:139,27466:124,27467:116,27476:116,27477:132,27478:134,27539:110,27895:133,27906:135,30593:68,30594:64",
["InstanceLootHeroic.Hellfire Ramparts.Vazruden"]="",
["InstanceLootHeroic.Hellfire Ramparts.Watchkeeper Gargolmar"]="27447:178,27448:167,27449:152,27450:152,27451:166,30593:55,30594:62",
["InstanceLootHeroic.The Blood Furnace.Broggok"]="27489:131,27490:155,27491:167,27492:167,27848:140,30600:59,30601:56,30602:62",
["InstanceLootHeroic.The Blood Furnace.Keli'dan the Breaker"]="27494:112,27495:139,27497:103,27505:115,27506:127,27507:119,27512:116,27514:121,27522:108,27788:128,28121:130,28264:102,29239:187,29245:177,29347:85,30600:83,30601:89,30602:74,32080:132",
["InstanceLootHeroic.The Blood Furnace.The Maker"]="27483:151,27484:153,27485:170,27487:161,27488:190,30600:63,30601:58,30602:65",
["InstanceLootHeroic.The Shattered Halls.Grand Warlock Nethekurse"]="24312:23,27517:162,27518:174,27519:166,27520:175,27521:167,30546:59,30547:49,30548:59",
["InstanceLootHeroic.The Shattered Halls.Warbringer O'mrogg"]="27524:166,27525:190,27526:177,27802:155,27868:165,30546:69,30547:58,30548:65",
["InstanceLootHeroic.The Shattered Halls.Warchief Kargath Bladefist"]="27474:116,27527:132,27528:137,27529:123,27531:112,27533:120,27534:134,27535:119,27536:140,27537:131,27538:109,27540:131,29254:153,29255:192,29263:175,29348:87,30546:64,30547:62,30548:69",
["InstanceLootHeroic.The Shattered Halls.Blood Guard Porung"]="30546:70,30547:59,30548:75,30705:180,30707:200,30708:166,30709:202,30710:80",
["InstanceLootHeroic.Tempest Keep"]="m,InstanceLootHeroic.The Arcatraz,InstanceLootHeroic.The Mechanar,InstanceLootHeroic.The Botanica",
["InstanceLootHeroic.The Arcatraz.Dalliah the Doomsayer"]="24308:39,28386:162,28387:165,28390:160,28391:176,28392:185,30575:91,30581:77,30582:73",
["InstanceLootHeroic.The Arcatraz.Harbinger Skyriss"]="28205:126,28231:144,28403:136,28406:136,28407:138,28412:126,28413:143,28414:140,28415:127,28416:142,28418:114,28419:136,29241:169,29248:197,29252:186,29360:108,30575:68,30581:63,30582:63",
["InstanceLootHeroic.The Arcatraz.Wrath-Scryer Soccothrates"]="28393:159,28394:166,28396:182,28397:158,28398:188,30575:76,30581:75,30582:68",
["InstanceLootHeroic.The Arcatraz.Zereketh the Unbound"]="28372:158,28373:181,28374:184,28375:155,28384:166,30575:71,30581:74,30582:69",
["InstanceLootHeroic.The Botanica.Commander Sarannis"]="28296:190,28301:156,28304:181,28306:180,28311:161,30572:59,30573:69,30574:62",
["InstanceLootHeroic.The Botanica.High Botanist Freywinn"]="23617:40,28315:174,28316:153,28317:179,28318:180,28321:167,30572:64,30573:73,30574:63",
["InstanceLootHeroic.The Botanica.Laj"]="27739:167,28328:169,28338:158,28339:158,28340:155,30572:71,30573:69,30574:70",
["InstanceLootHeroic.The Botanica.Thorngrin the Tender"]="24310:38,28322:184,28323:175,28324:153,28325:160,28327:170,30572:79,30573:79,30574:70",
["InstanceLootHeroic.The Botanica.Warp Splinter"]="24311:30,28228:121,28229:100,28341:109,28342:114,28343:129,28345:111,28347:121,28348:124,28349:141,28350:115,28367:126,28370:148,28371:136,29258:220,29262:205,29359:91,30572:66,30573:69,30574:58,32072:179",
["InstanceLootHeroic.The Mechanar.Mechano-Lord Capacitus"]="28253:151,28254:161,28255:151,28256:131,28257:128,30564:64,30565:59,30566:65,35582:66",
["InstanceLootHeroic.The Mechanar.Nethermancer Sepethrea"]="22920:71,28258:158,28259:166,28260:164,28262:165,28263:146,30564:69,30565:71,30566:67",
["InstanceLootHeroic.The Mechanar.Pathaleon the Calculator"]="21907:76,27899:124,28202:154,28204:143,28265:113,28266:137,28267:129,28269:130,28275:136,28278:145,28285:118,28286:143,28288:125,29251:226,29362:100,30533:237,30564:66,30565:64,30566:68,32076:202",
-- -----
-- WotLK Instances
-- -----
["InstanceLootHeroic.Azjol-Nerub Hub"]="m,InstanceLootHeroic.Ahn'kahet: The Old Kingdom,InstanceLootHeroic.Azjol-Nerub",
-- Ahn'kahet: The Old Kingdom
["InstanceLootHeroic.Ahn'kahet: The Old Kingdom.Amanitar"]="43284:232,43285:230,43286:231,43287:224",
["InstanceLootHeroic.Ahn'kahet: The Old Kingdom.Elder Nadox"]="37591:235,37592:233,37593:232,37594:231",
["InstanceLootHeroic.Ahn'kahet: The Old Kingdom.Herald Volazj"]="37615:206,37616:211,37617:219,37618:212,37619:202,37620:207,37622:206,37623:208,41790:132",
["InstanceLootHeroic.Ahn'kahet: The Old Kingdom.Jedoga Shadowseeker"]="43280:227,43281:224,43282:227,43283:223",
["InstanceLootHeroic.Ahn'kahet: The Old Kingdom.Prince Taldaram"]="37595:229,37612:227,37613:230,37614:229,44731:41",
-- Azjol-Nerub
["InstanceLootHeroic.Azjol-Nerub.Anub'arak"]="37232:211,37235:215,37236:212,37237:213,37238:208,37240:208,37241:209,37242:202,41796:107",
["InstanceLootHeroic.Azjol-Nerub.Hadronox"]="37220:225,37221:226,37222:222,37230:225",
["InstanceLootHeroic.Azjol-Nerub.Krik'thir the Gatewatcher"]="37216:229,37217:233,37218:228,37219:225",
["InstanceLootHeroic.The Culling of Stratholme.Chrono-Lord Epoch"]="37685:233,37686:231,37687:235,37688:236",
["InstanceLootHeroic.The Culling of Stratholme.Dark Runed Chest"]="37689:164,37690:160,37691:166,37692:159,37693:133,37694:131,37695:123,37696:123,43085:125",
["InstanceLootHeroic.The Culling of Stratholme.Infinite Corruptor"]="43951:951",
["InstanceLootHeroic.The Culling of Stratholme.Mal'Ganis"]="m,InstanceLootHeroic.The Culling of Stratholme.Dark Runed Chest",
["InstanceLootHeroic.The Culling of Stratholme.Meathook"]="37675:232,37678:227,37679:225,37680:224",
["InstanceLootHeroic.The Culling of Stratholme.Salramm the Fleshcrafter"]="37681:227,37682:231,37683:228,37684:227",
["InstanceLootHeroic.Drak'Tharon Keep.King Dred"]="37723:227,37724:224,37725:222,37726:221",
["InstanceLootHeroic.Drak'Tharon Keep.Novos the Summoner"]="37718:229,37721:229,37722:231,40490:230",
["InstanceLootHeroic.Drak'Tharon Keep.The Prophet Tharon'ja"]="37732:217,37733:216,37734:219,37735:217,37784:208,37788:218,37791:209,37798:204,41795:118",
["InstanceLootHeroic.Drak'Tharon Keep.Trollgore"]="37712:233,37714:231,37715:231,37717:235",
["InstanceLootHeroic.Gundrak.Drakkari Colossus"]="m,InstanceLootHeroic.Gundrak.Drakkari Elemental",
["InstanceLootHeroic.Gundrak.Drakkari Elemental"]="37634:212,37635:218,37636:216,37637:221",
["InstanceLootHeroic.Gundrak.Eck the Ferocious"]="43310:233,43311:238,43312:238,43313:238",
["InstanceLootHeroic.Gundrak.Gal'darah"]="37638:212,37639:211,37640:209,37641:201,37642:209,37643:200,37644:200,37645:203",
["InstanceLootHeroic.Gundrak.Moorabi"]="37630:223,37631:226,37632:229,37633:231",
["InstanceLootHeroic.Gundrak.Slad'ran"]="37626:223,37627:221,37628:222,37629:226",
["InstanceLootHeroic.Naxxramas.Anub'Rekhan"]="39701:189,39702:183,39703:187,39704:194,39706:192,39712:236,39714:238,39716:244,39717:232,39718:188,39719:190,39720:194,39721:195,39722:195,40064:102,40065:106,40069:105,40071:107,40074:115,40075:108,40080:109,40107:105,40108:110",
["InstanceLootHeroic.Naxxramas.Baron Rivendare"]="m,InstanceLootHeroic.Naxxramas.Four Horsemen Chest",
["InstanceLootHeroic.Naxxramas.Four Horsemen Chest"]="39397:1,40286:95,40343:91,40344:104,40345:102,40346:100,40347:87,40348:101,40349:107,40350:104,40352:99,40610:1,40611:1,40612:2,40625:310,40626:305,40627:407",
["InstanceLootHeroic.Naxxramas.Gluth"]="39701:13,39702:11,39703:11,39704:11,39706:10,39712:11,39714:14,39716:12,39717:14,39718:10,39719:10,39720:10,39721:12,39722:10,39723:13,39724:2,39725:11,39726:12,39727:11,39728:9,39729:11,39730:11,39731:11,39732:10,39733:11,39734:10,39735:11,39756:12,39757:10,39758:9,39759:10,39760:11,39761:10,39762:9,39763:10,39764:10,39765:12,39766:11,39767:11,39768:10,40060:10,40061:12,40062:12,40063:9,40184:10,40185:11,40186:10,40187:9,40188:9,40189:11,40190:11,40191:11,40192:9,40193:11,40196:10,40197:8,40198:9,40200:10,40201:10,40203:11,40204:11,40205:12,40206:11,40207:10,40208:11,40209:10,40210:11,40233:9,40234:9,40235:11,40236:11,40237:9,40238:10,40239:12,40240:10,40241:9,40242:11,40243:9,40244:10,40245:9,40246:10,40247:11,40249:10,40259:9,40260:10,40261:10,40262:10,40263:12,40264:10,40265:12,40266:8,40267:8,40268:12,40269:9,40270:10,40271:12,40272:10,40273:11,40274:13,40275:11,40277:12,40278:10,40279:11,40280:10,40281:10,40282:9,40283:10,40284:10,40285:9,40286:12,40287:12,40288:11,40289:12,40294:9,40296:10,40297:11,40298:7,40299:10,40300:11,40301:11,40302:8,40303:9,40304:11,40305:10,40306:10,40315:9,40316:9,40317:9,40318:9,40319:9,40320:10,40321:10,40322:11,40323:9,40324:10,40325:9,40326:11,40327:9,40328:11,40329:9,40330:10,40331:10,40332:12,40333:10,40334:11,40335:11,40336:11,40337:13,40338:12,40339:13,40340:12,40341:11,40342:11,40343:10,40344:10,40345:11,40346:12,40347:10,40348:12,40349:11,40350:12,40351:11,40352:9,40602:11,40625:172,40626:194,40627:243,40634:184,40635:195,40636:244,40637:185,40638:197,40639:264",
["InstanceLootHeroic.Naxxramas.Gothik the Harvester"]="40250:110,40251:105,40252:106,40253:106,40254:110,40255:106,40256:110,40257:106,40258:111,40328:190,40329:196,40330:191,40331:189,40332:186,40333:189,40334:193,40335:193,40336:187,40337:197,40338:196,40339:187,40340:187,40341:195,40342:199",
["InstanceLootHeroic.Naxxramas.Grand Widow Faerlina"]="39200:1,39723:227,39724:25,39725:225,39726:234,39727:225,39728:192,39729:193,39730:190,39731:196,39732:184,39733:191,39734:191,39735:189,39756:194,39757:194,40064:104,40065:113,40069:104,40071:105,40074:109,40075:107,40080:109,40107:107,40108:108",
["InstanceLootHeroic.Naxxramas.Grobbulus"]="40250:109,40251:106,40252:107,40253:107,40254:107,40255:101,40256:114,40257:103,40258:109,40274:187,40275:181,40277:184,40278:187,40279:181,40280:187,40281:192,40282:189,40283:191,40284:185,40285:190,40287:196,40288:191,40289:189,40351:191",
["InstanceLootHeroic.Naxxramas.Heigan the Unclean"]="40201:182,40203:183,40204:182,40205:182,40206:187,40207:189,40208:193,40209:186,40210:185,40233:186,40234:191,40235:193,40236:192,40237:192,40238:185,40250:107,40251:105,40252:107,40253:108,40254:111,40255:103,40256:106,40257:104,40258:112",
["InstanceLootHeroic.Naxxramas.Instructor Razuvious"]="40064:103,40065:108,40069:107,40071:108,40074:109,40075:106,40080:111,40107:105,40108:103,40305:177,40306:188,40315:185,40316:185,40317:181,40318:194,40319:193,40320:186,40321:185,40322:185,40323:186,40324:184,40325:187,40326:199,40327:197",
["InstanceLootHeroic.Naxxramas.Kel'Thuzad"]="40383:176,40384:172,40385:170,40386:168,40387:177,40388:180,40395:179,40396:179,40398:177,40399:172,40400:176,40401:175,40402:182,40403:185,40405:177,40631:543,40632:567,40633:733",
["InstanceLootHeroic.Naxxramas.Lady Blaumeux"]="m,InstanceLootHeroic.Naxxramas.Four Horsemen Chest",
["InstanceLootHeroic.Naxxramas.Loatheb"]="40239:186,40240:186,40241:193,40242:185,40243:192,40244:193,40245:195,40246:183,40247:187,40249:192,40637:573,40638:582,40639:766",
["InstanceLootHeroic.Naxxramas.Maexxna"]="39230:1,39758:187,39759:180,39760:186,39761:177,39762:184,39763:189,39764:186,39765:187,39766:188,39767:190,39768:187,40060:188,40061:187,40062:196,40063:198,40250:109,40251:105,40252:103,40253:109,40254:108,40255:112,40256:107,40257:107,40258:107",
["InstanceLootHeroic.Naxxramas.Noth the Plaguebringer"]="40064:103,40065:114,40069:103,40071:110,40074:112,40075:111,40080:104,40107:106,40108:104,40184:187,40185:187,40186:186,40187:191,40188:184,40189:188,40190:182,40191:193,40192:188,40193:198,40196:188,40197:197,40198:190,40200:197,40602:188",
["InstanceLootHeroic.Naxxramas.Patchwerk"]="40064:104,40065:115,40069:104,40071:106,40074:106,40075:108,40080:108,40107:104,40108:114,40259:189,40260:183,40261:193,40262:191,40263:192,40264:194,40265:191,40266:189,40267:195,40268:189,40269:195,40270:193,40271:189,40272:193,40273:191",
["InstanceLootHeroic.Naxxramas.Sapphiron"]="40362:173,40363:176,40365:192,40366:171,40367:184,40368:192,40369:183,40370:184,40371:181,40372:186,40373:182,40374:189,40375:196,40376:192,40377:184,40378:188,40379:190,40380:181,40381:192,40382:199,44569:1,44577:917",
["InstanceLootHeroic.Naxxramas.Sir Zeliek"]="m,InstanceLootHeroic.Naxxramas.Four Horsemen Chest",
["InstanceLootHeroic.Naxxramas.Thaddius"]="40294:180,40296:181,40297:172,40298:183,40299:181,40300:192,40301:185,40302:173,40303:196,40304:186,40634:559,40635:582,40636:761",
["InstanceLootHeroic.Naxxramas.Thane Korth'azz"]="m,InstanceLootHeroic.Naxxramas.Four Horsemen Chest",
["InstanceLootHeroic.Naxxramas.Trash Mobs"]="40064,40065,40069,40071,40074,40075,40080,40107,40108,40250,40251,40252,40253,40254,40255,40256,40257,40258,40406,40407,40408,40409,40410,40412,40414",
["InstanceLootHeroic.The Nexus Hub"]="m,InstanceLootHeroic.The Eye of Eternity,InstanceLootHeroic.The Nexus,InstanceLootHeroic.The Oculus",
-- The Eye of Eternity
["InstanceLootHeroic.The Eye of Eternity.Alexstrasza's Gift"]="40194:94,40474:1,40526:1,40531:88,40532:93,40539:86,40541:92,40543:98,40549:86,40555:97,40558:77,40560:101,40561:94,40562:91,40564:95,40566:109,40588:96,40589:97,40590:98,40591:95,40592:100,40594:104,43952:11",
["InstanceLootHeroic.The Eye of Eternity.Malygos"]="m,InstanceLootHeroic.The Eye of Eternity.Alexstrasza's Gift",
-- The Nexus
["InstanceLootHeroic.The Nexus.Anomalus"]="37141:228,37144:235,37149:226,37150:236",
["InstanceLootHeroic.The Nexus.Commander Stoutbeard"]="37728:214,37729:227,37730:217,37731:216",
["InstanceLootHeroic.The Nexus.Grand Magus Telestra"]="37134:226,37135:228,37138:229,37139:225",
["InstanceLootHeroic.The Nexus.Keristrasza"]="37162:210,37165:213,37166:213,37167:210,37169:202,37170:206,37171:205,37172:202,41794:100",
["InstanceLootHeroic.The Nexus.Ormorok the Tree-Shaper"]="37151:233,37152:230,37153:232,37155:231",
-- The Oculus
["InstanceLootHeroic.The Oculus.Cache of Eregos"]="37291:134,37292:132,37293:130,37294:130,37360:128,37361:122,37362:122,37363:126,41798:66,52676:405",
["InstanceLootHeroic.The Oculus.Drakos the Interrogator"]="37255:241,37256:245,37257:242,37258:240",
["InstanceLootHeroic.The Oculus.Ley-Guardian Eregos"]="m,InstanceLootHeroic.The Oculus.Cache of Eregos",
["InstanceLootHeroic.The Oculus.Mage-Lord Urom"]="37195:236,37264:234,37288:233,37289:228",
["InstanceLootHeroic.The Oculus.Varos Cloudstrider"]="37260:233,37261:243,37262:239,37263:239",
["InstanceLootHeroic.The Violet Hold.Cyanigosa"]="37873:215,37874:220,37875:216,37876:220,37883:214,37884:211,37886:214,41791:84,43500:207",
["InstanceLootHeroic.The Violet Hold.Erekem"]="43405:308,43406:303,43407:301",
["InstanceLootHeroic.The Violet Hold.Ichoron"]="37862:271,37869:273,43401:268",
["InstanceLootHeroic.The Violet Hold.Lavanthor"]="37870:314,37871:300,37872:306",
["InstanceLootHeroic.The Violet Hold.Moragg"]="43408:298,43409:303,43410:301",
["InstanceLootHeroic.The Violet Hold.Xevozz"]="37861:298,37867:293,37868:297",
["InstanceLootHeroic.The Violet Hold.Zuramat the Obliterator"]="43402:295,43403:287,43404:290",
["InstanceLootHeroic.The Obsidian Sanctum.Sartharion"]="40431:167,40432:191,40433:92,40437:168,40438:188,40439:187,40446:168,40451:161,40453:167,40455:190,40614:1,40615:1,40628:511,40629:530,40630:677,43345:898,43346:925,43347:5,43954:90,44000:64,44002:66,44003:71,44004:66,44005:35,44006:34,44007:32,44008:35,44011:34",
["InstanceLootHeroic.Ulduar.Algalon the Observer"]="m,InstanceLootHeroic.Ulduar.Gift of the Observer",
["InstanceLootHeroic.Ulduar.Assembly of Iron"]="m,InstanceLootHeroic.Ulduar.Steelbreaker,InstanceLootHeroic.Ulduar.Runemaster Molgeim,InstanceLootHeroic.Ulduar.Stormcaller Brundir,",
["InstanceLootHeroic.Ulduar.Auriaya"]="45090:5,45093:5,45096:4,45101:6,45104:4,45105:4,45315:193,45319:190,45320:202,45325:192,45326:184,45327:201,45334:189,45434:199,45435:184,45436:195,45437:197,45438:202,45439:195,45440:190,45441:198",
["InstanceLootHeroic.Ulduar.Cache of Innovation"]="45090:1,45093:4,45096:2,45101:4,45104:1,45105:2,45489:154,45490:158,45491:157,45492:165,45493:116,45494:11,45495:12,45496:18,45497:13,45620:4,45641:480,45642:574,45643:639,45663:5",
["InstanceLootHeroic.Ulduar.Cache of Living Stone"]="45090:4,45093:5,45096:4,45101:2,45104:3,45105:2,45261:166,45262:170,45263:179,45264:171,45265:165,45266:177,45267:184,45268:186,45269:164,45270:178,45271:173,45272:196,45273:194,45274:143,45275:187",
["InstanceLootHeroic.Ulduar.Cache of Storms"]="45090:5,45093:1,45096:3,45101:2,45104:3,45105:3,45463:177,45466:163,45467:160,45468:169,45469:140,45470:32,45471:32,45472:34,45473:38,45474:39,45570:26,45638:472,45639:560,45640:706",
["InstanceLootHeroic.Ulduar.Cache of Winter"]="45090:5,45093:2,45096:3,45101:2,45104:3,45105:2,45450:182,45451:184,45452:171,45453:160,45454:160,45632:530,45633:527,45634:726",
["InstanceLootHeroic.Ulduar.Flame Leviathan"]="35624:3,37663:2,45086:179,45090:2,45093:6,45096:5,45101:10,45104:3,45105:3,45106:168,45107:166,45108:180,45109:183,45110:195,45111:174,45112:189,45113:185,45114:176,45115:185,45116:201,45117:187,45118:188,45119:193,45132:16,45133:19,45134:13,45135:17,45136:17",
["InstanceLootHeroic.Ulduar.Freya"]="m,InstanceLootHeroic.Ulduar.Freya's Gift",
["InstanceLootHeroic.Ulduar.Freya's Gift"]="45090:1,45093:5,45096:2,45101:1,45104:2,45105:5,45479:177,45480:133,45481:163,45482:165,45483:162,45484:16,45485:17,45486:13,45487:15,45488:9,45613:19,45653:445,45654:521,45655:676,46110:698",
["InstanceLootHeroic.Ulduar.General Vezax"]="45090:6,45093:3,45096:3,45101:4,45104:3,45105:4,45145:191,45498:197,45501:182,45502:192,45503:188,45504:181,45505:197,45507:200,45508:193,45509:192,45511:187,45512:202,45513:189,45514:204,45515:197,45516:24,45517:32,45518:19,45519:38,45520:23",
["InstanceLootHeroic.Ulduar.Gift of the Observer"]="45090:18,45570:36,45587:49,45594:337,45599:104,45607:153,45609:122,45610:116,45611:73,45612:92,45613:116,45615:18,45616:398,45617:79,45619:67,45620:208,45665:116,46053:926",
["InstanceLootHeroic.Ulduar.Hodir"]="m,InstanceLootHeroic.Ulduar.Cache of Winter",
["InstanceLootHeroic.Ulduar.Ignis the Furnace Master"]="45090:5,45093:4,45096:3,45101:4,45104:3,45105:4,45157:197,45158:189,45161:191,45162:187,45164:192,45165:189,45166:207,45167:187,45168:187,45169:201,45170:201,45171:205,45185:195,45186:188,45187:199",
["InstanceLootHeroic.Ulduar.Kologarn"]="m,InstanceLootHeroic.Ulduar.Cache of Living Stone",
["InstanceLootHeroic.Ulduar.Mimiron"]="m,InstanceLootHeroic.Ulduar.Cache of Innovation",
["InstanceLootHeroic.Ulduar.Razorscale"]="45137:182,45138:191,45139:195,45140:196,45141:191,45142:190,45143:197,45144:195,45146:195,45147:196,45148:193,45149:201,45150:201,45151:196,45510:200",
["InstanceLootHeroic.Ulduar.Runemaster Molgeim"]="45093:8,45101:4,45104:9,45105:5,45193:176,45224:203,45225:168,45226:190,45227:192,45228:168,45232:187,45233:184,45234:191,45235:210,45236:183,45237:222,45238:175,45239:172,45240:189,45857:938",
["InstanceLootHeroic.Ulduar.Steelbreaker"]="45090:3,45093:2,45096:2,45101:5,45104:2,45105:5,45193:190,45224:190,45225:176,45226:182,45227:185,45228:173,45232:171,45233:218,45234:202,45235:184,45236:170,45237:173,45238:207,45239:165,45240:198,45241:169,45242:158,45243:133,45244:173,45245:148,45607:143,45857:945",
["InstanceLootHeroic.Ulduar.Stormcaller Brundir"]="45090:6,45093:5,45096:3,45101:6,45104:4,45105:7,45193:185,45224:187,45225:188,45226:191,45227:198,45228:199,45232:196,45233:195,45234:191,45235:191,45236:198,45237:186,45238:189,45239:199,45240:209",
["InstanceLootHeroic.Ulduar.Thorim"]="m,InstanceLootHeroic.Ulduar.Cache of Storms",
["InstanceLootHeroic.Ulduar.XT-002 Deconstructor"]="45090:5,45093:5,45096:5,45101:4,45104:3,45105:4,45246:186,45247:187,45248:193,45249:186,45250:182,45251:187,45252:197,45253:203,45254:188,45255:186,45256:197,45257:197,45258:191,45259:185,45260:210,45442:24,45443:19,45444:27,45445:24,45446:24",
["InstanceLootHeroic.Ulduar.Yogg-Saron"]="45093:8,45104:4,45521:161,45522:190,45523:161,45524:133,45525:161,45527:105,45529:210,45530:157,45531:157,45532:226,45533:12,45534:20,45535:12,45536:12,45537:20,45656:518,45657:591,45658:704,45693:12,45897:8",
["InstanceLootHeroic.Ulduar.Trash Mobs"]="45538,45539,45540,45541,45542,45543,45544,45547,45548,45549,46138,45605",
["InstanceLootHeroic.Ulduar Hub"]="m,InstanceLootHeroic.Halls of Lightning,InstanceLootHeroic.Halls of Stone",
-- Halls of Lightning
["InstanceLootHeroic.Halls of Lightning.General Bjarngrim"]="37814:223,37818:225,37825:221,37826:228",
["InstanceLootHeroic.Halls of Lightning.Ionar"]="37844:217,37845:213,37846:213,37847:213",
["InstanceLootHeroic.Halls of Lightning.Loken"]="37848:208,37849:211,37850:207,37851:211,37852:203,37853:203,37854:203,37855:203,41799:89",
["InstanceLootHeroic.Halls of Lightning.Volkhan"]="37840:229,37841:227,37842:224,37843:223",
-- Halls of Stone
["InstanceLootHeroic.Halls of Stone.Krystallus"]="37650:272,37651:274,37652:276",
["InstanceLootHeroic.Halls of Stone.Maiden of Grief"]="38615:215,38616:217,38617:224,38618:221,44731:34",
["InstanceLootHeroic.Halls of Stone.Sjonnir The Ironshaper"]="37657:199,37658:195,37660:194,37666:199,37667:187,37668:188,37669:184,37670:186,41792:116",
["InstanceLootHeroic.Halls of Stone.Tribunal Chest"]="37653:214,37654:215,37655:223,37656:216",
["InstanceLootHeroic.Utgarde Keep Hub"]="m,InstanceLootHeroic.Utgarde Keep,InstanceLootHeroic.Utgarde Pinnacle",
-- Utgarde Keep
["InstanceLootHeroic.Utgarde Keep.Dalronn the Controller"]="",
["InstanceLootHeroic.Utgarde Keep.Ingvar the Plunderer"]="37186:208,37188:207,37189:203,37190:205,37191:199,37192:195,37193:198,37194:206,41793:92",
["InstanceLootHeroic.Utgarde Keep.Prince Keleseth"]="37177:225,37178:232,37179:229,37180:224,44731:35",
["InstanceLootHeroic.Utgarde Keep.Skarvald the Constructor"]="37181:225,37182:224,37183:227,37184:226",
-- Utgarde Pinnacle
["InstanceLootHeroic.Utgarde Pinnacle.Gortok Palehoof"]="37371:231,37373:229,37374:231,37376:229",
["InstanceLootHeroic.Utgarde Pinnacle.King Ymiron"]="37390:218,37395:207,37397:206,37398:206,37401:205,37407:204,37408:205,37409:199,41797:82",
["InstanceLootHeroic.Utgarde Pinnacle.Skadi the Ruthless"]="37377:225,37379:229,37384:226,37389:225,44151:12",
["InstanceLootHeroic.Utgarde Pinnacle.Svala Sorrowgrave"]="37367:231,37368:237,37369:227,37370:226",
["InstanceLootHeroic.Vault of Archavon.Archavon the Stone Watcher"]="40415:72,40417:67,40418:63,40422:67,40423:63,40445:37,40448:33,40449:29,40454:37,40457:36,40458:31,40460:24,40462:21,40463:21,40466:24,40468:23,40469:20,40471:22,40472:24,40493:20,40495:60,40496:71,40500:63,40503:63,40504:72,40506:65,40508:21,40509:25,40512:22,40514:22,40515:24,40517:21,40520:25,40522:22,40523:22,40525:33,40527:36,40529:34,40544:32,40545:36,40547:31,40550:32,40552:34,40556:31,40559:32,40563:36,40567:32,40569:22,40570:24,40572:21,40574:20,40575:23,40577:22,40579:21,40580:23,40583:21,40784:68,40785:34,40786:64,40804:67,40805:32,40806:64,40844:63,40845:63,40846:30,40905:32,40926:35,40938:32,40990:21,40991:22,41000:22,41006:21,41026:21,41032:22,41080:23,41086:62,41136:22,41142:62,41198:22,41204:64,41286:21,41292:21,41297:22,41303:21,41309:22,41315:23,41649:67,41654:64,41660:22,41666:21,41766:65,41772:20,41858:33,41863:32,41873:32,41920:31,41926:32,41939:32,41951:64,41958:62,41970:63,41997:70,42004:64,42016:61,43959:8,44083:8",
["InstanceLootHeroic.Vault of Archavon.Emalon the Storm Watcher"]="40807:49,40808:10,40809:48,40847:49,40848:48,40849:22,40881:25,40882:26,40889:32,40927:45,40939:22,40976:27,40977:28,40983:30,41001:18,41007:17,41027:16,41033:16,41051:13,41055:13,41060:15,41065:16,41070:14,41075:14,41137:16,41143:50,41199:16,41205:50,41225:30,41230:27,41235:26,41287:15,41293:17,41298:16,41304:16,41617:11,41621:12,41625:15,41630:11,41635:11,41640:15,41655:50,41667:16,41767:51,41773:16,41832:27,41836:28,41840:27,41864:26,41874:23,41881:28,41885:27,41893:30,41898:27,41903:26,41909:28,41927:24,41940:26,41959:47,41971:47,42005:50,42017:44,42034:31,42035:29,42036:11,42037:11,42038:12,42039:11,42040:11,42069:12,42070:12,42071:12,42072:11,42073:12,42074:27,42075:29,42116:25,42117:25,43959:9,44083:8,46113:48,46116:48,46119:49,46121:45,46124:100,46126:98,46132:95,46133:92,46135:97,46139:95,46142:102,46144:104,46148:47,46150:46,46153:32,46155:33,46158:33,46160:32,46163:51,46164:48,46169:46,46170:48,46174:33,46176:31,46179:33,46181:33,46183:34,46185:29,46188:47,46189:32,46192:33,46195:46,46199:33,46200:34,46202:32,46207:30,46208:34,46210:34,46373:7",
-- Trial of the Champion
["InstanceLootHeroic.Trial of the Champion.Grand Champions"]="m,InstanceLootHeroic.Trial of the Champion.Champion's Cache",
["InstanceLootHeroic.Trial of the Champion.Champion's Cache"]="47243:147,47244:146,47248:145,47249:147,47250:151,47493:139",
["InstanceLootHeroic.Trial of the Champion.Argent Confessor Paletress"]="m,InstanceLootHeroic.Trial of the Champion.Confessor's Cache",
["InstanceLootHeroic.Trial of the Champion.Confessor's Cache"]="47245:126,47494:132,47495:129,47496:129,47497:126,47498:132,47500:128,47510:127,47511:124,47512:123,47514:126,47522:124",
["InstanceLootHeroic.Trial of the Champion.Eadric the Pure"]="m,InstanceLootHeroic.Trial of the Champion.Eadric's Cache",
["InstanceLootHeroic.Trial of the Champion.Eadric's Cache"]="47494:126,47495:130,47496:130,47497:133,47498:128,47500:131,47501:122,47502:125,47503:129,47504:128,47508:127,47509:124",
["InstanceLootHeroic.Trial of the Champion.The Black Knight"]="47527:144,47529:143,47560:139,47561:141,47562:145,47563:143,47564:128,47565:127,47566:129,47567:128,47568:127,47569:125,49682:132",
-- Frozen Halls
["InstanceLootHeroic.Frozen Halls Hub"]="m,InstanceLootHeroic.The Forge of Souls,InstanceLootHeroic.Pit of Saron,InstanceLootHeroic.Halls of Reflection",
-- The Forge of Souls
["InstanceLootHeroic.The Forge of Souls.Bronjahm"]="50169:270,50191:282,50193:113,50194:109,50196:109,50197:105,50316:45,50317:241",
["InstanceLootHeroic.The Forge of Souls.Devourer of Souls"]="50198:129,50203:306,50206:139,50207:138,50208:134,50209:133,50210:293,50211:134,50212:139,50213:139,50214:134,50215:131",
-- Pit of Saron
["InstanceLootHeroic.Pit of Saron.Forgemaster Garfrost"]="50227:299,50228:143,50229:139,50230:138,50233:139,50234:132",
["InstanceLootHeroic.Pit of Saron.Ick"]="50235:139,50262:300,50263:137,50264:137,50265:144,50266:139",
["InstanceLootHeroic.Pit of Saron.Krick"]="m,InstanceLootHeroic.Pit of Saron.Ick",
["InstanceLootHeroic.Pit of Saron.Scourgelord Tyrannus"]="50259:134,50267:270,50268:278,50269:107,50270:106,50271:109,50272:105,50273:295,50283:136,50284:139,50285:137,50286:127",
-- Halls of Reflection
["InstanceLootHeroic.Halls of Reflection.Falric"]="50290:279,50291:257,50292:125,50293:109,50294:115,50295:110",
["InstanceLootHeroic.Halls of Reflection.Marwyn"]="50260:136,50296:306,50297:140,50298:139,50299:139,50300:135",
["InstanceLootHeroic.Halls of Reflection.The Lich King"]="m,InstanceLootHeroic.Halls of Reflection.The Captain's Chest",
["InstanceLootHeroic.Halls of Reflection.The Captain's Chest"]="50302:231,50303:242,50304:95,50305:93,50306:90,50308:99,50309:139,50310:141,50311:145,50312:134,50313:141,50314:140",
-- Icecrown Citadel
-- The Lower Spire
["InstanceLootHeroic.Icecrown Citadel.Lord Marrowgar"]="50346:0,50604:0,50605:0,50606:0,50607:0,50608:0,50609:0,50610:0,50611:0,50612:0,50613:0,50614:0,50615:0,50616:0,50617:0,50709:0,51928:0,51929:0,51930:0,51931:0,51932:0,51933:0,51934:0,51935:0,51936:0,51937:0,51938:0",
["InstanceLootHeroic.Icecrown Citadel.Lady Deathwhisper"]="50343:0,50638:0,50639:0,50640:0,50641:0,50642:0,50643:0,50644:0,50645:0,50646:0,50647:0,50648:0,50649:0,50650:0,50651:0,50652:0,51917:0,51918:0,51919:0,51920:0,51921:0,51922:0,51923:0,51924:0,51925:0,51926:0,51927:0",
["InstanceLootHeroic.Icecrown Citadel.Gunship Armory"]="50345:0,50349:0,50366:0,50653:0,50654:0,50655:0,50656:0,50657:0,50658:0,50659:0,50660:0,50661:0,50663:0,50664:0,50665:0,50667:0,51906:0,51907:0,51908:0,51909:0,51910:0,51911:0,51912:0,51913:0,51914:0,51915:0,51916:0",
["InstanceLootHeroic.Icecrown Citadel.Deathbringer's Cache"]="50363:0,50668:0,50670:0,50671:0,50672:0,51894:0,51895:0,51896:0,51897:0,51898:0,51899:0,51900:0,51901:0,51902:0,51903:0,51904:0,51905:0,52025:0,52026:0,52027:0,52028:0,52029:0,52030:0",
["InstanceLootHeroic.Icecrown Citadel.Deathbringer Saurfang"]="m,InstanceLootHeroic.Icecrown Citadel.Deathbringer's Cache",
-- The Plagueworks
["InstanceLootHeroic.Icecrown Citadel.Festergut"]="50226:0,50688:0,50689:0,50690:0,50691:0,50692:0,50693:0,50694:0,50695:0,50696:0,50697:0,50698:0,50699:0,50700:0,50701:0,50702:0,50703:0,51882:0,51883:0,51884:0,51885:0,51886:0,51887:0,51888:0,51889:0,51890:0,51891:0,51892:0,51893:0",
["InstanceLootHeroic.Icecrown Citadel.Rotface"]="50231:0,50348:0,50673:0,50674:0,50675:0,50676:0,50677:0,50678:0,50679:0,50680:0,50681:0,50682:0,50684:0,50685:0,50686:0,50687:0,51870:0,51871:0,51872:0,51873:0,51874:0,51875:0,51876:0,51877:0,51878:0,51879:0,51880:0,51881:0",
["InstanceLootHeroic.Icecrown Citadel.Professor Putricide"]="50344:0,50704:0,50705:0,50706:0,50707:0,50708:0,51859:0,51860:0,51861:0,51862:0,51863:0,51864:0,51865:0,51866:0,51867:0,51868:0,51869:0,52025:0,52026:0,52027:0,52028:0,52029:0,52030:0",
-- The Crimson Hall
["InstanceLootHeroic.Icecrown Citadel.Prince Valanar"]="50603:0,50710:0,50711:0,50712:0,50713:0,50714:0,50715:0,50716:0,50717:0,50718:0,50719:0,50720:0,50721:0,50722:0,50723:0,51847:0,51848:0,51849:0,51850:0,51851:0,51852:0,51853:0,51854:0,51855:0,51856:0,51857:0,51858:0",
["InstanceLootHeroic.Icecrown Citadel.Blood-Queen Lana'thel"]="50724:0,50725:0,50726:0,50727:0,50728:0,50729:0,51835:0,51836:0,51837:0,51838:0,51839:0,51840:0,51841:0,51842:0,51843:0,51844:0,51845:0,51846:0,52025:0,52026:0,52027:0,52028:0,52029:0,52030:0",
-- The Frostwing Halls
["InstanceLootHeroic.Icecrown Citadel.Cache of the Dreamwalker"]="49426:0,50618:0,50619:0,50620:0,50621:0,50622:0,50623:0,50624:0,50625:0,50626:0,50627:0,50628:0,50629:0,50630:0,50631:0,50632:0,51823:0,51824:0,51825:0,51826:0,51827:0,51828:0,51829:0,51830:0,51831:0,51832:0,51833:0,51834:0",
["InstanceLootHeroic.Icecrown Citadel.Valithria Dreamwalker"]="m,InstanceLootHeroic.Icecrown Citadel.Cache of the Dreamwalker",
["InstanceLootHeroic.Icecrown Citadel.Sindragosa"]="50364:0,50365:0,50633:0,50635:0,50636:0,51811:0,51812:0,51813:0,51814:0,51815:0,51816:0,51817:0,51818:0,51819:0,51820:0,51821:0,51822:0,52025:0,52026:0,52027:0,52028:0,52029:0,52030:0",
-- The Frozen Throne
["InstanceLootHeroic.Icecrown Citadel.The Lich King"]="49426:0,50730:0,50731:0,50732:0,50733:0,50734:0,50735:0,50736:0,50737:0,50738:0,50818:0,51939:0,51940:0,51941:0,51942:0,51943:0,51944:0,51945:0,51946:0,51947:0,52025:0,52026:0,52027:0,52028:0,52029:0,52030:0",
})
@@ -0,0 +1,16 @@
## Interface: 30200
## LoadOnDemand: 1
## Title: Lib: PeriodicTable-3.1 [|cffeda55fHeroicLoot|r]
## Notes: PeriodicTable data module.
## Author: Nymbia
## Version: 3.1
## Dependencies: LibPeriodicTable-3.1
## X-Category: Library
## X-License: LGPL v2.1
## X-PeriodicTable-3.1-Module: InstanceLootHeroic
## X-Curse-Packaged-Version: r293
## X-Curse-Project-Name: LibPeriodicTable-3.1
## X-Curse-Project-ID: libperiodictable-3-1
## X-Curse-Repository-ID: wow/libperiodictable-3-1/mainline
LibPeriodicTable-3.1-InstanceLootHeroic.lua
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Ui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.blizzard.com/wow/ui/" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Include file="Locales\deDE.lua"/>
<Include file="Locales\enUS.lua"/>
<Include file="Locales\esES.lua"/>
<Include file="Locales\esMX.lua"/>
<Include file="Locales\frFR.lua"/>
<Include file="Locales\koKR.lua"/>
<Include file="Locales\ruRU.lua"/>
<Include file="Locales\zhCN.lua"/>
<Include file="Locales\zhTW.lua"/>
</Ui>